blob: d6dfd247bb2f4425fdfbd9c57b892a07c3922847 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/file.h>
13#include <linux/xattr.h>
Dave Hansen18f335a2008-02-15 14:37:38 -080014#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/namei.h>
16#include <linux/security.h>
Mimi Zoharc7b87de2011-03-09 14:39:18 -050017#include <linux/evm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/syscalls.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050019#include <linux/export.h>
Robert Love0eeca282005-07-12 17:06:03 -040020#include <linux/fsnotify.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000021#include <linux/audit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/uaccess.h>
23
Christoph Hellwig5be196e2006-01-09 20:51:55 -080024
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080025/*
26 * Check permissions for extended attribute access. This is a bit complicated
27 * because different namespaces have very different rules.
28 */
29static int
30xattr_permission(struct inode *inode, const char *name, int mask)
31{
32 /*
33 * We can never set or remove an extended attribute on a read-only
34 * filesystem or on an immutable / append-only inode.
35 */
36 if (mask & MAY_WRITE) {
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080037 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
38 return -EPERM;
39 }
40
41 /*
42 * No restriction for security.* and system.* from the VFS. Decision
43 * on these is left to the underlying filesystem / security module.
44 */
45 if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) ||
46 !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
47 return 0;
48
49 /*
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020050 * The trusted.* namespace can only be accessed by privileged users.
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080051 */
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020052 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN)) {
53 if (!capable(CAP_SYS_ADMIN))
54 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
55 return 0;
56 }
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080057
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020058 /*
59 * In the user.* namespace, only regular files and directories can have
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -080060 * extended attributes. For sticky directories, only the owner and
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020061 * privileged users can write attributes.
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -080062 */
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080063 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -080064 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020065 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -080066 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
Serge E. Hallyn2e149672011-03-23 16:43:26 -070067 (mask & MAY_WRITE) && !inode_owner_or_capable(inode))
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080068 return -EPERM;
69 }
70
Al Virof419a2e2008-07-22 00:07:17 -040071 return inode_permission(inode, mask);
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080072}
73
David P. Quigleyb1ab7e42009-09-03 14:25:56 -040074/**
75 * __vfs_setxattr_noperm - perform setxattr operation without performing
76 * permission checks.
77 *
78 * @dentry - object to perform setxattr on
79 * @name - xattr name to set
80 * @value - value to set @name to
81 * @size - size of @value
82 * @flags - flags to pass into filesystem operations
83 *
84 * returns the result of the internal setxattr or setsecurity operations.
85 *
86 * This function requires the caller to lock the inode's i_mutex before it
87 * is executed. It also assumes that the caller will make the appropriate
88 * permission checks.
89 */
90int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
91 const void *value, size_t size, int flags)
Christoph Hellwig5be196e2006-01-09 20:51:55 -080092{
93 struct inode *inode = dentry->d_inode;
David P. Quigleyb1ab7e42009-09-03 14:25:56 -040094 int error = -EOPNOTSUPP;
Andi Kleen69b45732011-05-28 08:25:51 -070095 int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
96 XATTR_SECURITY_PREFIX_LEN);
Christoph Hellwig5be196e2006-01-09 20:51:55 -080097
Andi Kleen69b45732011-05-28 08:25:51 -070098 if (issec)
99 inode->i_flags &= ~S_NOSEC;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800100 if (inode->i_op->setxattr) {
101 error = inode->i_op->setxattr(dentry, name, value, size, flags);
102 if (!error) {
103 fsnotify_xattr(dentry);
104 security_inode_post_setxattr(dentry, name, value,
105 size, flags);
106 }
Andi Kleen69b45732011-05-28 08:25:51 -0700107 } else if (issec) {
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800108 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800109 error = security_inode_setsecurity(inode, suffix, value,
110 size, flags);
111 if (!error)
112 fsnotify_xattr(dentry);
113 }
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400114
115 return error;
116}
117
118
119int
120vfs_setxattr(struct dentry *dentry, const char *name, const void *value,
121 size_t size, int flags)
122{
123 struct inode *inode = dentry->d_inode;
124 int error;
125
126 error = xattr_permission(inode, name, MAY_WRITE);
127 if (error)
128 return error;
129
130 mutex_lock(&inode->i_mutex);
131 error = security_inode_setxattr(dentry, name, value, size, flags);
132 if (error)
133 goto out;
134
135 error = __vfs_setxattr_noperm(dentry, name, value, size, flags);
136
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800137out:
138 mutex_unlock(&inode->i_mutex);
139 return error;
140}
141EXPORT_SYMBOL_GPL(vfs_setxattr);
142
143ssize_t
David P. Quigley42492592008-02-04 22:29:39 -0800144xattr_getsecurity(struct inode *inode, const char *name, void *value,
145 size_t size)
146{
147 void *buffer = NULL;
148 ssize_t len;
149
150 if (!value || !size) {
151 len = security_inode_getsecurity(inode, name, &buffer, false);
152 goto out_noalloc;
153 }
154
155 len = security_inode_getsecurity(inode, name, &buffer, true);
156 if (len < 0)
157 return len;
158 if (size < len) {
159 len = -ERANGE;
160 goto out;
161 }
162 memcpy(value, buffer, len);
163out:
164 security_release_secctx(buffer, len);
165out_noalloc:
166 return len;
167}
168EXPORT_SYMBOL_GPL(xattr_getsecurity);
169
Mimi Zohar1601fba2011-03-09 14:23:34 -0500170/*
171 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
172 *
173 * Allocate memory, if not already allocated, or re-allocate correct size,
174 * before retrieving the extended attribute.
175 *
176 * Returns the result of alloc, if failed, or the getxattr operation.
177 */
178ssize_t
179vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
180 size_t xattr_size, gfp_t flags)
181{
182 struct inode *inode = dentry->d_inode;
183 char *value = *xattr_value;
184 int error;
185
186 error = xattr_permission(inode, name, MAY_READ);
187 if (error)
188 return error;
189
190 if (!inode->i_op->getxattr)
191 return -EOPNOTSUPP;
192
193 error = inode->i_op->getxattr(dentry, name, NULL, 0);
194 if (error < 0)
195 return error;
196
197 if (!value || (error > xattr_size)) {
198 value = krealloc(*xattr_value, error + 1, flags);
199 if (!value)
200 return -ENOMEM;
201 memset(value, 0, error + 1);
202 }
203
204 error = inode->i_op->getxattr(dentry, name, value, error);
205 *xattr_value = value;
206 return error;
207}
208
209/* Compare an extended attribute value with the given value */
210int vfs_xattr_cmp(struct dentry *dentry, const char *xattr_name,
211 const char *value, size_t size, gfp_t flags)
212{
213 char *xattr_value = NULL;
214 int rc;
215
216 rc = vfs_getxattr_alloc(dentry, xattr_name, &xattr_value, 0, flags);
217 if (rc < 0)
218 return rc;
219
220 if ((rc != size) || (memcmp(xattr_value, value, rc) != 0))
221 rc = -EINVAL;
222 else
223 rc = 0;
224 kfree(xattr_value);
225 return rc;
226}
227
David P. Quigley42492592008-02-04 22:29:39 -0800228ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700229vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800230{
231 struct inode *inode = dentry->d_inode;
232 int error;
233
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800234 error = xattr_permission(inode, name, MAY_READ);
235 if (error)
236 return error;
237
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800238 error = security_inode_getxattr(dentry, name);
239 if (error)
240 return error;
241
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800242 if (!strncmp(name, XATTR_SECURITY_PREFIX,
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800243 XATTR_SECURITY_PREFIX_LEN)) {
244 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
David P. Quigley42492592008-02-04 22:29:39 -0800245 int ret = xattr_getsecurity(inode, suffix, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800246 /*
247 * Only overwrite the return value if a security module
248 * is actually active.
249 */
David P. Quigley4bea5802008-02-04 22:29:40 -0800250 if (ret == -EOPNOTSUPP)
251 goto nolsm;
252 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800253 }
David P. Quigley4bea5802008-02-04 22:29:40 -0800254nolsm:
255 if (inode->i_op->getxattr)
256 error = inode->i_op->getxattr(dentry, name, value, size);
257 else
258 error = -EOPNOTSUPP;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800259
260 return error;
261}
262EXPORT_SYMBOL_GPL(vfs_getxattr);
263
Bill Nottingham659564c2006-10-09 16:10:48 -0400264ssize_t
265vfs_listxattr(struct dentry *d, char *list, size_t size)
266{
267 ssize_t error;
268
269 error = security_inode_listxattr(d);
270 if (error)
271 return error;
272 error = -EOPNOTSUPP;
Al Viroacfa4382008-12-04 10:06:33 -0500273 if (d->d_inode->i_op->listxattr) {
Bill Nottingham659564c2006-10-09 16:10:48 -0400274 error = d->d_inode->i_op->listxattr(d, list, size);
275 } else {
276 error = security_inode_listsecurity(d->d_inode, list, size);
277 if (size && error > size)
278 error = -ERANGE;
279 }
280 return error;
281}
282EXPORT_SYMBOL_GPL(vfs_listxattr);
283
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800284int
David Howells8f0cfa52008-04-29 00:59:41 -0700285vfs_removexattr(struct dentry *dentry, const char *name)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800286{
287 struct inode *inode = dentry->d_inode;
288 int error;
289
290 if (!inode->i_op->removexattr)
291 return -EOPNOTSUPP;
292
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800293 error = xattr_permission(inode, name, MAY_WRITE);
294 if (error)
295 return error;
296
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800297 error = security_inode_removexattr(dentry, name);
298 if (error)
299 return error;
300
301 mutex_lock(&inode->i_mutex);
302 error = inode->i_op->removexattr(dentry, name);
303 mutex_unlock(&inode->i_mutex);
304
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500305 if (!error) {
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800306 fsnotify_xattr(dentry);
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500307 evm_inode_post_removexattr(dentry, name);
308 }
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800309 return error;
310}
311EXPORT_SYMBOL_GPL(vfs_removexattr);
312
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/*
315 * Extended attribute SET operations
316 */
317static long
David Howells8f0cfa52008-04-29 00:59:41 -0700318setxattr(struct dentry *d, const char __user *name, const void __user *value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 size_t size, int flags)
320{
321 int error;
322 void *kvalue = NULL;
323 char kname[XATTR_NAME_MAX + 1];
324
325 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
326 return -EINVAL;
327
328 error = strncpy_from_user(kname, name, sizeof(kname));
329 if (error == 0 || error == sizeof(kname))
330 error = -ERANGE;
331 if (error < 0)
332 return error;
333
334 if (size) {
335 if (size > XATTR_SIZE_MAX)
336 return -E2BIG;
Li Zefan3939fcd2009-04-08 15:06:12 +0800337 kvalue = memdup_user(value, size);
338 if (IS_ERR(kvalue))
339 return PTR_ERR(kvalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800342 error = vfs_setxattr(d, kname, kvalue, size, flags);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800343 kfree(kvalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return error;
345}
346
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100347SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
348 const char __user *, name, const void __user *, value,
349 size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Al Viro2d8f3032008-07-22 09:59:21 -0400351 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int error;
353
Al Viro2d8f3032008-07-22 09:59:21 -0400354 error = user_path(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (error)
356 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400357 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800358 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400359 error = setxattr(path.dentry, name, value, size, flags);
360 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800361 }
Al Viro2d8f3032008-07-22 09:59:21 -0400362 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return error;
364}
365
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100366SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
367 const char __user *, name, const void __user *, value,
368 size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Al Viro2d8f3032008-07-22 09:59:21 -0400370 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 int error;
372
Al Viro2d8f3032008-07-22 09:59:21 -0400373 error = user_lpath(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (error)
375 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400376 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800377 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400378 error = setxattr(path.dentry, name, value, size, flags);
379 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800380 }
Al Viro2d8f3032008-07-22 09:59:21 -0400381 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return error;
383}
384
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100385SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
386 const void __user *,value, size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 struct file *f;
Amy Griffis73241cc2005-11-03 16:00:25 +0000389 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int error = -EBADF;
391
392 f = fget(fd);
393 if (!f)
394 return error;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800395 dentry = f->f_path.dentry;
Al Viro5a190ae2007-06-07 12:19:32 -0400396 audit_inode(NULL, dentry);
npiggin@suse.de96029c42009-04-26 20:25:55 +1000397 error = mnt_want_write_file(f);
Dave Hansen18f335a2008-02-15 14:37:38 -0800398 if (!error) {
399 error = setxattr(dentry, name, value, size, flags);
Al Viro2a79f172011-12-09 08:06:57 -0500400 mnt_drop_write_file(f);
Dave Hansen18f335a2008-02-15 14:37:38 -0800401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 fput(f);
403 return error;
404}
405
406/*
407 * Extended attribute GET operations
408 */
409static ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700410getxattr(struct dentry *d, const char __user *name, void __user *value,
411 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 ssize_t error;
414 void *kvalue = NULL;
415 char kname[XATTR_NAME_MAX + 1];
416
417 error = strncpy_from_user(kname, name, sizeof(kname));
418 if (error == 0 || error == sizeof(kname))
419 error = -ERANGE;
420 if (error < 0)
421 return error;
422
423 if (size) {
424 if (size > XATTR_SIZE_MAX)
425 size = XATTR_SIZE_MAX;
James Morrisd381d8a2005-10-30 14:59:22 -0800426 kvalue = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (!kvalue)
428 return -ENOMEM;
429 }
430
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800431 error = vfs_getxattr(d, kname, kvalue, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700432 if (error > 0) {
433 if (size && copy_to_user(value, kvalue, error))
434 error = -EFAULT;
435 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
436 /* The file system tried to returned a value bigger
437 than XATTR_SIZE_MAX bytes. Not possible. */
438 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800440 kfree(kvalue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return error;
442}
443
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100444SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
445 const char __user *, name, void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Al Viro2d8f3032008-07-22 09:59:21 -0400447 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 ssize_t error;
449
Al Viro2d8f3032008-07-22 09:59:21 -0400450 error = user_path(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (error)
452 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400453 error = getxattr(path.dentry, name, value, size);
454 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return error;
456}
457
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100458SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
459 const char __user *, name, void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Al Viro2d8f3032008-07-22 09:59:21 -0400461 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 ssize_t error;
463
Al Viro2d8f3032008-07-22 09:59:21 -0400464 error = user_lpath(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (error)
466 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400467 error = getxattr(path.dentry, name, value, size);
468 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return error;
470}
471
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100472SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
473 void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct file *f;
476 ssize_t error = -EBADF;
477
478 f = fget(fd);
479 if (!f)
480 return error;
Al Viro5a190ae2007-06-07 12:19:32 -0400481 audit_inode(NULL, f->f_path.dentry);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800482 error = getxattr(f->f_path.dentry, name, value, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 fput(f);
484 return error;
485}
486
487/*
488 * Extended attribute LIST operations
489 */
490static ssize_t
491listxattr(struct dentry *d, char __user *list, size_t size)
492{
493 ssize_t error;
494 char *klist = NULL;
495
496 if (size) {
497 if (size > XATTR_LIST_MAX)
498 size = XATTR_LIST_MAX;
499 klist = kmalloc(size, GFP_KERNEL);
500 if (!klist)
501 return -ENOMEM;
502 }
503
Bill Nottingham659564c2006-10-09 16:10:48 -0400504 error = vfs_listxattr(d, klist, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700505 if (error > 0) {
506 if (size && copy_to_user(list, klist, error))
507 error = -EFAULT;
508 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
509 /* The file system tried to returned a list bigger
510 than XATTR_LIST_MAX bytes. Not possible. */
511 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800513 kfree(klist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return error;
515}
516
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100517SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
518 size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Al Viro2d8f3032008-07-22 09:59:21 -0400520 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 ssize_t error;
522
Al Viro2d8f3032008-07-22 09:59:21 -0400523 error = user_path(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (error)
525 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400526 error = listxattr(path.dentry, list, size);
527 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return error;
529}
530
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100531SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
532 size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Al Viro2d8f3032008-07-22 09:59:21 -0400534 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 ssize_t error;
536
Al Viro2d8f3032008-07-22 09:59:21 -0400537 error = user_lpath(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (error)
539 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400540 error = listxattr(path.dentry, list, size);
541 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return error;
543}
544
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100545SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 struct file *f;
548 ssize_t error = -EBADF;
549
550 f = fget(fd);
551 if (!f)
552 return error;
Al Viro5a190ae2007-06-07 12:19:32 -0400553 audit_inode(NULL, f->f_path.dentry);
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800554 error = listxattr(f->f_path.dentry, list, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 fput(f);
556 return error;
557}
558
559/*
560 * Extended attribute REMOVE operations
561 */
562static long
David Howells8f0cfa52008-04-29 00:59:41 -0700563removexattr(struct dentry *d, const char __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 int error;
566 char kname[XATTR_NAME_MAX + 1];
567
568 error = strncpy_from_user(kname, name, sizeof(kname));
569 if (error == 0 || error == sizeof(kname))
570 error = -ERANGE;
571 if (error < 0)
572 return error;
573
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800574 return vfs_removexattr(d, kname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100577SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
578 const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Al Viro2d8f3032008-07-22 09:59:21 -0400580 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int error;
582
Al Viro2d8f3032008-07-22 09:59:21 -0400583 error = user_path(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (error)
585 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400586 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800587 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400588 error = removexattr(path.dentry, name);
589 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800590 }
Al Viro2d8f3032008-07-22 09:59:21 -0400591 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return error;
593}
594
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100595SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
596 const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Al Viro2d8f3032008-07-22 09:59:21 -0400598 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 int error;
600
Al Viro2d8f3032008-07-22 09:59:21 -0400601 error = user_lpath(pathname, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (error)
603 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400604 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800605 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400606 error = removexattr(path.dentry, name);
607 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800608 }
Al Viro2d8f3032008-07-22 09:59:21 -0400609 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return error;
611}
612
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100613SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 struct file *f;
Amy Griffis73241cc2005-11-03 16:00:25 +0000616 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 int error = -EBADF;
618
619 f = fget(fd);
620 if (!f)
621 return error;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800622 dentry = f->f_path.dentry;
Al Viro5a190ae2007-06-07 12:19:32 -0400623 audit_inode(NULL, dentry);
npiggin@suse.de96029c42009-04-26 20:25:55 +1000624 error = mnt_want_write_file(f);
Dave Hansen18f335a2008-02-15 14:37:38 -0800625 if (!error) {
626 error = removexattr(dentry, name);
Al Viro2a79f172011-12-09 08:06:57 -0500627 mnt_drop_write_file(f);
Dave Hansen18f335a2008-02-15 14:37:38 -0800628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 fput(f);
630 return error;
631}
632
633
634static const char *
635strcmp_prefix(const char *a, const char *a_prefix)
636{
637 while (*a_prefix && *a == *a_prefix) {
638 a++;
639 a_prefix++;
640 }
641 return *a_prefix ? NULL : a;
642}
643
644/*
645 * In order to implement different sets of xattr operations for each xattr
646 * prefix with the generic xattr API, a filesystem should create a
647 * null-terminated array of struct xattr_handler (one for each prefix) and
648 * hang a pointer to it off of the s_xattr field of the superblock.
649 *
650 * The generic_fooxattr() functions will use this list to dispatch xattr
651 * operations to the correct xattr_handler.
652 */
653#define for_each_xattr_handler(handlers, handler) \
654 for ((handler) = *(handlers)++; \
655 (handler) != NULL; \
656 (handler) = *(handlers)++)
657
658/*
659 * Find the xattr_handler with the matching prefix.
660 */
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700661static const struct xattr_handler *
662xattr_resolve_name(const struct xattr_handler **handlers, const char **name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700664 const struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 if (!*name)
667 return NULL;
668
669 for_each_xattr_handler(handlers, handler) {
670 const char *n = strcmp_prefix(*name, handler->prefix);
671 if (n) {
672 *name = n;
673 break;
674 }
675 }
676 return handler;
677}
678
679/*
680 * Find the handler for the prefix and dispatch its get() operation.
681 */
682ssize_t
683generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size)
684{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700685 const struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Christoph Hellwig431547b2009-11-13 09:52:56 +0000687 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (!handler)
689 return -EOPNOTSUPP;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000690 return handler->get(dentry, name, buffer, size, handler->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693/*
694 * Combine the results of the list() operation from every xattr_handler in the
695 * list.
696 */
697ssize_t
698generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
699{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700700 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 unsigned int size = 0;
702
703 if (!buffer) {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000704 for_each_xattr_handler(handlers, handler) {
705 size += handler->list(dentry, NULL, 0, NULL, 0,
706 handler->flags);
707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 } else {
709 char *buf = buffer;
710
711 for_each_xattr_handler(handlers, handler) {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000712 size = handler->list(dentry, buf, buffer_size,
713 NULL, 0, handler->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (size > buffer_size)
715 return -ERANGE;
716 buf += size;
717 buffer_size -= size;
718 }
719 size = buf - buffer;
720 }
721 return size;
722}
723
724/*
725 * Find the handler for the prefix and dispatch its set() operation.
726 */
727int
728generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags)
729{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700730 const struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 if (size == 0)
733 value = ""; /* empty EA, do not remove */
Christoph Hellwig431547b2009-11-13 09:52:56 +0000734 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (!handler)
736 return -EOPNOTSUPP;
Jan Karadf7e1302011-04-20 20:30:40 +0200737 return handler->set(dentry, name, value, size, flags, handler->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
740/*
741 * Find the handler for the prefix and dispatch its set() operation to remove
742 * any associated extended attribute.
743 */
744int
745generic_removexattr(struct dentry *dentry, const char *name)
746{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700747 const struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Christoph Hellwig431547b2009-11-13 09:52:56 +0000749 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (!handler)
751 return -EOPNOTSUPP;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000752 return handler->set(dentry, name, NULL, 0,
753 XATTR_REPLACE, handler->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
756EXPORT_SYMBOL(generic_getxattr);
757EXPORT_SYMBOL(generic_listxattr);
758EXPORT_SYMBOL(generic_setxattr);
759EXPORT_SYMBOL(generic_removexattr);