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

47 lines
1.0 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>
## <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-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-02-07 16:37:47 +00:00
files_list_tmp($1)
2008-05-22 15:24:52 +00:00
manage_files_pattern($1, fsdaemon_tmp_t, fsdaemon_tmp_t)
2008-02-07 16:37:47 +00:00
files_list_pids($1)
2008-05-22 15:24:52 +00:00
manage_files_pattern($1, fsdaemon_var_run_t, fsdaemon_var_run_t)
2008-02-07 16:37:47 +00:00
')