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