Whamcloud - gitweb
LU-17705 ptlrpc: replace synchronize_rcu() with rcu_barrier()
[fs/lustre-release.git] / lustre / include / md_object.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/include/md_object.h
32  *
33  * Extention of lu_object.h for metadata objects
34  */
35
36 #ifndef _LUSTRE_MD_OBJECT_H
37 #define _LUSTRE_MD_OBJECT_H
38
39 #ifndef HAVE_SERVER_SUPPORT
40 # error "client code should not depend on md_object.h"
41 #endif /* !HAVE_SERVER_SUPPORT */
42
43 /** \defgroup md md
44  * Sub-class of lu_object with methods common for "meta-data" objects in MDT
45  * stack.
46  *
47  * Meta-data objects implement namespace operations: you can link, unlink
48  * them, and treat them as directories.
49  *
50  * Examples: mdt, cmm, and mdt are implementations of md interface.
51  * @{
52  */
53
54
55 /*
56  * super-class definitions.
57  */
58 #include <dt_object.h>
59
60 struct md_device;
61 struct md_device_operations;
62 struct md_object;
63 struct obd_export;
64
65 /** metadata attributes */
66 enum ma_valid {
67         MA_INODE        = BIT(0),
68         MA_LOV          = BIT(1),
69         MA_FLAGS        = BIT(2),
70         MA_LMV          = BIT(3),
71         MA_ACL_DEF      = BIT(4),
72         MA_LOV_DEF      = BIT(5),
73         MA_HSM          = BIT(6),
74         MA_PFID         = BIT(7),
75         MA_LMV_DEF      = BIT(8),
76         MA_SOM          = BIT(9),
77         MA_FORCE_LOG    = BIT(10), /* forced close logged in mdt_mfd_close */
78 };
79
80 typedef enum {
81         MDL_MINMODE  = 0,
82         MDL_EX       = 1,
83         MDL_PW       = 2,
84         MDL_PR       = 4,
85         MDL_CW       = 8,
86         MDL_CR       = 16,
87         MDL_NL       = 32,
88         MDL_GROUP    = 64,
89         MDL_MAXMODE
90 } mdl_mode_t;
91
92 typedef enum {
93         MDT_NUL_LOCK = 0,
94         MDT_REG_LOCK = BIT(0),
95         MDT_PDO_LOCK = BIT(1),
96 } mdl_type_t;
97
98 /* lfs rgetfacl permission check */
99 #define MAY_RGETFACL    BIT(14)
100
101 /* memory structure for hsm attributes
102  * for fields description see the on disk structure hsm_attrs
103  * which is defined in lustre_idl.h
104  */
105 struct md_hsm {
106         __u32   mh_compat;
107         __u32   mh_flags;
108         __u64   mh_arch_id;
109         __u64   mh_arch_ver;
110 };
111
112
113 /* memory structure for SOM attributes
114  * for fields description see the on disk structure som_attrs
115  * which is defined in lustre_idl.h
116  */
117 struct md_som {
118         __u16   ms_valid;
119         __u64   ms_size;
120         __u64   ms_blocks;
121 };
122
123 struct md_attr {
124         __u64                    ma_valid;
125         __u64                    ma_need;
126         __u64                    ma_attr_flags;
127         struct lu_attr           ma_attr;
128         struct lu_fid            ma_pfid;
129         struct md_hsm            ma_hsm;
130         struct md_som            ma_som;
131         struct lov_mds_md       *ma_lmm;
132         union lmv_mds_md        *ma_lmv;
133         struct lmv_user_md      *ma_default_lmv;
134         void                    *ma_acl;
135         int                      ma_lmm_size;
136         int                      ma_lmv_size;
137         int                      ma_default_lmv_size;
138         int                      ma_acl_size;
139         int                      ma_enable_chprojid_gid;
140 };
141
142 /** Additional parameters for create */
143 struct md_op_spec {
144         union {
145                 /** symlink target */
146                 const char *sp_symname;
147                 /** eadata for regular files */
148                 struct md_spec_reg {
149                         void *eadata;
150                         int  eadatalen;
151                 } sp_ea;
152         } u;
153
154         /** Open flags from client: such as MDS_OPEN_CREAT, and others. */
155         __u64      sp_cr_flags;
156
157         /* File security context for creates. */
158         const char      *sp_cr_file_secctx_name; /* (security) xattr name */
159         void            *sp_cr_file_secctx; /* xattr value */
160         size_t           sp_cr_file_secctx_size; /* xattr value size */
161
162         /* File encryption context for creates. */
163         void            *sp_cr_file_encctx; /* enc ctx value */
164         size_t           sp_cr_file_encctx_size; /* enc ctx size */
165
166         /* Archive ID used for auto PCC attach when create newly files. */
167         __u32            sp_archive_id;
168
169         /** don't create lov objects or llog cookie - this replay */
170         unsigned int no_create:1,
171                      sp_cr_lookup:1, /* do lookup sanity check or not. */
172                      sp_rm_entry:1,  /* only remove name entry */
173                      sp_permitted:1, /* do not check permission */
174                      sp_migrate_close:1, /* close the file during migrate */
175                      sp_migrate_nsonly:1; /* migrate dirent only */
176
177         /** to create directory */
178         const struct dt_index_features *sp_feat;
179 };
180
181 enum md_layout_opc {
182         MD_LAYOUT_NOP   = 0,
183         MD_LAYOUT_WRITE,        /* FLR: write the file */
184         MD_LAYOUT_RESYNC,       /* FLR: resync starts */
185         MD_LAYOUT_RESYNC_DONE,  /* FLR: resync done */
186         MD_LAYOUT_ATTACH,       /* attach stripes */
187         MD_LAYOUT_DETACH,       /* detach stripes */
188         MD_LAYOUT_SHRINK,       /* shrink striped directory (destroy stripes) */
189         MD_LAYOUT_SPLIT,        /* split directory (allocate new stripes) */
190         MD_LAYOUT_MAX,
191 };
192
193 /**
194  * Parameters for layout change API.
195  */
196 struct md_layout_change {
197         enum md_layout_opc                       mlc_opc;
198         struct lu_buf                            mlc_buf;
199         union {
200                 struct {
201                         __u16                    mlc_mirror_id;
202                         struct layout_intent    *mlc_intent;
203                         struct lustre_som_attrs  mlc_som;
204                         size_t                   mlc_resync_count;
205                         __u32                   *mlc_resync_ids;
206                 }; /* file */
207                 struct {
208                         /* parent obj in plain dir split */
209                         struct md_object        *mlc_parent;
210                         /* target obj in plain dir split */
211                         struct md_object        *mlc_target;
212                         /* target attr in plain dir split */
213                         struct lu_attr          *mlc_attr;
214                         /* target name in plain dir split */
215                         const struct lu_name    *mlc_name;
216                         /* dir split spec */
217                         struct md_op_spec       *mlc_spec;
218                 }; /* dir */
219         };
220 };
221
222 union ldlm_policy_data;
223 /**
224  * Operations implemented for each md object (both directory and leaf).
225  */
226 struct md_object_operations {
227         int (*moo_permission)(const struct lu_env *env,
228                               struct md_object *pobj, struct md_object *cobj,
229                               struct md_attr *attr, unsigned int may_mask);
230
231         int (*moo_attr_get)(const struct lu_env *env, struct md_object *obj,
232                             struct md_attr *attr);
233
234         int (*moo_attr_set)(const struct lu_env *env, struct md_object *obj,
235                             const struct md_attr *attr);
236
237         int (*moo_xattr_get)(const struct lu_env *env, struct md_object *obj,
238                              struct lu_buf *buf, const char *name);
239
240         int (*moo_xattr_list)(const struct lu_env *env, struct md_object *obj,
241                               struct lu_buf *buf);
242
243         int (*moo_xattr_set)(const struct lu_env *env, struct md_object *obj,
244                              const struct lu_buf *buf, const char *name,
245                              int fl);
246
247         int (*moo_xattr_del)(const struct lu_env *env, struct md_object *obj,
248                              const char *name);
249
250         /** This method is used to swap the layouts between 2 objects */
251         int (*moo_swap_layouts)(const struct lu_env *env,
252                                struct md_object *obj1, struct md_object *obj2,
253                                __u64 flags);
254
255         /** \retval number of bytes actually read upon success */
256         int (*moo_readpage)(const struct lu_env *env, struct md_object *obj,
257                             const struct lu_rdpg *rdpg);
258
259         int (*moo_readlink)(const struct lu_env *env, struct md_object *obj,
260                             struct lu_buf *buf);
261
262         int (*moo_changelog)(const struct lu_env *env,
263                              enum changelog_rec_type type,
264                              enum changelog_rec_flags clf_flags,
265                              struct md_device *m, const struct lu_fid *fid);
266
267         int (*moo_open)(const struct lu_env *env, struct md_object *obj,
268                         u64 open_flags, struct md_op_spec*);
269
270         int (*moo_close)(const struct lu_env *env, struct md_object *obj,
271                          struct md_attr *ma, u64 open_flags);
272
273         int (*moo_object_sync)(const struct lu_env *, struct md_object *);
274
275         int (*moo_object_lock)(const struct lu_env *env, struct md_object *obj,
276                                struct lustre_handle *lh,
277                                struct ldlm_enqueue_info *einfo,
278                                union ldlm_policy_data *policy);
279         int (*moo_object_unlock)(const struct lu_env *env,
280                                  struct md_object *obj,
281                                  struct ldlm_enqueue_info *einfo,
282                                  union ldlm_policy_data *policy);
283
284         int (*moo_invalidate)(const struct lu_env *env, struct md_object *obj);
285         /**
286          * Trying to write to un-instantiated layout component.
287          *
288          * The caller should have held layout lock.
289          *
290          * This API can be extended to support every other layout changing
291          * operations, such as component {add,del,change}, layout swap,
292          * layout merge, etc. One of the benefits by doing this is that the MDT
293          * no longer needs to understand layout.
294          *
295          * However, layout creation, removal, and fetch should still use
296          * xattr_{get,set}() because they don't interpret layout on the
297          * MDT layer.
298          *
299          * \param[in] env       execution environment
300          * \param[in] obj       MD object
301          * \param[in] layout    data structure to describe the changes to
302          *                      the MD object's layout
303          *
304          * \retval 0            success
305          * \retval -ne          error code
306          */
307         int (*moo_layout_change)(const struct lu_env *env,
308                                  struct md_object *obj,
309                                  struct md_layout_change *layout);
310 };
311
312 /**
313  * Operations implemented for each directory object.
314  */
315 struct md_dir_operations {
316         int (*mdo_is_subdir)(const struct lu_env *env, struct md_object *obj,
317                              const struct lu_fid *fid);
318
319         int (*mdo_lookup)(const struct lu_env *env, struct md_object *obj,
320                           const struct lu_name *lname, struct lu_fid *fid,
321                           struct md_op_spec *spec);
322
323         mdl_mode_t (*mdo_lock_mode)(const struct lu_env *env,
324                                     struct md_object *obj,
325                                     mdl_mode_t mode);
326
327         int (*mdo_create)(const struct lu_env *env, struct md_object *pobj,
328                           const struct lu_name *lname, struct md_object *child,
329                           struct md_op_spec *spec,
330                           struct md_attr *ma);
331
332         /** This method is used for creating data object for this meta object*/
333         int (*mdo_create_data)(const struct lu_env *env, struct md_object *p,
334                                struct md_object *o,
335                                const struct md_op_spec *spec,
336                                struct md_attr *ma);
337
338         int (*mdo_rename)(const struct lu_env *env, struct md_object *spobj,
339                           struct md_object *tpobj, const struct lu_fid *lf,
340                           const struct lu_name *lsname, struct md_object *tobj,
341                           const struct lu_name *ltname, struct md_attr *ma);
342
343         int (*mdo_link)(const struct lu_env *env, struct md_object *tgt_obj,
344                         struct md_object *src_obj, const struct lu_name *lname,
345                         struct md_attr *ma);
346
347         int (*mdo_unlink)(const struct lu_env *env, struct md_object *pobj,
348                           struct md_object *cobj, const struct lu_name *lname,
349                           struct md_attr *ma, int no_name);
350
351         int (*mdo_migrate)(const struct lu_env *env, struct md_object *pobj,
352                            struct md_object *sobj, const struct lu_name *lname,
353                            struct md_object *tobj, struct md_op_spec *spec,
354                            struct md_attr *ma);
355 };
356
357 struct md_device_operations {
358         /** meta-data device related handlers. */
359         int (*mdo_root_get)(const struct lu_env *env, struct md_device *m,
360                             struct lu_fid *f);
361
362         const struct dt_device_param *(*mdo_dtconf_get)(const struct lu_env *e,
363                                                         struct md_device *m);
364
365         int (*mdo_statfs)(const struct lu_env *env, struct md_device *m,
366                           struct obd_statfs *sfs);
367
368         int (*mdo_llog_ctxt_get)(const struct lu_env *env,
369                                  struct md_device *m, int idx, void **h);
370
371         int (*mdo_iocontrol)(const struct lu_env *env, struct md_device *m,
372                              unsigned int cmd, int len, void *data);
373 };
374
375 struct md_device {
376         struct lu_device                   md_lu_dev;
377         const struct md_device_operations *md_ops;
378 };
379
380 struct md_object {
381         struct lu_object                   mo_lu;
382         const struct md_object_operations *mo_ops;
383         const struct md_dir_operations    *mo_dir_ops;
384 };
385
386 static inline struct md_device *lu2md_dev(const struct lu_device *d)
387 {
388         LASSERT(IS_ERR(d) || lu_device_is_md(d));
389         return container_of_safe(d, struct md_device, md_lu_dev);
390 }
391
392 static inline struct lu_device *md2lu_dev(struct md_device *d)
393 {
394         return &d->md_lu_dev;
395 }
396
397 static inline struct md_object *lu2md(const struct lu_object *o)
398 {
399         LASSERT(o == NULL || IS_ERR(o) || lu_device_is_md(o->lo_dev));
400         return container_of_safe(o, struct md_object, mo_lu);
401 }
402
403 static inline int md_device_init(struct md_device *md, struct lu_device_type *t)
404 {
405         return lu_device_init(&md->md_lu_dev, t);
406 }
407
408 static inline void md_device_fini(struct md_device *md)
409 {
410         lu_device_fini(&md->md_lu_dev);
411 }
412
413 static inline struct md_object *md_object_find_slice(const struct lu_env *env,
414                                                      struct md_device *md,
415                                                      const struct lu_fid *f)
416 {
417         return lu2md(lu_object_find_slice(env, md2lu_dev(md), f, NULL));
418 }
419
420
421 /** md operations */
422 static inline int mo_permission(const struct lu_env *env, struct md_object *p,
423                                 struct md_object *c, struct md_attr *at,
424                                 unsigned int may_mask)
425 {
426         LASSERT(c->mo_ops->moo_permission);
427         return c->mo_ops->moo_permission(env, p, c, at, may_mask);
428 }
429
430 static inline int mo_attr_get(const struct lu_env *env, struct md_object *m,
431                               struct md_attr *at)
432 {
433         LASSERT(m->mo_ops->moo_attr_get);
434         return m->mo_ops->moo_attr_get(env, m, at);
435 }
436
437 static inline int mo_readlink(const struct lu_env *env,
438                               struct md_object *m,
439                               struct lu_buf *buf)
440 {
441         LASSERT(m->mo_ops->moo_readlink);
442         return m->mo_ops->moo_readlink(env, m, buf);
443 }
444
445 static inline int mo_changelog(const struct lu_env *env,
446                                enum changelog_rec_type type,
447                                enum changelog_rec_flags clf_flags,
448                                struct md_device *m, const struct lu_fid *fid)
449 {
450         struct lu_fid rootfid;
451         struct md_object *root;
452         int rc;
453
454         rc = m->md_ops->mdo_root_get(env, m, &rootfid);
455         if (rc)
456                 return rc;
457
458         root = md_object_find_slice(env, m, &rootfid);
459         if (IS_ERR(root))
460                 RETURN(PTR_ERR(root));
461
462         LASSERT(root->mo_ops->moo_changelog);
463         rc = root->mo_ops->moo_changelog(env, type, clf_flags, m, fid);
464
465         lu_object_put(env, &root->mo_lu);
466
467         return rc;
468 }
469
470 static inline int mo_attr_set(const struct lu_env *env,
471                               struct md_object *m,
472                               const struct md_attr *at)
473 {
474         LASSERT(m->mo_ops->moo_attr_set);
475         return m->mo_ops->moo_attr_set(env, m, at);
476 }
477
478 static inline int mo_xattr_get(const struct lu_env *env,
479                                struct md_object *m,
480                                struct lu_buf *buf,
481                                const char *name)
482 {
483         LASSERT(m->mo_ops->moo_xattr_get);
484         return m->mo_ops->moo_xattr_get(env, m, buf, name);
485 }
486
487 static inline int mo_xattr_del(const struct lu_env *env,
488                                struct md_object *m,
489                                const char *name)
490 {
491         LASSERT(m->mo_ops->moo_xattr_del);
492         return m->mo_ops->moo_xattr_del(env, m, name);
493 }
494
495 static inline int mo_xattr_set(const struct lu_env *env,
496                                struct md_object *m,
497                                const struct lu_buf *buf,
498                                const char *name,
499                                int flags)
500 {
501         LASSERT(m->mo_ops->moo_xattr_set);
502         return m->mo_ops->moo_xattr_set(env, m, buf, name, flags);
503 }
504
505 static inline int mo_xattr_list(const struct lu_env *env,
506                                 struct md_object *m,
507                                 struct lu_buf *buf)
508 {
509         LASSERT(m->mo_ops->moo_xattr_list);
510         return m->mo_ops->moo_xattr_list(env, m, buf);
511 }
512
513 static inline int mo_invalidate(const struct lu_env *env, struct md_object *m)
514 {
515         LASSERT(m->mo_ops->moo_invalidate);
516         return m->mo_ops->moo_invalidate(env, m);
517 }
518
519 static inline int mo_layout_change(const struct lu_env *env,
520                                    struct md_object *m,
521                                    struct md_layout_change *layout)
522 {
523         /* need instantiate objects which in the access range */
524         LASSERT(m->mo_ops->moo_layout_change);
525         return m->mo_ops->moo_layout_change(env, m, layout);
526 }
527
528 static inline int mo_swap_layouts(const struct lu_env *env,
529                                   struct md_object *o1,
530                                   struct md_object *o2, __u64 flags)
531 {
532         LASSERT(o1->mo_ops->moo_swap_layouts);
533         LASSERT(o2->mo_ops->moo_swap_layouts);
534         if (o1->mo_ops->moo_swap_layouts != o2->mo_ops->moo_swap_layouts)
535                 return -EPERM;
536         return o1->mo_ops->moo_swap_layouts(env, o1, o2, flags);
537 }
538
539 static inline int mo_open(const struct lu_env *env, struct md_object *m,
540                           u64 open_flags, struct md_op_spec *spec)
541 {
542         LASSERT(m->mo_ops->moo_open);
543         return m->mo_ops->moo_open(env, m, open_flags, spec);
544 }
545
546 static inline int mo_close(const struct lu_env *env, struct md_object *m,
547                            struct md_attr *ma, u64 open_flags)
548 {
549         LASSERT(m->mo_ops->moo_close);
550         return m->mo_ops->moo_close(env, m, ma, open_flags);
551 }
552
553 static inline int mo_readpage(const struct lu_env *env,
554                               struct md_object *m,
555                               const struct lu_rdpg *rdpg)
556 {
557         LASSERT(m->mo_ops->moo_readpage);
558         return m->mo_ops->moo_readpage(env, m, rdpg);
559 }
560
561 static inline int mo_object_sync(const struct lu_env *env, struct md_object *m)
562 {
563         LASSERT(m->mo_ops->moo_object_sync);
564         return m->mo_ops->moo_object_sync(env, m);
565 }
566
567 static inline int mo_object_lock(const struct lu_env *env,
568                                  struct md_object *m,
569                                  struct lustre_handle *lh,
570                                  struct ldlm_enqueue_info *einfo,
571                                  union ldlm_policy_data *policy)
572 {
573         LASSERT(m->mo_ops->moo_object_lock);
574         return m->mo_ops->moo_object_lock(env, m, lh, einfo, policy);
575 }
576
577 static inline int mo_object_unlock(const struct lu_env *env,
578                                    struct md_object *m,
579                                    struct ldlm_enqueue_info *einfo,
580                                    union ldlm_policy_data *policy)
581 {
582         LASSERT(m->mo_ops->moo_object_unlock);
583         return m->mo_ops->moo_object_unlock(env, m, einfo, policy);
584 }
585
586 static inline int mdo_lookup(const struct lu_env *env,
587                              struct md_object *p,
588                              const struct lu_name *lname,
589                              struct lu_fid *f,
590                              struct md_op_spec *spec)
591 {
592         LASSERT(p->mo_dir_ops->mdo_lookup);
593         return p->mo_dir_ops->mdo_lookup(env, p, lname, f, spec);
594 }
595
596 static inline mdl_mode_t mdo_lock_mode(const struct lu_env *env,
597                                        struct md_object *mo,
598                                        mdl_mode_t lm)
599 {
600         if (mo->mo_dir_ops->mdo_lock_mode == NULL)
601                 return MDL_MINMODE;
602         return mo->mo_dir_ops->mdo_lock_mode(env, mo, lm);
603 }
604
605 static inline int mdo_create(const struct lu_env *env,
606                              struct md_object *p,
607                              const struct lu_name *lchild_name,
608                              struct md_object *c,
609                              struct md_op_spec *spc,
610                              struct md_attr *at)
611 {
612         LASSERT(p->mo_dir_ops->mdo_create);
613         return p->mo_dir_ops->mdo_create(env, p, lchild_name, c, spc, at);
614 }
615
616 static inline int mdo_create_data(const struct lu_env *env,
617                                   struct md_object *p,
618                                   struct md_object *c,
619                                   const struct md_op_spec *spec,
620                                   struct md_attr *ma)
621 {
622         LASSERT(c->mo_dir_ops->mdo_create_data);
623         return c->mo_dir_ops->mdo_create_data(env, p, c, spec, ma);
624 }
625
626 static inline int mdo_rename(const struct lu_env *env,
627                              struct md_object *sp,
628                              struct md_object *tp,
629                              const struct lu_fid *lf,
630                              const struct lu_name *lsname,
631                              struct md_object *t,
632                              const struct lu_name *ltname,
633                              struct md_attr *ma)
634 {
635         LASSERT(tp->mo_dir_ops->mdo_rename);
636         return tp->mo_dir_ops->mdo_rename(env, sp, tp, lf, lsname, t, ltname,
637                                           ma);
638 }
639
640 static inline int mdo_migrate(const struct lu_env *env,
641                              struct md_object *pobj,
642                              struct md_object *sobj,
643                              const struct lu_name *lname,
644                              struct md_object *tobj,
645                              struct md_op_spec *spec,
646                              struct md_attr *ma)
647 {
648         LASSERT(pobj->mo_dir_ops->mdo_migrate);
649         return pobj->mo_dir_ops->mdo_migrate(env, pobj, sobj, lname, tobj, spec,
650                                              ma);
651 }
652
653 static inline int mdo_is_subdir(const struct lu_env *env,
654                                 struct md_object *mo,
655                                 const struct lu_fid *fid)
656 {
657         LASSERT(mo->mo_dir_ops->mdo_is_subdir);
658         return mo->mo_dir_ops->mdo_is_subdir(env, mo, fid);
659 }
660
661 static inline int mdo_link(const struct lu_env *env,
662                            struct md_object *p,
663                            struct md_object *s,
664                            const struct lu_name *lname,
665                            struct md_attr *ma)
666 {
667         LASSERT(s->mo_dir_ops->mdo_link);
668         return s->mo_dir_ops->mdo_link(env, p, s, lname, ma);
669 }
670
671 static inline int mdo_unlink(const struct lu_env *env,
672                              struct md_object *p,
673                              struct md_object *c,
674                              const struct lu_name *lname,
675                              struct md_attr *ma, int no_name)
676 {
677         LASSERT(p->mo_dir_ops->mdo_unlink);
678         return p->mo_dir_ops->mdo_unlink(env, p, c, lname, ma, no_name);
679 }
680
681 static inline int mdo_statfs(const struct lu_env *env,
682                              struct md_device *m,
683                              struct obd_statfs *sfs)
684 {
685         LASSERT(m->md_ops->mdo_statfs);
686         return m->md_ops->mdo_statfs(env, m, sfs);
687 }
688
689 struct dt_device;
690
691 void lustre_som_swab(struct lustre_som_attrs *attrs);
692 int lustre_buf2hsm(void *buf, int rc, struct md_hsm *mh);
693 void lustre_hsm2buf(void *buf, const struct md_hsm *mh);
694
695 enum {
696         UCRED_INVALID   = -1,
697         UCRED_INIT      = 0,
698         UCRED_OLD       = 1,
699         UCRED_NEW       = 2,
700 };
701
702 struct lu_ucred {
703         __u32                    uc_valid;
704         __u32                    uc_o_uid;
705         __u32                    uc_o_gid;
706         __u32                    uc_o_fsuid;
707         __u32                    uc_o_fsgid;
708         __u32                    uc_uid;
709         __u32                    uc_gid;
710         __u32                    uc_fsuid;
711         __u32                    uc_fsgid;
712         __u32                    uc_suppgids[2];
713         cfs_cap_t                uc_cap;
714         __u32                    uc_umask;
715         struct group_info       *uc_ginfo;
716         struct md_identity      *uc_identity;
717         char                     uc_jobid[LUSTRE_JOBID_SIZE];
718         lnet_nid_t               uc_nid;
719         bool                     uc_enable_audit;
720 };
721
722 struct lu_ucred *lu_ucred(const struct lu_env *env);
723
724 struct lu_ucred *lu_ucred_check(const struct lu_env *env);
725
726 struct lu_ucred *lu_ucred_assert(const struct lu_env *env);
727
728 int lu_ucred_global_init(void);
729
730 void lu_ucred_global_fini(void);
731
732 #define md_cap_t(x) (x)
733
734 #define MD_CAP_TO_MASK(x) BIT(x)
735
736 #define md_cap_raised(c, flag) (md_cap_t(c) & MD_CAP_TO_MASK(flag))
737
738 /* capable() is copied from linux kernel! */
739 static inline int md_capable(struct lu_ucred *uc, cfs_cap_t cap)
740 {
741         if (md_cap_raised(uc->uc_cap, cap))
742                 return 1;
743         return 0;
744 }
745
746 /** @} md */
747 #endif /* _LINUX_MD_OBJECT_H */