Whamcloud - gitweb
Porting raid5 improvements to rhel5 kernels.
[fs/lustre-release.git] / lustre / obdfilter / filter_io_26.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  linux/fs/obdfilter/filter_io.c
5  *
6  *  Copyright (c) 2001-2003 Cluster File Systems, Inc.
7  *   Author: Peter Braam <braam@clusterfs.com>
8  *   Author: Andreas Dilger <adilger@clusterfs.com>
9  *   Author: Phil Schwan <phil@clusterfs.com>
10  *
11  *   This file is part of the Lustre file system, http://www.lustre.org
12  *   Lustre is a trademark of Cluster File Systems, Inc.
13  *
14  *   You may have signed or agreed to another license before downloading
15  *   this software.  If so, you are bound by the terms and conditions
16  *   of that agreement, and the following does not apply to you.  See the
17  *   LICENSE file included with this distribution for more information.
18  *
19  *   If you did not agree to a different license, then this copy of Lustre
20  *   is open source software; you can redistribute it and/or modify it
21  *   under the terms of version 2 of the GNU General Public License as
22  *   published by the Free Software Foundation.
23  *
24  *   In either case, Lustre is distributed in the hope that it will be
25  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
26  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  *   license text for more details.
28  */
29
30 #ifndef AUTOCONF_INCLUDED
31 #include <linux/config.h>
32 #endif
33 #include <linux/module.h>
34 #include <linux/pagemap.h> // XXX kill me soon
35 #include <linux/version.h>
36 #include <linux/buffer_head.h>
37
38 #define DEBUG_SUBSYSTEM S_FILTER
39
40 #include <obd_class.h>
41 #include <lustre_fsfilt.h>
42 #include <lustre_quota.h>
43 #include "filter_internal.h"
44
45 /* 512byte block min */
46 #define MAX_BLOCKS_PER_PAGE (CFS_PAGE_SIZE / 512)
47 struct filter_iobuf {
48         atomic_t          dr_numreqs;  /* number of reqs being processed */
49         wait_queue_head_t dr_wait;
50         int               dr_max_pages;
51         int               dr_npages;
52         int               dr_error;
53         struct page     **dr_pages;
54         unsigned long    *dr_blocks;
55         spinlock_t        dr_lock;              /* IRQ lock */
56         unsigned int      dr_ignore_quota:1;
57         struct filter_obd *dr_filter;
58 };
59
60 static void record_start_io(struct filter_iobuf *iobuf, int rw, int size,
61                             struct obd_export *exp)
62 {
63         struct filter_obd *filter = iobuf->dr_filter;
64
65         atomic_inc(&iobuf->dr_numreqs);
66
67         if (rw == OBD_BRW_READ) {
68                 atomic_inc(&filter->fo_r_in_flight);
69                 lprocfs_oh_tally(&filter->fo_filter_stats.hist[BRW_R_RPC_HIST],
70                                  atomic_read(&filter->fo_r_in_flight));
71                 lprocfs_oh_tally_log2(&filter->fo_filter_stats.hist[BRW_R_DISK_IOSIZE],
72                                       size);
73                 lprocfs_oh_tally(&exp->exp_filter_data.fed_brw_stats.hist[BRW_R_RPC_HIST],
74                                  atomic_read(&filter->fo_r_in_flight));
75                 lprocfs_oh_tally_log2(&exp->exp_filter_data.fed_brw_stats.hist[BRW_R_DISK_IOSIZE], size);
76         } else {
77                 atomic_inc(&filter->fo_w_in_flight);
78                 lprocfs_oh_tally(&filter->fo_filter_stats.hist[BRW_W_RPC_HIST],
79                                  atomic_read(&filter->fo_w_in_flight));
80                 lprocfs_oh_tally_log2(&filter->fo_filter_stats.hist[BRW_W_DISK_IOSIZE],
81                                       size);
82                 lprocfs_oh_tally(&exp->exp_filter_data.fed_brw_stats.hist[BRW_W_RPC_HIST],
83                                  atomic_read(&filter->fo_w_in_flight));
84                 lprocfs_oh_tally_log2(&exp->exp_filter_data.fed_brw_stats.hist[BRW_W_DISK_IOSIZE], size);
85         }
86 }
87
88 static void record_finish_io(struct filter_iobuf *iobuf, int rw, int rc)
89 {
90         struct filter_obd *filter = iobuf->dr_filter;
91
92         /* CAVEAT EMPTOR: possibly in IRQ context 
93          * DO NOT record procfs stats here!!! */
94
95         if (rw == OBD_BRW_READ)
96                 atomic_dec(&filter->fo_r_in_flight);
97         else
98                 atomic_dec(&filter->fo_w_in_flight);
99
100         if (atomic_dec_and_test(&iobuf->dr_numreqs))
101                 wake_up(&iobuf->dr_wait);
102 }
103
104 static int dio_complete_routine(struct bio *bio, unsigned int done, int error)
105 {
106         struct filter_iobuf *iobuf = bio->bi_private;
107         unsigned long        flags;
108
109 #ifdef HAVE_PAGE_CONSTANT
110         struct bio_vec *bvl;
111         int i;
112 #endif
113
114         /* CAVEAT EMPTOR: possibly in IRQ context 
115          * DO NOT record procfs stats here!!! */
116
117         if (bio->bi_size)                       /* Not complete */
118                 return 1;
119
120         if (iobuf == NULL) {
121                 CERROR("***** bio->bi_private is NULL!  This should never "
122                        "happen.  Normally, I would crash here, but instead I "
123                        "will dump the bio contents to the console.  Please "
124                        "report this to CFS, along with any interesting "
125                        "messages leading up to this point (like SCSI errors, "
126                        "perhaps).  Because bi_private is NULL, I can't wake up "
127                        "the thread that initiated this I/O -- so you will "
128                        "probably have to reboot this node.\n");
129                 CERROR("bi_next: %p, bi_flags: %lx, bi_rw: %lu, bi_vcnt: %d, "
130                        "bi_idx: %d, bi->size: %d, bi_end_io: %p, bi_cnt: %d, "
131                        "bi_private: %p\n", bio->bi_next, bio->bi_flags,
132                        bio->bi_rw, bio->bi_vcnt, bio->bi_idx, bio->bi_size,
133                        bio->bi_end_io, atomic_read(&bio->bi_cnt),
134                        bio->bi_private);
135                 return 0;
136         }
137
138 #ifdef HAVE_PAGE_CONSTANT
139         bio_for_each_segment(bvl, bio, i)
140                 ClearPageConstant(bvl->bv_page);
141 #endif
142
143         spin_lock_irqsave(&iobuf->dr_lock, flags);
144         if (iobuf->dr_error == 0)
145                 iobuf->dr_error = error;
146         spin_unlock_irqrestore(&iobuf->dr_lock, flags);
147
148         record_finish_io(iobuf, test_bit(BIO_RW, &bio->bi_rw) ?
149                          OBD_BRW_WRITE : OBD_BRW_READ, error);
150
151         /* Completed bios used to be chained off iobuf->dr_bios and freed in
152          * filter_clear_dreq().  It was then possible to exhaust the biovec-256
153          * mempool when serious on-disk fragmentation was encountered,
154          * deadlocking the OST.  The bios are now released as soon as complete
155          * so the pool cannot be exhausted while IOs are competing. bug 10076 */
156         bio_put(bio);
157         return 0;
158 }
159
160 static int can_be_merged(struct bio *bio, sector_t sector)
161 {
162         unsigned int size;
163
164         if (!bio)
165                 return 0;
166
167         size = bio->bi_size >> 9;
168         return bio->bi_sector + size == sector ? 1 : 0;
169 }
170
171 struct filter_iobuf *filter_alloc_iobuf(struct filter_obd *filter,
172                                         int rw, int num_pages)
173 {
174         struct filter_iobuf *iobuf;
175
176         LASSERTF(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ, "%x\n", rw);
177
178         OBD_ALLOC(iobuf, sizeof(*iobuf));
179         if (iobuf == NULL)
180                 goto failed_0;
181
182         OBD_ALLOC(iobuf->dr_pages, num_pages * sizeof(*iobuf->dr_pages));
183         if (iobuf->dr_pages == NULL)
184                 goto failed_1;
185
186         OBD_ALLOC(iobuf->dr_blocks,
187                   MAX_BLOCKS_PER_PAGE * num_pages * sizeof(*iobuf->dr_blocks));
188         if (iobuf->dr_blocks == NULL)
189                 goto failed_2;
190
191         iobuf->dr_filter = filter;
192         init_waitqueue_head(&iobuf->dr_wait);
193         atomic_set(&iobuf->dr_numreqs, 0);
194         spin_lock_init(&iobuf->dr_lock);
195         iobuf->dr_max_pages = num_pages;
196         iobuf->dr_npages = 0;
197         iobuf->dr_error = 0;
198
199         RETURN(iobuf);
200
201  failed_2:
202         OBD_FREE(iobuf->dr_pages,
203                  num_pages * sizeof(*iobuf->dr_pages));
204  failed_1:
205         OBD_FREE(iobuf, sizeof(*iobuf));
206  failed_0:
207         RETURN(ERR_PTR(-ENOMEM));
208 }
209
210 static void filter_clear_iobuf(struct filter_iobuf *iobuf)
211 {
212         iobuf->dr_npages = 0;
213         iobuf->dr_error = 0;
214         atomic_set(&iobuf->dr_numreqs, 0);
215 }
216
217 void filter_free_iobuf(struct filter_iobuf *iobuf)
218 {
219         int num_pages = iobuf->dr_max_pages;
220
221         filter_clear_iobuf(iobuf);
222
223         OBD_FREE(iobuf->dr_blocks,
224                  MAX_BLOCKS_PER_PAGE * num_pages * sizeof(*iobuf->dr_blocks));
225         OBD_FREE(iobuf->dr_pages,
226                  num_pages * sizeof(*iobuf->dr_pages));
227         OBD_FREE_PTR(iobuf);
228 }
229
230 void filter_iobuf_put(struct filter_obd *filter, struct filter_iobuf *iobuf,
231                       struct obd_trans_info *oti)
232 {
233         int thread_id = oti ? oti->oti_thread_id : -1;
234
235         if (unlikely(thread_id < 0)) {
236                 filter_free_iobuf(iobuf);
237                 return;
238         }
239
240         LASSERTF(filter->fo_iobuf_pool[thread_id] == iobuf,
241                  "iobuf mismatch for thread %d: pool %p iobuf %p\n",
242                  thread_id, filter->fo_iobuf_pool[thread_id], iobuf);
243         filter_clear_iobuf(iobuf);
244 }
245
246 int filter_iobuf_add_page(struct obd_device *obd, struct filter_iobuf *iobuf,
247                           struct inode *inode, struct page *page)
248 {
249         LASSERT(iobuf->dr_npages < iobuf->dr_max_pages);
250         iobuf->dr_pages[iobuf->dr_npages++] = page;
251
252         return 0;
253 }
254
255 int filter_do_bio(struct obd_export *exp, struct inode *inode,
256                   struct filter_iobuf *iobuf, int rw)
257 {
258         struct obd_device *obd = exp->exp_obd;
259         int            blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
260         struct page  **pages = iobuf->dr_pages;
261         int            npages = iobuf->dr_npages;
262         unsigned long *blocks = iobuf->dr_blocks;
263         int            total_blocks = npages * blocks_per_page;
264         int            sector_bits = inode->i_sb->s_blocksize_bits - 9;
265         unsigned int   blocksize = inode->i_sb->s_blocksize;
266         struct bio    *bio = NULL;
267         int            frags = 0;
268         unsigned long  start_time = jiffies;
269         struct page   *page;
270         unsigned int   page_offset;
271         sector_t       sector;
272         int            nblocks;
273         int            block_idx;
274         int            page_idx;
275         int            i;
276         int            rc = 0;
277         ENTRY;
278
279         LASSERT(iobuf->dr_npages == npages);
280         LASSERT(total_blocks <= OBDFILTER_CREATED_SCRATCHPAD_ENTRIES);
281
282         for (page_idx = 0, block_idx = 0;
283              page_idx < npages;
284              page_idx++, block_idx += blocks_per_page) {
285
286                 page = pages[page_idx];
287                 LASSERT (block_idx + blocks_per_page <= total_blocks);
288
289                 for (i = 0, page_offset = 0;
290                      i < blocks_per_page;
291                      i += nblocks, page_offset += blocksize * nblocks) {
292
293                         nblocks = 1;
294
295                         if (blocks[block_idx + i] == 0) {  /* hole */
296                                 LASSERT(rw == OBD_BRW_READ);
297                                 memset(kmap(page) + page_offset, 0, blocksize);
298                                 kunmap(page);
299                                 continue;
300                         }
301
302                         sector = (sector_t)blocks[block_idx + i] << sector_bits;
303
304                         /* Additional contiguous file blocks? */
305                         while (i + nblocks < blocks_per_page &&
306                                (sector + (nblocks << sector_bits)) ==
307                                ((sector_t)blocks[block_idx + i + nblocks] <<
308                                 sector_bits))
309                                 nblocks++;
310
311 #ifdef HAVE_PAGE_CONSTANT
312                         /* I only set the page to be constant only if it 
313                          * is mapped to a contiguous underlying disk block(s). 
314                          * It will then make sure the corresponding device 
315                          * cache of raid5 will be overwritten by this page. 
316                          * - jay */
317                         if ((rw == OBD_BRW_WRITE) && 
318                             (nblocks == blocks_per_page) && 
319                             mapping_cap_page_constant_write(inode->i_mapping))
320                                SetPageConstant(page);
321 #endif
322
323                         if (bio != NULL &&
324                             can_be_merged(bio, sector) &&
325                             bio_add_page(bio, page,
326                                          blocksize * nblocks, page_offset) != 0)
327                                 continue;       /* added this frag OK */
328
329                         if (bio != NULL) {
330                                 request_queue_t *q =
331                                         bdev_get_queue(bio->bi_bdev);
332
333                                 /* Dang! I have to fragment this I/O */
334                                 CDEBUG(D_INODE, "bio++ sz %d vcnt %d(%d) "
335                                        "sectors %d(%d) psg %d(%d) hsg %d(%d)\n",
336                                        bio->bi_size,
337                                        bio->bi_vcnt, bio->bi_max_vecs,
338                                        bio->bi_size >> 9, q->max_sectors,
339                                        bio_phys_segments(q, bio),
340                                        q->max_phys_segments,
341                                        bio_hw_segments(q, bio),
342                                        q->max_hw_segments);
343
344                                 record_start_io(iobuf, rw, bio->bi_size, exp);
345                                 rc = fsfilt_send_bio(rw, obd, inode, bio);
346                                 if (rc < 0) {
347                                         CERROR("Can't send bio: %d\n", rc);
348                                         record_finish_io(iobuf, rw, rc);
349                                         goto out;
350                                 }
351                                 frags++;
352                         }
353
354                         /* allocate new bio */
355                         bio = bio_alloc(GFP_NOIO,
356                                         (npages - page_idx) * blocks_per_page);
357                         if (bio == NULL) {
358                                 CERROR("Can't allocate bio %u*%u = %u pages\n",
359                                        (npages - page_idx), blocks_per_page,
360                                        (npages - page_idx) * blocks_per_page);
361                                 rc = -ENOMEM;
362                                 goto out;
363                         }
364
365                         bio->bi_bdev = inode->i_sb->s_bdev;
366                         bio->bi_sector = sector;
367                         bio->bi_end_io = dio_complete_routine;
368                         bio->bi_private = iobuf;
369
370                         rc = bio_add_page(bio, page,
371                                           blocksize * nblocks, page_offset);
372                         LASSERT (rc != 0);
373                 }
374         }
375
376         if (bio != NULL) {
377                 record_start_io(iobuf, rw, bio->bi_size, exp);
378                 rc = fsfilt_send_bio(rw, obd, inode, bio);
379                 if (rc >= 0) {
380                         frags++;
381                         rc = 0;
382                 } else {
383                         CERROR("Can't send bio: %d\n", rc);
384                         record_finish_io(iobuf, rw, rc);
385                 }
386         }
387
388  out:
389         wait_event(iobuf->dr_wait, atomic_read(&iobuf->dr_numreqs) == 0);
390
391         if (rw == OBD_BRW_READ) {
392                 lprocfs_oh_tally(&obd->u.filter.fo_filter_stats.hist[BRW_R_DIO_FRAGS],
393                                  frags);
394                 lprocfs_oh_tally(&exp->exp_filter_data.fed_brw_stats.hist[BRW_R_DIO_FRAGS],
395                                  frags);
396                 lprocfs_oh_tally_log2(&obd->u.filter.fo_filter_stats.hist[BRW_R_IO_TIME],
397                                       jiffies - start_time);
398                 lprocfs_oh_tally_log2(&exp->exp_filter_data.fed_brw_stats.hist[BRW_R_IO_TIME], jiffies - start_time);
399         } else {
400                 lprocfs_oh_tally(&obd->u.filter.fo_filter_stats.hist[BRW_W_DIO_FRAGS],
401                                  frags);
402                 lprocfs_oh_tally(&exp->exp_filter_data.fed_brw_stats.hist[BRW_W_DIO_FRAGS],
403                                  frags);
404                 lprocfs_oh_tally_log2(&obd->u.filter.fo_filter_stats.hist[BRW_W_IO_TIME],
405                                       jiffies - start_time);
406                 lprocfs_oh_tally_log2(&exp->exp_filter_data.fed_brw_stats.hist[BRW_W_IO_TIME], jiffies - start_time);
407         }
408
409         if (rc == 0)
410                 rc = iobuf->dr_error;
411         RETURN(rc);
412 }
413
414 /* These are our hacks to keep our directio/bh IO coherent with ext3's
415  * page cache use.  Most notably ext3 reads file data into the page
416  * cache when it is zeroing the tail of partial-block truncates and
417  * leaves it there, sometimes generating io from it at later truncates.
418  * This removes the partial page and its buffers from the page cache,
419  * so it should only ever cause a wait in rare cases, as otherwise we
420  * always do full-page IO to the OST.
421  *
422  * The call to truncate_complete_page() will call journal_invalidatepage()
423  * to free the buffers and drop the page from cache.  The buffers should
424  * not be dirty, because we already called fdatasync/fdatawait on them.
425  */
426 static int filter_sync_inode_data(struct inode *inode, int locked)
427 {
428         int rc = 0;
429
430         /* This is nearly do_fsync(), without the waiting on the inode */
431         /* XXX: in 2.6.16 (at least) we don't need to hold i_mutex over
432          * filemap_fdatawrite() and filemap_fdatawait(), so we may no longer
433          * need this lock here at all. */
434         if (!locked)
435                 LOCK_INODE_MUTEX(inode);
436         if (inode->i_mapping->nrpages) {
437 #ifdef PF_SYNCWRITE
438                 current->flags |= PF_SYNCWRITE;
439 #endif
440                 rc = filemap_fdatawrite(inode->i_mapping);
441                 if (rc == 0)
442                         rc = filemap_fdatawait(inode->i_mapping);
443 #ifdef PF_SYNCWRITE
444                 current->flags &= ~PF_SYNCWRITE;
445 #endif
446         }
447         if (!locked)
448                 UNLOCK_INODE_MUTEX(inode);
449
450         return rc;
451 }
452 /* Clear pages from the mapping before we do direct IO to that offset.
453  * Now that the only source of such pages in the truncate path flushes
454  * these pages to disk and then discards them, this is error condition.
455  * If add back read cache this will happen again.  This could be disabled
456  * until that time if we never see the below error. */
457 static int filter_clear_page_cache(struct inode *inode,
458                                    struct filter_iobuf *iobuf)
459 {
460         struct page *page;
461         int i, rc;
462
463         rc = filter_sync_inode_data(inode, 0);
464         if (rc != 0)
465                 RETURN(rc);
466
467         /* be careful to call this after fsync_inode_data_buffers has waited
468          * for IO to complete before we evict it from the cache */
469         for (i = 0; i < iobuf->dr_npages; i++) {
470                 page = find_lock_page(inode->i_mapping,
471                                       iobuf->dr_pages[i]->index);
472                 if (page == NULL)
473                         continue;
474                 if (page->mapping != NULL) {
475                         CERROR("page %lu (%d/%d) in page cache during write!\n",
476                                page->index, i, iobuf->dr_npages);
477                         wait_on_page_writeback(page);
478                         ll_truncate_complete_page(page);
479                 }
480
481                 unlock_page(page);
482                 page_cache_release(page);
483         }
484
485         return 0;
486 }
487
488 int filter_clear_truncated_page(struct inode *inode)
489 {
490         struct page *page;
491         int rc;
492
493         /* Truncate on page boundary, so nothing to flush? */
494         if (!(i_size_read(inode) & ~CFS_PAGE_MASK))
495                 return 0;
496
497         rc = filter_sync_inode_data(inode, 1);
498         if (rc != 0)
499                 RETURN(rc);
500
501         /* be careful to call this after fsync_inode_data_buffers has waited
502          * for IO to complete before we evict it from the cache */
503         page = find_lock_page(inode->i_mapping,
504                               i_size_read(inode) >> CFS_PAGE_SHIFT);
505         if (page) {
506                 if (page->mapping != NULL) {
507                         wait_on_page_writeback(page);
508                         ll_truncate_complete_page(page);
509                 }
510                 unlock_page(page);
511                 page_cache_release(page);
512         }
513
514         return 0;
515 }
516
517 /* Must be called with i_mutex taken for writes; this will drop it */
518 int filter_direct_io(int rw, struct dentry *dchild, struct filter_iobuf *iobuf,
519                      struct obd_export *exp, struct iattr *attr,
520                      struct obd_trans_info *oti, void **wait_handle)
521 {
522         struct obd_device *obd = exp->exp_obd;
523         struct inode *inode = dchild->d_inode;
524         int blocks_per_page = CFS_PAGE_SIZE >> inode->i_blkbits;
525         int rc, rc2, create;
526         struct semaphore *sem;
527         ENTRY;
528
529         LASSERTF(iobuf->dr_npages <= iobuf->dr_max_pages, "%d,%d\n",
530                  iobuf->dr_npages, iobuf->dr_max_pages);
531         LASSERT(iobuf->dr_npages <= OBDFILTER_CREATED_SCRATCHPAD_ENTRIES);
532
533         if (rw == OBD_BRW_READ) {
534                 if (iobuf->dr_npages == 0)
535                         RETURN(0);
536                 create = 0;
537                 sem = NULL;
538         } else {
539                 LASSERTF(rw == OBD_BRW_WRITE, "%x\n", rw);
540                 LASSERT(iobuf->dr_npages > 0);
541                 create = 1;
542                 sem = &obd->u.filter.fo_alloc_lock;
543
544                 lquota_enforce(filter_quota_interface_ref, obd, iobuf->dr_ignore_quota);
545         }
546
547         rc = fsfilt_map_inode_pages(obd, inode, iobuf->dr_pages,
548                                     iobuf->dr_npages, iobuf->dr_blocks,
549                                     obdfilter_created_scratchpad, create, sem);
550
551         if (rw == OBD_BRW_WRITE) {
552                 if (rc == 0) {
553                         filter_tally(exp, iobuf->dr_pages,
554                                      iobuf->dr_npages, iobuf->dr_blocks,
555                                      blocks_per_page, 1);
556                         if (attr->ia_size > i_size_read(inode))
557                                 attr->ia_valid |= ATTR_SIZE;
558                         rc = fsfilt_setattr(obd, dchild,
559                                             oti->oti_handle, attr, 0);
560                 }
561
562                 UNLOCK_INODE_MUTEX(inode);
563
564                 rc2 = filter_finish_transno(exp, oti, 0, 0);
565                 if (rc2 != 0) {
566                         CERROR("can't close transaction: %d\n", rc2);
567                         if (rc == 0)
568                                 rc = rc2;
569                 }
570
571                 rc2 = fsfilt_commit_async(obd,inode,oti->oti_handle,
572                                           wait_handle);
573                 if (rc == 0)
574                         rc = rc2;
575                 if (rc != 0)
576                         RETURN(rc);
577         } else if (rc == 0) {
578                 filter_tally(exp, iobuf->dr_pages, iobuf->dr_npages,
579                              iobuf->dr_blocks, blocks_per_page, 0);
580         }
581
582         rc = filter_clear_page_cache(inode, iobuf);
583         if (rc != 0)
584                 RETURN(rc);
585
586         RETURN(filter_do_bio(exp, inode, iobuf, rw));
587 }
588
589 /* See if there are unallocated parts in given file region */
590 static int filter_range_is_mapped(struct inode *inode, obd_size offset, int len)
591 {
592         sector_t (*fs_bmap)(struct address_space *, sector_t) =
593                 inode->i_mapping->a_ops->bmap;
594         int j;
595
596         /* We can't know if we are overwriting or not */
597         if (fs_bmap == NULL)
598                 return 0;
599
600         offset >>= inode->i_blkbits;
601         len >>= inode->i_blkbits;
602
603         for (j = 0; j <= len; j++)
604                 if (fs_bmap(inode->i_mapping, offset + j) == 0)
605                         return 0;
606
607         return 1;
608 }
609
610 int filter_commitrw_write(struct obd_export *exp, struct obdo *oa,
611                           int objcount, struct obd_ioobj *obj, int niocount,
612                           struct niobuf_local *res, struct obd_trans_info *oti,
613                           int rc)
614 {
615         struct niobuf_local *lnb;
616         struct filter_iobuf *iobuf = NULL;
617         struct lvfs_run_ctxt saved;
618         struct fsfilt_objinfo fso;
619         struct iattr iattr = { 0 };
620         struct inode *inode = NULL;
621         unsigned long now = jiffies;
622         int i, err, cleanup_phase = 0;
623         struct obd_device *obd = exp->exp_obd;
624         void *wait_handle;
625         int   total_size = 0, rc2;
626         unsigned int qcids[MAXQUOTAS] = {0, 0};
627         ENTRY;
628
629         LASSERT(oti != NULL);
630         LASSERT(objcount == 1);
631         LASSERT(current->journal_info == NULL);
632
633         if (rc != 0)
634                 GOTO(cleanup, rc);
635
636         /* Unfortunately, if quota master is too busy to handle the
637          * pre-dqacq in time and quota hash on ost is used up, we
638          * have to wait for the completion of in flight dqacq/dqrel,
639          * then try again */
640         if ((rc2 = lquota_chkquota(filter_quota_interface_ref, obd, oa->o_uid,
641                                    oa->o_gid, niocount)) == QUOTA_RET_ACQUOTA) {
642                 OBD_FAIL_TIMEOUT(OBD_FAIL_OST_HOLD_WRITE_RPC, 90);
643                 lquota_acquire(filter_quota_interface_ref, obd, oa->o_uid,
644                                oa->o_gid);
645         }
646
647         if (rc2 < 0) {
648                 rc = rc2;
649                 GOTO(cleanup, rc);
650         }
651
652         iobuf = filter_iobuf_get(&obd->u.filter, oti);
653         if (IS_ERR(iobuf))
654                 GOTO(cleanup, rc = PTR_ERR(iobuf));
655         cleanup_phase = 1;
656
657         fso.fso_dentry = res->dentry;
658         fso.fso_bufcnt = obj->ioo_bufcnt;
659         inode = res->dentry->d_inode;
660
661         iobuf->dr_ignore_quota = 0;
662         for (i = 0, lnb = res; i < obj->ioo_bufcnt; i++, lnb++) {
663                 loff_t this_size;
664
665                 /* If overwriting an existing block, we don't need a grant */
666                 if (!(lnb->flags & OBD_BRW_GRANTED) && lnb->rc == -ENOSPC &&
667                     filter_range_is_mapped(inode, lnb->offset, lnb->len))
668                         lnb->rc = 0;
669
670                 if (lnb->rc) { /* ENOSPC, network RPC error, etc. */
671                         CDEBUG(D_INODE, "Skipping [%d] == %d\n", i, lnb->rc);
672                         continue;
673                 }
674
675                 err = filter_iobuf_add_page(obd, iobuf, inode, lnb->page);
676                 LASSERT (err == 0);
677
678                 total_size += lnb->len;
679
680                 /* we expect these pages to be in offset order, but we'll
681                  * be forgiving */
682                 this_size = lnb->offset + lnb->len;
683                 if (this_size > iattr.ia_size)
684                         iattr.ia_size = this_size;
685
686                 /* if one page is a write-back page from client cache, or it's
687                  * written by root, then mark the whole io request as ignore
688                  * quota request */
689                 if (lnb->flags & (OBD_BRW_FROM_GRANT | OBD_BRW_NOQUOTA))
690                         iobuf->dr_ignore_quota = 1;
691         }
692
693         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
694         cleanup_phase = 2;
695
696         DQUOT_INIT(inode);
697
698         LOCK_INODE_MUTEX(inode);
699         fsfilt_check_slow(obd, now, obd_timeout, "i_mutex");
700         oti->oti_handle = fsfilt_brw_start(obd, objcount, &fso, niocount, res,
701                                            oti);
702         if (IS_ERR(oti->oti_handle)) {
703                 UNLOCK_INODE_MUTEX(inode);
704                 rc = PTR_ERR(oti->oti_handle);
705                 CDEBUG(rc == -ENOSPC ? D_INODE : D_ERROR,
706                        "error starting transaction: rc = %d\n", rc);
707                 oti->oti_handle = NULL;
708                 GOTO(cleanup, rc);
709         }
710         /* have to call fsfilt_commit() from this point on */
711
712         fsfilt_check_slow(obd, now, obd_timeout, "brw_start");
713
714         i = OBD_MD_FLATIME | OBD_MD_FLMTIME | OBD_MD_FLCTIME;
715
716         /* If the inode still has SUID+SGID bits set (see filter_precreate())
717          * then we will accept the UID+GID if sent by the client for
718          * initializing the ownership of this inode.  We only allow this to
719          * happen once (so clear these bits) and later only allow setattr. */
720         if (inode->i_mode & S_ISUID)
721                 i |= OBD_MD_FLUID;
722         if (inode->i_mode & S_ISGID)
723                 i |= OBD_MD_FLGID;
724
725         iattr_from_obdo(&iattr, oa, i);
726         if (iattr.ia_valid & (ATTR_UID | ATTR_GID)) {
727                 unsigned int save;
728
729                 CDEBUG(D_INODE, "update UID/GID to %lu/%lu\n",
730                        (unsigned long)oa->o_uid, (unsigned long)oa->o_gid);
731
732                 cap_raise(current->cap_effective, CAP_SYS_RESOURCE);
733
734                 iattr.ia_valid |= ATTR_MODE;
735                 iattr.ia_mode = inode->i_mode;
736                 if (iattr.ia_valid & ATTR_UID)
737                         iattr.ia_mode &= ~S_ISUID;
738                 if (iattr.ia_valid & ATTR_GID)
739                         iattr.ia_mode &= ~S_ISGID;
740
741                 rc = filter_update_fidea(exp, inode, oti->oti_handle, oa);
742
743                 /* To avoid problems with quotas, UID and GID must be set
744                  * in the inode before filter_direct_io() - see bug 10357. */
745                 save = iattr.ia_valid;
746                 iattr.ia_valid &= (ATTR_UID | ATTR_GID);
747                 rc = fsfilt_setattr(obd, res->dentry, oti->oti_handle, &iattr, 0);
748                 CDEBUG(D_QUOTA, "set uid(%u)/gid(%u) to ino(%lu). rc(%d)\n", 
749                                 iattr.ia_uid, iattr.ia_gid, inode->i_ino, rc);
750                 iattr.ia_valid = save & ~(ATTR_UID | ATTR_GID);
751         }
752
753         /* filter_direct_io drops i_mutex */
754         rc = filter_direct_io(OBD_BRW_WRITE, res->dentry, iobuf, exp, &iattr,
755                               oti, &wait_handle);
756         if (rc == 0)
757                 obdo_from_inode(oa, inode,
758                                 FILTER_VALID_FLAGS |OBD_MD_FLUID |OBD_MD_FLGID);
759         else
760                 obdo_from_inode(oa, inode, OBD_MD_FLUID | OBD_MD_FLGID);
761
762         lquota_getflag(filter_quota_interface_ref, obd, oa);
763
764         fsfilt_check_slow(obd, now, obd_timeout, "direct_io");
765
766         err = fsfilt_commit_wait(obd, inode, wait_handle);
767         if (err) {
768                 CERROR("Failure to commit OST transaction (%d)?\n", err);
769                 rc = err;
770         }
771
772         if (obd->obd_replayable && !rc)
773                 LASSERTF(oti->oti_transno <= obd->obd_last_committed,
774                          "oti_transno "LPU64" last_committed "LPU64"\n",
775                          oti->oti_transno, obd->obd_last_committed);
776
777         fsfilt_check_slow(obd, now, obd_timeout, "commitrw commit");
778
779 cleanup:
780         filter_grant_commit(exp, niocount, res);
781
782         switch (cleanup_phase) {
783         case 2:
784                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
785                 LASSERT(current->journal_info == NULL);
786         case 1:
787                 filter_iobuf_put(&obd->u.filter, iobuf, oti);
788         case 0:
789                 /*
790                  * lnb->page automatically returns back into per-thread page
791                  * pool (bug 5137)
792                  */
793                 f_dput(res->dentry);
794         }
795
796         /* trigger quota pre-acquire */
797         qcids[USRQUOTA] = oa->o_uid;
798         qcids[GRPQUOTA] = oa->o_gid;
799         err = lquota_adjust(filter_quota_interface_ref, obd, qcids, NULL, rc,
800                             FSFILT_OP_CREATE);
801         CDEBUG(err ? D_ERROR : D_QUOTA,
802                "filter adjust qunit! (rc:%d)\n", err);
803
804         RETURN(rc);
805 }