]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/xattr.c
NFSD: Protect against send buffer overflow in NFSv3 READDIR
[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}
7fea21ae 388EXPORT_SYMBOL_GPL(vfs_getxattr_alloc);
1601fbad 389
5d6c3191
AG
390ssize_t
391__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
392 void *value, size_t size)
393{
6c6ef9f2
AG
394 const struct xattr_handler *handler;
395
396 handler = xattr_resolve_name(inode, &name);
397 if (IS_ERR(handler))
398 return PTR_ERR(handler);
399 if (!handler->get)
5d6c3191 400 return -EOPNOTSUPP;
6c6ef9f2 401 return handler->get(handler, dentry, inode, name, value, size);
5d6c3191
AG
402}
403EXPORT_SYMBOL(__vfs_getxattr);
404
5be196e5 405ssize_t
c7c7a1a1
TA
406vfs_getxattr(struct user_namespace *mnt_userns, struct dentry *dentry,
407 const char *name, void *value, size_t size)
5be196e5
CH
408{
409 struct inode *inode = dentry->d_inode;
410 int error;
411
c7c7a1a1 412 error = xattr_permission(mnt_userns, inode, name, MAY_READ);
e0ad7b07 413 if (error)
414 return error;
415
5be196e5
CH
416 error = security_inode_getxattr(dentry, name);
417 if (error)
418 return error;
419
5be196e5 420 if (!strncmp(name, XATTR_SECURITY_PREFIX,
e0ad7b07 421 XATTR_SECURITY_PREFIX_LEN)) {
422 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
71bc356f
CB
423 int ret = xattr_getsecurity(mnt_userns, inode, suffix, value,
424 size);
5be196e5
CH
425 /*
426 * Only overwrite the return value if a security module
427 * is actually active.
428 */
4bea5805
DQ
429 if (ret == -EOPNOTSUPP)
430 goto nolsm;
431 return ret;
5be196e5 432 }
4bea5805 433nolsm:
5d6c3191 434 return __vfs_getxattr(dentry, inode, name, value, size);
5be196e5
CH
435}
436EXPORT_SYMBOL_GPL(vfs_getxattr);
437
659564c8 438ssize_t
bf3ee713 439vfs_listxattr(struct dentry *dentry, char *list, size_t size)
659564c8 440{
bf3ee713 441 struct inode *inode = d_inode(dentry);
659564c8
BN
442 ssize_t error;
443
bf3ee713 444 error = security_inode_listxattr(dentry);
659564c8
BN
445 if (error)
446 return error;
bf3ee713 447 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
bf3ee713 448 error = inode->i_op->listxattr(dentry, list, size);
659564c8 449 } else {
bf3ee713 450 error = security_inode_listsecurity(inode, list, size);
659564c8
BN
451 if (size && error > size)
452 error = -ERANGE;
453 }
454 return error;
455}
456EXPORT_SYMBOL_GPL(vfs_listxattr);
457
5be196e5 458int
c7c7a1a1
TA
459__vfs_removexattr(struct user_namespace *mnt_userns, struct dentry *dentry,
460 const char *name)
5be196e5 461{
6c6ef9f2
AG
462 struct inode *inode = d_inode(dentry);
463 const struct xattr_handler *handler;
5be196e5 464
6c6ef9f2
AG
465 handler = xattr_resolve_name(inode, &name);
466 if (IS_ERR(handler))
467 return PTR_ERR(handler);
468 if (!handler->set)
5be196e5 469 return -EOPNOTSUPP;
c7c7a1a1
TA
470 return handler->set(handler, mnt_userns, dentry, inode, name, NULL, 0,
471 XATTR_REPLACE);
5d6c3191
AG
472}
473EXPORT_SYMBOL(__vfs_removexattr);
474
3fb38c98
SF
475/**
476 * __vfs_removexattr_noperm - perform removexattr operation without
477 * performing permission checks.
478 *
479 * @dentry - object to perform setxattr on
480 * @name - xattr name to set
481 *
482 * returns the result of the internal setxattr or setsecurity operations.
483 *
484 * This function requires the caller to lock the inode's i_mutex before it
485 * is executed. It also assumes that the caller will make the appropriate
486 * permission checks.
487 */
488int
489__vfs_removexattr_noperm(struct user_namespace *mnt_userns,
490 struct dentry *dentry, const char *name)
491{
492 int error;
493
494 error =__vfs_removexattr(mnt_userns, dentry, name);
495 if (!error) {
496 fsnotify_xattr(dentry);
497 evm_inode_post_removexattr(dentry, name);
498 }
499 return error;
500}
501EXPORT_SYMBOL_GPL(__vfs_removexattr_noperm);
502
08b5d501 503/**
da5c1c0b 504 * __vfs_removexattr_locked - set an extended attribute while holding the inode
08b5d501
FL
505 * lock
506 *
6961fed4 507 * @mnt_userns: user namespace of the mount of the target inode
da5c1c0b
RD
508 * @dentry: object to perform setxattr on
509 * @name: name of xattr to remove
510 * @delegated_inode: on return, will contain an inode pointer that
08b5d501
FL
511 * a delegation was broken on, NULL if none.
512 */
5d6c3191 513int
c7c7a1a1
TA
514__vfs_removexattr_locked(struct user_namespace *mnt_userns,
515 struct dentry *dentry, const char *name,
516 struct inode **delegated_inode)
5d6c3191
AG
517{
518 struct inode *inode = dentry->d_inode;
519 int error;
5be196e5 520
c7c7a1a1 521 error = xattr_permission(mnt_userns, inode, name, MAY_WRITE);
e0ad7b07 522 if (error)
523 return error;
524
71bc356f 525 error = security_inode_removexattr(mnt_userns, dentry, name);
7c51bb00
DK
526 if (error)
527 goto out;
5be196e5 528
08b5d501
FL
529 error = try_break_deleg(inode, delegated_inode);
530 if (error)
531 goto out;
532
3fb38c98 533 error = __vfs_removexattr_noperm(mnt_userns, dentry, name);
7c51bb00
DK
534
535out:
08b5d501
FL
536 return error;
537}
538EXPORT_SYMBOL_GPL(__vfs_removexattr_locked);
539
540int
c7c7a1a1
TA
541vfs_removexattr(struct user_namespace *mnt_userns, struct dentry *dentry,
542 const char *name)
08b5d501
FL
543{
544 struct inode *inode = dentry->d_inode;
545 struct inode *delegated_inode = NULL;
546 int error;
547
548retry_deleg:
549 inode_lock(inode);
c7c7a1a1
TA
550 error = __vfs_removexattr_locked(mnt_userns, dentry,
551 name, &delegated_inode);
5955102c 552 inode_unlock(inode);
08b5d501
FL
553
554 if (delegated_inode) {
555 error = break_deleg_wait(&delegated_inode);
556 if (!error)
557 goto retry_deleg;
558 }
559
5be196e5
CH
560 return error;
561}
562EXPORT_SYMBOL_GPL(vfs_removexattr);
563
1da177e4
LT
564/*
565 * Extended attribute SET operations
566 */
567static long
c7c7a1a1
TA
568setxattr(struct user_namespace *mnt_userns, struct dentry *d,
569 const char __user *name, const void __user *value, size_t size,
570 int flags)
1da177e4
LT
571{
572 int error;
573 void *kvalue = NULL;
574 char kname[XATTR_NAME_MAX + 1];
575
576 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
577 return -EINVAL;
578
579 error = strncpy_from_user(kname, name, sizeof(kname));
580 if (error == 0 || error == sizeof(kname))
581 error = -ERANGE;
582 if (error < 0)
583 return error;
584
585 if (size) {
586 if (size > XATTR_SIZE_MAX)
587 return -E2BIG;
752ade68
MH
588 kvalue = kvmalloc(size, GFP_KERNEL);
589 if (!kvalue)
590 return -ENOMEM;
44c82498
AM
591 if (copy_from_user(kvalue, value, size)) {
592 error = -EFAULT;
593 goto out;
594 }
2f6f0654
EB
595 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
596 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
ecc407ca
CB
597 posix_acl_fix_xattr_from_user(mnt_userns, d_inode(d),
598 kvalue, size);
1da177e4
LT
599 }
600
c7c7a1a1 601 error = vfs_setxattr(mnt_userns, d, kname, kvalue, size, flags);
44c82498 602out:
0b2a6f23
RW
603 kvfree(kvalue);
604
1da177e4
LT
605 return error;
606}
607
8cc43116
EB
608static int path_setxattr(const char __user *pathname,
609 const char __user *name, const void __user *value,
610 size_t size, int flags, unsigned int lookup_flags)
1da177e4 611{
2d8f3038 612 struct path path;
1da177e4 613 int error;
c7c7a1a1 614
68f1bb8b
JL
615retry:
616 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
617 if (error)
618 return error;
2d8f3038 619 error = mnt_want_write(path.mnt);
18f335af 620 if (!error) {
c7c7a1a1
TA
621 error = setxattr(mnt_user_ns(path.mnt), path.dentry, name,
622 value, size, flags);
2d8f3038 623 mnt_drop_write(path.mnt);
18f335af 624 }
2d8f3038 625 path_put(&path);
68f1bb8b
JL
626 if (retry_estale(error, lookup_flags)) {
627 lookup_flags |= LOOKUP_REVAL;
628 goto retry;
629 }
1da177e4
LT
630 return error;
631}
632
8cc43116
EB
633SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
634 const char __user *, name, const void __user *, value,
635 size_t, size, int, flags)
636{
637 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
638}
639
64fd1de3
HC
640SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
641 const char __user *, name, const void __user *, value,
642 size_t, size, int, flags)
1da177e4 643{
8cc43116 644 return path_setxattr(pathname, name, value, size, flags, 0);
1da177e4
LT
645}
646
64fd1de3
HC
647SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
648 const void __user *,value, size_t, size, int, flags)
1da177e4 649{
2903ff01 650 struct fd f = fdget(fd);
1da177e4
LT
651 int error = -EBADF;
652
2903ff01 653 if (!f.file)
1da177e4 654 return error;
9f45f5bf 655 audit_file(f.file);
6742cee0 656 error = mnt_want_write_file(f.file);
18f335af 657 if (!error) {
c7c7a1a1
TA
658 error = setxattr(file_mnt_user_ns(f.file),
659 f.file->f_path.dentry, name,
660 value, size, flags);
6742cee0 661 mnt_drop_write_file(f.file);
18f335af 662 }
2903ff01 663 fdput(f);
1da177e4
LT
664 return error;
665}
666
667/*
668 * Extended attribute GET operations
669 */
670static ssize_t
c7c7a1a1
TA
671getxattr(struct user_namespace *mnt_userns, struct dentry *d,
672 const char __user *name, void __user *value, size_t size)
1da177e4
LT
673{
674 ssize_t error;
675 void *kvalue = NULL;
676 char kname[XATTR_NAME_MAX + 1];
677
678 error = strncpy_from_user(kname, name, sizeof(kname));
679 if (error == 0 || error == sizeof(kname))
680 error = -ERANGE;
681 if (error < 0)
682 return error;
683
684 if (size) {
685 if (size > XATTR_SIZE_MAX)
686 size = XATTR_SIZE_MAX;
752ade68
MH
687 kvalue = kvzalloc(size, GFP_KERNEL);
688 if (!kvalue)
689 return -ENOMEM;
1da177e4
LT
690 }
691
c7c7a1a1 692 error = vfs_getxattr(mnt_userns, d, kname, kvalue, size);
f549d6c1 693 if (error > 0) {
2f6f0654
EB
694 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
695 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
ecc407ca
CB
696 posix_acl_fix_xattr_to_user(mnt_userns, d_inode(d),
697 kvalue, error);
f549d6c1
SS
698 if (size && copy_to_user(value, kvalue, error))
699 error = -EFAULT;
700 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
701 /* The file system tried to returned a value bigger
702 than XATTR_SIZE_MAX bytes. Not possible. */
703 error = -E2BIG;
1da177e4 704 }
0b2a6f23
RW
705
706 kvfree(kvalue);
707
1da177e4
LT
708 return error;
709}
710
8cc43116
EB
711static ssize_t path_getxattr(const char __user *pathname,
712 const char __user *name, void __user *value,
713 size_t size, unsigned int lookup_flags)
1da177e4 714{
2d8f3038 715 struct path path;
1da177e4 716 ssize_t error;
60e66b48
JL
717retry:
718 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
719 if (error)
720 return error;
c7c7a1a1 721 error = getxattr(mnt_user_ns(path.mnt), path.dentry, name, value, size);
2d8f3038 722 path_put(&path);
60e66b48
JL
723 if (retry_estale(error, lookup_flags)) {
724 lookup_flags |= LOOKUP_REVAL;
725 goto retry;
726 }
1da177e4
LT
727 return error;
728}
729
8cc43116
EB
730SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
731 const char __user *, name, void __user *, value, size_t, size)
732{
733 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
734}
735
64fd1de3
HC
736SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
737 const char __user *, name, void __user *, value, size_t, size)
1da177e4 738{
8cc43116 739 return path_getxattr(pathname, name, value, size, 0);
1da177e4
LT
740}
741
64fd1de3
HC
742SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
743 void __user *, value, size_t, size)
1da177e4 744{
2903ff01 745 struct fd f = fdget(fd);
1da177e4
LT
746 ssize_t error = -EBADF;
747
2903ff01 748 if (!f.file)
1da177e4 749 return error;
9f45f5bf 750 audit_file(f.file);
c7c7a1a1
TA
751 error = getxattr(file_mnt_user_ns(f.file), f.file->f_path.dentry,
752 name, value, size);
2903ff01 753 fdput(f);
1da177e4
LT
754 return error;
755}
756
757/*
758 * Extended attribute LIST operations
759 */
760static ssize_t
761listxattr(struct dentry *d, char __user *list, size_t size)
762{
763 ssize_t error;
764 char *klist = NULL;
765
766 if (size) {
767 if (size > XATTR_LIST_MAX)
768 size = XATTR_LIST_MAX;
752ade68
MH
769 klist = kvmalloc(size, GFP_KERNEL);
770 if (!klist)
771 return -ENOMEM;
1da177e4
LT
772 }
773
659564c8 774 error = vfs_listxattr(d, klist, size);
f549d6c1
SS
775 if (error > 0) {
776 if (size && copy_to_user(list, klist, error))
777 error = -EFAULT;
778 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
779 /* The file system tried to returned a list bigger
780 than XATTR_LIST_MAX bytes. Not possible. */
781 error = -E2BIG;
1da177e4 782 }
0b2a6f23
RW
783
784 kvfree(klist);
785
1da177e4
LT
786 return error;
787}
788
8cc43116
EB
789static ssize_t path_listxattr(const char __user *pathname, char __user *list,
790 size_t size, unsigned int lookup_flags)
1da177e4 791{
2d8f3038 792 struct path path;
1da177e4 793 ssize_t error;
10a90cf3
JL
794retry:
795 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
796 if (error)
797 return error;
2d8f3038
AV
798 error = listxattr(path.dentry, list, size);
799 path_put(&path);
10a90cf3
JL
800 if (retry_estale(error, lookup_flags)) {
801 lookup_flags |= LOOKUP_REVAL;
802 goto retry;
803 }
1da177e4
LT
804 return error;
805}
806
8cc43116
EB
807SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
808 size_t, size)
809{
810 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
811}
812
64fd1de3
HC
813SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
814 size_t, size)
1da177e4 815{
8cc43116 816 return path_listxattr(pathname, list, size, 0);
1da177e4
LT
817}
818
64fd1de3 819SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
1da177e4 820{
2903ff01 821 struct fd f = fdget(fd);
1da177e4
LT
822 ssize_t error = -EBADF;
823
2903ff01 824 if (!f.file)
1da177e4 825 return error;
9f45f5bf 826 audit_file(f.file);
2903ff01
AV
827 error = listxattr(f.file->f_path.dentry, list, size);
828 fdput(f);
1da177e4
LT
829 return error;
830}
831
832/*
833 * Extended attribute REMOVE operations
834 */
835static long
c7c7a1a1
TA
836removexattr(struct user_namespace *mnt_userns, struct dentry *d,
837 const char __user *name)
1da177e4
LT
838{
839 int error;
840 char kname[XATTR_NAME_MAX + 1];
841
842 error = strncpy_from_user(kname, name, sizeof(kname));
843 if (error == 0 || error == sizeof(kname))
844 error = -ERANGE;
845 if (error < 0)
846 return error;
847
c7c7a1a1 848 return vfs_removexattr(mnt_userns, d, kname);
1da177e4
LT
849}
850
8cc43116
EB
851static int path_removexattr(const char __user *pathname,
852 const char __user *name, unsigned int lookup_flags)
1da177e4 853{
2d8f3038 854 struct path path;
1da177e4 855 int error;
12f06212
JL
856retry:
857 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
858 if (error)
859 return error;
2d8f3038 860 error = mnt_want_write(path.mnt);
18f335af 861 if (!error) {
c7c7a1a1 862 error = removexattr(mnt_user_ns(path.mnt), path.dentry, name);
2d8f3038 863 mnt_drop_write(path.mnt);
18f335af 864 }
2d8f3038 865 path_put(&path);
12f06212
JL
866 if (retry_estale(error, lookup_flags)) {
867 lookup_flags |= LOOKUP_REVAL;
868 goto retry;
869 }
1da177e4
LT
870 return error;
871}
872
8cc43116
EB
873SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
874 const char __user *, name)
875{
876 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
877}
878
6a6160a7
HC
879SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
880 const char __user *, name)
1da177e4 881{
8cc43116 882 return path_removexattr(pathname, name, 0);
1da177e4
LT
883}
884
6a6160a7 885SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
1da177e4 886{
2903ff01 887 struct fd f = fdget(fd);
1da177e4
LT
888 int error = -EBADF;
889
2903ff01 890 if (!f.file)
1da177e4 891 return error;
9f45f5bf 892 audit_file(f.file);
6742cee0 893 error = mnt_want_write_file(f.file);
18f335af 894 if (!error) {
c7c7a1a1
TA
895 error = removexattr(file_mnt_user_ns(f.file),
896 f.file->f_path.dentry, name);
6742cee0 897 mnt_drop_write_file(f.file);
18f335af 898 }
2903ff01 899 fdput(f);
1da177e4
LT
900 return error;
901}
902
1da177e4
LT
903/*
904 * Combine the results of the list() operation from every xattr_handler in the
905 * list.
906 */
907ssize_t
908generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
909{
bb435453 910 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
1da177e4
LT
911 unsigned int size = 0;
912
913 if (!buffer) {
431547b3 914 for_each_xattr_handler(handlers, handler) {
764a5c6b
AG
915 if (!handler->name ||
916 (handler->list && !handler->list(dentry)))
c4803c49 917 continue;
764a5c6b 918 size += strlen(handler->name) + 1;
431547b3 919 }
1da177e4
LT
920 } else {
921 char *buf = buffer;
764a5c6b 922 size_t len;
1da177e4
LT
923
924 for_each_xattr_handler(handlers, handler) {
764a5c6b
AG
925 if (!handler->name ||
926 (handler->list && !handler->list(dentry)))
c4803c49 927 continue;
764a5c6b
AG
928 len = strlen(handler->name);
929 if (len + 1 > buffer_size)
1da177e4 930 return -ERANGE;
764a5c6b
AG
931 memcpy(buf, handler->name, len + 1);
932 buf += len + 1;
933 buffer_size -= len + 1;
1da177e4
LT
934 }
935 size = buf - buffer;
936 }
937 return size;
938}
1da177e4 939EXPORT_SYMBOL(generic_listxattr);
38f38657 940
e409de99
AG
941/**
942 * xattr_full_name - Compute full attribute name from suffix
943 *
944 * @handler: handler of the xattr_handler operation
945 * @name: name passed to the xattr_handler operation
946 *
947 * The get and set xattr handler operations are called with the remainder of
948 * the attribute name after skipping the handler's prefix: for example, "foo"
949 * is passed to the get operation of a handler with prefix "user." to get
950 * attribute "user.foo". The full name is still "there" in the name though.
951 *
952 * Note: the list xattr handler operation when called from the vfs is passed a
953 * NULL name; some file systems use this operation internally, with varying
954 * semantics.
955 */
956const char *xattr_full_name(const struct xattr_handler *handler,
957 const char *name)
958{
98e9cb57 959 size_t prefix_len = strlen(xattr_prefix(handler));
e409de99
AG
960
961 return name - prefix_len;
962}
963EXPORT_SYMBOL(xattr_full_name);
964
38f38657
AR
965/*
966 * Allocate new xattr and copy in the value; but leave the name to callers.
967 */
968struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
969{
970 struct simple_xattr *new_xattr;
971 size_t len;
972
973 /* wrap around? */
974 len = sizeof(*new_xattr) + size;
4e66d445 975 if (len < sizeof(*new_xattr))
38f38657
AR
976 return NULL;
977
fdc85222 978 new_xattr = kvmalloc(len, GFP_KERNEL);
38f38657
AR
979 if (!new_xattr)
980 return NULL;
981
982 new_xattr->size = size;
983 memcpy(new_xattr->value, value, size);
984 return new_xattr;
985}
986
987/*
988 * xattr GET operation for in-memory/pseudo filesystems
989 */
990int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
991 void *buffer, size_t size)
992{
993 struct simple_xattr *xattr;
994 int ret = -ENODATA;
995
996 spin_lock(&xattrs->lock);
997 list_for_each_entry(xattr, &xattrs->head, list) {
998 if (strcmp(name, xattr->name))
999 continue;
1000
1001 ret = xattr->size;
1002 if (buffer) {
1003 if (size < xattr->size)
1004 ret = -ERANGE;
1005 else
1006 memcpy(buffer, xattr->value, xattr->size);
1007 }
1008 break;
1009 }
1010 spin_unlock(&xattrs->lock);
1011 return ret;
1012}
1013
aa7c5241
AG
1014/**
1015 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
1016 * @xattrs: target simple_xattr list
1017 * @name: name of the extended attribute
1018 * @value: value of the xattr. If %NULL, will remove the attribute.
1019 * @size: size of the new xattr
1020 * @flags: %XATTR_{CREATE|REPLACE}
a46a2295 1021 * @removed_size: returns size of the removed xattr, -1 if none removed
aa7c5241
AG
1022 *
1023 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
1024 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
1025 * otherwise, fails with -ENODATA.
1026 *
1027 * Returns 0 on success, -errno on failure.
1028 */
1029int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
a46a2295
DX
1030 const void *value, size_t size, int flags,
1031 ssize_t *removed_size)
38f38657
AR
1032{
1033 struct simple_xattr *xattr;
43385846 1034 struct simple_xattr *new_xattr = NULL;
38f38657
AR
1035 int err = 0;
1036
772b3140
DX
1037 if (removed_size)
1038 *removed_size = -1;
1039
38f38657
AR
1040 /* value == NULL means remove */
1041 if (value) {
1042 new_xattr = simple_xattr_alloc(value, size);
1043 if (!new_xattr)
1044 return -ENOMEM;
1045
1046 new_xattr->name = kstrdup(name, GFP_KERNEL);
1047 if (!new_xattr->name) {
fdc85222 1048 kvfree(new_xattr);
38f38657
AR
1049 return -ENOMEM;
1050 }
1051 }
1052
1053 spin_lock(&xattrs->lock);
1054 list_for_each_entry(xattr, &xattrs->head, list) {
1055 if (!strcmp(name, xattr->name)) {
1056 if (flags & XATTR_CREATE) {
1057 xattr = new_xattr;
1058 err = -EEXIST;
1059 } else if (new_xattr) {
1060 list_replace(&xattr->list, &new_xattr->list);
a46a2295
DX
1061 if (removed_size)
1062 *removed_size = xattr->size;
38f38657
AR
1063 } else {
1064 list_del(&xattr->list);
a46a2295
DX
1065 if (removed_size)
1066 *removed_size = xattr->size;
38f38657
AR
1067 }
1068 goto out;
1069 }
1070 }
1071 if (flags & XATTR_REPLACE) {
1072 xattr = new_xattr;
1073 err = -ENODATA;
1074 } else {
1075 list_add(&new_xattr->list, &xattrs->head);
1076 xattr = NULL;
1077 }
1078out:
1079 spin_unlock(&xattrs->lock);
1080 if (xattr) {
1081 kfree(xattr->name);
fdc85222 1082 kvfree(xattr);
38f38657
AR
1083 }
1084 return err;
1085
1086}
1087
38f38657
AR
1088static bool xattr_is_trusted(const char *name)
1089{
1090 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
1091}
1092
786534b9
AG
1093static int xattr_list_one(char **buffer, ssize_t *remaining_size,
1094 const char *name)
1095{
1096 size_t len = strlen(name) + 1;
1097 if (*buffer) {
1098 if (*remaining_size < len)
1099 return -ERANGE;
1100 memcpy(*buffer, name, len);
1101 *buffer += len;
1102 }
1103 *remaining_size -= len;
1104 return 0;
1105}
1106
38f38657
AR
1107/*
1108 * xattr LIST operation for in-memory/pseudo filesystems
1109 */
786534b9
AG
1110ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
1111 char *buffer, size_t size)
38f38657
AR
1112{
1113 bool trusted = capable(CAP_SYS_ADMIN);
1114 struct simple_xattr *xattr;
786534b9 1115 ssize_t remaining_size = size;
0e9a7da5 1116 int err = 0;
786534b9
AG
1117
1118#ifdef CONFIG_FS_POSIX_ACL
ffc4c922
AG
1119 if (IS_POSIXACL(inode)) {
1120 if (inode->i_acl) {
1121 err = xattr_list_one(&buffer, &remaining_size,
1122 XATTR_NAME_POSIX_ACL_ACCESS);
1123 if (err)
1124 return err;
1125 }
1126 if (inode->i_default_acl) {
1127 err = xattr_list_one(&buffer, &remaining_size,
1128 XATTR_NAME_POSIX_ACL_DEFAULT);
1129 if (err)
1130 return err;
1131 }
786534b9
AG
1132 }
1133#endif
38f38657
AR
1134
1135 spin_lock(&xattrs->lock);
1136 list_for_each_entry(xattr, &xattrs->head, list) {
38f38657
AR
1137 /* skip "trusted." attributes for unprivileged callers */
1138 if (!trusted && xattr_is_trusted(xattr->name))
1139 continue;
1140
786534b9
AG
1141 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
1142 if (err)
0e9a7da5 1143 break;
38f38657
AR
1144 }
1145 spin_unlock(&xattrs->lock);
1146
0e9a7da5 1147 return err ? err : size - remaining_size;
38f38657
AR
1148}
1149
4895768b
AR
1150/*
1151 * Adds an extended attribute to the list
1152 */
38f38657
AR
1153void simple_xattr_list_add(struct simple_xattrs *xattrs,
1154 struct simple_xattr *new_xattr)
1155{
1156 spin_lock(&xattrs->lock);
1157 list_add(&new_xattr->list, &xattrs->head);
1158 spin_unlock(&xattrs->lock);
1159}