conditional.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* Authors: Karl MacMillan <kmacmillan@tresys.com>
  2. * Frank Mayer <mayerf@tresys.com>
  3. *
  4. * Copyright (C) 2003 - 2004 Tresys Technology, LLC
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, version 2.
  8. */
  9. #ifndef _CONDITIONAL_H_
  10. #define _CONDITIONAL_H_
  11. #include "avtab.h"
  12. #include "symtab.h"
  13. #include "policydb.h"
  14. #include "../include/conditional.h"
  15. #define COND_EXPR_MAXDEPTH 10
  16. /*
  17. * A conditional expression is a list of operators and operands
  18. * in reverse polish notation.
  19. */
  20. struct cond_expr {
  21. #define COND_BOOL 1 /* plain bool */
  22. #define COND_NOT 2 /* !bool */
  23. #define COND_OR 3 /* bool || bool */
  24. #define COND_AND 4 /* bool && bool */
  25. #define COND_XOR 5 /* bool ^ bool */
  26. #define COND_EQ 6 /* bool == bool */
  27. #define COND_NEQ 7 /* bool != bool */
  28. #define COND_LAST COND_NEQ
  29. __u32 expr_type;
  30. __u32 bool;
  31. struct cond_expr *next;
  32. };
  33. /*
  34. * Each cond_node contains a list of rules to be enabled/disabled
  35. * depending on the current value of the conditional expression. This
  36. * struct is for that list.
  37. */
  38. struct cond_av_list {
  39. struct avtab_node *node;
  40. struct cond_av_list *next;
  41. };
  42. /*
  43. * A cond node represents a conditional block in a policy. It
  44. * contains a conditional expression, the current state of the expression,
  45. * two lists of rules to enable/disable depending on the value of the
  46. * expression (the true list corresponds to if and the false list corresponds
  47. * to else)..
  48. */
  49. struct cond_node {
  50. int cur_state;
  51. struct cond_expr *expr;
  52. struct cond_av_list *true_list;
  53. struct cond_av_list *false_list;
  54. struct cond_node *next;
  55. };
  56. int cond_policydb_init(struct policydb *p);
  57. void cond_policydb_destroy(struct policydb *p);
  58. int cond_init_bool_indexes(struct policydb *p);
  59. int cond_destroy_bool(void *key, void *datum, void *p);
  60. int cond_index_bool(void *key, void *datum, void *datap);
  61. int cond_read_bool(struct policydb *p, struct hashtab *h, void *fp);
  62. int cond_read_list(struct policydb *p, void *fp);
  63. int cond_write_bool(void *key, void *datum, void *ptr);
  64. int cond_write_list(struct policydb *p, struct cond_node *list, void *fp);
  65. void cond_compute_av(struct avtab *ctab, struct avtab_key *key,
  66. struct av_decision *avd, struct extended_perms *xperms);
  67. void cond_compute_xperms(struct avtab *ctab, struct avtab_key *key,
  68. struct extended_perms_decision *xpermd);
  69. int evaluate_cond_node(struct policydb *p, struct cond_node *node);
  70. #endif /* _CONDITIONAL_H_ */