]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/linux/reiserfs_xattr.h
reiserfs: journaled xattrs
[linux-2.6-omap-h63xx.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 #ifdef __KERNEL__
19
20 #include <linux/init.h>
21 #include <linux/list.h>
22 #include <linux/rwsem.h>
23 #include <linux/reiserfs_fs_i.h>
24 #include <linux/reiserfs_fs.h>
25
26 struct inode;
27 struct dentry;
28 struct iattr;
29 struct super_block;
30 struct nameidata;
31
32 int reiserfs_xattr_register_handlers(void) __init;
33 void reiserfs_xattr_unregister_handlers(void);
34 int reiserfs_xattr_init(struct super_block *sb, int mount_flags);
35 int reiserfs_delete_xattrs(struct inode *inode);
36 int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs);
37
38 #ifdef CONFIG_REISERFS_FS_XATTR
39 #define has_xattr_dir(inode) (REISERFS_I(inode)->i_flags & i_has_xattr_dir)
40 ssize_t reiserfs_getxattr(struct dentry *dentry, const char *name,
41                           void *buffer, size_t size);
42 int reiserfs_setxattr(struct dentry *dentry, const char *name,
43                       const void *value, size_t size, int flags);
44 ssize_t reiserfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
45 int reiserfs_removexattr(struct dentry *dentry, const char *name);
46 int reiserfs_permission(struct inode *inode, int mask);
47
48 int reiserfs_xattr_get(struct inode *, const char *, void *, size_t);
49 int reiserfs_xattr_set(struct inode *, const char *, const void *, size_t, int);
50 int reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *,
51                               struct inode *, const char *, const void *,
52                               size_t, int);
53
54 extern struct xattr_handler reiserfs_xattr_user_handler;
55 extern struct xattr_handler reiserfs_xattr_trusted_handler;
56 extern struct xattr_handler reiserfs_xattr_security_handler;
57
58 #define xattr_size(size) ((size) + sizeof(struct reiserfs_xattr_header))
59 static inline loff_t reiserfs_xattr_nblocks(struct inode *inode, loff_t size)
60 {
61         loff_t ret = 0;
62         if (reiserfs_file_data_log(inode)) {
63                 ret = _ROUND_UP(xattr_size(size), inode->i_sb->s_blocksize);
64                 ret >>= inode->i_sb->s_blocksize_bits;
65         }
66         return ret;
67 }
68
69 /* We may have to create up to 3 objects: xattr root, xattr dir, xattr file.
70  * Let's try to be smart about it.
71  * xattr root: We cache it. If it's not cached, we may need to create it.
72  * xattr dir: If anything has been loaded for this inode, we can set a flag
73  *            saying so.
74  * xattr file: Since we don't cache xattrs, we can't tell. We always include
75  *             blocks for it.
76  *
77  * However, since root and dir can be created between calls - YOU MUST SAVE
78  * THIS VALUE.
79  */
80 static inline size_t reiserfs_xattr_jcreate_nblocks(struct inode *inode)
81 {
82         size_t nblocks = JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);
83
84         if ((REISERFS_I(inode)->i_flags & i_has_xattr_dir) == 0) {
85                 nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);
86                 if (REISERFS_SB(inode->i_sb)->xattr_root == NULL)
87                         nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);
88         }
89
90         return nblocks;
91 }
92
93 static inline void reiserfs_init_xattr_rwsem(struct inode *inode)
94 {
95         init_rwsem(&REISERFS_I(inode)->i_xattr_sem);
96 }
97
98 #else
99
100 #define reiserfs_getxattr NULL
101 #define reiserfs_setxattr NULL
102 #define reiserfs_listxattr NULL
103 #define reiserfs_removexattr NULL
104
105 #define reiserfs_permission NULL
106
107 static inline void reiserfs_init_xattr_rwsem(struct inode *inode)
108 {
109 }
110 #endif  /*  CONFIG_REISERFS_FS_XATTR  */
111
112 #endif  /*  __KERNEL__  */
113
114 #endif  /*  _LINUX_REISERFS_XATTR_H  */