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