selinux-policy/policy/modules/services/smartmon.if

58 lines
1.3 KiB
Plaintext
Raw Normal View History

2006-01-04 15:26:42 +00:00
## <summary>Smart disk monitoring daemon policy</summary>
#######################################
## <summary>
## Allow caller to read smartmon temporary files.
## </summary>
## <param name="domain">
## <summary>
2006-01-04 15:26:42 +00:00
## The process type reading the temporary files.
## </summary>
2006-01-04 15:26:42 +00:00
## </param>
#
2006-02-02 21:08:12 +00:00
interface(`smartmon_read_tmp_files',`
2006-01-04 15:26:42 +00:00
gen_require(`
type fsdaemon_tmp_t;
')
allow $1 fsdaemon_tmp_t:file { getattr ioctl read };
')
2008-02-07 16:37:47 +00:00
########################################
## <summary>
## All of the rules required to administrate
## an smartmon environment
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
2008-10-08 20:03:24 +00:00
## <param name="role">
## <summary>
## Role allowed access.
## </summary>
## </param>
2008-02-07 16:37:47 +00:00
## <rolecap/>
#
interface(`smartmon_admin',`
gen_require(`
2008-05-22 15:24:52 +00:00
type fsdaemon_t, fsdaemon_tmp_t, fsdaemon_var_run_t;
2008-10-08 20:03:24 +00:00
type fsdaemon_initrc_exec_t;
2008-02-07 16:37:47 +00:00
')
2008-05-22 15:24:52 +00:00
allow $1 fsdaemon_t:process { ptrace signal_perms getattr };
ps_process_pattern($1, fsdaemon_t)
2008-10-08 20:03:24 +00:00
init_labeled_script_domtrans($1, fsdaemon_initrc_exec_t)
domain_system_change_exemption($1)
role_transition $2 fsdaemon_initrc_exec_t system_r;
allow $2 system_r;
2008-02-07 16:37:47 +00:00
files_list_tmp($1)
2008-10-08 20:03:24 +00:00
admin_pattern($1, fsdaemon_tmp_t)
2008-02-07 16:37:47 +00:00
files_list_pids($1)
2008-10-08 20:03:24 +00:00
admin_pattern($1, fsdaemon_var_run_t)
2008-02-07 16:37:47 +00:00
')