avtab.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * An access vector table (avtab) is a hash table
  4. * of access vectors and transition types indexed
  5. * by a type pair and a class. An access vector
  6. * table is used to represent the type enforcement
  7. * tables.
  8. *
  9. * Author : Stephen Smalley, <[email protected]>
  10. */
  11. /* Updated: Frank Mayer <[email protected]> and Karl MacMillan <[email protected]>
  12. *
  13. * Added conditional policy language extensions
  14. *
  15. * Copyright (C) 2003 Tresys Technology, LLC
  16. *
  17. * Updated: Yuichi Nakamura <[email protected]>
  18. * Tuned number of hash slots for avtab to reduce memory usage
  19. */
  20. #ifndef _SS_AVTAB_H_
  21. #define _SS_AVTAB_H_
  22. #include "security.h"
  23. struct avtab_key {
  24. u16 source_type; /* source type */
  25. u16 target_type; /* target type */
  26. u16 target_class; /* target object class */
  27. #define AVTAB_ALLOWED 0x0001
  28. #define AVTAB_AUDITALLOW 0x0002
  29. #define AVTAB_AUDITDENY 0x0004
  30. #define AVTAB_AV (AVTAB_ALLOWED | AVTAB_AUDITALLOW | AVTAB_AUDITDENY)
  31. #define AVTAB_TRANSITION 0x0010
  32. #define AVTAB_MEMBER 0x0020
  33. #define AVTAB_CHANGE 0x0040
  34. #define AVTAB_TYPE (AVTAB_TRANSITION | AVTAB_MEMBER | AVTAB_CHANGE)
  35. /* extended permissions */
  36. #define AVTAB_XPERMS_ALLOWED 0x0100
  37. #define AVTAB_XPERMS_AUDITALLOW 0x0200
  38. #define AVTAB_XPERMS_DONTAUDIT 0x0400
  39. #define AVTAB_XPERMS (AVTAB_XPERMS_ALLOWED | \
  40. AVTAB_XPERMS_AUDITALLOW | \
  41. AVTAB_XPERMS_DONTAUDIT)
  42. #define AVTAB_ENABLED_OLD 0x80000000 /* reserved for used in cond_avtab */
  43. #define AVTAB_ENABLED 0x8000 /* reserved for used in cond_avtab */
  44. u16 specified; /* what field is specified */
  45. };
  46. /*
  47. * For operations that require more than the 32 permissions provided by the avc
  48. * extended permissions may be used to provide 256 bits of permissions.
  49. */
  50. struct avtab_extended_perms {
  51. /* These are not flags. All 256 values may be used */
  52. #define AVTAB_XPERMS_IOCTLFUNCTION 0x01
  53. #define AVTAB_XPERMS_IOCTLDRIVER 0x02
  54. /* extension of the avtab_key specified */
  55. u8 specified; /* ioctl, netfilter, ... */
  56. /*
  57. * if 256 bits is not adequate as is often the case with ioctls, then
  58. * multiple extended perms may be used and the driver field
  59. * specifies which permissions are included.
  60. */
  61. u8 driver;
  62. /* 256 bits of permissions */
  63. struct extended_perms_data perms;
  64. };
  65. struct avtab_datum {
  66. union {
  67. u32 data; /* access vector or type value */
  68. struct avtab_extended_perms *xperms;
  69. } u;
  70. };
  71. struct avtab_node {
  72. struct avtab_key key;
  73. struct avtab_datum datum;
  74. struct avtab_node *next;
  75. };
  76. struct avtab {
  77. struct avtab_node **htable;
  78. u32 nel; /* number of elements */
  79. u32 nslot; /* number of hash slots */
  80. u32 mask; /* mask to compute hash func */
  81. };
  82. void avtab_init(struct avtab *h);
  83. int avtab_alloc(struct avtab *, u32);
  84. int avtab_alloc_dup(struct avtab *new, const struct avtab *orig);
  85. struct avtab_datum *avtab_search(struct avtab *h, const struct avtab_key *k);
  86. void avtab_destroy(struct avtab *h);
  87. void avtab_hash_eval(struct avtab *h, char *tag);
  88. struct policydb;
  89. int avtab_read_item(struct avtab *a, void *fp, struct policydb *pol,
  90. int (*insert)(struct avtab *a, const struct avtab_key *k,
  91. const struct avtab_datum *d, void *p),
  92. void *p);
  93. int avtab_read(struct avtab *a, void *fp, struct policydb *pol);
  94. int avtab_write_item(struct policydb *p, const struct avtab_node *cur, void *fp);
  95. int avtab_write(struct policydb *p, struct avtab *a, void *fp);
  96. struct avtab_node *avtab_insert_nonunique(struct avtab *h,
  97. const struct avtab_key *key,
  98. const struct avtab_datum *datum);
  99. struct avtab_node *avtab_search_node(struct avtab *h,
  100. const struct avtab_key *key);
  101. struct avtab_node *avtab_search_node_next(struct avtab_node *node, int specified);
  102. #define MAX_AVTAB_HASH_BITS 16
  103. #define MAX_AVTAB_HASH_BUCKETS (1 << MAX_AVTAB_HASH_BITS)
  104. #endif /* _SS_AVTAB_H_ */