]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - fs/xattr.c
btrfs: zoned: use regular writes for relocation
[mirror_ubuntu-jammy-kernel.git] / fs / xattr.c
1 // SPDX-License-Identifier: GPL-2.0-only
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>
13 #include <linux/file.h>
14 #include <linux/xattr.h>
15 #include <linux/mount.h>
16 #include <linux/namei.h>
17 #include <linux/security.h>
18 #include <linux/evm.h>
19 #include <linux/syscalls.h>
20 #include <linux/export.h>
21 #include <linux/fsnotify.h>
22 #include <linux/audit.h>
23 #include <linux/vmalloc.h>
24 #include <linux/posix_acl_xattr.h>
25
26 #include <linux/uaccess.h>
27
28 static const char *
29 strcmp_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
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.
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 */
53 static const struct xattr_handler *
54 xattr_resolve_name(struct inode *inode, const char **name)
55 {
56 const struct xattr_handler **handlers = inode->i_sb->s_xattr;
57 const struct xattr_handler *handler;
58
59 if (!(inode->i_opflags & IOP_XATTR)) {
60 if (unlikely(is_bad_inode(inode)))
61 return ERR_PTR(-EIO);
62 return ERR_PTR(-EOPNOTSUPP);
63 }
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
81 /*
82 * Check permissions for extended attribute access. This is a bit complicated
83 * because different namespaces have very different rules.
84 */
85 static int
86 xattr_permission(struct user_namespace *mnt_userns, struct inode *inode,
87 const char *name, int mask)
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) {
94 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
95 return -EPERM;
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 */
101 if (HAS_UNMAPPED_ID(mnt_userns, inode))
102 return -EPERM;
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 /*
114 * The trusted.* namespace can only be accessed by privileged users.
115 */
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 }
121
122 /*
123 * In the user.* namespace, only regular files and directories can have
124 * extended attributes. For sticky directories, only the owner and
125 * privileged users can write attributes.
126 */
127 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
128 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
129 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
130 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
131 (mask & MAY_WRITE) &&
132 !inode_owner_or_capable(mnt_userns, inode))
133 return -EPERM;
134 }
135
136 return inode_permission(mnt_userns, inode, mask);
137 }
138
139 /*
140 * Look for any handler that deals with the specified namespace.
141 */
142 int
143 xattr_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 }
164 EXPORT_SYMBOL(xattr_supported_namespace);
165
166 int
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)
170 {
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)
177 return -EOPNOTSUPP;
178 if (size == 0)
179 value = ""; /* empty EA, do not remove */
180 return handler->set(handler, mnt_userns, dentry, inode, name, value,
181 size, flags);
182 }
183 EXPORT_SYMBOL(__vfs_setxattr);
184
185 /**
186 * __vfs_setxattr_noperm - perform setxattr operation without performing
187 * permission checks.
188 *
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
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 */
202 int __vfs_setxattr_noperm(struct user_namespace *mnt_userns,
203 struct dentry *dentry, const char *name,
204 const void *value, size_t size, int flags)
205 {
206 struct inode *inode = dentry->d_inode;
207 int error = -EAGAIN;
208 int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
209 XATTR_SECURITY_PREFIX_LEN);
210
211 if (issec)
212 inode->i_flags &= ~S_NOSEC;
213 if (inode->i_opflags & IOP_XATTR) {
214 error = __vfs_setxattr(mnt_userns, dentry, inode, name, value,
215 size, flags);
216 if (!error) {
217 fsnotify_xattr(dentry);
218 security_inode_post_setxattr(dentry, name, value,
219 size, flags);
220 }
221 } else {
222 if (unlikely(is_bad_inode(inode)))
223 return -EIO;
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 }
236 }
237
238 return error;
239 }
240 EXPORT_SYMBOL_GPL(__vfs_setxattr_noperm);
241
242 /**
243 * __vfs_setxattr_locked - set an extended attribute while holding the inode
244 * lock
245 *
246 * @mnt_userns: user namespace of the mount of the target inode
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
253 * a delegation was broken on, NULL if none.
254 */
255 int
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)
259 {
260 struct inode *inode = dentry->d_inode;
261 int error;
262
263 error = xattr_permission(mnt_userns, inode, name, MAY_WRITE);
264 if (error)
265 return error;
266
267 error = security_inode_setxattr(mnt_userns, dentry, name, value, size,
268 flags);
269 if (error)
270 goto out;
271
272 error = try_break_deleg(inode, delegated_inode);
273 if (error)
274 goto out;
275
276 error = __vfs_setxattr_noperm(mnt_userns, dentry, name, value,
277 size, flags);
278
279 out:
280 return error;
281 }
282 EXPORT_SYMBOL_GPL(__vfs_setxattr_locked);
283
284 int
285 vfs_setxattr(struct user_namespace *mnt_userns, struct dentry *dentry,
286 const char *name, const void *value, size_t size, int flags)
287 {
288 struct inode *inode = dentry->d_inode;
289 struct inode *delegated_inode = NULL;
290 const void *orig_value = value;
291 int error;
292
293 if (size && strcmp(name, XATTR_NAME_CAPS) == 0) {
294 error = cap_convert_nscap(mnt_userns, dentry, &value, size);
295 if (error < 0)
296 return error;
297 size = error;
298 }
299
300 retry_deleg:
301 inode_lock(inode);
302 error = __vfs_setxattr_locked(mnt_userns, dentry, name, value, size,
303 flags, &delegated_inode);
304 inode_unlock(inode);
305
306 if (delegated_inode) {
307 error = break_deleg_wait(&delegated_inode);
308 if (!error)
309 goto retry_deleg;
310 }
311 if (value != orig_value)
312 kfree(value);
313
314 return error;
315 }
316 EXPORT_SYMBOL_GPL(vfs_setxattr);
317
318 static ssize_t
319 xattr_getsecurity(struct user_namespace *mnt_userns, struct inode *inode,
320 const char *name, void *value, size_t size)
321 {
322 void *buffer = NULL;
323 ssize_t len;
324
325 if (!value || !size) {
326 len = security_inode_getsecurity(mnt_userns, inode, name,
327 &buffer, false);
328 goto out_noalloc;
329 }
330
331 len = security_inode_getsecurity(mnt_userns, inode, name, &buffer,
332 true);
333 if (len < 0)
334 return len;
335 if (size < len) {
336 len = -ERANGE;
337 goto out;
338 }
339 memcpy(value, buffer, len);
340 out:
341 kfree(buffer);
342 out_noalloc:
343 return len;
344 }
345
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 */
354 ssize_t
355 vfs_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)
358 {
359 const struct xattr_handler *handler;
360 struct inode *inode = dentry->d_inode;
361 char *value = *xattr_value;
362 int error;
363
364 error = xattr_permission(mnt_userns, inode, name, MAY_READ);
365 if (error)
366 return error;
367
368 handler = xattr_resolve_name(inode, &name);
369 if (IS_ERR(handler))
370 return PTR_ERR(handler);
371 if (!handler->get)
372 return -EOPNOTSUPP;
373 error = handler->get(handler, dentry, inode, name, NULL, 0);
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
384 error = handler->get(handler, dentry, inode, name, value, error);
385 *xattr_value = value;
386 return error;
387 }
388
389 ssize_t
390 __vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
391 void *value, size_t size)
392 {
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)
399 return -EOPNOTSUPP;
400 return handler->get(handler, dentry, inode, name, value, size);
401 }
402 EXPORT_SYMBOL(__vfs_getxattr);
403
404 ssize_t
405 vfs_getxattr(struct user_namespace *mnt_userns, struct dentry *dentry,
406 const char *name, void *value, size_t size)
407 {
408 struct inode *inode = dentry->d_inode;
409 int error;
410
411 error = xattr_permission(mnt_userns, inode, name, MAY_READ);
412 if (error)
413 return error;
414
415 error = security_inode_getxattr(dentry, name);
416 if (error)
417 return error;
418
419 if (!strncmp(name, XATTR_SECURITY_PREFIX,
420 XATTR_SECURITY_PREFIX_LEN)) {
421 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
422 int ret = xattr_getsecurity(mnt_userns, inode, suffix, value,
423 size);
424 /*
425 * Only overwrite the return value if a security module
426 * is actually active.
427 */
428 if (ret == -EOPNOTSUPP)
429 goto nolsm;
430 return ret;
431 }
432 nolsm:
433 return __vfs_getxattr(dentry, inode, name, value, size);
434 }
435 EXPORT_SYMBOL_GPL(vfs_getxattr);
436
437 ssize_t
438 vfs_listxattr(struct dentry *dentry, char *list, size_t size)
439 {
440 struct inode *inode = d_inode(dentry);
441 ssize_t error;
442
443 error = security_inode_listxattr(dentry);
444 if (error)
445 return error;
446 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
447 error = inode->i_op->listxattr(dentry, list, size);
448 } else {
449 error = security_inode_listsecurity(inode, list, size);
450 if (size && error > size)
451 error = -ERANGE;
452 }
453 return error;
454 }
455 EXPORT_SYMBOL_GPL(vfs_listxattr);
456
457 int
458 __vfs_removexattr(struct user_namespace *mnt_userns, struct dentry *dentry,
459 const char *name)
460 {
461 struct inode *inode = d_inode(dentry);
462 const struct xattr_handler *handler;
463
464 handler = xattr_resolve_name(inode, &name);
465 if (IS_ERR(handler))
466 return PTR_ERR(handler);
467 if (!handler->set)
468 return -EOPNOTSUPP;
469 return handler->set(handler, mnt_userns, dentry, inode, name, NULL, 0,
470 XATTR_REPLACE);
471 }
472 EXPORT_SYMBOL(__vfs_removexattr);
473
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 */
487 int
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 }
500 EXPORT_SYMBOL_GPL(__vfs_removexattr_noperm);
501
502 /**
503 * __vfs_removexattr_locked - set an extended attribute while holding the inode
504 * lock
505 *
506 * @mnt_userns: user namespace of the mount of the target inode
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
510 * a delegation was broken on, NULL if none.
511 */
512 int
513 __vfs_removexattr_locked(struct user_namespace *mnt_userns,
514 struct dentry *dentry, const char *name,
515 struct inode **delegated_inode)
516 {
517 struct inode *inode = dentry->d_inode;
518 int error;
519
520 error = xattr_permission(mnt_userns, inode, name, MAY_WRITE);
521 if (error)
522 return error;
523
524 error = security_inode_removexattr(mnt_userns, dentry, name);
525 if (error)
526 goto out;
527
528 error = try_break_deleg(inode, delegated_inode);
529 if (error)
530 goto out;
531
532 error = __vfs_removexattr_noperm(mnt_userns, dentry, name);
533
534 out:
535 return error;
536 }
537 EXPORT_SYMBOL_GPL(__vfs_removexattr_locked);
538
539 int
540 vfs_removexattr(struct user_namespace *mnt_userns, struct dentry *dentry,
541 const char *name)
542 {
543 struct inode *inode = dentry->d_inode;
544 struct inode *delegated_inode = NULL;
545 int error;
546
547 retry_deleg:
548 inode_lock(inode);
549 error = __vfs_removexattr_locked(mnt_userns, dentry,
550 name, &delegated_inode);
551 inode_unlock(inode);
552
553 if (delegated_inode) {
554 error = break_deleg_wait(&delegated_inode);
555 if (!error)
556 goto retry_deleg;
557 }
558
559 return error;
560 }
561 EXPORT_SYMBOL_GPL(vfs_removexattr);
562
563 /*
564 * Extended attribute SET operations
565 */
566 static long
567 setxattr(struct user_namespace *mnt_userns, struct dentry *d,
568 const char __user *name, const void __user *value, size_t size,
569 int flags)
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;
587 kvalue = kvmalloc(size, GFP_KERNEL);
588 if (!kvalue)
589 return -ENOMEM;
590 if (copy_from_user(kvalue, value, size)) {
591 error = -EFAULT;
592 goto out;
593 }
594 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
595 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
596 posix_acl_fix_xattr_from_user(mnt_userns, kvalue, size);
597 }
598
599 error = vfs_setxattr(mnt_userns, d, kname, kvalue, size, flags);
600 out:
601 kvfree(kvalue);
602
603 return error;
604 }
605
606 static 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)
609 {
610 struct path path;
611 int error;
612
613 retry:
614 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
615 if (error)
616 return error;
617 error = mnt_want_write(path.mnt);
618 if (!error) {
619 error = setxattr(mnt_user_ns(path.mnt), path.dentry, name,
620 value, size, flags);
621 mnt_drop_write(path.mnt);
622 }
623 path_put(&path);
624 if (retry_estale(error, lookup_flags)) {
625 lookup_flags |= LOOKUP_REVAL;
626 goto retry;
627 }
628 return error;
629 }
630
631 SYSCALL_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
638 SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
639 const char __user *, name, const void __user *, value,
640 size_t, size, int, flags)
641 {
642 return path_setxattr(pathname, name, value, size, flags, 0);
643 }
644
645 SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
646 const void __user *,value, size_t, size, int, flags)
647 {
648 struct fd f = fdget(fd);
649 int error = -EBADF;
650
651 if (!f.file)
652 return error;
653 audit_file(f.file);
654 error = mnt_want_write_file(f.file);
655 if (!error) {
656 error = setxattr(file_mnt_user_ns(f.file),
657 f.file->f_path.dentry, name,
658 value, size, flags);
659 mnt_drop_write_file(f.file);
660 }
661 fdput(f);
662 return error;
663 }
664
665 /*
666 * Extended attribute GET operations
667 */
668 static ssize_t
669 getxattr(struct user_namespace *mnt_userns, struct dentry *d,
670 const char __user *name, void __user *value, size_t size)
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;
685 kvalue = kvzalloc(size, GFP_KERNEL);
686 if (!kvalue)
687 return -ENOMEM;
688 }
689
690 error = vfs_getxattr(mnt_userns, d, kname, kvalue, size);
691 if (error > 0) {
692 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
693 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
694 posix_acl_fix_xattr_to_user(mnt_userns, kvalue, error);
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;
701 }
702
703 kvfree(kvalue);
704
705 return error;
706 }
707
708 static ssize_t path_getxattr(const char __user *pathname,
709 const char __user *name, void __user *value,
710 size_t size, unsigned int lookup_flags)
711 {
712 struct path path;
713 ssize_t error;
714 retry:
715 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
716 if (error)
717 return error;
718 error = getxattr(mnt_user_ns(path.mnt), path.dentry, name, value, size);
719 path_put(&path);
720 if (retry_estale(error, lookup_flags)) {
721 lookup_flags |= LOOKUP_REVAL;
722 goto retry;
723 }
724 return error;
725 }
726
727 SYSCALL_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
733 SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
734 const char __user *, name, void __user *, value, size_t, size)
735 {
736 return path_getxattr(pathname, name, value, size, 0);
737 }
738
739 SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
740 void __user *, value, size_t, size)
741 {
742 struct fd f = fdget(fd);
743 ssize_t error = -EBADF;
744
745 if (!f.file)
746 return error;
747 audit_file(f.file);
748 error = getxattr(file_mnt_user_ns(f.file), f.file->f_path.dentry,
749 name, value, size);
750 fdput(f);
751 return error;
752 }
753
754 /*
755 * Extended attribute LIST operations
756 */
757 static ssize_t
758 listxattr(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;
766 klist = kvmalloc(size, GFP_KERNEL);
767 if (!klist)
768 return -ENOMEM;
769 }
770
771 error = vfs_listxattr(d, klist, size);
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;
779 }
780
781 kvfree(klist);
782
783 return error;
784 }
785
786 static ssize_t path_listxattr(const char __user *pathname, char __user *list,
787 size_t size, unsigned int lookup_flags)
788 {
789 struct path path;
790 ssize_t error;
791 retry:
792 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
793 if (error)
794 return error;
795 error = listxattr(path.dentry, list, size);
796 path_put(&path);
797 if (retry_estale(error, lookup_flags)) {
798 lookup_flags |= LOOKUP_REVAL;
799 goto retry;
800 }
801 return error;
802 }
803
804 SYSCALL_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
810 SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
811 size_t, size)
812 {
813 return path_listxattr(pathname, list, size, 0);
814 }
815
816 SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
817 {
818 struct fd f = fdget(fd);
819 ssize_t error = -EBADF;
820
821 if (!f.file)
822 return error;
823 audit_file(f.file);
824 error = listxattr(f.file->f_path.dentry, list, size);
825 fdput(f);
826 return error;
827 }
828
829 /*
830 * Extended attribute REMOVE operations
831 */
832 static long
833 removexattr(struct user_namespace *mnt_userns, struct dentry *d,
834 const char __user *name)
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
845 return vfs_removexattr(mnt_userns, d, kname);
846 }
847
848 static int path_removexattr(const char __user *pathname,
849 const char __user *name, unsigned int lookup_flags)
850 {
851 struct path path;
852 int error;
853 retry:
854 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
855 if (error)
856 return error;
857 error = mnt_want_write(path.mnt);
858 if (!error) {
859 error = removexattr(mnt_user_ns(path.mnt), path.dentry, name);
860 mnt_drop_write(path.mnt);
861 }
862 path_put(&path);
863 if (retry_estale(error, lookup_flags)) {
864 lookup_flags |= LOOKUP_REVAL;
865 goto retry;
866 }
867 return error;
868 }
869
870 SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
871 const char __user *, name)
872 {
873 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
874 }
875
876 SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
877 const char __user *, name)
878 {
879 return path_removexattr(pathname, name, 0);
880 }
881
882 SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
883 {
884 struct fd f = fdget(fd);
885 int error = -EBADF;
886
887 if (!f.file)
888 return error;
889 audit_file(f.file);
890 error = mnt_want_write_file(f.file);
891 if (!error) {
892 error = removexattr(file_mnt_user_ns(f.file),
893 f.file->f_path.dentry, name);
894 mnt_drop_write_file(f.file);
895 }
896 fdput(f);
897 return error;
898 }
899
900 /*
901 * Combine the results of the list() operation from every xattr_handler in the
902 * list.
903 */
904 ssize_t
905 generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
906 {
907 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
908 unsigned int size = 0;
909
910 if (!buffer) {
911 for_each_xattr_handler(handlers, handler) {
912 if (!handler->name ||
913 (handler->list && !handler->list(dentry)))
914 continue;
915 size += strlen(handler->name) + 1;
916 }
917 } else {
918 char *buf = buffer;
919 size_t len;
920
921 for_each_xattr_handler(handlers, handler) {
922 if (!handler->name ||
923 (handler->list && !handler->list(dentry)))
924 continue;
925 len = strlen(handler->name);
926 if (len + 1 > buffer_size)
927 return -ERANGE;
928 memcpy(buf, handler->name, len + 1);
929 buf += len + 1;
930 buffer_size -= len + 1;
931 }
932 size = buf - buffer;
933 }
934 return size;
935 }
936 EXPORT_SYMBOL(generic_listxattr);
937
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 */
953 const char *xattr_full_name(const struct xattr_handler *handler,
954 const char *name)
955 {
956 size_t prefix_len = strlen(xattr_prefix(handler));
957
958 return name - prefix_len;
959 }
960 EXPORT_SYMBOL(xattr_full_name);
961
962 /*
963 * Allocate new xattr and copy in the value; but leave the name to callers.
964 */
965 struct 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;
972 if (len < sizeof(*new_xattr))
973 return NULL;
974
975 new_xattr = kvmalloc(len, GFP_KERNEL);
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 */
987 int 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
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}
1018 * @removed_size: returns size of the removed xattr, -1 if none removed
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 */
1026 int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
1027 const void *value, size_t size, int flags,
1028 ssize_t *removed_size)
1029 {
1030 struct simple_xattr *xattr;
1031 struct simple_xattr *new_xattr = NULL;
1032 int err = 0;
1033
1034 if (removed_size)
1035 *removed_size = -1;
1036
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) {
1045 kvfree(new_xattr);
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);
1058 if (removed_size)
1059 *removed_size = xattr->size;
1060 } else {
1061 list_del(&xattr->list);
1062 if (removed_size)
1063 *removed_size = xattr->size;
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 }
1075 out:
1076 spin_unlock(&xattrs->lock);
1077 if (xattr) {
1078 kfree(xattr->name);
1079 kvfree(xattr);
1080 }
1081 return err;
1082
1083 }
1084
1085 static bool xattr_is_trusted(const char *name)
1086 {
1087 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
1088 }
1089
1090 static 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
1104 /*
1105 * xattr LIST operation for in-memory/pseudo filesystems
1106 */
1107 ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
1108 char *buffer, size_t size)
1109 {
1110 bool trusted = capable(CAP_SYS_ADMIN);
1111 struct simple_xattr *xattr;
1112 ssize_t remaining_size = size;
1113 int err = 0;
1114
1115 #ifdef CONFIG_FS_POSIX_ACL
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 }
1129 }
1130 #endif
1131
1132 spin_lock(&xattrs->lock);
1133 list_for_each_entry(xattr, &xattrs->head, list) {
1134 /* skip "trusted." attributes for unprivileged callers */
1135 if (!trusted && xattr_is_trusted(xattr->name))
1136 continue;
1137
1138 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
1139 if (err)
1140 break;
1141 }
1142 spin_unlock(&xattrs->lock);
1143
1144 return err ? err : size - remaining_size;
1145 }
1146
1147 /*
1148 * Adds an extended attribute to the list
1149 */
1150 void 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 }