Whamcloud - gitweb
LU-3963 obdclass: convert to linux list api
[fs/lustre-release.git] / lustre / include / md_object.h
index d1554ea..f8d0f46 100644 (file)
@@ -27,7 +27,7 @@
  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  *
- * Copyright (c) 2011, 2012, Intel Corporation.
+ * Copyright (c) 2011, 2013, Intel Corporation.
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
  * super-class definitions.
  */
 #include <dt_object.h>
-#include <lvfs.h>
-
-/* LU-1051, temperary solution to reduce llog credits */
-#define DECLARE_LLOG_REWRITE  0
-#define DECLARE_LLOG_WRITE    INT_MAX
 
 struct md_device;
 struct md_device_operations;
 struct md_object;
 struct obd_export;
 
-enum {
-        UCRED_INVALID   = -1,
-        UCRED_INIT      = 0,
-        UCRED_OLD       = 1,
-        UCRED_NEW       = 2
-};
-
-enum {
-        MD_CAPAINFO_MAX = 5
-};
-
-/** there are at most 5 fids in one operation, see rename, NOTE the last one
- * is a temporary one used for is_subdir() */
-struct md_capainfo {
-        __u32                   mc_auth;
-        __u32                   mc_padding;
-        struct lu_fid           mc_fid[MD_CAPAINFO_MAX];
-        struct lustre_capa     *mc_capa[MD_CAPAINFO_MAX];
-};
-
 struct md_quota {
         struct obd_export       *mq_exp;
 };
 
