->permission() sanitizing: don't pass flags to ->permission()
[linux-2.6-block.git] / include / linux / reiserfs_xattr.h
1 /*
2   File: linux/reiserfs_xattr.h
3 */
4
5 #ifndef _LINUX_REISERFS_XATTR_H
6 #define _LINUX_REISERFS_XATTR_H
7
8 #include <linux/types.h>
9
10 /* Magic value in header */
11 #define REISERFS_XATTR_MAGIC 0x52465841 /* "RFXA" */
12
13 struct reiserfs_xattr_header {
14         __le32 h_magic;         /* magic number for identification */
15         __le32 h_hash;          /* hash of the value */
16 };
17
18 struct reiserfs_security_handle {
19         char *name;
20         void *value;
21         size_t length;
22 };
23
24 #ifdef __KERNEL__
25
26 #include <linux/init.h>
27 #include <linux/list.h>
28 #include <linux/rwsem.h>
29 #include <linux/reiserfs_fs_i.h>
30 #include <linux/reiserfs_fs.h>
31
32 struct inode;
33 struct dentry;
34 struct iattr;
35 struct super_block;
36 struct nameidata;
37
38 int reiserfs_xattr_register_handlers(void) __init;
39 void reiserfs_xattr_unregister_handlers(void);
40 int reiserfs_xattr_init(struct super_block *sb, int mount_flags);
41 int reiserfs_lookup_privroot(struct super_block *sb);
42 int reiserfs_delete_xattrs(struct inode *inode);
43 int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs);
44 int reiserfs_permission(struct inode *inode, int mask);
45
46 #ifdef CONFIG_REISERFS_FS_XATTR
47 #define has_xattr_dir(inode) (REISERFS_I(inode)->i_flags & i_has_xattr_dir)
48 int reiserfs_check_acl(struct inode *inode, int mask);
49 ssize_t reiserfs_getxattr(struct dentry *dentry, const char *name,
50                           void *buffer, size_t size);
51 int reiserfs_setxattr(struct dentry *dentry, const char *name,
52                       const void *value, size_t size, int flags);
53 ssize_t reiserfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
54 int reiserfs_removexattr(struct dentry *dentry, const char *name);
55
56 int reiserfs_xattr_get(struct inode *, const char *, void *, size_t);
57 int reiserfs_xattr_set(struct inode *, const char *, const void *, size_t, int);
58 int reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *,
59                               struct inode *, const char *, const void *,
60                               size_t, int);
61
62 extern const struct xattr_handler reiserfs_xattr_user_handler;
63 extern const struct xattr_handler reiserfs_xattr_trusted_handler;
64 extern const struct xattr_handler reiserfs_xattr_security_handler;
65 #ifdef CONFIG_REISERFS_FS_SECURITY
66 int reiserfs_security_init(struct inode *dir, struct inode *inode,
67                            const struct qstr *qstr,
68                            struct reiserfs_security_handle *sec);
69 int reiserfs_security_write(struct reiserfs_transaction_handle *th,
70                             struct inode *inode,
71                             struct reiserfs_security_handle *sec);
72 void reiserfs_security_free(struct reiserfs_security_handle *sec);
73 #endif
74
75 static inline int reiserfs_xattrs_initialized(struct super_block *sb)
76 {
77         return REISERFS_SB(sb)->priv_root != NULL;
78 }
79
80 #define xattr_size(size) ((size) + sizeof(struct reiserfs_xattr_header))
81 static inline loff_t reiserfs_xattr_nblocks(struct inode *inode, loff_t size)
82 {
83         loff_t ret = 0;
84         if (reiserfs_file_data_log(inode)) {
85                 ret = _ROUND_UP(xattr_size(size), inode->i_sb->s_blocksize);
86                 ret >>= inode->i_sb->s_blocksize_bits;
87         }
88         return ret;
89 }
90
91 /* We may have to create up to 3 objects: xattr root, xattr dir, xattr file.
92  * Let's try to be smart about it.
93  * xattr root: We cache it. If it's not cached, we may need to create it.
94  * xattr dir: If anything has been loaded for this inode, we can set a flag
95  *            saying so.
96  * xattr file: Since we don't cache xattrs, we can't tell. We always include
97  *             blocks for it.
98  *
99  * However, since root and dir can be created between calls - YOU MUST SAVE
100  * THIS VALUE.
101  */
102 static inline size_t reiserfs_xattr_jcreate_nblocks(struct inode *inode)
103 {
104         size_t nblocks = JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);
105
106         if ((REISERFS_I(inode)->i_flags & i_has_xattr_dir) == 0) {
107                 nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);
108                 if (!REISERFS_SB(inode->i_sb)->xattr_root->d_inode)
109                         nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);
110         }
111
112         return nblocks;
113 }
114
115 static inline void reiserfs_init_xattr_rwsem(struct inode *inode)
116 {
117         init_rwsem(&REISERFS_I(inode)->i_xattr_sem);
118 }
119
120 #else
121
122 #define reiserfs_getxattr NULL
123 #define reiserfs_setxattr NULL
124 #define reiserfs_listxattr NULL
125 #define reiserfs_removexattr NULL
126 #define reiserfs_check_acl NULL
127
128 static inline void reiserfs_init_xattr_rwsem(struct inode *inode)
129 {
130 }
131 #endif  /*  CONFIG_REISERFS_FS_XATTR  */
132
133 #ifndef CONFIG_REISERFS_FS_SECURITY
134 static inline int reiserfs_security_init(struct inode *dir,
135                                          struct inode *inode,
136                                          const struct qstr *qstr,
137                                          struct reiserfs_security_handle *sec)
138 {
139         return 0;
140 }
141 static inline int
142 reiserfs_security_write(struct reiserfs_transaction_handle *th,
143                         struct inode *inode,
144                         struct reiserfs_security_handle *sec)
145 {
146         return 0;
147 }
148 static inline void reiserfs_security_free(struct reiserfs_security_handle *sec)
149 {}
150 #endif
151
152 #endif  /*  __KERNEL__  */
153
154 #endif  /*  _LINUX_REISERFS_XATTR_H  */