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