blob: ab0217d320396447110e0d8d3218d22b69046352 [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
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020012security_get(const struct xattr_handler *handler, struct dentry *dentry,
13 const char *name, void *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070015 if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
16 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
David Howells2b0143b2015-03-17 22:25:59 +000018 if (IS_PRIVATE(d_inode(dentry)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070019 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
David Howells2b0143b2015-03-17 22:25:59 +000021 return reiserfs_xattr_get(d_inode(dentry), name, buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022}
23
24static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020025security_set(const struct xattr_handler *handler, struct dentry *dentry,
26 const char *name, const void *buffer, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070028 if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
29 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
David Howells2b0143b2015-03-17 22:25:59 +000031 if (IS_PRIVATE(d_inode(dentry)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070032 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
David Howells2b0143b2015-03-17 22:25:59 +000034 return reiserfs_xattr_set(d_inode(dentry), name, buffer, size, flags);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070035}
36
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010037static bool security_list(struct dentry *dentry)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070038{
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010039 return !IS_PRIVATE(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040042/* Initializes the security context for a new inode and returns the number
43 * of blocks needed for the transaction. If successful, reiserfs_security
44 * must be released using reiserfs_security_free when the caller is done. */
45int reiserfs_security_init(struct inode *dir, struct inode *inode,
Eric Paris2a7dba32011-02-01 11:05:39 -050046 const struct qstr *qstr,
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040047 struct reiserfs_security_handle *sec)
48{
49 int blocks = 0;
Jeff Mahoneyb82bb722009-05-05 15:30:16 -040050 int error;
51
52 sec->name = NULL;
53
54 /* Don't add selinux attributes on xattrs - they'll never get used */
55 if (IS_PRIVATE(dir))
56 return 0;
57
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040058 error = security_old_inode_init_security(inode, dir, qstr, &sec->name,
59 &sec->value, &sec->length);
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040060 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
Jeff Mahoney6cb4aff2010-03-23 13:35:38 -070070 if (sec->length && reiserfs_xattrs_initialized(inode->i_sb)) {
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040071 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
80int 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
96void 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
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700104const struct xattr_handler reiserfs_xattr_security_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .prefix = XATTR_SECURITY_PREFIX,
106 .get = security_get,
107 .set = security_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 .list = security_list,
109};