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