acl.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. File: sys/acl.h
  3. (C) 1999 Andreas Gruenbacher, <a.gruenbacher@computer.org>
  4. This program is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  15. */
  16. #ifndef __SYS_ACL_H
  17. #define __SYS_ACL_H
  18. #include <sys/types.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /*=== Data types ===*/
  23. struct __acl_ext;
  24. struct __acl_entry_ext;
  25. struct __acl_permset_ext;
  26. typedef unsigned int acl_type_t;
  27. typedef int acl_tag_t;
  28. typedef unsigned int acl_perm_t;
  29. typedef struct __acl_ext *acl_t;
  30. typedef struct __acl_entry_ext *acl_entry_t;
  31. typedef struct __acl_permset_ext *acl_permset_t;
  32. /*=== Constants ===*/
  33. /* 23.2.2 acl_perm_t values */
  34. #define ACL_READ (0x04)
  35. #define ACL_WRITE (0x02)
  36. #define ACL_EXECUTE (0x01)
  37. //#define ACL_ADD (0x08)
  38. //#define ACL_DELETE (0x10)
  39. /* 23.2.5 acl_tag_t values */
  40. #define ACL_UNDEFINED_TAG (0x00)
  41. #define ACL_USER_OBJ (0x01)
  42. #define ACL_USER (0x02)
  43. #define ACL_GROUP_OBJ (0x04)
  44. #define ACL_GROUP (0x08)
  45. #define ACL_MASK (0x10)
  46. #define ACL_OTHER (0x20)
  47. /* 23.3.6 acl_type_t values */
  48. #define ACL_TYPE_ACCESS (0x8000)
  49. #define ACL_TYPE_DEFAULT (0x4000)
  50. /* 23.2.7 ACL qualifier constants */
  51. #define ACL_UNDEFINED_ID ((id_t)-1)
  52. /* 23.2.8 ACL Entry Constants */
  53. #define ACL_FIRST_ENTRY 0
  54. #define ACL_NEXT_ENTRY 1
  55. /*=== ACL manipulation ===*/
  56. extern acl_t acl_init(int count);
  57. extern acl_t acl_dup(acl_t acl);
  58. extern int acl_free(void *obj_p);
  59. extern int acl_valid(acl_t acl);
  60. /*=== Entry manipulation ===*/
  61. extern int
  62. acl_copy_entry(acl_entry_t dest_d, acl_entry_t src_d);
  63. extern int acl_create_entry(acl_t *acl_p, acl_entry_t *entry_p);
  64. extern int acl_delete_entry(acl_t acl, acl_entry_t entry_d);
  65. extern int acl_get_entry(acl_t acl, int entry_id, acl_entry_t *entry_p);
  66. /* Manipulate ACL entry permissions */
  67. extern int acl_add_perm(acl_permset_t permset_d, acl_perm_t perm);
  68. extern int acl_calc_mask(acl_t *acl_p);
  69. extern int acl_clear_perms(acl_permset_t permset_d);
  70. extern int acl_delete_perm(acl_permset_t permset_d, acl_perm_t perm);
  71. extern int acl_get_permset(acl_entry_t entry_d, acl_permset_t *permset_p);
  72. extern int acl_set_permset(acl_entry_t entry_d, acl_permset_t permset_d);
  73. /* Manipulate ACL entry tag type and qualifier */
  74. extern void * acl_get_qualifier(acl_entry_t entry_d);
  75. extern int acl_get_tag_type(acl_entry_t entry_d, acl_tag_t *tag_type_p);
  76. extern int acl_set_qualifier(acl_entry_t entry_d, const void *tag_qualifier_p);
  77. extern int acl_set_tag_type(acl_entry_t entry_d, acl_tag_t tag_type);
  78. /*=== Format translation ===*/
  79. extern ssize_t acl_copy_ext(void *buf_p, acl_t acl, ssize_t size);
  80. extern acl_t acl_copy_int(const void *buf_p);
  81. extern acl_t acl_from_text(const char *buf_p);
  82. extern ssize_t acl_size(acl_t acl);
  83. extern char *acl_to_text(acl_t acl, ssize_t *len_p);
  84. /*=== Object manipulation ===*/
  85. extern int acl_delete_def_file(const char *path_p);
  86. extern acl_t acl_get_fd(int fd);
  87. extern acl_t acl_get_file(const char *path_p, acl_type_t type);
  88. extern int acl_set_fd(int fd, acl_t acl);
  89. extern int acl_set_file(const char *path_p, acl_type_t type, acl_t acl);
  90. #ifdef __cplusplus
  91. }
  92. #endif
  93. #endif /* __SYS_ACL_H */