4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2014, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
38 #include <linux/sched.h>
40 #include <linux/selinux.h>
42 #define DEBUG_SUBSYSTEM S_LLITE
44 #include <obd_support.h>
45 #include <lustre_dlm.h>
46 #include <lustre_ver.h>
47 #include <lustre_eacl.h>
49 #include "llite_internal.h"
51 #define XATTR_USER_T (1)
52 #define XATTR_TRUSTED_T (2)
53 #define XATTR_SECURITY_T (3)
54 #define XATTR_ACL_ACCESS_T (4)
55 #define XATTR_ACL_DEFAULT_T (5)
56 #define XATTR_LUSTRE_T (6)
57 #define XATTR_OTHER_T (7)
60 int get_xattr_type(const char *name)
62 if (!strcmp(name, POSIX_ACL_XATTR_ACCESS))
63 return XATTR_ACL_ACCESS_T;
65 if (!strcmp(name, POSIX_ACL_XATTR_DEFAULT))
66 return XATTR_ACL_DEFAULT_T;
68 if (!strncmp(name, XATTR_USER_PREFIX,
69 sizeof(XATTR_USER_PREFIX) - 1))
72 if (!strncmp(name, XATTR_TRUSTED_PREFIX,
73 sizeof(XATTR_TRUSTED_PREFIX) - 1))
74 return XATTR_TRUSTED_T;
76 if (!strncmp(name, XATTR_SECURITY_PREFIX,
77 sizeof(XATTR_SECURITY_PREFIX) - 1))
78 return XATTR_SECURITY_T;
80 if (!strncmp(name, XATTR_LUSTRE_PREFIX,
81 sizeof(XATTR_LUSTRE_PREFIX) - 1))
82 return XATTR_LUSTRE_T;
88 int xattr_type_filter(struct ll_sb_info *sbi, int xattr_type)
90 if ((xattr_type == XATTR_ACL_ACCESS_T ||
91 xattr_type == XATTR_ACL_DEFAULT_T) &&
92 !(sbi->ll_flags & LL_SBI_ACL))
95 if (xattr_type == XATTR_USER_T && !(sbi->ll_flags & LL_SBI_USER_XATTR))
97 if (xattr_type == XATTR_TRUSTED_T && !cfs_capable(CFS_CAP_SYS_ADMIN))
99 if (xattr_type == XATTR_OTHER_T)
106 int ll_setxattr_common(struct inode *inode, const char *name,
107 const void *value, size_t size,
108 int flags, __u64 valid)
110 struct ll_sb_info *sbi = ll_i2sbi(inode);
111 struct ptlrpc_request *req = NULL;
113 posix_acl_xattr_header *new_value = NULL;
114 struct rmtacl_ctl_entry *rce = NULL;
115 ext_acl_xattr_header *acl = NULL;
116 const char *pv = value;
119 xattr_type = get_xattr_type(name);
120 rc = xattr_type_filter(sbi, xattr_type);
124 if ((xattr_type == XATTR_ACL_ACCESS_T ||
125 xattr_type == XATTR_ACL_DEFAULT_T) &&
126 #ifdef HAVE_INODE_OWNER_OR_CAPABLE
127 !inode_owner_or_capable(inode))
129 !is_owner_or_cap(inode))
133 /* b10667: ignore lustre special xattr for now */
134 if ((xattr_type == XATTR_TRUSTED_T && strcmp(name, "trusted.lov") == 0) ||
135 (xattr_type == XATTR_LUSTRE_T && strcmp(name, "lustre.lov") == 0))
138 /* b15587: ignore security.capability xattr for now */
139 if ((xattr_type == XATTR_SECURITY_T &&
140 strcmp(name, "security.capability") == 0))
143 /* LU-549: Disable security.selinux when selinux is disabled */
144 if (xattr_type == XATTR_SECURITY_T && !selinux_is_enabled() &&
145 strcmp(name, "security.selinux") == 0)
148 #ifdef CONFIG_FS_POSIX_ACL
149 if (sbi->ll_flags & LL_SBI_RMT_CLIENT &&
150 (xattr_type == XATTR_ACL_ACCESS_T ||
151 xattr_type == XATTR_ACL_DEFAULT_T)) {
152 rce = rct_search(&sbi->ll_rct, current_pid());
154 (rce->rce_ops != RMT_LSETFACL &&
155 rce->rce_ops != RMT_RSETFACL))
158 if (rce->rce_ops == RMT_LSETFACL) {
159 struct eacl_entry *ee;
161 ee = et_search_del(&sbi->ll_et, current_pid(),
162 ll_inode2fid(inode), xattr_type);
164 if (valid & OBD_MD_FLXATTR) {
165 acl = lustre_acl_xattr_merge2ext(
166 (posix_acl_xattr_header *)value,
170 RETURN(PTR_ERR(acl));
172 size = CFS_ACL_XATTR_SIZE(\
173 le32_to_cpu(acl->a_count), \
175 pv = (const char *)acl;
178 } else if (rce->rce_ops == RMT_RSETFACL) {
179 int acl_size = lustre_posix_acl_xattr_filter(
180 (posix_acl_xattr_header *)value,
182 if (unlikely(acl_size < 0))
186 pv = (const char *)new_value;
190 valid |= rce_ops2valid(rce->rce_ops);
193 rc = md_setxattr(sbi->ll_md_exp, ll_inode2fid(inode), valid, name, pv,
194 size, 0, flags, ll_i2suppgid(inode), &req);
196 #ifdef CONFIG_FS_POSIX_ACL
197 if (new_value != NULL)
198 lustre_posix_acl_xattr_free(new_value, size);
200 lustre_ext_acl_xattr_free(acl);
203 if (rc == -EOPNOTSUPP && xattr_type == XATTR_USER_T) {
204 LCONSOLE_INFO("Disabling user_xattr feature because "
205 "it is not supported on the server\n");
206 sbi->ll_flags &= ~LL_SBI_USER_XATTR;
211 ptlrpc_req_finished(req);
215 int ll_setxattr(struct dentry *dentry, const char *name,
216 const void *value, size_t size, int flags)
218 struct inode *inode = dentry->d_inode;
223 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), xattr %s\n",
224 PFID(ll_inode2fid(inode)), inode, name);
226 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_SETXATTR, 1);
228 if ((strncmp(name, XATTR_TRUSTED_PREFIX,
229 sizeof(XATTR_TRUSTED_PREFIX) - 1) == 0 &&
230 strcmp(name + sizeof(XATTR_TRUSTED_PREFIX) - 1, "lov") == 0) ||
231 (strncmp(name, XATTR_LUSTRE_PREFIX,
232 sizeof(XATTR_LUSTRE_PREFIX) - 1) == 0 &&
233 strcmp(name + sizeof(XATTR_LUSTRE_PREFIX) - 1, "lov") == 0)) {
234 struct lov_user_md *lump = (struct lov_user_md *)value;
237 /* Attributes that are saved via getxattr will always have
238 * the stripe_offset as 0. Instead, the MDS should be
239 * allowed to pick the starting OST index. b=17846 */
240 if (lump != NULL && lump->lmm_stripe_offset == 0)
241 lump->lmm_stripe_offset = -1;
243 if (lump != NULL && S_ISREG(inode->i_mode)) {
245 __u64 it_flags = FMODE_WRITE;
248 lum_size = ll_lov_user_md_size(lump);
249 if (lum_size < 0 || size < lum_size)
250 return 0; /* b=10667: ignore error */
252 memset(&f, 0, sizeof(f)); /* f.f_flags is used below */
253 f.f_path.dentry = dentry;
254 rc = ll_lov_setstripe_ea_info(inode, &f, it_flags, lump,
256 /* b=10667: rc always be 0 here for now */
258 } else if (S_ISDIR(inode->i_mode)) {
259 rc = ll_dir_setstripe(inode, lump, 0);
264 } else if (strcmp(name, XATTR_NAME_LMA) == 0 ||
265 strcmp(name, XATTR_NAME_LINK) == 0)
268 return ll_setxattr_common(inode, name, value, size, flags,
272 int ll_removexattr(struct dentry *dentry, const char *name)
274 struct inode *inode = dentry->d_inode;
279 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), xattr %s\n",
280 PFID(ll_inode2fid(inode)), inode, name);
282 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_REMOVEXATTR, 1);
283 return ll_setxattr_common(inode, name, NULL, 0, 0,
287 int ll_getxattr_common(struct inode *inode, const char *name,
288 void *buffer, size_t size, __u64 valid)
290 struct ll_sb_info *sbi = ll_i2sbi(inode);
291 struct ptlrpc_request *req = NULL;
292 struct mdt_body *body;
295 struct rmtacl_ctl_entry *rce = NULL;
296 struct ll_inode_info *lli = ll_i2info(inode);
299 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
300 PFID(ll_inode2fid(inode)), inode);
302 /* listxattr have slightly different behavior from of ext3:
303 * without 'user_xattr' ext3 will list all xattr names but
304 * filtered out "^user..*"; we list them all for simplicity.
307 xattr_type = XATTR_OTHER_T;
311 xattr_type = get_xattr_type(name);
312 rc = xattr_type_filter(sbi, xattr_type);
316 /* b15587: ignore security.capability xattr for now */
317 if ((xattr_type == XATTR_SECURITY_T &&
318 strcmp(name, "security.capability") == 0))
321 /* LU-549: Disable security.selinux when selinux is disabled */
322 if (xattr_type == XATTR_SECURITY_T && !selinux_is_enabled() &&
323 strcmp(name, "security.selinux") == 0)
326 #ifdef CONFIG_FS_POSIX_ACL
327 if (sbi->ll_flags & LL_SBI_RMT_CLIENT &&
328 (xattr_type == XATTR_ACL_ACCESS_T ||
329 xattr_type == XATTR_ACL_DEFAULT_T)) {
330 rce = rct_search(&sbi->ll_rct, current_pid());
332 (rce->rce_ops != RMT_LSETFACL &&
333 rce->rce_ops != RMT_LGETFACL &&
334 rce->rce_ops != RMT_RSETFACL &&
335 rce->rce_ops != RMT_RGETFACL))
339 /* posix acl is under protection of LOOKUP lock. when calling to this,
340 * we just have path resolution to the target inode, so we have great
341 * chance that cached ACL is uptodate.
343 if (xattr_type == XATTR_ACL_ACCESS_T &&
344 !(sbi->ll_flags & LL_SBI_RMT_CLIENT)) {
346 struct posix_acl *acl;
348 spin_lock(&lli->lli_lock);
349 acl = posix_acl_dup(lli->lli_posix_acl);
350 spin_unlock(&lli->lli_lock);
355 rc = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
356 posix_acl_release(acl);
359 if (xattr_type == XATTR_ACL_DEFAULT_T && !S_ISDIR(inode->i_mode))
364 if (sbi->ll_xattr_cache_enabled &&
365 xattr_type != XATTR_ACL_ACCESS_T &&
366 (xattr_type != XATTR_SECURITY_T ||
367 strcmp(name, "security.selinux") != 0)) {
368 rc = ll_xattr_cache_get(inode, name, buffer, size, valid);
370 goto getxattr_nocache;
374 /* Add "system.posix_acl_access" to the list */
375 if (lli->lli_posix_acl != NULL && valid & OBD_MD_FLXATTRLS) {
377 rc += sizeof(XATTR_NAME_ACL_ACCESS);
378 } else if (size - rc >= sizeof(XATTR_NAME_ACL_ACCESS)) {
379 memcpy(buffer + rc, XATTR_NAME_ACL_ACCESS,
380 sizeof(XATTR_NAME_ACL_ACCESS));
381 rc += sizeof(XATTR_NAME_ACL_ACCESS);
383 GOTO(out_xattr, rc = -ERANGE);
388 rc = md_getxattr(sbi->ll_md_exp, ll_inode2fid(inode),
389 valid | (rce ? rce_ops2valid(rce->rce_ops) : 0),
390 name, NULL, 0, size, 0, &req);
395 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
398 /* only detect the xattr size */
400 GOTO(out, rc = body->mbo_eadatasize);
402 if (size < body->mbo_eadatasize) {
403 CERROR("server bug: replied size %u > %u\n",
404 body->mbo_eadatasize, (int)size);
405 GOTO(out, rc = -ERANGE);
408 if (body->mbo_eadatasize == 0)
409 GOTO(out, rc = -ENODATA);
411 /* do not need swab xattr data */
412 xdata = req_capsule_server_sized_get(&req->rq_pill, &RMF_EADATA,
413 body->mbo_eadatasize);
415 GOTO(out, rc = -EFAULT);
417 memcpy(buffer, xdata, body->mbo_eadatasize);
418 rc = body->mbo_eadatasize;
421 #ifdef CONFIG_FS_POSIX_ACL
422 if (rce != NULL && rce->rce_ops == RMT_LSETFACL) {
423 ext_acl_xattr_header *acl;
425 acl = lustre_posix_acl_xattr_2ext(buffer, rc);
427 GOTO(out, rc = PTR_ERR(acl));
429 rc = ee_add(&sbi->ll_et, current_pid(), ll_inode2fid(inode),
431 if (unlikely(rc < 0)) {
432 lustre_ext_acl_xattr_free(acl);
440 if (rc == -EOPNOTSUPP && xattr_type == XATTR_USER_T) {
441 LCONSOLE_INFO("%s: disabling user_xattr feature because "
442 "it is not supported on the server: rc = %d\n",
443 ll_get_fsname(inode->i_sb, NULL, 0), rc);
444 sbi->ll_flags &= ~LL_SBI_USER_XATTR;
447 ptlrpc_req_finished(req);
451 static ssize_t ll_getxattr_lov(struct inode *inode, void *buf, size_t buf_size)
455 if (S_ISREG(inode->i_mode)) {
456 struct cl_object *obj = ll_i2info(inode)->lli_clob;
458 struct cl_layout cl = {
459 .cl_buf.lb_buf = buf,
460 .cl_buf.lb_len = buf_size,
467 env = cl_env_get(&refcheck);
469 RETURN(PTR_ERR(env));
471 rc = cl_object_layout_get(env, obj, &cl);
476 GOTO(out_env, rc = -ENODATA);
483 LASSERT(buf != NULL && rc <= buf_size);
485 /* Do not return layout gen for getxattr() since
486 * otherwise it would confuse tar --xattr by
487 * recognizing layout gen as stripe offset when the
488 * file is restored. See LU-2809. */
489 ((struct lov_mds_md *)buf)->lmm_layout_gen = 0;
491 cl_env_put(env, &refcheck);
494 } else if (S_ISDIR(inode->i_mode)) {
495 struct lov_mds_md *lmm = NULL;
497 struct ptlrpc_request *req = NULL;
499 rc = ll_dir_getstripe(inode, (void **)&lmm, &lmm_size,
505 GOTO(out_req, rc = lmm_size);
507 if (buf_size < lmm_size)
508 GOTO(out_req, rc = -ERANGE);
510 memcpy(buf, lmm, lmm_size);
511 GOTO(out_req, rc = lmm_size);
514 ptlrpc_req_finished(req);
522 ssize_t ll_getxattr(struct dentry *dentry, const char *name, void *buf,
525 struct inode *inode = dentry->d_inode;
530 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), xattr %s\n",
531 PFID(ll_inode2fid(inode)), inode, name);
533 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_GETXATTR, 1);
535 if (strcmp(name, XATTR_LUSTRE_LOV) == 0 ||
536 strcmp(name, XATTR_NAME_LOV) == 0)
537 return ll_getxattr_lov(inode, buf, buf_size);
539 return ll_getxattr_common(inode, name, buf, buf_size,
543 ssize_t ll_listxattr(struct dentry *dentry, char *buf, size_t buf_size)
545 struct inode *inode = dentry->d_inode;
546 struct ll_sb_info *sbi = ll_i2sbi(inode);
551 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
552 PFID(ll_inode2fid(inode)), inode);
554 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_LISTXATTR, 1);
556 rc = ll_getxattr_common(inode, NULL, buf, buf_size, OBD_MD_FLXATTRLS);
560 /* If we're being called to get the size of the xattr list
561 * (buf_size == 0) then just assume that a lustre.lov xattr
564 RETURN(rc + sizeof(XATTR_LUSTRE_LOV));
570 len = strnlen(xattr_name, rem - 1) + 1;
572 if (xattr_type_filter(sbi, get_xattr_type(xattr_name)) == 0) {
573 /* Skip OK xattr type, leave it in buffer. */
578 /* Move up remaining xattrs in buffer removing the
579 * xattr that is not OK. */
580 memmove(xattr_name, xattr_name + len, rem);
584 rc2 = ll_getxattr_lov(inode, NULL, 0);
591 if (buf_size < rc + sizeof(XATTR_LUSTRE_LOV))
594 memcpy(buf + rc, XATTR_LUSTRE_LOV, sizeof(XATTR_LUSTRE_LOV));
596 RETURN(rc + sizeof(XATTR_LUSTRE_LOV));