]> git.proxmox.com Git - pve-firewall.git/blame - PVE/Firewall.pm
allow to disable single rules, and add ability to add comments
[pve-firewall.git] / PVE / Firewall.pm
CommitLineData
b6360c3f
DM
1package PVE::Firewall;
2
3use warnings;
4use strict;
5use Data::Dumper;
09d5f68e 6use Digest::SHA;
f789653a 7use PVE::Tools;
b6360c3f 8use PVE::QemuServer;
5e1267a5
DM
9use File::Path;
10use IO::File;
ecbea048 11use Net::IP;
06320eb0 12use PVE::Tools qw(run_command lock_file);
ecbea048 13
5e1267a5 14use Data::Dumper;
b6360c3f 15
06320eb0
DM
16my $pve_fw_lock_filename = "/var/lock/pvefw.lck";
17
857f62c8 18# imported/converted from: /usr/share/shorewall/macro.*
961b4928 19my $pve_fw_macros = {
857f62c8
DM
20 'Amanda' => [
21 { action => 'PARAM', proto => 'udp', dport => '10080' },
22 { action => 'PARAM', proto => 'tcp', dport => '10080' },
23 ],
24 'Auth' => [
25 { action => 'PARAM', proto => 'tcp', dport => '113' },
26 ],
27 'BGP' => [
28 { action => 'PARAM', proto => 'tcp', dport => '179' },
29 ],
30 'BitTorrent' => [
961b4928 31 { action => 'PARAM', proto => 'tcp', dport => '6881:6889' },
857f62c8
DM
32 { action => 'PARAM', proto => 'udp', dport => '6881' },
33 ],
34 'BitTorrent32' => [
35 { action => 'PARAM', proto => 'tcp', dport => '6881:6999' },
36 { action => 'PARAM', proto => 'udp', dport => '6881' },
37 ],
38 'CVS' => [
39 { action => 'PARAM', proto => 'tcp', dport => '2401' },
40 ],
41 'Citrix' => [
42 { action => 'PARAM', proto => 'tcp', dport => '1494' },
43 { action => 'PARAM', proto => 'udp', dport => '1604' },
44 { action => 'PARAM', proto => 'tcp', dport => '2598' },
45 ],
46 'DAAP' => [
47 { action => 'PARAM', proto => 'tcp', dport => '3689' },
48 { action => 'PARAM', proto => 'udp', dport => '3689' },
49 ],
50 'DCC' => [
51 { action => 'PARAM', proto => 'tcp', dport => '6277' },
52 ],
53 'DHCPfwd' => [
54 { action => 'PARAM', proto => 'udp', dport => '67:68', sport => '67:68' },
55 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '67:68', sport => '67:68' },
56 ],
57 'DNS' => [
58 { action => 'PARAM', proto => 'udp', dport => '53' },
59 { action => 'PARAM', proto => 'tcp', dport => '53' },
60 ],
61 'Distcc' => [
62 { action => 'PARAM', proto => 'tcp', dport => '3632' },
63 ],
64 'Edonkey' => [
65 { action => 'PARAM', proto => 'tcp', dport => '4662' },
66 { action => 'PARAM', proto => 'udp', dport => '4665' },
961b4928 67 ],
857f62c8
DM
68 'FTP' => [
69 { action => 'PARAM', proto => 'tcp', dport => '21' },
70 ],
71 'Finger' => [
72 { action => 'PARAM', proto => 'tcp', dport => '79' },
73 ],
74 'GNUnet' => [
75 { action => 'PARAM', proto => 'tcp', dport => '2086' },
76 { action => 'PARAM', proto => 'udp', dport => '2086' },
77 { action => 'PARAM', proto => 'tcp', dport => '1080' },
78 { action => 'PARAM', proto => 'udp', dport => '1080' },
79 ],
80 'GRE' => [
81 { action => 'PARAM', proto => '47' },
82 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '47' },
83 ],
84 'Git' => [
85 { action => 'PARAM', proto => 'tcp', dport => '9418' },
86 ],
87 'Gnutella' => [
88 { action => 'PARAM', proto => 'tcp', dport => '6346' },
89 { action => 'PARAM', proto => 'udp', dport => '6346' },
90 ],
91 'HKP' => [
92 { action => 'PARAM', proto => 'tcp', dport => '11371' },
93 ],
94 'HTTP' => [
961b4928
DM
95 { action => 'PARAM', proto => 'tcp', dport => '80' },
96 ],
857f62c8
DM
97 'HTTPS' => [
98 { action => 'PARAM', proto => 'tcp', dport => '443' },
99 ],
100 'ICPV2' => [
101 { action => 'PARAM', proto => 'udp', dport => '3130' },
102 ],
103 'ICQ' => [
104 { action => 'PARAM', proto => 'tcp', dport => '5190' },
105 ],
106 'IMAP' => [
107 { action => 'PARAM', proto => 'tcp', dport => '143' },
108 ],
109 'IMAPS' => [
110 { action => 'PARAM', proto => 'tcp', dport => '993' },
111 ],
112 'IPIP' => [
113 { action => 'PARAM', proto => '94' },
114 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '94' },
115 ],
116 'IPP' => [
117 { action => 'PARAM', proto => 'tcp', dport => '631' },
118 ],
119 'IPPbrd' => [
120 { action => 'PARAM', proto => 'udp', dport => '631' },
121 ],
122 'IPPserver' => [
123 { action => 'PARAM', source => 'SOURCE', dest => 'DEST', proto => 'tcp', dport => '631' },
124 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '631' },
125 ],
126 'IPsec' => [
127 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
128 { action => 'PARAM', proto => '50' },
129 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500', sport => '500' },
130 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '50' },
131 ],
132 'IPsecah' => [
133 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
134 { action => 'PARAM', proto => '51' },
135 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500', sport => '500' },
136 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '51' },
137 ],
138 'IPsecnat' => [
139 { action => 'PARAM', proto => 'udp', dport => '500' },
140 { action => 'PARAM', proto => 'udp', dport => '4500' },
141 { action => 'PARAM', proto => '50' },
142 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500' },
143 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '4500' },
144 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '50' },
145 ],
146 'IRC' => [
147 { action => 'PARAM', proto => 'tcp', dport => '6667' },
148 ],
149 'JabberPlain' => [
150 { action => 'PARAM', proto => 'tcp', dport => '5222' },
151 ],
152 'JabberSecure' => [
153 { action => 'PARAM', proto => 'tcp', dport => '5223' },
154 ],
155 'Jabberd' => [
156 { action => 'PARAM', proto => 'tcp', dport => '5269' },
157 ],
158 'Jetdirect' => [
159 { action => 'PARAM', proto => 'tcp', dport => '9100' },
160 ],
161 'L2TP' => [
162 { action => 'PARAM', proto => 'udp', dport => '1701' },
163 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '1701' },
164 ],
165 'LDAP' => [
166 { action => 'PARAM', proto => 'tcp', dport => '389' },
167 ],
168 'LDAPS' => [
169 { action => 'PARAM', proto => 'tcp', dport => '636' },
170 ],
171 'MSNP' => [
172 { action => 'PARAM', proto => 'tcp', dport => '1863' },
173 ],
174 'MSSQL' => [
175 { action => 'PARAM', proto => 'tcp', dport => '1433' },
176 ],
177 'Mail' => [
178 { action => 'PARAM', proto => 'tcp', dport => '25' },
179 { action => 'PARAM', proto => 'tcp', dport => '465' },
180 { action => 'PARAM', proto => 'tcp', dport => '587' },
181 ],
182 'Munin' => [
183 { action => 'PARAM', proto => 'tcp', dport => '4949' },
184 ],
185 'MySQL' => [
186 { action => 'PARAM', proto => 'tcp', dport => '3306' },
187 ],
188 'NNTP' => [
189 { action => 'PARAM', proto => 'tcp', dport => '119' },
190 ],
191 'NNTPS' => [
192 { action => 'PARAM', proto => 'tcp', dport => '563' },
193 ],
194 'NTP' => [
195 { action => 'PARAM', proto => 'udp', dport => '123' },
196 ],
197 'NTPbi' => [
198 { action => 'PARAM', proto => 'udp', dport => '123' },
199 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '123' },
200 ],
201 'NTPbrd' => [
202 { action => 'PARAM', proto => 'udp', dport => '123' },
203 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '123' },
204 ],
205 'OSPF' => [
206 { action => 'PARAM', proto => '89' },
207 ],
208 'OpenVPN' => [
209 { action => 'PARAM', proto => 'udp', dport => '1194' },
210 ],
211 'PCA' => [
212 { action => 'PARAM', proto => 'udp', dport => '5632' },
213 { action => 'PARAM', proto => 'tcp', dport => '5631' },
214 ],
215 'POP3' => [
216 { action => 'PARAM', proto => 'tcp', dport => '110' },
217 ],
218 'POP3S' => [
219 { action => 'PARAM', proto => 'tcp', dport => '995' },
220 ],
221 'PPtP' => [
222 { action => 'PARAM', proto => '47' },
223 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '47' },
224 { action => 'PARAM', proto => 'tcp', dport => '1723' },
225 ],
226 'Ping' => [
227 { action => 'PARAM', proto => 'icmp', dport => '8' },
228 ],
229 'PostgreSQL' => [
230 { action => 'PARAM', proto => 'tcp', dport => '5432' },
231 ],
232 'Printer' => [
233 { action => 'PARAM', proto => 'tcp', dport => '515' },
234 ],
235 'RDP' => [
236 { action => 'PARAM', proto => 'tcp', dport => '3389' },
237 ],
238 'RIPbi' => [
239 { action => 'PARAM', proto => 'udp', dport => '520' },
240 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '520' },
241 ],
242 'RNDC' => [
243 { action => 'PARAM', proto => 'tcp', dport => '953' },
244 ],
245 'Razor' => [
246 { action => 'ACCEPT', proto => 'tcp', dport => '2703' },
247 ],
248 'Rdate' => [
249 { action => 'PARAM', proto => 'tcp', dport => '37' },
250 ],
251 'Rsync' => [
252 { action => 'PARAM', proto => 'tcp', dport => '873' },
253 ],
254 'SANE' => [
255 { action => 'PARAM', proto => 'tcp', dport => '6566' },
256 ],
257 'SMB' => [
258 { action => 'PARAM', proto => 'udp', dport => '135,445' },
259 { action => 'PARAM', proto => 'udp', dport => '137:139' },
260 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '137' },
261 { action => 'PARAM', proto => 'tcp', dport => '135,139,445' },
262 ],
263 'SMBBI' => [
264 { action => 'PARAM', proto => 'udp', dport => '135,445' },
265 { action => 'PARAM', proto => 'udp', dport => '137:139' },
266 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '137' },
267 { action => 'PARAM', proto => 'tcp', dport => '135,139,445' },
268 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '135,445' },
269 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '137:139' },
270 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '1024:65535', sport => '137' },
271 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'tcp', dport => '135,139,445' },
272 ],
273 'SMBswat' => [
274 { action => 'PARAM', proto => 'tcp', dport => '901' },
275 ],
276 'SMTP' => [
277 { action => 'PARAM', proto => 'tcp', dport => '25' },
278 ],
279 'SMTPS' => [
280 { action => 'PARAM', proto => 'tcp', dport => '465' },
281 ],
282 'SNMP' => [
283 { action => 'PARAM', proto => 'udp', dport => '161:162' },
284 { action => 'PARAM', proto => 'tcp', dport => '161' },
285 ],
286 'SPAMD' => [
287 { action => 'PARAM', proto => 'tcp', dport => '783' },
288 ],
289 'SSH' => [
290 { action => 'PARAM', proto => 'tcp', dport => '22' },
291 ],
292 'SVN' => [
293 { action => 'PARAM', proto => 'tcp', dport => '3690' },
294 ],
295 'SixXS' => [
296 { action => 'PARAM', proto => 'tcp', dport => '3874' },
297 { action => 'PARAM', proto => 'udp', dport => '3740' },
298 { action => 'PARAM', proto => '41' },
299 { action => 'PARAM', proto => 'udp', dport => '5072,8374' },
300 ],
301 'Squid' => [
302 { action => 'PARAM', proto => 'tcp', dport => '3128' },
303 ],
304 'Submission' => [
305 { action => 'PARAM', proto => 'tcp', dport => '587' },
306 ],
307 'Syslog' => [
308 { action => 'PARAM', proto => 'udp', dport => '514' },
309 { action => 'PARAM', proto => 'tcp', dport => '514' },
310 ],
311 'TFTP' => [
312 { action => 'PARAM', proto => 'udp', dport => '69' },
313 ],
314 'Telnet' => [
315 { action => 'PARAM', proto => 'tcp', dport => '23' },
316 ],
317 'Telnets' => [
318 { action => 'PARAM', proto => 'tcp', dport => '992' },
319 ],
320 'Time' => [
321 { action => 'PARAM', proto => 'tcp', dport => '37' },
322 ],
323 'Trcrt' => [
324 { action => 'PARAM', proto => 'udp', dport => '33434:33524' },
325 { action => 'PARAM', proto => 'icmp', dport => '8' },
326 ],
327 'VNC' => [
328 { action => 'PARAM', proto => 'tcp', dport => '5900:5909' },
329 ],
330 'VNCL' => [
331 { action => 'PARAM', proto => 'tcp', dport => '5500' },
332 ],
333 'Web' => [
334 { action => 'PARAM', proto => 'tcp', dport => '80' },
961b4928
DM
335 { action => 'PARAM', proto => 'tcp', dport => '443' },
336 ],
857f62c8
DM
337 'Webcache' => [
338 { action => 'PARAM', proto => 'tcp', dport => '8080' },
339 ],
340 'Webmin' => [
341 { action => 'PARAM', proto => 'tcp', dport => '10000' },
342 ],
343 'Whois' => [
344 { action => 'PARAM', proto => 'tcp', dport => '43' },
345 ],
961b4928
DM
346};
347
348my $pve_fw_parsed_macros;
349my $pve_fw_preferred_macro_names = {};
3a616aa0 350
d8f2505e
DM
351my $pve_std_chains = {
352 'PVEFW-SET-ACCEPT-MARK' => [
353 "-j MARK --set-mark 1",
354 ],
79929d9c
DM
355 'PVEFW-DropBroadcast' => [
356 # same as shorewall 'Broadcast'
357 # simply DROP BROADCAST/MULTICAST/ANYCAST
358 # we can use this to reduce logging
359 { action => 'DROP', dsttype => 'BROADCAST' },
360 { action => 'DROP', dsttype => 'MULTICAST' },
361 { action => 'DROP', dsttype => 'ANYCAST' },
362 { action => 'DROP', dest => '224.0.0.0/4' },
363 ],
364 'PVEFW-reject' => [
365 # same as shorewall 'reject'
366 { action => 'DROP', dsttype => 'BROADCAST' },
367 { action => 'DROP', source => '224.0.0.0/4' },
368 { action => 'DROP', proto => 'icmp' },
369 "-p tcp -j REJECT --reject-with tcp-reset",
370 "-p udp -j REJECT --reject-with icmp-port-unreachable",
371 "-p icmp -j REJECT --reject-with icmp-host-unreachable",
372 "-j REJECT --reject-with icmp-host-prohibited",
373 ],
374 'PVEFW-Drop' => [
375 # same as shorewall 'Drop', which is equal to DROP,
376 # but REJECT/DROP some packages to reduce logging,
377 # and ACCEPT critical ICMP types
378 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
379 # we are not interested in BROADCAST/MULTICAST/ANYCAST
380 { action => 'PVEFW-DropBroadcast' },
381 # ACCEPT critical ICMP types
382 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
383 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
384 # Drop packets with INVALID state
385 "-m conntrack --ctstate INVALID -j DROP",
386 # Drop Microsoft SMB noise
387 { action => 'DROP', proto => 'udp', dport => '135,445', nbdport => 2 },
388 { action => 'DROP', proto => 'udp', dport => '137:139'},
389 { action => 'DROP', proto => 'udp', dport => '1024:65535', sport => 137 },
390 { action => 'DROP', proto => 'tcp', dport => '135,139,445', nbdport => 3 },
391 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
392 # Drop new/NotSyn traffic so that it doesn't get logged
393 "-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN -j DROP",
394 # Drop DNS replies
395 { action => 'DROP', proto => 'udp', sport => 53 },
396 ],
397 'PVEFW-Reject' => [
398 # same as shorewall 'Reject', which is equal to Reject,
399 # but REJECT/DROP some packages to reduce logging,
400 # and ACCEPT critical ICMP types
401 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
402 # we are not interested in BROADCAST/MULTICAST/ANYCAST
403 { action => 'PVEFW-DropBroadcast' },
404 # ACCEPT critical ICMP types
405 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
406 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
407 # Drop packets with INVALID state
408 "-m conntrack --ctstate INVALID -j DROP",
409 # Drop Microsoft SMB noise
410 { action => 'PVEFW-reject', proto => 'udp', dport => '135,445', nbdport => 2 },
411 { action => 'PVEFW-reject', proto => 'udp', dport => '137:139'},
412 { action => 'PVEFW-reject', proto => 'udp', dport => '1024:65535', sport => 137 },
413 { action => 'PVEFW-reject', proto => 'tcp', dport => '135,139,445', nbdport => 3 },
414 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
415 # Drop new/NotSyn traffic so that it doesn't get logged
416 "-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN -j DROP",
417 # Drop DNS replies
418 { action => 'DROP', proto => 'udp', sport => 53 },
419 ],
d86659ef 420 'PVEFW-logflags' => [
bee633ab 421 # same as shorewall logflags action. (fixme: enable/disable logging)
d86659ef
DM
422 "-j LOG --log-prefix \"logflags-dropped:\" --log-level 4 --log-ip-options",
423 "-j DROP",
424 ],
425 'PVEFW-tcpflags' => [
426 # same as shorewall tcpflags action.
427 # Packets arriving on this interface are checked for som illegal combinations of TCP flags
428 "-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG -g PVEFW-logflags",
429 "-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -g PVEFW-logflags",
430 "-p tcp -m tcp --tcp-flags SYN,RST SYN,RST -g PVEFW-logflags",
431 "-p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -g PVEFW-logflags",
432 "-p tcp -m tcp --sport 0 --tcp-flags FIN,SYN,RST,ACK SYN -g PVEFW-logflags",
433 ],
bee633ab
DM
434 'PVEFW-smurflog' => [
435 # same as shorewall smurflog. (fixme: enable/disable logging)
436 "-j LOG --log-prefix \"smurfs-dropped\" --log-level 4",
437 "-j DROP",
438 ],
439 'PVEFW-smurfs' => [
440 # same as shorewall smurfs action
441 # Filter packets for smurfs (packets with a broadcast address as the source).
442 "-s 0.0.0.0/32 -j RETURN",
443 "-m addrtype --src-type BROADCAST -g PVEFW-smurflog",
444 "-s 224.0.0.0/4 -g PVEFW-smurflog",
445 ],
d8f2505e
DM
446};
447
4b586518
DM
448# iptables -p icmp -h
449my $icmp_type_names = {
450 any => 1,
451 'echo-reply' => 1,
452 'destination-unreachable' => 1,
453 'network-unreachable' => 1,
454 'host-unreachable' => 1,
455 'protocol-unreachable' => 1,
456 'port-unreachable' => 1,
457 'fragmentation-needed' => 1,
458 'source-route-failed' => 1,
459 'network-unknown' => 1,
460 'host-unknown' => 1,
461 'network-prohibited' => 1,
462 'host-prohibited' => 1,
463 'TOS-network-unreachable' => 1,
464 'TOS-host-unreachable' => 1,
465 'communication-prohibited' => 1,
466 'host-precedence-violation' => 1,
467 'precedence-cutoff' => 1,
468 'source-quench' => 1,
469 'redirect' => 1,
470 'network-redirect' => 1,
471 'host-redirect' => 1,
472 'TOS-network-redirect' => 1,
473 'TOS-host-redirect' => 1,
474 'echo-request' => 1,
475 'router-advertisement' => 1,
476 'router-solicitation' => 1,
477 'time-exceeded' => 1,
478 'ttl-zero-during-transit' => 1,
479 'ttl-zero-during-reassembly' => 1,
480 'parameter-problem' => 1,
481 'ip-header-bad' => 1,
482 'required-option-missing' => 1,
483 'timestamp-request' => 1,
484 'timestamp-reply' => 1,
485 'address-mask-request' => 1,
486 'address-mask-reply' => 1,
487};
488
a332200b 489sub get_firewall_macros {
9aab3127 490
961b4928 491 return $pve_fw_parsed_macros if $pve_fw_parsed_macros;
6158271d 492
961b4928 493 $pve_fw_parsed_macros = {};
9aab3127 494
961b4928
DM
495 foreach my $k (keys %$pve_fw_macros) {
496 my $name = lc($k);
a332200b 497
961b4928
DM
498 my $macro = $pve_fw_macros->{$k};
499 $pve_fw_preferred_macro_names->{$name} = $k;
500 $pve_fw_parsed_macros->{$name} = $macro;
501 }
a332200b 502
961b4928 503 return $pve_fw_parsed_macros;
9aab3127
DM
504}
505
fcba0beb
DM
506my $etc_services;
507
508sub get_etc_services {
509
510 return $etc_services if $etc_services;
511
512 my $filename = "/etc/services";
513
514 my $fh = IO::File->new($filename, O_RDONLY);
515 if (!$fh) {
516 warn "unable to read '$filename' - $!\n";
517 return {};
518 }
519
520 my $services = {};
521
522 while (my $line = <$fh>) {
523 chomp ($line);
524 next if $line =~m/^#/;
525 next if ($line =~m/^\s*$/);
526
527 if ($line =~ m!^(\S+)\s+(\S+)/(tcp|udp).*$!) {
528 $services->{byid}->{$2}->{name} = $1;
35b66e9d 529 $services->{byid}->{$2}->{port} = $2;
fcba0beb
DM
530 $services->{byid}->{$2}->{$3} = 1;
531 $services->{byname}->{$1} = $services->{byid}->{$2};
532 }
533 }
534
535 close($fh);
536
6158271d
DM
537 $etc_services = $services;
538
3a616aa0 539
fcba0beb
DM
540 return $etc_services;
541}
542
543my $etc_protocols;
544
545sub get_etc_protocols {
546 return $etc_protocols if $etc_protocols;
547
548 my $filename = "/etc/protocols";
549
550 my $fh = IO::File->new($filename, O_RDONLY);
551 if (!$fh) {
552 warn "unable to read '$filename' - $!\n";
553 return {};
554 }
555
556 my $protocols = {};
557
558 while (my $line = <$fh>) {
559 chomp ($line);
560 next if $line =~m/^#/;
561 next if ($line =~m/^\s*$/);
562
563 if ($line =~ m!^(\S+)\s+(\d+)\s+.*$!) {
564 $protocols->{byid}->{$2}->{name} = $1;
565 $protocols->{byname}->{$1} = $protocols->{byid}->{$2};
566 }
567 }
568
569 close($fh);
570
571 $etc_protocols = $protocols;
572
573 return $etc_protocols;
574}
575
ecbea048
DM
576sub parse_address_list {
577 my ($str) = @_;
578
d6de1dc2 579 my $nbaor = 0;
ecbea048
DM
580 foreach my $aor (split(/,/, $str)) {
581 if (!Net::IP->new($aor)) {
582 my $err = Net::IP::Error();
583 die "invalid IP address: $err\n";
d6de1dc2
AD
584 }else{
585 $nbaor++;
ecbea048
DM
586 }
587 }
d6de1dc2 588 return $nbaor;
ecbea048 589}
dddd9413 590
fcba0beb
DM
591sub parse_port_name_number_or_range {
592 my ($str) = @_;
593
594 my $services = PVE::Firewall::get_etc_services();
4cdbb3b7 595 my $nbports = 0;
fcba0beb 596 foreach my $item (split(/,/, $str)) {
4cdbb3b7 597 my $portlist = "";
35b66e9d 598 my $oldpon = undef;
4b586518 599 $nbports++;
fcba0beb 600 foreach my $pon (split(':', $item, 2)) {
35b66e9d 601 $pon = $services->{byname}->{$pon}->{port} if $services->{byname}->{$pon}->{port};
4cdbb3b7 602 if ($pon =~ m/^\d+$/){
857f62c8 603 die "invalid port '$pon'\n" if $pon < 0 && $pon > 65535;
35b66e9d
AD
604 die "port '$pon' must be bigger than port '$oldpon' \n" if $oldpon && ($pon < $oldpon);
605 $oldpon = $pon;
4cdbb3b7
AD
606 }else{
607 die "invalid port $services->{byname}->{$pon}\n" if !$services->{byname}->{$pon};
608 }
fcba0beb
DM
609 }
610 }
611
4cdbb3b7 612 return ($nbports);
fcba0beb
DM
613}
614
780bcc0f
DM
615my $bridge_firewall_enabled = 0;
616
617sub enable_bridge_firewall {
618
619 return if $bridge_firewall_enabled; # only once
620
621 system("echo 1 > /proc/sys/net/bridge/bridge-nf-call-iptables");
622 system("echo 1 > /proc/sys/net/bridge/bridge-nf-call-ip6tables");
623
624 $bridge_firewall_enabled = 1;
625}
626
8cebfa6f 627my $rule_format = "%-15s %-30s %-30s %-15s %-15s %-15s\n";
dddd9413 628
3a616aa0
AD
629sub iptables {
630 my ($cmd) = @_;
631
632 run_command("/sbin/iptables $cmd", outfunc => sub {}, errfunc => sub {});
633}
634
b16e818e
DM
635sub iptables_restore_cmdlist {
636 my ($cmdlist) = @_;
3a616aa0 637
3fa83edf 638 run_command("/sbin/iptables-restore -n", input => $cmdlist);
3a616aa0
AD
639}
640
de2a57cd
DM
641sub iptables_get_chains {
642
643 my $res = {};
644
645 # check what chains we want to track
646 my $is_pvefw_chain = sub {
647 my $name = shift;
648
dec84fcd
DM
649 return 1 if $name =~ m/^PVEFW-\S+$/;
650
de2a57cd 651 return 1 if $name =~ m/^tap\d+i\d+-(:?IN|OUT)$/;
5927497d 652 return 1 if $name =~ m/^vmbr\d+-(:?FW|IN|OUT)$/;
f50656c2 653 return 1 if $name =~ m/^GROUP-(:?[^\s\-]+)-(:?IN|OUT)$/;
de2a57cd
DM
654
655 return undef;
656 };
657
658 my $table = '';
659
de2a57cd
DM
660 my $parser = sub {
661 my $line = shift;
662
663 return if $line =~ m/^#/;
664 return if $line =~ m/^\s*$/;
665
666 if ($line =~ m/^\*(\S+)$/) {
667 $table = $1;
668 return;
669 }
670
671 return if $table ne 'filter';
672
673 if ($line =~ m/^:(\S+)\s/) {
674 my $chain = $1;
675 return if !&$is_pvefw_chain($chain);
3fa83edf 676 $res->{$chain} = "unknown";
09d5f68e 677 } elsif ($line =~ m/^-A\s+(\S+)\s.*--comment\s+\"PVESIG:(\S+)\"/) {
3fa83edf 678 my ($chain, $sig) = ($1, $2);
de2a57cd 679 return if !&$is_pvefw_chain($chain);
3fa83edf 680 $res->{$chain} = $sig;
de2a57cd
DM
681 } else {
682 # simply ignore the rest
683 return;
684 }
685 };
686
687 run_command("/sbin/iptables-save", outfunc => $parser);
688
de2a57cd
DM
689 return $res;
690}
691
3a616aa0
AD
692sub iptables_chain_exist {
693 my ($chain) = @_;
694
695 eval{
696 iptables("-n --list $chain");
697 };
698 return undef if $@;
699
700 return 1;
701}
702
703sub iptables_rule_exist {
704 my ($rule) = @_;
705
706 eval{
707 iptables("-C $rule");
708 };
709 return undef if $@;
710
711 return 1;
712}
713
3fa83edf 714sub ruleset_generate_rule {
2f906466 715 my ($ruleset, $chain, $rule, $actions, $goto) = @_;
3a616aa0 716
11bac5c2
DM
717 return if $rule->{disable};
718
3fa83edf 719 my $cmd = '';
3a616aa0 720
d6de1dc2 721 $cmd .= " -m iprange --src-range" if $rule->{nbsource} && $rule->{nbsource} > 1;
3a616aa0 722 $cmd .= " -s $rule->{source}" if $rule->{source};
d6de1dc2 723 $cmd .= " -m iprange --dst-range" if $rule->{nbdest} && $rule->{nbdest} > 1;
8c32a215 724 $cmd .= " -d $rule->{dest}" if $rule->{dest};
3a616aa0 725 $cmd .= " -p $rule->{proto}" if $rule->{proto};
4b586518
DM
726
727 if (($rule->{nbdport} && $rule->{nbdport} > 1) ||
728 ($rule->{nbsport} && $rule->{nbsport} > 1)) {
729 $cmd .= " --match multiport"
730 }
731
732 if ($rule->{dport}) {
733 if ($rule->{proto} && $rule->{proto} eq 'icmp') {
734 # Note: we use dport to store --icmp-type
735 die "unknown icmp-type\n" if !$icmp_type_names->{$rule->{dport}};
736 $cmd .= " -m icmp --icmp-type $rule->{dport}";
737 } else {
738 if ($rule->{nbdport} && $rule->{nbdport} > 1) {
739 $cmd .= " --dports $rule->{dport}";
740 } else {
741 $cmd .= " --dport $rule->{dport}";
742 }
743 }
744 }
745
746 if ($rule->{sport}) {
747 if ($rule->{nbsport} && $rule->{nbsport} > 1) {
748 $cmd .= " --sports $rule->{sport}";
749 } else {
750 $cmd .= " --sport $rule->{sport}";
751 }
752 }
753
754 $cmd .= " -m addrtype --dst-type $rule->{dsttype}" if $rule->{dsttype};
4e6112f9
DM
755
756 if (my $action = $rule->{action}) {
2f906466 757 $action = $actions->{$action} if defined($actions->{$action});
4e6112f9
DM
758 $goto = 1 if !defined($goto) && $action eq 'PVEFW-SET-ACCEPT-MARK';
759 $cmd .= $goto ? " -g $action" : " -j $action";
760 };
3a616aa0 761
3fa83edf
DM
762 ruleset_addrule($ruleset, $chain, $cmd) if $cmd;
763}
764
765sub ruleset_create_chain {
766 my ($ruleset, $chain) = @_;
3a616aa0 767
d050c724
DM
768 die "Invalid chain name '$chain' (28 char max)\n" if length($chain) > 28;
769
3fa83edf
DM
770 die "chain '$chain' already exists\n" if $ruleset->{$chain};
771
772 $ruleset->{$chain} = [];
3a616aa0
AD
773}
774
3fa83edf
DM
775sub ruleset_chain_exist {
776 my ($ruleset, $chain) = @_;
3a616aa0 777
3fa83edf
DM
778 return $ruleset->{$chain} ? 1 : undef;
779}
3a616aa0 780
3fa83edf
DM
781sub ruleset_addrule {
782 my ($ruleset, $chain, $rule) = @_;
3a616aa0 783
3fa83edf 784 die "no such chain '$chain'\n" if !$ruleset->{$chain};
3a616aa0 785
3fa83edf
DM
786 push @{$ruleset->{$chain}}, "-A $chain $rule";
787}
3a616aa0 788
3fa83edf
DM
789sub ruleset_insertrule {
790 my ($ruleset, $chain, $rule) = @_;
3a616aa0 791
3fa83edf 792 die "no such chain '$chain'\n" if !$ruleset->{$chain};
3a616aa0 793
3fa83edf
DM
794 unshift @{$ruleset->{$chain}}, "-A $chain $rule";
795}
3a616aa0 796
3fa83edf
DM
797sub generate_bridge_chains {
798 my ($ruleset, $bridge) = @_;
3a616aa0 799
dec84fcd
DM
800 if (!ruleset_chain_exist($ruleset, "PVEFW-FORWARD")){
801 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
7fab95bc 802 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
3a616aa0
AD
803 }
804
5927497d
DM
805 if (!ruleset_chain_exist($ruleset, "$bridge-FW")) {
806 ruleset_create_chain($ruleset, "$bridge-FW");
807 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-o $bridge -m physdev --physdev-is-bridged -j $bridge-FW");
808 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i $bridge -m physdev --physdev-is-bridged -j $bridge-FW");
9fcad984
AD
809 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-o $bridge -j DROP"); # disable interbridge routing
810 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i $bridge -j DROP"); # disable interbridge routing
3fa83edf 811 }
3a616aa0 812
3fa83edf
DM
813 if (!ruleset_chain_exist($ruleset, "$bridge-OUT")) {
814 ruleset_create_chain($ruleset, "$bridge-OUT");
5927497d 815 ruleset_addrule($ruleset, "$bridge-FW", "-m physdev --physdev-is-bridged --physdev-is-in -j $bridge-OUT");
9fcad984
AD
816 }
817
818 if (!ruleset_chain_exist($ruleset, "$bridge-IN")) {
819 ruleset_create_chain($ruleset, "$bridge-IN");
5927497d 820 ruleset_addrule($ruleset, "$bridge-FW", "-m physdev --physdev-is-bridged --physdev-is-out -j $bridge-IN");
fdb0bf20 821 ruleset_addrule($ruleset, "$bridge-FW", "-m mark --mark 1 -j ACCEPT");
7323008d
DM
822 # accept traffic to unmanaged bridge ports
823 ruleset_addrule($ruleset, "$bridge-FW", "-m physdev --physdev-is-bridged --physdev-is-out -j ACCEPT ");
3fa83edf
DM
824 }
825}
3a616aa0
AD
826
827sub generate_tap_rules_direction {
fa9c4a6f
DM
828 my ($ruleset, $group_rules, $iface, $netid, $macaddr, $vmfw_conf, $bridge, $direction) = @_;
829
830 my $rules = $vmfw_conf->{lc($direction)};
831 my $options = $vmfw_conf->{options};
3a616aa0
AD
832
833 my $tapchain = "$iface-$direction";
834
3fa83edf 835 ruleset_create_chain($ruleset, $tapchain);
3a616aa0 836
bee633ab
DM
837 if (!(defined($options->{nosmurfs}) && $options->{nosmurfs} == 0)) {
838 ruleset_addrule($ruleset, $tapchain, "-m conntrack --ctstate INVALID,NEW -j PVEFW-smurfs");
839 }
840
ce15d90b
DM
841 if (!(defined($options->{dhcp}) && $options->{dhcp} == 0)) {
842 ruleset_addrule($ruleset, $tapchain, "-p udp -m udp --dport 67:68 -j ACCEPT");
843 }
844
bee633ab
DM
845 if ($options->{tcpflags}) {
846 ruleset_addrule($ruleset, $tapchain, "-p tcp -j PVEFW-tcpflags");
847 }
848
7fab95bc
DM
849 ruleset_addrule($ruleset, $tapchain, "-m conntrack --ctstate INVALID -j DROP");
850 ruleset_addrule($ruleset, $tapchain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
3a616aa0 851
9c6b6efd
DM
852 if ($direction eq 'OUT' && defined($macaddr) &&
853 !(defined($options->{macfilter}) && $options->{macfilter} == 0)) {
c29f55c9
DM
854 ruleset_addrule($ruleset, $tapchain, "-m mac ! --mac-source $macaddr -j DROP");
855 }
856
3fa83edf 857 if ($rules) {
3a616aa0
AD
858 foreach my $rule (@$rules) {
859 next if $rule->{iface} && $rule->{iface} ne $netid;
bfbfa8b6 860 # we go to $bridge-IN if accept in out rules
3a616aa0 861 if($rule->{action} =~ m/^(GROUP-(\S+))$/){
3fa83edf
DM
862 $rule->{action} .= "-$direction";
863 # generate empty group rule if don't exist
864 if(!ruleset_chain_exist($ruleset, $rule->{action})){
51bae274 865 generate_group_rules($ruleset, $group_rules, $2);
3fa83edf 866 }
4e6112f9 867 ruleset_generate_rule($ruleset, $tapchain, $rule);
7b291cab 868 ruleset_addrule($ruleset, $tapchain, "-m mark --mark 1 -j RETURN")
31ff3ef6 869 if $direction eq 'OUT';
4e6112f9 870 } else {
2f906466
DM
871 if ($direction eq 'OUT') {
872 ruleset_generate_rule($ruleset, $tapchain, $rule,
873 { ACCEPT => "PVEFW-SET-ACCEPT-MARK", REJECT => "PVEFW-reject" });
874 } else {
875 ruleset_generate_rule($ruleset, $tapchain, $rule, { REJECT => "PVEFW-reject" });
876 }
3a616aa0 877 }
4e6112f9 878 }
3a616aa0
AD
879 }
880
ccae0b50
DM
881 # implement policy
882 my $policy;
883
884 if ($direction eq 'OUT') {
885 $policy = $options->{'policy-out'} || 'ACCEPT'; # allow everything by default
886 } else {
887 $policy = $options->{'policy-in'} || 'DROP'; # allow everything by default
888 }
889
890 if ($policy eq 'ACCEPT') {
891 if ($direction eq 'OUT') {
fdb0bf20 892 ruleset_addrule($ruleset, $tapchain, "-g PVEFW-SET-ACCEPT-MARK");
ccae0b50
DM
893 } else {
894 ruleset_addrule($ruleset, $tapchain, "-j ACCEPT");
895 }
896 } elsif ($policy eq 'DROP') {
25c7b224 897 ruleset_addrule($ruleset, $tapchain, "-j PVEFW-Drop");
ccae0b50
DM
898 ruleset_addrule($ruleset, $tapchain, "-j LOG --log-prefix \"$tapchain-dropped: \" --log-level 4");
899 ruleset_addrule($ruleset, $tapchain, "-j DROP");
900 } elsif ($policy eq 'REJECT') {
25c7b224 901 ruleset_addrule($ruleset, $tapchain, "-j PVEFW-Reject");
ccae0b50 902 ruleset_addrule($ruleset, $tapchain, "-j LOG --log-prefix \"$tapchain-reject: \" --log-level 4");
25c7b224 903 ruleset_addrule($ruleset, $tapchain, "-g PVEFW-reject");
ccae0b50
DM
904 } else {
905 # should not happen
906 die "internal error: unknown policy '$policy'";
907 }
3a616aa0 908
3fa83edf
DM
909 # plug the tap chain to bridge chain
910 my $physdevdirection = $direction eq 'IN' ? "out" : "in";
911 my $rule = "-m physdev --physdev-$physdevdirection $iface --physdev-is-bridged -j $tapchain";
912 ruleset_insertrule($ruleset, "$bridge-$direction", $rule);
3a616aa0 913
3fa83edf
DM
914 if ($direction eq 'OUT'){
915 # add tap->host rules
916 my $rule = "-m physdev --physdev-$physdevdirection $iface -j $tapchain";
dec84fcd 917 ruleset_addrule($ruleset, "PVEFW-INPUT", $rule);
3a616aa0
AD
918 }
919}
920
0bd5f137 921sub enablehostfw {
51bae274 922 my ($ruleset, $rules, $group_rules) = @_;
0bd5f137 923
51bae274 924 # fixme: allow security groups
0bd5f137 925
3fa83edf 926 # host inbound firewall
dec84fcd
DM
927 my $chain = "PVEFW-HOST-IN";
928 ruleset_create_chain($ruleset, $chain);
0bd5f137 929
7fab95bc
DM
930 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID -j DROP");
931 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
dec84fcd
DM
932 ruleset_addrule($ruleset, $chain, "-i lo -j ACCEPT");
933 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST -j ACCEPT");
7fab95bc 934 ruleset_addrule($ruleset, $chain, "-p udp -m conntrack --ctstate NEW -m multiport --dports 5404,5405 -j ACCEPT");
dec84fcd 935 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 9000 -j ACCEPT"); #corosync
0bd5f137 936
3fa83edf
DM
937 if ($rules->{in}) {
938 foreach my $rule (@{$rules->{in}}) {
939 # we use RETURN because we need to check also tap rules
2f906466 940 ruleset_generate_rule($ruleset, $chain, $rule, { ACCEPT => 'RETURN', REJECT => "PVEFW-reject" });
3fa83edf 941 }
0bd5f137
AD
942 }
943
dec84fcd
DM
944 ruleset_addrule($ruleset, $chain, "-j LOG --log-prefix \"kvmhost-IN dropped: \" --log-level 4");
945 ruleset_addrule($ruleset, $chain, "-j DROP");
0bd5f137 946
3fa83edf 947 # host outbound firewall
aadd745e 948 $chain = "PVEFW-HOST-OUT";
dec84fcd
DM
949 ruleset_create_chain($ruleset, $chain);
950
7fab95bc
DM
951 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID -j DROP");
952 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
dec84fcd
DM
953 ruleset_addrule($ruleset, $chain, "-o lo -j ACCEPT");
954 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST -j ACCEPT");
7fab95bc 955 ruleset_addrule($ruleset, $chain, "-p udp -m conntrack --ctstate NEW -m multiport --dports 5404,5405 -j ACCEPT");
dec84fcd 956 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 9000 -j ACCEPT"); #corosync
0bd5f137 957
3fa83edf
DM
958 if ($rules->{out}) {
959 foreach my $rule (@{$rules->{out}}) {
960 # we use RETURN because we need to check also tap rules
2f906466 961 ruleset_generate_rule($ruleset, $chain, $rule, { ACCEPT => 'RETURN', REJECT => "PVEFW-reject" });
3fa83edf 962 }
0bd5f137
AD
963 }
964
dec84fcd
DM
965 ruleset_addrule($ruleset, $chain, "-j LOG --log-prefix \"kvmhost-OUT dropped: \" --log-level 4");
966 ruleset_addrule($ruleset, $chain, "-j DROP");
6158271d 967
dec84fcd
DM
968 ruleset_addrule($ruleset, "PVEFW-OUTPUT", "-j PVEFW-HOST-OUT");
969 ruleset_addrule($ruleset, "PVEFW-INPUT", "-j PVEFW-HOST-IN");
9d31b418
AD
970}
971
972sub generate_group_rules {
51bae274 973 my ($ruleset, $group_rules, $group) = @_;
9d31b418 974
51bae274 975 my $rules = $group_rules->{$group};
9d31b418 976
51bae274 977 die "no such security group '$group'\n" if !$rules;
6158271d 978
3fa83edf 979 my $chain = "GROUP-${group}-IN";
9d31b418 980
3fa83edf 981 ruleset_create_chain($ruleset, $chain);
9d31b418 982
3fa83edf
DM
983 if ($rules->{in}) {
984 foreach my $rule (@{$rules->{in}}) {
2f906466 985 ruleset_generate_rule($ruleset, $chain, $rule, { REJECT => "PVEFW-reject" });
9d31b418
AD
986 }
987 }
988
3fa83edf 989 $chain = "GROUP-${group}-OUT";
9d31b418 990
3fa83edf 991 ruleset_create_chain($ruleset, $chain);
4e6112f9 992 ruleset_addrule($ruleset, $chain, "-j MARK --set-mark 0"); # clear mark
9d31b418 993
3fa83edf
DM
994 if ($rules->{out}) {
995 foreach my $rule (@{$rules->{out}}) {
2f906466
DM
996 # we use PVEFW-SET-ACCEPT-MARK (Instead of ACCEPT) because we need to
997 # check also other tap rules later
998 ruleset_generate_rule($ruleset, $chain, $rule,
999 { ACCEPT => 'PVEFW-SET-ACCEPT-MARK', REJECT => "PVEFW-reject" });
9d31b418
AD
1000 }
1001 }
9d31b418
AD
1002}
1003
51bae274
DM
1004my $MAX_NETS = 32;
1005my $valid_netdev_names = {};
1006for (my $i = 0; $i < $MAX_NETS; $i++) {
1007 $valid_netdev_names->{"net$i"} = 1;
1008}
5e1267a5 1009
51bae274
DM
1010sub parse_fw_rule {
1011 my ($line, $need_iface, $allow_groups) = @_;
5e1267a5 1012
a332200b 1013 my $macros = get_firewall_macros();
fcba0beb 1014 my $protocols = get_etc_protocols();
51bae274
DM
1015
1016 my ($action, $iface, $source, $dest, $proto, $dport, $sport);
1017
11bac5c2
DM
1018 # we can add single line comments to the end of the rule
1019 my $comment = $1 if $line =~ s/#\s*(.*?)\s*$//;
1020
1021 # we can disable a rule when prefixed with '|'
1022 my $disable = 1 if $line =~ s/^\|//;
51bae274
DM
1023
1024 my @data = split(/\s+/, $line);
1025 my $expected_elements = $need_iface ? 7 : 6;
1026
1027 die "wrong number of rule elements\n" if scalar(@data) > $expected_elements;
1028
1029 if ($need_iface) {
1030 ($action, $iface, $source, $dest, $proto, $dport, $sport) = @data
1031 } else {
1032 ($action, $source, $dest, $proto, $dport, $sport) = @data;
1033 }
1034
1035 die "incomplete rule\n" if !$action;
1036
961b4928
DM
1037 my $macro;
1038 my $macro_name;
1039
51bae274
DM
1040 if ($action =~ m/^(ACCEPT|DROP|REJECT)$/) {
1041 # OK
1042 } elsif ($allow_groups && $action =~ m/^GROUP-(:?\S+)$/) {
1043 # OK
1044 } elsif ($action =~ m/^(\S+)\((ACCEPT|DROP|REJECT)\)$/) {
961b4928
DM
1045 ($macro_name, $action) = ($1, $2);
1046 my $lc_macro_name = lc($macro_name);
1047 my $preferred_name = $pve_fw_preferred_macro_names->{$lc_macro_name};
1048 $macro_name = $preferred_name if $preferred_name;
1049 $macro = $macros->{$lc_macro_name};
1050 die "unknown macro '$macro_name'\n" if !$macro;
51bae274
DM
1051 } else {
1052 die "unknown action '$action'\n";
1053 }
1054
1055 if ($need_iface) {
1056 $iface = undef if $iface && $iface eq '-';
6158271d 1057 die "unknown interface '$iface'\n"
51bae274
DM
1058 if defined($iface) && !$valid_netdev_names->{$iface};
1059 }
1060
1061 $proto = undef if $proto && $proto eq '-';
6158271d 1062 die "unknown protokol '$proto'\n" if $proto &&
51bae274
DM
1063 !(defined($protocols->{byname}->{$proto}) ||
1064 defined($protocols->{byid}->{$proto}));
1065
1066 $source = undef if $source && $source eq '-';
1067 $dest = undef if $dest && $dest eq '-';
1068
1069 $dport = undef if $dport && $dport eq '-';
1070 $sport = undef if $sport && $sport eq '-';
1071
51bae274
DM
1072 my $nbsource = undef;
1073 my $nbdest = undef;
1074
1075 $nbsource = parse_address_list($source) if $source;
1076 $nbdest = parse_address_list($dest) if $dest;
6158271d 1077
961b4928 1078 my $rules = [];
51bae274 1079
961b4928 1080 my $param = {
11bac5c2
DM
1081 disable => $disable,
1082 comment => $comment,
51bae274 1083 action => $action,
51bae274
DM
1084 iface => $iface,
1085 source => $source,
1086 dest => $dest,
1087 nbsource => $nbsource,
1088 nbdest => $nbdest,
1089 proto => $proto,
1090 dport => $dport,
1091 sport => $sport,
51bae274 1092 };
961b4928
DM
1093
1094 if ($macro) {
1095 foreach my $templ (@$macro) {
1096 my $rule = {};
faf7be7e 1097 my $param_used = {};
961b4928
DM
1098 foreach my $k (keys %$templ) {
1099 my $v = $templ->{$k};
857f62c8
DM
1100 if ($v eq 'PARAM') {
1101 $v = $param->{$k};
faf7be7e 1102 $param_used->{$k} = 1;
857f62c8
DM
1103 } elsif ($v eq 'DEST') {
1104 $v = $param->{dest};
faf7be7e 1105 $param_used->{dest} = 1;
857f62c8
DM
1106 } elsif ($v eq 'SOURCE') {
1107 $v = $param->{source};
faf7be7e 1108 $param_used->{source} = 1;
857f62c8
DM
1109 }
1110
961b4928
DM
1111 die "missing parameter '$k' in macro '$macro_name'\n" if !defined($v);
1112 $rule->{$k} = $v;
1113 }
faf7be7e
DM
1114 foreach my $k (keys %$param) {
1115 next if !defined($param->{$k});
1116 next if $param_used->{$k};
1117 if (defined($rule->{$k})) {
1118 die "parameter '$k' already define in macro (value = '$rule->{$k}')\n"
1119 if $rule->{$k} ne $param->{$k};
1120 } else {
1121 $rule->{$k} = $param->{$k};
1122 }
1123 }
961b4928
DM
1124 push @$rules, $rule;
1125 }
1126 } else {
1127 push @$rules, $param;
1128 }
1129
1130 foreach my $rule (@$rules) {
6158271d 1131 $rule->{nbdport} = parse_port_name_number_or_range($rule->{dport})
961b4928 1132 if defined($rule->{dport});
6158271d 1133 $rule->{nbsport} = parse_port_name_number_or_range($rule->{sport})
961b4928
DM
1134 if defined($rule->{sport});
1135 }
1136
1137 return $rules;
51bae274
DM
1138}
1139
85c6eaed
DM
1140sub parse_fw_option {
1141 my ($line) = @_;
1142
1143 my ($opt, $value);
1144
ce15d90b 1145 if ($line =~ m/^(enable|dhcp|macfilter|nosmurfs|tcpflags):\s*(0|1)\s*$/i) {
9c6b6efd
DM
1146 $opt = lc($1);
1147 $value = int($2);
85c6eaed
DM
1148 } elsif ($line =~ m/^(policy-(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
1149 $opt = lc($1);
1150 $value = uc($3);
9c6b6efd 1151 } else {
85c6eaed
DM
1152 chomp $line;
1153 die "can't parse option '$line'\n"
1154 }
1155
1156 return ($opt, $value);
1157}
1158
51bae274
DM
1159sub parse_vm_fw_rules {
1160 my ($filename, $fh) = @_;
1161
85c6eaed 1162 my $res = { in => [], out => [], options => {}};
51bae274
DM
1163
1164 my $section;
1165
5e1267a5
DM
1166 while (defined(my $line = <$fh>)) {
1167 next if $line =~ m/^#/;
1168 next if $line =~ m/^\s*$/;
1169
961b4928
DM
1170 my $linenr = $fh->input_line_number();
1171 my $prefix = "$filename (line $linenr)";
1172
85c6eaed 1173 if ($line =~ m/^\[(\S+)\]\s*$/i) {
5e1267a5 1174 $section = lc($1);
85c6eaed 1175 warn "$prefix: ignore unknown section '$section'\n" if !$res->{$section};
5e1267a5
DM
1176 next;
1177 }
51bae274 1178 if (!$section) {
961b4928 1179 warn "$prefix: skip line - no section";
5e1267a5
DM
1180 next;
1181 }
1182
85c6eaed
DM
1183 next if !$res->{$section}; # skip undefined section
1184
1185 if ($section eq 'options') {
6158271d
DM
1186 eval {
1187 my ($opt, $value) = parse_fw_option($line);
85c6eaed
DM
1188 $res->{options}->{$opt} = $value;
1189 };
1190 warn "$prefix: $@" if $@;
1191 next;
1192 }
1193
961b4928
DM
1194 my $rules;
1195 eval { $rules = parse_fw_rule($line, 1, 1); };
51bae274 1196 if (my $err = $@) {
961b4928 1197 warn "$prefix: $err";
5e1267a5
DM
1198 next;
1199 }
1200
961b4928 1201 push @{$res->{$section}}, @$rules;
51bae274
DM
1202 }
1203
1204 return $res;
1205}
1206
1207sub parse_host_fw_rules {
1208 my ($filename, $fh) = @_;
1209
1210 my $res = { in => [], out => [] };
1211
1212 my $section;
1213
1214 while (defined(my $line = <$fh>)) {
1215 next if $line =~ m/^#/;
1216 next if $line =~ m/^\s*$/;
1217
961b4928
DM
1218 my $linenr = $fh->input_line_number();
1219 my $prefix = "$filename (line $linenr)";
1220
51bae274
DM
1221 if ($line =~ m/^\[(in|out)\]\s*$/i) {
1222 $section = lc($1);
5e1267a5
DM
1223 next;
1224 }
51bae274 1225 if (!$section) {
961b4928 1226 warn "$prefix: skip line - no section";
5e1267a5
DM
1227 next;
1228 }
1229
961b4928
DM
1230 my $rules;
1231 eval { $rules = parse_fw_rule($line, 1, 1); };
ecbea048 1232 if (my $err = $@) {
961b4928 1233 warn "$prefix: $err";
ecbea048 1234 next;
ecbea048
DM
1235 }
1236
961b4928 1237 push @{$res->{$section}}, @$rules;
51bae274 1238 }
ecbea048 1239
51bae274
DM
1240 return $res;
1241}
4cdbb3b7 1242
51bae274
DM
1243sub parse_group_fw_rules {
1244 my ($filename, $fh) = @_;
5e1267a5 1245
51bae274
DM
1246 my $section;
1247 my $group;
1248
1249 my $res = { in => [], out => [] };
6158271d 1250
51bae274
DM
1251 while (defined(my $line = <$fh>)) {
1252 next if $line =~ m/^#/;
1253 next if $line =~ m/^\s*$/;
1254
961b4928
DM
1255 my $linenr = $fh->input_line_number();
1256 my $prefix = "$filename (line $linenr)";
1257
51bae274
DM
1258 if ($line =~ m/^\[(in|out):(\S+)\]\s*$/i) {
1259 $section = lc($1);
1260 $group = lc($2);
1261 next;
1262 }
1263 if (!$section || !$group) {
961b4928 1264 warn "$prefix: skip line - no section";
51bae274
DM
1265 next;
1266 }
1267
961b4928
DM
1268 my $rules;
1269 eval { $rules = parse_fw_rule($line, 0, 0); };
51bae274 1270 if (my $err = $@) {
961b4928 1271 warn "$prefix: $err";
51bae274
DM
1272 next;
1273 }
1274
961b4928 1275 push @{$res->{$group}->{$section}}, @$rules;
5e1267a5
DM
1276 }
1277
1278 return $res;
1279}
1280
06320eb0
DM
1281sub run_locked {
1282 my ($code, @param) = @_;
1283
1284 my $timeout = 10;
1285
1286 my $res = lock_file($pve_fw_lock_filename, $timeout, $code, @param);
1287
1288 die $@ if $@;
1289
1290 return $res;
1291}
1292
5e1267a5
DM
1293sub read_local_vm_config {
1294
1295 my $openvz = {};
1296
1297 my $qemu = {};
1298
1299 my $list = PVE::QemuServer::config_list();
1300
1301 foreach my $vmid (keys %$list) {
5e1267a5
DM
1302 my $cfspath = PVE::QemuServer::cfs_config_path($vmid);
1303 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
1304 $qemu->{$vmid} = $conf;
1305 }
1306 }
1307
1308 my $vmdata = { openvz => $openvz, qemu => $qemu };
1309
1310 return $vmdata;
1311};
1312
1313sub read_vm_firewall_rules {
1314 my ($vmdata) = @_;
1315 my $rules = {};
1316 foreach my $vmid (keys %{$vmdata->{qemu}}, keys %{$vmdata->{openvz}}) {
1317 my $filename = "/etc/pve/firewall/$vmid.fw";
1318 my $fh = IO::File->new($filename, O_RDONLY);
1319 next if !$fh;
1320
51bae274 1321 $rules->{$vmid} = parse_vm_fw_rules($filename, $fh);
5e1267a5
DM
1322 }
1323
1324 return $rules;
1325}
1326
d8f2505e
DM
1327sub generate_std_chains {
1328 my ($ruleset) = @_;
1329
1330 foreach my $chain (keys %$pve_std_chains) {
1331 ruleset_create_chain($ruleset, $chain);
1332 foreach my $rule (@{$pve_std_chains->{$chain}}) {
1333 if (ref($rule)) {
1334 ruleset_generate_rule($ruleset, $chain, $rule);
1335 } else {
1336 ruleset_addrule($ruleset, $chain, $rule);
1337 }
1338 }
1339 }
1340}
1341
5e1267a5 1342sub compile {
5e1267a5
DM
1343 my $vmdata = read_local_vm_config();
1344 my $rules = read_vm_firewall_rules($vmdata);
6158271d 1345
51bae274
DM
1346 my $group_rules = {};
1347 my $filename = "/etc/pve/firewall/groups.fw";
1348 if (my $fh = IO::File->new($filename, O_RDONLY)) {
1349 $group_rules = parse_group_fw_rules($filename, $fh);
1350 }
5e1267a5 1351
3fa83edf
DM
1352 #print Dumper($rules);
1353
1354 my $ruleset = {};
1355
dec84fcd
DM
1356 ruleset_create_chain($ruleset, "PVEFW-INPUT");
1357 ruleset_create_chain($ruleset, "PVEFW-OUTPUT");
fadb13dd 1358 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
3fa83edf 1359
d8f2505e 1360 generate_std_chains($ruleset);
4e6112f9 1361
fadb13dd 1362 my $enable_hostfw = 0;
51bae274
DM
1363 $filename = "/etc/pve/local/host.fw";
1364 if (my $fh = IO::File->new($filename, O_RDONLY)) {
1365 my $host_rules = parse_host_fw_rules($filename, $fh);
fadb13dd
DM
1366
1367 $enable_hostfw = 1;
1368
51bae274
DM
1369 enablehostfw($ruleset, $host_rules, $group_rules);
1370 }
3fa83edf 1371
6158271d 1372 # generate firewall rules for QEMU VMs
3fa83edf
DM
1373 foreach my $vmid (keys %{$vmdata->{qemu}}) {
1374 my $conf = $vmdata->{qemu}->{$vmid};
fa9c4a6f
DM
1375 my $vmfw_conf = $rules->{$vmid};
1376 next if !$vmfw_conf;
1377 next if defined($vmfw_conf->{options}->{enable}) && ($vmfw_conf->{options}->{enable} == 0);
3fa83edf
DM
1378
1379 foreach my $netid (keys %$conf) {
1380 next if $netid !~ m/^net(\d+)$/;
1381 my $net = PVE::QemuServer::parse_net($conf->{$netid});
1382 next if !$net;
1383 my $iface = "tap${vmid}i$1";
5e1267a5 1384
3fa83edf
DM
1385 my $bridge = $net->{bridge};
1386 next if !$bridge; # fixme: ?
1387
1388 $bridge .= "v$net->{tag}" if $net->{tag};
1389
fadb13dd 1390
3fa83edf
DM
1391 generate_bridge_chains($ruleset, $bridge);
1392
c29f55c9 1393 my $macaddr = $net->{macaddr};
fa9c4a6f
DM
1394 generate_tap_rules_direction($ruleset, $group_rules, $iface, $netid, $macaddr, $vmfw_conf, $bridge, 'IN');
1395 generate_tap_rules_direction($ruleset, $group_rules, $iface, $netid, $macaddr, $vmfw_conf, $bridge, 'OUT');
3fa83edf
DM
1396 }
1397 }
c0413e35 1398
fadb13dd
DM
1399 if ($enable_hostfw) {
1400 # allow traffic from lo (ourself)
1401 ruleset_addrule($ruleset, "PVEFW-INPUT", "-i lo -j ACCEPT");
1402 }
c0413e35 1403
3fa83edf
DM
1404 return $ruleset;
1405}
1406
1407sub get_ruleset_status {
1408 my ($ruleset, $verbose) = @_;
1409
1410 my $active_chains = iptables_get_chains();
1411
1412 my $statushash = {};
1413
1414 foreach my $chain (sort keys %$ruleset) {
09d5f68e 1415 my $digest = Digest::SHA->new('sha1');
3fa83edf
DM
1416 foreach my $cmd (@{$ruleset->{$chain}}) {
1417 $digest->add("$cmd\n");
1418 }
1419 my $sig = $digest->b64digest;
1420 $statushash->{$chain}->{sig} = $sig;
1421
1422 my $oldsig = $active_chains->{$chain};
1423 if (!defined($oldsig)) {
1424 $statushash->{$chain}->{action} = 'create';
1425 } else {
1426 if ($oldsig eq $sig) {
1427 $statushash->{$chain}->{action} = 'exists';
1428 } else {
1429 $statushash->{$chain}->{action} = 'update';
1430 }
1431 }
1432 print "$statushash->{$chain}->{action} $chain ($sig)\n" if $verbose;
1433 foreach my $cmd (@{$ruleset->{$chain}}) {
1434 print "\t$cmd\n" if $verbose;
1435 }
1436 }
1437
1438 foreach my $chain (sort keys %$active_chains) {
1439 if (!defined($ruleset->{$chain})) {
1440 my $sig = $active_chains->{$chain};
1441 $statushash->{$chain}->{action} = 'delete';
1442 $statushash->{$chain}->{sig} = $sig;
1443 print "delete $chain ($sig)\n" if $verbose;
1444 }
6158271d 1445 }
3fa83edf
DM
1446
1447 return $statushash;
1448}
1449
1450sub print_ruleset {
1451 my ($ruleset) = @_;
1452
1453 get_ruleset_status($ruleset, 1);
1454}
1455
1456sub print_sig_rule {
1457 my ($chain, $sig) = @_;
1458
09d5f68e
DM
1459 # We just use this to store a SHA1 checksum used to detect changes
1460 return "-A $chain -m comment --comment \"PVESIG:$sig\"\n";
b6360c3f
DM
1461}
1462
a84f4d96
DM
1463sub apply_ruleset {
1464 my ($ruleset, $verbose) = @_;
3fa83edf 1465
a84f4d96 1466 enable_bridge_firewall();
3fa83edf
DM
1467
1468 my $cmdlist = "*filter\n"; # we pass this to iptables-restore;
1469
1470 my $statushash = get_ruleset_status($ruleset, $verbose);
1471
1472 # create missing chains first
1473 foreach my $chain (sort keys %$ruleset) {
1474 my $stat = $statushash->{$chain};
1475 die "internal error" if !$stat;
1476 next if $stat->{action} ne 'create';
886aba9c 1477
3fa83edf
DM
1478 $cmdlist .= ":$chain - [0:0]\n";
1479 }
1480
dec84fcd 1481 my $rule = "INPUT -j PVEFW-INPUT";
3fa83edf
DM
1482 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1483 $cmdlist .= "-A $rule\n";
1484 }
dec84fcd 1485 $rule = "OUTPUT -j PVEFW-OUTPUT";
3fa83edf
DM
1486 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1487 $cmdlist .= "-A $rule\n";
1488 }
1489
dec84fcd 1490 $rule = "FORWARD -j PVEFW-FORWARD";
3fa83edf
DM
1491 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1492 $cmdlist .= "-A $rule\n";
1493 }
1494
1495 foreach my $chain (sort keys %$ruleset) {
1496 my $stat = $statushash->{$chain};
1497 die "internal error" if !$stat;
1498
1499 if ($stat->{action} eq 'update' || $stat->{action} eq 'create') {
1500 $cmdlist .= "-F $chain\n";
1501 foreach my $cmd (@{$ruleset->{$chain}}) {
1502 $cmdlist .= "$cmd\n";
1503 }
1504 $cmdlist .= print_sig_rule($chain, $stat->{sig});
1505 } elsif ($stat->{action} eq 'delete') {
f5d28682 1506 die "internal error"; # this should not happen
3fa83edf
DM
1507 } elsif ($stat->{action} eq 'exists') {
1508 # do nothing
1509 } else {
1510 die "internal error - unknown status '$stat->{action}'";
1511 }
1512 }
1513
f5d28682
DM
1514 foreach my $chain (keys %$statushash) {
1515 next if $statushash->{$chain}->{action} ne 'delete';
1516 $cmdlist .= "-F $chain\n";
1517 }
1518 foreach my $chain (keys %$statushash) {
1519 next if $statushash->{$chain}->{action} ne 'delete';
fadb13dd
DM
1520 next if $chain eq 'PVEFW-INPUT';
1521 next if $chain eq 'PVEFW-OUTPUT';
1522 next if $chain eq 'PVEFW-FORWARD';
f5d28682
DM
1523 $cmdlist .= "-X $chain\n";
1524 }
1525
3fa83edf
DM
1526 $cmdlist .= "COMMIT\n";
1527
1528 print $cmdlist if $verbose;
1529
1530 iptables_restore_cmdlist($cmdlist);
1531
6158271d 1532 # test: re-read status and check if everything is up to date
3fa83edf
DM
1533 $statushash = get_ruleset_status($ruleset);
1534
1535 my $errors;
1536 foreach my $chain (sort keys %$ruleset) {
1537 my $stat = $statushash->{$chain};
1538 if ($stat->{action} ne 'exists') {
1539 warn "unable to update chain '$chain'\n";
1540 $errors = 1;
1541 }
1542 }
b6360c3f 1543
3fa83edf 1544 die "unable to apply firewall changes\n" if $errors;
b6360c3f
DM
1545}
1546
b6360c3f 15471;