-/**
- * Implemented in mdd/mdd_handler.c.
- *
- * XXX should be moved into separate .h/.c together with all md security
- * related definitions.
- */
-struct md_capainfo *md_capainfo(const struct lu_env *env);
 struct md_quota *md_quota(const struct lu_env *env);
 
 /** metadata attributes */
 enum ma_valid {
-        MA_INODE     = (1 << 0),
-        MA_LOV       = (1 << 1),
-        MA_COOKIE    = (1 << 2),
-        MA_FLAGS     = (1 << 3),
-        MA_LMV       = (1 << 4),
-        MA_ACL_DEF   = (1 << 5),
-        MA_LOV_DEF   = (1 << 6),
-        MA_LAY_GEN   = (1 << 7),
-        MA_HSM       = (1 << 8),
-        MA_SOM       = (1 << 9),
-        MA_PFID      = (1 << 10)
+       MA_INODE     = (1 << 0),
+       MA_LOV       = (1 << 1),
+       MA_COOKIE    = (1 << 2),
+       MA_FLAGS     = (1 << 3),
+       MA_LMV       = (1 << 4),
+       MA_ACL_DEF   = (1 << 5),
+       MA_LOV_DEF   = (1 << 6),
+       MA_LAY_GEN   = (1 << 7),
+       MA_HSM       = (1 << 8),
+       MA_SOM       = (1 << 9),
+       MA_PFID      = (1 << 10),
+       MA_LMV_DEF   = (1 << 11)
 };
 
 typedef enum {
@@ -168,16 +137,13 @@ struct md_attr {
         struct lu_fid           ma_pfid;
         struct md_hsm           ma_hsm;
         struct lov_mds_md      *ma_lmm;
-        struct lmv_stripe_md   *ma_lmv;
+       union lmv_mds_md       *ma_lmv;
         void                   *ma_acl;
-        struct llog_cookie     *ma_cookie;
         struct lustre_capa     *ma_capa;
         struct md_som_data     *ma_som;
         int                     ma_lmm_size;
-        int                     ma_big_lmm_used:1;
         int                     ma_lmv_size;
         int                     ma_acl_size;
-        int                     ma_cookie_size;
         __u16                   ma_layout_gen;
 };
 
@@ -212,6 +178,7 @@ struct md_op_spec {
         const struct dt_index_features *sp_feat;
 };
 
+union ldlm_policy_data;
 /**
  * Operations implemented for each md object (both directory and leaf).
  */
@@ -277,18 +244,21 @@ struct md_object_operations {
                             struct lustre_capa *, int renewal);
 
         int (*moo_object_sync)(const struct lu_env *, struct md_object *);
-        int (*moo_path)(const struct lu_env *env, struct md_object *obj,
-                        char *path, int pathlen, __u64 *recno, int *linkno);
-        int (*moo_file_lock)(const struct lu_env *env, struct md_object *obj,
-                             struct lov_mds_md *lmm, struct ldlm_extent *extent,
-                             struct lustre_handle *lockh);
-        int (*moo_file_unlock)(const struct lu_env *env, struct md_object *obj,
-                               struct lov_mds_md *lmm,
-                               struct lustre_handle *lockh);
+
+       int (*moo_file_lock)(const struct lu_env *env, struct md_object *obj,
+                            struct lov_mds_md *lmm, struct ldlm_extent *extent,
+                            struct lustre_handle *lockh);
+       int (*moo_file_unlock)(const struct lu_env *env, struct md_object *obj,
+                              struct lov_mds_md *lmm,
+                              struct lustre_handle *lockh);
        int (*moo_object_lock)(const struct lu_env *env, struct md_object *obj,
                               struct lustre_handle *lh,
                               struct ldlm_enqueue_info *einfo,
-                              void *policy);
+                              union ldlm_policy_data *policy);
+       int (*moo_object_unlock)(const struct lu_env *env,
+                                struct md_object *obj,
+                                struct ldlm_enqueue_info *einfo,
+                                union ldlm_policy_data *policy);
 };
 
 /**
@@ -326,10 +296,13 @@ struct md_dir_operations {
                         struct md_object *src_obj, const struct lu_name *lname,
                         struct md_attr *ma);
 
-        int (*mdo_unlink)(const struct lu_env *env, struct md_object *pobj,
-                          struct md_object *cobj, const struct lu_name *lname,
-                          struct md_attr *ma);
+       int (*mdo_unlink)(const struct lu_env *env, struct md_object *pobj,
+                         struct md_object *cobj, const struct lu_name *lname,
+                         struct md_attr *ma, int no_name);
 
+       int (*mdo_migrate)(const struct lu_env *env, struct md_object *pobj,
+                          struct md_object *sobj, const struct lu_name *lname,
+                          struct md_object *tobj, struct md_attr *ma);
         /** This method is used to compare a requested layout to an existing
          * layout (struct lov_mds_md_v1/3 vs struct lov_mds_md_v1/3) */
         int (*mdo_lum_lmm_cmp)(const struct lu_env *env,
@@ -356,11 +329,11 @@ struct md_dir_operations {
 
 struct md_device_operations {
         /** meta-data device related handlers. */
-        int (*mdo_root_get)(const struct lu_env *env, struct md_device *m,
-                            struct lu_fid *f);
+       int (*mdo_root_get)(const struct lu_env *env, struct md_device *m,
+                           struct lu_fid *f);
 
-        int (*mdo_maxsize_get)(const struct lu_env *env, struct md_device *m,
-                               int *md_size, int *cookie_size);
+       int (*mdo_maxeasize_get)(const struct lu_env *env, struct md_device *m,
+                               int *easize);
 
         int (*mdo_statfs)(const struct lu_env *env, struct md_device *m,
                           struct obd_statfs *sfs);
@@ -450,6 +423,14 @@ struct md_object {
         const struct md_dir_operations    *mo_dir_ops;
 };
 
+/* Mark the object to be dead, and can not be accessed anymore.
+ * XXX, right now, it will only be used for striped directory to
+ * mark the slave stripes dead, when deleting master object. It will be
+ * stored in slave LMV EA (see lod_mark_dead_object), which is only
+ * temporary, and will be removed later when we have proper way to mark
+ * the dead object. */
+#define LUSTRE_SLAVE_DEAD_FL           0x80000000
+
 /**
  * seq-server site.
  */
@@ -482,11 +463,6 @@ struct seq_server_site {
        struct lu_client_seq *ss_client_seq;
 };
 
-static inline int lu_device_is_md(const struct lu_device *d)
-{
-        return ergo(d != NULL, d->ld_type->ldt_tags & LU_DEVICE_MD);
-}
-
 static inline struct md_device *lu2md_dev(const struct lu_device *d)
 {
         LASSERT(IS_ERR(d) || lu_device_is_md(d));
@@ -509,17 +485,6 @@ static inline struct md_object *md_object_next(const struct md_object *obj)
         return (obj ? lu2md(lu_object_next(&obj->mo_lu)) : NULL);
 }
 
-static inline struct md_device *md_obj2dev(const struct md_object *o)
-{
-        LASSERT(o == NULL || IS_ERR(o) || lu_device_is_md(o->mo_lu.lo_dev));
-        return container_of0(o->mo_lu.lo_dev, struct md_device, md_lu_dev);
-}
-
-static inline struct seq_server_site *lu_site2seq(const struct lu_site *s)
-{
-       return s->ld_seq_site;
-}
-
 static inline int md_device_init(struct md_device *md, struct lu_device_type *t)
 {
         return lu_device_init(&md->md_lu_dev, t);
@@ -686,14 +651,6 @@ static inline int mo_capa_get(const struct lu_env *env,
         return m->mo_ops->moo_capa_get(env, m, c, renewal);
 }
 
-static inline int mo_path(const struct lu_env *env, struct md_object *m,
-                          char *path, int pathlen, __u64 *recno, int *linkno)
-{
-        if (m->mo_ops->moo_path == NULL)
-                return -ENOSYS;
-        return m->mo_ops->moo_path(env, m, path, pathlen, recno, linkno);
-}
-
 static inline int mo_object_sync(const struct lu_env *env, struct md_object *m)
 {
         LASSERT(m->mo_ops->moo_object_sync);
@@ -721,12 +678,21 @@ static inline int mo_object_lock(const struct lu_env *env,
                                 struct md_object *m,
                                 struct lustre_handle *lh,
                                 struct ldlm_enqueue_info *einfo,
-                                void *policy)
+                                union ldlm_policy_data *policy)
 {
        LASSERT(m->mo_ops->moo_object_lock);
        return m->mo_ops->moo_object_lock(env, m, lh, einfo, policy);
 }
 
+static inline int mo_object_unlock(const struct lu_env *env,
+                                  struct md_object *m,
+                                  struct ldlm_enqueue_info *einfo,
+                                  union ldlm_policy_data *policy)
+{
+       LASSERT(m->mo_ops->moo_object_unlock);
+       return m->mo_ops->moo_object_unlock(env, m, einfo, policy);
+}
+
 static inline int mdo_lookup(const struct lu_env *env,
                              struct md_object *p,
                              const struct lu_name *lname,
@@ -781,6 +747,17 @@ static inline int mdo_rename(const struct lu_env *env,
                                           ma);
 }
 
+static inline int mdo_migrate(const struct lu_env *env,
+                            struct md_object *pobj,
+                            struct md_object *sobj,
+                            const struct lu_name *lname,
+                            struct md_object *tobj,
+                            struct md_attr *ma)
+{
+       LASSERT(pobj->mo_dir_ops->mdo_migrate);
+       return pobj->mo_dir_ops->mdo_migrate(env, pobj, sobj, lname, tobj, ma);
+}
+
 static inline int mdo_is_subdir(const struct lu_env *env,
                                 struct md_object *mo,
                                 const struct lu_fid *fid,
@@ -801,13 +778,13 @@ static inline int mdo_link(const struct lu_env *env,
 }
 
 static inline int mdo_unlink(const struct lu_env *env,
-                             struct md_object *p,
-                             struct md_object *c,
-                             const struct lu_name *lname,
-                             struct md_attr *ma)
+                            struct md_object *p,
+                            struct md_object *c,
+                            const struct lu_name *lname,
+                            struct md_attr *ma, int no_name)
 {
        LASSERT(p->mo_dir_ops->mdo_unlink);
-       return p->mo_dir_ops->mdo_unlink(env, p, c, lname, ma);
+       return p->mo_dir_ops->mdo_unlink(env, p, c, lname, ma, no_name);
 }
 
 static inline int mdo_lum_lmm_cmp(const struct lu_env *env,
@@ -876,47 +853,46 @@ struct lu_local_obj_desc {
         __u32                            llod_oid;
         int                              llod_is_index;
         const struct dt_index_features  *llod_feat;
-        cfs_list_t                       llod_linkage;
+       struct list_head                 llod_linkage;
 };
 
-struct md_object *llo_store_resolve(const struct lu_env *env,
-                                    struct md_device *md,
-                                    struct dt_device *dt,
-                                    const char *path,
-                                    struct lu_fid *fid);
-
-struct md_object *llo_store_open(const struct lu_env *env,
-                                 struct md_device *md,
-                                 struct dt_device *dt,
-                                 const char *dirname,
-                                 const char *objname,
-                                 struct lu_fid *fid);
-
-struct md_object *llo_store_create_index(const struct lu_env *env,
-                                         struct md_device *md,
-                                         struct dt_device *dt,
-                                         const char *dirname,
-                                         const char *objname,
-                                         const struct lu_fid *fid,
-                                         const struct dt_index_features *feat);
-
-struct md_object *llo_store_create(const struct lu_env *env,
-                                   struct md_device *md,
-                                   struct dt_device *dt,
-                                   const char *dirname,
-                                   const char *objname,
-                                   const struct lu_fid *fid);
-
-void llo_local_obj_register(struct lu_local_obj_desc *);
-void llo_local_obj_unregister(struct lu_local_obj_desc *);
-
-int llo_local_objects_setup(const struct lu_env *env,
-                             struct md_device * md,
-                             struct dt_device * dt);
-
 int lustre_buf2som(void *buf, int rc, struct md_som_data *msd);
 int lustre_buf2hsm(void *buf, int rc, struct md_hsm *mh);
-void lustre_hsm2buf(void *buf, struct md_hsm *mh);
+void lustre_hsm2buf(void *buf, const struct md_hsm *mh);
+
+enum {
+       UCRED_INVALID   = -1,
+       UCRED_INIT      = 0,
+       UCRED_OLD       = 1,
+       UCRED_NEW       = 2,
+};
+
+struct lu_ucred {
+       __u32               uc_valid;
+       __u32               uc_o_uid;
+       __u32               uc_o_gid;
+       __u32               uc_o_fsuid;
+       __u32               uc_o_fsgid;
+       __u32               uc_uid;
+       __u32               uc_gid;
+       __u32               uc_fsuid;
+       __u32               uc_fsgid;
+       __u32               uc_suppgids[2];
+       cfs_cap_t           uc_cap;
+       __u32               uc_umask;
+       struct group_info   *uc_ginfo;
+       struct md_identity *uc_identity;
+};
+
+struct lu_ucred *lu_ucred(const struct lu_env *env);
+
+struct lu_ucred *lu_ucred_check(const struct lu_env *env);
+
+struct lu_ucred *lu_ucred_assert(const struct lu_env *env);
+
+int lu_ucred_global_init(void);
+
+void lu_ucred_global_fini(void);
 
 #define md_cap_t(x) (x)