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