blob: 86aeb9dd805a9189073fe4e605d01d8103da36c4 [file] [log] [blame]
Al Virof466c6f2012-03-17 01:16:43 -04001#include "reiserfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/errno.h>
3#include <linux/fs.h>
4#include <linux/pagemap.h>
5#include <linux/xattr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Al Viroc45ac882012-03-17 00:59:06 -04007#include "xattr.h"
Jeff Mahoney57fe60d2009-03-30 14:02:41 -04008#include <linux/security.h>
Fabian Frederick170939912014-08-08 14:21:12 -07009#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011static int
Al Virob2968212016-04-10 20:48:24 -040012security_get(const struct xattr_handler *handler, struct dentry *unused,
13 struct inode *inode, const char *name, void *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014{
Al Virob2968212016-04-10 20:48:24 -040015 if (IS_PRIVATE(inode))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070016 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Al Virob2968212016-04-10 20:48:24 -040018 return reiserfs_xattr_get(inode, xattr_full_name(handler, name),
Al Viro79a628d2016-04-10 18:50:48 -040019 buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020}
21
22static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020023security_set(const struct xattr_handler *handler, struct dentry *dentry,
24 const char *name, const void *buffer, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
David Howells2b0143b2015-03-17 22:25:59 +000026 if (IS_PRIVATE(d_inode(dentry)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070027 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Al Viro79a628d2016-04-10 18:50:48 -040029 return reiserfs_xattr_set(d_inode(dentry),
30 xattr_full_name(handler, name),
31 buffer, size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070032}
33
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010034static bool security_list(struct dentry *dentry)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070035{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010036 return !IS_PRIVATE(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040039/* Initializes the security context for a new inode and returns the number
40 * of blocks needed for the transaction. If successful, reiserfs_security
41 * must be released using reiserfs_security_free when the caller is done. */
42int reiserfs_security_init(struct inode *dir, struct inode *inode,
Eric Paris2a7dba32011-02-01 11:05:39 -050043 const struct qstr *qstr,
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040044 struct reiserfs_security_handle *sec)
45{
46 int blocks = 0;
Jeff Mahoneyb82bb722009-05-05 15:30:16 -040047 int error;
48
49 sec->name = NULL;
50
51 /* Don't add selinux attributes on xattrs - they'll never get used */
52 if (IS_PRIVATE(dir))
53 return 0;
54
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040055 error = security_old_inode_init_security(inode, dir, qstr, &sec->name,
56 &sec->value, &sec->length);
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040057 if (error) {
58 if (error == -EOPNOTSUPP)
59 error = 0;
60
61 sec->name = NULL;
62 sec->value = NULL;
63 sec->length = 0;
64 return error;
65 }
66
Jeff Mahoney6cb4aff2010-03-23 13:35:38 -070067 if (sec->length && reiserfs_xattrs_initialized(inode->i_sb)) {
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040068 blocks = reiserfs_xattr_jcreate_nblocks(inode) +
69 reiserfs_xattr_nblocks(inode, sec->length);
70 /* We don't want to count the directories twice if we have
71 * a default ACL. */
72 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
73 }
74 return blocks;
75}
76
77int reiserfs_security_write(struct reiserfs_transaction_handle *th,
78 struct inode *inode,
79 struct reiserfs_security_handle *sec)
80{
81 int error;
82 if (strlen(sec->name) < sizeof(XATTR_SECURITY_PREFIX))
83 return -EINVAL;
84
85 error = reiserfs_xattr_set_handle(th, inode, sec->name, sec->value,
86 sec->length, XATTR_CREATE);
87 if (error == -ENODATA || error == -EOPNOTSUPP)
88 error = 0;
89
90 return error;
91}
92
93void reiserfs_security_free(struct reiserfs_security_handle *sec)
94{
95 kfree(sec->name);
96 kfree(sec->value);
97 sec->name = NULL;
98 sec->value = NULL;
99}
100
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700101const struct xattr_handler reiserfs_xattr_security_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .prefix = XATTR_SECURITY_PREFIX,
103 .get = security_get,
104 .set = security_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .list = security_list,
106};