diff options
Diffstat (limited to 'security/selinux/ss/policydb.h')
-rw-r--r-- | security/selinux/ss/policydb.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/security/selinux/ss/policydb.h b/security/selinux/ss/policydb.h index da637471d4ce..725d5945a97e 100644 --- a/security/selinux/ss/policydb.h +++ b/security/selinux/ss/policydb.h | |||
@@ -154,6 +154,17 @@ struct cond_bool_datum { | |||
154 | struct cond_node; | 154 | struct cond_node; |
155 | 155 | ||
156 | /* | 156 | /* |
157 | * type set preserves data needed to determine constraint info from | ||
158 | * policy source. This is not used by the kernel policy but allows | ||
159 | * utilities such as audit2allow to determine constraint denials. | ||
160 | */ | ||
161 | struct type_set { | ||
162 | struct ebitmap types; | ||
163 | struct ebitmap negset; | ||
164 | u32 flags; | ||
165 | }; | ||
166 | |||
167 | /* | ||
157 | * The configuration data includes security contexts for | 168 | * The configuration data includes security contexts for |
158 | * initial SIDs, unlabeled file systems, TCP and UDP port numbers, | 169 | * initial SIDs, unlabeled file systems, TCP and UDP port numbers, |
159 | * network interfaces, and nodes. This structure stores the | 170 | * network interfaces, and nodes. This structure stores the |