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