of: MSI: Simplify irqdomain lookup
[linux/fpc-iii.git] / fs / xattr.c
blobd7f5037a17b5585676e8594498f59da94a087650
1 /*
2 File: fs/xattr.c
4 Extended attribute handling.
6 Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org>
7 Copyright (C) 2001 SGI - Silicon Graphics, Inc <linux-xfs@oss.sgi.com>
8 Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
9 */
10 #include <linux/fs.h>
11 #include <linux/slab.h>
12 #include <linux/file.h>
13 #include <linux/xattr.h>
14 #include <linux/mount.h>
15 #include <linux/namei.h>
16 #include <linux/security.h>
17 #include <linux/evm.h>
18 #include <linux/syscalls.h>
19 #include <linux/export.h>
20 #include <linux/fsnotify.h>
21 #include <linux/audit.h>
22 #include <linux/vmalloc.h>
23 #include <linux/posix_acl_xattr.h>
25 #include <asm/uaccess.h>
28 * Check permissions for extended attribute access. This is a bit complicated
29 * because different namespaces have very different rules.
31 static int
32 xattr_permission(struct inode *inode, const char *name, int mask)
35 * We can never set or remove an extended attribute on a read-only
36 * filesystem or on an immutable / append-only inode.
38 if (mask & MAY_WRITE) {
39 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
40 return -EPERM;
44 * No restriction for security.* and system.* from the VFS. Decision
45 * on these is left to the underlying filesystem / security module.
47 if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) ||
48 !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
49 return 0;
52 * The trusted.* namespace can only be accessed by privileged users.
54 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN)) {
55 if (!capable(CAP_SYS_ADMIN))
56 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
57 return 0;
61 * In the user.* namespace, only regular files and directories can have
62 * extended attributes. For sticky directories, only the owner and
63 * privileged users can write attributes.
65 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
66 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
67 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
68 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
69 (mask & MAY_WRITE) && !inode_owner_or_capable(inode))
70 return -EPERM;
73 return inode_permission(inode, mask);
76 /**
77 * __vfs_setxattr_noperm - perform setxattr operation without performing
78 * permission checks.
80 * @dentry - object to perform setxattr on
81 * @name - xattr name to set
82 * @value - value to set @name to
83 * @size - size of @value
84 * @flags - flags to pass into filesystem operations
86 * returns the result of the internal setxattr or setsecurity operations.
88 * This function requires the caller to lock the inode's i_mutex before it
89 * is executed. It also assumes that the caller will make the appropriate
90 * permission checks.
92 int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
93 const void *value, size_t size, int flags)
95 struct inode *inode = dentry->d_inode;
96 int error = -EOPNOTSUPP;
97 int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
98 XATTR_SECURITY_PREFIX_LEN);
100 if (issec)
101 inode->i_flags &= ~S_NOSEC;
102 if (inode->i_op->setxattr) {
103 error = inode->i_op->setxattr(dentry, name, value, size, flags);
104 if (!error) {
105 fsnotify_xattr(dentry);
106 security_inode_post_setxattr(dentry, name, value,
107 size, flags);
109 } else if (issec) {
110 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
111 error = security_inode_setsecurity(inode, suffix, value,
112 size, flags);
113 if (!error)
114 fsnotify_xattr(dentry);
117 return error;
122 vfs_setxattr(struct dentry *dentry, const char *name, const void *value,
123 size_t size, int flags)
125 struct inode *inode = dentry->d_inode;
126 int error;
128 error = xattr_permission(inode, name, MAY_WRITE);
129 if (error)
130 return error;
132 mutex_lock(&inode->i_mutex);
133 error = security_inode_setxattr(dentry, name, value, size, flags);
134 if (error)
135 goto out;
137 error = __vfs_setxattr_noperm(dentry, name, value, size, flags);
139 out:
140 mutex_unlock(&inode->i_mutex);
141 return error;
143 EXPORT_SYMBOL_GPL(vfs_setxattr);
145 ssize_t
146 xattr_getsecurity(struct inode *inode, const char *name, void *value,
147 size_t size)
149 void *buffer = NULL;
150 ssize_t len;
152 if (!value || !size) {
153 len = security_inode_getsecurity(inode, name, &buffer, false);
154 goto out_noalloc;
157 len = security_inode_getsecurity(inode, name, &buffer, true);
158 if (len < 0)
159 return len;
160 if (size < len) {
161 len = -ERANGE;
162 goto out;
164 memcpy(value, buffer, len);
165 out:
166 security_release_secctx(buffer, len);
167 out_noalloc:
168 return len;
170 EXPORT_SYMBOL_GPL(xattr_getsecurity);
173 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
175 * Allocate memory, if not already allocated, or re-allocate correct size,
176 * before retrieving the extended attribute.
178 * Returns the result of alloc, if failed, or the getxattr operation.
180 ssize_t
181 vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
182 size_t xattr_size, gfp_t flags)
184 struct inode *inode = dentry->d_inode;
185 char *value = *xattr_value;
186 int error;
188 error = xattr_permission(inode, name, MAY_READ);
189 if (error)
190 return error;
192 if (!inode->i_op->getxattr)
193 return -EOPNOTSUPP;
195 error = inode->i_op->getxattr(dentry, name, NULL, 0);
196 if (error < 0)
197 return error;
199 if (!value || (error > xattr_size)) {
200 value = krealloc(*xattr_value, error + 1, flags);
201 if (!value)
202 return -ENOMEM;
203 memset(value, 0, error + 1);
206 error = inode->i_op->getxattr(dentry, name, value, error);
207 *xattr_value = value;
208 return error;
211 ssize_t
212 vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
214 struct inode *inode = dentry->d_inode;
215 int error;
217 error = xattr_permission(inode, name, MAY_READ);
218 if (error)
219 return error;
221 error = security_inode_getxattr(dentry, name);
222 if (error)
223 return error;
225 if (!strncmp(name, XATTR_SECURITY_PREFIX,
226 XATTR_SECURITY_PREFIX_LEN)) {
227 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
228 int ret = xattr_getsecurity(inode, suffix, value, size);
230 * Only overwrite the return value if a security module
231 * is actually active.
233 if (ret == -EOPNOTSUPP)
234 goto nolsm;
235 return ret;
237 nolsm:
238 if (inode->i_op->getxattr)
239 error = inode->i_op->getxattr(dentry, name, value, size);
240 else
241 error = -EOPNOTSUPP;
243 return error;
245 EXPORT_SYMBOL_GPL(vfs_getxattr);
247 ssize_t
248 vfs_listxattr(struct dentry *d, char *list, size_t size)
250 ssize_t error;
252 error = security_inode_listxattr(d);
253 if (error)
254 return error;
255 error = -EOPNOTSUPP;
256 if (d->d_inode->i_op->listxattr) {
257 error = d->d_inode->i_op->listxattr(d, list, size);
258 } else {
259 error = security_inode_listsecurity(d->d_inode, list, size);
260 if (size && error > size)
261 error = -ERANGE;
263 return error;
265 EXPORT_SYMBOL_GPL(vfs_listxattr);
268 vfs_removexattr(struct dentry *dentry, const char *name)
270 struct inode *inode = dentry->d_inode;
271 int error;
273 if (!inode->i_op->removexattr)
274 return -EOPNOTSUPP;
276 error = xattr_permission(inode, name, MAY_WRITE);
277 if (error)
278 return error;
280 mutex_lock(&inode->i_mutex);
281 error = security_inode_removexattr(dentry, name);
282 if (error)
283 goto out;
285 error = inode->i_op->removexattr(dentry, name);
287 if (!error) {
288 fsnotify_xattr(dentry);
289 evm_inode_post_removexattr(dentry, name);
292 out:
293 mutex_unlock(&inode->i_mutex);
294 return error;
296 EXPORT_SYMBOL_GPL(vfs_removexattr);
300 * Extended attribute SET operations
302 static long
303 setxattr(struct dentry *d, const char __user *name, const void __user *value,
304 size_t size, int flags)
306 int error;
307 void *kvalue = NULL;
308 void *vvalue = NULL; /* If non-NULL, we used vmalloc() */
309 char kname[XATTR_NAME_MAX + 1];
311 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
312 return -EINVAL;
314 error = strncpy_from_user(kname, name, sizeof(kname));
315 if (error == 0 || error == sizeof(kname))
316 error = -ERANGE;
317 if (error < 0)
318 return error;
320 if (size) {
321 if (size > XATTR_SIZE_MAX)
322 return -E2BIG;
323 kvalue = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
324 if (!kvalue) {
325 vvalue = vmalloc(size);
326 if (!vvalue)
327 return -ENOMEM;
328 kvalue = vvalue;
330 if (copy_from_user(kvalue, value, size)) {
331 error = -EFAULT;
332 goto out;
334 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
335 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
336 posix_acl_fix_xattr_from_user(kvalue, size);
339 error = vfs_setxattr(d, kname, kvalue, size, flags);
340 out:
341 if (vvalue)
342 vfree(vvalue);
343 else
344 kfree(kvalue);
345 return error;
348 static int path_setxattr(const char __user *pathname,
349 const char __user *name, const void __user *value,
350 size_t size, int flags, unsigned int lookup_flags)
352 struct path path;
353 int error;
354 retry:
355 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
356 if (error)
357 return error;
358 error = mnt_want_write(path.mnt);
359 if (!error) {
360 error = setxattr(path.dentry, name, value, size, flags);
361 mnt_drop_write(path.mnt);
363 path_put(&path);
364 if (retry_estale(error, lookup_flags)) {
365 lookup_flags |= LOOKUP_REVAL;
366 goto retry;
368 return error;
371 SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
372 const char __user *, name, const void __user *, value,
373 size_t, size, int, flags)
375 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
378 SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
379 const char __user *, name, const void __user *, value,
380 size_t, size, int, flags)
382 return path_setxattr(pathname, name, value, size, flags, 0);
385 SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
386 const void __user *,value, size_t, size, int, flags)
388 struct fd f = fdget(fd);
389 int error = -EBADF;
391 if (!f.file)
392 return error;
393 audit_file(f.file);
394 error = mnt_want_write_file(f.file);
395 if (!error) {
396 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
397 mnt_drop_write_file(f.file);
399 fdput(f);
400 return error;
404 * Extended attribute GET operations
406 static ssize_t
407 getxattr(struct dentry *d, const char __user *name, void __user *value,
408 size_t size)
410 ssize_t error;
411 void *kvalue = NULL;
412 void *vvalue = NULL;
413 char kname[XATTR_NAME_MAX + 1];
415 error = strncpy_from_user(kname, name, sizeof(kname));
416 if (error == 0 || error == sizeof(kname))
417 error = -ERANGE;
418 if (error < 0)
419 return error;
421 if (size) {
422 if (size > XATTR_SIZE_MAX)
423 size = XATTR_SIZE_MAX;
424 kvalue = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
425 if (!kvalue) {
426 vvalue = vmalloc(size);
427 if (!vvalue)
428 return -ENOMEM;
429 kvalue = vvalue;
433 error = vfs_getxattr(d, kname, kvalue, size);
434 if (error > 0) {
435 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
436 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
437 posix_acl_fix_xattr_to_user(kvalue, size);
438 if (size && copy_to_user(value, kvalue, error))
439 error = -EFAULT;
440 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
441 /* The file system tried to returned a value bigger
442 than XATTR_SIZE_MAX bytes. Not possible. */
443 error = -E2BIG;
445 if (vvalue)
446 vfree(vvalue);
447 else
448 kfree(kvalue);
449 return error;
452 static ssize_t path_getxattr(const char __user *pathname,
453 const char __user *name, void __user *value,
454 size_t size, unsigned int lookup_flags)
456 struct path path;
457 ssize_t error;
458 retry:
459 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
460 if (error)
461 return error;
462 error = getxattr(path.dentry, name, value, size);
463 path_put(&path);
464 if (retry_estale(error, lookup_flags)) {
465 lookup_flags |= LOOKUP_REVAL;
466 goto retry;
468 return error;
471 SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
472 const char __user *, name, void __user *, value, size_t, size)
474 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
477 SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
478 const char __user *, name, void __user *, value, size_t, size)
480 return path_getxattr(pathname, name, value, size, 0);
483 SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
484 void __user *, value, size_t, size)
486 struct fd f = fdget(fd);
487 ssize_t error = -EBADF;
489 if (!f.file)
490 return error;
491 audit_file(f.file);
492 error = getxattr(f.file->f_path.dentry, name, value, size);
493 fdput(f);
494 return error;
498 * Extended attribute LIST operations
500 static ssize_t
501 listxattr(struct dentry *d, char __user *list, size_t size)
503 ssize_t error;
504 char *klist = NULL;
505 char *vlist = NULL; /* If non-NULL, we used vmalloc() */
507 if (size) {
508 if (size > XATTR_LIST_MAX)
509 size = XATTR_LIST_MAX;
510 klist = kmalloc(size, __GFP_NOWARN | GFP_KERNEL);
511 if (!klist) {
512 vlist = vmalloc(size);
513 if (!vlist)
514 return -ENOMEM;
515 klist = vlist;
519 error = vfs_listxattr(d, klist, size);
520 if (error > 0) {
521 if (size && copy_to_user(list, klist, error))
522 error = -EFAULT;
523 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
524 /* The file system tried to returned a list bigger
525 than XATTR_LIST_MAX bytes. Not possible. */
526 error = -E2BIG;
528 if (vlist)
529 vfree(vlist);
530 else
531 kfree(klist);
532 return error;
535 static ssize_t path_listxattr(const char __user *pathname, char __user *list,
536 size_t size, unsigned int lookup_flags)
538 struct path path;
539 ssize_t error;
540 retry:
541 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
542 if (error)
543 return error;
544 error = listxattr(path.dentry, list, size);
545 path_put(&path);
546 if (retry_estale(error, lookup_flags)) {
547 lookup_flags |= LOOKUP_REVAL;
548 goto retry;
550 return error;
553 SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
554 size_t, size)
556 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
559 SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
560 size_t, size)
562 return path_listxattr(pathname, list, size, 0);
565 SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
567 struct fd f = fdget(fd);
568 ssize_t error = -EBADF;
570 if (!f.file)
571 return error;
572 audit_file(f.file);
573 error = listxattr(f.file->f_path.dentry, list, size);
574 fdput(f);
575 return error;
579 * Extended attribute REMOVE operations
581 static long
582 removexattr(struct dentry *d, const char __user *name)
584 int error;
585 char kname[XATTR_NAME_MAX + 1];
587 error = strncpy_from_user(kname, name, sizeof(kname));
588 if (error == 0 || error == sizeof(kname))
589 error = -ERANGE;
590 if (error < 0)
591 return error;
593 return vfs_removexattr(d, kname);
596 static int path_removexattr(const char __user *pathname,
597 const char __user *name, unsigned int lookup_flags)
599 struct path path;
600 int error;
601 retry:
602 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
603 if (error)
604 return error;
605 error = mnt_want_write(path.mnt);
606 if (!error) {
607 error = removexattr(path.dentry, name);
608 mnt_drop_write(path.mnt);
610 path_put(&path);
611 if (retry_estale(error, lookup_flags)) {
612 lookup_flags |= LOOKUP_REVAL;
613 goto retry;
615 return error;
618 SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
619 const char __user *, name)
621 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
624 SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
625 const char __user *, name)
627 return path_removexattr(pathname, name, 0);
630 SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
632 struct fd f = fdget(fd);
633 int error = -EBADF;
635 if (!f.file)
636 return error;
637 audit_file(f.file);
638 error = mnt_want_write_file(f.file);
639 if (!error) {
640 error = removexattr(f.file->f_path.dentry, name);
641 mnt_drop_write_file(f.file);
643 fdput(f);
644 return error;
648 static const char *
649 strcmp_prefix(const char *a, const char *a_prefix)
651 while (*a_prefix && *a == *a_prefix) {
652 a++;
653 a_prefix++;
655 return *a_prefix ? NULL : a;
659 * In order to implement different sets of xattr operations for each xattr
660 * prefix with the generic xattr API, a filesystem should create a
661 * null-terminated array of struct xattr_handler (one for each prefix) and
662 * hang a pointer to it off of the s_xattr field of the superblock.
664 * The generic_fooxattr() functions will use this list to dispatch xattr
665 * operations to the correct xattr_handler.
667 #define for_each_xattr_handler(handlers, handler) \
668 for ((handler) = *(handlers)++; \
669 (handler) != NULL; \
670 (handler) = *(handlers)++)
673 * Find the xattr_handler with the matching prefix.
675 static const struct xattr_handler *
676 xattr_resolve_name(const struct xattr_handler **handlers, const char **name)
678 const struct xattr_handler *handler;
680 if (!*name)
681 return NULL;
683 for_each_xattr_handler(handlers, handler) {
684 const char *n;
686 n = strcmp_prefix(*name, xattr_prefix(handler));
687 if (n) {
688 if (!handler->prefix ^ !*n) {
689 if (*n)
690 continue;
691 return ERR_PTR(-EINVAL);
693 *name = n;
694 return handler;
697 return ERR_PTR(-EOPNOTSUPP);
701 * Find the handler for the prefix and dispatch its get() operation.
703 ssize_t
704 generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size)
706 const struct xattr_handler *handler;
708 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
709 if (IS_ERR(handler))
710 return PTR_ERR(handler);
711 return handler->get(handler, dentry, name, buffer, size);
715 * Combine the results of the list() operation from every xattr_handler in the
716 * list.
718 ssize_t
719 generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
721 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
722 unsigned int size = 0;
724 if (!buffer) {
725 for_each_xattr_handler(handlers, handler) {
726 if (!handler->name ||
727 (handler->list && !handler->list(dentry)))
728 continue;
729 size += strlen(handler->name) + 1;
731 } else {
732 char *buf = buffer;
733 size_t len;
735 for_each_xattr_handler(handlers, handler) {
736 if (!handler->name ||
737 (handler->list && !handler->list(dentry)))
738 continue;
739 len = strlen(handler->name);
740 if (len + 1 > buffer_size)
741 return -ERANGE;
742 memcpy(buf, handler->name, len + 1);
743 buf += len + 1;
744 buffer_size -= len + 1;
746 size = buf - buffer;
748 return size;
752 * Find the handler for the prefix and dispatch its set() operation.
755 generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags)
757 const struct xattr_handler *handler;
759 if (size == 0)
760 value = ""; /* empty EA, do not remove */
761 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
762 if (IS_ERR(handler))
763 return PTR_ERR(handler);
764 return handler->set(handler, dentry, name, value, size, flags);
768 * Find the handler for the prefix and dispatch its set() operation to remove
769 * any associated extended attribute.
772 generic_removexattr(struct dentry *dentry, const char *name)
774 const struct xattr_handler *handler;
776 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
777 if (IS_ERR(handler))
778 return PTR_ERR(handler);
779 return handler->set(handler, dentry, name, NULL, 0, XATTR_REPLACE);
782 EXPORT_SYMBOL(generic_getxattr);
783 EXPORT_SYMBOL(generic_listxattr);
784 EXPORT_SYMBOL(generic_setxattr);
785 EXPORT_SYMBOL(generic_removexattr);
788 * xattr_full_name - Compute full attribute name from suffix
790 * @handler: handler of the xattr_handler operation
791 * @name: name passed to the xattr_handler operation
793 * The get and set xattr handler operations are called with the remainder of
794 * the attribute name after skipping the handler's prefix: for example, "foo"
795 * is passed to the get operation of a handler with prefix "user." to get
796 * attribute "user.foo". The full name is still "there" in the name though.
798 * Note: the list xattr handler operation when called from the vfs is passed a
799 * NULL name; some file systems use this operation internally, with varying
800 * semantics.
802 const char *xattr_full_name(const struct xattr_handler *handler,
803 const char *name)
805 size_t prefix_len = strlen(xattr_prefix(handler));
807 return name - prefix_len;
809 EXPORT_SYMBOL(xattr_full_name);
812 * Allocate new xattr and copy in the value; but leave the name to callers.
814 struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
816 struct simple_xattr *new_xattr;
817 size_t len;
819 /* wrap around? */
820 len = sizeof(*new_xattr) + size;
821 if (len < sizeof(*new_xattr))
822 return NULL;
824 new_xattr = kmalloc(len, GFP_KERNEL);
825 if (!new_xattr)
826 return NULL;
828 new_xattr->size = size;
829 memcpy(new_xattr->value, value, size);
830 return new_xattr;
834 * xattr GET operation for in-memory/pseudo filesystems
836 int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
837 void *buffer, size_t size)
839 struct simple_xattr *xattr;
840 int ret = -ENODATA;
842 spin_lock(&xattrs->lock);
843 list_for_each_entry(xattr, &xattrs->head, list) {
844 if (strcmp(name, xattr->name))
845 continue;
847 ret = xattr->size;
848 if (buffer) {
849 if (size < xattr->size)
850 ret = -ERANGE;
851 else
852 memcpy(buffer, xattr->value, xattr->size);
854 break;
856 spin_unlock(&xattrs->lock);
857 return ret;
861 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
862 * @xattrs: target simple_xattr list
863 * @name: name of the extended attribute
864 * @value: value of the xattr. If %NULL, will remove the attribute.
865 * @size: size of the new xattr
866 * @flags: %XATTR_{CREATE|REPLACE}
868 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
869 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
870 * otherwise, fails with -ENODATA.
872 * Returns 0 on success, -errno on failure.
874 int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
875 const void *value, size_t size, int flags)
877 struct simple_xattr *xattr;
878 struct simple_xattr *new_xattr = NULL;
879 int err = 0;
881 /* value == NULL means remove */
882 if (value) {
883 new_xattr = simple_xattr_alloc(value, size);
884 if (!new_xattr)
885 return -ENOMEM;
887 new_xattr->name = kstrdup(name, GFP_KERNEL);
888 if (!new_xattr->name) {
889 kfree(new_xattr);
890 return -ENOMEM;
894 spin_lock(&xattrs->lock);
895 list_for_each_entry(xattr, &xattrs->head, list) {
896 if (!strcmp(name, xattr->name)) {
897 if (flags & XATTR_CREATE) {
898 xattr = new_xattr;
899 err = -EEXIST;
900 } else if (new_xattr) {
901 list_replace(&xattr->list, &new_xattr->list);
902 } else {
903 list_del(&xattr->list);
905 goto out;
908 if (flags & XATTR_REPLACE) {
909 xattr = new_xattr;
910 err = -ENODATA;
911 } else {
912 list_add(&new_xattr->list, &xattrs->head);
913 xattr = NULL;
915 out:
916 spin_unlock(&xattrs->lock);
917 if (xattr) {
918 kfree(xattr->name);
919 kfree(xattr);
921 return err;
925 static bool xattr_is_trusted(const char *name)
927 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
930 static int xattr_list_one(char **buffer, ssize_t *remaining_size,
931 const char *name)
933 size_t len = strlen(name) + 1;
934 if (*buffer) {
935 if (*remaining_size < len)
936 return -ERANGE;
937 memcpy(*buffer, name, len);
938 *buffer += len;
940 *remaining_size -= len;
941 return 0;
945 * xattr LIST operation for in-memory/pseudo filesystems
947 ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
948 char *buffer, size_t size)
950 bool trusted = capable(CAP_SYS_ADMIN);
951 struct simple_xattr *xattr;
952 ssize_t remaining_size = size;
953 int err;
955 #ifdef CONFIG_FS_POSIX_ACL
956 if (inode->i_acl) {
957 err = xattr_list_one(&buffer, &remaining_size,
958 XATTR_NAME_POSIX_ACL_ACCESS);
959 if (err)
960 return err;
962 if (inode->i_default_acl) {
963 err = xattr_list_one(&buffer, &remaining_size,
964 XATTR_NAME_POSIX_ACL_DEFAULT);
965 if (err)
966 return err;
968 #endif
970 spin_lock(&xattrs->lock);
971 list_for_each_entry(xattr, &xattrs->head, list) {
972 /* skip "trusted." attributes for unprivileged callers */
973 if (!trusted && xattr_is_trusted(xattr->name))
974 continue;
976 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
977 if (err)
978 return err;
980 spin_unlock(&xattrs->lock);
982 return size - remaining_size;
986 * Adds an extended attribute to the list
988 void simple_xattr_list_add(struct simple_xattrs *xattrs,
989 struct simple_xattr *new_xattr)
991 spin_lock(&xattrs->lock);
992 list_add(&new_xattr->list, &xattrs->head);
993 spin_unlock(&xattrs->lock);