1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
policy_module(ksmtuned, 1.5.0)
########################################
#
# Declarations
#
type ksmtuned_t;
type ksmtuned_exec_t;
init_daemon_domain(ksmtuned_t, ksmtuned_exec_t)
type ksmtuned_initrc_exec_t;
init_script_file(ksmtuned_initrc_exec_t)
type ksmtuned_log_t;
logging_log_file(ksmtuned_log_t)
type ksmtuned_var_run_t;
files_pid_file(ksmtuned_var_run_t)
########################################
#
# Local policy
#
allow ksmtuned_t self:capability { sys_ptrace sys_tty_config };
allow ksmtuned_t self:fifo_file rw_fifo_file_perms;
manage_dirs_pattern(ksmtuned_t, ksmtuned_log_t, ksmtuned_log_t)
append_files_pattern(ksmtuned_t, ksmtuned_log_t, ksmtuned_log_t)
create_files_pattern(ksmtuned_t, ksmtuned_log_t, ksmtuned_log_t)
setattr_files_pattern(ksmtuned_t, ksmtuned_log_t, ksmtuned_log_t)
logging_log_filetrans(ksmtuned_t, ksmtuned_log_t, { file dir })
manage_files_pattern(ksmtuned_t, ksmtuned_var_run_t, ksmtuned_var_run_t)
files_pid_filetrans(ksmtuned_t, ksmtuned_var_run_t, file)
kernel_read_system_state(ksmtuned_t)
corecmd_exec_bin(ksmtuned_t)
corecmd_exec_shell(ksmtuned_t)
dev_rw_sysfs(ksmtuned_t)
domain_read_all_domains_state(ksmtuned_t)
mls_file_read_to_clearance(ksmtuned_t)
term_use_all_terms(ksmtuned_t)
auth_use_nsswitch(ksmtuned_t)
logging_send_syslog_msg(ksmtuned_t)
miscfiles_read_localization(ksmtuned_t)
|