1 // SPDX-License-Identifier: GPL-2.0-only
5 Extended attribute handling.
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>
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>
26 #include <linux/uaccess.h>
29 strcmp_prefix(const char *a
, const char *a_prefix
)
31 while (*a_prefix
&& *a
== *a_prefix
) {
35 return *a_prefix
? NULL
: a
;
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.
44 #define for_each_xattr_handler(handlers, handler) \
46 for ((handler) = *(handlers)++; \
48 (handler) = *(handlers)++)
51 * Find the xattr_handler with the matching prefix.
53 static const struct xattr_handler
*
54 xattr_resolve_name(struct inode
*inode
, const char **name
)
56 const struct xattr_handler
**handlers
= inode
->i_sb
->s_xattr
;
57 const struct xattr_handler
*handler
;
59 if (!(inode
->i_opflags
& IOP_XATTR
)) {
60 if (unlikely(is_bad_inode(inode
)))
62 return ERR_PTR(-EOPNOTSUPP
);
64 for_each_xattr_handler(handlers
, handler
) {
67 n
= strcmp_prefix(*name
, xattr_prefix(handler
));
69 if (!handler
->prefix
^ !*n
) {
72 return ERR_PTR(-EINVAL
);
78 return ERR_PTR(-EOPNOTSUPP
);
82 * Check permissions for extended attribute access. This is a bit complicated
83 * because different namespaces have very different rules.
86 xattr_permission(struct inode
*inode
, const char *name
, int mask
)
89 * We can never set or remove an extended attribute on a read-only
90 * filesystem or on an immutable / append-only inode.
92 if (mask
& MAY_WRITE
) {
93 if (IS_IMMUTABLE(inode
) || IS_APPEND(inode
))
96 * Updating an xattr will likely cause i_uid and i_gid
97 * to be writen back improperly if their true value is
100 if (HAS_UNMAPPED_ID(inode
))
105 * No restriction for security.* and system.* from the VFS. Decision
106 * on these is left to the underlying filesystem / security module.
108 if (!strncmp(name
, XATTR_SECURITY_PREFIX
, XATTR_SECURITY_PREFIX_LEN
) ||
109 !strncmp(name
, XATTR_SYSTEM_PREFIX
, XATTR_SYSTEM_PREFIX_LEN
))
113 * The trusted.* namespace can only be accessed by privileged users.
115 if (!strncmp(name
, XATTR_TRUSTED_PREFIX
, XATTR_TRUSTED_PREFIX_LEN
)) {
116 if (!capable(CAP_SYS_ADMIN
))
117 return (mask
& MAY_WRITE
) ? -EPERM
: -ENODATA
;
122 * In the user.* namespace, only regular files and directories can have
123 * extended attributes. For sticky directories, only the owner and
124 * privileged users can write attributes.
126 if (!strncmp(name
, XATTR_USER_PREFIX
, XATTR_USER_PREFIX_LEN
)) {
127 if (!S_ISREG(inode
->i_mode
) && !S_ISDIR(inode
->i_mode
))
128 return (mask
& MAY_WRITE
) ? -EPERM
: -ENODATA
;
129 if (S_ISDIR(inode
->i_mode
) && (inode
->i_mode
& S_ISVTX
) &&
130 (mask
& MAY_WRITE
) && !inode_owner_or_capable(inode
))
134 return inode_permission(inode
, mask
);
138 __vfs_setxattr(struct dentry
*dentry
, struct inode
*inode
, const char *name
,
139 const void *value
, size_t size
, int flags
)
141 const struct xattr_handler
*handler
;
143 handler
= xattr_resolve_name(inode
, &name
);
145 return PTR_ERR(handler
);
149 value
= ""; /* empty EA, do not remove */
150 return handler
->set(handler
, dentry
, inode
, name
, value
, size
, flags
);
152 EXPORT_SYMBOL(__vfs_setxattr
);
155 * __vfs_setxattr_noperm - perform setxattr operation without performing
158 * @dentry - object to perform setxattr on
159 * @name - xattr name to set
160 * @value - value to set @name to
161 * @size - size of @value
162 * @flags - flags to pass into filesystem operations
164 * returns the result of the internal setxattr or setsecurity operations.
166 * This function requires the caller to lock the inode's i_mutex before it
167 * is executed. It also assumes that the caller will make the appropriate
170 int __vfs_setxattr_noperm(struct dentry
*dentry
, const char *name
,
171 const void *value
, size_t size
, int flags
)
173 struct inode
*inode
= dentry
->d_inode
;
175 int issec
= !strncmp(name
, XATTR_SECURITY_PREFIX
,
176 XATTR_SECURITY_PREFIX_LEN
);
179 inode
->i_flags
&= ~S_NOSEC
;
180 if (inode
->i_opflags
& IOP_XATTR
) {
181 error
= __vfs_setxattr(dentry
, inode
, name
, value
, size
, flags
);
183 fsnotify_xattr(dentry
);
184 security_inode_post_setxattr(dentry
, name
, value
,
188 if (unlikely(is_bad_inode(inode
)))
191 if (error
== -EAGAIN
) {
195 const char *suffix
= name
+ XATTR_SECURITY_PREFIX_LEN
;
197 error
= security_inode_setsecurity(inode
, suffix
, value
,
200 fsnotify_xattr(dentry
);
208 * __vfs_setxattr_locked: set an extended attribute while holding the inode
211 * @dentry - object to perform setxattr on
212 * @name - xattr name to set
213 * @value - value to set @name to
214 * @size - size of @value
215 * @flags - flags to pass into filesystem operations
216 * @delegated_inode - on return, will contain an inode pointer that
217 * a delegation was broken on, NULL if none.
220 __vfs_setxattr_locked(struct dentry
*dentry
, const char *name
,
221 const void *value
, size_t size
, int flags
,
222 struct inode
**delegated_inode
)
224 struct inode
*inode
= dentry
->d_inode
;
227 error
= xattr_permission(inode
, name
, MAY_WRITE
);
231 error
= security_inode_setxattr(dentry
, name
, value
, size
, flags
);
235 error
= try_break_deleg(inode
, delegated_inode
);
239 error
= __vfs_setxattr_noperm(dentry
, name
, value
, size
, flags
);
244 EXPORT_SYMBOL_GPL(__vfs_setxattr_locked
);
247 vfs_setxattr(struct dentry
*dentry
, const char *name
, const void *value
,
248 size_t size
, int flags
)
250 struct inode
*inode
= dentry
->d_inode
;
251 struct inode
*delegated_inode
= NULL
;
256 error
= __vfs_setxattr_locked(dentry
, name
, value
, size
, flags
,
260 if (delegated_inode
) {
261 error
= break_deleg_wait(&delegated_inode
);
267 EXPORT_SYMBOL_GPL(vfs_setxattr
);
270 xattr_getsecurity(struct inode
*inode
, const char *name
, void *value
,
276 if (!value
|| !size
) {
277 len
= security_inode_getsecurity(inode
, name
, &buffer
, false);
281 len
= security_inode_getsecurity(inode
, name
, &buffer
, true);
288 memcpy(value
, buffer
, len
);
296 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
298 * Allocate memory, if not already allocated, or re-allocate correct size,
299 * before retrieving the extended attribute.
301 * Returns the result of alloc, if failed, or the getxattr operation.
304 vfs_getxattr_alloc(struct dentry
*dentry
, const char *name
, char **xattr_value
,
305 size_t xattr_size
, gfp_t flags
)
307 const struct xattr_handler
*handler
;
308 struct inode
*inode
= dentry
->d_inode
;
309 char *value
= *xattr_value
;
312 error
= xattr_permission(inode
, name
, MAY_READ
);
316 handler
= xattr_resolve_name(inode
, &name
);
318 return PTR_ERR(handler
);
321 error
= handler
->get(handler
, dentry
, inode
, name
, NULL
, 0);
325 if (!value
|| (error
> xattr_size
)) {
326 value
= krealloc(*xattr_value
, error
+ 1, flags
);
329 memset(value
, 0, error
+ 1);
332 error
= handler
->get(handler
, dentry
, inode
, name
, value
, error
);
333 *xattr_value
= value
;
338 __vfs_getxattr(struct dentry
*dentry
, struct inode
*inode
, const char *name
,
339 void *value
, size_t size
)
341 const struct xattr_handler
*handler
;
343 handler
= xattr_resolve_name(inode
, &name
);
345 return PTR_ERR(handler
);
348 return handler
->get(handler
, dentry
, inode
, name
, value
, size
);
350 EXPORT_SYMBOL(__vfs_getxattr
);
353 vfs_getxattr(struct dentry
*dentry
, const char *name
, void *value
, size_t size
)
355 struct inode
*inode
= dentry
->d_inode
;
358 error
= xattr_permission(inode
, name
, MAY_READ
);
362 error
= security_inode_getxattr(dentry
, name
);
366 if (!strncmp(name
, XATTR_SECURITY_PREFIX
,
367 XATTR_SECURITY_PREFIX_LEN
)) {
368 const char *suffix
= name
+ XATTR_SECURITY_PREFIX_LEN
;
369 int ret
= xattr_getsecurity(inode
, suffix
, value
, size
);
371 * Only overwrite the return value if a security module
372 * is actually active.
374 if (ret
== -EOPNOTSUPP
)
379 return __vfs_getxattr(dentry
, inode
, name
, value
, size
);
381 EXPORT_SYMBOL_GPL(vfs_getxattr
);
384 vfs_listxattr(struct dentry
*dentry
, char *list
, size_t size
)
386 struct inode
*inode
= d_inode(dentry
);
389 error
= security_inode_listxattr(dentry
);
392 if (inode
->i_op
->listxattr
&& (inode
->i_opflags
& IOP_XATTR
)) {
393 error
= inode
->i_op
->listxattr(dentry
, list
, size
);
395 error
= security_inode_listsecurity(inode
, list
, size
);
396 if (size
&& error
> size
)
401 EXPORT_SYMBOL_GPL(vfs_listxattr
);
404 __vfs_removexattr(struct dentry
*dentry
, const char *name
)
406 struct inode
*inode
= d_inode(dentry
);
407 const struct xattr_handler
*handler
;
409 handler
= xattr_resolve_name(inode
, &name
);
411 return PTR_ERR(handler
);
414 return handler
->set(handler
, dentry
, inode
, name
, NULL
, 0, XATTR_REPLACE
);
416 EXPORT_SYMBOL(__vfs_removexattr
);
419 * __vfs_removexattr_locked: set an extended attribute while holding the inode
422 * @dentry - object to perform setxattr on
423 * @name - name of xattr to remove
424 * @delegated_inode - on return, will contain an inode pointer that
425 * a delegation was broken on, NULL if none.
428 __vfs_removexattr_locked(struct dentry
*dentry
, const char *name
,
429 struct inode
**delegated_inode
)
431 struct inode
*inode
= dentry
->d_inode
;
434 error
= xattr_permission(inode
, name
, MAY_WRITE
);
438 error
= security_inode_removexattr(dentry
, name
);
442 error
= try_break_deleg(inode
, delegated_inode
);
446 error
= __vfs_removexattr(dentry
, name
);
449 fsnotify_xattr(dentry
);
450 evm_inode_post_removexattr(dentry
, name
);
456 EXPORT_SYMBOL_GPL(__vfs_removexattr_locked
);
459 vfs_removexattr(struct dentry
*dentry
, const char *name
)
461 struct inode
*inode
= dentry
->d_inode
;
462 struct inode
*delegated_inode
= NULL
;
467 error
= __vfs_removexattr_locked(dentry
, name
, &delegated_inode
);
470 if (delegated_inode
) {
471 error
= break_deleg_wait(&delegated_inode
);
478 EXPORT_SYMBOL_GPL(vfs_removexattr
);
481 * Extended attribute SET operations
484 setxattr(struct dentry
*d
, const char __user
*name
, const void __user
*value
,
485 size_t size
, int flags
)
489 char kname
[XATTR_NAME_MAX
+ 1];
491 if (flags
& ~(XATTR_CREATE
|XATTR_REPLACE
))
494 error
= strncpy_from_user(kname
, name
, sizeof(kname
));
495 if (error
== 0 || error
== sizeof(kname
))
501 if (size
> XATTR_SIZE_MAX
)
503 kvalue
= kvmalloc(size
, GFP_KERNEL
);
506 if (copy_from_user(kvalue
, value
, size
)) {
510 if ((strcmp(kname
, XATTR_NAME_POSIX_ACL_ACCESS
) == 0) ||
511 (strcmp(kname
, XATTR_NAME_POSIX_ACL_DEFAULT
) == 0))
512 posix_acl_fix_xattr_from_user(kvalue
, size
);
513 else if (strcmp(kname
, XATTR_NAME_CAPS
) == 0) {
514 error
= cap_convert_nscap(d
, &kvalue
, size
);
521 error
= vfs_setxattr(d
, kname
, kvalue
, size
, flags
);
528 static int path_setxattr(const char __user
*pathname
,
529 const char __user
*name
, const void __user
*value
,
530 size_t size
, int flags
, unsigned int lookup_flags
)
535 error
= user_path_at(AT_FDCWD
, pathname
, lookup_flags
, &path
);
538 error
= mnt_want_write(path
.mnt
);
540 error
= setxattr(path
.dentry
, name
, value
, size
, flags
);
541 mnt_drop_write(path
.mnt
);
544 if (retry_estale(error
, lookup_flags
)) {
545 lookup_flags
|= LOOKUP_REVAL
;
551 SYSCALL_DEFINE5(setxattr
, const char __user
*, pathname
,
552 const char __user
*, name
, const void __user
*, value
,
553 size_t, size
, int, flags
)
555 return path_setxattr(pathname
, name
, value
, size
, flags
, LOOKUP_FOLLOW
);
558 SYSCALL_DEFINE5(lsetxattr
, const char __user
*, pathname
,
559 const char __user
*, name
, const void __user
*, value
,
560 size_t, size
, int, flags
)
562 return path_setxattr(pathname
, name
, value
, size
, flags
, 0);
565 SYSCALL_DEFINE5(fsetxattr
, int, fd
, const char __user
*, name
,
566 const void __user
*,value
, size_t, size
, int, flags
)
568 struct fd f
= fdget(fd
);
574 error
= mnt_want_write_file(f
.file
);
576 error
= setxattr(f
.file
->f_path
.dentry
, name
, value
, size
, flags
);
577 mnt_drop_write_file(f
.file
);
584 * Extended attribute GET operations
587 getxattr(struct dentry
*d
, const char __user
*name
, void __user
*value
,
592 char kname
[XATTR_NAME_MAX
+ 1];
594 error
= strncpy_from_user(kname
, name
, sizeof(kname
));
595 if (error
== 0 || error
== sizeof(kname
))
601 if (size
> XATTR_SIZE_MAX
)
602 size
= XATTR_SIZE_MAX
;
603 kvalue
= kvzalloc(size
, GFP_KERNEL
);
608 error
= vfs_getxattr(d
, kname
, kvalue
, size
);
610 if ((strcmp(kname
, XATTR_NAME_POSIX_ACL_ACCESS
) == 0) ||
611 (strcmp(kname
, XATTR_NAME_POSIX_ACL_DEFAULT
) == 0))
612 posix_acl_fix_xattr_to_user(kvalue
, error
);
613 if (size
&& copy_to_user(value
, kvalue
, error
))
615 } else if (error
== -ERANGE
&& size
>= XATTR_SIZE_MAX
) {
616 /* The file system tried to returned a value bigger
617 than XATTR_SIZE_MAX bytes. Not possible. */
626 static ssize_t
path_getxattr(const char __user
*pathname
,
627 const char __user
*name
, void __user
*value
,
628 size_t size
, unsigned int lookup_flags
)
633 error
= user_path_at(AT_FDCWD
, pathname
, lookup_flags
, &path
);
636 error
= getxattr(path
.dentry
, name
, value
, size
);
638 if (retry_estale(error
, lookup_flags
)) {
639 lookup_flags
|= LOOKUP_REVAL
;
645 SYSCALL_DEFINE4(getxattr
, const char __user
*, pathname
,
646 const char __user
*, name
, void __user
*, value
, size_t, size
)
648 return path_getxattr(pathname
, name
, value
, size
, LOOKUP_FOLLOW
);
651 SYSCALL_DEFINE4(lgetxattr
, const char __user
*, pathname
,
652 const char __user
*, name
, void __user
*, value
, size_t, size
)
654 return path_getxattr(pathname
, name
, value
, size
, 0);
657 SYSCALL_DEFINE4(fgetxattr
, int, fd
, const char __user
*, name
,
658 void __user
*, value
, size_t, size
)
660 struct fd f
= fdget(fd
);
661 ssize_t error
= -EBADF
;
666 error
= getxattr(f
.file
->f_path
.dentry
, name
, value
, size
);
672 * Extended attribute LIST operations
675 listxattr(struct dentry
*d
, char __user
*list
, size_t size
)
681 if (size
> XATTR_LIST_MAX
)
682 size
= XATTR_LIST_MAX
;
683 klist
= kvmalloc(size
, GFP_KERNEL
);
688 error
= vfs_listxattr(d
, klist
, size
);
690 if (size
&& copy_to_user(list
, klist
, error
))
692 } else if (error
== -ERANGE
&& size
>= XATTR_LIST_MAX
) {
693 /* The file system tried to returned a list bigger
694 than XATTR_LIST_MAX bytes. Not possible. */
703 static ssize_t
path_listxattr(const char __user
*pathname
, char __user
*list
,
704 size_t size
, unsigned int lookup_flags
)
709 error
= user_path_at(AT_FDCWD
, pathname
, lookup_flags
, &path
);
712 error
= listxattr(path
.dentry
, list
, size
);
714 if (retry_estale(error
, lookup_flags
)) {
715 lookup_flags
|= LOOKUP_REVAL
;
721 SYSCALL_DEFINE3(listxattr
, const char __user
*, pathname
, char __user
*, list
,
724 return path_listxattr(pathname
, list
, size
, LOOKUP_FOLLOW
);
727 SYSCALL_DEFINE3(llistxattr
, const char __user
*, pathname
, char __user
*, list
,
730 return path_listxattr(pathname
, list
, size
, 0);
733 SYSCALL_DEFINE3(flistxattr
, int, fd
, char __user
*, list
, size_t, size
)
735 struct fd f
= fdget(fd
);
736 ssize_t error
= -EBADF
;
741 error
= listxattr(f
.file
->f_path
.dentry
, list
, size
);
747 * Extended attribute REMOVE operations
750 removexattr(struct dentry
*d
, const char __user
*name
)
753 char kname
[XATTR_NAME_MAX
+ 1];
755 error
= strncpy_from_user(kname
, name
, sizeof(kname
));
756 if (error
== 0 || error
== sizeof(kname
))
761 return vfs_removexattr(d
, kname
);
764 static int path_removexattr(const char __user
*pathname
,
765 const char __user
*name
, unsigned int lookup_flags
)
770 error
= user_path_at(AT_FDCWD
, pathname
, lookup_flags
, &path
);
773 error
= mnt_want_write(path
.mnt
);
775 error
= removexattr(path
.dentry
, name
);
776 mnt_drop_write(path
.mnt
);
779 if (retry_estale(error
, lookup_flags
)) {
780 lookup_flags
|= LOOKUP_REVAL
;
786 SYSCALL_DEFINE2(removexattr
, const char __user
*, pathname
,
787 const char __user
*, name
)
789 return path_removexattr(pathname
, name
, LOOKUP_FOLLOW
);
792 SYSCALL_DEFINE2(lremovexattr
, const char __user
*, pathname
,
793 const char __user
*, name
)
795 return path_removexattr(pathname
, name
, 0);
798 SYSCALL_DEFINE2(fremovexattr
, int, fd
, const char __user
*, name
)
800 struct fd f
= fdget(fd
);
806 error
= mnt_want_write_file(f
.file
);
808 error
= removexattr(f
.file
->f_path
.dentry
, name
);
809 mnt_drop_write_file(f
.file
);
816 * Combine the results of the list() operation from every xattr_handler in the
820 generic_listxattr(struct dentry
*dentry
, char *buffer
, size_t buffer_size
)
822 const struct xattr_handler
*handler
, **handlers
= dentry
->d_sb
->s_xattr
;
823 unsigned int size
= 0;
826 for_each_xattr_handler(handlers
, handler
) {
827 if (!handler
->name
||
828 (handler
->list
&& !handler
->list(dentry
)))
830 size
+= strlen(handler
->name
) + 1;
836 for_each_xattr_handler(handlers
, handler
) {
837 if (!handler
->name
||
838 (handler
->list
&& !handler
->list(dentry
)))
840 len
= strlen(handler
->name
);
841 if (len
+ 1 > buffer_size
)
843 memcpy(buf
, handler
->name
, len
+ 1);
845 buffer_size
-= len
+ 1;
851 EXPORT_SYMBOL(generic_listxattr
);
854 * xattr_full_name - Compute full attribute name from suffix
856 * @handler: handler of the xattr_handler operation
857 * @name: name passed to the xattr_handler operation
859 * The get and set xattr handler operations are called with the remainder of
860 * the attribute name after skipping the handler's prefix: for example, "foo"
861 * is passed to the get operation of a handler with prefix "user." to get
862 * attribute "user.foo". The full name is still "there" in the name though.
864 * Note: the list xattr handler operation when called from the vfs is passed a
865 * NULL name; some file systems use this operation internally, with varying
868 const char *xattr_full_name(const struct xattr_handler
*handler
,
871 size_t prefix_len
= strlen(xattr_prefix(handler
));
873 return name
- prefix_len
;
875 EXPORT_SYMBOL(xattr_full_name
);
878 * Allocate new xattr and copy in the value; but leave the name to callers.
880 struct simple_xattr
*simple_xattr_alloc(const void *value
, size_t size
)
882 struct simple_xattr
*new_xattr
;
886 len
= sizeof(*new_xattr
) + size
;
887 if (len
< sizeof(*new_xattr
))
890 new_xattr
= kmalloc(len
, GFP_KERNEL
);
894 new_xattr
->size
= size
;
895 memcpy(new_xattr
->value
, value
, size
);
900 * xattr GET operation for in-memory/pseudo filesystems
902 int simple_xattr_get(struct simple_xattrs
*xattrs
, const char *name
,
903 void *buffer
, size_t size
)
905 struct simple_xattr
*xattr
;
908 spin_lock(&xattrs
->lock
);
909 list_for_each_entry(xattr
, &xattrs
->head
, list
) {
910 if (strcmp(name
, xattr
->name
))
915 if (size
< xattr
->size
)
918 memcpy(buffer
, xattr
->value
, xattr
->size
);
922 spin_unlock(&xattrs
->lock
);
927 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
928 * @xattrs: target simple_xattr list
929 * @name: name of the extended attribute
930 * @value: value of the xattr. If %NULL, will remove the attribute.
931 * @size: size of the new xattr
932 * @flags: %XATTR_{CREATE|REPLACE}
934 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
935 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
936 * otherwise, fails with -ENODATA.
938 * Returns 0 on success, -errno on failure.
940 int simple_xattr_set(struct simple_xattrs
*xattrs
, const char *name
,
941 const void *value
, size_t size
, int flags
)
943 struct simple_xattr
*xattr
;
944 struct simple_xattr
*new_xattr
= NULL
;
947 /* value == NULL means remove */
949 new_xattr
= simple_xattr_alloc(value
, size
);
953 new_xattr
->name
= kstrdup(name
, GFP_KERNEL
);
954 if (!new_xattr
->name
) {
960 spin_lock(&xattrs
->lock
);
961 list_for_each_entry(xattr
, &xattrs
->head
, list
) {
962 if (!strcmp(name
, xattr
->name
)) {
963 if (flags
& XATTR_CREATE
) {
966 } else if (new_xattr
) {
967 list_replace(&xattr
->list
, &new_xattr
->list
);
969 list_del(&xattr
->list
);
974 if (flags
& XATTR_REPLACE
) {
978 list_add(&new_xattr
->list
, &xattrs
->head
);
982 spin_unlock(&xattrs
->lock
);
991 static bool xattr_is_trusted(const char *name
)
993 return !strncmp(name
, XATTR_TRUSTED_PREFIX
, XATTR_TRUSTED_PREFIX_LEN
);
996 static int xattr_list_one(char **buffer
, ssize_t
*remaining_size
,
999 size_t len
= strlen(name
) + 1;
1001 if (*remaining_size
< len
)
1003 memcpy(*buffer
, name
, len
);
1006 *remaining_size
-= len
;
1011 * xattr LIST operation for in-memory/pseudo filesystems
1013 ssize_t
simple_xattr_list(struct inode
*inode
, struct simple_xattrs
*xattrs
,
1014 char *buffer
, size_t size
)
1016 bool trusted
= capable(CAP_SYS_ADMIN
);
1017 struct simple_xattr
*xattr
;
1018 ssize_t remaining_size
= size
;
1021 #ifdef CONFIG_FS_POSIX_ACL
1022 if (IS_POSIXACL(inode
)) {
1024 err
= xattr_list_one(&buffer
, &remaining_size
,
1025 XATTR_NAME_POSIX_ACL_ACCESS
);
1029 if (inode
->i_default_acl
) {
1030 err
= xattr_list_one(&buffer
, &remaining_size
,
1031 XATTR_NAME_POSIX_ACL_DEFAULT
);
1038 spin_lock(&xattrs
->lock
);
1039 list_for_each_entry(xattr
, &xattrs
->head
, list
) {
1040 /* skip "trusted." attributes for unprivileged callers */
1041 if (!trusted
&& xattr_is_trusted(xattr
->name
))
1044 err
= xattr_list_one(&buffer
, &remaining_size
, xattr
->name
);
1048 spin_unlock(&xattrs
->lock
);
1050 return err
? err
: size
- remaining_size
;
1054 * Adds an extended attribute to the list
1056 void simple_xattr_list_add(struct simple_xattrs
*xattrs
,
1057 struct simple_xattr
*new_xattr
)
1059 spin_lock(&xattrs
->lock
);
1060 list_add(&new_xattr
->list
, &xattrs
->head
);
1061 spin_unlock(&xattrs
->lock
);