blob: ac659af431aec83d5ba7b85e7b69c1ac49e7b4c0 [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 Gruenbacherd9a82a02015-10-04 19:18:51 +020037static size_t security_list(const struct xattr_handler *handler,
38 struct dentry *dentry, char *list, size_t list_len,
39 const char *name, size_t namelen)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070040{
Jeff Mahoney48b32a32009-03-30 14:02:38 -040041 const size_t len = namelen + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
David Howells2b0143b2015-03-17 22:25:59 +000043 if (IS_PRIVATE(d_inode(dentry)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070044 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Jeff Mahoney48b32a32009-03-30 14:02:38 -040046 if (list && len <= list_len) {
47 memcpy(list, name, namelen);
48 list[namelen] = '\0';
49 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070050
51 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040054/* Initializes the security context for a new inode and returns the number
55 * of blocks needed for the transaction. If successful, reiserfs_security
56 * must be released using reiserfs_security_free when the caller is done. */
57int reiserfs_security_init(struct inode *dir, struct inode *inode,
Eric Paris2a7dba32011-02-01 11:05:39 -050058 const struct qstr *qstr,
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040059 struct reiserfs_security_handle *sec)
60{
61 int blocks = 0;
Jeff Mahoneyb82bb722009-05-05 15:30:16 -040062 int error;
63
64 sec->name = NULL;
65
66 /* Don't add selinux attributes on xattrs - they'll never get used */
67 if (IS_PRIVATE(dir))
68 return 0;
69
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040070 error = security_old_inode_init_security(inode, dir, qstr, &sec->name,
71 &sec->value, &sec->length);
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040072 if (error) {
73 if (error == -EOPNOTSUPP)
74 error = 0;
75
76 sec->name = NULL;
77 sec->value = NULL;
78 sec->length = 0;
79 return error;
80 }
81
Jeff Mahoney6cb4aff2010-03-23 13:35:38 -070082 if (sec->length && reiserfs_xattrs_initialized(inode->i_sb)) {
Jeff Mahoney57fe60d2009-03-30 14:02:41 -040083 blocks = reiserfs_xattr_jcreate_nblocks(inode) +
84 reiserfs_xattr_nblocks(inode, sec->length);
85 /* We don't want to count the directories twice if we have
86 * a default ACL. */
87 REISERFS_I(inode)->i_flags |= i_has_xattr_dir;
88 }
89 return blocks;
90}
91
92int reiserfs_security_write(struct reiserfs_transaction_handle *th,
93 struct inode *inode,
94 struct reiserfs_security_handle *sec)
95{
96 int error;
97 if (strlen(sec->name) < sizeof(XATTR_SECURITY_PREFIX))
98 return -EINVAL;
99
100 error = reiserfs_xattr_set_handle(th, inode, sec->name, sec->value,
101 sec->length, XATTR_CREATE);
102 if (error == -ENODATA || error == -EOPNOTSUPP)
103 error = 0;
104
105 return error;
106}
107
108void reiserfs_security_free(struct reiserfs_security_handle *sec)
109{
110 kfree(sec->name);
111 kfree(sec->value);
112 sec->name = NULL;
113 sec->value = NULL;
114}
115
Stephen Hemminger94d09a92010-05-13 17:53:19 -0700116const struct xattr_handler reiserfs_xattr_security_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .prefix = XATTR_SECURITY_PREFIX,
118 .get = security_get,
119 .set = security_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .list = security_list,
121};