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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
policy_module(gpm, 1.13.0)
########################################
#
# Declarations
#
type gpm_t;
type gpm_exec_t;
init_daemon_domain(gpm_t, gpm_exec_t)
type gpm_initrc_exec_t;
init_script_file(gpm_initrc_exec_t)
type gpm_conf_t;
files_type(gpm_conf_t)
type gpm_tmp_t;
files_tmp_file(gpm_tmp_t)
type gpm_var_run_t;
files_pid_file(gpm_var_run_t)
type gpmctl_t;
files_type(gpmctl_t)
########################################
#
# Local policy
#
allow gpm_t self:capability { dac_override setpcap setuid sys_admin sys_tty_config };
allow gpm_t self:process { signal signull getcap setcap };
allow gpm_t self:unix_stream_socket { accept listen };
allow gpm_t gpm_conf_t:dir list_dir_perms;
read_files_pattern(gpm_t, gpm_conf_t, gpm_conf_t)
read_lnk_files_pattern(gpm_t, gpm_conf_t, gpm_conf_t)
manage_dirs_pattern(gpm_t, gpm_tmp_t, gpm_tmp_t)
manage_files_pattern(gpm_t, gpm_tmp_t, gpm_tmp_t)
files_tmp_filetrans(gpm_t, gpm_tmp_t, { file dir })
allow gpm_t gpm_var_run_t:file manage_file_perms;
files_pid_filetrans(gpm_t, gpm_var_run_t, file)
allow gpm_t gpmctl_t:sock_file manage_sock_file_perms;
allow gpm_t gpmctl_t:fifo_file manage_fifo_file_perms;
dev_filetrans(gpm_t, gpmctl_t, { sock_file fifo_file })
kernel_read_kernel_sysctls(gpm_t)
kernel_list_proc(gpm_t)
kernel_read_proc_symlinks(gpm_t)
dev_read_sysfs(gpm_t)
# Access the mouse.
dev_rw_input_dev(gpm_t)
dev_rw_mouse(gpm_t)
files_read_etc_files(gpm_t)
fs_getattr_all_fs(gpm_t)
fs_search_auto_mountpoints(gpm_t)
term_use_unallocated_ttys(gpm_t)
domain_use_interactive_fds(gpm_t)
logging_send_syslog_msg(gpm_t)
miscfiles_read_localization(gpm_t)
userdom_use_user_terminals(gpm_t)
userdom_dontaudit_use_unpriv_user_fds(gpm_t)
userdom_dontaudit_search_user_home_dirs(gpm_t)
optional_policy(`
seutil_sigchld_newrole(gpm_t)
')
optional_policy(`
udev_read_db(gpm_t)
')
|