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