reiserfs_xattr.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.   File: linux/reiserfs_xattr.h
  3. */
  4. #include <linux/config.h>
  5. #include <linux/init.h>
  6. #include <linux/xattr.h>
  7. /* Magic value in header */
  8. #define REISERFS_XATTR_MAGIC 0x52465841 /* "RFXA" */
  9. struct reiserfs_xattr_header {
  10. __le32 h_magic; /* magic number for identification */
  11. __le32 h_hash; /* hash of the value */
  12. };
  13. #ifdef __KERNEL__
  14. struct reiserfs_xattr_handler {
  15. char *prefix;
  16. int (*init) (void);
  17. void (*exit) (void);
  18. int (*get) (struct inode * inode, const char *name, void *buffer,
  19.     size_t size);
  20. int (*set) (struct inode * inode, const char *name, const void *buffer,
  21.     size_t size, int flags);
  22. int (*del) (struct inode * inode, const char *name);
  23. int (*list) (struct inode * inode, const char *name, int namelen,
  24.      char *out);
  25. struct list_head handlers;
  26. };
  27. #ifdef CONFIG_REISERFS_FS_XATTR
  28. #define is_reiserfs_priv_object(inode) IS_PRIVATE(inode)
  29. #define has_xattr_dir(inode) (REISERFS_I(inode)->i_flags & i_has_xattr_dir)
  30. ssize_t reiserfs_getxattr(struct dentry *dentry, const char *name,
  31.   void *buffer, size_t size);
  32. int reiserfs_setxattr(struct dentry *dentry, const char *name,
  33.       const void *value, size_t size, int flags);
  34. ssize_t reiserfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
  35. int reiserfs_removexattr(struct dentry *dentry, const char *name);
  36. int reiserfs_delete_xattrs(struct inode *inode);
  37. int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs);
  38. int reiserfs_xattr_init(struct super_block *sb, int mount_flags);
  39. int reiserfs_permission(struct inode *inode, int mask, struct nameidata *nd);
  40. int reiserfs_permission_locked(struct inode *inode, int mask,
  41.        struct nameidata *nd);
  42. int reiserfs_xattr_del(struct inode *, const char *);
  43. int reiserfs_xattr_get(const struct inode *, const char *, void *, size_t);
  44. int reiserfs_xattr_set(struct inode *, const char *, const void *, size_t, int);
  45. extern struct reiserfs_xattr_handler user_handler;
  46. extern struct reiserfs_xattr_handler trusted_handler;
  47. #ifdef CONFIG_REISERFS_FS_SECURITY
  48. extern struct reiserfs_xattr_handler security_handler;
  49. #endif
  50. int reiserfs_xattr_register_handlers(void) __init;
  51. void reiserfs_xattr_unregister_handlers(void);
  52. static inline void reiserfs_write_lock_xattrs(struct super_block *sb)
  53. {
  54. down_write(&REISERFS_XATTR_DIR_SEM(sb));
  55. }
  56. static inline void reiserfs_write_unlock_xattrs(struct super_block *sb)
  57. {
  58. up_write(&REISERFS_XATTR_DIR_SEM(sb));
  59. }
  60. static inline void reiserfs_read_lock_xattrs(struct super_block *sb)
  61. {
  62. down_read(&REISERFS_XATTR_DIR_SEM(sb));
  63. }
  64. static inline void reiserfs_read_unlock_xattrs(struct super_block *sb)
  65. {
  66. up_read(&REISERFS_XATTR_DIR_SEM(sb));
  67. }
  68. static inline void reiserfs_write_lock_xattr_i(struct inode *inode)
  69. {
  70. down_write(&REISERFS_I(inode)->xattr_sem);
  71. }
  72. static inline void reiserfs_write_unlock_xattr_i(struct inode *inode)
  73. {
  74. up_write(&REISERFS_I(inode)->xattr_sem);
  75. }
  76. static inline void reiserfs_read_lock_xattr_i(struct inode *inode)
  77. {
  78. down_read(&REISERFS_I(inode)->xattr_sem);
  79. }
  80. static inline void reiserfs_read_unlock_xattr_i(struct inode *inode)
  81. {
  82. up_read(&REISERFS_I(inode)->xattr_sem);
  83. }
  84. static inline void reiserfs_mark_inode_private(struct inode *inode)
  85. {
  86. inode->i_flags |= S_PRIVATE;
  87. }
  88. #else
  89. #define is_reiserfs_priv_object(inode) 0
  90. #define reiserfs_mark_inode_private(inode)
  91. #define reiserfs_getxattr NULL
  92. #define reiserfs_setxattr NULL
  93. #define reiserfs_listxattr NULL
  94. #define reiserfs_removexattr NULL
  95. #define reiserfs_write_lock_xattrs(sb)
  96. #define reiserfs_write_unlock_xattrs(sb)
  97. #define reiserfs_read_lock_xattrs(sb)
  98. #define reiserfs_read_unlock_xattrs(sb)
  99. #define reiserfs_permission NULL
  100. #define reiserfs_xattr_register_handlers() 0
  101. #define reiserfs_xattr_unregister_handlers()
  102. static inline int reiserfs_delete_xattrs(struct inode *inode)
  103. {
  104. return 0;
  105. };
  106. static inline int reiserfs_chown_xattrs(struct inode *inode,
  107. struct iattr *attrs)
  108. {
  109. return 0;
  110. };
  111. static inline int reiserfs_xattr_init(struct super_block *sb, int mount_flags)
  112. {
  113. sb->s_flags = (sb->s_flags & ~MS_POSIXACL); /* to be sure */
  114. return 0;
  115. };
  116. #endif
  117. #endif /* __KERNEL__ */