selinux-policy/refpolicy/policy/modules/system/getty.if

81 lines
1.7 KiB
Plaintext
Raw Normal View History

2005-06-07 22:36:07 +00:00
## <summary>Policy for getty.</summary>
########################################
2005-08-11 17:46:39 +00:00
## <summary>
## Execute gettys in the getty domain.
## </summary>
## <param name="domain">
## The type of the process performing this action.
## </param>
2005-04-20 13:24:10 +00:00
#
interface(`getty_domtrans',`
2005-06-17 17:59:26 +00:00
gen_require(`
type getty_t, getty_exec_t;
class process sigchld;
class fd use;
class fifo_file rw_file_perms;
')
2005-06-17 17:59:26 +00:00
corecmd_search_sbin($1)
domain_auto_trans($1,getty_exec_t,getty_t)
allow $1 getty_t:fd use;
allow getty_t $1:fd use;
allow getty_t $1:fifo_file rw_file_perms;
allow getty_t $1:process sigchld;
2005-04-20 13:24:10 +00:00
')
2005-06-07 22:36:07 +00:00
########################################
2005-08-11 17:46:39 +00:00
## <summary>
## Allow process to read getty log file.
## </summary>
## <param name="domain">
## The type of the process performing this action.
## </param>
2005-04-20 13:24:10 +00:00
#
interface(`getty_read_log',`
2005-06-17 17:59:26 +00:00
gen_require(`
type getty_log_t;
class file { getattr read };
')
2005-06-17 17:59:26 +00:00
logging_search_logs($1)
allow $1 getty_log_t:file { getattr read };
2005-04-20 13:24:10 +00:00
')
2005-06-07 22:36:07 +00:00
########################################
2005-08-11 17:46:39 +00:00
## <summary>
## Allow process to read getty config file.
## </summary>
## <param name="domain">
## The type of the process performing this action.
## </param>
2005-04-20 13:24:10 +00:00
#
interface(`getty_read_config',`
2005-06-17 17:59:26 +00:00
gen_require(`
type getty_etc_t;
class file { getattr read };
')
2005-06-17 17:59:26 +00:00
files_search_etc($1)
allow $1 getty_etc_t:file { getattr read };
2005-04-20 13:24:10 +00:00
')
2005-06-07 22:36:07 +00:00
########################################
2005-08-11 17:46:39 +00:00
## <summary>
## Allow process to edit getty config file.
## </summary>
## <param name="domain">
## The type of the process performing this action.
## </param>
2005-04-20 13:24:10 +00:00
#
interface(`getty_modify_config',`
2005-06-17 17:59:26 +00:00
gen_require(`
type getty_etc_t;
class file rw_file_perms;
')
2005-06-17 17:59:26 +00:00
files_search_etc($1)
allow $1 getty_etc_t:file rw_file_perms;
2005-04-20 13:24:10 +00:00
')