diff options
Diffstat (limited to 'security/selinux/ss/policydb.h')
| -rw-r--r-- | security/selinux/ss/policydb.h | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/security/selinux/ss/policydb.h b/security/selinux/ss/policydb.h index b846c038718..da637471d4c 100644 --- a/security/selinux/ss/policydb.h +++ b/security/selinux/ss/policydb.h @@ -60,6 +60,20 @@ struct class_datum {  	struct symtab permissions;	/* class-specific permission symbol table */  	struct constraint_node *constraints;	/* constraints on class permissions */  	struct constraint_node *validatetrans;	/* special transition rules */ +/* Options how a new object user, role, and type should be decided */ +#define DEFAULT_SOURCE         1 +#define DEFAULT_TARGET         2 +	char default_user; +	char default_role; +	char default_type; +/* Options how a new object range should be decided */ +#define DEFAULT_SOURCE_LOW     1 +#define DEFAULT_SOURCE_HIGH    2 +#define DEFAULT_SOURCE_LOW_HIGH        3 +#define DEFAULT_TARGET_LOW     4 +#define DEFAULT_TARGET_HIGH    5 +#define DEFAULT_TARGET_LOW_HIGH        6 +	char default_range;  };  /* Role attributes */  |