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