|
@@ -129,6 +129,17 @@ struct aa_namespace {
|
|
struct list_head sub_ns;
|
|
struct list_head sub_ns;
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+/* struct aa_policydb - match engine for a policy
|
|
|
|
+ * dfa: dfa pattern match
|
|
|
|
+ * start: set of start states for the different classes of data
|
|
|
|
+ */
|
|
|
|
+struct aa_policydb {
|
|
|
|
+ /* Generic policy DFA specific rule types will be subsections of it */
|
|
|
|
+ struct aa_dfa *dfa;
|
|
|
|
+ unsigned int start[AA_CLASS_LAST + 1];
|
|
|
|
+
|
|
|
|
+};
|
|
|
|
+
|
|
/* struct aa_profile - basic confinement data
|
|
/* struct aa_profile - basic confinement data
|
|
* @base - base components of the profile (name, refcount, lists, lock ...)
|
|
* @base - base components of the profile (name, refcount, lists, lock ...)
|
|
* @parent: parent of profile
|
|
* @parent: parent of profile
|
|
@@ -143,6 +154,7 @@ struct aa_namespace {
|
|
* @flags: flags controlling profile behavior
|
|
* @flags: flags controlling profile behavior
|
|
* @path_flags: flags controlling path generation behavior
|
|
* @path_flags: flags controlling path generation behavior
|
|
* @size: the memory consumed by this profiles rules
|
|
* @size: the memory consumed by this profiles rules
|
|
|
|
+ * @policy: general match rules governing policy
|
|
* @file: The set of rules governing basic file access and domain transitions
|
|
* @file: The set of rules governing basic file access and domain transitions
|
|
* @caps: capabilities for the profile
|
|
* @caps: capabilities for the profile
|
|
* @rlimits: rlimits for the profile
|
|
* @rlimits: rlimits for the profile
|
|
@@ -179,6 +191,7 @@ struct aa_profile {
|
|
u32 path_flags;
|
|
u32 path_flags;
|
|
int size;
|
|
int size;
|
|
|
|
|
|
|
|
+ struct aa_policydb policy;
|
|
struct aa_file_rules file;
|
|
struct aa_file_rules file;
|
|
struct aa_caps caps;
|
|
struct aa_caps caps;
|
|
struct aa_rlimit rlimits;
|
|
struct aa_rlimit rlimits;
|