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