Whamcloud - gitweb
LU-12616 obclass: fix MDS start/stop race
[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         struct local_oid_storage        *mdd_los;
154         struct mdd_generic_thread        mdd_orphan_cleanup_thread;
155         struct kobject                   mdd_kobj;
156         struct kobj_type                 mdd_ktype;
157         struct completion                mdd_kobj_unregister;
158 };
159
160 enum mod_flags {
161         /* The dir object has been unlinked */
162         DEAD_OBJ   = 1 << 0,
163         ORPHAN_OBJ = 1 << 1,
164         VOLATILE_OBJ = 1 << 4,
165 };
166
167 struct mdd_object {
168         struct md_object        mod_obj;
169         /* open count */
170         u32                     mod_count;
171         u32                     mod_valid;
172         ktime_t                 mod_cltime;
173         unsigned long           mod_flags;
174         struct list_head        mod_users;  /**< unique user opens */
175 };
176
177 struct mdd_thread_info {
178         struct lu_fid             mti_fid;
179         struct lu_fid             mti_fid2; /* used for be & cpu converting */
180         /**
181         * only be used by MDD interfaces, can be passed into local MDD APIs.
182         */
183         struct lu_attr            mti_pattr;
184         struct lu_attr            mti_cattr;
185         struct lu_attr            mti_tpattr;
186         struct lu_attr            mti_tattr;
187         /** used to set c/mtime */
188         struct lu_attr            mti_la_for_fix;
189         /* Only used in mdd_object_start */
190         struct lu_attr            mti_la_for_start;
191         /* mti_ent and mti_key must be conjoint,
192         * then mti_ent::lde_name will be mti_key. */
193         struct lu_dirent          mti_ent;
194         char                      mti_key[NAME_MAX + 16];
195         char                      mti_name[NAME_MAX + 1];
196         struct lu_buf             mti_buf[4];
197         struct lu_buf             mti_big_buf; /* biggish persistent buf */
198         struct lu_buf             mti_link_buf; /* buf for link ea */
199         struct lu_buf             mti_xattr_buf;
200         struct obdo               mti_oa;
201         struct lmv_user_md        mti_lmu;
202         struct dt_allocation_hint mti_hint;
203         struct dt_object_format   mti_dof;
204         struct linkea_data        mti_link_data;
205         struct md_op_spec         mti_spec;
206         struct dt_insert_rec      mti_dt_rec;
207         struct lfsck_req_local    mti_lrl;
208         struct lu_seq_range       mti_range;
209         union lmv_mds_md          mti_lmv;
210 };
211
212 int mdd_la_get(const struct lu_env *env, struct mdd_object *obj,
213                struct lu_attr *la);
214 int mdd_attr_get(const struct lu_env *env, struct md_object *obj,
215                  struct md_attr *ma);
216 int mdd_attr_set(const struct lu_env *env, struct md_object *obj,
217                  const struct md_attr *ma);
218 int mdd_attr_set_internal(const struct lu_env *env,
219                           struct mdd_object *obj,
220                           const struct lu_attr *attr,
221                           struct thandle *handle,
222                           int needacl);
223 int mdd_update_time(const struct lu_env *env, struct mdd_object *obj,
224                     const struct lu_attr *oattr, struct lu_attr *attr,
225                     struct thandle *handle);
226 int mdd_create_object_internal(const struct lu_env *env, struct mdd_object *p,
227                                struct mdd_object *c, struct lu_attr *attr,
228                                struct thandle *handle,
229                                const struct md_op_spec *spec,
230                                struct dt_allocation_hint *hint);
231
232 /* mdd_lock.c */
233 void mdd_write_lock(const struct lu_env *env, struct mdd_object *obj,
234                     enum dt_object_role role);
235 void mdd_read_lock(const struct lu_env *env, struct mdd_object *obj,
236                    enum dt_object_role role);
237 void mdd_write_unlock(const struct lu_env *env, struct mdd_object *obj);
238 void mdd_read_unlock(const struct lu_env *env, struct mdd_object *obj);
239 int mdd_write_locked(const struct lu_env *env, struct mdd_object *obj);
240
241 /* mdd_dir.c */
242 int mdd_may_create(const struct lu_env *env, struct mdd_object *pobj,
243                    const struct lu_attr *pattr, struct mdd_object *cobj,
244                    bool check_perm);
245 int mdd_may_unlink(const struct lu_env *env, struct mdd_object *pobj,
246                    const struct lu_attr *pattr, const struct lu_attr *attr);
247 int mdd_may_delete(const struct lu_env *env, struct mdd_object *tpobj,
248                    const struct lu_attr *tpattr, struct mdd_object *tobj,
249                    const struct lu_attr *tattr, const struct lu_attr *cattr,
250                    int check_perm, int check_empty);
251 int mdd_unlink_sanity_check(const struct lu_env *env, struct mdd_object *pobj,
252                             const struct lu_attr *pattr,
253                             struct mdd_object *cobj,
254                             const struct lu_attr *cattr);
255 int mdd_finish_unlink(const struct lu_env *env, struct mdd_object *obj,
256                       struct md_attr *ma, const struct mdd_object *pobj,
257                       const struct lu_name *lname, struct thandle *th);
258
259 int mdd_is_root(struct mdd_device *mdd, const struct lu_fid *fid);
260 int mdd_lookup(const struct lu_env *env,
261                struct md_object *pobj, const struct lu_name *lname,
262                struct lu_fid* fid, struct md_op_spec *spec);
263 int mdd_links_write(const struct lu_env *env, struct mdd_object *mdd_obj,
264                     struct linkea_data *ldata, struct thandle *handle);
265 struct lu_buf *mdd_links_get(const struct lu_env *env,
266                              struct mdd_object *mdd_obj);
267 int mdd_links_rename(const struct lu_env *env,
268                      struct mdd_object *mdd_obj,
269                      const struct lu_fid *oldpfid,
270                      const struct lu_name *oldlname,
271                      const struct lu_fid *newpfid,
272                      const struct lu_name *newlname,
273                      struct thandle *handle,
274                      struct linkea_data *ldata,
275                      int first, int check);
276 int mdd_dir_layout_shrink(const struct lu_env *env,
277                           struct md_object *md_obj,
278                           const struct lu_buf *lmu_buf);
279
280 struct mdd_thread_info *mdd_env_info(const struct lu_env *env);
281
282 #define MDD_ENV_VAR(env, var) (&mdd_env_info(env)->mti_##var)
283
284 struct lu_buf *mdd_buf_get(const struct lu_env *env, void *area, ssize_t len);
285 const struct lu_buf *mdd_buf_get_const(const struct lu_env *env,
286                                        const void *area, ssize_t len);
287
288 int mdd_orphan_cleanup(const struct lu_env *env, struct mdd_device *d);
289 int mdd_orphan_insert(const struct lu_env *env, struct mdd_object *obj,
290                       struct thandle *thandle);
291 int mdd_orphan_delete(const struct lu_env *env, struct mdd_object *obj,
292                       struct thandle *thandle);
293 int mdd_orphan_index_init(const struct lu_env *env, struct mdd_device *mdd);
294 void mdd_orphan_index_fini(const struct lu_env *env, struct mdd_device *mdd);
295 int mdd_orphan_declare_insert(const struct lu_env *env, struct mdd_object *obj,
296                               umode_t mode, struct thandle *thandle);
297 int mdd_orphan_declare_delete(const struct lu_env *env, struct mdd_object *obj,
298                               struct thandle *thandle);
299
300 /* mdd_lproc.c */
301 int mdd_procfs_init(struct mdd_device *mdd, const char *name);
302 void mdd_procfs_fini(struct mdd_device *mdd);
303
304 /* mdd_object.c */
305 extern struct kmem_cache *mdd_object_kmem;
306 extern const struct md_dir_operations    mdd_dir_ops;
307 extern const struct md_object_operations mdd_obj_ops;
308 int mdd_readlink(const struct lu_env *env, struct md_object *obj,
309                  struct lu_buf *buf);
310 extern struct lu_context_key mdd_thread_key;
311 extern const struct lu_device_operations mdd_lu_ops;
312
313 struct mdd_object *mdd_object_find(const struct lu_env *env,
314                                    struct mdd_device *d,
315                                    const struct lu_fid *f);
316 int mdd_readpage(const struct lu_env *env, struct md_object *obj,
317                  const struct lu_rdpg *rdpg);
318 int mdd_declare_changelog_store(const struct lu_env *env,
319                                 struct mdd_device *mdd,
320                                 enum changelog_rec_type type,
321                                 const struct lu_name *tname,
322                                 const struct lu_name *sname,
323                                 struct thandle *handle);
324 void mdd_changelog_rec_ext_jobid(struct changelog_rec *rec, const char *jobid);
325 void mdd_changelog_rec_ext_extra_flags(struct changelog_rec *rec, __u64 eflags);
326 void mdd_changelog_rec_extra_uidgid(struct changelog_rec *rec,
327                                     __u64 uid, __u64 gid);
328 void mdd_changelog_rec_extra_nid(struct changelog_rec *rec,
329                                  lnet_nid_t nid);
330 void mdd_changelog_rec_extra_omode(struct changelog_rec *rec, u32 flags);
331 void mdd_changelog_rec_extra_xattr(struct changelog_rec *rec,
332                                    const char *xattr_name);
333 int mdd_changelog_store(const struct lu_env *env, struct mdd_device *mdd,
334                         struct llog_changelog_rec *rec, struct thandle *th);
335 int mdd_changelog_data_store(const struct lu_env *env, struct mdd_device *mdd,
336                              enum changelog_rec_type type,
337                              enum changelog_rec_flags clf_flags,
338                              struct mdd_object *mdd_obj,
339                              struct thandle *handle);
340 int mdd_changelog_ns_store(const struct lu_env *env, struct mdd_device *mdd,
341                            enum changelog_rec_type type,
342                            enum changelog_rec_flags clf_flags,
343                            struct mdd_object *target,
344                            const struct lu_fid *tpfid,
345                            const struct lu_fid *sfid,
346                            const struct lu_fid *spfid,
347                            const struct lu_name *tname,
348                            const struct lu_name *sname,
349                            struct thandle *handle);
350 int mdd_invalidate(const struct lu_env *env, struct md_object *obj);
351 int mdd_declare_create_object_internal(const struct lu_env *env,
352                                        struct mdd_object *p,
353                                        struct mdd_object *c,
354                                        struct lu_attr *attr,
355                                        struct thandle *handle,
356                                        const struct md_op_spec *spec,
357                                        struct dt_allocation_hint *hint);
358 int mdd_stripe_get(const struct lu_env *env, struct mdd_object *obj,
359                    struct lu_buf *lmm_buf, const char *name);
360 int mdd_changelog_data_store_xattr(const struct lu_env *env,
361                                    struct mdd_device *mdd,
362                                    enum changelog_rec_type type,
363                                    enum changelog_rec_flags clf_flags,
364                                    struct mdd_object *mdd_obj,
365                                    const char *xattr_name,
366                                    struct thandle *handle);
367
368 /* mdd_trans.c */
369 void mdd_object_make_hint(const struct lu_env *env, struct mdd_object *parent,
370                           struct mdd_object *child, const struct lu_attr *attr,
371                           const struct md_op_spec *spec,
372                           struct dt_allocation_hint *hint);
373
374 static inline void mdd_object_get(struct mdd_object *o)
375 {
376         lu_object_get(&o->mod_obj.mo_lu);
377 }
378
379 static inline void mdd_object_put(const struct lu_env *env,
380                                   struct mdd_object *o)
381 {
382         lu_object_put(env, &o->mod_obj.mo_lu);
383 }
384
385 struct thandle *mdd_trans_create(const struct lu_env *env,
386                                  struct mdd_device *mdd);
387 int mdd_trans_start(const struct lu_env *env, struct mdd_device *mdd,
388                     struct thandle *th);
389 int mdd_trans_stop(const struct lu_env *env, struct mdd_device *mdd,
390                    int rc, struct thandle *handle);
391
392 /* mdd_device.c */
393 struct lu_object *mdd_object_alloc(const struct lu_env *env,
394                                    const struct lu_object_header *hdr,
395                                    struct lu_device *d);
396 int mdd_local_file_create(const struct lu_env *env, struct mdd_device *mdd,
397                           const struct lu_fid *pfid, const char *name,
398                           __u32 mode, struct lu_fid *fid);
399
400 int mdd_acl_chmod(const struct lu_env *env, struct mdd_object *o, __u32 mode,
401                   struct thandle *handle);
402 int mdd_acl_set(const struct lu_env *env, struct mdd_object *obj,
403                 struct lu_attr *attr, const struct lu_buf *buf, int fl);
404 int __mdd_fix_mode_acl(const struct lu_env *env, struct lu_buf *buf,
405                        __u32 *mode);
406 int __mdd_permission_internal(const struct lu_env *env, struct mdd_object *obj,
407                               const struct lu_attr *la, int mask, int role);
408 int mdd_permission(const struct lu_env *env, struct md_object *pobj,
409                    struct md_object *cobj, struct md_attr *ma, int mask);
410 int mdd_generic_thread_start(struct mdd_generic_thread *thread,
411                              int (*func)(void *), void *data, char *name);
412 void mdd_generic_thread_stop(struct mdd_generic_thread *thread);
413 int mdd_changelog_user_purge(const struct lu_env *env, struct mdd_device *mdd,
414                              __u32 id);
415
416 /* mdd_prepare.c */
417 int mdd_compat_fixes(const struct lu_env *env, struct mdd_device *mdd);
418
419 /* inline functions */
420 static inline int lu_device_is_mdd(struct lu_device *d)
421 {
422         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &mdd_lu_ops);
423 }
424
425 static inline struct mdd_device* lu2mdd_dev(struct lu_device *d)
426 {
427         LASSERT(lu_device_is_mdd(d));
428         return container_of0(d, struct mdd_device, mdd_md_dev.md_lu_dev);
429 }
430
431 static inline struct lu_device *mdd2lu_dev(struct mdd_device *d)
432 {
433         return (&d->mdd_md_dev.md_lu_dev);
434 }
435
436 static inline struct mdd_object *lu2mdd_obj(struct lu_object *o)
437 {
438         LASSERT(ergo(o != NULL, lu_device_is_mdd(o->lo_dev)));
439         return container_of0(o, struct mdd_object, mod_obj.mo_lu);
440 }
441
442 static inline struct mdd_device* mdo2mdd(struct md_object *mdo)
443 {
444         return lu2mdd_dev(mdo->mo_lu.lo_dev);
445 }
446
447 static inline struct mdd_object* md2mdd_obj(struct md_object *mdo)
448 {
449         return container_of0(mdo, struct mdd_object, mod_obj);
450 }
451
452 static inline const struct dt_device_operations *
453 mdd_child_ops(struct mdd_device *d)
454 {
455         return d->mdd_child->dd_ops;
456 }
457
458 static inline struct lu_object *mdd2lu_obj(struct mdd_object *obj)
459 {
460         return &obj->mod_obj.mo_lu;
461 }
462
463 static inline struct dt_object* mdd_object_child(struct mdd_object *o)
464 {
465         return container_of0(lu_object_next(mdd2lu_obj(o)),
466                              struct dt_object, do_lu);
467 }
468
469 static inline struct obd_device *mdd2obd_dev(struct mdd_device *mdd)
470 {
471         return (mdd->mdd_md_dev.md_lu_dev.ld_obd);
472 }
473
474 static inline struct mdd_device *mdd_obj2mdd_dev(struct mdd_object *obj)
475 {
476         return mdo2mdd(&obj->mod_obj);
477 }
478
479 static inline const struct lu_fid *mdo2fid(const struct mdd_object *obj)
480 {
481         return lu_object_fid(&obj->mod_obj.mo_lu);
482 }
483
484 static inline umode_t mdd_object_type(const struct mdd_object *obj)
485 {
486         return lu_object_attr(&obj->mod_obj.mo_lu);
487 }
488
489 static inline int mdd_is_dead_obj(struct mdd_object *obj)
490 {
491         return obj && obj->mod_flags & DEAD_OBJ;
492 }
493
494 static inline bool mdd_is_volatile_obj(struct mdd_object *obj)
495 {
496         return obj->mod_flags & VOLATILE_OBJ;
497 }
498
499 static inline bool mdd_is_orphan_obj(struct mdd_object *obj)
500 {
501         return obj->mod_flags & ORPHAN_OBJ;
502 }
503
504 static inline int mdd_object_exists(struct mdd_object *obj)
505 {
506         return lu_object_exists(mdd2lu_obj(obj));
507 }
508
509 static inline int mdd_object_remote(struct mdd_object *obj)
510 {
511         return lu_object_remote(mdd2lu_obj(obj));
512 }
513
514 static inline const struct lu_fid *mdd_object_fid(struct mdd_object *obj)
515 {
516         return lu_object_fid(mdd2lu_obj(obj));
517 }
518
519 static inline struct seq_server_site *mdd_seq_site(struct mdd_device *mdd)
520 {
521         return mdd2lu_dev(mdd)->ld_site->ld_seq_site;
522 }
523
524 static inline const char *mdd_obj_dev_name(const struct mdd_object *obj)
525 {
526         return lu_dev_name(obj->mod_obj.mo_lu.lo_dev);
527 }
528
529 #define MAX_ATIME_DIFF 60
530
531 static inline int mdd_permission_internal(const struct lu_env *env,
532                                           struct mdd_object *obj,
533                                           const struct lu_attr *la, int mask)
534 {
535         return __mdd_permission_internal(env, obj, la, mask, -1);
536 }
537
538 static inline int mdd_permission_internal_locked(const struct lu_env *env,
539                                                 struct mdd_object *obj,
540                                                 const struct lu_attr *la,
541                                                 int mask,
542                                                 enum dt_object_role role)
543 {
544         return __mdd_permission_internal(env, obj, la, mask, role);
545 }
546
547 /* mdd inline func for calling osd_dt_object ops */
548 static inline int mdo_attr_get(const struct lu_env *env, struct mdd_object *obj,
549                                struct lu_attr *la)
550 {
551         struct dt_object *next = mdd_object_child(obj);
552         return dt_attr_get(env, next, la);
553 }
554
555 static inline int mdo_declare_attr_set(const struct lu_env *env,
556                                        struct mdd_object *obj,
557                                        const struct lu_attr *la,
558                                        struct thandle *handle)
559 {
560         struct dt_object *next = mdd_object_child(obj);
561         return dt_declare_attr_set(env, next, la, handle);
562 }
563
564 static inline int mdo_attr_set(const struct lu_env *env,
565                                struct mdd_object *obj,
566                                const struct lu_attr *la,
567                                struct thandle *handle)
568 {
569         struct dt_object *next = mdd_object_child(obj);
570
571         if (!mdd_object_exists(obj))
572                 return -ENOENT;
573
574         return dt_attr_set(env, next, la, handle);
575 }
576
577 static inline int mdo_xattr_get(const struct lu_env *env,struct mdd_object *obj,
578                                 struct lu_buf *buf, const char *name)
579 {
580         struct dt_object *next = mdd_object_child(obj);
581         return dt_xattr_get(env, next, buf, name);
582 }
583
584 static inline int mdo_declare_xattr_set(const struct lu_env *env,
585                                         struct mdd_object *obj,
586                                         const struct lu_buf *buf,
587                                         const char *name,
588                                         int fl, struct thandle *handle)
589 {
590         struct dt_object *next = mdd_object_child(obj);
591         return dt_declare_xattr_set(env, next, buf, name, fl, handle);
592 }
593
594 static inline int mdo_xattr_set(const struct lu_env *env,struct mdd_object *obj,
595                                 const struct lu_buf *buf, const char *name,
596                                 int fl, struct thandle *handle)
597 {
598         struct dt_object *next = mdd_object_child(obj);
599
600         if (!mdd_object_exists(obj))
601                 return -ENOENT;
602
603         return dt_xattr_set(env, next, buf, name, fl, handle);
604 }
605
606 static inline int mdo_declare_xattr_del(const struct lu_env *env,
607                                         struct mdd_object *obj,
608                                         const char *name,
609                                         struct thandle *handle)
610 {
611         struct dt_object *next = mdd_object_child(obj);
612         return dt_declare_xattr_del(env, next, name, handle);
613 }
614
615 static inline int mdo_xattr_del(const struct lu_env *env,struct mdd_object *obj,
616                                 const char *name, struct thandle *handle)
617 {
618         struct dt_object *next = mdd_object_child(obj);
619
620         if (!mdd_object_exists(obj))
621                 return -ENOENT;
622
623         return dt_xattr_del(env, next, name, handle);
624 }
625
626 static inline int
627 mdo_xattr_list(const struct lu_env *env, struct mdd_object *obj,
628                struct lu_buf *buf)
629 {
630         struct dt_object *next = mdd_object_child(obj);
631
632         if (!mdd_object_exists(obj))
633                 return -ENOENT;
634
635         return dt_xattr_list(env, next, buf);
636 }
637
638 static inline int
639 mdo_invalidate(const struct lu_env *env, struct mdd_object *obj)
640 {
641         return dt_invalidate(env, mdd_object_child(obj));
642 }
643
644 static inline int
645 mdo_declare_layout_change(const struct lu_env *env, struct mdd_object *obj,
646                           struct md_layout_change *mlc, struct thandle *handle)
647 {
648         return dt_declare_layout_change(env, mdd_object_child(obj),
649                                         mlc, handle);
650 }
651
652 static inline int
653 mdo_layout_change(const struct lu_env *env, struct mdd_object *obj,
654                   struct md_layout_change *mlc, struct thandle *handle)
655 {
656         return dt_layout_change(env, mdd_object_child(obj), mlc, handle);
657 }
658
659 static inline
660 int mdo_declare_index_insert(const struct lu_env *env, struct mdd_object *obj,
661                              const struct lu_fid *fid, __u32 type,
662                              const char *name, struct thandle *handle)
663 {
664         struct dt_object *next  = mdd_object_child(obj);
665         int               rc;
666
667         /*
668          * if the object doesn't exist yet, then it's supposed to be created
669          * and declaration of the creation should be enough to insert ./..
670          */
671
672         rc = -ENOTDIR;
673         if (dt_try_as_dir(env, next)) {
674                 struct dt_insert_rec *rec = &mdd_env_info(env)->mti_dt_rec;
675
676                 rec->rec_fid = fid;
677                 rec->rec_type = type;
678                 rc = dt_declare_insert(env, next, (const struct dt_rec *)rec,
679                                        (const struct dt_key *)name, handle);
680         }
681
682          return rc;
683 }
684
685 static inline
686 int mdo_declare_index_delete(const struct lu_env *env, struct mdd_object *obj,
687                              const char *name, struct thandle *handle)
688 {
689         struct dt_object *next = mdd_object_child(obj);
690
691         if (!dt_try_as_dir(env, next))
692                 return -ENOTDIR;
693
694         return dt_declare_delete(env, next, (const struct dt_key *)name,
695                                  handle);
696 }
697
698 static inline int mdo_declare_ref_add(const struct lu_env *env,
699                                       struct mdd_object *obj,
700                                       struct thandle *handle)
701 {
702         struct dt_object *next = mdd_object_child(obj);
703         return dt_declare_ref_add(env, next, handle);
704 }
705
706 static inline int mdo_ref_add(const struct lu_env *env, struct mdd_object *obj,
707                               struct thandle *handle)
708 {
709         struct dt_object *next = mdd_object_child(obj);
710
711         if (!mdd_object_exists(obj))
712                 return -ENOENT;
713
714         return dt_ref_add(env, next, handle);
715 }
716
717 static inline int mdo_declare_ref_del(const struct lu_env *env,
718                                       struct mdd_object *obj,
719                                       struct thandle *handle)
720 {
721         struct dt_object *next = mdd_object_child(obj);
722         return dt_declare_ref_del(env, next, handle);
723 }
724
725 static inline int mdo_ref_del(const struct lu_env *env, struct mdd_object *obj,
726                               struct thandle *handle)
727 {
728         struct dt_object *next = mdd_object_child(obj);
729
730         if (!mdd_object_exists(obj))
731                 return -ENOENT;
732
733         return dt_ref_del(env, next, handle);
734 }
735
736 static inline int
737 mdo_declare_create_object(const struct lu_env *env, struct mdd_object *obj,
738                           struct lu_attr *attr, struct dt_allocation_hint *hint,
739                           struct dt_object_format *dof, struct thandle *handle)
740 {
741         struct dt_object *next = mdd_object_child(obj);
742         return dt_declare_create(env, next, attr, hint, dof, handle);
743 }
744
745 static inline int
746 mdo_create_object(const struct lu_env *env, struct mdd_object *obj,
747                   struct lu_attr *attr, struct dt_allocation_hint *hint,
748                   struct dt_object_format *dof, struct thandle *handle)
749 {
750         struct dt_object *next = mdd_object_child(obj);
751         return dt_create(env, next, attr, hint, dof, handle);
752 }
753
754 static inline
755 int mdo_declare_destroy(const struct lu_env *env, struct mdd_object *o,
756                         struct thandle *handle)
757 {
758         struct dt_object *next = mdd_object_child(o);
759         return dt_declare_destroy(env, next, handle);
760 }
761
762 static inline
763 int mdo_destroy(const struct lu_env *env, struct mdd_object *o,
764                 struct thandle *handle)
765 {
766         struct dt_object *next = mdd_object_child(o);
767         return dt_destroy(env, next, handle);
768 }
769
770 static inline bool mdd_changelog_enabled(const struct lu_env *env,
771                                         struct mdd_device *mdd,
772                                         enum changelog_rec_type type)
773 {
774         const struct lu_ucred *uc;
775
776         if ((mdd->mdd_cl.mc_flags & CLM_ON) &&
777             (mdd->mdd_cl.mc_mask & (1 << type))) {
778                 uc = lu_ucred_check(env);
779
780                 return uc != NULL ? uc->uc_enable_audit : true;
781         } else {
782                 return false;
783         }
784 }
785
786 #endif