ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / fs / ext2 / xattr_security.c
1 /*
2  * linux/fs/ext2/xattr_security.c
3  * Handler for storing security labels as extended attributes.
4  */
5
6 #include <linux/module.h>
7 #include <linux/string.h>
8 #include <linux/fs.h>
9 #include <linux/smp_lock.h>
10 #include <linux/ext2_fs.h>
11 #include "xattr.h"
12
13 static size_t
14 ext2_xattr_security_list(char *list, struct inode *inode,
15                         const char *name, int name_len)
16 {
17         const int prefix_len = sizeof(XATTR_SECURITY_PREFIX)-1;
18
19         if (list) {
20                 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
21                 memcpy(list+prefix_len, name, name_len);
22                 list[prefix_len + name_len] = '\0';
23         }
24         return prefix_len + name_len + 1;
25 }
26
27 static int
28 ext2_xattr_security_get(struct inode *inode, const char *name,
29                        void *buffer, size_t size)
30 {
31         if (strcmp(name, "") == 0)
32                 return -EINVAL;
33         return ext2_xattr_get(inode, EXT2_XATTR_INDEX_SECURITY, name,
34                               buffer, size);
35 }
36
37 static int
38 ext2_xattr_security_set(struct inode *inode, const char *name,
39                        const void *value, size_t size, int flags)
40 {
41         if (strcmp(name, "") == 0)
42                 return -EINVAL;
43         return ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY, name,
44                               value, size, flags);
45 }
46
47 struct ext2_xattr_handler ext2_xattr_security_handler = {
48         .prefix = XATTR_SECURITY_PREFIX,
49         .list   = ext2_xattr_security_list,
50         .get    = ext2_xattr_security_get,
51         .set    = ext2_xattr_security_set,
52 };