]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - fs/xattr.c
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / fs / xattr.c
1 /*
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
27 static const char *
28 strcmp_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 */
52 static const struct xattr_handler *
53 xattr_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 */
84 static int
85 xattr_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_permission(inode, mask);
134 }
135
136 int
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 }
151 EXPORT_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 */
169 int __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 EXPORT_SYMBOL_GPL(__vfs_setxattr_noperm);
206
207
208 int
209 vfs_setxattr(struct dentry *dentry, const char *name, const void *value,
210 size_t size, int flags)
211 {
212 struct inode *inode = dentry->d_inode;
213 int error;
214
215 error = xattr_permission(inode, name, MAY_WRITE);
216 if (error)
217 return error;
218
219 inode_lock(inode);
220 error = security_inode_setxattr(dentry, name, value, size, flags);
221 if (error)
222 goto out;
223
224 error = __vfs_setxattr_noperm(dentry, name, value, size, flags);
225
226 out:
227 inode_unlock(inode);
228 return error;
229 }
230 EXPORT_SYMBOL_GPL(vfs_setxattr);
231
232 ssize_t
233 xattr_getsecurity(struct inode *inode, const char *name, void *value,
234 size_t size)
235 {
236 void *buffer = NULL;
237 ssize_t len;
238
239 if (!value || !size) {
240 len = security_inode_getsecurity(inode, name, &buffer, false);
241 goto out_noalloc;
242 }
243
244 len = security_inode_getsecurity(inode, name, &buffer, true);
245 if (len < 0)
246 return len;
247 if (size < len) {
248 len = -ERANGE;
249 goto out;
250 }
251 memcpy(value, buffer, len);
252 out:
253 kfree(buffer);
254 out_noalloc:
255 return len;
256 }
257 EXPORT_SYMBOL_GPL(xattr_getsecurity);
258
259 /*
260 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
261 *
262 * Allocate memory, if not already allocated, or re-allocate correct size,
263 * before retrieving the extended attribute.
264 *
265 * Returns the result of alloc, if failed, or the getxattr operation.
266 */
267 ssize_t
268 vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
269 size_t xattr_size, gfp_t flags)
270 {
271 const struct xattr_handler *handler;
272 struct inode *inode = dentry->d_inode;
273 char *value = *xattr_value;
274 int error;
275
276 error = xattr_permission(inode, name, MAY_READ);
277 if (error)
278 return error;
279
280 handler = xattr_resolve_name(inode, &name);
281 if (IS_ERR(handler))
282 return PTR_ERR(handler);
283 if (!handler->get)
284 return -EOPNOTSUPP;
285 error = handler->get(handler, dentry, inode, name, NULL, 0);
286 if (error < 0)
287 return error;
288
289 if (!value || (error > xattr_size)) {
290 value = krealloc(*xattr_value, error + 1, flags);
291 if (!value)
292 return -ENOMEM;
293 memset(value, 0, error + 1);
294 }
295
296 error = handler->get(handler, dentry, inode, name, value, error);
297 *xattr_value = value;
298 return error;
299 }
300 EXPORT_SYMBOL_GPL(vfs_getxattr_alloc);
301
302 ssize_t
303 __vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
304 void *value, size_t size)
305 {
306 const struct xattr_handler *handler;
307
308 handler = xattr_resolve_name(inode, &name);
309 if (IS_ERR(handler))
310 return PTR_ERR(handler);
311 if (!handler->get)
312 return -EOPNOTSUPP;
313 return handler->get(handler, dentry, inode, name, value, size);
314 }
315 EXPORT_SYMBOL(__vfs_getxattr);
316
317 ssize_t
318 vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
319 {
320 struct inode *inode = dentry->d_inode;
321 int error;
322
323 error = xattr_permission(inode, name, MAY_READ);
324 if (error)
325 return error;
326
327 error = security_inode_getxattr(dentry, name);
328 if (error)
329 return error;
330
331 if (!strncmp(name, XATTR_SECURITY_PREFIX,
332 XATTR_SECURITY_PREFIX_LEN)) {
333 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
334 int ret = xattr_getsecurity(inode, suffix, value, size);
335 /*
336 * Only overwrite the return value if a security module
337 * is actually active.
338 */
339 if (ret == -EOPNOTSUPP)
340 goto nolsm;
341 return ret;
342 }
343 nolsm:
344 return __vfs_getxattr(dentry, inode, name, value, size);
345 }
346 EXPORT_SYMBOL_GPL(vfs_getxattr);
347
348 ssize_t
349 vfs_listxattr(struct dentry *dentry, char *list, size_t size)
350 {
351 struct inode *inode = d_inode(dentry);
352 ssize_t error;
353
354 error = security_inode_listxattr(dentry);
355 if (error)
356 return error;
357 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
358 error = -EOPNOTSUPP;
359 error = inode->i_op->listxattr(dentry, list, size);
360 } else {
361 error = security_inode_listsecurity(inode, list, size);
362 if (size && error > size)
363 error = -ERANGE;
364 }
365 return error;
366 }
367 EXPORT_SYMBOL_GPL(vfs_listxattr);
368
369 int
370 __vfs_removexattr(struct dentry *dentry, const char *name)
371 {
372 struct inode *inode = d_inode(dentry);
373 const struct xattr_handler *handler;
374
375 handler = xattr_resolve_name(inode, &name);
376 if (IS_ERR(handler))
377 return PTR_ERR(handler);
378 if (!handler->set)
379 return -EOPNOTSUPP;
380 return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
381 }
382 EXPORT_SYMBOL(__vfs_removexattr);
383
384 /**
385 * __vfs_removexattr_noperm - perform removexattr operation without
386 * performing permission checks.
387 *
388 * @dentry - object to perform setxattr on
389 * @name - xattr name to set
390 *
391 * returns the result of the internal setxattr or setsecurity operations.
392 *
393 * This function requires the caller to lock the inode's i_mutex before it
394 * is executed. It also assumes that the caller will make the appropriate
395 * permission checks.
396 */
397 int
398 __vfs_removexattr_noperm(struct dentry *dentry, const char *name)
399 {
400 int error;
401
402 error =__vfs_removexattr(dentry, name);
403 if (!error) {
404 fsnotify_xattr(dentry);
405 evm_inode_post_removexattr(dentry, name);
406 }
407 return error;
408 }
409 EXPORT_SYMBOL_GPL(__vfs_removexattr_noperm);
410
411 int
412 vfs_removexattr(struct dentry *dentry, const char *name)
413 {
414 struct inode *inode = dentry->d_inode;
415 int error;
416
417 error = xattr_permission(inode, name, MAY_WRITE);
418 if (error)
419 return error;
420
421 inode_lock(inode);
422 error = security_inode_removexattr(dentry, name);
423 if (error)
424 goto out;
425
426 error = __vfs_removexattr_noperm(dentry, name);
427
428 out:
429 inode_unlock(inode);
430 return error;
431 }
432 EXPORT_SYMBOL_GPL(vfs_removexattr);
433
434
435 /*
436 * Extended attribute SET operations
437 */
438 static long
439 setxattr(struct dentry *d, const char __user *name, const void __user *value,
440 size_t size, int flags)
441 {
442 int error;
443 void *kvalue = NULL;
444 char kname[XATTR_NAME_MAX + 1];
445
446 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
447 return -EINVAL;
448
449 error = strncpy_from_user(kname, name, sizeof(kname));
450 if (error == 0 || error == sizeof(kname))
451 error = -ERANGE;
452 if (error < 0)
453 return error;
454
455 if (size) {
456 if (size > XATTR_SIZE_MAX)
457 return -E2BIG;
458 kvalue = kvmalloc(size, GFP_KERNEL);
459 if (!kvalue)
460 return -ENOMEM;
461 if (copy_from_user(kvalue, value, size)) {
462 error = -EFAULT;
463 goto out;
464 }
465 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
466 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
467 posix_acl_fix_xattr_from_user(kvalue, size);
468 else if (strcmp(kname, XATTR_NAME_CAPS) == 0) {
469 error = cap_convert_nscap(d, &kvalue, size);
470 if (error < 0)
471 goto out;
472 size = error;
473 }
474 }
475
476 error = vfs_setxattr(d, kname, kvalue, size, flags);
477 out:
478 kvfree(kvalue);
479
480 return error;
481 }
482
483 static int path_setxattr(const char __user *pathname,
484 const char __user *name, const void __user *value,
485 size_t size, int flags, unsigned int lookup_flags)
486 {
487 struct path path;
488 int error;
489 retry:
490 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
491 if (error)
492 return error;
493 error = mnt_want_write(path.mnt);
494 if (!error) {
495 error = setxattr(path.dentry, name, value, size, flags);
496 mnt_drop_write(path.mnt);
497 }
498 path_put(&path);
499 if (retry_estale(error, lookup_flags)) {
500 lookup_flags |= LOOKUP_REVAL;
501 goto retry;
502 }
503 return error;
504 }
505
506 SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
507 const char __user *, name, const void __user *, value,
508 size_t, size, int, flags)
509 {
510 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
511 }
512
513 SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
514 const char __user *, name, const void __user *, value,
515 size_t, size, int, flags)
516 {
517 return path_setxattr(pathname, name, value, size, flags, 0);
518 }
519
520 SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
521 const void __user *,value, size_t, size, int, flags)
522 {
523 struct fd f = fdget(fd);
524 int error = -EBADF;
525
526 if (!f.file)
527 return error;
528 audit_file(f.file);
529 error = mnt_want_write_file(f.file);
530 if (!error) {
531 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
532 mnt_drop_write_file(f.file);
533 }
534 fdput(f);
535 return error;
536 }
537
538 /*
539 * Extended attribute GET operations
540 */
541 static ssize_t
542 getxattr(struct dentry *d, const char __user *name, void __user *value,
543 size_t size)
544 {
545 ssize_t error;
546 void *kvalue = NULL;
547 char kname[XATTR_NAME_MAX + 1];
548
549 error = strncpy_from_user(kname, name, sizeof(kname));
550 if (error == 0 || error == sizeof(kname))
551 error = -ERANGE;
552 if (error < 0)
553 return error;
554
555 if (size) {
556 if (size > XATTR_SIZE_MAX)
557 size = XATTR_SIZE_MAX;
558 kvalue = kvzalloc(size, GFP_KERNEL);
559 if (!kvalue)
560 return -ENOMEM;
561 }
562
563 error = vfs_getxattr(d, kname, kvalue, size);
564 if (error > 0) {
565 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
566 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
567 posix_acl_fix_xattr_to_user(kvalue, size);
568 if (size && copy_to_user(value, kvalue, error))
569 error = -EFAULT;
570 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
571 /* The file system tried to returned a value bigger
572 than XATTR_SIZE_MAX bytes. Not possible. */
573 error = -E2BIG;
574 }
575
576 kvfree(kvalue);
577
578 return error;
579 }
580
581 static ssize_t path_getxattr(const char __user *pathname,
582 const char __user *name, void __user *value,
583 size_t size, unsigned int lookup_flags)
584 {
585 struct path path;
586 ssize_t error;
587 retry:
588 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
589 if (error)
590 return error;
591 error = getxattr(path.dentry, name, value, size);
592 path_put(&path);
593 if (retry_estale(error, lookup_flags)) {
594 lookup_flags |= LOOKUP_REVAL;
595 goto retry;
596 }
597 return error;
598 }
599
600 SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
601 const char __user *, name, void __user *, value, size_t, size)
602 {
603 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
604 }
605
606 SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
607 const char __user *, name, void __user *, value, size_t, size)
608 {
609 return path_getxattr(pathname, name, value, size, 0);
610 }
611
612 SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
613 void __user *, value, size_t, size)
614 {
615 struct fd f = fdget(fd);
616 ssize_t error = -EBADF;
617
618 if (!f.file)
619 return error;
620 audit_file(f.file);
621 error = getxattr(f.file->f_path.dentry, name, value, size);
622 fdput(f);
623 return error;
624 }
625
626 /*
627 * Extended attribute LIST operations
628 */
629 static ssize_t
630 listxattr(struct dentry *d, char __user *list, size_t size)
631 {
632 ssize_t error;
633 char *klist = NULL;
634
635 if (size) {
636 if (size > XATTR_LIST_MAX)
637 size = XATTR_LIST_MAX;
638 klist = kvmalloc(size, GFP_KERNEL);
639 if (!klist)
640 return -ENOMEM;
641 }
642
643 error = vfs_listxattr(d, klist, size);
644 if (error > 0) {
645 if (size && copy_to_user(list, klist, error))
646 error = -EFAULT;
647 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
648 /* The file system tried to returned a list bigger
649 than XATTR_LIST_MAX bytes. Not possible. */
650 error = -E2BIG;
651 }
652
653 kvfree(klist);
654
655 return error;
656 }
657
658 static ssize_t path_listxattr(const char __user *pathname, char __user *list,
659 size_t size, unsigned int lookup_flags)
660 {
661 struct path path;
662 ssize_t error;
663 retry:
664 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
665 if (error)
666 return error;
667 error = listxattr(path.dentry, list, size);
668 path_put(&path);
669 if (retry_estale(error, lookup_flags)) {
670 lookup_flags |= LOOKUP_REVAL;
671 goto retry;
672 }
673 return error;
674 }
675
676 SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
677 size_t, size)
678 {
679 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
680 }
681
682 SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
683 size_t, size)
684 {
685 return path_listxattr(pathname, list, size, 0);
686 }
687
688 SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
689 {
690 struct fd f = fdget(fd);
691 ssize_t error = -EBADF;
692
693 if (!f.file)
694 return error;
695 audit_file(f.file);
696 error = listxattr(f.file->f_path.dentry, list, size);
697 fdput(f);
698 return error;
699 }
700
701 /*
702 * Extended attribute REMOVE operations
703 */
704 static long
705 removexattr(struct dentry *d, const char __user *name)
706 {
707 int error;
708 char kname[XATTR_NAME_MAX + 1];
709
710 error = strncpy_from_user(kname, name, sizeof(kname));
711 if (error == 0 || error == sizeof(kname))
712 error = -ERANGE;
713 if (error < 0)
714 return error;
715
716 return vfs_removexattr(d, kname);
717 }
718
719 static int path_removexattr(const char __user *pathname,
720 const char __user *name, unsigned int lookup_flags)
721 {
722 struct path path;
723 int error;
724 retry:
725 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
726 if (error)
727 return error;
728 error = mnt_want_write(path.mnt);
729 if (!error) {
730 error = removexattr(path.dentry, name);
731 mnt_drop_write(path.mnt);
732 }
733 path_put(&path);
734 if (retry_estale(error, lookup_flags)) {
735 lookup_flags |= LOOKUP_REVAL;
736 goto retry;
737 }
738 return error;
739 }
740
741 SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
742 const char __user *, name)
743 {
744 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
745 }
746
747 SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
748 const char __user *, name)
749 {
750 return path_removexattr(pathname, name, 0);
751 }
752
753 SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
754 {
755 struct fd f = fdget(fd);
756 int error = -EBADF;
757
758 if (!f.file)
759 return error;
760 audit_file(f.file);
761 error = mnt_want_write_file(f.file);
762 if (!error) {
763 error = removexattr(f.file->f_path.dentry, name);
764 mnt_drop_write_file(f.file);
765 }
766 fdput(f);
767 return error;
768 }
769
770 /*
771 * Combine the results of the list() operation from every xattr_handler in the
772 * list.
773 */
774 ssize_t
775 generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
776 {
777 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
778 unsigned int size = 0;
779
780 if (!buffer) {
781 for_each_xattr_handler(handlers, handler) {
782 if (!handler->name ||
783 (handler->list && !handler->list(dentry)))
784 continue;
785 size += strlen(handler->name) + 1;
786 }
787 } else {
788 char *buf = buffer;
789 size_t len;
790
791 for_each_xattr_handler(handlers, handler) {
792 if (!handler->name ||
793 (handler->list && !handler->list(dentry)))
794 continue;
795 len = strlen(handler->name);
796 if (len + 1 > buffer_size)
797 return -ERANGE;
798 memcpy(buf, handler->name, len + 1);
799 buf += len + 1;
800 buffer_size -= len + 1;
801 }
802 size = buf - buffer;
803 }
804 return size;
805 }
806 EXPORT_SYMBOL(generic_listxattr);
807
808 /**
809 * xattr_full_name - Compute full attribute name from suffix
810 *
811 * @handler: handler of the xattr_handler operation
812 * @name: name passed to the xattr_handler operation
813 *
814 * The get and set xattr handler operations are called with the remainder of
815 * the attribute name after skipping the handler's prefix: for example, "foo"
816 * is passed to the get operation of a handler with prefix "user." to get
817 * attribute "user.foo". The full name is still "there" in the name though.
818 *
819 * Note: the list xattr handler operation when called from the vfs is passed a
820 * NULL name; some file systems use this operation internally, with varying
821 * semantics.
822 */
823 const char *xattr_full_name(const struct xattr_handler *handler,
824 const char *name)
825 {
826 size_t prefix_len = strlen(xattr_prefix(handler));
827
828 return name - prefix_len;
829 }
830 EXPORT_SYMBOL(xattr_full_name);
831
832 /*
833 * Allocate new xattr and copy in the value; but leave the name to callers.
834 */
835 struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
836 {
837 struct simple_xattr *new_xattr;
838 size_t len;
839
840 /* wrap around? */
841 len = sizeof(*new_xattr) + size;
842 if (len < sizeof(*new_xattr))
843 return NULL;
844
845 new_xattr = kmalloc(len, GFP_KERNEL);
846 if (!new_xattr)
847 return NULL;
848
849 new_xattr->size = size;
850 memcpy(new_xattr->value, value, size);
851 return new_xattr;
852 }
853
854 /*
855 * xattr GET operation for in-memory/pseudo filesystems
856 */
857 int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
858 void *buffer, size_t size)
859 {
860 struct simple_xattr *xattr;
861 int ret = -ENODATA;
862
863 spin_lock(&xattrs->lock);
864 list_for_each_entry(xattr, &xattrs->head, list) {
865 if (strcmp(name, xattr->name))
866 continue;
867
868 ret = xattr->size;
869 if (buffer) {
870 if (size < xattr->size)
871 ret = -ERANGE;
872 else
873 memcpy(buffer, xattr->value, xattr->size);
874 }
875 break;
876 }
877 spin_unlock(&xattrs->lock);
878 return ret;
879 }
880
881 /**
882 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
883 * @xattrs: target simple_xattr list
884 * @name: name of the extended attribute
885 * @value: value of the xattr. If %NULL, will remove the attribute.
886 * @size: size of the new xattr
887 * @flags: %XATTR_{CREATE|REPLACE}
888 *
889 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
890 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
891 * otherwise, fails with -ENODATA.
892 *
893 * Returns 0 on success, -errno on failure.
894 */
895 int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
896 const void *value, size_t size, int flags)
897 {
898 struct simple_xattr *xattr;
899 struct simple_xattr *new_xattr = NULL;
900 int err = 0;
901
902 /* value == NULL means remove */
903 if (value) {
904 new_xattr = simple_xattr_alloc(value, size);
905 if (!new_xattr)
906 return -ENOMEM;
907
908 new_xattr->name = kstrdup(name, GFP_KERNEL);
909 if (!new_xattr->name) {
910 kfree(new_xattr);
911 return -ENOMEM;
912 }
913 }
914
915 spin_lock(&xattrs->lock);
916 list_for_each_entry(xattr, &xattrs->head, list) {
917 if (!strcmp(name, xattr->name)) {
918 if (flags & XATTR_CREATE) {
919 xattr = new_xattr;
920 err = -EEXIST;
921 } else if (new_xattr) {
922 list_replace(&xattr->list, &new_xattr->list);
923 } else {
924 list_del(&xattr->list);
925 }
926 goto out;
927 }
928 }
929 if (flags & XATTR_REPLACE) {
930 xattr = new_xattr;
931 err = -ENODATA;
932 } else {
933 list_add(&new_xattr->list, &xattrs->head);
934 xattr = NULL;
935 }
936 out:
937 spin_unlock(&xattrs->lock);
938 if (xattr) {
939 kfree(xattr->name);
940 kfree(xattr);
941 }
942 return err;
943
944 }
945
946 static bool xattr_is_trusted(const char *name)
947 {
948 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
949 }
950
951 static int xattr_list_one(char **buffer, ssize_t *remaining_size,
952 const char *name)
953 {
954 size_t len = strlen(name) + 1;
955 if (*buffer) {
956 if (*remaining_size < len)
957 return -ERANGE;
958 memcpy(*buffer, name, len);
959 *buffer += len;
960 }
961 *remaining_size -= len;
962 return 0;
963 }
964
965 /*
966 * xattr LIST operation for in-memory/pseudo filesystems
967 */
968 ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
969 char *buffer, size_t size)
970 {
971 bool trusted = capable(CAP_SYS_ADMIN);
972 struct simple_xattr *xattr;
973 ssize_t remaining_size = size;
974 int err = 0;
975
976 #ifdef CONFIG_FS_POSIX_ACL
977 if (inode->i_acl) {
978 err = xattr_list_one(&buffer, &remaining_size,
979 XATTR_NAME_POSIX_ACL_ACCESS);
980 if (err)
981 return err;
982 }
983 if (inode->i_default_acl) {
984 err = xattr_list_one(&buffer, &remaining_size,
985 XATTR_NAME_POSIX_ACL_DEFAULT);
986 if (err)
987 return err;
988 }
989 #endif
990
991 spin_lock(&xattrs->lock);
992 list_for_each_entry(xattr, &xattrs->head, list) {
993 /* skip "trusted." attributes for unprivileged callers */
994 if (!trusted && xattr_is_trusted(xattr->name))
995 continue;
996
997 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
998 if (err)
999 break;
1000 }
1001 spin_unlock(&xattrs->lock);
1002
1003 return err ? err : size - remaining_size;
1004 }
1005
1006 /*
1007 * Adds an extended attribute to the list
1008 */
1009 void simple_xattr_list_add(struct simple_xattrs *xattrs,
1010 struct simple_xattr *new_xattr)
1011 {
1012 spin_lock(&xattrs->lock);
1013 list_add(&new_xattr->list, &xattrs->head);
1014 spin_unlock(&xattrs->lock);
1015 }