guest_selinux

NAME
DESCRIPTION
BOOLEANS
MANAGED FILES
COMMANDS
AUTHOR
SEE ALSO

NAME

guest_r − Least privileged terminal user role. - Security Enhanced Linux Policy

DESCRIPTION

SELinux supports Roles Based Access Control (RBAC), some Linux roles are login roles, while other roles need to be transition into.

Note: Examples in this man page will use the staff_u SELinux user.

Non login roles are usually used for administrative tasks. For example, tasks that require root privileges. Roles control which types a user can run processes with. Roles often have default types assigned to them.

The default type for the guest_r role is guest_t.

The newrole program to transition directly to this role.

newrole -r guest_r -t guest_t

sudo is the preferred method to do transition from one role to another. You setup sudo to transition to guest_r by adding a similar line to the /etc/sudoers file.

USERNAME ALL=(ALL) ROLE=guest_r TYPE=guest_t COMMAND

sudo will run COMMAND as staff_u:guest_r:guest_t:LEVEL

When using a non login role, you need to setup SELinux so that your SELinux user can reach guest_r role.

Execute the following to see all of the assigned SELinux roles:

semanage user -l

You need to add guest_r to the staff_u user. You could setup the staff_u user to be able to use the guest_r role with a command like:

$ semanage user -m -R ’staff_r system_r guest_r’ staff_u

BOOLEANS

SELinux policy is customizable based on least access required. guest policy is extremely flexible and has several booleans that allow you to manipulate the policy and run guest with the tightest access possible.

If you want to deny all system processes and Linux users to use bluetooth wireless technology, you must turn on the deny_bluetooth boolean. Disabled by default.

setsebool -P deny_bluetooth 1

If you want to deny user domains applications to map a memory region as both executable and writable, this is dangerous and the executable should be reported in bugzilla, you must turn on the deny_execmem boolean. Disabled by default.

setsebool -P deny_execmem 1

If you want to allow all domains to execute in fips_mode, you must turn on the fips_mode boolean. Enabled by default.

setsebool -P fips_mode 1

If you want to allow httpd cgi support, you must turn on the httpd_enable_cgi boolean. Enabled by default.

setsebool -P httpd_enable_cgi 1

If you want to unify HTTPD handling of all content files, you must turn on the httpd_unified boolean. Disabled by default.

setsebool -P httpd_unified 1

If you want to allow confined applications to run with kerberos, you must turn on the kerberos_enabled boolean. Enabled by default.

setsebool -P kerberos_enabled 1

If you want to allow unconfined executables to make their stack executable. This should never, ever be necessary. Probably indicates a badly coded executable, but could indicate an attack. This executable should be reported in bugzilla, you must turn on the selinuxuser_execstack boolean. Enabled by default.

setsebool -P selinuxuser_execstack 1

If you want to allow user to use ssh chroot environment, you must turn on the selinuxuser_use_ssh_chroot boolean. Disabled by default.

setsebool -P selinuxuser_use_ssh_chroot 1

If you want to support NFS home directories, you must turn on the use_nfs_home_dirs boolean. Disabled by default.

setsebool -P use_nfs_home_dirs 1

If you want to support SAMBA home directories, you must turn on the use_samba_home_dirs boolean. Disabled by default.

setsebool -P use_samba_home_dirs 1

MANAGED FILES

The SELinux process type guest_t can manage files labeled with the following file types. The paths listed are the default paths for these file types. Note the processes UID still need to have DAC permissions.

alsa_home_t

/home/[ˆ/]+/.asoundrc

auth_cache_t

/var/cache/coolkey(/.*)?

cifs_t

httpd_user_content_t

/home/[ˆ/]+/((www)|(web)|(public_html))(/.+)?

httpd_user_htaccess_t

/home/[ˆ/]+/((www)|(web)|(public_html))(/.*)?/.htaccess

httpd_user_ra_content_t

/home/[ˆ/]+/((www)|(web)|(public_html))(/.*)?/logs(/.*)?

httpd_user_rw_content_t

httpd_user_script_exec_t

/home/[ˆ/]+/((www)|(web)|(public_html))/cgi-bin(/.+)?

nfs_t

pkcs_slotd_tmpfs_t

/dev/shm/var.lib.opencryptoki.*

user_home_type

all user home files

user_tmp_type

all user tmp files

COMMANDS

semanage fcontext can also be used to manipulate default file context mappings.

semanage permissive can also be used to manipulate whether or not a process type is permissive.

semanage module can also be used to enable/disable/install/remove policy modules.

semanage boolean can also be used to manipulate the booleans

system-config-selinux is a GUI tool available to customize SELinux policy settings.

AUTHOR

This manual page was auto-generated using sepolicy manpage .

SEE ALSO

selinux(8), guest(8), semanage(8), restorecon(8), chcon(1), sepolicy(8), setsebool(8)