]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/xattr.c
btrfs: check for relocation inodes on zoned btrfs in should_nocow
[mirror_ubuntu-jammy-kernel.git] / fs / xattr.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 File: fs/xattr.c
4
5 Extended attribute handling.
6
7 Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org>
8 Copyright (C) 2001 SGI - Silicon Graphics, Inc <linux-xfs@oss.sgi.com>
9 Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
10 */
11#include <linux/fs.h>
12#include <linux/slab.h>
1da177e4
LT
13#include <linux/file.h>
14#include <linux/xattr.h>
18f335af 15#include <linux/mount.h>
1da177e4
LT
16#include <linux/namei.h>
17#include <linux/security.h>
c7b87de2 18#include <linux/evm.h>
1da177e4 19#include <linux/syscalls.h>
630d9c47 20#include <linux/export.h>
0eeca283 21#include <linux/fsnotify.h>
73241ccc 22#include <linux/audit.h>
0d08d7b7 23#include <linux/vmalloc.h>
2f6f0654 24#include <linux/posix_acl_xattr.h>
1da177e4 25
7c0f6ba6 26#include <linux/uaccess.h>
5be196e5 27
b6ba1177
AG
28static const char *
29strcmp_prefix(const char *a, const char *a_prefix)
30{
31 while (*a_prefix && *a == *a_prefix) {
32 a++;
33 a_prefix++;
34 }
35 return *a_prefix ? NULL : a;
36}
37
38/*
39 * In order to implement different sets of xattr operations for each xattr
6c6ef9f2
AG
40 * prefix, a filesystem should create a null-terminated array of struct
41 * xattr_handler (one for each prefix) and hang a pointer to it off of the
42 * s_xattr field of the superblock.
b6ba1177
AG
43 */
44#define for_each_xattr_handler(handlers, handler) \
45 if (handlers) \
46 for ((handler) = *(handlers)++; \
47 (handler) != NULL; \
48 (handler) = *(handlers)++)
49
50/*
51 * Find the xattr_handler with the matching prefix.
52 */
53static const struct xattr_handler *
d0a5b995 54xattr_resolve_name(struct inode *inode, const char **name)
b6ba1177 55{
d0a5b995 56 const struct xattr_handler **handlers = inode->i_sb->s_xattr;
b6ba1177
AG
57 const struct xattr_handler *handler;
58
5f6e59ae
AG
59 if (!(inode->i_opflags & IOP_XATTR)) {
60 if (unlikely(is_bad_inode(inode)))
61 return ERR_PTR(-EIO);
d0a5b995 62 return ERR_PTR(-EOPNOTSUPP);
5f6e59ae 63 }
b6ba1177
AG
64 for_each_xattr_handler(handlers, handler) {
65 const char *n;
66
67 n = strcmp_prefix(*name, xattr_prefix(handler));
68 if (n) {
69 if (!handler->prefix ^ !*n) {
70 if (*n)
71 continue;
72 return ERR_PTR(-EINVAL);
73 }
74 *name = n;
75 return handler;
76 }
77 }
78 return ERR_PTR(-EOPNOTSUPP);
79}
80
e0ad7b07 81/*
82 * Check permissions for extended attribute access. This is a bit complicated
83 * because different namespaces have very different rules.
84 */
85static int
c7c7a1a1
TA
86xattr_permission(struct user_namespace *mnt_userns, struct inode *inode,
87 const char *name, int mask)
e0ad7b07 88{
89 /*
90 * We can never set or remove an extended attribute on a read-only
91 * filesystem or on an immutable / append-only inode.
92 */
93 if (mask & MAY_WRITE) {
e0ad7b07 94 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
95 return -EPERM;
0bd23d09
EB
96 /*
97 * Updating an xattr will likely cause i_uid and i_gid
98 * to be writen back improperly if their true value is
99 * unknown to the vfs.
100 */
ba73d987 101 if (HAS_UNMAPPED_ID(mnt_userns, inode))
0bd23d09 102 return -EPERM;
e0ad7b07 103 }
104
105 /*
106 * No restriction for security.* and system.* from the VFS. Decision
107 * on these is left to the underlying filesystem / security module.
108 */
109 if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) ||
110 !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
111 return 0;
112
113 /*
55b23bde 114 * The trusted.* namespace can only be accessed by privileged users.
e0ad7b07 115 */
55b23bde
AG
116 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN)) {
117 if (!capable(CAP_SYS_ADMIN))
118 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
119 return 0;
120 }
e0ad7b07 121
55b23bde
AG
122 /*
123 * In the user.* namespace, only regular files and directories can have
f1f2d871 124 * extended attributes. For sticky directories, only the owner and
55b23bde 125 * privileged users can write attributes.
f1f2d871 126 */
e0ad7b07 127 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
f1f2d871 128 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
55b23bde 129 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
f1f2d871 130 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
21cb47be 131 (mask & MAY_WRITE) &&
c7c7a1a1 132 !inode_owner_or_capable(mnt_userns, inode))
e0ad7b07 133 return -EPERM;
134 }
135
c7c7a1a1 136 return inode_permission(mnt_userns, inode, mask);
e0ad7b07 137}
138
cab8d289
FL
139/*
140 * Look for any handler that deals with the specified namespace.
141 */
142int
143xattr_supported_namespace(struct inode *inode, const char *prefix)
144{
145 const struct xattr_handler **handlers = inode->i_sb->s_xattr;
146 const struct xattr_handler *handler;
147 size_t preflen;
148
149 if (!(inode->i_opflags & IOP_XATTR)) {
150 if (unlikely(is_bad_inode(inode)))
151 return -EIO;
152 return -EOPNOTSUPP;
153 }
154
155 preflen = strlen(prefix);
156
157 for_each_xattr_handler(handlers, handler) {
158 if (!strncmp(xattr_prefix(handler), prefix, preflen))
159 return 0;
160 }
161
162 return -EOPNOTSUPP;
163}
164EXPORT_SYMBOL(xattr_supported_namespace);
165
5d6c3191 166int
c7c7a1a1
TA
167__vfs_setxattr(struct user_namespace *mnt_userns, struct dentry *dentry,
168 struct inode *inode, const char *name, const void *value,
169 size_t size, int flags)
5d6c3191 170{
6c6ef9f2
AG
171 const struct xattr_handler *handler;
172
173 handler = xattr_resolve_name(inode, &name);
174 if (IS_ERR(handler))
175 return PTR_ERR(handler);
176 if (!handler->set)
5d6c3191 177 return -EOPNOTSUPP;
6c6ef9f2
AG
178 if (size == 0)
179 value = ""; /* empty EA, do not remove */
c7c7a1a1 180 return handler->set(handler, mnt_userns, dentry, inode, name, value,
e65ce2a5 181 size, flags);
5d6c3191
AG
182}
183EXPORT_SYMBOL(__vfs_setxattr);
184
b1ab7e4b
DQ
185/**
186 * __vfs_setxattr_noperm - perform setxattr operation without performing
187 * permission checks.
188 *
6961fed4
RD
189 * @mnt_userns: user namespace of the mount the inode was found from
190 * @dentry: object to perform setxattr on
191 * @name: xattr name to set
192 * @value: value to set @name to
193 * @size: size of @value
194 * @flags: flags to pass into filesystem operations
b1ab7e4b
DQ
195 *
196 * returns the result of the internal setxattr or setsecurity operations.
197 *
198 * This function requires the caller to lock the inode's i_mutex before it
199 * is executed. It also assumes that the caller will make the appropriate
200 * permission checks.
201 */
c7c7a1a1
TA
202int __vfs_setxattr_noperm(struct user_namespace *mnt_userns,
203 struct dentry *dentry, const char *name,
204 const void *value, size_t size, int flags)
5be196e5
CH
205{
206 struct inode *inode = dentry->d_inode;
4a590153 207 int error = -EAGAIN;
69b45732
AK
208 int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
209 XATTR_SECURITY_PREFIX_LEN);
e0ad7b07 210
69b45732
AK
211 if (issec)
212 inode->i_flags &= ~S_NOSEC;
6c6ef9f2 213 if (inode->i_opflags & IOP_XATTR) {
c7c7a1a1
TA
214 error = __vfs_setxattr(mnt_userns, dentry, inode, name, value,
215 size, flags);
5be196e5
CH
216 if (!error) {
217 fsnotify_xattr(dentry);
218 security_inode_post_setxattr(dentry, name, value,
219 size, flags);
220 }
4a590153 221 } else {
5f6e59ae
AG
222 if (unlikely(is_bad_inode(inode)))
223 return -EIO;
4a590153
AG
224 }
225 if (error == -EAGAIN) {
226 error = -EOPNOTSUPP;
227
228 if (issec) {
229 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
230
231 error = security_inode_setsecurity(inode, suffix, value,
232 size, flags);
233 if (!error)
234 fsnotify_xattr(dentry);
235 }
5be196e5 236 }
b1ab7e4b
DQ
237
238 return error;
239}
3fb38c98 240EXPORT_SYMBOL_GPL(__vfs_setxattr_noperm);
b1ab7e4b 241
08b5d501 242/**
da5c1c0b 243 * __vfs_setxattr_locked - set an extended attribute while holding the inode
08b5d501
FL
244 * lock
245 *
6961fed4 246 * @mnt_userns: user namespace of the mount of the target inode
da5c1c0b
RD
247 * @dentry: object to perform setxattr on
248 * @name: xattr name to set
249 * @value: value to set @name to
250 * @size: size of @value
251 * @flags: flags to pass into filesystem operations
252 * @delegated_inode: on return, will contain an inode pointer that
08b5d501
FL
253 * a delegation was broken on, NULL if none.
254 */
b1ab7e4b 255int
c7c7a1a1
TA
256__vfs_setxattr_locked(struct user_namespace *mnt_userns, struct dentry *dentry,
257 const char *name, const void *value, size_t size,
258 int flags, struct inode **delegated_inode)
b1ab7e4b
DQ
259{
260 struct inode *inode = dentry->d_inode;
261 int error;
262
c7c7a1a1 263 error = xattr_permission(mnt_userns, inode, name, MAY_WRITE);
b1ab7e4b
DQ
264 if (error)
265 return error;
266
71bc356f
CB
267 error = security_inode_setxattr(mnt_userns, dentry, name, value, size,
268 flags);
b1ab7e4b
DQ
269 if (error)
270 goto out;
271
08b5d501
FL
272 error = try_break_deleg(inode, delegated_inode);
273 if (error)
274 goto out;
275
c7c7a1a1
TA
276 error = __vfs_setxattr_noperm(mnt_userns, dentry, name, value,
277 size, flags);
b1ab7e4b 278
5be196e5 279out:
08b5d501
FL
280 return error;
281}
282EXPORT_SYMBOL_GPL(__vfs_setxattr_locked);
283
284int
c7c7a1a1
TA
285vfs_setxattr(struct user_namespace *mnt_userns, struct dentry *dentry,
286 const char *name, const void *value, size_t size, int flags)
08b5d501
FL
287{
288 struct inode *inode = dentry->d_inode;
289 struct inode *delegated_inode = NULL;
7c03e2cd 290 const void *orig_value = value;
08b5d501
FL
291 int error;
292
7c03e2cd 293 if (size && strcmp(name, XATTR_NAME_CAPS) == 0) {
c7c7a1a1 294 error = cap_convert_nscap(mnt_userns, dentry, &value, size);
7c03e2cd
MS
295 if (error < 0)
296 return error;
297 size = error;
298 }
299
08b5d501
FL
300retry_deleg:
301 inode_lock(inode);
c7c7a1a1
TA
302 error = __vfs_setxattr_locked(mnt_userns, dentry, name, value, size,
303 flags, &delegated_inode);
5955102c 304 inode_unlock(inode);
08b5d501
FL
305
306 if (delegated_inode) {
307 error = break_deleg_wait(&delegated_inode);
308 if (!error)
309 goto retry_deleg;
310 }
7c03e2cd
MS
311 if (value != orig_value)
312 kfree(value);
313
5be196e5
CH
314 return error;
315}
316EXPORT_SYMBOL_GPL(vfs_setxattr);
317
2220c5b0 318static ssize_t
71bc356f
CB
319xattr_getsecurity(struct user_namespace *mnt_userns, struct inode *inode,
320 const char *name, void *value, size_t size)
42492594
DQ
321{
322 void *buffer = NULL;
323 ssize_t len;
324
325 if (!value || !size) {
71bc356f
CB
326 len = security_inode_getsecurity(mnt_userns, inode, name,
327 &buffer, false);
42492594
DQ
328 goto out_noalloc;
329 }
330
71bc356f
CB
331 len = security_inode_getsecurity(mnt_userns, inode, name, &buffer,
332 true);
42492594
DQ
333 if (len < 0)
334 return len;
335 if (size < len) {
336 len = -ERANGE;
337 goto out;
338 }
339 memcpy(value, buffer, len);
340out:
57e7ba04 341 kfree(buffer);
42492594
DQ
342out_noalloc:
343 return len;
344}
42492594 345
1601fbad
MZ
346/*
347 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
348 *
349 * Allocate memory, if not already allocated, or re-allocate correct size,
350 * before retrieving the extended attribute.
351 *
352 * Returns the result of alloc, if failed, or the getxattr operation.
353 */
354ssize_t
c7c7a1a1
TA
355vfs_getxattr_alloc(struct user_namespace *mnt_userns, struct dentry *dentry,
356 const char *name, char **xattr_value, size_t xattr_size,
357 gfp_t flags)
1601fbad 358{
6c6ef9f2 359 const struct xattr_handler *handler;
1601fbad
MZ
360 struct inode *inode = dentry->d_inode;
361 char *value = *xattr_value;
362 int error;
363
c7c7a1a1 364 error = xattr_permission(mnt_userns, inode, name, MAY_READ);
1601fbad
MZ
365 if (error)
366 return error;
367
6c6ef9f2
AG
368 handler = xattr_resolve_name(inode, &name);
369 if (IS_ERR(handler))
370 return PTR_ERR(handler);
371 if (!handler->get)
1601fbad 372 return -EOPNOTSUPP;
6c6ef9f2 373 error = handler->get(handler, dentry, inode, name, NULL, 0);
1601fbad
MZ
374 if (error < 0)
375 return error;
376
377 if (!value || (error > xattr_size)) {
378 value = krealloc(*xattr_value, error + 1, flags);
379 if (!value)
380 return -ENOMEM;
381 memset(value, 0, error + 1);
382 }
383
6c6ef9f2 384 error = handler->get(handler, dentry, inode, name, value, error);
1601fbad
MZ
385 *xattr_value = value;
386 return error;
387}
388
5d6c3191
AG
389ssize_t
390__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
391 void *value, size_t size)
392{
6c6ef9f2
AG
393 const struct xattr_handler *handler;
394
395 handler = xattr_resolve_name(inode, &name);
396 if (IS_ERR(handler))
397 return PTR_ERR(handler);
398 if (!handler->get)
5d6c3191 399 return -EOPNOTSUPP;
6c6ef9f2 400 return handler->get(handler, dentry, inode, name, value, size);
5d6c3191
AG
401}
402EXPORT_SYMBOL(__vfs_getxattr);
403
5be196e5 404ssize_t
c7c7a1a1
TA
405vfs_getxattr(struct user_namespace *mnt_userns, struct dentry *dentry,
406 const char *name, void *value, size_t size)
5be196e5
CH
407{
408 struct inode *inode = dentry->d_inode;
409 int error;
410
c7c7a1a1 411 error = xattr_permission(mnt_userns, inode, name, MAY_READ);
e0ad7b07 412 if (error)
413 return error;
414
5be196e5
CH
415 error = security_inode_getxattr(dentry, name);
416 if (error)
417 return error;
418
5be196e5 419 if (!strncmp(name, XATTR_SECURITY_PREFIX,
e0ad7b07 420 XATTR_SECURITY_PREFIX_LEN)) {
421 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
71bc356f
CB
422 int ret = xattr_getsecurity(mnt_userns, inode, suffix, value,
423 size);
5be196e5
CH
424 /*
425 * Only overwrite the return value if a security module
426 * is actually active.
427 */
4bea5805
DQ
428 if (ret == -EOPNOTSUPP)
429 goto nolsm;
430 return ret;
5be196e5 431 }
4bea5805 432nolsm:
5d6c3191 433 return __vfs_getxattr(dentry, inode, name, value, size);
5be196e5
CH
434}
435EXPORT_SYMBOL_GPL(vfs_getxattr);
436
659564c8 437ssize_t
bf3ee713 438vfs_listxattr(struct dentry *dentry, char *list, size_t size)
659564c8 439{
bf3ee713 440 struct inode *inode = d_inode(dentry);
659564c8
BN
441 ssize_t error;
442
bf3ee713 443 error = security_inode_listxattr(dentry);
659564c8
BN
444 if (error)
445 return error;
bf3ee713 446 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
bf3ee713 447 error = inode->i_op->listxattr(dentry, list, size);
659564c8 448 } else {
bf3ee713 449 error = security_inode_listsecurity(inode, list, size);
659564c8
BN
450 if (size && error > size)
451 error = -ERANGE;
452 }
453 return error;
454}
455EXPORT_SYMBOL_GPL(vfs_listxattr);
456
5be196e5 457int
c7c7a1a1
TA
458__vfs_removexattr(struct user_namespace *mnt_userns, struct dentry *dentry,
459 const char *name)
5be196e5 460{
6c6ef9f2
AG
461 struct inode *inode = d_inode(dentry);
462 const struct xattr_handler *handler;
5be196e5 463
6c6ef9f2
AG
464 handler = xattr_resolve_name(inode, &name);
465 if (IS_ERR(handler))
466 return PTR_ERR(handler);
467 if (!handler->set)
5be196e5 468 return -EOPNOTSUPP;
c7c7a1a1
TA
469 return handler->set(handler, mnt_userns, dentry, inode, name, NULL, 0,
470 XATTR_REPLACE);
5d6c3191
AG
471}
472EXPORT_SYMBOL(__vfs_removexattr);
473
3fb38c98
SF
474/**
475 * __vfs_removexattr_noperm - perform removexattr operation without
476 * performing permission checks.
477 *
478 * @dentry - object to perform setxattr on
479 * @name - xattr name to set
480 *
481 * returns the result of the internal setxattr or setsecurity operations.
482 *
483 * This function requires the caller to lock the inode's i_mutex before it
484 * is executed. It also assumes that the caller will make the appropriate
485 * permission checks.
486 */
487int
488__vfs_removexattr_noperm(struct user_namespace *mnt_userns,
489 struct dentry *dentry, const char *name)
490{
491 int error;
492
493 error =__vfs_removexattr(mnt_userns, dentry, name);
494 if (!error) {
495 fsnotify_xattr(dentry);
496 evm_inode_post_removexattr(dentry, name);
497 }
498 return error;
499}
500EXPORT_SYMBOL_GPL(__vfs_removexattr_noperm);
501
08b5d501 502/**
da5c1c0b 503 * __vfs_removexattr_locked - set an extended attribute while holding the inode
08b5d501
FL
504 * lock
505 *
6961fed4 506 * @mnt_userns: user namespace of the mount of the target inode
da5c1c0b
RD
507 * @dentry: object to perform setxattr on
508 * @name: name of xattr to remove
509 * @delegated_inode: on return, will contain an inode pointer that
08b5d501
FL
510 * a delegation was broken on, NULL if none.
511 */
5d6c3191 512int
c7c7a1a1
TA
513__vfs_removexattr_locked(struct user_namespace *mnt_userns,
514 struct dentry *dentry, const char *name,
515 struct inode **delegated_inode)
5d6c3191
AG
516{
517 struct inode *inode = dentry->d_inode;
518 int error;
5be196e5 519
c7c7a1a1 520 error = xattr_permission(mnt_userns, inode, name, MAY_WRITE);
e0ad7b07 521 if (error)
522 return error;
523
71bc356f 524 error = security_inode_removexattr(mnt_userns, dentry, name);
7c51bb00
DK
525 if (error)
526 goto out;
5be196e5 527
08b5d501
FL
528 error = try_break_deleg(inode, delegated_inode);
529 if (error)
530 goto out;
531
3fb38c98 532 error = __vfs_removexattr_noperm(mnt_userns, dentry, name);
7c51bb00
DK
533
534out:
08b5d501
FL
535 return error;
536}
537EXPORT_SYMBOL_GPL(__vfs_removexattr_locked);
538
539int
c7c7a1a1
TA
540vfs_removexattr(struct user_namespace *mnt_userns, struct dentry *dentry,
541 const char *name)
08b5d501
FL
542{
543 struct inode *inode = dentry->d_inode;
544 struct inode *delegated_inode = NULL;
545 int error;
546
547retry_deleg:
548 inode_lock(inode);
c7c7a1a1
TA
549 error = __vfs_removexattr_locked(mnt_userns, dentry,
550 name, &delegated_inode);
5955102c 551 inode_unlock(inode);
08b5d501
FL
552
553 if (delegated_inode) {
554 error = break_deleg_wait(&delegated_inode);
555 if (!error)
556 goto retry_deleg;
557 }
558
5be196e5
CH
559 return error;
560}
561EXPORT_SYMBOL_GPL(vfs_removexattr);
562
1da177e4
LT
563/*
564 * Extended attribute SET operations
565 */
566static long
c7c7a1a1
TA
567setxattr(struct user_namespace *mnt_userns, struct dentry *d,
568 const char __user *name, const void __user *value, size_t size,
569 int flags)
1da177e4
LT
570{
571 int error;
572 void *kvalue = NULL;
573 char kname[XATTR_NAME_MAX + 1];
574
575 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
576 return -EINVAL;
577
578 error = strncpy_from_user(kname, name, sizeof(kname));
579 if (error == 0 || error == sizeof(kname))
580 error = -ERANGE;
581 if (error < 0)
582 return error;
583
584 if (size) {
585 if (size > XATTR_SIZE_MAX)
586 return -E2BIG;
752ade68
MH
587 kvalue = kvmalloc(size, GFP_KERNEL);
588 if (!kvalue)
589 return -ENOMEM;
44c82498
AM
590 if (copy_from_user(kvalue, value, size)) {
591 error = -EFAULT;
592 goto out;
593 }
2f6f0654
EB
594 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
595 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
c7c7a1a1 596 posix_acl_fix_xattr_from_user(mnt_userns, kvalue, size);
1da177e4
LT
597 }
598
c7c7a1a1 599 error = vfs_setxattr(mnt_userns, d, kname, kvalue, size, flags);
44c82498 600out:
0b2a6f23
RW
601 kvfree(kvalue);
602
1da177e4
LT
603 return error;
604}
605
8cc43116
EB
606static int path_setxattr(const char __user *pathname,
607 const char __user *name, const void __user *value,
608 size_t size, int flags, unsigned int lookup_flags)
1da177e4 609{
2d8f3038 610 struct path path;
1da177e4 611 int error;
c7c7a1a1 612
68f1bb8b
JL
613retry:
614 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
615 if (error)
616 return error;
2d8f3038 617 error = mnt_want_write(path.mnt);
18f335af 618 if (!error) {
c7c7a1a1
TA
619 error = setxattr(mnt_user_ns(path.mnt), path.dentry, name,
620 value, size, flags);
2d8f3038 621 mnt_drop_write(path.mnt);
18f335af 622 }
2d8f3038 623 path_put(&path);
68f1bb8b
JL
624 if (retry_estale(error, lookup_flags)) {
625 lookup_flags |= LOOKUP_REVAL;
626 goto retry;
627 }
1da177e4
LT
628 return error;
629}
630
8cc43116
EB
631SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
632 const char __user *, name, const void __user *, value,
633 size_t, size, int, flags)
634{
635 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
636}
637
64fd1de3
HC
638SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
639 const char __user *, name, const void __user *, value,
640 size_t, size, int, flags)
1da177e4 641{
8cc43116 642 return path_setxattr(pathname, name, value, size, flags, 0);
1da177e4
LT
643}
644
64fd1de3
HC
645SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
646 const void __user *,value, size_t, size, int, flags)
1da177e4 647{
2903ff01 648 struct fd f = fdget(fd);
1da177e4
LT
649 int error = -EBADF;
650
2903ff01 651 if (!f.file)
1da177e4 652 return error;
9f45f5bf 653 audit_file(f.file);
6742cee0 654 error = mnt_want_write_file(f.file);
18f335af 655 if (!error) {
c7c7a1a1
TA
656 error = setxattr(file_mnt_user_ns(f.file),
657 f.file->f_path.dentry, name,
658 value, size, flags);
6742cee0 659 mnt_drop_write_file(f.file);
18f335af 660 }
2903ff01 661 fdput(f);
1da177e4
LT
662 return error;
663}
664
665/*
666 * Extended attribute GET operations
667 */
668static ssize_t
c7c7a1a1
TA
669getxattr(struct user_namespace *mnt_userns, struct dentry *d,
670 const char __user *name, void __user *value, size_t size)
1da177e4
LT
671{
672 ssize_t error;
673 void *kvalue = NULL;
674 char kname[XATTR_NAME_MAX + 1];
675
676 error = strncpy_from_user(kname, name, sizeof(kname));
677 if (error == 0 || error == sizeof(kname))
678 error = -ERANGE;
679 if (error < 0)
680 return error;
681
682 if (size) {
683 if (size > XATTR_SIZE_MAX)
684 size = XATTR_SIZE_MAX;
752ade68
MH
685 kvalue = kvzalloc(size, GFP_KERNEL);
686 if (!kvalue)
687 return -ENOMEM;
1da177e4
LT
688 }
689
c7c7a1a1 690 error = vfs_getxattr(mnt_userns, d, kname, kvalue, size);
f549d6c1 691 if (error > 0) {
2f6f0654
EB
692 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
693 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
c7c7a1a1 694 posix_acl_fix_xattr_to_user(mnt_userns, kvalue, error);
f549d6c1
SS
695 if (size && copy_to_user(value, kvalue, error))
696 error = -EFAULT;
697 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
698 /* The file system tried to returned a value bigger
699 than XATTR_SIZE_MAX bytes. Not possible. */
700 error = -E2BIG;
1da177e4 701 }
0b2a6f23
RW
702
703 kvfree(kvalue);
704
1da177e4
LT
705 return error;
706}
707
8cc43116
EB
708static ssize_t path_getxattr(const char __user *pathname,
709 const char __user *name, void __user *value,
710 size_t size, unsigned int lookup_flags)
1da177e4 711{
2d8f3038 712 struct path path;
1da177e4 713 ssize_t error;
60e66b48
JL
714retry:
715 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
716 if (error)
717 return error;
c7c7a1a1 718 error = getxattr(mnt_user_ns(path.mnt), path.dentry, name, value, size);
2d8f3038 719 path_put(&path);
60e66b48
JL
720 if (retry_estale(error, lookup_flags)) {
721 lookup_flags |= LOOKUP_REVAL;
722 goto retry;
723 }
1da177e4
LT
724 return error;
725}
726
8cc43116
EB
727SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
728 const char __user *, name, void __user *, value, size_t, size)
729{
730 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
731}
732
64fd1de3
HC
733SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
734 const char __user *, name, void __user *, value, size_t, size)
1da177e4 735{
8cc43116 736 return path_getxattr(pathname, name, value, size, 0);
1da177e4
LT
737}
738
64fd1de3
HC
739SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
740 void __user *, value, size_t, size)
1da177e4 741{
2903ff01 742 struct fd f = fdget(fd);
1da177e4
LT
743 ssize_t error = -EBADF;
744
2903ff01 745 if (!f.file)
1da177e4 746 return error;
9f45f5bf 747 audit_file(f.file);
c7c7a1a1
TA
748 error = getxattr(file_mnt_user_ns(f.file), f.file->f_path.dentry,
749 name, value, size);
2903ff01 750 fdput(f);
1da177e4
LT
751 return error;
752}
753
754/*
755 * Extended attribute LIST operations
756 */
757static ssize_t
758listxattr(struct dentry *d, char __user *list, size_t size)
759{
760 ssize_t error;
761 char *klist = NULL;
762
763 if (size) {
764 if (size > XATTR_LIST_MAX)
765 size = XATTR_LIST_MAX;
752ade68
MH
766 klist = kvmalloc(size, GFP_KERNEL);
767 if (!klist)
768 return -ENOMEM;
1da177e4
LT
769 }
770
659564c8 771 error = vfs_listxattr(d, klist, size);
f549d6c1
SS
772 if (error > 0) {
773 if (size && copy_to_user(list, klist, error))
774 error = -EFAULT;
775 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
776 /* The file system tried to returned a list bigger
777 than XATTR_LIST_MAX bytes. Not possible. */
778 error = -E2BIG;
1da177e4 779 }
0b2a6f23
RW
780
781 kvfree(klist);
782
1da177e4
LT
783 return error;
784}
785
8cc43116
EB
786static ssize_t path_listxattr(const char __user *pathname, char __user *list,
787 size_t size, unsigned int lookup_flags)
1da177e4 788{
2d8f3038 789 struct path path;
1da177e4 790 ssize_t error;
10a90cf3
JL
791retry:
792 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
793 if (error)
794 return error;
2d8f3038
AV
795 error = listxattr(path.dentry, list, size);
796 path_put(&path);
10a90cf3
JL
797 if (retry_estale(error, lookup_flags)) {
798 lookup_flags |= LOOKUP_REVAL;
799 goto retry;
800 }
1da177e4
LT
801 return error;
802}
803
8cc43116
EB
804SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
805 size_t, size)
806{
807 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
808}
809
64fd1de3
HC
810SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
811 size_t, size)
1da177e4 812{
8cc43116 813 return path_listxattr(pathname, list, size, 0);
1da177e4
LT
814}
815
64fd1de3 816SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
1da177e4 817{
2903ff01 818 struct fd f = fdget(fd);
1da177e4
LT
819 ssize_t error = -EBADF;
820
2903ff01 821 if (!f.file)
1da177e4 822 return error;
9f45f5bf 823 audit_file(f.file);
2903ff01
AV
824 error = listxattr(f.file->f_path.dentry, list, size);
825 fdput(f);
1da177e4
LT
826 return error;
827}
828
829/*
830 * Extended attribute REMOVE operations
831 */
832static long
c7c7a1a1
TA
833removexattr(struct user_namespace *mnt_userns, struct dentry *d,
834 const char __user *name)
1da177e4
LT
835{
836 int error;
837 char kname[XATTR_NAME_MAX + 1];
838
839 error = strncpy_from_user(kname, name, sizeof(kname));
840 if (error == 0 || error == sizeof(kname))
841 error = -ERANGE;
842 if (error < 0)
843 return error;
844
c7c7a1a1 845 return vfs_removexattr(mnt_userns, d, kname);
1da177e4
LT
846}
847
8cc43116
EB
848static int path_removexattr(const char __user *pathname,
849 const char __user *name, unsigned int lookup_flags)
1da177e4 850{
2d8f3038 851 struct path path;
1da177e4 852 int error;
12f06212
JL
853retry:
854 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
855 if (error)
856 return error;
2d8f3038 857 error = mnt_want_write(path.mnt);
18f335af 858 if (!error) {
c7c7a1a1 859 error = removexattr(mnt_user_ns(path.mnt), path.dentry, name);
2d8f3038 860 mnt_drop_write(path.mnt);
18f335af 861 }
2d8f3038 862 path_put(&path);
12f06212
JL
863 if (retry_estale(error, lookup_flags)) {
864 lookup_flags |= LOOKUP_REVAL;
865 goto retry;
866 }
1da177e4
LT
867 return error;
868}
869
8cc43116
EB
870SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
871 const char __user *, name)
872{
873 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
874}
875
6a6160a7
HC
876SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
877 const char __user *, name)
1da177e4 878{
8cc43116 879 return path_removexattr(pathname, name, 0);
1da177e4
LT
880}
881
6a6160a7 882SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
1da177e4 883{
2903ff01 884 struct fd f = fdget(fd);
1da177e4
LT
885 int error = -EBADF;
886
2903ff01 887 if (!f.file)
1da177e4 888 return error;
9f45f5bf 889 audit_file(f.file);
6742cee0 890 error = mnt_want_write_file(f.file);
18f335af 891 if (!error) {
c7c7a1a1
TA
892 error = removexattr(file_mnt_user_ns(f.file),
893 f.file->f_path.dentry, name);
6742cee0 894 mnt_drop_write_file(f.file);
18f335af 895 }
2903ff01 896 fdput(f);
1da177e4
LT
897 return error;
898}
899
1da177e4
LT
900/*
901 * Combine the results of the list() operation from every xattr_handler in the
902 * list.
903 */
904ssize_t
905generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
906{
bb435453 907 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
1da177e4
LT
908 unsigned int size = 0;
909
910 if (!buffer) {
431547b3 911 for_each_xattr_handler(handlers, handler) {
764a5c6b
AG
912 if (!handler->name ||
913 (handler->list && !handler->list(dentry)))
c4803c49 914 continue;
764a5c6b 915 size += strlen(handler->name) + 1;
431547b3 916 }
1da177e4
LT
917 } else {
918 char *buf = buffer;
764a5c6b 919 size_t len;
1da177e4
LT
920
921 for_each_xattr_handler(handlers, handler) {
764a5c6b
AG
922 if (!handler->name ||
923 (handler->list && !handler->list(dentry)))
c4803c49 924 continue;
764a5c6b
AG
925 len = strlen(handler->name);
926 if (len + 1 > buffer_size)
1da177e4 927 return -ERANGE;
764a5c6b
AG
928 memcpy(buf, handler->name, len + 1);
929 buf += len + 1;
930 buffer_size -= len + 1;
1da177e4
LT
931 }
932 size = buf - buffer;
933 }
934 return size;
935}
1da177e4 936EXPORT_SYMBOL(generic_listxattr);
38f38657 937
e409de99
AG
938/**
939 * xattr_full_name - Compute full attribute name from suffix
940 *
941 * @handler: handler of the xattr_handler operation
942 * @name: name passed to the xattr_handler operation
943 *
944 * The get and set xattr handler operations are called with the remainder of
945 * the attribute name after skipping the handler's prefix: for example, "foo"
946 * is passed to the get operation of a handler with prefix "user." to get
947 * attribute "user.foo". The full name is still "there" in the name though.
948 *
949 * Note: the list xattr handler operation when called from the vfs is passed a
950 * NULL name; some file systems use this operation internally, with varying
951 * semantics.
952 */
953const char *xattr_full_name(const struct xattr_handler *handler,
954 const char *name)
955{
98e9cb57 956 size_t prefix_len = strlen(xattr_prefix(handler));
e409de99
AG
957
958 return name - prefix_len;
959}
960EXPORT_SYMBOL(xattr_full_name);
961
38f38657
AR
962/*
963 * Allocate new xattr and copy in the value; but leave the name to callers.
964 */
965struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
966{
967 struct simple_xattr *new_xattr;
968 size_t len;
969
970 /* wrap around? */
971 len = sizeof(*new_xattr) + size;
4e66d445 972 if (len < sizeof(*new_xattr))
38f38657
AR
973 return NULL;
974
fdc85222 975 new_xattr = kvmalloc(len, GFP_KERNEL);
38f38657
AR
976 if (!new_xattr)
977 return NULL;
978
979 new_xattr->size = size;
980 memcpy(new_xattr->value, value, size);
981 return new_xattr;
982}
983
984/*
985 * xattr GET operation for in-memory/pseudo filesystems
986 */
987int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
988 void *buffer, size_t size)
989{
990 struct simple_xattr *xattr;
991 int ret = -ENODATA;
992
993 spin_lock(&xattrs->lock);
994 list_for_each_entry(xattr, &xattrs->head, list) {
995 if (strcmp(name, xattr->name))
996 continue;
997
998 ret = xattr->size;
999 if (buffer) {
1000 if (size < xattr->size)
1001 ret = -ERANGE;
1002 else
1003 memcpy(buffer, xattr->value, xattr->size);
1004 }
1005 break;
1006 }
1007 spin_unlock(&xattrs->lock);
1008 return ret;
1009}
1010
aa7c5241
AG
1011/**
1012 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
1013 * @xattrs: target simple_xattr list
1014 * @name: name of the extended attribute
1015 * @value: value of the xattr. If %NULL, will remove the attribute.
1016 * @size: size of the new xattr
1017 * @flags: %XATTR_{CREATE|REPLACE}
a46a2295 1018 * @removed_size: returns size of the removed xattr, -1 if none removed
aa7c5241
AG
1019 *
1020 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
1021 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
1022 * otherwise, fails with -ENODATA.
1023 *
1024 * Returns 0 on success, -errno on failure.
1025 */
1026int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
a46a2295
DX
1027 const void *value, size_t size, int flags,
1028 ssize_t *removed_size)
38f38657
AR
1029{
1030 struct simple_xattr *xattr;
43385846 1031 struct simple_xattr *new_xattr = NULL;
38f38657
AR
1032 int err = 0;
1033
772b3140
DX
1034 if (removed_size)
1035 *removed_size = -1;
1036
38f38657
AR
1037 /* value == NULL means remove */
1038 if (value) {
1039 new_xattr = simple_xattr_alloc(value, size);
1040 if (!new_xattr)
1041 return -ENOMEM;
1042
1043 new_xattr->name = kstrdup(name, GFP_KERNEL);
1044 if (!new_xattr->name) {
fdc85222 1045 kvfree(new_xattr);
38f38657
AR
1046 return -ENOMEM;
1047 }
1048 }
1049
1050 spin_lock(&xattrs->lock);
1051 list_for_each_entry(xattr, &xattrs->head, list) {
1052 if (!strcmp(name, xattr->name)) {
1053 if (flags & XATTR_CREATE) {
1054 xattr = new_xattr;
1055 err = -EEXIST;
1056 } else if (new_xattr) {
1057 list_replace(&xattr->list, &new_xattr->list);
a46a2295
DX
1058 if (removed_size)
1059 *removed_size = xattr->size;
38f38657
AR
1060 } else {
1061 list_del(&xattr->list);
a46a2295
DX
1062 if (removed_size)
1063 *removed_size = xattr->size;
38f38657
AR
1064 }
1065 goto out;
1066 }
1067 }
1068 if (flags & XATTR_REPLACE) {
1069 xattr = new_xattr;
1070 err = -ENODATA;
1071 } else {
1072 list_add(&new_xattr->list, &xattrs->head);
1073 xattr = NULL;
1074 }
1075out:
1076 spin_unlock(&xattrs->lock);
1077 if (xattr) {
1078 kfree(xattr->name);
fdc85222 1079 kvfree(xattr);
38f38657
AR
1080 }
1081 return err;
1082
1083}
1084
38f38657
AR
1085static bool xattr_is_trusted(const char *name)
1086{
1087 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
1088}
1089
786534b9
AG
1090static int xattr_list_one(char **buffer, ssize_t *remaining_size,
1091 const char *name)
1092{
1093 size_t len = strlen(name) + 1;
1094 if (*buffer) {
1095 if (*remaining_size < len)
1096 return -ERANGE;
1097 memcpy(*buffer, name, len);
1098 *buffer += len;
1099 }
1100 *remaining_size -= len;
1101 return 0;
1102}
1103
38f38657
AR
1104/*
1105 * xattr LIST operation for in-memory/pseudo filesystems
1106 */
786534b9
AG
1107ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
1108 char *buffer, size_t size)
38f38657
AR
1109{
1110 bool trusted = capable(CAP_SYS_ADMIN);
1111 struct simple_xattr *xattr;
786534b9 1112 ssize_t remaining_size = size;
0e9a7da5 1113 int err = 0;
786534b9
AG
1114
1115#ifdef CONFIG_FS_POSIX_ACL
ffc4c922
AG
1116 if (IS_POSIXACL(inode)) {
1117 if (inode->i_acl) {
1118 err = xattr_list_one(&buffer, &remaining_size,
1119 XATTR_NAME_POSIX_ACL_ACCESS);
1120 if (err)
1121 return err;
1122 }
1123 if (inode->i_default_acl) {
1124 err = xattr_list_one(&buffer, &remaining_size,
1125 XATTR_NAME_POSIX_ACL_DEFAULT);
1126 if (err)
1127 return err;
1128 }
786534b9
AG
1129 }
1130#endif
38f38657
AR
1131
1132 spin_lock(&xattrs->lock);
1133 list_for_each_entry(xattr, &xattrs->head, list) {
38f38657
AR
1134 /* skip "trusted." attributes for unprivileged callers */
1135 if (!trusted && xattr_is_trusted(xattr->name))
1136 continue;
1137
786534b9
AG
1138 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
1139 if (err)
0e9a7da5 1140 break;
38f38657
AR
1141 }
1142 spin_unlock(&xattrs->lock);
1143
0e9a7da5 1144 return err ? err : size - remaining_size;
38f38657
AR
1145}
1146
4895768b
AR
1147/*
1148 * Adds an extended attribute to the list
1149 */
38f38657
AR
1150void simple_xattr_list_add(struct simple_xattrs *xattrs,
1151 struct simple_xattr *new_xattr)
1152{
1153 spin_lock(&xattrs->lock);
1154 list_add(&new_xattr->list, &xattrs->head);
1155 spin_unlock(&xattrs->lock);
1156}