]> git.proxmox.com Git - pve-firewall.git/blob - PVE/Firewall.pm
ca0e78d687bdb339cfe7bebc9038555a80ac1922
[pve-firewall.git] / PVE / Firewall.pm
1 package PVE::Firewall;
2
3 use warnings;
4 use strict;
5 use Data::Dumper;
6 use Digest::SHA;
7 use PVE::Tools;
8 use PVE::QemuServer;
9 use File::Path;
10 use IO::File;
11 use Net::IP;
12 use PVE::Tools qw(run_command lock_file);
13
14 use Data::Dumper;
15
16 my $pve_fw_lock_filename = "/var/lock/pvefw.lck";
17
18 # imported/converted from: /usr/share/shorewall/macro.*
19 my $pve_fw_macros = {
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' => [
31 { action => 'PARAM', proto => 'tcp', dport => '6881:6889' },
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' },
67 ],
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' => [
95 { action => 'PARAM', proto => 'tcp', dport => '80' },
96 ],
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' },
335 { action => 'PARAM', proto => 'tcp', dport => '443' },
336 ],
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 ],
346 };
347
348 my $pve_fw_parsed_macros;
349 my $pve_fw_preferred_macro_names = {};
350
351 my $pve_std_chains = {
352 'PVEFW-SET-ACCEPT-MARK' => [
353 "-j MARK --set-mark 1",
354 ],
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 ],
420 };
421
422 # iptables -p icmp -h
423 my $icmp_type_names = {
424 any => 1,
425 'echo-reply' => 1,
426 'destination-unreachable' => 1,
427 'network-unreachable' => 1,
428 'host-unreachable' => 1,
429 'protocol-unreachable' => 1,
430 'port-unreachable' => 1,
431 'fragmentation-needed' => 1,
432 'source-route-failed' => 1,
433 'network-unknown' => 1,
434 'host-unknown' => 1,
435 'network-prohibited' => 1,
436 'host-prohibited' => 1,
437 'TOS-network-unreachable' => 1,
438 'TOS-host-unreachable' => 1,
439 'communication-prohibited' => 1,
440 'host-precedence-violation' => 1,
441 'precedence-cutoff' => 1,
442 'source-quench' => 1,
443 'redirect' => 1,
444 'network-redirect' => 1,
445 'host-redirect' => 1,
446 'TOS-network-redirect' => 1,
447 'TOS-host-redirect' => 1,
448 'echo-request' => 1,
449 'router-advertisement' => 1,
450 'router-solicitation' => 1,
451 'time-exceeded' => 1,
452 'ttl-zero-during-transit' => 1,
453 'ttl-zero-during-reassembly' => 1,
454 'parameter-problem' => 1,
455 'ip-header-bad' => 1,
456 'required-option-missing' => 1,
457 'timestamp-request' => 1,
458 'timestamp-reply' => 1,
459 'address-mask-request' => 1,
460 'address-mask-reply' => 1,
461 };
462
463 sub get_firewall_macros {
464
465 return $pve_fw_parsed_macros if $pve_fw_parsed_macros;
466
467 $pve_fw_parsed_macros = {};
468
469 foreach my $k (keys %$pve_fw_macros) {
470 my $name = lc($k);
471
472 my $macro = $pve_fw_macros->{$k};
473 $pve_fw_preferred_macro_names->{$name} = $k;
474 $pve_fw_parsed_macros->{$name} = $macro;
475 }
476
477 return $pve_fw_parsed_macros;
478 }
479
480 my $etc_services;
481
482 sub get_etc_services {
483
484 return $etc_services if $etc_services;
485
486 my $filename = "/etc/services";
487
488 my $fh = IO::File->new($filename, O_RDONLY);
489 if (!$fh) {
490 warn "unable to read '$filename' - $!\n";
491 return {};
492 }
493
494 my $services = {};
495
496 while (my $line = <$fh>) {
497 chomp ($line);
498 next if $line =~m/^#/;
499 next if ($line =~m/^\s*$/);
500
501 if ($line =~ m!^(\S+)\s+(\S+)/(tcp|udp).*$!) {
502 $services->{byid}->{$2}->{name} = $1;
503 $services->{byid}->{$2}->{port} = $2;
504 $services->{byid}->{$2}->{$3} = 1;
505 $services->{byname}->{$1} = $services->{byid}->{$2};
506 }
507 }
508
509 close($fh);
510
511 $etc_services = $services;
512
513
514 return $etc_services;
515 }
516
517 my $etc_protocols;
518
519 sub get_etc_protocols {
520 return $etc_protocols if $etc_protocols;
521
522 my $filename = "/etc/protocols";
523
524 my $fh = IO::File->new($filename, O_RDONLY);
525 if (!$fh) {
526 warn "unable to read '$filename' - $!\n";
527 return {};
528 }
529
530 my $protocols = {};
531
532 while (my $line = <$fh>) {
533 chomp ($line);
534 next if $line =~m/^#/;
535 next if ($line =~m/^\s*$/);
536
537 if ($line =~ m!^(\S+)\s+(\d+)\s+.*$!) {
538 $protocols->{byid}->{$2}->{name} = $1;
539 $protocols->{byname}->{$1} = $protocols->{byid}->{$2};
540 }
541 }
542
543 close($fh);
544
545 $etc_protocols = $protocols;
546
547 return $etc_protocols;
548 }
549
550 sub parse_address_list {
551 my ($str) = @_;
552
553 my $nbaor = 0;
554 foreach my $aor (split(/,/, $str)) {
555 if (!Net::IP->new($aor)) {
556 my $err = Net::IP::Error();
557 die "invalid IP address: $err\n";
558 }else{
559 $nbaor++;
560 }
561 }
562 return $nbaor;
563 }
564
565 sub parse_port_name_number_or_range {
566 my ($str) = @_;
567
568 my $services = PVE::Firewall::get_etc_services();
569 my $nbports = 0;
570 foreach my $item (split(/,/, $str)) {
571 my $portlist = "";
572 my $oldpon = undef;
573 $nbports++;
574 foreach my $pon (split(':', $item, 2)) {
575 $pon = $services->{byname}->{$pon}->{port} if $services->{byname}->{$pon}->{port};
576 if ($pon =~ m/^\d+$/){
577 die "invalid port '$pon'\n" if $pon < 0 && $pon > 65535;
578 die "port '$pon' must be bigger than port '$oldpon' \n" if $oldpon && ($pon < $oldpon);
579 $oldpon = $pon;
580 }else{
581 die "invalid port $services->{byname}->{$pon}\n" if !$services->{byname}->{$pon};
582 }
583 }
584 }
585
586 return ($nbports);
587 }
588
589 my $bridge_firewall_enabled = 0;
590
591 sub enable_bridge_firewall {
592
593 return if $bridge_firewall_enabled; # only once
594
595 system("echo 1 > /proc/sys/net/bridge/bridge-nf-call-iptables");
596 system("echo 1 > /proc/sys/net/bridge/bridge-nf-call-ip6tables");
597
598 $bridge_firewall_enabled = 1;
599 }
600
601 my $rule_format = "%-15s %-30s %-30s %-15s %-15s %-15s\n";
602
603 sub iptables {
604 my ($cmd) = @_;
605
606 run_command("/sbin/iptables $cmd", outfunc => sub {}, errfunc => sub {});
607 }
608
609 sub iptables_restore_cmdlist {
610 my ($cmdlist) = @_;
611
612 run_command("/sbin/iptables-restore -n", input => $cmdlist);
613 }
614
615 sub iptables_get_chains {
616
617 my $res = {};
618
619 # check what chains we want to track
620 my $is_pvefw_chain = sub {
621 my $name = shift;
622
623 return 1 if $name =~ m/^PVEFW-\S+$/;
624
625 return 1 if $name =~ m/^tap\d+i\d+-(:?IN|OUT)$/;
626 return 1 if $name =~ m/^vmbr\d+-(:?FW|IN|OUT)$/;
627 return 1 if $name =~ m/^GROUP-(:?[^\s\-]+)-(:?IN|OUT)$/;
628
629 return undef;
630 };
631
632 my $table = '';
633
634 my $parser = sub {
635 my $line = shift;
636
637 return if $line =~ m/^#/;
638 return if $line =~ m/^\s*$/;
639
640 if ($line =~ m/^\*(\S+)$/) {
641 $table = $1;
642 return;
643 }
644
645 return if $table ne 'filter';
646
647 if ($line =~ m/^:(\S+)\s/) {
648 my $chain = $1;
649 return if !&$is_pvefw_chain($chain);
650 $res->{$chain} = "unknown";
651 } elsif ($line =~ m/^-A\s+(\S+)\s.*--comment\s+\"PVESIG:(\S+)\"/) {
652 my ($chain, $sig) = ($1, $2);
653 return if !&$is_pvefw_chain($chain);
654 $res->{$chain} = $sig;
655 } else {
656 # simply ignore the rest
657 return;
658 }
659 };
660
661 run_command("/sbin/iptables-save", outfunc => $parser);
662
663 return $res;
664 }
665
666 sub iptables_chain_exist {
667 my ($chain) = @_;
668
669 eval{
670 iptables("-n --list $chain");
671 };
672 return undef if $@;
673
674 return 1;
675 }
676
677 sub iptables_rule_exist {
678 my ($rule) = @_;
679
680 eval{
681 iptables("-C $rule");
682 };
683 return undef if $@;
684
685 return 1;
686 }
687
688 sub ruleset_generate_rule {
689 my ($ruleset, $chain, $rule, $goto) = @_;
690
691 my $cmd = '';
692
693 $cmd .= " -m iprange --src-range" if $rule->{nbsource} && $rule->{nbsource} > 1;
694 $cmd .= " -s $rule->{source}" if $rule->{source};
695 $cmd .= " -m iprange --dst-range" if $rule->{nbdest} && $rule->{nbdest} > 1;
696 $cmd .= " -d $rule->{dest}" if $rule->{dest};
697 $cmd .= " -p $rule->{proto}" if $rule->{proto};
698
699 if (($rule->{nbdport} && $rule->{nbdport} > 1) ||
700 ($rule->{nbsport} && $rule->{nbsport} > 1)) {
701 $cmd .= " --match multiport"
702 }
703
704 if ($rule->{dport}) {
705 if ($rule->{proto} && $rule->{proto} eq 'icmp') {
706 # Note: we use dport to store --icmp-type
707 die "unknown icmp-type\n" if !$icmp_type_names->{$rule->{dport}};
708 $cmd .= " -m icmp --icmp-type $rule->{dport}";
709 } else {
710 if ($rule->{nbdport} && $rule->{nbdport} > 1) {
711 $cmd .= " --dports $rule->{dport}";
712 } else {
713 $cmd .= " --dport $rule->{dport}";
714 }
715 }
716 }
717
718 if ($rule->{sport}) {
719 if ($rule->{nbsport} && $rule->{nbsport} > 1) {
720 $cmd .= " --sports $rule->{sport}";
721 } else {
722 $cmd .= " --sport $rule->{sport}";
723 }
724 }
725
726 $cmd .= " -m addrtype --dst-type $rule->{dsttype}" if $rule->{dsttype};
727
728 if (my $action = $rule->{action}) {
729 $goto = 1 if !defined($goto) && $action eq 'PVEFW-SET-ACCEPT-MARK';
730 $cmd .= $goto ? " -g $action" : " -j $action";
731 };
732
733 ruleset_addrule($ruleset, $chain, $cmd) if $cmd;
734 }
735
736 sub ruleset_create_chain {
737 my ($ruleset, $chain) = @_;
738
739 die "Invalid chain name '$chain' (28 char max)\n" if length($chain) > 28;
740
741 die "chain '$chain' already exists\n" if $ruleset->{$chain};
742
743 $ruleset->{$chain} = [];
744 }
745
746 sub ruleset_chain_exist {
747 my ($ruleset, $chain) = @_;
748
749 return $ruleset->{$chain} ? 1 : undef;
750 }
751
752 sub ruleset_addrule {
753 my ($ruleset, $chain, $rule) = @_;
754
755 die "no such chain '$chain'\n" if !$ruleset->{$chain};
756
757 push @{$ruleset->{$chain}}, "-A $chain $rule";
758 }
759
760 sub ruleset_insertrule {
761 my ($ruleset, $chain, $rule) = @_;
762
763 die "no such chain '$chain'\n" if !$ruleset->{$chain};
764
765 unshift @{$ruleset->{$chain}}, "-A $chain $rule";
766 }
767
768 sub generate_bridge_chains {
769 my ($ruleset, $bridge) = @_;
770
771 if (!ruleset_chain_exist($ruleset, "PVEFW-FORWARD")){
772 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
773 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
774 }
775
776 if (!ruleset_chain_exist($ruleset, "$bridge-FW")) {
777 ruleset_create_chain($ruleset, "$bridge-FW");
778 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-o $bridge -m physdev --physdev-is-bridged -j $bridge-FW");
779 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i $bridge -m physdev --physdev-is-bridged -j $bridge-FW");
780 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-o $bridge -j DROP"); # disable interbridge routing
781 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i $bridge -j DROP"); # disable interbridge routing
782 }
783
784 if (!ruleset_chain_exist($ruleset, "$bridge-OUT")) {
785 ruleset_create_chain($ruleset, "$bridge-OUT");
786 ruleset_addrule($ruleset, "$bridge-FW", "-m physdev --physdev-is-bridged --physdev-is-in -j $bridge-OUT");
787 }
788
789 if (!ruleset_chain_exist($ruleset, "$bridge-IN")) {
790 ruleset_create_chain($ruleset, "$bridge-IN");
791 ruleset_addrule($ruleset, "$bridge-FW", "-m physdev --physdev-is-bridged --physdev-is-out -j $bridge-IN");
792 ruleset_addrule($ruleset, "$bridge-FW", "-m mark --mark 1 -j ACCEPT");
793 }
794 }
795
796 sub generate_tap_rules_direction {
797 my ($ruleset, $group_rules, $iface, $netid, $macaddr, $vmfw_conf, $bridge, $direction) = @_;
798
799 my $rules = $vmfw_conf->{lc($direction)};
800 my $options = $vmfw_conf->{options};
801
802 my $tapchain = "$iface-$direction";
803
804 ruleset_create_chain($ruleset, $tapchain);
805
806 ruleset_addrule($ruleset, $tapchain, "-m conntrack --ctstate INVALID -j DROP");
807 ruleset_addrule($ruleset, $tapchain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
808
809 if ($direction eq 'OUT' && defined($macaddr) &&
810 !(defined($options->{macfilter}) && $options->{macfilter} == 0)) {
811 ruleset_addrule($ruleset, $tapchain, "-m mac ! --mac-source $macaddr -j DROP");
812 }
813
814 if ($rules) {
815 foreach my $rule (@$rules) {
816 next if $rule->{iface} && $rule->{iface} ne $netid;
817 # we go to $bridge-IN if accept in out rules
818 if($rule->{action} =~ m/^(GROUP-(\S+))$/){
819 $rule->{action} .= "-$direction";
820 # generate empty group rule if don't exist
821 if(!ruleset_chain_exist($ruleset, $rule->{action})){
822 generate_group_rules($ruleset, $group_rules, $2);
823 }
824 ruleset_generate_rule($ruleset, $tapchain, $rule);
825 ruleset_addrule($ruleset, $tapchain, "-m mark --mark 1 -j RETURN")
826 if $direction eq 'OUT';
827 } else {
828 $rule->{action} = "PVEFW-SET-ACCEPT-MARK" if $rule->{action} eq 'ACCEPT' && $direction eq 'OUT';
829 ruleset_generate_rule($ruleset, $tapchain, $rule);
830 }
831 }
832 }
833
834 # implement policy
835 my $policy;
836
837 if ($direction eq 'OUT') {
838 $policy = $options->{'policy-out'} || 'ACCEPT'; # allow everything by default
839 } else {
840 $policy = $options->{'policy-in'} || 'DROP'; # allow everything by default
841 }
842
843 if ($policy eq 'ACCEPT') {
844 if ($direction eq 'OUT') {
845 ruleset_addrule($ruleset, $tapchain, "-g PVEFW-SET-ACCEPT-MARK");
846 } else {
847 ruleset_addrule($ruleset, $tapchain, "-j ACCEPT");
848 }
849 } elsif ($policy eq 'DROP') {
850 ruleset_addrule($ruleset, $tapchain, "-j PVEFW-Drop");
851 ruleset_addrule($ruleset, $tapchain, "-j LOG --log-prefix \"$tapchain-dropped: \" --log-level 4");
852 ruleset_addrule($ruleset, $tapchain, "-j DROP");
853 } elsif ($policy eq 'REJECT') {
854 ruleset_addrule($ruleset, $tapchain, "-j PVEFW-Reject");
855 ruleset_addrule($ruleset, $tapchain, "-j LOG --log-prefix \"$tapchain-reject: \" --log-level 4");
856 ruleset_addrule($ruleset, $tapchain, "-g PVEFW-reject");
857 } else {
858 # should not happen
859 die "internal error: unknown policy '$policy'";
860 }
861
862 # plug the tap chain to bridge chain
863 my $physdevdirection = $direction eq 'IN' ? "out" : "in";
864 my $rule = "-m physdev --physdev-$physdevdirection $iface --physdev-is-bridged -j $tapchain";
865 ruleset_insertrule($ruleset, "$bridge-$direction", $rule);
866
867 if ($direction eq 'OUT'){
868 # add tap->host rules
869 my $rule = "-m physdev --physdev-$physdevdirection $iface -j $tapchain";
870 ruleset_addrule($ruleset, "PVEFW-INPUT", $rule);
871 }
872 }
873
874 sub enablehostfw {
875 my ($ruleset, $rules, $group_rules) = @_;
876
877 # fixme: allow security groups
878
879 # host inbound firewall
880 my $chain = "PVEFW-HOST-IN";
881 ruleset_create_chain($ruleset, $chain);
882
883 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID -j DROP");
884 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
885 ruleset_addrule($ruleset, $chain, "-i lo -j ACCEPT");
886 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST -j ACCEPT");
887 ruleset_addrule($ruleset, $chain, "-p udp -m conntrack --ctstate NEW -m multiport --dports 5404,5405 -j ACCEPT");
888 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 9000 -j ACCEPT"); #corosync
889
890 if ($rules->{in}) {
891 foreach my $rule (@{$rules->{in}}) {
892 # we use RETURN because we need to check also tap rules
893 $rule->{action} = 'RETURN' if $rule->{action} eq 'ACCEPT';
894 ruleset_generate_rule($ruleset, $chain, $rule);
895 }
896 }
897
898 ruleset_addrule($ruleset, $chain, "-j LOG --log-prefix \"kvmhost-IN dropped: \" --log-level 4");
899 ruleset_addrule($ruleset, $chain, "-j DROP");
900
901 # host outbound firewall
902 $chain = "PVEFW-HOST-OUT";
903 ruleset_create_chain($ruleset, $chain);
904
905 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID -j DROP");
906 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
907 ruleset_addrule($ruleset, $chain, "-o lo -j ACCEPT");
908 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST -j ACCEPT");
909 ruleset_addrule($ruleset, $chain, "-p udp -m conntrack --ctstate NEW -m multiport --dports 5404,5405 -j ACCEPT");
910 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 9000 -j ACCEPT"); #corosync
911
912 if ($rules->{out}) {
913 foreach my $rule (@{$rules->{out}}) {
914 # we use RETURN because we need to check also tap rules
915 $rule->{action} = 'RETURN' if $rule->{action} eq 'ACCEPT';
916 ruleset_generate_rule($ruleset, $chain, $rule);
917 }
918 }
919
920 ruleset_addrule($ruleset, $chain, "-j LOG --log-prefix \"kvmhost-OUT dropped: \" --log-level 4");
921 ruleset_addrule($ruleset, $chain, "-j DROP");
922
923 ruleset_addrule($ruleset, "PVEFW-OUTPUT", "-j PVEFW-HOST-OUT");
924 ruleset_addrule($ruleset, "PVEFW-INPUT", "-j PVEFW-HOST-IN");
925 }
926
927 sub generate_group_rules {
928 my ($ruleset, $group_rules, $group) = @_;
929
930 my $rules = $group_rules->{$group};
931
932 die "no such security group '$group'\n" if !$rules;
933
934 my $chain = "GROUP-${group}-IN";
935
936 ruleset_create_chain($ruleset, $chain);
937
938 if ($rules->{in}) {
939 foreach my $rule (@{$rules->{in}}) {
940 ruleset_generate_rule($ruleset, $chain, $rule);
941 }
942 }
943
944 $chain = "GROUP-${group}-OUT";
945
946 ruleset_create_chain($ruleset, $chain);
947 ruleset_addrule($ruleset, $chain, "-j MARK --set-mark 0"); # clear mark
948
949 if ($rules->{out}) {
950 foreach my $rule (@{$rules->{out}}) {
951 # we go the PVEFW-SET-ACCEPT-MARK Instead of ACCEPT) because we need to
952 # check also other tap rules (and group rules can be set on any bridge,
953 # so we can't go to VMBRXX-IN)
954 $rule->{action} = 'PVEFW-SET-ACCEPT-MARK' if $rule->{action} eq 'ACCEPT';
955 ruleset_generate_rule($ruleset, $chain, $rule);
956 }
957 }
958 }
959
960 my $MAX_NETS = 32;
961 my $valid_netdev_names = {};
962 for (my $i = 0; $i < $MAX_NETS; $i++) {
963 $valid_netdev_names->{"net$i"} = 1;
964 }
965
966 sub parse_fw_rule {
967 my ($line, $need_iface, $allow_groups) = @_;
968
969 my $macros = get_firewall_macros();
970 my $protocols = get_etc_protocols();
971
972 my ($action, $iface, $source, $dest, $proto, $dport, $sport);
973
974 $line =~ s/#.*$//;
975
976 my @data = split(/\s+/, $line);
977 my $expected_elements = $need_iface ? 7 : 6;
978
979 die "wrong number of rule elements\n" if scalar(@data) > $expected_elements;
980
981 if ($need_iface) {
982 ($action, $iface, $source, $dest, $proto, $dport, $sport) = @data
983 } else {
984 ($action, $source, $dest, $proto, $dport, $sport) = @data;
985 }
986
987 die "incomplete rule\n" if !$action;
988
989 my $macro;
990 my $macro_name;
991
992 if ($action =~ m/^(ACCEPT|DROP|REJECT)$/) {
993 # OK
994 } elsif ($allow_groups && $action =~ m/^GROUP-(:?\S+)$/) {
995 # OK
996 } elsif ($action =~ m/^(\S+)\((ACCEPT|DROP|REJECT)\)$/) {
997 ($macro_name, $action) = ($1, $2);
998 my $lc_macro_name = lc($macro_name);
999 my $preferred_name = $pve_fw_preferred_macro_names->{$lc_macro_name};
1000 $macro_name = $preferred_name if $preferred_name;
1001 $macro = $macros->{$lc_macro_name};
1002 die "unknown macro '$macro_name'\n" if !$macro;
1003 } else {
1004 die "unknown action '$action'\n";
1005 }
1006
1007 if ($need_iface) {
1008 $iface = undef if $iface && $iface eq '-';
1009 die "unknown interface '$iface'\n"
1010 if defined($iface) && !$valid_netdev_names->{$iface};
1011 }
1012
1013 $proto = undef if $proto && $proto eq '-';
1014 die "unknown protokol '$proto'\n" if $proto &&
1015 !(defined($protocols->{byname}->{$proto}) ||
1016 defined($protocols->{byid}->{$proto}));
1017
1018 $source = undef if $source && $source eq '-';
1019 $dest = undef if $dest && $dest eq '-';
1020
1021 $dport = undef if $dport && $dport eq '-';
1022 $sport = undef if $sport && $sport eq '-';
1023
1024 my $nbsource = undef;
1025 my $nbdest = undef;
1026
1027 $nbsource = parse_address_list($source) if $source;
1028 $nbdest = parse_address_list($dest) if $dest;
1029
1030 my $rules = [];
1031
1032 my $param = {
1033 action => $action,
1034 iface => $iface,
1035 source => $source,
1036 dest => $dest,
1037 nbsource => $nbsource,
1038 nbdest => $nbdest,
1039 proto => $proto,
1040 dport => $dport,
1041 sport => $sport,
1042 };
1043
1044 if ($macro) {
1045 foreach my $templ (@$macro) {
1046 my $rule = {};
1047 foreach my $k (keys %$templ) {
1048 my $v = $templ->{$k};
1049 if ($v eq 'PARAM') {
1050 $v = $param->{$k};
1051 } elsif ($v eq 'DEST') {
1052 $v = $param->{dest};
1053 } elsif ($v eq 'SOURCE') {
1054 $v = $param->{source};
1055 }
1056
1057 die "missing parameter '$k' in macro '$macro_name'\n" if !defined($v);
1058 $rule->{$k} = $v;
1059 }
1060 push @$rules, $rule;
1061 }
1062 } else {
1063 push @$rules, $param;
1064 }
1065
1066 foreach my $rule (@$rules) {
1067 $rule->{nbdport} = parse_port_name_number_or_range($rule->{dport})
1068 if defined($rule->{dport});
1069 $rule->{nbsport} = parse_port_name_number_or_range($rule->{sport})
1070 if defined($rule->{sport});
1071 }
1072
1073 return $rules;
1074 }
1075
1076 sub parse_fw_option {
1077 my ($line) = @_;
1078
1079 my ($opt, $value);
1080
1081 if ($line =~ m/^(enable|macfilter):\s*(0|1)\s*$/i) {
1082 $opt = lc($1);
1083 $value = int($2);
1084 } elsif ($line =~ m/^(policy-(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
1085 $opt = lc($1);
1086 $value = uc($3);
1087 } else {
1088 chomp $line;
1089 die "can't parse option '$line'\n"
1090 }
1091
1092 return ($opt, $value);
1093 }
1094
1095 sub parse_vm_fw_rules {
1096 my ($filename, $fh) = @_;
1097
1098 my $res = { in => [], out => [], options => {}};
1099
1100 my $section;
1101
1102 while (defined(my $line = <$fh>)) {
1103 next if $line =~ m/^#/;
1104 next if $line =~ m/^\s*$/;
1105
1106 my $linenr = $fh->input_line_number();
1107 my $prefix = "$filename (line $linenr)";
1108
1109 if ($line =~ m/^\[(\S+)\]\s*$/i) {
1110 $section = lc($1);
1111 warn "$prefix: ignore unknown section '$section'\n" if !$res->{$section};
1112 next;
1113 }
1114 if (!$section) {
1115 warn "$prefix: skip line - no section";
1116 next;
1117 }
1118
1119 next if !$res->{$section}; # skip undefined section
1120
1121 if ($section eq 'options') {
1122 eval {
1123 my ($opt, $value) = parse_fw_option($line);
1124 $res->{options}->{$opt} = $value;
1125 };
1126 warn "$prefix: $@" if $@;
1127 next;
1128 }
1129
1130 my $rules;
1131 eval { $rules = parse_fw_rule($line, 1, 1); };
1132 if (my $err = $@) {
1133 warn "$prefix: $err";
1134 next;
1135 }
1136
1137 push @{$res->{$section}}, @$rules;
1138 }
1139
1140 return $res;
1141 }
1142
1143 sub parse_host_fw_rules {
1144 my ($filename, $fh) = @_;
1145
1146 my $res = { in => [], out => [] };
1147
1148 my $section;
1149
1150 while (defined(my $line = <$fh>)) {
1151 next if $line =~ m/^#/;
1152 next if $line =~ m/^\s*$/;
1153
1154 my $linenr = $fh->input_line_number();
1155 my $prefix = "$filename (line $linenr)";
1156
1157 if ($line =~ m/^\[(in|out)\]\s*$/i) {
1158 $section = lc($1);
1159 next;
1160 }
1161 if (!$section) {
1162 warn "$prefix: skip line - no section";
1163 next;
1164 }
1165
1166 my $rules;
1167 eval { $rules = parse_fw_rule($line, 1, 1); };
1168 if (my $err = $@) {
1169 warn "$prefix: $err";
1170 next;
1171 }
1172
1173 push @{$res->{$section}}, @$rules;
1174 }
1175
1176 return $res;
1177 }
1178
1179 sub parse_group_fw_rules {
1180 my ($filename, $fh) = @_;
1181
1182 my $section;
1183 my $group;
1184
1185 my $res = { in => [], out => [] };
1186
1187 while (defined(my $line = <$fh>)) {
1188 next if $line =~ m/^#/;
1189 next if $line =~ m/^\s*$/;
1190
1191 my $linenr = $fh->input_line_number();
1192 my $prefix = "$filename (line $linenr)";
1193
1194 if ($line =~ m/^\[(in|out):(\S+)\]\s*$/i) {
1195 $section = lc($1);
1196 $group = lc($2);
1197 next;
1198 }
1199 if (!$section || !$group) {
1200 warn "$prefix: skip line - no section";
1201 next;
1202 }
1203
1204 my $rules;
1205 eval { $rules = parse_fw_rule($line, 0, 0); };
1206 if (my $err = $@) {
1207 warn "$prefix: $err";
1208 next;
1209 }
1210
1211 push @{$res->{$group}->{$section}}, @$rules;
1212 }
1213
1214 return $res;
1215 }
1216
1217 sub run_locked {
1218 my ($code, @param) = @_;
1219
1220 my $timeout = 10;
1221
1222 my $res = lock_file($pve_fw_lock_filename, $timeout, $code, @param);
1223
1224 die $@ if $@;
1225
1226 return $res;
1227 }
1228
1229 sub read_local_vm_config {
1230
1231 my $openvz = {};
1232
1233 my $qemu = {};
1234
1235 my $list = PVE::QemuServer::config_list();
1236
1237 foreach my $vmid (keys %$list) {
1238 my $cfspath = PVE::QemuServer::cfs_config_path($vmid);
1239 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
1240 $qemu->{$vmid} = $conf;
1241 }
1242 }
1243
1244 my $vmdata = { openvz => $openvz, qemu => $qemu };
1245
1246 return $vmdata;
1247 };
1248
1249 sub read_vm_firewall_rules {
1250 my ($vmdata) = @_;
1251 my $rules = {};
1252 foreach my $vmid (keys %{$vmdata->{qemu}}, keys %{$vmdata->{openvz}}) {
1253 my $filename = "/etc/pve/firewall/$vmid.fw";
1254 my $fh = IO::File->new($filename, O_RDONLY);
1255 next if !$fh;
1256
1257 $rules->{$vmid} = parse_vm_fw_rules($filename, $fh);
1258 }
1259
1260 return $rules;
1261 }
1262
1263 sub generate_std_chains {
1264 my ($ruleset) = @_;
1265
1266 foreach my $chain (keys %$pve_std_chains) {
1267 ruleset_create_chain($ruleset, $chain);
1268 foreach my $rule (@{$pve_std_chains->{$chain}}) {
1269 if (ref($rule)) {
1270 ruleset_generate_rule($ruleset, $chain, $rule);
1271 } else {
1272 ruleset_addrule($ruleset, $chain, $rule);
1273 }
1274 }
1275 }
1276 }
1277
1278 sub compile {
1279 my $vmdata = read_local_vm_config();
1280 my $rules = read_vm_firewall_rules($vmdata);
1281
1282 my $group_rules = {};
1283 my $filename = "/etc/pve/firewall/groups.fw";
1284 if (my $fh = IO::File->new($filename, O_RDONLY)) {
1285 $group_rules = parse_group_fw_rules($filename, $fh);
1286 }
1287
1288 #print Dumper($rules);
1289
1290 my $ruleset = {};
1291
1292 ruleset_create_chain($ruleset, "PVEFW-INPUT");
1293 ruleset_create_chain($ruleset, "PVEFW-OUTPUT");
1294 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
1295
1296 generate_std_chains($ruleset);
1297
1298 my $enable_hostfw = 0;
1299 $filename = "/etc/pve/local/host.fw";
1300 if (my $fh = IO::File->new($filename, O_RDONLY)) {
1301 my $host_rules = parse_host_fw_rules($filename, $fh);
1302
1303 $enable_hostfw = 1;
1304
1305 enablehostfw($ruleset, $host_rules, $group_rules);
1306 }
1307
1308 # generate firewall rules for QEMU VMs
1309 foreach my $vmid (keys %{$vmdata->{qemu}}) {
1310 my $conf = $vmdata->{qemu}->{$vmid};
1311 my $vmfw_conf = $rules->{$vmid};
1312 next if !$vmfw_conf;
1313 next if defined($vmfw_conf->{options}->{enable}) && ($vmfw_conf->{options}->{enable} == 0);
1314
1315 foreach my $netid (keys %$conf) {
1316 next if $netid !~ m/^net(\d+)$/;
1317 my $net = PVE::QemuServer::parse_net($conf->{$netid});
1318 next if !$net;
1319 my $iface = "tap${vmid}i$1";
1320
1321 my $bridge = $net->{bridge};
1322 next if !$bridge; # fixme: ?
1323
1324 $bridge .= "v$net->{tag}" if $net->{tag};
1325
1326
1327 generate_bridge_chains($ruleset, $bridge);
1328
1329 my $macaddr = $net->{macaddr};
1330 generate_tap_rules_direction($ruleset, $group_rules, $iface, $netid, $macaddr, $vmfw_conf, $bridge, 'IN');
1331 generate_tap_rules_direction($ruleset, $group_rules, $iface, $netid, $macaddr, $vmfw_conf, $bridge, 'OUT');
1332 }
1333 }
1334
1335 if ($enable_hostfw) {
1336 # allow traffic from lo (ourself)
1337 ruleset_addrule($ruleset, "PVEFW-INPUT", "-i lo -j ACCEPT");
1338 }
1339
1340 return $ruleset;
1341 }
1342
1343 sub get_ruleset_status {
1344 my ($ruleset, $verbose) = @_;
1345
1346 my $active_chains = iptables_get_chains();
1347
1348 my $statushash = {};
1349
1350 foreach my $chain (sort keys %$ruleset) {
1351 my $digest = Digest::SHA->new('sha1');
1352 foreach my $cmd (@{$ruleset->{$chain}}) {
1353 $digest->add("$cmd\n");
1354 }
1355 my $sig = $digest->b64digest;
1356 $statushash->{$chain}->{sig} = $sig;
1357
1358 my $oldsig = $active_chains->{$chain};
1359 if (!defined($oldsig)) {
1360 $statushash->{$chain}->{action} = 'create';
1361 } else {
1362 if ($oldsig eq $sig) {
1363 $statushash->{$chain}->{action} = 'exists';
1364 } else {
1365 $statushash->{$chain}->{action} = 'update';
1366 }
1367 }
1368 print "$statushash->{$chain}->{action} $chain ($sig)\n" if $verbose;
1369 foreach my $cmd (@{$ruleset->{$chain}}) {
1370 print "\t$cmd\n" if $verbose;
1371 }
1372 }
1373
1374 foreach my $chain (sort keys %$active_chains) {
1375 if (!defined($ruleset->{$chain})) {
1376 my $sig = $active_chains->{$chain};
1377 $statushash->{$chain}->{action} = 'delete';
1378 $statushash->{$chain}->{sig} = $sig;
1379 print "delete $chain ($sig)\n" if $verbose;
1380 }
1381 }
1382
1383 return $statushash;
1384 }
1385
1386 sub print_ruleset {
1387 my ($ruleset) = @_;
1388
1389 get_ruleset_status($ruleset, 1);
1390 }
1391
1392 sub print_sig_rule {
1393 my ($chain, $sig) = @_;
1394
1395 # We just use this to store a SHA1 checksum used to detect changes
1396 return "-A $chain -m comment --comment \"PVESIG:$sig\"\n";
1397 }
1398
1399 sub apply_ruleset {
1400 my ($ruleset, $verbose) = @_;
1401
1402 enable_bridge_firewall();
1403
1404 my $cmdlist = "*filter\n"; # we pass this to iptables-restore;
1405
1406 my $statushash = get_ruleset_status($ruleset, $verbose);
1407
1408 # create missing chains first
1409 foreach my $chain (sort keys %$ruleset) {
1410 my $stat = $statushash->{$chain};
1411 die "internal error" if !$stat;
1412 next if $stat->{action} ne 'create';
1413
1414 $cmdlist .= ":$chain - [0:0]\n";
1415 }
1416
1417 my $rule = "INPUT -j PVEFW-INPUT";
1418 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1419 $cmdlist .= "-A $rule\n";
1420 }
1421 $rule = "OUTPUT -j PVEFW-OUTPUT";
1422 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1423 $cmdlist .= "-A $rule\n";
1424 }
1425
1426 $rule = "FORWARD -j PVEFW-FORWARD";
1427 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1428 $cmdlist .= "-A $rule\n";
1429 }
1430
1431 foreach my $chain (sort keys %$ruleset) {
1432 my $stat = $statushash->{$chain};
1433 die "internal error" if !$stat;
1434
1435 if ($stat->{action} eq 'update' || $stat->{action} eq 'create') {
1436 $cmdlist .= "-F $chain\n";
1437 foreach my $cmd (@{$ruleset->{$chain}}) {
1438 $cmdlist .= "$cmd\n";
1439 }
1440 $cmdlist .= print_sig_rule($chain, $stat->{sig});
1441 } elsif ($stat->{action} eq 'delete') {
1442 die "internal error"; # this should not happen
1443 } elsif ($stat->{action} eq 'exists') {
1444 # do nothing
1445 } else {
1446 die "internal error - unknown status '$stat->{action}'";
1447 }
1448 }
1449
1450 foreach my $chain (keys %$statushash) {
1451 next if $statushash->{$chain}->{action} ne 'delete';
1452 $cmdlist .= "-F $chain\n";
1453 }
1454 foreach my $chain (keys %$statushash) {
1455 next if $statushash->{$chain}->{action} ne 'delete';
1456 next if $chain eq 'PVEFW-INPUT';
1457 next if $chain eq 'PVEFW-OUTPUT';
1458 next if $chain eq 'PVEFW-FORWARD';
1459 $cmdlist .= "-X $chain\n";
1460 }
1461
1462 $cmdlist .= "COMMIT\n";
1463
1464 print $cmdlist if $verbose;
1465
1466 iptables_restore_cmdlist($cmdlist);
1467
1468 # test: re-read status and check if everything is up to date
1469 $statushash = get_ruleset_status($ruleset);
1470
1471 my $errors;
1472 foreach my $chain (sort keys %$ruleset) {
1473 my $stat = $statushash->{$chain};
1474 if ($stat->{action} ne 'exists') {
1475 warn "unable to update chain '$chain'\n";
1476 $errors = 1;
1477 }
1478 }
1479
1480 die "unable to apply firewall changes\n" if $errors;
1481 }
1482
1483 1;