]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
f466c6fd | 2 | #include "reiserfs.h" |
1da177e4 LT |
3 | #include <linux/errno.h> |
4 | #include <linux/fs.h> | |
5 | #include <linux/pagemap.h> | |
6 | #include <linux/xattr.h> | |
5a0e3ad6 | 7 | #include <linux/slab.h> |
c45ac888 | 8 | #include "xattr.h" |
57fe60df | 9 | #include <linux/security.h> |
17093991 | 10 | #include <linux/uaccess.h> |
1da177e4 | 11 | |
1da177e4 | 12 | static int |
b296821a AV |
13 | security_get(const struct xattr_handler *handler, struct dentry *unused, |
14 | struct inode *inode, const char *name, void *buffer, size_t size) | |
1da177e4 | 15 | { |
b296821a | 16 | if (IS_PRIVATE(inode)) |
bd4c625c | 17 | return -EPERM; |
1da177e4 | 18 | |
b296821a | 19 | return reiserfs_xattr_get(inode, xattr_full_name(handler, name), |
79a628d1 | 20 | buffer, size); |
1da177e4 LT |
21 | } |
22 | ||
23 | static int | |
59301226 AV |
24 | security_set(const struct xattr_handler *handler, struct dentry *unused, |
25 | struct inode *inode, const char *name, const void *buffer, | |
26 | size_t size, int flags) | |
1da177e4 | 27 | { |
59301226 | 28 | if (IS_PRIVATE(inode)) |
bd4c625c | 29 | return -EPERM; |
1da177e4 | 30 | |
59301226 | 31 | return reiserfs_xattr_set(inode, |
79a628d1 AV |
32 | xattr_full_name(handler, name), |
33 | buffer, size, flags); | |
1da177e4 LT |
34 | } |
35 | ||
764a5c6b | 36 | static bool security_list(struct dentry *dentry) |
1da177e4 | 37 | { |
764a5c6b | 38 | return !IS_PRIVATE(d_inode(dentry)); |
1da177e4 LT |
39 | } |
40 | ||
57fe60df JM |
41 | /* Initializes the security context for a new inode and returns the number |
42 | * of blocks needed for the transaction. If successful, reiserfs_security | |
43 | * must be released using reiserfs_security_free when the caller is done. */ | |
44 | int reiserfs_security_init(struct inode *dir, struct inode *inode, | |
2a7dba39 | 45 | const struct qstr *qstr, |
57fe60df JM |
46 | struct reiserfs_security_handle *sec) |
47 | { | |
48 | int blocks = 0; | |
b82bb72b JM |
49 | int error; |
50 | ||
51 | sec->name = NULL; | |
52 | ||
53 | /* Don't add selinux attributes on xattrs - they'll never get used */ | |
54 | if (IS_PRIVATE(dir)) | |
55 | return 0; | |
56 | ||
9d8f13ba MZ |
57 | error = security_old_inode_init_security(inode, dir, qstr, &sec->name, |
58 | &sec->value, &sec->length); | |
57fe60df JM |
59 | if (error) { |
60 | if (error == -EOPNOTSUPP) | |
61 | error = 0; | |
62 | ||
63 | sec->name = NULL; | |
64 | sec->value = NULL; | |
65 | sec->length = 0; | |
66 | return error; | |
67 | } | |
68 | ||
6cb4aff0 | 69 | if (sec->length && reiserfs_xattrs_initialized(inode->i_sb)) { |
57fe60df JM |
70 | blocks = reiserfs_xattr_jcreate_nblocks(inode) + |
71 | reiserfs_xattr_nblocks(inode, sec->length); | |
72 | /* We don't want to count the directories twice if we have | |
73 | * a default ACL. */ | |
74 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; | |
75 | } | |
76 | return blocks; | |
77 | } | |
78 | ||
79 | int reiserfs_security_write(struct reiserfs_transaction_handle *th, | |
80 | struct inode *inode, | |
81 | struct reiserfs_security_handle *sec) | |
82 | { | |
83 | int error; | |
84 | if (strlen(sec->name) < sizeof(XATTR_SECURITY_PREFIX)) | |
85 | return -EINVAL; | |
86 | ||
87 | error = reiserfs_xattr_set_handle(th, inode, sec->name, sec->value, | |
88 | sec->length, XATTR_CREATE); | |
89 | if (error == -ENODATA || error == -EOPNOTSUPP) | |
90 | error = 0; | |
91 | ||
92 | return error; | |
93 | } | |
94 | ||
95 | void reiserfs_security_free(struct reiserfs_security_handle *sec) | |
96 | { | |
97 | kfree(sec->name); | |
98 | kfree(sec->value); | |
99 | sec->name = NULL; | |
100 | sec->value = NULL; | |
101 | } | |
102 | ||
94d09a98 | 103 | const struct xattr_handler reiserfs_xattr_security_handler = { |
1da177e4 LT |
104 | .prefix = XATTR_SECURITY_PREFIX, |
105 | .get = security_get, | |
106 | .set = security_set, | |
1da177e4 LT |
107 | .list = security_list, |
108 | }; |