blob: dfb08750370d85d71a7fc89bef68345229b7740d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext2/xattr_security.c
3 * Handler for storing security labels as extended attributes.
4 */
5
Al Virof7699f22012-03-23 16:45:51 -04006#include "ext2.h"
Stephen Smalley10f47e62005-09-09 13:01:39 -07007#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include "xattr.h"
9
10static size_t
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020011ext2_xattr_security_list(const struct xattr_handler *handler,
12 struct dentry *dentry, char *list, size_t list_size,
13 const char *name, size_t name_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014{
Shen Fengf905f062008-07-25 01:46:15 -070015 const int prefix_len = XATTR_SECURITY_PREFIX_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 const size_t total_len = prefix_len + name_len + 1;
17
18 if (list && total_len <= list_size) {
19 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
20 memcpy(list+prefix_len, name, name_len);
21 list[prefix_len + name_len] = '\0';
22 }
23 return total_len;
24}
25
26static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020027ext2_xattr_security_get(const struct xattr_handler *handler,
28 struct dentry *dentry, const char *name,
29 void *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 if (strcmp(name, "") == 0)
32 return -EINVAL;
David Howells2b0143b2015-03-17 22:25:59 +000033 return ext2_xattr_get(d_inode(dentry), EXT2_XATTR_INDEX_SECURITY, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 buffer, size);
35}
36
37static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020038ext2_xattr_security_set(const struct xattr_handler *handler,
39 struct dentry *dentry, const char *name,
40 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 if (strcmp(name, "") == 0)
43 return -EINVAL;
David Howells2b0143b2015-03-17 22:25:59 +000044 return ext2_xattr_set(d_inode(dentry), EXT2_XATTR_INDEX_SECURITY, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 value, size, flags);
46}
47
Rashika Kheria17cd48e2014-02-09 18:34:10 +053048static int ext2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
49 void *fs_info)
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040050{
51 const struct xattr *xattr;
52 int err = 0;
53
54 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
55 err = ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY,
56 xattr->name, xattr->value,
57 xattr->value_len, 0);
58 if (err < 0)
59 break;
60 }
61 return err;
62}
63
Stephen Smalley10f47e62005-09-09 13:01:39 -070064int
Eric Paris2a7dba32011-02-01 11:05:39 -050065ext2_init_security(struct inode *inode, struct inode *dir,
66 const struct qstr *qstr)
Stephen Smalley10f47e62005-09-09 13:01:39 -070067{
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040068 return security_inode_init_security(inode, dir, qstr,
69 &ext2_initxattrs, NULL);
Stephen Smalley10f47e62005-09-09 13:01:39 -070070}
71
Stephen Hemminger749c72ef2010-05-13 17:53:16 -070072const struct xattr_handler ext2_xattr_security_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 .prefix = XATTR_SECURITY_PREFIX,
74 .list = ext2_xattr_security_list,
75 .get = ext2_xattr_security_get,
76 .set = ext2_xattr_security_set,
77};