Whamcloud - gitweb
LU-966 mdd: revert commit and use original patch
[fs/lustre-release.git] / lustre / mdt / mdt_xattr.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mdt/mdt_xattr.c
37  *
38  * Lustre Metadata Target (mdt) extended attributes management.
39  *
40  * Author: Peter Braam <braam@clusterfs.com>
41  * Author: Andreas Dilger <adilger@clusterfs.com>
42  * Author: Phil Schwan <phil@clusterfs.com>
43  * Author: Huang Hua <huanghua@clusterfs.com>
44  */
45
46 #ifndef EXPORT_SYMTAB
47 # define EXPORT_SYMTAB
48 #endif
49 #define DEBUG_SUBSYSTEM S_MDS
50
51 #include <lustre_acl.h>
52 #include "mdt_internal.h"
53
54
55 /* return EADATA length to the caller. negative value means error */
56 static int mdt_getxattr_pack_reply(struct mdt_thread_info * info)
57 {
58         struct req_capsule     *pill = info->mti_pill ;
59         struct ptlrpc_request  *req = mdt_info_req(info);
60         char                   *xattr_name;
61         __u64                   valid = info->mti_body->valid;
62         static const char       user_string[] = "user.";
63         int                     size, rc;
64         ENTRY;
65
66         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETXATTR_PACK))
67                 RETURN(-ENOMEM);
68
69         /* Determine how many bytes we need */
70         if (valid & OBD_MD_FLXATTR) {
71                 xattr_name = req_capsule_client_get(pill, &RMF_NAME);
72                 if (!xattr_name)
73                         RETURN(-EFAULT);
74
75                 if (!(req->rq_export->exp_connect_flags & OBD_CONNECT_XATTR) &&
76                     !strncmp(xattr_name, user_string, sizeof(user_string) - 1))
77                         RETURN(-EOPNOTSUPP);
78
79                 size = mo_xattr_get(info->mti_env,
80                                     mdt_object_child(info->mti_object),
81                                     &LU_BUF_NULL, xattr_name);
82         } else if (valid & OBD_MD_FLXATTRLS) {
83                 size = mo_xattr_list(info->mti_env,
84                                      mdt_object_child(info->mti_object),
85                                      &LU_BUF_NULL);
86         } else {
87                 CDEBUG(D_INFO, "Valid bits: "LPX64"\n", info->mti_body->valid);
88                 RETURN(-EINVAL);
89         }
90
91         if (size < 0) {
92                 if (size == -ENODATA)
93                         size = 0;
94                 else if (size != -EOPNOTSUPP) {
95                         CDEBUG(D_INFO, "Error geting EA size: %d\n", size);
96                         RETURN(size);
97                 }
98         }
99
100         if (info->mti_body->eadatasize != 0 &&
101             info->mti_body->eadatasize < size)
102                 RETURN(-ERANGE);
103
104         req_capsule_set_size(pill, &RMF_EADATA, RCL_SERVER,
105                              min_t(int, size, info->mti_body->eadatasize));
106
107         rc = req_capsule_server_pack(pill);
108         if (rc) {
109                 LASSERT(rc < 0);
110                 RETURN(rc);
111         }
112
113         RETURN(size);
114 }
115
116 int mdt_getxattr(struct mdt_thread_info *info)
117 {
118         struct ptlrpc_request  *req = mdt_info_req(info);
119         struct mdt_export_data *med = mdt_req2med(req);
120         struct md_ucred        *uc  = mdt_ucred(info);
121         struct mdt_body        *reqbody;
122         struct mdt_body        *repbody = NULL;
123         struct md_object       *next;
124         struct lu_buf          *buf;
125         __u32                   remote = exp_connect_rmtclient(info->mti_exp);
126         __u32                   perm;
127         int                     easize, rc;
128         ENTRY;
129
130         LASSERT(info->mti_object != NULL);
131         LASSERT(lu_object_assert_exists(&info->mti_object->mot_obj.mo_lu));
132
133         CDEBUG(D_INODE, "getxattr "DFID"\n", PFID(&info->mti_body->fid1));
134
135         reqbody = req_capsule_client_get(info->mti_pill, &RMF_MDT_BODY);
136         if (reqbody == NULL)
137                 RETURN(err_serious(-EFAULT));
138
139         rc = mdt_init_ucred(info, reqbody);
140         if (rc)
141                 RETURN(err_serious(rc));
142
143         next = mdt_object_child(info->mti_object);
144
145         if (info->mti_body->valid & OBD_MD_FLRMTRGETFACL) {
146                 if (unlikely(!remote))
147                         GOTO(out, rc = err_serious(-EINVAL));
148
149                 perm = mdt_identity_get_perm(uc->mu_identity, remote,
150                                              req->rq_peer.nid);
151                 if (!(perm & CFS_RMTACL_PERM))
152                         GOTO(out, rc = err_serious(-EPERM));
153
154                 rc = mo_permission(info->mti_env, NULL, next, NULL,
155                                    MAY_RGETFACL);
156                 if (rc)
157                         GOTO(out, rc = err_serious(rc));
158         }
159
160         easize = mdt_getxattr_pack_reply(info);
161         if (easize < 0)
162                 GOTO(out, rc = err_serious(easize));
163
164         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
165         LASSERT(repbody != NULL);
166
167         /* No need further getxattr. */
168         if (easize == 0 || reqbody->eadatasize == 0)
169                 GOTO(out, rc = easize);
170
171         buf = &info->mti_buf;
172         buf->lb_buf = req_capsule_server_get(info->mti_pill, &RMF_EADATA);
173         buf->lb_len = easize;
174
175         if (info->mti_body->valid & OBD_MD_FLXATTR) {
176                 int flags = CFS_IC_NOTHING;
177                 char *xattr_name = req_capsule_client_get(info->mti_pill,
178                                                           &RMF_NAME);
179                 CDEBUG(D_INODE, "getxattr %s\n", xattr_name);
180
181                 rc = mo_xattr_get(info->mti_env, next, buf, xattr_name);
182                 if (rc < 0) {
183                         CERROR("getxattr failed: %d\n", rc);
184                         GOTO(out, rc);
185                 }
186
187                 if (info->mti_body->valid &
188                     (OBD_MD_FLRMTLSETFACL | OBD_MD_FLRMTLGETFACL))
189                         flags = CFS_IC_ALL;
190                 else if (info->mti_body->valid & OBD_MD_FLRMTRGETFACL)
191                         flags = CFS_IC_MAPPED;
192
193                 if (rc > 0 && flags != CFS_IC_NOTHING) {
194                         int rc1;
195
196                         if (unlikely(!remote))
197                                 GOTO(out, rc = -EINVAL);
198
199                         rc1 = lustre_posix_acl_xattr_id2client(uc,
200                                         med->med_idmap,
201                                         (posix_acl_xattr_header *)(buf->lb_buf),
202                                         rc, flags);
203                         if (unlikely(rc1 < 0))
204                                 rc = rc1;
205                 }
206         } else if (info->mti_body->valid & OBD_MD_FLXATTRLS) {
207                 CDEBUG(D_INODE, "listxattr\n");
208
209                 rc = mo_xattr_list(info->mti_env, next, buf);
210                 if (rc < 0)
211                         CDEBUG(D_INFO, "listxattr failed: %d\n", rc);
212         } else
213                 LBUG();
214
215         EXIT;
216 out:
217         if (rc >= 0) {
218                 mdt_counter_incr(req->rq_export, LPROC_MDT_GETXATTR);
219                 repbody->eadatasize = rc;
220                 rc = 0;
221         }
222         mdt_exit_ucred(info);
223         return rc;
224 }
225
226 static int mdt_rmtlsetfacl(struct mdt_thread_info *info,
227                            struct md_object *next,
228                            const char *xattr_name,
229                            ext_acl_xattr_header *header,
230                            posix_acl_xattr_header **out)
231 {
232         struct ptlrpc_request  *req = mdt_info_req(info);
233         struct mdt_export_data *med = mdt_req2med(req);
234         struct md_ucred        *uc = mdt_ucred(info);
235         struct lu_buf          *buf = &info->mti_buf;
236         int                     rc;
237         ENTRY;
238
239         rc = lustre_ext_acl_xattr_id2server(uc, med->med_idmap, header);
240         if (rc)
241                 RETURN(rc);
242
243         rc = mo_xattr_get(info->mti_env, next, &LU_BUF_NULL, xattr_name);
244         if (rc == -ENODATA)
245                 rc = 0;
246         else if (rc < 0)
247                 RETURN(rc);
248
249         buf->lb_len = rc;
250         if (buf->lb_len > 0) {
251                 OBD_ALLOC_LARGE(buf->lb_buf, buf->lb_len);
252                 if (unlikely(buf->lb_buf == NULL))
253                         RETURN(-ENOMEM);
254
255                 rc = mo_xattr_get(info->mti_env, next, buf, xattr_name);
256                 if (rc < 0) {
257                         CERROR("getxattr failed: %d\n", rc);
258                         GOTO(_out, rc);
259                 }
260         } else
261                 buf->lb_buf = NULL;
262
263         rc = lustre_acl_xattr_merge2posix((posix_acl_xattr_header *)(buf->lb_buf),
264                                           buf->lb_len, header, out);
265         EXIT;
266
267 _out:
268         if (rc <= 0 && buf->lb_buf != NULL)
269                 OBD_FREE_LARGE(buf->lb_buf, buf->lb_len);
270         return rc;
271 }
272
273 int mdt_reint_setxattr(struct mdt_thread_info *info,
274                        struct mdt_lock_handle *unused)
275 {
276         struct ptlrpc_request   *req = mdt_info_req(info);
277         struct md_ucred         *uc  = mdt_ucred(info);
278         struct mdt_lock_handle  *lh;
279         struct req_capsule      *pill = info->mti_pill;
280         const struct lu_env     *env  = info->mti_env;
281         struct lu_buf           *buf  = &info->mti_buf;
282         struct mdt_reint_record *rr   = &info->mti_rr;
283         struct md_attr          *ma = &info->mti_attr;
284         struct lu_attr          *attr = &info->mti_attr.ma_attr;
285         struct mdt_object       *obj;
286         struct md_object        *child;
287         __u64                    valid = attr->la_valid;
288         const char              *xattr_name;
289         int                      xattr_len = 0;
290         __u64                    lockpart;
291         int                      rc;
292         posix_acl_xattr_header  *new_xattr = NULL;
293         __u32                    remote = exp_connect_rmtclient(info->mti_exp);
294         __u32                    perm;
295         ENTRY;
296
297         CDEBUG(D_INODE, "setxattr for "DFID"\n", PFID(rr->rr_fid1));
298
299         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SETXATTR))
300                 RETURN(err_serious(-ENOMEM));
301
302         xattr_name = rr->rr_name;
303
304         CDEBUG(D_INODE, "%s xattr %s\n",
305                valid & OBD_MD_FLXATTR ? "set" : "remove", xattr_name);
306
307         rc = mdt_init_ucred_reint(info);
308         if (rc != 0)
309                 RETURN(rc);
310
311         if (valid & OBD_MD_FLRMTRSETFACL) {
312                 if (unlikely(!remote))
313                         GOTO(out, rc = err_serious(-EINVAL));
314
315                 perm = mdt_identity_get_perm(uc->mu_identity, remote,
316                                              req->rq_peer.nid);
317                 if (!(perm & CFS_RMTACL_PERM))
318                         GOTO(out, rc = err_serious(-EPERM));
319         }
320
321         /* various sanity check for xattr name */
322         xattr_name = req_capsule_client_get(pill, &RMF_NAME);
323         if (!xattr_name)
324                 GOTO(out, rc = err_serious(-EFAULT));
325
326         if (strncmp(xattr_name, XATTR_USER_PREFIX,
327                     sizeof(XATTR_USER_PREFIX) - 1) == 0) {
328                 if (!(req->rq_export->exp_connect_flags & OBD_CONNECT_XATTR))
329                         GOTO(out, rc = -EOPNOTSUPP);
330                 if (strcmp(xattr_name, XATTR_NAME_LOV) == 0)
331                         GOTO(out, rc = -EACCES);
332                 if (strcmp(xattr_name, XATTR_NAME_LMA) == 0)
333                         GOTO(out, rc = 0);
334                 if (strcmp(xattr_name, XATTR_NAME_LINK) == 0)
335                         GOTO(out, rc = 0);
336         } else if ((valid & OBD_MD_FLXATTR) &&
337                    (strncmp(xattr_name, XATTR_NAME_ACL_ACCESS,
338                             sizeof(XATTR_NAME_ACL_ACCESS) - 1) == 0 ||
339                     strncmp(xattr_name, XATTR_NAME_ACL_DEFAULT,
340                             sizeof(XATTR_NAME_ACL_DEFAULT) - 1) == 0)) {
341                 /* currently lustre limit acl access size */
342                 xattr_len = req_capsule_get_size(pill, &RMF_EADATA, RCL_CLIENT);
343
344                 if (xattr_len > LUSTRE_POSIX_ACL_MAX_SIZE)
345                         GOTO(out, -ERANGE);
346         }
347
348         lockpart = MDS_INODELOCK_UPDATE;
349         /* Revoke all clients' lookup lock, since the access
350          * permissions for this inode is changed when ACL_ACCESS is
351          * set. This isn't needed for ACL_DEFAULT, since that does
352          * not change the access permissions of this inode, nor any
353          * other existing inodes. It is setting the ACLs inherited
354          * by new directories/files at create time. */
355         if (!strcmp(xattr_name, XATTR_NAME_ACL_ACCESS))
356                 lockpart |= MDS_INODELOCK_LOOKUP;
357
358         lh = &info->mti_lh[MDT_LH_PARENT];
359         /* ACLs were sent to clients under LCK_CR locks, so taking LCK_EX
360          * to cancel them. */
361         mdt_lock_reg_init(lh, LCK_EX);
362         obj = mdt_object_find_lock(info, rr->rr_fid1, lh, lockpart);
363         if (IS_ERR(obj))
364                 GOTO(out, rc =  PTR_ERR(obj));
365
366         info->mti_mos = obj;
367         rc = mdt_version_get_check_save(info, obj, 0);
368         if (rc)
369                 GOTO(out_unlock, rc);
370
371         if (unlikely(!(valid & OBD_MD_FLCTIME))) {
372                 /* This isn't strictly an error, but all current clients
373                  * should set OBD_MD_FLCTIME when setting attributes. */
374                 CWARN("%s: client miss to set OBD_MD_FLCTIME when "
375                       "setxattr %s: [object "DFID"] [valid "LPU64"]\n",
376                       info->mti_exp->exp_obd->obd_name, xattr_name,
377                       PFID(rr->rr_fid1), valid);
378                 attr->la_ctime = cfs_time_current_sec();
379         }
380         attr->la_valid = LA_CTIME;
381         child = mdt_object_child(obj);
382         if (valid & OBD_MD_FLXATTR) {
383                 char * xattr;
384
385                 if (!req_capsule_field_present(pill, &RMF_EADATA, RCL_CLIENT)) {
386                         CDEBUG(D_INFO, "no xattr data supplied\n");
387                         GOTO(out_unlock, rc = -EFAULT);
388                 }
389
390                 xattr_len = req_capsule_get_size(pill, &RMF_EADATA, RCL_CLIENT);
391                 if (xattr_len) {
392                         int flags = 0;
393
394                         xattr = req_capsule_client_get(pill, &RMF_EADATA);
395
396                         if (valid & OBD_MD_FLRMTLSETFACL) {
397                                 if (unlikely(!remote))
398                                         GOTO(out_unlock, rc = -EINVAL);
399
400                                 xattr_len = mdt_rmtlsetfacl(info, child,
401                                                 xattr_name,
402                                                 (ext_acl_xattr_header *)xattr,
403                                                 &new_xattr);
404                                 if (xattr_len < 0)
405                                         GOTO(out_unlock, rc = xattr_len);
406
407                                 xattr = (char *)new_xattr;
408                         }
409
410                         if (attr->la_flags & XATTR_REPLACE)
411                                 flags |= LU_XATTR_REPLACE;
412
413                         if (attr->la_flags & XATTR_CREATE)
414                                 flags |= LU_XATTR_CREATE;
415
416                         mdt_fail_write(env, info->mti_mdt->mdt_bottom,
417                                        OBD_FAIL_MDS_SETXATTR_WRITE);
418
419                         buf->lb_buf = xattr;
420                         buf->lb_len = xattr_len;
421                         rc = mo_xattr_set(env, child, buf, xattr_name, flags);
422                         /* update ctime after xattr changed */
423                         if (rc == 0) {
424                                 ma->ma_attr_flags |= MDS_PERM_BYPASS;
425                                 mo_attr_set(env, child, ma);
426                         }
427                 }
428         } else if (valid & OBD_MD_FLXATTRRM) {
429                 rc = mo_xattr_del(env, child, xattr_name);
430                 /* update ctime after xattr changed */
431                 if (rc == 0) {
432                         ma->ma_attr_flags |= MDS_PERM_BYPASS;
433                         mo_attr_set(env, child, ma);
434                 }
435         } else {
436                 CDEBUG(D_INFO, "valid bits: "LPX64"\n", valid);
437                 rc = -EINVAL;
438         }
439         if (rc == 0)
440                 mdt_counter_incr(req->rq_export, LPROC_MDT_SETXATTR);
441
442         EXIT;
443 out_unlock:
444         mdt_object_unlock_put(info, obj, lh, rc);
445         if (unlikely(new_xattr != NULL))
446                 lustre_posix_acl_xattr_free(new_xattr, xattr_len);
447 out:
448         mdt_exit_ucred(info);
449         return rc;
450 }