blob: e4cbb7719906308a461b1a93b307201eca3faad3 [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 Frederick17093992014-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
Al Viro59301222016-05-27 10:19:30 -040023security_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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
Al Viro59301222016-05-27 10:19:30 -040027 if (IS_PRIVATE(inode))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070028 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Al Viro59301222016-05-27 10:19:30 -040030 return reiserfs_xattr_set(inode,
Al Viro79a628d2016-04-10 18:50:48 -040031 xattr_full_name(handler, name),
32 buffer, size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070033}
34
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010035static bool security_list(struct dentry *dentry)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070036{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010037 return !IS_PRIVATE(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040040/* 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,
Eric Paris2a7dba32011-02-01 11:05:39 -050044 const struct qstr *qstr,
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040045 struct reiserfs_security_handle *sec)
46{
47 int blocks = 0;
Jeff Mahoneyb82bb722009-05-05 15:30:16 -040048 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
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040056 error = security_old_inode_init_security(inode, dir, qstr, &sec->name,
57 &sec->value, &sec->length);
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040058 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
Jeff Mahoney6cb4aff2010-03-23 13:35:38 -070068 if (sec->length && reiserfs_xattrs_initialized(inode->i_sb)) {
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040069 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
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700102const struct xattr_handler reiserfs_xattr_security_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .prefix = XATTR_SECURITY_PREFIX,
104 .get = security_get,
105 .set = security_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 .list = security_list,
107};