| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * linux/fs/ext2/xattr_security.c | 
|  | 3 | * Handler for storing security labels as extended attributes. | 
|  | 4 | */ | 
|  | 5 |  | 
| Al Viro | f7699f2 | 2012-03-23 16:45:51 -0400 | [diff] [blame] | 6 | #include "ext2.h" | 
| Stephen Smalley | 10f47e6 | 2005-09-09 13:01:39 -0700 | [diff] [blame] | 7 | #include <linux/security.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include "xattr.h" | 
|  | 9 |  | 
|  | 10 | static size_t | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 11 | ext2_xattr_security_list(struct dentry *dentry, char *list, size_t list_size, | 
|  | 12 | const char *name, size_t name_len, int type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | { | 
| Shen Feng | f905f06 | 2008-07-25 01:46:15 -0700 | [diff] [blame] | 14 | const int prefix_len = XATTR_SECURITY_PREFIX_LEN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | const size_t total_len = prefix_len + name_len + 1; | 
|  | 16 |  | 
|  | 17 | if (list && total_len <= list_size) { | 
|  | 18 | memcpy(list, XATTR_SECURITY_PREFIX, prefix_len); | 
|  | 19 | memcpy(list+prefix_len, name, name_len); | 
|  | 20 | list[prefix_len + name_len] = '\0'; | 
|  | 21 | } | 
|  | 22 | return total_len; | 
|  | 23 | } | 
|  | 24 |  | 
|  | 25 | static int | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 26 | ext2_xattr_security_get(struct dentry *dentry, const char *name, | 
|  | 27 | void *buffer, size_t size, int type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { | 
|  | 29 | if (strcmp(name, "") == 0) | 
|  | 30 | return -EINVAL; | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 31 | return ext2_xattr_get(dentry->d_inode, EXT2_XATTR_INDEX_SECURITY, name, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | buffer, size); | 
|  | 33 | } | 
|  | 34 |  | 
|  | 35 | static int | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 36 | ext2_xattr_security_set(struct dentry *dentry, const char *name, | 
|  | 37 | const void *value, size_t size, int flags, int type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | { | 
|  | 39 | if (strcmp(name, "") == 0) | 
|  | 40 | return -EINVAL; | 
| Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 41 | return ext2_xattr_set(dentry->d_inode, EXT2_XATTR_INDEX_SECURITY, name, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | value, size, flags); | 
|  | 43 | } | 
|  | 44 |  | 
| Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 45 | int ext2_initxattrs(struct inode *inode, const struct xattr *xattr_array, | 
|  | 46 | void *fs_info) | 
|  | 47 | { | 
|  | 48 | const struct xattr *xattr; | 
|  | 49 | int err = 0; | 
|  | 50 |  | 
|  | 51 | for (xattr = xattr_array; xattr->name != NULL; xattr++) { | 
|  | 52 | err = ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY, | 
|  | 53 | xattr->name, xattr->value, | 
|  | 54 | xattr->value_len, 0); | 
|  | 55 | if (err < 0) | 
|  | 56 | break; | 
|  | 57 | } | 
|  | 58 | return err; | 
|  | 59 | } | 
|  | 60 |  | 
| Stephen Smalley | 10f47e6 | 2005-09-09 13:01:39 -0700 | [diff] [blame] | 61 | int | 
| Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 62 | ext2_init_security(struct inode *inode, struct inode *dir, | 
|  | 63 | const struct qstr *qstr) | 
| Stephen Smalley | 10f47e6 | 2005-09-09 13:01:39 -0700 | [diff] [blame] | 64 | { | 
| Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 65 | return security_inode_init_security(inode, dir, qstr, | 
|  | 66 | &ext2_initxattrs, NULL); | 
| Stephen Smalley | 10f47e6 | 2005-09-09 13:01:39 -0700 | [diff] [blame] | 67 | } | 
|  | 68 |  | 
| Stephen Hemminger | 749c72e | 2010-05-13 17:53:16 -0700 | [diff] [blame] | 69 | const struct xattr_handler ext2_xattr_security_handler = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | .prefix	= XATTR_SECURITY_PREFIX, | 
|  | 71 | .list	= ext2_xattr_security_list, | 
|  | 72 | .get	= ext2_xattr_security_get, | 
|  | 73 | .set	= ext2_xattr_security_set, | 
|  | 74 | }; |