ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / fs / ext3 / xattr_user.c
1 /*
2  * linux/fs/ext3/xattr_user.c
3  * Handler for extended user attributes.
4  *
5  * Copyright (C) 2001 by Andreas Gruenbacher, <a.gruenbacher@computer.org>
6  */
7
8 #include <linux/module.h>
9 #include <linux/string.h>
10 #include <linux/fs.h>
11 #include <linux/smp_lock.h>
12 #include <linux/ext3_jbd.h>
13 #include <linux/ext3_fs.h>
14 #include "xattr.h"
15
16 #define XATTR_USER_PREFIX "user."
17
18 static size_t
19 ext3_xattr_user_list(char *list, struct inode *inode,
20                      const char *name, int name_len)
21 {
22         const int prefix_len = sizeof(XATTR_USER_PREFIX)-1;
23
24         if (!test_opt(inode->i_sb, XATTR_USER))
25                 return 0;
26
27         if (list) {
28                 memcpy(list, XATTR_USER_PREFIX, prefix_len);
29                 memcpy(list+prefix_len, name, name_len);
30                 list[prefix_len + name_len] = '\0';
31         }
32         return prefix_len + name_len + 1;
33 }
34
35 static int
36 ext3_xattr_user_get(struct inode *inode, const char *name,
37                     void *buffer, size_t size)
38 {
39         int error;
40
41         if (strcmp(name, "") == 0)
42                 return -EINVAL;
43         if (!test_opt(inode->i_sb, XATTR_USER))
44                 return -EOPNOTSUPP;
45         error = permission(inode, MAY_READ, NULL);
46         if (error)
47                 return error;
48
49         return ext3_xattr_get(inode, EXT3_XATTR_INDEX_USER, name, buffer, size);
50 }
51
52 static int
53 ext3_xattr_user_set(struct inode *inode, const char *name,
54                     const void *value, size_t size, int flags)
55 {
56         int error;
57
58         if (strcmp(name, "") == 0)
59                 return -EINVAL;
60         if (!test_opt(inode->i_sb, XATTR_USER))
61                 return -EOPNOTSUPP;
62         if ( !S_ISREG(inode->i_mode) &&
63             (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX))
64                 return -EPERM;
65         error = permission(inode, MAY_WRITE, NULL);
66         if (error)
67                 return error;
68
69         return ext3_xattr_set(inode, EXT3_XATTR_INDEX_USER, name,
70                               value, size, flags);
71 }
72
73 struct ext3_xattr_handler ext3_xattr_user_handler = {
74         .prefix = XATTR_USER_PREFIX,
75         .list   = ext3_xattr_user_list,
76         .get    = ext3_xattr_user_get,
77         .set    = ext3_xattr_user_set,
78 };