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