Whamcloud - gitweb
LU-7845 gss: support namespace in lgss_keyring
[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, 2015, 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/include/md_object.h
33  *
34  * Extention of lu_object.h for metadata objects
35  */
36
37 #ifndef _LUSTRE_MD_OBJECT_H
38 #define _LUSTRE_MD_OBJECT_H
39
40 #ifndef HAVE_SERVER_SUPPORT
41 # error "client code should not depend on md_object.h"
42 #endif /* !HAVE_SERVER_SUPPORT */
43
44 /** \defgroup md md
45  * Sub-class of lu_object with methods common for "meta-data" objects in MDT
46  * stack.
47  *
48  * Meta-data objects implement namespace operations: you can link, unlink
49  * them, and treat them as directories.
50  *
51  * Examples: mdt, cmm, and mdt are implementations of md interface.
52  * @{
53  */
54
55
56 /*
57  * super-class definitions.
58  */
59 #include <dt_object.h>
60
61 struct md_device;
62 struct md_device_operations;
63 struct md_object;
64 struct obd_export;
65
66 /** metadata attributes */
67 enum ma_valid {
68         MA_INODE     = 1 << 0,
69         MA_LOV       = 1 << 1,
70         MA_FLAGS     = 1 << 2,
71         MA_LMV       = 1 << 3,
72         MA_ACL_DEF   = 1 << 4,
73         MA_LOV_DEF   = 1 << 5,
74         MA_HSM       = 1 << 6,
75         MA_PFID      = 1 << 7,
76         MA_LMV_DEF   = 1 << 8,
77 };
78
79 typedef enum {
80         MDL_MINMODE  = 0,
81         MDL_EX       = 1,
82         MDL_PW       = 2,
83         MDL_PR       = 4,
84         MDL_CW       = 8,
85         MDL_CR       = 16,
86         MDL_NL       = 32,
87         MDL_GROUP    = 64,
88         MDL_MAXMODE
89 } mdl_mode_t;
90
91 typedef enum {
92         MDT_NUL_LOCK = 0,
93         MDT_REG_LOCK = (1 << 0),
94         MDT_PDO_LOCK = (1 << 1)
95 } mdl_type_t;
96
97 /* lfs rgetfacl permission check */
98 #define MAY_RGETFACL    (1 << 14)
99
100 /* memory structure for hsm attributes
101  * for fields description see the on disk structure hsm_attrs
102  * which is defined in lustre_idl.h
103  */
104 struct md_hsm {
105         __u32   mh_compat;
106         __u32   mh_flags;
107         __u64   mh_arch_id;
108         __u64   mh_arch_ver;
109 };
110
111 struct md_attr {
112         __u64                   ma_valid;
113         __u64                   ma_need;
114         __u64                   ma_attr_flags;
115         struct lu_attr          ma_attr;
116         struct lu_fid           ma_pfid;
117         struct md_hsm           ma_hsm;
118         struct lov_mds_md      *ma_lmm;
119         union lmv_mds_md       *ma_lmv;
120         void                   *ma_acl;
121         int                     ma_lmm_size;
122         int                     ma_lmv_size;
123         int                     ma_acl_size;
124 };
125
126 /** Additional parameters for create */
127 struct md_op_spec {
128         union {
129                 /** symlink target */
130                 const char               *sp_symname;
131                 /** eadata for regular files */
132                 struct md_spec_reg {
133                         const void *eadata;
134                         int  eadatalen;
135                 } sp_ea;
136         } u;
137
138         /** Create flag from client: such as MDS_OPEN_CREAT, and others. */
139         __u64      sp_cr_flags;
140
141         /* File security context for creates. */
142         const char      *sp_cr_file_secctx_name; /* (security) xattr name */
143         void            *sp_cr_file_secctx; /* xattr value */
144         size_t           sp_cr_file_secctx_size; /* xattr value size */
145
146         /** don't create lov objects or llog cookie - this replay */
147         unsigned int no_create:1,
148                      sp_cr_lookup:1, /* do lookup sanity check or not. */
149                      sp_rm_entry:1,  /* only remove name entry */
150                      sp_permitted:1, /* do not check permission */
151                      sp_migrate_close:1; /* close the file during migrate */
152         /** Current lock mode for parent dir where create is performing. */
153         mdl_mode_t sp_cr_mode;
154
155         /** to create directory */
156         const struct dt_index_features *sp_feat;
157 };
158
159 union ldlm_policy_data;
160 /**
161  * Operations implemented for each md object (both directory and leaf).
162  */
163 struct md_object_operations {
164         int (*moo_permission)(const struct lu_env *env,
165                               struct md_object *pobj, struct md_object *cobj,
166                               struct md_attr *attr, int mask);
167
168         int (*moo_attr_get)(const struct lu_env *env, struct md_object *obj,
169                             struct md_attr *attr);
170
171         int (*moo_attr_set)(const struct lu_env *env, struct md_object *obj,
172                             const struct md_attr *attr);
173
174         int (*moo_xattr_get)(const struct lu_env *env, struct md_object *obj,
175                              struct lu_buf *buf, const char *name);
176
177         int (*moo_xattr_list)(const struct lu_env *env, struct md_object *obj,
178                               struct lu_buf *buf);
179
180         int (*moo_xattr_set)(const struct lu_env *env, struct md_object *obj,
181                              const struct lu_buf *buf, const char *name,
182                              int fl);
183
184         int (*moo_xattr_del)(const struct lu_env *env, struct md_object *obj,
185                              const char *name);
186
187         /** This method is used to swap the layouts between 2 objects */
188         int (*moo_swap_layouts)(const struct lu_env *env,
189                                struct md_object *obj1, struct md_object *obj2,
190                                __u64 flags);
191
192         /** \retval number of bytes actually read upon success */
193         int (*moo_readpage)(const struct lu_env *env, struct md_object *obj,
194                             const struct lu_rdpg *rdpg);
195
196         int (*moo_readlink)(const struct lu_env *env, struct md_object *obj,
197                             struct lu_buf *buf);
198         int (*moo_changelog)(const struct lu_env *env,
199                              enum changelog_rec_type type, int flags,
200                              struct md_object *obj);
201
202         int (*moo_open)(const struct lu_env *env,
203                         struct md_object *obj, int flag);
204
205         int (*moo_close)(const struct lu_env *env, struct md_object *obj,
206                          struct md_attr *ma, int mode);
207
208         int (*moo_object_sync)(const struct lu_env *, struct md_object *);
209
210         int (*moo_object_lock)(const struct lu_env *env, struct md_object *obj,
211                                struct lustre_handle *lh,
212                                struct ldlm_enqueue_info *einfo,
213                                union ldlm_policy_data *policy);
214         int (*moo_object_unlock)(const struct lu_env *env,
215                                  struct md_object *obj,
216                                  struct ldlm_enqueue_info *einfo,
217                                  union ldlm_policy_data *policy);
218
219         int (*moo_invalidate)(const struct lu_env *env, struct md_object *obj);
220 };
221
222 /**
223  * Operations implemented for each directory object.
224  */
225 struct md_dir_operations {
226         int (*mdo_is_subdir) (const struct lu_env *env, struct md_object *obj,
227                               const struct lu_fid *fid, struct lu_fid *sfid);
228
229         int (*mdo_lookup)(const struct lu_env *env, struct md_object *obj,
230                           const struct lu_name *lname, struct lu_fid *fid,
231                           struct md_op_spec *spec);
232
233         mdl_mode_t (*mdo_lock_mode)(const struct lu_env *env,
234                                     struct md_object *obj,
235                                     mdl_mode_t mode);
236
237         int (*mdo_create)(const struct lu_env *env, struct md_object *pobj,
238                           const struct lu_name *lname, struct md_object *child,
239                           struct md_op_spec *spec,
240                           struct md_attr *ma);
241
242         /** This method is used for creating data object for this meta object*/
243         int (*mdo_create_data)(const struct lu_env *env, struct md_object *p,
244                                struct md_object *o,
245                                const struct md_op_spec *spec,
246                                struct md_attr *ma);
247
248         int (*mdo_rename)(const struct lu_env *env, struct md_object *spobj,
249                           struct md_object *tpobj, const struct lu_fid *lf,
250                           const struct lu_name *lsname, struct md_object *tobj,
251                           const struct lu_name *ltname, struct md_attr *ma);
252
253         int (*mdo_link)(const struct lu_env *env, struct md_object *tgt_obj,
254                         struct md_object *src_obj, const struct lu_name *lname,
255                         struct md_attr *ma);
256
257         int (*mdo_unlink)(const struct lu_env *env, struct md_object *pobj,
258                           struct md_object *cobj, const struct lu_name *lname,
259                           struct md_attr *ma, int no_name);
260
261         int (*mdo_migrate)(const struct lu_env *env, struct md_object *pobj,
262                            struct md_object *sobj, const struct lu_name *lname,
263                            struct md_object *tobj, struct md_attr *ma);
264 };
265
266 struct md_device_operations {
267         /** meta-data device related handlers. */
268         int (*mdo_root_get)(const struct lu_env *env, struct md_device *m,
269                             struct lu_fid *f);
270
271         int (*mdo_maxeasize_get)(const struct lu_env *env, struct md_device *m,
272                                 int *easize);
273
274         int (*mdo_statfs)(const struct lu_env *env, struct md_device *m,
275                           struct obd_statfs *sfs);
276
277         int (*mdo_llog_ctxt_get)(const struct lu_env *env,
278                                  struct md_device *m, int idx, void **h);
279
280         int (*mdo_iocontrol)(const struct lu_env *env, struct md_device *m,
281                              unsigned int cmd, int len, void *data);
282 };
283
284 struct md_device {
285         struct lu_device                   md_lu_dev;
286         const struct md_device_operations *md_ops;
287 };
288
289 struct md_object {
290         struct lu_object                   mo_lu;
291         const struct md_object_operations *mo_ops;
292         const struct md_dir_operations    *mo_dir_ops;
293 };
294
295 static inline struct md_device *lu2md_dev(const struct lu_device *d)
296 {
297         LASSERT(IS_ERR(d) || lu_device_is_md(d));
298         return container_of0(d, struct md_device, md_lu_dev);
299 }
300
301 static inline struct lu_device *md2lu_dev(struct md_device *d)
302 {
303         return &d->md_lu_dev;
304 }
305
306 static inline struct md_object *lu2md(const struct lu_object *o)
307 {
308         LASSERT(o == NULL || IS_ERR(o) || lu_device_is_md(o->lo_dev));
309         return container_of0(o, struct md_object, mo_lu);
310 }
311
312 static inline int md_device_init(struct md_device *md, struct lu_device_type *t)
313 {
314         return lu_device_init(&md->md_lu_dev, t);
315 }
316
317 static inline void md_device_fini(struct md_device *md)
318 {
319         lu_device_fini(&md->md_lu_dev);
320 }
321
322 static inline struct md_object *md_object_find_slice(const struct lu_env *env,
323                                                      struct md_device *md,
324                                                      const struct lu_fid *f)
325 {
326         return lu2md(lu_object_find_slice(env, md2lu_dev(md), f, NULL));
327 }
328
329
330 /** md operations */
331 static inline int mo_permission(const struct lu_env *env,
332                                 struct md_object *p,
333                                 struct md_object *c,
334                                 struct md_attr *at,
335                                 int mask)
336 {
337         LASSERT(c->mo_ops->moo_permission);
338         return c->mo_ops->moo_permission(env, p, c, at, mask);
339 }
340
341 static inline int mo_attr_get(const struct lu_env *env,
342                               struct md_object *m,
343                               struct md_attr *at)
344 {
345         LASSERT(m->mo_ops->moo_attr_get);
346         return m->mo_ops->moo_attr_get(env, m, at);
347 }
348
349 static inline int mo_readlink(const struct lu_env *env,
350                               struct md_object *m,
351                               struct lu_buf *buf)
352 {
353         LASSERT(m->mo_ops->moo_readlink);
354         return m->mo_ops->moo_readlink(env, m, buf);
355 }
356
357 static inline int mo_changelog(const struct lu_env *env,
358                                enum changelog_rec_type type,
359                                int flags, struct md_object *m)
360 {
361         LASSERT(m->mo_ops->moo_changelog);
362         return m->mo_ops->moo_changelog(env, type, flags, m);
363 }
364
365 static inline int mo_attr_set(const struct lu_env *env,
366                               struct md_object *m,
367                               const struct md_attr *at)
368 {
369         LASSERT(m->mo_ops->moo_attr_set);
370         return m->mo_ops->moo_attr_set(env, m, at);
371 }
372
373 static inline int mo_xattr_get(const struct lu_env *env,
374                                struct md_object *m,
375                                struct lu_buf *buf,
376                                const char *name)
377 {
378         LASSERT(m->mo_ops->moo_xattr_get);
379         return m->mo_ops->moo_xattr_get(env, m, buf, name);
380 }
381
382 static inline int mo_xattr_del(const struct lu_env *env,
383                                struct md_object *m,
384                                const char *name)
385 {
386         LASSERT(m->mo_ops->moo_xattr_del);
387         return m->mo_ops->moo_xattr_del(env, m, name);
388 }
389
390 static inline int mo_xattr_set(const struct lu_env *env,
391                                struct md_object *m,
392                                const struct lu_buf *buf,
393                                const char *name,
394                                int flags)
395 {
396         LASSERT(m->mo_ops->moo_xattr_set);
397         return m->mo_ops->moo_xattr_set(env, m, buf, name, flags);
398 }
399
400 static inline int mo_xattr_list(const struct lu_env *env,
401                                 struct md_object *m,
402                                 struct lu_buf *buf)
403 {
404         LASSERT(m->mo_ops->moo_xattr_list);
405         return m->mo_ops->moo_xattr_list(env, m, buf);
406 }
407
408 static inline int mo_invalidate(const struct lu_env *env, struct md_object *m)
409 {
410         LASSERT(m->mo_ops->moo_invalidate);
411         return m->mo_ops->moo_invalidate(env, m);
412 }
413
414 static inline int mo_swap_layouts(const struct lu_env *env,
415                                   struct md_object *o1,
416                                   struct md_object *o2, __u64 flags)
417 {
418         LASSERT(o1->mo_ops->moo_swap_layouts);
419         LASSERT(o2->mo_ops->moo_swap_layouts);
420         if (o1->mo_ops->moo_swap_layouts != o2->mo_ops->moo_swap_layouts)
421                 return -EPERM;
422         return o1->mo_ops->moo_swap_layouts(env, o1, o2, flags);
423 }
424
425 static inline int mo_open(const struct lu_env *env,
426                           struct md_object *m,
427                           int flags)
428 {
429         LASSERT(m->mo_ops->moo_open);
430         return m->mo_ops->moo_open(env, m, flags);
431 }
432
433 static inline int mo_close(const struct lu_env *env,
434                            struct md_object *m,
435                            struct md_attr *ma,
436                            int mode)
437 {
438         LASSERT(m->mo_ops->moo_close);
439         return m->mo_ops->moo_close(env, m, ma, mode);
440 }
441
442 static inline int mo_readpage(const struct lu_env *env,
443                               struct md_object *m,
444                               const struct lu_rdpg *rdpg)
445 {
446         LASSERT(m->mo_ops->moo_readpage);
447         return m->mo_ops->moo_readpage(env, m, rdpg);
448 }
449
450 static inline int mo_object_sync(const struct lu_env *env, struct md_object *m)
451 {
452         LASSERT(m->mo_ops->moo_object_sync);
453         return m->mo_ops->moo_object_sync(env, m);
454 }
455
456 static inline int mo_object_lock(const struct lu_env *env,
457                                  struct md_object *m,
458                                  struct lustre_handle *lh,
459                                  struct ldlm_enqueue_info *einfo,
460                                  union ldlm_policy_data *policy)
461 {
462         LASSERT(m->mo_ops->moo_object_lock);
463         return m->mo_ops->moo_object_lock(env, m, lh, einfo, policy);
464 }
465
466 static inline int mo_object_unlock(const struct lu_env *env,
467                                    struct md_object *m,
468                                    struct ldlm_enqueue_info *einfo,
469                                    union ldlm_policy_data *policy)
470 {
471         LASSERT(m->mo_ops->moo_object_unlock);
472         return m->mo_ops->moo_object_unlock(env, m, einfo, policy);
473 }
474
475 static inline int mdo_lookup(const struct lu_env *env,
476                              struct md_object *p,
477                              const struct lu_name *lname,
478                              struct lu_fid *f,
479                              struct md_op_spec *spec)
480 {
481         LASSERT(p->mo_dir_ops->mdo_lookup);
482         return p->mo_dir_ops->mdo_lookup(env, p, lname, f, spec);
483 }
484
485 static inline mdl_mode_t mdo_lock_mode(const struct lu_env *env,
486                                        struct md_object *mo,
487                                        mdl_mode_t lm)
488 {
489         if (mo->mo_dir_ops->mdo_lock_mode == NULL)
490                 return MDL_MINMODE;
491         return mo->mo_dir_ops->mdo_lock_mode(env, mo, lm);
492 }
493
494 static inline int mdo_create(const struct lu_env *env,
495                              struct md_object *p,
496                              const struct lu_name *lchild_name,
497                              struct md_object *c,
498                              struct md_op_spec *spc,
499                              struct md_attr *at)
500 {
501         LASSERT(p->mo_dir_ops->mdo_create);
502         return p->mo_dir_ops->mdo_create(env, p, lchild_name, c, spc, at);
503 }
504
505 static inline int mdo_create_data(const struct lu_env *env,
506                                   struct md_object *p,
507                                   struct md_object *c,
508                                   const struct md_op_spec *spec,
509                                   struct md_attr *ma)
510 {
511         LASSERT(c->mo_dir_ops->mdo_create_data);
512         return c->mo_dir_ops->mdo_create_data(env, p, c, spec, ma);
513 }
514
515 static inline int mdo_rename(const struct lu_env *env,
516                              struct md_object *sp,
517                              struct md_object *tp,
518                              const struct lu_fid *lf,
519                              const struct lu_name *lsname,
520                              struct md_object *t,
521                              const struct lu_name *ltname,
522                              struct md_attr *ma)
523 {
524         LASSERT(tp->mo_dir_ops->mdo_rename);
525         return tp->mo_dir_ops->mdo_rename(env, sp, tp, lf, lsname, t, ltname,
526                                           ma);
527 }
528
529 static inline int mdo_migrate(const struct lu_env *env,
530                              struct md_object *pobj,
531                              struct md_object *sobj,
532                              const struct lu_name *lname,
533                              struct md_object *tobj,
534                              struct md_attr *ma)
535 {
536         LASSERT(pobj->mo_dir_ops->mdo_migrate);
537         return pobj->mo_dir_ops->mdo_migrate(env, pobj, sobj, lname, tobj, ma);
538 }
539
540 static inline int mdo_is_subdir(const struct lu_env *env,
541                                 struct md_object *mo,
542                                 const struct lu_fid *fid,
543                                 struct lu_fid *sfid)
544 {
545         LASSERT(mo->mo_dir_ops->mdo_is_subdir);
546         return mo->mo_dir_ops->mdo_is_subdir(env, mo, fid, sfid);
547 }
548
549 static inline int mdo_link(const struct lu_env *env,
550                            struct md_object *p,
551                            struct md_object *s,
552                            const struct lu_name *lname,
553                            struct md_attr *ma)
554 {
555         LASSERT(s->mo_dir_ops->mdo_link);
556         return s->mo_dir_ops->mdo_link(env, p, s, lname, ma);
557 }
558
559 static inline int mdo_unlink(const struct lu_env *env,
560                              struct md_object *p,
561                              struct md_object *c,
562                              const struct lu_name *lname,
563                              struct md_attr *ma, int no_name)
564 {
565         LASSERT(p->mo_dir_ops->mdo_unlink);
566         return p->mo_dir_ops->mdo_unlink(env, p, c, lname, ma, no_name);
567 }
568
569 /**
570  * Used in MDD/OUT layer for object lock rule
571  **/
572 enum mdd_object_role {
573         MOR_SRC_PARENT,
574         MOR_SRC_CHILD,
575         MOR_TGT_PARENT,
576         MOR_TGT_CHILD,
577         MOR_TGT_ORPHAN
578 };
579
580 struct dt_device;
581
582 int lustre_buf2hsm(void *buf, int rc, struct md_hsm *mh);
583 void lustre_hsm2buf(void *buf, const struct md_hsm *mh);
584
585 enum {
586         UCRED_INVALID   = -1,
587         UCRED_INIT      = 0,
588         UCRED_OLD       = 1,
589         UCRED_NEW       = 2,
590 };
591
592 struct lu_ucred {
593         __u32                    uc_valid;
594         __u32                    uc_o_uid;
595         __u32                    uc_o_gid;
596         __u32                    uc_o_fsuid;
597         __u32                    uc_o_fsgid;
598         __u32                    uc_uid;
599         __u32                    uc_gid;
600         __u32                    uc_fsuid;
601         __u32                    uc_fsgid;
602         __u32                    uc_suppgids[2];
603         cfs_cap_t                uc_cap;
604         __u32                    uc_umask;
605         struct group_info       *uc_ginfo;
606         struct md_identity      *uc_identity;
607         char                     uc_jobid[LUSTRE_JOBID_SIZE];
608 };
609
610 struct lu_ucred *lu_ucred(const struct lu_env *env);
611
612 struct lu_ucred *lu_ucred_check(const struct lu_env *env);
613
614 struct lu_ucred *lu_ucred_assert(const struct lu_env *env);
615
616 int lu_ucred_global_init(void);
617
618 void lu_ucred_global_fini(void);
619
620 #define md_cap_t(x) (x)
621
622 #define MD_CAP_TO_MASK(x) (1 << (x))
623
624 #define md_cap_raised(c, flag) (md_cap_t(c) & MD_CAP_TO_MASK(flag))
625
626 /* capable() is copied from linux kernel! */
627 static inline int md_capable(struct lu_ucred *uc, cfs_cap_t cap)
628 {
629         if (md_cap_raised(uc->uc_cap, cap))
630                 return 1;
631         return 0;
632 }
633
634 /** @} md */
635 #endif /* _LINUX_MD_OBJECT_H */