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
);
334 sys_removexattr(char __user
*path
, char __user
*name
)
339 error
= user_path_walk(path
, &nd
);
342 error
= removexattr(nd
.dentry
, name
);
348 sys_lremovexattr(char __user
*path
, char __user
*name
)
353 error
= user_path_walk_link(path
, &nd
);
356 error
= removexattr(nd
.dentry
, name
);
362 sys_fremovexattr(int fd
, char __user
*name
)
370 error
= removexattr(f
->f_dentry
, name
);
377 strcmp_prefix(const char *a
, const char *a_prefix
)
379 while (*a_prefix
&& *a
== *a_prefix
) {
383 return *a_prefix
? NULL
: a
;
387 * In order to implement different sets of xattr operations for each xattr
388 * prefix with the generic xattr API, a filesystem should create a
389 * null-terminated array of struct xattr_handler (one for each prefix) and
390 * hang a pointer to it off of the s_xattr field of the superblock.
392 * The generic_fooxattr() functions will use this list to dispatch xattr
393 * operations to the correct xattr_handler.
395 #define for_each_xattr_handler(handlers, handler) \
396 for ((handler) = *(handlers)++; \
398 (handler) = *(handlers)++)
401 * Find the xattr_handler with the matching prefix.
403 static struct xattr_handler
*
404 xattr_resolve_name(struct xattr_handler
**handlers
, const char **name
)
406 struct xattr_handler
*handler
;
411 for_each_xattr_handler(handlers
, handler
) {
412 const char *n
= strcmp_prefix(*name
, handler
->prefix
);
422 * Find the handler for the prefix and dispatch its get() operation.
425 generic_getxattr(struct dentry
*dentry
, const char *name
, void *buffer
, size_t size
)
427 struct xattr_handler
*handler
;
428 struct inode
*inode
= dentry
->d_inode
;
430 handler
= xattr_resolve_name(inode
->i_sb
->s_xattr
, &name
);
433 return handler
->get(inode
, name
, buffer
, size
);
437 * Combine the results of the list() operation from every xattr_handler in the
441 generic_listxattr(struct dentry
*dentry
, char *buffer
, size_t buffer_size
)
443 struct inode
*inode
= dentry
->d_inode
;
444 struct xattr_handler
*handler
, **handlers
= inode
->i_sb
->s_xattr
;
445 unsigned int size
= 0;
448 for_each_xattr_handler(handlers
, handler
)
449 size
+= handler
->list(inode
, NULL
, 0, NULL
, 0);
453 for_each_xattr_handler(handlers
, handler
) {
454 size
= handler
->list(inode
, buf
, buffer_size
, NULL
, 0);
455 if (size
> buffer_size
)
466 * Find the handler for the prefix and dispatch its set() operation.
469 generic_setxattr(struct dentry
*dentry
, const char *name
, const void *value
, size_t size
, int flags
)
471 struct xattr_handler
*handler
;
472 struct inode
*inode
= dentry
->d_inode
;
475 value
= ""; /* empty EA, do not remove */
476 handler
= xattr_resolve_name(inode
->i_sb
->s_xattr
, &name
);
479 return handler
->set(inode
, name
, value
, size
, flags
);
483 * Find the handler for the prefix and dispatch its set() operation to remove
484 * any associated extended attribute.
487 generic_removexattr(struct dentry
*dentry
, const char *name
)
489 struct xattr_handler
*handler
;
490 struct inode
*inode
= dentry
->d_inode
;
492 handler
= xattr_resolve_name(inode
->i_sb
->s_xattr
, &name
);
495 return handler
->set(inode
, name
, NULL
, 0, XATTR_REPLACE
);
498 EXPORT_SYMBOL(generic_getxattr
);
499 EXPORT_SYMBOL(generic_listxattr
);
500 EXPORT_SYMBOL(generic_setxattr
);
501 EXPORT_SYMBOL(generic_removexattr
);