constraint.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * A constraint is a condition that must be satisfied in
  4. * order for one or more permissions to be granted.
  5. * Constraints are used to impose additional restrictions
  6. * beyond the type-based rules in `te' or the role-based
  7. * transition rules in `rbac'. Constraints are typically
  8. * used to prevent a process from transitioning to a new user
  9. * identity or role unless it is in a privileged type.
  10. * Constraints are likewise typically used to prevent a
  11. * process from labeling an object with a different user
  12. * identity.
  13. *
  14. * Author : Stephen Smalley, <sds@tycho.nsa.gov>
  15. */
  16. #ifndef _SS_CONSTRAINT_H_
  17. #define _SS_CONSTRAINT_H_
  18. #include "ebitmap.h"
  19. #define CEXPR_MAXDEPTH 5
  20. struct constraint_expr {
  21. #define CEXPR_NOT 1 /* not expr */
  22. #define CEXPR_AND 2 /* expr and expr */
  23. #define CEXPR_OR 3 /* expr or expr */
  24. #define CEXPR_ATTR 4 /* attr op attr */
  25. #define CEXPR_NAMES 5 /* attr op names */
  26. u32 expr_type; /* expression type */
  27. #define CEXPR_USER 1 /* user */
  28. #define CEXPR_ROLE 2 /* role */
  29. #define CEXPR_TYPE 4 /* type */
  30. #define CEXPR_TARGET 8 /* target if set, source otherwise */
  31. #define CEXPR_XTARGET 16 /* special 3rd target for validatetrans rule */
  32. #define CEXPR_L1L2 32 /* low level 1 vs. low level 2 */
  33. #define CEXPR_L1H2 64 /* low level 1 vs. high level 2 */
  34. #define CEXPR_H1L2 128 /* high level 1 vs. low level 2 */
  35. #define CEXPR_H1H2 256 /* high level 1 vs. high level 2 */
  36. #define CEXPR_L1H1 512 /* low level 1 vs. high level 1 */
  37. #define CEXPR_L2H2 1024 /* low level 2 vs. high level 2 */
  38. u32 attr; /* attribute */
  39. #define CEXPR_EQ 1 /* == or eq */
  40. #define CEXPR_NEQ 2 /* != */
  41. #define CEXPR_DOM 3 /* dom */
  42. #define CEXPR_DOMBY 4 /* domby */
  43. #define CEXPR_INCOMP 5 /* incomp */
  44. u32 op; /* operator */
  45. struct ebitmap names; /* names */
  46. struct type_set *type_names;
  47. struct constraint_expr *next; /* next expression */
  48. };
  49. struct constraint_node {
  50. u32 permissions; /* constrained permissions */
  51. struct constraint_expr *expr; /* constraint on permissions */
  52. struct constraint_node *next; /* next constraint */
  53. };
  54. #endif /* _SS_CONSTRAINT_H_ */