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