4 Extended attribute handling.
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>
11 #include <linux/slab.h>
12 #include <linux/smp_lock.h>
13 #include <linux/file.h>
14 #include <linux/xattr.h>
15 #include <linux/namei.h>
16 #include <linux/security.h>
17 #include <linux/syscalls.h>
18 #include <linux/module.h>
19 #include <linux/fsnotify.h>
20 #include <asm/uaccess.h>
23 * Extended attribute SET operations
26 setxattr(struct dentry *d, char __user *name, void __user *value,
27 size_t size, int flags)
31 char kname[XATTR_NAME_MAX + 1];
33 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
36 error = strncpy_from_user(kname, name, sizeof(kname));
37 if (error == 0 || error == sizeof(kname))
43 if (size > XATTR_SIZE_MAX)
45 kvalue = kmalloc(size, GFP_KERNEL);
48 if (copy_from_user(kvalue, value, size)) {
54 down(&d->d_inode->i_sem);
55 error = security_inode_setxattr(d, kname, kvalue, size, flags);
59 if (d->d_inode->i_op && d->d_inode->i_op->setxattr) {
60 error = d->d_inode->i_op->setxattr(d, kname, kvalue,
64 security_inode_post_setxattr(d, kname, kvalue,
67 } else if (!strncmp(kname, XATTR_SECURITY_PREFIX,
68 sizeof XATTR_SECURITY_PREFIX - 1)) {
69 const char *suffix = kname + sizeof XATTR_SECURITY_PREFIX - 1;
70 error = security_inode_setsecurity(d->d_inode, suffix, kvalue,
76 up(&d->d_inode->i_sem);
83 sys_setxattr(char __user *path, char __user *name, void __user *value,
84 size_t size, int flags)
89 error = user_path_walk(path, &nd);
92 error = setxattr(nd.dentry, name, value, size, flags);
98 sys_lsetxattr(char __user *path, char __user *name, void __user *value,
99 size_t size, int flags)
104 error = user_path_walk_link(path, &nd);
107 error = setxattr(nd.dentry, name, value, size, flags);
113 sys_fsetxattr(int fd, char __user *name, void __user *value,
114 size_t size, int flags)
122 error = setxattr(f->f_dentry, name, value, size, flags);
128 * Extended attribute GET operations
131 getxattr(struct dentry *d, char __user *name, void __user *value, size_t size)
135 char kname[XATTR_NAME_MAX + 1];
137 error = strncpy_from_user(kname, name, sizeof(kname));
138 if (error == 0 || error == sizeof(kname))
144 if (size > XATTR_SIZE_MAX)
145 size = XATTR_SIZE_MAX;
146 kvalue = kmalloc(size, GFP_KERNEL);
151 error = security_inode_getxattr(d, kname);
155 if (d->d_inode->i_op && d->d_inode->i_op->getxattr)
156 error = d->d_inode->i_op->getxattr(d, kname, kvalue, size);
157 else if (!strncmp(kname, XATTR_SECURITY_PREFIX,
158 sizeof XATTR_SECURITY_PREFIX - 1)) {
159 const char *suffix = kname + sizeof XATTR_SECURITY_PREFIX - 1;
160 error = security_inode_getsecurity(d->d_inode, suffix, kvalue,
164 if (size && copy_to_user(value, kvalue, error))
166 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
167 /* The file system tried to returned a value bigger
168 than XATTR_SIZE_MAX bytes. Not possible. */
178 sys_getxattr(char __user *path, char __user *name, void __user *value,
184 error = user_path_walk(path, &nd);
187 error = getxattr(nd.dentry, name, value, size);
193 sys_lgetxattr(char __user *path, char __user *name, void __user *value,
199 error = user_path_walk_link(path, &nd);
202 error = getxattr(nd.dentry, name, value, size);
208 sys_fgetxattr(int fd, char __user *name, void __user *value, size_t size)
211 ssize_t error = -EBADF;
216 error = getxattr(f->f_dentry, name, value, size);
222 * Extended attribute LIST operations
225 listxattr(struct dentry *d, char __user *list, size_t size)
231 if (size > XATTR_LIST_MAX)
232 size = XATTR_LIST_MAX;
233 klist = kmalloc(size, GFP_KERNEL);
238 error = security_inode_listxattr(d);
242 if (d->d_inode->i_op && d->d_inode->i_op->listxattr) {
243 error = d->d_inode->i_op->listxattr(d, klist, size);
245 error = security_inode_listsecurity(d->d_inode, klist, size);
246 if (size && error >= size)
250 if (size && copy_to_user(list, klist, error))
252 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
253 /* The file system tried to returned a list bigger
254 than XATTR_LIST_MAX bytes. Not possible. */
264 sys_listxattr(char __user *path, char __user *list, size_t size)
269 error = user_path_walk(path, &nd);
272 error = listxattr(nd.dentry, list, size);
278 sys_llistxattr(char __user *path, char __user *list, size_t size)
283 error = user_path_walk_link(path, &nd);
286 error = listxattr(nd.dentry, list, size);
292 sys_flistxattr(int fd, char __user *list, size_t size)
295 ssize_t error = -EBADF;
300 error = listxattr(f->f_dentry, list, size);
306 * Extended attribute REMOVE operations
309 removexattr(struct dentry *d, char __user *name)
312 char kname[XATTR_NAME_MAX + 1];
314 error = strncpy_from_user(kname, name, sizeof(kname));
315 if (error == 0 || error == sizeof(kname))
321 if (d->d_inode->i_op && d->d_inode->i_op->removexattr) {
322 error = security_inode_removexattr(d, kname);
325 down(&d->d_inode->i_sem);
326 error = d->d_inode->i_op->removexattr(d, kname);
327 up(&d->d_inode->i_sem);
336 sys_removexattr(char __user *path, char __user *name)
341 error = user_path_walk(path, &nd);
344 error = removexattr(nd.dentry, name);
350 sys_lremovexattr(char __user *path, char __user *name)
355 error = user_path_walk_link(path, &nd);
358 error = removexattr(nd.dentry, name);
364 sys_fremovexattr(int fd, char __user *name)
372 error = removexattr(f->f_dentry, name);
379 strcmp_prefix(const char *a, const char *a_prefix)
381 while (*a_prefix && *a == *a_prefix) {
385 return *a_prefix ? NULL : a;
389 * In order to implement different sets of xattr operations for each xattr
390 * prefix with the generic xattr API, a filesystem should create a
391 * null-terminated array of struct xattr_handler (one for each prefix) and
392 * hang a pointer to it off of the s_xattr field of the superblock.
394 * The generic_fooxattr() functions will use this list to dispatch xattr
395 * operations to the correct xattr_handler.
397 #define for_each_xattr_handler(handlers, handler) \
398 for ((handler) = *(handlers)++; \
400 (handler) = *(handlers)++)
403 * Find the xattr_handler with the matching prefix.
405 static struct xattr_handler *
406 xattr_resolve_name(struct xattr_handler **handlers, const char **name)
408 struct xattr_handler *handler;
413 for_each_xattr_handler(handlers, handler) {
414 const char *n = strcmp_prefix(*name, handler->prefix);
424 * Find the handler for the prefix and dispatch its get() operation.
427 generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size)
429 struct xattr_handler *handler;
430 struct inode *inode = dentry->d_inode;
432 handler = xattr_resolve_name(inode->i_sb->s_xattr, &name);
435 return handler->get(inode, name, buffer, size);
439 * Combine the results of the list() operation from every xattr_handler in the
443 generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
445 struct inode *inode = dentry->d_inode;
446 struct xattr_handler *handler, **handlers = inode->i_sb->s_xattr;
447 unsigned int size = 0;
450 for_each_xattr_handler(handlers, handler)
451 size += handler->list(inode, NULL, 0, NULL, 0);
455 for_each_xattr_handler(handlers, handler) {
456 size = handler->list(inode, buf, buffer_size, NULL, 0);
457 if (size > buffer_size)
468 * Find the handler for the prefix and dispatch its set() operation.
471 generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags)
473 struct xattr_handler *handler;
474 struct inode *inode = dentry->d_inode;
477 value = ""; /* empty EA, do not remove */
478 handler = xattr_resolve_name(inode->i_sb->s_xattr, &name);
481 return handler->set(inode, name, value, size, flags);
485 * Find the handler for the prefix and dispatch its set() operation to remove
486 * any associated extended attribute.
489 generic_removexattr(struct dentry *dentry, const char *name)
491 struct xattr_handler *handler;
492 struct inode *inode = dentry->d_inode;
494 handler = xattr_resolve_name(inode->i_sb->s_xattr, &name);
497 return handler->set(inode, name, NULL, 0, XATTR_REPLACE);
500 EXPORT_SYMBOL(generic_getxattr);
501 EXPORT_SYMBOL(generic_listxattr);
502 EXPORT_SYMBOL(generic_setxattr);
503 EXPORT_SYMBOL(generic_removexattr);