Access Vector Rules
===================

allow
-----

Specifies the access allowed between a source and target type. Note that access may be refined by constraint rules based on the source, target and class ([`validatetrans`](cil_constraint_statements.md#validatetrans) or [`mlsvalidatetrans`](cil_constraint_statements.md#mlsvalidatetrans)) or source, target class and permissions ([`constrain`](cil_constraint_statements.md#constrain) or [`mlsconstrain`](cil_constraint_statements.md#mlsconstrain) statements).

**Rule definition:**

```secil
    (allow source_id target_id|self classpermissionset_id ...)
```

**Where:**

allow

The allow keyword.

source_id

A single previously defined source type, typealias or typeattribute identifier.

target_id

A single previously defined target type, typealias or typeattribute identifier.

The self keyword may be used instead to signify that source and target are the same.

classpermissionset_id

A single named or anonymous classpermissionset or a single set of classmap/classmapping identifiers.

**Examples:** These examples show a selection of possible permutations of [`allow`](cil_access_vector_rules.md#allow) rules: ```secil (class binder (impersonate call set_context_mgr transfer receive)) (class property_service (set)) (class zygote (specifyids specifyrlimits specifycapabilities specifyinvokewith specifyseinfo)) (classpermission cps_zygote) (classpermissionset cps_zygote (zygote (not (specifyids)))) (classmap android_classes (set_1 set_2 set_3)) (classmapping android_classes set_1 (binder (all))) (classmapping android_classes set_1 (property_service (set))) (classmapping android_classes set_1 (zygote (not (specifycapabilities)))) (classmapping android_classes set_2 (binder (impersonate call set_context_mgr transfer))) (classmapping android_classes set_2 (zygote (specifyids specifyrlimits specifycapabilities specifyinvokewith))) (classmapping android_classes set_3 cps_zygote) (classmapping android_classes set_3 (binder (impersonate call set_context_mgr))) (block av_rules (type type_1) (type type_2) (type type_3) (type type_4) (type type_5) (typeattribute all_types) (typeattributeset all_types (all)) ; These examples have named and anonymous classpermissionset's and ; classmap/classmapping statements (allow type_1 self (property_service (set))) ; anonymous (allow type_2 self (zygote (specifyids))) ; anonymous (allow type_3 self cps_zygote) ; named (allow type_4 self (android_classes (set_3))) ; classmap/classmapping (allow all_types all_types (android_classes (set_2))) ; classmap/classmapping ;; This rule will cause the build to fail unless --disable-neverallow ; (neverallow type_5 all_types (property_service (set))) (allow type_5 type_5 (property_service (set))) (allow type_1 all_types (property_service (set))) ) ``` auditallow ---------- Audit the access rights defined if there is a valid allow rule. Note: It does NOT allow access, it only audits the event. **Rule definition:** ```secil (auditallow source_id target_id|self classpermissionset_id ...) ``` **Where:**

auditallow

The auditallow keyword.

source_id

A single previously defined source type, typealias or typeattribute identifier.

target_id

A single previously defined target type, typealias or typeattribute identifier.

The self keyword may be used instead to signify that source and target are the same.

classpermissionset_id

A single named or anonymous classpermissionset or a single set of classmap/classmapping identifiers.

**Example:** This example will log an audit event whenever the corresponding [`allow`](cil_access_vector_rules.md#allow) rule grants access to the specified permissions: ```secil (allow release_app.process secmark_demo.browser_packet (packet (send recv append bind))) (auditallow release_app.process secmark_demo.browser_packet (packet (send recv))) ``` dontaudit --------- Do not audit the access rights defined when access denied. This stops excessive log entries for known events. Note that these rules can be omitted by the CIL compiler command line parameter `-D` or `--disable-dontaudit` flags. **Rule definition:** ```secil (dontaudit source_id target_id|self classpermissionset_id ...) ``` **Where:**

dontaudit

The dontaudit keyword.

source_id

A single previously defined source type, typealias or typeattribute identifier.

target_id

A single previously defined target type, typealias or typeattribute identifier.

The self keyword may be used instead to signify that source and target are the same.

classpermissionset_id

A single named or anonymous classpermissionset or a single set of classmap/classmapping identifiers.

**Example:** This example will not audit the denied access: ```secil (dontaudit zygote.process self (capability (fsetid))) ``` neverallow ---------- Never allow access rights defined. This is a compiler enforced action that will stop compilation until the offending rules are modified. Note that these rules can be over-ridden by the CIL compiler command line parameter `-N` or `--disable-neverallow` flags. **Rule definition:** ```secil (neverallow source_id target_id|self classpermissionset_id ...) ``` **Where:**

neverallow

The neverallow keyword.

source_id

A single previously defined source type, typealias or typeattribute identifier.

target_id

A single previously defined target type, typealias or typeattribute identifier.

The self keyword may be used instead to signify that source and target are the same.

classpermissionset_id

A single named or anonymous classpermissionset or a single set of classmap/classmapping identifiers.

**Example:** This example will not compile as `type_3` is not allowed to be a source type for the [`allow`](cil_access_vector_rules.md#allow) rule: ```secil (class property_service (set)) (block av_rules (type type_1) (type type_2) (type type_3) (typeattribute all_types) (typeattributeset all_types ((all))) (neverallow type_3 all_types (property_service (set))) ; This rule will fail compilation: (allow type_3 self (property_service (set))) ) ``` allowx ------ Specifies the access allowed between a source and target type using extended permissions. Unlike the [`allow`](cil_access_vector_rules.md#allow) statement, the statements [`validatetrans`](cil_constraint_statements.md#validatetrans), [`mlsvalidatetrans`](cil_constraint_statements.md#mlsvalidatetrans), [`constrain`](cil_constraint_statements.md#constrain), and [`mlsconstrain`](cil_constraint_statements.md#mlsconstrain) do not limit accesses granted by [`allowx`](cil_access_vector_rules.md#allowx). Note that for this to work there must *also* be valid equivalent [`allow`](cil_access_vector_rules.md#allow) rules present. **Rule definition:** ```secil (allowx source_id target_id|self permissionx_id) ``` **Where:**

allowx

The allowx keyword.

source_id

A single previously defined source type, typealias, or typeattribute identifier.

target_id

A single previously defined target type, typealias, or typeattribute identifier.

The self keyword may be used instead to signify that source and target are the same.

permissionx_id

A single named or anonymous permissionx.

**Examples:** These examples show a selection of possible permutations of [`allowx`](cil_access_vector_rules.md#allowx) rules: ```secil (allow type_1 type_2 (tcp_socket (ioctl))) ;; pre-requisite (allowx type_1 type_2 (ioctl tcp_socket (range 0x2000 0x20FF))) (permissionx ioctl_nodebug (ioctl udp_socket (not (range 0x4000 0x4010)))) (allow type_3 type_4 (udp_socket (ioctl))) ;; pre-requisite (allowx type_3 type_4 ioctl_nodebug) ``` auditallowx ----------- Audit the access rights defined if there is a valid [`allowx`](cil_access_vector_rules.md#allowx) rule. It does NOT allow access, it only audits the event. Note that for this to work there must *also* be valid equivalent [`auditallow`](cil_access_vector_rules.md#auditallow) rules present. **Rule definition:** ```secil (auditallowx source_id target_id|self permissionx_id) ``` **Where:**

auditallowx

The auditallowx keyword.

source_id

A single previously defined source type, typealias or typeattribute identifier.

target_id

A single previously defined target type, typealias or typeattribute identifier.

The self keyword may be used instead to signify that source and target are the same.

permissionx_id

A single named or anonymous permissionx.

**Examples:** This example will log an audit event whenever the corresponding [`allowx`](cil_access_vector_rules.md#allowx) rule grants access to the specified extended permissions: ```secil (allowx type_1 type_2 (ioctl tcp_socket (range 0x2000 0x20FF))) (auditallow type_1 type_2 (tcp_socket (ioctl))) ;; pre-requisite (auditallowx type_1 type_2 (ioctl tcp_socket (range 0x2005 0x2010))) ``` dontauditx ---------- Do not audit the access rights defined when access denied. This stops excessive log entries for known events. Note that for this to work there must *also* be at least one [`allowx`](cil_access_vector_rules.md#allowx) rule associated with the target type. Note that these rules can be omitted by the CIL compiler command line parameter `-D` or `--disable-dontaudit` flags. **Rule definition:** ```secil (dontauditx source_id target_id|self permissionx_id) ``` **Where:**

dontauditx

The dontauditx keyword.

source_id

A single previously defined source type, typealias or typeattribute identifier.

target_id

A single previously defined target type, typealias or typeattribute identifier.

The self keyword may be used instead to signify that source and target are the same.

permissionx_id

A single named or anonymous permissionx.

**Examples:** This example will not audit the denied access: ```secil (allowx type_1 type_2 (ioctl tcp_socket (0x1))) ;; pre-requisite, just some irrelevant random ioctl (dontauditx type_1 type_2 (ioctl tcp_socket (range 0x3000 0x30FF))) ``` neverallowx ---------- Never allow access rights defined for extended permissions. This is a compiler enforced action that will stop compilation until the offending rules are modified. Note that these rules can be over-ridden by the CIL compiler command line parameter `-N` or `--disable-neverallow` flags. **Rule definition:** ```secil (neverallowx source_id target_id|self permissionx_id) ``` **Where:**

neverallowx

The neverallowx keyword.

source_id

A single previously defined source type, typealias or typeattribute identifier.

target_id

A single previously defined target type, typealias or typeattribute identifier.

The self keyword may be used instead to signify that source and target are the same.

permissionx_id

A single named or anonymous permissionx.

**Examples:** This example will not compile as `type_3` is not allowed to be a source type and ioctl range for the [`allowx`](cil_access_vector_rules.md#allowx) rule: ```secil (class property_service (ioctl)) (block av_rules (type type_1) (type type_2) (type type_3) (typeattribute all_types) (typeattributeset all_types ((all))) (neverallowx type_3 all_types (ioctl property_service (range 0x2000 0x20FF))) ; This rule will fail compilation: (allowx type_3 self (ioctl property_service (0x20A0))) ) ```