Whamcloud - gitweb
b=16098
[fs/lustre-release.git] / lustre / llite / rw26.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  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/lustre/llite/rw26.c
37  *
38  * Lustre Lite I/O page cache routines for the 2.5/2.6 kernel version
39  */
40
41 #ifndef AUTOCONF_INCLUDED
42 #include <linux/config.h>
43 #endif
44 #include <linux/kernel.h>
45 #include <linux/mm.h>
46 #include <linux/string.h>
47 #include <linux/stat.h>
48 #include <linux/errno.h>
49 #include <linux/smp_lock.h>
50 #include <linux/unistd.h>
51 #include <linux/version.h>
52 #include <asm/system.h>
53 #include <asm/uaccess.h>
54
55 #include <linux/fs.h>
56 #include <linux/buffer_head.h>
57 #include <linux/mpage.h>
58 #include <linux/writeback.h>
59 #include <linux/stat.h>
60 #include <asm/uaccess.h>
61 #include <linux/mm.h>
62 #include <linux/pagemap.h>
63 #include <linux/smp_lock.h>
64
65 #define DEBUG_SUBSYSTEM S_LLITE
66
67 //#include <lustre_mdc.h>
68 #include <lustre_lite.h>
69 #include "llite_internal.h"
70 #include <linux/lustre_compat25.h>
71
72 static int ll_writepage_26(struct page *page, struct writeback_control *wbc)
73 {
74         return ll_writepage(page);
75 }
76
77 /* It is safe to not check anything in invalidatepage/releasepage below
78    because they are run with page locked and all our io is happening with
79    locked page too */
80 #ifdef HAVE_INVALIDATEPAGE_RETURN_INT
81 static int ll_invalidatepage(struct page *page, unsigned long offset)
82 {
83         if (offset)
84                 return 0;
85         if (PagePrivate(page))
86                 ll_removepage(page);
87         return 1;
88 }
89 #else
90 static void ll_invalidatepage(struct page *page, unsigned long offset)
91 {
92         if (offset == 0 && PagePrivate(page))
93                 ll_removepage(page);
94 }
95 #endif
96 static int ll_releasepage(struct page *page, gfp_t gfp_mask)
97 {
98         if (PagePrivate(page))
99                 ll_removepage(page);
100         return 1;
101 }
102
103 static int ll_set_page_dirty(struct page *page)
104 {
105         struct ll_async_page *llap;
106         ENTRY;
107         
108         llap = llap_from_page(page, LLAP_ORIGIN_UNKNOWN);
109         if (IS_ERR(llap))
110                 RETURN(PTR_ERR(llap));
111         
112         llap_write_pending(page->mapping->host, llap);
113         RETURN(__set_page_dirty_nobuffers(page));
114 }
115
116 #define MAX_DIRECTIO_SIZE 2*1024*1024*1024UL
117
118 static inline int ll_get_user_pages(int rw, unsigned long user_addr,
119                                     size_t size, struct page ***pages)
120 {
121         int result = -ENOMEM;
122         int page_count;
123
124         /* set an arbitrary limit to prevent arithmetic overflow */
125         if (size > MAX_DIRECTIO_SIZE) {
126                 *pages = NULL;
127                 return -EFBIG;
128         }
129
130         page_count = (user_addr + size + CFS_PAGE_SIZE - 1) >> CFS_PAGE_SHIFT;
131         page_count -= user_addr >> CFS_PAGE_SHIFT;
132
133         OBD_ALLOC_WAIT(*pages, page_count * sizeof(**pages));
134         if (*pages) {
135                 down_read(&current->mm->mmap_sem);
136                 result = get_user_pages(current, current->mm, user_addr,
137                                         page_count, (rw == READ), 0, *pages,
138                                         NULL);
139                 up_read(&current->mm->mmap_sem);
140                 if (result < 0)
141                         OBD_FREE(*pages, page_count * sizeof(**pages));
142         }
143
144         return result;
145 }
146
147 /*  ll_free_user_pages - tear down page struct array
148  *  @pages: array of page struct pointers underlying target buffer */
149 static void ll_free_user_pages(struct page **pages, int npages, int do_dirty)
150 {
151         int i;
152
153         for (i = 0; i < npages; i++) {
154                 if (do_dirty)
155                         set_page_dirty_lock(pages[i]);
156                 page_cache_release(pages[i]);
157         }
158
159         OBD_FREE(pages, npages * sizeof(*pages));
160 }
161
162 static ssize_t ll_direct_IO_26_seg(int rw, struct inode *inode,
163                                    struct address_space *mapping,
164                                    struct obd_info *oinfo,
165                                    struct ptlrpc_request_set *set,
166                                    size_t size, loff_t file_offset,
167                                    struct page **pages, int page_count)
168 {
169         struct brw_page *pga;
170         int i, rc = 0;
171         size_t length;
172         ENTRY;
173
174         OBD_ALLOC(pga, sizeof(*pga) * page_count);
175         if (!pga) {
176                 CDEBUG(D_VFSTRACE, "sizeof(*pga) = %u page_count = %u\n",
177                        (int)sizeof(*pga), page_count);
178                 RETURN(-ENOMEM);
179         }
180
181         for (i = 0, length = size; length > 0;
182              length -=pga[i].count, file_offset +=pga[i].count,i++) {/*i last!*/
183                 pga[i].pg = pages[i];
184                 pga[i].off = file_offset;
185                 /* To the end of the page, or the length, whatever is less */
186                 pga[i].count = min_t(int, CFS_PAGE_SIZE - 
187                                           (file_offset & ~CFS_PAGE_MASK),
188                                      length);
189                 pga[i].flag = 0;
190                 if (rw == READ)
191                         POISON_PAGE(pages[i], 0x0d);
192         }
193
194         rc = obd_brw_async(rw == WRITE ? OBD_BRW_WRITE : OBD_BRW_READ,
195                                 ll_i2dtexp(inode), oinfo, page_count,
196                                 pga, NULL, set);
197         if (rc == 0)
198                 rc = size;
199
200         OBD_FREE(pga, sizeof(*pga) * page_count);
201         RETURN(rc);
202 }
203
204 /* This is the maximum size of a single O_DIRECT request, based on a 128kB
205  * kmalloc limit.  We need to fit all of the brw_page structs, each one
206  * representing PAGE_SIZE worth of user data, into a single buffer, and
207  * then truncate this to be a full-sized RPC.  This is 22MB for 4kB pages. */
208 #define MAX_DIO_SIZE ((128 * 1024 / sizeof(struct brw_page) * CFS_PAGE_SIZE) & \
209                       ~(PTLRPC_MAX_BRW_SIZE - 1))
210 static ssize_t ll_direct_IO_26(int rw, struct kiocb *iocb,
211                                const struct iovec *iov, loff_t file_offset,
212                                unsigned long nr_segs)
213 {
214         struct file *file = iocb->ki_filp;
215         struct inode *inode = file->f_mapping->host;
216         ssize_t count = iov_length(iov, nr_segs), tot_bytes = 0;
217         struct ll_inode_info *lli = ll_i2info(inode);
218         struct lov_stripe_md *lsm = lli->lli_smd;
219         struct ptlrpc_request_set *set;
220         struct obd_info oinfo;
221         struct obdo oa;
222         unsigned long seg = 0;
223         size_t size = MAX_DIO_SIZE;
224         int opc;
225         ENTRY;
226
227         if (!lli->lli_smd || !lli->lli_smd->lsm_object_id)
228                 RETURN(-EBADF);
229
230         /* FIXME: io smaller than PAGE_SIZE is broken on ia64 ??? */
231         if ((file_offset & ~CFS_PAGE_MASK) || (count & ~CFS_PAGE_MASK))
232                 RETURN(-EINVAL);
233
234         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), size="LPSZ" (max %lu), "
235                "offset=%lld=%llx, pages "LPSZ" (max %lu)\n",
236                inode->i_ino, inode->i_generation, inode, count, MAX_DIO_SIZE,
237                file_offset, file_offset, count >> CFS_PAGE_SHIFT,
238                MAX_DIO_SIZE >> CFS_PAGE_SHIFT);
239
240         if (rw == WRITE) {
241                 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_DIRECT_WRITE, count);
242                 opc = CAPA_OPC_OSS_WRITE;
243                 llap_write_pending(inode, NULL);
244         } else {
245                 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_DIRECT_READ, count);
246                 opc = CAPA_OPC_OSS_RW;
247         }
248
249         /* Check that all user buffers are aligned as well */
250         for (seg = 0; seg < nr_segs; seg++) {
251                 if (((unsigned long)iov[seg].iov_base & ~CFS_PAGE_MASK) ||
252                     (iov[seg].iov_len & ~CFS_PAGE_MASK))
253                         RETURN(-EINVAL);
254         }
255
256         set = ptlrpc_prep_set();
257         if (set == NULL)
258                 RETURN(-ENOMEM);
259
260         ll_inode_fill_obdo(inode, rw, &oa);
261         oinfo.oi_oa = &oa;
262         oinfo.oi_md = lsm;
263         oinfo.oi_capa = ll_osscapa_get(inode, opc);
264
265         /* need locking between buffered and direct access. and race with 
266          *size changing by concurrent truncates and writes. */
267         if (rw == READ)
268                 LOCK_INODE_MUTEX(inode);
269
270         for (seg = 0; seg < nr_segs; seg++) {
271                 size_t iov_left = iov[seg].iov_len;
272                 unsigned long user_addr = (unsigned long)iov[seg].iov_base;
273
274                 if (rw == READ) {
275                         if (file_offset >= inode->i_size)
276                                 break;
277                         if (file_offset + iov_left > inode->i_size)
278                                 iov_left = inode->i_size - file_offset;
279                 }
280
281                 while (iov_left > 0) {
282                         struct page **pages;
283                         int page_count;
284                         ssize_t result;
285
286                         page_count = ll_get_user_pages(rw, user_addr,
287                                                        min(size, iov_left),
288                                                        &pages);
289                         LASSERT(page_count != 0);
290                         if (page_count > 0) {
291                                 result = ll_direct_IO_26_seg(rw, inode,
292                                                              file->f_mapping,
293                                                              &oinfo, set,
294                                                              min(size,iov_left),
295                                                              file_offset, pages,
296                                                              page_count);
297                                 ll_free_user_pages(pages, page_count, rw==READ);
298                         } else {
299                                 result = 0;
300                         }
301                         if (page_count < 0 || result <= 0) {
302                                 /* If we can't allocate a large enough buffer
303                                  * for the request, shrink it to a smaller
304                                  * PAGE_SIZE multiple and try again.
305                                  * We should always be able to kmalloc for a
306                                  * page worth of page pointers = 4MB on i386. */
307                                 if ((page_count == -ENOMEM||result == -ENOMEM)&&
308                                     size > (CFS_PAGE_SIZE / sizeof(*pages)) *
309                                            CFS_PAGE_SIZE) {
310                                         size = ((((size / 2) - 1) |
311                                                  ~CFS_PAGE_MASK) + 1) &
312                                                 CFS_PAGE_MASK;
313                                         CDEBUG(D_VFSTRACE, "DIO size now %u\n",
314                                                (int)size);
315                                         continue;
316                                 }
317
318                                 if (tot_bytes <= 0)
319                                         tot_bytes = page_count < 0 ? page_count : result;
320                                 GOTO(out, tot_bytes);
321                         }
322
323                         tot_bytes += result;
324                         file_offset += result;
325                         iov_left -= result;
326                         user_addr += result;
327                 }
328         }
329 out:
330         if (rw == READ)
331                 UNLOCK_INODE_MUTEX(inode);
332
333         if (tot_bytes > 0) {
334                 int rc;
335                 
336                 rc = ptlrpc_set_wait(set);
337                 if (rc) {
338                         tot_bytes = rc;
339                 } else if (rw == WRITE) {
340                         lov_stripe_lock(lsm);
341                         obd_adjust_kms(ll_i2dtexp(inode), lsm, file_offset, 0);
342                         lov_stripe_unlock(lsm);
343                 }
344         }
345
346         capa_put(oinfo.oi_capa);
347         ptlrpc_set_destroy(set);
348         RETURN(tot_bytes);
349 }
350
351 struct address_space_operations ll_aops = {
352         .readpage       = ll_readpage,
353 //        .readpages      = ll_readpages,
354         .direct_IO      = ll_direct_IO_26,
355         .writepage      = ll_writepage_26,
356         .writepages     = generic_writepages,
357         .set_page_dirty = ll_set_page_dirty,
358         .sync_page      = NULL,
359         .prepare_write  = ll_prepare_write,
360         .commit_write   = ll_commit_write,
361         .invalidatepage = ll_invalidatepage,
362         .releasepage    = ll_releasepage,
363         .bmap           = NULL
364 };