Whamcloud - gitweb
LU-1222 ldlm: Fix the race in AST sender vs multiple arriving RPCs
[fs/lustre-release.git] / lustre / llite / llite_mmap.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2011, 2012, Whamcloud, Inc.
33  */
34 /*
35  * This file is part of Lustre, http://www.lustre.org/
36  * Lustre is a trademark of Sun Microsystems, Inc.
37  */
38
39 #ifndef AUTOCONF_INCLUDED
40 #include <linux/config.h>
41 #endif
42 #include <linux/kernel.h>
43 #include <linux/mm.h>
44 #include <linux/string.h>
45 #include <linux/stat.h>
46 #include <linux/errno.h>
47 #include <linux/smp_lock.h>
48 #include <linux/unistd.h>
49 #include <linux/version.h>
50 #include <asm/system.h>
51 #include <asm/uaccess.h>
52
53 #include <linux/fs.h>
54 #include <linux/stat.h>
55 #include <asm/uaccess.h>
56 #include <linux/mm.h>
57 #include <linux/pagemap.h>
58 #include <linux/smp_lock.h>
59
60 #define DEBUG_SUBSYSTEM S_LLITE
61
62 #include <lustre_lite.h>
63 #include "llite_internal.h"
64 #include <linux/lustre_compat25.h>
65
66 struct page *ll_nopage(struct vm_area_struct *vma, unsigned long address,
67                        int *type);
68
69 static struct vm_operations_struct ll_file_vm_ops;
70
71 void policy_from_vma(ldlm_policy_data_t *policy,
72                             struct vm_area_struct *vma, unsigned long addr,
73                             size_t count)
74 {
75         policy->l_extent.start = ((addr - vma->vm_start) & CFS_PAGE_MASK) +
76                                  (vma->vm_pgoff << CFS_PAGE_SHIFT);
77         policy->l_extent.end = (policy->l_extent.start + count - 1) |
78                                ~CFS_PAGE_MASK;
79 }
80
81 struct vm_area_struct * our_vma(unsigned long addr, size_t count)
82 {
83         struct mm_struct *mm = current->mm;
84         struct vm_area_struct *vma, *ret = NULL;
85         ENTRY;
86
87         /* No MM (e.g. NFS)? No vmas too. */
88         if (!mm)
89                 RETURN(NULL);
90
91         spin_lock(&mm->page_table_lock);
92         for(vma = find_vma(mm, addr);
93             vma != NULL && vma->vm_start < (addr + count); vma = vma->vm_next) {
94                 if (vma->vm_ops && vma->vm_ops == &ll_file_vm_ops &&
95                     vma->vm_flags & VM_SHARED) {
96                         ret = vma;
97                         break;
98                 }
99         }
100         spin_unlock(&mm->page_table_lock);
101         RETURN(ret);
102 }
103
104 /**
105  * API independent part for page fault initialization.
106  * \param vma - virtual memory area addressed to page fault
107  * \param env - corespondent lu_env to processing
108  * \param nest - nested level
109  * \param index - page index corespondent to fault.
110  * \parm ra_flags - vma readahead flags.
111  *
112  * \return allocated and initialized env for fault operation.
113  * \retval EINVAL if env can't allocated
114  * \return other error codes from cl_io_init.
115  */
116 struct cl_io *ll_fault_io_init(struct vm_area_struct *vma,
117                                struct lu_env **env_ret,
118                                struct cl_env_nest *nest,
119                                pgoff_t index, unsigned long *ra_flags)
120 {
121         struct file       *file  = vma->vm_file;
122         struct inode      *inode = file->f_dentry->d_inode;
123         struct cl_io      *io;
124         struct cl_fault_io *fio;
125         struct lu_env     *env;
126         ENTRY;
127
128         *env_ret = NULL;
129         if (ll_file_nolock(file))
130                 RETURN(ERR_PTR(-EOPNOTSUPP));
131
132         /*
133          * page fault can be called when lustre IO is
134          * already active for the current thread, e.g., when doing read/write
135          * against user level buffer mapped from Lustre buffer. To avoid
136          * stomping on existing context, optionally force an allocation of a new
137          * one.
138          */
139         env = cl_env_nested_get(nest);
140         if (IS_ERR(env))
141                  RETURN(ERR_PTR(-EINVAL));
142
143         *env_ret = env;
144
145         io = ccc_env_thread_io(env);
146         io->ci_obj = ll_i2info(inode)->lli_clob;
147         LASSERT(io->ci_obj != NULL);
148
149         fio = &io->u.ci_fault;
150         fio->ft_index      = index;
151         fio->ft_executable = vma->vm_flags&VM_EXEC;
152
153         /*
154          * disable VM_SEQ_READ and use VM_RAND_READ to make sure that
155          * the kernel will not read other pages not covered by ldlm in
156          * filemap_nopage. we do our readahead in ll_readpage.
157          */
158         if (ra_flags != NULL)
159                 *ra_flags = vma->vm_flags & (VM_RAND_READ|VM_SEQ_READ);
160         vma->vm_flags &= ~VM_SEQ_READ;
161         vma->vm_flags |= VM_RAND_READ;
162
163         CDEBUG(D_MMAP, "vm_flags: %lx (%lu %d)\n", vma->vm_flags,
164                fio->ft_index, fio->ft_executable);
165
166         if (cl_io_init(env, io, CIT_FAULT, io->ci_obj) == 0) {
167                 struct ccc_io *cio = ccc_env_io(env);
168                 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
169
170                 LASSERT(cio->cui_cl.cis_io == io);
171
172                 /* mmap lock must be MANDATORY
173                  * it has to cache pages. */
174                 io->ci_lockreq = CILR_MANDATORY;
175
176                 cio->cui_fd  = fd;
177         }
178
179         return io;
180 }
181
182 /* Sharing code of page_mkwrite method for rhel5 and rhel6 */
183 static int ll_page_mkwrite0(struct vm_area_struct *vma, struct page *vmpage,
184                             bool *retry)
185 {
186         struct lu_env           *env;
187         struct cl_io            *io;
188         struct vvp_io           *vio;
189         struct cl_env_nest       nest;
190         int                      result;
191         ENTRY;
192
193         LASSERT(vmpage != NULL);
194
195         io = ll_fault_io_init(vma, &env,  &nest, vmpage->index, NULL);
196         if (IS_ERR(io))
197                 GOTO(out, result = PTR_ERR(io));
198
199         result = io->ci_result;
200         if (result < 0)
201                 GOTO(out, result);
202
203         /* Don't enqueue new locks for page_mkwrite().
204          * If the lock has been cancelled then page must have been
205          * truncated, in that case, kernel will handle it.
206          */
207         io->ci_lockreq = CILR_PEEK;
208         io->u.ci_fault.ft_mkwrite = 1;
209         io->u.ci_fault.ft_writable = 1;
210
211         vio = vvp_env_io(env);
212         vio->u.fault.ft_vma    = vma;
213         vio->u.fault.ft_vmpage = vmpage;
214
215         result = cl_io_loop(env, io);
216
217         if (result == -ENODATA) /* peek failed, no lock caching. */
218                 CDEBUG(D_MMAP, "race on page_mkwrite: %lx (%lu %p)\n",
219                        vma->vm_flags, io->u.ci_fault.ft_index, vmpage);
220
221         if (result == 0 || result == -ENODATA) {
222                 lock_page(vmpage);
223                 if (vmpage->mapping == NULL) {
224                         unlock_page(vmpage);
225
226                         /* page was truncated and lock was cancelled, return
227                          * ENODATA so that VM_FAULT_NOPAGE will be returned
228                          * to handle_mm_fault(). */
229                         if (result == 0)
230                                 result = -ENODATA;
231                 } else if (result == -ENODATA) {
232                         /* Invalidate it if the cl_lock is being revoked.
233                          * This piece of code is definitely needed for RHEL5,
234                          * otherwise, SIGBUS will be wrongly returned to
235                          * applications. */
236                         write_one_page(vmpage, 1);
237                         lock_page(vmpage);
238                         if (vmpage->mapping != NULL) {
239                                 ll_invalidate_page(vmpage);
240                                 LASSERT(vmpage->mapping == NULL);
241                         }
242                         unlock_page(vmpage);
243                 } else if (!PageDirty(vmpage)) {
244                         /* race, the page has been cleaned by ptlrpcd after
245                          * it was unlocked, it has to be added into dirty
246                          * cache again otherwise this soon-to-dirty page won't
247                          * consume any grants, even worse if this page is being
248                          * transferred because it will break RPC checksum.
249                          */
250                         unlock_page(vmpage);
251
252                         CDEBUG(D_MMAP, "Race on page_mkwrite %p/%lu, page has "
253                                "been written out, retry.\n",
254                                vmpage, vmpage->index);
255
256                         *retry = true;
257                         result = -EAGAIN;
258                 }
259         }
260         EXIT;
261
262 out:
263         cl_io_fini(env, io);
264         cl_env_nested_put(&nest, env);
265
266         CDEBUG(D_MMAP, "%s mkwrite with %d\n", cfs_current()->comm, result);
267
268         LASSERT(ergo(result == 0, PageLocked(vmpage)));
269         return(result);
270 }
271
272
273 #ifndef HAVE_VM_OP_FAULT
274 /**
275  * Lustre implementation of a vm_operations_struct::nopage() method, called by
276  * VM to server page fault (both in kernel and user space).
277  *
278  * This function sets up CIT_FAULT cl_io that does the job.
279  *
280  * \param vma - is virtiual area struct related to page fault
281  * \param address - address when hit fault
282  * \param type - of fault
283  *
284  * \return allocated and filled _unlocked_ page for address
285  * \retval NOPAGE_SIGBUS if page not exist on this address
286  * \retval NOPAGE_OOM not have memory for allocate new page
287  */
288 struct page *ll_nopage(struct vm_area_struct *vma, unsigned long address,
289                        int *type)
290 {
291         struct lu_env           *env;
292         struct cl_env_nest      nest;
293         struct cl_io            *io;
294         struct page             *page  = NOPAGE_SIGBUS;
295         struct vvp_io           *vio = NULL;
296         unsigned long           ra_flags;
297         pgoff_t                 pg_offset;
298         int                     result;
299         const unsigned long     writable = VM_SHARED|VM_WRITE;
300         ENTRY;
301
302         pg_offset = ((address - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
303         io = ll_fault_io_init(vma, &env,  &nest, pg_offset, &ra_flags);
304         if (IS_ERR(io))
305                 return NOPAGE_SIGBUS;
306
307         result = io->ci_result;
308         if (result < 0)
309                 goto out_err;
310
311         io->u.ci_fault.ft_writable = (vma->vm_flags&writable) == writable;
312
313         vio = vvp_env_io(env);
314         vio->u.fault.ft_vma            = vma;
315         vio->u.fault.nopage.ft_address = address;
316         vio->u.fault.nopage.ft_type    = type;
317         vio->u.fault.ft_vmpage         = NULL;
318
319         result = cl_io_loop(env, io);
320         page = vio->u.fault.ft_vmpage;
321         if (result != 0 && page != NULL)
322                 page_cache_release(page);
323
324 out_err:
325         if (result == -ENOMEM)
326                 page = NOPAGE_OOM;
327
328         vma->vm_flags &= ~VM_RAND_READ;
329         vma->vm_flags |= ra_flags;
330
331         cl_io_fini(env, io);
332         cl_env_nested_put(&nest, env);
333
334         RETURN(page);
335 }
336
337 static int ll_page_mkwrite(struct vm_area_struct *vma, struct page *vmpage)
338 {
339         int count = 0;
340         bool printed = false;
341         bool retry;
342         int result;
343
344         do {
345                 retry = false;
346                 result = ll_page_mkwrite0(vma, vmpage, &retry);
347
348                 if (!printed && ++count > 16) {
349                         CWARN("app(%s): the page %lu of file %lu is under heavy"
350                               " contention.\n",
351                               current->comm, page_index(vmpage),
352                               vma->vm_file->f_dentry->d_inode->i_ino);
353                         printed = true;
354                 }
355         } while (retry);
356
357         if (result == 0)
358                 unlock_page(vmpage);
359         else if (result == -ENODATA)
360                 result = 0; /* kernel will know truncate has happened and
361                              * retry */
362
363         return result;
364 }
365
366 #else
367 /**
368  * Lustre implementation of a vm_operations_struct::fault() method, called by
369  * VM to server page fault (both in kernel and user space).
370  *
371  * \param vma - is virtiual area struct related to page fault
372  * \param vmf - structure which describe type and address where hit fault
373  *
374  * \return allocated and filled _locked_ page for address
375  * \retval VM_FAULT_ERROR on general error
376  * \retval NOPAGE_OOM not have memory for allocate new page
377  */
378 static int ll_fault0(struct vm_area_struct *vma, struct vm_fault *vmf)
379 {
380         struct lu_env           *env;
381         struct cl_io            *io;
382         struct vvp_io           *vio = NULL;
383         struct page             *vmpage;
384         unsigned long            ra_flags;
385         struct cl_env_nest       nest;
386         int                      result;
387         int                      fault_ret = 0;
388         ENTRY;
389
390         io = ll_fault_io_init(vma, &env,  &nest, vmf->pgoff, &ra_flags);
391         if (IS_ERR(io))
392                 RETURN(VM_FAULT_ERROR);
393
394         result = io->ci_result;
395         if (result < 0)
396                 goto out_err;
397
398         vio = vvp_env_io(env);
399         vio->u.fault.ft_vma       = vma;
400         vio->u.fault.ft_vmpage    = NULL;
401         vio->u.fault.fault.ft_vmf = vmf;
402
403         result = cl_io_loop(env, io);
404
405         vmpage = vio->u.fault.ft_vmpage;
406         if (result != 0 && vmpage != NULL) {
407                 page_cache_release(vmpage);
408                 vmf->page = NULL;
409         }
410
411         fault_ret = vio->u.fault.fault.ft_flags;
412
413 out_err:
414         if (result != 0 && fault_ret == 0)
415                 fault_ret = VM_FAULT_ERROR;
416
417         vma->vm_flags |= ra_flags;
418
419         cl_io_fini(env, io);
420         cl_env_nested_put(&nest, env);
421
422         CDEBUG(D_MMAP, "%s fault %d/%d\n",
423                cfs_current()->comm, fault_ret, result);
424         RETURN(fault_ret);
425 }
426
427 static int ll_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
428 {
429         int count = 0;
430         bool printed = false;
431         int result;
432
433 restart:
434         result = ll_fault0(vma, vmf);
435         LASSERT(!(result & VM_FAULT_LOCKED));
436         if (result == 0) {
437                 struct page *vmpage = vmf->page;
438
439                 /* check if this page has been truncated */
440                 lock_page(vmpage);
441                 if (unlikely(vmpage->mapping == NULL)) { /* unlucky */
442                         unlock_page(vmpage);
443                         page_cache_release(vmpage);
444                         vmf->page = NULL;
445
446                         if (!printed && ++count > 16) {
447                                 CWARN("the page is under heavy contention,"
448                                       "maybe your app(%s) needs revising :-)\n",
449                                       current->comm);
450                                 printed = true;
451                         }
452
453                         goto restart;
454                 }
455
456                 result |= VM_FAULT_LOCKED;
457         }
458         return result;
459 }
460
461 static int ll_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
462 {
463         int count = 0;
464         bool printed = false;
465         bool retry;
466         int result;
467
468         do {
469                 retry = false;
470                 result = ll_page_mkwrite0(vma, vmf->page, &retry);
471
472                 if (!printed && ++count > 16) {
473                         CWARN("app(%s): the page %lu of file %lu is under heavy"
474                               " contention.\n",
475                               current->comm, vmf->pgoff,
476                               vma->vm_file->f_dentry->d_inode->i_ino);
477                         printed = true;
478                 }
479         } while (retry);
480
481         switch(result) {
482         case 0:
483                 LASSERT(PageLocked(vmf->page));
484                 result = VM_FAULT_LOCKED;
485                 break;
486         case -ENODATA:
487         case -EFAULT:
488                 result = VM_FAULT_NOPAGE;
489                 break;
490         case -ENOMEM:
491                 result = VM_FAULT_OOM;
492                 break;
493         case -EAGAIN:
494                 result = VM_FAULT_RETRY;
495                 break;
496         default:
497                 result = VM_FAULT_SIGBUS;
498                 break;
499         }
500
501         return result;
502 }
503 #endif
504
505 /**
506  *  To avoid cancel the locks covering mmapped region for lock cache pressure,
507  *  we track the mapped vma count in ccc_object::cob_mmap_cnt.
508  */
509 static void ll_vm_open(struct vm_area_struct * vma)
510 {
511         struct inode *inode    = vma->vm_file->f_dentry->d_inode;
512         struct ccc_object *vob = cl_inode2ccc(inode);
513
514         ENTRY;
515         LASSERT(vma->vm_file);
516         LASSERT(cfs_atomic_read(&vob->cob_mmap_cnt) >= 0);
517         cfs_atomic_inc(&vob->cob_mmap_cnt);
518         EXIT;
519 }
520
521 /**
522  * Dual to ll_vm_open().
523  */
524 static void ll_vm_close(struct vm_area_struct *vma)
525 {
526         struct inode      *inode = vma->vm_file->f_dentry->d_inode;
527         struct ccc_object *vob   = cl_inode2ccc(inode);
528
529         ENTRY;
530         LASSERT(vma->vm_file);
531         cfs_atomic_dec(&vob->cob_mmap_cnt);
532         LASSERT(cfs_atomic_read(&vob->cob_mmap_cnt) >= 0);
533         EXIT;
534 }
535
536 #ifndef HAVE_VM_OP_FAULT
537 #ifndef HAVE_FILEMAP_POPULATE
538 static int (*filemap_populate)(struct vm_area_struct * area, unsigned long address, unsigned long len, pgprot_t prot, unsigned long pgoff, int nonblock);
539 #endif
540 static int ll_populate(struct vm_area_struct *area, unsigned long address,
541                        unsigned long len, pgprot_t prot, unsigned long pgoff,
542                        int nonblock)
543 {
544         int rc = 0;
545         ENTRY;
546
547         /* always set nonblock as true to avoid page read ahead */
548         rc = filemap_populate(area, address, len, prot, pgoff, 1);
549         RETURN(rc);
550 }
551 #endif
552
553 /* return the user space pointer that maps to a file offset via a vma */
554 static inline unsigned long file_to_user(struct vm_area_struct *vma, __u64 byte)
555 {
556         return vma->vm_start + (byte - ((__u64)vma->vm_pgoff << CFS_PAGE_SHIFT));
557
558 }
559
560 /* XXX put nice comment here.  talk about __free_pte -> dirty pages and
561  * nopage's reference passing to the pte */
562 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last)
563 {
564         int rc = -ENOENT;
565         ENTRY;
566
567         LASSERTF(last > first, "last "LPU64" first "LPU64"\n", last, first);
568         if (mapping_mapped(mapping)) {
569                 rc = 0;
570                 unmap_mapping_range(mapping, first + CFS_PAGE_SIZE - 1,
571                                     last - first + 1, 0);
572         }
573
574         RETURN(rc);
575 }
576
577 static struct vm_operations_struct ll_file_vm_ops = {
578 #ifndef HAVE_VM_OP_FAULT
579         .nopage         = ll_nopage,
580         .populate       = ll_populate,
581
582 #else
583         .fault          = ll_fault,
584 #endif
585         .page_mkwrite   = ll_page_mkwrite,
586         .open           = ll_vm_open,
587         .close          = ll_vm_close,
588 };
589
590 int ll_file_mmap(struct file *file, struct vm_area_struct * vma)
591 {
592         struct inode *inode = file->f_dentry->d_inode;
593         int rc;
594         ENTRY;
595
596         if (ll_file_nolock(file))
597                 RETURN(-EOPNOTSUPP);
598
599         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_MAP, 1);
600         rc = generic_file_mmap(file, vma);
601         if (rc == 0) {
602 #if !defined(HAVE_FILEMAP_POPULATE) && !defined(HAVE_VM_OP_FAULT)
603                 if (!filemap_populate)
604                         filemap_populate = vma->vm_ops->populate;
605 #endif
606                 vma->vm_ops = &ll_file_vm_ops;
607                 vma->vm_ops->open(vma);
608                 /* update the inode's size and mtime */
609                 rc = ll_glimpse_size(inode);
610         }
611
612         RETURN(rc);
613 }