Merge branch 'getty_module' of git://github.com/cgzones/refpolicy

This commit is contained in:
Chris PeBenito 2017-03-02 19:23:42 -05:00
commit e77bd0b18b
3 changed files with 24 additions and 29 deletions

View File

@ -1,12 +1,12 @@
/etc/mgetty(/.*)? gen_context(system_u:object_r:getty_etc_t,s0)
/etc/mgetty(/.*)? gen_context(system_u:object_r:getty_conf_t,s0)
/usr/sbin/.*getty -- gen_context(system_u:object_r:getty_exec_t,s0)
/run/mgetty\.pid.* -- gen_context(system_u:object_r:getty_runtime_t,s0)
/run/agetty\.reload -- gen_context(system_u:object_r:getty_runtime_t,s0)
/usr/sbin/.*getty -- gen_context(system_u:object_r:getty_exec_t,s0)
/var/log/mgetty\.log.* -- gen_context(system_u:object_r:getty_log_t,s0)
/var/log/vgetty\.log\..* -- gen_context(system_u:object_r:getty_log_t,s0)
/run/mgetty\.pid.* -- gen_context(system_u:object_r:getty_var_run_t,s0)
/run/agetty\.reload -- gen_context(system_u:object_r:getty_var_run_t,s0)
/var/spool/fax(/.*)? gen_context(system_u:object_r:getty_var_run_t,s0)
/var/spool/voice(/.*)? gen_context(system_u:object_r:getty_var_run_t,s0)
/var/spool/fax(/.*)? gen_context(system_u:object_r:getty_runtime_t,s0)
/var/spool/voice(/.*)? gen_context(system_u:object_r:getty_runtime_t,s0)

View File

@ -1,4 +1,4 @@
## <summary>Policy for getty.</summary>
## <summary>Manages physical or virtual terminals.</summary>
########################################
## <summary>
@ -70,11 +70,11 @@ interface(`getty_read_log',`
#
interface(`getty_read_config',`
gen_require(`
type getty_etc_t;
type getty_conf_t;
')
files_search_etc($1)
allow $1 getty_etc_t:file read_file_perms;
allow $1 getty_conf_t:file read_file_perms;
')
########################################
@ -90,9 +90,9 @@ interface(`getty_read_config',`
#
interface(`getty_rw_config',`
gen_require(`
type getty_etc_t;
type getty_conf_t;
')
files_search_etc($1)
allow $1 getty_etc_t:file rw_file_perms;
allow $1 getty_conf_t:file rw_file_perms;
')

View File

@ -11,9 +11,8 @@ init_domain(getty_t, getty_exec_t)
init_system_domain(getty_t, getty_exec_t)
domain_interactive_fd(getty_t)
type getty_etc_t;
typealias getty_etc_t alias etc_getty_t;
files_config_file(getty_etc_t)
type getty_conf_t alias getty_etc_t;
files_config_file(getty_conf_t)
type getty_lock_t;
files_lock_file(getty_lock_t)
@ -21,12 +20,12 @@ files_lock_file(getty_lock_t)
type getty_log_t;
logging_log_file(getty_log_t)
type getty_runtime_t alias getty_var_run_t;
files_pid_file(getty_runtime_t)
type getty_tmp_t;
files_tmp_file(getty_tmp_t)
type getty_var_run_t;
files_pid_file(getty_var_run_t)
########################################
#
# Getty local policy
@ -35,26 +34,25 @@ files_pid_file(getty_var_run_t)
# Use capabilities.
allow getty_t self:capability { chown dac_override fowner fsetid setgid sys_admin sys_resource sys_tty_config };
dontaudit getty_t self:capability sys_tty_config;
allow getty_t self:process { getpgid setpgid getsession signal_perms };
allow getty_t self:process { getpgid getsession setpgid signal_perms };
allow getty_t self:fifo_file rw_fifo_file_perms;
read_files_pattern(getty_t, getty_etc_t, getty_etc_t)
read_lnk_files_pattern(getty_t, getty_etc_t, getty_etc_t)
files_etc_filetrans(getty_t, getty_etc_t,{ file dir })
read_files_pattern(getty_t, getty_conf_t, getty_conf_t)
read_lnk_files_pattern(getty_t, getty_conf_t, getty_conf_t)
allow getty_t getty_lock_t:file manage_file_perms;
files_lock_filetrans(getty_t, getty_lock_t, file)
allow getty_t getty_log_t:file manage_file_perms;
allow getty_t getty_log_t:file { append_file_perms create_file_perms setattr_file_perms };
logging_log_filetrans(getty_t, getty_log_t, file)
manage_files_pattern(getty_t, getty_runtime_t, getty_runtime_t)
files_pid_filetrans(getty_t, getty_runtime_t, file)
allow getty_t getty_tmp_t:file manage_file_perms;
allow getty_t getty_tmp_t:dir manage_dir_perms;
files_tmp_filetrans(getty_t, getty_tmp_t, { file dir })
manage_files_pattern(getty_t, getty_var_run_t, getty_var_run_t)
files_pid_filetrans(getty_t, getty_var_run_t, file)
kernel_read_system_state(getty_t)
# these two needed for receiving faxes
@ -63,7 +61,6 @@ corecmd_exec_shell(getty_t)
dev_read_sysfs(getty_t)
files_rw_generic_pids(getty_t)
files_read_etc_runtime_files(getty_t)
files_read_etc_files(getty_t)
files_search_spool(getty_t)
@ -87,8 +84,6 @@ term_setattr_console(getty_t)
auth_rw_login_records(getty_t)
init_rw_utmp(getty_t)
init_use_script_ptys(getty_t)
init_dontaudit_use_script_ptys(getty_t)
locallogin_domtrans(getty_t)