avtab.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * An access vector table (avtab) is a hash table
  3. * of access vectors and transition types indexed
  4. * by a type pair and a class. An access vector
  5. * table is used to represent the type enforcement
  6. * tables.
  7. *
  8. * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
  9. */
  10. /* Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
  11. *
  12. * Added conditional policy language extensions
  13. *
  14. * Copyright (C) 2003 Tresys Technology, LLC
  15. * This program is free software; you can redistribute it and/or modify
  16. * it under the terms of the GNU General Public License as published by
  17. * the Free Software Foundation, version 2.
  18. *
  19. * Updated: Yuichi Nakamura <ynakam@hitachisoft.jp>
  20. * Tuned number of hash slots for avtab to reduce memory usage
  21. */
  22. #ifndef _SS_AVTAB_H_
  23. #define _SS_AVTAB_H_
  24. #include "security.h"
  25. struct avtab_key {
  26. u16 source_type; /* source type */
  27. u16 target_type; /* target type */
  28. u16 target_class; /* target object class */
  29. #define AVTAB_ALLOWED 0x0001
  30. #define AVTAB_AUDITALLOW 0x0002
  31. #define AVTAB_AUDITDENY 0x0004
  32. #define AVTAB_AV (AVTAB_ALLOWED | AVTAB_AUDITALLOW | AVTAB_AUDITDENY)
  33. #define AVTAB_TRANSITION 0x0010
  34. #define AVTAB_MEMBER 0x0020
  35. #define AVTAB_CHANGE 0x0040
  36. #define AVTAB_TYPE (AVTAB_TRANSITION | AVTAB_MEMBER | AVTAB_CHANGE)
  37. #define AVTAB_OPNUM_ALLOWED 0x0100
  38. #define AVTAB_OPNUM_AUDITALLOW 0x0200
  39. #define AVTAB_OPNUM_DONTAUDIT 0x0400
  40. #define AVTAB_OPNUM (AVTAB_OPNUM_ALLOWED | \
  41. AVTAB_OPNUM_AUDITALLOW | \
  42. AVTAB_OPNUM_DONTAUDIT)
  43. #define AVTAB_OPTYPE_ALLOWED 0x1000
  44. #define AVTAB_OPTYPE_AUDITALLOW 0x2000
  45. #define AVTAB_OPTYPE_DONTAUDIT 0x4000
  46. #define AVTAB_OPTYPE (AVTAB_OPTYPE_ALLOWED | \
  47. AVTAB_OPTYPE_AUDITALLOW | \
  48. AVTAB_OPTYPE_DONTAUDIT)
  49. #define AVTAB_OP (AVTAB_OPNUM | AVTAB_OPTYPE)
  50. #define AVTAB_ENABLED_OLD 0x80000000 /* reserved for used in cond_avtab */
  51. #define AVTAB_ENABLED 0x8000 /* reserved for used in cond_avtab */
  52. u16 specified; /* what field is specified */
  53. };
  54. struct avtab_operation {
  55. u8 type;
  56. struct operation_perm op;
  57. };
  58. struct avtab_datum {
  59. union {
  60. u32 data; /* access vector or type value */
  61. struct avtab_operation *ops; /* ioctl operations */
  62. } u;
  63. };
  64. struct avtab_node {
  65. struct avtab_key key;
  66. struct avtab_datum datum;
  67. struct avtab_node *next;
  68. };
  69. struct avtab {
  70. struct avtab_node **htable;
  71. u32 nel; /* number of elements */
  72. u32 nslot; /* number of hash slots */
  73. u16 mask; /* mask to compute hash func */
  74. };
  75. int avtab_init(struct avtab *);
  76. int avtab_alloc(struct avtab *, u32);
  77. struct avtab_datum *avtab_search(struct avtab *h, struct avtab_key *k);
  78. void avtab_destroy(struct avtab *h);
  79. void avtab_hash_eval(struct avtab *h, char *tag);
  80. struct policydb;
  81. int avtab_read_item(struct avtab *a, void *fp, struct policydb *pol,
  82. int (*insert)(struct avtab *a, struct avtab_key *k,
  83. struct avtab_datum *d, void *p),
  84. void *p);
  85. int avtab_read(struct avtab *a, void *fp, struct policydb *pol);
  86. int avtab_write_item(struct policydb *p, struct avtab_node *cur, void *fp);
  87. int avtab_write(struct policydb *p, struct avtab *a, void *fp);
  88. struct avtab_node *avtab_insert_nonunique(struct avtab *h, struct avtab_key *key,
  89. struct avtab_datum *datum);
  90. struct avtab_node *avtab_search_node(struct avtab *h, struct avtab_key *key);
  91. struct avtab_node *avtab_search_node_next(struct avtab_node *node, int specified);
  92. void avtab_cache_init(void);
  93. void avtab_cache_destroy(void);
  94. #define MAX_AVTAB_HASH_BITS 11
  95. #define MAX_AVTAB_HASH_BUCKETS (1 << MAX_AVTAB_HASH_BITS)
  96. #endif /* _SS_AVTAB_H_ */