xref: /openbmc/linux/fs/reiserfs/xattr_security.c (revision 57fe60df)
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>
6 #include <linux/reiserfs_xattr.h>
7 #include <linux/security.h>
8 #include <asm/uaccess.h>
9 
10 static int
11 security_get(struct inode *inode, const char *name, void *buffer, size_t size)
12 {
13 	if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
14 		return -EINVAL;
15 
16 	if (IS_PRIVATE(inode))
17 		return -EPERM;
18 
19 	return reiserfs_xattr_get(inode, name, buffer, size);
20 }
21 
22 static int
23 security_set(struct inode *inode, const char *name, const void *buffer,
24 	     size_t size, int flags)
25 {
26 	if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
27 		return -EINVAL;
28 
29 	if (IS_PRIVATE(inode))
30 		return -EPERM;
31 
32 	return reiserfs_xattr_set(inode, name, buffer, size, flags);
33 }
34 
35 static size_t security_list(struct inode *inode, char *list, size_t list_len,
36 			    const char *name, size_t namelen)
37 {
38 	const size_t len = namelen + 1;
39 
40 	if (IS_PRIVATE(inode))
41 		return 0;
42 
43 	if (list && len <= list_len) {
44 		memcpy(list, name, namelen);
45 		list[namelen] = '\0';
46 	}
47 
48 	return len;
49 }
50 
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)
56 {
57 	int blocks = 0;
58 	int error = security_inode_init_security(inode, dir, &sec->name,
59 						 &sec->value, &sec->length);
60 	if (error) {
61 		if (error == -EOPNOTSUPP)
62 			error = 0;
63 
64 		sec->name = NULL;
65 		sec->value = NULL;
66 		sec->length = 0;
67 		return error;
68 	}
69 
70 	if (sec->length) {
71 		blocks = reiserfs_xattr_jcreate_nblocks(inode) +
72 			 reiserfs_xattr_nblocks(inode, sec->length);
73 		/* We don't want to count the directories twice if we have
74 		 * a default ACL. */
75 		REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
76 	}
77 	return blocks;
78 }
79 
80 int reiserfs_security_write(struct reiserfs_transaction_handle *th,
81 			    struct inode *inode,
82 			    struct reiserfs_security_handle *sec)
83 {
84 	int error;
85 	if (strlen(sec->name) < sizeof(XATTR_SECURITY_PREFIX))
86 		return -EINVAL;
87 
88 	error = reiserfs_xattr_set_handle(th, inode, sec->name, sec->value,
89 					  sec->length, XATTR_CREATE);
90 	if (error == -ENODATA || error == -EOPNOTSUPP)
91 		error = 0;
92 
93 	return error;
94 }
95 
96 void reiserfs_security_free(struct reiserfs_security_handle *sec)
97 {
98 	kfree(sec->name);
99 	kfree(sec->value);
100 	sec->name = NULL;
101 	sec->value = NULL;
102 }
103 
104 struct xattr_handler reiserfs_xattr_security_handler = {
105 	.prefix = XATTR_SECURITY_PREFIX,
106 	.get = security_get,
107 	.set = security_set,
108 	.list = security_list,
109 };
110