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