1 #include <linux/reiserfs_fs.h>
2 #include <linux/errno.h>
4 #include <linux/pagemap.h>
5 #include <linux/xattr.h>
6 #include <linux/reiserfs_xattr.h>
7 #include <linux/security.h>
8 #include <asm/uaccess.h>
11 security_get(struct inode *inode, const char *name, void *buffer, size_t size)
13 if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
16 if (IS_PRIVATE(inode))
19 return reiserfs_xattr_get(inode, name, buffer, size);
23 security_set(struct inode *inode, const char *name, const void *buffer,
24 size_t size, int flags)
26 if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
29 if (IS_PRIVATE(inode))
32 return reiserfs_xattr_set(inode, name, buffer, size, flags);
35 static size_t security_list(struct inode *inode, char *list, size_t list_len,
36 const char *name, size_t namelen)
38 const size_t len = namelen + 1;
40 if (IS_PRIVATE(inode))
43 if (list && len <= list_len) {
44 memcpy(list, name, namelen);
51 /* Initializes the security context for a new inode and returns the number
52 * of blocks needed for the transaction. If successful, reiserfs_security
53 * must be released using reiserfs_security_free when the caller is done. */
54 int reiserfs_security_init(struct inode *dir, struct inode *inode,
55 struct reiserfs_security_handle *sec)
62 /* Don't add selinux attributes on xattrs - they'll never get used */
66 error = security_inode_init_security(inode, dir, &sec->name,
67 &sec->value, &sec->length);
69 if (error == -EOPNOTSUPP)
79 blocks = reiserfs_xattr_jcreate_nblocks(inode) +
80 reiserfs_xattr_nblocks(inode, sec->length);
81 /* We don't want to count the directories twice if we have
83 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
88 int reiserfs_security_write(struct reiserfs_transaction_handle *th,
90 struct reiserfs_security_handle *sec)
93 if (strlen(sec->name) < sizeof(XATTR_SECURITY_PREFIX))
96 error = reiserfs_xattr_set_handle(th, inode, sec->name, sec->value,
97 sec->length, XATTR_CREATE);
98 if (error == -ENODATA || error == -EOPNOTSUPP)
104 void reiserfs_security_free(struct reiserfs_security_handle *sec)
112 struct xattr_handler reiserfs_xattr_security_handler = {
113 .prefix = XATTR_SECURITY_PREFIX,
116 .list = security_list,