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