diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /security/selinux/ss/constraint.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'security/selinux/ss/constraint.h')
-rw-r--r-- | security/selinux/ss/constraint.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/security/selinux/ss/constraint.h b/security/selinux/ss/constraint.h new file mode 100644 index 000000000000..149dda731fd3 --- /dev/null +++ b/security/selinux/ss/constraint.h | |||
@@ -0,0 +1,61 @@ | |||
1 | /* | ||
2 | * A constraint is a condition that must be satisfied in | ||
3 | * order for one or more permissions to be granted. | ||
4 | * Constraints are used to impose additional restrictions | ||
5 | * beyond the type-based rules in `te' or the role-based | ||
6 | * transition rules in `rbac'. Constraints are typically | ||
7 | * used to prevent a process from transitioning to a new user | ||
8 | * identity or role unless it is in a privileged type. | ||
9 | * Constraints are likewise typically used to prevent a | ||
10 | * process from labeling an object with a different user | ||
11 | * identity. | ||
12 | * | ||
13 | * Author : Stephen Smalley, <sds@epoch.ncsc.mil> | ||
14 | */ | ||
15 | #ifndef _SS_CONSTRAINT_H_ | ||
16 | #define _SS_CONSTRAINT_H_ | ||
17 | |||
18 | #include "ebitmap.h" | ||
19 | |||
20 | #define CEXPR_MAXDEPTH 5 | ||
21 | |||
22 | struct constraint_expr { | ||
23 | #define CEXPR_NOT 1 /* not expr */ | ||
24 | #define CEXPR_AND 2 /* expr and expr */ | ||
25 | #define CEXPR_OR 3 /* expr or expr */ | ||
26 | #define CEXPR_ATTR 4 /* attr op attr */ | ||
27 | #define CEXPR_NAMES 5 /* attr op names */ | ||
28 | u32 expr_type; /* expression type */ | ||
29 | |||
30 | #define CEXPR_USER 1 /* user */ | ||
31 | #define CEXPR_ROLE 2 /* role */ | ||
32 | #define CEXPR_TYPE 4 /* type */ | ||
33 | #define CEXPR_TARGET 8 /* target if set, source otherwise */ | ||
34 | #define CEXPR_XTARGET 16 /* special 3rd target for validatetrans rule */ | ||
35 | #define CEXPR_L1L2 32 /* low level 1 vs. low level 2 */ | ||
36 | #define CEXPR_L1H2 64 /* low level 1 vs. high level 2 */ | ||
37 | #define CEXPR_H1L2 128 /* high level 1 vs. low level 2 */ | ||
38 | #define CEXPR_H1H2 256 /* high level 1 vs. high level 2 */ | ||
39 | #define CEXPR_L1H1 512 /* low level 1 vs. high level 1 */ | ||
40 | #define CEXPR_L2H2 1024 /* low level 2 vs. high level 2 */ | ||
41 | u32 attr; /* attribute */ | ||
42 | |||
43 | #define CEXPR_EQ 1 /* == or eq */ | ||
44 | #define CEXPR_NEQ 2 /* != */ | ||
45 | #define CEXPR_DOM 3 /* dom */ | ||
46 | #define CEXPR_DOMBY 4 /* domby */ | ||
47 | #define CEXPR_INCOMP 5 /* incomp */ | ||
48 | u32 op; /* operator */ | ||
49 | |||
50 | struct ebitmap names; /* names */ | ||
51 | |||
52 | struct constraint_expr *next; /* next expression */ | ||
53 | }; | ||
54 | |||
55 | struct constraint_node { | ||
56 | u32 permissions; /* constrained permissions */ | ||
57 | struct constraint_expr *expr; /* constraint on permissions */ | ||
58 | struct constraint_node *next; /* next constraint */ | ||
59 | }; | ||
60 | |||
61 | #endif /* _SS_CONSTRAINT_H_ */ | ||