Whamcloud - gitweb
b=15266
[fs/lustre-release.git] / lustre / cmm / mdc_object.c
index fde11da..edc2fb6 100644 (file)
@@ -1,29 +1,43 @@
 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
  * vim:expandtab:shiftwidth=8:tabstop=8:
  *
- *  lustre/cmm/mdc_object.c
- *  Lustre Cluster Metadata Manager (cmm)
+ * GPL HEADER START
  *
- *  Copyright (c) 2006 Cluster File Systems, Inc.
- *   Author: Mike Pershin <tappro@clusterfs.com>
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
- *   This file is part of the Lustre file system, http://www.lustre.org
- *   Lustre is a trademark of Cluster File Systems, Inc.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 only,
+ * as published by the Free Software Foundation.
  *
- *   You may have signed or agreed to another license before downloading
- *   this software.  If so, you are bound by the terms and conditions
- *   of that agreement, and the following does not apply to you.  See the
- *   LICENSE file included with this distribution for more information.
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License version 2 for more details (a copy is included
+ * in the LICENSE file that accompanied this code).
  *
- *   If you did not agree to a different license, then this copy of Lustre
- *   is open source software; you can redistribute it and/or modify it
- *   under the terms of version 2 of the GNU General Public License as
- *   published by the Free Software Foundation.
+ * You should have received a copy of the GNU General Public License
+ * version 2 along with this program; If not, see
+ * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
  *
- *   In either case, Lustre is distributed in the hope that it will be
- *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
- *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *   license text for more details.
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ * GPL HEADER END
+ */
+/*
+ * Copyright  2008 Sun Microsystems, Inc. All rights reserved
+ * Use is subject to license terms.
+ */
+/*
+ * This file is part of Lustre, http://www.lustre.org/
+ * Lustre is a trademark of Sun Microsystems, Inc.
+ *
+ * lustre/cmm/mdc_object.c
+ *
+ * Lustre Cluster Metadata Manager (cmm)
+ *
+ * Author: Mike Pershin <tappro@clusterfs.com>
  */
 
 #ifndef EXPORT_SYMTAB
@@ -154,7 +168,7 @@ static int mdc_req2attr_update(const struct lu_env *env,
         mci = mdc_info_get(env);
         req = mci->mci_req;
         LASSERT(req);
-        body = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF, sizeof(*body));
+        body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
         LASSERT(body);
         mdc_body2attr(body, ma);
 
@@ -162,8 +176,7 @@ static int mdc_req2attr_update(const struct lu_env *env,
                 struct lustre_capa *capa;
 
                 /* create for cross-ref will fetch mds capa from remote obj */
-                capa = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF + 1,
-                                      sizeof(*capa));
+                capa = req_capsule_server_get(&req->rq_pill, &RMF_CAPA1);
                 LASSERT(capa != NULL);
                 LASSERT(ma->ma_capa != NULL);
                 *ma->ma_capa = *capa;
@@ -177,12 +190,10 @@ static int mdc_req2attr_update(const struct lu_env *env,
                 RETURN(-EPROTO);
         }
 
-        lov = lustre_swab_repbuf(req, REPLY_REC_OFF + 1,
-                                 body->eadatasize, NULL);
-        if (lov == NULL) {
-                CERROR("Can't unpack MDS EA data\n");
+        lov = req_capsule_server_sized_get(&req->rq_pill, &RMF_MDT_MD,
+                                           body->eadatasize);
+        if (lov == NULL)
                 RETURN(-EPROTO);
-        }
 
         LASSERT(ma->ma_lmm != NULL);
         LASSERT(ma->ma_lmm_size >= body->eadatasize); 
@@ -198,12 +209,10 @@ static int mdc_req2attr_update(const struct lu_env *env,
                 RETURN(-EPROTO);
         }
 
-        cookie = lustre_msg_buf(req->rq_repmsg,
-                                REPLY_REC_OFF + 2, body->aclsize);
-        if (cookie == NULL) {
-                CERROR("Can't unpack unlink cookie data\n");
+        cookie = req_capsule_server_sized_get(&req->rq_pill, &RMF_ACL,
+                                              body->aclsize);
+        if (cookie == NULL)
                 RETURN(-EPROTO);
-        }
 
         LASSERT(ma->ma_cookie != NULL);
         LASSERT(ma->ma_cookie_size == body->aclsize);
@@ -284,7 +293,7 @@ static int mdc_attr_set(const struct lu_env *env, struct md_object *mo,
         } else {
                 mci->mci_opdata.op_fsuid = la->la_uid;
                 mci->mci_opdata.op_fsgid = la->la_gid;
-                mci->mci_opdata.op_cap = current->cap_effective;
+                mci->mci_opdata.op_cap = cfs_curproc_cap_pack();
                 mci->mci_opdata.op_suppgids[0] =
                                 mci->mci_opdata.op_suppgids[1] = -1;
         }
@@ -310,7 +319,7 @@ static int mdc_object_create(const struct lu_env *env,
         int rc, symlen;
         uid_t uid;
         gid_t gid;
-        __u32 cap;
+        cfs_cap_t cap;
         ENTRY;
 
         LASSERT(S_ISDIR(la->la_mode));
@@ -406,7 +415,7 @@ static int mdc_ref_add(const struct lu_env *env, struct md_object *mo,
         } else {
                 mci->mci_opdata.op_fsuid = la->la_uid;
                 mci->mci_opdata.op_fsgid = la->la_gid;
-                mci->mci_opdata.op_cap = current->cap_effective;
+                mci->mci_opdata.op_cap = cfs_curproc_cap_pack();
                 mci->mci_opdata.op_suppgids[0] =
                                 mci->mci_opdata.op_suppgids[1] = -1;
         }
@@ -450,7 +459,7 @@ static int mdc_ref_del(const struct lu_env *env, struct md_object *mo,
         } else {
                 mci->mci_opdata.op_fsuid = la->la_uid;
                 mci->mci_opdata.op_fsgid = la->la_gid;
-                mci->mci_opdata.op_cap = current->cap_effective;
+                mci->mci_opdata.op_cap = cfs_curproc_cap_pack();
                 mci->mci_opdata.op_suppgids[0] = -1;
         }
 
@@ -526,7 +535,7 @@ static int mdc_rename_tgt(const struct lu_env *env, struct md_object *mo_p,
         } else {
                 mci->mci_opdata.op_fsuid = la->la_uid;
                 mci->mci_opdata.op_fsgid = la->la_gid;
-                mci->mci_opdata.op_cap = current->cap_effective;
+                mci->mci_opdata.op_cap = cfs_curproc_cap_pack();
                 mci->mci_opdata.op_suppgids[0] =
                                 mci->mci_opdata.op_suppgids[1] = -1;
         }
@@ -561,8 +570,8 @@ static int mdc_is_subdir(const struct lu_env *env, struct md_object *mo,
         rc = md_is_subdir(mc->mc_desc.cl_exp, lu_object_fid(&mo->mo_lu),
                           fid, &mci->mci_req);
         if (rc == 0 || rc == -EREMOTE) {
-                body = lustre_msg_buf(mci->mci_req->rq_repmsg, REPLY_REC_OFF,
-                                      sizeof(*body));
+                body = req_capsule_server_get(&mci->mci_req->rq_pill,
+                                              &RMF_MDT_BODY);
                 LASSERT(body->valid & OBD_MD_FLID);
         
                 CDEBUG(D_INFO, "Remote mdo_is_subdir(), new src "DFID"\n",