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