3.4.2. SELinux - User Guide
3.4.2.1. Introduction
Security-Enhanced Linux (SELinux) is a project to implement mandatory access control under Linux. It is a set of kernel modifications and user-space tools that provide a mechanism for supporting access control security policies. This project was initially developed by the National Security Agency (NSA), as a reference implementation.
SELinux can run in one of three modes: enforcing, permissive, or disabled.
Enforcing mode is the recommended mode of operation where SELinux operates normally, enforcing the loaded security policy on the entire system.
In permissive mode, the system acts as if SELinux is enforcing the loaded security policy, including labeling objects and emitting access denial entries in the logs, but it does not actually deny any operations. While not recommended for production systems, permissive mode can be helpful for SELinux policy development and debugging.
Disabled mode is strongly discouraged; not only does the system avoid enforcing the SELinux policy, it also avoids labeling any persistent objects such as files, making it difficult to enable SELinux in the future.
Note
This guide assumes that the user understands how to build the Linux Kernel and, Yocto or Debian distribution.
3.4.2.2. Filesystem Setup
3.4.2.2.1. Yocto
The following steps describe how to build SELinux user-space tools and configuration on Yocto. Please use Processor SDK - Building the SDK with Yocto as reference.
On a fresh build, update the config file to use
configs/arago-scarthgap-selinux-config.txt
. This config includes the opensource meta-selinux layer into the build and also adds additional features for the filesystem such as the kernel configs listed below:CONFIG_AUDIT=y CONFIG_NETWORK_SECMARK=y CONFIG_EXT2_FS_SECURITY=y CONFIG_EXT3_FS_SECURITY=y CONFIG_EXT4_FS_SECURITY=y CONFIG_JFS_SECURITY=y CONFIG_REISERFS_FS_SECURITY=y CONFIG_JFFS2_FS_SECURITY=y CONFIG_SECURITY=y CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_SELINUX_BOOTPARAM=y CONFIG_SECURITY_SELINUX_DEVELOP=y CONFIG_SECURITY_SELINUX_AVC_STATS=y CONFIG_AUDIT_GENERIC=y
Note
The default policy is targeted. If you want to update it, add the variable
PREFERRED_PROVIDER_virtual/refpolicy = "refpolicy-<your_choice>"
to thelocal.conf
where<your_choice>
is targeted, mls, mcs.Build the
tisdk-default-image
. Note that other recipes do not package selinux features for now.$ MACHINE=<machine> bitbake -k tisdk-default-image
Your newly built wic image will be generated in
deploy-ti
directory. Use Linux SD Card Creation Guide to flash this generated image onto your SD card. By default, SELinux functionality is in the disabled state.
3.4.2.2.2. Debian
The following steps describe how to install and configure SELinux together with the default policy which enables SELinux for the most important parts of your Debian filesystem. This guide does not describe how to build the filesystem using Debian.
The default Debian image provided by TI (
tisdk-debian-trixie-<machine>-<version>.wic.xz
) packages necessary kernel configs to enable SELinux. If you are not using the standard linux kernel provided by debian with an ext2/3/4/xfs/btrfs filesystem, you have to make sure that you are using a SELinux capable kernel and filesystem. For ext2/3/4 there is nothing special to be aware of, but for other filesystems there are still some quirks.On the target machine, get the default policy and the basic set of SELinux utilities by running
$ sudo apt-get install selinux-basics selinux-policy-default auditd
3.4.2.3. Permissive mode Setup
It is intended to go into Permissive mode, log the accesses, create the access policy and only then jump to Enforcing mode. Skipping this step would lead to a login failure due to lack of access.
Boot the target (in disabled state), Run
root@<machine>:~# fixfiles -F onboot
or
root@<machine>:~# touch /.autorelabel
to ensure that files are relabeled upon next reboot.
Warning
When systems run SELinux in permissive mode, users and processes might label various file-system objects incorrectly. File-system objects created while SELinux is disabled are not labeled at all. This behavior causes problems when changing to enforcing mode because SELinux relies on correct labels of file-system objects.
To prevent incorrectly labeled and unlabeled files from causing problems, SELinux automatically relabels file systems when changing from the disabled state to permissive or enforcing mode.
Open
/etc/selinux/config
and edit it toSELINUX=permissive
and the policy type you are using.Restart the system. If using U-Boot, add
security=selinux
to the boot parameters by stopping at the U-Boot prompt and adding,=> setenv optargs "security=selinux"
If the previous steps were executed correctly, it will take a while to label the filesystems on boot and then it will automatically reboot a second time when that is complete.
Warning
If you are using the optargs step, every boot will require you to stop at U-Boot prompt, set optargs and proceed. Not doing so will force SELinux to go back to disabled state and you will have to restart the setup.
You should now have a working SELinux system, which is in permissive mode. This means that the selinux policy is not enforced, but denials are logged. You can see all would-be denials since the last reboot with a small explanation for each with
audit2why -al
.Verify your status by running
sestatus
orgetenforce
.root@<machine>:~# sestatus SELinux status: enabled SELinuxfs mount: /sys/fs/selinux SELinux root directory: /etc/selinux Loaded policy name: targeted Current mode: permissive Mode from config file: permissive Policy MLS status: disabled Policy deny_unknown status: allowed Memory protection checking: actual (secure) Max kernel policy version: 31
3.4.2.4. Enforcing mode Setup
This guide serves as a reference implementation and will not be diving into custom policy writing or analysing and fixing SELinux denial details.
Assuming you are now in permissive mode, use
audit2why -al
to list all the policy violations that occured since booting up.We will be using the
audit2allow
tool to generate a local policy and resolve all the violations seen. Run:root@<machine>:~# audit2allow -a -M myPolicy
Follow the instructions generated by the tool to activate the policy.
Warning
It is not recommended to use
audit2allow
to generate a local policy module as your first option when you see an SELinux denial. Troubleshooting should start with a check if there is a labeling problem. The second most often case is that you have changed a process configuration, and you forgot to tell SELinux about itUpdate
/etc/selinux/config
toSELINUX=enforcing
, save and reboot.Note
Remember that boot parameter
security=selinux
must always be present otherwise you will have to begin anew.Verify your status by using
sestatus
orgetenforce
.root@<machine>:~# sestatus SELinux status: enabled SELinuxfs mount: /sys/fs/selinux SELinux root directory: /etc/selinux Loaded policy name: targeted Current mode: enforcing Mode from config file: enforcing Policy MLS status: enabled Policy deny_unknown status: allowed Memory protection checking: actual (secure) Max kernel policy version: 31