xguest_r − Least privileged xwindows user role. - Security Enhanced Linux Policy
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 xguest_r role is xguest_t.
The newrole program to transition directly to this role.
newrole -r xguest_r -t xguest_t
sudo is the preferred method to do transition from one role to another. You setup sudo to transition to xguest_r by adding a similar line to the /etc/sudoers file.
USERNAME ALL=(ALL) ROLE=xguest_r TYPE=xguest_t COMMAND
sudo will run COMMAND as staff_u:xguest_r:xguest_t:LEVEL
When using a non login role, you need to setup SELinux so that your SELinux user can reach xguest_r role.
Execute the following to see all of the assigned SELinux roles:
semanage user -l
You need to add xguest_r to the staff_u user. You could setup the staff_u user to be able to use the xguest_r role with a command like:
$ semanage user -m -R ’staff_r system_r xguest_r’ staff_u
SELinux policy is customizable based on least access required. xguest policy is extremely flexible and has several booleans that allow you to manipulate the policy and run xguest with the tightest access possible.
If you want to allow xguest users to configure Network Manager and connect to apache ports, you must turn on the xguest_connect_network boolean. Enabled by default.
setsebool -P xguest_connect_network 1
If you want to allow xguest users to mount removable media, you must turn on the xguest_mount_media boolean. Enabled by default.
setsebool -P xguest_mount_media 1
If you want to allow xguest to use blue tooth devices, you must turn on the xguest_use_bluetooth boolean. Enabled by default.
setsebool -P xguest_use_bluetooth 1
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 deny any process from ptracing or debugging any other processes, you must turn on the deny_ptrace boolean. Enabled by default.
setsebool -P deny_ptrace 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 use nscd shared memory, you must turn on the nscd_use_shm boolean. Enabled by default.
setsebool -P nscd_use_shm 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 r/w files on filesystems that do not have extended attributes (FAT, CDROM, FLOPPY), you must turn on the selinuxuser_rw_noexattrfile boolean. Enabled by default.
setsebool -P selinuxuser_rw_noexattrfile 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
The SELinux process type xguest_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(/.*)? |
chrome_sandbox_tmpfs_t
gconf_tmp_t
/tmp/gconfd-[ˆ/]+/.* |
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(/.+)? |
noxattrfs
all files on file systems which do not support extended attributes |
pkcs_slotd_tmpfs_t
/dev/shm/var.lib.opencryptoki.* |
pulseaudio_tmpfs_t
pulseaudio_tmpfsfile
session_dbusd_tmp_t
/var/run/user/[0-9]+/bus | |
/var/run/user/[0-9]+/dbus(/.*)? | |
/var/run/user/[0-9]+/dbus-1(/.*)? |
usbfs_t
user_fonts_cache_t
/root/.fontconfig(/.*)? | |
/root/.fonts/auto(/.*)? | |
/root/.fonts.cache-.* | |
/root/.cache/fontconfig(/.*)? | |
/home/[ˆ/]+/.fontconfig(/.*)? | |
/home/[ˆ/]+/.fonts/auto(/.*)? | |
/home/[ˆ/]+/.fonts.cache-.* | |
/home/[ˆ/]+/.cache/fontconfig(/.*)? |
user_home_type
all user home files |
user_tmp_t
/dev/shm/mono.* | |
/var/run/user/[ˆ/]+ | |
/tmp/.ICE-unix(/.*)? | |
/tmp/.X11-unix(/.*)? | |
/dev/shm/pulse-shm.* | |
/tmp/.X0-lock | |
/var/run/user | |
/tmp/hsperfdata_root | |
/var/tmp/hsperfdata_root | |
/home/[ˆ/]+/tmp | |
/home/[ˆ/]+/.tmp | |
/var/run/user/[0-9]+ | |
/tmp/gconfd-[ˆ/]+ |
user_tmp_type
all user tmp files |
xserver_tmpfs_t
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.
This manual page was auto-generated using sepolicy manpage .
selinux(8), xguest(8), semanage(8), restorecon(8), chcon(1), sepolicy(8), setsebool(8), xguest_dbusd_selinux(8), xguest_dbusd_selinux(8), xguest_gkeyringd_selinux(8), xguest_gkeyringd_selinux(8)