Whamcloud - gitweb
LU-14739 quota: fix quota with root squash enabled
[fs/lustre-release.git] / lustre / osd-zfs / 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) 2009, 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  *
31  * lustre/osd-zfs/osd_io.c
32  *
33  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
34  * Author: Mike Pershin <tappro@whamcloud.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_OSD
38
39 #include <libcfs/libcfs.h>
40 #include <obd_support.h>
41 #include <lustre_net.h>
42 #include <obd.h>
43 #include <obd_class.h>
44 #include <lustre_disk.h>
45 #include <lustre_fid.h>
46 #include <lustre_quota.h>
47
48 #include "osd_internal.h"
49
50 #include <sys/dnode.h>
51 #include <sys/dbuf.h>
52 #include <sys/spa.h>
53 #include <sys/stat.h>
54 #include <sys/zap.h>
55 #include <sys/spa_impl.h>
56 #include <sys/zfs_znode.h>
57 #include <sys/dmu_tx.h>
58 #include <sys/dmu_objset.h>
59 #include <sys/dsl_prop.h>
60 #include <sys/sa_impl.h>
61 #include <sys/txg.h>
62
63 static char osd_0copy_tag[] = "zerocopy";
64
65 static void dbuf_set_pending_evict(dmu_buf_t *db)
66 {
67         dmu_buf_impl_t *dbi = (dmu_buf_impl_t *)db;
68         dbi->db_pending_evict = TRUE;
69 }
70
71 static void record_start_io(struct osd_device *osd, int rw, int discont_pages)
72 {
73         struct obd_histogram *h = osd->od_brw_stats.hist;
74
75         if (rw == READ) {
76                 atomic_inc(&osd->od_r_in_flight);
77                 lprocfs_oh_tally(&h[BRW_R_RPC_HIST],
78                                  atomic_read(&osd->od_r_in_flight));
79                 lprocfs_oh_tally(&h[BRW_R_DISCONT_PAGES], discont_pages);
80
81         } else {
82                 atomic_inc(&osd->od_w_in_flight);
83                 lprocfs_oh_tally(&h[BRW_W_RPC_HIST],
84                                  atomic_read(&osd->od_w_in_flight));
85                 lprocfs_oh_tally(&h[BRW_W_DISCONT_PAGES], discont_pages);
86
87         }
88 }
89
90 static void record_end_io(struct osd_device *osd, int rw,
91                           unsigned long elapsed, int disksize, int npages)
92 {
93         struct obd_histogram *h = osd->od_brw_stats.hist;
94
95         if (rw == READ)
96                 atomic_dec(&osd->od_r_in_flight);
97         else
98                 atomic_dec(&osd->od_w_in_flight);
99
100         lprocfs_oh_tally_log2(&h[BRW_R_PAGES + rw], npages);
101         if (disksize > 0)
102                 lprocfs_oh_tally_log2(&h[BRW_R_DISK_IOSIZE + rw], disksize);
103         if (elapsed)
104                 lprocfs_oh_tally_log2(&h[BRW_R_IO_TIME + rw], elapsed);
105 }
106
107 static ssize_t __osd_read(const struct lu_env *env, struct dt_object *dt,
108                           struct lu_buf *buf, loff_t *pos, size_t *size)
109 {
110         struct osd_object *obj = osd_dt_obj(dt);
111         uint64_t old_size;
112         int rc;
113
114         LASSERT(dt_object_exists(dt));
115         LASSERT(obj->oo_dn);
116
117         read_lock(&obj->oo_attr_lock);
118         old_size = obj->oo_attr.la_size;
119         read_unlock(&obj->oo_attr_lock);
120
121         if (*pos + *size > old_size) {
122                 if (old_size < *pos)
123                         return 0;
124
125                 *size = old_size - *pos;
126         }
127
128         rc = osd_dmu_read(osd_obj2dev(obj), obj->oo_dn, *pos, *size,
129                           buf->lb_buf, DMU_READ_PREFETCH);
130         if (!rc) {
131                 rc = *size;
132                 *pos += *size;
133         }
134
135         return rc;
136 }
137
138 static ssize_t osd_read(const struct lu_env *env, struct dt_object *dt,
139                         struct lu_buf *buf, loff_t *pos)
140 {
141         struct osd_device *osd = osd_obj2dev(osd_dt_obj(dt));
142         size_t size = buf->lb_len;
143         hrtime_t start = gethrtime();
144         s64 delta_ms;
145         int rc;
146
147         record_start_io(osd, READ, 0);
148         rc = __osd_read(env, dt, buf, pos, &size);
149         delta_ms = gethrtime() - start;
150         do_div(delta_ms, NSEC_PER_MSEC);
151         record_end_io(osd, READ, delta_ms, size, size >> PAGE_SHIFT);
152
153         return rc;
154 }
155
156 static inline ssize_t osd_read_no_record(const struct lu_env *env,
157                                          struct dt_object *dt,
158                                          struct lu_buf *buf, loff_t *pos)
159 {
160         size_t size = buf->lb_len;
161
162         return __osd_read(env, dt, buf, pos, &size);
163 }
164
165 static ssize_t osd_declare_write(const struct lu_env *env, struct dt_object *dt,
166                                 const struct lu_buf *buf, loff_t pos,
167                                 struct thandle *th)
168 {
169         struct osd_object  *obj  = osd_dt_obj(dt);
170         struct osd_device  *osd = osd_obj2dev(obj);
171         struct osd_thandle *oh;
172         uint64_t            oid;
173         ENTRY;
174
175         oh = container_of(th, struct osd_thandle, ot_super);
176
177         /* in some cases declare can race with creation (e.g. llog)
178          * and we need to wait till object is initialized. notice
179          * LOHA_EXISTs is supposed to be the last step in the
180          * initialization */
181
182         /* size change (in dnode) will be declared by dmu_tx_hold_write() */
183         if (dt_object_exists(dt))
184                 oid = obj->oo_dn->dn_object;
185         else
186                 oid = DMU_NEW_OBJECT;
187
188         /* XXX: we still miss for append declaration support in ZFS
189          *      -1 means append which is used by llog mostly, llog
190          *      can grow upto LLOG_MIN_CHUNK_SIZE*8 records */
191         if (pos == -1)
192                 pos = max_t(loff_t, 256 * 8 * LLOG_MIN_CHUNK_SIZE,
193                             obj->oo_attr.la_size + (2 << 20));
194         osd_tx_hold_write(oh->ot_tx, oid, obj->oo_dn, pos, buf->lb_len);
195
196         /* dt_declare_write() is usually called for system objects, such
197          * as llog or last_rcvd files. We needn't enforce quota on those
198          * objects, so always set the lqi_space as 0. */
199         RETURN(osd_declare_quota(env, osd, obj->oo_attr.la_uid,
200                                  obj->oo_attr.la_gid, obj->oo_attr.la_projid,
201                                  0, oh, NULL, OSD_QID_BLK));
202 }
203
204 static ssize_t osd_write(const struct lu_env *env, struct dt_object *dt,
205                         const struct lu_buf *buf, loff_t *pos,
206                          struct thandle *th)
207 {
208         struct osd_object  *obj  = osd_dt_obj(dt);
209         struct osd_device  *osd = osd_obj2dev(obj);
210         struct osd_thandle *oh;
211         uint64_t            offset = *pos;
212         int                 rc;
213
214         ENTRY;
215
216         LASSERT(dt_object_exists(dt));
217         LASSERT(obj->oo_dn);
218
219         LASSERT(th != NULL);
220         oh = container_of(th, struct osd_thandle, ot_super);
221
222         down_read(&obj->oo_guard);
223         if (obj->oo_destroyed)
224                 GOTO(out, rc = -ENOENT);
225
226         osd_dmu_write(osd, obj->oo_dn, offset, (uint64_t)buf->lb_len,
227                       buf->lb_buf, oh->ot_tx);
228         write_lock(&obj->oo_attr_lock);
229         if (obj->oo_attr.la_size < offset + buf->lb_len) {
230                 obj->oo_attr.la_size = offset + buf->lb_len;
231                 write_unlock(&obj->oo_attr_lock);
232                 /* osd_object_sa_update() will be copying directly from oo_attr
233                  * into dbuf.  any update within a single txg will copy the
234                  * most actual */
235                 rc = osd_object_sa_update(obj, SA_ZPL_SIZE(osd),
236                                         &obj->oo_attr.la_size, 8, oh);
237                 if (unlikely(rc))
238                         GOTO(out, rc);
239         } else {
240                 write_unlock(&obj->oo_attr_lock);
241         }
242
243         *pos += buf->lb_len;
244         rc = buf->lb_len;
245
246 out:
247         up_read(&obj->oo_guard);
248         RETURN(rc);
249 }
250
251 /*
252  * XXX: for the moment I don't want to use lnb_flags for osd-internal
253  *      purposes as it's not very well defined ...
254  *      instead I use the lowest bit of the address so that:
255  *        arc buffer:  .lnb_data = abuf          (arc we loan for write)
256  *        dbuf buffer: .lnb_data = dbuf | 1      (dbuf we get for read)
257  *        copy buffer: .lnb_page->mapping = obj (page we allocate for write)
258  *
259  *      bzzz, to blame
260  */
261 static int osd_bufs_put(const struct lu_env *env, struct dt_object *dt,
262                         struct niobuf_local *lnb, int npages)
263 {
264         struct osd_object *obj  = osd_dt_obj(dt);
265         struct osd_device *osd = osd_obj2dev(obj);
266         unsigned long      ptr;
267         int                i;
268
269         LASSERT(dt_object_exists(dt));
270         LASSERT(obj->oo_dn);
271
272         for (i = 0; i < npages; i++) {
273                 if (lnb[i].lnb_page == NULL)
274                         continue;
275                 if (lnb[i].lnb_page->mapping == (void *)obj) {
276                         /* this is anonymous page allocated for copy-write */
277                         lnb[i].lnb_page->mapping = NULL;
278                         __free_page(lnb[i].lnb_page);
279                         atomic_dec(&osd->od_zerocopy_alloc);
280                 } else {
281                         /* see comment in osd_bufs_get_read() */
282                         ptr = (unsigned long)lnb[i].lnb_data;
283                         if (ptr & 1UL) {
284                                 ptr &= ~1UL;
285                                 dmu_buf_rele((void *)ptr, osd_0copy_tag);
286                                 atomic_dec(&osd->od_zerocopy_pin);
287                         } else if (lnb[i].lnb_data != NULL) {
288                                 int j, apages, abufsz;
289                                 abufsz = arc_buf_size(lnb[i].lnb_data);
290                                 apages = abufsz >> PAGE_SHIFT;
291                                 /* these references to pages must be invalidated
292                                  * to prevent access in osd_bufs_put() */
293                                 for (j = 0; j < apages; j++)
294                                         lnb[i + j].lnb_page = NULL;
295                                 dmu_return_arcbuf(lnb[i].lnb_data);
296                                 atomic_dec(&osd->od_zerocopy_loan);
297                         }
298                 }
299                 lnb[i].lnb_page = NULL;
300                 lnb[i].lnb_data = NULL;
301         }
302
303         return 0;
304 }
305
306 static inline struct page *kmem_to_page(void *addr)
307 {
308         LASSERT(!((unsigned long)addr & ~PAGE_MASK));
309         if (is_vmalloc_addr(addr))
310                 return vmalloc_to_page(addr);
311         else
312                 return virt_to_page(addr);
313 }
314
315 /**
316  * Prepare buffers for read.
317  *
318  * The function maps the range described by \a off and \a len to \a lnb array.
319  * dmu_buf_hold_array_by_bonus() finds/creates appropriate ARC buffers, then
320  * we fill \a lnb array with the pages storing ARC buffers. Notice the current
321  * implementationt passes TRUE to dmu_buf_hold_array_by_bonus() to fill ARC
322  * buffers with actual data, I/O is done in the conext of osd_bufs_get_read().
323  * A better implementation would just return the buffers (potentially unfilled)
324  * and subsequent osd_read_prep() would do I/O for many ranges concurrently.
325  *
326  * \param[in] env       environment
327  * \param[in] obj       object
328  * \param[in] off       offset in bytes
329  * \param[in] len       the number of bytes to access
330  * \param[out] lnb      array of local niobufs pointing to the buffers with data
331  *
332  * \retval              0 for success
333  * \retval              negative error number of failure
334  */
335 static int osd_bufs_get_read(const struct lu_env *env, struct osd_object *obj,
336                              loff_t off, ssize_t len, struct niobuf_local *lnb,
337                              int maxlnb)
338 {
339         struct osd_device *osd = osd_obj2dev(obj);
340         int rc, i, numbufs, npages = 0, drop_cache = 0;
341         hrtime_t start = gethrtime();
342         dmu_buf_t **dbp;
343         s64 delta_ms;
344
345         ENTRY;
346         record_start_io(osd, READ, 0);
347
348         if (obj->oo_attr.la_size >= osd->od_readcache_max_filesize)
349                 drop_cache = 1;
350
351         /* grab buffers for read:
352          * OSD API let us to grab buffers first, then initiate IO(s)
353          * so that all required IOs will be done in parallel, but at the
354          * moment DMU doesn't provide us with a method to grab buffers.
355          * If we discover this is a vital for good performance we
356          * can get own replacement for dmu_buf_hold_array_by_bonus().
357          */
358         while (len > 0 &&
359                (obj->oo_dn->dn_datablkshift != 0 ||
360                 off < obj->oo_dn->dn_datablksz)) {
361                 if (obj->oo_dn->dn_datablkshift == 0 &&
362                     off + len > obj->oo_dn->dn_datablksz)
363                         len = obj->oo_dn->dn_datablksz - off;
364
365                 dbp = NULL;
366                 if (unlikely(npages >= maxlnb))
367                         GOTO(err, rc = -EOVERFLOW);
368
369                 rc = -dmu_buf_hold_array_by_bonus(&obj->oo_dn->dn_bonus->db,
370                                                   off, len, TRUE, osd_0copy_tag,
371                                                   &numbufs, &dbp);
372                 if (unlikely(rc))
373                         GOTO(err, rc);
374
375                 for (i = 0; i < numbufs; i++) {
376                         int bufoff, tocpy, thispage;
377                         void *dbf = dbp[i];
378
379                         LASSERT(len > 0);
380
381                         atomic_inc(&osd->od_zerocopy_pin);
382
383                         bufoff = off - dbp[i]->db_offset;
384                         tocpy = min_t(int, dbp[i]->db_size - bufoff, len);
385
386                         /* kind of trick to differentiate dbuf vs. arcbuf */
387                         LASSERT(((unsigned long)dbp[i] & 1) == 0);
388                         dbf = (void *) ((unsigned long)dbp[i] | 1);
389
390                         while (tocpy > 0) {
391                                 if (unlikely(npages >= maxlnb))
392                                         GOTO(err, rc = -EOVERFLOW);
393
394                                 thispage = PAGE_SIZE;
395                                 thispage -= bufoff & (PAGE_SIZE - 1);
396                                 thispage = min(tocpy, thispage);
397
398                                 lnb->lnb_rc = 0;
399                                 lnb->lnb_file_offset = off;
400                                 lnb->lnb_page_offset = bufoff & ~PAGE_MASK;
401                                 lnb->lnb_len = thispage;
402                                 lnb->lnb_page = kmem_to_page(dbp[i]->db_data +
403                                                              bufoff);
404                                 /* mark just a single slot: we need this
405                                  * reference to dbuf to be released once */
406                                 lnb->lnb_data = dbf;
407                                 dbf = NULL;
408
409                                 tocpy -= thispage;
410                                 len -= thispage;
411                                 bufoff += thispage;
412                                 off += thispage;
413
414                                 npages++;
415                                 lnb++;
416                         }
417
418                         if (drop_cache)
419                                 dbuf_set_pending_evict(dbp[i]);
420
421                         /* steal dbuf so dmu_buf_rele_array() can't release
422                          * it */
423                         dbp[i] = NULL;
424                 }
425
426                 dmu_buf_rele_array(dbp, numbufs, osd_0copy_tag);
427         }
428
429         delta_ms = gethrtime() - start;
430         do_div(delta_ms, NSEC_PER_MSEC);
431         record_end_io(osd, READ, delta_ms, npages * PAGE_SIZE, npages);
432
433         RETURN(npages);
434
435 err:
436         LASSERT(rc < 0);
437         if (dbp)
438                 dmu_buf_rele_array(dbp, numbufs, osd_0copy_tag);
439         osd_bufs_put(env, &obj->oo_dt, lnb - npages, npages);
440         RETURN(rc);
441 }
442
443 static inline arc_buf_t *osd_request_arcbuf(dnode_t *dn, size_t bs)
444 {
445         arc_buf_t *abuf;
446
447         abuf = dmu_request_arcbuf(&dn->dn_bonus->db, bs);
448         if (unlikely(!abuf))
449                 return ERR_PTR(-ENOMEM);
450
451 #if ZFS_VERSION_CODE < OBD_OCD_VERSION(0, 7, 0, 0)
452         /**
453          * ZFS prior to 0.7.0 doesn't guarantee PAGE_SIZE alignment for zio
454          * blocks smaller than (PAGE_SIZE << 2). This poses a problem of
455          * setting up page array for RDMA transfer. See LU-9305.
456          */
457         if ((unsigned long)abuf->b_data & ~PAGE_MASK) {
458                 dmu_return_arcbuf(abuf);
459                 return NULL;
460         }
461 #endif
462
463         return abuf;
464 }
465
466 static int osd_bufs_get_write(const struct lu_env *env, struct osd_object *obj,
467                               loff_t off, ssize_t len, struct niobuf_local *lnb,
468                               int maxlnb)
469 {
470         struct osd_device *osd = osd_obj2dev(obj);
471         int                poff, plen, off_in_block, sz_in_block;
472         int                rc, i = 0, npages = 0;
473         dnode_t *dn = obj->oo_dn;
474         arc_buf_t *abuf;
475         uint32_t bs = dn->dn_datablksz;
476         ENTRY;
477
478         /*
479          * currently only full blocks are subject to zerocopy approach:
480          * so that we're sure nobody is trying to update the same block
481          */
482         while (len > 0) {
483                 if (unlikely(npages >= maxlnb))
484                         GOTO(out_err, rc = -EOVERFLOW);
485
486                 off_in_block = off & (bs - 1);
487                 sz_in_block = min_t(int, bs - off_in_block, len);
488
489                 abuf = NULL;
490                 if (sz_in_block == bs) {
491                         /* full block, try to use zerocopy */
492                         abuf = osd_request_arcbuf(dn, bs);
493                         if (unlikely(IS_ERR(abuf)))
494                                 GOTO(out_err, rc = PTR_ERR(abuf));
495                 }
496
497                 if (abuf != NULL) {
498                         atomic_inc(&osd->od_zerocopy_loan);
499
500                         /* go over pages arcbuf contains, put them as
501                          * local niobufs for ptlrpc's bulks */
502                         while (sz_in_block > 0) {
503                                 plen = min_t(int, sz_in_block, PAGE_SIZE);
504
505                                 if (unlikely(npages >= maxlnb))
506                                         GOTO(out_err, rc = -EOVERFLOW);
507
508                                 lnb[i].lnb_file_offset = off;
509                                 lnb[i].lnb_page_offset = 0;
510                                 lnb[i].lnb_len = plen;
511                                 lnb[i].lnb_rc = 0;
512                                 if (sz_in_block == bs)
513                                         lnb[i].lnb_data = abuf;
514                                 else
515                                         lnb[i].lnb_data = NULL;
516
517                                 /* this one is not supposed to fail */
518                                 lnb[i].lnb_page = kmem_to_page(abuf->b_data +
519                                                         off_in_block);
520                                 LASSERT(lnb[i].lnb_page);
521
522                                 lprocfs_counter_add(osd->od_stats,
523                                                 LPROC_OSD_ZEROCOPY_IO, 1);
524
525                                 sz_in_block -= plen;
526                                 len -= plen;
527                                 off += plen;
528                                 off_in_block += plen;
529                                 i++;
530                                 npages++;
531                         }
532                 } else {
533                         if (off_in_block == 0 && len < bs &&
534                                         off + len >= obj->oo_attr.la_size)
535                                 lprocfs_counter_add(osd->od_stats,
536                                                 LPROC_OSD_TAIL_IO, 1);
537
538                         /* can't use zerocopy, allocate temp. buffers */
539                         poff = off & (PAGE_SIZE - 1);
540                         while (sz_in_block > 0) {
541                                 plen = min_t(int, poff + sz_in_block,
542                                              PAGE_SIZE);
543                                 plen -= poff;
544
545                                 if (unlikely(npages >= maxlnb))
546                                         GOTO(out_err, rc = -EOVERFLOW);
547
548                                 lnb[i].lnb_file_offset = off;
549                                 lnb[i].lnb_page_offset = poff;
550                                 poff = 0;
551
552                                 lnb[i].lnb_len = plen;
553                                 lnb[i].lnb_rc = 0;
554                                 lnb[i].lnb_data = NULL;
555
556                                 lnb[i].lnb_page = alloc_page(OSD_GFP_IO);
557                                 if (unlikely(lnb[i].lnb_page == NULL))
558                                         GOTO(out_err, rc = -ENOMEM);
559
560                                 LASSERT(lnb[i].lnb_page->mapping == NULL);
561                                 lnb[i].lnb_page->mapping = (void *)obj;
562
563                                 atomic_inc(&osd->od_zerocopy_alloc);
564                                 lprocfs_counter_add(osd->od_stats,
565                                                 LPROC_OSD_COPY_IO, 1);
566
567                                 sz_in_block -= plen;
568                                 len -= plen;
569                                 off += plen;
570                                 i++;
571                                 npages++;
572                         }
573                 }
574         }
575
576         RETURN(npages);
577
578 out_err:
579         osd_bufs_put(env, &obj->oo_dt, lnb, npages);
580         RETURN(rc);
581 }
582
583 static int osd_bufs_get(const struct lu_env *env, struct dt_object *dt,
584                         loff_t offset, ssize_t len, struct niobuf_local *lnb,
585                         int maxlnb, enum dt_bufs_type rw)
586 {
587         struct osd_object *obj  = osd_dt_obj(dt);
588         int                rc;
589
590         LASSERT(dt_object_exists(dt));
591         LASSERT(obj->oo_dn);
592
593         if (rw & DT_BUFS_TYPE_WRITE)
594                 rc = osd_bufs_get_write(env, obj, offset, len, lnb, maxlnb);
595         else
596                 rc = osd_bufs_get_read(env, obj, offset, len, lnb, maxlnb);
597
598         return rc;
599 }
600
601 static int osd_write_prep(const struct lu_env *env, struct dt_object *dt,
602                         struct niobuf_local *lnb, int npages)
603 {
604         struct osd_object *obj = osd_dt_obj(dt);
605
606         LASSERT(dt_object_exists(dt));
607         LASSERT(obj->oo_dn);
608
609         return 0;
610 }
611
612 static inline uint64_t osd_roundup2blocksz(uint64_t size,
613                                            uint64_t offset,
614                                            uint32_t blksz)
615 {
616         LASSERT(blksz > 0);
617
618         size += offset % blksz;
619
620         if (likely(is_power_of_2(blksz)))
621                 return round_up(size, blksz);
622         else
623                 return DIV_ROUND_UP_ULL(size, blksz) * blksz;
624 }
625
626 static int osd_declare_write_commit(const struct lu_env *env,
627                                     struct dt_object *dt,
628                                     struct niobuf_local *lnb, int npages,
629                                     struct thandle *th)
630 {
631         struct osd_object  *obj = osd_dt_obj(dt);
632         struct osd_device  *osd = osd_obj2dev(obj);
633         struct osd_thandle *oh;
634         uint64_t            offset = 0;
635         uint32_t            size = 0;
636         uint32_t blksz = obj->oo_dn->dn_datablksz;
637         int                 i, rc;
638         bool synced = false;
639         long long           space = 0;
640         struct page        *last_page = NULL;
641         unsigned long       discont_pages = 0;
642         enum osd_quota_local_flags local_flags = 0;
643         enum osd_qid_declare_flags declare_flags = OSD_QID_BLK;
644         ENTRY;
645
646         LASSERT(dt_object_exists(dt));
647         LASSERT(obj->oo_dn);
648
649         LASSERT(lnb);
650         LASSERT(npages > 0);
651
652         oh = container_of(th, struct osd_thandle, ot_super);
653
654         for (i = 0; i < npages; i++) {
655                 if (last_page && lnb[i].lnb_page->index != (last_page->index + 1))
656                         ++discont_pages;
657                 last_page = lnb[i].lnb_page;
658                 if (lnb[i].lnb_rc)
659                         /* ENOSPC, network RPC error, etc.
660                          * We don't want to book space for pages which will be
661                          * skipped in osd_write_commit(). Hence we skip pages
662                          * with lnb_rc != 0 here too */
663                         continue;
664                 /* ignore quota for the whole request if any page is from
665                  * client cache or written by root.
666                  *
667                  * XXX we could handle this on per-lnb basis as done by
668                  * grant. */
669                 if ((lnb[i].lnb_flags & OBD_BRW_NOQUOTA) ||
670                     (lnb[i].lnb_flags & OBD_BRW_SYS_RESOURCE) ||
671                     !(lnb[i].lnb_flags & OBD_BRW_SYNC))
672                         declare_flags |= OSD_QID_FORCE;
673
674                 if (size == 0) {
675                         /* first valid lnb */
676                         offset = lnb[i].lnb_file_offset;
677                         size = lnb[i].lnb_len;
678                         continue;
679                 }
680                 if (offset + size == lnb[i].lnb_file_offset) {
681                         /* this lnb is contiguous to the previous one */
682                         size += lnb[i].lnb_len;
683                         continue;
684                 }
685
686                 osd_tx_hold_write(oh->ot_tx, obj->oo_dn->dn_object,
687                                   obj->oo_dn, offset, size);
688                 /* Estimating space to be consumed by a write is rather
689                  * complicated with ZFS. As a consequence, we don't account for
690                  * indirect blocks and just use as a rough estimate the worse
691                  * case where the old space is being held by a snapshot. Quota
692                  * overrun will be adjusted once the operation is committed, if
693                  * required. */
694                 space += osd_roundup2blocksz(size, offset, blksz);
695
696                 offset = lnb[i].lnb_file_offset;
697                 size = lnb[i].lnb_len;
698         }
699
700         if (size) {
701                 osd_tx_hold_write(oh->ot_tx, obj->oo_dn->dn_object, obj->oo_dn,
702                                   offset, size);
703                 space += osd_roundup2blocksz(size, offset, blksz);
704         }
705
706         /* backend zfs filesystem might be configured to store multiple data
707          * copies */
708         space  *= osd->od_os->os_copies;
709         space   = toqb(space);
710         CDEBUG(D_QUOTA, "writing %d pages, reserving %lldK of quota space\n",
711                npages, space);
712
713         record_start_io(osd, WRITE, discont_pages);
714 retry:
715         /* acquire quota space if needed */
716         rc = osd_declare_quota(env, osd, obj->oo_attr.la_uid,
717                                obj->oo_attr.la_gid, obj->oo_attr.la_projid,
718                                space, oh, &local_flags, declare_flags);
719
720         if (!synced && rc == -EDQUOT &&
721             (local_flags & QUOTA_FL_SYNC) != 0) {
722                 dt_sync(env, th->th_dev);
723                 synced = true;
724                 CDEBUG(D_QUOTA, "retry after sync\n");
725                 local_flags = 0;
726                 goto retry;
727         }
728
729         /* we need only to store the overquota flags in the first lnb for
730          * now, once we support multiple objects BRW, this code needs be
731          * revised. */
732         if (local_flags & QUOTA_FL_OVER_USRQUOTA)
733                 lnb[0].lnb_flags |= OBD_BRW_OVER_USRQUOTA;
734         if (local_flags & QUOTA_FL_OVER_GRPQUOTA)
735                 lnb[0].lnb_flags |= OBD_BRW_OVER_GRPQUOTA;
736 #ifdef ZFS_PROJINHERIT
737         if (local_flags & QUOTA_FL_OVER_PRJQUOTA)
738                 lnb[0].lnb_flags |= OBD_BRW_OVER_PRJQUOTA;
739 #endif
740
741         RETURN(rc);
742 }
743
744 /**
745  * Policy to grow ZFS block size by write pattern.
746  * For sequential write, it grows block size gradually until it reaches the
747  * maximum blocksize the dataset can support. Otherwise, it will pick a
748  * a block size by the writing region of this I/O.
749  */
750 static int osd_grow_blocksize(struct osd_object *obj, struct osd_thandle *oh,
751                               uint64_t start, uint64_t end)
752 {
753         struct osd_device       *osd = osd_obj2dev(obj);
754         dnode_t *dn = obj->oo_dn;
755         uint32_t                 blksz;
756         int                      rc = 0;
757
758         ENTRY;
759
760         if (dn->dn_maxblkid > 0) /* can't change block size */
761                 GOTO(out, rc);
762
763         if (dn->dn_datablksz >= osd->od_max_blksz)
764                 GOTO(out, rc);
765
766         down_write(&obj->oo_guard);
767
768         blksz = dn->dn_datablksz;
769         if (blksz >= osd->od_max_blksz) /* check again after grabbing lock */
770                 GOTO(out_unlock, rc);
771
772         /* now ZFS can support up to 16MB block size, and if the write
773          * is sequential, it just increases the block size gradually */
774         if (start <= blksz) { /* sequential */
775                 blksz = (uint32_t)min_t(uint64_t, osd->od_max_blksz, end);
776         } else { /* sparse, pick a block size by write region */
777                 blksz = (uint32_t)min_t(uint64_t, osd->od_max_blksz,
778                                         end - start);
779         }
780
781         if (!is_power_of_2(blksz))
782                 blksz = size_roundup_power2(blksz);
783
784         if (blksz > dn->dn_datablksz) {
785                 rc = -dmu_object_set_blocksize(osd->od_os, dn->dn_object,
786                                                blksz, 0, oh->ot_tx);
787                 LASSERT(ergo(rc == 0, dn->dn_datablksz >= blksz));
788                 if (rc < 0)
789                         CDEBUG(D_INODE, "object "DFID": change block size"
790                                "%u -> %u error rc = %d\n",
791                                PFID(lu_object_fid(&obj->oo_dt.do_lu)),
792                                dn->dn_datablksz, blksz, rc);
793         }
794         EXIT;
795 out_unlock:
796         up_write(&obj->oo_guard);
797 out:
798         return rc;
799 }
800
801 static void osd_evict_dbufs_after_write(struct osd_object *obj,
802                                         loff_t off, ssize_t len)
803 {
804         dmu_buf_t **dbp;
805         int i, rc, numbufs;
806
807         rc = -dmu_buf_hold_array_by_bonus(&obj->oo_dn->dn_bonus->db, off, len,
808                                           TRUE, osd_0copy_tag, &numbufs, &dbp);
809         if (unlikely(rc))
810                 return;
811
812         for (i = 0; i < numbufs; i++)
813                 dbuf_set_pending_evict(dbp[i]);
814
815         dmu_buf_rele_array(dbp, numbufs, osd_0copy_tag);
816 }
817
818 static int osd_write_commit(const struct lu_env *env, struct dt_object *dt,
819                         struct niobuf_local *lnb, int npages,
820                         struct thandle *th, __u64 user_size)
821 {
822         struct osd_object  *obj  = osd_dt_obj(dt);
823         struct osd_device  *osd = osd_obj2dev(obj);
824         struct osd_thandle *oh;
825         uint64_t            new_size = 0;
826         int                 i, abufsz, rc = 0, drop_cache = 0;
827         unsigned long      iosize = 0;
828         ENTRY;
829
830         LASSERT(dt_object_exists(dt));
831         LASSERT(obj->oo_dn);
832
833         LASSERT(th != NULL);
834         oh = container_of(th, struct osd_thandle, ot_super);
835
836         /* adjust block size. Assume the buffers are sorted. */
837         (void)osd_grow_blocksize(obj, oh, lnb[0].lnb_file_offset,
838                                  lnb[npages - 1].lnb_file_offset +
839                                  lnb[npages - 1].lnb_len);
840
841         if (obj->oo_attr.la_size >= osd->od_readcache_max_filesize ||
842             lnb[npages - 1].lnb_file_offset + lnb[npages - 1].lnb_len >=
843             osd->od_readcache_max_filesize)
844                 drop_cache = 1;
845
846         if (OBD_FAIL_CHECK(OBD_FAIL_OST_MAPBLK_ENOSPC))
847                 RETURN(-ENOSPC);
848
849         /* if la_size is already bigger than specified user_size,
850          * ignore user_size
851          */
852         if (obj->oo_attr.la_size > user_size)
853                 user_size = 0;
854
855         /* LU-8791: take oo_guard to avoid the deadlock that changing block
856          * size and assigning arcbuf take place at the same time.
857          *
858          * Thread 1:
859          * osd_write_commit()
860          *  -> osd_grow_blocksize() with osd_object::oo_guard held
861          *   -> dmu_object_set_blocksize()
862          *    -> dnode_set_blksz(), with dnode_t::dn_struct_rwlock
863          *       write lock held
864          *     -> dbuf_new_size()
865          *      -> dmu_buf_will_dirty()
866          *       -> dbuf_read()
867          *        -> wait for the dbuf state to change
868          * Thread 2:
869          * osd_write_commit()
870          *  -> dmu_assign_arcbuf()
871          *   -> dbuf_assign_arcbuf(), set dbuf state to DB_FILL
872          *    -> dbuf_dirty()
873          *     -> try to hold the read lock of dnode_t::dn_struct_rwlock
874          *
875          * By taking the read lock, it can avoid thread 2 to enter into the
876          * critical section of assigning the arcbuf, while thread 1 is
877          * changing the block size.
878          */
879         down_read(&obj->oo_guard);
880         if (obj->oo_destroyed) {
881                 up_read(&obj->oo_guard);
882                 RETURN(-ENOENT);
883         }
884
885         for (i = 0; i < npages; i++) {
886                 CDEBUG(D_INODE, "write %u bytes at %u\n",
887                         (unsigned) lnb[i].lnb_len,
888                         (unsigned) lnb[i].lnb_file_offset);
889
890                 if (lnb[i].lnb_rc) {
891                         /* ENOSPC, network RPC error, etc.
892                          * Unlike ldiskfs, zfs allocates new blocks on rewrite,
893                          * so we skip this page if lnb_rc is set to -ENOSPC */
894                         CDEBUG(D_INODE, "obj "DFID": skipping lnb[%u]: rc=%d\n",
895                                 PFID(lu_object_fid(&dt->do_lu)), i,
896                                 lnb[i].lnb_rc);
897                         continue;
898                 }
899
900                 if (new_size < lnb[i].lnb_file_offset + lnb[i].lnb_len)
901                         new_size = lnb[i].lnb_file_offset + lnb[i].lnb_len;
902                 if (lnb[i].lnb_page == NULL)
903                         continue;
904
905                 if (lnb[i].lnb_page->mapping == (void *)obj) {
906                         osd_dmu_write(osd, obj->oo_dn, lnb[i].lnb_file_offset,
907                                       lnb[i].lnb_len, kmap(lnb[i].lnb_page) +
908                                       lnb[i].lnb_page_offset, oh->ot_tx);
909                         kunmap(lnb[i].lnb_page);
910                         iosize += lnb[i].lnb_len;
911                         abufsz = lnb[i].lnb_len; /* to drop cache below */
912                 } else if (lnb[i].lnb_data) {
913                         int j, apages;
914                         LASSERT(((unsigned long)lnb[i].lnb_data & 1) == 0);
915                         /* buffer loaned for zerocopy, try to use it.
916                          * notice that dmu_assign_arcbuf() is smart
917                          * enough to recognize changed blocksize
918                          * in this case it fallbacks to dmu_write() */
919                         abufsz = arc_buf_size(lnb[i].lnb_data);
920                         LASSERT(abufsz & PAGE_MASK);
921                         apages = abufsz >> PAGE_SHIFT;
922                         LASSERT(i + apages <= npages);
923                         /* these references to pages must be invalidated
924                          * to prevent access in osd_bufs_put() */
925                         for (j = 0; j < apages; j++)
926                                 lnb[i + j].lnb_page = NULL;
927                         dmu_assign_arcbuf(&obj->oo_dn->dn_bonus->db,
928                                           lnb[i].lnb_file_offset,
929                                           lnb[i].lnb_data, oh->ot_tx);
930                         /* drop the reference, otherwise osd_put_bufs()
931                          * will be releasing it - bad! */
932                         lnb[i].lnb_data = NULL;
933                         atomic_dec(&osd->od_zerocopy_loan);
934                         iosize += abufsz;
935                 } else {
936                         /* we don't want to deal with cache if nothing
937                          * has been send to ZFS at this step */
938                         continue;
939                 }
940
941                 if (!drop_cache)
942                         continue;
943
944                 /* we have to mark dbufs for eviction here because
945                  * dmu_assign_arcbuf() may create a new dbuf for
946                  * loaned abuf */
947                 osd_evict_dbufs_after_write(obj, lnb[i].lnb_file_offset,
948                                             abufsz);
949         }
950
951         if (unlikely(new_size == 0)) {
952                 /* no pages to write, no transno is needed */
953                 th->th_local = 1;
954                 /* it is important to return 0 even when all lnb_rc == -ENOSPC
955                  * since ofd_commitrw_write() retries several times on ENOSPC */
956                 up_read(&obj->oo_guard);
957                 record_end_io(osd, WRITE, 0, 0, 0);
958                 RETURN(0);
959         }
960
961         /* if file has grown, take user_size into account */
962         if (user_size && new_size > user_size)
963                 new_size = user_size;
964         write_lock(&obj->oo_attr_lock);
965         if (obj->oo_attr.la_size < new_size) {
966                 obj->oo_attr.la_size = new_size;
967                 write_unlock(&obj->oo_attr_lock);
968                 /* osd_object_sa_update() will be copying directly from
969                  * oo_attr into dbuf. any update within a single txg will copy
970                  * the most actual */
971                 rc = osd_object_sa_update(obj, SA_ZPL_SIZE(osd),
972                                           &obj->oo_attr.la_size, 8, oh);
973         } else {
974                 write_unlock(&obj->oo_attr_lock);
975         }
976
977         up_read(&obj->oo_guard);
978
979         record_end_io(osd, WRITE, 0, iosize, npages);
980
981         RETURN(rc);
982 }
983
984 static int osd_read_prep(const struct lu_env *env, struct dt_object *dt,
985                         struct niobuf_local *lnb, int npages)
986 {
987         struct osd_object *obj  = osd_dt_obj(dt);
988         int                i;
989         loff_t             eof;
990
991         LASSERT(dt_object_exists(dt));
992         LASSERT(obj->oo_dn);
993
994         read_lock(&obj->oo_attr_lock);
995         eof = obj->oo_attr.la_size;
996         read_unlock(&obj->oo_attr_lock);
997
998         for (i = 0; i < npages; i++) {
999                 if (unlikely(lnb[i].lnb_rc < 0))
1000                         continue;
1001
1002                 lnb[i].lnb_rc = lnb[i].lnb_len;
1003
1004                 if (lnb[i].lnb_file_offset + lnb[i].lnb_len >= eof) {
1005                         /* send complete pages all the time */
1006                         if (eof <= lnb[i].lnb_file_offset)
1007                                 lnb[i].lnb_rc = 0;
1008
1009                         /* all subsequent rc should be 0 */
1010                         while (++i < npages)
1011                                 lnb[i].lnb_rc = 0;
1012                         break;
1013                 }
1014         }
1015
1016         return 0;
1017 }
1018
1019 /*
1020  * Punch/truncate an object
1021  *
1022  *      IN:     db  - dmu_buf of the object to free data in.
1023  *              off - start of section to free.
1024  *              len - length of section to free (DMU_OBJECT_END => to EOF).
1025  *
1026  *      RETURN: 0 if success
1027  *              error code if failure
1028  *
1029  * The transaction passed to this routine must have
1030  * dmu_tx_hold_sa() and if off < size, dmu_tx_hold_free()
1031  * called and then assigned to a transaction group.
1032  */
1033 static int __osd_object_punch(struct osd_object *obj, objset_t *os,
1034                               dmu_tx_t *tx, uint64_t off, uint64_t len)
1035 {
1036         dnode_t *dn = obj->oo_dn;
1037         uint64_t size = obj->oo_attr.la_size;
1038         int rc = 0;
1039
1040         /* Assert that the transaction has been assigned to a
1041            transaction group. */
1042         LASSERT(tx->tx_txg != 0);
1043         /*
1044          * Nothing to do if file already at desired length.
1045          */
1046         if (len == DMU_OBJECT_END && size == off)
1047                 return 0;
1048
1049         /* if object holds encrypted content, we need to make sure we truncate
1050          * on an encryption unit boundary, or subsequent reads will get
1051          * corrupted content
1052          */
1053         if (len != DMU_OBJECT_END)
1054                 len -= LUSTRE_ENCRYPTION_UNIT_SIZE -
1055                         (off & ~LUSTRE_ENCRYPTION_MASK);
1056         if (obj->oo_lma_flags & LUSTRE_ENCRYPT_FL &&
1057             off & ~LUSTRE_ENCRYPTION_MASK)
1058                 off = (off & LUSTRE_ENCRYPTION_MASK) +
1059                         LUSTRE_ENCRYPTION_UNIT_SIZE;
1060
1061
1062         /* XXX: dnode_free_range() can be used to save on dnode lookup */
1063         if (off < size)
1064                 dmu_free_range(os, dn->dn_object, off, len, tx);
1065
1066         return rc;
1067 }
1068
1069 static int osd_punch(const struct lu_env *env, struct dt_object *dt,
1070                         __u64 start, __u64 end, struct thandle *th)
1071 {
1072         struct osd_object  *obj = osd_dt_obj(dt);
1073         struct osd_device  *osd = osd_obj2dev(obj);
1074         struct osd_thandle *oh;
1075         __u64               len;
1076         int                 rc = 0;
1077         ENTRY;
1078
1079         LASSERT(dt_object_exists(dt));
1080         LASSERT(osd_invariant(obj));
1081
1082         LASSERT(th != NULL);
1083         oh = container_of(th, struct osd_thandle, ot_super);
1084
1085         write_lock(&obj->oo_attr_lock);
1086         /* truncate */
1087         if (end == OBD_OBJECT_EOF || end >= obj->oo_attr.la_size)
1088                 len = DMU_OBJECT_END;
1089         else
1090                 len = end - start;
1091         write_unlock(&obj->oo_attr_lock);
1092
1093         down_read(&obj->oo_guard);
1094         if (obj->oo_destroyed)
1095                 GOTO(out, rc = -ENOENT);
1096
1097         rc = __osd_object_punch(obj, osd->od_os, oh->ot_tx, start, len);
1098
1099         /* set new size */
1100         if (len == DMU_OBJECT_END) {
1101                 write_lock(&obj->oo_attr_lock);
1102                 obj->oo_attr.la_size = start;
1103                 write_unlock(&obj->oo_attr_lock);
1104                 rc = osd_object_sa_update(obj, SA_ZPL_SIZE(osd),
1105                                           &obj->oo_attr.la_size, 8, oh);
1106         }
1107 out:
1108         up_read(&obj->oo_guard);
1109         RETURN(rc);
1110 }
1111
1112 static int osd_declare_punch(const struct lu_env *env, struct dt_object *dt,
1113                         __u64 start, __u64 end, struct thandle *handle)
1114 {
1115         struct osd_object  *obj = osd_dt_obj(dt);
1116         struct osd_device  *osd = osd_obj2dev(obj);
1117         struct osd_thandle *oh;
1118         __u64               len;
1119         ENTRY;
1120
1121         oh = container_of(handle, struct osd_thandle, ot_super);
1122
1123         read_lock(&obj->oo_attr_lock);
1124         if (end == OBD_OBJECT_EOF || end >= obj->oo_attr.la_size)
1125                 len = DMU_OBJECT_END;
1126         else
1127                 len = end - start;
1128
1129         /* declare we'll free some blocks ... */
1130         /* if object holds encrypted content, we need to make sure we truncate
1131          * on an encryption unit boundary, or subsequent reads will get
1132          * corrupted content
1133          */
1134         if (obj->oo_lma_flags & LUSTRE_ENCRYPT_FL &&
1135             start & ~LUSTRE_ENCRYPTION_MASK)
1136                 start = (start & LUSTRE_ENCRYPTION_MASK) +
1137                         LUSTRE_ENCRYPTION_UNIT_SIZE;
1138         if (start < obj->oo_attr.la_size) {
1139                 read_unlock(&obj->oo_attr_lock);
1140                 dmu_tx_mark_netfree(oh->ot_tx);
1141                 dmu_tx_hold_free(oh->ot_tx, obj->oo_dn->dn_object, start, len);
1142         } else {
1143                 read_unlock(&obj->oo_attr_lock);
1144         }
1145
1146         RETURN(osd_declare_quota(env, osd, obj->oo_attr.la_uid,
1147                                  obj->oo_attr.la_gid, obj->oo_attr.la_projid,
1148                                  0, oh, NULL, OSD_QID_BLK));
1149 }
1150
1151 static int osd_ladvise(const struct lu_env *env, struct dt_object *dt,
1152                        __u64 start, __u64 end, enum lu_ladvise_type advice)
1153 {
1154         int     rc;
1155         ENTRY;
1156
1157         switch (advice) {
1158         default:
1159                 rc = -ENOTSUPP;
1160                 break;
1161         }
1162
1163         RETURN(rc);
1164 }
1165
1166 static int osd_fallocate(const struct lu_env *env, struct dt_object *dt,
1167                          __u64 start, __u64 end, int mode, struct thandle *th)
1168 {
1169         int rc = -EOPNOTSUPP;
1170         ENTRY;
1171
1172          /*
1173           * space preallocation is not supported for ZFS
1174           * Returns -EOPNOTSUPP for now
1175           */
1176         RETURN(rc);
1177 }
1178
1179 static int osd_declare_fallocate(const struct lu_env *env,
1180                                  struct dt_object *dt, __u64 start, __u64 end,
1181                                  int mode, struct thandle *th)
1182 {
1183         int rc = -EOPNOTSUPP;
1184         ENTRY;
1185
1186          /*
1187           * space preallocation is not supported for ZFS
1188           * Returns -EOPNOTSUPP for now
1189           */
1190         RETURN(rc);
1191 }
1192
1193 static loff_t osd_lseek(const struct lu_env *env, struct dt_object *dt,
1194                         loff_t offset, int whence)
1195 {
1196         struct osd_object *obj = osd_dt_obj(dt);
1197         struct osd_device *osd = osd_obj2dev(obj);
1198         uint64_t size = obj->oo_attr.la_size;
1199         uint64_t result = offset;
1200         int rc;
1201         boolean_t hole = whence == SEEK_HOLE;
1202
1203         ENTRY;
1204
1205         LASSERT(dt_object_exists(dt));
1206         LASSERT(osd_invariant(obj));
1207         LASSERT(offset >= 0);
1208
1209         /* for SEEK_HOLE treat 'offset' beyond the end of file as in real
1210          * hole. LOV to decide after all if that real hole or not.
1211          */
1212         if (offset >= size)
1213                 RETURN(hole ? offset : -ENXIO);
1214
1215         /* Currently ZFS reports no valid DATA offset if object has dirty data
1216          * and we cannot just switch to generic way with reporting DATA on all
1217          * file offsets and HOLE beyond end of file, because we may get HOLE
1218          * reported correctly at some offset inside file then DATA will find
1219          * dirty state and be reported also at that offset by generic approach.
1220          * This is because for HOLE report ZFS doesn't check dirty state but
1221          * does for DATA.
1222          * The only way to get reliable results is to call txg_wait_synced()
1223          * when ZFS reports EBUSY result and repeat lseek call and that is
1224          * controlled via od_sync_on_lseek option.
1225          */
1226         if (!osd->od_sync_on_lseek)
1227                 result = hole ? size : offset;
1228
1229 again:
1230         rc = osd_dmu_offset_next(osd->od_os, obj->oo_dn->dn_object, hole,
1231                                  &result);
1232         /* dirty inode, lseek result is unreliable without sync */
1233         if (rc == EBUSY) {
1234                 txg_wait_synced(dmu_objset_pool(osd->od_os), 0ULL);
1235                 goto again;
1236         }
1237
1238         if (rc == ESRCH)
1239                 RETURN(-ENXIO);
1240
1241         /* ZFS is not exported all needed function, so fall back to the
1242          * generic logic: for HOLE return file size, for DATA return
1243          * the current offset
1244          */
1245         if (rc == EOPNOTSUPP)
1246                 result = hole ? size : offset;
1247         else if (rc)
1248                 return -rc;
1249
1250         /* dmu_offset_next() only works on whole blocks so may return SEEK_HOLE
1251          * result as end of the last block instead of logical EOF which we need
1252          */
1253         if (result > size)
1254                 result = size;
1255
1256         RETURN(result);
1257 }
1258
1259 const struct dt_body_operations osd_body_ops = {
1260         .dbo_read                       = osd_read,
1261         .dbo_declare_write              = osd_declare_write,
1262         .dbo_write                      = osd_write,
1263         .dbo_bufs_get                   = osd_bufs_get,
1264         .dbo_bufs_put                   = osd_bufs_put,
1265         .dbo_write_prep                 = osd_write_prep,
1266         .dbo_declare_write_commit       = osd_declare_write_commit,
1267         .dbo_write_commit               = osd_write_commit,
1268         .dbo_read_prep                  = osd_read_prep,
1269         .dbo_declare_punch              = osd_declare_punch,
1270         .dbo_punch                      = osd_punch,
1271         .dbo_ladvise                    = osd_ladvise,
1272         .dbo_declare_fallocate          = osd_declare_fallocate,
1273         .dbo_fallocate                  = osd_fallocate,
1274         .dbo_lseek                      = osd_lseek,
1275 };
1276
1277 const struct dt_body_operations osd_body_scrub_ops = {
1278         .dbo_read                       = osd_read_no_record,
1279         .dbo_declare_write              = osd_declare_write,
1280         .dbo_write                      = osd_write,
1281 };