]> git.proxmox.com Git - pve-firewall.git/blob - src/PVE/Firewall.pm
fix iptables-restore failing if icmp-type value > 255
[pve-firewall.git] / src / PVE / Firewall.pm
1 package PVE::Firewall;
2
3 use warnings;
4 use strict;
5
6 use Digest::SHA;
7 use Encode;
8 use File::Basename;
9 use File::Path;
10 use IO::File;
11 use Net::IP;
12 use POSIX;
13 use Socket qw(AF_INET AF_INET6 inet_ntop inet_pton);
14 use Storable qw(dclone);
15
16 use PVE::Cluster;
17 use PVE::Corosync;
18 use PVE::Exception qw(raise raise_param_exc);
19 use PVE::INotify;
20 use PVE::JSONSchema qw(register_standard_option get_standard_option);
21 use PVE::Network;
22 use PVE::ProcFSTools;
23 use PVE::SafeSyslog;
24 use PVE::Tools qw($IPV4RE $IPV6RE);
25 use PVE::Tools qw(run_command lock_file dir_glob_foreach);
26
27 my $pvefw_conf_dir = "/etc/pve/firewall";
28 my $clusterfw_conf_filename = "$pvefw_conf_dir/cluster.fw";
29
30 # dynamically include PVE::QemuServer and PVE::LXC
31 # to avoid dependency problems
32 my $have_qemu_server;
33 eval {
34 require PVE::QemuServer;
35 require PVE::QemuConfig;
36 $have_qemu_server = 1;
37 };
38
39 my $have_lxc;
40 eval {
41 require PVE::LXC;
42 $have_lxc = 1;
43 };
44
45 my $pve_fw_status_dir = "/var/lib/pve-firewall";
46
47 mkdir $pve_fw_status_dir; # make sure this exists
48
49 my $security_group_name_pattern = '[A-Za-z][A-Za-z0-9\-\_]+';
50 my $ipset_name_pattern = '[A-Za-z][A-Za-z0-9\-\_]+';
51 our $ip_alias_pattern = '[A-Za-z][A-Za-z0-9\-\_]+';
52
53 my $max_alias_name_length = 64;
54 my $max_ipset_name_length = 64;
55 my $max_group_name_length = 18;
56
57 my $PROTOCOLS_WITH_PORTS = {
58 udp => 1, 17 => 1,
59 udplite => 1, 136 => 1,
60 tcp => 1, 6 => 1,
61 dccp => 1, 33 => 1,
62 sctp => 1, 132 => 1,
63 };
64
65 PVE::JSONSchema::register_format('IPorCIDR', \&pve_verify_ip_or_cidr);
66 sub pve_verify_ip_or_cidr {
67 my ($cidr, $noerr) = @_;
68
69 if ($cidr =~ m!^(?:$IPV6RE|$IPV4RE)(/(\d+))?$!) {
70 return $cidr if Net::IP->new($cidr);
71 return undef if $noerr;
72 die Net::IP::Error() . "\n";
73 }
74 return undef if $noerr;
75 die "value does not look like a valid IP address or CIDR network\n";
76 }
77
78 PVE::JSONSchema::register_format('IPorCIDRorAlias', \&pve_verify_ip_or_cidr_or_alias);
79 sub pve_verify_ip_or_cidr_or_alias {
80 my ($cidr, $noerr) = @_;
81
82 return if $cidr =~ m/^(?:$ip_alias_pattern)$/;
83
84 return pve_verify_ip_or_cidr($cidr, $noerr);
85 }
86
87 PVE::JSONSchema::register_standard_option('ipset-name', {
88 description => "IP set name.",
89 type => 'string',
90 pattern => $ipset_name_pattern,
91 minLength => 2,
92 maxLength => $max_ipset_name_length,
93 });
94
95 PVE::JSONSchema::register_standard_option('pve-fw-alias', {
96 description => "Alias name.",
97 type => 'string',
98 pattern => $ip_alias_pattern,
99 minLength => 2,
100 maxLength => $max_alias_name_length,
101 });
102
103 PVE::JSONSchema::register_standard_option('pve-fw-loglevel' => {
104 description => "Log level.",
105 type => 'string',
106 enum => ['emerg', 'alert', 'crit', 'err', 'warning', 'notice', 'info', 'debug', 'nolog'],
107 optional => 1,
108 });
109
110 PVE::JSONSchema::register_standard_option('pve-security-group-name', {
111 description => "Security Group name.",
112 type => 'string',
113 pattern => $security_group_name_pattern,
114 minLength => 2,
115 maxLength => $max_group_name_length,
116 });
117
118 my $feature_ipset_nomatch = 0;
119 eval {
120 my (undef, undef, $release) = POSIX::uname();
121 if ($release =~ m/^(\d+)\.(\d+)\.\d+-/) {
122 my ($major, $minor) = ($1, $2);
123 $feature_ipset_nomatch = 1 if ($major > 3) ||
124 ($major == 3 && $minor >= 7);
125 }
126
127 };
128
129 my $nodename = PVE::INotify::nodename();
130 my $hostfw_conf_filename = "/etc/pve/nodes/$nodename/host.fw";
131
132 my $pve_fw_lock_filename = "/var/lock/pvefw.lck";
133
134 my $default_log_level = 'nolog'; # avoid logs by default
135 my $global_log_ratelimit = '--limit 1/sec';
136
137 my $log_level_hash = {
138 debug => 7,
139 info => 6,
140 notice => 5,
141 warning => 4,
142 err => 3,
143 crit => 2,
144 alert => 1,
145 emerg => 0,
146 };
147
148 my $verbose = 0;
149 sub set_verbose {
150 $verbose = shift;
151 }
152
153 # %rule
154 #
155 # name => optional
156 # enable => [0|1]
157 # action =>
158 # proto =>
159 # sport => port[,port[,port]].. or port:port
160 # dport => port[,port[,port]].. or port:port
161 # log => optional, loglevel
162 # logmsg => optional, logmsg - overwrites default
163 # iface_in => incomin interface
164 # iface_out => outgoing interface
165 # match => optional, overwrites generation of match
166 # target => optional, overwrites action
167
168 # we need to overwrite some macros for ipv6
169 my $pve_ipv6fw_macros = {
170 'Ping' => [
171 { action => 'PARAM', proto => 'icmpv6', dport => 'echo-request' },
172 ],
173 'NeighborDiscovery' => [
174 "IPv6 neighbor solicitation, neighbor and router advertisement",
175 { action => 'PARAM', proto => 'icmpv6', dport => 'router-solicitation' },
176 { action => 'PARAM', proto => 'icmpv6', dport => 'router-advertisement' },
177 { action => 'PARAM', proto => 'icmpv6', dport => 'neighbor-solicitation' },
178 { action => 'PARAM', proto => 'icmpv6', dport => 'neighbor-advertisement' },
179 ],
180 'DHCPv6' => [
181 "DHCPv6 traffic",
182 { action => 'PARAM', proto => 'udp', dport => '546:547', sport => '546:547' },
183 ],
184 'Trcrt' => [
185 { action => 'PARAM', proto => 'udp', dport => '33434:33524' },
186 { action => 'PARAM', proto => 'icmpv6', dport => 'echo-request' },
187 ],
188 };
189
190 # imported/converted from: /usr/share/shorewall/macro.*
191 my $pve_fw_macros = {
192 'Amanda' => [
193 "Amanda Backup",
194 { action => 'PARAM', proto => 'udp', dport => '10080' },
195 { action => 'PARAM', proto => 'tcp', dport => '10080' },
196 ],
197 'Auth' => [
198 "Auth (identd) traffic",
199 { action => 'PARAM', proto => 'tcp', dport => '113' },
200 ],
201 'BGP' => [
202 "Border Gateway Protocol traffic",
203 { action => 'PARAM', proto => 'tcp', dport => '179' },
204 ],
205 'BitTorrent' => [
206 "BitTorrent traffic for BitTorrent 3.1 and earlier",
207 { action => 'PARAM', proto => 'tcp', dport => '6881:6889' },
208 { action => 'PARAM', proto => 'udp', dport => '6881' },
209 ],
210 'BitTorrent32' => [
211 "BitTorrent traffic for BitTorrent 3.2 and later",
212 { action => 'PARAM', proto => 'tcp', dport => '6881:6999' },
213 { action => 'PARAM', proto => 'udp', dport => '6881' },
214 ],
215 'Ceph' => [
216 "Ceph Storage Cluster traffic (Ceph Monitors, OSD & MDS Deamons)",
217 # Legacy port for protocol v1
218 { action => 'PARAM', proto => 'tcp', dport => '6789' },
219 # New port for protocol v2
220 { action => 'PARAM', proto => 'tcp', dport => '3300' },
221 { action => 'PARAM', proto => 'tcp', dport => '6800:7300' },
222 ],
223 'CVS' => [
224 "Concurrent Versions System pserver traffic",
225 { action => 'PARAM', proto => 'tcp', dport => '2401' },
226 ],
227 'Citrix' => [
228 "Citrix/ICA traffic (ICA, ICA Browser, CGP)",
229 { action => 'PARAM', proto => 'tcp', dport => '1494' },
230 { action => 'PARAM', proto => 'udp', dport => '1604' },
231 { action => 'PARAM', proto => 'tcp', dport => '2598' },
232 ],
233 'DAAP' => [
234 "Digital Audio Access Protocol traffic (iTunes, Rythmbox daemons)",
235 { action => 'PARAM', proto => 'tcp', dport => '3689' },
236 { action => 'PARAM', proto => 'udp', dport => '3689' },
237 ],
238 'DCC' => [
239 "Distributed Checksum Clearinghouse spam filtering mechanism",
240 { action => 'PARAM', proto => 'tcp', dport => '6277' },
241 ],
242 'DHCPfwd' => [
243 "Forwarded DHCP traffic",
244 { action => 'PARAM', proto => 'udp', dport => '67:68', sport => '67:68' },
245 ],
246 'DNS' => [
247 "Domain Name System traffic (upd and tcp)",
248 { action => 'PARAM', proto => 'udp', dport => '53' },
249 { action => 'PARAM', proto => 'tcp', dport => '53' },
250 ],
251 'Distcc' => [
252 "Distributed Compiler service",
253 { action => 'PARAM', proto => 'tcp', dport => '3632' },
254 ],
255 'FTP' => [
256 "File Transfer Protocol",
257 { action => 'PARAM', proto => 'tcp', dport => '21' },
258 ],
259 'Finger' => [
260 "Finger protocol (RFC 742)",
261 { action => 'PARAM', proto => 'tcp', dport => '79' },
262 ],
263 'GNUnet' => [
264 "GNUnet secure peer-to-peer networking traffic",
265 { action => 'PARAM', proto => 'tcp', dport => '2086' },
266 { action => 'PARAM', proto => 'udp', dport => '2086' },
267 { action => 'PARAM', proto => 'tcp', dport => '1080' },
268 { action => 'PARAM', proto => 'udp', dport => '1080' },
269 ],
270 'GRE' => [
271 "Generic Routing Encapsulation tunneling protocol",
272 { action => 'PARAM', proto => '47' },
273 ],
274 'Git' => [
275 "Git distributed revision control traffic",
276 { action => 'PARAM', proto => 'tcp', dport => '9418' },
277 ],
278 'HKP' => [
279 "OpenPGP HTTP keyserver protocol traffic",
280 { action => 'PARAM', proto => 'tcp', dport => '11371' },
281 ],
282 'HTTP' => [
283 "Hypertext Transfer Protocol (WWW)",
284 { action => 'PARAM', proto => 'tcp', dport => '80' },
285 ],
286 'HTTPS' => [
287 "Hypertext Transfer Protocol (WWW) over SSL",
288 { action => 'PARAM', proto => 'tcp', dport => '443' },
289 ],
290 'ICPV2' => [
291 "Internet Cache Protocol V2 (Squid) traffic",
292 { action => 'PARAM', proto => 'udp', dport => '3130' },
293 ],
294 'ICQ' => [
295 "AOL Instant Messenger traffic",
296 { action => 'PARAM', proto => 'tcp', dport => '5190' },
297 ],
298 'IMAP' => [
299 "Internet Message Access Protocol",
300 { action => 'PARAM', proto => 'tcp', dport => '143' },
301 ],
302 'IMAPS' => [
303 "Internet Message Access Protocol over SSL",
304 { action => 'PARAM', proto => 'tcp', dport => '993' },
305 ],
306 'IPIP' => [
307 "IPIP capsulation traffic",
308 { action => 'PARAM', proto => '94' },
309 ],
310 'IPsec' => [
311 "IPsec traffic",
312 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
313 { action => 'PARAM', proto => '50' },
314 ],
315 'IPsecah' => [
316 "IPsec authentication (AH) traffic",
317 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
318 { action => 'PARAM', proto => '51' },
319 ],
320 'IPsecnat' => [
321 "IPsec traffic and Nat-Traversal",
322 { action => 'PARAM', proto => 'udp', dport => '500' },
323 { action => 'PARAM', proto => 'udp', dport => '4500' },
324 { action => 'PARAM', proto => '50' },
325 ],
326 'IRC' => [
327 "Internet Relay Chat traffic",
328 { action => 'PARAM', proto => 'tcp', dport => '6667' },
329 ],
330 'Jetdirect' => [
331 "HP Jetdirect printing",
332 { action => 'PARAM', proto => 'tcp', dport => '9100' },
333 ],
334 'L2TP' => [
335 "Layer 2 Tunneling Protocol traffic",
336 { action => 'PARAM', proto => 'udp', dport => '1701' },
337 ],
338 'LDAP' => [
339 "Lightweight Directory Access Protocol traffic",
340 { action => 'PARAM', proto => 'tcp', dport => '389' },
341 ],
342 'LDAPS' => [
343 "Secure Lightweight Directory Access Protocol traffic",
344 { action => 'PARAM', proto => 'tcp', dport => '636' },
345 ],
346 'MSNP' => [
347 "Microsoft Notification Protocol",
348 { action => 'PARAM', proto => 'tcp', dport => '1863' },
349 ],
350 'MSSQL' => [
351 "Microsoft SQL Server",
352 { action => 'PARAM', proto => 'tcp', dport => '1433' },
353 ],
354 'Mail' => [
355 "Mail traffic (SMTP, SMTPS, Submission)",
356 { action => 'PARAM', proto => 'tcp', dport => '25' },
357 { action => 'PARAM', proto => 'tcp', dport => '465' },
358 { action => 'PARAM', proto => 'tcp', dport => '587' },
359 ],
360 'MDNS' => [
361 "Multicast DNS",
362 { action => 'PARAM', proto => 'udp', dport => '5353' },
363 ],
364 'Munin' => [
365 "Munin networked resource monitoring traffic",
366 { action => 'PARAM', proto => 'tcp', dport => '4949' },
367 ],
368 'MySQL' => [
369 "MySQL server",
370 { action => 'PARAM', proto => 'tcp', dport => '3306' },
371 ],
372 'NNTP' => [
373 "NNTP traffic (Usenet).",
374 { action => 'PARAM', proto => 'tcp', dport => '119' },
375 ],
376 'NNTPS' => [
377 "Encrypted NNTP traffic (Usenet)",
378 { action => 'PARAM', proto => 'tcp', dport => '563' },
379 ],
380 'NTP' => [
381 "Network Time Protocol (ntpd)",
382 { action => 'PARAM', proto => 'udp', dport => '123' },
383 ],
384 'OSPF' => [
385 "OSPF multicast traffic",
386 { action => 'PARAM', proto => '89' },
387 ],
388 'OpenVPN' => [
389 "OpenVPN traffic",
390 { action => 'PARAM', proto => 'udp', dport => '1194' },
391 ],
392 'PCA' => [
393 "Symantec PCAnywere (tm)",
394 { action => 'PARAM', proto => 'udp', dport => '5632' },
395 { action => 'PARAM', proto => 'tcp', dport => '5631' },
396 ],
397 'PMG' => [
398 "Proxmox Mail Gateway web interface",
399 { action => 'PARAM', proto => 'tcp', dport => '8006' },
400 ],
401 'POP3' => [
402 "POP3 traffic",
403 { action => 'PARAM', proto => 'tcp', dport => '110' },
404 ],
405 'POP3S' => [
406 "Encrypted POP3 traffic",
407 { action => 'PARAM', proto => 'tcp', dport => '995' },
408 ],
409 'PPtP' => [
410 "Point-to-Point Tunneling Protocol",
411 { action => 'PARAM', proto => '47' },
412 { action => 'PARAM', proto => 'tcp', dport => '1723' },
413 ],
414 'Ping' => [
415 "ICMP echo request",
416 { action => 'PARAM', proto => 'icmp', dport => 'echo-request' },
417 ],
418 'PostgreSQL' => [
419 "PostgreSQL server",
420 { action => 'PARAM', proto => 'tcp', dport => '5432' },
421 ],
422 'Printer' => [
423 "Line Printer protocol printing",
424 { action => 'PARAM', proto => 'tcp', dport => '515' },
425 ],
426 'RDP' => [
427 "Microsoft Remote Desktop Protocol traffic",
428 { action => 'PARAM', proto => 'tcp', dport => '3389' },
429 ],
430 'RIP' => [
431 "Routing Information Protocol (bidirectional)",
432 { action => 'PARAM', proto => 'udp', dport => '520' },
433 ],
434 'RNDC' => [
435 "BIND remote management protocol",
436 { action => 'PARAM', proto => 'tcp', dport => '953' },
437 ],
438 'Razor' => [
439 "Razor Antispam System",
440 { action => 'PARAM', proto => 'tcp', dport => '2703' },
441 ],
442 'Rdate' => [
443 "Remote time retrieval (rdate)",
444 { action => 'PARAM', proto => 'tcp', dport => '37' },
445 ],
446 'Rsync' => [
447 "Rsync server",
448 { action => 'PARAM', proto => 'tcp', dport => '873' },
449 ],
450 'SANE' => [
451 "SANE network scanning",
452 { action => 'PARAM', proto => 'tcp', dport => '6566' },
453 ],
454 'SMB' => [
455 "Microsoft SMB traffic",
456 { action => 'PARAM', proto => 'udp', dport => '135,445' },
457 { action => 'PARAM', proto => 'udp', dport => '137:139' },
458 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '137' },
459 { action => 'PARAM', proto => 'tcp', dport => '135,139,445' },
460 ],
461 'SMBswat' => [
462 "Samba Web Administration Tool",
463 { action => 'PARAM', proto => 'tcp', dport => '901' },
464 ],
465 'SMTP' => [
466 "Simple Mail Transfer Protocol",
467 { action => 'PARAM', proto => 'tcp', dport => '25' },
468 ],
469 'SMTPS' => [
470 "Encrypted Simple Mail Transfer Protocol",
471 { action => 'PARAM', proto => 'tcp', dport => '465' },
472 ],
473 'SNMP' => [
474 "Simple Network Management Protocol",
475 { action => 'PARAM', proto => 'udp', dport => '161:162' },
476 { action => 'PARAM', proto => 'tcp', dport => '161' },
477 ],
478 'SPAMD' => [
479 "Spam Assassin SPAMD traffic",
480 { action => 'PARAM', proto => 'tcp', dport => '783' },
481 ],
482 'SSH' => [
483 "Secure shell traffic",
484 { action => 'PARAM', proto => 'tcp', dport => '22' },
485 ],
486 'SVN' => [
487 "Subversion server (svnserve)",
488 { action => 'PARAM', proto => 'tcp', dport => '3690' },
489 ],
490 'SixXS' => [
491 "SixXS IPv6 Deployment and Tunnel Broker",
492 { action => 'PARAM', proto => 'tcp', dport => '3874' },
493 { action => 'PARAM', proto => 'udp', dport => '3740' },
494 { action => 'PARAM', proto => '41' },
495 { action => 'PARAM', proto => 'udp', dport => '5072,8374' },
496 ],
497 'Squid' => [
498 "Squid web proxy traffic",
499 { action => 'PARAM', proto => 'tcp', dport => '3128' },
500 ],
501 'Submission' => [
502 "Mail message submission traffic",
503 { action => 'PARAM', proto => 'tcp', dport => '587' },
504 ],
505 'Syslog' => [
506 "Syslog protocol (RFC 5424) traffic",
507 { action => 'PARAM', proto => 'udp', dport => '514' },
508 { action => 'PARAM', proto => 'tcp', dport => '514' },
509 ],
510 'TFTP' => [
511 "Trivial File Transfer Protocol traffic",
512 { action => 'PARAM', proto => 'udp', dport => '69' },
513 ],
514 'Telnet' => [
515 "Telnet traffic",
516 { action => 'PARAM', proto => 'tcp', dport => '23' },
517 ],
518 'Telnets' => [
519 "Telnet over SSL",
520 { action => 'PARAM', proto => 'tcp', dport => '992' },
521 ],
522 'Time' => [
523 "RFC 868 Time protocol",
524 { action => 'PARAM', proto => 'tcp', dport => '37' },
525 ],
526 'Trcrt' => [
527 "Traceroute (for up to 30 hops) traffic",
528 { action => 'PARAM', proto => 'udp', dport => '33434:33524' },
529 { action => 'PARAM', proto => 'icmp', dport => 'echo-request' },
530 ],
531 'VNC' => [
532 "VNC traffic for VNC display's 0 - 99",
533 { action => 'PARAM', proto => 'tcp', dport => '5900:5999' },
534 ],
535 'VNCL' => [
536 "VNC traffic from Vncservers to Vncviewers in listen mode",
537 { action => 'PARAM', proto => 'tcp', dport => '5500' },
538 ],
539 'Web' => [
540 "WWW traffic (HTTP and HTTPS)",
541 { action => 'PARAM', proto => 'tcp', dport => '80' },
542 { action => 'PARAM', proto => 'tcp', dport => '443' },
543 ],
544 'Webcache' => [
545 "Web Cache/Proxy traffic (port 8080)",
546 { action => 'PARAM', proto => 'tcp', dport => '8080' },
547 ],
548 'Webmin' => [
549 "Webmin traffic",
550 { action => 'PARAM', proto => 'tcp', dport => '10000' },
551 ],
552 'Whois' => [
553 "Whois (nicname, RFC 3912) traffic",
554 { action => 'PARAM', proto => 'tcp', dport => '43' },
555 ],
556 };
557
558 my $pve_fw_parsed_macros;
559 my $pve_fw_macro_descr;
560 my $pve_fw_macro_ipversion = {};
561 my $pve_fw_preferred_macro_names = {};
562
563 my $FWACCEPTMARK_ON = "0x80000000/0x80000000";
564 my $FWACCEPTMARK_OFF = "0x00000000/0x80000000";
565
566 my $pve_std_chains = {};
567 my $pve_std_chains_conf = {};
568 $pve_std_chains_conf->{4} = {
569 'PVEFW-SET-ACCEPT-MARK' => [
570 { target => "-j MARK --set-mark $FWACCEPTMARK_ON" },
571 ],
572 'PVEFW-DropBroadcast' => [
573 # same as shorewall 'Broadcast'
574 # simply DROP BROADCAST/MULTICAST/ANYCAST
575 # we can use this to reduce logging
576 { action => 'DROP', dsttype => 'BROADCAST' },
577 { action => 'DROP', dsttype => 'MULTICAST' },
578 { action => 'DROP', dsttype => 'ANYCAST' },
579 { action => 'DROP', dest => '224.0.0.0/4' },
580 ],
581 'PVEFW-reject' => [
582 # same as shorewall 'reject'
583 { action => 'DROP', dsttype => 'BROADCAST' },
584 { action => 'DROP', source => '224.0.0.0/4' },
585 { action => 'DROP', proto => 'icmp' },
586 { match => '-p tcp', target => '-j REJECT --reject-with tcp-reset' },
587 { match => '-p udp', target => '-j REJECT --reject-with icmp-port-unreachable' },
588 { match => '-p icmp', target => '-j REJECT --reject-with icmp-host-unreachable' },
589 { target => '-j REJECT --reject-with icmp-host-prohibited' },
590 ],
591 'PVEFW-Drop' => [
592 # same as shorewall 'Drop', which is equal to DROP,
593 # but REJECT/DROP some packages to reduce logging,
594 # and ACCEPT critical ICMP types
595 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
596 # we are not interested in BROADCAST/MULTICAST/ANYCAST
597 { action => 'PVEFW-DropBroadcast' },
598 # ACCEPT critical ICMP types
599 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
600 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
601 # Drop packets with INVALID state
602 { action => 'DROP', match => '-m conntrack --ctstate INVALID', },
603 # Drop Microsoft SMB noise
604 { action => 'DROP', proto => 'udp', dport => '135,445' },
605 { action => 'DROP', proto => 'udp', dport => '137:139' },
606 { action => 'DROP', proto => 'udp', dport => '1024:65535', sport => 137 },
607 { action => 'DROP', proto => 'tcp', dport => '135,139,445' },
608 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
609 # Drop new/NotSyn traffic so that it doesn't get logged
610 { action => 'DROP', match => '-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN' },
611 # Drop DNS replies
612 { action => 'DROP', proto => 'udp', sport => 53 },
613 ],
614 'PVEFW-Reject' => [
615 # same as shorewall 'Reject', which is equal to Reject,
616 # but REJECT/DROP some packages to reduce logging,
617 # and ACCEPT critical ICMP types
618 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
619 # we are not interested in BROADCAST/MULTICAST/ANYCAST
620 { action => 'PVEFW-DropBroadcast' },
621 # ACCEPT critical ICMP types
622 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
623 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
624 # Drop packets with INVALID state
625 { action => 'DROP', match => '-m conntrack --ctstate INVALID', },
626 # Drop Microsoft SMB noise
627 { action => 'PVEFW-reject', proto => 'udp', dport => '135,445' },
628 { action => 'PVEFW-reject', proto => 'udp', dport => '137:139'},
629 { action => 'PVEFW-reject', proto => 'udp', dport => '1024:65535', sport => 137 },
630 { action => 'PVEFW-reject', proto => 'tcp', dport => '135,139,445' },
631 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
632 # Drop new/NotSyn traffic so that it doesn't get logged
633 { action => 'DROP', match => '-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN' },
634 # Drop DNS replies
635 { action => 'DROP', proto => 'udp', sport => 53 },
636 ],
637 'PVEFW-tcpflags' => [
638 # same as shorewall tcpflags action.
639 # Packets arriving on this interface are checked for som illegal combinations of TCP flags
640 { match => '-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG', target => '-g PVEFW-logflags' },
641 { match => '-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE', target => '-g PVEFW-logflags' },
642 { match => '-p tcp -m tcp --tcp-flags SYN,RST SYN,RST', target => '-g PVEFW-logflags' },
643 { match => '-p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN', target => '-g PVEFW-logflags' },
644 { match => '-p tcp -m tcp --sport 0 --tcp-flags FIN,SYN,RST,ACK SYN', target => '-g PVEFW-logflags' },
645 ],
646 'PVEFW-smurfs' => [
647 # same as shorewall smurfs action
648 # Filter packets for smurfs (packets with a broadcast address as the source).
649 { match => '-s 0.0.0.0/32', target => '-j RETURN' }, # allow DHCP
650 { match => '-m addrtype --src-type BROADCAST', target => '-g PVEFW-smurflog' },
651 { match => '-s 224.0.0.0/4', target => '-g PVEFW-smurflog' },
652 ],
653 'PVEFW-smurflog' => [
654 { action => 'DROP', logmsg => 'DROP: ' },
655 ],
656 'PVEFW-logflags' => [
657 { action => 'DROP', logmsg => 'DROP: ' },
658 ],
659 };
660
661 $pve_std_chains_conf->{6} = {
662 'PVEFW-SET-ACCEPT-MARK' => [
663 { target => "-j MARK --set-mark $FWACCEPTMARK_ON" },
664 ],
665 'PVEFW-DropBroadcast' => [
666 # same as shorewall 'Broadcast'
667 # simply DROP BROADCAST/MULTICAST/ANYCAST
668 # we can use this to reduce logging
669 #{ action => 'DROP', dsttype => 'BROADCAST' }, #no broadcast in ipv6
670 # ipv6 addrtype does not work with kernel 2.6.32
671 #{ action => 'DROP', dsttype => 'MULTICAST' },
672 #{ action => 'DROP', dsttype => 'ANYCAST' },
673 { action => 'DROP', dest => 'ff00::/8' },
674 #{ action => 'DROP', dest => '224.0.0.0/4' },
675 ],
676 'PVEFW-reject' => [
677 { action => 'DROP', proto => 'icmpv6' },
678 { match => '-p tcp', target => '-j REJECT --reject-with tcp-reset' },
679 { match => '-p udp', target => '-j REJECT --reject-with icmp6-port-unreachable' },
680 { target => '-j REJECT --reject-with icmp6-adm-prohibited' },
681 ],
682 'PVEFW-Drop' => [
683 # same as shorewall 'Drop', which is equal to DROP,
684 # but REJECT/DROP some packages to reduce logging,
685 # and ACCEPT critical ICMP types
686 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
687 # we are not interested in BROADCAST/MULTICAST/ANYCAST
688 { action => 'PVEFW-DropBroadcast' },
689 # ACCEPT critical ICMP types
690 { action => 'ACCEPT', proto => 'icmpv6', dport => 'destination-unreachable' },
691 { action => 'ACCEPT', proto => 'icmpv6', dport => 'time-exceeded' },
692 { action => 'ACCEPT', proto => 'icmpv6', dport => 'packet-too-big' },
693 # Drop packets with INVALID state
694 { action => 'DROP', match => '-m conntrack --ctstate INVALID', },
695 # Drop Microsoft SMB noise
696 { action => 'DROP', proto => 'udp', dport => '135,445' },
697 { action => 'DROP', proto => 'udp', dport => '137:139'},
698 { action => 'DROP', proto => 'udp', dport => '1024:65535', sport => 137 },
699 { action => 'DROP', proto => 'tcp', dport => '135,139,445' },
700 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
701 # Drop new/NotSyn traffic so that it doesn't get logged
702 { action => 'DROP', match => '-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN' },
703 # Drop DNS replies
704 { action => 'DROP', proto => 'udp', sport => 53 },
705 ],
706 'PVEFW-Reject' => [
707 # same as shorewall 'Reject', which is equal to Reject,
708 # but REJECT/DROP some packages to reduce logging,
709 # and ACCEPT critical ICMP types
710 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
711 # we are not interested in BROADCAST/MULTICAST/ANYCAST
712 { action => 'PVEFW-DropBroadcast' },
713 # ACCEPT critical ICMP types
714 { action => 'ACCEPT', proto => 'icmpv6', dport => 'destination-unreachable' },
715 { action => 'ACCEPT', proto => 'icmpv6', dport => 'time-exceeded' },
716 { action => 'ACCEPT', proto => 'icmpv6', dport => 'packet-too-big' },
717 # Drop packets with INVALID state
718 { action => 'DROP', match => '-m conntrack --ctstate INVALID', },
719 # Drop Microsoft SMB noise
720 { action => 'PVEFW-reject', proto => 'udp', dport => '135,445' },
721 { action => 'PVEFW-reject', proto => 'udp', dport => '137:139' },
722 { action => 'PVEFW-reject', proto => 'udp', dport => '1024:65535', sport => 137 },
723 { action => 'PVEFW-reject', proto => 'tcp', dport => '135,139,445' },
724 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
725 # Drop new/NotSyn traffic so that it doesn't get logged
726 { action => 'DROP', match => '-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN' },
727 # Drop DNS replies
728 { action => 'DROP', proto => 'udp', sport => 53 },
729 ],
730 'PVEFW-tcpflags' => [
731 # same as shorewall tcpflags action.
732 # Packets arriving on this interface are checked for som illegal combinations of TCP flags
733 { match => '-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG', target => '-g PVEFW-logflags' },
734 { match => '-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE', target => '-g PVEFW-logflags' },
735 { match => '-p tcp -m tcp --tcp-flags SYN,RST SYN,RST', target => '-g PVEFW-logflags' },
736 { match => '-p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN', target => '-g PVEFW-logflags' },
737 { match => '-p tcp -m tcp --sport 0 --tcp-flags FIN,SYN,RST,ACK SYN', target => '-g PVEFW-logflags' },
738 ],
739 'PVEFW-logflags' => [
740 { action => 'DROP', logmsg => 'DROP: ' },
741 ],
742 };
743
744 # iptables -p icmp -h
745 my $icmp_type_names = {
746 any => 1,
747 'echo-reply' => 1,
748 'destination-unreachable' => 1,
749 'network-unreachable' => 1,
750 'host-unreachable' => 1,
751 'protocol-unreachable' => 1,
752 'port-unreachable' => 1,
753 'fragmentation-needed' => 1,
754 'source-route-failed' => 1,
755 'network-unknown' => 1,
756 'host-unknown' => 1,
757 'network-prohibited' => 1,
758 'host-prohibited' => 1,
759 'TOS-network-unreachable' => 1,
760 'TOS-host-unreachable' => 1,
761 'communication-prohibited' => 1,
762 'host-precedence-violation' => 1,
763 'precedence-cutoff' => 1,
764 'source-quench' => 1,
765 'redirect' => 1,
766 'network-redirect' => 1,
767 'host-redirect' => 1,
768 'TOS-network-redirect' => 1,
769 'TOS-host-redirect' => 1,
770 'echo-request' => 1,
771 'router-advertisement' => 1,
772 'router-solicitation' => 1,
773 'time-exceeded' => 1,
774 'ttl-zero-during-transit' => 1,
775 'ttl-zero-during-reassembly' => 1,
776 'parameter-problem' => 1,
777 'ip-header-bad' => 1,
778 'required-option-missing' => 1,
779 'timestamp-request' => 1,
780 'timestamp-reply' => 1,
781 'address-mask-request' => 1,
782 'address-mask-reply' => 1,
783 };
784
785 # ip6tables -p icmpv6 -h
786
787 my $icmpv6_type_names = {
788 'any' => 1,
789 'destination-unreachable' => 1,
790 'no-route' => 1,
791 'communication-prohibited' => 1,
792 'address-unreachable' => 1,
793 'port-unreachable' => 1,
794 'packet-too-big' => 1,
795 'time-exceeded' => 1,
796 'ttl-zero-during-transit' => 1,
797 'ttl-zero-during-reassembly' => 1,
798 'parameter-problem' => 1,
799 'bad-header' => 1,
800 'unknown-header-type' => 1,
801 'unknown-option' => 1,
802 'echo-request' => 1,
803 'echo-reply' => 1,
804 'router-solicitation' => 1,
805 'router-advertisement' => 1,
806 'neighbor-solicitation' => 1,
807 'neighbour-solicitation' => 1,
808 'neighbor-advertisement' => 1,
809 'neighbour-advertisement' => 1,
810 'redirect' => 1,
811 };
812
813 sub init_firewall_macros {
814
815 $pve_fw_parsed_macros = {};
816
817 my $parse = sub {
818 my ($k, $macro) = @_;
819 my $lc_name = lc($k);
820 $pve_fw_macro_ipversion->{$k} = 0;
821 while (!ref($macro->[0])) {
822 my $desc = shift @$macro;
823 if ($desc eq 'ipv4only') {
824 $pve_fw_macro_ipversion->{$k} = 4;
825 } elsif ($desc eq 'ipv6only') {
826 $pve_fw_macro_ipversion->{$k} = 6;
827 } else {
828 $pve_fw_macro_descr->{$k} = $desc;
829 }
830 }
831 $pve_fw_preferred_macro_names->{$lc_name} = $k;
832 $pve_fw_parsed_macros->{$k} = $macro;
833 };
834
835 foreach my $k (keys %$pve_fw_macros) {
836 &$parse($k, $pve_fw_macros->{$k});
837 }
838
839 foreach my $k (keys %$pve_ipv6fw_macros) {
840 next if $pve_fw_parsed_macros->{$k};
841 &$parse($k, $pve_ipv6fw_macros->{$k});
842 $pve_fw_macro_ipversion->{$k} = 6;
843 }
844 }
845
846 init_firewall_macros();
847
848 sub get_macros {
849 return wantarray ? ($pve_fw_parsed_macros, $pve_fw_macro_descr): $pve_fw_parsed_macros;
850 }
851
852 my $etc_services;
853
854 sub get_etc_services {
855
856 return $etc_services if $etc_services;
857
858 my $filename = "/etc/services";
859
860 my $fh = IO::File->new($filename, O_RDONLY);
861 if (!$fh) {
862 warn "unable to read '$filename' - $!\n";
863 return {};
864 }
865
866 my $services = {};
867
868 while (my $line = <$fh>) {
869 chomp ($line);
870 next if $line =~m/^#/;
871 next if ($line =~m/^\s*$/);
872
873 if ($line =~ m!^(\S+)\s+(\S+)/(tcp|udp|sctp).*$!) {
874 $services->{byid}->{$2}->{name} = $1;
875 $services->{byid}->{$2}->{port} = $2;
876 $services->{byid}->{$2}->{$3} = 1;
877 $services->{byname}->{$1} = $services->{byid}->{$2};
878 }
879 }
880
881 close($fh);
882
883 $etc_services = $services;
884
885
886 return $etc_services;
887 }
888
889 sub parse_protocol_file {
890 my ($filename) = @_;
891
892 my $fh = IO::File->new($filename, O_RDONLY);
893 if (!$fh) {
894 warn "unable to read '$filename' - $!\n";
895 return {};
896 }
897
898 my $protocols = {};
899
900 while (my $line = <$fh>) {
901 chomp ($line);
902 next if $line =~m/^#/;
903 next if ($line =~m/^\s*$/);
904
905 if ($line =~ m!^(\S+)\s+(\d+)(?:\s+.*)?$!) {
906 $protocols->{byid}->{$2}->{name} = $1;
907 $protocols->{byname}->{$1} = $protocols->{byid}->{$2};
908 }
909 }
910
911 close($fh);
912
913 return $protocols;
914 }
915
916 my $etc_protocols;
917
918 sub get_etc_protocols {
919 return $etc_protocols if $etc_protocols;
920
921 my $protocols = parse_protocol_file('/etc/protocols');
922
923 # add special case for ICMP v6
924 $protocols->{byid}->{icmpv6}->{name} = "icmpv6";
925 $protocols->{byname}->{icmpv6} = $protocols->{byid}->{icmpv6};
926
927 $etc_protocols = $protocols;
928
929 return $etc_protocols;
930 }
931
932 my $etc_ethertypes;
933
934 sub get_etc_ethertypes {
935 $etc_ethertypes = parse_protocol_file('/etc/ethertypes')
936 if !$etc_ethertypes;
937 return $etc_ethertypes;
938 }
939
940 my $__local_network;
941
942 sub local_network {
943 my ($new_value) = @_;
944
945 $__local_network = $new_value if defined($new_value);
946
947 return $__local_network if defined($__local_network);
948
949 eval {
950 my $nodename = PVE::INotify::nodename();
951
952 my $ip = PVE::Cluster::remote_node_ip($nodename);
953
954 my $testip = Net::IP->new($ip);
955
956 my $isv6 = $testip->version == 6;
957 my $routes = $isv6 ? PVE::ProcFSTools::read_proc_net_ipv6_route()
958 : PVE::ProcFSTools::read_proc_net_route();
959 foreach my $entry (@$routes) {
960 my $mask;
961 if ($isv6) {
962 $mask = $entry->{prefix};
963 next if !$mask; # skip the default route...
964 } else {
965 $mask = $PVE::Network::ipv4_mask_hash_localnet->{$entry->{mask}};
966 next if !defined($mask);
967 }
968 my $cidr = "$entry->{dest}/$mask";
969 my $testnet = Net::IP->new($cidr);
970 my $overlap = $testnet->overlaps($testip);
971 if ($overlap == $Net::IP::IP_B_IN_A_OVERLAP ||
972 $overlap == $Net::IP::IP_IDENTICAL)
973 {
974 $__local_network = $cidr;
975 return;
976 }
977 }
978 };
979 warn $@ if $@;
980
981 return $__local_network;
982 }
983
984 # ipset names are limited to 31 characters,
985 # and we use '-v4' or '-v6' to indicate IP versions,
986 # and we use '_swap' suffix for atomic update,
987 # for example PVEFW-${VMID}-${ipset_name}_swap
988
989 my $max_iptables_ipset_name_length = 31 - length("PVEFW-") - length("_swap");
990
991 sub compute_ipset_chain_name {
992 my ($vmid, $ipset_name, $ipversion) = @_;
993
994 $vmid = 0 if !defined($vmid);
995
996 my $id = "$vmid-${ipset_name}-v$ipversion";
997
998 if (length($id) > $max_iptables_ipset_name_length) {
999 $id = PVE::Tools::fnv31a_hex($id);
1000 }
1001
1002 return "PVEFW-$id";
1003 }
1004
1005 sub compute_ipfilter_ipset_name {
1006 my ($iface) = @_;
1007
1008 return "ipfilter-$iface";
1009 }
1010
1011 sub parse_address_list {
1012 my ($str) = @_;
1013
1014 if ($str =~ m/^(\+)(\S+)$/) { # ipset ref
1015 die "ipset name too long\n" if length($str) > ($max_ipset_name_length + 1);
1016 return;
1017 }
1018
1019 if ($str =~ m/^${ip_alias_pattern}$/) {
1020 die "alias name too long\n" if length($str) > $max_alias_name_length;
1021 return;
1022 }
1023
1024 my $count = 0;
1025 my $iprange = 0;
1026 my $ipversion;
1027
1028 my @elements = split(/,/, $str);
1029 die "extraneous commas in list\n" if $str ne join(',', @elements);
1030 foreach my $elem (@elements) {
1031 $count++;
1032 my $ip = Net::IP->new($elem);
1033 if (!$ip) {
1034 my $err = Net::IP::Error();
1035 die "invalid IP address: $err\n";
1036 }
1037 $iprange = 1 if $elem =~ m/-/;
1038
1039 my $new_ipversion = Net::IP::ip_is_ipv6($ip->ip()) ? 6 : 4;
1040
1041 die "detected mixed ipv4/ipv6 addresses in address list '$str'\n"
1042 if $ipversion && ($new_ipversion != $ipversion);
1043
1044 $ipversion = $new_ipversion;
1045 }
1046
1047 die "you can't use a range in a list\n" if $iprange && $count > 1;
1048
1049 return $ipversion;
1050 }
1051
1052 sub parse_port_name_number_or_range {
1053 my ($str, $dport) = @_;
1054
1055 my $services = PVE::Firewall::get_etc_services();
1056 my $count = 0;
1057 my $icmp_port = 0;
1058
1059 my @elements = split(/,/, $str);
1060 die "extraneous commas in list\n" if $str ne join(',', @elements);
1061 foreach my $item (@elements) {
1062 if ($item =~ m/^([0-9]+):([0-9]+)$/) {
1063 $count += 2;
1064 my ($port1, $port2) = ($1, $2);
1065 die "invalid port '$port1'\n" if $port1 > 65535;
1066 die "invalid port '$port2'\n" if $port2 > 65535;
1067 die "backwards range '$port1:$port2' not allowed, did you mean '$port2:$port1'?\n" if $port1 > $port2;
1068 } elsif ($item =~ m/^([0-9]+)$/) {
1069 $count += 1;
1070 my $port = $1;
1071 die "invalid port '$port'\n" if $port > 65535;
1072 } else {
1073 if ($dport && $icmp_type_names->{$item}) {
1074 $icmp_port = 1;
1075 } elsif ($dport && $icmpv6_type_names->{$item}) {
1076 $icmp_port = 1;
1077 } else {
1078 die "invalid port '$item'\n" if !$services->{byname}->{$item};
1079 }
1080 }
1081 }
1082
1083 die "ICPM ports not allowed in port range\n" if $icmp_port && $count > 0;
1084
1085 # I really don't like to use the word number here, but it's the only thing
1086 # that makes sense in a literal way. The range 1:100 counts as 2, not as
1087 # one and not as 100...
1088 die "too many entries in port list (> 15 numbers)\n"
1089 if $count > 15;
1090
1091 return (scalar(@elements) > 1);
1092 }
1093
1094 PVE::JSONSchema::register_format('pve-fw-sport-spec', \&pve_fw_verify_sport_spec);
1095 sub pve_fw_verify_sport_spec {
1096 my ($portstr) = @_;
1097
1098 parse_port_name_number_or_range($portstr, 0);
1099
1100 return $portstr;
1101 }
1102
1103 PVE::JSONSchema::register_format('pve-fw-dport-spec', \&pve_fw_verify_dport_spec);
1104 sub pve_fw_verify_dport_spec {
1105 my ($portstr) = @_;
1106
1107 parse_port_name_number_or_range($portstr, 1);
1108
1109 return $portstr;
1110 }
1111
1112 PVE::JSONSchema::register_format('pve-fw-addr-spec', \&pve_fw_verify_addr_spec);
1113 sub pve_fw_verify_addr_spec {
1114 my ($list) = @_;
1115
1116 parse_address_list($list);
1117
1118 return $list;
1119 }
1120
1121 PVE::JSONSchema::register_format('pve-fw-protocol-spec', \&pve_fw_verify_protocol_spec);
1122 sub pve_fw_verify_protocol_spec {
1123 my ($proto) = @_;
1124
1125 my $protocols = get_etc_protocols();
1126
1127 die "unknown protocol '$proto'\n" if $proto &&
1128 !(defined($protocols->{byname}->{$proto}) ||
1129 defined($protocols->{byid}->{$proto}));
1130
1131 return $proto;
1132 }
1133
1134
1135 # helper function for API
1136
1137 sub copy_opject_with_digest {
1138 my ($object) = @_;
1139
1140 my $sha = Digest::SHA->new('sha1');
1141
1142 my $res = {};
1143 foreach my $k (sort keys %$object) {
1144 my $v = $object->{$k};
1145 next if !defined($v);
1146 $res->{$k} = $v;
1147 $sha->add($k, ':', $v, "\n");
1148 }
1149
1150 my $digest = $sha->hexdigest;
1151
1152 $res->{digest} = $digest;
1153
1154 return wantarray ? ($res, $digest) : $res;
1155 }
1156
1157 sub copy_list_with_digest {
1158 my ($list) = @_;
1159
1160 my $sha = Digest::SHA->new('sha1');
1161
1162 my $res = [];
1163 foreach my $entry (@$list) {
1164 my $data = {};
1165 foreach my $k (sort keys %$entry) {
1166 my $v = $entry->{$k};
1167 next if !defined($v);
1168 $data->{$k} = $v;
1169 # Note: digest ignores refs ($rule->{errors})
1170 # since Digest::SHA expects a series of bytes,
1171 # we have to encode the value here to prevent errors when
1172 # using utf8 characters (eg. in comments)
1173 $sha->add($k, ':', encode_utf8($v), "\n") if !ref($v); ;
1174 }
1175 push @$res, $data;
1176 }
1177
1178 my $digest = $sha->hexdigest;
1179
1180 foreach my $entry (@$res) {
1181 $entry->{digest} = $digest;
1182 }
1183
1184 return wantarray ? ($res, $digest) : $res;
1185 }
1186
1187 our $cluster_option_properties = {
1188 enable => {
1189 description => "Enable or disable the firewall cluster wide.",
1190 type => 'integer',
1191 minimum => 0,
1192 optional => 1,
1193 },
1194 ebtables => {
1195 description => "Enable ebtables rules cluster wide.",
1196 type => 'boolean',
1197 default => 1,
1198 optional => 1,
1199 },
1200 policy_in => {
1201 description => "Input policy.",
1202 type => 'string',
1203 optional => 1,
1204 enum => ['ACCEPT', 'REJECT', 'DROP'],
1205 },
1206 policy_out => {
1207 description => "Output policy.",
1208 type => 'string',
1209 optional => 1,
1210 enum => ['ACCEPT', 'REJECT', 'DROP'],
1211 },
1212 log_ratelimit => {
1213 description => "Log ratelimiting settings",
1214 type => 'string', format => {
1215 enable => {
1216 default_key => 1,
1217 description => 'Enable or disable log rate limiting',
1218 type => 'boolean',
1219 default => '1',
1220 },
1221 rate => {
1222 type => 'string',
1223 description => 'Frequency with which the burst bucket gets refilled',
1224 optional => 1,
1225 pattern => '[1-9][0-9]*\/(second|minute|hour|day)',
1226 format_description => 'rate',
1227 default => '1/second',
1228 },
1229 burst => {
1230 type => 'integer',
1231 minimum => 0,
1232 optional => 1,
1233 description => 'Inital burst of packages which will get logged',
1234 default => 5,
1235 },
1236 },
1237 optional => 1,
1238 },
1239 };
1240
1241 our $host_option_properties = {
1242 enable => {
1243 description => "Enable host firewall rules.",
1244 type => 'boolean',
1245 optional => 1,
1246 },
1247 log_level_in => get_standard_option('pve-fw-loglevel', {
1248 description => "Log level for incoming traffic." }),
1249 log_level_out => get_standard_option('pve-fw-loglevel', {
1250 description => "Log level for outgoing traffic." }),
1251 tcp_flags_log_level => get_standard_option('pve-fw-loglevel', {
1252 description => "Log level for illegal tcp flags filter." }),
1253 smurf_log_level => get_standard_option('pve-fw-loglevel', {
1254 description => "Log level for SMURFS filter." }),
1255 nosmurfs => {
1256 description => "Enable SMURFS filter.",
1257 type => 'boolean',
1258 optional => 1,
1259 },
1260 tcpflags => {
1261 description => "Filter illegal combinations of TCP flags.",
1262 type => 'boolean',
1263 default => 0,
1264 optional => 1,
1265 },
1266 nf_conntrack_max => {
1267 description => "Maximum number of tracked connections.",
1268 type => 'integer',
1269 optional => 1,
1270 default => 262144,
1271 minimum => 32768,
1272 },
1273 nf_conntrack_tcp_timeout_established => {
1274 description => "Conntrack established timeout.",
1275 type => 'integer',
1276 optional => 1,
1277 default => 432000,
1278 minimum => 7875,
1279 },
1280 nf_conntrack_tcp_timeout_syn_recv => {
1281 description => "Conntrack syn recv timeout.",
1282 type => 'integer',
1283 optional => 1,
1284 default => 60,
1285 minimum => 30,
1286 maximum => 60,
1287 },
1288 ndp => {
1289 description => "Enable NDP (Neighbor Discovery Protocol).",
1290 type => 'boolean',
1291 default => 0,
1292 optional => 1,
1293 },
1294 nf_conntrack_allow_invalid => {
1295 description => "Allow invalid packets on connection tracking.",
1296 type => 'boolean',
1297 default => 0,
1298 optional => 1,
1299 },
1300 protection_synflood => {
1301 description => "Enable synflood protection",
1302 type => 'boolean',
1303 default => 0,
1304 optional => 1,
1305 },
1306 protection_synflood_rate => {
1307 description => "Synflood protection rate syn/sec by ip src.",
1308 type => 'integer',
1309 optional => 1,
1310 default => 200,
1311 },
1312 protection_synflood_burst => {
1313 description => "Synflood protection rate burst by ip src.",
1314 type => 'integer',
1315 optional => 1,
1316 default => 1000,
1317 },
1318 log_nf_conntrack => {
1319 description => "Enable logging of conntrack information.",
1320 type => 'boolean',
1321 default => 0,
1322 optional => 1
1323 },
1324 };
1325
1326 our $vm_option_properties = {
1327 enable => {
1328 description => "Enable/disable firewall rules.",
1329 type => 'boolean',
1330 default => 0,
1331 optional => 1,
1332 },
1333 macfilter => {
1334 description => "Enable/disable MAC address filter.",
1335 type => 'boolean',
1336 default => 0,
1337 optional => 1,
1338 },
1339 dhcp => {
1340 description => "Enable DHCP.",
1341 type => 'boolean',
1342 default => 0,
1343 optional => 1,
1344 },
1345 ndp => {
1346 description => "Enable NDP (Neighbor Discovery Protocol).",
1347 type => 'boolean',
1348 default => 0,
1349 optional => 1,
1350 },
1351 radv => {
1352 description => "Allow sending Router Advertisement.",
1353 type => 'boolean',
1354 optional => 1,
1355 },
1356 ipfilter => {
1357 description => "Enable default IP filters. " .
1358 "This is equivalent to adding an empty ipfilter-net<id> ipset " .
1359 "for every interface. Such ipsets implicitly contain sane default " .
1360 "restrictions such as restricting IPv6 link local addresses to " .
1361 "the one derived from the interface's MAC address. For containers " .
1362 "the configured IP addresses will be implicitly added.",
1363 type => 'boolean',
1364 optional => 1,
1365 },
1366 policy_in => {
1367 description => "Input policy.",
1368 type => 'string',
1369 optional => 1,
1370 enum => ['ACCEPT', 'REJECT', 'DROP'],
1371 },
1372 policy_out => {
1373 description => "Output policy.",
1374 type => 'string',
1375 optional => 1,
1376 enum => ['ACCEPT', 'REJECT', 'DROP'],
1377 },
1378 log_level_in => get_standard_option('pve-fw-loglevel', {
1379 description => "Log level for incoming traffic." }),
1380 log_level_out => get_standard_option('pve-fw-loglevel', {
1381 description => "Log level for outgoing traffic." }),
1382
1383 };
1384
1385
1386 my $addr_list_descr = "This can refer to a single IP address, an IP set ('+ipsetname') or an IP alias definition. You can also specify an address range like '20.34.101.207-201.3.9.99', or a list of IP addresses and networks (entries are separated by comma). Please do not mix IPv4 and IPv6 addresses inside such lists.";
1387
1388 my $port_descr = "You can use service names or simple numbers (0-65535), as defined in '/etc/services'. Port ranges can be specified with '\\d+:\\d+', for example '80:85', and you can use comma separated list to match several ports or ranges.";
1389
1390 my $rule_properties = {
1391 pos => {
1392 description => "Update rule at position <pos>.",
1393 type => 'integer',
1394 minimum => 0,
1395 optional => 1,
1396 },
1397 digest => get_standard_option('pve-config-digest'),
1398 type => {
1399 description => "Rule type.",
1400 type => 'string',
1401 optional => 1,
1402 enum => ['in', 'out', 'group'],
1403 },
1404 action => {
1405 description => "Rule action ('ACCEPT', 'DROP', 'REJECT') or security group name.",
1406 type => 'string',
1407 optional => 1,
1408 pattern => $security_group_name_pattern,
1409 maxLength => 20,
1410 minLength => 2,
1411 },
1412 macro => {
1413 description => "Use predefined standard macro.",
1414 type => 'string',
1415 optional => 1,
1416 maxLength => 128,
1417 },
1418 iface => get_standard_option('pve-iface', {
1419 description => "Network interface name. You have to use network configuration key names for VMs and containers ('net\\d+'). Host related rules can use arbitrary strings.",
1420 optional => 1
1421 }),
1422 source => {
1423 description => "Restrict packet source address. $addr_list_descr",
1424 type => 'string', format => 'pve-fw-addr-spec',
1425 optional => 1,
1426 },
1427 dest => {
1428 description => "Restrict packet destination address. $addr_list_descr",
1429 type => 'string', format => 'pve-fw-addr-spec',
1430 optional => 1,
1431 },
1432 proto => {
1433 description => "IP protocol. You can use protocol names ('tcp'/'udp') or simple numbers, as defined in '/etc/protocols'.",
1434 type => 'string', format => 'pve-fw-protocol-spec',
1435 optional => 1,
1436 },
1437 enable => {
1438 description => "Flag to enable/disable a rule.",
1439 type => 'integer',
1440 minimum => 0,
1441 optional => 1,
1442 },
1443 log => get_standard_option('pve-fw-loglevel', {
1444 description => "Log level for firewall rule.",
1445 }),
1446 sport => {
1447 description => "Restrict TCP/UDP source port. $port_descr",
1448 type => 'string', format => 'pve-fw-sport-spec',
1449 optional => 1,
1450 },
1451 dport => {
1452 description => "Restrict TCP/UDP destination port. $port_descr",
1453 type => 'string', format => 'pve-fw-dport-spec',
1454 optional => 1,
1455 },
1456 comment => {
1457 description => "Descriptive comment.",
1458 type => 'string',
1459 optional => 1,
1460 },
1461 };
1462
1463 sub add_rule_properties {
1464 my ($properties) = @_;
1465
1466 foreach my $k (keys %$rule_properties) {
1467 my $h = $rule_properties->{$k};
1468 # copy data, so that we can modify later without side effects
1469 foreach my $opt (keys %$h) { $properties->{$k}->{$opt} = $h->{$opt}; }
1470 }
1471
1472 return $properties;
1473 }
1474
1475 sub delete_rule_properties {
1476 my ($rule, $delete_str) = @_;
1477
1478 foreach my $opt (PVE::Tools::split_list($delete_str)) {
1479 raise_param_exc({ 'delete' => "no such property ('$opt')"})
1480 if !defined($rule_properties->{$opt});
1481 raise_param_exc({ 'delete' => "unable to delete required property '$opt'"})
1482 if $opt eq 'type' || $opt eq 'action';
1483 delete $rule->{$opt};
1484 }
1485
1486 return $rule;
1487 }
1488
1489 my $apply_macro = sub {
1490 my ($macro_name, $param, $verify, $ipversion) = @_;
1491
1492 my $macro_rules = $pve_fw_parsed_macros->{$macro_name};
1493 die "unknown macro '$macro_name'\n" if !$macro_rules; # should not happen
1494
1495 if ($ipversion && ($ipversion == 6) && $pve_ipv6fw_macros->{$macro_name}) {
1496 $macro_rules = $pve_ipv6fw_macros->{$macro_name};
1497 }
1498
1499 # skip macros which are specific to another ipversion
1500 if ($ipversion && (my $required = $pve_fw_macro_ipversion->{$macro_name})) {
1501 return if $ipversion != $required;
1502 }
1503
1504 my $rules = [];
1505
1506 foreach my $templ (@$macro_rules) {
1507 my $rule = {};
1508 my $param_used = {};
1509 foreach my $k (keys %$templ) {
1510 my $v = $templ->{$k};
1511 if ($v eq 'PARAM') {
1512 $v = $param->{$k};
1513 $param_used->{$k} = 1;
1514 } elsif ($v eq 'DEST') {
1515 $v = $param->{dest};
1516 $param_used->{dest} = 1;
1517 } elsif ($v eq 'SOURCE') {
1518 $v = $param->{source};
1519 $param_used->{source} = 1;
1520 }
1521
1522 if (!defined($v)) {
1523 my $msg = "missing parameter '$k' in macro '$macro_name'";
1524 raise_param_exc({ macro => $msg }) if $verify;
1525 die "$msg\n";
1526 }
1527 $rule->{$k} = $v;
1528 }
1529 foreach my $k (keys %$param) {
1530 next if $k eq 'macro';
1531 next if !defined($param->{$k});
1532 next if $param_used->{$k};
1533 if (defined($rule->{$k})) {
1534 if ($rule->{$k} ne $param->{$k}) {
1535 my $msg = "parameter '$k' already define in macro (value = '$rule->{$k}')";
1536 raise_param_exc({ $k => $msg }) if $verify;
1537 die "$msg\n";
1538 }
1539 } else {
1540 $rule->{$k} = $param->{$k};
1541 }
1542 }
1543 push @$rules, $rule;
1544 }
1545
1546 return $rules;
1547 };
1548
1549 my $rule_env_iface_lookup = {
1550 'ct' => 1,
1551 'vm' => 1,
1552 'group' => 0,
1553 'cluster' => 1,
1554 'host' => 1,
1555 };
1556
1557 sub verify_rule {
1558 my ($rule, $cluster_conf, $fw_conf, $rule_env, $noerr) = @_;
1559
1560 my $allow_groups = $rule_env eq 'group' ? 0 : 1;
1561
1562 my $allow_iface = $rule_env_iface_lookup->{$rule_env};
1563 die "unknown rule_env '$rule_env'\n" if !defined($allow_iface); # should not happen
1564
1565 my $errors = $rule->{errors} || {};
1566
1567 my $error_count = 0;
1568
1569 my $add_error = sub {
1570 my ($param, $msg) = @_;
1571 chomp $msg;
1572 raise_param_exc({ $param => $msg }) if !$noerr;
1573 $error_count++;
1574 $errors->{$param} = $msg if !$errors->{$param};
1575 };
1576
1577 my $ipversion;
1578 my $set_ip_version = sub {
1579 my $vers = shift;
1580 if ($vers) {
1581 die "detected mixed ipv4/ipv6 adresses in rule\n"
1582 if $ipversion && ($vers != $ipversion);
1583 $ipversion = $vers;
1584 }
1585 };
1586
1587 my $check_ipset_or_alias_property = sub {
1588 my ($name, $expected_ipversion) = @_;
1589
1590 if (my $value = $rule->{$name}) {
1591 if ($value =~ m/^\+/) {
1592 if ($value =~ m/^\+(${ipset_name_pattern})$/) {
1593 &$add_error($name, "no such ipset '$1'")
1594 if !($cluster_conf->{ipset}->{$1} || ($fw_conf && $fw_conf->{ipset}->{$1}));
1595
1596 } else {
1597 &$add_error($name, "invalid ipset name '$value'");
1598 }
1599 } elsif ($value =~ m/^${ip_alias_pattern}$/){
1600 my $alias = lc($value);
1601 &$add_error($name, "no such alias '$value'")
1602 if !($cluster_conf->{aliases}->{$alias} || ($fw_conf && $fw_conf->{aliases}->{$alias}));
1603 my $e = $fw_conf ? $fw_conf->{aliases}->{$alias} : undef;
1604 $e = $cluster_conf->{aliases}->{$alias} if !$e && $cluster_conf;
1605
1606 &$set_ip_version($e->{ipversion});
1607 }
1608 }
1609 };
1610
1611 my $type = $rule->{type};
1612 my $action = $rule->{action};
1613
1614 &$add_error('type', "missing property") if !$type;
1615 &$add_error('action', "missing property") if !$action;
1616
1617 if ($type) {
1618 if ($type eq 'in' || $type eq 'out') {
1619 &$add_error('action', "unknown action '$action'")
1620 if $action && ($action !~ m/^(ACCEPT|DROP|REJECT)$/);
1621 } elsif ($type eq 'group') {
1622 &$add_error('type', "security groups not allowed")
1623 if !$allow_groups;
1624 &$add_error('action', "invalid characters in security group name")
1625 if $action && ($action !~ m/^${security_group_name_pattern}$/);
1626 &$add_error('action', "security group '$action' does not exist")
1627 if $action && !defined($cluster_conf->{groups}->{$action});
1628 } else {
1629 &$add_error('type', "unknown rule type '$type'");
1630 }
1631 }
1632
1633 if ($rule->{iface}) {
1634 &$add_error('type', "parameter -i not allowed for this rule type")
1635 if !$allow_iface;
1636 eval { PVE::JSONSchema::pve_verify_iface($rule->{iface}); };
1637 &$add_error('iface', $@) if $@;
1638 if ($rule_env eq 'vm' || $rule_env eq 'ct') {
1639 &$add_error('iface', "value does not match the regex pattern 'net\\d+'")
1640 if $rule->{iface} !~ m/^net(\d+)$/;
1641 }
1642 }
1643
1644 if ($rule->{macro}) {
1645 if (my $preferred_name = $pve_fw_preferred_macro_names->{lc($rule->{macro})}) {
1646 $rule->{macro} = $preferred_name;
1647 } else {
1648 &$add_error('macro', "unknown macro '$rule->{macro}'");
1649 }
1650 }
1651
1652 if ($rule->{proto}) {
1653 eval { pve_fw_verify_protocol_spec($rule->{proto}); };
1654 &$add_error('proto', $@) if $@;
1655 &$set_ip_version(4) if $rule->{proto} eq 'icmp';
1656 &$set_ip_version(6) if $rule->{proto} eq 'icmpv6';
1657 }
1658
1659 if ($rule->{dport}) {
1660 eval { parse_port_name_number_or_range($rule->{dport}, 1); };
1661 &$add_error('dport', $@) if $@;
1662 my $proto = $rule->{proto};
1663 &$add_error('proto', "missing property - 'dport' requires this property")
1664 if !$proto;
1665 &$add_error('dport', "protocol '$proto' does not support ports")
1666 if !$PROTOCOLS_WITH_PORTS->{$proto} &&
1667 $proto ne 'icmp' && $proto ne 'icmpv6'; # special cases
1668 }
1669
1670 if ($rule->{sport}) {
1671 eval { parse_port_name_number_or_range($rule->{sport}, 0); };
1672 &$add_error('sport', $@) if $@;
1673 my $proto = $rule->{proto};
1674 &$add_error('proto', "missing property - 'sport' requires this property")
1675 if !$proto;
1676 &$add_error('sport', "protocol '$proto' does not support ports")
1677 if !$PROTOCOLS_WITH_PORTS->{$proto};
1678 }
1679
1680 if ($rule->{source}) {
1681 eval {
1682 my $source_ipversion = parse_address_list($rule->{source});
1683 &$set_ip_version($source_ipversion);
1684 };
1685 &$add_error('source', $@) if $@;
1686 &$check_ipset_or_alias_property('source', $ipversion);
1687 }
1688
1689 if ($rule->{dest}) {
1690 eval {
1691 my $dest_ipversion = parse_address_list($rule->{dest});
1692 &$set_ip_version($dest_ipversion);
1693 };
1694 &$add_error('dest', $@) if $@;
1695 &$check_ipset_or_alias_property('dest', $ipversion);
1696 }
1697
1698 $rule->{ipversion} = $ipversion if $ipversion;
1699
1700 if ($rule->{macro} && !$error_count) {
1701 eval { &$apply_macro($rule->{macro}, $rule, 1, $ipversion); };
1702 if (my $err = $@) {
1703 if (ref($err) eq "PVE::Exception" && $err->{errors}) {
1704 my $eh = $err->{errors};
1705 foreach my $p (keys %$eh) {
1706 &$add_error($p, $eh->{$p});
1707 }
1708 } else {
1709 &$add_error('macro', "$err");
1710 }
1711 }
1712 }
1713
1714 $rule->{errors} = $errors if $error_count;
1715
1716 return $rule;
1717 }
1718
1719 sub copy_rule_data {
1720 my ($rule, $param) = @_;
1721
1722 foreach my $k (keys %$rule_properties) {
1723 if (defined(my $v = $param->{$k})) {
1724 if ($v eq '' || $v eq '-') {
1725 delete $rule->{$k};
1726 } else {
1727 $rule->{$k} = $v;
1728 }
1729 }
1730 }
1731
1732 return $rule;
1733 }
1734
1735 sub rules_modify_permissions {
1736 my ($rule_env) = @_;
1737
1738 if ($rule_env eq 'host') {
1739 return {
1740 check => ['perm', '/nodes/{node}', [ 'Sys.Modify' ]],
1741 };
1742 } elsif ($rule_env eq 'cluster' || $rule_env eq 'group') {
1743 return {
1744 check => ['perm', '/', [ 'Sys.Modify' ]],
1745 };
1746 } elsif ($rule_env eq 'vm' || $rule_env eq 'ct') {
1747 return {
1748 check => ['perm', '/vms/{vmid}', [ 'VM.Config.Network' ]],
1749 }
1750 }
1751
1752 return undef;
1753 }
1754
1755 sub rules_audit_permissions {
1756 my ($rule_env) = @_;
1757
1758 if ($rule_env eq 'host') {
1759 return {
1760 check => ['perm', '/nodes/{node}', [ 'Sys.Audit' ]],
1761 };
1762 } elsif ($rule_env eq 'cluster' || $rule_env eq 'group') {
1763 return {
1764 check => ['perm', '/', [ 'Sys.Audit' ]],
1765 };
1766 } elsif ($rule_env eq 'vm' || $rule_env eq 'ct') {
1767 return {
1768 check => ['perm', '/vms/{vmid}', [ 'VM.Audit' ]],
1769 }
1770 }
1771
1772 return undef;
1773 }
1774
1775 # core functions
1776 my $bridge_firewall_enabled = 0;
1777
1778 sub enable_bridge_firewall {
1779
1780 return if $bridge_firewall_enabled; # only once
1781
1782 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/bridge/bridge-nf-call-iptables", "1");
1783 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/bridge/bridge-nf-call-ip6tables", "1");
1784
1785 # make sure syncookies are enabled (which is default on newer 3.X kernels anyways)
1786 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/ipv4/tcp_syncookies", "1");
1787
1788 $bridge_firewall_enabled = 1;
1789 }
1790
1791 sub iptables_restore_cmdlist {
1792 my ($cmdlist, $table) = @_;
1793
1794 $table = 'filter' if !$table;
1795 run_command(['iptables-restore', '-T', $table, '-n'], input => $cmdlist, errmsg => "iptables_restore_cmdlist");
1796 }
1797
1798 sub ip6tables_restore_cmdlist {
1799 my ($cmdlist, $table) = @_;
1800
1801 $table = 'filter' if !$table;
1802 run_command(['ip6tables-restore', '-T', $table, '-n'], input => $cmdlist, errmsg => "iptables_restore_cmdlist");
1803 }
1804
1805 sub ipset_restore_cmdlist {
1806 my ($cmdlist) = @_;
1807
1808 run_command(['ipset', 'restore'], input => $cmdlist, errmsg => "ipset_restore_cmdlist");
1809 }
1810
1811 sub ebtables_restore_cmdlist {
1812 my ($cmdlist) = @_;
1813
1814 run_command(['ebtables-restore'], input => $cmdlist, errmsg => "ebtables_restore_cmdlist");
1815 }
1816
1817 sub iptables_get_chains {
1818 my ($iptablescmd, $t) = @_;
1819
1820 $iptablescmd = "iptables" if !$iptablescmd;
1821 $t = 'filter' if !$t;
1822
1823 my $res = {};
1824
1825 # check what chains we want to track
1826 my $is_pvefw_chain = sub {
1827 my $name = shift;
1828
1829 return 1 if $name =~ m/^PVEFW-\S+$/;
1830
1831 return 1 if $name =~ m/^tap\d+i\d+-(?:IN|OUT)$/;
1832
1833 return 1 if $name =~ m/^veth\d+i\d+-(?:IN|OUT)$/;
1834
1835 return 1 if $name =~ m/^fwbr\d+(v\d+)?-(?:FW|IN|OUT|IPS)$/;
1836 return 1 if $name =~ m/^GROUP-(?:$security_group_name_pattern)-(?:IN|OUT)$/;
1837
1838 return undef;
1839 };
1840
1841 my $table = '';
1842
1843 my $hooks = {};
1844
1845 my $parser = sub {
1846 my $line = shift;
1847
1848 return if $line =~ m/^#/;
1849 return if $line =~ m/^\s*$/;
1850
1851 if ($line =~ m/^\*(\S+)$/) {
1852 $table = $1;
1853 return;
1854 }
1855
1856 return if $table ne $t;
1857
1858 if ($line =~ m/^:(\S+)\s/) {
1859 my $chain = $1;
1860 return if !&$is_pvefw_chain($chain);
1861 $res->{$chain} = "unknown";
1862 } elsif ($line =~ m/^-A\s+(\S+)\s.*--comment\s+\"PVESIG:(\S+)\"/) {
1863 my ($chain, $sig) = ($1, $2);
1864 return if !&$is_pvefw_chain($chain);
1865 $res->{$chain} = $sig;
1866 } elsif ($line =~ m/^-A\s+(INPUT|OUTPUT|FORWARD|PREROUTING)\s+-j\s+PVEFW-\1$/) {
1867 $hooks->{$1} = 1;
1868 } else {
1869 # simply ignore the rest
1870 return;
1871 }
1872 };
1873
1874 run_command(["$iptablescmd-save"], outfunc => $parser);
1875
1876 return wantarray ? ($res, $hooks) : $res;
1877 }
1878
1879 sub iptables_chain_digest {
1880 my ($rules) = @_;
1881 my $digest = Digest::SHA->new('sha1');
1882 foreach my $rule (@$rules) { # order is important
1883 $digest->add($rule);
1884 }
1885 return $digest->b64digest;
1886 }
1887
1888 sub ipset_chain_digest {
1889 my ($rules) = @_;
1890
1891 my $digest = Digest::SHA->new('sha1');
1892 foreach my $rule (sort @$rules) { # note: sorted
1893 $digest->add($rule);
1894 }
1895 return $digest->b64digest;
1896 }
1897
1898 sub ipset_get_chains {
1899
1900 my $res = {};
1901 my $chains = {};
1902
1903 my $parser = sub {
1904 my $line = shift;
1905
1906 return if $line =~ m/^#/;
1907 return if $line =~ m/^\s*$/;
1908 if ($line =~ m/^(?:\S+)\s(PVEFW-\S+)\s(?:\S+).*/) {
1909 my $chain = $1;
1910 $line =~ s/\s+$//; # delete trailing white space
1911 push @{$chains->{$chain}}, $line;
1912 } else {
1913 # simply ignore the rest
1914 return;
1915 }
1916 };
1917
1918 run_command(['ipset', 'save'], outfunc => $parser);
1919
1920 # compute digest for each chain
1921 foreach my $chain (keys %$chains) {
1922 $res->{$chain} = ipset_chain_digest($chains->{$chain});
1923 }
1924
1925 return $res;
1926 }
1927
1928 sub ebtables_get_chains {
1929
1930 my $res = {};
1931 my $chains = {};
1932 my $parser = sub {
1933 my $line = shift;
1934 return if $line =~ m/^#/;
1935 return if $line =~ m/^\s*$/;
1936 if ($line =~ m/^:(\S+)\s\S+$/) {
1937 # Make sure we know chains exist even if they're empty.
1938 $chains->{$1} //= [];
1939 } elsif ($line =~ m/^(?:\S+)\s(\S+)\s(?:\S+).*/) {
1940 my $chain = $1;
1941 $line =~ s/\s+$//;
1942 push @{$chains->{$chain}}, $line;
1943 } else {
1944 # simply ignore the rest
1945 return;
1946 }
1947 };
1948
1949 run_command(['ebtables-save'], outfunc => $parser);
1950 # compute digest for each chain and store rules as well
1951 foreach my $chain (keys %$chains) {
1952 $res->{$chain}->{rules} = $chains->{$chain};
1953 $res->{$chain}->{sig} = iptables_chain_digest($chains->{$chain});
1954 }
1955 return $res;
1956 }
1957
1958 # substitude action of rule according to action hash
1959 sub rule_substitude_action {
1960 my ($rule, $actions) = @_;
1961
1962 if (my $action = $rule->{action}) {
1963 $rule->{action} = $actions->{$action} if defined($actions->{$action});
1964 }
1965 }
1966
1967 # generate a src or dst match
1968 # $dir(ection) is either d or s
1969 sub ipt_gen_src_or_dst_match {
1970 my ($adr, $dir, $ipversion, $cluster_conf, $fw_conf) = @_;
1971
1972 my $srcdst;
1973 if ($dir eq 's') {
1974 $srcdst = "src";
1975 } elsif ($dir eq 'd') {
1976 $srcdst = "dst";
1977 } else {
1978 die "ipt_gen_src_or_dst_match: invalid direction $dir \n";
1979 }
1980
1981 my $match;
1982 if ($adr =~ m/^\+/) {
1983 if ($adr =~ m/^\+(${ipset_name_pattern})$/) {
1984 my $name = $1;
1985 my $ipset_chain;
1986 if ($fw_conf && $fw_conf->{ipset}->{$name}) {
1987 $ipset_chain = compute_ipset_chain_name($fw_conf->{vmid}, $name, $ipversion);
1988 } elsif ($cluster_conf && $cluster_conf->{ipset}->{$name}) {
1989 $ipset_chain = compute_ipset_chain_name(0, $name, $ipversion);
1990 } else {
1991 die "no such ipset '$name'\n";
1992 }
1993 $match = "-m set --match-set ${ipset_chain} ${srcdst}";
1994 } else {
1995 die "invalid security group name '$adr'\n";
1996 }
1997 } elsif ($adr =~ m/^${ip_alias_pattern}$/){
1998 my $alias = lc($adr);
1999 my $e = $fw_conf ? $fw_conf->{aliases}->{$alias} : undef;
2000 $e = $cluster_conf->{aliases}->{$alias} if !$e && $cluster_conf;
2001 die "no such alias '$adr'\n" if !$e;
2002 $match = "-${dir} $e->{cidr}";
2003 } elsif ($adr =~ m/\-/){
2004 $match = "-m iprange --${srcdst}-range $adr";
2005 } else {
2006 $match = "-${dir} $adr";
2007 }
2008
2009 return $match;
2010 }
2011
2012 # convert a %rule to an array of iptables commands
2013 sub ipt_rule_to_cmds {
2014 my ($rule, $chain, $ipversion, $cluster_conf, $fw_conf, $vmid) = @_;
2015
2016 die "ipt_rule_to_cmds unable to handle macro" if $rule->{macro}; #should not happen
2017
2018 my @match = ();
2019
2020 if (defined $rule->{match}) {
2021 push @match, $rule->{match};
2022 } else {
2023 push @match, "-i $rule->{iface_in}" if $rule->{iface_in};
2024 push @match, "-o $rule->{iface_out}" if $rule->{iface_out};
2025
2026 if ($rule->{source}) {
2027 push @match, ipt_gen_src_or_dst_match($rule->{source}, 's', $ipversion, $cluster_conf, $fw_conf);
2028 }
2029 if ($rule->{dest}) {
2030 push @match, ipt_gen_src_or_dst_match($rule->{dest}, 'd', $ipversion, $cluster_conf, $fw_conf);
2031 }
2032
2033 if (my $proto = $rule->{proto}) {
2034 push @match, "-p $proto";
2035
2036 my $multidport = defined($rule->{dport}) && parse_port_name_number_or_range($rule->{dport}, 1);
2037 my $multisport = defined($rule->{sport}) && parse_port_name_number_or_range($rule->{sport}, 0);
2038
2039 my $add_dport = sub {
2040 return if !$rule->{dport};
2041
2042 if ($proto eq 'icmp') {
2043 # Note: we use dport to store --icmp-type
2044 die "unknown icmp-type '$rule->{dport}'\n"
2045 if $rule->{dport} !~ /^\d+$/ && !defined($icmp_type_names->{$rule->{dport}});
2046 # values for icmp-type range between 0 and 255
2047 # higher values and iptables-restore fails
2048 die "invalid icmp-type '$rule->{dport}'\n" if ($rule->{dport} =~ m/^(\d+)$/) && ($1 > 255);
2049 push @match, "-m icmp --icmp-type $rule->{dport}";
2050 } elsif ($proto eq 'icmpv6') {
2051 # Note: we use dport to store --icmpv6-type
2052 die "unknown icmpv6-type '$rule->{dport}'\n"
2053 if $rule->{dport} !~ /^\d+$/ && !defined($icmpv6_type_names->{$rule->{dport}});
2054 # values for icmpv6-type range between 0 and 255
2055 # higher values and iptables-restore fails
2056 die "invalid icmpv6-type '$rule->{dport}'\n" if ($rule->{dport} =~ m/^(\d+)$/) && ($1 > 255);
2057 push @match, "-m icmpv6 --icmpv6-type $rule->{dport}";
2058 } elsif (!$PROTOCOLS_WITH_PORTS->{$proto}) {
2059 die "protocol $proto does not have ports\n";
2060 } elsif ($multidport) {
2061 push @match, "--match multiport", "--dports $rule->{dport}";
2062 } else {
2063 push @match, "--dport $rule->{dport}";
2064 }
2065 };
2066
2067 my $add_sport = sub {
2068 return if !$rule->{sport};
2069
2070 die "protocol $proto does not have ports\n"
2071 if !$PROTOCOLS_WITH_PORTS->{$proto};
2072 if ($multisport) {
2073 push @match, "--match multiport", "--sports $rule->{sport}";
2074 } else {
2075 push @match, "--sport $rule->{sport}";
2076 }
2077 };
2078
2079 # order matters - single port before multiport!
2080 $add_dport->() if $multisport;
2081 $add_sport->();
2082 $add_dport->() if !$multisport;
2083 } elsif ($rule->{dport} || $rule->{sport}) {
2084 die "destination port '$rule->{dport}', but no protocol specified\n" if $rule->{dport};
2085 die "source port '$rule->{sport}', but no protocol specified\n" if $rule->{sport};
2086 }
2087
2088 push @match, "-m addrtype --dst-type $rule->{dsttype}" if $rule->{dsttype};
2089 }
2090 my $matchstr = scalar(@match) ? join(' ', @match) : "";
2091
2092 my $targetstr;
2093 if (defined $rule->{target}) {
2094 $targetstr = $rule->{target};
2095 } else {
2096 my $action = (defined $rule->{action}) ? $rule->{action} : "";
2097 my $goto = 1 if $action eq 'PVEFW-SET-ACCEPT-MARK';
2098 $targetstr = ($goto) ? "-g $action" : "-j $action";
2099 }
2100
2101 my @iptcmds;
2102 my $log = $rule->{log};
2103 if (defined($log) && $log ne 'nolog') {
2104 my $loglevel = $log_level_hash->{$log};
2105 my $logaction = get_log_rule_base($chain, $vmid, $rule->{logmsg}, $loglevel);
2106 push @iptcmds, "-A $chain $matchstr $logaction";
2107 }
2108 push @iptcmds, "-A $chain $matchstr $targetstr";
2109 return @iptcmds;
2110 }
2111
2112 sub ruleset_generate_rule {
2113 my ($ruleset, $chain, $ipversion, $rule, $cluster_conf, $fw_conf, $vmid) = @_;
2114
2115 my $rules;
2116
2117 if ($rule->{macro}) {
2118 $rules = &$apply_macro($rule->{macro}, $rule, 0, $ipversion);
2119 } else {
2120 $rules = [ $rule ];
2121 }
2122
2123 # update all or nothing
2124 my @ipt_rule_cmds;
2125 foreach my $r (@$rules) {
2126 push @ipt_rule_cmds, ipt_rule_to_cmds($r, $chain, $ipversion, $cluster_conf, $fw_conf, $vmid);
2127 }
2128 foreach my $c (@ipt_rule_cmds) {
2129 ruleset_add_ipt_cmd($ruleset, $chain, $c);
2130 }
2131 }
2132
2133 sub ruleset_create_chain {
2134 my ($ruleset, $chain) = @_;
2135
2136 die "Invalid chain name '$chain' (28 char max)\n" if length($chain) > 28;
2137 die "chain name may not contain collons\n" if $chain =~ m/:/; # because of log format
2138
2139 die "chain '$chain' already exists\n" if $ruleset->{$chain};
2140
2141 $ruleset->{$chain} = [];
2142 }
2143
2144 sub ruleset_chain_exist {
2145 my ($ruleset, $chain) = @_;
2146
2147 return $ruleset->{$chain} ? 1 : undef;
2148 }
2149
2150 # add an iptables command (like generated by ipt_rule_to_cmds) to a chain
2151 sub ruleset_add_ipt_cmd {
2152 my ($ruleset, $chain, $iptcmd) = @_;
2153
2154 die "no such chain '$chain'\n" if !$ruleset->{$chain};
2155
2156 push @{$ruleset->{$chain}}, $iptcmd;
2157 }
2158
2159 sub ruleset_addrule {
2160 my ($ruleset, $chain, $match, $action, $log, $logmsg, $vmid) = @_;
2161
2162 die "no such chain '$chain'\n" if !$ruleset->{$chain};
2163
2164 if ($log) {
2165 my $loglevel = $log_level_hash->{$log};
2166 my $logaction = get_log_rule_base($chain, $vmid, $logmsg, $loglevel);
2167 push @{$ruleset->{$chain}}, "-A $chain $match $logaction";
2168 }
2169 # for stable ebtables digests avoid double-spaces to match ebtables-save output
2170 $match .= ' ' if length($match);
2171 push @{$ruleset->{$chain}}, "-A $chain ${match}$action";
2172 }
2173
2174 sub ruleset_insertrule {
2175 my ($ruleset, $chain, $match, $action, $log) = @_;
2176
2177 die "no such chain '$chain'\n" if !$ruleset->{$chain};
2178
2179 unshift @{$ruleset->{$chain}}, "-A $chain $match $action";
2180 }
2181
2182 sub get_log_rule_base {
2183 my ($chain, $vmid, $msg, $loglevel) = @_;
2184
2185 $vmid = 0 if !defined($vmid);
2186 $msg = "" if !defined($msg);
2187
2188 my $rlimit = '';
2189 if (defined($global_log_ratelimit)) {
2190 $rlimit = "-m limit $global_log_ratelimit ";
2191 }
2192
2193 # Note: we use special format for prefix to pass further
2194 # info to log daemon (VMID, LOGLEVEL and CHAIN)
2195 return "${rlimit}-j NFLOG --nflog-prefix \":$vmid:$loglevel:$chain: $msg\"";
2196 }
2197
2198 sub ruleset_add_chain_policy {
2199 my ($ruleset, $chain, $ipversion, $vmid, $policy, $loglevel, $accept_action) = @_;
2200
2201 if ($policy eq 'ACCEPT') {
2202
2203 my $rule = { action => 'ACCEPT' };
2204 rule_substitude_action($rule, { ACCEPT => $accept_action});
2205 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule);
2206
2207 } elsif ($policy eq 'DROP') {
2208
2209 ruleset_addrule($ruleset, $chain, "", "-j PVEFW-Drop");
2210
2211 ruleset_addrule($ruleset, $chain, "", "-j DROP", $loglevel, "policy $policy: ", $vmid);
2212 } elsif ($policy eq 'REJECT') {
2213 ruleset_addrule($ruleset, $chain, "", "-j PVEFW-Reject");
2214
2215 ruleset_addrule($ruleset, $chain, "", "-g PVEFW-reject", $loglevel, "policy $policy: ", $vmid);
2216 } else {
2217 # should not happen
2218 die "internal error: unknown policy '$policy'";
2219 }
2220 }
2221
2222 sub ruleset_chain_add_ndp {
2223 my ($ruleset, $chain, $ipversion, $options, $direction, $accept) = @_;
2224 return if $ipversion != 6 || (defined($options->{ndp}) && !$options->{ndp});
2225
2226 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type router-solicitation", $accept);
2227 if ($direction ne 'OUT' || $options->{radv}) {
2228 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type router-advertisement", $accept);
2229 }
2230 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type neighbor-solicitation", $accept);
2231 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type neighbor-advertisement", $accept);
2232 }
2233
2234 sub ruleset_chain_add_conn_filters {
2235 my ($ruleset, $chain, $allow_invalid, $accept) = @_;
2236
2237 if (!$allow_invalid) {
2238 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID", "-j DROP");
2239 }
2240 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED", "-j $accept");
2241 }
2242
2243 sub ruleset_chain_add_input_filters {
2244 my ($ruleset, $chain, $ipversion, $options, $cluster_conf, $loglevel) = @_;
2245
2246 if ($cluster_conf->{ipset}->{blacklist}){
2247 if (!ruleset_chain_exist($ruleset, "PVEFW-blacklist")) {
2248 ruleset_create_chain($ruleset, "PVEFW-blacklist");
2249 ruleset_addrule($ruleset, "PVEFW-blacklist", "", "-j DROP", $loglevel, "DROP: ", 0);
2250 }
2251 my $ipset_chain = compute_ipset_chain_name(0, 'blacklist', $ipversion);
2252 ruleset_addrule($ruleset, $chain, "-m set --match-set ${ipset_chain} src", "-j PVEFW-blacklist");
2253 }
2254
2255 if (!(defined($options->{nosmurfs}) && $options->{nosmurfs} == 0)) {
2256 if ($ipversion == 4) {
2257 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID,NEW", "-j PVEFW-smurfs");
2258 }
2259 }
2260
2261 if ($options->{tcpflags}) {
2262 ruleset_addrule($ruleset, $chain, "-p tcp", "-j PVEFW-tcpflags");
2263 }
2264 }
2265
2266 sub ruleset_create_vm_chain {
2267 my ($ruleset, $chain, $ipversion, $options, $macaddr, $ipfilter_ipset, $direction) = @_;
2268
2269 ruleset_create_chain($ruleset, $chain);
2270 my $accept = generate_nfqueue($options);
2271
2272 if (!(defined($options->{dhcp}) && $options->{dhcp} == 0)) {
2273 if ($ipversion == 4) {
2274 if ($direction eq 'OUT') {
2275 ruleset_generate_rule($ruleset, $chain, $ipversion,
2276 { action => 'PVEFW-SET-ACCEPT-MARK',
2277 proto => 'udp', sport => 68, dport => 67 });
2278 } else {
2279 ruleset_generate_rule($ruleset, $chain, $ipversion,
2280 { action => 'ACCEPT',
2281 proto => 'udp', sport => 67, dport => 68 });
2282 }
2283 } elsif ($ipversion == 6) {
2284 if ($direction eq 'OUT') {
2285 ruleset_generate_rule($ruleset, $chain, $ipversion,
2286 { action => 'PVEFW-SET-ACCEPT-MARK',
2287 proto => 'udp', sport => 546, dport => 547 });
2288 } else {
2289 ruleset_generate_rule($ruleset, $chain, $ipversion,
2290 { action => 'ACCEPT',
2291 proto => 'udp', sport => 547, dport => 546 });
2292 }
2293 }
2294
2295 }
2296
2297 if ($direction eq 'OUT') {
2298 if (defined($macaddr) && !(defined($options->{macfilter}) && $options->{macfilter} == 0)) {
2299 ruleset_addrule($ruleset, $chain, "-m mac ! --mac-source $macaddr", "-j DROP");
2300 }
2301 if ($ipversion == 6 && !$options->{radv}) {
2302 ruleset_addrule($ruleset, $chain, "-p icmpv6 --icmpv6-type router-advertisement", "-j DROP");
2303 }
2304 if ($ipfilter_ipset) {
2305 ruleset_addrule($ruleset, $chain, "-m set ! --match-set $ipfilter_ipset src", "-j DROP");
2306 }
2307 ruleset_addrule($ruleset, $chain, "", "-j MARK --set-mark $FWACCEPTMARK_OFF"); # clear mark
2308 }
2309
2310 my $accept_action = $direction eq 'OUT' ? '-g PVEFW-SET-ACCEPT-MARK' : "-j $accept";
2311 ruleset_chain_add_ndp($ruleset, $chain, $ipversion, $options, $direction, $accept_action);
2312 }
2313
2314 sub ruleset_add_group_rule {
2315 my ($ruleset, $cluster_conf, $chain, $rule, $direction, $action, $ipversion) = @_;
2316
2317 my $group = $rule->{action};
2318 my $group_chain = "GROUP-$group-$direction";
2319 if(!ruleset_chain_exist($ruleset, $group_chain)){
2320 generate_group_rules($ruleset, $cluster_conf, $group, $ipversion);
2321 }
2322
2323 if ($direction eq 'OUT' && $rule->{iface_out}) {
2324 ruleset_addrule($ruleset, $chain, "-o $rule->{iface_out}", "-j $group_chain");
2325 } elsif ($direction eq 'IN' && $rule->{iface_in}) {
2326 ruleset_addrule($ruleset, $chain, "-i $rule->{iface_in}", "-j $group_chain");
2327 } else {
2328 ruleset_addrule($ruleset, $chain, "", "-j $group_chain");
2329 }
2330
2331 ruleset_addrule($ruleset, $chain, "-m mark --mark $FWACCEPTMARK_ON", "-j $action");
2332 }
2333
2334 sub ruleset_generate_vm_rules {
2335 my ($ruleset, $rules, $cluster_conf, $vmfw_conf, $chain, $netid, $direction, $options, $ipversion, $vmid) = @_;
2336
2337 my $lc_direction = lc($direction);
2338
2339 my $in_accept = generate_nfqueue($options);
2340
2341 foreach my $rule (@$rules) {
2342 next if $rule->{iface} && $rule->{iface} ne $netid;
2343 next if !$rule->{enable} || $rule->{errors};
2344 next if $rule->{ipversion} && ($rule->{ipversion} != $ipversion);
2345
2346 if ($rule->{type} eq 'group') {
2347 ruleset_add_group_rule($ruleset, $cluster_conf, $chain, $rule, $direction,
2348 $direction eq 'OUT' ? 'RETURN' : $in_accept, $ipversion);
2349 } else {
2350 next if $rule->{type} ne $lc_direction;
2351 eval {
2352 $rule->{logmsg} = "$rule->{action}: ";
2353 if ($direction eq 'OUT') {
2354 rule_substitude_action($rule, { ACCEPT => "PVEFW-SET-ACCEPT-MARK", REJECT => "PVEFW-reject" });
2355 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf, $vmfw_conf, $vmid);
2356 } else {
2357 rule_substitude_action($rule, { ACCEPT => $in_accept , REJECT => "PVEFW-reject" });
2358 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf, $vmfw_conf, $vmid);
2359 }
2360 };
2361 warn $@ if $@;
2362 }
2363 }
2364 }
2365
2366 sub generate_nfqueue {
2367 my ($options) = @_;
2368
2369 if ($options->{ips}) {
2370 my $action = "NFQUEUE";
2371 if ($options->{ips_queues} && $options->{ips_queues} =~ m/^(\d+)(:(\d+))?$/) {
2372 if (defined($3) && defined($1)) {
2373 $action .= " --queue-balance $1:$3";
2374 } elsif (defined($1)) {
2375 $action .= " --queue-num $1";
2376 }
2377 }
2378 $action .= " --queue-bypass" if $feature_ipset_nomatch; #need kernel 3.10
2379 return $action;
2380 } else {
2381 return "ACCEPT";
2382 }
2383 }
2384
2385 sub ruleset_generate_vm_ipsrules {
2386 my ($ruleset, $options, $direction, $iface) = @_;
2387
2388 if ($options->{ips} && $direction eq 'IN') {
2389 my $nfqueue = generate_nfqueue($options);
2390
2391 if (!ruleset_chain_exist($ruleset, "PVEFW-IPS")) {
2392 ruleset_create_chain($ruleset, "PVEFW-IPS");
2393 }
2394
2395 ruleset_addrule($ruleset, "PVEFW-IPS", "-m physdev --physdev-out $iface --physdev-is-bridged", "-j $nfqueue");
2396 }
2397 }
2398
2399 sub generate_tap_rules_direction {
2400 my ($ruleset, $cluster_conf, $iface, $netid, $macaddr, $vmfw_conf, $vmid, $direction, $ipversion) = @_;
2401
2402 my $lc_direction = lc($direction);
2403
2404 my $rules = $vmfw_conf->{rules};
2405
2406 my $options = $vmfw_conf->{options};
2407 my $loglevel = get_option_log_level($options, "log_level_${lc_direction}");
2408
2409 my $tapchain = "$iface-$direction";
2410
2411 my $ipfilter_name = compute_ipfilter_ipset_name($netid);
2412 my $ipfilter_ipset = compute_ipset_chain_name($vmid, $ipfilter_name, $ipversion)
2413 if $options->{ipfilter} || $vmfw_conf->{ipset}->{$ipfilter_name};
2414
2415 if ($options->{enable}) {
2416 # create chain with mac and ip filter
2417 ruleset_create_vm_chain($ruleset, $tapchain, $ipversion, $options, $macaddr, $ipfilter_ipset, $direction);
2418
2419 ruleset_generate_vm_rules($ruleset, $rules, $cluster_conf, $vmfw_conf, $tapchain, $netid, $direction, $options, $ipversion, $vmid);
2420
2421 ruleset_generate_vm_ipsrules($ruleset, $options, $direction, $iface);
2422
2423 # implement policy
2424 my $policy;
2425
2426 if ($direction eq 'OUT') {
2427 $policy = $options->{policy_out} || 'ACCEPT'; # allow everything by default
2428 } else {
2429 $policy = $options->{policy_in} || 'DROP'; # allow nothing by default
2430 }
2431
2432 my $accept = generate_nfqueue($options);
2433 my $accept_action = $direction eq 'OUT' ? "PVEFW-SET-ACCEPT-MARK" : $accept;
2434 ruleset_add_chain_policy($ruleset, $tapchain, $ipversion, $vmid, $policy, $loglevel, $accept_action);
2435 } else {
2436 my $accept_action = $direction eq 'OUT' ? "PVEFW-SET-ACCEPT-MARK" : 'ACCEPT';
2437 ruleset_add_chain_policy($ruleset, $tapchain, $ipversion, $vmid, 'ACCEPT', $loglevel, $accept_action);
2438 }
2439
2440 # plug the tap chain to bridge chain
2441 if ($direction eq 'IN') {
2442 ruleset_addrule($ruleset, "PVEFW-FWBR-IN",
2443 "-m physdev --physdev-is-bridged --physdev-out $iface", "-j $tapchain");
2444 } else {
2445 ruleset_addrule($ruleset, "PVEFW-FWBR-OUT",
2446 "-m physdev --physdev-is-bridged --physdev-in $iface", "-j $tapchain");
2447 }
2448 }
2449
2450 sub enable_host_firewall {
2451 my ($ruleset, $hostfw_conf, $cluster_conf, $ipversion, $corosync_conf) = @_;
2452
2453 my $options = $hostfw_conf->{options};
2454 my $cluster_options = $cluster_conf->{options};
2455 my $rules = $hostfw_conf->{rules};
2456 my $cluster_rules = $cluster_conf->{rules};
2457
2458 # corosync preparation
2459 my $corosync_rule = "-p udp --dport 5404:5405";
2460 my $corosync_local_addresses = {};
2461 my $multicast_enabled;
2462 my $local_hostname = PVE::INotify::nodename();
2463 if (defined($corosync_conf)) {
2464 PVE::Corosync::for_all_corosync_addresses($corosync_conf, $ipversion, sub {
2465 my ($node_name, $node_ip, $node_ipversion, $key) = @_;
2466
2467 if ($node_name eq $local_hostname) {
2468 $corosync_local_addresses->{$key} = $node_ip;
2469 }
2470 });
2471
2472 # allow multicast only if enabled in config
2473 my $corosync_transport = $corosync_conf->{main}->{totem}->{transport};
2474 $multicast_enabled = defined($corosync_transport) && $corosync_transport eq 'udp';
2475 }
2476
2477 # host inbound firewall
2478 my $chain = "PVEFW-HOST-IN";
2479 ruleset_create_chain($ruleset, $chain);
2480
2481 my $loglevel = get_option_log_level($options, "log_level_in");
2482
2483 ruleset_addrule($ruleset, $chain, "-i lo", "-j ACCEPT");
2484
2485 ruleset_chain_add_conn_filters($ruleset, $chain, 0, 'ACCEPT');
2486 ruleset_chain_add_ndp($ruleset, $chain, $ipversion, $options, 'IN', '-j RETURN');
2487 ruleset_chain_add_input_filters($ruleset, $chain, $ipversion, $options, $cluster_conf, $loglevel);
2488
2489 # we use RETURN because we need to check also tap rules
2490 my $accept_action = 'RETURN';
2491
2492 ruleset_addrule($ruleset, $chain, "-p igmp", "-j $accept_action"); # important for multicast
2493
2494 # add host rules first, so that cluster wide rules can be overwritten
2495 foreach my $rule (@$rules, @$cluster_rules) {
2496 next if !$rule->{enable} || $rule->{errors};
2497 next if $rule->{ipversion} && ($rule->{ipversion} != $ipversion);
2498
2499 $rule->{iface_in} = $rule->{iface} if $rule->{iface};
2500
2501 eval {
2502 $rule->{logmsg} = "$rule->{action}: ";
2503 if ($rule->{type} eq 'group') {
2504 ruleset_add_group_rule($ruleset, $cluster_conf, $chain, $rule, 'IN', $accept_action, $ipversion);
2505 } elsif ($rule->{type} eq 'in') {
2506 rule_substitude_action($rule, { ACCEPT => $accept_action, REJECT => "PVEFW-reject" });
2507 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf, $hostfw_conf, 0);
2508 }
2509 };
2510 warn $@ if $@;
2511 delete $rule->{iface_in};
2512 }
2513
2514 # allow standard traffic for management ipset (includes cluster network)
2515 my $mngmnt_ipset_chain = compute_ipset_chain_name(0, "management", $ipversion);
2516 my $mngmntsrc = "-m set --match-set ${mngmnt_ipset_chain} src";
2517 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 8006", "-j $accept_action"); # PVE API
2518 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 5900:5999", "-j $accept_action"); # PVE VNC Console
2519 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 3128", "-j $accept_action"); # SPICE Proxy
2520 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 22", "-j $accept_action"); # SSH
2521 ruleset_addrule($ruleset, $chain, "$mngmntsrc -p tcp --dport 60000:60050", "-j $accept_action"); # Migration
2522
2523 # corosync inbound rules
2524 if (defined($corosync_conf)) {
2525 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST $corosync_rule", "-j $accept_action")
2526 if $multicast_enabled;
2527
2528 PVE::Corosync::for_all_corosync_addresses($corosync_conf, $ipversion, sub {
2529 my ($node_name, $node_ip, $node_ipversion, $key) = @_;
2530 my $destination = $corosync_local_addresses->{$key};
2531
2532 if ($node_name ne $local_hostname && defined($destination)) {
2533 # accept only traffic on same ring
2534 ruleset_addrule($ruleset, $chain, "-d $destination -s $node_ip $corosync_rule", "-j $accept_action");
2535 }
2536 });
2537 }
2538
2539 # implement input policy
2540 my $policy = $cluster_options->{policy_in} || 'DROP'; # allow nothing by default
2541 ruleset_add_chain_policy($ruleset, $chain, $ipversion, 0, $policy, $loglevel, $accept_action);
2542
2543 # host outbound firewall
2544 $chain = "PVEFW-HOST-OUT";
2545 ruleset_create_chain($ruleset, $chain);
2546
2547 $loglevel = get_option_log_level($options, "log_level_out");
2548
2549 ruleset_addrule($ruleset, $chain, "-o lo", "-j ACCEPT");
2550
2551 ruleset_chain_add_conn_filters($ruleset, $chain, 0, 'ACCEPT');
2552
2553 # we use RETURN because we may want to check other thigs later
2554 $accept_action = 'RETURN';
2555 ruleset_chain_add_ndp($ruleset, $chain, $ipversion, $options, 'OUT', "-j $accept_action");
2556
2557 ruleset_addrule($ruleset, $chain, "-p igmp", "-j $accept_action"); # important for multicast
2558
2559 # add host rules first, so that cluster wide rules can be overwritten
2560 foreach my $rule (@$rules, @$cluster_rules) {
2561 next if !$rule->{enable} || $rule->{errors};
2562 next if $rule->{ipversion} && ($rule->{ipversion} != $ipversion);
2563
2564 $rule->{iface_out} = $rule->{iface} if $rule->{iface};
2565 eval {
2566 $rule->{logmsg} = "$rule->{action}: ";
2567 if ($rule->{type} eq 'group') {
2568 ruleset_add_group_rule($ruleset, $cluster_conf, $chain, $rule, 'OUT', $accept_action, $ipversion);
2569 } elsif ($rule->{type} eq 'out') {
2570 rule_substitude_action($rule, { ACCEPT => $accept_action, REJECT => "PVEFW-reject" });
2571 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf, $hostfw_conf, 0);
2572 }
2573 };
2574 warn $@ if $@;
2575 delete $rule->{iface_out};
2576 }
2577
2578 # allow standard traffic on cluster network
2579 my $localnet = $cluster_conf->{aliases}->{local_network}->{cidr};
2580 my $localnet_ver = $cluster_conf->{aliases}->{local_network}->{ipversion};
2581
2582 if ($localnet && ($ipversion == $localnet_ver)) {
2583 ruleset_addrule($ruleset, $chain, "-d $localnet -p tcp --dport 8006", "-j $accept_action"); # PVE API
2584 ruleset_addrule($ruleset, $chain, "-d $localnet -p tcp --dport 22", "-j $accept_action"); # SSH
2585 ruleset_addrule($ruleset, $chain, "-d $localnet -p tcp --dport 5900:5999", "-j $accept_action"); # PVE VNC Console
2586 ruleset_addrule($ruleset, $chain, "-d $localnet -p tcp --dport 3128", "-j $accept_action"); # SPICE Proxy
2587 }
2588
2589 # corosync outbound rules
2590 if (defined($corosync_conf)) {
2591 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST $corosync_rule", "-j $accept_action")
2592 if $multicast_enabled;
2593
2594 PVE::Corosync::for_all_corosync_addresses($corosync_conf, $ipversion, sub {
2595 my ($node_name, $node_ip, $node_ipversion, $key) = @_;
2596 my $source = $corosync_local_addresses->{$key};
2597
2598 if ($node_name ne $local_hostname && defined($source)) {
2599 # accept only traffic on same ring
2600 ruleset_addrule($ruleset, $chain, "-s $source -d $node_ip $corosync_rule", "-j $accept_action");
2601 }
2602 });
2603 }
2604
2605 # implement output policy
2606 $policy = $cluster_options->{policy_out} || 'ACCEPT'; # allow everything by default
2607 ruleset_add_chain_policy($ruleset, $chain, $ipversion, 0, $policy, $loglevel, $accept_action);
2608
2609 ruleset_addrule($ruleset, "PVEFW-OUTPUT", "", "-j PVEFW-HOST-OUT");
2610 ruleset_addrule($ruleset, "PVEFW-INPUT", "", "-j PVEFW-HOST-IN");
2611 }
2612
2613 sub generate_group_rules {
2614 my ($ruleset, $cluster_conf, $group, $ipversion) = @_;
2615
2616 my $rules = $cluster_conf->{groups}->{$group};
2617
2618 if (!$rules) {
2619 warn "no such security group '$group'\n";
2620 $rules = []; # create empty chain
2621 }
2622
2623 my $chain = "GROUP-${group}-IN";
2624
2625 ruleset_create_chain($ruleset, $chain);
2626 ruleset_addrule($ruleset, $chain, "", "-j MARK --set-mark $FWACCEPTMARK_OFF"); # clear mark
2627
2628 foreach my $rule (@$rules) {
2629 next if $rule->{type} ne 'in';
2630 next if !$rule->{enable} || $rule->{errors};
2631 next if $rule->{ipversion} && $rule->{ipversion} ne $ipversion;
2632 rule_substitude_action($rule, { ACCEPT => "PVEFW-SET-ACCEPT-MARK", REJECT => "PVEFW-reject" });
2633 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf);
2634 }
2635
2636 $chain = "GROUP-${group}-OUT";
2637
2638 ruleset_create_chain($ruleset, $chain);
2639 ruleset_addrule($ruleset, $chain, "", "-j MARK --set-mark $FWACCEPTMARK_OFF"); # clear mark
2640
2641 foreach my $rule (@$rules) {
2642 next if $rule->{type} ne 'out';
2643 next if !$rule->{enable} || $rule->{errors};
2644 next if $rule->{ipversion} && $rule->{ipversion} ne $ipversion;
2645 # we use PVEFW-SET-ACCEPT-MARK (Instead of ACCEPT) because we need to
2646 # check also other tap rules later
2647 rule_substitude_action($rule, { ACCEPT => 'PVEFW-SET-ACCEPT-MARK', REJECT => "PVEFW-reject" });
2648 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, $cluster_conf);
2649 }
2650 }
2651
2652 my $MAX_NETS = 32;
2653 my $valid_netdev_names = {};
2654 for (my $i = 0; $i < $MAX_NETS; $i++) {
2655 $valid_netdev_names->{"net$i"} = 1;
2656 }
2657
2658 sub get_mark_values {
2659 my ($value, $mask) = @_;
2660 $value = hex($value) if $value =~ /^0x/;
2661 $mask = hex($mask) if defined($mask) && $mask =~ /^0x/;
2662 $mask = 0xffffffff if !defined($mask);
2663 return ($value, $mask);
2664 }
2665
2666 sub parse_fw_rule {
2667 my ($prefix, $line, $cluster_conf, $fw_conf, $rule_env) = @_;
2668
2669 my $orig_line = $line;
2670
2671 my $rule = {};
2672
2673 # we can add single line comments to the end of the rule
2674 if ($line =~ s/#\s*(.*?)\s*$//) {
2675 $rule->{comment} = decode('utf8', $1);
2676 }
2677
2678 # we can disable a rule when prefixed with '|'
2679
2680 $rule->{enable} = $line =~ s/^\|// ? 0 : 1;
2681
2682 $line =~ s/^(\S+)\s+(\S+)\s*// ||
2683 die "unable to parse rule: $line\n";
2684
2685 $rule->{type} = lc($1);
2686 $rule->{action} = $2;
2687
2688 if ($rule->{type} eq 'in' || $rule->{type} eq 'out') {
2689 if ($rule->{action} =~ m/^(\S+)\((ACCEPT|DROP|REJECT)\)$/) {
2690 $rule->{macro} = $1;
2691 $rule->{action} = $2;
2692 }
2693 }
2694
2695 while (length($line)) {
2696 if ($line =~ s/^-i (\S+)\s*//) {
2697 $rule->{iface} = $1;
2698 next;
2699 }
2700
2701 last if $rule->{type} eq 'group';
2702
2703 if ($line =~ s/^-p (\S+)\s*//) {
2704 $rule->{proto} = $1;
2705 next;
2706 }
2707
2708 if ($line =~ s/^-dport (\S+)\s*//) {
2709 $rule->{dport} = $1;
2710 next;
2711 }
2712
2713 if ($line =~ s/^-sport (\S+)\s*//) {
2714 $rule->{sport} = $1;
2715 next;
2716 }
2717 if ($line =~ s/^-source (\S+)\s*//) {
2718 $rule->{source} = $1;
2719 next;
2720 }
2721 if ($line =~ s/^-dest (\S+)\s*//) {
2722 $rule->{dest} = $1;
2723 next;
2724 }
2725 if ($line =~ s/^-log (emerg|alert|crit|err|warning|notice|info|debug|nolog)\s*//) {
2726 $rule->{log} = $1;
2727 next;
2728 }
2729
2730 last;
2731 }
2732
2733 die "unable to parse rule parameters: $line\n" if length($line);
2734
2735 $rule = verify_rule($rule, $cluster_conf, $fw_conf, $rule_env, 1);
2736 if ($rule->{errors}) {
2737 # The verbose flag really means we're running from the CLI and want
2738 # output on the console - in the other case we really want such errors
2739 # to go into the syslog instead.
2740 my $log = $verbose ? sub { warn @_ } : sub { syslog(err => @_) };
2741 $log->("$prefix - errors in rule parameters: $orig_line\n");
2742 foreach my $p (keys %{$rule->{errors}}) {
2743 $log->(" $p: $rule->{errors}->{$p}\n");
2744 }
2745 }
2746
2747 return $rule;
2748 }
2749
2750 sub verify_ethertype {
2751 my ($value) = @_;
2752 my $types = get_etc_ethertypes();
2753 die "unknown ethernet protocol type: $value\n"
2754 if !defined($types->{byname}->{$value}) &&
2755 !defined($types->{byid}->{$value});
2756 }
2757
2758 sub parse_vmfw_option {
2759 my ($line) = @_;
2760
2761 my ($opt, $value);
2762
2763 my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
2764
2765 if ($line =~ m/^(enable|dhcp|ndp|radv|macfilter|ipfilter|ips):\s*(0|1)\s*$/i) {
2766 $opt = lc($1);
2767 $value = int($2);
2768 } elsif ($line =~ m/^(log_level_in|log_level_out):\s*(($loglevels)\s*)?$/i) {
2769 $opt = lc($1);
2770 $value = $2 ? lc($3) : '';
2771 } elsif ($line =~ m/^(policy_(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
2772 $opt = lc($1);
2773 $value = uc($3);
2774 } elsif ($line =~ m/^(ips_queues):\s*((\d+)(:(\d+))?)\s*$/i) {
2775 $opt = lc($1);
2776 $value = $2;
2777 } elsif ($line =~ m/^(layer2_protocols):\s*(((\S+)[,]?)+)\s*$/i) {
2778 $opt = lc($1);
2779 $value = $2;
2780 verify_ethertype($_) foreach split(/\s*,\s*/, $value);
2781 } else {
2782 die "can't parse option '$line'\n"
2783 }
2784
2785 return ($opt, $value);
2786 }
2787
2788 sub parse_hostfw_option {
2789 my ($line) = @_;
2790
2791 my ($opt, $value);
2792
2793 my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
2794
2795 if ($line =~ m/^(enable|nosmurfs|tcpflags|ndp|log_nf_conntrack|nf_conntrack_allow_invalid|protection_synflood):\s*(0|1)\s*$/i) {
2796 $opt = lc($1);
2797 $value = int($2);
2798 } elsif ($line =~ m/^(log_level_in|log_level_out|tcp_flags_log_level|smurf_log_level):\s*(($loglevels)\s*)?$/i) {
2799 $opt = lc($1);
2800 $value = $2 ? lc($3) : '';
2801 } elsif ($line =~ m/^(nf_conntrack_max|nf_conntrack_tcp_timeout_established|nf_conntrack_tcp_timeout_syn_recv|protection_synflood_rate|protection_synflood_burst|protection_limit):\s*(\d+)\s*$/i) {
2802 $opt = lc($1);
2803 $value = int($2);
2804 } else {
2805 die "can't parse option '$line'\n"
2806 }
2807
2808 return ($opt, $value);
2809 }
2810
2811 sub parse_clusterfw_option {
2812 my ($line) = @_;
2813
2814 my ($opt, $value);
2815
2816 if ($line =~ m/^(enable):\s*(\d+)\s*$/i) {
2817 $opt = lc($1);
2818 $value = int($2);
2819 if (($value > 1) && ((time() - $value) > 60)) {
2820 $value = 0
2821 }
2822 } elsif ($line =~ m/^(ebtables):\s*(0|1)\s*$/i) {
2823 $opt = lc($1);
2824 $value = int($2);
2825 } elsif ($line =~ m/^(policy_(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
2826 $opt = lc($1);
2827 $value = uc($3);
2828 } elsif ($line =~ m/^(log_ratelimit):\s*(\S+)\s*$/) {
2829 $opt = lc($1);
2830 $value = $2;
2831 } else {
2832 die "can't parse option '$line'\n"
2833 }
2834
2835 return ($opt, $value);
2836 }
2837
2838 sub resolve_alias {
2839 my ($clusterfw_conf, $fw_conf, $cidr) = @_;
2840
2841 my $alias = lc($cidr);
2842 my $e = $fw_conf ? $fw_conf->{aliases}->{$alias} : undef;
2843 $e = $clusterfw_conf->{aliases}->{$alias} if !$e && $clusterfw_conf;
2844
2845 die "no such alias '$cidr'\n" if !$e;;
2846
2847 return wantarray ? ($e->{cidr}, $e->{ipversion}) : $e->{cidr};
2848 }
2849
2850 sub parse_ip_or_cidr {
2851 my ($cidr) = @_;
2852
2853 my $ipversion;
2854
2855 if ($cidr =~ m!^(?:$IPV6RE)(/(\d+))?$!) {
2856 $cidr =~ s|/128$||;
2857 $ipversion = 6;
2858 } elsif ($cidr =~ m!^(?:$IPV4RE)(/(\d+))?$!) {
2859 $cidr =~ s|/32$||;
2860 $ipversion = 4;
2861 } else {
2862 die "value does not look like a valid IP address or CIDR network\n";
2863 }
2864
2865 return wantarray ? ($cidr, $ipversion) : $cidr;
2866 }
2867
2868 sub parse_alias {
2869 my ($line) = @_;
2870
2871 # we can add single line comments to the end of the line
2872 my $comment = decode('utf8', $1) if $line =~ s/\s*#\s*(.*?)\s*$//;
2873
2874 if ($line =~ m/^(\S+)\s(\S+)$/) {
2875 my ($name, $cidr) = ($1, $2);
2876 my $ipversion;
2877
2878 ($cidr, $ipversion) = parse_ip_or_cidr($cidr);
2879
2880 my $data = {
2881 name => $name,
2882 cidr => $cidr,
2883 ipversion => $ipversion,
2884 };
2885 $data->{comment} = $comment if $comment;
2886 return $data;
2887 }
2888
2889 return undef;
2890 }
2891
2892 sub generic_fw_config_parser {
2893 my ($filename, $cluster_conf, $empty_conf, $rule_env) = @_;
2894
2895 my $section;
2896 my $group;
2897
2898 my $res = $empty_conf;
2899
2900 my $raw;
2901 if ($filename =~ m!^/etc/pve/(.*)$!) {
2902 $raw = PVE::Cluster::get_config($1);
2903 } else {
2904 $raw = eval { PVE::Tools::file_get_contents($filename) }; # ignore errors
2905 }
2906 return {} if !$raw;
2907
2908 my $curr_group_keys = {};
2909
2910 my $linenr = 0;
2911 while ($raw =~ /^\h*(.*?)\h*$/gm) {
2912 my $line = $1;
2913 $linenr++;
2914 next if $line =~ m/^#/;
2915 next if $line =~ m/^\s*$/;
2916 chomp $line;
2917
2918 my $prefix = "$filename (line $linenr)";
2919
2920 if ($empty_conf->{options} && ($line =~ m/^\[options\]$/i)) {
2921 $section = 'options';
2922 next;
2923 }
2924
2925 if ($empty_conf->{aliases} && ($line =~ m/^\[aliases\]$/i)) {
2926 $section = 'aliases';
2927 next;
2928 }
2929
2930 if ($empty_conf->{groups} && ($line =~ m/^\[group\s+(\S+)\]\s*(?:#\s*(.*?)\s*)?$/i)) {
2931 $section = 'groups';
2932 $group = lc($1);
2933 my $comment = $2;
2934 eval {
2935 die "security group name too long\n" if length($group) > $max_group_name_length;
2936 die "invalid security group name '$group'\n" if $group !~ m/^${security_group_name_pattern}$/;
2937 };
2938 if (my $err = $@) {
2939 ($section, $group, $comment) = undef;
2940 warn "$prefix: $err";
2941 next;
2942 }
2943
2944 $res->{$section}->{$group} = [];
2945 $res->{group_comments}->{$group} = decode('utf8', $comment)
2946 if $comment;
2947 next;
2948 }
2949
2950 if ($empty_conf->{rules} && ($line =~ m/^\[rules\]$/i)) {
2951 $section = 'rules';
2952 next;
2953 }
2954
2955 if ($empty_conf->{ipset} && ($line =~ m/^\[ipset\s+(\S+)\]\s*(?:#\s*(.*?)\s*)?$/i)) {
2956 $section = 'ipset';
2957 $group = lc($1);
2958 my $comment = $2;
2959 eval {
2960 die "ipset name too long\n" if length($group) > $max_ipset_name_length;
2961 die "invalid ipset name '$group'\n" if $group !~ m/^${ipset_name_pattern}$/;
2962 };
2963 if (my $err = $@) {
2964 ($section, $group, $comment) = undef;
2965 warn "$prefix: $err";
2966 next;
2967 }
2968
2969 $res->{$section}->{$group} = [];
2970 $curr_group_keys = {};
2971
2972 $res->{ipset_comments}->{$group} = decode('utf8', $comment)
2973 if $comment;
2974 next;
2975 }
2976
2977 if (!$section) {
2978 warn "$prefix: skip line - no section\n";
2979 next;
2980 }
2981
2982 if ($section eq 'options') {
2983 eval {
2984 my ($opt, $value);
2985 if ($rule_env eq 'cluster') {
2986 ($opt, $value) = parse_clusterfw_option($line);
2987 } elsif ($rule_env eq 'host') {
2988 ($opt, $value) = parse_hostfw_option($line);
2989 } else {
2990 ($opt, $value) = parse_vmfw_option($line);
2991 }
2992 $res->{options}->{$opt} = $value;
2993 };
2994 warn "$prefix: $@" if $@;
2995 } elsif ($section eq 'aliases') {
2996 eval {
2997 my $data = parse_alias($line);
2998 $res->{aliases}->{lc($data->{name})} = $data;
2999 };
3000 warn "$prefix: $@" if $@;
3001 } elsif ($section eq 'rules') {
3002 my $rule;
3003 eval { $rule = parse_fw_rule($prefix, $line, $cluster_conf, $res, $rule_env); };
3004 if (my $err = $@) {
3005 warn "$prefix: $err";
3006 next;
3007 }
3008 push @{$res->{$section}}, $rule;
3009 } elsif ($section eq 'groups') {
3010 my $rule;
3011 eval { $rule = parse_fw_rule($prefix, $line, $cluster_conf, undef, 'group'); };
3012 if (my $err = $@) {
3013 warn "$prefix: $err";
3014 next;
3015 }
3016 push @{$res->{$section}->{$group}}, $rule;
3017 } elsif ($section eq 'ipset') {
3018 # we can add single line comments to the end of the rule
3019 my $comment = decode('utf8', $1) if $line =~ s/#\s*(.*?)\s*$//;
3020
3021 $line =~ m/^(\!)?\s*(\S+)\s*$/;
3022 my $nomatch = $1;
3023 my $cidr = $2;
3024 my $errors;
3025
3026 if ($nomatch && !$feature_ipset_nomatch) {
3027 $errors->{nomatch} = "nomatch not supported by kernel";
3028 }
3029
3030 eval {
3031 if ($cidr =~ m/^${ip_alias_pattern}$/) {
3032 resolve_alias($cluster_conf, $res, $cidr); # make sure alias exists
3033 } else {
3034 $cidr = parse_ip_or_cidr($cidr);
3035 }
3036 die "duplicate ipset entry for '$cidr'\n"
3037 if defined($curr_group_keys->{$cidr});
3038 };
3039 if (my $err = $@) {
3040 chomp $err;
3041 $errors->{cidr} = $err;
3042 }
3043
3044 if ($cidr =~ m!/0+$!) {
3045 $errors->{cidr} = "a zero prefix is not allowed in ipset entries\n";
3046 }
3047
3048 my $entry = { cidr => $cidr };
3049 $entry->{nomatch} = 1 if $nomatch;
3050 $entry->{comment} = $comment if $comment;
3051 $entry->{errors} = $errors if $errors;
3052
3053 if ($verbose && $errors) {
3054 warn "$prefix - errors in ipset '$group': $line\n";
3055 foreach my $p (keys %{$errors}) {
3056 warn " $p: $errors->{$p}\n";
3057 }
3058 }
3059
3060 push @{$res->{$section}->{$group}}, $entry;
3061 $curr_group_keys->{$cidr} = 1;
3062 } else {
3063 warn "$prefix: skip line - unknown section\n";
3064 next;
3065 }
3066 }
3067
3068 return $res;
3069 }
3070
3071 # this is only used to prevent concurrent runs of rule compilation/application
3072 # see lock_*_conf for cfs locks protectiong config modification
3073 sub run_locked {
3074 my ($code, @param) = @_;
3075
3076 my $timeout = 10;
3077
3078 my $res = lock_file($pve_fw_lock_filename, $timeout, $code, @param);
3079
3080 die $@ if $@;
3081
3082 return $res;
3083 }
3084
3085 sub read_local_vm_config {
3086
3087 my $qemu = {};
3088 my $lxc = {};
3089
3090 my $vmdata = { qemu => $qemu, lxc => $lxc };
3091
3092 my $vmlist = PVE::Cluster::get_vmlist();
3093 return $vmdata if !$vmlist || !$vmlist->{ids};
3094 my $ids = $vmlist->{ids};
3095
3096 foreach my $vmid (keys %$ids) {
3097 next if !$vmid; # skip VE0
3098 my $d = $ids->{$vmid};
3099 next if !$d->{node} || $d->{node} ne $nodename;
3100 next if !$d->{type};
3101 if ($d->{type} eq 'qemu') {
3102 if ($have_qemu_server) {
3103 my $cfspath = PVE::QemuConfig->cfs_config_path($vmid);
3104 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
3105 $qemu->{$vmid} = $conf;
3106 }
3107 }
3108 } elsif ($d->{type} eq 'lxc') {
3109 if ($have_lxc) {
3110 my $cfspath = PVE::LXC::Config->cfs_config_path($vmid);
3111 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
3112 $lxc->{$vmid} = $conf;
3113 }
3114 }
3115 }
3116 }
3117
3118 return $vmdata;
3119 };
3120
3121 sub lock_vmfw_conf {
3122 my ($vmid, $timeout, $code, @param) = @_;
3123
3124 die "can't lock VM firewall config for undefined VMID\n"
3125 if !defined($vmid);
3126
3127 my $res = PVE::Cluster::cfs_lock_firewall("vm-$vmid", $timeout, $code, @param);
3128 die $@ if $@;
3129
3130 return $res;
3131 }
3132
3133 sub load_vmfw_conf {
3134 my ($cluster_conf, $rule_env, $vmid, $dir) = @_;
3135
3136 $dir = $pvefw_conf_dir if !defined($dir);
3137 my $filename = "$dir/$vmid.fw";
3138
3139 my $empty_conf = {
3140 rules => [],
3141 options => {},
3142 aliases => {},
3143 ipset => {} ,
3144 ipset_comments => {},
3145 };
3146
3147 my $vmfw_conf = generic_fw_config_parser($filename, $cluster_conf, $empty_conf, $rule_env);
3148 $vmfw_conf->{vmid} = $vmid;
3149
3150 return $vmfw_conf;
3151 }
3152
3153 my $format_rules = sub {
3154 my ($rules, $allow_iface) = @_;
3155
3156 my $raw = '';
3157
3158 foreach my $rule (@$rules) {
3159 if ($rule->{type} eq 'in' || $rule->{type} eq 'out' || $rule->{type} eq 'group') {
3160 $raw .= '|' if defined($rule->{enable}) && !$rule->{enable};
3161 $raw .= uc($rule->{type});
3162 if ($rule->{macro}) {
3163 $raw .= " $rule->{macro}($rule->{action})";
3164 } else {
3165 $raw .= " " . $rule->{action};
3166 }
3167 if ($allow_iface && $rule->{iface}) {
3168 $raw .= " -i $rule->{iface}";
3169 }
3170
3171 if ($rule->{type} ne 'group') {
3172 $raw .= " -source $rule->{source}" if $rule->{source};
3173 $raw .= " -dest $rule->{dest}" if $rule->{dest};
3174 $raw .= " -p $rule->{proto}" if $rule->{proto};
3175 $raw .= " -dport $rule->{dport}" if $rule->{dport};
3176 $raw .= " -sport $rule->{sport}" if $rule->{sport};
3177 $raw .= " -log $rule->{log}" if $rule->{log};
3178 }
3179
3180 $raw .= " # " . encode('utf8', $rule->{comment})
3181 if $rule->{comment} && $rule->{comment} !~ m/^\s*$/;
3182 $raw .= "\n";
3183 } else {
3184 die "unknown rule type '$rule->{type}'";
3185 }
3186 }
3187
3188 return $raw;
3189 };
3190
3191 my $format_options = sub {
3192 my ($options) = @_;
3193
3194 my $raw = '';
3195
3196 $raw .= "[OPTIONS]\n\n";
3197 foreach my $opt (keys %$options) {
3198 $raw .= "$opt: $options->{$opt}\n";
3199 }
3200 $raw .= "\n";
3201
3202 return $raw;
3203 };
3204
3205 my $format_aliases = sub {
3206 my ($aliases) = @_;
3207
3208 my $raw = '';
3209
3210 $raw .= "[ALIASES]\n\n";
3211 foreach my $k (keys %$aliases) {
3212 my $e = $aliases->{$k};
3213 $raw .= "$e->{name} $e->{cidr}";
3214 $raw .= " # " . encode('utf8', $e->{comment})
3215 if $e->{comment} && $e->{comment} !~ m/^\s*$/;
3216 $raw .= "\n";
3217 }
3218 $raw .= "\n";
3219
3220 return $raw;
3221 };
3222
3223 my $format_ipsets = sub {
3224 my ($fw_conf) = @_;
3225
3226 my $raw = '';
3227
3228 foreach my $ipset (sort keys %{$fw_conf->{ipset}}) {
3229 if (my $comment = $fw_conf->{ipset_comments}->{$ipset}) {
3230 my $utf8comment = encode('utf8', $comment);
3231 $raw .= "[IPSET $ipset] # $utf8comment\n\n";
3232 } else {
3233 $raw .= "[IPSET $ipset]\n\n";
3234 }
3235 my $options = $fw_conf->{ipset}->{$ipset};
3236
3237 my $nethash = {};
3238 foreach my $entry (@$options) {
3239 my $cidr = $entry->{cidr};
3240 if (defined($nethash->{$cidr})) {
3241 warn "ignoring duplicate ipset entry '$cidr'\n";
3242 next;
3243 }
3244
3245 $nethash->{$cidr} = $entry;
3246 }
3247
3248 foreach my $cidr (sort keys %$nethash) {
3249 my $entry = $nethash->{$cidr};
3250 my $line = $entry->{nomatch} ? '!' : '';
3251 $line .= $entry->{cidr};
3252 $line .= " # " . encode('utf8', $entry->{comment})
3253 if $entry->{comment} && $entry->{comment} !~ m/^\s*$/;
3254 $raw .= "$line\n";
3255 }
3256
3257 $raw .= "\n";
3258 }
3259
3260 return $raw;
3261 };
3262
3263 sub save_vmfw_conf {
3264 my ($vmid, $vmfw_conf) = @_;
3265
3266 my $raw = '';
3267
3268 my $options = $vmfw_conf->{options};
3269 $raw .= &$format_options($options) if $options && scalar(keys %$options);
3270
3271 my $aliases = $vmfw_conf->{aliases};
3272 $raw .= &$format_aliases($aliases) if $aliases && scalar(keys %$aliases);
3273
3274 $raw .= &$format_ipsets($vmfw_conf) if $vmfw_conf->{ipset};
3275
3276 my $rules = $vmfw_conf->{rules} || [];
3277 if ($rules && scalar(@$rules)) {
3278 $raw .= "[RULES]\n\n";
3279 $raw .= &$format_rules($rules, 1);
3280 $raw .= "\n";
3281 }
3282
3283 my $filename = "$pvefw_conf_dir/$vmid.fw";
3284 if ($raw) {
3285 mkdir $pvefw_conf_dir;
3286 PVE::Tools::file_set_contents($filename, $raw);
3287 } else {
3288 unlink $filename;
3289 }
3290 }
3291
3292 sub remove_vmfw_conf {
3293 my ($vmid) = @_;
3294
3295 my $vmfw_conffile = "$pvefw_conf_dir/$vmid.fw";
3296
3297 unlink $vmfw_conffile;
3298 }
3299
3300 sub clone_vmfw_conf {
3301 my ($vmid, $newid) = @_;
3302
3303 my $sourcevm_conffile = "$pvefw_conf_dir/$vmid.fw";
3304 my $clonevm_conffile = "$pvefw_conf_dir/$newid.fw";
3305
3306 lock_vmfw_conf($newid, 10, sub {
3307 if (-f $clonevm_conffile) {
3308 unlink $clonevm_conffile;
3309 }
3310 if (-f $sourcevm_conffile) {
3311 my $data = PVE::Tools::file_get_contents($sourcevm_conffile);
3312 PVE::Tools::file_set_contents($clonevm_conffile, $data);
3313 }
3314 });
3315 }
3316
3317 sub read_vm_firewall_configs {
3318 my ($cluster_conf, $vmdata, $dir) = @_;
3319
3320 my $vmfw_configs = {};
3321
3322 foreach my $vmid (keys %{$vmdata->{qemu}}) {
3323 my $vmfw_conf = load_vmfw_conf($cluster_conf, 'vm', $vmid, $dir);
3324 next if !$vmfw_conf->{options}; # skip if file does not exist
3325 $vmfw_configs->{$vmid} = $vmfw_conf;
3326 }
3327 foreach my $vmid (keys %{$vmdata->{lxc}}) {
3328 my $vmfw_conf = load_vmfw_conf($cluster_conf, 'ct', $vmid, $dir);
3329 next if !$vmfw_conf->{options}; # skip if file does not exist
3330 $vmfw_configs->{$vmid} = $vmfw_conf;
3331 }
3332
3333 return $vmfw_configs;
3334 }
3335
3336 sub get_option_log_level {
3337 my ($options, $k) = @_;
3338
3339 my $v = $options->{$k};
3340 $v = $default_log_level if !defined($v);
3341
3342 return undef if $v eq '' || $v eq 'nolog';
3343
3344 return $v if defined($log_level_hash->{$v});
3345
3346 warn "unknown log level ($k = '$v')\n";
3347
3348 return undef;
3349 }
3350
3351 sub generate_std_chains {
3352 my ($ruleset, $options, $ipversion) = @_;
3353
3354 my $std_chains = $pve_std_chains->{$ipversion} || die "internal error";
3355
3356 my $loglevel = get_option_log_level($options, 'smurf_log_level');
3357 my $chain = 'PVEFW-smurflog';
3358 if ( $std_chains->{$chain} ) {
3359 foreach my $r (@{$std_chains->{$chain}}) {
3360 $r->{log} = $loglevel;
3361 }
3362 }
3363
3364 # same as shorewall logflags action.
3365 $loglevel = get_option_log_level($options, 'tcp_flags_log_level');
3366 $chain = 'PVEFW-logflags';
3367 if ( $std_chains->{$chain} ) {
3368 foreach my $r (@{$std_chains->{$chain}}) {
3369 $r->{log} = $loglevel;
3370 }
3371 }
3372
3373 foreach my $chain (keys %$std_chains) {
3374 ruleset_create_chain($ruleset, $chain);
3375 foreach my $rule (@{$std_chains->{$chain}}) {
3376 if (ref($rule)) {
3377 ruleset_generate_rule($ruleset, $chain, $ipversion, $rule, 0);
3378 } else {
3379 die "rule $rule as string - should not happen";
3380 }
3381 }
3382 }
3383 }
3384
3385 sub generate_ipset_chains {
3386 my ($ipset_ruleset, $clusterfw_conf, $fw_conf, $device_ips, $ipsets) = @_;
3387
3388 foreach my $ipset (keys %{$ipsets}) {
3389
3390 my $options = $ipsets->{$ipset};
3391
3392 if ($device_ips && $ipset =~ /^ipfilter-(net\d+)$/) {
3393 if (my $ips = $device_ips->{$1}) {
3394 $options = [@$options, @$ips];
3395 }
3396 }
3397
3398 # remove duplicates
3399 my $nethash = {};
3400 foreach my $entry (@$options) {
3401 next if $entry->{errors}; # skip entries with errors
3402 eval {
3403 my ($cidr, $ver);
3404 if ($entry->{cidr} =~ m/^${ip_alias_pattern}$/) {
3405 ($cidr, $ver) = resolve_alias($clusterfw_conf, $fw_conf, $entry->{cidr});
3406 } else {
3407 ($cidr, $ver) = parse_ip_or_cidr($entry->{cidr});
3408 }
3409 #http://backreference.org/2013/03/01/ipv6-address-normalization/
3410 if ($ver == 6) {
3411 # ip_compress_address takes an address only, no CIDR
3412 my ($addr, $prefix_len) = ($cidr =~ m@^([^/]*)(/.*)?$@);
3413 $cidr = lc(Net::IP::ip_compress_address($addr, 6));
3414 $cidr .= $prefix_len if defined($prefix_len);
3415 $cidr =~ s|/128$||;
3416 } else {
3417 $cidr =~ s|/32$||;
3418 }
3419
3420 $nethash->{$ver}->{$cidr} = { cidr => $cidr, nomatch => $entry->{nomatch} };
3421 };
3422 warn $@ if $@;
3423 }
3424
3425 foreach my $ipversion (4, 6) {
3426 my $data = $nethash->{$ipversion};
3427
3428 my $name = compute_ipset_chain_name($fw_conf->{vmid}, $ipset, $ipversion);
3429
3430 my $hashsize = scalar(@$options);
3431 if ($hashsize <= 64) {
3432 $hashsize = 64;
3433 } else {
3434 $hashsize = round_powerof2($hashsize);
3435 }
3436
3437 my $family = $ipversion == "6" ? "inet6" : "inet";
3438
3439 $ipset_ruleset->{$name} = ["create $name hash:net family $family hashsize $hashsize maxelem $hashsize"];
3440
3441 foreach my $cidr (sort keys %$data) {
3442 my $entry = $data->{$cidr};
3443
3444 my $cmd = "add $name $cidr";
3445 if ($entry->{nomatch}) {
3446 if ($feature_ipset_nomatch) {
3447 push @{$ipset_ruleset->{$name}}, "$cmd nomatch";
3448 } else {
3449 warn "ignore !$cidr - nomatch not supported by kernel\n";
3450 }
3451 } else {
3452 push @{$ipset_ruleset->{$name}}, $cmd;
3453 }
3454 }
3455 }
3456 }
3457 }
3458
3459 sub round_powerof2 {
3460 my ($int) = @_;
3461
3462 $int--;
3463 $int |= $int >> $_ foreach (1,2,4,8,16);
3464 return ++$int;
3465 }
3466
3467 my $set_global_log_ratelimit = sub {
3468 my $cluster_opts = shift;
3469
3470 $global_log_ratelimit = '--limit 1/sec';
3471 if (defined(my $log_rlimit = $cluster_opts->{log_ratelimit})) {
3472 my $ll_format = $cluster_option_properties->{log_ratelimit}->{format};
3473 my $limit = PVE::JSONSchema::parse_property_string($ll_format, $log_rlimit);
3474
3475 if ($limit->{enable}) {
3476 if (my $rate = $limit->{rate}) {
3477 $global_log_ratelimit = "--limit $rate";
3478 }
3479 if (my $burst = $limit->{burst}) {
3480 $global_log_ratelimit .= " --limit-burst $burst";
3481 }
3482 } else {
3483 $global_log_ratelimit = undef;
3484 }
3485 }
3486 };
3487
3488 sub lock_clusterfw_conf {
3489 my ($timeout, $code, @param) = @_;
3490
3491 my $res = PVE::Cluster::cfs_lock_firewall("cluster", $timeout, $code, @param);
3492 die $@ if $@;
3493
3494 return $res;
3495 }
3496
3497 sub load_clusterfw_conf {
3498 my ($filename) = @_;
3499
3500 $filename = $clusterfw_conf_filename if !defined($filename);
3501 my $empty_conf = {
3502 rules => [],
3503 options => {},
3504 aliases => {},
3505 groups => {},
3506 group_comments => {},
3507 ipset => {} ,
3508 ipset_comments => {},
3509 };
3510
3511 my $cluster_conf = generic_fw_config_parser($filename, $empty_conf, $empty_conf, 'cluster');
3512 $set_global_log_ratelimit->($cluster_conf->{options});
3513
3514 return $cluster_conf;
3515 }
3516
3517 sub save_clusterfw_conf {
3518 my ($cluster_conf) = @_;
3519
3520 my $raw = '';
3521
3522 my $options = $cluster_conf->{options};
3523 $raw .= &$format_options($options) if $options && scalar(keys %$options);
3524
3525 my $aliases = $cluster_conf->{aliases};
3526 $raw .= &$format_aliases($aliases) if $aliases && scalar(keys %$aliases);
3527
3528 $raw .= &$format_ipsets($cluster_conf) if $cluster_conf->{ipset};
3529
3530 my $rules = $cluster_conf->{rules};
3531 if ($rules && scalar(@$rules)) {
3532 $raw .= "[RULES]\n\n";
3533 $raw .= &$format_rules($rules, 1);
3534 $raw .= "\n";
3535 }
3536
3537 if ($cluster_conf->{groups}) {
3538 foreach my $group (sort keys %{$cluster_conf->{groups}}) {
3539 my $rules = $cluster_conf->{groups}->{$group};
3540 if (my $comment = $cluster_conf->{group_comments}->{$group}) {
3541 my $utf8comment = encode('utf8', $comment);
3542 $raw .= "[group $group] # $utf8comment\n\n";
3543 } else {
3544 $raw .= "[group $group]\n\n";
3545 }
3546
3547 $raw .= &$format_rules($rules, 0);
3548 $raw .= "\n";
3549 }
3550 }
3551
3552 if ($raw) {
3553 mkdir $pvefw_conf_dir;
3554 PVE::Tools::file_set_contents($clusterfw_conf_filename, $raw);
3555 } else {
3556 unlink $clusterfw_conf_filename;
3557 }
3558 }
3559
3560 sub lock_hostfw_conf {
3561 my ($timeout, $code, @param) = @_;
3562
3563 my $res = PVE::Cluster::cfs_lock_firewall("host-$nodename", $timeout, $code, @param);
3564 die $@ if $@;
3565
3566 return $res;
3567 }
3568
3569 sub load_hostfw_conf {
3570 my ($cluster_conf, $filename) = @_;
3571
3572 $filename = $hostfw_conf_filename if !defined($filename);
3573
3574 my $empty_conf = { rules => [], options => {}};
3575 return generic_fw_config_parser($filename, $cluster_conf, $empty_conf, 'host');
3576 }
3577
3578 sub save_hostfw_conf {
3579 my ($hostfw_conf) = @_;
3580
3581 my $raw = '';
3582
3583 my $options = $hostfw_conf->{options};
3584 $raw .= &$format_options($options) if $options && scalar(keys %$options);
3585
3586 my $rules = $hostfw_conf->{rules};
3587 if ($rules && scalar(@$rules)) {
3588 $raw .= "[RULES]\n\n";
3589 $raw .= &$format_rules($rules, 1);
3590 $raw .= "\n";
3591 }
3592
3593 if ($raw) {
3594 PVE::Tools::file_set_contents($hostfw_conf_filename, $raw);
3595 } else {
3596 unlink $hostfw_conf_filename;
3597 }
3598 }
3599
3600 sub compile {
3601 my ($cluster_conf, $hostfw_conf, $vmdata, $corosync_conf) = @_;
3602
3603 my $vmfw_configs;
3604
3605 # fixme: once we read standard chains from config this needs to be put in test/standard cases below
3606 $pve_std_chains = dclone($pve_std_chains_conf);
3607
3608 if ($vmdata) { # test mode
3609 my $testdir = $vmdata->{testdir} || die "no test directory specified";
3610 my $filename = "$testdir/cluster.fw";
3611 $cluster_conf = load_clusterfw_conf($filename);
3612
3613 $filename = "$testdir/host.fw";
3614 $hostfw_conf = load_hostfw_conf($cluster_conf, $filename);
3615
3616 $vmfw_configs = read_vm_firewall_configs($cluster_conf, $vmdata, $testdir);
3617 } else { # normal operation
3618 $cluster_conf = load_clusterfw_conf(undef) if !$cluster_conf;
3619
3620 $hostfw_conf = load_hostfw_conf($cluster_conf, undef) if !$hostfw_conf;
3621
3622 # cfs_update is handled by daemon or API
3623 $corosync_conf = PVE::Cluster::cfs_read_file("corosync.conf")
3624 if !defined($corosync_conf) && PVE::Corosync::check_conf_exists(1);
3625
3626 $vmdata = read_local_vm_config();
3627 $vmfw_configs = read_vm_firewall_configs($cluster_conf, $vmdata, undef);
3628 }
3629
3630 return ({},{},{},{}) if !$cluster_conf->{options}->{enable};
3631
3632 my $localnet;
3633 if ($cluster_conf->{aliases}->{local_network}) {
3634 $localnet = $cluster_conf->{aliases}->{local_network}->{cidr};
3635 } else {
3636 my $localnet_ver;
3637 ($localnet, $localnet_ver) = parse_ip_or_cidr(local_network() || '127.0.0.0/8');
3638
3639 $cluster_conf->{aliases}->{local_network} = {
3640 name => 'local_network', cidr => $localnet, ipversion => $localnet_ver };
3641 }
3642
3643 push @{$cluster_conf->{ipset}->{management}}, { cidr => $localnet };
3644
3645 my $ruleset = {};
3646 my $rulesetv6 = {};
3647 $ruleset->{filter} = compile_iptables_filter($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $corosync_conf, 4);
3648 $ruleset->{raw} = compile_iptables_raw($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $corosync_conf, 4);
3649 $rulesetv6->{filter} = compile_iptables_filter($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $corosync_conf, 6);
3650 $rulesetv6->{raw} = compile_iptables_raw($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $corosync_conf, 6);
3651 my $ebtables_ruleset = compile_ebtables_filter($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata);
3652 my $ipset_ruleset = compile_ipsets($cluster_conf, $vmfw_configs, $vmdata);
3653
3654 return ($ruleset, $ipset_ruleset, $rulesetv6, $ebtables_ruleset);
3655 }
3656
3657 sub compile_iptables_raw {
3658 my ($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $corosync_conf, $ipversion) = @_;
3659
3660 my $ruleset = {};
3661
3662 my $hostfw_options = $hostfw_conf->{options} || {};
3663 my $protection_synflood = $hostfw_options->{protection_synflood} || 0;
3664
3665 if($protection_synflood) {
3666
3667 my $protection_synflood_rate = $hostfw_options->{protection_synflood_rate} ? $hostfw_options->{protection_synflood_rate} : 200;
3668 my $protection_synflood_burst = $hostfw_options->{protection_synflood_burst} ? $hostfw_options->{protection_synflood_burst} : 1000;
3669 my $protection_synflood_limit = $hostfw_options->{protection_synflood_limit} ? $hostfw_options->{protection_synflood_limit} : 3000;
3670 my $protection_synflood_expire = $hostfw_options->{nf_conntrack_tcp_timeout_syn_recv} ? $hostfw_options->{nf_conntrack_tcp_timeout_syn_recv} : 60;
3671 $protection_synflood_expire = $protection_synflood_expire * 1000;
3672 my $protection_synflood_mask = $ipversion == 4 ? 32 : 64;
3673
3674 ruleset_create_chain($ruleset, "PVEFW-PREROUTING");
3675 ruleset_addrule($ruleset, "PVEFW-PREROUTING", "-p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -m hashlimit --hashlimit-above $protection_synflood_rate/sec --hashlimit-burst $protection_synflood_burst --hashlimit-mode srcip --hashlimit-name syn --hashlimit-htable-size 2097152 --hashlimit-srcmask $protection_synflood_mask --hashlimit-htable-expire $protection_synflood_expire", "-j DROP");
3676 }
3677
3678 return $ruleset;
3679 }
3680
3681 sub compile_iptables_filter {
3682 my ($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata, $corosync_conf, $ipversion) = @_;
3683
3684 my $ruleset = {};
3685
3686 ruleset_create_chain($ruleset, "PVEFW-INPUT");
3687 ruleset_create_chain($ruleset, "PVEFW-OUTPUT");
3688
3689 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
3690
3691 my $hostfw_options = $hostfw_conf->{options} || {};
3692
3693 # fixme: what log level should we use here?
3694 my $loglevel = get_option_log_level($hostfw_options, "log_level_out");
3695
3696 my $conn_allow_invalid = $hostfw_options->{nf_conntrack_allow_invalid} // 0;
3697 ruleset_chain_add_conn_filters($ruleset, "PVEFW-FORWARD", $conn_allow_invalid, "ACCEPT");
3698
3699 ruleset_create_chain($ruleset, "PVEFW-FWBR-IN");
3700 ruleset_chain_add_input_filters($ruleset, "PVEFW-FWBR-IN", $ipversion, $hostfw_options, $cluster_conf, $loglevel);
3701
3702 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-m physdev --physdev-is-bridged --physdev-in fwln+", "-j PVEFW-FWBR-IN");
3703
3704 ruleset_create_chain($ruleset, "PVEFW-FWBR-OUT");
3705 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-m physdev --physdev-is-bridged --physdev-out fwln+", "-j PVEFW-FWBR-OUT");
3706
3707 generate_std_chains($ruleset, $hostfw_options, $ipversion);
3708
3709 my $hostfw_enable = !(defined($hostfw_options->{enable}) && ($hostfw_options->{enable} == 0));
3710
3711 if ($hostfw_enable) {
3712 eval { enable_host_firewall($ruleset, $hostfw_conf, $cluster_conf, $ipversion, $corosync_conf); };
3713 warn $@ if $@; # just to be sure - should not happen
3714 }
3715
3716 # generate firewall rules for QEMU VMs
3717 foreach my $vmid (sort keys %{$vmdata->{qemu}}) {
3718 eval {
3719 my $conf = $vmdata->{qemu}->{$vmid};
3720 my $vmfw_conf = $vmfw_configs->{$vmid};
3721 return if !$vmfw_conf || !$vmfw_conf->{options}->{enable};
3722
3723 foreach my $netid (sort keys %$conf) {
3724 next if $netid !~ m/^net(\d+)$/;
3725 my $net = PVE::QemuServer::parse_net($conf->{$netid});
3726 next if !$net->{firewall};
3727
3728 my $iface = "tap${vmid}i$1";
3729 my $macaddr = $net->{macaddr};
3730 generate_tap_rules_direction($ruleset, $cluster_conf, $iface, $netid, $macaddr,
3731 $vmfw_conf, $vmid, 'IN', $ipversion);
3732 generate_tap_rules_direction($ruleset, $cluster_conf, $iface, $netid, $macaddr,
3733 $vmfw_conf, $vmid, 'OUT', $ipversion);
3734 }
3735 };
3736 warn $@ if $@; # just to be sure - should not happen
3737 }
3738
3739 # generate firewall rules for LXC containers
3740 foreach my $vmid (sort keys %{$vmdata->{lxc}}) {
3741 eval {
3742 my $conf = $vmdata->{lxc}->{$vmid};
3743 my $vmfw_conf = $vmfw_configs->{$vmid};
3744 return if !$vmfw_conf || !$vmfw_conf->{options}->{enable};
3745
3746 foreach my $netid (sort keys %$conf) {
3747 next if $netid !~ m/^net(\d+)$/;
3748 my $net = PVE::LXC::Config->parse_lxc_network($conf->{$netid});
3749 next if !$net->{firewall};
3750
3751 my $iface = "veth${vmid}i$1";
3752 my $macaddr = $net->{hwaddr};
3753 generate_tap_rules_direction($ruleset, $cluster_conf, $iface, $netid, $macaddr,
3754 $vmfw_conf, $vmid, 'IN', $ipversion);
3755 generate_tap_rules_direction($ruleset, $cluster_conf, $iface, $netid, $macaddr,
3756 $vmfw_conf, $vmid, 'OUT', $ipversion);
3757 }
3758 };
3759 warn $@ if $@; # just to be sure - should not happen
3760 }
3761
3762 if (ruleset_chain_exist($ruleset, "PVEFW-IPS")){
3763 ruleset_insertrule($ruleset, "PVEFW-FORWARD", "-m conntrack --ctstate RELATED,ESTABLISHED", "-j PVEFW-IPS");
3764 }
3765
3766 return $ruleset;
3767 }
3768
3769 sub mac_to_linklocal {
3770 my ($macaddr) = @_;
3771 my @parts = split(/:/, $macaddr);
3772 # The standard link local address uses the fe80::/64 prefix with the
3773 # modified EUI-64 identifier derived from the MAC address by flipping the
3774 # universal/local bit and inserting FF:FE in the middle.
3775 # See RFC 4291.
3776 $parts[0] = sprintf("%02x", hex($parts[0]) ^ 0x02);
3777 my @meui64 = (@parts[0,1,2], 'ff', 'fe', @parts[3,4,5]);
3778 return "fe80::$parts[0]$parts[1]:$parts[2]FF:FE$parts[3]:$parts[4]$parts[5]";
3779 }
3780
3781 sub compile_ipsets {
3782 my ($cluster_conf, $vmfw_configs, $vmdata) = @_;
3783
3784 my $localnet;
3785 if ($cluster_conf->{aliases}->{local_network}) {
3786 $localnet = $cluster_conf->{aliases}->{local_network}->{cidr};
3787 } else {
3788 my $localnet_ver;
3789 ($localnet, $localnet_ver) = parse_ip_or_cidr(local_network() || '127.0.0.0/8');
3790
3791 $cluster_conf->{aliases}->{local_network} = {
3792 name => 'local_network', cidr => $localnet, ipversion => $localnet_ver };
3793 }
3794
3795 push @{$cluster_conf->{ipset}->{management}}, { cidr => $localnet };
3796
3797
3798 my $ipset_ruleset = {};
3799
3800 # generate ipsets for QEMU VMs
3801 foreach my $vmid (keys %{$vmdata->{qemu}}) {
3802 eval {
3803 my $conf = $vmdata->{qemu}->{$vmid};
3804 my $vmfw_conf = $vmfw_configs->{$vmid};
3805 return if !$vmfw_conf;
3806
3807 # When the 'ipfilter' option is enabled every device for which there
3808 # is no 'ipfilter-netX' ipset defiend gets an implicit empty default
3809 # ipset.
3810 # The reason is that ipfilter ipsets are always filled with standard
3811 # IPv6 link-local filters.
3812 my $ipsets = $vmfw_conf->{ipset};
3813 my $implicit_sets = {};
3814
3815 my $device_ips = {};
3816 foreach my $netid (keys %$conf) {
3817 next if $netid !~ m/^net(\d+)$/;
3818 my $net = PVE::QemuServer::parse_net($conf->{$netid});
3819 next if !$net->{firewall};
3820
3821 if ($vmfw_conf->{options}->{ipfilter} && !$ipsets->{"ipfilter-$netid"}) {
3822 $implicit_sets->{"ipfilter-$netid"} = [];
3823 }
3824
3825 my $macaddr = $net->{macaddr};
3826 my $linklocal = mac_to_linklocal($macaddr);
3827 $device_ips->{$netid} = [
3828 { cidr => $linklocal },
3829 { cidr => 'fe80::/10', nomatch => 1 }
3830 ];
3831 }
3832
3833 generate_ipset_chains($ipset_ruleset, $cluster_conf, $vmfw_conf, $device_ips, $ipsets);
3834 generate_ipset_chains($ipset_ruleset, $cluster_conf, $vmfw_conf, $device_ips, $implicit_sets);
3835 };
3836 warn $@ if $@; # just to be sure - should not happen
3837 }
3838
3839 # generate firewall rules for LXC containers
3840 foreach my $vmid (keys %{$vmdata->{lxc}}) {
3841 eval {
3842 my $conf = $vmdata->{lxc}->{$vmid};
3843 my $vmfw_conf = $vmfw_configs->{$vmid};
3844 return if !$vmfw_conf;
3845
3846 # When the 'ipfilter' option is enabled every device for which there
3847 # is no 'ipfilter-netX' ipset defiend gets an implicit empty default
3848 # ipset.
3849 # The reason is that ipfilter ipsets are always filled with standard
3850 # IPv6 link-local filters, as well as the IP addresses configured
3851 # for the container.
3852 my $ipsets = $vmfw_conf->{ipset};
3853 my $implicit_sets = {};
3854
3855 my $device_ips = {};
3856 foreach my $netid (keys %$conf) {
3857 next if $netid !~ m/^net(\d+)$/;
3858 my $net = PVE::LXC::Config->parse_lxc_network($conf->{$netid});
3859 next if !$net->{firewall};
3860
3861 if ($vmfw_conf->{options}->{ipfilter} && !$ipsets->{"ipfilter-$netid"}) {
3862 $implicit_sets->{"ipfilter-$netid"} = [];
3863 }
3864
3865 my $macaddr = $net->{hwaddr};
3866 my $linklocal = mac_to_linklocal($macaddr);
3867 my $set = $device_ips->{$netid} = [
3868 { cidr => $linklocal },
3869 { cidr => 'fe80::/10', nomatch => 1 }
3870 ];
3871 if (defined($net->{ip}) && $net->{ip} =~ m!^($IPV4RE)(?:/\d+)?$!) {
3872 push @$set, { cidr => $1 };
3873 }
3874 if (defined($net->{ip6}) && $net->{ip6} =~ m!^($IPV6RE)(?:/\d+)?$!) {
3875 push @$set, { cidr => $1 };
3876 }
3877 }
3878
3879 generate_ipset_chains($ipset_ruleset, $cluster_conf, $vmfw_conf, $device_ips, $ipsets);
3880 generate_ipset_chains($ipset_ruleset, $cluster_conf, $vmfw_conf, $device_ips, $implicit_sets);
3881 };
3882 warn $@ if $@; # just to be sure - should not happen
3883 }
3884
3885 generate_ipset_chains($ipset_ruleset, undef, $cluster_conf, undef, $cluster_conf->{ipset});
3886
3887 return $ipset_ruleset;
3888 }
3889
3890 sub compile_ebtables_filter {
3891 my ($cluster_conf, $hostfw_conf, $vmfw_configs, $vmdata) = @_;
3892
3893 if (!($cluster_conf->{options}->{ebtables} // 1)) {
3894 return {};
3895 }
3896
3897 my $ruleset = {};
3898
3899 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
3900
3901 ruleset_create_chain($ruleset, "PVEFW-FWBR-OUT");
3902 #for ipv4 and ipv6, check macaddress in iptables, so we use conntrack 'ESTABLISHED', to speedup rules
3903 ruleset_addrule($ruleset, 'PVEFW-FORWARD', '-p IPv4', '-j ACCEPT');
3904 ruleset_addrule($ruleset, 'PVEFW-FORWARD', '-p IPv6', '-j ACCEPT');
3905 ruleset_addrule($ruleset, 'PVEFW-FORWARD', '-o fwln+', '-j PVEFW-FWBR-OUT');
3906
3907 # generate firewall rules for QEMU VMs
3908 foreach my $vmid (sort keys %{$vmdata->{qemu}}) {
3909 eval {
3910 my $conf = $vmdata->{qemu}->{$vmid};
3911 my $vmfw_conf = $vmfw_configs->{$vmid};
3912 return if !$vmfw_conf;
3913 my $ipsets = $vmfw_conf->{ipset};
3914
3915 foreach my $netid (sort keys %$conf) {
3916 next if $netid !~ m/^net(\d+)$/;
3917 my $net = PVE::QemuServer::parse_net($conf->{$netid});
3918 next if !$net->{firewall};
3919 my $iface = "tap${vmid}i$1";
3920 my $macaddr = $net->{macaddr};
3921 my $arpfilter = [];
3922 if (defined(my $ipset = $ipsets->{"ipfilter-$netid"})) {
3923 foreach my $ipaddr (@$ipset) {
3924 my($ip, $version) = parse_ip_or_cidr($ipaddr->{cidr});
3925 next if !$ip || ($version && $version != 4);
3926 push(@$arpfilter, $ip);
3927 }
3928 }
3929 generate_tap_layer2filter($ruleset, $iface, $macaddr, $vmfw_conf, $vmid, $arpfilter);
3930 }
3931 };
3932 warn $@ if $@; # just to be sure - should not happen
3933 }
3934
3935 # generate firewall rules for LXC containers
3936 foreach my $vmid (sort keys %{$vmdata->{lxc}}) {
3937 eval {
3938 my $conf = $vmdata->{lxc}->{$vmid};
3939
3940 my $vmfw_conf = $vmfw_configs->{$vmid};
3941 return if !$vmfw_conf || !$vmfw_conf->{options}->{enable};
3942 my $ipsets = $vmfw_conf->{ipset};
3943
3944 foreach my $netid (sort keys %$conf) {
3945 next if $netid !~ m/^net(\d+)$/;
3946 my $net = PVE::LXC::Config->parse_lxc_network($conf->{$netid});
3947 next if !$net->{firewall};
3948 my $iface = "veth${vmid}i$1";
3949 my $macaddr = $net->{hwaddr};
3950 my $arpfilter = [];
3951 if (defined(my $ipset = $ipsets->{"ipfilter-$netid"})) {
3952 foreach my $ipaddr (@$ipset) {
3953 my($ip, $version) = parse_ip_or_cidr($ipaddr->{cidr});
3954 next if !$ip || ($version && $version != 4);
3955 push(@$arpfilter, $ip);
3956 }
3957 }
3958 if (defined(my $ip = $net->{ip}) && $vmfw_conf->{options}->{ipfilter}) {
3959 # ebtables changes this to a .0/MASK network but we just
3960 # want the address here, no network - see #2193
3961 $ip =~ s|/(\d+)$||;
3962 if ($ip ne 'dhcp') {
3963 push @$arpfilter, $ip;
3964 }
3965 }
3966 generate_tap_layer2filter($ruleset, $iface, $macaddr, $vmfw_conf, $vmid, $arpfilter);
3967 }
3968 };
3969 warn $@ if $@; # just to be sure - should not happen
3970 }
3971
3972 return $ruleset;
3973 }
3974
3975 sub generate_tap_layer2filter {
3976 my ($ruleset, $iface, $macaddr, $vmfw_conf, $vmid, $arpfilter) = @_;
3977 my $options = $vmfw_conf->{options};
3978
3979 my $tapchain = $iface."-OUT";
3980
3981 # ebtables remove zeros from mac pairs
3982 $macaddr =~ s/0([0-9a-f])/$1/ig;
3983 $macaddr = lc($macaddr);
3984
3985 ruleset_create_chain($ruleset, $tapchain);
3986
3987 if (defined($macaddr) && !(defined($options->{macfilter}) && $options->{macfilter} == 0)) {
3988 ruleset_addrule($ruleset, $tapchain, "-s ! $macaddr", '-j DROP');
3989 }
3990
3991 if (@$arpfilter){
3992 my $arpchain = $tapchain."-ARP";
3993 ruleset_addrule($ruleset, $tapchain, "-p ARP", "-j $arpchain");
3994 ruleset_create_chain($ruleset, $arpchain);
3995
3996 foreach my $ip (@{$arpfilter}) {
3997 ruleset_addrule($ruleset, $arpchain, "-p ARP --arp-ip-src $ip", '-j RETURN');
3998 }
3999 ruleset_addrule($ruleset, $arpchain, '', '-j DROP');
4000 }
4001
4002 if (defined($options->{layer2_protocols})){
4003 my $protochain = $tapchain."-PROTO";
4004 ruleset_addrule($ruleset, $tapchain, '', "-j $protochain");
4005 ruleset_create_chain($ruleset, $protochain);
4006
4007 foreach my $proto (split(/,/, $options->{layer2_protocols})) {
4008 ruleset_addrule($ruleset, $protochain, "-p $proto", '-j RETURN');
4009 }
4010 ruleset_addrule($ruleset, $protochain, '', '-j DROP');
4011 }
4012
4013 ruleset_addrule($ruleset, $tapchain, '', '-j ACCEPT');
4014
4015 ruleset_addrule($ruleset, 'PVEFW-FWBR-OUT', "-i $iface", "-j $tapchain");
4016 }
4017
4018 # the parameter $change_only_regex changes two things if defined:
4019 # * all chains not matching it will be left intact
4020 # * both the $active_chains hash and the returned status_hash have different
4021 # structure (they contain a key named 'rules').
4022 sub get_ruleset_status {
4023 my ($ruleset, $active_chains, $digest_fn, $change_only_regex) = @_;
4024
4025 my $statushash = {};
4026
4027 foreach my $chain (sort keys %$ruleset) {
4028 my $rules = $ruleset->{$chain};
4029 my $sig = &$digest_fn($rules);
4030 my $oldsig;
4031
4032 $statushash->{$chain}->{sig} = $sig;
4033 if (defined($change_only_regex)) {
4034 $oldsig = $active_chains->{$chain}->{sig};
4035 $statushash->{$chain}->{rules} = $rules;
4036 } else {
4037 $oldsig = $active_chains->{$chain};
4038 }
4039 if (!defined($oldsig)) {
4040 $statushash->{$chain}->{action} = 'create';
4041 } else {
4042 if ($oldsig eq $sig) {
4043 $statushash->{$chain}->{action} = 'exists';
4044 } else {
4045 $statushash->{$chain}->{action} = 'update';
4046 }
4047 }
4048 if ($verbose) {
4049 print "$statushash->{$chain}->{action} $chain ($sig)\n";
4050 foreach my $cmd (@{$rules}) {
4051 print "\t$cmd\n";
4052 }
4053 }
4054 }
4055
4056 foreach my $chain (sort keys %$active_chains) {
4057 next if defined($ruleset->{$chain});
4058 my $action = 'delete';
4059 my $sig = $active_chains->{$chain};
4060 if (defined($change_only_regex)) {
4061 $action = 'ignore' if ($chain !~ m/$change_only_regex/);
4062 $statushash->{$chain}->{rules} = $active_chains->{$chain}->{rules};
4063 $sig = $sig->{sig};
4064 }
4065 $statushash->{$chain}->{action} = $action;
4066 $statushash->{$chain}->{sig} = $sig;
4067 print "$action $chain ($sig)\n" if $verbose;
4068 }
4069
4070 return $statushash;
4071 }
4072
4073 sub print_sig_rule {
4074 my ($chain, $sig) = @_;
4075
4076 # We just use this to store a SHA1 checksum used to detect changes
4077 return "-A $chain -m comment --comment \"PVESIG:$sig\"\n";
4078 }
4079
4080 sub get_ruleset_cmdlist {
4081 my ($ruleset, $iptablescmd, $table) = @_;
4082
4083 $table = 'filter' if !$table;
4084
4085 my $cmdlist = "*$table\n"; # we pass this to iptables-restore;
4086
4087 my ($active_chains, $hooks) = iptables_get_chains($iptablescmd, $table);
4088 my $statushash = get_ruleset_status($ruleset, $active_chains, \&iptables_chain_digest);
4089
4090 # create missing chains first
4091 foreach my $chain (sort keys %$ruleset) {
4092 my $stat = $statushash->{$chain};
4093 die "internal error" if !$stat;
4094 next if $stat->{action} ne 'create';
4095
4096 $cmdlist .= ":$chain - [0:0]\n";
4097 }
4098
4099 foreach my $h (qw(INPUT OUTPUT FORWARD PREROUTING)) {
4100 my $chain = "PVEFW-$h";
4101 if ($ruleset->{$chain} && !$hooks->{$h}) {
4102 $cmdlist .= "-A $h -j $chain\n";
4103 }
4104 }
4105
4106 foreach my $chain (sort keys %$ruleset) {
4107 my $stat = $statushash->{$chain};
4108 die "internal error" if !$stat;
4109
4110 if ($stat->{action} eq 'update' || $stat->{action} eq 'create') {
4111 $cmdlist .= "-F $chain\n";
4112 foreach my $cmd (@{$ruleset->{$chain}}) {
4113 $cmdlist .= "$cmd\n";
4114 }
4115 $cmdlist .= print_sig_rule($chain, $stat->{sig});
4116 } elsif ($stat->{action} eq 'delete') {
4117 die "internal error"; # this should not happen
4118 } elsif ($stat->{action} eq 'exists') {
4119 # do nothing
4120 } else {
4121 die "internal error - unknown status '$stat->{action}'";
4122 }
4123 }
4124
4125 foreach my $chain (keys %$statushash) {
4126 next if $statushash->{$chain}->{action} ne 'delete';
4127 $cmdlist .= "-F $chain\n";
4128 }
4129 foreach my $chain (keys %$statushash) {
4130 next if $statushash->{$chain}->{action} ne 'delete';
4131 next if $chain eq 'PVEFW-INPUT';
4132 next if $chain eq 'PVEFW-OUTPUT';
4133 next if $chain eq 'PVEFW-FORWARD';
4134 next if $chain eq 'PVEFW-PREROUTING';
4135 $cmdlist .= "-X $chain\n";
4136 }
4137
4138 my $changes = $cmdlist ne "*$table\n" ? 1 : 0;
4139
4140 $cmdlist .= "COMMIT\n";
4141
4142 return wantarray ? ($cmdlist, $changes) : $cmdlist;
4143 }
4144
4145 my $pve_ebtables_chainname_regex = qr/PVEFW-\S+|(?:tap|veth)\d+i\d+-(?:IN|OUT)/;
4146
4147 sub get_ebtables_cmdlist {
4148 my ($ruleset) = @_;
4149
4150 my $changes = 0;
4151 my $cmdlist = "*filter\n";
4152
4153 my $active_chains = ebtables_get_chains();
4154 my $statushash = get_ruleset_status($ruleset, $active_chains,
4155 \&iptables_chain_digest,
4156 $pve_ebtables_chainname_regex);
4157
4158 # create chains first and make sure PVE rules are evaluated if active
4159 my $append_pve_to_forward = '-A FORWARD -j PVEFW-FORWARD';
4160 my $pve_include = 0;
4161 foreach my $chain (sort keys %$statushash) {
4162 next if ($statushash->{$chain}->{action} eq 'delete');
4163 $cmdlist .= ":$chain ACCEPT\n";
4164 $pve_include = 1 if ($chain eq 'PVEFW-FORWARD');
4165 }
4166
4167 foreach my $chain (sort keys %$statushash) {
4168 my $stat = $statushash->{$chain};
4169 $changes = 1 if ($stat->{action} !~ 'ignore|exists');
4170 next if ($stat->{action} eq 'delete');
4171
4172 foreach my $cmd (@{$statushash->{$chain}->{'rules'}}) {
4173 if ($chain eq 'FORWARD' && $cmd eq $append_pve_to_forward) {
4174 next if ! $pve_include;
4175 $pve_include = 0;
4176 }
4177 $cmdlist .= "$cmd\n";
4178 }
4179 }
4180 $cmdlist .= "$append_pve_to_forward\n" if $pve_include;
4181
4182 return wantarray ? ($cmdlist, $changes) : $cmdlist;
4183 }
4184
4185 sub get_ipset_cmdlist {
4186 my ($ruleset) = @_;
4187
4188 my $cmdlist = "";
4189
4190 my $delete_cmdlist = "";
4191
4192 my $active_chains = ipset_get_chains();
4193 my $statushash = get_ruleset_status($ruleset, $active_chains, \&ipset_chain_digest);
4194
4195 # remove stale _swap chains
4196 foreach my $chain (keys %$active_chains) {
4197 if ($chain =~ m/^PVEFW-\S+_swap$/) {
4198 $cmdlist .= "destroy $chain\n";
4199 }
4200 }
4201
4202 foreach my $chain (keys %$ruleset) {
4203 my $stat = $statushash->{$chain};
4204 die "internal error" if !$stat;
4205
4206 if ($stat->{action} eq 'create') {
4207 foreach my $cmd (@{$ruleset->{$chain}}) {
4208 $cmdlist .= "$cmd\n";
4209 }
4210 }
4211 }
4212
4213 foreach my $chain (keys %$ruleset) {
4214 my $stat = $statushash->{$chain};
4215 die "internal error" if !$stat;
4216
4217 if ($stat->{action} eq 'update') {
4218 my $chain_swap = $chain."_swap";
4219
4220 foreach my $cmd (@{$ruleset->{$chain}}) {
4221 $cmd =~ s/$chain/$chain_swap/;
4222 $cmdlist .= "$cmd\n";
4223 }
4224 $cmdlist .= "swap $chain_swap $chain\n";
4225 $cmdlist .= "flush $chain_swap\n";
4226 $cmdlist .= "destroy $chain_swap\n";
4227 }
4228 }
4229
4230 # the remove unused chains
4231 foreach my $chain (keys %$statushash) {
4232 next if $statushash->{$chain}->{action} ne 'delete';
4233
4234 $delete_cmdlist .= "flush $chain\n";
4235 $delete_cmdlist .= "destroy $chain\n";
4236 }
4237
4238 my $changes = ($cmdlist || $delete_cmdlist) ? 1 : 0;
4239
4240 return ($cmdlist, $delete_cmdlist, $changes);
4241 }
4242
4243 sub apply_ruleset {
4244 my ($ruleset, $hostfw_conf, $ipset_ruleset, $rulesetv6, $ebtables_ruleset) = @_;
4245
4246 enable_bridge_firewall();
4247
4248 my ($ipset_create_cmdlist, $ipset_delete_cmdlist, $ipset_changes) =
4249 get_ipset_cmdlist($ipset_ruleset);
4250
4251 my ($cmdlist, $changes) = get_ruleset_cmdlist($ruleset->{filter});
4252 my ($cmdlistv6, $changesv6) = get_ruleset_cmdlist($rulesetv6->{filter}, "ip6tables");
4253 my ($ebtables_cmdlist, $ebtables_changes) = get_ebtables_cmdlist($ebtables_ruleset);
4254 my ($cmdlist_raw, $changes_raw) = get_ruleset_cmdlist($ruleset->{raw}, undef, 'raw');
4255 my ($cmdlistv6_raw, $changesv6_raw) = get_ruleset_cmdlist($rulesetv6->{raw}, "ip6tables", 'raw');
4256
4257 if ($verbose) {
4258 if ($ipset_changes) {
4259 print "ipset changes:\n";
4260 print $ipset_create_cmdlist if $ipset_create_cmdlist;
4261 print $ipset_delete_cmdlist if $ipset_delete_cmdlist;
4262 }
4263
4264 if ($changes) {
4265 print "iptables changes:\n";
4266 print $cmdlist;
4267 }
4268
4269 if ($changesv6) {
4270 print "ip6tables changes:\n";
4271 print $cmdlistv6;
4272 }
4273
4274 if ($changes_raw) {
4275 print "iptables table raw changes:\n";
4276 print $cmdlist_raw;
4277 }
4278
4279 if ($changesv6_raw) {
4280 print "ip6tables table raw changes:\n";
4281 print $cmdlistv6_raw;
4282 }
4283
4284 if ($ebtables_changes) {
4285 print "ebtables changes:\n";
4286 print $ebtables_cmdlist;
4287 }
4288 }
4289
4290 my $tmpfile = "$pve_fw_status_dir/ipsetcmdlist1";
4291 PVE::Tools::file_set_contents($tmpfile, $ipset_create_cmdlist || '');
4292
4293 ipset_restore_cmdlist($ipset_create_cmdlist);
4294
4295 $tmpfile = "$pve_fw_status_dir/ip4cmdlist";
4296 PVE::Tools::file_set_contents($tmpfile, $cmdlist || '');
4297
4298 iptables_restore_cmdlist($cmdlist);
4299
4300 $tmpfile = "$pve_fw_status_dir/ip4cmdlistraw";
4301 PVE::Tools::file_set_contents($tmpfile, $cmdlist_raw || '');
4302
4303 iptables_restore_cmdlist($cmdlist_raw, 'raw');
4304
4305 $tmpfile = "$pve_fw_status_dir/ip6cmdlist";
4306 PVE::Tools::file_set_contents($tmpfile, $cmdlistv6 || '');
4307
4308 ip6tables_restore_cmdlist($cmdlistv6);
4309
4310 $tmpfile = "$pve_fw_status_dir/ip6cmdlistraw";
4311 PVE::Tools::file_set_contents($tmpfile, $cmdlistv6_raw || '');
4312
4313 ip6tables_restore_cmdlist($cmdlistv6_raw, 'raw');
4314
4315 $tmpfile = "$pve_fw_status_dir/ipsetcmdlist2";
4316 PVE::Tools::file_set_contents($tmpfile, $ipset_delete_cmdlist || '');
4317
4318 ipset_restore_cmdlist($ipset_delete_cmdlist) if $ipset_delete_cmdlist;
4319
4320 ebtables_restore_cmdlist($ebtables_cmdlist);
4321
4322 $tmpfile = "$pve_fw_status_dir/ebtablescmdlist";
4323 PVE::Tools::file_set_contents($tmpfile, $ebtables_cmdlist || '');
4324
4325 # test: re-read status and check if everything is up to date
4326 my $ruleset_filter = $ruleset->{filter};
4327 my $active_chains = iptables_get_chains();
4328 my $statushash = get_ruleset_status($ruleset_filter, $active_chains, \&iptables_chain_digest);
4329
4330 my $errors;
4331 foreach my $chain (sort keys %$ruleset_filter) {
4332 my $stat = $statushash->{$chain};
4333 if ($stat->{action} ne 'exists') {
4334 warn "unable to update chain '$chain'\n";
4335 $errors = 1;
4336 }
4337 }
4338
4339 my $rulesetv6_filter = $rulesetv6->{filter};
4340 my $active_chainsv6 = iptables_get_chains("ip6tables");
4341 my $statushashv6 = get_ruleset_status($rulesetv6_filter, $active_chainsv6, \&iptables_chain_digest);
4342
4343 foreach my $chain (sort keys %$rulesetv6_filter) {
4344 my $stat = $statushashv6->{$chain};
4345 if ($stat->{action} ne 'exists') {
4346 warn "unable to update chain '$chain'\n";
4347 $errors = 1;
4348 }
4349 }
4350
4351 my $ruleset_raw = $ruleset->{raw};
4352 my $active_chains_raw = iptables_get_chains(undef, 'raw');
4353 my $statushash_raw = get_ruleset_status($ruleset_raw, $active_chains_raw, \&iptables_chain_digest);
4354
4355 foreach my $chain (sort keys %$ruleset_raw) {
4356 my $stat = $statushash_raw->{$chain};
4357 if ($stat->{action} ne 'exists') {
4358 warn "unable to update chain '$chain'\n";
4359 $errors = 1;
4360 }
4361 }
4362
4363 my $rulesetv6_raw = $rulesetv6->{raw};
4364 my $active_chainsv6_raw = iptables_get_chains("ip6tables", 'raw');
4365 my $statushashv6_raw = get_ruleset_status($rulesetv6_raw, $active_chainsv6_raw, \&iptables_chain_digest);
4366
4367 foreach my $chain (sort keys %$rulesetv6_raw) {
4368 my $stat = $statushashv6_raw->{$chain};
4369 if ($stat->{action} ne 'exists') {
4370 warn "unable to update chain '$chain'\n";
4371 $errors = 1;
4372 }
4373 }
4374
4375 my $active_ebtables_chains = ebtables_get_chains();
4376 my $ebtables_statushash = get_ruleset_status($ebtables_ruleset,
4377 $active_ebtables_chains, \&iptables_chain_digest,
4378 $pve_ebtables_chainname_regex);
4379
4380 foreach my $chain (sort keys %$ebtables_ruleset) {
4381 my $stat = $ebtables_statushash->{$chain};
4382 if ($stat->{action} ne 'exists') {
4383 warn "ebtables : unable to update chain '$chain'\n";
4384 $errors = 1;
4385 }
4386 }
4387
4388 die "unable to apply firewall changes\n" if $errors;
4389
4390 update_nf_conntrack_max($hostfw_conf);
4391
4392 update_nf_conntrack_tcp_timeout_established($hostfw_conf);
4393
4394 update_nf_conntrack_tcp_timeout_syn_recv($hostfw_conf);
4395
4396 update_nf_conntrack_logging($hostfw_conf);
4397 }
4398
4399 sub update_nf_conntrack_max {
4400 my ($hostfw_conf) = @_;
4401
4402 my $max = 262144; # reasonable default (2^16 * 4), see nf_conntrack-sysctl docs
4403
4404 my $options = $hostfw_conf->{options} || {};
4405
4406 if (defined($options->{nf_conntrack_max}) && ($options->{nf_conntrack_max} > $max)) {
4407 $max = $options->{nf_conntrack_max};
4408 $max = int(($max+ 8191)/8192)*8192; # round to multiples of 8192
4409 }
4410
4411 my $filename_nf_conntrack_max = "/proc/sys/net/nf_conntrack_max";
4412 my $filename_hashsize = "/sys/module/nf_conntrack/parameters/hashsize";
4413
4414 my $current = int(PVE::Tools::file_read_firstline($filename_nf_conntrack_max) || $max);
4415
4416 if ($current != $max) {
4417 my $hashsize = int($max/4);
4418 PVE::ProcFSTools::write_proc_entry($filename_hashsize, $hashsize);
4419 PVE::ProcFSTools::write_proc_entry($filename_nf_conntrack_max, $max);
4420 }
4421 }
4422
4423 sub update_nf_conntrack_tcp_timeout_established {
4424 my ($hostfw_conf) = @_;
4425
4426 my $options = $hostfw_conf->{options} || {};
4427
4428 my $value = defined($options->{nf_conntrack_tcp_timeout_established}) ? $options->{nf_conntrack_tcp_timeout_established} : 432000;
4429
4430 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/netfilter/nf_conntrack_tcp_timeout_established", $value);
4431 }
4432
4433 sub update_nf_conntrack_tcp_timeout_syn_recv {
4434 my ($hostfw_conf) = @_;
4435
4436 my $options = $hostfw_conf->{options} || {};
4437
4438 my $value = defined($options->{nf_conntrack_tcp_timeout_syn_recv}) ? $options->{nf_conntrack_tcp_timeout_syn_recev} : 60;
4439
4440 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/netfilter/nf_conntrack_tcp_timeout_syn_recv", $value);
4441 }
4442
4443 my $log_nf_conntrack_enabled = undef;
4444 sub update_nf_conntrack_logging {
4445 my ($hostfw_conf) = @_;
4446
4447 my $options = $hostfw_conf->{options} || {};
4448 my $value = $options->{log_nf_conntrack} || 0;
4449 if (!defined($log_nf_conntrack_enabled)
4450 || $value != $log_nf_conntrack_enabled)
4451 {
4452 my $tmpfile = "$pve_fw_status_dir/log_nf_conntrack";
4453 PVE::Tools::file_set_contents($tmpfile, $value);
4454
4455 run_command([qw(systemctl try-reload-or-restart pvefw-logger.service)]);
4456 $log_nf_conntrack_enabled = $value;
4457 }
4458 }
4459
4460 sub remove_pvefw_chains {
4461
4462 PVE::Firewall::remove_pvefw_chains_iptables("iptables");
4463 PVE::Firewall::remove_pvefw_chains_iptables("ip6tables");
4464 PVE::Firewall::remove_pvefw_chains_iptables("iptables", "raw");
4465 PVE::Firewall::remove_pvefw_chains_iptables("ip6tables", "raw");
4466 PVE::Firewall::remove_pvefw_chains_ipset();
4467 PVE::Firewall::remove_pvefw_chains_ebtables();
4468
4469 }
4470
4471 sub remove_pvefw_chains_iptables {
4472 my ($iptablescmd, $table) = @_;
4473
4474 $table = 'filter' if !$table;
4475
4476 my ($chash, $hooks) = iptables_get_chains($iptablescmd, $table);
4477 my $cmdlist = "*$table\n";
4478
4479 foreach my $h (qw(INPUT OUTPUT FORWARD PREROUTING)) {
4480 if ($hooks->{$h}) {
4481 $cmdlist .= "-D $h -j PVEFW-$h\n";
4482 }
4483 }
4484
4485 foreach my $chain (keys %$chash) {
4486 $cmdlist .= "-F $chain\n";
4487 }
4488
4489 foreach my $chain (keys %$chash) {
4490 $cmdlist .= "-X $chain\n";
4491 }
4492 $cmdlist .= "COMMIT\n";
4493
4494 if($iptablescmd eq "ip6tables") {
4495 ip6tables_restore_cmdlist($cmdlist, $table);
4496 } else {
4497 iptables_restore_cmdlist($cmdlist, $table);
4498 }
4499 }
4500
4501 sub remove_pvefw_chains_ipset {
4502
4503 my $ipset_chains = ipset_get_chains();
4504
4505 my $cmdlist = "";
4506
4507 foreach my $chain (keys %$ipset_chains) {
4508 $cmdlist .= "flush $chain\n";
4509 $cmdlist .= "destroy $chain\n";
4510 }
4511
4512 ipset_restore_cmdlist($cmdlist) if $cmdlist;
4513 }
4514
4515 sub remove_pvefw_chains_ebtables {
4516 # apply empty ruleset = remove all our chains
4517 ebtables_restore_cmdlist(get_ebtables_cmdlist({}));
4518 }
4519
4520 sub init {
4521 my $cluster_conf = load_clusterfw_conf();
4522 my $cluster_options = $cluster_conf->{options};
4523 my $enable = $cluster_options->{enable};
4524
4525 return if !$enable;
4526
4527 # load required modules here
4528 }
4529
4530 sub update {
4531 my $code = sub {
4532
4533 my $cluster_conf = load_clusterfw_conf();
4534 my $cluster_options = $cluster_conf->{options};
4535
4536 if (!$cluster_options->{enable}) {
4537 PVE::Firewall::remove_pvefw_chains();
4538 return;
4539 }
4540
4541 my $hostfw_conf = load_hostfw_conf($cluster_conf);
4542
4543 my ($ruleset, $ipset_ruleset, $rulesetv6, $ebtables_ruleset) = compile($cluster_conf, $hostfw_conf);
4544
4545 apply_ruleset($ruleset, $hostfw_conf, $ipset_ruleset, $rulesetv6, $ebtables_ruleset);
4546 };
4547
4548 run_locked($code);
4549 }
4550
4551 1;