2 * linux/fs/ext2/xattr_security.c
3 * Handler for storing security labels as extended attributes.
6 #include <linux/module.h>
7 #include <linux/string.h>
9 #include <linux/ext2_fs.h>
10 #include <linux/security.h>
14 ext2_xattr_security_list(struct inode
*inode
, char *list
, size_t list_size
,
15 const char *name
, size_t name_len
)
17 const int prefix_len
= XATTR_SECURITY_PREFIX_LEN
;
18 const size_t total_len
= prefix_len
+ name_len
+ 1;
20 if (list
&& total_len
<= list_size
) {
21 memcpy(list
, XATTR_SECURITY_PREFIX
, prefix_len
);
22 memcpy(list
+prefix_len
, name
, name_len
);
23 list
[prefix_len
+ name_len
] = '\0';
29 ext2_xattr_security_get(struct inode
*inode
, const char *name
,
30 void *buffer
, size_t size
)
32 if (strcmp(name
, "") == 0)
34 return ext2_xattr_get(inode
, EXT2_XATTR_INDEX_SECURITY
, name
,
39 ext2_xattr_security_set(struct inode
*inode
, const char *name
,
40 const void *value
, size_t size
, int flags
)
42 if (strcmp(name
, "") == 0)
44 return ext2_xattr_set(inode
, EXT2_XATTR_INDEX_SECURITY
, name
,
49 ext2_init_security(struct inode
*inode
, struct inode
*dir
)
56 err
= security_inode_init_security(inode
, dir
, &name
, &value
, &len
);
58 if (err
== -EOPNOTSUPP
)
62 err
= ext2_xattr_set(inode
, EXT2_XATTR_INDEX_SECURITY
,
69 struct xattr_handler ext2_xattr_security_handler
= {
70 .prefix
= XATTR_SECURITY_PREFIX
,
71 .list
= ext2_xattr_security_list
,
72 .get
= ext2_xattr_security_get
,
73 .set
= ext2_xattr_security_set
,