Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / fs / ext2 / xattr_security.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/ext2/xattr_security.c
3 * Handler for storing security labels as extended attributes.
4 */
5
f7699f2b 6#include "ext2.h"
10f47e6a 7#include <linux/security.h>
1da177e4
LT
8#include "xattr.h"
9
10static size_t
d9a82a04
AG
11ext2_xattr_security_list(const struct xattr_handler *handler,
12 struct dentry *dentry, char *list, size_t list_size,
13 const char *name, size_t name_len)
1da177e4 14{
f905f06f 15 const int prefix_len = XATTR_SECURITY_PREFIX_LEN;
1da177e4
LT
16 const size_t total_len = prefix_len + name_len + 1;
17
18 if (list && total_len <= list_size) {
19 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
20 memcpy(list+prefix_len, name, name_len);
21 list[prefix_len + name_len] = '\0';
22 }
23 return total_len;
24}
25
26static int
d9a82a04
AG
27ext2_xattr_security_get(const struct xattr_handler *handler,
28 struct dentry *dentry, const char *name,
29 void *buffer, size_t size)
1da177e4
LT
30{
31 if (strcmp(name, "") == 0)
32 return -EINVAL;
2b0143b5 33 return ext2_xattr_get(d_inode(dentry), EXT2_XATTR_INDEX_SECURITY, name,
1da177e4
LT
34 buffer, size);
35}
36
37static int
d9a82a04
AG
38ext2_xattr_security_set(const struct xattr_handler *handler,
39 struct dentry *dentry, const char *name,
40 const void *value, size_t size, int flags)
1da177e4
LT
41{
42 if (strcmp(name, "") == 0)
43 return -EINVAL;
2b0143b5 44 return ext2_xattr_set(d_inode(dentry), EXT2_XATTR_INDEX_SECURITY, name,
1da177e4
LT
45 value, size, flags);
46}
47
17cd48e4
RK
48static int ext2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
49 void *fs_info)
10f47e6a 50{
9d8f13ba
MZ
51 const struct xattr *xattr;
52 int err = 0;
10f47e6a 53
9d8f13ba
MZ
54 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
55 err = ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY,
56 xattr->name, xattr->value,
57 xattr->value_len, 0);
58 if (err < 0)
59 break;
10f47e6a 60 }
10f47e6a
SS
61 return err;
62}
63
9d8f13ba
MZ
64int
65ext2_init_security(struct inode *inode, struct inode *dir,
66 const struct qstr *qstr)
67{
68 return security_inode_init_security(inode, dir, qstr,
69 &ext2_initxattrs, NULL);
70}
71
749c72ef 72const struct xattr_handler ext2_xattr_security_handler = {
1da177e4
LT
73 .prefix = XATTR_SECURITY_PREFIX,
74 .list = ext2_xattr_security_list,
75 .get = ext2_xattr_security_get,
76 .set = ext2_xattr_security_set,
77};