Whamcloud - gitweb
503249e0d77371a06aae0958690c1c8b7c62712f
[fs/lustre-release.git] / lustre / osd-zfs / osd_internal.h
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, 2016, 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-zfs/osd_internal.h
33  * Shared definitions and declarations for zfs/dmu osd
34  *
35  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
36  * Author: Mike Pershin <tappro@whamcloud.com>
37  * Author: Johann Lombardi <johann@whamcloud.com>
38  */
39
40 #ifndef _OSD_INTERNAL_H
41 #define _OSD_INTERNAL_H
42
43 #include <dt_object.h>
44 #include <md_object.h>
45 #include <lustre_quota.h>
46 #ifdef SHRINK_STOP
47 #undef SHRINK_STOP
48 #endif
49 #include <sys/arc.h>
50 #include <sys/nvpair.h>
51 #include <sys/zfs_znode.h>
52 #include <sys/zap.h>
53 #include <sys/dbuf.h>
54 #include <sys/dmu_objset.h>
55
56 /**
57  * By design including kmem.h overrides the Linux slab interfaces to provide
58  * the Illumos kmem cache interfaces.  To override this and gain access to
59  * the Linux interfaces these preprocessor macros must be undefined.
60  */
61 #ifdef kmem_cache_destroy
62 #undef kmem_cache_destroy
63 #endif
64
65 #ifdef kmem_cache_create
66 #undef kmem_cache_create
67 #endif
68
69 #ifdef kmem_cache_alloc
70 #undef kmem_cache_alloc
71 #endif
72
73 #ifdef kmem_cache_free
74 #undef kmem_cache_free
75 #endif
76
77 #define ZFS_VERSION_CODE        \
78         OBD_OCD_VERSION(ZFS_MAJOR, ZFS_MINOR, ZFS_PATCH, ZFS_FIX)
79
80 #define LUSTRE_ROOT_FID_SEQ     0
81 #define DMU_OSD_SVNAME          "svname"
82 #define DMU_OSD_OI_NAME_BASE    "oi"
83
84 #define OSD_GFP_IO              (GFP_NOFS | __GFP_HIGHMEM)
85
86 /* Statfs space reservation for grant, fragmentation, and unlink space. */
87 #define OSD_STATFS_RESERVED_SIZE        (16ULL << 20) /* reserve 16MB minimum */
88 #define OSD_STATFS_RESERVED_SHIFT       (7)     /* reserve 0.78% of all space */
89
90 /* Statfs {minimum, safe estimate, and maximum} dnodes per block */
91 #define OSD_DNODE_MIN_BLKSHIFT  (DNODES_PER_BLOCK_SHIFT)
92 #define OSD_DNODE_EST_BLKSHIFT  (12)     /* est 4KB/dnode */
93 #define OSD_DNODE_EST_COUNT     4096
94
95 #define OSD_GRANT_FOR_LOCAL_OIDS (2ULL << 20) /* 2MB for last_rcvd, ... */
96
97 /**
98  * Iterator's in-memory data structure for quota file.
99  */
100 struct osd_it_quota {
101         struct osd_object       *oiq_obj;
102         /* DMU accounting object id */
103         uint64_t                 oiq_oid;
104         /* ZAP cursor */
105         zap_cursor_t            *oiq_zc;
106         /** identifier for current quota record */
107         __u64                    oiq_id;
108         unsigned                 oiq_reset:1; /* 1 -- no need to advance */
109 };
110
111 /**
112  * Iterator's in-memory data structure for ZAPs
113  *
114  * ZFS does not store . and .. on a disk, instead they are
115  * generated up on request
116  * to follow this format we do the same
117  */
118 struct osd_zap_it {
119         zap_cursor_t            *ozi_zc;
120         struct osd_object       *ozi_obj;
121         unsigned                 ozi_reset:1;   /* 1 -- no need to advance */
122         /* ozi_pos - position of the cursor:
123          * 0 - before any record
124          * 1 - "."
125          * 2 - ".."
126          * 3 - real records */
127         unsigned                 ozi_pos:3;
128         union {
129                 char             ozi_name[MAXNAMELEN]; /* file name for dir */
130                 __u64            ozi_key; /* binary key for index files */
131         };
132 };
133 #define DT_IT2DT(it) (&((struct osd_zap_it *)it)->ozi_obj->oo_dt)
134
135 /*
136  * regular ZFS direntry
137  */
138 struct zpl_direntry {
139         uint64_t        zde_dnode:48,
140                         zde_pad:12,
141                         zde_type:4;
142 } __attribute__((packed));
143
144 /*
145  * lustre direntry adds a fid to regular ZFS direntry
146  */
147 struct luz_direntry {
148         struct zpl_direntry     lzd_reg;
149         struct lu_fid           lzd_fid;
150 } __attribute__((packed));
151
152
153 /* cached SA attributes */
154 struct osa_attr {
155         uint64_t        mode;
156         uint64_t        gid;
157         uint64_t        uid;
158         uint64_t        nlink;
159         uint64_t        rdev;
160         uint64_t        flags;
161         uint64_t        size;
162         uint64_t        atime[2];
163         uint64_t        mtime[2];
164         uint64_t        ctime[2];
165 };
166
167
168 #define OSD_INS_CACHE_SIZE      8
169
170 /* OI cache entry */
171 struct osd_idmap_cache {
172         struct osd_device       *oic_dev;
173         struct lu_fid           oic_fid;
174         /** max 2^48 dnodes per dataset, avoid spilling into another word */
175         uint64_t                oic_dnode:DN_MAX_OBJECT_SHIFT,
176                                 oic_remote:1;      /* FID isn't local */
177 };
178
179 /* max.number of regular attrubites the callers may ask for */
180 #define OSD_MAX_IN_BULK         13
181
182 struct osd_thread_info {
183         const struct lu_env     *oti_env;
184
185         struct lu_fid            oti_fid;
186         /*
187          * XXX temporary: for ->i_op calls.
188          */
189         struct timespec          oti_time;
190
191         struct ost_id            oti_ostid;
192
193         char                     oti_buf[64];
194
195         char                     oti_str[64];
196         union {
197                 char             oti_key[MAXNAMELEN + 1];
198                 __u64            oti_key64[(MAXNAMELEN + 1)/sizeof(__u64)];
199                 sa_bulk_attr_t   oti_attr_bulk[OSD_MAX_IN_BULK];
200         };
201         struct lustre_mdt_attrs oti_mdt_attrs;
202
203         struct lu_attr           oti_la;
204         struct osa_attr          oti_osa;
205         zap_attribute_t          oti_za;
206         dmu_object_info_t        oti_doi;
207         struct luz_direntry      oti_zde;
208
209         struct lquota_id_info    oti_qi;
210         struct lu_seq_range      oti_seq_range;
211
212         /* dedicated OI cache for insert (which needs inum) */
213         struct osd_idmap_cache *oti_ins_cache;
214         int                    oti_ins_cache_size;
215         int                    oti_ins_cache_used;
216         struct lu_buf          oti_xattr_lbuf;
217 };
218
219 extern struct lu_context_key osd_key;
220
221 static inline struct osd_thread_info *osd_oti_get(const struct lu_env *env)
222 {
223         return lu_context_key_get(&env->le_ctx, &osd_key);
224 }
225
226 struct osd_thandle {
227         struct thandle           ot_super;
228         struct list_head         ot_dcb_list;
229         struct list_head         ot_stop_dcb_list;
230         struct list_head         ot_unlinked_list;
231         struct list_head         ot_sa_list;
232         dmu_tx_t                *ot_tx;
233         struct lquota_trans      ot_quota_trans;
234         __u32                    ot_write_commit:1,
235                                  ot_assigned:1;
236 };
237
238 #define OSD_OI_NAME_SIZE        16
239
240 /*
241  * Object Index (OI) instance.
242  */
243 struct osd_oi {
244         char                    oi_name[OSD_OI_NAME_SIZE]; /* unused */
245         uint64_t                oi_zapid;
246         dnode_t *oi_dn;
247 };
248
249 struct osd_seq {
250         uint64_t         *os_compat_dirs;
251         int              os_subdir_count; /* subdir count for each seq */
252         u64              os_seq;          /* seq number */
253         struct list_head os_seq_list;     /* list to seq_list */
254 };
255
256 struct osd_seq_list {
257         rwlock_t         osl_seq_list_lock;     /* lock for seq_list */
258         struct list_head osl_seq_list;          /* list head for seq */
259         struct semaphore osl_seq_init_sem;
260 };
261
262 #define OSD_OST_MAP_SIZE        32
263
264 /*
265  * osd device.
266  */
267 struct osd_device {
268         /* super-class */
269         struct dt_device         od_dt_dev;
270         /* information about underlying file system */
271         struct objset           *od_os;
272         uint64_t                 od_rootid;  /* id of root znode */
273         dnode_t *od_unlinked; /* dnode of unlinked zapobj */
274         /* SA attr mapping->id,
275          * name is the same as in ZFS to use defines SA_ZPL_...*/
276         sa_attr_type_t           *z_attr_table;
277
278         struct proc_dir_entry   *od_proc_entry;
279         struct lprocfs_stats    *od_stats;
280
281         uint64_t                 od_max_blksz;
282         uint64_t                 od_root;
283         uint64_t                 od_O_id;
284         struct osd_oi           **od_oi_table;
285         unsigned int             od_oi_count;
286         struct osd_seq_list     od_seq_list;
287
288         unsigned int             od_dev_set_rdonly:1, /**< osd_ro() called */
289                                  od_prop_rdonly:1,  /**< ZFS property readonly */
290                                  od_xattr_in_sa:1,
291                                  od_is_ost:1,
292                                  od_posix_acl:1;
293         unsigned int             od_dnsize;
294
295         char                     od_mntdev[128];
296         char                     od_svname[128];
297
298         int                      od_connects;
299         struct lu_site           od_site;
300
301         dnode_t *od_groupused_dn;
302         dnode_t *od_userused_dn;
303
304         /* quota slave instance */
305         struct qsd_instance     *od_quota_slave;
306
307         struct brw_stats        od_brw_stats;
308         atomic_t                od_r_in_flight;
309         atomic_t                od_w_in_flight;
310
311         /* used to debug zerocopy logic: the fields track all
312          * allocated, loaned and referenced buffers in use.
313          * to be removed once the change is tested well. */
314         atomic_t                 od_zerocopy_alloc;
315         atomic_t                 od_zerocopy_loan;
316         atomic_t                 od_zerocopy_pin;
317
318         arc_prune_t             *arc_prune_cb;
319
320         /* osd seq instance */
321         struct lu_client_seq    *od_cl_seq;
322 };
323
324 enum osd_destroy_type {
325         OSD_DESTROY_NONE = 0,
326         OSD_DESTROY_SYNC = 1,
327         OSD_DESTROY_ASYNC = 2,
328 };
329
330 struct osd_object {
331         struct dt_object         oo_dt;
332         /*
333          * Inode for file system object represented by this osd_object. This
334          * inode is pinned for the whole duration of lu_object life.
335          *
336          * Not modified concurrently (either setup early during object
337          * creation, or assigned by osd_create() under write lock).
338          */
339         dnode_t *oo_dn;
340         sa_handle_t             *oo_sa_hdl;
341         nvlist_t                *oo_sa_xattr;
342         struct list_head         oo_sa_linkage;
343
344         /* used to implement osd_object_*_{lock|unlock} */
345         struct rw_semaphore      oo_sem;
346
347         /* to serialize some updates: destroy vs. others,
348          * xattr_set, object block size change etc */
349         struct rw_semaphore      oo_guard;
350
351         /* protected by oo_guard */
352         struct list_head         oo_unlinked_linkage;
353
354         /* cached attributes */
355         rwlock_t                 oo_attr_lock;
356         struct lu_attr           oo_attr;
357
358         /* external dnode holding large EAs, protected by oo_guard */
359         uint64_t                 oo_xattr;
360         enum osd_destroy_type    oo_destroy;
361
362         __u32                    oo_destroyed:1,
363                                  oo_late_xattr:1,
364                                  oo_late_attr_set:1;
365
366         /* the i_flags in LMA */
367         __u32                    oo_lma_flags;
368         union {
369                 int             oo_ea_in_bonus; /* EA bytes we expect */
370                 struct {
371                         /* record size for index file */
372                         unsigned char            oo_keysize;
373                         unsigned char            oo_recsize;
374                         unsigned char            oo_recusize;   /* unit size */
375                 };
376                 uint64_t        oo_parent; /* used only at object creation */
377         };
378 };
379
380 int osd_statfs(const struct lu_env *, struct dt_device *, struct obd_statfs *);
381 extern const struct dt_index_operations osd_acct_index_ops;
382 extern struct lu_device_operations  osd_lu_ops;
383 extern struct dt_index_operations osd_dir_ops;
384 int osd_declare_quota(const struct lu_env *env, struct osd_device *osd,
385                       qid_t uid, qid_t gid, long long space,
386                       struct osd_thandle *oh, bool is_blk, int *flags,
387                       bool force);
388 uint64_t osd_objs_count_estimate(uint64_t refdbytes, uint64_t usedobjs,
389                                  uint64_t nrblocks, uint64_t est_maxblockshift);
390 int osd_unlinked_object_free(const struct lu_env *env, struct osd_device *osd,
391                          uint64_t oid);
392
393 /*
394  * Helpers.
395  */
396 static inline int lu_device_is_osd(const struct lu_device *d)
397 {
398         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osd_lu_ops);
399 }
400
401 static inline struct osd_object *osd_obj(const struct lu_object *o)
402 {
403         LASSERT(lu_device_is_osd(o->lo_dev));
404         return container_of0(o, struct osd_object, oo_dt.do_lu);
405 }
406
407 static inline struct osd_device *osd_dt_dev(const struct dt_device *d)
408 {
409         LASSERT(lu_device_is_osd(&d->dd_lu_dev));
410         return container_of0(d, struct osd_device, od_dt_dev);
411 }
412
413 static inline struct osd_device *osd_dev(const struct lu_device *d)
414 {
415         LASSERT(lu_device_is_osd(d));
416         return osd_dt_dev(container_of0(d, struct dt_device, dd_lu_dev));
417 }
418
419 static inline struct osd_object *osd_dt_obj(const struct dt_object *d)
420 {
421         return osd_obj(&d->do_lu);
422 }
423
424 static inline struct osd_device *osd_obj2dev(const struct osd_object *o)
425 {
426         return osd_dev(o->oo_dt.do_lu.lo_dev);
427 }
428
429 static inline struct lu_device *osd2lu_dev(struct osd_device *osd)
430 {
431         return &osd->od_dt_dev.dd_lu_dev;
432 }
433
434 static inline struct objset * osd_dtobj2objset(struct dt_object *o)
435 {
436         return osd_dev(o->do_lu.lo_dev)->od_os;
437 }
438
439 static inline int osd_invariant(const struct osd_object *obj)
440 {
441         return 1;
442 }
443
444 /**
445  * Put the osd object once done with it.
446  *
447  * \param obj osd object that needs to be put
448  */
449 static inline void osd_object_put(const struct lu_env *env,
450                                   struct osd_object *obj)
451 {
452         dt_object_put(env, &obj->oo_dt);
453 }
454
455 static inline int osd_object_invariant(const struct lu_object *l)
456 {
457         return osd_invariant(osd_obj(l));
458 }
459
460 static inline struct seq_server_site *osd_seq_site(struct osd_device *osd)
461 {
462         return osd->od_dt_dev.dd_lu_dev.ld_site->ld_seq_site;
463 }
464
465 static inline char *osd_name(struct osd_device *osd)
466 {
467         return osd->od_dt_dev.dd_lu_dev.ld_obd->obd_name;
468 }
469
470 #ifdef CONFIG_PROC_FS
471 enum {
472         LPROC_OSD_READ_BYTES = 0,
473         LPROC_OSD_WRITE_BYTES = 1,
474         LPROC_OSD_GET_PAGE = 2,
475         LPROC_OSD_NO_PAGE = 3,
476         LPROC_OSD_CACHE_ACCESS = 4,
477         LPROC_OSD_CACHE_HIT = 5,
478         LPROC_OSD_CACHE_MISS = 6,
479         LPROC_OSD_COPY_IO = 7,
480         LPROC_OSD_ZEROCOPY_IO = 8,
481         LPROC_OSD_TAIL_IO = 9,
482         LPROC_OSD_LAST,
483 };
484
485 extern struct kmem_cache *osd_zapit_cachep;
486 /* osd_lproc.c */
487 extern struct lprocfs_vars lprocfs_osd_obd_vars[];
488
489 int osd_procfs_init(struct osd_device *osd, const char *name);
490 int osd_procfs_fini(struct osd_device *osd);
491
492 /* osd_object.c */
493 extern char *osd_obj_tag;
494 int __osd_obj2dnode(objset_t *os, uint64_t oid, dnode_t **dnp);
495 void osd_object_sa_dirty_rele(const struct lu_env *env, struct osd_thandle *oh);
496 void osd_object_sa_dirty_add(struct osd_object *obj, struct osd_thandle *oh);
497 int __osd_obj2dbuf(const struct lu_env *env, objset_t *os,
498                    uint64_t oid, dmu_buf_t **dbp);
499 struct lu_object *osd_object_alloc(const struct lu_env *env,
500                                    const struct lu_object_header *hdr,
501                                    struct lu_device *d);
502 int osd_object_sa_update(struct osd_object *obj, sa_attr_type_t type,
503                          void *buf, uint32_t buflen, struct osd_thandle *oh);
504 int __osd_zap_create(const struct lu_env *env, struct osd_device *osd,
505                      dnode_t **zap_dnp, dmu_tx_t *tx, struct lu_attr *la,
506                      unsigned dnsize, zap_flags_t flags);
507 int __osd_object_create(const struct lu_env *env, struct osd_object *obj,
508                         dnode_t **dnp, dmu_tx_t *tx, struct lu_attr *la);
509 int __osd_attr_init(const struct lu_env *env, struct osd_device *osd,
510                     sa_handle_t *sa_hdl, dmu_tx_t *tx,
511                     struct lu_attr *la, uint64_t parent, nvlist_t *);
512
513 /* osd_oi.c */
514 int osd_oi_init(const struct lu_env *env, struct osd_device *o);
515 void osd_oi_fini(const struct lu_env *env, struct osd_device *o);
516 int osd_fid_lookup(const struct lu_env *env,
517                    struct osd_device *, const struct lu_fid *, uint64_t *);
518 uint64_t osd_get_name_n_idx(const struct lu_env *env, struct osd_device *osd,
519                             const struct lu_fid *fid, char *buf, int bufsize,
520                             dnode_t **zdn);
521 int osd_options_init(void);
522 int osd_ost_seq_exists(const struct lu_env *env, struct osd_device *osd,
523                        __u64 seq);
524 int osd_idc_find_and_init(const struct lu_env *env, struct osd_device *osd,
525                           struct osd_object *obj);
526 struct osd_idmap_cache *osd_idc_find_or_init(const struct lu_env *env,
527                                              struct osd_device *osd,
528                                              const struct lu_fid *fid);
529 struct osd_idmap_cache *osd_idc_find(const struct lu_env *env,
530                                      struct osd_device *osd,
531                                      const struct lu_fid *fid);
532
533 /* osd_index.c */
534 int osd_index_try(const struct lu_env *env, struct dt_object *dt,
535                   const struct dt_index_features *feat);
536 int osd_fld_lookup(const struct lu_env *env, struct osd_device *osd,
537                    u64 seq, struct lu_seq_range *range);
538 void osd_zap_cursor_init_serialized(zap_cursor_t *zc, struct objset *os,
539                                     uint64_t id, uint64_t dirhash);
540 int osd_zap_cursor_init(zap_cursor_t **zc, struct objset *os,
541                         uint64_t id, uint64_t dirhash);
542 void osd_zap_cursor_fini(zap_cursor_t *zc);
543 uint64_t osd_zap_cursor_serialize(zap_cursor_t *zc);
544 int osd_remote_fid(const struct lu_env *env, struct osd_device *osd,
545                    const struct lu_fid *fid);
546
547 /* osd_xattr.c */
548 int __osd_sa_xattr_schedule_update(const struct lu_env *env,
549                                    struct osd_object *obj,
550                                    struct osd_thandle *oh);
551 int __osd_sa_attr_init(const struct lu_env *env, struct osd_object *obj,
552                        struct osd_thandle *oh);
553 int __osd_sa_xattr_update(const struct lu_env *env, struct osd_object *obj,
554                           struct osd_thandle *oh);
555 int __osd_xattr_load(struct osd_device *osd, sa_handle_t *hdl,
556                      nvlist_t **sa);
557 int __osd_xattr_get_large(const struct lu_env *env, struct osd_device *osd,
558                           uint64_t xattr, struct lu_buf *buf,
559                           const char *name, int *sizep);
560 int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
561                   struct lu_buf *buf, const char *name);
562 int osd_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
563                           const struct lu_buf *buf, const char *name,
564                           int fl, struct thandle *handle);
565 int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
566                   const struct lu_buf *buf, const char *name, int fl,
567                   struct thandle *handle);
568 int osd_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
569                           const char *name, struct thandle *handle);
570 int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
571                   const char *name, struct thandle *handle);
572 void osd_declare_xattrs_destroy(const struct lu_env *env,
573                                 struct osd_object *obj,
574                                 struct osd_thandle *oh);
575 int osd_xattrs_destroy(const struct lu_env *env,
576                        struct osd_object *obj, struct osd_thandle *oh);
577 int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
578                    const struct lu_buf *lb);
579 void __osd_xattr_declare_set(const struct lu_env *env, struct osd_object *obj,
580                         int vallen, const char *name, struct osd_thandle *oh);
581 int __osd_sa_xattr_set(const struct lu_env *env, struct osd_object *obj,
582                        const struct lu_buf *buf, const char *name, int fl,
583                        struct osd_thandle *oh);;
584 int __osd_xattr_set(const struct lu_env *env, struct osd_object *obj,
585                     const struct lu_buf *buf, const char *name, int fl,
586                     struct osd_thandle *oh);
587 int __osd_sa_xattr_update(const struct lu_env *env, struct osd_object *obj,
588                           struct osd_thandle *oh);
589 static inline int
590 osd_xattr_set_internal(const struct lu_env *env, struct osd_object *obj,
591                        const struct lu_buf *buf, const char *name, int fl,
592                        struct osd_thandle *oh)
593 {
594         int rc;
595
596         if (unlikely(!dt_object_exists(&obj->oo_dt) || obj->oo_destroyed))
597                 return -ENOENT;
598
599         LASSERT(obj->oo_dn);
600         if (osd_obj2dev(obj)->od_xattr_in_sa) {
601                 rc = __osd_sa_xattr_set(env, obj, buf, name, fl, oh);
602                 if (rc == -EFBIG)
603                         rc = __osd_xattr_set(env, obj, buf, name, fl, oh);
604         } else {
605                 rc = __osd_xattr_set(env, obj, buf, name, fl, oh);
606         }
607
608         return rc;
609 }
610
611 static inline uint64_t attrs_fs2zfs(const uint32_t flags)
612 {
613         return (flags & LUSTRE_APPEND_FL        ? ZFS_APPENDONLY        : 0) |
614                 (flags & LUSTRE_NODUMP_FL       ? ZFS_NODUMP            : 0) |
615                 (flags & LUSTRE_IMMUTABLE_FL    ? ZFS_IMMUTABLE         : 0);
616 }
617
618 static inline uint32_t attrs_zfs2fs(const uint64_t flags)
619 {
620         return (flags & ZFS_APPENDONLY  ? LUSTRE_APPEND_FL      : 0) |
621                 (flags & ZFS_NODUMP     ? LUSTRE_NODUMP_FL      : 0) |
622                 (flags & ZFS_IMMUTABLE  ? LUSTRE_IMMUTABLE_FL   : 0);
623 }
624
625 #endif
626
627 #ifndef HAVE_DSL_POOL_CONFIG
628 static inline void dsl_pool_config_enter(dsl_pool_t *dp, char *name)
629 {
630 }
631
632 static inline void dsl_pool_config_exit(dsl_pool_t *dp, char *name)
633 {
634 }
635 #endif
636
637 #ifdef HAVE_SPA_MAXBLOCKSIZE
638 #define osd_spa_maxblocksize(spa)       spa_maxblocksize(spa)
639 #define osd_spa_maxblockshift(spa)      fls64(spa_maxblocksize(spa) - 1)
640 #else
641 #define osd_spa_maxblocksize(spa)       SPA_MAXBLOCKSIZE
642 #define osd_spa_maxblockshift(spa)      SPA_MAXBLOCKSHIFT
643 #define SPA_OLD_MAXBLOCKSIZE            SPA_MAXBLOCKSIZE
644 #endif
645
646 #ifdef HAVE_SA_SPILL_ALLOC
647 static inline void *
648 osd_zio_buf_alloc(size_t size)
649 {
650         return sa_spill_alloc(KM_SLEEP);
651 }
652
653 static inline void
654 osd_zio_buf_free(void *buf, size_t size)
655 {
656         sa_spill_free(buf);
657 }
658 #else
659 #define osd_zio_buf_alloc(size)         zio_buf_alloc(size)
660 #define osd_zio_buf_free(buf, size)     zio_buf_free(buf, size)
661 #endif
662
663 #ifdef HAVE_DMU_OBJECT_ALLOC_DNSIZE
664 static inline uint64_t
665 osd_dmu_object_alloc(objset_t *os, dmu_object_type_t objtype, int blocksize,
666                      int dnodesize, dmu_tx_t *tx)
667 {
668         if (dnodesize == 0)
669                 dnodesize = MAX(dmu_objset_dnodesize(os), DNODE_MIN_SIZE);
670
671         return dmu_object_alloc_dnsize(os, objtype, blocksize, DMU_OT_SA,
672                                        DN_BONUS_SIZE(dnodesize), dnodesize, tx);
673 }
674
675 static inline uint64_t
676 osd_zap_create_flags(objset_t *os, int normflags, zap_flags_t flags,
677                      dmu_object_type_t ot, int leaf_blockshift,
678                      int indirect_blockshift, int dnodesize, dmu_tx_t *tx)
679 {
680         if (dnodesize == 0)
681                 dnodesize = MAX(dmu_objset_dnodesize(os), DNODE_MIN_SIZE);
682
683         return zap_create_flags_dnsize(os, normflags, flags, ot,
684                                        leaf_blockshift, indirect_blockshift,
685                                        DMU_OT_SA, DN_BONUS_SIZE(dnodesize),
686                                        dnodesize, tx);
687 }
688
689 static inline int
690 osd_obj_bonuslen(struct osd_object *obj)
691 {
692         int bonuslen = DN_BONUS_SIZE(DNODE_MIN_SIZE);
693
694         if (obj->oo_dn != NULL && obj->oo_dn->dn_num_slots != 0) {
695                 bonuslen = DN_SLOTS_TO_BONUSLEN(obj->oo_dn->dn_num_slots);
696         } else {
697                 objset_t *os = osd_dtobj2objset(&obj->oo_dt);
698                 int dnodesize;
699
700                 if (os != NULL) {
701                         dnodesize = dmu_objset_dnodesize(os);
702                         if (dnodesize != 0)
703                                 bonuslen = DN_BONUS_SIZE(dnodesize);
704                 }
705         }
706
707         return bonuslen;
708 }
709 #else
710 static inline uint64_t
711 osd_dmu_object_alloc(objset_t *os, dmu_object_type_t objtype, int blocksize,
712                      int dnodesize, dmu_tx_t *tx)
713 {
714         return dmu_object_alloc(os, objtype, blocksize, DMU_OT_SA,
715                                 DN_MAX_BONUSLEN, tx);
716 }
717
718 static inline uint64_t
719 osd_zap_create_flags(objset_t *os, int normflags, zap_flags_t flags,
720                      dmu_object_type_t ot, int leaf_blockshift,
721                      int indirect_blockshift, int dnodesize, dmu_tx_t *tx)
722 {
723         return zap_create_flags(os, normflags, flags, ot, leaf_blockshift,
724                                 indirect_blockshift, DMU_OT_SA,
725                                 DN_MAX_BONUSLEN, tx);
726 }
727
728 static inline int
729 osd_obj_bonuslen(struct osd_object *obj)
730 {
731         return DN_MAX_BONUSLEN;
732 }
733 #endif /* HAVE_DMU_OBJECT_ALLOC_DNSIZE */
734
735 #ifdef HAVE_DMU_PREFETCH_6ARG
736 #define osd_dmu_prefetch(os, obj, lvl, off, len, pri)   \
737         dmu_prefetch((os), (obj), (lvl), (off), (len), (pri))
738 #else
739 #define osd_dmu_prefetch(os, obj, lvl, off, len, pri)   \
740         dmu_prefetch((os), (obj), (lvl), (off))
741 #endif
742
743 static inline int osd_sa_handle_get(struct osd_object *obj)
744 {
745         struct osd_device *osd = osd_obj2dev(obj);
746         dnode_t *dn = obj->oo_dn;
747         int rc;
748
749         if (obj->oo_sa_hdl)
750                 return 0;
751
752         dbuf_read(dn->dn_bonus, NULL, DB_RF_MUST_SUCCEED | DB_RF_NOPREFETCH);
753         rc = -sa_handle_get_from_db(osd->od_os, &dn->dn_bonus->db, obj,
754                                     SA_HDL_PRIVATE, &obj->oo_sa_hdl);
755         if (rc)
756                 return rc;
757         refcount_add(&dn->dn_bonus->db_holds, osd_obj_tag);
758         return 0;
759 }
760
761 static inline void osd_dnode_rele(dnode_t *dn)
762 {
763         dmu_buf_impl_t *db;
764         LASSERT(dn);
765         LASSERT(dn->dn_bonus);
766         db = dn->dn_bonus;
767
768         DB_DNODE_EXIT(db);
769         dmu_buf_rele(&db->db, osd_obj_tag);
770 }
771
772 #ifdef HAVE_DMU_USEROBJ_ACCOUNTING
773
774 #define OSD_DMU_USEROBJ_PREFIX          DMU_OBJACCT_PREFIX
775 #define OSD_DMU_USEROBJ_PREFIX_LEN      DMU_OBJACCT_PREFIX_LEN
776
777 static inline bool osd_dmu_userobj_accounting_available(struct osd_device *osd)
778 {
779         return dmu_objset_userobjspace_present(osd->od_os);
780 }
781 #else
782
783 #define OSD_DMU_USEROBJ_PREFIX          "obj-"
784 #define OSD_DMU_USEROBJ_PREFIX_LEN      4
785
786 static inline bool osd_dmu_userobj_accounting_available(struct osd_device *osd)
787 {
788         return false;
789 }
790 #endif /* #ifdef HAVE_DMU_USEROBJ_ACCOUNTING */
791
792 static inline int osd_zap_add(struct osd_device *osd, uint64_t zap,
793                               dnode_t *dn, const char *key,
794                               int int_size, int int_num,
795                               const void *val, dmu_tx_t *tx)
796 {
797         LASSERT(zap != 0);
798
799 #ifdef HAVE_ZAP_ADD_BY_DNODE
800         if (dn)
801                 return -zap_add_by_dnode(dn, key, int_size, int_num, val, tx);
802 #endif
803         return -zap_add(osd->od_os, zap, key, int_size, int_num, val, tx);
804 }
805
806 static inline int osd_zap_remove(struct osd_device *osd, uint64_t zap,
807                                  dnode_t *dn, const char *key,
808                                  dmu_tx_t *tx)
809 {
810         LASSERT(zap != 0);
811
812 #ifdef HAVE_ZAP_ADD_BY_DNODE
813         if (dn)
814                 return -zap_remove_by_dnode(dn, key, tx);
815 #endif
816         return -zap_remove(osd->od_os, zap, key, tx);
817 }
818
819
820 static inline int osd_zap_lookup(struct osd_device *osd, uint64_t zap,
821                                  dnode_t *dn, const char *key,
822                                  int int_size, int int_num, void *v)
823 {
824         LASSERT(zap != 0);
825
826 #ifdef HAVE_ZAP_ADD_BY_DNODE
827         if (dn)
828                 return -zap_lookup_by_dnode(dn, key, int_size, int_num, v);
829 #endif
830         return -zap_lookup(osd->od_os, zap, key, int_size, int_num, v);
831 }
832
833 static inline void osd_tx_hold_zap(dmu_tx_t *tx, uint64_t zap,
834                                    dnode_t *dn, int add, const char *name)
835 {
836 #ifdef HAVE_DMU_TX_HOLD_ZAP_BY_DNODE
837         if (dn) {
838                 dmu_tx_hold_zap_by_dnode(tx, dn, add, name);
839                 return;
840         }
841 #endif
842         dmu_tx_hold_zap(tx, zap, add, name);
843 }
844
845 static inline void osd_tx_hold_write(dmu_tx_t *tx, uint64_t oid,
846                                    dnode_t *dn, uint64_t off, int len)
847 {
848 #ifdef HAVE_DMU_TX_HOLD_ZAP_BY_DNODE
849         if (dn) {
850                 dmu_tx_hold_write_by_dnode(tx, dn, off, len);
851                 return;
852         }
853 #endif
854         dmu_tx_hold_write(tx, oid, off, len);
855 }
856
857 static inline void osd_dmu_write(struct osd_device *osd, dnode_t *dn,
858                                  uint64_t offset, uint64_t size,
859                                  const char *buf, dmu_tx_t *tx)
860 {
861         LASSERT(dn);
862 #ifdef HAVE_DMU_WRITE_BY_DNODE
863         dmu_write_by_dnode(dn, offset, size, buf, tx);
864 #else
865         dmu_write(osd->od_os, dn->dn_object, offset, size, buf, tx);
866 #endif
867 }
868
869 static inline int osd_dmu_read(struct osd_device *osd, dnode_t *dn,
870                                uint64_t offset, uint64_t size,
871                                char *buf, int flags)
872 {
873         LASSERT(dn);
874 #ifdef HAVE_DMU_READ_BY_DNODE
875         return -dmu_read_by_dnode(dn, offset, size, buf, flags);
876 #else
877         return -dmu_read(osd->od_os, dn->dn_object, offset, size, buf, flags);
878 #endif
879 }
880
881 #ifdef HAVE_DMU_OBJSET_OWN_6ARG
882 #define osd_dmu_objset_own(name, type, ronly, decrypt, tag, os) \
883         dmu_objset_own((name), (type), (ronly), (decrypt), (tag), (os))
884 #else
885 #define osd_dmu_objset_own(name, type, ronly, decrypt, tag, os) \
886         dmu_objset_own((name), (type), (ronly), (tag), (os))
887 #endif
888
889 #ifdef HAVE_DMU_OBJSET_DISOWN_3ARG
890 #define osd_dmu_objset_disown(os, decrypt, tag) \
891         dmu_objset_disown((os), (decrypt), (tag))
892 #else
893 #define osd_dmu_objset_disown(os, decrypt, tag) \
894         dmu_objset_disown((os), (tag))
895 #endif
896
897 #endif /* _OSD_INTERNAL_H */