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