acl.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. File: fs/ext2/acl.h
  3. (C) 2001 Andreas Gruenbacher, <a.gruenbacher@computer.org>
  4. */
  5. #include <linux/posix_acl_xattr.h>
  6. #define EXT2_ACL_VERSION 0x0001
  7. typedef struct {
  8. __le16 e_tag;
  9. __le16 e_perm;
  10. __le32 e_id;
  11. } ext2_acl_entry;
  12. typedef struct {
  13. __le16 e_tag;
  14. __le16 e_perm;
  15. } ext2_acl_entry_short;
  16. typedef struct {
  17. __le32 a_version;
  18. } ext2_acl_header;
  19. static inline size_t ext2_acl_size(int count)
  20. {
  21. if (count <= 4) {
  22. return sizeof(ext2_acl_header) +
  23. count * sizeof(ext2_acl_entry_short);
  24. } else {
  25. return sizeof(ext2_acl_header) +
  26. 4 * sizeof(ext2_acl_entry_short) +
  27. (count - 4) * sizeof(ext2_acl_entry);
  28. }
  29. }
  30. static inline int ext2_acl_count(size_t size)
  31. {
  32. ssize_t s;
  33. size -= sizeof(ext2_acl_header);
  34. s = size - 4 * sizeof(ext2_acl_entry_short);
  35. if (s < 0) {
  36. if (size % sizeof(ext2_acl_entry_short))
  37. return -1;
  38. return size / sizeof(ext2_acl_entry_short);
  39. } else {
  40. if (s % sizeof(ext2_acl_entry))
  41. return -1;
  42. return s / sizeof(ext2_acl_entry) + 4;
  43. }
  44. }
  45. #ifdef CONFIG_EXT2_FS_POSIX_ACL
  46. /* acl.c */
  47. extern struct posix_acl *ext2_get_acl(struct inode *inode, int type);
  48. extern int ext2_set_acl(struct inode *inode, struct posix_acl *acl, int type);
  49. extern int ext2_init_acl (struct inode *, struct inode *);
  50. #else
  51. #include <linux/sched.h>
  52. #define ext2_get_acl NULL
  53. #define ext2_set_acl NULL
  54. static inline int ext2_init_acl (struct inode *inode, struct inode *dir)
  55. {
  56. return 0;
  57. }
  58. #endif