Merge branch 'master'
[linux-block.git] / include / linux / reiserfs_acl.h
CommitLineData
1da177e4
LT
1#include <linux/init.h>
2#include <linux/posix_acl.h>
1da177e4
LT
3
4#define REISERFS_ACL_VERSION 0x0001
5
6typedef struct {
bd4c625c
LT
7 __le16 e_tag;
8 __le16 e_perm;
9 __le32 e_id;
1da177e4
LT
10} reiserfs_acl_entry;
11
12typedef struct {
bd4c625c
LT
13 __le16 e_tag;
14 __le16 e_perm;
1da177e4
LT
15} reiserfs_acl_entry_short;
16
17typedef struct {
bd4c625c 18 __le32 a_version;
1da177e4
LT
19} reiserfs_acl_header;
20
21static inline size_t reiserfs_acl_size(int count)
22{
23 if (count <= 4) {
24 return sizeof(reiserfs_acl_header) +
bd4c625c 25 count * sizeof(reiserfs_acl_entry_short);
1da177e4
LT
26 } else {
27 return sizeof(reiserfs_acl_header) +
bd4c625c
LT
28 4 * sizeof(reiserfs_acl_entry_short) +
29 (count - 4) * sizeof(reiserfs_acl_entry);
1da177e4
LT
30 }
31}
32
33static inline int reiserfs_acl_count(size_t size)
34{
35 ssize_t s;
36 size -= sizeof(reiserfs_acl_header);
37 s = size - 4 * sizeof(reiserfs_acl_entry_short);
38 if (s < 0) {
39 if (size % sizeof(reiserfs_acl_entry_short))
40 return -1;
41 return size / sizeof(reiserfs_acl_entry_short);
42 } else {
43 if (s % sizeof(reiserfs_acl_entry))
44 return -1;
45 return s / sizeof(reiserfs_acl_entry) + 4;
46 }
47}
48
1da177e4 49#ifdef CONFIG_REISERFS_FS_POSIX_ACL
bd4c625c
LT
50struct posix_acl *reiserfs_get_acl(struct inode *inode, int type);
51int reiserfs_acl_chmod(struct inode *inode);
52int reiserfs_inherit_default_acl(struct inode *dir, struct dentry *dentry,
53 struct inode *inode);
54int reiserfs_cache_default_acl(struct inode *dir);
55extern int reiserfs_xattr_posix_acl_init(void) __init;
56extern int reiserfs_xattr_posix_acl_exit(void);
1da177e4
LT
57extern struct reiserfs_xattr_handler posix_acl_default_handler;
58extern struct reiserfs_xattr_handler posix_acl_access_handler;
59#else
60
1da177e4
LT
61#define reiserfs_cache_default_acl(inode) 0
62
bc5e483d
AM
63static inline struct posix_acl *reiserfs_get_acl(struct inode *inode, int type)
64{
65 return NULL;
66}
67
bd4c625c 68static inline int reiserfs_xattr_posix_acl_init(void)
1da177e4 69{
bd4c625c 70 return 0;
1da177e4
LT
71}
72
bd4c625c 73static inline int reiserfs_xattr_posix_acl_exit(void)
1da177e4 74{
bd4c625c 75 return 0;
1da177e4
LT
76}
77
bd4c625c 78static inline int reiserfs_acl_chmod(struct inode *inode)
1da177e4 79{
bd4c625c 80 return 0;
1da177e4
LT
81}
82
83static inline int
bd4c625c
LT
84reiserfs_inherit_default_acl(const struct inode *dir, struct dentry *dentry,
85 struct inode *inode)
1da177e4 86{
bd4c625c 87 return 0;
1da177e4
LT
88}
89
90#endif