[CVE-2009-0029] System call wrappers part 12
[linux-2.6-block.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>
17#include <linux/syscalls.h>
18#include <linux/module.h>
0eeca283 19#include <linux/fsnotify.h>
73241ccc 20#include <linux/audit.h>
1da177e4
LT
21#include <asm/uaccess.h>
22
5be196e5 23
e0ad7b07 24/*
25 * Check permissions for extended attribute access. This is a bit complicated
26 * because different namespaces have very different rules.
27 */
28static int
29xattr_permission(struct inode *inode, const char *name, int mask)
30{
31 /*
32 * We can never set or remove an extended attribute on a read-only
33 * filesystem or on an immutable / append-only inode.
34 */
35 if (mask & MAY_WRITE) {
e0ad7b07 36 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
37 return -EPERM;
38 }
39
40 /*
41 * No restriction for security.* and system.* from the VFS. Decision
42 * on these is left to the underlying filesystem / security module.
43 */
44 if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) ||
45 !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
46 return 0;
47
48 /*
f1f2d871 49 * The trusted.* namespace can only be accessed by a privileged user.
e0ad7b07 50 */
51 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN))
52 return (capable(CAP_SYS_ADMIN) ? 0 : -EPERM);
53
f1f2d871
AG
54 /* In user.* namespace, only regular files and directories can have
55 * extended attributes. For sticky directories, only the owner and
56 * privileged user can write attributes.
57 */
e0ad7b07 58 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
f1f2d871
AG
59 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
60 return -EPERM;
61 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
3bd858ab 62 (mask & MAY_WRITE) && !is_owner_or_cap(inode))
e0ad7b07 63 return -EPERM;
64 }
65
f419a2e3 66 return inode_permission(inode, mask);
e0ad7b07 67}
68
5be196e5 69int
8f0cfa52 70vfs_setxattr(struct dentry *dentry, const char *name, const void *value,
5be196e5
CH
71 size_t size, int flags)
72{
73 struct inode *inode = dentry->d_inode;
74 int error;
75
e0ad7b07 76 error = xattr_permission(inode, name, MAY_WRITE);
77 if (error)
78 return error;
79
5be196e5
CH
80 mutex_lock(&inode->i_mutex);
81 error = security_inode_setxattr(dentry, name, value, size, flags);
82 if (error)
83 goto out;
84 error = -EOPNOTSUPP;
85 if (inode->i_op->setxattr) {
86 error = inode->i_op->setxattr(dentry, name, value, size, flags);
87 if (!error) {
88 fsnotify_xattr(dentry);
89 security_inode_post_setxattr(dentry, name, value,
90 size, flags);
91 }
92 } else if (!strncmp(name, XATTR_SECURITY_PREFIX,
e0ad7b07 93 XATTR_SECURITY_PREFIX_LEN)) {
94 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
5be196e5
CH
95 error = security_inode_setsecurity(inode, suffix, value,
96 size, flags);
97 if (!error)
98 fsnotify_xattr(dentry);
99 }
100out:
101 mutex_unlock(&inode->i_mutex);
102 return error;
103}
104EXPORT_SYMBOL_GPL(vfs_setxattr);
105
42492594
DQ
106ssize_t
107xattr_getsecurity(struct inode *inode, const char *name, void *value,
108 size_t size)
109{
110 void *buffer = NULL;
111 ssize_t len;
112
113 if (!value || !size) {
114 len = security_inode_getsecurity(inode, name, &buffer, false);
115 goto out_noalloc;
116 }
117
118 len = security_inode_getsecurity(inode, name, &buffer, true);
119 if (len < 0)
120 return len;
121 if (size < len) {
122 len = -ERANGE;
123 goto out;
124 }
125 memcpy(value, buffer, len);
126out:
127 security_release_secctx(buffer, len);
128out_noalloc:
129 return len;
130}
131EXPORT_SYMBOL_GPL(xattr_getsecurity);
132
5be196e5 133ssize_t
8f0cfa52 134vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
5be196e5
CH
135{
136 struct inode *inode = dentry->d_inode;
137 int error;
138
e0ad7b07 139 error = xattr_permission(inode, name, MAY_READ);
140 if (error)
141 return error;
142
5be196e5
CH
143 error = security_inode_getxattr(dentry, name);
144 if (error)
145 return error;
146
5be196e5 147 if (!strncmp(name, XATTR_SECURITY_PREFIX,
e0ad7b07 148 XATTR_SECURITY_PREFIX_LEN)) {
149 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
42492594 150 int ret = xattr_getsecurity(inode, suffix, value, size);
5be196e5
CH
151 /*
152 * Only overwrite the return value if a security module
153 * is actually active.
154 */
4bea5805
DQ
155 if (ret == -EOPNOTSUPP)
156 goto nolsm;
157 return ret;
5be196e5 158 }
4bea5805
DQ
159nolsm:
160 if (inode->i_op->getxattr)
161 error = inode->i_op->getxattr(dentry, name, value, size);
162 else
163 error = -EOPNOTSUPP;
5be196e5
CH
164
165 return error;
166}
167EXPORT_SYMBOL_GPL(vfs_getxattr);
168
659564c8
BN
169ssize_t
170vfs_listxattr(struct dentry *d, char *list, size_t size)
171{
172 ssize_t error;
173
174 error = security_inode_listxattr(d);
175 if (error)
176 return error;
177 error = -EOPNOTSUPP;
acfa4380 178 if (d->d_inode->i_op->listxattr) {
659564c8
BN
179 error = d->d_inode->i_op->listxattr(d, list, size);
180 } else {
181 error = security_inode_listsecurity(d->d_inode, list, size);
182 if (size && error > size)
183 error = -ERANGE;
184 }
185 return error;
186}
187EXPORT_SYMBOL_GPL(vfs_listxattr);
188
5be196e5 189int
8f0cfa52 190vfs_removexattr(struct dentry *dentry, const char *name)
5be196e5
CH
191{
192 struct inode *inode = dentry->d_inode;
193 int error;
194
195 if (!inode->i_op->removexattr)
196 return -EOPNOTSUPP;
197
e0ad7b07 198 error = xattr_permission(inode, name, MAY_WRITE);
199 if (error)
200 return error;
201
5be196e5
CH
202 error = security_inode_removexattr(dentry, name);
203 if (error)
204 return error;
205
206 mutex_lock(&inode->i_mutex);
207 error = inode->i_op->removexattr(dentry, name);
208 mutex_unlock(&inode->i_mutex);
209
210 if (!error)
211 fsnotify_xattr(dentry);
212 return error;
213}
214EXPORT_SYMBOL_GPL(vfs_removexattr);
215
216
1da177e4
LT
217/*
218 * Extended attribute SET operations
219 */
220static long
8f0cfa52 221setxattr(struct dentry *d, const char __user *name, const void __user *value,
1da177e4
LT
222 size_t size, int flags)
223{
224 int error;
225 void *kvalue = NULL;
226 char kname[XATTR_NAME_MAX + 1];
227
228 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
229 return -EINVAL;
230
231 error = strncpy_from_user(kname, name, sizeof(kname));
232 if (error == 0 || error == sizeof(kname))
233 error = -ERANGE;
234 if (error < 0)
235 return error;
236
237 if (size) {
238 if (size > XATTR_SIZE_MAX)
239 return -E2BIG;
240 kvalue = kmalloc(size, GFP_KERNEL);
241 if (!kvalue)
242 return -ENOMEM;
243 if (copy_from_user(kvalue, value, size)) {
244 kfree(kvalue);
245 return -EFAULT;
246 }
247 }
248
5be196e5 249 error = vfs_setxattr(d, kname, kvalue, size, flags);
f99d49ad 250 kfree(kvalue);
1da177e4
LT
251 return error;
252}
253
64fd1de3
HC
254SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
255 const char __user *, name, const void __user *, value,
256 size_t, size, int, flags)
1da177e4 257{
2d8f3038 258 struct path path;
1da177e4
LT
259 int error;
260
2d8f3038 261 error = user_path(pathname, &path);
1da177e4
LT
262 if (error)
263 return error;
2d8f3038 264 error = mnt_want_write(path.mnt);
18f335af 265 if (!error) {
2d8f3038
AV
266 error = setxattr(path.dentry, name, value, size, flags);
267 mnt_drop_write(path.mnt);
18f335af 268 }
2d8f3038 269 path_put(&path);
1da177e4
LT
270 return error;
271}
272
64fd1de3
HC
273SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
274 const char __user *, name, const void __user *, value,
275 size_t, size, int, flags)
1da177e4 276{
2d8f3038 277 struct path path;
1da177e4
LT
278 int error;
279
2d8f3038 280 error = user_lpath(pathname, &path);
1da177e4
LT
281 if (error)
282 return error;
2d8f3038 283 error = mnt_want_write(path.mnt);
18f335af 284 if (!error) {
2d8f3038
AV
285 error = setxattr(path.dentry, name, value, size, flags);
286 mnt_drop_write(path.mnt);
18f335af 287 }
2d8f3038 288 path_put(&path);
1da177e4
LT
289 return error;
290}
291
64fd1de3
HC
292SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
293 const void __user *,value, size_t, size, int, flags)
1da177e4
LT
294{
295 struct file *f;
73241ccc 296 struct dentry *dentry;
1da177e4
LT
297 int error = -EBADF;
298
299 f = fget(fd);
300 if (!f)
301 return error;
0f7fc9e4 302 dentry = f->f_path.dentry;
5a190ae6 303 audit_inode(NULL, dentry);
18f335af
DH
304 error = mnt_want_write(f->f_path.mnt);
305 if (!error) {
306 error = setxattr(dentry, name, value, size, flags);
307 mnt_drop_write(f->f_path.mnt);
308 }
1da177e4
LT
309 fput(f);
310 return error;
311}
312
313/*
314 * Extended attribute GET operations
315 */
316static ssize_t
8f0cfa52
DH
317getxattr(struct dentry *d, const char __user *name, void __user *value,
318 size_t size)
1da177e4
LT
319{
320 ssize_t error;
321 void *kvalue = NULL;
322 char kname[XATTR_NAME_MAX + 1];
323
324 error = strncpy_from_user(kname, name, sizeof(kname));
325 if (error == 0 || error == sizeof(kname))
326 error = -ERANGE;
327 if (error < 0)
328 return error;
329
330 if (size) {
331 if (size > XATTR_SIZE_MAX)
332 size = XATTR_SIZE_MAX;
d381d8a9 333 kvalue = kzalloc(size, GFP_KERNEL);
1da177e4
LT
334 if (!kvalue)
335 return -ENOMEM;
336 }
337
5be196e5 338 error = vfs_getxattr(d, kname, kvalue, size);
f549d6c1
SS
339 if (error > 0) {
340 if (size && copy_to_user(value, kvalue, error))
341 error = -EFAULT;
342 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
343 /* The file system tried to returned a value bigger
344 than XATTR_SIZE_MAX bytes. Not possible. */
345 error = -E2BIG;
1da177e4 346 }
f99d49ad 347 kfree(kvalue);
1da177e4
LT
348 return error;
349}
350
64fd1de3
HC
351SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
352 const char __user *, name, void __user *, value, size_t, size)
1da177e4 353{
2d8f3038 354 struct path path;
1da177e4
LT
355 ssize_t error;
356
2d8f3038 357 error = user_path(pathname, &path);
1da177e4
LT
358 if (error)
359 return error;
2d8f3038
AV
360 error = getxattr(path.dentry, name, value, size);
361 path_put(&path);
1da177e4
LT
362 return error;
363}
364
64fd1de3
HC
365SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
366 const char __user *, name, void __user *, value, size_t, size)
1da177e4 367{
2d8f3038 368 struct path path;
1da177e4
LT
369 ssize_t error;
370
2d8f3038 371 error = user_lpath(pathname, &path);
1da177e4
LT
372 if (error)
373 return error;
2d8f3038
AV
374 error = getxattr(path.dentry, name, value, size);
375 path_put(&path);
1da177e4
LT
376 return error;
377}
378
64fd1de3
HC
379SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
380 void __user *, value, size_t, size)
1da177e4
LT
381{
382 struct file *f;
383 ssize_t error = -EBADF;
384
385 f = fget(fd);
386 if (!f)
387 return error;
5a190ae6 388 audit_inode(NULL, f->f_path.dentry);
0f7fc9e4 389 error = getxattr(f->f_path.dentry, name, value, size);
1da177e4
LT
390 fput(f);
391 return error;
392}
393
394/*
395 * Extended attribute LIST operations
396 */
397static ssize_t
398listxattr(struct dentry *d, char __user *list, size_t size)
399{
400 ssize_t error;
401 char *klist = NULL;
402
403 if (size) {
404 if (size > XATTR_LIST_MAX)
405 size = XATTR_LIST_MAX;
406 klist = kmalloc(size, GFP_KERNEL);
407 if (!klist)
408 return -ENOMEM;
409 }
410
659564c8 411 error = vfs_listxattr(d, klist, size);
f549d6c1
SS
412 if (error > 0) {
413 if (size && copy_to_user(list, klist, error))
414 error = -EFAULT;
415 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
416 /* The file system tried to returned a list bigger
417 than XATTR_LIST_MAX bytes. Not possible. */
418 error = -E2BIG;
1da177e4 419 }
f99d49ad 420 kfree(klist);
1da177e4
LT
421 return error;
422}
423
64fd1de3
HC
424SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
425 size_t, size)
1da177e4 426{
2d8f3038 427 struct path path;
1da177e4
LT
428 ssize_t error;
429
2d8f3038 430 error = user_path(pathname, &path);
1da177e4
LT
431 if (error)
432 return error;
2d8f3038
AV
433 error = listxattr(path.dentry, list, size);
434 path_put(&path);
1da177e4
LT
435 return error;
436}
437
64fd1de3
HC
438SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
439 size_t, size)
1da177e4 440{
2d8f3038 441 struct path path;
1da177e4
LT
442 ssize_t error;
443
2d8f3038 444 error = user_lpath(pathname, &path);
1da177e4
LT
445 if (error)
446 return error;
2d8f3038
AV
447 error = listxattr(path.dentry, list, size);
448 path_put(&path);
1da177e4
LT
449 return error;
450}
451
64fd1de3 452SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
1da177e4
LT
453{
454 struct file *f;
455 ssize_t error = -EBADF;
456
457 f = fget(fd);
458 if (!f)
459 return error;
5a190ae6 460 audit_inode(NULL, f->f_path.dentry);
0f7fc9e4 461 error = listxattr(f->f_path.dentry, list, size);
1da177e4
LT
462 fput(f);
463 return error;
464}
465
466/*
467 * Extended attribute REMOVE operations
468 */
469static long
8f0cfa52 470removexattr(struct dentry *d, const char __user *name)
1da177e4
LT
471{
472 int error;
473 char kname[XATTR_NAME_MAX + 1];
474
475 error = strncpy_from_user(kname, name, sizeof(kname));
476 if (error == 0 || error == sizeof(kname))
477 error = -ERANGE;
478 if (error < 0)
479 return error;
480
5be196e5 481 return vfs_removexattr(d, kname);
1da177e4
LT
482}
483
64fd1de3
HC
484SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
485 const char __user *, name)
1da177e4 486{
2d8f3038 487 struct path path;
1da177e4
LT
488 int error;
489
2d8f3038 490 error = user_path(pathname, &path);
1da177e4
LT
491 if (error)
492 return error;
2d8f3038 493 error = mnt_want_write(path.mnt);
18f335af 494 if (!error) {
2d8f3038
AV
495 error = removexattr(path.dentry, name);
496 mnt_drop_write(path.mnt);
18f335af 497 }
2d8f3038 498 path_put(&path);
1da177e4
LT
499 return error;
500}
501
502asmlinkage long
2d8f3038 503sys_lremovexattr(const char __user *pathname, const char __user *name)
1da177e4 504{
2d8f3038 505 struct path path;
1da177e4
LT
506 int error;
507
2d8f3038 508 error = user_lpath(pathname, &path);
1da177e4
LT
509 if (error)
510 return error;
2d8f3038 511 error = mnt_want_write(path.mnt);
18f335af 512 if (!error) {
2d8f3038
AV
513 error = removexattr(path.dentry, name);
514 mnt_drop_write(path.mnt);
18f335af 515 }
2d8f3038 516 path_put(&path);
1da177e4
LT
517 return error;
518}
519
520asmlinkage long
8f0cfa52 521sys_fremovexattr(int fd, const char __user *name)
1da177e4
LT
522{
523 struct file *f;
73241ccc 524 struct dentry *dentry;
1da177e4
LT
525 int error = -EBADF;
526
527 f = fget(fd);
528 if (!f)
529 return error;
0f7fc9e4 530 dentry = f->f_path.dentry;
5a190ae6 531 audit_inode(NULL, dentry);
18f335af
DH
532 error = mnt_want_write(f->f_path.mnt);
533 if (!error) {
534 error = removexattr(dentry, name);
535 mnt_drop_write(f->f_path.mnt);
536 }
1da177e4
LT
537 fput(f);
538 return error;
539}
540
541
542static const char *
543strcmp_prefix(const char *a, const char *a_prefix)
544{
545 while (*a_prefix && *a == *a_prefix) {
546 a++;
547 a_prefix++;
548 }
549 return *a_prefix ? NULL : a;
550}
551
552/*
553 * In order to implement different sets of xattr operations for each xattr
554 * prefix with the generic xattr API, a filesystem should create a
555 * null-terminated array of struct xattr_handler (one for each prefix) and
556 * hang a pointer to it off of the s_xattr field of the superblock.
557 *
558 * The generic_fooxattr() functions will use this list to dispatch xattr
559 * operations to the correct xattr_handler.
560 */
561#define for_each_xattr_handler(handlers, handler) \
562 for ((handler) = *(handlers)++; \
563 (handler) != NULL; \
564 (handler) = *(handlers)++)
565
566/*
567 * Find the xattr_handler with the matching prefix.
568 */
569static struct xattr_handler *
570xattr_resolve_name(struct xattr_handler **handlers, const char **name)
571{
572 struct xattr_handler *handler;
573
574 if (!*name)
575 return NULL;
576
577 for_each_xattr_handler(handlers, handler) {
578 const char *n = strcmp_prefix(*name, handler->prefix);
579 if (n) {
580 *name = n;
581 break;
582 }
583 }
584 return handler;
585}
586
587/*
588 * Find the handler for the prefix and dispatch its get() operation.
589 */
590ssize_t
591generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size)
592{
593 struct xattr_handler *handler;
594 struct inode *inode = dentry->d_inode;
595
596 handler = xattr_resolve_name(inode->i_sb->s_xattr, &name);
597 if (!handler)
598 return -EOPNOTSUPP;
599 return handler->get(inode, name, buffer, size);
600}
601
602/*
603 * Combine the results of the list() operation from every xattr_handler in the
604 * list.
605 */
606ssize_t
607generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
608{
609 struct inode *inode = dentry->d_inode;
610 struct xattr_handler *handler, **handlers = inode->i_sb->s_xattr;
611 unsigned int size = 0;
612
613 if (!buffer) {
614 for_each_xattr_handler(handlers, handler)
615 size += handler->list(inode, NULL, 0, NULL, 0);
616 } else {
617 char *buf = buffer;
618
619 for_each_xattr_handler(handlers, handler) {
620 size = handler->list(inode, buf, buffer_size, NULL, 0);
621 if (size > buffer_size)
622 return -ERANGE;
623 buf += size;
624 buffer_size -= size;
625 }
626 size = buf - buffer;
627 }
628 return size;
629}
630
631/*
632 * Find the handler for the prefix and dispatch its set() operation.
633 */
634int
635generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags)
636{
637 struct xattr_handler *handler;
638 struct inode *inode = dentry->d_inode;
639
640 if (size == 0)
641 value = ""; /* empty EA, do not remove */
642 handler = xattr_resolve_name(inode->i_sb->s_xattr, &name);
643 if (!handler)
644 return -EOPNOTSUPP;
645 return handler->set(inode, name, value, size, flags);
646}
647
648/*
649 * Find the handler for the prefix and dispatch its set() operation to remove
650 * any associated extended attribute.
651 */
652int
653generic_removexattr(struct dentry *dentry, const char *name)
654{
655 struct xattr_handler *handler;
656 struct inode *inode = dentry->d_inode;
657
658 handler = xattr_resolve_name(inode->i_sb->s_xattr, &name);
659 if (!handler)
660 return -EOPNOTSUPP;
661 return handler->set(inode, name, NULL, 0, XATTR_REPLACE);
662}
663
664EXPORT_SYMBOL(generic_getxattr);
665EXPORT_SYMBOL(generic_listxattr);
666EXPORT_SYMBOL(generic_setxattr);
667EXPORT_SYMBOL(generic_removexattr);