SELinux Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 39: Line 39:
The list of modules can be obtained with:
The list of modules can be obtained with:


<pre>
semodule -l
semodule -l
</pre>


New modules can be installed with:
New modules can be installed with:


<pre>
semodule -i <module-name>.pp
semodule -i <module-name>.pp
 
</pre>
=SELinux Booleans=
 
SELinux policy booleans are boolean values that enable or disable conditional rules. The booleans allow runtime modifications of the security policy without having to load a new policy.

Revision as of 04:58, 27 December 2018

Internal

Context

Processes and files are associated with an SELinux context that contains the SELinux user, role, type, and optionally a level. When running SELinux, this information is used to make access control decisions.

Policy

The SELinux Policy is the set of rules that tells the SELinux security engine what to do. A policy defines types for file objects and domains for processes. It uses roles to limit the domains that can be entered, and has user identities to specify the roles that can be attained.

Type and Domain

Types and domains are equivalent, the difference being that types apply to objects while domains apply to processes.

The type can be one of the following:

  • targeted - Targeted processes are protected.
  • minimum - Modification of targeted policy. Only selected processes are protected.
  • mls - Multi Level Security protection.

It is configured with SELINUXTYPE in /etc/selinux/config.

The actual type is reported by "sestatus":

# sestatus
SELinux status:                 enabled
...
Loaded policy name:             targeted
...

Module

The list of modules can be obtained with:

semodule -l

New modules can be installed with:

semodule -i <module-name>.pp

SELinux Booleans

SELinux policy booleans are boolean values that enable or disable conditional rules. The booleans allow runtime modifications of the security policy without having to load a new policy.