]> git.proxmox.com Git - pve-firewall.git/blame - src/PVE/Firewall.pm
allow GROUP rule without iface
[pve-firewall.git] / src / PVE / Firewall.pm
CommitLineData
b6360c3f
DM
1package PVE::Firewall;
2
3use warnings;
4use strict;
cbb5d6f3 5use POSIX;
b6360c3f 6use Data::Dumper;
09d5f68e 7use Digest::SHA;
c8301d63 8use PVE::INotify;
7ca36671 9use PVE::Exception qw(raise raise_param_exc);
e74a87f5 10use PVE::JSONSchema qw(register_standard_option get_standard_option);
c8301d63 11use PVE::Cluster;
5f0a912c 12use PVE::ProcFSTools;
009ee3ac 13use PVE::Tools qw($IPV4RE);
6b9f68a2 14use File::Basename;
5e1267a5
DM
15use File::Path;
16use IO::File;
ecbea048 17use Net::IP;
1a301a8d 18use PVE::Tools qw(run_command lock_file dir_glob_foreach);
30c1ae52 19use Encode;
ecbea048 20
63c91681 21my $hostfw_conf_filename = "/etc/pve/local/host.fw";
fca39c2c
DM
22my $clusterfw_conf_filename = "/etc/pve/firewall/cluster.fw";
23
cbb5d6f3 24# dynamically include PVE::QemuServer and PVE::OpenVZ
d9fee004
DM
25# to avoid dependency problems
26my $have_qemu_server;
27eval {
28 require PVE::QemuServer;
29 $have_qemu_server = 1;
30};
31
32my $have_pve_manager;
33eval {
34 require PVE::OpenVZ;
35 $have_pve_manager = 1;
36};
37
009ee3ac
DM
38PVE::JSONSchema::register_format('IPv4orCIDR', \&pve_verify_ipv4_or_cidr);
39sub pve_verify_ipv4_or_cidr {
40 my ($cidr, $noerr) = @_;
41
30f1b100 42 if ($cidr =~ m!^(?:$IPV4RE)(/(\d+))?$!) {
e34d0e58 43 return $cidr if Net::IP->new($cidr);
30f1b100
DM
44 return undef if $noerr;
45 die Net::IP::Error() . "\n";
009ee3ac
DM
46 }
47 return undef if $noerr;
48 die "value does not look like a valid IP address or CIDR network\n";
49}
50
e74a87f5
DM
51PVE::JSONSchema::register_standard_option('ipset-name', {
52 description => "IP set name.",
53 type => 'string',
54 pattern => '[A-Za-z][A-Za-z0-9\-\_]+',
387d0ffc 55 minLength => 2,
e34d0e58 56 maxLength => 20,
387d0ffc
DM
57});
58
81d574a7
DM
59PVE::JSONSchema::register_standard_option('pve-fw-alias', {
60 description => "Alias name.",
61 type => 'string',
62 pattern => '[A-Za-z][A-Za-z0-9\-\_]+',
63 minLength => 2,
e34d0e58 64 maxLength => 20,
81d574a7
DM
65});
66
6302c41f
DM
67PVE::JSONSchema::register_standard_option('pve-fw-loglevel' => {
68 description => "Log level.",
e34d0e58 69 type => 'string',
6302c41f
DM
70 enum => ['emerg', 'alert', 'crit', 'err', 'warning', 'notice', 'info', 'debug', 'nolog'],
71 optional => 1,
72});
73
44be8ceb
DM
74my $security_group_name_pattern = '[A-Za-z][A-Za-z0-9\-\_]+';
75my $ip_alias_pattern = '[A-Za-z][A-Za-z0-9\-\_]+';
c14dacdf 76
387d0ffc
DM
77PVE::JSONSchema::register_standard_option('pve-security-group-name', {
78 description => "Security Group name.",
79 type => 'string',
44be8ceb 80 pattern => $security_group_name_pattern,
387d0ffc 81 minLength => 2,
e34d0e58 82 maxLength => 20,
e74a87f5 83});
009ee3ac 84
cbb5d6f3
DM
85my $feature_ipset_nomatch = 0;
86eval {
87 my (undef, undef, $release) = POSIX::uname();
88 if ($release =~ m/^(\d+)\.(\d+)\.\d+-/) {
89 my ($major, $minor) = ($1, $2);
90 $feature_ipset_nomatch = 1 if ($major > 3) ||
91 ($major == 3 && $minor >= 7);
92 }
93
94};
95
5e1267a5 96use Data::Dumper;
b6360c3f 97
c8301d63
DM
98my $nodename = PVE::INotify::nodename();
99
06320eb0 100my $pve_fw_lock_filename = "/var/lock/pvefw.lck";
6b9f68a2 101my $pve_fw_status_filename = "/var/lib/pve-firewall/pvefw.status";
06320eb0 102
2d404ffc
DM
103my $default_log_level = 'info';
104
105my $log_level_hash = {
106 debug => 7,
107 info => 6,
108 notice => 5,
109 warning => 4,
110 err => 3,
111 crit => 2,
112 alert => 1,
113 emerg => 0,
114};
115
857f62c8 116# imported/converted from: /usr/share/shorewall/macro.*
961b4928 117my $pve_fw_macros = {
857f62c8 118 'Amanda' => [
ebd54ae9 119 "Amanda Backup",
857f62c8
DM
120 { action => 'PARAM', proto => 'udp', dport => '10080' },
121 { action => 'PARAM', proto => 'tcp', dport => '10080' },
122 ],
123 'Auth' => [
ebd54ae9 124 "Auth (identd) traffic",
857f62c8
DM
125 { action => 'PARAM', proto => 'tcp', dport => '113' },
126 ],
127 'BGP' => [
ebd54ae9 128 "Border Gateway Protocol traffic",
857f62c8
DM
129 { action => 'PARAM', proto => 'tcp', dport => '179' },
130 ],
131 'BitTorrent' => [
ebd54ae9 132 "BitTorrent traffic for BitTorrent 3.1 and earlier",
961b4928 133 { action => 'PARAM', proto => 'tcp', dport => '6881:6889' },
857f62c8
DM
134 { action => 'PARAM', proto => 'udp', dport => '6881' },
135 ],
136 'BitTorrent32' => [
ebd54ae9 137 "BitTorrent traffic for BitTorrent 3.2 and later",
857f62c8
DM
138 { action => 'PARAM', proto => 'tcp', dport => '6881:6999' },
139 { action => 'PARAM', proto => 'udp', dport => '6881' },
140 ],
141 'CVS' => [
ebd54ae9 142 "Concurrent Versions System pserver traffic",
857f62c8
DM
143 { action => 'PARAM', proto => 'tcp', dport => '2401' },
144 ],
145 'Citrix' => [
ebd54ae9 146 "Citrix/ICA traffic (ICA, ICA Browser, CGP)",
857f62c8
DM
147 { action => 'PARAM', proto => 'tcp', dport => '1494' },
148 { action => 'PARAM', proto => 'udp', dport => '1604' },
149 { action => 'PARAM', proto => 'tcp', dport => '2598' },
150 ],
151 'DAAP' => [
ebd54ae9 152 "Digital Audio Access Protocol traffic (iTunes, Rythmbox daemons)",
857f62c8
DM
153 { action => 'PARAM', proto => 'tcp', dport => '3689' },
154 { action => 'PARAM', proto => 'udp', dport => '3689' },
155 ],
156 'DCC' => [
ebd54ae9 157 "Distributed Checksum Clearinghouse spam filtering mechanism",
857f62c8
DM
158 { action => 'PARAM', proto => 'tcp', dport => '6277' },
159 ],
160 'DHCPfwd' => [
ebd54ae9 161 "Forwarded DHCP traffic (bidirectional)",
857f62c8
DM
162 { action => 'PARAM', proto => 'udp', dport => '67:68', sport => '67:68' },
163 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '67:68', sport => '67:68' },
164 ],
165 'DNS' => [
ebd54ae9 166 "Domain Name System traffic (upd and tcp)",
857f62c8
DM
167 { action => 'PARAM', proto => 'udp', dport => '53' },
168 { action => 'PARAM', proto => 'tcp', dport => '53' },
169 ],
170 'Distcc' => [
ebd54ae9 171 "Distributed Compiler service",
857f62c8
DM
172 { action => 'PARAM', proto => 'tcp', dport => '3632' },
173 ],
857f62c8 174 'FTP' => [
ebd54ae9 175 "File Transfer Protocol",
857f62c8
DM
176 { action => 'PARAM', proto => 'tcp', dport => '21' },
177 ],
178 'Finger' => [
ebd54ae9 179 "Finger protocol (RFC 742)",
857f62c8
DM
180 { action => 'PARAM', proto => 'tcp', dport => '79' },
181 ],
182 'GNUnet' => [
ebd54ae9 183 "GNUnet secure peer-to-peer networking traffic",
857f62c8
DM
184 { action => 'PARAM', proto => 'tcp', dport => '2086' },
185 { action => 'PARAM', proto => 'udp', dport => '2086' },
186 { action => 'PARAM', proto => 'tcp', dport => '1080' },
187 { action => 'PARAM', proto => 'udp', dport => '1080' },
188 ],
189 'GRE' => [
ebd54ae9 190 "Generic Routing Encapsulation tunneling protocol (bidirectional)",
857f62c8
DM
191 { action => 'PARAM', proto => '47' },
192 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '47' },
193 ],
194 'Git' => [
ebd54ae9 195 "Git distributed revision control traffic",
857f62c8
DM
196 { action => 'PARAM', proto => 'tcp', dport => '9418' },
197 ],
857f62c8 198 'HKP' => [
ebd54ae9 199 "OpenPGP HTTP keyserver protocol traffic",
857f62c8
DM
200 { action => 'PARAM', proto => 'tcp', dport => '11371' },
201 ],
202 'HTTP' => [
ebd54ae9 203 "Hypertext Transfer Protocol (WWW)",
961b4928
DM
204 { action => 'PARAM', proto => 'tcp', dport => '80' },
205 ],
857f62c8 206 'HTTPS' => [
ebd54ae9 207 "Hypertext Transfer Protocol (WWW) over SSL",
857f62c8
DM
208 { action => 'PARAM', proto => 'tcp', dport => '443' },
209 ],
210 'ICPV2' => [
ebd54ae9 211 "Internet Cache Protocol V2 (Squid) traffic",
857f62c8
DM
212 { action => 'PARAM', proto => 'udp', dport => '3130' },
213 ],
214 'ICQ' => [
ebd54ae9 215 "AOL Instant Messenger traffic",
857f62c8
DM
216 { action => 'PARAM', proto => 'tcp', dport => '5190' },
217 ],
218 'IMAP' => [
ebd54ae9 219 "Internet Message Access Protocol",
857f62c8
DM
220 { action => 'PARAM', proto => 'tcp', dport => '143' },
221 ],
222 'IMAPS' => [
ebd54ae9 223 "Internet Message Access Protocol over SSL",
857f62c8
DM
224 { action => 'PARAM', proto => 'tcp', dport => '993' },
225 ],
226 'IPIP' => [
ebd54ae9 227 "IPIP capsulation traffic (bidirectional)",
857f62c8
DM
228 { action => 'PARAM', proto => '94' },
229 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '94' },
230 ],
857f62c8 231 'IPsec' => [
ebd54ae9 232 "IPsec traffic (bidirectional)",
857f62c8
DM
233 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
234 { action => 'PARAM', proto => '50' },
235 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500', sport => '500' },
236 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '50' },
237 ],
238 'IPsecah' => [
ebd54ae9 239 "IPsec authentication (AH) traffic (bidirectional)",
857f62c8
DM
240 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
241 { action => 'PARAM', proto => '51' },
242 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500', sport => '500' },
243 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '51' },
244 ],
245 'IPsecnat' => [
ebd54ae9 246 "IPsec traffic and Nat-Traversal (bidirectional)",
857f62c8
DM
247 { action => 'PARAM', proto => 'udp', dport => '500' },
248 { action => 'PARAM', proto => 'udp', dport => '4500' },
249 { action => 'PARAM', proto => '50' },
250 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500' },
251 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '4500' },
252 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '50' },
253 ],
254 'IRC' => [
ebd54ae9 255 "Internet Relay Chat traffic",
857f62c8
DM
256 { action => 'PARAM', proto => 'tcp', dport => '6667' },
257 ],
857f62c8 258 'Jetdirect' => [
ebd54ae9 259 "HP Jetdirect printing",
857f62c8
DM
260 { action => 'PARAM', proto => 'tcp', dport => '9100' },
261 ],
262 'L2TP' => [
ebd54ae9 263 "Layer 2 Tunneling Protocol traffic",
857f62c8
DM
264 { action => 'PARAM', proto => 'udp', dport => '1701' },
265 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '1701' },
266 ],
267 'LDAP' => [
ebd54ae9 268 "Lightweight Directory Access Protocol traffic",
857f62c8
DM
269 { action => 'PARAM', proto => 'tcp', dport => '389' },
270 ],
271 'LDAPS' => [
ebd54ae9 272 "Secure Lightweight Directory Access Protocol traffic",
857f62c8
DM
273 { action => 'PARAM', proto => 'tcp', dport => '636' },
274 ],
275 'MSNP' => [
ebd54ae9 276 "Microsoft Notification Protocol",
857f62c8
DM
277 { action => 'PARAM', proto => 'tcp', dport => '1863' },
278 ],
279 'MSSQL' => [
ebd54ae9 280 "Microsoft SQL Server",
857f62c8
DM
281 { action => 'PARAM', proto => 'tcp', dport => '1433' },
282 ],
283 'Mail' => [
ebd54ae9 284 "Mail traffic (SMTP, SMTPS, Submission)",
857f62c8
DM
285 { action => 'PARAM', proto => 'tcp', dport => '25' },
286 { action => 'PARAM', proto => 'tcp', dport => '465' },
287 { action => 'PARAM', proto => 'tcp', dport => '587' },
288 ],
289 'Munin' => [
ebd54ae9 290 "Munin networked resource monitoring traffic",
857f62c8
DM
291 { action => 'PARAM', proto => 'tcp', dport => '4949' },
292 ],
293 'MySQL' => [
ebd54ae9 294 "MySQL server",
857f62c8
DM
295 { action => 'PARAM', proto => 'tcp', dport => '3306' },
296 ],
297 'NNTP' => [
ebd54ae9 298 "NNTP traffic (Usenet).",
857f62c8
DM
299 { action => 'PARAM', proto => 'tcp', dport => '119' },
300 ],
301 'NNTPS' => [
ebd54ae9 302 "Encrypted NNTP traffic (Usenet)",
857f62c8
DM
303 { action => 'PARAM', proto => 'tcp', dport => '563' },
304 ],
305 'NTP' => [
ebd54ae9 306 "Network Time Protocol (ntpd)",
857f62c8
DM
307 { action => 'PARAM', proto => 'udp', dport => '123' },
308 ],
309 'NTPbi' => [
ebd54ae9 310 "Bi-directional NTP (for NTP peers)",
857f62c8
DM
311 { action => 'PARAM', proto => 'udp', dport => '123' },
312 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '123' },
313 ],
857f62c8 314 'OSPF' => [
ebd54ae9 315 "OSPF multicast traffic",
857f62c8
DM
316 { action => 'PARAM', proto => '89' },
317 ],
318 'OpenVPN' => [
ebd54ae9 319 "OpenVPN traffic",
857f62c8
DM
320 { action => 'PARAM', proto => 'udp', dport => '1194' },
321 ],
322 'PCA' => [
ebd54ae9 323 "Symantec PCAnywere (tm)",
857f62c8
DM
324 { action => 'PARAM', proto => 'udp', dport => '5632' },
325 { action => 'PARAM', proto => 'tcp', dport => '5631' },
326 ],
327 'POP3' => [
ebd54ae9 328 "POP3 traffic",
857f62c8
DM
329 { action => 'PARAM', proto => 'tcp', dport => '110' },
330 ],
331 'POP3S' => [
ebd54ae9 332 "Encrypted POP3 traffic",
857f62c8
DM
333 { action => 'PARAM', proto => 'tcp', dport => '995' },
334 ],
335 'PPtP' => [
ebd54ae9 336 "Point-to-Point Tunneling Protocol",
857f62c8
DM
337 { action => 'PARAM', proto => '47' },
338 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '47' },
339 { action => 'PARAM', proto => 'tcp', dport => '1723' },
340 ],
341 'Ping' => [
ebd54ae9 342 "ICMP echo request",
269d4f13 343 { action => 'PARAM', proto => 'icmp', dport => 'echo-request' },
857f62c8
DM
344 ],
345 'PostgreSQL' => [
ebd54ae9 346 "PostgreSQL server",
857f62c8
DM
347 { action => 'PARAM', proto => 'tcp', dport => '5432' },
348 ],
349 'Printer' => [
ebd54ae9 350 "Line Printer protocol printing",
857f62c8
DM
351 { action => 'PARAM', proto => 'tcp', dport => '515' },
352 ],
353 'RDP' => [
ebd54ae9 354 "Microsoft Remote Desktop Protocol traffic",
857f62c8
DM
355 { action => 'PARAM', proto => 'tcp', dport => '3389' },
356 ],
357 'RIPbi' => [
ebd54ae9 358 "Routing Information Protocol (bidirectional)",
857f62c8
DM
359 { action => 'PARAM', proto => 'udp', dport => '520' },
360 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '520' },
361 ],
362 'RNDC' => [
ebd54ae9 363 "BIND remote management protocol",
857f62c8
DM
364 { action => 'PARAM', proto => 'tcp', dport => '953' },
365 ],
366 'Razor' => [
ebd54ae9 367 "Razor Antispam System",
857f62c8
DM
368 { action => 'ACCEPT', proto => 'tcp', dport => '2703' },
369 ],
370 'Rdate' => [
ebd54ae9 371 "Remote time retrieval (rdate)",
857f62c8
DM
372 { action => 'PARAM', proto => 'tcp', dport => '37' },
373 ],
374 'Rsync' => [
ebd54ae9 375 "Rsync server",
857f62c8
DM
376 { action => 'PARAM', proto => 'tcp', dport => '873' },
377 ],
378 'SANE' => [
ebd54ae9 379 "SANE network scanning",
857f62c8
DM
380 { action => 'PARAM', proto => 'tcp', dport => '6566' },
381 ],
382 'SMB' => [
ebd54ae9 383 "Microsoft SMB traffic",
857f62c8
DM
384 { action => 'PARAM', proto => 'udp', dport => '135,445' },
385 { action => 'PARAM', proto => 'udp', dport => '137:139' },
386 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '137' },
387 { action => 'PARAM', proto => 'tcp', dport => '135,139,445' },
388 ],
389 'SMBBI' => [
ebd54ae9 390 "Microsoft SMB traffic (bidirectional)",
857f62c8
DM
391 { action => 'PARAM', proto => 'udp', dport => '135,445' },
392 { action => 'PARAM', proto => 'udp', dport => '137:139' },
393 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '137' },
394 { action => 'PARAM', proto => 'tcp', dport => '135,139,445' },
395 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '135,445' },
396 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '137:139' },
397 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '1024:65535', sport => '137' },
398 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'tcp', dport => '135,139,445' },
399 ],
400 'SMBswat' => [
ebd54ae9 401 "Samba Web Administration Tool",
857f62c8
DM
402 { action => 'PARAM', proto => 'tcp', dport => '901' },
403 ],
404 'SMTP' => [
ebd54ae9 405 "Simple Mail Transfer Protocol",
857f62c8
DM
406 { action => 'PARAM', proto => 'tcp', dport => '25' },
407 ],
408 'SMTPS' => [
ebd54ae9 409 "Encrypted Simple Mail Transfer Protocol",
857f62c8
DM
410 { action => 'PARAM', proto => 'tcp', dport => '465' },
411 ],
412 'SNMP' => [
ebd54ae9 413 "Simple Network Management Protocol",
857f62c8
DM
414 { action => 'PARAM', proto => 'udp', dport => '161:162' },
415 { action => 'PARAM', proto => 'tcp', dport => '161' },
416 ],
417 'SPAMD' => [
ebd54ae9 418 "Spam Assassin SPAMD traffic",
857f62c8
DM
419 { action => 'PARAM', proto => 'tcp', dport => '783' },
420 ],
421 'SSH' => [
ebd54ae9 422 "Secure shell traffic",
857f62c8
DM
423 { action => 'PARAM', proto => 'tcp', dport => '22' },
424 ],
425 'SVN' => [
ebd54ae9 426 "Subversion server (svnserve)",
857f62c8
DM
427 { action => 'PARAM', proto => 'tcp', dport => '3690' },
428 ],
429 'SixXS' => [
ebd54ae9 430 "SixXS IPv6 Deployment and Tunnel Broker",
857f62c8
DM
431 { action => 'PARAM', proto => 'tcp', dport => '3874' },
432 { action => 'PARAM', proto => 'udp', dport => '3740' },
433 { action => 'PARAM', proto => '41' },
434 { action => 'PARAM', proto => 'udp', dport => '5072,8374' },
435 ],
436 'Squid' => [
ebd54ae9 437 "Squid web proxy traffic",
857f62c8
DM
438 { action => 'PARAM', proto => 'tcp', dport => '3128' },
439 ],
440 'Submission' => [
ebd54ae9 441 "Mail message submission traffic",
857f62c8
DM
442 { action => 'PARAM', proto => 'tcp', dport => '587' },
443 ],
444 'Syslog' => [
ebd54ae9 445 "Syslog protocol (RFC 5424) traffic",
857f62c8
DM
446 { action => 'PARAM', proto => 'udp', dport => '514' },
447 { action => 'PARAM', proto => 'tcp', dport => '514' },
448 ],
449 'TFTP' => [
ebd54ae9 450 "Trivial File Transfer Protocol traffic",
857f62c8
DM
451 { action => 'PARAM', proto => 'udp', dport => '69' },
452 ],
453 'Telnet' => [
ebd54ae9 454 "Telnet traffic",
857f62c8
DM
455 { action => 'PARAM', proto => 'tcp', dport => '23' },
456 ],
457 'Telnets' => [
ebd54ae9 458 "Telnet over SSL",
857f62c8
DM
459 { action => 'PARAM', proto => 'tcp', dport => '992' },
460 ],
461 'Time' => [
ebd54ae9 462 "RFC 868 Time protocol",
857f62c8
DM
463 { action => 'PARAM', proto => 'tcp', dport => '37' },
464 ],
465 'Trcrt' => [
ebd54ae9 466 "Traceroute (for up to 30 hops) traffic",
857f62c8 467 { action => 'PARAM', proto => 'udp', dport => '33434:33524' },
269d4f13 468 { action => 'PARAM', proto => 'icmp', dport => 'echo-request' },
857f62c8
DM
469 ],
470 'VNC' => [
ebd54ae9 471 "VNC traffic for VNC display's 0 - 9",
857f62c8
DM
472 { action => 'PARAM', proto => 'tcp', dport => '5900:5909' },
473 ],
474 'VNCL' => [
ebd54ae9 475 "VNC traffic from Vncservers to Vncviewers in listen mode",
857f62c8
DM
476 { action => 'PARAM', proto => 'tcp', dport => '5500' },
477 ],
478 'Web' => [
ebd54ae9 479 "WWW traffic (HTTP and HTTPS)",
857f62c8 480 { action => 'PARAM', proto => 'tcp', dport => '80' },
961b4928
DM
481 { action => 'PARAM', proto => 'tcp', dport => '443' },
482 ],
857f62c8 483 'Webcache' => [
ebd54ae9 484 "Web Cache/Proxy traffic (port 8080)",
857f62c8
DM
485 { action => 'PARAM', proto => 'tcp', dport => '8080' },
486 ],
487 'Webmin' => [
ebd54ae9 488 "Webmin traffic",
857f62c8
DM
489 { action => 'PARAM', proto => 'tcp', dport => '10000' },
490 ],
491 'Whois' => [
ebd54ae9 492 "Whois (nicname, RFC 3912) traffic",
857f62c8
DM
493 { action => 'PARAM', proto => 'tcp', dport => '43' },
494 ],
961b4928
DM
495};
496
497my $pve_fw_parsed_macros;
ebd54ae9 498my $pve_fw_macro_descr;
961b4928 499my $pve_fw_preferred_macro_names = {};
3a616aa0 500
d8f2505e
DM
501my $pve_std_chains = {
502 'PVEFW-SET-ACCEPT-MARK' => [
503 "-j MARK --set-mark 1",
504 ],
79929d9c
DM
505 'PVEFW-DropBroadcast' => [
506 # same as shorewall 'Broadcast'
507 # simply DROP BROADCAST/MULTICAST/ANYCAST
508 # we can use this to reduce logging
509 { action => 'DROP', dsttype => 'BROADCAST' },
510 { action => 'DROP', dsttype => 'MULTICAST' },
511 { action => 'DROP', dsttype => 'ANYCAST' },
cbb5d6f3 512 { action => 'DROP', dest => '224.0.0.0/4' },
79929d9c
DM
513 ],
514 'PVEFW-reject' => [
515 # same as shorewall 'reject'
516 { action => 'DROP', dsttype => 'BROADCAST' },
cbb5d6f3 517 { action => 'DROP', source => '224.0.0.0/4' },
79929d9c
DM
518 { action => 'DROP', proto => 'icmp' },
519 "-p tcp -j REJECT --reject-with tcp-reset",
520 "-p udp -j REJECT --reject-with icmp-port-unreachable",
521 "-p icmp -j REJECT --reject-with icmp-host-unreachable",
522 "-j REJECT --reject-with icmp-host-prohibited",
523 ],
524 'PVEFW-Drop' => [
cbb5d6f3 525 # same as shorewall 'Drop', which is equal to DROP,
79929d9c
DM
526 # but REJECT/DROP some packages to reduce logging,
527 # and ACCEPT critical ICMP types
528 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
529 # we are not interested in BROADCAST/MULTICAST/ANYCAST
530 { action => 'PVEFW-DropBroadcast' },
531 # ACCEPT critical ICMP types
532 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
533 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
534 # Drop packets with INVALID state
535 "-m conntrack --ctstate INVALID -j DROP",
536 # Drop Microsoft SMB noise
537 { action => 'DROP', proto => 'udp', dport => '135,445', nbdport => 2 },
538 { action => 'DROP', proto => 'udp', dport => '137:139'},
539 { action => 'DROP', proto => 'udp', dport => '1024:65535', sport => 137 },
540 { action => 'DROP', proto => 'tcp', dport => '135,139,445', nbdport => 3 },
541 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
542 # Drop new/NotSyn traffic so that it doesn't get logged
543 "-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN -j DROP",
544 # Drop DNS replies
545 { action => 'DROP', proto => 'udp', sport => 53 },
546 ],
547 'PVEFW-Reject' => [
cbb5d6f3 548 # same as shorewall 'Reject', which is equal to Reject,
79929d9c
DM
549 # but REJECT/DROP some packages to reduce logging,
550 # and ACCEPT critical ICMP types
551 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
552 # we are not interested in BROADCAST/MULTICAST/ANYCAST
553 { action => 'PVEFW-DropBroadcast' },
554 # ACCEPT critical ICMP types
555 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
556 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
557 # Drop packets with INVALID state
558 "-m conntrack --ctstate INVALID -j DROP",
559 # Drop Microsoft SMB noise
560 { action => 'PVEFW-reject', proto => 'udp', dport => '135,445', nbdport => 2 },
561 { action => 'PVEFW-reject', proto => 'udp', dport => '137:139'},
562 { action => 'PVEFW-reject', proto => 'udp', dport => '1024:65535', sport => 137 },
563 { action => 'PVEFW-reject', proto => 'tcp', dport => '135,139,445', nbdport => 3 },
564 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
565 # Drop new/NotSyn traffic so that it doesn't get logged
566 "-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN -j DROP",
567 # Drop DNS replies
568 { action => 'DROP', proto => 'udp', sport => 53 },
569 ],
d86659ef
DM
570 'PVEFW-tcpflags' => [
571 # same as shorewall tcpflags action.
572 # Packets arriving on this interface are checked for som illegal combinations of TCP flags
573 "-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG -g PVEFW-logflags",
574 "-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -g PVEFW-logflags",
575 "-p tcp -m tcp --tcp-flags SYN,RST SYN,RST -g PVEFW-logflags",
576 "-p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -g PVEFW-logflags",
577 "-p tcp -m tcp --sport 0 --tcp-flags FIN,SYN,RST,ACK SYN -g PVEFW-logflags",
578 ],
bee633ab
DM
579 'PVEFW-smurfs' => [
580 # same as shorewall smurfs action
581 # Filter packets for smurfs (packets with a broadcast address as the source).
582 "-s 0.0.0.0/32 -j RETURN",
583 "-m addrtype --src-type BROADCAST -g PVEFW-smurflog",
584 "-s 224.0.0.0/4 -g PVEFW-smurflog",
585 ],
d8f2505e
DM
586};
587
4b586518
DM
588# iptables -p icmp -h
589my $icmp_type_names = {
590 any => 1,
591 'echo-reply' => 1,
592 'destination-unreachable' => 1,
593 'network-unreachable' => 1,
594 'host-unreachable' => 1,
595 'protocol-unreachable' => 1,
596 'port-unreachable' => 1,
597 'fragmentation-needed' => 1,
598 'source-route-failed' => 1,
599 'network-unknown' => 1,
600 'host-unknown' => 1,
601 'network-prohibited' => 1,
602 'host-prohibited' => 1,
603 'TOS-network-unreachable' => 1,
604 'TOS-host-unreachable' => 1,
605 'communication-prohibited' => 1,
606 'host-precedence-violation' => 1,
607 'precedence-cutoff' => 1,
608 'source-quench' => 1,
609 'redirect' => 1,
610 'network-redirect' => 1,
611 'host-redirect' => 1,
612 'TOS-network-redirect' => 1,
613 'TOS-host-redirect' => 1,
614 'echo-request' => 1,
615 'router-advertisement' => 1,
616 'router-solicitation' => 1,
617 'time-exceeded' => 1,
618 'ttl-zero-during-transit' => 1,
619 'ttl-zero-during-reassembly' => 1,
620 'parameter-problem' => 1,
621 'ip-header-bad' => 1,
622 'required-option-missing' => 1,
623 'timestamp-request' => 1,
624 'timestamp-reply' => 1,
625 'address-mask-request' => 1,
626 'address-mask-reply' => 1,
627};
628
54cd19a8 629sub init_firewall_macros {
6158271d 630
961b4928 631 $pve_fw_parsed_macros = {};
9aab3127 632
961b4928 633 foreach my $k (keys %$pve_fw_macros) {
e5076eee
DM
634 my $lc_name = lc($k);
635 my $macro = $pve_fw_macros->{$k};
ebd54ae9
DM
636 if (!ref($macro->[0])) {
637 $pve_fw_macro_descr->{$k} = shift @$macro;
638 }
e5076eee
DM
639 $pve_fw_preferred_macro_names->{$lc_name} = $k;
640 $pve_fw_parsed_macros->{$k} = $macro;
961b4928 641 }
9aab3127
DM
642}
643
54cd19a8
DM
644init_firewall_macros();
645
ebd54ae9
DM
646sub get_macros {
647 return wantarray ? ($pve_fw_parsed_macros, $pve_fw_macro_descr): $pve_fw_parsed_macros;
648}
649
fcba0beb
DM
650my $etc_services;
651
652sub get_etc_services {
653
654 return $etc_services if $etc_services;
655
656 my $filename = "/etc/services";
657
658 my $fh = IO::File->new($filename, O_RDONLY);
659 if (!$fh) {
660 warn "unable to read '$filename' - $!\n";
661 return {};
662 }
663
664 my $services = {};
665
666 while (my $line = <$fh>) {
667 chomp ($line);
668 next if $line =~m/^#/;
669 next if ($line =~m/^\s*$/);
670
671 if ($line =~ m!^(\S+)\s+(\S+)/(tcp|udp).*$!) {
672 $services->{byid}->{$2}->{name} = $1;
35b66e9d 673 $services->{byid}->{$2}->{port} = $2;
fcba0beb
DM
674 $services->{byid}->{$2}->{$3} = 1;
675 $services->{byname}->{$1} = $services->{byid}->{$2};
676 }
677 }
678
679 close($fh);
680
6158271d
DM
681 $etc_services = $services;
682
3a616aa0 683
fcba0beb
DM
684 return $etc_services;
685}
686
687my $etc_protocols;
688
689sub get_etc_protocols {
690 return $etc_protocols if $etc_protocols;
691
692 my $filename = "/etc/protocols";
693
694 my $fh = IO::File->new($filename, O_RDONLY);
695 if (!$fh) {
696 warn "unable to read '$filename' - $!\n";
697 return {};
698 }
699
700 my $protocols = {};
701
702 while (my $line = <$fh>) {
703 chomp ($line);
704 next if $line =~m/^#/;
705 next if ($line =~m/^\s*$/);
706
707 if ($line =~ m!^(\S+)\s+(\d+)\s+.*$!) {
708 $protocols->{byid}->{$2}->{name} = $1;
709 $protocols->{byname}->{$1} = $protocols->{byid}->{$2};
710 }
711 }
712
713 close($fh);
714
715 $etc_protocols = $protocols;
716
717 return $etc_protocols;
718}
719
ecbea048
DM
720sub parse_address_list {
721 my ($str) = @_;
722
28311400 723 return if $str =~ m/^(\+)(\S+)$/; # ipset ref
44be8ceb 724 return if $str =~ m/^${ip_alias_pattern}$/;
d72beb8e 725
3162af6b
DM
726 my $count = 0;
727 my $iprange = 0;
728 foreach my $elem (split(/,/, $str)) {
729 $count++;
730 if (!Net::IP->new($elem)) {
ecbea048
DM
731 my $err = Net::IP::Error();
732 die "invalid IP address: $err\n";
733 }
3162af6b 734 $iprange = 1 if $elem =~ m/-/;
ecbea048 735 }
e34d0e58 736
3162af6b 737 die "you can use a range in a list\n" if $iprange && $count > 1;
ecbea048 738}
dddd9413 739
fcba0beb
DM
740sub parse_port_name_number_or_range {
741 my ($str) = @_;
742
743 my $services = PVE::Firewall::get_etc_services();
7ca36671 744 my $count = 0;
041b7e8e
DM
745 my $icmp_port = 0;
746
fcba0beb 747 foreach my $item (split(/,/, $str)) {
7ca36671
DM
748 $count++;
749 if ($item =~ m/^(\d+):(\d+)$/) {
750 my ($port1, $port2) = ($1, $2);
751 die "invalid port '$port1'\n" if $port1 > 65535;
752 die "invalid port '$port2'\n" if $port2 > 65535;
753 } elsif ($item =~ m/^(\d+)$/) {
754 my $port = $1;
755 die "invalid port '$port'\n" if $port > 65535;
756 } else {
041b7e8e
DM
757 if ($icmp_type_names->{$item}) {
758 $icmp_port = 1;
759 } else {
e34d0e58 760 die "invalid port '$item'\n" if !$services->{byname}->{$item};
041b7e8e 761 }
fcba0beb
DM
762 }
763 }
764
041b7e8e
DM
765 die "ICPM ports not allowed in port range\n" if $icmp_port && $count > 1;
766
7ca36671 767 return $count;
fcba0beb
DM
768}
769
54cd19a8
DM
770PVE::JSONSchema::register_format('pve-fw-port-spec', \&pve_fw_verify_port_spec);
771sub pve_fw_verify_port_spec {
772 my ($portstr) = @_;
773
7ca36671 774 parse_port_name_number_or_range($portstr);
54cd19a8
DM
775
776 return $portstr;
777}
778
779PVE::JSONSchema::register_format('pve-fw-v4addr-spec', \&pve_fw_verify_v4addr_spec);
780sub pve_fw_verify_v4addr_spec {
781 my ($list) = @_;
782
783 parse_address_list($list);
784
785 return $list;
786}
787
788PVE::JSONSchema::register_format('pve-fw-protocol-spec', \&pve_fw_verify_protocol_spec);
789sub pve_fw_verify_protocol_spec {
790 my ($proto) = @_;
791
792 my $protocols = get_etc_protocols();
793
794 die "unknown protocol '$proto'\n" if $proto &&
795 !(defined($protocols->{byname}->{$proto}) ||
796 defined($protocols->{byid}->{$proto}));
797
798 return $proto;
799}
800
801
d1c53b3e 802# helper function for API
d1c53b3e 803
5d38d64f
DM
804sub copy_opject_with_digest {
805 my ($object) = @_;
806
807 my $sha = Digest::SHA->new('sha1');
808
809 my $res = {};
810 foreach my $k (sort keys %$object) {
811 my $v = $object->{$k};
0365eb68 812 next if !defined($v);
5d38d64f
DM
813 $res->{$k} = $v;
814 $sha->add($k, ':', $v, "\n");
815 }
816
55e686c7 817 my $digest = $sha->hexdigest;
5d38d64f
DM
818
819 $res->{digest} = $digest;
820
821 return wantarray ? ($res, $digest) : $res;
822}
823
824sub copy_list_with_digest {
825 my ($list) = @_;
826
827 my $sha = Digest::SHA->new('sha1');
828
829 my $res = [];
830 foreach my $entry (@$list) {
831 my $data = {};
832 foreach my $k (sort keys %$entry) {
833 my $v = $entry->{$k};
0365eb68 834 next if !defined($v);
5d38d64f
DM
835 $data->{$k} = $v;
836 $sha->add($k, ':', $v, "\n");
837 }
838 push @$res, $data;
839 }
840
55e686c7 841 my $digest = $sha->hexdigest;
5d38d64f
DM
842
843 foreach my $entry (@$res) {
844 $entry->{digest} = $digest;
845 }
846
847 return wantarray ? ($res, $digest) : $res;
848}
849
9c7e0858
DM
850my $rule_properties = {
851 pos => {
852 description => "Update rule at position <pos>.",
853 type => 'integer',
854 minimum => 0,
855 optional => 1,
856 },
c71e785f 857 digest => get_standard_option('pve-config-digest'),
9c7e0858
DM
858 type => {
859 type => 'string',
860 optional => 1,
861 enum => ['in', 'out', 'group'],
862 },
863 action => {
c14dacdf 864 description => "Rule action ('ACCEPT', 'DROP', 'REJECT') or security group name.",
9c7e0858
DM
865 type => 'string',
866 optional => 1,
44be8ceb 867 pattern => $security_group_name_pattern,
c14dacdf
DM
868 maxLength => 20,
869 minLength => 2,
9c7e0858 870 },
e5076eee
DM
871 macro => {
872 type => 'string',
873 optional => 1,
54cd19a8 874 maxLength => 128,
e5076eee 875 },
54cd19a8 876 iface => get_standard_option('pve-iface', { optional => 1 }),
9c7e0858 877 source => {
54cd19a8 878 type => 'string', format => 'pve-fw-v4addr-spec',
9c7e0858
DM
879 optional => 1,
880 },
881 dest => {
54cd19a8 882 type => 'string', format => 'pve-fw-v4addr-spec',
9c7e0858
DM
883 optional => 1,
884 },
885 proto => {
54cd19a8 886 type => 'string', format => 'pve-fw-protocol-spec',
9c7e0858
DM
887 optional => 1,
888 },
889 enable => {
890 type => 'boolean',
891 optional => 1,
892 },
893 sport => {
54cd19a8 894 type => 'string', format => 'pve-fw-port-spec',
9c7e0858
DM
895 optional => 1,
896 },
897 dport => {
54cd19a8 898 type => 'string', format => 'pve-fw-port-spec',
9c7e0858
DM
899 optional => 1,
900 },
901 comment => {
902 type => 'string',
903 optional => 1,
904 },
905};
906
907sub add_rule_properties {
908 my ($properties) = @_;
909
910 foreach my $k (keys %$rule_properties) {
3655b01f
DM
911 my $h = $rule_properties->{$k};
912 # copy data, so that we can modify later without side effects
913 foreach my $opt (keys %$h) { $properties->{$k}->{$opt} = $h->{$opt}; }
9c7e0858 914 }
cbb5d6f3 915
9c7e0858
DM
916 return $properties;
917}
918
5b7974df
DM
919sub delete_rule_properties {
920 my ($rule, $delete_str) = @_;
e34d0e58 921
5b7974df
DM
922 foreach my $opt (PVE::Tools::split_list($delete_str)) {
923 raise_param_exc({ 'delete' => "no such property ('$opt')"})
924 if !defined($rule_properties->{$opt});
925 raise_param_exc({ 'delete' => "unable to delete required property '$opt'"})
926 if $opt eq 'type' || $opt eq 'action';
927 delete $rule->{$opt};
928 }
929
930 return $rule;
931}
932
9a2745a0
DM
933my $apply_macro = sub {
934 my ($macro_name, $param, $verify) = @_;
935
936 my $macro_rules = $pve_fw_parsed_macros->{$macro_name};
937 die "unknown macro '$macro_name'\n" if !$macro_rules; # should not happen
938
939 my $rules = [];
940
941 foreach my $templ (@$macro_rules) {
942 my $rule = {};
943 my $param_used = {};
944 foreach my $k (keys %$templ) {
945 my $v = $templ->{$k};
946 if ($v eq 'PARAM') {
947 $v = $param->{$k};
948 $param_used->{$k} = 1;
949 } elsif ($v eq 'DEST') {
950 $v = $param->{dest};
951 $param_used->{dest} = 1;
952 } elsif ($v eq 'SOURCE') {
953 $v = $param->{source};
954 $param_used->{source} = 1;
955 }
956
957 if (!defined($v)) {
958 my $msg = "missing parameter '$k' in macro '$macro_name'";
e34d0e58 959 raise_param_exc({ macro => $msg }) if $verify;
9a2745a0
DM
960 die "$msg\n";
961 }
962 $rule->{$k} = $v;
963 }
964 foreach my $k (keys %$param) {
965 next if $k eq 'macro';
966 next if !defined($param->{$k});
967 next if $param_used->{$k};
968 if (defined($rule->{$k})) {
969 if ($rule->{$k} ne $param->{$k}) {
970 my $msg = "parameter '$k' already define in macro (value = '$rule->{$k}')";
e34d0e58 971 raise_param_exc({ $k => $msg }) if $verify;
9a2745a0
DM
972 die "$msg\n";
973 }
974 } else {
975 $rule->{$k} = $param->{$k};
976 }
977 }
978 push @$rules, $rule;
979 }
980
981 return $rules;
982};
983
7ca36671
DM
984sub verify_rule {
985 my ($rule, $allow_groups) = @_;
986
987 my $type = $rule->{type};
988
989 raise_param_exc({ type => "missing property"}) if !$type;
990 raise_param_exc({ action => "missing property"}) if !$rule->{action};
e34d0e58 991
7ca36671
DM
992 if ($type eq 'in' || $type eq 'out') {
993 raise_param_exc({ action => "unknown action '$rule->{action}'"})
994 if $rule->{action} !~ m/^(ACCEPT|DROP|REJECT)$/;
995 } elsif ($type eq 'group') {
e34d0e58 996 raise_param_exc({ type => "security groups not allowed"})
7ca36671 997 if !$allow_groups;
e34d0e58 998 raise_param_exc({ action => "invalid characters in security group name"})
44be8ceb 999 if $rule->{action} !~ m/^${security_group_name_pattern}$/;
7ca36671
DM
1000 } else {
1001 raise_param_exc({ type => "unknown rule type '$type'"});
1002 }
e34d0e58 1003
7ca36671
DM
1004 # fixme: verify $rule->{iface}?
1005
1006 if ($rule->{macro}) {
1007 my $preferred_name = $pve_fw_preferred_macro_names->{lc($rule->{macro})};
1008 raise_param_exc({ macro => "unknown macro '$rule->{macro}'"}) if !$preferred_name;
1009 $rule->{macro} = $preferred_name;
1010 }
1011
1012 if ($rule->{dport}) {
1013 eval { parse_port_name_number_or_range($rule->{dport}); };
1014 raise_param_exc({ dport => $@ }) if $@;
1015 }
1016
1017 if ($rule->{sport}) {
1018 eval { parse_port_name_number_or_range($rule->{sport}); };
1019 raise_param_exc({ sport => $@ }) if $@;
1020 }
1021
1022 if ($rule->{source}) {
1023 eval { parse_address_list($rule->{source}); };
1024 raise_param_exc({ source => $@ }) if $@;
1025 }
1026
1027 if ($rule->{dest}) {
1028 eval { parse_address_list($rule->{dest}); };
1029 raise_param_exc({ dest => $@ }) if $@;
1030 }
1031
9a2745a0
DM
1032 if ($rule->{macro}) {
1033 &$apply_macro($rule->{macro}, $rule, 1);
1034 }
1035
7ca36671
DM
1036 return $rule;
1037}
1038
9c7e0858
DM
1039sub copy_rule_data {
1040 my ($rule, $param) = @_;
1041
1042 foreach my $k (keys %$rule_properties) {
1043 if (defined(my $v = $param->{$k})) {
1044 if ($v eq '' || $v eq '-') {
1045 delete $rule->{$k};
1046 } else {
1047 $rule->{$k} = $v;
1048 }
1049 } else {
1050 delete $rule->{$k};
1051 }
1052 }
7ca36671
DM
1053
1054 # verify rule now
1055
9c7e0858
DM
1056 return $rule;
1057}
1058
1059# core functions
780bcc0f
DM
1060my $bridge_firewall_enabled = 0;
1061
1062sub enable_bridge_firewall {
1063
1064 return if $bridge_firewall_enabled; # only once
1065
5f0a912c
DM
1066 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/bridge/bridge-nf-call-iptables", "1");
1067 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/bridge/bridge-nf-call-ip6tables", "1");
780bcc0f 1068
6a8a75db
DM
1069 # make sure syncookies are enabled (which is default on newer 3.X kernels anyways)
1070 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/ipv4/tcp_syncookies", "1");
1071
780bcc0f
DM
1072 $bridge_firewall_enabled = 1;
1073}
1074
8cebfa6f 1075my $rule_format = "%-15s %-30s %-30s %-15s %-15s %-15s\n";
dddd9413 1076
b16e818e
DM
1077sub iptables_restore_cmdlist {
1078 my ($cmdlist) = @_;
3a616aa0 1079
3fa83edf 1080 run_command("/sbin/iptables-restore -n", input => $cmdlist);
3a616aa0
AD
1081}
1082
34cdedfa
AD
1083sub ipset_restore_cmdlist {
1084 my ($cmdlist) = @_;
1085
dd7a13fd 1086 run_command("/usr/sbin/ipset restore", input => $cmdlist);
34cdedfa
AD
1087}
1088
de2a57cd
DM
1089sub iptables_get_chains {
1090
1091 my $res = {};
1092
1093 # check what chains we want to track
1094 my $is_pvefw_chain = sub {
1095 my $name = shift;
1096
dec84fcd
DM
1097 return 1 if $name =~ m/^PVEFW-\S+$/;
1098
de2a57cd 1099 return 1 if $name =~ m/^tap\d+i\d+-(:?IN|OUT)$/;
954f24b1
DM
1100
1101 return 1 if $name =~ m/^veth\d+.\d+-(:?IN|OUT)$/; # fixme: dev name is configurable
1102
9e15114a
DM
1103 return 1 if $name =~ m/^venet0-\d+-(:?IN|OUT)$/;
1104
a01c32c7 1105 return 1 if $name =~ m/^fwbr\d+(v\d+)?-(:?FW|IN|OUT|IPS)$/;
f50656c2 1106 return 1 if $name =~ m/^GROUP-(:?[^\s\-]+)-(:?IN|OUT)$/;
de2a57cd
DM
1107
1108 return undef;
1109 };
1110
1111 my $table = '';
1112
c4a2e5ae
DM
1113 my $hooks = {};
1114
de2a57cd
DM
1115 my $parser = sub {
1116 my $line = shift;
1117
1118 return if $line =~ m/^#/;
1119 return if $line =~ m/^\s*$/;
1120
1121 if ($line =~ m/^\*(\S+)$/) {
1122 $table = $1;
1123 return;
1124 }
1125
1126 return if $table ne 'filter';
1127
1128 if ($line =~ m/^:(\S+)\s/) {
1129 my $chain = $1;
1130 return if !&$is_pvefw_chain($chain);
3fa83edf 1131 $res->{$chain} = "unknown";
09d5f68e 1132 } elsif ($line =~ m/^-A\s+(\S+)\s.*--comment\s+\"PVESIG:(\S+)\"/) {
3fa83edf 1133 my ($chain, $sig) = ($1, $2);
de2a57cd 1134 return if !&$is_pvefw_chain($chain);
3fa83edf 1135 $res->{$chain} = $sig;
c4a2e5ae
DM
1136 } elsif ($line =~ m/^-A\s+(INPUT|OUTPUT|FORWARD)\s+-j\s+PVEFW-\1$/) {
1137 $hooks->{$1} = 1;
de2a57cd
DM
1138 } else {
1139 # simply ignore the rest
1140 return;
1141 }
1142 };
1143
1144 run_command("/sbin/iptables-save", outfunc => $parser);
1145
c4a2e5ae 1146 return wantarray ? ($res, $hooks) : $res;
de2a57cd
DM
1147}
1148
9bf7d929
DM
1149sub iptables_chain_digest {
1150 my ($rules) = @_;
1151 my $digest = Digest::SHA->new('sha1');
1152 foreach my $rule (@$rules) { # order is important
1153 $digest->add($rule);
1154 }
1155 return $digest->b64digest;
1156}
1157
3f95d14a
DM
1158sub ipset_chain_digest {
1159 my ($rules) = @_;
4bd0a9c4 1160
3f95d14a
DM
1161 my $digest = Digest::SHA->new('sha1');
1162 foreach my $rule (sort @$rules) { # note: sorted
1163 $digest->add($rule);
1164 }
1165 return $digest->b64digest;
1166}
1167
34cdedfa
AD
1168sub ipset_get_chains {
1169
1170 my $res = {};
1171 my $chains = {};
1172
1173 my $parser = sub {
1174 my $line = shift;
1175
1176 return if $line =~ m/^#/;
1177 return if $line =~ m/^\s*$/;
4b96e877 1178 if ($line =~ m/^(?:\S+)\s(PVEFW-\S+)\s(?:\S+).*/) {
81a0bf43
DM
1179 my $chain = $1;
1180 $line =~ s/\s+$//; # delete trailing white space
1181 push @{$chains->{$chain}}, $line;
34cdedfa
AD
1182 } else {
1183 # simply ignore the rest
1184 return;
1185 }
1186 };
1187
3f95d14a 1188 run_command("/usr/sbin/ipset save", outfunc => $parser);
34cdedfa 1189
3f95d14a
DM
1190 # compute digest for each chain
1191 foreach my $chain (keys %$chains) {
1192 $res->{$chain} = ipset_chain_digest($chains->{$chain});
34cdedfa
AD
1193 }
1194
1195 return $res;
1196}
1197
eba0fb64 1198sub ruleset_generate_cmdstr {
ba791b1f 1199 my ($ruleset, $chain, $rule, $actions, $goto, $cluster_conf) = @_;
3a616aa0 1200
00bb4391 1201 return if defined($rule->{enable}) && !$rule->{enable};
11bac5c2 1202
e5076eee
DM
1203 die "unable to emit macro - internal error" if $rule->{macro}; # should not happen
1204
1205 my $nbdport = defined($rule->{dport}) ? parse_port_name_number_or_range($rule->{dport}) : 0;
1206 my $nbsport = defined($rule->{sport}) ? parse_port_name_number_or_range($rule->{sport}) : 0;
e5076eee 1207
41524a58 1208 my @cmd = ();
3a616aa0 1209
eba0fb64
DM
1210 push @cmd, "-i $rule->{iface_in}" if $rule->{iface_in};
1211 push @cmd, "-o $rule->{iface_out}" if $rule->{iface_out};
1212
ba791b1f
AD
1213 my $source = $rule->{source};
1214 my $dest = $rule->{dest};
1215
cbb5d6f3 1216 if ($source) {
44be8ceb
DM
1217 if ($source =~ m/^\+/) {
1218 if ($source =~ m/^\+(${security_group_name_pattern})$/) {
1219 die "no such ipset '$1'\n" if !$cluster_conf->{ipset}->{$1};
1220 push @cmd, "-m set --match-set PVEFW-$1 src";
1221 } else {
1222 die "invalid security group name '$source'\n";
1223 }
1224 } elsif ($source =~ m/^${ip_alias_pattern}$/){
81d574a7
DM
1225 my $alias = lc($source);
1226 my $e = $cluster_conf->{aliases}->{$alias};
1227 die "no such alias $source\n" if !$e;
1228 push @cmd, "-s $e->{cidr}";
ac8242cc 1229 } elsif ($source =~ m/\-/){
ba791b1f
AD
1230 push @cmd, "-m iprange --src-range $source";
1231
cbb5d6f3 1232 } else {
ba791b1f
AD
1233 push @cmd, "-s $source";
1234 }
1235 }
1236
cbb5d6f3 1237 if ($dest) {
44be8ceb
DM
1238 if ($dest =~ m/^\+/) {
1239 if ($dest =~ m/^\+(${security_group_name_pattern})$/) {
1240 die "no such ipset '$1'\n" if !$cluster_conf->{ipset}->{$1};
1241 push @cmd, "-m set --match-set PVEFW-$1 dst";
1242 } else {
1243 die "invalid security group name '$dest'\n";
1244 }
1245 } elsif ($dest =~ m/^${ip_alias_pattern}$/){
81d574a7
DM
1246 my $alias = lc($source);
1247 my $e = $cluster_conf->{aliases}->{$alias};
1248 die "no such alias $dest" if !$e;
1249 push @cmd, "-d $e->{cidr}";
cbb5d6f3 1250 } elsif ($dest =~ m/^(\d+)\.(\d+).(\d+).(\d+)\-(\d+)\.(\d+).(\d+).(\d+)$/){
ba791b1f
AD
1251 push @cmd, "-m iprange --dst-range $dest";
1252
cbb5d6f3 1253 } else {
d6d2a385 1254 push @cmd, "-d $dest";
ba791b1f
AD
1255 }
1256 }
4b586518 1257
181390b0 1258 if ($rule->{proto}) {
41524a58 1259 push @cmd, "-p $rule->{proto}";
e3a1d391 1260
181390b0 1261 my $multiport = 0;
e5076eee
DM
1262 $multiport++ if $nbdport > 1;
1263 $multiport++ if $nbsport > 1;
e3a1d391 1264
41524a58 1265 push @cmd, "--match multiport" if $multiport;
4b586518 1266
cbb5d6f3 1267 die "multiport: option '--sports' cannot be used together with '--dports'\n"
181390b0
DM
1268 if ($multiport == 2) && ($rule->{dport} ne $rule->{sport});
1269
1270 if ($rule->{dport}) {
1271 if ($rule->{proto} && $rule->{proto} eq 'icmp') {
1272 # Note: we use dport to store --icmp-type
1273 die "unknown icmp-type '$rule->{dport}'\n" if !defined($icmp_type_names->{$rule->{dport}});
41524a58 1274 push @cmd, "-m icmp --icmp-type $rule->{dport}";
181390b0 1275 } else {
e5076eee 1276 if ($nbdport > 1) {
181390b0 1277 if ($multiport == 2) {
41524a58 1278 push @cmd, "--ports $rule->{dport}";
181390b0 1279 } else {
41524a58 1280 push @cmd, "--dports $rule->{dport}";
181390b0 1281 }
e3a1d391 1282 } else {
41524a58 1283 push @cmd, "--dport $rule->{dport}";
e3a1d391 1284 }
4b586518
DM
1285 }
1286 }
4b586518 1287
181390b0 1288 if ($rule->{sport}) {
e5076eee 1289 if ($nbsport > 1) {
41524a58 1290 push @cmd, "--sports $rule->{sport}" if $multiport != 2;
181390b0 1291 } else {
41524a58 1292 push @cmd, "--sport $rule->{sport}";
181390b0 1293 }
4b586518 1294 }
181390b0
DM
1295 } elsif ($rule->{dport} || $rule->{sport}) {
1296 warn "ignoring destination port '$rule->{dport}' - no protocol specified\n" if $rule->{dport};
1297 warn "ignoring source port '$rule->{sport}' - no protocol specified\n" if $rule->{sport};
4b586518
DM
1298 }
1299
41524a58 1300 push @cmd, "-m addrtype --dst-type $rule->{dsttype}" if $rule->{dsttype};
4e6112f9
DM
1301
1302 if (my $action = $rule->{action}) {
cbb5d6f3 1303 $action = $actions->{$action} if defined($actions->{$action});
4e6112f9 1304 $goto = 1 if !defined($goto) && $action eq 'PVEFW-SET-ACCEPT-MARK';
41524a58 1305 push @cmd, $goto ? "-g $action" : "-j $action";
181390b0 1306 }
3a616aa0 1307
eba0fb64
DM
1308 return scalar(@cmd) ? join(' ', @cmd) : undef;
1309}
1310
1311sub ruleset_generate_rule {
ba791b1f 1312 my ($ruleset, $chain, $rule, $actions, $goto, $cluster_conf) = @_;
eba0fb64 1313
e5076eee
DM
1314 my $rules;
1315
1316 if ($rule->{macro}) {
1317 $rules = &$apply_macro($rule->{macro}, $rule);
1318 } else {
1319 $rules = [ $rule ];
1320 }
1321
d4091b82
DM
1322 # update all or nothing
1323
1324 my @cmds = ();
cbb5d6f3 1325 foreach my $tmp (@$rules) {
ba791b1f 1326 if (my $cmdstr = ruleset_generate_cmdstr($ruleset, $chain, $tmp, $actions, $goto, $cluster_conf)) {
d4091b82 1327 push @cmds, $cmdstr;
e5076eee 1328 }
41524a58 1329 }
d4091b82
DM
1330
1331 foreach my $cmdstr (@cmds) {
1332 ruleset_addrule($ruleset, $chain, $cmdstr);
1333 }
3fa83edf 1334}
0f168d7b 1335
eba0fb64
DM
1336sub ruleset_generate_rule_insert {
1337 my ($ruleset, $chain, $rule, $actions, $goto) = @_;
1338
e5076eee
DM
1339 die "implement me" if $rule->{macro}; # not implemented, because not needed so far
1340
eba0fb64
DM
1341 if (my $cmdstr = ruleset_generate_cmdstr($ruleset, $chain, $rule, $actions, $goto)) {
1342 ruleset_insertrule($ruleset, $chain, $cmdstr);
1343 }
1344}
3fa83edf
DM
1345
1346sub ruleset_create_chain {
1347 my ($ruleset, $chain) = @_;
3a616aa0 1348
d050c724 1349 die "Invalid chain name '$chain' (28 char max)\n" if length($chain) > 28;
782c4cde 1350 die "chain name may not contain collons\n" if $chain =~ m/:/; # because of log format
d050c724 1351
3fa83edf
DM
1352 die "chain '$chain' already exists\n" if $ruleset->{$chain};
1353
1354 $ruleset->{$chain} = [];
3a616aa0
AD
1355}
1356
3fa83edf
DM
1357sub ruleset_chain_exist {
1358 my ($ruleset, $chain) = @_;
3a616aa0 1359
3fa83edf
DM
1360 return $ruleset->{$chain} ? 1 : undef;
1361}
3a616aa0 1362
3fa83edf
DM
1363sub ruleset_addrule {
1364 my ($ruleset, $chain, $rule) = @_;
3a616aa0 1365
3fa83edf 1366 die "no such chain '$chain'\n" if !$ruleset->{$chain};
3a616aa0 1367
3fa83edf
DM
1368 push @{$ruleset->{$chain}}, "-A $chain $rule";
1369}
3a616aa0 1370
3fa83edf
DM
1371sub ruleset_insertrule {
1372 my ($ruleset, $chain, $rule) = @_;
3a616aa0 1373
3fa83edf 1374 die "no such chain '$chain'\n" if !$ruleset->{$chain};
3a616aa0 1375
3fa83edf
DM
1376 unshift @{$ruleset->{$chain}}, "-A $chain $rule";
1377}
3a616aa0 1378
782c4cde
DM
1379sub get_log_rule_base {
1380 my ($chain, $vmid, $msg, $loglevel) = @_;
cbb5d6f3 1381
782c4cde
DM
1382 die "internal error - no log level" if !defined($loglevel);
1383
1384 $vmid = 0 if !defined($vmid);
1385
cbb5d6f3 1386 # Note: we use special format for prefix to pass further
782c4cde
DM
1387 # info to log daemon (VMID, LOGVELEL and CHAIN)
1388
1389 return "-j NFLOG --nflog-prefix \":$vmid:$loglevel:$chain: $msg\"";
1390}
1391
1392sub ruleset_addlog {
1393 my ($ruleset, $chain, $vmid, $msg, $loglevel, $rule) = @_;
1394
1395 return if !defined($loglevel);
1396
1397 my $logrule = get_log_rule_base($chain, $vmid, $msg, $loglevel);
1398
1399 $logrule = "$rule $logrule" if defined($rule);
1400
88733a74 1401 ruleset_addrule($ruleset, $chain, $logrule);
782c4cde
DM
1402}
1403
ead850e8 1404sub ruleset_add_chain_policy {
782c4cde 1405 my ($ruleset, $chain, $vmid, $policy, $loglevel, $accept_action) = @_;
ead850e8
DM
1406
1407 if ($policy eq 'ACCEPT') {
1408
1409 ruleset_generate_rule($ruleset, $chain, { action => 'ACCEPT' },
1410 { ACCEPT => $accept_action});
1411
1412 } elsif ($policy eq 'DROP') {
1413
1414 ruleset_addrule($ruleset, $chain, "-j PVEFW-Drop");
1415
782c4cde 1416 ruleset_addlog($ruleset, $chain, $vmid, "policy $policy: ", $loglevel);
ead850e8
DM
1417
1418 ruleset_addrule($ruleset, $chain, "-j DROP");
1419 } elsif ($policy eq 'REJECT') {
1420 ruleset_addrule($ruleset, $chain, "-j PVEFW-Reject");
1421
782c4cde 1422 ruleset_addlog($ruleset, $chain, $vmid, "policy $policy: ", $loglevel);
ead850e8
DM
1423
1424 ruleset_addrule($ruleset, $chain, "-g PVEFW-reject");
1425 } else {
1426 # should not happen
1427 die "internal error: unknown policy '$policy'";
1428 }
1429}
1430
e2943485
DM
1431sub ruleset_chain_add_conn_filters {
1432 my ($ruleset, $chain, $accept) = @_;
1433
1434 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID -j DROP");
1435 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED -j $accept");
1436}
1437
1438sub ruleset_chain_add_input_filters {
2428e394
AD
1439 my ($ruleset, $chain, $options, $cluster_conf, $loglevel) = @_;
1440
1441 if ($cluster_conf->{ipset}->{blacklist}){
1442 ruleset_addlog($ruleset, $chain, 0, "DROP: ", $loglevel, "-m set --match-set PVEFW-blacklist src");
1443 ruleset_addrule($ruleset, $chain, "-m set --match-set PVEFW-blacklist src -j DROP");
1444 }
e2943485
DM
1445
1446 if (!(defined($options->{nosmurfs}) && $options->{nosmurfs} == 0)) {
1447 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID,NEW -j PVEFW-smurfs");
1448 }
1449
1450 if ($options->{tcpflags}) {
1451 ruleset_addrule($ruleset, $chain, "-p tcp -j PVEFW-tcpflags");
1452 }
1453}
1454
9e15114a 1455sub ruleset_create_vm_chain {
6bafd113 1456 my ($ruleset, $chain, $options, $host_options, $macaddr, $direction) = @_;
3a616aa0 1457
9e15114a 1458 ruleset_create_chain($ruleset, $chain);
b47ecc88 1459 my $accept = generate_nfqueue($options);
3a616aa0 1460
ce15d90b 1461 if (!(defined($options->{dhcp}) && $options->{dhcp} == 0)) {
76a2d1e7 1462 if ($direction eq 'OUT') {
cbb5d6f3 1463 ruleset_generate_rule($ruleset, $chain, { action => 'PVEFW-SET-ACCEPT-MARK',
0f168d7b 1464 proto => 'udp', sport => 68, dport => 67 });
76a2d1e7 1465 } else {
cbb5d6f3 1466 ruleset_generate_rule($ruleset, $chain, { action => 'ACCEPT',
0f168d7b 1467 proto => 'udp', sport => 67, dport => 68 });
76a2d1e7 1468 }
ce15d90b
DM
1469 }
1470
b21aca2c
DM
1471 if ($direction eq 'OUT') {
1472 if (defined($macaddr) && !(defined($options->{macfilter}) && $options->{macfilter} == 0)) {
9e15114a 1473 ruleset_addrule($ruleset, $chain, "-m mac ! --mac-source $macaddr -j DROP");
b21aca2c 1474 }
9e15114a 1475 ruleset_addrule($ruleset, $chain, "-j MARK --set-mark 0"); # clear mark
c29f55c9 1476 }
9e15114a
DM
1477}
1478
1479sub ruleset_generate_vm_rules {
fca39c2c 1480 my ($ruleset, $rules, $cluster_conf, $chain, $netid, $direction, $options) = @_;
9e15114a
DM
1481
1482 my $lc_direction = lc($direction);
c29f55c9 1483
6b8ca015
DM
1484 my $in_accept = generate_nfqueue($options);
1485
92e976b3
DM
1486 foreach my $rule (@$rules) {
1487 next if $rule->{iface} && $rule->{iface} ne $netid;
ea9e5116 1488 next if !$rule->{enable};
92e976b3 1489 if ($rule->{type} eq 'group') {
cbb5d6f3 1490 my $group_chain = "GROUP-$rule->{action}-$direction";
92e976b3 1491 if(!ruleset_chain_exist($ruleset, $group_chain)){
fca39c2c 1492 generate_group_rules($ruleset, $cluster_conf, $rule->{action});
92e976b3 1493 }
9e15114a 1494 ruleset_addrule($ruleset, $chain, "-j $group_chain");
b47ecc88
AD
1495 if ($direction eq 'OUT'){
1496 ruleset_addrule($ruleset, $chain, "-m mark --mark 1 -j RETURN");
1497 }else{
1498 my $accept = generate_nfqueue($options);
1499 ruleset_addrule($ruleset, $chain, "-m mark --mark 1 -j $accept");
1500 }
1501
92e976b3
DM
1502 } else {
1503 next if $rule->{type} ne $lc_direction;
921dfb33
DM
1504 eval {
1505 if ($direction eq 'OUT') {
1506 ruleset_generate_rule($ruleset, $chain, $rule,
e34d0e58 1507 { ACCEPT => "PVEFW-SET-ACCEPT-MARK", REJECT => "PVEFW-reject" },
921dfb33
DM
1508 undef, $cluster_conf);
1509 } else {
e34d0e58
DM
1510 ruleset_generate_rule($ruleset, $chain, $rule,
1511 { ACCEPT => $in_accept , REJECT => "PVEFW-reject" },
921dfb33
DM
1512 undef, $cluster_conf);
1513 }
1514 };
1515 warn $@ if $@;
4e6112f9 1516 }
3a616aa0 1517 }
9e15114a
DM
1518}
1519
b47ecc88
AD
1520sub generate_nfqueue {
1521 my ($options) = @_;
1522
73089769
DM
1523 if ($options->{ips}) {
1524 my $action = "NFQUEUE";
1525 if ($options->{ips_queues} && $options->{ips_queues} =~ m/^(\d+)(:(\d+))?$/) {
1526 if (defined($3) && defined($1)) {
b47ecc88 1527 $action .= " --queue-balance $1:$3";
73089769 1528 } elsif (defined($1)) {
b47ecc88
AD
1529 $action .= " --queue-num $1";
1530 }
1531 }
8dc92812 1532 $action .= " --queue-bypass" if $feature_ipset_nomatch; #need kernel 3.10
73089769
DM
1533 return $action;
1534 } else {
1535 return "ACCEPT";
b47ecc88 1536 }
b47ecc88
AD
1537}
1538
da6fc60b 1539sub ruleset_generate_vm_ipsrules {
a01c32c7 1540 my ($ruleset, $options, $direction, $iface) = @_;
da6fc60b
AD
1541
1542 if ($options->{ips} && $direction eq 'IN') {
1543 my $nfqueue = generate_nfqueue($options);
1544
a01c32c7 1545 if (!ruleset_chain_exist($ruleset, "PVEFW-IPS")) {
da6fc60b
AD
1546 ruleset_create_chain($ruleset, "PVEFW-IPS");
1547 }
1548
a01c32c7 1549 ruleset_addrule($ruleset, "PVEFW-IPS", "-m physdev --physdev-out $iface --physdev-is-bridged -j $nfqueue");
da6fc60b
AD
1550 }
1551}
1552
9e15114a 1553sub generate_venet_rules_direction {
6bafd113 1554 my ($ruleset, $cluster_conf, $hostfw_conf, $vmfw_conf, $vmid, $ip, $direction) = @_;
9e15114a 1555
5176619e 1556 parse_address_list($ip); # make sure we have a valid $ip list
9e15114a
DM
1557
1558 my $lc_direction = lc($direction);
1559
1560 my $rules = $vmfw_conf->{rules};
1561
1562 my $options = $vmfw_conf->{options};
6bafd113 1563 my $hostfw_options = $vmfw_conf->{options};
9e15114a
DM
1564 my $loglevel = get_option_log_level($options, "log_level_${lc_direction}");
1565
1566 my $chain = "venet0-$vmid-$direction";
1567
6bafd113 1568 ruleset_create_vm_chain($ruleset, $chain, $options, $hostfw_options, undef, $direction);
9e15114a 1569
fca39c2c 1570 ruleset_generate_vm_rules($ruleset, $rules, $cluster_conf, $chain, 'venet', $direction);
9e15114a
DM
1571
1572 # implement policy
1573 my $policy;
1574
1575 if ($direction eq 'OUT') {
1576 $policy = $options->{policy_out} || 'ACCEPT'; # allow everything by default
1577 } else {
1578 $policy = $options->{policy_in} || 'DROP'; # allow nothing by default
1579 }
1580
b47ecc88
AD
1581 my $accept = generate_nfqueue($options);
1582 my $accept_action = $direction eq 'OUT' ? "PVEFW-SET-ACCEPT-MARK" : $accept;
782c4cde 1583 ruleset_add_chain_policy($ruleset, $chain, $vmid, $policy, $loglevel, $accept_action);
9e15114a 1584
eba0fb64 1585 if ($direction eq 'OUT') {
41389aed 1586 ruleset_generate_rule_insert($ruleset, "PVEFW-VENET-OUT", {
eba0fb64
DM
1587 action => $chain,
1588 source => $ip,
1589 iface_in => 'venet0'});
1590 } else {
41389aed 1591 ruleset_generate_rule($ruleset, "PVEFW-VENET-IN", {
eba0fb64
DM
1592 action => $chain,
1593 dest => $ip,
1594 iface_out => 'venet0'});
1595 }
9e15114a
DM
1596}
1597
1598sub generate_tap_rules_direction {
a01c32c7 1599 my ($ruleset, $cluster_conf, $hostfw_conf, $iface, $netid, $macaddr, $vmfw_conf, $vmid, $direction) = @_;
9e15114a
DM
1600
1601 my $lc_direction = lc($direction);
1602
1603 my $rules = $vmfw_conf->{rules};
1604
1605 my $options = $vmfw_conf->{options};
6bafd113 1606 my $hostfw_options = $hostfw_conf->{options};
9e15114a
DM
1607 my $loglevel = get_option_log_level($options, "log_level_${lc_direction}");
1608
1609 my $tapchain = "$iface-$direction";
1610
6bafd113 1611 ruleset_create_vm_chain($ruleset, $tapchain, $options, $hostfw_options, $macaddr, $direction);
9e15114a 1612
fca39c2c 1613 ruleset_generate_vm_rules($ruleset, $rules, $cluster_conf, $tapchain, $netid, $direction, $options);
3a616aa0 1614
a01c32c7 1615 ruleset_generate_vm_ipsrules($ruleset, $options, $direction, $iface);
da6fc60b 1616
ccae0b50
DM
1617 # implement policy
1618 my $policy;
1619
1620 if ($direction eq 'OUT') {
72f63fde 1621 $policy = $options->{policy_out} || 'ACCEPT'; # allow everything by default
ccae0b50 1622 } else {
72f63fde 1623 $policy = $options->{policy_in} || 'DROP'; # allow nothing by default
ccae0b50
DM
1624 }
1625
b47ecc88
AD
1626 my $accept = generate_nfqueue($options);
1627 my $accept_action = $direction eq 'OUT' ? "PVEFW-SET-ACCEPT-MARK" : $accept;
782c4cde 1628 ruleset_add_chain_policy($ruleset, $tapchain, $vmid, $policy, $loglevel, $accept_action);
3a616aa0 1629
3fa83edf 1630 # plug the tap chain to bridge chain
3cc81077 1631 if ($direction eq 'IN') {
a01c32c7
DM
1632 ruleset_addrule($ruleset, "PVEFW-FWBR-IN",
1633 "-m physdev --physdev-is-bridged --physdev-out $iface -j $tapchain");
3cc81077 1634 } else {
a01c32c7
DM
1635 ruleset_addrule($ruleset, "PVEFW-FWBR-OUT",
1636 "-m physdev --physdev-is-bridged --physdev-in $iface -j $tapchain");
3cc81077 1637 }
3a616aa0
AD
1638}
1639
d18c1e2b 1640sub enable_host_firewall {
fca39c2c 1641 my ($ruleset, $hostfw_conf, $cluster_conf) = @_;
0bd5f137 1642
92e976b3 1643 my $options = $hostfw_conf->{options};
63324b09 1644 my $cluster_options = $cluster_conf->{options};
92e976b3 1645 my $rules = $hostfw_conf->{rules};
35f0c37e 1646 my $cluster_rules = $cluster_conf->{rules};
178a63be 1647
3fa83edf 1648 # host inbound firewall
dec84fcd
DM
1649 my $chain = "PVEFW-HOST-IN";
1650 ruleset_create_chain($ruleset, $chain);
0bd5f137 1651
178a63be
DM
1652 my $loglevel = get_option_log_level($options, "log_level_in");
1653
e2943485 1654 ruleset_addrule($ruleset, $chain, "-i lo -j ACCEPT");
4ac863a6 1655
e2943485 1656 ruleset_chain_add_conn_filters($ruleset, $chain, 'ACCEPT');
2428e394 1657 ruleset_chain_add_input_filters($ruleset, $chain, $options, $cluster_conf, $loglevel);
fb424a00 1658
dec84fcd 1659 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST -j ACCEPT");
97156ecc 1660 ruleset_addrule($ruleset, $chain, "-p udp -m conntrack --ctstate NEW --dport 5404:5405 -j ACCEPT");
dec84fcd 1661 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 9000 -j ACCEPT"); #corosync
0bd5f137 1662
23e888f8
DM
1663 # we use RETURN because we need to check also tap rules
1664 my $accept_action = 'RETURN';
1665
35f0c37e
DM
1666 # add host rules first, so that cluster wide rules can be overwritten
1667 foreach my $rule (@$rules, @$cluster_rules) {
92e976b3 1668 next if $rule->{type} ne 'in';
ffc0453b 1669 $rule->{iface_in} = $rule->{iface} if $rule->{iface};
ba791b1f 1670 ruleset_generate_rule($ruleset, $chain, $rule, { ACCEPT => $accept_action, REJECT => "PVEFW-reject" }, undef, $cluster_conf);
0bd5f137
AD
1671 }
1672
23e888f8 1673 # implement input policy
63324b09 1674 my $policy = $cluster_options->{policy_in} || 'DROP'; # allow nothing by default
782c4cde 1675 ruleset_add_chain_policy($ruleset, $chain, 0, $policy, $loglevel, $accept_action);
0bd5f137 1676
3fa83edf 1677 # host outbound firewall
aadd745e 1678 $chain = "PVEFW-HOST-OUT";
dec84fcd
DM
1679 ruleset_create_chain($ruleset, $chain);
1680
178a63be
DM
1681 $loglevel = get_option_log_level($options, "log_level_out");
1682
dec84fcd 1683 ruleset_addrule($ruleset, $chain, "-o lo -j ACCEPT");
e2943485
DM
1684
1685 ruleset_chain_add_conn_filters($ruleset, $chain, 'ACCEPT');
1686
dec84fcd 1687 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST -j ACCEPT");
97156ecc 1688 ruleset_addrule($ruleset, $chain, "-p udp -m conntrack --ctstate NEW --dport 5404:5405 -j ACCEPT");
dec84fcd 1689 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 9000 -j ACCEPT"); #corosync
0bd5f137 1690
23e888f8
DM
1691 # we use RETURN because we may want to check other thigs later
1692 $accept_action = 'RETURN';
1693
35f0c37e
DM
1694 # add host rules first, so that cluster wide rules can be overwritten
1695 foreach my $rule (@$rules, @$cluster_rules) {
92e976b3 1696 next if $rule->{type} ne 'out';
ffc0453b 1697 $rule->{iface_out} = $rule->{iface} if $rule->{iface};
ba791b1f 1698 ruleset_generate_rule($ruleset, $chain, $rule, { ACCEPT => $accept_action, REJECT => "PVEFW-reject" }, undef, $cluster_conf);
0bd5f137
AD
1699 }
1700
23e888f8 1701 # implement output policy
63324b09 1702 $policy = $cluster_options->{policy_out} || 'ACCEPT'; # allow everything by default
782c4cde 1703 ruleset_add_chain_policy($ruleset, $chain, 0, $policy, $loglevel, $accept_action);
6158271d 1704
dec84fcd
DM
1705 ruleset_addrule($ruleset, "PVEFW-OUTPUT", "-j PVEFW-HOST-OUT");
1706 ruleset_addrule($ruleset, "PVEFW-INPUT", "-j PVEFW-HOST-IN");
9d31b418
AD
1707}
1708
1709sub generate_group_rules {
fca39c2c 1710 my ($ruleset, $cluster_conf, $group) = @_;
c6f5cc88 1711 die "no such security group '$group'\n" if !$cluster_conf->{groups}->{$group};
9d31b418 1712
c6f5cc88 1713 my $rules = $cluster_conf->{groups}->{$group};
6158271d 1714
3fa83edf 1715 my $chain = "GROUP-${group}-IN";
9d31b418 1716
3fa83edf 1717 ruleset_create_chain($ruleset, $chain);
b47ecc88 1718 ruleset_addrule($ruleset, $chain, "-j MARK --set-mark 0"); # clear mark
9d31b418 1719
92e976b3
DM
1720 foreach my $rule (@$rules) {
1721 next if $rule->{type} ne 'in';
ba791b1f 1722 ruleset_generate_rule($ruleset, $chain, $rule, { ACCEPT => "PVEFW-SET-ACCEPT-MARK", REJECT => "PVEFW-reject" }, undef, $cluster_conf);
9d31b418
AD
1723 }
1724
3fa83edf 1725 $chain = "GROUP-${group}-OUT";
9d31b418 1726
3fa83edf 1727 ruleset_create_chain($ruleset, $chain);
4e6112f9 1728 ruleset_addrule($ruleset, $chain, "-j MARK --set-mark 0"); # clear mark
9d31b418 1729
92e976b3
DM
1730 foreach my $rule (@$rules) {
1731 next if $rule->{type} ne 'out';
1732 # we use PVEFW-SET-ACCEPT-MARK (Instead of ACCEPT) because we need to
1733 # check also other tap rules later
cbb5d6f3 1734 ruleset_generate_rule($ruleset, $chain, $rule,
ba791b1f 1735 { ACCEPT => 'PVEFW-SET-ACCEPT-MARK', REJECT => "PVEFW-reject" }, undef, $cluster_conf);
9d31b418 1736 }
9d31b418
AD
1737}
1738
51bae274
DM
1739my $MAX_NETS = 32;
1740my $valid_netdev_names = {};
1741for (my $i = 0; $i < $MAX_NETS; $i++) {
1742 $valid_netdev_names->{"net$i"} = 1;
1743}
5e1267a5 1744
51bae274
DM
1745sub parse_fw_rule {
1746 my ($line, $need_iface, $allow_groups) = @_;
5e1267a5 1747
92e976b3 1748 my ($type, $action, $iface, $source, $dest, $proto, $dport, $sport);
51bae274 1749
11bac5c2 1750 # we can add single line comments to the end of the rule
30c1ae52 1751 my $comment = decode('utf8', $1) if $line =~ s/#\s*(.*?)\s*$//;
11bac5c2
DM
1752
1753 # we can disable a rule when prefixed with '|'
ea9e5116
DM
1754 my $enable = 1;
1755
1756 $enable = 0 if $line =~ s/^\|//;
51bae274
DM
1757
1758 my @data = split(/\s+/, $line);
92e976b3 1759 my $expected_elements = $need_iface ? 8 : 7;
51bae274
DM
1760
1761 die "wrong number of rule elements\n" if scalar(@data) > $expected_elements;
1762
1763 if ($need_iface) {
92e976b3 1764 ($type, $action, $iface, $source, $dest, $proto, $dport, $sport) = @data
51bae274 1765 } else {
92e976b3 1766 ($type, $action, $source, $dest, $proto, $dport, $sport) = @data;
51bae274
DM
1767 }
1768
92e976b3 1769 die "incomplete rule\n" if ! ($type && $action);
51bae274 1770
961b4928 1771 my $macro;
961b4928 1772
92e976b3
DM
1773 $type = lc($type);
1774
1775 if ($type eq 'in' || $type eq 'out') {
1776 if ($action =~ m/^(ACCEPT|DROP|REJECT)$/) {
1777 # OK
1778 } elsif ($action =~ m/^(\S+)\((ACCEPT|DROP|REJECT)\)$/) {
e5076eee
DM
1779 $action = $2;
1780 my $preferred_name = $pve_fw_preferred_macro_names->{lc($1)};
1781 die "unknown macro '$1'\n" if !$preferred_name;
1782 $macro = $preferred_name;
92e976b3
DM
1783 } else {
1784 die "unknown action '$action'\n";
1785 }
1786 } elsif ($type eq 'group') {
0362a1ad 1787 die "wrong number of rule elements\n" if scalar(@data) > 3;
92e976b3
DM
1788 die "groups disabled\n" if !$allow_groups;
1789
44be8ceb 1790 die "invalid characters in group name\n" if $action !~ m/^${security_group_name_pattern}$/;
51bae274 1791 } else {
92e976b3 1792 die "unknown rule type '$type'\n";
51bae274
DM
1793 }
1794
1795 if ($need_iface) {
1796 $iface = undef if $iface && $iface eq '-';
51bae274
DM
1797 }
1798
1799 $proto = undef if $proto && $proto eq '-';
54cd19a8 1800 pve_fw_verify_protocol_spec($proto) if $proto;
51bae274
DM
1801
1802 $source = undef if $source && $source eq '-';
1803 $dest = undef if $dest && $dest eq '-';
1804
1805 $dport = undef if $dport && $dport eq '-';
1806 $sport = undef if $sport && $sport eq '-';
1807
e5076eee
DM
1808 parse_port_name_number_or_range($dport) if defined($dport);
1809 parse_port_name_number_or_range($sport) if defined($sport);
ba791b1f 1810
d72beb8e
DM
1811 parse_address_list($source) if $source;
1812 parse_address_list($dest) if $dest;
51bae274 1813
e5076eee 1814 return {
92e976b3 1815 type => $type,
ea9e5116 1816 enable => $enable,
11bac5c2 1817 comment => $comment,
51bae274 1818 action => $action,
e5076eee 1819 macro => $macro,
51bae274
DM
1820 iface => $iface,
1821 source => $source,
1822 dest => $dest,
51bae274
DM
1823 proto => $proto,
1824 dport => $dport,
1825 sport => $sport,
51bae274
DM
1826 };
1827}
1828
2d404ffc 1829sub parse_vmfw_option {
85c6eaed
DM
1830 my ($line) = @_;
1831
1832 my ($opt, $value);
1833
178a63be
DM
1834 my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
1835
6bafd113 1836 if ($line =~ m/^(enable|dhcp|macfilter|ips):\s*(0|1)\s*$/i) {
9c6b6efd
DM
1837 $opt = lc($1);
1838 $value = int($2);
178a63be
DM
1839 } elsif ($line =~ m/^(log_level_in|log_level_out):\s*(($loglevels)\s*)?$/i) {
1840 $opt = lc($1);
1841 $value = $2 ? lc($3) : '';
72f63fde 1842 } elsif ($line =~ m/^(policy_(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
85c6eaed
DM
1843 $opt = lc($1);
1844 $value = uc($3);
b47ecc88
AD
1845 } elsif ($line =~ m/^(ips_queues):\s*((\d+)(:(\d+))?)\s*$/i) {
1846 $opt = lc($1);
1847 $value = $2;
9c6b6efd 1848 } else {
85c6eaed
DM
1849 chomp $line;
1850 die "can't parse option '$line'\n"
1851 }
1852
1853 return ($opt, $value);
1854}
1855
2d404ffc
DM
1856sub parse_hostfw_option {
1857 my ($line) = @_;
1858
1859 my ($opt, $value);
1860
1861 my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
1862
c50a5a68 1863 if ($line =~ m/^(enable|nosmurfs|tcpflags):\s*(0|1)\s*$/i) {
2d404ffc
DM
1864 $opt = lc($1);
1865 $value = int($2);
178a63be 1866 } elsif ($line =~ m/^(log_level_in|log_level_out|tcp_flags_log_level|smurf_log_level):\s*(($loglevels)\s*)?$/i) {
2d404ffc
DM
1867 $opt = lc($1);
1868 $value = $2 ? lc($3) : '';
28c082a1 1869 } elsif ($line =~ m/^(nf_conntrack_max|nf_conntrack_tcp_timeout_established):\s*(\d+)\s*$/i) {
490cdead
DM
1870 $opt = lc($1);
1871 $value = int($2);
2d404ffc
DM
1872 } else {
1873 chomp $line;
1874 die "can't parse option '$line'\n"
1875 }
1876
1877 return ($opt, $value);
1878}
1879
c6f5cc88
DM
1880sub parse_clusterfw_option {
1881 my ($line) = @_;
1882
1883 my ($opt, $value);
1884
1885 if ($line =~ m/^(enable):\s*(0|1)\s*$/i) {
1886 $opt = lc($1);
1887 $value = int($2);
63324b09
DM
1888 } elsif ($line =~ m/^(policy_(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
1889 $opt = lc($1);
1890 $value = uc($3);
c6f5cc88
DM
1891 } else {
1892 chomp $line;
1893 die "can't parse option '$line'\n"
1894 }
1895
1896 return ($opt, $value);
1897}
1898
92e1209b
AD
1899sub parse_clusterfw_alias {
1900 my ($line) = @_;
1901
81d574a7
DM
1902 # we can add single line comments to the end of the line
1903 my $comment = decode('utf8', $1) if $line =~ s/\s*#\s*(.*?)\s*$//;
1904
92e1209b 1905 if ($line =~ m/^(\S+)\s(\S+)$/) {
81d574a7
DM
1906 my ($name, $cidr) = ($1, $2);
1907 $cidr =~ s|/32$||;
1908 pve_verify_ipv4_or_cidr($cidr);
1909 my $data = {
1910 name => $name,
1911 cidr => $cidr,
1912 };
1913 $data->{comment} = $comment if $comment;
1914 return $data;
92e1209b
AD
1915 }
1916
81d574a7 1917 return undef;
92e1209b
AD
1918}
1919
51bae274
DM
1920sub parse_vm_fw_rules {
1921 my ($filename, $fh) = @_;
1922
92e976b3 1923 my $res = { rules => [], options => {}};
51bae274
DM
1924
1925 my $section;
1926
5e1267a5
DM
1927 while (defined(my $line = <$fh>)) {
1928 next if $line =~ m/^#/;
1929 next if $line =~ m/^\s*$/;
1930
961b4928
DM
1931 my $linenr = $fh->input_line_number();
1932 my $prefix = "$filename (line $linenr)";
1933
85c6eaed 1934 if ($line =~ m/^\[(\S+)\]\s*$/i) {
5e1267a5 1935 $section = lc($1);
85c6eaed 1936 warn "$prefix: ignore unknown section '$section'\n" if !$res->{$section};
5e1267a5
DM
1937 next;
1938 }
51bae274 1939 if (!$section) {
961b4928 1940 warn "$prefix: skip line - no section";
5e1267a5
DM
1941 next;
1942 }
1943
85c6eaed
DM
1944 next if !$res->{$section}; # skip undefined section
1945
1946 if ($section eq 'options') {
6158271d 1947 eval {
2d404ffc 1948 my ($opt, $value) = parse_vmfw_option($line);
85c6eaed
DM
1949 $res->{options}->{$opt} = $value;
1950 };
1951 warn "$prefix: $@" if $@;
1952 next;
1953 }
1954
e5076eee
DM
1955 my $rule;
1956 eval { $rule = parse_fw_rule($line, 1, 1); };
51bae274 1957 if (my $err = $@) {
961b4928 1958 warn "$prefix: $err";
5e1267a5
DM
1959 next;
1960 }
1961
e5076eee 1962 push @{$res->{$section}}, $rule;
51bae274
DM
1963 }
1964
1965 return $res;
1966}
1967
1968sub parse_host_fw_rules {
1969 my ($filename, $fh) = @_;
1970
92e976b3 1971 my $res = { rules => [], options => {}};
51bae274
DM
1972
1973 my $section;
1974
1975 while (defined(my $line = <$fh>)) {
1976 next if $line =~ m/^#/;
1977 next if $line =~ m/^\s*$/;
1978
961b4928
DM
1979 my $linenr = $fh->input_line_number();
1980 my $prefix = "$filename (line $linenr)";
1981
2d404ffc 1982 if ($line =~ m/^\[(\S+)\]\s*$/i) {
51bae274 1983 $section = lc($1);
2d404ffc 1984 warn "$prefix: ignore unknown section '$section'\n" if !$res->{$section};
5e1267a5
DM
1985 next;
1986 }
51bae274 1987 if (!$section) {
961b4928 1988 warn "$prefix: skip line - no section";
5e1267a5
DM
1989 next;
1990 }
1991
2d404ffc
DM
1992 next if !$res->{$section}; # skip undefined section
1993
1994 if ($section eq 'options') {
1995 eval {
2d404ffc
DM
1996 my ($opt, $value) = parse_hostfw_option($line);
1997 $res->{options}->{$opt} = $value;
1998 };
1999 warn "$prefix: $@" if $@;
2000 next;
2001 }
2002
e5076eee
DM
2003 my $rule;
2004 eval { $rule = parse_fw_rule($line, 1, 1); };
ecbea048 2005 if (my $err = $@) {
961b4928 2006 warn "$prefix: $err";
ecbea048 2007 next;
ecbea048 2008 }
cbb5d6f3 2009
e5076eee 2010 push @{$res->{$section}}, $rule;
51bae274 2011 }
ecbea048 2012
51bae274
DM
2013 return $res;
2014}
4cdbb3b7 2015
c6f5cc88 2016sub parse_cluster_fw_rules {
51bae274 2017 my ($filename, $fh) = @_;
5e1267a5 2018
51bae274
DM
2019 my $section;
2020 my $group;
2021
e34d0e58
DM
2022 my $res = {
2023 rules => [],
2024 options => {},
2025 aliases => {},
2026 groups => {},
2027 group_comments => {},
d72c631c 2028 ipset => {} ,
e34d0e58 2029 ipset_comments => {},
0d22acb3 2030 };
6158271d 2031
51bae274
DM
2032 while (defined(my $line = <$fh>)) {
2033 next if $line =~ m/^#/;
2034 next if $line =~ m/^\s*$/;
2035
961b4928
DM
2036 my $linenr = $fh->input_line_number();
2037 my $prefix = "$filename (line $linenr)";
2038
c6f5cc88
DM
2039 if ($line =~ m/^\[options\]$/i) {
2040 $section = 'options';
2041 next;
2042 }
2043
92e1209b
AD
2044 if ($line =~ m/^\[aliases\]$/i) {
2045 $section = 'aliases';
2046 next;
2047 }
2048
0d22acb3 2049 if ($line =~ m/^\[group\s+(\S+)\]\s*(?:#\s*(.*?)\s*)?$/i) {
c6f5cc88 2050 $section = 'groups';
92e976b3 2051 $group = lc($1);
0d22acb3 2052 my $comment = $2;
c85c87f9 2053 $res->{$section}->{$group} = [];
649e4d57
DM
2054 $res->{group_comments}->{$group} = decode('utf8', $comment)
2055 if $comment;
51bae274
DM
2056 next;
2057 }
34cdedfa 2058
c6f5cc88
DM
2059 if ($line =~ m/^\[rules\]$/i) {
2060 $section = 'rules';
2061 next;
2062 }
cbb5d6f3 2063
d72c631c 2064 if ($line =~ m/^\[ipset\s+(\S+)\]\s*(?:#\s*(.*?)\s*)?$/i) {
34cdedfa
AD
2065 $section = 'ipset';
2066 $group = lc($1);
d72c631c 2067 my $comment = $2;
c85c87f9 2068 $res->{$section}->{$group} = [];
e34d0e58 2069 $res->{ipset_comments}->{$group} = decode('utf8', $comment)
649e4d57 2070 if $comment;
34cdedfa
AD
2071 next;
2072 }
2073
c6f5cc88 2074 if (!$section) {
cbb5d6f3 2075 warn "$prefix: skip line - no section\n";
51bae274
DM
2076 next;
2077 }
2078
c6f5cc88
DM
2079 if ($section eq 'options') {
2080 eval {
2081 my ($opt, $value) = parse_clusterfw_option($line);
2082 $res->{options}->{$opt} = $value;
2083 };
2084 warn "$prefix: $@" if $@;
92e1209b
AD
2085 } elsif ($section eq 'aliases') {
2086 eval {
81d574a7
DM
2087 my $data = parse_clusterfw_alias($line);
2088 $res->{aliases}->{lc($data->{name})} = $data;
92e1209b
AD
2089 };
2090 warn "$prefix: $@" if $@;
c6f5cc88
DM
2091 } elsif ($section eq 'rules') {
2092 my $rule;
2093 eval { $rule = parse_fw_rule($line, 1, 1); };
2094 if (my $err = $@) {
2095 warn "$prefix: $err";
2096 next;
2097 }
2098 push @{$res->{$section}}, $rule;
2099 } elsif ($section eq 'groups') {
34cdedfa
AD
2100 my $rule;
2101 eval { $rule = parse_fw_rule($line, 0, 0); };
2102 if (my $err = $@) {
2103 warn "$prefix: $err";
2104 next;
2105 }
3f95d14a 2106 push @{$res->{$section}->{$group}}, $rule;
3f95d14a 2107 } elsif ($section eq 'ipset') {
9d6f90e6
DM
2108 # we can add single line comments to the end of the rule
2109 my $comment = decode('utf8', $1) if $line =~ s/#\s*(.*?)\s*$//;
2110
30f1b100 2111 $line =~ m/^(\!)?\s*(\S+)\s*$/;
2a052ee3 2112 my $nomatch = $1;
9d6f90e6 2113 my $cidr = $2;
2a052ee3 2114
44be8ceb 2115 if($cidr !~ m/^${ip_alias_pattern}$/) {
92e1209b 2116 $cidr =~ s|/32$||;
e34d0e58 2117
92e1209b
AD
2118 eval { pve_verify_ipv4_or_cidr($cidr); };
2119 if (my $err = $@) {
2120 warn "$prefix: $cidr - $err";
2121 next;
2122 }
2a052ee3 2123 }
2a052ee3 2124
e34d0e58 2125 my $entry = { cidr => $cidr };
9d6f90e6
DM
2126 $entry->{nomatch} = 1 if $nomatch;
2127 $entry->{comment} = $comment if $comment;
e34d0e58 2128
9d6f90e6 2129 push @{$res->{$section}->{$group}}, $entry;
51bae274 2130 }
5e1267a5
DM
2131 }
2132
2133 return $res;
2134}
2135
06320eb0
DM
2136sub run_locked {
2137 my ($code, @param) = @_;
2138
2139 my $timeout = 10;
2140
2141 my $res = lock_file($pve_fw_lock_filename, $timeout, $code, @param);
2142
2143 die $@ if $@;
2144
2145 return $res;
2146}
2147
5e1267a5
DM
2148sub read_local_vm_config {
2149
2150 my $openvz = {};
5e1267a5
DM
2151 my $qemu = {};
2152
c8301d63 2153 my $vmdata = { openvz => $openvz, qemu => $qemu };
5e1267a5 2154
c8301d63
DM
2155 my $vmlist = PVE::Cluster::get_vmlist();
2156 return $vmdata if !$vmlist || !$vmlist->{ids};
2157 my $ids = $vmlist->{ids};
2158
2159 foreach my $vmid (keys %$ids) {
2160 next if !$vmid; # skip VE0
2161 my $d = $ids->{$vmid};
2162 next if !$d->{node} || $d->{node} ne $nodename;
2163 next if !$d->{type};
2164 if ($d->{type} eq 'openvz') {
d9fee004
DM
2165 if ($have_pve_manager) {
2166 my $cfspath = PVE::OpenVZ::cfs_config_path($vmid);
2167 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
2168 $openvz->{$vmid} = $conf;
2169 }
c8301d63
DM
2170 }
2171 } elsif ($d->{type} eq 'qemu') {
d9fee004
DM
2172 if ($have_qemu_server) {
2173 my $cfspath = PVE::QemuServer::cfs_config_path($vmid);
2174 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
2175 $qemu->{$vmid} = $conf;
2176 }
c8301d63 2177 }
5e1267a5
DM
2178 }
2179 }
d9fee004 2180
5e1267a5
DM
2181 return $vmdata;
2182};
2183
e7b35711 2184sub load_vmfw_conf {
8aef5177 2185 my ($vmid, $dir) = @_;
e7b35711
DM
2186
2187 my $vmfw_conf = {};
2188
8aef5177
DM
2189 $dir = "/etc/pve/firewall" if !defined($dir);
2190
2191 my $filename = "$dir/$vmid.fw";
e7b35711
DM
2192 if (my $fh = IO::File->new($filename, O_RDONLY)) {
2193 $vmfw_conf = parse_vm_fw_rules($filename, $fh);
2194 }
2195
2196 return $vmfw_conf;
2197}
2198
464f933e
DM
2199my $format_rules = sub {
2200 my ($rules, $need_iface) = @_;
2201
2202 my $raw = '';
2203
2204 foreach my $rule (@$rules) {
c14dacdf 2205 if ($rule->{type} eq 'in' || $rule->{type} eq 'out' || $rule->{type} eq 'group') {
464f933e
DM
2206 $raw .= '|' if defined($rule->{enable}) && !$rule->{enable};
2207 $raw .= uc($rule->{type});
7ca36671
DM
2208 if ($rule->{macro}) {
2209 $raw .= " $rule->{macro}($rule->{action})";
2210 } else {
2211 $raw .= " " . $rule->{action};
2212 }
464f933e 2213 $raw .= " " . ($rule->{iface} || '-') if $need_iface;
c14dacdf
DM
2214
2215 if ($rule->{type} ne 'group') {
2216 $raw .= " " . ($rule->{source} || '-');
2217 $raw .= " " . ($rule->{dest} || '-');
2218 $raw .= " " . ($rule->{proto} || '-');
2219 $raw .= " " . ($rule->{dport} || '-');
2220 $raw .= " " . ($rule->{sport} || '-');
2221 }
2222
cbb5d6f3 2223 $raw .= " # " . encode('utf8', $rule->{comment})
464f933e
DM
2224 if $rule->{comment} && $rule->{comment} !~ m/^\s*$/;
2225 $raw .= "\n";
2226 } else {
c14dacdf 2227 die "unknown rule type '$rule->{type}'";
464f933e
DM
2228 }
2229 }
2230
2231 return $raw;
2232};
2233
2234my $format_options = sub {
68c90e21
DM
2235 my ($options) = @_;
2236
2237 my $raw = '';
464f933e
DM
2238
2239 $raw .= "[OPTIONS]\n\n";
2240 foreach my $opt (keys %$options) {
2241 $raw .= "$opt: $options->{$opt}\n";
2242 }
2243 $raw .= "\n";
68c90e21
DM
2244
2245 return $raw;
464f933e
DM
2246};
2247
0d5f0a0f
DM
2248my $format_aliases = sub {
2249 my ($aliases) = @_;
2250
2251 my $raw = '';
2252
2253 $raw .= "[ALIASES]\n\n";
2254 foreach my $k (keys %$aliases) {
81d574a7
DM
2255 my $e = $aliases->{$k};
2256 $raw .= "$e->{name} $e->{cidr}";
2257 $raw .= " # " . encode('utf8', $e->{comment})
2258 if $e->{comment} && $e->{comment} !~ m/^\s*$/;
2259 $raw .= "\n";
0d5f0a0f
DM
2260 }
2261 $raw .= "\n";
2262
2263 return $raw;
2264};
2265
9d6f90e6
DM
2266my $format_ipset = sub {
2267 my ($options) = @_;
2268
2269 my $raw = '';
2270
6e299ae3 2271 my $nethash = {};
9d6f90e6 2272 foreach my $entry (@$options) {
6e299ae3
DM
2273 $nethash->{$entry->{cidr}} = $entry;
2274 }
2275
2276 foreach my $cidr (sort keys %$nethash) {
2277 my $entry = $nethash->{$cidr};
9d6f90e6
DM
2278 my $line = $entry->{nomatch} ? '!' : '';
2279 $line .= $entry->{cidr};
2280 $line .= " # " . encode('utf8', $entry->{comment})
2281 if $entry->{comment} && $entry->{comment} !~ m/^\s*$/;
2282 $raw .= "$line\n";
2283 }
e34d0e58 2284
9d6f90e6
DM
2285 return $raw;
2286};
2287
464f933e
DM
2288sub save_vmfw_conf {
2289 my ($vmid, $vmfw_conf) = @_;
2290
2291 my $raw = '';
2292
2293 my $options = $vmfw_conf->{options};
68c90e21 2294 $raw .= &$format_options($options) if scalar(keys %$options);
cbb5d6f3 2295
8824b2f0 2296 my $rules = $vmfw_conf->{rules} || [];
464f933e
DM
2297 if (scalar(@$rules)) {
2298 $raw .= "[RULES]\n\n";
2299 $raw .= &$format_rules($rules, 1);
2300 $raw .= "\n";
2301 }
2302
2303 my $filename = "/etc/pve/firewall/$vmid.fw";
2304 PVE::Tools::file_set_contents($filename, $raw);
2305}
2306
6fc63ffd 2307sub read_vm_firewall_configs {
8aef5177
DM
2308 my ($vmdata, $dir) = @_;
2309
6fc63ffd 2310 my $vmfw_configs = {};
c8301d63 2311
5e1267a5 2312 foreach my $vmid (keys %{$vmdata->{qemu}}, keys %{$vmdata->{openvz}}) {
8aef5177 2313 my $vmfw_conf = load_vmfw_conf($vmid, $dir);
e7b35711
DM
2314 next if !$vmfw_conf->{options}; # skip if file does not exists
2315 $vmfw_configs->{$vmid} = $vmfw_conf;
5e1267a5
DM
2316 }
2317
6fc63ffd 2318 return $vmfw_configs;
5e1267a5
DM
2319}
2320
2d404ffc
DM
2321sub get_option_log_level {
2322 my ($options, $k) = @_;
2323
2324 my $v = $options->{$k};
178a63be 2325 $v = $default_log_level if !defined($v);
2d404ffc
DM
2326
2327 return undef if $v eq '' || $v eq 'nolog';
2328
2329 $v = $log_level_hash->{$v} if defined($log_level_hash->{$v});
2330
2331 return $v if ($v >= 0) && ($v <= 7);
2332
2333 warn "unknown log level ($k = '$v')\n";
2334
2335 return undef;
2336}
2337
d8f2505e 2338sub generate_std_chains {
2d404ffc 2339 my ($ruleset, $options) = @_;
cbb5d6f3 2340
2d404ffc
DM
2341 my $loglevel = get_option_log_level($options, 'smurf_log_level');
2342
2343 # same as shorewall smurflog.
782c4cde 2344 my $chain = 'PVEFW-smurflog';
12f3796e 2345 $pve_std_chains->{$chain} = [];
782c4cde
DM
2346
2347 push @{$pve_std_chains->{$chain}}, get_log_rule_base($chain, 0, "DROP: ", $loglevel) if $loglevel;
2348 push @{$pve_std_chains->{$chain}}, "-j DROP";
2d404ffc
DM
2349
2350 # same as shorewall logflags action.
2351 $loglevel = get_option_log_level($options, 'tcp_flags_log_level');
782c4cde 2352 $chain = 'PVEFW-logflags';
12f3796e
DM
2353 $pve_std_chains->{$chain} = [];
2354
782c4cde
DM
2355 # fixme: is this correctly logged by pvewf-logger? (ther is no --log-ip-options for NFLOG)
2356 push @{$pve_std_chains->{$chain}}, get_log_rule_base($chain, 0, "DROP: ", $loglevel) if $loglevel;
2357 push @{$pve_std_chains->{$chain}}, "-j DROP";
d8f2505e
DM
2358
2359 foreach my $chain (keys %$pve_std_chains) {
2360 ruleset_create_chain($ruleset, $chain);
2361 foreach my $rule (@{$pve_std_chains->{$chain}}) {
2362 if (ref($rule)) {
2363 ruleset_generate_rule($ruleset, $chain, $rule);
2364 } else {
2365 ruleset_addrule($ruleset, $chain, $rule);
2366 }
2367 }
2368 }
2369}
2370
34cdedfa 2371sub generate_ipset_chains {
dd7a13fd 2372 my ($ipset_ruleset, $fw_conf) = @_;
34cdedfa 2373
dd7a13fd 2374 foreach my $ipset (keys %{$fw_conf->{ipset}}) {
92e1209b 2375 generate_ipset($ipset_ruleset, "PVEFW-$ipset", $fw_conf->{ipset}->{$ipset}, $fw_conf->{aliases});
34cdedfa
AD
2376 }
2377}
2378
2379sub generate_ipset {
92e1209b 2380 my ($ipset_ruleset, $name, $options, $aliases) = @_;
34cdedfa 2381
dd7a13fd
DM
2382 my $hashsize = scalar(@$options);
2383 if ($hashsize <= 64) {
2a052ee3 2384 $hashsize = 64;
dd7a13fd 2385 } else {
2a052ee3
AD
2386 $hashsize = round_powerof2($hashsize);
2387 }
2388
dd7a13fd 2389 push @{$ipset_ruleset->{$name}}, "create $name hash:net family inet hashsize $hashsize maxelem $hashsize";
34cdedfa 2390
30f1b100
DM
2391 # remove duplicates
2392 my $nethash = {};
9d6f90e6 2393 foreach my $entry (@$options) {
92e1209b 2394 my $cidr = $entry->{cidr};
d4091b82 2395 if ($cidr =~ m/^${ip_alias_pattern}$/) {
81d574a7
DM
2396 my $alias = lc($cidr);
2397 if ($aliases->{$alias}) {
2398 $entry->{cidr} = $aliases->{$alias}->{cidr};
7dd13259 2399 $nethash->{$entry->{cidr}} = $entry;
d4091b82 2400 } else {
81d574a7 2401 warn "no such alias '$cidr'\n" if !$aliases->{$alias};
d4091b82 2402 }
7dd13259
DM
2403 } else {
2404 $nethash->{$entry->{cidr}} = $entry;
92e1209b 2405 }
30f1b100
DM
2406 }
2407
2408 foreach my $cidr (sort keys %$nethash) {
2409 my $entry = $nethash->{$cidr};
2410
9d6f90e6
DM
2411 my $cmd = "add $name $cidr";
2412 if ($entry->{nomatch}) {
2413 if ($feature_ipset_nomatch) {
2414 push @{$ipset_ruleset->{$name}}, "$cmd nomatch";
2415 } else {
2416 warn "ignore !$cidr - nomatch not supported by kernel\n";
2417 }
2418 } else {
2419 push @{$ipset_ruleset->{$name}}, $cmd;
2420 }
34cdedfa 2421 }
2a052ee3
AD
2422}
2423
2424sub round_powerof2 {
dd7a13fd 2425 my ($int) = @_;
2a052ee3 2426
dd7a13fd
DM
2427 $int--;
2428 $int |= $int >> $_ foreach (1,2,4,8,16);
2429 return ++$int;
34cdedfa
AD
2430}
2431
6b9f68a2
DM
2432sub save_pvefw_status {
2433 my ($status) = @_;
2434
2435 die "unknown status '$status' - internal error"
2436 if $status !~ m/^(stopped|active)$/;
2437
2438 mkdir dirname($pve_fw_status_filename);
2439 PVE::Tools::file_set_contents($pve_fw_status_filename, $status);
2440}
2441
2442sub read_pvefw_status {
2443
2444 my $status = 'unknown';
2445
2446 return 'stopped' if ! -f $pve_fw_status_filename;
2447
2448 eval {
2449 $status = PVE::Tools::file_get_contents($pve_fw_status_filename);
2450 };
2451 warn $@ if $@;
2452
2453 return $status;
2454}
2455
fca39c2c 2456sub load_clusterfw_conf {
8aef5177
DM
2457 my ($filename) = @_;
2458
2459 $filename = $clusterfw_conf_filename if !defined($filename);
530c005e 2460
fca39c2c 2461 my $cluster_conf = {};
8aef5177
DM
2462 if (my $fh = IO::File->new($filename, O_RDONLY)) {
2463 $cluster_conf = parse_cluster_fw_rules($filename, $fh);
51bae274 2464 }
5e1267a5 2465
fca39c2c 2466 return $cluster_conf;
e5d76bde
DM
2467}
2468
fca39c2c
DM
2469sub save_clusterfw_conf {
2470 my ($cluster_conf) = @_;
9c7e0858
DM
2471
2472 my $raw = '';
9c7e0858 2473
c6f5cc88 2474 my $options = $cluster_conf->{options};
68c90e21 2475 $raw .= &$format_options($options) if scalar(keys %$options);
9c7e0858 2476
0d5f0a0f
DM
2477 my $aliases = $cluster_conf->{aliases};
2478 $raw .= &$format_aliases($aliases) if scalar(keys %$aliases);
e34d0e58 2479
9d6f90e6 2480 foreach my $ipset (sort keys %{$cluster_conf->{ipset}}) {
d72c631c 2481 if (my $comment = $cluster_conf->{ipset_comments}->{$ipset}) {
649e4d57
DM
2482 my $utf8comment = encode('utf8', $comment);
2483 $raw .= "[IPSET $ipset] # $utf8comment\n\n";
d72c631c
DM
2484 } else {
2485 $raw .= "[IPSET $ipset]\n\n";
2486 }
9d6f90e6
DM
2487 my $options = $cluster_conf->{ipset}->{$ipset};
2488 $raw .= &$format_ipset($options);
2489 $raw .= "\n";
2490 }
c6f5cc88
DM
2491
2492 my $rules = $cluster_conf->{rules};
2493 if (scalar(@$rules)) {
2494 $raw .= "[RULES]\n\n";
63c91681 2495 $raw .= &$format_rules($rules, 1);
c6f5cc88
DM
2496 $raw .= "\n";
2497 }
2498
2499 foreach my $group (sort keys %{$cluster_conf->{groups}}) {
2500 my $rules = $cluster_conf->{groups}->{$group};
0d22acb3 2501 if (my $comment = $cluster_conf->{group_comments}->{$group}) {
649e4d57
DM
2502 my $utf8comment = encode('utf8', $comment);
2503 $raw .= "[group $group] # $utf8comment\n\n";
0d22acb3
DM
2504 } else {
2505 $raw .= "[group $group]\n\n";
2506 }
2507
63c91681 2508 $raw .= &$format_rules($rules, 0);
9c7e0858
DM
2509 $raw .= "\n";
2510 }
2511
fca39c2c 2512 PVE::Tools::file_set_contents($clusterfw_conf_filename, $raw);
9c7e0858
DM
2513}
2514
8b27beb9 2515sub load_hostfw_conf {
8aef5177
DM
2516 my ($filename) = @_;
2517
2518 $filename = $hostfw_conf_filename if !defined($filename);
8b27beb9
DM
2519
2520 my $hostfw_conf = {};
8aef5177
DM
2521 if (my $fh = IO::File->new($filename, O_RDONLY)) {
2522 $hostfw_conf = parse_host_fw_rules($filename, $fh);
8b27beb9
DM
2523 }
2524 return $hostfw_conf;
2525}
2526
63c91681
DM
2527sub save_hostfw_conf {
2528 my ($hostfw_conf) = @_;
2529
2530 my $raw = '';
2531
2532 my $options = $hostfw_conf->{options};
68c90e21 2533 $raw .= &$format_options($options) if scalar(keys %$options);
cbb5d6f3 2534
63c91681
DM
2535 my $rules = $hostfw_conf->{rules};
2536 if (scalar(@$rules)) {
2537 $raw .= "[RULES]\n\n";
2538 $raw .= &$format_rules($rules, 1);
2539 $raw .= "\n";
2540 }
2541
2542 PVE::Tools::file_set_contents($hostfw_conf_filename, $raw);
2543}
2544
e5d76bde 2545sub compile {
8aef5177 2546 my ($cluster_conf, $hostfw_conf, $vmdata) = @_;
3dfa8a7f 2547
8aef5177
DM
2548 my $vmfw_configs;
2549
2550 if ($vmdata) { # test mode
2551 my $testdir = $vmdata->{testdir} || die "no test directory specified";
2552 my $filename = "$testdir/cluster.fw";
2553 die "missing test file '$filename'\n" if ! -f $filename;
2554 $cluster_conf = load_clusterfw_conf($filename);
2555
2556 $filename = "$testdir/host.fw";
2557 die "missing test file '$filename'\n" if ! -f $filename;
2558 $hostfw_conf = load_hostfw_conf($filename);
2559
2560 $vmfw_configs = read_vm_firewall_configs($vmdata, $testdir);
2561 } else { # normal operation
2562 $cluster_conf = load_clusterfw_conf() if !$cluster_conf;
2563
2564 $hostfw_conf = load_hostfw_conf() if !$hostfw_conf;
2565
2566 $vmdata = read_local_vm_config();
2567 $vmfw_configs = read_vm_firewall_configs($vmdata);
2568 }
3dfa8a7f 2569
e5d76bde 2570
34cdedfa 2571 my $ipset_ruleset = {};
fca39c2c 2572 generate_ipset_chains($ipset_ruleset, $cluster_conf);
34cdedfa 2573
3fa83edf
DM
2574 my $ruleset = {};
2575
dec84fcd
DM
2576 ruleset_create_chain($ruleset, "PVEFW-INPUT");
2577 ruleset_create_chain($ruleset, "PVEFW-OUTPUT");
5b1df9a0 2578
fadb13dd 2579 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
e34d0e58 2580
8b27beb9 2581 my $hostfw_options = $hostfw_conf->{options} || {};
fadb13dd 2582
88733a74
AD
2583 # fixme: what log level should we use here?
2584 my $loglevel = get_option_log_level($hostfw_options, "log_level_out");
2585
097820b0 2586 ruleset_chain_add_conn_filters($ruleset, "PVEFW-FORWARD", "ACCEPT");
88733a74 2587
e2943485
DM
2588 ruleset_create_chain($ruleset, "PVEFW-VENET-OUT");
2589 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i venet0 -j PVEFW-VENET-OUT");
62689a1e 2590 ruleset_addrule($ruleset, "PVEFW-INPUT", "-i venet0 -j PVEFW-VENET-OUT");
e2943485
DM
2591
2592 ruleset_create_chain($ruleset, "PVEFW-FWBR-IN");
2428e394 2593 ruleset_chain_add_input_filters($ruleset, "PVEFW-FWBR-IN", $hostfw_options, $cluster_conf, $loglevel);
e2943485 2594
d1b41c08 2595 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-m physdev --physdev-is-bridged --physdev-in fwln+ -j PVEFW-FWBR-IN");
e2943485
DM
2596
2597 ruleset_create_chain($ruleset, "PVEFW-FWBR-OUT");
d1b41c08 2598 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-m physdev --physdev-is-bridged --physdev-out fwln+ -j PVEFW-FWBR-OUT");
e2943485
DM
2599
2600 ruleset_create_chain($ruleset, "PVEFW-VENET-IN");
2428e394 2601 ruleset_chain_add_input_filters($ruleset, "PVEFW-VENET-IN", $hostfw_options, $cluster_conf, $loglevel);
e2943485
DM
2602
2603 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-o venet0 -j PVEFW-VENET-IN");
2604
92e976b3 2605 generate_std_chains($ruleset, $hostfw_options);
fadb13dd 2606
6d2ab017 2607 my $hostfw_enable = !(defined($hostfw_options->{enable}) && ($hostfw_options->{enable} == 0));
2d404ffc 2608
fca39c2c 2609 enable_host_firewall($ruleset, $hostfw_conf, $cluster_conf) if $hostfw_enable;
3fa83edf 2610
62689a1e
DM
2611 ruleset_addrule($ruleset, "PVEFW-OUTPUT", "-o venet0 -j PVEFW-VENET-IN");
2612
6158271d 2613 # generate firewall rules for QEMU VMs
3fa83edf
DM
2614 foreach my $vmid (keys %{$vmdata->{qemu}}) {
2615 my $conf = $vmdata->{qemu}->{$vmid};
6fc63ffd 2616 my $vmfw_conf = $vmfw_configs->{$vmid};
fa9c4a6f
DM
2617 next if !$vmfw_conf;
2618 next if defined($vmfw_conf->{options}->{enable}) && ($vmfw_conf->{options}->{enable} == 0);
3fa83edf
DM
2619
2620 foreach my $netid (keys %$conf) {
2621 next if $netid !~ m/^net(\d+)$/;
2622 my $net = PVE::QemuServer::parse_net($conf->{$netid});
f953da2d 2623 next if !$net->{firewall};
3fa83edf 2624 my $iface = "tap${vmid}i$1";
5e1267a5 2625
c29f55c9 2626 my $macaddr = $net->{macaddr};
6bafd113 2627 generate_tap_rules_direction($ruleset, $cluster_conf, $hostfw_conf, $iface, $netid, $macaddr,
a01c32c7 2628 $vmfw_conf, $vmid, 'IN');
6bafd113 2629 generate_tap_rules_direction($ruleset, $cluster_conf, $hostfw_conf, $iface, $netid, $macaddr,
a01c32c7 2630 $vmfw_conf, $vmid, 'OUT');
3fa83edf
DM
2631 }
2632 }
c8301d63
DM
2633
2634 # generate firewall rules for OpenVZ containers
2635 foreach my $vmid (keys %{$vmdata->{openvz}}) {
2636 my $conf = $vmdata->{openvz}->{$vmid};
2637
2638 my $vmfw_conf = $vmfw_configs->{$vmid};
2639 next if !$vmfw_conf;
2640 next if defined($vmfw_conf->{options}->{enable}) && ($vmfw_conf->{options}->{enable} == 0);
2641
2642 if ($conf->{ip_address} && $conf->{ip_address}->{value}) {
2643 my $ip = $conf->{ip_address}->{value};
e34d0e58 2644 $ip =~ s/\s+/,/g;
6bafd113
DM
2645 generate_venet_rules_direction($ruleset, $cluster_conf, $hostfw_conf, $vmfw_conf, $vmid, $ip, 'IN');
2646 generate_venet_rules_direction($ruleset, $cluster_conf, $hostfw_conf, $vmfw_conf, $vmid, $ip, 'OUT');
c8301d63
DM
2647 }
2648
2649 if ($conf->{netif} && $conf->{netif}->{value}) {
2650 my $netif = PVE::OpenVZ::parse_netif($conf->{netif}->{value});
c8301d63
DM
2651 foreach my $netid (keys %$netif) {
2652 my $d = $netif->{$netid};
530c005e 2653
12d0f130 2654 my $macaddr = $d->{mac};
c8301d63 2655 my $iface = $d->{host_ifname};
6bafd113 2656 generate_tap_rules_direction($ruleset, $cluster_conf, $hostfw_conf, $iface, $netid, $macaddr,
a01c32c7 2657 $vmfw_conf, $vmid, 'IN');
6bafd113 2658 generate_tap_rules_direction($ruleset, $cluster_conf, $hostfw_conf, $iface, $netid, $macaddr,
a01c32c7 2659 $vmfw_conf, $vmid, 'OUT');
c8301d63
DM
2660 }
2661 }
2662 }
c0413e35 2663
097820b0
AD
2664 if(ruleset_chain_exist($ruleset, "PVEFW-IPS")){
2665 ruleset_insertrule($ruleset, "PVEFW-FORWARD", "-m conntrack --ctstate RELATED,ESTABLISHED -j PVEFW-IPS");
2666 }
2667
3dfa8a7f 2668 return ($ruleset, $ipset_ruleset);
3fa83edf
DM
2669}
2670
2671sub get_ruleset_status {
4bd0a9c4 2672 my ($ruleset, $active_chains, $digest_fn, $verbose) = @_;
3fa83edf
DM
2673
2674 my $statushash = {};
2675
2676 foreach my $chain (sort keys %$ruleset) {
4bd0a9c4 2677 my $sig = &$digest_fn($ruleset->{$chain});
9bf7d929 2678
3fa83edf
DM
2679 $statushash->{$chain}->{sig} = $sig;
2680
2681 my $oldsig = $active_chains->{$chain};
2682 if (!defined($oldsig)) {
2683 $statushash->{$chain}->{action} = 'create';
2684 } else {
2685 if ($oldsig eq $sig) {
2686 $statushash->{$chain}->{action} = 'exists';
2687 } else {
2688 $statushash->{$chain}->{action} = 'update';
2689 }
2690 }
2691 print "$statushash->{$chain}->{action} $chain ($sig)\n" if $verbose;
2692 foreach my $cmd (@{$ruleset->{$chain}}) {
2693 print "\t$cmd\n" if $verbose;
2694 }
2695 }
2696
2697 foreach my $chain (sort keys %$active_chains) {
2698 if (!defined($ruleset->{$chain})) {
2699 my $sig = $active_chains->{$chain};
2700 $statushash->{$chain}->{action} = 'delete';
2701 $statushash->{$chain}->{sig} = $sig;
2702 print "delete $chain ($sig)\n" if $verbose;
2703 }
6158271d 2704 }
2a052ee3 2705
3fa83edf
DM
2706 return $statushash;
2707}
2708
3fa83edf
DM
2709sub print_sig_rule {
2710 my ($chain, $sig) = @_;
2711
09d5f68e
DM
2712 # We just use this to store a SHA1 checksum used to detect changes
2713 return "-A $chain -m comment --comment \"PVESIG:$sig\"\n";
b6360c3f
DM
2714}
2715
df7cb349 2716sub get_ruleset_cmdlist {
a84f4d96 2717 my ($ruleset, $verbose) = @_;
3fa83edf 2718
3fa83edf 2719 my $cmdlist = "*filter\n"; # we pass this to iptables-restore;
cbb5d6f3 2720
4bd0a9c4
DM
2721 my ($active_chains, $hooks) = iptables_get_chains();
2722 my $statushash = get_ruleset_status($ruleset, $active_chains, \&iptables_chain_digest, $verbose);
3fa83edf
DM
2723
2724 # create missing chains first
2725 foreach my $chain (sort keys %$ruleset) {
2726 my $stat = $statushash->{$chain};
2727 die "internal error" if !$stat;
2728 next if $stat->{action} ne 'create';
886aba9c 2729
3fa83edf
DM
2730 $cmdlist .= ":$chain - [0:0]\n";
2731 }
2732
4bd0a9c4
DM
2733 foreach my $h (qw(INPUT OUTPUT FORWARD)) {
2734 if (!$hooks->{$h}) {
2735 $cmdlist .= "-A $h -j PVEFW-$h\n";
2736 }
3fa83edf
DM
2737 }
2738
2739 foreach my $chain (sort keys %$ruleset) {
2740 my $stat = $statushash->{$chain};
2741 die "internal error" if !$stat;
2742
2743 if ($stat->{action} eq 'update' || $stat->{action} eq 'create') {
2744 $cmdlist .= "-F $chain\n";
2745 foreach my $cmd (@{$ruleset->{$chain}}) {
2746 $cmdlist .= "$cmd\n";
2747 }
2748 $cmdlist .= print_sig_rule($chain, $stat->{sig});
2749 } elsif ($stat->{action} eq 'delete') {
f5d28682 2750 die "internal error"; # this should not happen
3fa83edf
DM
2751 } elsif ($stat->{action} eq 'exists') {
2752 # do nothing
2753 } else {
2754 die "internal error - unknown status '$stat->{action}'";
2755 }
2756 }
2757
f5d28682
DM
2758 foreach my $chain (keys %$statushash) {
2759 next if $statushash->{$chain}->{action} ne 'delete';
2760 $cmdlist .= "-F $chain\n";
2761 }
2762 foreach my $chain (keys %$statushash) {
2763 next if $statushash->{$chain}->{action} ne 'delete';
fadb13dd
DM
2764 next if $chain eq 'PVEFW-INPUT';
2765 next if $chain eq 'PVEFW-OUTPUT';
2766 next if $chain eq 'PVEFW-FORWARD';
f5d28682
DM
2767 $cmdlist .= "-X $chain\n";
2768 }
2769
3f95d14a 2770 my $changes = $cmdlist ne "*filter\n" ? 1 : 0;
4bd0a9c4 2771
3fa83edf
DM
2772 $cmdlist .= "COMMIT\n";
2773
3f95d14a 2774 return wantarray ? ($cmdlist, $changes) : $cmdlist;
6b9f68a2
DM
2775}
2776
34cdedfa 2777sub get_ipset_cmdlist {
dd7a13fd 2778 my ($ruleset, $verbose) = @_;
34cdedfa
AD
2779
2780 my $cmdlist = "";
2781
dd7a13fd
DM
2782 my $delete_cmdlist = "";
2783
4bd0a9c4
DM
2784 my $active_chains = ipset_get_chains();
2785 my $statushash = get_ruleset_status($ruleset, $active_chains, \&ipset_chain_digest, $verbose);
34cdedfa 2786
e34d0e58 2787 # remove stale _swap chains
30f1b100
DM
2788 foreach my $chain (keys %$active_chains) {
2789 if ($chain =~ m/^PVEFW-\S+_swap$/) {
2790 $cmdlist .= "destroy $chain\n";
2791 }
2792 }
2793
dd7a13fd
DM
2794 foreach my $chain (sort keys %$ruleset) {
2795 my $stat = $statushash->{$chain};
2796 die "internal error" if !$stat;
2a052ee3 2797
dd7a13fd
DM
2798 if ($stat->{action} eq 'create') {
2799 foreach my $cmd (@{$ruleset->{$chain}}) {
34cdedfa
AD
2800 $cmdlist .= "$cmd\n";
2801 }
dd7a13fd 2802 }
34cdedfa 2803
dd7a13fd
DM
2804 if ($stat->{action} eq 'update') {
2805 my $chain_swap = $chain."_swap";
cbb5d6f3 2806
dd7a13fd
DM
2807 foreach my $cmd (@{$ruleset->{$chain}}) {
2808 $cmd =~ s/$chain/$chain_swap/;
2809 $cmdlist .= "$cmd\n";
34cdedfa 2810 }
dd7a13fd
DM
2811 $cmdlist .= "swap $chain_swap $chain\n";
2812 $cmdlist .= "flush $chain_swap\n";
2813 $cmdlist .= "destroy $chain_swap\n";
2a052ee3 2814 }
34cdedfa 2815
dd7a13fd 2816 }
3f95d14a 2817
dd7a13fd
DM
2818 foreach my $chain (keys %$statushash) {
2819 next if $statushash->{$chain}->{action} ne 'delete';
2a052ee3 2820
dd7a13fd
DM
2821 $delete_cmdlist .= "flush $chain\n";
2822 $delete_cmdlist .= "destroy $chain\n";
34cdedfa
AD
2823 }
2824
dd7a13fd 2825 my $changes = ($cmdlist || $delete_cmdlist) ? 1 : 0;
cbb5d6f3 2826
dd7a13fd 2827 return ($cmdlist, $delete_cmdlist, $changes);
34cdedfa
AD
2828}
2829
6b9f68a2 2830sub apply_ruleset {
34cdedfa 2831 my ($ruleset, $hostfw_conf, $ipset_ruleset, $verbose) = @_;
6b9f68a2
DM
2832
2833 enable_bridge_firewall();
2834
cbb5d6f3 2835 my ($ipset_create_cmdlist, $ipset_delete_cmdlist, $ipset_changes) =
81a0bf43 2836 get_ipset_cmdlist($ipset_ruleset, undef, $verbose);
6b9f68a2 2837
81a0bf43 2838 my ($cmdlist, $changes) = get_ruleset_cmdlist($ruleset, $verbose);
2a052ee3 2839
81a0bf43
DM
2840 if ($verbose) {
2841 if ($ipset_changes) {
2842 print "ipset changes:\n";
2843 print $ipset_create_cmdlist if $ipset_create_cmdlist;
2844 print $ipset_delete_cmdlist if $ipset_delete_cmdlist;
2845 }
3f95d14a 2846
81a0bf43
DM
2847 if ($changes) {
2848 print "iptables changes:\n";
2849 print $cmdlist;
2850 }
2851 }
3fa83edf 2852
2a052ee3 2853 ipset_restore_cmdlist($ipset_create_cmdlist);
34cdedfa 2854
3fa83edf
DM
2855 iptables_restore_cmdlist($cmdlist);
2856
dd7a13fd 2857 ipset_restore_cmdlist($ipset_delete_cmdlist) if $ipset_delete_cmdlist;
2a052ee3 2858
6158271d 2859 # test: re-read status and check if everything is up to date
4bd0a9c4 2860 my $active_chains = iptables_get_chains();
81a0bf43 2861 my $statushash = get_ruleset_status($ruleset, $active_chains, \&iptables_chain_digest, 0);
3fa83edf
DM
2862
2863 my $errors;
2864 foreach my $chain (sort keys %$ruleset) {
2865 my $stat = $statushash->{$chain};
2866 if ($stat->{action} ne 'exists') {
2867 warn "unable to update chain '$chain'\n";
2868 $errors = 1;
2869 }
2870 }
b6360c3f 2871
3fa83edf 2872 die "unable to apply firewall changes\n" if $errors;
46a2ac1f
AD
2873
2874 update_nf_conntrack_max($hostfw_conf);
2875
2876 update_nf_conntrack_tcp_timeout_established($hostfw_conf);
2877
b6360c3f
DM
2878}
2879
490cdead
DM
2880sub update_nf_conntrack_max {
2881 my ($hostfw_conf) = @_;
2882
2883 my $max = 65536; # reasonable default
2884
2885 my $options = $hostfw_conf->{options} || {};
2886
2887 if (defined($options->{nf_conntrack_max}) && ($options->{nf_conntrack_max} > $max)) {
2888 $max = $options->{nf_conntrack_max};
2889 $max = int(($max+ 8191)/8192)*8192; # round to multiples of 8192
2890 }
2891
2892 my $filename_nf_conntrack_max = "/proc/sys/net/nf_conntrack_max";
2893 my $filename_hashsize = "/sys/module/nf_conntrack/parameters/hashsize";
2894
2895 my $current = int(PVE::Tools::file_read_firstline($filename_nf_conntrack_max) || $max);
2896
2897 if ($current != $max) {
2898 my $hashsize = int($max/4);
2899 PVE::ProcFSTools::write_proc_entry($filename_hashsize, $hashsize);
2900 PVE::ProcFSTools::write_proc_entry($filename_nf_conntrack_max, $max);
2901 }
2902}
2903
28c082a1
AD
2904sub update_nf_conntrack_tcp_timeout_established {
2905 my ($hostfw_conf) = @_;
2906
2907 my $options = $hostfw_conf->{options} || {};
2908
2909 my $value = defined($options->{nf_conntrack_tcp_timeout_established}) ? $options->{nf_conntrack_tcp_timeout_established} : 432000;
2910
2911 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/netfilter/nf_conntrack_tcp_timeout_established", $value);
2912}
2913
c4a2e5ae
DM
2914sub remove_pvefw_chains {
2915
2916 my ($chash, $hooks) = iptables_get_chains();
2917 my $cmdlist = "*filter\n";
2918
2919 foreach my $h (qw(INPUT OUTPUT FORWARD)) {
2920 if ($hooks->{$h}) {
2921 $cmdlist .= "-D $h -j PVEFW-$h\n";
2922 }
2923 }
cbb5d6f3 2924
c4a2e5ae
DM
2925 foreach my $chain (keys %$chash) {
2926 $cmdlist .= "-F $chain\n";
2927 }
2928
2929 foreach my $chain (keys %$chash) {
2930 $cmdlist .= "-X $chain\n";
2931 }
2932 $cmdlist .= "COMMIT\n";
2933
2934 iptables_restore_cmdlist($cmdlist);
2935}
2936
6b9f68a2
DM
2937sub update {
2938 my ($start, $verbose) = @_;
2939
2940 my $code = sub {
3dfa8a7f
DM
2941
2942 my $cluster_conf = load_clusterfw_conf();
2943 my $cluster_options = $cluster_conf->{options};
2944
51e57fee 2945 my $enable = $cluster_options->{enable};
3dfa8a7f 2946
6b9f68a2
DM
2947 my $status = read_pvefw_status();
2948
3dfa8a7f
DM
2949 die "Firewall is disabled - cannot start\n" if !$enable && $start;
2950
2951 if (!$enable) {
b22130d3 2952 PVE::Firewall::remove_pvefw_chains();
3dfa8a7f
DM
2953 print "Firewall disabled\n" if $verbose;
2954 return;
2955 }
2956
2957 my $hostfw_conf = load_hostfw_conf();
2958
2959 my ($ruleset, $ipset_ruleset) = compile($cluster_conf, $hostfw_conf);
490cdead 2960
6b9f68a2
DM
2961 if ($start || $status eq 'active') {
2962
2963 save_pvefw_status('active') if ($status ne 'active');
2964
34cdedfa 2965 apply_ruleset($ruleset, $hostfw_conf, $ipset_ruleset, $verbose);
6b9f68a2
DM
2966 } else {
2967 print "Firewall not active (status = $status)\n" if $verbose;
2968 }
2969 };
2970
2971 run_locked($code);
2972}
2973
2974
b6360c3f 29751;