blob: fd7bafb7aceae5bee2fea41efc46b816bd5dc709 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001/*
2 File: fs/xattr.c
3
4 Extended attribute handling.
5
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>
24
25#include <linux/uaccess.h>
26
27static const char *
28strcmp_prefix(const char *a, const char *a_prefix)
29{
30 while (*a_prefix && *a == *a_prefix) {
31 a++;
32 a_prefix++;
33 }
34 return *a_prefix ? NULL : a;
35}
36
37/*
38 * In order to implement different sets of xattr operations for each xattr
39 * prefix, a filesystem should create a null-terminated array of struct
40 * xattr_handler (one for each prefix) and hang a pointer to it off of the
41 * s_xattr field of the superblock.
42 */
43#define for_each_xattr_handler(handlers, handler) \
44 if (handlers) \
45 for ((handler) = *(handlers)++; \
46 (handler) != NULL; \
47 (handler) = *(handlers)++)
48
49/*
50 * Find the xattr_handler with the matching prefix.
51 */
52static const struct xattr_handler *
53xattr_resolve_name(struct inode *inode, const char **name)
54{
55 const struct xattr_handler **handlers = inode->i_sb->s_xattr;
56 const struct xattr_handler *handler;
57
58 if (!(inode->i_opflags & IOP_XATTR)) {
59 if (unlikely(is_bad_inode(inode)))
60 return ERR_PTR(-EIO);
61 return ERR_PTR(-EOPNOTSUPP);
62 }
63 for_each_xattr_handler(handlers, handler) {
64 const char *n;
65
66 n = strcmp_prefix(*name, xattr_prefix(handler));
67 if (n) {
68 if (!handler->prefix ^ !*n) {
69 if (*n)
70 continue;
71 return ERR_PTR(-EINVAL);
72 }
73 *name = n;
74 return handler;
75 }
76 }
77 return ERR_PTR(-EOPNOTSUPP);
78}
79
80/*
81 * Check permissions for extended attribute access. This is a bit complicated
82 * because different namespaces have very different rules.
83 */
84static int
85xattr_permission(struct inode *inode, const char *name, int mask)
86{
87 /*
88 * We can never set or remove an extended attribute on a read-only
89 * filesystem or on an immutable / append-only inode.
90 */
91 if (mask & MAY_WRITE) {
92 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
93 return -EPERM;
94 /*
95 * Updating an xattr will likely cause i_uid and i_gid
96 * to be writen back improperly if their true value is
97 * unknown to the vfs.
98 */
99 if (HAS_UNMAPPED_ID(inode))
100 return -EPERM;
101 }
102
103 /*
104 * No restriction for security.* and system.* from the VFS. Decision
105 * on these is left to the underlying filesystem / security module.
106 */
107 if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) ||
108 !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
109 return 0;
110
111 /*
112 * The trusted.* namespace can only be accessed by privileged users.
113 */
114 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN)) {
115 if (!capable(CAP_SYS_ADMIN))
116 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
117 return 0;
118 }
119
120 /*
121 * In the user.* namespace, only regular files and directories can have
122 * extended attributes. For sticky directories, only the owner and
123 * privileged users can write attributes.
124 */
125 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
126 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
127 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
128 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
129 (mask & MAY_WRITE) && !inode_owner_or_capable(inode))
130 return -EPERM;
131 }
132
133 return inode_permission2(ERR_PTR(-EOPNOTSUPP), inode, mask);
134}
135
136int
137__vfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
138 const void *value, size_t size, int flags)
139{
140 const struct xattr_handler *handler;
141
142 handler = xattr_resolve_name(inode, &name);
143 if (IS_ERR(handler))
144 return PTR_ERR(handler);
145 if (!handler->set)
146 return -EOPNOTSUPP;
147 if (size == 0)
148 value = ""; /* empty EA, do not remove */
149 return handler->set(handler, dentry, inode, name, value, size, flags);
150}
151EXPORT_SYMBOL(__vfs_setxattr);
152
153/**
154 * __vfs_setxattr_noperm - perform setxattr operation without performing
155 * permission checks.
156 *
157 * @dentry - object to perform setxattr on
158 * @name - xattr name to set
159 * @value - value to set @name to
160 * @size - size of @value
161 * @flags - flags to pass into filesystem operations
162 *
163 * returns the result of the internal setxattr or setsecurity operations.
164 *
165 * This function requires the caller to lock the inode's i_mutex before it
166 * is executed. It also assumes that the caller will make the appropriate
167 * permission checks.
168 */
169int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
170 const void *value, size_t size, int flags)
171{
172 struct inode *inode = dentry->d_inode;
173 int error = -EAGAIN;
174 int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
175 XATTR_SECURITY_PREFIX_LEN);
176
177 if (issec)
178 inode->i_flags &= ~S_NOSEC;
179 if (inode->i_opflags & IOP_XATTR) {
180 error = __vfs_setxattr(dentry, inode, name, value, size, flags);
181 if (!error) {
182 fsnotify_xattr(dentry);
183 security_inode_post_setxattr(dentry, name, value,
184 size, flags);
185 }
186 } else {
187 if (unlikely(is_bad_inode(inode)))
188 return -EIO;
189 }
190 if (error == -EAGAIN) {
191 error = -EOPNOTSUPP;
192
193 if (issec) {
194 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
195
196 error = security_inode_setsecurity(inode, suffix, value,
197 size, flags);
198 if (!error)
199 fsnotify_xattr(dentry);
200 }
201 }
202
203 return error;
204}
205
206
207int
208vfs_setxattr(struct dentry *dentry, const char *name, const void *value,
209 size_t size, int flags)
210{
211 struct inode *inode = dentry->d_inode;
212 int error;
213
214 error = xattr_permission(inode, name, MAY_WRITE);
215 if (error)
216 return error;
217
218 inode_lock(inode);
219 error = security_inode_setxattr(dentry, name, value, size, flags);
220 if (error)
221 goto out;
222
223 error = __vfs_setxattr_noperm(dentry, name, value, size, flags);
224
225out:
226 inode_unlock(inode);
227 return error;
228}
229EXPORT_SYMBOL_GPL(vfs_setxattr);
230
231static ssize_t
232xattr_getsecurity(struct inode *inode, const char *name, void *value,
233 size_t size)
234{
235 void *buffer = NULL;
236 ssize_t len;
237
238 if (!value || !size) {
239 len = security_inode_getsecurity(inode, name, &buffer, false);
240 goto out_noalloc;
241 }
242
243 len = security_inode_getsecurity(inode, name, &buffer, true);
244 if (len < 0)
245 return len;
246 if (size < len) {
247 len = -ERANGE;
248 goto out;
249 }
250 memcpy(value, buffer, len);
251out:
252 kfree(buffer);
253out_noalloc:
254 return len;
255}
256
257/*
258 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
259 *
260 * Allocate memory, if not already allocated, or re-allocate correct size,
261 * before retrieving the extended attribute.
262 *
263 * Returns the result of alloc, if failed, or the getxattr operation.
264 */
265ssize_t
266vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
267 size_t xattr_size, gfp_t flags)
268{
269 const struct xattr_handler *handler;
270 struct inode *inode = dentry->d_inode;
271 char *value = *xattr_value;
272 int error;
273
274 error = xattr_permission(inode, name, MAY_READ);
275 if (error)
276 return error;
277
278 handler = xattr_resolve_name(inode, &name);
279 if (IS_ERR(handler))
280 return PTR_ERR(handler);
281 if (!handler->get)
282 return -EOPNOTSUPP;
283 error = handler->get(handler, dentry, inode, name, NULL, 0);
284 if (error < 0)
285 return error;
286
287 if (!value || (error > xattr_size)) {
288 value = krealloc(*xattr_value, error + 1, flags);
289 if (!value)
290 return -ENOMEM;
291 memset(value, 0, error + 1);
292 }
293
294 error = handler->get(handler, dentry, inode, name, value, error);
295 *xattr_value = value;
296 return error;
297}
298
299ssize_t
300__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
301 void *value, size_t size)
302{
303 const struct xattr_handler *handler;
304
305 handler = xattr_resolve_name(inode, &name);
306 if (IS_ERR(handler))
307 return PTR_ERR(handler);
308 if (unlikely(handler->__get))
309 return handler->__get(handler, dentry, inode, name, value,
310 size);
311 if (!handler->get)
312 return -EOPNOTSUPP;
313 return handler->get(handler, dentry, inode, name, value, size);
314}
315EXPORT_SYMBOL(__vfs_getxattr);
316
317ssize_t
318vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
319{
320 struct inode *inode = dentry->d_inode;
321 int error;
322 const struct xattr_handler *handler;
323
324 error = xattr_permission(inode, name, MAY_READ);
325 if (error)
326 return error;
327
328 error = security_inode_getxattr(dentry, name);
329 if (error)
330 return error;
331
332 if (!strncmp(name, XATTR_SECURITY_PREFIX,
333 XATTR_SECURITY_PREFIX_LEN)) {
334 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
335 int ret = xattr_getsecurity(inode, suffix, value, size);
336 /*
337 * Only overwrite the return value if a security module
338 * is actually active.
339 */
340 if (ret == -EOPNOTSUPP)
341 goto nolsm;
342 return ret;
343 }
344nolsm:
345 handler = xattr_resolve_name(inode, &name);
346 if (IS_ERR(handler))
347 return PTR_ERR(handler);
348 if (!handler->get)
349 return -EOPNOTSUPP;
350 return handler->get(handler, dentry, inode, name, value, size);
351}
352EXPORT_SYMBOL_GPL(vfs_getxattr);
353
354ssize_t
355vfs_listxattr(struct dentry *dentry, char *list, size_t size)
356{
357 struct inode *inode = d_inode(dentry);
358 ssize_t error;
359
360 error = security_inode_listxattr(dentry);
361 if (error)
362 return error;
363 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
364 error = inode->i_op->listxattr(dentry, list, size);
365 } else {
366 error = security_inode_listsecurity(inode, list, size);
367 if (size && error > size)
368 error = -ERANGE;
369 }
370 return error;
371}
372EXPORT_SYMBOL_GPL(vfs_listxattr);
373
374int
375__vfs_removexattr(struct dentry *dentry, const char *name)
376{
377 struct inode *inode = d_inode(dentry);
378 const struct xattr_handler *handler;
379
380 handler = xattr_resolve_name(inode, &name);
381 if (IS_ERR(handler))
382 return PTR_ERR(handler);
383 if (!handler->set)
384 return -EOPNOTSUPP;
385 return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
386}
387EXPORT_SYMBOL(__vfs_removexattr);
388
389int
390vfs_removexattr(struct dentry *dentry, const char *name)
391{
392 struct inode *inode = dentry->d_inode;
393 int error;
394
395 error = xattr_permission(inode, name, MAY_WRITE);
396 if (error)
397 return error;
398
399 inode_lock(inode);
400 error = security_inode_removexattr(dentry, name);
401 if (error)
402 goto out;
403
404 error = __vfs_removexattr(dentry, name);
405
406 if (!error) {
407 fsnotify_xattr(dentry);
408 evm_inode_post_removexattr(dentry, name);
409 }
410
411out:
412 inode_unlock(inode);
413 return error;
414}
415EXPORT_SYMBOL_GPL(vfs_removexattr);
416
417
418/*
419 * Extended attribute SET operations
420 */
421static long
422setxattr(struct dentry *d, const char __user *name, const void __user *value,
423 size_t size, int flags)
424{
425 int error;
426 void *kvalue = NULL;
427 char kname[XATTR_NAME_MAX + 1];
428
429 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
430 return -EINVAL;
431
432 error = strncpy_from_user(kname, name, sizeof(kname));
433 if (error == 0 || error == sizeof(kname))
434 error = -ERANGE;
435 if (error < 0)
436 return error;
437
438 if (size) {
439 if (size > XATTR_SIZE_MAX)
440 return -E2BIG;
441 kvalue = kvmalloc(size, GFP_KERNEL);
442 if (!kvalue)
443 return -ENOMEM;
444 if (copy_from_user(kvalue, value, size)) {
445 error = -EFAULT;
446 goto out;
447 }
448 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
449 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
450 posix_acl_fix_xattr_from_user(kvalue, size);
451 else if (strcmp(kname, XATTR_NAME_CAPS) == 0) {
452 error = cap_convert_nscap(d, &kvalue, size);
453 if (error < 0)
454 goto out;
455 size = error;
456 }
457 }
458
459 error = vfs_setxattr(d, kname, kvalue, size, flags);
460out:
461 kvfree(kvalue);
462
463 return error;
464}
465
466static int path_setxattr(const char __user *pathname,
467 const char __user *name, const void __user *value,
468 size_t size, int flags, unsigned int lookup_flags)
469{
470 struct path path;
471 int error;
472retry:
473 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
474 if (error)
475 return error;
476 error = mnt_want_write(path.mnt);
477 if (!error) {
478 error = setxattr(path.dentry, name, value, size, flags);
479 mnt_drop_write(path.mnt);
480 }
481 path_put(&path);
482 if (retry_estale(error, lookup_flags)) {
483 lookup_flags |= LOOKUP_REVAL;
484 goto retry;
485 }
486 return error;
487}
488
489SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
490 const char __user *, name, const void __user *, value,
491 size_t, size, int, flags)
492{
493 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
494}
495
496SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
497 const char __user *, name, const void __user *, value,
498 size_t, size, int, flags)
499{
500 return path_setxattr(pathname, name, value, size, flags, 0);
501}
502
503SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
504 const void __user *,value, size_t, size, int, flags)
505{
506 struct fd f = fdget(fd);
507 int error = -EBADF;
508
509 if (!f.file)
510 return error;
511 audit_file(f.file);
512 error = mnt_want_write_file(f.file);
513 if (!error) {
514 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
515 mnt_drop_write_file(f.file);
516 }
517 fdput(f);
518 return error;
519}
520
521/*
522 * Extended attribute GET operations
523 */
524static ssize_t
525getxattr(struct dentry *d, const char __user *name, void __user *value,
526 size_t size)
527{
528 ssize_t error;
529 void *kvalue = NULL;
530 char kname[XATTR_NAME_MAX + 1];
531
532 error = strncpy_from_user(kname, name, sizeof(kname));
533 if (error == 0 || error == sizeof(kname))
534 error = -ERANGE;
535 if (error < 0)
536 return error;
537
538 if (size) {
539 if (size > XATTR_SIZE_MAX)
540 size = XATTR_SIZE_MAX;
541 kvalue = kvzalloc(size, GFP_KERNEL);
542 if (!kvalue)
543 return -ENOMEM;
544 }
545
546 error = vfs_getxattr(d, kname, kvalue, size);
547 if (error > 0) {
548 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
549 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
550 posix_acl_fix_xattr_to_user(kvalue, error);
551 if (size && copy_to_user(value, kvalue, error))
552 error = -EFAULT;
553 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
554 /* The file system tried to returned a value bigger
555 than XATTR_SIZE_MAX bytes. Not possible. */
556 error = -E2BIG;
557 }
558
559 kvfree(kvalue);
560
561 return error;
562}
563
564static ssize_t path_getxattr(const char __user *pathname,
565 const char __user *name, void __user *value,
566 size_t size, unsigned int lookup_flags)
567{
568 struct path path;
569 ssize_t error;
570retry:
571 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
572 if (error)
573 return error;
574 error = getxattr(path.dentry, name, value, size);
575 path_put(&path);
576 if (retry_estale(error, lookup_flags)) {
577 lookup_flags |= LOOKUP_REVAL;
578 goto retry;
579 }
580 return error;
581}
582
583SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
584 const char __user *, name, void __user *, value, size_t, size)
585{
586 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
587}
588
589SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
590 const char __user *, name, void __user *, value, size_t, size)
591{
592 return path_getxattr(pathname, name, value, size, 0);
593}
594
595SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
596 void __user *, value, size_t, size)
597{
598 struct fd f = fdget(fd);
599 ssize_t error = -EBADF;
600
601 if (!f.file)
602 return error;
603 audit_file(f.file);
604 error = getxattr(f.file->f_path.dentry, name, value, size);
605 fdput(f);
606 return error;
607}
608
609/*
610 * Extended attribute LIST operations
611 */
612static ssize_t
613listxattr(struct dentry *d, char __user *list, size_t size)
614{
615 ssize_t error;
616 char *klist = NULL;
617
618 if (size) {
619 if (size > XATTR_LIST_MAX)
620 size = XATTR_LIST_MAX;
621 klist = kvmalloc(size, GFP_KERNEL);
622 if (!klist)
623 return -ENOMEM;
624 }
625
626 error = vfs_listxattr(d, klist, size);
627 if (error > 0) {
628 if (size && copy_to_user(list, klist, error))
629 error = -EFAULT;
630 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
631 /* The file system tried to returned a list bigger
632 than XATTR_LIST_MAX bytes. Not possible. */
633 error = -E2BIG;
634 }
635
636 kvfree(klist);
637
638 return error;
639}
640
641static ssize_t path_listxattr(const char __user *pathname, char __user *list,
642 size_t size, unsigned int lookup_flags)
643{
644 struct path path;
645 ssize_t error;
646retry:
647 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
648 if (error)
649 return error;
650 error = listxattr(path.dentry, list, size);
651 path_put(&path);
652 if (retry_estale(error, lookup_flags)) {
653 lookup_flags |= LOOKUP_REVAL;
654 goto retry;
655 }
656 return error;
657}
658
659SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
660 size_t, size)
661{
662 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
663}
664
665SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
666 size_t, size)
667{
668 return path_listxattr(pathname, list, size, 0);
669}
670
671SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
672{
673 struct fd f = fdget(fd);
674 ssize_t error = -EBADF;
675
676 if (!f.file)
677 return error;
678 audit_file(f.file);
679 error = listxattr(f.file->f_path.dentry, list, size);
680 fdput(f);
681 return error;
682}
683
684/*
685 * Extended attribute REMOVE operations
686 */
687static long
688removexattr(struct dentry *d, const char __user *name)
689{
690 int error;
691 char kname[XATTR_NAME_MAX + 1];
692
693 error = strncpy_from_user(kname, name, sizeof(kname));
694 if (error == 0 || error == sizeof(kname))
695 error = -ERANGE;
696 if (error < 0)
697 return error;
698
699 return vfs_removexattr(d, kname);
700}
701
702static int path_removexattr(const char __user *pathname,
703 const char __user *name, unsigned int lookup_flags)
704{
705 struct path path;
706 int error;
707retry:
708 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
709 if (error)
710 return error;
711 error = mnt_want_write(path.mnt);
712 if (!error) {
713 error = removexattr(path.dentry, name);
714 mnt_drop_write(path.mnt);
715 }
716 path_put(&path);
717 if (retry_estale(error, lookup_flags)) {
718 lookup_flags |= LOOKUP_REVAL;
719 goto retry;
720 }
721 return error;
722}
723
724SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
725 const char __user *, name)
726{
727 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
728}
729
730SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
731 const char __user *, name)
732{
733 return path_removexattr(pathname, name, 0);
734}
735
736SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
737{
738 struct fd f = fdget(fd);
739 int error = -EBADF;
740
741 if (!f.file)
742 return error;
743 audit_file(f.file);
744 error = mnt_want_write_file(f.file);
745 if (!error) {
746 error = removexattr(f.file->f_path.dentry, name);
747 mnt_drop_write_file(f.file);
748 }
749 fdput(f);
750 return error;
751}
752
753/*
754 * Combine the results of the list() operation from every xattr_handler in the
755 * list.
756 */
757ssize_t
758generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
759{
760 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
761 unsigned int size = 0;
762
763 if (!buffer) {
764 for_each_xattr_handler(handlers, handler) {
765 if (!handler->name ||
766 (handler->list && !handler->list(dentry)))
767 continue;
768 size += strlen(handler->name) + 1;
769 }
770 } else {
771 char *buf = buffer;
772 size_t len;
773
774 for_each_xattr_handler(handlers, handler) {
775 if (!handler->name ||
776 (handler->list && !handler->list(dentry)))
777 continue;
778 len = strlen(handler->name);
779 if (len + 1 > buffer_size)
780 return -ERANGE;
781 memcpy(buf, handler->name, len + 1);
782 buf += len + 1;
783 buffer_size -= len + 1;
784 }
785 size = buf - buffer;
786 }
787 return size;
788}
789EXPORT_SYMBOL(generic_listxattr);
790
791/**
792 * xattr_full_name - Compute full attribute name from suffix
793 *
794 * @handler: handler of the xattr_handler operation
795 * @name: name passed to the xattr_handler operation
796 *
797 * The get and set xattr handler operations are called with the remainder of
798 * the attribute name after skipping the handler's prefix: for example, "foo"
799 * is passed to the get operation of a handler with prefix "user." to get
800 * attribute "user.foo". The full name is still "there" in the name though.
801 *
802 * Note: the list xattr handler operation when called from the vfs is passed a
803 * NULL name; some file systems use this operation internally, with varying
804 * semantics.
805 */
806const char *xattr_full_name(const struct xattr_handler *handler,
807 const char *name)
808{
809 size_t prefix_len = strlen(xattr_prefix(handler));
810
811 return name - prefix_len;
812}
813EXPORT_SYMBOL(xattr_full_name);
814
815/*
816 * Allocate new xattr and copy in the value; but leave the name to callers.
817 */
818struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
819{
820 struct simple_xattr *new_xattr;
821 size_t len;
822
823 /* wrap around? */
824 len = sizeof(*new_xattr) + size;
825 if (len < sizeof(*new_xattr))
826 return NULL;
827
828 new_xattr = kmalloc(len, GFP_KERNEL);
829 if (!new_xattr)
830 return NULL;
831
832 new_xattr->size = size;
833 memcpy(new_xattr->value, value, size);
834 return new_xattr;
835}
836
837/*
838 * xattr GET operation for in-memory/pseudo filesystems
839 */
840int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
841 void *buffer, size_t size)
842{
843 struct simple_xattr *xattr;
844 int ret = -ENODATA;
845
846 spin_lock(&xattrs->lock);
847 list_for_each_entry(xattr, &xattrs->head, list) {
848 if (strcmp(name, xattr->name))
849 continue;
850
851 ret = xattr->size;
852 if (buffer) {
853 if (size < xattr->size)
854 ret = -ERANGE;
855 else
856 memcpy(buffer, xattr->value, xattr->size);
857 }
858 break;
859 }
860 spin_unlock(&xattrs->lock);
861 return ret;
862}
863
864/**
865 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
866 * @xattrs: target simple_xattr list
867 * @name: name of the extended attribute
868 * @value: value of the xattr. If %NULL, will remove the attribute.
869 * @size: size of the new xattr
870 * @flags: %XATTR_{CREATE|REPLACE}
871 *
872 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
873 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
874 * otherwise, fails with -ENODATA.
875 *
876 * Returns 0 on success, -errno on failure.
877 */
878int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
879 const void *value, size_t size, int flags)
880{
881 struct simple_xattr *xattr;
882 struct simple_xattr *new_xattr = NULL;
883 int err = 0;
884
885 /* value == NULL means remove */
886 if (value) {
887 new_xattr = simple_xattr_alloc(value, size);
888 if (!new_xattr)
889 return -ENOMEM;
890
891 new_xattr->name = kstrdup(name, GFP_KERNEL);
892 if (!new_xattr->name) {
893 kfree(new_xattr);
894 return -ENOMEM;
895 }
896 }
897
898 spin_lock(&xattrs->lock);
899 list_for_each_entry(xattr, &xattrs->head, list) {
900 if (!strcmp(name, xattr->name)) {
901 if (flags & XATTR_CREATE) {
902 xattr = new_xattr;
903 err = -EEXIST;
904 } else if (new_xattr) {
905 list_replace(&xattr->list, &new_xattr->list);
906 } else {
907 list_del(&xattr->list);
908 }
909 goto out;
910 }
911 }
912 if (flags & XATTR_REPLACE) {
913 xattr = new_xattr;
914 err = -ENODATA;
915 } else {
916 list_add(&new_xattr->list, &xattrs->head);
917 xattr = NULL;
918 }
919out:
920 spin_unlock(&xattrs->lock);
921 if (xattr) {
922 kfree(xattr->name);
923 kfree(xattr);
924 }
925 return err;
926
927}
928
929static bool xattr_is_trusted(const char *name)
930{
931 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
932}
933
934static int xattr_list_one(char **buffer, ssize_t *remaining_size,
935 const char *name)
936{
937 size_t len = strlen(name) + 1;
938 if (*buffer) {
939 if (*remaining_size < len)
940 return -ERANGE;
941 memcpy(*buffer, name, len);
942 *buffer += len;
943 }
944 *remaining_size -= len;
945 return 0;
946}
947
948/*
949 * xattr LIST operation for in-memory/pseudo filesystems
950 */
951ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
952 char *buffer, size_t size)
953{
954 bool trusted = capable(CAP_SYS_ADMIN);
955 struct simple_xattr *xattr;
956 ssize_t remaining_size = size;
957 int err = 0;
958
959#ifdef CONFIG_FS_POSIX_ACL
960 if (IS_POSIXACL(inode)) {
961 if (inode->i_acl) {
962 err = xattr_list_one(&buffer, &remaining_size,
963 XATTR_NAME_POSIX_ACL_ACCESS);
964 if (err)
965 return err;
966 }
967 if (inode->i_default_acl) {
968 err = xattr_list_one(&buffer, &remaining_size,
969 XATTR_NAME_POSIX_ACL_DEFAULT);
970 if (err)
971 return err;
972 }
973 }
974#endif
975
976 spin_lock(&xattrs->lock);
977 list_for_each_entry(xattr, &xattrs->head, list) {
978 /* skip "trusted." attributes for unprivileged callers */
979 if (!trusted && xattr_is_trusted(xattr->name))
980 continue;
981
982 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
983 if (err)
984 break;
985 }
986 spin_unlock(&xattrs->lock);
987
988 return err ? err : size - remaining_size;
989}
990
991/*
992 * Adds an extended attribute to the list
993 */
994void simple_xattr_list_add(struct simple_xattrs *xattrs,
995 struct simple_xattr *new_xattr)
996{
997 spin_lock(&xattrs->lock);
998 list_add(&new_xattr->list, &xattrs->head);
999 spin_unlock(&xattrs->lock);
1000}