Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

CilTeRules

Corey Garst edited this page Jun 9, 2014 · 1 revision

CIL Type Enforcement Rules

Type enforcement rules define access control privileges for processes.

Typetransition

The typetransition statement defines the behavior for default domain and object transitions.

'''Syntax:'''

	(typetransition source target class default)

'''Syntax Explanation:''' typetransition:: The keyword for the typetransition statement. source:: The source domain - a type, typealias or typeattribute. target:: The target type - a type, typealias, or typeattribute. This type is either the entry point type of a new domain or the container type for the object being created. class:: The object class associated with default type. default:: The type of the new domain in a domain transition, or the type to label the new object.

'''Example:'''

	(class file (read write execute entry_point))

	(type foo)
	(type bar)
	(type tmp)
	(type bar_exec)
	(type bar_tmp)

	; domain transition
	(typetransition foo bar_exec process bar)

	; file transition
	(typetransition bar tmp file bar_tmp)

Nametypetransition

The nametypetransition statement, similar to the typetransition statment, defines the behavior for object transitions, but with the additional requirement that the name of the object (e.g. file name, directory name) must match for the object transition to occur.

'''Syntax:'''

	(nametypetransition name source target class default)

'''Syntax Explanation:''' nametypetransition:: The keyword for the nametypetransition statement. name:: The last path component of an object. source:: The source domain - a type, typealias or typeattribute. target:: The target type - a type, typealias, or typeattribute. This type is either the entry point type of a new domain or the container type for the object being created. class:: The object class associated with default type. default:: The type of the new domain in a domain transition, or the type to label the new object.

'''Example:'''

	(class file (read write execute entry_point))

	(type foo)
	(type bar)
	(type tmp)
	(type bar_exec)
	(type bar_tmp)

	; file transition with name requirement
	(nametypetransition filename.txt bar tmp file bar_tmp)

Typechange

The typechange statement specifies the default types to be used in relabeling by SELinux-aware applications.

'''Syntax:'''

	(typechange source target class default)

'''Syntax Explanation:''' typechange:: The keyword for the typechange statement. source:: The source domain - a type, typealias or typeattribute. target:: The target type - a type, typealias, or typeattribute. This is the type of the file to be relabeled. class:: The object class associated with target type. default:: The type that should be used to relabel the file.

'''Example:'''

	(class char (read write))

	(type sysadm)
	(type tty_device)
	(type sysadm_tty_device)

	(typechange sysadm tty_device char sysadm_tty_device)

Typemember

The typemember statement determines the type of a member of a polyinstantiated object.

'''Syntax:'''

	(typemember source target class default)

'''Syntax Explanation:''' typemember:: The keyword for the typemember statement. source:: The source domain - a type, typealias or typeattribute. target:: The target type - a type, typealias, or typeattribute. class:: The object class associated with target type. default:: The type of the new object.

'''Example:'''

	(class dir (read write))

	(type sysadm)
	(type user_home_dir)

	(typemember sysadm user_home_dir dir user_home_dir)

Typebounds

The typebounds statement is used to limit the access granted to a type to the access granted to a parent type.

'''Syntax:'''

	(typebounds parent child)

'''Syntax Explanation:''' typebounds:: The keyword for the typebounds statement. parent:: The parent or bounding type - a type or typealias. child:: The child or bounded type - a type or typealias.

'''Example:'''

	(class file (read write))

	(type parent)
	(type child)
        (type some_file)

        (allow parent some_file (file (read))

        ; This rule is allowed
        (allow child some_file (file (read))
        ; This rule is not allowed
        ; (allow child some_file (file (write))
Clone this wiki locally