]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/xattr.c
UBUNTU: SAUCE: (namespace) fs: Don't remove suid for CAP_FSETID for userns root
[mirror_ubuntu-zesty-kernel.git] / fs / xattr.c
CommitLineData
1da177e4
LT
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>
1da177e4
LT
12#include <linux/file.h>
13#include <linux/xattr.h>
18f335af 14#include <linux/mount.h>
1da177e4
LT
15#include <linux/namei.h>
16#include <linux/security.h>
c7b87de2 17#include <linux/evm.h>
1da177e4 18#include <linux/syscalls.h>
630d9c47 19#include <linux/export.h>
0eeca283 20#include <linux/fsnotify.h>
73241ccc 21#include <linux/audit.h>
0d08d7b7 22#include <linux/vmalloc.h>
2f6f0654 23#include <linux/posix_acl_xattr.h>
1da177e4 24
7c0f6ba6 25#include <linux/uaccess.h>
5be196e5 26
b6ba1177
AG
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
6c6ef9f2
AG
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.
b6ba1177
AG
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 *
d0a5b995 53xattr_resolve_name(struct inode *inode, const char **name)
b6ba1177 54{
d0a5b995 55 const struct xattr_handler **handlers = inode->i_sb->s_xattr;
b6ba1177
AG
56 const struct xattr_handler *handler;
57
5f6e59ae
AG
58 if (!(inode->i_opflags & IOP_XATTR)) {
59 if (unlikely(is_bad_inode(inode)))
60 return ERR_PTR(-EIO);
d0a5b995 61 return ERR_PTR(-EOPNOTSUPP);
5f6e59ae 62 }
b6ba1177
AG
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
e0ad7b07 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) {
e0ad7b07 92 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
93 return -EPERM;
0bd23d09
EB
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;
e0ad7b07 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 /*
55b23bde 112 * The trusted.* namespace can only be accessed by privileged users.
e0ad7b07 113 */
55b23bde
AG
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 }
e0ad7b07 119
55b23bde
AG
120 /*
121 * In the user.* namespace, only regular files and directories can have
f1f2d871 122 * extended attributes. For sticky directories, only the owner and
55b23bde 123 * privileged users can write attributes.
f1f2d871 124 */
e0ad7b07 125 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
f1f2d871 126 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
55b23bde 127 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
f1f2d871 128 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
2e149670 129 (mask & MAY_WRITE) && !inode_owner_or_capable(inode))
e0ad7b07 130 return -EPERM;
131 }
132
f419a2e3 133 return inode_permission(inode, mask);
e0ad7b07 134}
135
5d6c3191
AG
136int
137__vfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
138 const void *value, size_t size, int flags)
139{
6c6ef9f2
AG
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)
5d6c3191 146 return -EOPNOTSUPP;
6c6ef9f2
AG
147 if (size == 0)
148 value = ""; /* empty EA, do not remove */
149 return handler->set(handler, dentry, inode, name, value, size, flags);
5d6c3191
AG
150}
151EXPORT_SYMBOL(__vfs_setxattr);
152
b1ab7e4b
DQ
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)
5be196e5
CH
171{
172 struct inode *inode = dentry->d_inode;
4a590153 173 int error = -EAGAIN;
69b45732
AK
174 int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
175 XATTR_SECURITY_PREFIX_LEN);
e0ad7b07 176
69b45732
AK
177 if (issec)
178 inode->i_flags &= ~S_NOSEC;
6c6ef9f2 179 if (inode->i_opflags & IOP_XATTR) {
5d6c3191 180 error = __vfs_setxattr(dentry, inode, name, value, size, flags);
5be196e5
CH
181 if (!error) {
182 fsnotify_xattr(dentry);
183 security_inode_post_setxattr(dentry, name, value,
184 size, flags);
185 }
4a590153 186 } else {
5f6e59ae
AG
187 if (unlikely(is_bad_inode(inode)))
188 return -EIO;
4a590153
AG
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 }
5be196e5 201 }
b1ab7e4b
DQ
202
203 return error;
204}
84da0cc3 205EXPORT_SYMBOL_GPL(__vfs_setxattr_noperm);
b1ab7e4b
DQ
206
207
208int
209vfs_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
5955102c 219 inode_lock(inode);
b1ab7e4b
DQ
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
5be196e5 226out:
5955102c 227 inode_unlock(inode);
5be196e5
CH
228 return error;
229}
230EXPORT_SYMBOL_GPL(vfs_setxattr);
231
42492594
DQ
232ssize_t
233xattr_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);
252out:
253 security_release_secctx(buffer, len);
254out_noalloc:
255 return len;
256}
257EXPORT_SYMBOL_GPL(xattr_getsecurity);
258
1601fbad
MZ
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 */
267ssize_t
268vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
269 size_t xattr_size, gfp_t flags)
270{
6c6ef9f2 271 const struct xattr_handler *handler;
1601fbad
MZ
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
6c6ef9f2
AG
280 handler = xattr_resolve_name(inode, &name);
281 if (IS_ERR(handler))
282 return PTR_ERR(handler);
283 if (!handler->get)
1601fbad 284 return -EOPNOTSUPP;
6c6ef9f2 285 error = handler->get(handler, dentry, inode, name, NULL, 0);
1601fbad
MZ
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
6c6ef9f2 296 error = handler->get(handler, dentry, inode, name, value, error);
1601fbad
MZ
297 *xattr_value = value;
298 return error;
299}
300
5d6c3191
AG
301ssize_t
302__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
303 void *value, size_t size)
304{
6c6ef9f2
AG
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)
5d6c3191 311 return -EOPNOTSUPP;
6c6ef9f2 312 return handler->get(handler, dentry, inode, name, value, size);
5d6c3191
AG
313}
314EXPORT_SYMBOL(__vfs_getxattr);
315
5be196e5 316ssize_t
8f0cfa52 317vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
5be196e5
CH
318{
319 struct inode *inode = dentry->d_inode;
320 int error;
321
e0ad7b07 322 error = xattr_permission(inode, name, MAY_READ);
323 if (error)
324 return error;
325
5be196e5
CH
326 error = security_inode_getxattr(dentry, name);
327 if (error)
328 return error;
329
5be196e5 330 if (!strncmp(name, XATTR_SECURITY_PREFIX,
e0ad7b07 331 XATTR_SECURITY_PREFIX_LEN)) {
332 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
42492594 333 int ret = xattr_getsecurity(inode, suffix, value, size);
5be196e5
CH
334 /*
335 * Only overwrite the return value if a security module
336 * is actually active.
337 */
4bea5805
DQ
338 if (ret == -EOPNOTSUPP)
339 goto nolsm;
340 return ret;
5be196e5 341 }
4bea5805 342nolsm:
5d6c3191 343 return __vfs_getxattr(dentry, inode, name, value, size);
5be196e5
CH
344}
345EXPORT_SYMBOL_GPL(vfs_getxattr);
346
659564c8 347ssize_t
bf3ee713 348vfs_listxattr(struct dentry *dentry, char *list, size_t size)
659564c8 349{
bf3ee713 350 struct inode *inode = d_inode(dentry);
659564c8
BN
351 ssize_t error;
352
bf3ee713 353 error = security_inode_listxattr(dentry);
659564c8
BN
354 if (error)
355 return error;
bf3ee713
AG
356 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
357 error = -EOPNOTSUPP;
358 error = inode->i_op->listxattr(dentry, list, size);
659564c8 359 } else {
bf3ee713 360 error = security_inode_listsecurity(inode, list, size);
659564c8
BN
361 if (size && error > size)
362 error = -ERANGE;
363 }
364 return error;
365}
366EXPORT_SYMBOL_GPL(vfs_listxattr);
367
84da0cc3
SF
368/**
369 * __vfs_removexattr_noperm - perform removexattr operation without
370 * performing permission checks.
371 *
372 * @dentry - object to perform setxattr on
373 * @name - xattr name to set
374 *
375 * returns the result of the internal setxattr or setsecurity operations.
376 *
377 * This function requires the caller to lock the inode's i_mutex before it
378 * is executed. It also assumes that the caller will make the appropriate
379 * permission checks.
380 */
381int __vfs_removexattr_noperm(struct dentry *dentry, const char *name)
382{
383 struct inode *inode = dentry->d_inode;
384 int error = -EOPNOTSUPP;
385
386 if (inode->i_op->removexattr) {
387 error = inode->i_op->removexattr(dentry, name);
388 if (!error) {
389 fsnotify_xattr(dentry);
390 evm_inode_post_removexattr(dentry, name);
391 }
392 }
393
394 return error;
395}
396EXPORT_SYMBOL_GPL(__vfs_removexattr_noperm);
397
5be196e5 398int
5d6c3191 399__vfs_removexattr(struct dentry *dentry, const char *name)
5be196e5 400{
6c6ef9f2
AG
401 struct inode *inode = d_inode(dentry);
402 const struct xattr_handler *handler;
5be196e5 403
6c6ef9f2
AG
404 handler = xattr_resolve_name(inode, &name);
405 if (IS_ERR(handler))
406 return PTR_ERR(handler);
407 if (!handler->set)
5be196e5 408 return -EOPNOTSUPP;
6c6ef9f2 409 return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
5d6c3191
AG
410}
411EXPORT_SYMBOL(__vfs_removexattr);
412
413int
414vfs_removexattr(struct dentry *dentry, const char *name)
415{
416 struct inode *inode = dentry->d_inode;
417 int error;
5be196e5 418
e0ad7b07 419 error = xattr_permission(inode, name, MAY_WRITE);
420 if (error)
421 return error;
422
5955102c 423 inode_lock(inode);
5be196e5 424 error = security_inode_removexattr(dentry, name);
7c51bb00
DK
425 if (error)
426 goto out;
5be196e5 427
84da0cc3 428 error = __vfs_removexattr_noperm(dentry, name);
5be196e5 429
c7b87de2 430 if (!error) {
5be196e5 431 fsnotify_xattr(dentry);
c7b87de2
MZ
432 evm_inode_post_removexattr(dentry, name);
433 }
7c51bb00
DK
434
435out:
5955102c 436 inode_unlock(inode);
5be196e5
CH
437 return error;
438}
439EXPORT_SYMBOL_GPL(vfs_removexattr);
440
441
1da177e4
LT
442/*
443 * Extended attribute SET operations
444 */
445static long
8f0cfa52 446setxattr(struct dentry *d, const char __user *name, const void __user *value,
1da177e4
LT
447 size_t size, int flags)
448{
449 int error;
450 void *kvalue = NULL;
451 char kname[XATTR_NAME_MAX + 1];
452
453 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
454 return -EINVAL;
455
456 error = strncpy_from_user(kname, name, sizeof(kname));
457 if (error == 0 || error == sizeof(kname))
458 error = -ERANGE;
459 if (error < 0)
460 return error;
461
462 if (size) {
463 if (size > XATTR_SIZE_MAX)
464 return -E2BIG;
44c82498
AM
465 kvalue = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
466 if (!kvalue) {
0b2a6f23
RW
467 kvalue = vmalloc(size);
468 if (!kvalue)
44c82498 469 return -ENOMEM;
44c82498
AM
470 }
471 if (copy_from_user(kvalue, value, size)) {
472 error = -EFAULT;
473 goto out;
474 }
2f6f0654
EB
475 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
476 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
477 posix_acl_fix_xattr_from_user(kvalue, size);
1da177e4
LT
478 }
479
5be196e5 480 error = vfs_setxattr(d, kname, kvalue, size, flags);
44c82498 481out:
0b2a6f23
RW
482 kvfree(kvalue);
483
1da177e4
LT
484 return error;
485}
486
8cc43116
EB
487static int path_setxattr(const char __user *pathname,
488 const char __user *name, const void __user *value,
489 size_t size, int flags, unsigned int lookup_flags)
1da177e4 490{
2d8f3038 491 struct path path;
1da177e4 492 int error;
68f1bb8b
JL
493retry:
494 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
495 if (error)
496 return error;
2d8f3038 497 error = mnt_want_write(path.mnt);
18f335af 498 if (!error) {
2d8f3038
AV
499 error = setxattr(path.dentry, name, value, size, flags);
500 mnt_drop_write(path.mnt);
18f335af 501 }
2d8f3038 502 path_put(&path);
68f1bb8b
JL
503 if (retry_estale(error, lookup_flags)) {
504 lookup_flags |= LOOKUP_REVAL;
505 goto retry;
506 }
1da177e4
LT
507 return error;
508}
509
8cc43116
EB
510SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
511 const char __user *, name, const void __user *, value,
512 size_t, size, int, flags)
513{
514 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
515}
516
64fd1de3
HC
517SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
518 const char __user *, name, const void __user *, value,
519 size_t, size, int, flags)
1da177e4 520{
8cc43116 521 return path_setxattr(pathname, name, value, size, flags, 0);
1da177e4
LT
522}
523
64fd1de3
HC
524SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
525 const void __user *,value, size_t, size, int, flags)
1da177e4 526{
2903ff01 527 struct fd f = fdget(fd);
1da177e4
LT
528 int error = -EBADF;
529
2903ff01 530 if (!f.file)
1da177e4 531 return error;
9f45f5bf 532 audit_file(f.file);
2903ff01 533 error = mnt_want_write_file(f.file);
18f335af 534 if (!error) {
9f45f5bf 535 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
2903ff01 536 mnt_drop_write_file(f.file);
18f335af 537 }
2903ff01 538 fdput(f);
1da177e4
LT
539 return error;
540}
541
542/*
543 * Extended attribute GET operations
544 */
545static ssize_t
8f0cfa52
DH
546getxattr(struct dentry *d, const char __user *name, void __user *value,
547 size_t size)
1da177e4
LT
548{
549 ssize_t error;
550 void *kvalue = NULL;
551 char kname[XATTR_NAME_MAX + 1];
552
553 error = strncpy_from_user(kname, name, sizeof(kname));
554 if (error == 0 || error == sizeof(kname))
555 error = -ERANGE;
556 if (error < 0)
557 return error;
558
559 if (size) {
560 if (size > XATTR_SIZE_MAX)
561 size = XATTR_SIZE_MAX;
779302e6
SL
562 kvalue = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
563 if (!kvalue) {
0b2a6f23
RW
564 kvalue = vmalloc(size);
565 if (!kvalue)
779302e6 566 return -ENOMEM;
779302e6 567 }
1da177e4
LT
568 }
569
5be196e5 570 error = vfs_getxattr(d, kname, kvalue, size);
f549d6c1 571 if (error > 0) {
2f6f0654
EB
572 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
573 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
574 posix_acl_fix_xattr_to_user(kvalue, size);
f549d6c1
SS
575 if (size && copy_to_user(value, kvalue, error))
576 error = -EFAULT;
577 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
578 /* The file system tried to returned a value bigger
579 than XATTR_SIZE_MAX bytes. Not possible. */
580 error = -E2BIG;
1da177e4 581 }
0b2a6f23
RW
582
583 kvfree(kvalue);
584
1da177e4
LT
585 return error;
586}
587
8cc43116
EB
588static ssize_t path_getxattr(const char __user *pathname,
589 const char __user *name, void __user *value,
590 size_t size, unsigned int lookup_flags)
1da177e4 591{
2d8f3038 592 struct path path;
1da177e4 593 ssize_t error;
60e66b48
JL
594retry:
595 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
596 if (error)
597 return error;
2d8f3038
AV
598 error = getxattr(path.dentry, name, value, size);
599 path_put(&path);
60e66b48
JL
600 if (retry_estale(error, lookup_flags)) {
601 lookup_flags |= LOOKUP_REVAL;
602 goto retry;
603 }
1da177e4
LT
604 return error;
605}
606
8cc43116
EB
607SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
608 const char __user *, name, void __user *, value, size_t, size)
609{
610 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
611}
612
64fd1de3
HC
613SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
614 const char __user *, name, void __user *, value, size_t, size)
1da177e4 615{
8cc43116 616 return path_getxattr(pathname, name, value, size, 0);
1da177e4
LT
617}
618
64fd1de3
HC
619SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
620 void __user *, value, size_t, size)
1da177e4 621{
2903ff01 622 struct fd f = fdget(fd);
1da177e4
LT
623 ssize_t error = -EBADF;
624
2903ff01 625 if (!f.file)
1da177e4 626 return error;
9f45f5bf 627 audit_file(f.file);
2903ff01
AV
628 error = getxattr(f.file->f_path.dentry, name, value, size);
629 fdput(f);
1da177e4
LT
630 return error;
631}
632
633/*
634 * Extended attribute LIST operations
635 */
636static ssize_t
637listxattr(struct dentry *d, char __user *list, size_t size)
638{
639 ssize_t error;
640 char *klist = NULL;
641
642 if (size) {
643 if (size > XATTR_LIST_MAX)
644 size = XATTR_LIST_MAX;
703bf2d1 645 klist = kmalloc(size, __GFP_NOWARN | GFP_KERNEL);
0d08d7b7 646 if (!klist) {
0b2a6f23
RW
647 klist = vmalloc(size);
648 if (!klist)
0d08d7b7 649 return -ENOMEM;
0d08d7b7 650 }
1da177e4
LT
651 }
652
659564c8 653 error = vfs_listxattr(d, klist, size);
f549d6c1
SS
654 if (error > 0) {
655 if (size && copy_to_user(list, klist, error))
656 error = -EFAULT;
657 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
658 /* The file system tried to returned a list bigger
659 than XATTR_LIST_MAX bytes. Not possible. */
660 error = -E2BIG;
1da177e4 661 }
0b2a6f23
RW
662
663 kvfree(klist);
664
1da177e4
LT
665 return error;
666}
667
8cc43116
EB
668static ssize_t path_listxattr(const char __user *pathname, char __user *list,
669 size_t size, unsigned int lookup_flags)
1da177e4 670{
2d8f3038 671 struct path path;
1da177e4 672 ssize_t error;
10a90cf3
JL
673retry:
674 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
675 if (error)
676 return error;
2d8f3038
AV
677 error = listxattr(path.dentry, list, size);
678 path_put(&path);
10a90cf3
JL
679 if (retry_estale(error, lookup_flags)) {
680 lookup_flags |= LOOKUP_REVAL;
681 goto retry;
682 }
1da177e4
LT
683 return error;
684}
685
8cc43116
EB
686SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
687 size_t, size)
688{
689 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
690}
691
64fd1de3
HC
692SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
693 size_t, size)
1da177e4 694{
8cc43116 695 return path_listxattr(pathname, list, size, 0);
1da177e4
LT
696}
697
64fd1de3 698SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
1da177e4 699{
2903ff01 700 struct fd f = fdget(fd);
1da177e4
LT
701 ssize_t error = -EBADF;
702
2903ff01 703 if (!f.file)
1da177e4 704 return error;
9f45f5bf 705 audit_file(f.file);
2903ff01
AV
706 error = listxattr(f.file->f_path.dentry, list, size);
707 fdput(f);
1da177e4
LT
708 return error;
709}
710
711/*
712 * Extended attribute REMOVE operations
713 */
714static long
8f0cfa52 715removexattr(struct dentry *d, const char __user *name)
1da177e4
LT
716{
717 int error;
718 char kname[XATTR_NAME_MAX + 1];
719
720 error = strncpy_from_user(kname, name, sizeof(kname));
721 if (error == 0 || error == sizeof(kname))
722 error = -ERANGE;
723 if (error < 0)
724 return error;
725
5be196e5 726 return vfs_removexattr(d, kname);
1da177e4
LT
727}
728
8cc43116
EB
729static int path_removexattr(const char __user *pathname,
730 const char __user *name, unsigned int lookup_flags)
1da177e4 731{
2d8f3038 732 struct path path;
1da177e4 733 int error;
12f06212
JL
734retry:
735 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
1da177e4
LT
736 if (error)
737 return error;
2d8f3038 738 error = mnt_want_write(path.mnt);
18f335af 739 if (!error) {
2d8f3038
AV
740 error = removexattr(path.dentry, name);
741 mnt_drop_write(path.mnt);
18f335af 742 }
2d8f3038 743 path_put(&path);
12f06212
JL
744 if (retry_estale(error, lookup_flags)) {
745 lookup_flags |= LOOKUP_REVAL;
746 goto retry;
747 }
1da177e4
LT
748 return error;
749}
750
8cc43116
EB
751SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
752 const char __user *, name)
753{
754 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
755}
756
6a6160a7
HC
757SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
758 const char __user *, name)
1da177e4 759{
8cc43116 760 return path_removexattr(pathname, name, 0);
1da177e4
LT
761}
762
6a6160a7 763SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
1da177e4 764{
2903ff01 765 struct fd f = fdget(fd);
1da177e4
LT
766 int error = -EBADF;
767
2903ff01 768 if (!f.file)
1da177e4 769 return error;
9f45f5bf 770 audit_file(f.file);
2903ff01 771 error = mnt_want_write_file(f.file);
18f335af 772 if (!error) {
9f45f5bf 773 error = removexattr(f.file->f_path.dentry, name);
2903ff01 774 mnt_drop_write_file(f.file);
18f335af 775 }
2903ff01 776 fdput(f);
1da177e4
LT
777 return error;
778}
779
1da177e4
LT
780/*
781 * Combine the results of the list() operation from every xattr_handler in the
782 * list.
783 */
784ssize_t
785generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
786{
bb435453 787 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
1da177e4
LT
788 unsigned int size = 0;
789
790 if (!buffer) {
431547b3 791 for_each_xattr_handler(handlers, handler) {
764a5c6b
AG
792 if (!handler->name ||
793 (handler->list && !handler->list(dentry)))
c4803c49 794 continue;
764a5c6b 795 size += strlen(handler->name) + 1;
431547b3 796 }
1da177e4
LT
797 } else {
798 char *buf = buffer;
764a5c6b 799 size_t len;
1da177e4
LT
800
801 for_each_xattr_handler(handlers, handler) {
764a5c6b
AG
802 if (!handler->name ||
803 (handler->list && !handler->list(dentry)))
c4803c49 804 continue;
764a5c6b
AG
805 len = strlen(handler->name);
806 if (len + 1 > buffer_size)
1da177e4 807 return -ERANGE;
764a5c6b
AG
808 memcpy(buf, handler->name, len + 1);
809 buf += len + 1;
810 buffer_size -= len + 1;
1da177e4
LT
811 }
812 size = buf - buffer;
813 }
814 return size;
815}
1da177e4 816EXPORT_SYMBOL(generic_listxattr);
38f38657 817
e409de99
AG
818/**
819 * xattr_full_name - Compute full attribute name from suffix
820 *
821 * @handler: handler of the xattr_handler operation
822 * @name: name passed to the xattr_handler operation
823 *
824 * The get and set xattr handler operations are called with the remainder of
825 * the attribute name after skipping the handler's prefix: for example, "foo"
826 * is passed to the get operation of a handler with prefix "user." to get
827 * attribute "user.foo". The full name is still "there" in the name though.
828 *
829 * Note: the list xattr handler operation when called from the vfs is passed a
830 * NULL name; some file systems use this operation internally, with varying
831 * semantics.
832 */
833const char *xattr_full_name(const struct xattr_handler *handler,
834 const char *name)
835{
98e9cb57 836 size_t prefix_len = strlen(xattr_prefix(handler));
e409de99
AG
837
838 return name - prefix_len;
839}
840EXPORT_SYMBOL(xattr_full_name);
841
38f38657
AR
842/*
843 * Allocate new xattr and copy in the value; but leave the name to callers.
844 */
845struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
846{
847 struct simple_xattr *new_xattr;
848 size_t len;
849
850 /* wrap around? */
851 len = sizeof(*new_xattr) + size;
4e66d445 852 if (len < sizeof(*new_xattr))
38f38657
AR
853 return NULL;
854
855 new_xattr = kmalloc(len, GFP_KERNEL);
856 if (!new_xattr)
857 return NULL;
858
859 new_xattr->size = size;
860 memcpy(new_xattr->value, value, size);
861 return new_xattr;
862}
863
864/*
865 * xattr GET operation for in-memory/pseudo filesystems
866 */
867int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
868 void *buffer, size_t size)
869{
870 struct simple_xattr *xattr;
871 int ret = -ENODATA;
872
873 spin_lock(&xattrs->lock);
874 list_for_each_entry(xattr, &xattrs->head, list) {
875 if (strcmp(name, xattr->name))
876 continue;
877
878 ret = xattr->size;
879 if (buffer) {
880 if (size < xattr->size)
881 ret = -ERANGE;
882 else
883 memcpy(buffer, xattr->value, xattr->size);
884 }
885 break;
886 }
887 spin_unlock(&xattrs->lock);
888 return ret;
889}
890
aa7c5241
AG
891/**
892 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
893 * @xattrs: target simple_xattr list
894 * @name: name of the extended attribute
895 * @value: value of the xattr. If %NULL, will remove the attribute.
896 * @size: size of the new xattr
897 * @flags: %XATTR_{CREATE|REPLACE}
898 *
899 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
900 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
901 * otherwise, fails with -ENODATA.
902 *
903 * Returns 0 on success, -errno on failure.
904 */
905int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
906 const void *value, size_t size, int flags)
38f38657
AR
907{
908 struct simple_xattr *xattr;
43385846 909 struct simple_xattr *new_xattr = NULL;
38f38657
AR
910 int err = 0;
911
912 /* value == NULL means remove */
913 if (value) {
914 new_xattr = simple_xattr_alloc(value, size);
915 if (!new_xattr)
916 return -ENOMEM;
917
918 new_xattr->name = kstrdup(name, GFP_KERNEL);
919 if (!new_xattr->name) {
920 kfree(new_xattr);
921 return -ENOMEM;
922 }
923 }
924
925 spin_lock(&xattrs->lock);
926 list_for_each_entry(xattr, &xattrs->head, list) {
927 if (!strcmp(name, xattr->name)) {
928 if (flags & XATTR_CREATE) {
929 xattr = new_xattr;
930 err = -EEXIST;
931 } else if (new_xattr) {
932 list_replace(&xattr->list, &new_xattr->list);
933 } else {
934 list_del(&xattr->list);
935 }
936 goto out;
937 }
938 }
939 if (flags & XATTR_REPLACE) {
940 xattr = new_xattr;
941 err = -ENODATA;
942 } else {
943 list_add(&new_xattr->list, &xattrs->head);
944 xattr = NULL;
945 }
946out:
947 spin_unlock(&xattrs->lock);
948 if (xattr) {
949 kfree(xattr->name);
950 kfree(xattr);
951 }
952 return err;
953
954}
955
38f38657
AR
956static bool xattr_is_trusted(const char *name)
957{
958 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
959}
960
786534b9
AG
961static int xattr_list_one(char **buffer, ssize_t *remaining_size,
962 const char *name)
963{
964 size_t len = strlen(name) + 1;
965 if (*buffer) {
966 if (*remaining_size < len)
967 return -ERANGE;
968 memcpy(*buffer, name, len);
969 *buffer += len;
970 }
971 *remaining_size -= len;
972 return 0;
973}
974
38f38657
AR
975/*
976 * xattr LIST operation for in-memory/pseudo filesystems
977 */
786534b9
AG
978ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
979 char *buffer, size_t size)
38f38657
AR
980{
981 bool trusted = capable(CAP_SYS_ADMIN);
982 struct simple_xattr *xattr;
786534b9 983 ssize_t remaining_size = size;
0e9a7da5 984 int err = 0;
786534b9
AG
985
986#ifdef CONFIG_FS_POSIX_ACL
987 if (inode->i_acl) {
988 err = xattr_list_one(&buffer, &remaining_size,
989 XATTR_NAME_POSIX_ACL_ACCESS);
990 if (err)
991 return err;
992 }
993 if (inode->i_default_acl) {
994 err = xattr_list_one(&buffer, &remaining_size,
995 XATTR_NAME_POSIX_ACL_DEFAULT);
996 if (err)
997 return err;
998 }
999#endif
38f38657
AR
1000
1001 spin_lock(&xattrs->lock);
1002 list_for_each_entry(xattr, &xattrs->head, list) {
38f38657
AR
1003 /* skip "trusted." attributes for unprivileged callers */
1004 if (!trusted && xattr_is_trusted(xattr->name))
1005 continue;
1006
786534b9
AG
1007 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
1008 if (err)
0e9a7da5 1009 break;
38f38657
AR
1010 }
1011 spin_unlock(&xattrs->lock);
1012
0e9a7da5 1013 return err ? err : size - remaining_size;
38f38657
AR
1014}
1015
4895768b
AR
1016/*
1017 * Adds an extended attribute to the list
1018 */
38f38657
AR
1019void simple_xattr_list_add(struct simple_xattrs *xattrs,
1020 struct simple_xattr *new_xattr)
1021{
1022 spin_lock(&xattrs->lock);
1023 list_add(&new_xattr->list, &xattrs->head);
1024 spin_unlock(&xattrs->lock);
1025}