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