Whamcloud - gitweb
LU-14267 osd: do not update inode each write
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_io.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/osd/osd_io.c
33  *
34  * body operations
35  *
36  * Author: Nikita Danilov <nikita@clusterfs.com>
37  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
38  *
39  */
40
41 #define DEBUG_SUBSYSTEM S_OSD
42
43 /* prerequisite for linux/xattr.h */
44 #include <linux/types.h>
45 /* prerequisite for linux/xattr.h */
46 #include <linux/fs.h>
47 #include <linux/mm.h>
48 #include <linux/pagevec.h>
49
50 /*
51  * struct OBD_{ALLOC,FREE}*()
52  * OBD_FAIL_CHECK
53  */
54 #include <obd_support.h>
55
56 #include "osd_internal.h"
57
58 /* ext_depth() */
59 #include <ldiskfs/ldiskfs_extents.h>
60
61 static inline bool osd_use_page_cache(struct osd_device *d)
62 {
63         /* do not use pagecache if write and read caching are disabled */
64         if (d->od_writethrough_cache + d->od_read_cache == 0)
65                 return false;
66         /* use pagecache by default */
67         return true;
68 }
69
70 static int __osd_init_iobuf(struct osd_device *d, struct osd_iobuf *iobuf,
71                             int rw, int line, int pages)
72 {
73         int blocks, i;
74
75         LASSERTF(iobuf->dr_elapsed_valid == 0,
76                  "iobuf %p, reqs %d, rw %d, line %d\n", iobuf,
77                  atomic_read(&iobuf->dr_numreqs), iobuf->dr_rw,
78                  iobuf->dr_init_at);
79         LASSERT(pages <= PTLRPC_MAX_BRW_PAGES);
80
81         init_waitqueue_head(&iobuf->dr_wait);
82         atomic_set(&iobuf->dr_numreqs, 0);
83         iobuf->dr_npages = 0;
84         iobuf->dr_error = 0;
85         iobuf->dr_dev = d;
86         iobuf->dr_frags = 0;
87         iobuf->dr_elapsed = ktime_set(0, 0);
88         /* must be counted before, so assert */
89         iobuf->dr_rw = rw;
90         iobuf->dr_init_at = line;
91
92         blocks = pages * (PAGE_SIZE >> osd_sb(d)->s_blocksize_bits);
93         if (iobuf->dr_bl_buf.lb_len >= blocks * sizeof(iobuf->dr_blocks[0])) {
94                 LASSERT(iobuf->dr_pg_buf.lb_len >=
95                         pages * sizeof(iobuf->dr_pages[0]));
96                 return 0;
97         }
98
99         /* start with 1MB for 4K blocks */
100         i = 256;
101         while (i <= PTLRPC_MAX_BRW_PAGES && i < pages)
102                 i <<= 1;
103
104         CDEBUG(D_OTHER, "realloc %u for %u (%u) pages\n",
105                (unsigned int)(pages * sizeof(iobuf->dr_pages[0])), i, pages);
106         pages = i;
107         blocks = pages * (PAGE_SIZE >> osd_sb(d)->s_blocksize_bits);
108         iobuf->dr_max_pages = 0;
109         CDEBUG(D_OTHER, "realloc %u for %u blocks\n",
110                (unsigned int)(blocks * sizeof(iobuf->dr_blocks[0])), blocks);
111
112         lu_buf_realloc(&iobuf->dr_bl_buf, blocks * sizeof(iobuf->dr_blocks[0]));
113         iobuf->dr_blocks = iobuf->dr_bl_buf.lb_buf;
114         if (unlikely(iobuf->dr_blocks == NULL))
115                 return -ENOMEM;
116
117         lu_buf_realloc(&iobuf->dr_pg_buf, pages * sizeof(iobuf->dr_pages[0]));
118         iobuf->dr_pages = iobuf->dr_pg_buf.lb_buf;
119         if (unlikely(iobuf->dr_pages == NULL))
120                 return -ENOMEM;
121
122         lu_buf_realloc(&iobuf->dr_lnb_buf,
123                        pages * sizeof(iobuf->dr_lnbs[0]));
124         iobuf->dr_lnbs = iobuf->dr_lnb_buf.lb_buf;
125         if (unlikely(iobuf->dr_lnbs == NULL))
126                 return -ENOMEM;
127
128         iobuf->dr_max_pages = pages;
129
130         return 0;
131 }
132 #define osd_init_iobuf(dev, iobuf, rw, pages) \
133         __osd_init_iobuf(dev, iobuf, rw, __LINE__, pages)
134
135 static void osd_iobuf_add_page(struct osd_iobuf *iobuf,
136                                struct niobuf_local *lnb)
137 {
138         LASSERT(iobuf->dr_npages < iobuf->dr_max_pages);
139         iobuf->dr_pages[iobuf->dr_npages] = lnb->lnb_page;
140         iobuf->dr_lnbs[iobuf->dr_npages] = lnb;
141         iobuf->dr_npages++;
142 }
143
144 void osd_fini_iobuf(struct osd_device *d, struct osd_iobuf *iobuf)
145 {
146         int rw = iobuf->dr_rw;
147
148         if (iobuf->dr_elapsed_valid) {
149                 iobuf->dr_elapsed_valid = 0;
150                 LASSERT(iobuf->dr_dev == d);
151                 LASSERT(iobuf->dr_frags > 0);
152                 lprocfs_oh_tally(&d->od_brw_stats.hist[BRW_R_DIO_FRAGS+rw],
153                                  iobuf->dr_frags);
154                 lprocfs_oh_tally_log2(&d->od_brw_stats.hist[BRW_R_IO_TIME+rw],
155                                       ktime_to_ms(iobuf->dr_elapsed));
156         }
157 }
158
159 #ifdef HAVE_BIO_ENDIO_USES_ONE_ARG
160 static void dio_complete_routine(struct bio *bio)
161 {
162         int error = blk_status_to_errno(bio->bi_status);
163 #else
164 static void dio_complete_routine(struct bio *bio, int error)
165 {
166 #endif
167         struct osd_iobuf *iobuf = bio->bi_private;
168         struct bio_vec *bvl;
169
170         /* CAVEAT EMPTOR: possibly in IRQ context
171          * DO NOT record procfs stats here!!!
172          */
173
174         if (unlikely(iobuf == NULL)) {
175                 CERROR("***** bio->bi_private is NULL!  This should never happen.  Normally, I would crash here, but instead I will dump the bio contents to the console.  Please report this to <https://jira.whamcloud.com/> , along with any interesting messages leading up to this point (like SCSI errors, perhaps).  Because bi_private is NULL, I can't wake up the thread that initiated this IO - you will probably have to reboot this node.\n");
176                 CERROR("bi_next: %p, bi_flags: %lx, " __stringify(bi_opf)
177                        ": %x, bi_vcnt: %d, bi_idx: %d, bi->size: %d, bi_end_io: %p, bi_cnt: %d, bi_private: %p\n",
178                        bio->bi_next, (unsigned long)bio->bi_flags,
179                        (unsigned int)bio->bi_opf, bio->bi_vcnt, bio_idx(bio),
180                        bio_sectors(bio) << 9, bio->bi_end_io,
181                        atomic_read(&bio->__bi_cnt),
182                        bio->bi_private);
183                 return;
184         }
185
186         /* the check is outside of the cycle for performance reason -bzzz */
187         if (!bio_data_dir(bio)) {
188                 DECLARE_BVEC_ITER_ALL(iter_all);
189
190                 bio_for_each_segment_all(bvl, bio, iter_all) {
191                         if (likely(error == 0))
192                                 SetPageUptodate(bvl_to_page(bvl));
193                         LASSERT(PageLocked(bvl_to_page(bvl)));
194                 }
195                 atomic_dec(&iobuf->dr_dev->od_r_in_flight);
196         } else {
197                 atomic_dec(&iobuf->dr_dev->od_w_in_flight);
198         }
199
200         /* any real error is good enough -bzzz */
201         if (error != 0 && iobuf->dr_error == 0)
202                 iobuf->dr_error = error;
203
204         /*
205          * set dr_elapsed before dr_numreqs turns to 0, otherwise
206          * it's possible that service thread will see dr_numreqs
207          * is zero, but dr_elapsed is not set yet, leading to lost
208          * data in this processing and an assertion in a subsequent
209          * call to OSD.
210          */
211         if (atomic_read(&iobuf->dr_numreqs) == 1) {
212                 ktime_t now = ktime_get();
213
214                 iobuf->dr_elapsed = ktime_sub(now, iobuf->dr_start_time);
215                 iobuf->dr_elapsed_valid = 1;
216         }
217         if (atomic_dec_and_test(&iobuf->dr_numreqs))
218                 wake_up(&iobuf->dr_wait);
219
220         /* Completed bios used to be chained off iobuf->dr_bios and freed in
221          * filter_clear_dreq().  It was then possible to exhaust the biovec-256
222          * mempool when serious on-disk fragmentation was encountered,
223          * deadlocking the OST.  The bios are now released as soon as complete
224          * so the pool cannot be exhausted while IOs are competing. b=10076
225          */
226         bio_put(bio);
227 }
228
229 static void record_start_io(struct osd_iobuf *iobuf, int size)
230 {
231         struct osd_device    *osd = iobuf->dr_dev;
232         struct obd_histogram *h = osd->od_brw_stats.hist;
233
234         iobuf->dr_frags++;
235         atomic_inc(&iobuf->dr_numreqs);
236
237         if (iobuf->dr_rw == 0) {
238                 atomic_inc(&osd->od_r_in_flight);
239                 lprocfs_oh_tally(&h[BRW_R_RPC_HIST],
240                                  atomic_read(&osd->od_r_in_flight));
241                 lprocfs_oh_tally_log2(&h[BRW_R_DISK_IOSIZE], size);
242         } else if (iobuf->dr_rw == 1) {
243                 atomic_inc(&osd->od_w_in_flight);
244                 lprocfs_oh_tally(&h[BRW_W_RPC_HIST],
245                                  atomic_read(&osd->od_w_in_flight));
246                 lprocfs_oh_tally_log2(&h[BRW_W_DISK_IOSIZE], size);
247         } else {
248                 LBUG();
249         }
250 }
251
252 static void osd_submit_bio(int rw, struct bio *bio)
253 {
254         LASSERTF(rw == 0 || rw == 1, "%x\n", rw);
255 #ifdef HAVE_SUBMIT_BIO_2ARGS
256         submit_bio(rw ? WRITE : READ, bio);
257 #else
258         bio->bi_opf |= rw;
259         submit_bio(bio);
260 #endif
261 }
262
263 static int can_be_merged(struct bio *bio, sector_t sector)
264 {
265         if (bio == NULL)
266                 return 0;
267
268         return bio_end_sector(bio) == sector ? 1 : 0;
269 }
270
271 #if IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY)
272 /*
273  * This function will change the data written, thus it should only be
274  * used when checking data integrity feature
275  */
276 static void bio_integrity_fault_inject(struct bio *bio)
277 {
278         struct bio_vec *bvec;
279         DECLARE_BVEC_ITER_ALL(iter_all);
280         void *kaddr;
281         char *addr;
282
283         bio_for_each_segment_all(bvec, bio, iter_all) {
284                 struct page *page = bvec->bv_page;
285
286                 kaddr = kmap(page);
287                 addr = kaddr;
288                 *addr = ~(*addr);
289                 kunmap(page);
290                 break;
291         }
292 }
293
294 static int bio_dif_compare(__u16 *expected_guard_buf, void *bio_prot_buf,
295                            unsigned int sectors, int tuple_size)
296 {
297         __u16 *expected_guard;
298         __u16 *bio_guard;
299         int i;
300
301         expected_guard = expected_guard_buf;
302         for (i = 0; i < sectors; i++) {
303                 bio_guard = (__u16 *)bio_prot_buf;
304                 if (*bio_guard != *expected_guard) {
305                         CERROR(
306                                "unexpected guard tags on sector %d expected guard %u, bio guard %u, sectors %u, tuple size %d\n",
307                                i, *expected_guard, *bio_guard, sectors,
308                                tuple_size);
309                         return -EIO;
310                 }
311                 expected_guard++;
312                 bio_prot_buf += tuple_size;
313         }
314         return 0;
315 }
316
317 static int osd_bio_integrity_compare(struct bio *bio, struct block_device *bdev,
318                                      struct osd_iobuf *iobuf, int index)
319 {
320         struct blk_integrity *bi = bdev_get_integrity(bdev);
321         struct bio_integrity_payload *bip = bio->bi_integrity;
322         struct niobuf_local *lnb;
323         unsigned short sector_size = blk_integrity_interval(bi);
324         void *bio_prot_buf = page_address(bip->bip_vec->bv_page) +
325                 bip->bip_vec->bv_offset;
326         struct bio_vec *bv;
327         sector_t sector = bio_start_sector(bio);
328         unsigned int sectors, total;
329         DECLARE_BVEC_ITER_ALL(iter_all);
330         __u16 *expected_guard;
331         int rc;
332
333         total = 0;
334         bio_for_each_segment_all(bv, bio, iter_all) {
335                 lnb = iobuf->dr_lnbs[index];
336                 expected_guard = lnb->lnb_guards;
337                 sectors = bv->bv_len / sector_size;
338                 if (lnb->lnb_guard_rpc) {
339                         rc = bio_dif_compare(expected_guard, bio_prot_buf,
340                                              sectors, bi->tuple_size);
341                         if (rc)
342                                 return rc;
343                 }
344
345                 sector += sectors;
346                 bio_prot_buf += sectors * bi->tuple_size;
347                 total += sectors * bi->tuple_size;
348                 LASSERT(total <= bip_size(bio->bi_integrity));
349                 index++;
350         }
351         return 0;
352 }
353
354 static int osd_bio_integrity_handle(struct osd_device *osd, struct bio *bio,
355                                     struct osd_iobuf *iobuf,
356                                     int start_page_idx, bool fault_inject,
357                                     bool integrity_enabled)
358 {
359         struct super_block *sb = osd_sb(osd);
360         integrity_gen_fn *generate_fn = NULL;
361         integrity_vrfy_fn *verify_fn = NULL;
362         int rc;
363
364         ENTRY;
365
366         if (!integrity_enabled)
367                 RETURN(0);
368
369         rc = osd_get_integrity_profile(osd, &generate_fn, &verify_fn);
370         if (rc)
371                 RETURN(rc);
372
373         rc = bio_integrity_prep_fn(bio, generate_fn, verify_fn);
374         if (rc)
375                 RETURN(rc);
376
377         /* Verify and inject fault only when writing */
378         if (iobuf->dr_rw == 1) {
379                 if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_OST_INTEGRITY_CMP))) {
380                         rc = osd_bio_integrity_compare(bio, sb->s_bdev, iobuf,
381                                                        start_page_idx);
382                         if (rc)
383                                 RETURN(rc);
384                 }
385
386                 if (unlikely(fault_inject))
387                         bio_integrity_fault_inject(bio);
388         }
389
390         RETURN(0);
391 }
392
393 #ifdef HAVE_BIO_INTEGRITY_PREP_FN
394 #  ifdef HAVE_BIO_ENDIO_USES_ONE_ARG
395 static void dio_integrity_complete_routine(struct bio *bio)
396 #  else
397 static void dio_integrity_complete_routine(struct bio *bio, int error)
398 #  endif
399 {
400         struct osd_bio_private *bio_private = bio->bi_private;
401
402         bio->bi_private = bio_private->obp_iobuf;
403         osd_dio_complete_routine(bio, error);
404
405         OBD_FREE_PTR(bio_private);
406 }
407 #endif /* HAVE_BIO_INTEGRITY_PREP_FN */
408 #else  /* !CONFIG_BLK_DEV_INTEGRITY */
409 #define osd_bio_integrity_handle(osd, bio, iobuf, start_page_idx, \
410                                  fault_inject, integrity_enabled) 0
411 #endif /* CONFIG_BLK_DEV_INTEGRITY */
412
413 static int osd_bio_init(struct bio *bio, struct osd_iobuf *iobuf,
414                         bool integrity_enabled, int start_page_idx,
415                         struct osd_bio_private **pprivate)
416 {
417         ENTRY;
418
419         *pprivate = NULL;
420
421 #ifdef HAVE_BIO_INTEGRITY_PREP_FN
422         if (integrity_enabled) {
423                 struct osd_bio_private *bio_private = NULL;
424
425                 OBD_ALLOC_GFP(bio_private, sizeof(*bio_private), GFP_NOIO);
426                 if (bio_private == NULL)
427                         RETURN(-ENOMEM);
428                 bio->bi_end_io = dio_integrity_complete_routine;
429                 bio->bi_private = bio_private;
430                 bio_private->obp_start_page_idx = start_page_idx;
431                 bio_private->obp_iobuf = iobuf;
432                 *pprivate = bio_private;
433         } else
434 #endif
435         {
436                 bio->bi_end_io = dio_complete_routine;
437                 bio->bi_private = iobuf;
438         }
439
440         RETURN(0);
441 }
442
443 static int osd_do_bio(struct osd_device *osd, struct inode *inode,
444                       struct osd_iobuf *iobuf, sector_t start_blocks,
445                       sector_t count)
446 {
447         int blocks_per_page = PAGE_SIZE >> inode->i_blkbits;
448         struct page **pages = iobuf->dr_pages;
449         int npages = iobuf->dr_npages;
450         sector_t *blocks = iobuf->dr_blocks;
451         struct super_block *sb = inode->i_sb;
452         int sector_bits = sb->s_blocksize_bits - 9;
453         unsigned int blocksize = sb->s_blocksize;
454         struct block_device *bdev = sb->s_bdev;
455         struct osd_bio_private *bio_private = NULL;
456         struct bio *bio = NULL;
457         int bio_start_page_idx;
458         struct page *page;
459         unsigned int page_offset;
460         sector_t sector;
461         int nblocks;
462         int block_idx, block_idx_end;
463         int page_idx, page_idx_start;
464         int i;
465         int rc = 0;
466         bool fault_inject;
467         bool integrity_enabled;
468         struct blk_plug plug;
469         int blocks_left_page;
470
471         ENTRY;
472
473         fault_inject = OBD_FAIL_CHECK(OBD_FAIL_OST_INTEGRITY_FAULT);
474         LASSERT(iobuf->dr_npages == npages);
475
476         integrity_enabled = bdev_integrity_enabled(bdev, iobuf->dr_rw);
477
478         osd_brw_stats_update(osd, iobuf);
479         iobuf->dr_start_time = ktime_get();
480
481         if (!count)
482                 count = npages * blocks_per_page;
483         block_idx_end = start_blocks + count;
484
485         blk_start_plug(&plug);
486
487         page_idx_start = start_blocks / blocks_per_page;
488         for (page_idx = page_idx_start, block_idx = start_blocks;
489              block_idx < block_idx_end; page_idx++,
490              block_idx += blocks_left_page) {
491                 page = pages[page_idx];
492                 LASSERT(page_idx < iobuf->dr_npages);
493
494                 i = block_idx % blocks_per_page;
495                 blocks_left_page = blocks_per_page - i;
496                 for (page_offset = i * blocksize; i < blocks_left_page;
497                      i += nblocks, page_offset += blocksize * nblocks) {
498                         nblocks = 1;
499
500                         if (blocks[block_idx + i] == 0) {  /* hole */
501                                 LASSERTF(iobuf->dr_rw == 0,
502                                          "page_idx %u, block_idx %u, i %u,"
503                                          "start_blocks: %llu, count: %llu, npages: %d\n",
504                                          page_idx, block_idx, i,
505                                          (unsigned long long)start_blocks,
506                                          (unsigned long long)count, npages);
507                                 memset(kmap(page) + page_offset, 0, blocksize);
508                                 kunmap(page);
509                                 continue;
510                         }
511
512                         sector = (sector_t)blocks[block_idx + i] << sector_bits;
513
514                         /* Additional contiguous file blocks? */
515                         while (i + nblocks < blocks_left_page &&
516                                (sector + (nblocks << sector_bits)) ==
517                                ((sector_t)blocks[block_idx + i + nblocks] <<
518                                  sector_bits))
519                                 nblocks++;
520
521                         if (bio && can_be_merged(bio, sector) &&
522                             bio_add_page(bio, page, blocksize * nblocks,
523                                          page_offset) != 0)
524                                 continue;       /* added this frag OK */
525
526                         if (bio != NULL) {
527                                 struct request_queue *q = bio_get_queue(bio);
528                                 unsigned int bi_size = bio_sectors(bio) << 9;
529
530                                 /* Dang! I have to fragment this I/O */
531                                 CDEBUG(D_INODE,
532                                        "bio++ sz %d vcnt %d(%d) sectors %d(%d) psg %d(%d)\n",
533                                        bi_size, bio->bi_vcnt, bio->bi_max_vecs,
534                                        bio_sectors(bio),
535                                        queue_max_sectors(q),
536                                        osd_bio_nr_segs(bio),
537                                        queue_max_segments(q));
538                                 rc = osd_bio_integrity_handle(osd, bio,
539                                         iobuf, bio_start_page_idx,
540                                         fault_inject, integrity_enabled);
541                                 if (rc) {
542                                         bio_put(bio);
543                                         goto out;
544                                 }
545
546                                 record_start_io(iobuf, bi_size);
547                                 osd_submit_bio(iobuf->dr_rw, bio);
548                         }
549
550                         bio_start_page_idx = page_idx;
551                         /* allocate new bio */
552                         bio = bio_alloc(GFP_NOIO, min(BIO_MAX_PAGES,
553                                         (block_idx_end - block_idx +
554                                          blocks_left_page - 1)));
555                         if (bio == NULL) {
556                                 CERROR("Can't allocate bio %u pages\n",
557                                        block_idx_end - block_idx +
558                                        blocks_left_page - 1);
559                                 rc = -ENOMEM;
560                                 goto out;
561                         }
562
563                         bio_set_dev(bio, bdev);
564                         bio_set_sector(bio, sector);
565                         bio->bi_opf = iobuf->dr_rw ? WRITE : READ;
566                         rc = osd_bio_init(bio, iobuf, integrity_enabled,
567                                           bio_start_page_idx, &bio_private);
568                         if (rc) {
569                                 bio_put(bio);
570                                 goto out;
571                         }
572
573                         rc = bio_add_page(bio, page,
574                                           blocksize * nblocks, page_offset);
575                         LASSERT(rc != 0);
576                 }
577         }
578
579         if (bio != NULL) {
580                 rc = osd_bio_integrity_handle(osd, bio, iobuf,
581                                               bio_start_page_idx,
582                                               fault_inject,
583                                               integrity_enabled);
584                 if (rc) {
585                         bio_put(bio);
586                         goto out;
587                 }
588
589                 record_start_io(iobuf, bio_sectors(bio) << 9);
590                 osd_submit_bio(iobuf->dr_rw, bio);
591                 rc = 0;
592         }
593
594 out:
595         blk_finish_plug(&plug);
596
597         /* in order to achieve better IO throughput, we don't wait for writes
598          * completion here. instead we proceed with transaction commit in
599          * parallel and wait for IO completion once transaction is stopped
600          * see osd_trans_stop() for more details -bzzz
601          */
602         if (iobuf->dr_rw == 0 || fault_inject) {
603                 wait_event(iobuf->dr_wait,
604                            atomic_read(&iobuf->dr_numreqs) == 0);
605                 osd_fini_iobuf(osd, iobuf);
606         }
607
608         if (rc == 0) {
609                 rc = iobuf->dr_error;
610         } else {
611                 if (bio_private)
612                         OBD_FREE_PTR(bio_private);
613         }
614
615         RETURN(rc);
616 }
617
618 static int osd_map_remote_to_local(loff_t offset, ssize_t len, int *nrpages,
619                                    struct niobuf_local *lnb, int maxlnb)
620 {
621         int rc = 0;
622         ENTRY;
623
624         *nrpages = 0;
625
626         while (len > 0) {
627                 int poff = offset & (PAGE_SIZE - 1);
628                 int plen = PAGE_SIZE - poff;
629
630                 if (*nrpages >= maxlnb) {
631                         rc = -EOVERFLOW;
632                         break;
633                 }
634
635                 if (plen > len)
636                         plen = len;
637                 lnb->lnb_file_offset = offset;
638                 lnb->lnb_page_offset = poff;
639                 lnb->lnb_len = plen;
640                 /* lnb->lnb_flags = rnb->rnb_flags; */
641                 lnb->lnb_flags = 0;
642                 lnb->lnb_page = NULL;
643                 lnb->lnb_rc = 0;
644                 lnb->lnb_guard_rpc = 0;
645                 lnb->lnb_guard_disk = 0;
646                 lnb->lnb_locked = 0;
647
648                 LASSERTF(plen <= len, "plen %u, len %lld\n", plen,
649                          (long long) len);
650                 offset += plen;
651                 len -= plen;
652                 lnb++;
653                 (*nrpages)++;
654         }
655
656         RETURN(rc);
657 }
658
659 static struct page *osd_get_page(const struct lu_env *env, struct dt_object *dt,
660                                  loff_t offset, gfp_t gfp_mask, bool cache)
661 {
662         struct osd_thread_info *oti = osd_oti_get(env);
663         struct inode *inode = osd_dt_obj(dt)->oo_inode;
664         struct osd_device *d = osd_obj2dev(osd_dt_obj(dt));
665         struct page *page;
666         int cur;
667
668         LASSERT(inode);
669
670         if (cache) {
671                 page = find_or_create_page(inode->i_mapping,
672                                            offset >> PAGE_SHIFT, gfp_mask);
673
674                 if (likely(page)) {
675                         LASSERT(!PagePrivate2(page));
676                         wait_on_page_writeback(page);
677                 } else {
678                         lprocfs_counter_add(d->od_stats, LPROC_OSD_NO_PAGE, 1);
679                 }
680
681                 return page;
682         }
683
684         if (inode->i_mapping->nrpages) {
685                 /* consult with pagecache, but do not create new pages */
686                 /* this is normally used once */
687                 page = find_lock_page(inode->i_mapping, offset >> PAGE_SHIFT);
688                 if (page) {
689                         wait_on_page_writeback(page);
690                         return page;
691                 }
692         }
693
694         LASSERT(oti->oti_dio_pages);
695         cur = oti->oti_dio_pages_used;
696         page = oti->oti_dio_pages[cur];
697
698         if (unlikely(!page)) {
699                 LASSERT(cur < PTLRPC_MAX_BRW_PAGES);
700                 page = alloc_page(gfp_mask);
701                 if (!page)
702                         return NULL;
703                 oti->oti_dio_pages[cur] = page;
704                 SetPagePrivate2(page);
705                 lock_page(page);
706         }
707
708         ClearPageUptodate(page);
709         page->index = offset >> PAGE_SHIFT;
710         oti->oti_dio_pages_used++;
711
712         return page;
713 }
714
715 /*
716  * there are following "locks":
717  * journal_start
718  * i_mutex
719  * page lock
720  *
721  * osd write path:
722  *  - lock page(s)
723  *  - journal_start
724  *  - truncate_sem
725  *
726  * ext4 vmtruncate:
727  *  - lock pages, unlock
728  *  - journal_start
729  *  - lock partial page
730  *  - i_data_sem
731  *
732  */
733
734 /**
735  * Unlock and release pages loaded by osd_bufs_get()
736  *
737  * Unlock \a npages pages from \a lnb and drop the refcount on them.
738  *
739  * \param env           thread execution environment
740  * \param dt            dt object undergoing IO (OSD object + methods)
741  * \param lnb           array of pages undergoing IO
742  * \param npages        number of pages in \a lnb
743  *
744  * \retval 0            always
745  */
746 static int osd_bufs_put(const struct lu_env *env, struct dt_object *dt,
747                         struct niobuf_local *lnb, int npages)
748 {
749         struct osd_thread_info *oti = osd_oti_get(env);
750         struct pagevec pvec;
751         int i;
752
753         ll_pagevec_init(&pvec, 0);
754
755         for (i = 0; i < npages; i++) {
756                 struct page *page = lnb[i].lnb_page;
757
758                 if (page == NULL)
759                         continue;
760
761                 /* if the page isn't cached, then reset uptodate
762                  * to prevent reuse
763                  */
764                 if (PagePrivate2(page)) {
765                         oti->oti_dio_pages_used--;
766                 } else {
767                         if (lnb[i].lnb_locked)
768                                 unlock_page(page);
769                         if (pagevec_add(&pvec, page) == 0)
770                                 pagevec_release(&pvec);
771                 }
772
773                 lnb[i].lnb_page = NULL;
774         }
775
776         LASSERTF(oti->oti_dio_pages_used == 0, "%d\n", oti->oti_dio_pages_used);
777
778         /* Release any partial pagevec */
779         pagevec_release(&pvec);
780
781         RETURN(0);
782 }
783
784 /**
785  * Load and lock pages undergoing IO
786  *
787  * Pages as described in the \a lnb array are fetched (from disk or cache)
788  * and locked for IO by the caller.
789  *
790  * DLM locking protects us from write and truncate competing for same region,
791  * but partial-page truncate can leave dirty pages in the cache for ldiskfs.
792  * It's possible the writeout on a such a page is in progress when we access
793  * it. It's also possible that during this writeout we put new (partial) data
794  * into the page, but won't be able to proceed in filter_commitrw_write().
795  * Therefore, just wait for writeout completion as it should be rare enough.
796  *
797  * \param env           thread execution environment
798  * \param dt            dt object undergoing IO (OSD object + methods)
799  * \param pos           byte offset of IO start
800  * \param len           number of bytes of IO
801  * \param lnb           array of extents undergoing IO
802  * \param rw            read or write operation, and other flags
803  * \param capa          capabilities
804  *
805  * \retval pages        (zero or more) loaded successfully
806  * \retval -ENOMEM      on memory/page allocation error
807  */
808 static int osd_bufs_get(const struct lu_env *env, struct dt_object *dt,
809                         loff_t pos, ssize_t len, struct niobuf_local *lnb,
810                         int maxlnb, enum dt_bufs_type rw)
811 {
812         struct osd_thread_info *oti = osd_oti_get(env);
813         struct osd_object *obj = osd_dt_obj(dt);
814         struct osd_device *osd   = osd_obj2dev(obj);
815         int npages, i, iosize, rc = 0;
816         bool cache, write;
817         loff_t fsize;
818         gfp_t gfp_mask;
819
820         LASSERT(obj->oo_inode);
821
822         rc = osd_map_remote_to_local(pos, len, &npages, lnb, maxlnb);
823         if (rc)
824                 RETURN(rc);
825
826         write = rw & DT_BUFS_TYPE_WRITE;
827
828         fsize = lnb[npages - 1].lnb_file_offset + lnb[npages - 1].lnb_len;
829         iosize = fsize - lnb[0].lnb_file_offset;
830         fsize = max(fsize, i_size_read(obj->oo_inode));
831
832         cache = rw & DT_BUFS_TYPE_READAHEAD;
833         if (cache)
834                 goto bypass_checks;
835
836         cache = osd_use_page_cache(osd);
837         while (cache) {
838                 if (write) {
839                         if (!osd->od_writethrough_cache) {
840                                 cache = false;
841                                 break;
842                         }
843                         if (iosize > osd->od_writethrough_max_iosize) {
844                                 cache = false;
845                                 break;
846                         }
847                 } else {
848                         if (!osd->od_read_cache) {
849                                 cache = false;
850                                 break;
851                         }
852                         if (iosize > osd->od_readcache_max_iosize) {
853                                 cache = false;
854                                 break;
855                         }
856                 }
857                 /* don't use cache on large files */
858                 if (osd->od_readcache_max_filesize &&
859                     fsize > osd->od_readcache_max_filesize)
860                         cache = false;
861                 break;
862         }
863
864 bypass_checks:
865         if (!cache && unlikely(!oti->oti_dio_pages)) {
866                 OBD_ALLOC_PTR_ARRAY_LARGE(oti->oti_dio_pages,
867                                           PTLRPC_MAX_BRW_PAGES);
868                 if (!oti->oti_dio_pages)
869                         return -ENOMEM;
870         }
871
872         /* this could also try less hard for DT_BUFS_TYPE_READAHEAD pages */
873         gfp_mask = rw & DT_BUFS_TYPE_LOCAL ? (GFP_NOFS | __GFP_HIGHMEM) :
874                                              GFP_HIGHUSER;
875         for (i = 0; i < npages; i++, lnb++) {
876                 lnb->lnb_page = osd_get_page(env, dt, lnb->lnb_file_offset,
877                                              gfp_mask, cache);
878                 if (lnb->lnb_page == NULL)
879                         GOTO(cleanup, rc = -ENOMEM);
880
881                 lnb->lnb_locked = 1;
882         }
883
884 #if 0
885         /* XXX: this version doesn't invalidate cached pages, but use them */
886         if (!cache && write && obj->oo_inode->i_mapping->nrpages) {
887                 /* do not allow data aliasing, invalidate pagecache */
888                 /* XXX: can be quite expensive in mixed case */
889                 invalidate_mapping_pages(obj->oo_inode->i_mapping,
890                                 lnb[0].lnb_file_offset >> PAGE_SHIFT,
891                                 lnb[npages - 1].lnb_file_offset >> PAGE_SHIFT);
892         }
893 #endif
894
895         RETURN(i);
896
897 cleanup:
898         if (i > 0)
899                 osd_bufs_put(env, dt, lnb - i, i);
900         return rc;
901 }
902 /* Borrow @ext4_chunk_trans_blocks */
903 static int osd_chunk_trans_blocks(struct inode *inode, int nrblocks)
904 {
905         ldiskfs_group_t groups;
906         int gdpblocks;
907         int idxblocks;
908         int depth;
909         int ret;
910
911         depth = ext_depth(inode);
912         idxblocks = depth * 2;
913
914         /*
915          * Now let's see how many group bitmaps and group descriptors need
916          * to account.
917          */
918         groups = idxblocks + 1;
919         gdpblocks = groups;
920         if (groups > LDISKFS_SB(inode->i_sb)->s_groups_count)
921                 groups = LDISKFS_SB(inode->i_sb)->s_groups_count;
922         if (gdpblocks > LDISKFS_SB(inode->i_sb)->s_gdb_count)
923                 gdpblocks = LDISKFS_SB(inode->i_sb)->s_gdb_count;
924
925         /* bitmaps and block group descriptor blocks */
926         ret = idxblocks + groups + gdpblocks;
927
928         /* Blocks for super block, inode, quota and xattr blocks */
929         ret += LDISKFS_META_TRANS_BLOCKS(inode->i_sb);
930
931         return ret;
932 }
933
934 #ifdef HAVE_LDISKFS_JOURNAL_ENSURE_CREDITS
935 static int osd_extend_trans(handle_t *handle, int needed,
936                             struct inode *inode)
937 {
938         return  __ldiskfs_journal_ensure_credits(handle, needed, needed,
939                 ldiskfs_trans_default_revoke_credits(inode->i_sb));
940 }
941
942 static int osd_extend_restart_trans(handle_t *handle, int needed,
943                                     struct inode *inode)
944 {
945         int rc;
946
947         rc = ldiskfs_journal_ensure_credits(handle, needed,
948                 ldiskfs_trans_default_revoke_credits(inode->i_sb));
949         /* this means journal has been restarted */
950         if (rc > 0)
951                 rc = 0;
952
953         return rc;
954 }
955 #else
956 static int osd_extend_trans(handle_t *handle, int needed,
957                             struct inode *inode)
958 {
959         if (ldiskfs_handle_has_enough_credits(handle, needed))
960                 return 0;
961
962         return ldiskfs_journal_extend(handle,
963                                       needed - handle->h_buffer_credits);
964 }
965
966 static int osd_extend_restart_trans(handle_t *handle, int needed,
967                                     struct inode *inode)
968 {
969
970         int rc = osd_extend_trans(handle, needed, inode);
971
972         if (rc <= 0)
973                 return rc;
974
975         return ldiskfs_journal_restart(handle, needed);
976 }
977 #endif /* HAVE_LDISKFS_JOURNAL_ENSURE_CREDITS */
978
979 static int osd_ldiskfs_map_write(struct inode *inode, struct osd_iobuf *iobuf,
980                                  struct osd_device *osd, sector_t start_blocks,
981                                  sector_t count, loff_t *disk_size,
982                                  __u64 user_size)
983 {
984         /* if file has grown, take user_size into account */
985         if (user_size && *disk_size > user_size)
986                 *disk_size = user_size;
987
988         spin_lock(&inode->i_lock);
989         if (*disk_size > i_size_read(inode)) {
990                 i_size_write(inode, *disk_size);
991                 LDISKFS_I(inode)->i_disksize = *disk_size;
992                 spin_unlock(&inode->i_lock);
993                 osd_dirty_inode(inode, I_DIRTY_DATASYNC);
994         } else {
995                 spin_unlock(&inode->i_lock);
996         }
997
998         /*
999          * We don't do stats here as in read path because
1000          * write is async: we'll do this in osd_put_bufs()
1001          */
1002         return osd_do_bio(osd, inode, iobuf, start_blocks, count);
1003 }
1004
1005
1006 static int osd_ldiskfs_map_inode_pages(struct inode *inode,
1007                                        struct osd_iobuf *iobuf,
1008                                        struct osd_device *osd,
1009                                        int create, __u64 user_size,
1010                                        int check_credits)
1011 {
1012         int blocks_per_page = PAGE_SIZE >> inode->i_blkbits;
1013         int rc = 0, i = 0, mapped_index = 0;
1014         struct page *fp = NULL;
1015         int clen = 0;
1016         pgoff_t max_page_index;
1017         handle_t *handle = NULL;
1018         int credits;
1019         sector_t start_blocks = 0, count = 0;
1020         loff_t disk_size = 0;
1021         struct page **page = iobuf->dr_pages;
1022         int pages = iobuf->dr_npages;
1023         sector_t *blocks = iobuf->dr_blocks;
1024         struct niobuf_local *lnb1, *lnb2;
1025         loff_t size1, size2;
1026
1027         max_page_index = inode->i_sb->s_maxbytes >> PAGE_SHIFT;
1028
1029         CDEBUG(D_OTHER, "inode %lu: map %d pages from %lu\n",
1030                 inode->i_ino, pages, (*page)->index);
1031
1032         if (create) {
1033                 create = LDISKFS_GET_BLOCKS_CREATE;
1034                 handle = ldiskfs_journal_current_handle();
1035                 LASSERT(handle != NULL);
1036                 rc = osd_attach_jinode(inode);
1037                 if (rc)
1038                         return rc;
1039                 disk_size = i_size_read(inode);
1040                 /* if disk_size is already bigger than specified user_size,
1041                  * ignore user_size
1042                  */
1043                 if (disk_size > user_size)
1044                         user_size = 0;
1045         }
1046         /* pages are sorted already. so, we just have to find
1047          * contig. space and process them properly
1048          */
1049         while (i < pages) {
1050                 long blen, total = 0, previous_total = 0;
1051                 struct ldiskfs_map_blocks map = { 0 };
1052
1053                 if (fp == NULL) { /* start new extent */
1054                         fp = *page++;
1055                         clen = 1;
1056                         if (++i != pages)
1057                                 continue;
1058                 } else if (fp->index + clen == (*page)->index) {
1059                         /* continue the extent */
1060                         page++;
1061                         clen++;
1062                         if (++i != pages)
1063                                 continue;
1064                 }
1065                 if (fp->index + clen >= max_page_index)
1066                         GOTO(cleanup, rc = -EFBIG);
1067                 /* process found extent */
1068                 map.m_lblk = fp->index * blocks_per_page;
1069                 map.m_len = blen = clen * blocks_per_page;
1070 cont_map:
1071                 /**
1072                  * We might restart transaction for block allocations,
1073                  * in order to make sure data ordered mode, issue IO, disk
1074                  * size update and block allocations need be within same
1075                  * transaction to make sure consistency.
1076                  */
1077                 if (handle && check_credits) {
1078                         /*
1079                          * credits to insert 1 extent into extent tree.
1080                          */
1081                         credits = osd_chunk_trans_blocks(inode, blen);
1082                         rc = osd_extend_trans(handle, credits, inode);
1083                         if (rc < 0)
1084                                 GOTO(cleanup, rc);
1085                         /*
1086                          * only issue IO if restart transaction needed,
1087                          * as update disk size need hold inode lock, we
1088                          * want to avoid that as much as possible.
1089                          */
1090                         if (rc > 0) {
1091                                 WARN_ON_ONCE(start_blocks == 0);
1092                                 rc = osd_ldiskfs_map_write(inode,
1093                                         iobuf, osd, start_blocks,
1094                                         count, &disk_size, user_size);
1095                                 if (rc)
1096                                         GOTO(cleanup, rc);
1097 #ifdef HAVE_LDISKFS_JOURNAL_ENSURE_CREDITS
1098                                 rc = ldiskfs_journal_restart(handle, credits,
1099                                         ldiskfs_trans_default_revoke_credits(inode->i_sb));
1100 #else
1101                                 rc = ldiskfs_journal_restart(handle, credits);
1102 #endif
1103                                 if (rc)
1104                                         GOTO(cleanup, rc);
1105                                 start_blocks += count;
1106                                 /* reset IO block count */
1107                                 count = 0;
1108                         }
1109                 }
1110                 rc = ldiskfs_map_blocks(handle, inode, &map, create);
1111                 if (rc >= 0) {
1112                         int c = 0;
1113
1114                         for (; total < blen && c < map.m_len; c++, total++) {
1115                                 if (rc == 0) {
1116                                         *(blocks + total) = 0;
1117                                         total++;
1118                                         break;
1119                                 }
1120                                 *(blocks + total) = map.m_pblk + c;
1121                                 /* unmap any possible underlying
1122                                  * metadata from the block device
1123                                  * mapping.  b=6998.
1124                                  */
1125                                 if ((map.m_flags & LDISKFS_MAP_NEW) &&
1126                                     create)
1127                                         clean_bdev_aliases(inode->i_sb->s_bdev,
1128                                                            map.m_pblk + c, 1);
1129                         }
1130                         rc = 0;
1131                 }
1132
1133                 if (rc == 0 && create) {
1134                         count += (total - previous_total);
1135                         mapped_index = (count + blocks_per_page -
1136                                         1) / blocks_per_page - 1;
1137                         lnb1 = iobuf->dr_lnbs[i - clen];
1138                         lnb2 = iobuf->dr_lnbs[mapped_index];
1139                         size1 = lnb1->lnb_file_offset -
1140                                 (lnb1->lnb_file_offset % PAGE_SIZE) +
1141                                 (total << inode->i_blkbits);
1142                         size2 = lnb2->lnb_file_offset + lnb2->lnb_len;
1143
1144                         if (size1 > size2)
1145                                 size1 = size2;
1146                         if (size1 > disk_size)
1147                                 disk_size = size1;
1148                 }
1149
1150                 if (rc == 0 && total < blen) {
1151                         map.m_lblk = fp->index * blocks_per_page + total;
1152                         map.m_len = blen - total;
1153                         previous_total = total;
1154                         goto cont_map;
1155                 }
1156                 if (rc != 0)
1157                         GOTO(cleanup, rc);
1158
1159                 /* look for next extent */
1160                 fp = NULL;
1161                 blocks += blocks_per_page * clen;
1162         }
1163 cleanup:
1164         if (rc == 0 && create &&
1165             start_blocks < pages * blocks_per_page) {
1166                 rc = osd_ldiskfs_map_write(inode, iobuf, osd, start_blocks,
1167                                            count, &disk_size, user_size);
1168                 LASSERT(start_blocks + count == pages * blocks_per_page);
1169         }
1170         return rc;
1171 }
1172
1173 static int osd_write_prep(const struct lu_env *env, struct dt_object *dt,
1174                           struct niobuf_local *lnb, int npages)
1175 {
1176         struct osd_thread_info *oti   = osd_oti_get(env);
1177         struct osd_iobuf       *iobuf = &oti->oti_iobuf;
1178         struct inode           *inode = osd_dt_obj(dt)->oo_inode;
1179         struct osd_device      *osd   = osd_obj2dev(osd_dt_obj(dt));
1180         ktime_t start, end;
1181         s64 timediff;
1182         ssize_t isize;
1183         __s64  maxidx;
1184         int i, rc = 0;
1185
1186         LASSERT(inode);
1187
1188         rc = osd_init_iobuf(osd, iobuf, 0, npages);
1189         if (unlikely(rc != 0))
1190                 RETURN(rc);
1191
1192         isize = i_size_read(inode);
1193         maxidx = ((isize + PAGE_SIZE - 1) >> PAGE_SHIFT) - 1;
1194
1195         start = ktime_get();
1196         for (i = 0; i < npages; i++) {
1197
1198                 /*
1199                  * till commit the content of the page is undefined
1200                  * we'll set it uptodate once bulk is done. otherwise
1201                  * subsequent reads can access non-stable data
1202                  */
1203                 ClearPageUptodate(lnb[i].lnb_page);
1204
1205                 if (lnb[i].lnb_len == PAGE_SIZE)
1206                         continue;
1207
1208                 if (maxidx >= lnb[i].lnb_page->index) {
1209                         osd_iobuf_add_page(iobuf, &lnb[i]);
1210                 } else {
1211                         long off;
1212                         char *p = kmap(lnb[i].lnb_page);
1213
1214                         off = lnb[i].lnb_page_offset;
1215                         if (off)
1216                                 memset(p, 0, off);
1217                         off = (lnb[i].lnb_page_offset + lnb[i].lnb_len) &
1218                               ~PAGE_MASK;
1219                         if (off)
1220                                 memset(p + off, 0, PAGE_SIZE - off);
1221                         kunmap(lnb[i].lnb_page);
1222                 }
1223         }
1224         end = ktime_get();
1225         timediff = ktime_us_delta(end, start);
1226         lprocfs_counter_add(osd->od_stats, LPROC_OSD_GET_PAGE, timediff);
1227
1228         if (iobuf->dr_npages) {
1229                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf, osd, 0,
1230                                                  0, 0);
1231                 if (likely(rc == 0)) {
1232                         rc = osd_do_bio(osd, inode, iobuf, 0, 0);
1233                         /* do IO stats for preparation reads */
1234                         osd_fini_iobuf(osd, iobuf);
1235                 }
1236         }
1237         RETURN(rc);
1238 }
1239
1240 struct osd_fextent {
1241         sector_t        start;
1242         sector_t        end;
1243         unsigned int    mapped:1;
1244 };
1245
1246 static int osd_is_mapped(struct dt_object *dt, __u64 offset,
1247                          struct osd_fextent *cached_extent)
1248 {
1249         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1250         sector_t block = offset >> inode->i_blkbits;
1251         sector_t start;
1252         struct fiemap_extent_info fei = { 0 };
1253         struct fiemap_extent fe = { 0 };
1254         mm_segment_t saved_fs;
1255         int rc;
1256
1257         if (block >= cached_extent->start && block < cached_extent->end)
1258                 return cached_extent->mapped;
1259
1260         if (i_size_read(inode) == 0)
1261                 return 0;
1262
1263         /* Beyond EOF, must not be mapped */
1264         if (((i_size_read(inode) - 1) >> inode->i_blkbits) < block)
1265                 return 0;
1266
1267         fei.fi_extents_max = 1;
1268         fei.fi_extents_start = &fe;
1269
1270         saved_fs = get_fs();
1271         set_fs(KERNEL_DS);
1272         rc = inode->i_op->fiemap(inode, &fei, offset, FIEMAP_MAX_OFFSET-offset);
1273         set_fs(saved_fs);
1274         if (rc != 0)
1275                 return 0;
1276
1277         start = fe.fe_logical >> inode->i_blkbits;
1278
1279         if (start > block) {
1280                 cached_extent->start = block;
1281                 cached_extent->end = start;
1282                 cached_extent->mapped = 0;
1283         } else {
1284                 cached_extent->start = start;
1285                 cached_extent->end = (fe.fe_logical + fe.fe_length) >>
1286                                       inode->i_blkbits;
1287                 cached_extent->mapped = 1;
1288         }
1289
1290         return cached_extent->mapped;
1291 }
1292
1293 static int osd_declare_write_commit(const struct lu_env *env,
1294                                     struct dt_object *dt,
1295                                     struct niobuf_local *lnb, int npages,
1296                                     struct thandle *handle)
1297 {
1298         const struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
1299         struct inode            *inode = osd_dt_obj(dt)->oo_inode;
1300         struct osd_thandle      *oh;
1301         int                     extents = 0;
1302         int                     depth;
1303         int                     i;
1304         int                     newblocks = 0;
1305         int                     rc = 0;
1306         int                     credits = 0;
1307         long long               quota_space = 0;
1308         struct osd_fextent      mapped = { 0 }, extent = { 0 };
1309         enum osd_quota_local_flags local_flags = 0;
1310         enum osd_qid_declare_flags declare_flags = OSD_QID_BLK;
1311         ENTRY;
1312
1313         LASSERT(handle != NULL);
1314         oh = container_of(handle, struct osd_thandle, ot_super);
1315         LASSERT(oh->ot_handle == NULL);
1316
1317         /* calculate number of extents (probably better to pass nb) */
1318         for (i = 0; i < npages; i++) {
1319                 /* ignore quota for the whole request if any page is from
1320                  * client cache or written by root.
1321                  *
1322                  * XXX once we drop the 1.8 client support, the checking
1323                  * for whether page is from cache can be simplified as:
1324                  * !(lnb[i].flags & OBD_BRW_SYNC)
1325                  *
1326                  * XXX we could handle this on per-lnb basis as done by
1327                  * grant.
1328                  */
1329                 if ((lnb[i].lnb_flags & OBD_BRW_NOQUOTA) ||
1330                     (lnb[i].lnb_flags & (OBD_BRW_FROM_GRANT | OBD_BRW_SYNC)) ==
1331                     OBD_BRW_FROM_GRANT)
1332                         declare_flags |= OSD_QID_FORCE;
1333
1334                 if (osd_is_mapped(dt, lnb[i].lnb_file_offset, &mapped)) {
1335                         lnb[i].lnb_flags |= OBD_BRW_MAPPED;
1336                         continue;
1337                 }
1338
1339                 /* count only unmapped changes */
1340                 newblocks++;
1341                 if (lnb[i].lnb_file_offset != extent.end || extent.end == 0) {
1342                         extents++;
1343                         extent.end = lnb[i].lnb_file_offset + lnb[i].lnb_len;
1344                 } else {
1345                         extent.end += lnb[i].lnb_len;
1346                 }
1347
1348                 quota_space += PAGE_SIZE;
1349         }
1350
1351         credits++; /* inode */
1352         /*
1353          * overwrite case, no need to modify tree and
1354          * allocate blocks.
1355          */
1356         if (!newblocks)
1357                 goto out_declare;
1358         /*
1359          * each extent can go into new leaf causing a split
1360          * 5 is max tree depth: inode + 4 index blocks
1361          * with blockmaps, depth is 3 at most
1362          */
1363         if (LDISKFS_I(inode)->i_flags & LDISKFS_EXTENTS_FL) {
1364                 /*
1365                  * many concurrent threads may grow tree by the time
1366                  * our transaction starts. so, consider 2 is a min depth
1367                  */
1368                 depth = ext_depth(inode);
1369                 depth = max(depth, 1) + 1;
1370                 newblocks += depth;
1371                 credits += depth * 2 * extents;
1372         } else {
1373                 depth = 3;
1374                 newblocks += depth;
1375                 credits += depth * extents;
1376         }
1377
1378         /*
1379          * try a bit more extents to avoid restart
1380          * as much as possible in normal case.
1381          */
1382         if (npages > 1 && extents)
1383                 extents <<= 1;
1384
1385         /* quota space for metadata blocks */
1386         quota_space += depth * extents * LDISKFS_BLOCK_SIZE(osd_sb(osd));
1387
1388         /* quota space should be reported in 1K blocks */
1389         quota_space = toqb(quota_space);
1390
1391         /* each new block can go in different group (bitmap + gd) */
1392
1393         /* we can't dirty more bitmap blocks than exist */
1394         if (extents > LDISKFS_SB(osd_sb(osd))->s_groups_count)
1395                 credits += LDISKFS_SB(osd_sb(osd))->s_groups_count;
1396         else
1397                 credits += extents;
1398
1399         /* we can't dirty more gd blocks than exist */
1400         if (extents > LDISKFS_SB(osd_sb(osd))->s_gdb_count)
1401                 credits += LDISKFS_SB(osd_sb(osd))->s_gdb_count;
1402         else
1403                 credits += extents;
1404
1405 out_declare:
1406         osd_trans_declare_op(env, oh, OSD_OT_WRITE, credits);
1407
1408         /* make sure the over quota flags were not set */
1409         lnb[0].lnb_flags &= ~OBD_BRW_OVER_ALLQUOTA;
1410
1411         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
1412                                    i_projid_read(inode), quota_space, oh,
1413                                    osd_dt_obj(dt), &local_flags, declare_flags);
1414
1415         /* we need only to store the overquota flags in the first lnb for
1416          * now, once we support multiple objects BRW, this code needs be
1417          * revised.
1418          */
1419         if (local_flags & QUOTA_FL_OVER_USRQUOTA)
1420                 lnb[0].lnb_flags |= OBD_BRW_OVER_USRQUOTA;
1421         if (local_flags & QUOTA_FL_OVER_GRPQUOTA)
1422                 lnb[0].lnb_flags |= OBD_BRW_OVER_GRPQUOTA;
1423         if (local_flags & QUOTA_FL_OVER_PRJQUOTA)
1424                 lnb[0].lnb_flags |= OBD_BRW_OVER_PRJQUOTA;
1425
1426         if (rc == 0)
1427                 rc = osd_trunc_lock(osd_dt_obj(dt), oh, true);
1428
1429         RETURN(rc);
1430 }
1431
1432 /* Check if a block is allocated or not */
1433 static int osd_write_commit(const struct lu_env *env, struct dt_object *dt,
1434                             struct niobuf_local *lnb, int npages,
1435                             struct thandle *thandle, __u64 user_size)
1436 {
1437         struct osd_thread_info *oti = osd_oti_get(env);
1438         struct osd_iobuf *iobuf = &oti->oti_iobuf;
1439         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1440         struct osd_device  *osd = osd_obj2dev(osd_dt_obj(dt));
1441         int rc = 0, i, check_credits = 0;
1442         struct osd_thandle *oh = container_of(thandle,
1443                                               struct osd_thandle, ot_super);
1444         unsigned int save_credits = oh->ot_credits;
1445
1446         LASSERT(inode);
1447
1448         rc = osd_init_iobuf(osd, iobuf, 1, npages);
1449         if (unlikely(rc != 0))
1450                 RETURN(rc);
1451
1452         dquot_initialize(inode);
1453
1454         for (i = 0; i < npages; i++) {
1455                 if (lnb[i].lnb_rc == -ENOSPC &&
1456                     (lnb[i].lnb_flags & OBD_BRW_MAPPED)) {
1457                         /* Allow the write to proceed if overwriting an
1458                          * existing block
1459                          */
1460                         lnb[i].lnb_rc = 0;
1461                 }
1462
1463                 if (lnb[i].lnb_rc) { /* ENOSPC, network RPC error, etc. */
1464                         CDEBUG(D_INODE, "Skipping [%d] == %d\n", i,
1465                                lnb[i].lnb_rc);
1466                         LASSERT(lnb[i].lnb_page);
1467                         generic_error_remove_page(inode->i_mapping,
1468                                                   lnb[i].lnb_page);
1469                         continue;
1470                 }
1471
1472                 if (!(lnb[i].lnb_flags & OBD_BRW_MAPPED))
1473                         check_credits = 1;
1474
1475                 LASSERT(PageLocked(lnb[i].lnb_page));
1476                 LASSERT(!PageWriteback(lnb[i].lnb_page));
1477
1478                 /*
1479                  * Since write and truncate are serialized by oo_sem, even
1480                  * partial-page truncate should not leave dirty pages in the
1481                  * page cache.
1482                  */
1483                 LASSERT(!PageDirty(lnb[i].lnb_page));
1484
1485                 SetPageUptodate(lnb[i].lnb_page);
1486
1487                 osd_iobuf_add_page(iobuf, &lnb[i]);
1488         }
1489
1490         osd_trans_exec_op(env, thandle, OSD_OT_WRITE);
1491
1492         if (OBD_FAIL_CHECK(OBD_FAIL_OST_MAPBLK_ENOSPC)) {
1493                 rc = -ENOSPC;
1494         } else if (iobuf->dr_npages > 0) {
1495                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf, osd,
1496                                                  1, user_size,
1497                                                  check_credits);
1498                 /*
1499                  * Write might restart transaction, extend credits
1500                  * if needed for operations such as attribute set.
1501                  */
1502                 if (rc == 0) {
1503                         handle_t *handle = ldiskfs_journal_current_handle();
1504
1505                         LASSERT(handle != NULL);
1506                         rc = osd_extend_restart_trans(handle, save_credits,
1507                                                       inode);
1508                 }
1509         } else {
1510                 /* no pages to write, no transno is needed */
1511                 thandle->th_local = 1;
1512         }
1513
1514         if (rc != 0)
1515                 osd_fini_iobuf(osd, iobuf);
1516
1517         osd_trans_exec_check(env, thandle, OSD_OT_WRITE);
1518
1519         if (unlikely(rc != 0)) {
1520                 /* if write fails, we should drop pages from the cache */
1521                 for (i = 0; i < npages; i++) {
1522                         if (lnb[i].lnb_page == NULL)
1523                                 continue;
1524                         if (!PagePrivate2(lnb[i].lnb_page)) {
1525                                 LASSERT(PageLocked(lnb[i].lnb_page));
1526                                 generic_error_remove_page(inode->i_mapping,
1527                                                           lnb[i].lnb_page);
1528                         }
1529                 }
1530         }
1531
1532         RETURN(rc);
1533 }
1534
1535 static int osd_read_prep(const struct lu_env *env, struct dt_object *dt,
1536                          struct niobuf_local *lnb, int npages)
1537 {
1538         struct osd_thread_info *oti = osd_oti_get(env);
1539         struct osd_iobuf *iobuf = &oti->oti_iobuf;
1540         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1541         struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
1542         int rc = 0, i, cache_hits = 0, cache_misses = 0;
1543         ktime_t start, end;
1544         s64 timediff;
1545         loff_t isize;
1546
1547         LASSERT(inode);
1548
1549         rc = osd_init_iobuf(osd, iobuf, 0, npages);
1550         if (unlikely(rc != 0))
1551                 RETURN(rc);
1552
1553         isize = i_size_read(inode);
1554
1555         start = ktime_get();
1556         for (i = 0; i < npages; i++) {
1557
1558                 if (isize <= lnb[i].lnb_file_offset)
1559                         /* If there's no more data, abort early.
1560                          * lnb->lnb_rc == 0, so it's easy to detect later.
1561                          */
1562                         break;
1563
1564                 /* instead of looking if we go beyong isize, send complete
1565                  * pages all the time
1566                  */
1567                 lnb[i].lnb_rc = lnb[i].lnb_len;
1568
1569                 /* Bypass disk read if fail_loc is set properly */
1570                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_FAKE_RW))
1571                         SetPageUptodate(lnb[i].lnb_page);
1572
1573                 if (PageUptodate(lnb[i].lnb_page)) {
1574                         cache_hits++;
1575                         unlock_page(lnb[i].lnb_page);
1576                 } else {
1577                         cache_misses++;
1578                         osd_iobuf_add_page(iobuf, &lnb[i]);
1579                 }
1580                 /* no need to unlock in osd_bufs_put(), the sooner page is
1581                  * unlocked, the earlier another client can access it.
1582                  * notice real unlock_page() can be called few lines
1583                  * below after osd_do_bio(). lnb is a per-thread, so it's
1584                  * fine to have PG_locked and lnb_locked inconsistent here
1585                  */
1586                 lnb[i].lnb_locked = 0;
1587         }
1588         end = ktime_get();
1589         timediff = ktime_us_delta(end, start);
1590         lprocfs_counter_add(osd->od_stats, LPROC_OSD_GET_PAGE, timediff);
1591
1592         if (cache_hits != 0)
1593                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_HIT,
1594                                     cache_hits);
1595         if (cache_misses != 0)
1596                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_MISS,
1597                                     cache_misses);
1598         if (cache_hits + cache_misses != 0)
1599                 lprocfs_counter_add(osd->od_stats, LPROC_OSD_CACHE_ACCESS,
1600                                     cache_hits + cache_misses);
1601
1602         if (iobuf->dr_npages) {
1603                 rc = osd_ldiskfs_map_inode_pages(inode, iobuf, osd, 0,
1604                                                  0, 0);
1605                 if (!rc)
1606                         rc = osd_do_bio(osd, inode, iobuf, 0, 0);
1607
1608                 /* IO stats will be done in osd_bufs_put() */
1609
1610                 /* early release to let others read data during the bulk */
1611                 for (i = 0; i < iobuf->dr_npages; i++) {
1612                         LASSERT(PageLocked(iobuf->dr_pages[i]));
1613                         if (!PagePrivate2(iobuf->dr_pages[i]))
1614                                 unlock_page(iobuf->dr_pages[i]);
1615                 }
1616         }
1617
1618         RETURN(rc);
1619 }
1620
1621 /*
1622  * XXX: Another layering violation for now.
1623  *
1624  * We don't want to use ->f_op->read methods, because generic file write
1625  *
1626  *         - serializes on ->i_sem, and
1627  *
1628  *         - does a lot of extra work like balance_dirty_pages(),
1629  *
1630  * which doesn't work for globally shared files like /last_rcvd.
1631  */
1632 static int osd_ldiskfs_readlink(struct inode *inode, char *buffer, int buflen)
1633 {
1634         struct ldiskfs_inode_info *ei = LDISKFS_I(inode);
1635
1636         memcpy(buffer, (char *)ei->i_data, buflen);
1637
1638         return  buflen;
1639 }
1640
1641 int osd_ldiskfs_read(struct inode *inode, void *buf, int size, loff_t *offs)
1642 {
1643         struct buffer_head *bh;
1644         unsigned long block;
1645         int osize;
1646         int blocksize;
1647         int csize;
1648         int boffs;
1649
1650         /* prevent reading after eof */
1651         spin_lock(&inode->i_lock);
1652         if (i_size_read(inode) < *offs + size) {
1653                 loff_t diff = i_size_read(inode) - *offs;
1654
1655                 spin_unlock(&inode->i_lock);
1656                 if (diff < 0) {
1657                         CDEBUG(D_OTHER,
1658                                "size %llu is too short to read @%llu\n",
1659                                i_size_read(inode), *offs);
1660                         return -EBADR;
1661                 } else if (diff == 0) {
1662                         return 0;
1663                 } else {
1664                         size = diff;
1665                 }
1666         } else {
1667                 spin_unlock(&inode->i_lock);
1668         }
1669
1670         blocksize = 1 << inode->i_blkbits;
1671         osize = size;
1672         while (size > 0) {
1673                 block = *offs >> inode->i_blkbits;
1674                 boffs = *offs & (blocksize - 1);
1675                 csize = min(blocksize - boffs, size);
1676                 bh = __ldiskfs_bread(NULL, inode, block, 0);
1677                 if (IS_ERR(bh)) {
1678                         CERROR("%s: can't read %u@%llu on ino %lu: rc = %ld\n",
1679                                osd_ino2name(inode), csize, *offs, inode->i_ino,
1680                                PTR_ERR(bh));
1681                         return PTR_ERR(bh);
1682                 }
1683
1684                 if (bh != NULL) {
1685                         memcpy(buf, bh->b_data + boffs, csize);
1686                         brelse(bh);
1687                 } else {
1688                         memset(buf, 0, csize);
1689                 }
1690
1691                 *offs += csize;
1692                 buf += csize;
1693                 size -= csize;
1694         }
1695         return osize;
1696 }
1697
1698 static ssize_t osd_read(const struct lu_env *env, struct dt_object *dt,
1699                         struct lu_buf *buf, loff_t *pos)
1700 {
1701         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1702         int rc;
1703
1704         /* Read small symlink from inode body as we need to maintain correct
1705          * on-disk symlinks for ldiskfs.
1706          */
1707         if (S_ISLNK(dt->do_lu.lo_header->loh_attr)) {
1708                 loff_t size = i_size_read(inode);
1709
1710                 if (buf->lb_len < size)
1711                         return -EOVERFLOW;
1712
1713                 if (size < sizeof(LDISKFS_I(inode)->i_data))
1714                         rc = osd_ldiskfs_readlink(inode, buf->lb_buf, size);
1715                 else
1716                         rc = osd_ldiskfs_read(inode, buf->lb_buf, size, pos);
1717         } else {
1718                 rc = osd_ldiskfs_read(inode, buf->lb_buf, buf->lb_len, pos);
1719         }
1720
1721         return rc;
1722 }
1723
1724 static inline int osd_extents_enabled(struct super_block *sb,
1725                                       struct inode *inode)
1726 {
1727         if (inode != NULL) {
1728                 if (LDISKFS_I(inode)->i_flags & LDISKFS_EXTENTS_FL)
1729                         return 1;
1730         } else if (ldiskfs_has_feature_extents(sb)) {
1731                 return 1;
1732         }
1733         return 0;
1734 }
1735
1736 int osd_calc_bkmap_credits(struct super_block *sb, struct inode *inode,
1737                            const loff_t size, const loff_t pos,
1738                            const int blocks)
1739 {
1740         int credits, bits, bs, i;
1741
1742         bits = sb->s_blocksize_bits;
1743         bs = 1 << bits;
1744
1745         /* legacy blockmap: 3 levels * 3 (bitmap,gd,itself)
1746          * we do not expect blockmaps on the large files,
1747          * so let's shrink it to 2 levels (4GB files)
1748          */
1749
1750         /* this is default reservation: 2 levels */
1751         credits = (blocks + 2) * 3;
1752
1753         /* actual offset is unknown, hard to optimize */
1754         if (pos == -1)
1755                 return credits;
1756
1757         /* now check for few specific cases to optimize */
1758         if (pos + size <= LDISKFS_NDIR_BLOCKS * bs) {
1759                 /* no indirects */
1760                 credits = blocks;
1761                 /* allocate if not allocated */
1762                 if (inode == NULL) {
1763                         credits += blocks * 2;
1764                         return credits;
1765                 }
1766                 for (i = (pos >> bits); i < (pos >> bits) + blocks; i++) {
1767                         LASSERT(i < LDISKFS_NDIR_BLOCKS);
1768                         if (LDISKFS_I(inode)->i_data[i] == 0)
1769                                 credits += 2;
1770                 }
1771         } else if (pos + size <= (LDISKFS_NDIR_BLOCKS + 1024) * bs) {
1772                 /* single indirect */
1773                 credits = blocks * 3;
1774                 if (inode == NULL ||
1775                     LDISKFS_I(inode)->i_data[LDISKFS_IND_BLOCK] == 0)
1776                         credits += 3;
1777                 else
1778                         /* The indirect block may be modified. */
1779                         credits += 1;
1780         }
1781
1782         return credits;
1783 }
1784
1785 static ssize_t osd_declare_write(const struct lu_env *env, struct dt_object *dt,
1786                                  const struct lu_buf *buf, loff_t _pos,
1787                                  struct thandle *handle)
1788 {
1789         struct osd_object  *obj  = osd_dt_obj(dt);
1790         struct inode       *inode = obj->oo_inode;
1791         struct super_block *sb = osd_sb(osd_obj2dev(obj));
1792         struct osd_thandle *oh;
1793         int                 rc = 0, est = 0, credits, blocks, allocated = 0;
1794         int                 bits, bs;
1795         int                 depth, size;
1796         loff_t              pos;
1797         ENTRY;
1798
1799         LASSERT(buf != NULL);
1800         LASSERT(handle != NULL);
1801
1802         oh = container_of(handle, struct osd_thandle, ot_super);
1803         LASSERT(oh->ot_handle == NULL);
1804
1805         size = buf->lb_len;
1806         bits = sb->s_blocksize_bits;
1807         bs = 1 << bits;
1808
1809         if (_pos == -1) {
1810                 /* if this is an append, then we
1811                  * should expect cross-block record
1812                  */
1813                 pos = 0;
1814         } else {
1815                 pos = _pos;
1816         }
1817
1818         /* blocks to modify */
1819         blocks = ((pos + size + bs - 1) >> bits) - (pos >> bits);
1820         LASSERT(blocks > 0);
1821
1822         if (inode != NULL && _pos != -1) {
1823                 /* object size in blocks */
1824                 est = (i_size_read(inode) + bs - 1) >> bits;
1825                 allocated = inode->i_blocks >> (bits - 9);
1826                 if (pos + size <= i_size_read(inode) && est <= allocated) {
1827                         /* looks like an overwrite, no need to modify tree */
1828                         credits = blocks;
1829                         /* no need to modify i_size */
1830                         goto out;
1831                 }
1832         }
1833
1834         if (osd_extents_enabled(sb, inode)) {
1835                 /*
1836                  * many concurrent threads may grow tree by the time
1837                  * our transaction starts. so, consider 2 is a min depth
1838                  * for every level we may need to allocate a new block
1839                  * and take some entries from the old one. so, 3 blocks
1840                  * to allocate (bitmap, gd, itself) + old block - 4 per
1841                  * level.
1842                  */
1843                 depth = inode != NULL ? ext_depth(inode) : 0;
1844                 depth = max(depth, 1) + 1;
1845                 credits = depth;
1846                 /* if not append, then split may need to modify
1847                  * existing blocks moving entries into the new ones
1848                  */
1849                 if (_pos != -1)
1850                         credits += depth;
1851                 /* blocks to store data: bitmap,gd,itself */
1852                 credits += blocks * 3;
1853         } else {
1854                 credits = osd_calc_bkmap_credits(sb, inode, size, _pos, blocks);
1855         }
1856         /* if inode is created as part of the transaction,
1857          * then it's counted already by the creation method
1858          */
1859         if (inode != NULL)
1860                 credits++;
1861
1862 out:
1863
1864         osd_trans_declare_op(env, oh, OSD_OT_WRITE, credits);
1865
1866         /* dt_declare_write() is usually called for system objects, such
1867          * as llog or last_rcvd files. We needn't enforce quota on those
1868          * objects, so always set the lqi_space as 0.
1869          */
1870         if (inode != NULL)
1871                 rc = osd_declare_inode_qid(env, i_uid_read(inode),
1872                                            i_gid_read(inode),
1873                                            i_projid_read(inode), 0,
1874                                            oh, obj, NULL, OSD_QID_BLK);
1875
1876         if (rc == 0)
1877                 rc = osd_trunc_lock(obj, oh, true);
1878
1879         RETURN(rc);
1880 }
1881
1882 static int osd_ldiskfs_writelink(struct inode *inode, char *buffer, int buflen)
1883 {
1884         /* LU-2634: clear the extent format for fast symlink */
1885         ldiskfs_clear_inode_flag(inode, LDISKFS_INODE_EXTENTS);
1886
1887         memcpy((char *)&LDISKFS_I(inode)->i_data, (char *)buffer, buflen);
1888         spin_lock(&inode->i_lock);
1889         LDISKFS_I(inode)->i_disksize = buflen;
1890         i_size_write(inode, buflen);
1891         spin_unlock(&inode->i_lock);
1892         osd_dirty_inode(inode, I_DIRTY_DATASYNC);
1893
1894         return 0;
1895 }
1896
1897 static int osd_ldiskfs_write_record(struct dt_object *dt, void *buf,
1898                                     int bufsize, int write_NUL, loff_t *offs,
1899                                     handle_t *handle)
1900 {
1901         struct inode *inode = osd_dt_obj(dt)->oo_inode;
1902         struct buffer_head *bh        = NULL;
1903         loff_t              offset    = *offs;
1904         loff_t              new_size  = i_size_read(inode);
1905         unsigned long       block;
1906         int                 blocksize = 1 << inode->i_blkbits;
1907         struct ldiskfs_inode_info *ei = LDISKFS_I(inode);
1908         int                 err = 0;
1909         int                 size;
1910         int                 boffs;
1911         int                 dirty_inode = 0;
1912         bool create, sparse, sync = false;
1913
1914         if (write_NUL) {
1915                 /*
1916                  * long symlink write does not count the NUL terminator in
1917                  * bufsize, we write it, and the inode's file size does not
1918                  * count the NUL terminator as well.
1919                  */
1920                 ((char *)buf)[bufsize] = '\0';
1921                 ++bufsize;
1922         }
1923
1924         /* only the first flag-set matters */
1925         dirty_inode = !test_and_set_bit(LDISKFS_INODE_JOURNAL_DATA,
1926                                        &ei->i_flags);
1927
1928         /* sparse checking is racy, but sparse is very rare case, leave as is */
1929         sparse = (new_size > 0 && (inode->i_blocks >> (inode->i_blkbits - 9)) <
1930                   ((new_size - 1) >> inode->i_blkbits) + 1);
1931
1932         while (bufsize > 0) {
1933                 int credits = handle->h_buffer_credits;
1934                 unsigned long last_block = (new_size == 0) ? 0 :
1935                                            (new_size - 1) >> inode->i_blkbits;
1936
1937                 if (bh)
1938                         brelse(bh);
1939
1940                 block = offset >> inode->i_blkbits;
1941                 boffs = offset & (blocksize - 1);
1942                 size = min(blocksize - boffs, bufsize);
1943                 sync = (block > last_block || new_size == 0 || sparse);
1944
1945                 if (sync)
1946                         down(&ei->i_append_sem);
1947
1948                 bh = __ldiskfs_bread(handle, inode, block, 0);
1949
1950                 if (unlikely(IS_ERR_OR_NULL(bh) && !sync))
1951                         CWARN(
1952                               "%s: adding bh without locking off %llu (block %lu, size %d, offs %llu)\n",
1953                               osd_ino2name(inode),
1954                               offset, block, bufsize, *offs);
1955
1956                 if (IS_ERR_OR_NULL(bh)) {
1957                         struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
1958                         int flags = LDISKFS_GET_BLOCKS_CREATE;
1959
1960                         /* while the file system is being mounted, avoid
1961                          * preallocation otherwise mount can take a long
1962                          * time as mballoc cache is cold.
1963                          * XXX: this is a workaround until we have a proper
1964                          *      fix in mballoc
1965                          * XXX: works with extent-based files only */
1966                         if (!osd->od_cl_seq)
1967                                 flags |= LDISKFS_GET_BLOCKS_NO_NORMALIZE;
1968                         bh = __ldiskfs_bread(handle, inode, block, flags);
1969                         create = true;
1970                 } else {
1971                         if (sync) {
1972                                 up(&ei->i_append_sem);
1973                                 sync = false;
1974                         }
1975                         create = false;
1976                 }
1977                 if (IS_ERR_OR_NULL(bh)) {
1978                         if (bh == NULL) {
1979                                 err = -EIO;
1980                         } else {
1981                                 err = PTR_ERR(bh);
1982                                 bh = NULL;
1983                         }
1984
1985                         CERROR(
1986                                "%s: error reading offset %llu (block %lu, size %d, offs %llu), credits %d/%d: rc = %d\n",
1987                                osd_ino2name(inode), offset, block, bufsize,
1988                                *offs, credits, handle->h_buffer_credits, err);
1989                         break;
1990                 }
1991
1992                 err = ldiskfs_journal_get_write_access(handle, bh);
1993                 if (err) {
1994                         CERROR("journal_get_write_access() returned error %d\n",
1995                                err);
1996                         break;
1997                 }
1998                 LASSERTF(boffs + size <= bh->b_size,
1999                          "boffs %d size %d bh->b_size %lu\n",
2000                          boffs, size, (unsigned long)bh->b_size);
2001                 if (create) {
2002                         memset(bh->b_data, 0, bh->b_size);
2003                         if (sync) {
2004                                 up(&ei->i_append_sem);
2005                                 sync = false;
2006                         }
2007                 }
2008                 memcpy(bh->b_data + boffs, buf, size);
2009                 err = ldiskfs_handle_dirty_metadata(handle, NULL, bh);
2010                 if (err)
2011                         break;
2012
2013                 if (offset + size > new_size)
2014                         new_size = offset + size;
2015                 offset += size;
2016                 bufsize -= size;
2017                 buf += size;
2018         }
2019         if (sync)
2020                 up(&ei->i_append_sem);
2021
2022         if (bh)
2023                 brelse(bh);
2024
2025         if (write_NUL)
2026                 --new_size;
2027         /* correct in-core and on-disk sizes */
2028         if (new_size > i_size_read(inode)) {
2029                 spin_lock(&inode->i_lock);
2030                 if (new_size > i_size_read(inode))
2031                         i_size_write(inode, new_size);
2032                 if (i_size_read(inode) > ei->i_disksize) {
2033                         ei->i_disksize = i_size_read(inode);
2034                         dirty_inode = 1;
2035                 }
2036                 spin_unlock(&inode->i_lock);
2037         }
2038         if (dirty_inode)
2039                 osd_dirty_inode(inode, I_DIRTY_DATASYNC);
2040
2041         if (err == 0)
2042                 *offs = offset;
2043         return err;
2044 }
2045
2046 static ssize_t osd_write(const struct lu_env *env, struct dt_object *dt,
2047                          const struct lu_buf *buf, loff_t *pos,
2048                          struct thandle *handle)
2049 {
2050         struct inode            *inode = osd_dt_obj(dt)->oo_inode;
2051         struct osd_thandle      *oh;
2052         ssize_t                 result;
2053         int                     is_link;
2054
2055         LASSERT(dt_object_exists(dt));
2056
2057         LASSERT(handle != NULL);
2058         LASSERT(inode != NULL);
2059         dquot_initialize(inode);
2060
2061         /* XXX: don't check: one declared chunk can be used many times */
2062         /* osd_trans_exec_op(env, handle, OSD_OT_WRITE); */
2063
2064         oh = container_of(handle, struct osd_thandle, ot_super);
2065         LASSERT(oh->ot_handle->h_transaction != NULL);
2066         osd_trans_exec_op(env, handle, OSD_OT_WRITE);
2067
2068         /* Write small symlink to inode body as we need to maintain correct
2069          * on-disk symlinks for ldiskfs.
2070          * Note: the buf->lb_buf contains a NUL terminator while buf->lb_len
2071          * does not count it in.
2072          */
2073         is_link = S_ISLNK(dt->do_lu.lo_header->loh_attr);
2074         if (is_link && (buf->lb_len < sizeof(LDISKFS_I(inode)->i_data)))
2075                 result = osd_ldiskfs_writelink(inode, buf->lb_buf, buf->lb_len);
2076         else
2077                 result = osd_ldiskfs_write_record(dt, buf->lb_buf, buf->lb_len,
2078                                                   is_link, pos, oh->ot_handle);
2079         if (result == 0)
2080                 result = buf->lb_len;
2081
2082         osd_trans_exec_check(env, handle, OSD_OT_WRITE);
2083
2084         return result;
2085 }
2086
2087 static int osd_declare_fallocate(const struct lu_env *env,
2088                                  struct dt_object *dt, __u64 start, __u64 end,
2089                                  int mode, struct thandle *th)
2090 {
2091         struct osd_thandle *oh = container_of(th, struct osd_thandle, ot_super);
2092         struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
2093         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2094         long long quota_space = 0;
2095         /* 5 is max tree depth. (inode + 4 index blocks) */
2096         int depth = 5;
2097         int rc;
2098
2099         ENTRY;
2100
2101         /*
2102          * Only mode == 0 (which is standard prealloc) is supported now.
2103          * Rest of mode options is not supported yet.
2104          */
2105         if (mode & ~FALLOC_FL_KEEP_SIZE)
2106                 RETURN(-EOPNOTSUPP);
2107
2108         LASSERT(th);
2109         LASSERT(inode);
2110
2111         /* quota space for metadata blocks
2112          * approximate metadata estimate should be good enough.
2113          */
2114         quota_space += PAGE_SIZE;
2115         quota_space += depth * LDISKFS_BLOCK_SIZE(osd_sb(osd));
2116
2117         /* quota space should be reported in 1K blocks */
2118         quota_space = toqb(quota_space) + toqb(end - start) +
2119                       LDISKFS_META_TRANS_BLOCKS(inode->i_sb);
2120
2121         /* We don't need to reserve credits for whole fallocate here.
2122          * We reserve space only for metadata. Fallocate credits are
2123          * extended as required
2124          */
2125         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
2126                                    i_projid_read(inode), quota_space, oh,
2127                                    osd_dt_obj(dt), NULL, OSD_QID_BLK);
2128         RETURN(rc);
2129 }
2130
2131 static int osd_fallocate(const struct lu_env *env, struct dt_object *dt,
2132                          __u64 start, __u64 end, int mode, struct thandle *th)
2133 {
2134         struct osd_thandle *oh = container_of(th, struct osd_thandle, ot_super);
2135         handle_t *handle = ldiskfs_journal_current_handle();
2136         unsigned int save_credits = oh->ot_credits;
2137         struct osd_object *obj = osd_dt_obj(dt);
2138         struct inode *inode = obj->oo_inode;
2139         struct ldiskfs_map_blocks map;
2140         unsigned int credits;
2141         ldiskfs_lblk_t blen;
2142         ldiskfs_lblk_t boff;
2143         loff_t new_size = 0;
2144         int depth = 0;
2145         int flags;
2146         int rc = 0;
2147
2148         ENTRY;
2149
2150         LASSERT(dt_object_exists(dt));
2151         LASSERT(osd_invariant(obj));
2152         LASSERT(inode != NULL);
2153
2154         CDEBUG(D_INODE, "fallocate: inode #%lu: start %llu end %llu mode %d\n",
2155                inode->i_ino, start, end, mode);
2156
2157         dquot_initialize(inode);
2158
2159         LASSERT(th);
2160
2161         boff = start >> inode->i_blkbits;
2162         blen = (ALIGN(end, 1 << inode->i_blkbits) >> inode->i_blkbits) - boff;
2163
2164         flags = LDISKFS_GET_BLOCKS_CREATE;
2165         if (mode & FALLOC_FL_KEEP_SIZE)
2166                 flags |= LDISKFS_GET_BLOCKS_KEEP_SIZE;
2167
2168         inode_lock(inode);
2169
2170         /*
2171          * We only support preallocation for extent-based file only.
2172          */
2173         if (!(ldiskfs_test_inode_flag(inode, LDISKFS_INODE_EXTENTS)))
2174                 GOTO(out, rc = -EOPNOTSUPP);
2175
2176         if (!(mode & FALLOC_FL_KEEP_SIZE) && (end > i_size_read(inode) ||
2177             end > LDISKFS_I(inode)->i_disksize)) {
2178                 new_size = end;
2179                 rc = inode_newsize_ok(inode, new_size);
2180                 if (rc)
2181                         GOTO(out, rc);
2182         }
2183
2184         inode_dio_wait(inode);
2185
2186         map.m_lblk = boff;
2187         map.m_len = blen;
2188
2189         /* Don't normalize the request if it can fit in one extent so
2190          * that it doesn't get unnecessarily split into multiple extents.
2191          */
2192         if (blen <= EXT_UNWRITTEN_MAX_LEN)
2193                 flags |= LDISKFS_GET_BLOCKS_NO_NORMALIZE;
2194
2195         /*
2196          * credits to insert 1 extent into extent tree.
2197          */
2198         credits = osd_chunk_trans_blocks(inode, blen);
2199         depth = ext_depth(inode);
2200
2201         while (rc >= 0 && blen) {
2202                 loff_t epos;
2203
2204                 /*
2205                  * Recalculate credits when extent tree depth changes.
2206                  */
2207                 if (depth != ext_depth(inode)) {
2208                         credits = osd_chunk_trans_blocks(inode, blen);
2209                         depth = ext_depth(inode);
2210                 }
2211
2212                 /* TODO: quota check */
2213                 rc = osd_extend_restart_trans(handle, credits, inode);
2214                 if (rc)
2215                         break;
2216
2217                 rc = ldiskfs_map_blocks(handle, inode, &map, flags);
2218                 if (rc <= 0) {
2219                         CDEBUG(D_INODE,
2220                                "inode #%lu: block %u: len %u: ldiskfs_map_blocks returned %d\n",
2221                                inode->i_ino, map.m_lblk, map.m_len, rc);
2222                         ldiskfs_mark_inode_dirty(handle, inode);
2223                         break;
2224                 }
2225
2226                 map.m_lblk += rc;
2227                 map.m_len = blen = blen - rc;
2228                 epos = (loff_t)map.m_lblk << inode->i_blkbits;
2229                 inode->i_ctime = current_time(inode);
2230                 if (new_size) {
2231                         if (epos > end)
2232                                 epos = end;
2233                         if (ldiskfs_update_inode_size(inode, epos) & 0x1)
2234                                 inode->i_mtime = inode->i_ctime;
2235                 } else {
2236                         if (epos > inode->i_size)
2237                                 ldiskfs_set_inode_flag(inode,
2238                                                        LDISKFS_INODE_EOFBLOCKS);
2239                 }
2240
2241                 ldiskfs_mark_inode_dirty(handle, inode);
2242         }
2243
2244 out:
2245         /* extand credits if needed for operations such as attribute set */
2246         if (rc >= 0)
2247                 rc = osd_extend_restart_trans(handle, save_credits, inode);
2248
2249         inode_unlock(inode);
2250
2251         RETURN(rc);
2252 }
2253
2254 static int osd_declare_punch(const struct lu_env *env, struct dt_object *dt,
2255                              __u64 start, __u64 end, struct thandle *th)
2256 {
2257         struct osd_thandle *oh;
2258         struct inode       *inode;
2259         int                 rc;
2260         ENTRY;
2261
2262         LASSERT(th);
2263         oh = container_of(th, struct osd_thandle, ot_super);
2264
2265         /*
2266          * we don't need to reserve credits for whole truncate
2267          * it's not possible as truncate may need to free too many
2268          * blocks and that won't fit a single transaction. instead
2269          * we reserve credits to change i_size and put inode onto
2270          * orphan list. if needed truncate will extend or restart
2271          * transaction
2272          */
2273         osd_trans_declare_op(env, oh, OSD_OT_PUNCH,
2274                              osd_dto_credits_noquota[DTO_ATTR_SET_BASE] + 3);
2275
2276         inode = osd_dt_obj(dt)->oo_inode;
2277         LASSERT(inode);
2278
2279         rc = osd_declare_inode_qid(env, i_uid_read(inode), i_gid_read(inode),
2280                                    i_projid_read(inode), 0, oh, osd_dt_obj(dt),
2281                                    NULL, OSD_QID_BLK);
2282
2283         if (rc == 0)
2284                 rc = osd_trunc_lock(osd_dt_obj(dt), oh, false);
2285
2286         RETURN(rc);
2287 }
2288
2289 static int osd_punch(const struct lu_env *env, struct dt_object *dt,
2290                      __u64 start, __u64 end, struct thandle *th)
2291 {
2292         struct osd_object *obj = osd_dt_obj(dt);
2293         struct osd_device *osd = osd_obj2dev(obj);
2294         struct inode *inode = obj->oo_inode;
2295         struct osd_access_lock *al;
2296         struct osd_thandle *oh;
2297         int rc = 0, found = 0;
2298         bool grow = false;
2299         ENTRY;
2300
2301         LASSERT(dt_object_exists(dt));
2302         LASSERT(osd_invariant(obj));
2303         LASSERT(inode != NULL);
2304         dquot_initialize(inode);
2305
2306         LASSERT(th);
2307         oh = container_of(th, struct osd_thandle, ot_super);
2308         LASSERT(oh->ot_handle->h_transaction != NULL);
2309
2310         /* we used to skip truncate to current size to
2311          * optimize truncates on OST. with DoM we can
2312          * get attr_set to set specific size (MDS_REINT)
2313          * and then get truncate RPC which essentially
2314          * would be skipped. this is bad.. so, disable
2315          * this optimization on MDS till the client stop
2316          * to sent MDS_REINT (LU-11033) -bzzz
2317          */
2318         if (osd->od_is_ost && i_size_read(inode) == start)
2319                 RETURN(0);
2320
2321         osd_trans_exec_op(env, th, OSD_OT_PUNCH);
2322
2323         spin_lock(&inode->i_lock);
2324         if (i_size_read(inode) < start)
2325                 grow = true;
2326         i_size_write(inode, start);
2327         spin_unlock(&inode->i_lock);
2328         /* if object holds encrypted content, we need to make sure we truncate
2329          * on an encryption unit boundary, or subsequent reads will get
2330          * corrupted content
2331          */
2332         if (obj->oo_lma_flags & LUSTRE_ENCRYPT_FL &&
2333             start & ~LUSTRE_ENCRYPTION_MASK)
2334                 start = (start & LUSTRE_ENCRYPTION_MASK) +
2335                         LUSTRE_ENCRYPTION_UNIT_SIZE;
2336         ll_truncate_pagecache(inode, start);
2337
2338         /* optimize grow case */
2339         if (grow) {
2340                 osd_execute_truncate(obj);
2341                 GOTO(out, rc);
2342         }
2343
2344         inode_lock(inode);
2345         /* add to orphan list to ensure truncate completion
2346          * if this transaction succeed. ldiskfs_truncate()
2347          * will take the inode out of the list
2348          */
2349         rc = ldiskfs_orphan_add(oh->ot_handle, inode);
2350         inode_unlock(inode);
2351         if (rc != 0)
2352                 GOTO(out, rc);
2353
2354         list_for_each_entry(al, &oh->ot_trunc_locks, tl_list) {
2355                 if (obj != al->tl_obj)
2356                         continue;
2357                 LASSERT(al->tl_shared == 0);
2358                 found = 1;
2359                 /* do actual truncate in osd_trans_stop() */
2360                 al->tl_truncate = 1;
2361                 break;
2362         }
2363         LASSERT(found);
2364
2365 out:
2366         RETURN(rc);
2367 }
2368
2369 static int fiemap_check_ranges(struct inode *inode,
2370                                u64 start, u64 len, u64 *new_len)
2371 {
2372         loff_t maxbytes;
2373
2374         *new_len = len;
2375
2376         if (len == 0)
2377                 return -EINVAL;
2378
2379         if (ldiskfs_test_inode_flag(inode, LDISKFS_INODE_EXTENTS))
2380                 maxbytes = inode->i_sb->s_maxbytes;
2381         else
2382                 maxbytes = LDISKFS_SB(inode->i_sb)->s_bitmap_maxbytes;
2383
2384         if (start > maxbytes)
2385                 return -EFBIG;
2386
2387         /*
2388          * Shrink request scope to what the fs can actually handle.
2389          */
2390         if (len > maxbytes || (maxbytes - len) < start)
2391                 *new_len = maxbytes - start;
2392
2393         return 0;
2394 }
2395
2396 /* So that the fiemap access checks can't overflow on 32 bit machines. */
2397 #define FIEMAP_MAX_EXTENTS     (UINT_MAX / sizeof(struct fiemap_extent))
2398
2399 static int osd_fiemap_get(const struct lu_env *env, struct dt_object *dt,
2400                           struct fiemap *fm)
2401 {
2402         struct fiemap_extent_info fieinfo = {0, };
2403         struct inode *inode = osd_dt_obj(dt)->oo_inode;
2404         u64 len;
2405         int rc;
2406         mm_segment_t cur_fs;
2407
2408         LASSERT(inode);
2409         if (inode->i_op->fiemap == NULL)
2410                 return -EOPNOTSUPP;
2411
2412         if (fm->fm_extent_count > FIEMAP_MAX_EXTENTS)
2413                 return -EINVAL;
2414
2415         rc = fiemap_check_ranges(inode, fm->fm_start, fm->fm_length, &len);
2416         if (rc)
2417                 return rc;
2418
2419         fieinfo.fi_flags = fm->fm_flags;
2420         fieinfo.fi_extents_max = fm->fm_extent_count;
2421         fieinfo.fi_extents_start = fm->fm_extents;
2422
2423         if (fieinfo.fi_flags & FIEMAP_FLAG_SYNC)
2424                 filemap_write_and_wait(inode->i_mapping);
2425
2426         /* Save previous value address limit */
2427         cur_fs = get_fs();
2428         /* Set the address limit of the kernel */
2429         set_fs(KERNEL_DS);
2430
2431         rc = inode->i_op->fiemap(inode, &fieinfo, fm->fm_start, len);
2432         fm->fm_flags = fieinfo.fi_flags;
2433         fm->fm_mapped_extents = fieinfo.fi_extents_mapped;
2434
2435         /* Restore the previous address limt */
2436         set_fs(cur_fs);
2437
2438         return rc;
2439 }
2440
2441 static int osd_ladvise(const struct lu_env *env, struct dt_object *dt,
2442                        __u64 start, __u64 end, enum lu_ladvise_type advice)
2443 {
2444         struct osd_object *obj = osd_dt_obj(dt);
2445         int rc = 0;
2446         ENTRY;
2447
2448         switch (advice) {
2449         case LU_LADVISE_DONTNEED:
2450                 if (end)
2451                         invalidate_mapping_pages(obj->oo_inode->i_mapping,
2452                                                  start >> PAGE_SHIFT,
2453                                                  (end - 1) >> PAGE_SHIFT);
2454                 break;
2455         default:
2456                 rc = -ENOTSUPP;
2457                 break;
2458         }
2459
2460         RETURN(rc);
2461 }
2462
2463 static loff_t osd_lseek(const struct lu_env *env, struct dt_object *dt,
2464                         loff_t offset, int whence)
2465 {
2466         struct osd_object *obj = osd_dt_obj(dt);
2467         struct inode *inode = obj->oo_inode;
2468         struct file *file;
2469         loff_t result;
2470
2471         ENTRY;
2472
2473         LASSERT(dt_object_exists(dt));
2474         LASSERT(osd_invariant(obj));
2475         LASSERT(inode);
2476         LASSERT(offset >= 0);
2477
2478         file = osd_quasi_file(env, inode);
2479         result = file->f_op->llseek(file, offset, whence);
2480
2481         /*
2482          * If 'offset' is beyond end of object file then treat it as not error
2483          * but valid case for SEEK_HOLE and return 'offset' as result.
2484          * LOV will decide if it is beyond real end of file or not.
2485          */
2486         if (whence == SEEK_HOLE && result == -ENXIO)
2487                 result = offset;
2488
2489         CDEBUG(D_INFO, "seek %s from %lld: %lld\n", whence == SEEK_HOLE ?
2490                        "hole" : "data", offset, result);
2491         RETURN(result);
2492 }
2493
2494 /*
2495  * in some cases we may need declare methods for objects being created
2496  * e.g., when we create symlink
2497  */
2498 const struct dt_body_operations osd_body_ops_new = {
2499         .dbo_declare_write = osd_declare_write,
2500 };
2501
2502 const struct dt_body_operations osd_body_ops = {
2503         .dbo_read                       = osd_read,
2504         .dbo_declare_write              = osd_declare_write,
2505         .dbo_write                      = osd_write,
2506         .dbo_bufs_get                   = osd_bufs_get,
2507         .dbo_bufs_put                   = osd_bufs_put,
2508         .dbo_write_prep                 = osd_write_prep,
2509         .dbo_declare_write_commit       = osd_declare_write_commit,
2510         .dbo_write_commit               = osd_write_commit,
2511         .dbo_read_prep                  = osd_read_prep,
2512         .dbo_declare_punch              = osd_declare_punch,
2513         .dbo_punch                      = osd_punch,
2514         .dbo_fiemap_get                 = osd_fiemap_get,
2515         .dbo_ladvise                    = osd_ladvise,
2516         .dbo_declare_fallocate          = osd_declare_fallocate,
2517         .dbo_fallocate                  = osd_fallocate,
2518         .dbo_lseek                      = osd_lseek,
2519 };
2520
2521 /**
2522  * Get a truncate lock
2523  *
2524  * In order to take multi-transaction truncate out of main transaction we let
2525  * the caller grab a lock on the object passed. the lock can be shared (for
2526  * writes) and exclusive (for truncate). It's not allowed to mix truncate
2527  * and write in the same transaction handle (do not confuse with big ldiskfs
2528  * transaction containing lots of handles).
2529  * The lock must be taken at declaration.
2530  *
2531  * \param obj           object to lock
2532  * \oh                  transaction
2533  * \shared              shared or exclusive
2534  *
2535  * \retval 0            lock is granted
2536  * \retval -NOMEM       no memory to allocate lock
2537  */
2538 int osd_trunc_lock(struct osd_object *obj, struct osd_thandle *oh, bool shared)
2539 {
2540         struct osd_access_lock *al, *tmp;
2541
2542         LASSERT(obj);
2543         LASSERT(oh);
2544
2545         list_for_each_entry(tmp, &oh->ot_trunc_locks, tl_list) {
2546                 if (tmp->tl_obj != obj)
2547                         continue;
2548                 LASSERT(tmp->tl_shared == shared);
2549                 /* found same lock */
2550                 return 0;
2551         }
2552
2553         OBD_ALLOC_PTR(al);
2554         if (unlikely(al == NULL))
2555                 return -ENOMEM;
2556         al->tl_obj = obj;
2557         al->tl_truncate = false;
2558         if (shared)
2559                 down_read(&obj->oo_ext_idx_sem);
2560         else
2561                 down_write(&obj->oo_ext_idx_sem);
2562         al->tl_shared = shared;
2563         lu_object_get(&obj->oo_dt.do_lu);
2564
2565         list_add(&al->tl_list, &oh->ot_trunc_locks);
2566
2567         return 0;
2568 }
2569
2570 void osd_trunc_unlock_all(const struct lu_env *env, struct list_head *list)
2571 {
2572         struct osd_access_lock *al, *tmp;
2573
2574         list_for_each_entry_safe(al, tmp, list, tl_list) {
2575                 if (al->tl_shared)
2576                         up_read(&al->tl_obj->oo_ext_idx_sem);
2577                 else
2578                         up_write(&al->tl_obj->oo_ext_idx_sem);
2579                 osd_object_put(env, al->tl_obj);
2580                 list_del(&al->tl_list);
2581                 OBD_FREE_PTR(al);
2582         }
2583 }
2584
2585 void osd_execute_truncate(struct osd_object *obj)
2586 {
2587         struct osd_device *d = osd_obj2dev(obj);
2588         struct inode *inode = obj->oo_inode;
2589         __u64 size;
2590
2591         /* simulate crash before (in the middle) of delayed truncate */
2592         if (OBD_FAIL_CHECK(OBD_FAIL_OSD_FAIL_AT_TRUNCATE)) {
2593                 struct ldiskfs_inode_info *ei = LDISKFS_I(inode);
2594                 struct ldiskfs_sb_info *sbi = LDISKFS_SB(inode->i_sb);
2595
2596                 mutex_lock(&sbi->s_orphan_lock);
2597                 list_del_init(&ei->i_orphan);
2598                 mutex_unlock(&sbi->s_orphan_lock);
2599                 return;
2600         }
2601
2602         size = i_size_read(inode);
2603         inode_lock(inode);
2604         /* if object holds encrypted content, we need to make sure we truncate
2605          * on an encryption unit boundary, or block content will get corrupted
2606          */
2607         if (obj->oo_lma_flags & LUSTRE_ENCRYPT_FL &&
2608             size & ~LUSTRE_ENCRYPTION_MASK)
2609                 inode->i_size = (size & LUSTRE_ENCRYPTION_MASK) +
2610                         LUSTRE_ENCRYPTION_UNIT_SIZE;
2611         ldiskfs_truncate(inode);
2612         inode_unlock(inode);
2613         if (inode->i_size != size) {
2614                 spin_lock(&inode->i_lock);
2615                 i_size_write(inode, size);
2616                 LDISKFS_I(inode)->i_disksize = size;
2617                 spin_unlock(&inode->i_lock);
2618                 osd_dirty_inode(inode, I_DIRTY_DATASYNC);
2619         }
2620
2621         /*
2622          * For a partial-page truncate, flush the page to disk immediately to
2623          * avoid data corruption during direct disk write.  b=17397
2624          */
2625         if ((size & ~PAGE_MASK) == 0)
2626                 return;
2627         if (osd_use_page_cache(d)) {
2628                 filemap_fdatawrite_range(inode->i_mapping, size, size + 1);
2629         } else {
2630                 /* Notice we use "wait" version to ensure I/O is complete */
2631                 filemap_write_and_wait_range(inode->i_mapping, size, size + 1);
2632                 invalidate_mapping_pages(inode->i_mapping, size >> PAGE_SHIFT,
2633                                          size >> PAGE_SHIFT);
2634         }
2635 }
2636
2637 void osd_process_truncates(struct list_head *list)
2638 {
2639         struct osd_access_lock *al;
2640
2641         LASSERT(journal_current_handle() == NULL);
2642
2643         list_for_each_entry(al, list, tl_list) {
2644                 if (al->tl_shared)
2645                         continue;
2646                 if (!al->tl_truncate)
2647                         continue;
2648                 osd_execute_truncate(al->tl_obj);
2649         }
2650 }