new helper: ext2_image_size()
[deliverable/linux.git] / fs / ext2 / xattr_security.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/ext2/xattr_security.c
3 * Handler for storing security labels as extended attributes.
4 */
5
5a0e3ad6 6#include <linux/slab.h>
1da177e4
LT
7#include <linux/string.h>
8#include <linux/fs.h>
1da177e4 9#include <linux/ext2_fs.h>
10f47e6a 10#include <linux/security.h>
1da177e4
LT
11#include "xattr.h"
12
13static size_t
431547b3
CH
14ext2_xattr_security_list(struct dentry *dentry, char *list, size_t list_size,
15 const char *name, size_t name_len, int type)
1da177e4 16{
f905f06f 17 const int prefix_len = XATTR_SECURITY_PREFIX_LEN;
1da177e4
LT
18 const size_t total_len = prefix_len + name_len + 1;
19
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';
24 }
25 return total_len;
26}
27
28static int
431547b3
CH
29ext2_xattr_security_get(struct dentry *dentry, const char *name,
30 void *buffer, size_t size, int type)
1da177e4
LT
31{
32 if (strcmp(name, "") == 0)
33 return -EINVAL;
431547b3 34 return ext2_xattr_get(dentry->d_inode, EXT2_XATTR_INDEX_SECURITY, name,
1da177e4
LT
35 buffer, size);
36}
37
38static int
431547b3
CH
39ext2_xattr_security_set(struct dentry *dentry, const char *name,
40 const void *value, size_t size, int flags, int type)
1da177e4
LT
41{
42 if (strcmp(name, "") == 0)
43 return -EINVAL;
431547b3 44 return ext2_xattr_set(dentry->d_inode, EXT2_XATTR_INDEX_SECURITY, name,
1da177e4
LT
45 value, size, flags);
46}
47
9d8f13ba
MZ
48int ext2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
49 void *fs_info)
10f47e6a 50{
9d8f13ba
MZ
51 const struct xattr *xattr;
52 int err = 0;
10f47e6a 53
9d8f13ba
MZ
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;
10f47e6a 60 }
10f47e6a
SS
61 return err;
62}
63
9d8f13ba
MZ
64int
65ext2_init_security(struct inode *inode, struct inode *dir,
66 const struct qstr *qstr)
67{
68 return security_inode_init_security(inode, dir, qstr,
69 &ext2_initxattrs, NULL);
70}
71
749c72ef 72const struct xattr_handler ext2_xattr_security_handler = {
1da177e4
LT
73 .prefix = XATTR_SECURITY_PREFIX,
74 .list = ext2_xattr_security_list,
75 .get = ext2_xattr_security_get,
76 .set = ext2_xattr_security_set,
77};
This page took 0.53682 seconds and 5 git commands to generate.