Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/reiserfs_fs.h> |
| 2 | #include <linux/errno.h> |
| 3 | #include <linux/fs.h> |
| 4 | #include <linux/pagemap.h> |
| 5 | #include <linux/xattr.h> |
| 6 | #include <linux/reiserfs_xattr.h> |
Jeff Mahoney | 57fe60d | 2009-03-30 14:02:41 -0400 | [diff] [blame] | 7 | #include <linux/security.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <asm/uaccess.h> |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | static int |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 11 | security_get(struct dentry *dentry, const char *name, void *buffer, size_t size, |
| 12 | int handler_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 14 | if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX)) |
| 15 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 17 | if (IS_PRIVATE(dentry->d_inode)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 18 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 20 | return reiserfs_xattr_get(dentry->d_inode, name, buffer, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | static int |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 24 | security_set(struct dentry *dentry, const char *name, const void *buffer, |
| 25 | size_t size, int flags, int handler_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 27 | if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX)) |
| 28 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 30 | if (IS_PRIVATE(dentry->d_inode)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 31 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 33 | return reiserfs_xattr_set(dentry->d_inode, name, buffer, size, flags); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 34 | } |
| 35 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 36 | static size_t security_list(struct dentry *dentry, char *list, size_t list_len, |
| 37 | const char *name, size_t namelen, int handler_flags) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 38 | { |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 39 | const size_t len = namelen + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 41 | if (IS_PRIVATE(dentry->d_inode)) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 42 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 44 | if (list && len <= list_len) { |
| 45 | memcpy(list, name, namelen); |
| 46 | list[namelen] = '\0'; |
| 47 | } |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 48 | |
| 49 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | } |
| 51 | |
Jeff Mahoney | 57fe60d | 2009-03-30 14:02:41 -0400 | [diff] [blame] | 52 | /* Initializes the security context for a new inode and returns the number |
| 53 | * of blocks needed for the transaction. If successful, reiserfs_security |
| 54 | * must be released using reiserfs_security_free when the caller is done. */ |
| 55 | int reiserfs_security_init(struct inode *dir, struct inode *inode, |
| 56 | struct reiserfs_security_handle *sec) |
| 57 | { |
| 58 | int blocks = 0; |
Jeff Mahoney | b82bb72 | 2009-05-05 15:30:16 -0400 | [diff] [blame] | 59 | int error; |
| 60 | |
| 61 | sec->name = NULL; |
| 62 | |
| 63 | /* Don't add selinux attributes on xattrs - they'll never get used */ |
| 64 | if (IS_PRIVATE(dir)) |
| 65 | return 0; |
| 66 | |
| 67 | error = security_inode_init_security(inode, dir, &sec->name, |
| 68 | &sec->value, &sec->length); |
Jeff Mahoney | 57fe60d | 2009-03-30 14:02:41 -0400 | [diff] [blame] | 69 | if (error) { |
| 70 | if (error == -EOPNOTSUPP) |
| 71 | error = 0; |
| 72 | |
| 73 | sec->name = NULL; |
| 74 | sec->value = NULL; |
| 75 | sec->length = 0; |
| 76 | return error; |
| 77 | } |
| 78 | |
Jeff Mahoney | 6cb4aff | 2010-03-23 13:35:38 -0700 | [diff] [blame^] | 79 | if (sec->length && reiserfs_xattrs_initialized(inode->i_sb)) { |
Jeff Mahoney | 57fe60d | 2009-03-30 14:02:41 -0400 | [diff] [blame] | 80 | blocks = reiserfs_xattr_jcreate_nblocks(inode) + |
| 81 | reiserfs_xattr_nblocks(inode, sec->length); |
| 82 | /* We don't want to count the directories twice if we have |
| 83 | * a default ACL. */ |
| 84 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
| 85 | } |
| 86 | return blocks; |
| 87 | } |
| 88 | |
| 89 | int reiserfs_security_write(struct reiserfs_transaction_handle *th, |
| 90 | struct inode *inode, |
| 91 | struct reiserfs_security_handle *sec) |
| 92 | { |
| 93 | int error; |
| 94 | if (strlen(sec->name) < sizeof(XATTR_SECURITY_PREFIX)) |
| 95 | return -EINVAL; |
| 96 | |
| 97 | error = reiserfs_xattr_set_handle(th, inode, sec->name, sec->value, |
| 98 | sec->length, XATTR_CREATE); |
| 99 | if (error == -ENODATA || error == -EOPNOTSUPP) |
| 100 | error = 0; |
| 101 | |
| 102 | return error; |
| 103 | } |
| 104 | |
| 105 | void reiserfs_security_free(struct reiserfs_security_handle *sec) |
| 106 | { |
| 107 | kfree(sec->name); |
| 108 | kfree(sec->value); |
| 109 | sec->name = NULL; |
| 110 | sec->value = NULL; |
| 111 | } |
| 112 | |
Jeff Mahoney | 48b32a3 | 2009-03-30 14:02:38 -0400 | [diff] [blame] | 113 | struct xattr_handler reiserfs_xattr_security_handler = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | .prefix = XATTR_SECURITY_PREFIX, |
| 115 | .get = security_get, |
| 116 | .set = security_set, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | .list = security_list, |
| 118 | }; |