blob: 958fcaca0e8b71a92b7f301a49b042af59bf8a43 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 File: linux/reiserfs_xattr.h
3*/
4
Adrian Bunk521dae12007-02-10 01:46:24 -08005#ifndef _LINUX_REISERFS_XATTR_H
6#define _LINUX_REISERFS_XATTR_H
7
8#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10/* Magic value in header */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070011#define REISERFS_XATTR_MAGIC 0x52465841 /* "RFXA" */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13struct reiserfs_xattr_header {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070014 __le32 h_magic; /* magic number for identification */
15 __le32 h_hash; /* hash of the value */
Linus Torvalds1da177e2005-04-16 15:20:36 -070016};
17
18#ifdef __KERNEL__
Adrian Bunk521dae12007-02-10 01:46:24 -080019
David Woodhouse98ca79d2006-04-25 14:52:51 +010020#include <linux/init.h>
Adrian Bunk521dae12007-02-10 01:46:24 -080021#include <linux/list.h>
22#include <linux/rwsem.h>
23#include <linux/reiserfs_fs_i.h>
24#include <linux/reiserfs_fs.h>
25
26struct inode;
27struct dentry;
28struct iattr;
29struct super_block;
30struct nameidata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Jeff Mahoneya72bdb12009-03-30 14:02:33 -040032int reiserfs_xattr_register_handlers(void) __init;
33void reiserfs_xattr_unregister_handlers(void);
34int reiserfs_xattr_init(struct super_block *sb, int mount_flags);
35int reiserfs_delete_xattrs(struct inode *inode);
36int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs);
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#ifdef CONFIG_REISERFS_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define has_xattr_dir(inode) (REISERFS_I(inode)->i_flags & i_has_xattr_dir)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070040ssize_t reiserfs_getxattr(struct dentry *dentry, const char *name,
41 void *buffer, size_t size);
42int reiserfs_setxattr(struct dentry *dentry, const char *name,
43 const void *value, size_t size, int flags);
44ssize_t reiserfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
45int reiserfs_removexattr(struct dentry *dentry, const char *name);
Al Viroe6305c42008-07-15 21:03:57 -040046int reiserfs_permission(struct inode *inode, int mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Jeff Mahoney48b32a32009-03-30 14:02:38 -040048int reiserfs_xattr_get(struct inode *, const char *, void *, size_t);
49int __reiserfs_xattr_set(struct inode *, const char *, const void *,
50 size_t, int);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070051int reiserfs_xattr_set(struct inode *, const char *, const void *, size_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Jeff Mahoney48b32a32009-03-30 14:02:38 -040053extern struct xattr_handler reiserfs_xattr_user_handler;
54extern struct xattr_handler reiserfs_xattr_trusted_handler;
55extern struct xattr_handler reiserfs_xattr_security_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Alexey Dobriyan068fbb32006-09-29 01:59:58 -070057static inline void reiserfs_init_xattr_rwsem(struct inode *inode)
58{
Jeff Mahoneyd9845612009-03-30 14:02:35 -040059 init_rwsem(&REISERFS_I(inode)->i_xattr_sem);
Alexey Dobriyan068fbb32006-09-29 01:59:58 -070060}
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#else
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define reiserfs_getxattr NULL
65#define reiserfs_setxattr NULL
66#define reiserfs_listxattr NULL
67#define reiserfs_removexattr NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define reiserfs_permission NULL
70
Alexey Dobriyan068fbb32006-09-29 01:59:58 -070071static inline void reiserfs_init_xattr_rwsem(struct inode *inode)
72{
73}
Adrian Bunk521dae12007-02-10 01:46:24 -080074#endif /* CONFIG_REISERFS_FS_XATTR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Adrian Bunk521dae12007-02-10 01:46:24 -080076#endif /* __KERNEL__ */
77
78#endif /* _LINUX_REISERFS_XATTR_H */