aboutsummaryrefslogtreecommitdiff
blob: a4fcc945977d72a70a76aea30806d48d5ceebcf4 (plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
policy_module(tftp, 1.15.0)

########################################
#
# Declarations
#

## <desc>
##	<p>
##	Determine whether tftp can modify
##	public files used for public file
##	transfer services. Directories/Files must
##	be labeled public_content_rw_t.
##	</p>
## </desc>
gen_tunable(tftp_anon_write, false)

## <desc>
##	<p>
##	Determine whether tftp can manage
##	generic user home content.
##	</p>
## </desc>
gen_tunable(tftp_enable_homedir, false)

type tftpd_t;
type tftpd_exec_t;
init_daemon_domain(tftpd_t, tftpd_exec_t)

type tftpd_conf_t;
files_config_file(tftpd_conf_t)

type tftpd_var_run_t;
files_pid_file(tftpd_var_run_t)

type tftpdir_t;
files_type(tftpdir_t)

type tftpdir_rw_t;
files_type(tftpdir_rw_t)

########################################
#
# Local policy
#

allow tftpd_t self:capability { setgid setuid sys_chroot };
dontaudit tftpd_t self:capability sys_tty_config;
allow tftpd_t self:tcp_socket { accept listen };
allow tftpd_t self:unix_stream_socket { accept listen };

allow tftpd_t tftpd_conf_t:file read_file_perms;

allow tftpd_t tftpdir_t:dir list_dir_perms;
allow tftpd_t tftpdir_t:file read_file_perms;
allow tftpd_t tftpdir_t:lnk_file read_lnk_file_perms;

manage_dirs_pattern(tftpd_t, tftpdir_rw_t, tftpdir_rw_t)
manage_files_pattern(tftpd_t, tftpdir_rw_t, tftpdir_rw_t)
manage_lnk_files_pattern(tftpd_t, tftpdir_rw_t, tftpdir_rw_t)

manage_files_pattern(tftpd_t, tftpd_var_run_t, tftpd_var_run_t)
files_pid_filetrans(tftpd_t, tftpd_var_run_t, file)

kernel_read_system_state(tftpd_t)
kernel_read_kernel_sysctls(tftpd_t)

corenet_all_recvfrom_unlabeled(tftpd_t)
corenet_all_recvfrom_netlabel(tftpd_t)
corenet_udp_sendrecv_generic_if(tftpd_t)
corenet_udp_sendrecv_generic_node(tftpd_t)
corenet_udp_bind_generic_node(tftpd_t)

corenet_sendrecv_tftp_server_packets(tftpd_t)
corenet_udp_bind_tftp_port(tftpd_t)
corenet_udp_sendrecv_tftp_port(tftpd_t)

dev_read_sysfs(tftpd_t)

domain_use_interactive_fds(tftpd_t)

files_read_etc_runtime_files(tftpd_t)
files_read_var_files(tftpd_t)
files_read_var_symlinks(tftpd_t)
files_search_var(tftpd_t)

fs_getattr_all_fs(tftpd_t)
fs_search_auto_mountpoints(tftpd_t)

auth_use_nsswitch(tftpd_t)

logging_send_syslog_msg(tftpd_t)

miscfiles_read_localization(tftpd_t)
miscfiles_read_public_files(tftpd_t)

userdom_dontaudit_use_unpriv_user_fds(tftpd_t)
userdom_dontaudit_use_user_terminals(tftpd_t)
userdom_user_home_dir_filetrans_user_home_content(tftpd_t, { dir file lnk_file })

tunable_policy(`tftp_anon_write',`
	miscfiles_manage_public_files(tftpd_t)
')

tunable_policy(`tftp_enable_homedir',`
	allow tftpd_t self:capability { dac_override dac_read_search };

	files_list_home(tftpd_t)
	userdom_manage_user_home_content_dirs(tftpd_t)
	userdom_manage_user_home_content_files(tftpd_t)
	userdom_manage_user_home_content_symlinks(tftpd_t)
')

tunable_policy(`tftp_enable_homedir && use_nfs_home_dirs',`
	fs_manage_nfs_dirs(tftpd_t)
	fs_manage_nfs_files(tftpd_t)
	fs_read_nfs_symlinks(tftpd_t)
')

tunable_policy(`tftp_enable_homedir && use_samba_home_dirs',`
	fs_manage_cifs_dirs(tftpd_t)
	fs_manage_cifs_files(tftpd_t)
	fs_read_cifs_symlinks(tftpd_t)
')

optional_policy(`
	cobbler_read_lib_files(tftpd_t)
')

optional_policy(`
	inetd_udp_service_domain(tftpd_t, tftpd_exec_t)
')

optional_policy(`
	seutil_sigchld_newrole(tftpd_t)
')

optional_policy(`
	udev_read_db(tftpd_t)
')