]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/reiserfs/xattr_security.c
xps: Transmit Packet Steering
[net-next-2.6.git] / fs / reiserfs / xattr_security.c
CommitLineData
1da177e4
LT
1#include <linux/reiserfs_fs.h>
2#include <linux/errno.h>
3#include <linux/fs.h>
4#include <linux/pagemap.h>
5#include <linux/xattr.h>
5a0e3ad6 6#include <linux/slab.h>
1da177e4 7#include <linux/reiserfs_xattr.h>
57fe60df 8#include <linux/security.h>
1da177e4
LT
9#include <asm/uaccess.h>
10
1da177e4 11static int
431547b3
CH
12security_get(struct dentry *dentry, const char *name, void *buffer, size_t size,
13 int handler_flags)
1da177e4 14{
bd4c625c
LT
15 if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
16 return -EINVAL;
1da177e4 17
431547b3 18 if (IS_PRIVATE(dentry->d_inode))
bd4c625c 19 return -EPERM;
1da177e4 20
431547b3 21 return reiserfs_xattr_get(dentry->d_inode, name, buffer, size);
1da177e4
LT
22}
23
24static int
431547b3
CH
25security_set(struct dentry *dentry, const char *name, const void *buffer,
26 size_t size, int flags, int handler_flags)
1da177e4 27{
bd4c625c
LT
28 if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
29 return -EINVAL;
1da177e4 30
431547b3 31 if (IS_PRIVATE(dentry->d_inode))
bd4c625c 32 return -EPERM;
1da177e4 33
431547b3 34 return reiserfs_xattr_set(dentry->d_inode, name, buffer, size, flags);
1da177e4
LT
35}
36
431547b3
CH
37static size_t security_list(struct dentry *dentry, char *list, size_t list_len,
38 const char *name, size_t namelen, int handler_flags)
1da177e4 39{
48b32a35 40 const size_t len = namelen + 1;
1da177e4 41
431547b3 42 if (IS_PRIVATE(dentry->d_inode))
bd4c625c 43 return 0;
1da177e4 44
48b32a35
JM
45 if (list && len <= list_len) {
46 memcpy(list, name, namelen);
47 list[namelen] = '\0';
48 }
1da177e4 49
bd4c625c 50 return len;
1da177e4
LT
51}
52
57fe60df
JM
53/* Initializes the security context for a new inode and returns the number
54 * of blocks needed for the transaction. If successful, reiserfs_security
55 * must be released using reiserfs_security_free when the caller is done. */
56int reiserfs_security_init(struct inode *dir, struct inode *inode,
57 struct reiserfs_security_handle *sec)
58{
59 int blocks = 0;
b82bb72b
JM
60 int error;
61
62 sec->name = NULL;
63
64 /* Don't add selinux attributes on xattrs - they'll never get used */
65 if (IS_PRIVATE(dir))
66 return 0;
67
68 error = security_inode_init_security(inode, dir, &sec->name,
69 &sec->value, &sec->length);
57fe60df
JM
70 if (error) {
71 if (error == -EOPNOTSUPP)
72 error = 0;
73
74 sec->name = NULL;
75 sec->value = NULL;
76 sec->length = 0;
77 return error;
78 }
79
6cb4aff0 80 if (sec->length && reiserfs_xattrs_initialized(inode->i_sb)) {
57fe60df
JM
81 blocks = reiserfs_xattr_jcreate_nblocks(inode) +
82 reiserfs_xattr_nblocks(inode, sec->length);
83 /* We don't want to count the directories twice if we have
84 * a default ACL. */
85 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
86 }
87 return blocks;
88}
89
90int reiserfs_security_write(struct reiserfs_transaction_handle *th,
91 struct inode *inode,
92 struct reiserfs_security_handle *sec)
93{
94 int error;
95 if (strlen(sec->name) < sizeof(XATTR_SECURITY_PREFIX))
96 return -EINVAL;
97
98 error = reiserfs_xattr_set_handle(th, inode, sec->name, sec->value,
99 sec->length, XATTR_CREATE);
100 if (error == -ENODATA || error == -EOPNOTSUPP)
101 error = 0;
102
103 return error;
104}
105
106void reiserfs_security_free(struct reiserfs_security_handle *sec)
107{
108 kfree(sec->name);
109 kfree(sec->value);
110 sec->name = NULL;
111 sec->value = NULL;
112}
113
94d09a98 114const struct xattr_handler reiserfs_xattr_security_handler = {
1da177e4
LT
115 .prefix = XATTR_SECURITY_PREFIX,
116 .get = security_get,
117 .set = security_set,
1da177e4
LT
118 .list = security_list,
119};