Whamcloud - gitweb
LU-9859 libcfs: move misc-device registration closer to related code.
[fs/lustre-release.git] / lustre / mdd / mdd_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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/mdd/mdd_internal.h
33  *
34  * Author: Wang Di <wangdi@clusterfs.com>
35  */
36
37 #ifndef _MDD_INTERNAL_H
38 #define _MDD_INTERNAL_H
39
40 #include <lustre_acl.h>
41 #include <lustre_compat.h>
42 #include <lustre_eacl.h>
43 #include <md_object.h>
44 #include <dt_object.h>
45 #include <lustre_lfsck.h>
46 #include <lustre_fid.h>
47 #include <lprocfs_status.h>
48 #include <lustre_log.h>
49 #include <lustre_linkea.h>
50
51 /* ChangeLog params for automatic purge mechanism */
52 /* max time allowed for a user to stay idle in seconds */
53 #define CHLOG_MAX_IDLE_TIME 2592000 /* = 30 days */
54 /* max gap allowed for a user to stay idle in number of ChangeLog records
55  * this is an evaluation, assuming that chunk-size is LLOG_MIN_CHUNK_SIZE, of
56  * the indexes gap for half full changelogs */
57 #define CHLOG_MAX_IDLE_INDEXES (((LLOG_MIN_CHUNK_SIZE - \
58                                   offsetof(struct llog_log_hdr, \
59                                            llh_bitmap[0]) - \
60                                   sizeof(struct llog_rec_tail)) * 4) * \
61                                 ((LLOG_MIN_CHUNK_SIZE - \
62                                   offsetof(struct llog_log_hdr, \
63                                            llh_bitmap[0]) - \
64                                   sizeof(struct llog_rec_tail)) * 8))
65 /* min time in seconds between two gc thread runs if none already started */
66 #define CHLOG_MIN_GC_INTERVAL 3600
67 /* minimum number of free ChangeLog catalog entries (ie, between cur and
68  * last indexes) before starting garbage collect */
69 #define CHLOG_MIN_FREE_CAT_ENTRIES 2
70
71 /* Changelog flags */
72 /** changelog is recording */
73 #define CLM_ON    0x00001
74 /** internal error prevented changelogs from starting */
75 #define CLM_ERR   0x00002
76 /* Marker flags */
77 /** changelogs turned on */
78 #define CLM_START 0x10000
79 /** changelogs turned off */
80 #define CLM_FINI  0x20000
81 /** some changelog records purged */
82 #define CLM_PURGE 0x40000
83
84 #define LLOG_CHANGELOG_HDR_SZ (sizeof(struct llog_changelog_rec) - \
85                                sizeof(struct changelog_rec))
86 /* mc_gc_task values */
87 /** no GC thread to be started **/
88 #define MDD_CHLG_GC_NONE NULL
89 /** a GC thread need to be started **/
90 #define MDD_CHLG_GC_NEED (struct task_struct *)(-1)
91 /** a GC thread will be started now **/
92 #define MDD_CHLG_GC_START (struct task_struct *)(-2)
93 /** else the started task_struct address when running **/
94
95 struct mdd_changelog {
96         spinlock_t              mc_lock;        /* for index */
97         int                     mc_flags;
98         int                     mc_mask;
99         __u64                   mc_index;
100         ktime_t                 mc_starttime;
101         spinlock_t              mc_user_lock;
102         int                     mc_lastuser;
103         int                     mc_users;      /* registered users number */
104         struct task_struct      *mc_gc_task;
105         time64_t                mc_gc_time;    /* last GC check or run time */
106         unsigned int            mc_deniednext; /* interval for recording denied
107                                                 * accesses
108                                                 */
109 };
110
111 static inline __u64 cl_time(void)
112 {
113         struct timespec64 time;
114
115         ktime_get_real_ts64(&time);
116         return (((__u64)time.tv_sec) << 30) + time.tv_nsec;
117 }
118
119 /** Objects in .lustre dir */
120 struct mdd_dot_lustre_objs {
121         struct mdd_object *mdd_obf;
122         struct mdd_object *mdd_lpf;
123 };
124
125 struct mdd_generic_thread {
126         struct completion       mgt_started;
127         struct completion       mgt_finished;
128         void                   *mgt_data;
129         bool                    mgt_abort;
130         bool                    mgt_init;
131 };
132
133 struct mdd_device {
134         struct md_device                 mdd_md_dev;
135         struct obd_export               *mdd_child_exp;
136         struct dt_device                *mdd_child;
137         struct dt_device                *mdd_bottom;
138         struct lu_fid                    mdd_root_fid; /* /ROOT */
139         struct lu_fid                    mdd_local_root_fid;
140         struct dt_device_param           mdd_dt_conf;
141         struct dt_object                *mdd_orphans; /* PENDING directory */
142         struct mdd_changelog             mdd_cl;
143         unsigned int                     mdd_changelog_gc;
144         time64_t                         mdd_changelog_max_idle_time;
145         unsigned long                    mdd_changelog_max_idle_indexes;
146         time64_t                         mdd_changelog_min_gc_interval;
147         unsigned int                     mdd_changelog_min_free_cat_entries;
148         time64_t                         mdd_atime_diff;
149         struct mdd_object               *mdd_dot_lustre;
150         struct mdd_dot_lustre_objs       mdd_dot_lustre_objs;
151         unsigned int                     mdd_sync_permission;
152         int                              mdd_connects;
153         int                              mdd_append_stripe_count;
154         char                             mdd_append_pool[LOV_MAXPOOLNAME + 1];
155         struct local_oid_storage        *mdd_los;
156         struct mdd_generic_thread        mdd_orphan_cleanup_thread;
157         struct kobject                   mdd_kobj;
158         struct kobj_type                 mdd_ktype;
159         struct completion                mdd_kobj_unregister;
160 };
161
162 enum mod_flags {
163         /* The dir object has been unlinked */
164         DEAD_OBJ   = 1 << 0,
165         ORPHAN_OBJ = 1 << 1,
166         VOLATILE_OBJ = 1 << 4,
167 };
168
169 struct mdd_object {
170         struct md_object        mod_obj;
171         /* open count */
172         u32                     mod_count;
173         u32                     mod_valid;
174         ktime_t                 mod_cltime;
175         unsigned long           mod_flags;
176         struct list_head        mod_users;  /**< unique user opens */
177 };
178
179 struct mdd_thread_info {
180         struct lu_fid             mti_fid;
181         struct lu_fid             mti_fid2; /* used for be & cpu converting */
182         /**
183         * only be used by MDD interfaces, can be passed into local MDD APIs.
184         */
185         struct lu_attr            mti_pattr;
186         struct lu_attr            mti_cattr;
187         struct lu_attr            mti_tpattr;
188         struct lu_attr            mti_tattr;
189         /** used to set c/mtime */
190         struct lu_attr            mti_la_for_fix;
191         /* Only used in mdd_object_start */
192         struct lu_attr            mti_la_for_start;
193         /* mti_ent and mti_key must be conjoint,
194         * then mti_ent::lde_name will be mti_key. */
195         struct lu_dirent          mti_ent;
196         char                      mti_key[NAME_MAX + 16];
197         char                      mti_name[NAME_MAX + 1];
198         struct lu_buf             mti_buf[4];
199         struct lu_buf             mti_big_buf; /* biggish persistent buf */
200         struct lu_buf             mti_link_buf; /* buf for link ea */
201         struct lu_buf             mti_xattr_buf;
202         struct obdo               mti_oa;
203         struct lmv_user_md        mti_lmu;
204         struct dt_allocation_hint mti_hint;
205         struct dt_object_format   mti_dof;
206         struct linkea_data        mti_link_data;
207         struct md_op_spec         mti_spec;
208         struct dt_insert_rec      mti_dt_rec;
209         struct lfsck_req_local    mti_lrl;
210         struct lu_seq_range       mti_range;
211         union lmv_mds_md          mti_lmv;
212 };
213
214 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
215                struct lu_attr *la);
216 int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
217                  struct md_attr *ma);
218 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
219                  const struct md_attr *ma);
220 int mdd_attr_set_internal(const struct lu_env *env,
221                           struct mdd_object *obj,
222                           const struct lu_attr *attr,
223                           struct thandle *handle,
224                           int needacl);
225 int mdd_update_time(const struct lu_env *env, struct mdd_object *obj,
226                     const struct lu_attr *oattr, struct lu_attr *attr,
227                     struct thandle *handle);
228 int mdd_create_object_internal(const struct lu_env *env, struct mdd_object *p,
229                                struct mdd_object *c, struct lu_attr *attr,
230                                struct thandle *handle,
231                                const struct md_op_spec *spec,
232                                struct dt_allocation_hint *hint);
233
234 /* mdd_lock.c */
235 void mdd_write_lock(const struct lu_env *env, struct mdd_object *obj,
236                     enum dt_object_role role);
237 void mdd_read_lock(const struct lu_env *env, struct mdd_object *obj,
238                    enum dt_object_role role);
239 void mdd_write_unlock(const struct lu_env *env, struct mdd_object *obj);
240 void mdd_read_unlock(const struct lu_env *env, struct mdd_object *obj);
241 int mdd_write_locked(const struct lu_env *env, struct mdd_object *obj);
242
243 /* mdd_dir.c */
244 int mdd_may_create(const struct lu_env *env, struct mdd_object *pobj,
245                    const struct lu_attr *pattr, struct mdd_object *cobj,
246                    bool check_perm);
247 int mdd_may_unlink(const struct lu_env *env, struct mdd_object *pobj,
248                    const struct lu_attr *pattr, const struct lu_attr *attr);
249 int mdd_may_delete(const struct lu_env *env, struct mdd_object *tpobj,
250                    const struct lu_attr *tpattr, struct mdd_object *tobj,
251                    const struct lu_attr *tattr, const struct lu_attr *cattr,
252                    int check_perm, int check_empty);
253 int mdd_unlink_sanity_check(const struct lu_env *env, struct mdd_object *pobj,
254                             const struct lu_attr *pattr,
255                             struct mdd_object *cobj,
256                             const struct lu_attr *cattr);
257 int mdd_finish_unlink(const struct lu_env *env, struct mdd_object *obj,
258                       struct md_attr *ma, const struct mdd_object *pobj,
259                       const struct lu_name *lname, struct thandle *th);
260
261 int mdd_is_root(struct mdd_device *mdd, const struct lu_fid *fid);
262 int mdd_lookup(const struct lu_env *env,
263                struct md_object *pobj, const struct lu_name *lname,
264                struct lu_fid* fid, struct md_op_spec *spec);
265 int mdd_links_write(const struct lu_env *env, struct mdd_object *mdd_obj,
266                     struct linkea_data *ldata, struct thandle *handle);
267 struct lu_buf *mdd_links_get(const struct lu_env *env,
268                              struct mdd_object *mdd_obj);
269 int mdd_links_rename(const struct lu_env *env,
270                      struct mdd_object *mdd_obj,
271                      const struct lu_fid *oldpfid,
272                      const struct lu_name *oldlname,
273                      const struct lu_fid *newpfid,
274                      const struct lu_name *newlname,
275                      struct thandle *handle,
276                      struct linkea_data *ldata,
277                      int first, int check);
278 int mdd_dir_layout_shrink(const struct lu_env *env,
279                           struct md_object *md_obj,
280                           const struct lu_buf *lmu_buf);
281
282 struct mdd_thread_info *mdd_env_info(const struct lu_env *env);
283
284 #define MDD_ENV_VAR(env, var) (&mdd_env_info(env)->mti_##var)
285
286 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len);
287 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
288                                        const void *area, ssize_t len);
289
290 int mdd_orphan_cleanup(const struct lu_env *env, struct mdd_device *d);
291 int mdd_orphan_insert(const struct lu_env *env, struct mdd_object *obj,
292                       struct thandle *thandle);
293 int mdd_orphan_delete(const struct lu_env *env, struct mdd_object *obj,
294                       struct thandle *thandle);
295 int mdd_orphan_index_init(const struct lu_env *env, struct mdd_device *mdd);
296 void mdd_orphan_index_fini(const struct lu_env *env, struct mdd_device *mdd);
297 int mdd_orphan_declare_insert(const struct lu_env *env, struct mdd_object *obj,
298                               umode_t mode, struct thandle *thandle);
299 int mdd_orphan_declare_delete(const struct lu_env *env, struct mdd_object *obj,
300                               struct thandle *thandle);
301
302 /* mdd_lproc.c */
303 int mdd_procfs_init(struct mdd_device *mdd, const char *name);
304 void mdd_procfs_fini(struct mdd_device *mdd);
305
306 /* mdd_object.c */
307 extern struct kmem_cache *mdd_object_kmem;
308 extern const struct md_dir_operations    mdd_dir_ops;
309 extern const struct md_object_operations mdd_obj_ops;
310 int mdd_readlink(const struct lu_env *env, struct md_object *obj,
311                  struct lu_buf *buf);
312 extern struct lu_context_key mdd_thread_key;
313 extern const struct lu_device_operations mdd_lu_ops;
314
315 struct mdd_object *mdd_object_find(const struct lu_env *env,
316                                    struct mdd_device *d,
317                                    const struct lu_fid *f);
318 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
319                  const struct lu_rdpg *rdpg);
320 int mdd_declare_changelog_store(const struct lu_env *env,
321                                 struct mdd_device *mdd,
322                                 enum changelog_rec_type type,
323                                 const struct lu_name *tname,
324                                 const struct lu_name *sname,
325                                 struct thandle *handle);
326 void mdd_changelog_rec_ext_jobid(struct changelog_rec *rec, const char *jobid);
327 void mdd_changelog_rec_ext_extra_flags(struct changelog_rec *rec, __u64 eflags);
328 void mdd_changelog_rec_extra_uidgid(struct changelog_rec *rec,
329                                     __u64 uid, __u64 gid);
330 void mdd_changelog_rec_extra_nid(struct changelog_rec *rec,
331                                  lnet_nid_t nid);
332 void mdd_changelog_rec_extra_omode(struct changelog_rec *rec, u32 flags);
333 void mdd_changelog_rec_extra_xattr(struct changelog_rec *rec,
334                                    const char *xattr_name);
335 int mdd_changelog_store(const struct lu_env *env, struct mdd_device *mdd,
336                         struct llog_changelog_rec *rec, struct thandle *th);
337 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
338                              enum changelog_rec_type type,
339                              enum changelog_rec_flags clf_flags,
340                              struct mdd_object *mdd_obj,
341                              struct thandle *handle);
342 int mdd_changelog_ns_store(const struct lu_env *env, struct mdd_device *mdd,
343                            enum changelog_rec_type type,
344                            enum changelog_rec_flags clf_flags,
345                            struct mdd_object *target,
346                            const struct lu_fid *tpfid,
347                            const struct lu_fid *sfid,
348                            const struct lu_fid *spfid,
349                            const struct lu_name *tname,
350                            const struct lu_name *sname,
351                            struct thandle *handle);
352 int mdd_invalidate(const struct lu_env *env, struct md_object *obj);
353 int mdd_declare_create_object_internal(const struct lu_env *env,
354                                        struct mdd_object *p,
355                                        struct mdd_object *c,
356                                        struct lu_attr *attr,
357                                        struct thandle *handle,
358                                        const struct md_op_spec *spec,
359                                        struct dt_allocation_hint *hint);
360 int mdd_stripe_get(const struct lu_env *env, struct mdd_object *obj,
361                    struct lu_buf *lmm_buf, const char *name);
362 int mdd_changelog_data_store_xattr(const struct lu_env *env,
363                                    struct mdd_device *mdd,
364                                    enum changelog_rec_type type,
365                                    enum changelog_rec_flags clf_flags,
366                                    struct mdd_object *mdd_obj,
367                                    const char *xattr_name,
368                                    struct thandle *handle);
369
370 /* mdd_trans.c */
371 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
372                           struct mdd_object *child, const struct lu_attr *attr,
373                           const struct md_op_spec *spec,
374                           struct dt_allocation_hint *hint);
375
376 static inline void mdd_object_get(struct mdd_object *o)
377 {
378         lu_object_get(&o->mod_obj.mo_lu);
379 }
380
381 static inline void mdd_object_put(const struct lu_env *env,
382                                   struct mdd_object *o)
383 {
384         lu_object_put(env, &o->mod_obj.mo_lu);
385 }
386
387 struct thandle *mdd_trans_create(const struct lu_env *env,
388                                  struct mdd_device *mdd);
389 int mdd_trans_start(const struct lu_env *env, struct mdd_device *mdd,
390                     struct thandle *th);
391 int mdd_trans_stop(const struct lu_env *env, struct mdd_device *mdd,
392                    int rc, struct thandle *handle);
393
394 /* mdd_device.c */
395 struct lu_object *mdd_object_alloc(const struct lu_env *env,
396                                    const struct lu_object_header *hdr,
397                                    struct lu_device *d);
398 int mdd_local_file_create(const struct lu_env *env, struct mdd_device *mdd,
399                           const struct lu_fid *pfid, const char *name,
400                           __u32 mode, struct lu_fid *fid);
401
402 int mdd_acl_chmod(const struct lu_env *env, struct mdd_object *o, __u32 mode,
403                   struct thandle *handle);
404 int mdd_acl_set(const struct lu_env *env, struct mdd_object *obj,
405                 struct lu_attr *attr, const struct lu_buf *buf, int fl);
406 int __mdd_fix_mode_acl(const struct lu_env *env, struct lu_buf *buf,
407                        __u32 *mode);
408 int __mdd_permission_internal(const struct lu_env *env, struct mdd_object *obj,
409                               const struct lu_attr *la, int mask, int role);
410 int mdd_permission(const struct lu_env *env, struct md_object *pobj,
411                    struct md_object *cobj, struct md_attr *ma, int mask);
412 int mdd_generic_thread_start(struct mdd_generic_thread *thread,
413                              int (*func)(void *), void *data, char *name);
414 void mdd_generic_thread_stop(struct mdd_generic_thread *thread);
415 int mdd_changelog_user_purge(const struct lu_env *env, struct mdd_device *mdd,
416                              __u32 id);
417
418 /* mdd_prepare.c */
419 int mdd_compat_fixes(const struct lu_env *env, struct mdd_device *mdd);
420
421 /* inline functions */
422 static inline int lu_device_is_mdd(struct lu_device *d)
423 {
424         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &mdd_lu_ops);
425 }
426
427 static inline struct mdd_device* lu2mdd_dev(struct lu_device *d)
428 {
429         LASSERT(lu_device_is_mdd(d));
430         return container_of0(d, struct mdd_device, mdd_md_dev.md_lu_dev);
431 }
432
433 static inline struct lu_device *mdd2lu_dev(struct mdd_device *d)
434 {
435         return (&d->mdd_md_dev.md_lu_dev);
436 }
437
438 static inline struct mdd_object *lu2mdd_obj(struct lu_object *o)
439 {
440         LASSERT(ergo(o != NULL, lu_device_is_mdd(o->lo_dev)));
441         return container_of0(o, struct mdd_object, mod_obj.mo_lu);
442 }
443
444 static inline struct mdd_device* mdo2mdd(struct md_object *mdo)
445 {
446         return lu2mdd_dev(mdo->mo_lu.lo_dev);
447 }
448
449 static inline struct mdd_object* md2mdd_obj(struct md_object *mdo)
450 {
451         return container_of0(mdo, struct mdd_object, mod_obj);
452 }
453
454 static inline const struct dt_device_operations *
455 mdd_child_ops(struct mdd_device *d)
456 {
457         return d->mdd_child->dd_ops;
458 }
459
460 static inline struct lu_object *mdd2lu_obj(struct mdd_object *obj)
461 {
462         return &obj->mod_obj.mo_lu;
463 }
464
465 static inline struct dt_object* mdd_object_child(struct mdd_object *o)
466 {
467         return container_of0(lu_object_next(mdd2lu_obj(o)),
468                              struct dt_object, do_lu);
469 }
470
471 static inline struct obd_device *mdd2obd_dev(struct mdd_device *mdd)
472 {
473         return (mdd->mdd_md_dev.md_lu_dev.ld_obd);
474 }
475
476 static inline struct mdd_device *mdd_obj2mdd_dev(struct mdd_object *obj)
477 {
478         return mdo2mdd(&obj->mod_obj);
479 }
480
481 static inline const struct lu_fid *mdo2fid(const struct mdd_object *obj)
482 {
483         return lu_object_fid(&obj->mod_obj.mo_lu);
484 }
485
486 static inline umode_t mdd_object_type(const struct mdd_object *obj)
487 {
488         return lu_object_attr(&obj->mod_obj.mo_lu);
489 }
490
491 static inline int mdd_is_dead_obj(struct mdd_object *obj)
492 {
493         return obj && obj->mod_flags & DEAD_OBJ;
494 }
495
496 static inline bool mdd_is_volatile_obj(struct mdd_object *obj)
497 {
498         return obj->mod_flags & VOLATILE_OBJ;
499 }
500
501 static inline bool mdd_is_orphan_obj(struct mdd_object *obj)
502 {
503         return obj->mod_flags & ORPHAN_OBJ;
504 }
505
506 static inline int mdd_object_exists(struct mdd_object *obj)
507 {
508         return lu_object_exists(mdd2lu_obj(obj));
509 }
510
511 static inline int mdd_object_remote(struct mdd_object *obj)
512 {
513         return lu_object_remote(mdd2lu_obj(obj));
514 }
515
516 static inline const struct lu_fid *mdd_object_fid(struct mdd_object *obj)
517 {
518         return lu_object_fid(mdd2lu_obj(obj));
519 }
520
521 static inline struct seq_server_site *mdd_seq_site(struct mdd_device *mdd)
522 {
523         return mdd2lu_dev(mdd)->ld_site->ld_seq_site;
524 }
525
526 static inline const char *mdd_obj_dev_name(const struct mdd_object *obj)
527 {
528         return lu_dev_name(obj->mod_obj.mo_lu.lo_dev);
529 }
530
531 #define MAX_ATIME_DIFF 60
532
533 static inline int mdd_permission_internal(const struct lu_env *env,
534                                           struct mdd_object *obj,
535                                           const struct lu_attr *la, int mask)
536 {
537         return __mdd_permission_internal(env, obj, la, mask, -1);
538 }
539
540 static inline int mdd_permission_internal_locked(const struct lu_env *env,
541                                                 struct mdd_object *obj,
542                                                 const struct lu_attr *la,
543                                                 int mask,
544                                                 enum dt_object_role role)
545 {
546         return __mdd_permission_internal(env, obj, la, mask, role);
547 }
548
549 /* mdd inline func for calling osd_dt_object ops */
550 static inline int mdo_attr_get(const struct lu_env *env, struct mdd_object *obj,
551                                struct lu_attr *la)
552 {
553         struct dt_object *next = mdd_object_child(obj);
554         return dt_attr_get(env, next, la);
555 }
556
557 static inline int mdo_declare_attr_set(const struct lu_env *env,
558                                        struct mdd_object *obj,
559                                        const struct lu_attr *la,
560                                        struct thandle *handle)
561 {
562         struct dt_object *next = mdd_object_child(obj);
563         return dt_declare_attr_set(env, next, la, handle);
564 }
565
566 static inline int mdo_attr_set(const struct lu_env *env,
567                                struct mdd_object *obj,
568                                const struct lu_attr *la,
569                                struct thandle *handle)
570 {
571         struct dt_object *next = mdd_object_child(obj);
572
573         if (!mdd_object_exists(obj))
574                 return -ENOENT;
575
576         return dt_attr_set(env, next, la, handle);
577 }
578
579 static inline int mdo_xattr_get(const struct lu_env *env,struct mdd_object *obj,
580                                 struct lu_buf *buf, const char *name)
581 {
582         struct dt_object *next = mdd_object_child(obj);
583         return dt_xattr_get(env, next, buf, name);
584 }
585
586 static inline int mdo_declare_xattr_set(const struct lu_env *env,
587                                         struct mdd_object *obj,
588                                         const struct lu_buf *buf,
589                                         const char *name,
590                                         int fl, struct thandle *handle)
591 {
592         struct dt_object *next = mdd_object_child(obj);
593         return dt_declare_xattr_set(env, next, buf, name, fl, handle);
594 }
595
596 static inline int mdo_xattr_set(const struct lu_env *env,struct mdd_object *obj,
597                                 const struct lu_buf *buf, const char *name,
598                                 int fl, struct thandle *handle)
599 {
600         struct dt_object *next = mdd_object_child(obj);
601
602         if (!mdd_object_exists(obj))
603                 return -ENOENT;
604
605         return dt_xattr_set(env, next, buf, name, fl, handle);
606 }
607
608 static inline int mdo_declare_xattr_del(const struct lu_env *env,
609                                         struct mdd_object *obj,
610                                         const char *name,
611                                         struct thandle *handle)
612 {
613         struct dt_object *next = mdd_object_child(obj);
614         return dt_declare_xattr_del(env, next, name, handle);
615 }
616
617 static inline int mdo_xattr_del(const struct lu_env *env,struct mdd_object *obj,
618                                 const char *name, struct thandle *handle)
619 {
620         struct dt_object *next = mdd_object_child(obj);
621
622         if (!mdd_object_exists(obj))
623                 return -ENOENT;
624
625         return dt_xattr_del(env, next, name, handle);
626 }
627
628 static inline int
629 mdo_xattr_list(const struct lu_env *env, struct mdd_object *obj,
630                struct lu_buf *buf)
631 {
632         struct dt_object *next = mdd_object_child(obj);
633
634         if (!mdd_object_exists(obj))
635                 return -ENOENT;
636
637         return dt_xattr_list(env, next, buf);
638 }
639
640 static inline int
641 mdo_invalidate(const struct lu_env *env, struct mdd_object *obj)
642 {
643         return dt_invalidate(env, mdd_object_child(obj));
644 }
645
646 static inline int
647 mdo_declare_layout_change(const struct lu_env *env, struct mdd_object *obj,
648                           struct md_layout_change *mlc, struct thandle *handle)
649 {
650         return dt_declare_layout_change(env, mdd_object_child(obj),
651                                         mlc, handle);
652 }
653
654 static inline int
655 mdo_layout_change(const struct lu_env *env, struct mdd_object *obj,
656                   struct md_layout_change *mlc, struct thandle *handle)
657 {
658         return dt_layout_change(env, mdd_object_child(obj), mlc, handle);
659 }
660
661 static inline
662 int mdo_declare_index_insert(const struct lu_env *env, struct mdd_object *obj,
663                              const struct lu_fid *fid, __u32 type,
664                              const char *name, struct thandle *handle)
665 {
666         struct dt_object *next  = mdd_object_child(obj);
667         int               rc;
668
669         /*
670          * if the object doesn't exist yet, then it's supposed to be created
671          * and declaration of the creation should be enough to insert ./..
672          */
673
674         rc = -ENOTDIR;
675         if (dt_try_as_dir(env, next)) {
676                 struct dt_insert_rec *rec = &mdd_env_info(env)->mti_dt_rec;
677
678                 rec->rec_fid = fid;
679                 rec->rec_type = type;
680                 rc = dt_declare_insert(env, next, (const struct dt_rec *)rec,
681                                        (const struct dt_key *)name, handle);
682         }
683
684          return rc;
685 }
686
687 static inline
688 int mdo_declare_index_delete(const struct lu_env *env, struct mdd_object *obj,
689                              const char *name, struct thandle *handle)
690 {
691         struct dt_object *next = mdd_object_child(obj);
692
693         if (!dt_try_as_dir(env, next))
694                 return -ENOTDIR;
695
696         return dt_declare_delete(env, next, (const struct dt_key *)name,
697                                  handle);
698 }
699
700 static inline int mdo_declare_ref_add(const struct lu_env *env,
701                                       struct mdd_object *obj,
702                                       struct thandle *handle)
703 {
704         struct dt_object *next = mdd_object_child(obj);
705         return dt_declare_ref_add(env, next, handle);
706 }
707
708 static inline int mdo_ref_add(const struct lu_env *env, struct mdd_object *obj,
709                               struct thandle *handle)
710 {
711         struct dt_object *next = mdd_object_child(obj);
712
713         if (!mdd_object_exists(obj))
714                 return -ENOENT;
715
716         return dt_ref_add(env, next, handle);
717 }
718
719 static inline int mdo_declare_ref_del(const struct lu_env *env,
720                                       struct mdd_object *obj,
721                                       struct thandle *handle)
722 {
723         struct dt_object *next = mdd_object_child(obj);
724         return dt_declare_ref_del(env, next, handle);
725 }
726
727 static inline int mdo_ref_del(const struct lu_env *env, struct mdd_object *obj,
728                               struct thandle *handle)
729 {
730         struct dt_object *next = mdd_object_child(obj);
731
732         if (!mdd_object_exists(obj))
733                 return -ENOENT;
734
735         return dt_ref_del(env, next, handle);
736 }
737
738 static inline int
739 mdo_declare_create_object(const struct lu_env *env, struct mdd_object *obj,
740                           struct lu_attr *attr, struct dt_allocation_hint *hint,
741                           struct dt_object_format *dof, struct thandle *handle)
742 {
743         struct dt_object *next = mdd_object_child(obj);
744         return dt_declare_create(env, next, attr, hint, dof, handle);
745 }
746
747 static inline int
748 mdo_create_object(const struct lu_env *env, struct mdd_object *obj,
749                   struct lu_attr *attr, struct dt_allocation_hint *hint,
750                   struct dt_object_format *dof, struct thandle *handle)
751 {
752         struct dt_object *next = mdd_object_child(obj);
753         return dt_create(env, next, attr, hint, dof, handle);
754 }
755
756 static inline
757 int mdo_declare_destroy(const struct lu_env *env, struct mdd_object *o,
758                         struct thandle *handle)
759 {
760         struct dt_object *next = mdd_object_child(o);
761         return dt_declare_destroy(env, next, handle);
762 }
763
764 static inline
765 int mdo_destroy(const struct lu_env *env, struct mdd_object *o,
766                 struct thandle *handle)
767 {
768         struct dt_object *next = mdd_object_child(o);
769         return dt_destroy(env, next, handle);
770 }
771
772 static inline bool mdd_changelog_enabled(const struct lu_env *env,
773                                         struct mdd_device *mdd,
774                                         enum changelog_rec_type type)
775 {
776         const struct lu_ucred *uc;
777
778         if ((mdd->mdd_cl.mc_flags & CLM_ON) &&
779             (mdd->mdd_cl.mc_mask & (1 << type))) {
780                 uc = lu_ucred_check(env);
781
782                 return uc != NULL ? uc->uc_enable_audit : true;
783         } else {
784                 return false;
785         }
786 }
787
788 #endif