]> git.proxmox.com Git - pve-firewall.git/blame - src/PVE/Firewall.pm
new method load_security_groups()
[pve-firewall.git] / src / PVE / Firewall.pm
CommitLineData
b6360c3f
DM
1package PVE::Firewall;
2
3use warnings;
4use strict;
5use Data::Dumper;
09d5f68e 6use Digest::SHA;
c8301d63
DM
7use PVE::INotify;
8use PVE::Cluster;
5f0a912c 9use PVE::ProcFSTools;
f789653a 10use PVE::Tools;
6b9f68a2 11use File::Basename;
5e1267a5
DM
12use File::Path;
13use IO::File;
ecbea048 14use Net::IP;
06320eb0 15use PVE::Tools qw(run_command lock_file);
ecbea048 16
d9fee004
DM
17# dynamically include PVE::QemuServer and PVE::OpenVZ
18# to avoid dependency problems
19my $have_qemu_server;
20eval {
21 require PVE::QemuServer;
22 $have_qemu_server = 1;
23};
24
25my $have_pve_manager;
26eval {
27 require PVE::OpenVZ;
28 $have_pve_manager = 1;
29};
30
5e1267a5 31use Data::Dumper;
b6360c3f 32
c8301d63
DM
33my $nodename = PVE::INotify::nodename();
34
06320eb0 35my $pve_fw_lock_filename = "/var/lock/pvefw.lck";
6b9f68a2 36my $pve_fw_status_filename = "/var/lib/pve-firewall/pvefw.status";
06320eb0 37
2d404ffc
DM
38my $default_log_level = 'info';
39
40my $log_level_hash = {
41 debug => 7,
42 info => 6,
43 notice => 5,
44 warning => 4,
45 err => 3,
46 crit => 2,
47 alert => 1,
48 emerg => 0,
49};
50
857f62c8 51# imported/converted from: /usr/share/shorewall/macro.*
961b4928 52my $pve_fw_macros = {
857f62c8
DM
53 'Amanda' => [
54 { action => 'PARAM', proto => 'udp', dport => '10080' },
55 { action => 'PARAM', proto => 'tcp', dport => '10080' },
56 ],
57 'Auth' => [
58 { action => 'PARAM', proto => 'tcp', dport => '113' },
59 ],
60 'BGP' => [
61 { action => 'PARAM', proto => 'tcp', dport => '179' },
62 ],
63 'BitTorrent' => [
961b4928 64 { action => 'PARAM', proto => 'tcp', dport => '6881:6889' },
857f62c8
DM
65 { action => 'PARAM', proto => 'udp', dport => '6881' },
66 ],
67 'BitTorrent32' => [
68 { action => 'PARAM', proto => 'tcp', dport => '6881:6999' },
69 { action => 'PARAM', proto => 'udp', dport => '6881' },
70 ],
71 'CVS' => [
72 { action => 'PARAM', proto => 'tcp', dport => '2401' },
73 ],
74 'Citrix' => [
75 { action => 'PARAM', proto => 'tcp', dport => '1494' },
76 { action => 'PARAM', proto => 'udp', dport => '1604' },
77 { action => 'PARAM', proto => 'tcp', dport => '2598' },
78 ],
79 'DAAP' => [
80 { action => 'PARAM', proto => 'tcp', dport => '3689' },
81 { action => 'PARAM', proto => 'udp', dport => '3689' },
82 ],
83 'DCC' => [
84 { action => 'PARAM', proto => 'tcp', dport => '6277' },
85 ],
86 'DHCPfwd' => [
87 { action => 'PARAM', proto => 'udp', dport => '67:68', sport => '67:68' },
88 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '67:68', sport => '67:68' },
89 ],
90 'DNS' => [
91 { action => 'PARAM', proto => 'udp', dport => '53' },
92 { action => 'PARAM', proto => 'tcp', dport => '53' },
93 ],
94 'Distcc' => [
95 { action => 'PARAM', proto => 'tcp', dport => '3632' },
96 ],
97 'Edonkey' => [
98 { action => 'PARAM', proto => 'tcp', dport => '4662' },
99 { action => 'PARAM', proto => 'udp', dport => '4665' },
961b4928 100 ],
857f62c8
DM
101 'FTP' => [
102 { action => 'PARAM', proto => 'tcp', dport => '21' },
103 ],
104 'Finger' => [
105 { action => 'PARAM', proto => 'tcp', dport => '79' },
106 ],
107 'GNUnet' => [
108 { action => 'PARAM', proto => 'tcp', dport => '2086' },
109 { action => 'PARAM', proto => 'udp', dport => '2086' },
110 { action => 'PARAM', proto => 'tcp', dport => '1080' },
111 { action => 'PARAM', proto => 'udp', dport => '1080' },
112 ],
113 'GRE' => [
114 { action => 'PARAM', proto => '47' },
115 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '47' },
116 ],
117 'Git' => [
118 { action => 'PARAM', proto => 'tcp', dport => '9418' },
119 ],
120 'Gnutella' => [
121 { action => 'PARAM', proto => 'tcp', dport => '6346' },
122 { action => 'PARAM', proto => 'udp', dport => '6346' },
123 ],
124 'HKP' => [
125 { action => 'PARAM', proto => 'tcp', dport => '11371' },
126 ],
127 'HTTP' => [
961b4928
DM
128 { action => 'PARAM', proto => 'tcp', dport => '80' },
129 ],
857f62c8
DM
130 'HTTPS' => [
131 { action => 'PARAM', proto => 'tcp', dport => '443' },
132 ],
133 'ICPV2' => [
134 { action => 'PARAM', proto => 'udp', dport => '3130' },
135 ],
136 'ICQ' => [
137 { action => 'PARAM', proto => 'tcp', dport => '5190' },
138 ],
139 'IMAP' => [
140 { action => 'PARAM', proto => 'tcp', dport => '143' },
141 ],
142 'IMAPS' => [
143 { action => 'PARAM', proto => 'tcp', dport => '993' },
144 ],
145 'IPIP' => [
146 { action => 'PARAM', proto => '94' },
147 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '94' },
148 ],
149 'IPP' => [
150 { action => 'PARAM', proto => 'tcp', dport => '631' },
151 ],
152 'IPPbrd' => [
153 { action => 'PARAM', proto => 'udp', dport => '631' },
154 ],
155 'IPPserver' => [
156 { action => 'PARAM', source => 'SOURCE', dest => 'DEST', proto => 'tcp', dport => '631' },
157 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '631' },
158 ],
159 'IPsec' => [
160 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
161 { action => 'PARAM', proto => '50' },
162 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500', sport => '500' },
163 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '50' },
164 ],
165 'IPsecah' => [
166 { action => 'PARAM', proto => 'udp', dport => '500', sport => '500' },
167 { action => 'PARAM', proto => '51' },
168 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500', sport => '500' },
169 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '51' },
170 ],
171 'IPsecnat' => [
172 { action => 'PARAM', proto => 'udp', dport => '500' },
173 { action => 'PARAM', proto => 'udp', dport => '4500' },
174 { action => 'PARAM', proto => '50' },
175 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '500' },
176 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '4500' },
177 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '50' },
178 ],
179 'IRC' => [
180 { action => 'PARAM', proto => 'tcp', dport => '6667' },
181 ],
182 'JabberPlain' => [
183 { action => 'PARAM', proto => 'tcp', dport => '5222' },
184 ],
185 'JabberSecure' => [
186 { action => 'PARAM', proto => 'tcp', dport => '5223' },
187 ],
188 'Jabberd' => [
189 { action => 'PARAM', proto => 'tcp', dport => '5269' },
190 ],
191 'Jetdirect' => [
192 { action => 'PARAM', proto => 'tcp', dport => '9100' },
193 ],
194 'L2TP' => [
195 { action => 'PARAM', proto => 'udp', dport => '1701' },
196 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '1701' },
197 ],
198 'LDAP' => [
199 { action => 'PARAM', proto => 'tcp', dport => '389' },
200 ],
201 'LDAPS' => [
202 { action => 'PARAM', proto => 'tcp', dport => '636' },
203 ],
204 'MSNP' => [
205 { action => 'PARAM', proto => 'tcp', dport => '1863' },
206 ],
207 'MSSQL' => [
208 { action => 'PARAM', proto => 'tcp', dport => '1433' },
209 ],
210 'Mail' => [
211 { action => 'PARAM', proto => 'tcp', dport => '25' },
212 { action => 'PARAM', proto => 'tcp', dport => '465' },
213 { action => 'PARAM', proto => 'tcp', dport => '587' },
214 ],
215 'Munin' => [
216 { action => 'PARAM', proto => 'tcp', dport => '4949' },
217 ],
218 'MySQL' => [
219 { action => 'PARAM', proto => 'tcp', dport => '3306' },
220 ],
221 'NNTP' => [
222 { action => 'PARAM', proto => 'tcp', dport => '119' },
223 ],
224 'NNTPS' => [
225 { action => 'PARAM', proto => 'tcp', dport => '563' },
226 ],
227 'NTP' => [
228 { action => 'PARAM', proto => 'udp', dport => '123' },
229 ],
230 'NTPbi' => [
231 { action => 'PARAM', proto => 'udp', dport => '123' },
232 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '123' },
233 ],
234 'NTPbrd' => [
235 { action => 'PARAM', proto => 'udp', dport => '123' },
236 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '123' },
237 ],
238 'OSPF' => [
239 { action => 'PARAM', proto => '89' },
240 ],
241 'OpenVPN' => [
242 { action => 'PARAM', proto => 'udp', dport => '1194' },
243 ],
244 'PCA' => [
245 { action => 'PARAM', proto => 'udp', dport => '5632' },
246 { action => 'PARAM', proto => 'tcp', dport => '5631' },
247 ],
248 'POP3' => [
249 { action => 'PARAM', proto => 'tcp', dport => '110' },
250 ],
251 'POP3S' => [
252 { action => 'PARAM', proto => 'tcp', dport => '995' },
253 ],
254 'PPtP' => [
255 { action => 'PARAM', proto => '47' },
256 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => '47' },
257 { action => 'PARAM', proto => 'tcp', dport => '1723' },
258 ],
259 'Ping' => [
269d4f13 260 { action => 'PARAM', proto => 'icmp', dport => 'echo-request' },
857f62c8
DM
261 ],
262 'PostgreSQL' => [
263 { action => 'PARAM', proto => 'tcp', dport => '5432' },
264 ],
265 'Printer' => [
266 { action => 'PARAM', proto => 'tcp', dport => '515' },
267 ],
268 'RDP' => [
269 { action => 'PARAM', proto => 'tcp', dport => '3389' },
270 ],
271 'RIPbi' => [
272 { action => 'PARAM', proto => 'udp', dport => '520' },
273 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '520' },
274 ],
275 'RNDC' => [
276 { action => 'PARAM', proto => 'tcp', dport => '953' },
277 ],
278 'Razor' => [
279 { action => 'ACCEPT', proto => 'tcp', dport => '2703' },
280 ],
281 'Rdate' => [
282 { action => 'PARAM', proto => 'tcp', dport => '37' },
283 ],
284 'Rsync' => [
285 { action => 'PARAM', proto => 'tcp', dport => '873' },
286 ],
287 'SANE' => [
288 { action => 'PARAM', proto => 'tcp', dport => '6566' },
289 ],
290 'SMB' => [
291 { action => 'PARAM', proto => 'udp', dport => '135,445' },
292 { action => 'PARAM', proto => 'udp', dport => '137:139' },
293 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '137' },
294 { action => 'PARAM', proto => 'tcp', dport => '135,139,445' },
295 ],
296 'SMBBI' => [
297 { action => 'PARAM', proto => 'udp', dport => '135,445' },
298 { action => 'PARAM', proto => 'udp', dport => '137:139' },
299 { action => 'PARAM', proto => 'udp', dport => '1024:65535', sport => '137' },
300 { action => 'PARAM', proto => 'tcp', dport => '135,139,445' },
301 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '135,445' },
302 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '137:139' },
303 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'udp', dport => '1024:65535', sport => '137' },
304 { action => 'PARAM', source => 'DEST', dest => 'SOURCE', proto => 'tcp', dport => '135,139,445' },
305 ],
306 'SMBswat' => [
307 { action => 'PARAM', proto => 'tcp', dport => '901' },
308 ],
309 'SMTP' => [
310 { action => 'PARAM', proto => 'tcp', dport => '25' },
311 ],
312 'SMTPS' => [
313 { action => 'PARAM', proto => 'tcp', dport => '465' },
314 ],
315 'SNMP' => [
316 { action => 'PARAM', proto => 'udp', dport => '161:162' },
317 { action => 'PARAM', proto => 'tcp', dport => '161' },
318 ],
319 'SPAMD' => [
320 { action => 'PARAM', proto => 'tcp', dport => '783' },
321 ],
322 'SSH' => [
323 { action => 'PARAM', proto => 'tcp', dport => '22' },
324 ],
325 'SVN' => [
326 { action => 'PARAM', proto => 'tcp', dport => '3690' },
327 ],
328 'SixXS' => [
329 { action => 'PARAM', proto => 'tcp', dport => '3874' },
330 { action => 'PARAM', proto => 'udp', dport => '3740' },
331 { action => 'PARAM', proto => '41' },
332 { action => 'PARAM', proto => 'udp', dport => '5072,8374' },
333 ],
334 'Squid' => [
335 { action => 'PARAM', proto => 'tcp', dport => '3128' },
336 ],
337 'Submission' => [
338 { action => 'PARAM', proto => 'tcp', dport => '587' },
339 ],
340 'Syslog' => [
341 { action => 'PARAM', proto => 'udp', dport => '514' },
342 { action => 'PARAM', proto => 'tcp', dport => '514' },
343 ],
344 'TFTP' => [
345 { action => 'PARAM', proto => 'udp', dport => '69' },
346 ],
347 'Telnet' => [
348 { action => 'PARAM', proto => 'tcp', dport => '23' },
349 ],
350 'Telnets' => [
351 { action => 'PARAM', proto => 'tcp', dport => '992' },
352 ],
353 'Time' => [
354 { action => 'PARAM', proto => 'tcp', dport => '37' },
355 ],
356 'Trcrt' => [
357 { action => 'PARAM', proto => 'udp', dport => '33434:33524' },
269d4f13 358 { action => 'PARAM', proto => 'icmp', dport => 'echo-request' },
857f62c8
DM
359 ],
360 'VNC' => [
361 { action => 'PARAM', proto => 'tcp', dport => '5900:5909' },
362 ],
363 'VNCL' => [
364 { action => 'PARAM', proto => 'tcp', dport => '5500' },
365 ],
366 'Web' => [
367 { action => 'PARAM', proto => 'tcp', dport => '80' },
961b4928
DM
368 { action => 'PARAM', proto => 'tcp', dport => '443' },
369 ],
857f62c8
DM
370 'Webcache' => [
371 { action => 'PARAM', proto => 'tcp', dport => '8080' },
372 ],
373 'Webmin' => [
374 { action => 'PARAM', proto => 'tcp', dport => '10000' },
375 ],
376 'Whois' => [
377 { action => 'PARAM', proto => 'tcp', dport => '43' },
378 ],
961b4928
DM
379};
380
381my $pve_fw_parsed_macros;
382my $pve_fw_preferred_macro_names = {};
3a616aa0 383
d8f2505e
DM
384my $pve_std_chains = {
385 'PVEFW-SET-ACCEPT-MARK' => [
386 "-j MARK --set-mark 1",
387 ],
79929d9c
DM
388 'PVEFW-DropBroadcast' => [
389 # same as shorewall 'Broadcast'
390 # simply DROP BROADCAST/MULTICAST/ANYCAST
391 # we can use this to reduce logging
392 { action => 'DROP', dsttype => 'BROADCAST' },
393 { action => 'DROP', dsttype => 'MULTICAST' },
394 { action => 'DROP', dsttype => 'ANYCAST' },
395 { action => 'DROP', dest => '224.0.0.0/4' },
396 ],
397 'PVEFW-reject' => [
398 # same as shorewall 'reject'
399 { action => 'DROP', dsttype => 'BROADCAST' },
400 { action => 'DROP', source => '224.0.0.0/4' },
401 { action => 'DROP', proto => 'icmp' },
402 "-p tcp -j REJECT --reject-with tcp-reset",
403 "-p udp -j REJECT --reject-with icmp-port-unreachable",
404 "-p icmp -j REJECT --reject-with icmp-host-unreachable",
405 "-j REJECT --reject-with icmp-host-prohibited",
406 ],
407 'PVEFW-Drop' => [
408 # same as shorewall 'Drop', which is equal to DROP,
409 # but REJECT/DROP some packages to reduce logging,
410 # and ACCEPT critical ICMP types
411 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
412 # we are not interested in BROADCAST/MULTICAST/ANYCAST
413 { action => 'PVEFW-DropBroadcast' },
414 # ACCEPT critical ICMP types
415 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
416 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
417 # Drop packets with INVALID state
418 "-m conntrack --ctstate INVALID -j DROP",
419 # Drop Microsoft SMB noise
420 { action => 'DROP', proto => 'udp', dport => '135,445', nbdport => 2 },
421 { action => 'DROP', proto => 'udp', dport => '137:139'},
422 { action => 'DROP', proto => 'udp', dport => '1024:65535', sport => 137 },
423 { action => 'DROP', proto => 'tcp', dport => '135,139,445', nbdport => 3 },
424 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
425 # Drop new/NotSyn traffic so that it doesn't get logged
426 "-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN -j DROP",
427 # Drop DNS replies
428 { action => 'DROP', proto => 'udp', sport => 53 },
429 ],
430 'PVEFW-Reject' => [
431 # same as shorewall 'Reject', which is equal to Reject,
432 # but REJECT/DROP some packages to reduce logging,
433 # and ACCEPT critical ICMP types
434 { action => 'PVEFW-reject', proto => 'tcp', dport => '43' }, # REJECT 'auth'
435 # we are not interested in BROADCAST/MULTICAST/ANYCAST
436 { action => 'PVEFW-DropBroadcast' },
437 # ACCEPT critical ICMP types
438 { action => 'ACCEPT', proto => 'icmp', dport => 'fragmentation-needed' },
439 { action => 'ACCEPT', proto => 'icmp', dport => 'time-exceeded' },
440 # Drop packets with INVALID state
441 "-m conntrack --ctstate INVALID -j DROP",
442 # Drop Microsoft SMB noise
443 { action => 'PVEFW-reject', proto => 'udp', dport => '135,445', nbdport => 2 },
444 { action => 'PVEFW-reject', proto => 'udp', dport => '137:139'},
445 { action => 'PVEFW-reject', proto => 'udp', dport => '1024:65535', sport => 137 },
446 { action => 'PVEFW-reject', proto => 'tcp', dport => '135,139,445', nbdport => 3 },
447 { action => 'DROP', proto => 'udp', dport => 1900 }, # UPnP
448 # Drop new/NotSyn traffic so that it doesn't get logged
449 "-p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN -j DROP",
450 # Drop DNS replies
451 { action => 'DROP', proto => 'udp', sport => 53 },
452 ],
d86659ef
DM
453 'PVEFW-tcpflags' => [
454 # same as shorewall tcpflags action.
455 # Packets arriving on this interface are checked for som illegal combinations of TCP flags
456 "-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG -g PVEFW-logflags",
457 "-p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -g PVEFW-logflags",
458 "-p tcp -m tcp --tcp-flags SYN,RST SYN,RST -g PVEFW-logflags",
459 "-p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -g PVEFW-logflags",
460 "-p tcp -m tcp --sport 0 --tcp-flags FIN,SYN,RST,ACK SYN -g PVEFW-logflags",
461 ],
bee633ab
DM
462 'PVEFW-smurfs' => [
463 # same as shorewall smurfs action
464 # Filter packets for smurfs (packets with a broadcast address as the source).
465 "-s 0.0.0.0/32 -j RETURN",
466 "-m addrtype --src-type BROADCAST -g PVEFW-smurflog",
467 "-s 224.0.0.0/4 -g PVEFW-smurflog",
468 ],
d8f2505e
DM
469};
470
4b586518
DM
471# iptables -p icmp -h
472my $icmp_type_names = {
473 any => 1,
474 'echo-reply' => 1,
475 'destination-unreachable' => 1,
476 'network-unreachable' => 1,
477 'host-unreachable' => 1,
478 'protocol-unreachable' => 1,
479 'port-unreachable' => 1,
480 'fragmentation-needed' => 1,
481 'source-route-failed' => 1,
482 'network-unknown' => 1,
483 'host-unknown' => 1,
484 'network-prohibited' => 1,
485 'host-prohibited' => 1,
486 'TOS-network-unreachable' => 1,
487 'TOS-host-unreachable' => 1,
488 'communication-prohibited' => 1,
489 'host-precedence-violation' => 1,
490 'precedence-cutoff' => 1,
491 'source-quench' => 1,
492 'redirect' => 1,
493 'network-redirect' => 1,
494 'host-redirect' => 1,
495 'TOS-network-redirect' => 1,
496 'TOS-host-redirect' => 1,
497 'echo-request' => 1,
498 'router-advertisement' => 1,
499 'router-solicitation' => 1,
500 'time-exceeded' => 1,
501 'ttl-zero-during-transit' => 1,
502 'ttl-zero-during-reassembly' => 1,
503 'parameter-problem' => 1,
504 'ip-header-bad' => 1,
505 'required-option-missing' => 1,
506 'timestamp-request' => 1,
507 'timestamp-reply' => 1,
508 'address-mask-request' => 1,
509 'address-mask-reply' => 1,
510};
511
a332200b 512sub get_firewall_macros {
9aab3127 513
961b4928 514 return $pve_fw_parsed_macros if $pve_fw_parsed_macros;
6158271d 515
961b4928 516 $pve_fw_parsed_macros = {};
9aab3127 517
961b4928
DM
518 foreach my $k (keys %$pve_fw_macros) {
519 my $name = lc($k);
a332200b 520
961b4928
DM
521 my $macro = $pve_fw_macros->{$k};
522 $pve_fw_preferred_macro_names->{$name} = $k;
523 $pve_fw_parsed_macros->{$name} = $macro;
524 }
a332200b 525
961b4928 526 return $pve_fw_parsed_macros;
9aab3127
DM
527}
528
fcba0beb
DM
529my $etc_services;
530
531sub get_etc_services {
532
533 return $etc_services if $etc_services;
534
535 my $filename = "/etc/services";
536
537 my $fh = IO::File->new($filename, O_RDONLY);
538 if (!$fh) {
539 warn "unable to read '$filename' - $!\n";
540 return {};
541 }
542
543 my $services = {};
544
545 while (my $line = <$fh>) {
546 chomp ($line);
547 next if $line =~m/^#/;
548 next if ($line =~m/^\s*$/);
549
550 if ($line =~ m!^(\S+)\s+(\S+)/(tcp|udp).*$!) {
551 $services->{byid}->{$2}->{name} = $1;
35b66e9d 552 $services->{byid}->{$2}->{port} = $2;
fcba0beb
DM
553 $services->{byid}->{$2}->{$3} = 1;
554 $services->{byname}->{$1} = $services->{byid}->{$2};
555 }
556 }
557
558 close($fh);
559
6158271d
DM
560 $etc_services = $services;
561
3a616aa0 562
fcba0beb
DM
563 return $etc_services;
564}
565
566my $etc_protocols;
567
568sub get_etc_protocols {
569 return $etc_protocols if $etc_protocols;
570
571 my $filename = "/etc/protocols";
572
573 my $fh = IO::File->new($filename, O_RDONLY);
574 if (!$fh) {
575 warn "unable to read '$filename' - $!\n";
576 return {};
577 }
578
579 my $protocols = {};
580
581 while (my $line = <$fh>) {
582 chomp ($line);
583 next if $line =~m/^#/;
584 next if ($line =~m/^\s*$/);
585
586 if ($line =~ m!^(\S+)\s+(\d+)\s+.*$!) {
587 $protocols->{byid}->{$2}->{name} = $1;
588 $protocols->{byname}->{$1} = $protocols->{byid}->{$2};
589 }
590 }
591
592 close($fh);
593
594 $etc_protocols = $protocols;
595
596 return $etc_protocols;
597}
598
ecbea048
DM
599sub parse_address_list {
600 my ($str) = @_;
601
d6de1dc2 602 my $nbaor = 0;
ecbea048
DM
603 foreach my $aor (split(/,/, $str)) {
604 if (!Net::IP->new($aor)) {
605 my $err = Net::IP::Error();
606 die "invalid IP address: $err\n";
d6de1dc2
AD
607 }else{
608 $nbaor++;
ecbea048
DM
609 }
610 }
d6de1dc2 611 return $nbaor;
ecbea048 612}
dddd9413 613
fcba0beb
DM
614sub parse_port_name_number_or_range {
615 my ($str) = @_;
616
617 my $services = PVE::Firewall::get_etc_services();
4cdbb3b7 618 my $nbports = 0;
fcba0beb 619 foreach my $item (split(/,/, $str)) {
4cdbb3b7 620 my $portlist = "";
35b66e9d 621 my $oldpon = undef;
4b586518 622 $nbports++;
fcba0beb 623 foreach my $pon (split(':', $item, 2)) {
35b66e9d 624 $pon = $services->{byname}->{$pon}->{port} if $services->{byname}->{$pon}->{port};
4cdbb3b7 625 if ($pon =~ m/^\d+$/){
857f62c8 626 die "invalid port '$pon'\n" if $pon < 0 && $pon > 65535;
35b66e9d
AD
627 die "port '$pon' must be bigger than port '$oldpon' \n" if $oldpon && ($pon < $oldpon);
628 $oldpon = $pon;
4cdbb3b7
AD
629 }else{
630 die "invalid port $services->{byname}->{$pon}\n" if !$services->{byname}->{$pon};
631 }
fcba0beb
DM
632 }
633 }
634
4cdbb3b7 635 return ($nbports);
fcba0beb
DM
636}
637
780bcc0f
DM
638my $bridge_firewall_enabled = 0;
639
640sub enable_bridge_firewall {
641
642 return if $bridge_firewall_enabled; # only once
643
5f0a912c
DM
644 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/bridge/bridge-nf-call-iptables", "1");
645 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/bridge/bridge-nf-call-ip6tables", "1");
780bcc0f 646
6a8a75db
DM
647 # make sure syncookies are enabled (which is default on newer 3.X kernels anyways)
648 PVE::ProcFSTools::write_proc_entry("/proc/sys/net/ipv4/tcp_syncookies", "1");
649
780bcc0f
DM
650 $bridge_firewall_enabled = 1;
651}
652
8cebfa6f 653my $rule_format = "%-15s %-30s %-30s %-15s %-15s %-15s\n";
dddd9413 654
3a616aa0
AD
655sub iptables {
656 my ($cmd) = @_;
657
658 run_command("/sbin/iptables $cmd", outfunc => sub {}, errfunc => sub {});
659}
660
b16e818e
DM
661sub iptables_restore_cmdlist {
662 my ($cmdlist) = @_;
3a616aa0 663
3fa83edf 664 run_command("/sbin/iptables-restore -n", input => $cmdlist);
3a616aa0
AD
665}
666
de2a57cd
DM
667sub iptables_get_chains {
668
669 my $res = {};
670
671 # check what chains we want to track
672 my $is_pvefw_chain = sub {
673 my $name = shift;
674
dec84fcd
DM
675 return 1 if $name =~ m/^PVEFW-\S+$/;
676
de2a57cd 677 return 1 if $name =~ m/^tap\d+i\d+-(:?IN|OUT)$/;
954f24b1
DM
678
679 return 1 if $name =~ m/^veth\d+.\d+-(:?IN|OUT)$/; # fixme: dev name is configurable
680
9e15114a
DM
681 return 1 if $name =~ m/^venet0-\d+-(:?IN|OUT)$/;
682
5927497d 683 return 1 if $name =~ m/^vmbr\d+-(:?FW|IN|OUT)$/;
f50656c2 684 return 1 if $name =~ m/^GROUP-(:?[^\s\-]+)-(:?IN|OUT)$/;
de2a57cd
DM
685
686 return undef;
687 };
688
689 my $table = '';
690
de2a57cd
DM
691 my $parser = sub {
692 my $line = shift;
693
694 return if $line =~ m/^#/;
695 return if $line =~ m/^\s*$/;
696
697 if ($line =~ m/^\*(\S+)$/) {
698 $table = $1;
699 return;
700 }
701
702 return if $table ne 'filter';
703
704 if ($line =~ m/^:(\S+)\s/) {
705 my $chain = $1;
706 return if !&$is_pvefw_chain($chain);
3fa83edf 707 $res->{$chain} = "unknown";
09d5f68e 708 } elsif ($line =~ m/^-A\s+(\S+)\s.*--comment\s+\"PVESIG:(\S+)\"/) {
3fa83edf 709 my ($chain, $sig) = ($1, $2);
de2a57cd 710 return if !&$is_pvefw_chain($chain);
3fa83edf 711 $res->{$chain} = $sig;
de2a57cd
DM
712 } else {
713 # simply ignore the rest
714 return;
715 }
716 };
717
718 run_command("/sbin/iptables-save", outfunc => $parser);
719
de2a57cd
DM
720 return $res;
721}
722
3a616aa0
AD
723sub iptables_chain_exist {
724 my ($chain) = @_;
725
726 eval{
727 iptables("-n --list $chain");
728 };
729 return undef if $@;
730
731 return 1;
732}
733
734sub iptables_rule_exist {
735 my ($rule) = @_;
736
737 eval{
738 iptables("-C $rule");
739 };
740 return undef if $@;
741
742 return 1;
743}
744
eba0fb64 745sub ruleset_generate_cmdstr {
2f906466 746 my ($ruleset, $chain, $rule, $actions, $goto) = @_;
3a616aa0 747
11bac5c2
DM
748 return if $rule->{disable};
749
41524a58 750 my @cmd = ();
3a616aa0 751
eba0fb64
DM
752 push @cmd, "-i $rule->{iface_in}" if $rule->{iface_in};
753 push @cmd, "-o $rule->{iface_out}" if $rule->{iface_out};
754
41524a58
DM
755 push @cmd, "-m iprange --src-range" if $rule->{nbsource} && $rule->{nbsource} > 1;
756 push @cmd, "-s $rule->{source}" if $rule->{source};
757 push @cmd, "-m iprange --dst-range" if $rule->{nbdest} && $rule->{nbdest} > 1;
758 push @cmd, "-d $rule->{dest}" if $rule->{dest};
4b586518 759
181390b0 760 if ($rule->{proto}) {
41524a58 761 push @cmd, "-p $rule->{proto}";
e3a1d391 762
181390b0
DM
763 my $multiport = 0;
764 $multiport++ if $rule->{nbdport} && ($rule->{nbdport} > 1);
765 $multiport++ if $rule->{nbsport} && ($rule->{nbsport} > 1);
e3a1d391 766
41524a58 767 push @cmd, "--match multiport" if $multiport;
4b586518 768
181390b0
DM
769 die "multiport: option '--sports' cannot be used together with '--dports'\n"
770 if ($multiport == 2) && ($rule->{dport} ne $rule->{sport});
771
772 if ($rule->{dport}) {
773 if ($rule->{proto} && $rule->{proto} eq 'icmp') {
774 # Note: we use dport to store --icmp-type
775 die "unknown icmp-type '$rule->{dport}'\n" if !defined($icmp_type_names->{$rule->{dport}});
41524a58 776 push @cmd, "-m icmp --icmp-type $rule->{dport}";
181390b0
DM
777 } else {
778 if ($rule->{nbdport} && $rule->{nbdport} > 1) {
779 if ($multiport == 2) {
41524a58 780 push @cmd, "--ports $rule->{dport}";
181390b0 781 } else {
41524a58 782 push @cmd, "--dports $rule->{dport}";
181390b0 783 }
e3a1d391 784 } else {
41524a58 785 push @cmd, "--dport $rule->{dport}";
e3a1d391 786 }
4b586518
DM
787 }
788 }
4b586518 789
181390b0
DM
790 if ($rule->{sport}) {
791 if ($rule->{nbsport} && $rule->{nbsport} > 1) {
41524a58 792 push @cmd, "--sports $rule->{sport}" if $multiport != 2;
181390b0 793 } else {
41524a58 794 push @cmd, "--sport $rule->{sport}";
181390b0 795 }
4b586518 796 }
181390b0
DM
797 } elsif ($rule->{dport} || $rule->{sport}) {
798 warn "ignoring destination port '$rule->{dport}' - no protocol specified\n" if $rule->{dport};
799 warn "ignoring source port '$rule->{sport}' - no protocol specified\n" if $rule->{sport};
4b586518
DM
800 }
801
41524a58 802 push @cmd, "-m addrtype --dst-type $rule->{dsttype}" if $rule->{dsttype};
4e6112f9
DM
803
804 if (my $action = $rule->{action}) {
2f906466 805 $action = $actions->{$action} if defined($actions->{$action});
4e6112f9 806 $goto = 1 if !defined($goto) && $action eq 'PVEFW-SET-ACCEPT-MARK';
41524a58 807 push @cmd, $goto ? "-g $action" : "-j $action";
181390b0 808 }
3a616aa0 809
eba0fb64
DM
810 return scalar(@cmd) ? join(' ', @cmd) : undef;
811}
812
813sub ruleset_generate_rule {
814 my ($ruleset, $chain, $rule, $actions, $goto) = @_;
815
816 if (my $cmdstr = ruleset_generate_cmdstr($ruleset, $chain, $rule, $actions, $goto)) {
41524a58
DM
817 ruleset_addrule($ruleset, $chain, $cmdstr);
818 }
3fa83edf 819}
eba0fb64
DM
820sub ruleset_generate_rule_insert {
821 my ($ruleset, $chain, $rule, $actions, $goto) = @_;
822
823 if (my $cmdstr = ruleset_generate_cmdstr($ruleset, $chain, $rule, $actions, $goto)) {
824 ruleset_insertrule($ruleset, $chain, $cmdstr);
825 }
826}
3fa83edf
DM
827
828sub ruleset_create_chain {
829 my ($ruleset, $chain) = @_;
3a616aa0 830
d050c724 831 die "Invalid chain name '$chain' (28 char max)\n" if length($chain) > 28;
782c4cde 832 die "chain name may not contain collons\n" if $chain =~ m/:/; # because of log format
d050c724 833
3fa83edf
DM
834 die "chain '$chain' already exists\n" if $ruleset->{$chain};
835
836 $ruleset->{$chain} = [];
3a616aa0
AD
837}
838
3fa83edf
DM
839sub ruleset_chain_exist {
840 my ($ruleset, $chain) = @_;
3a616aa0 841
3fa83edf
DM
842 return $ruleset->{$chain} ? 1 : undef;
843}
3a616aa0 844
3fa83edf
DM
845sub ruleset_addrule {
846 my ($ruleset, $chain, $rule) = @_;
3a616aa0 847
3fa83edf 848 die "no such chain '$chain'\n" if !$ruleset->{$chain};
3a616aa0 849
3fa83edf
DM
850 push @{$ruleset->{$chain}}, "-A $chain $rule";
851}
3a616aa0 852
3fa83edf
DM
853sub ruleset_insertrule {
854 my ($ruleset, $chain, $rule) = @_;
3a616aa0 855
3fa83edf 856 die "no such chain '$chain'\n" if !$ruleset->{$chain};
3a616aa0 857
3fa83edf
DM
858 unshift @{$ruleset->{$chain}}, "-A $chain $rule";
859}
3a616aa0 860
782c4cde
DM
861sub get_log_rule_base {
862 my ($chain, $vmid, $msg, $loglevel) = @_;
863
864 die "internal error - no log level" if !defined($loglevel);
865
866 $vmid = 0 if !defined($vmid);
867
868 # Note: we use special format for prefix to pass further
869 # info to log daemon (VMID, LOGVELEL and CHAIN)
870
871 return "-j NFLOG --nflog-prefix \":$vmid:$loglevel:$chain: $msg\"";
872}
873
874sub ruleset_addlog {
875 my ($ruleset, $chain, $vmid, $msg, $loglevel, $rule) = @_;
876
877 return if !defined($loglevel);
878
879 my $logrule = get_log_rule_base($chain, $vmid, $msg, $loglevel);
880
881 $logrule = "$rule $logrule" if defined($rule);
882
883 ruleset_addrule($ruleset, $chain, $logrule)
884}
885
3fa83edf 886sub generate_bridge_chains {
530c005e
DM
887 my ($ruleset, $hostfw_conf, $bridge, $routing_table) = @_;
888
889 my $options = $hostfw_conf->{options} || {};
890
891 die "error: detected direct route to bridge '$bridge'\n"
892 if !$options->{allow_bridge_route} && $routing_table->{$bridge};
2f3d8d76 893
5927497d
DM
894 if (!ruleset_chain_exist($ruleset, "$bridge-FW")) {
895 ruleset_create_chain($ruleset, "$bridge-FW");
3cc81077
DM
896 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-o $bridge -m physdev --physdev-is-out -j $bridge-FW");
897 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i $bridge -m physdev --physdev-is-in -j $bridge-FW");
3fa83edf 898 }
3a616aa0 899
3fa83edf
DM
900 if (!ruleset_chain_exist($ruleset, "$bridge-OUT")) {
901 ruleset_create_chain($ruleset, "$bridge-OUT");
3cc81077
DM
902 ruleset_addrule($ruleset, "$bridge-FW", "-m physdev --physdev-is-in -j $bridge-OUT");
903 ruleset_insertrule($ruleset, "PVEFW-INPUT", "-i $bridge -m physdev --physdev-is-in -j $bridge-OUT");
9fcad984
AD
904 }
905
906 if (!ruleset_chain_exist($ruleset, "$bridge-IN")) {
907 ruleset_create_chain($ruleset, "$bridge-IN");
3cc81077 908 ruleset_addrule($ruleset, "$bridge-FW", "-m physdev --physdev-is-out -j $bridge-IN");
fdb0bf20 909 ruleset_addrule($ruleset, "$bridge-FW", "-m mark --mark 1 -j ACCEPT");
7323008d 910 # accept traffic to unmanaged bridge ports
3cc81077 911 ruleset_addrule($ruleset, "$bridge-FW", "-m physdev --physdev-is-out -j ACCEPT ");
3fa83edf
DM
912 }
913}
3a616aa0 914
ead850e8 915sub ruleset_add_chain_policy {
782c4cde 916 my ($ruleset, $chain, $vmid, $policy, $loglevel, $accept_action) = @_;
ead850e8
DM
917
918 if ($policy eq 'ACCEPT') {
919
920 ruleset_generate_rule($ruleset, $chain, { action => 'ACCEPT' },
921 { ACCEPT => $accept_action});
922
923 } elsif ($policy eq 'DROP') {
924
925 ruleset_addrule($ruleset, $chain, "-j PVEFW-Drop");
926
782c4cde 927 ruleset_addlog($ruleset, $chain, $vmid, "policy $policy: ", $loglevel);
ead850e8
DM
928
929 ruleset_addrule($ruleset, $chain, "-j DROP");
930 } elsif ($policy eq 'REJECT') {
931 ruleset_addrule($ruleset, $chain, "-j PVEFW-Reject");
932
782c4cde 933 ruleset_addlog($ruleset, $chain, $vmid, "policy $policy: ", $loglevel);
ead850e8
DM
934
935 ruleset_addrule($ruleset, $chain, "-g PVEFW-reject");
936 } else {
937 # should not happen
938 die "internal error: unknown policy '$policy'";
939 }
940}
941
9e15114a
DM
942sub ruleset_create_vm_chain {
943 my ($ruleset, $chain, $options, $macaddr, $direction) = @_;
3a616aa0 944
9e15114a 945 ruleset_create_chain($ruleset, $chain);
3a616aa0 946
bee633ab 947 if (!(defined($options->{nosmurfs}) && $options->{nosmurfs} == 0)) {
9e15114a 948 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID,NEW -j PVEFW-smurfs");
bee633ab
DM
949 }
950
ce15d90b 951 if (!(defined($options->{dhcp}) && $options->{dhcp} == 0)) {
9e15114a 952 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 67:68 -j ACCEPT");
ce15d90b
DM
953 }
954
bee633ab 955 if ($options->{tcpflags}) {
9e15114a 956 ruleset_addrule($ruleset, $chain, "-p tcp -j PVEFW-tcpflags");
bee633ab
DM
957 }
958
9e15114a
DM
959 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID -j DROP");
960 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
3a616aa0 961
b21aca2c
DM
962 if ($direction eq 'OUT') {
963 if (defined($macaddr) && !(defined($options->{macfilter}) && $options->{macfilter} == 0)) {
9e15114a 964 ruleset_addrule($ruleset, $chain, "-m mac ! --mac-source $macaddr -j DROP");
b21aca2c 965 }
9e15114a 966 ruleset_addrule($ruleset, $chain, "-j MARK --set-mark 0"); # clear mark
c29f55c9 967 }
9e15114a
DM
968}
969
970sub ruleset_generate_vm_rules {
971 my ($ruleset, $rules, $groups_conf, $chain, $netid, $direction) = @_;
972
973 my $lc_direction = lc($direction);
c29f55c9 974
92e976b3
DM
975 foreach my $rule (@$rules) {
976 next if $rule->{iface} && $rule->{iface} ne $netid;
977 next if $rule->{disable};
978 if ($rule->{type} eq 'group') {
979 my $group_chain = "GROUP-$rule->{action}-$direction";
980 if(!ruleset_chain_exist($ruleset, $group_chain)){
981 generate_group_rules($ruleset, $groups_conf, $rule->{action});
982 }
9e15114a
DM
983 ruleset_addrule($ruleset, $chain, "-j $group_chain");
984 ruleset_addrule($ruleset, $chain, "-m mark --mark 1 -j RETURN")
92e976b3
DM
985 if $direction eq 'OUT';
986 } else {
987 next if $rule->{type} ne $lc_direction;
988 if ($direction eq 'OUT') {
9e15114a 989 ruleset_generate_rule($ruleset, $chain, $rule,
92e976b3 990 { ACCEPT => "PVEFW-SET-ACCEPT-MARK", REJECT => "PVEFW-reject" });
4e6112f9 991 } else {
9e15114a 992 ruleset_generate_rule($ruleset, $chain, $rule, { REJECT => "PVEFW-reject" });
3a616aa0 993 }
4e6112f9 994 }
3a616aa0 995 }
9e15114a
DM
996}
997
998sub generate_venet_rules_direction {
999 my ($ruleset, $groups_conf, $vmfw_conf, $vmid, $ip, $direction) = @_;
1000
5176619e 1001 parse_address_list($ip); # make sure we have a valid $ip list
9e15114a
DM
1002
1003 my $lc_direction = lc($direction);
1004
1005 my $rules = $vmfw_conf->{rules};
1006
1007 my $options = $vmfw_conf->{options};
1008 my $loglevel = get_option_log_level($options, "log_level_${lc_direction}");
1009
1010 my $chain = "venet0-$vmid-$direction";
1011
1012 ruleset_create_vm_chain($ruleset, $chain, $options, undef, $direction);
1013
1014 ruleset_generate_vm_rules($ruleset, $rules, $groups_conf, $chain, 'venet', $direction);
1015
1016 # implement policy
1017 my $policy;
1018
1019 if ($direction eq 'OUT') {
1020 $policy = $options->{policy_out} || 'ACCEPT'; # allow everything by default
1021 } else {
1022 $policy = $options->{policy_in} || 'DROP'; # allow nothing by default
1023 }
1024
1025 my $accept_action = $direction eq 'OUT' ? "PVEFW-SET-ACCEPT-MARK" : "ACCEPT";
782c4cde 1026 ruleset_add_chain_policy($ruleset, $chain, $vmid, $policy, $loglevel, $accept_action);
9e15114a 1027
38485daa 1028 # plug into FORWARD, INPUT and OUTPUT chain
eba0fb64
DM
1029 if ($direction eq 'OUT') {
1030 ruleset_generate_rule_insert($ruleset, "PVEFW-FORWARD", {
1031 action => $chain,
1032 source => $ip,
1033 iface_in => 'venet0'});
38485daa
DM
1034
1035 ruleset_generate_rule_insert($ruleset, "PVEFW-INPUT", {
1036 action => $chain,
1037 source => $ip,
1038 iface_in => 'venet0'});
eba0fb64
DM
1039 } else {
1040 ruleset_generate_rule($ruleset, "PVEFW-FORWARD", {
1041 action => $chain,
1042 dest => $ip,
1043 iface_out => 'venet0'});
38485daa
DM
1044
1045 ruleset_generate_rule($ruleset, "PVEFW-OUTPUT", {
1046 action => $chain,
1047 dest => $ip,
1048 iface_out => 'venet0'});
eba0fb64 1049 }
9e15114a
DM
1050}
1051
1052sub generate_tap_rules_direction {
782c4cde 1053 my ($ruleset, $groups_conf, $iface, $netid, $macaddr, $vmfw_conf, $vmid, $bridge, $direction) = @_;
9e15114a
DM
1054
1055 my $lc_direction = lc($direction);
1056
1057 my $rules = $vmfw_conf->{rules};
1058
1059 my $options = $vmfw_conf->{options};
1060 my $loglevel = get_option_log_level($options, "log_level_${lc_direction}");
1061
1062 my $tapchain = "$iface-$direction";
1063
1064 ruleset_create_vm_chain($ruleset, $tapchain, $options, $macaddr, $direction);
1065
1066 ruleset_generate_vm_rules($ruleset, $rules, $groups_conf, $tapchain, $netid, $direction);
3a616aa0 1067
ccae0b50
DM
1068 # implement policy
1069 my $policy;
1070
1071 if ($direction eq 'OUT') {
72f63fde 1072 $policy = $options->{policy_out} || 'ACCEPT'; # allow everything by default
ccae0b50 1073 } else {
72f63fde 1074 $policy = $options->{policy_in} || 'DROP'; # allow nothing by default
ccae0b50
DM
1075 }
1076
ead850e8 1077 my $accept_action = $direction eq 'OUT' ? "PVEFW-SET-ACCEPT-MARK" : "ACCEPT";
782c4cde 1078 ruleset_add_chain_policy($ruleset, $tapchain, $vmid, $policy, $loglevel, $accept_action);
3a616aa0 1079
3fa83edf 1080 # plug the tap chain to bridge chain
3cc81077
DM
1081 if ($direction eq 'IN') {
1082 ruleset_insertrule($ruleset, "$bridge-IN",
1083 "-m physdev --physdev-is-bridged --physdev-out $iface -j $tapchain");
1084 } else {
1085 ruleset_insertrule($ruleset, "$bridge-OUT",
1086 "-m physdev --physdev-in $iface -j $tapchain");
1087 }
3a616aa0
AD
1088}
1089
d18c1e2b 1090sub enable_host_firewall {
92e976b3 1091 my ($ruleset, $hostfw_conf, $groups_conf) = @_;
0bd5f137 1092
51bae274 1093 # fixme: allow security groups
0bd5f137 1094
92e976b3
DM
1095 my $options = $hostfw_conf->{options};
1096 my $rules = $hostfw_conf->{rules};
178a63be 1097
3fa83edf 1098 # host inbound firewall
dec84fcd
DM
1099 my $chain = "PVEFW-HOST-IN";
1100 ruleset_create_chain($ruleset, $chain);
0bd5f137 1101
178a63be
DM
1102 my $loglevel = get_option_log_level($options, "log_level_in");
1103
7fab95bc
DM
1104 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID -j DROP");
1105 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
dec84fcd
DM
1106 ruleset_addrule($ruleset, $chain, "-i lo -j ACCEPT");
1107 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST -j ACCEPT");
97156ecc 1108 ruleset_addrule($ruleset, $chain, "-p udp -m conntrack --ctstate NEW --dport 5404:5405 -j ACCEPT");
dec84fcd 1109 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 9000 -j ACCEPT"); #corosync
0bd5f137 1110
23e888f8
DM
1111 # we use RETURN because we need to check also tap rules
1112 my $accept_action = 'RETURN';
1113
92e976b3
DM
1114 foreach my $rule (@$rules) {
1115 next if $rule->{type} ne 'in';
23e888f8 1116 ruleset_generate_rule($ruleset, $chain, $rule, { ACCEPT => $accept_action, REJECT => "PVEFW-reject" });
0bd5f137
AD
1117 }
1118
23e888f8 1119 # implement input policy
72f63fde 1120 my $policy = $options->{policy_in} || 'DROP'; # allow nothing by default
782c4cde 1121 ruleset_add_chain_policy($ruleset, $chain, 0, $policy, $loglevel, $accept_action);
0bd5f137 1122
3fa83edf 1123 # host outbound firewall
aadd745e 1124 $chain = "PVEFW-HOST-OUT";
dec84fcd
DM
1125 ruleset_create_chain($ruleset, $chain);
1126
178a63be
DM
1127 $loglevel = get_option_log_level($options, "log_level_out");
1128
7fab95bc
DM
1129 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate INVALID -j DROP");
1130 ruleset_addrule($ruleset, $chain, "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
dec84fcd
DM
1131 ruleset_addrule($ruleset, $chain, "-o lo -j ACCEPT");
1132 ruleset_addrule($ruleset, $chain, "-m addrtype --dst-type MULTICAST -j ACCEPT");
97156ecc 1133 ruleset_addrule($ruleset, $chain, "-p udp -m conntrack --ctstate NEW --dport 5404:5405 -j ACCEPT");
dec84fcd 1134 ruleset_addrule($ruleset, $chain, "-p udp -m udp --dport 9000 -j ACCEPT"); #corosync
0bd5f137 1135
23e888f8
DM
1136 # we use RETURN because we may want to check other thigs later
1137 $accept_action = 'RETURN';
1138
92e976b3
DM
1139 foreach my $rule (@$rules) {
1140 next if $rule->{type} ne 'out';
23e888f8 1141 ruleset_generate_rule($ruleset, $chain, $rule, { ACCEPT => $accept_action, REJECT => "PVEFW-reject" });
0bd5f137
AD
1142 }
1143
23e888f8 1144 # implement output policy
72f63fde 1145 $policy = $options->{policy_out} || 'ACCEPT'; # allow everything by default
782c4cde 1146 ruleset_add_chain_policy($ruleset, $chain, 0, $policy, $loglevel, $accept_action);
6158271d 1147
dec84fcd
DM
1148 ruleset_addrule($ruleset, "PVEFW-OUTPUT", "-j PVEFW-HOST-OUT");
1149 ruleset_addrule($ruleset, "PVEFW-INPUT", "-j PVEFW-HOST-IN");
9d31b418
AD
1150}
1151
1152sub generate_group_rules {
92e976b3 1153 my ($ruleset, $groups_conf, $group) = @_;
9d31b418 1154
92e976b3 1155 die "no such security group '$group'\n" if !$groups_conf->{$group};
9d31b418 1156
92e976b3 1157 my $rules = $groups_conf->{$group}->{rules};
6158271d 1158
3fa83edf 1159 my $chain = "GROUP-${group}-IN";
9d31b418 1160
3fa83edf 1161 ruleset_create_chain($ruleset, $chain);
9d31b418 1162
92e976b3
DM
1163 foreach my $rule (@$rules) {
1164 next if $rule->{type} ne 'in';
1165 ruleset_generate_rule($ruleset, $chain, $rule, { REJECT => "PVEFW-reject" });
9d31b418
AD
1166 }
1167
3fa83edf 1168 $chain = "GROUP-${group}-OUT";
9d31b418 1169
3fa83edf 1170 ruleset_create_chain($ruleset, $chain);
4e6112f9 1171 ruleset_addrule($ruleset, $chain, "-j MARK --set-mark 0"); # clear mark
9d31b418 1172
92e976b3
DM
1173 foreach my $rule (@$rules) {
1174 next if $rule->{type} ne 'out';
1175 # we use PVEFW-SET-ACCEPT-MARK (Instead of ACCEPT) because we need to
1176 # check also other tap rules later
1177 ruleset_generate_rule($ruleset, $chain, $rule,
1178 { ACCEPT => 'PVEFW-SET-ACCEPT-MARK', REJECT => "PVEFW-reject" });
9d31b418 1179 }
9d31b418
AD
1180}
1181
51bae274
DM
1182my $MAX_NETS = 32;
1183my $valid_netdev_names = {};
1184for (my $i = 0; $i < $MAX_NETS; $i++) {
1185 $valid_netdev_names->{"net$i"} = 1;
1186}
5e1267a5 1187
51bae274
DM
1188sub parse_fw_rule {
1189 my ($line, $need_iface, $allow_groups) = @_;
5e1267a5 1190
a332200b 1191 my $macros = get_firewall_macros();
fcba0beb 1192 my $protocols = get_etc_protocols();
51bae274 1193
92e976b3 1194 my ($type, $action, $iface, $source, $dest, $proto, $dport, $sport);
51bae274 1195
11bac5c2
DM
1196 # we can add single line comments to the end of the rule
1197 my $comment = $1 if $line =~ s/#\s*(.*?)\s*$//;
1198
1199 # we can disable a rule when prefixed with '|'
1200 my $disable = 1 if $line =~ s/^\|//;
51bae274
DM
1201
1202 my @data = split(/\s+/, $line);
92e976b3 1203 my $expected_elements = $need_iface ? 8 : 7;
51bae274
DM
1204
1205 die "wrong number of rule elements\n" if scalar(@data) > $expected_elements;
1206
1207 if ($need_iface) {
92e976b3 1208 ($type, $action, $iface, $source, $dest, $proto, $dport, $sport) = @data
51bae274 1209 } else {
92e976b3 1210 ($type, $action, $source, $dest, $proto, $dport, $sport) = @data;
51bae274
DM
1211 }
1212
92e976b3 1213 die "incomplete rule\n" if ! ($type && $action);
51bae274 1214
961b4928
DM
1215 my $macro;
1216 my $macro_name;
1217
92e976b3
DM
1218 $type = lc($type);
1219
1220 if ($type eq 'in' || $type eq 'out') {
1221 if ($action =~ m/^(ACCEPT|DROP|REJECT)$/) {
1222 # OK
1223 } elsif ($action =~ m/^(\S+)\((ACCEPT|DROP|REJECT)\)$/) {
1224 ($macro_name, $action) = ($1, $2);
1225 my $lc_macro_name = lc($macro_name);
1226 my $preferred_name = $pve_fw_preferred_macro_names->{$lc_macro_name};
1227 $macro_name = $preferred_name if $preferred_name;
1228 $macro = $macros->{$lc_macro_name};
1229 die "unknown macro '$macro_name'\n" if !$macro;
1230 } else {
1231 die "unknown action '$action'\n";
1232 }
1233 } elsif ($type eq 'group') {
1234 die "wrong number of rule elements\n" if scalar(@data) != 3;
1235 die "groups disabled\n" if !$allow_groups;
1236
1237 die "invalid characters in group name\n" if $action !~ m/^[A-Za-z0-9_\-]+$/;
51bae274 1238 } else {
92e976b3 1239 die "unknown rule type '$type'\n";
51bae274
DM
1240 }
1241
1242 if ($need_iface) {
1243 $iface = undef if $iface && $iface eq '-';
51bae274
DM
1244 }
1245
1246 $proto = undef if $proto && $proto eq '-';
6158271d 1247 die "unknown protokol '$proto'\n" if $proto &&
51bae274
DM
1248 !(defined($protocols->{byname}->{$proto}) ||
1249 defined($protocols->{byid}->{$proto}));
1250
1251 $source = undef if $source && $source eq '-';
1252 $dest = undef if $dest && $dest eq '-';
1253
1254 $dport = undef if $dport && $dport eq '-';
1255 $sport = undef if $sport && $sport eq '-';
1256
51bae274
DM
1257 my $nbsource = undef;
1258 my $nbdest = undef;
1259
1260 $nbsource = parse_address_list($source) if $source;
1261 $nbdest = parse_address_list($dest) if $dest;
6158271d 1262
961b4928 1263 my $rules = [];
51bae274 1264
961b4928 1265 my $param = {
92e976b3 1266 type => $type,
11bac5c2
DM
1267 disable => $disable,
1268 comment => $comment,
51bae274 1269 action => $action,
51bae274
DM
1270 iface => $iface,
1271 source => $source,
1272 dest => $dest,
1273 nbsource => $nbsource,
1274 nbdest => $nbdest,
1275 proto => $proto,
1276 dport => $dport,
1277 sport => $sport,
51bae274 1278 };
961b4928
DM
1279
1280 if ($macro) {
1281 foreach my $templ (@$macro) {
1282 my $rule = {};
faf7be7e 1283 my $param_used = {};
961b4928
DM
1284 foreach my $k (keys %$templ) {
1285 my $v = $templ->{$k};
857f62c8
DM
1286 if ($v eq 'PARAM') {
1287 $v = $param->{$k};
faf7be7e 1288 $param_used->{$k} = 1;
857f62c8
DM
1289 } elsif ($v eq 'DEST') {
1290 $v = $param->{dest};
faf7be7e 1291 $param_used->{dest} = 1;
857f62c8
DM
1292 } elsif ($v eq 'SOURCE') {
1293 $v = $param->{source};
faf7be7e 1294 $param_used->{source} = 1;
857f62c8
DM
1295 }
1296
961b4928
DM
1297 die "missing parameter '$k' in macro '$macro_name'\n" if !defined($v);
1298 $rule->{$k} = $v;
1299 }
faf7be7e
DM
1300 foreach my $k (keys %$param) {
1301 next if !defined($param->{$k});
1302 next if $param_used->{$k};
1303 if (defined($rule->{$k})) {
1304 die "parameter '$k' already define in macro (value = '$rule->{$k}')\n"
1305 if $rule->{$k} ne $param->{$k};
1306 } else {
1307 $rule->{$k} = $param->{$k};
1308 }
1309 }
961b4928
DM
1310 push @$rules, $rule;
1311 }
1312 } else {
1313 push @$rules, $param;
1314 }
1315
1316 foreach my $rule (@$rules) {
6158271d 1317 $rule->{nbdport} = parse_port_name_number_or_range($rule->{dport})
961b4928 1318 if defined($rule->{dport});
6158271d 1319 $rule->{nbsport} = parse_port_name_number_or_range($rule->{sport})
961b4928
DM
1320 if defined($rule->{sport});
1321 }
1322
1323 return $rules;
51bae274
DM
1324}
1325
2d404ffc 1326sub parse_vmfw_option {
85c6eaed
DM
1327 my ($line) = @_;
1328
1329 my ($opt, $value);
1330
178a63be
DM
1331 my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
1332
ce15d90b 1333 if ($line =~ m/^(enable|dhcp|macfilter|nosmurfs|tcpflags):\s*(0|1)\s*$/i) {
9c6b6efd
DM
1334 $opt = lc($1);
1335 $value = int($2);
178a63be
DM
1336 } elsif ($line =~ m/^(log_level_in|log_level_out):\s*(($loglevels)\s*)?$/i) {
1337 $opt = lc($1);
1338 $value = $2 ? lc($3) : '';
72f63fde 1339 } elsif ($line =~ m/^(policy_(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
85c6eaed
DM
1340 $opt = lc($1);
1341 $value = uc($3);
9c6b6efd 1342 } else {
85c6eaed
DM
1343 chomp $line;
1344 die "can't parse option '$line'\n"
1345 }
1346
1347 return ($opt, $value);
1348}
1349
2d404ffc
DM
1350sub parse_hostfw_option {
1351 my ($line) = @_;
1352
1353 my ($opt, $value);
1354
1355 my $loglevels = "emerg|alert|crit|err|warning|notice|info|debug|nolog";
1356
530c005e 1357 if ($line =~ m/^(enable|dhcp|nosmurfs|tcpflags|allow_bridge_route):\s*(0|1)\s*$/i) {
2d404ffc
DM
1358 $opt = lc($1);
1359 $value = int($2);
178a63be 1360 } elsif ($line =~ m/^(log_level_in|log_level_out|tcp_flags_log_level|smurf_log_level):\s*(($loglevels)\s*)?$/i) {
2d404ffc
DM
1361 $opt = lc($1);
1362 $value = $2 ? lc($3) : '';
72f63fde 1363 } elsif ($line =~ m/^(policy_(in|out)):\s*(ACCEPT|DROP|REJECT)\s*$/i) {
2d404ffc
DM
1364 $opt = lc($1);
1365 $value = uc($3);
490cdead
DM
1366 } elsif ($line =~ m/^(nf_conntrack_max):\s*(\d+)\s*$/i) {
1367 $opt = lc($1);
1368 $value = int($2);
2d404ffc
DM
1369 } else {
1370 chomp $line;
1371 die "can't parse option '$line'\n"
1372 }
1373
1374 return ($opt, $value);
1375}
1376
51bae274
DM
1377sub parse_vm_fw_rules {
1378 my ($filename, $fh) = @_;
1379
92e976b3 1380 my $res = { rules => [], options => {}};
51bae274
DM
1381
1382 my $section;
1383
5e1267a5
DM
1384 while (defined(my $line = <$fh>)) {
1385 next if $line =~ m/^#/;
1386 next if $line =~ m/^\s*$/;
1387
961b4928
DM
1388 my $linenr = $fh->input_line_number();
1389 my $prefix = "$filename (line $linenr)";
1390
85c6eaed 1391 if ($line =~ m/^\[(\S+)\]\s*$/i) {
5e1267a5 1392 $section = lc($1);
85c6eaed 1393 warn "$prefix: ignore unknown section '$section'\n" if !$res->{$section};
5e1267a5
DM
1394 next;
1395 }
51bae274 1396 if (!$section) {
961b4928 1397 warn "$prefix: skip line - no section";
5e1267a5
DM
1398 next;
1399 }
1400
85c6eaed
DM
1401 next if !$res->{$section}; # skip undefined section
1402
1403 if ($section eq 'options') {
6158271d 1404 eval {
2d404ffc 1405 my ($opt, $value) = parse_vmfw_option($line);
85c6eaed
DM
1406 $res->{options}->{$opt} = $value;
1407 };
1408 warn "$prefix: $@" if $@;
1409 next;
1410 }
1411
961b4928
DM
1412 my $rules;
1413 eval { $rules = parse_fw_rule($line, 1, 1); };
51bae274 1414 if (my $err = $@) {
961b4928 1415 warn "$prefix: $err";
5e1267a5
DM
1416 next;
1417 }
1418
961b4928 1419 push @{$res->{$section}}, @$rules;
51bae274
DM
1420 }
1421
1422 return $res;
1423}
1424
1425sub parse_host_fw_rules {
1426 my ($filename, $fh) = @_;
1427
92e976b3 1428 my $res = { rules => [], options => {}};
51bae274
DM
1429
1430 my $section;
1431
1432 while (defined(my $line = <$fh>)) {
1433 next if $line =~ m/^#/;
1434 next if $line =~ m/^\s*$/;
1435
961b4928
DM
1436 my $linenr = $fh->input_line_number();
1437 my $prefix = "$filename (line $linenr)";
1438
2d404ffc 1439 if ($line =~ m/^\[(\S+)\]\s*$/i) {
51bae274 1440 $section = lc($1);
2d404ffc 1441 warn "$prefix: ignore unknown section '$section'\n" if !$res->{$section};
5e1267a5
DM
1442 next;
1443 }
51bae274 1444 if (!$section) {
961b4928 1445 warn "$prefix: skip line - no section";
5e1267a5
DM
1446 next;
1447 }
1448
2d404ffc
DM
1449 next if !$res->{$section}; # skip undefined section
1450
1451 if ($section eq 'options') {
1452 eval {
2d404ffc
DM
1453 my ($opt, $value) = parse_hostfw_option($line);
1454 $res->{options}->{$opt} = $value;
1455 };
1456 warn "$prefix: $@" if $@;
1457 next;
1458 }
1459
961b4928
DM
1460 my $rules;
1461 eval { $rules = parse_fw_rule($line, 1, 1); };
ecbea048 1462 if (my $err = $@) {
961b4928 1463 warn "$prefix: $err";
ecbea048 1464 next;
ecbea048
DM
1465 }
1466
961b4928 1467 push @{$res->{$section}}, @$rules;
51bae274 1468 }
ecbea048 1469
51bae274
DM
1470 return $res;
1471}
4cdbb3b7 1472
51bae274
DM
1473sub parse_group_fw_rules {
1474 my ($filename, $fh) = @_;
5e1267a5 1475
51bae274
DM
1476 my $section;
1477 my $group;
1478
92e976b3 1479 my $res = { rules => [] };
6158271d 1480
51bae274
DM
1481 while (defined(my $line = <$fh>)) {
1482 next if $line =~ m/^#/;
1483 next if $line =~ m/^\s*$/;
1484
961b4928
DM
1485 my $linenr = $fh->input_line_number();
1486 my $prefix = "$filename (line $linenr)";
1487
92e976b3
DM
1488 if ($line =~ m/^\[group\s+(\S+)\]\s*$/i) {
1489 $section = 'rules';
1490 $group = lc($1);
51bae274
DM
1491 next;
1492 }
1493 if (!$section || !$group) {
961b4928 1494 warn "$prefix: skip line - no section";
51bae274
DM
1495 next;
1496 }
1497
961b4928
DM
1498 my $rules;
1499 eval { $rules = parse_fw_rule($line, 0, 0); };
51bae274 1500 if (my $err = $@) {
961b4928 1501 warn "$prefix: $err";
51bae274
DM
1502 next;
1503 }
1504
961b4928 1505 push @{$res->{$group}->{$section}}, @$rules;
5e1267a5
DM
1506 }
1507
1508 return $res;
1509}
1510
06320eb0
DM
1511sub run_locked {
1512 my ($code, @param) = @_;
1513
1514 my $timeout = 10;
1515
1516 my $res = lock_file($pve_fw_lock_filename, $timeout, $code, @param);
1517
1518 die $@ if $@;
1519
1520 return $res;
1521}
1522
5e1267a5
DM
1523sub read_local_vm_config {
1524
1525 my $openvz = {};
5e1267a5
DM
1526 my $qemu = {};
1527
c8301d63 1528 my $vmdata = { openvz => $openvz, qemu => $qemu };
5e1267a5 1529
c8301d63
DM
1530 my $vmlist = PVE::Cluster::get_vmlist();
1531 return $vmdata if !$vmlist || !$vmlist->{ids};
1532 my $ids = $vmlist->{ids};
1533
1534 foreach my $vmid (keys %$ids) {
1535 next if !$vmid; # skip VE0
1536 my $d = $ids->{$vmid};
1537 next if !$d->{node} || $d->{node} ne $nodename;
1538 next if !$d->{type};
1539 if ($d->{type} eq 'openvz') {
d9fee004
DM
1540 if ($have_pve_manager) {
1541 my $cfspath = PVE::OpenVZ::cfs_config_path($vmid);
1542 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
1543 $openvz->{$vmid} = $conf;
1544 }
c8301d63
DM
1545 }
1546 } elsif ($d->{type} eq 'qemu') {
d9fee004
DM
1547 if ($have_qemu_server) {
1548 my $cfspath = PVE::QemuServer::cfs_config_path($vmid);
1549 if (my $conf = PVE::Cluster::cfs_read_file($cfspath)) {
1550 $qemu->{$vmid} = $conf;
1551 }
c8301d63 1552 }
5e1267a5
DM
1553 }
1554 }
d9fee004 1555
5e1267a5
DM
1556 return $vmdata;
1557};
1558
6fc63ffd 1559sub read_vm_firewall_configs {
5e1267a5 1560 my ($vmdata) = @_;
6fc63ffd 1561 my $vmfw_configs = {};
c8301d63 1562
5e1267a5
DM
1563 foreach my $vmid (keys %{$vmdata->{qemu}}, keys %{$vmdata->{openvz}}) {
1564 my $filename = "/etc/pve/firewall/$vmid.fw";
1565 my $fh = IO::File->new($filename, O_RDONLY);
1566 next if !$fh;
1567
6fc63ffd 1568 $vmfw_configs->{$vmid} = parse_vm_fw_rules($filename, $fh);
5e1267a5
DM
1569 }
1570
6fc63ffd 1571 return $vmfw_configs;
5e1267a5
DM
1572}
1573
2d404ffc
DM
1574sub get_option_log_level {
1575 my ($options, $k) = @_;
1576
1577 my $v = $options->{$k};
178a63be 1578 $v = $default_log_level if !defined($v);
2d404ffc
DM
1579
1580 return undef if $v eq '' || $v eq 'nolog';
1581
1582 $v = $log_level_hash->{$v} if defined($log_level_hash->{$v});
1583
1584 return $v if ($v >= 0) && ($v <= 7);
1585
1586 warn "unknown log level ($k = '$v')\n";
1587
1588 return undef;
1589}
1590
d8f2505e 1591sub generate_std_chains {
2d404ffc
DM
1592 my ($ruleset, $options) = @_;
1593
1594 my $loglevel = get_option_log_level($options, 'smurf_log_level');
1595
1596 # same as shorewall smurflog.
782c4cde
DM
1597 my $chain = 'PVEFW-smurflog';
1598
1599 push @{$pve_std_chains->{$chain}}, get_log_rule_base($chain, 0, "DROP: ", $loglevel) if $loglevel;
1600 push @{$pve_std_chains->{$chain}}, "-j DROP";
2d404ffc
DM
1601
1602 # same as shorewall logflags action.
1603 $loglevel = get_option_log_level($options, 'tcp_flags_log_level');
782c4cde
DM
1604 $chain = 'PVEFW-logflags';
1605 # fixme: is this correctly logged by pvewf-logger? (ther is no --log-ip-options for NFLOG)
1606 push @{$pve_std_chains->{$chain}}, get_log_rule_base($chain, 0, "DROP: ", $loglevel) if $loglevel;
1607 push @{$pve_std_chains->{$chain}}, "-j DROP";
d8f2505e
DM
1608
1609 foreach my $chain (keys %$pve_std_chains) {
1610 ruleset_create_chain($ruleset, $chain);
1611 foreach my $rule (@{$pve_std_chains->{$chain}}) {
1612 if (ref($rule)) {
1613 ruleset_generate_rule($ruleset, $chain, $rule);
1614 } else {
1615 ruleset_addrule($ruleset, $chain, $rule);
1616 }
1617 }
1618 }
1619}
1620
6b9f68a2
DM
1621sub save_pvefw_status {
1622 my ($status) = @_;
1623
1624 die "unknown status '$status' - internal error"
1625 if $status !~ m/^(stopped|active)$/;
1626
1627 mkdir dirname($pve_fw_status_filename);
1628 PVE::Tools::file_set_contents($pve_fw_status_filename, $status);
1629}
1630
1631sub read_pvefw_status {
1632
1633 my $status = 'unknown';
1634
1635 return 'stopped' if ! -f $pve_fw_status_filename;
1636
1637 eval {
1638 $status = PVE::Tools::file_get_contents($pve_fw_status_filename);
1639 };
1640 warn $@ if $@;
1641
1642 return $status;
1643}
1644
530c005e
DM
1645# fixme: move to pve-common PVE::ProcFSTools
1646sub read_proc_net_route {
1647 my $filename = "/proc/net/route";
1648
1649 my $res = {};
1650
1651 my $fh = IO::File->new ($filename, "r");
1652 return $res if !$fh;
1653
1654 my $int_to_quad = sub {
1655 return join '.' => map { ($_[0] >> 8*(3-$_)) % 256 } (3, 2, 1, 0);
1656 };
1657
1658 while (defined(my $line = <$fh>)) {
1659 next if $line =~/^Iface\s+Destination/; # skip head
1660 my ($iface, $dest, $gateway, $metric, $mask, $mtu) = (split(/\s+/, $line))[0,1,2,6,7,8];
1661 push @{$res->{$iface}}, {
1662 dest => &$int_to_quad(hex($dest)),
1663 gateway => &$int_to_quad(hex($gateway)),
1664 mask => &$int_to_quad(hex($mask)),
1665 metric => $metric,
1666 mtu => $mtu,
1667 };
1668 }
1669
1670 return $res;
1671}
1672
e5d76bde 1673sub load_security_groups {
530c005e 1674
92e976b3 1675 my $groups_conf = {};
51bae274
DM
1676 my $filename = "/etc/pve/firewall/groups.fw";
1677 if (my $fh = IO::File->new($filename, O_RDONLY)) {
92e976b3 1678 $groups_conf = parse_group_fw_rules($filename, $fh);
51bae274 1679 }
5e1267a5 1680
e5d76bde
DM
1681 return $groups_conf;
1682}
1683
1684sub compile {
1685 my $vmdata = read_local_vm_config();
1686 my $vmfw_configs = read_vm_firewall_configs($vmdata);
1687
1688 my $routing_table = read_proc_net_route();
1689
1690 my $groups_conf = load_security_groups();
1691
3fa83edf
DM
1692 my $ruleset = {};
1693
dec84fcd
DM
1694 ruleset_create_chain($ruleset, "PVEFW-INPUT");
1695 ruleset_create_chain($ruleset, "PVEFW-OUTPUT");
5b1df9a0 1696
fadb13dd 1697 ruleset_create_chain($ruleset, "PVEFW-FORWARD");
3fa83edf 1698
92e976b3 1699 my $hostfw_options = {};
6d2ab017 1700 my $hostfw_conf = {};
4e6112f9 1701
51bae274
DM
1702 $filename = "/etc/pve/local/host.fw";
1703 if (my $fh = IO::File->new($filename, O_RDONLY)) {
92e976b3
DM
1704 $hostfw_conf = parse_host_fw_rules($filename, $fh);
1705 $hostfw_options = $hostfw_conf->{options};
2d404ffc 1706 }
fadb13dd 1707
92e976b3 1708 generate_std_chains($ruleset, $hostfw_options);
fadb13dd 1709
6d2ab017 1710 my $hostfw_enable = !(defined($hostfw_options->{enable}) && ($hostfw_options->{enable} == 0));
2d404ffc 1711
d18c1e2b 1712 enable_host_firewall($ruleset, $hostfw_conf, $groups_conf) if $hostfw_enable;
3fa83edf 1713
6158271d 1714 # generate firewall rules for QEMU VMs
3fa83edf
DM
1715 foreach my $vmid (keys %{$vmdata->{qemu}}) {
1716 my $conf = $vmdata->{qemu}->{$vmid};
6fc63ffd 1717 my $vmfw_conf = $vmfw_configs->{$vmid};
fa9c4a6f
DM
1718 next if !$vmfw_conf;
1719 next if defined($vmfw_conf->{options}->{enable}) && ($vmfw_conf->{options}->{enable} == 0);
3fa83edf
DM
1720
1721 foreach my $netid (keys %$conf) {
1722 next if $netid !~ m/^net(\d+)$/;
1723 my $net = PVE::QemuServer::parse_net($conf->{$netid});
1724 next if !$net;
1725 my $iface = "tap${vmid}i$1";
5e1267a5 1726
3fa83edf
DM
1727 my $bridge = $net->{bridge};
1728 next if !$bridge; # fixme: ?
1729
1730 $bridge .= "v$net->{tag}" if $net->{tag};
1731
530c005e 1732 generate_bridge_chains($ruleset, $hostfw_conf, $bridge, $routing_table);
3fa83edf 1733
c29f55c9 1734 my $macaddr = $net->{macaddr};
782c4cde
DM
1735 generate_tap_rules_direction($ruleset, $groups_conf, $iface, $netid, $macaddr,
1736 $vmfw_conf, $vmid, $bridge, 'IN');
1737 generate_tap_rules_direction($ruleset, $groups_conf, $iface, $netid, $macaddr,
1738 $vmfw_conf, $vmid, $bridge, 'OUT');
3fa83edf
DM
1739 }
1740 }
c8301d63
DM
1741
1742 # generate firewall rules for OpenVZ containers
1743 foreach my $vmid (keys %{$vmdata->{openvz}}) {
1744 my $conf = $vmdata->{openvz}->{$vmid};
1745
1746 my $vmfw_conf = $vmfw_configs->{$vmid};
1747 next if !$vmfw_conf;
1748 next if defined($vmfw_conf->{options}->{enable}) && ($vmfw_conf->{options}->{enable} == 0);
1749
1750 if ($conf->{ip_address} && $conf->{ip_address}->{value}) {
1751 my $ip = $conf->{ip_address}->{value};
9e15114a
DM
1752 generate_venet_rules_direction($ruleset, $groups_conf, $vmfw_conf, $vmid, $ip, 'IN');
1753 generate_venet_rules_direction($ruleset, $groups_conf, $vmfw_conf, $vmid, $ip, 'OUT');
c8301d63
DM
1754 }
1755
1756 if ($conf->{netif} && $conf->{netif}->{value}) {
1757 my $netif = PVE::OpenVZ::parse_netif($conf->{netif}->{value});
c8301d63
DM
1758 foreach my $netid (keys %$netif) {
1759 my $d = $netif->{$netid};
1760 my $bridge = $d->{bridge};
1761 if (!$bridge) {
1762 warn "no bridge device for CT $vmid iface '$netid'\n";
1763 next; # fixme?
1764 }
530c005e
DM
1765
1766 generate_bridge_chains($ruleset, $hostfw_conf, $bridge, $routing_table);
1767
12d0f130 1768 my $macaddr = $d->{mac};
c8301d63 1769 my $iface = $d->{host_ifname};
782c4cde
DM
1770 generate_tap_rules_direction($ruleset, $groups_conf, $iface, $netid, $macaddr,
1771 $vmfw_conf, $vmid, $bridge, 'IN');
1772 generate_tap_rules_direction($ruleset, $groups_conf, $iface, $netid, $macaddr,
1773 $vmfw_conf, $vmid, $bridge, 'OUT');
c8301d63
DM
1774 }
1775 }
1776 }
c0413e35 1777
98aa911e
DM
1778 # fixme: this is an optimization? if so, we should also drop INVALID packages?
1779 ruleset_insertrule($ruleset, "PVEFW-FORWARD", "-m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT");
1780
eba0fb64
DM
1781 # fixme: what log level should we use here?
1782 my $loglevel = get_option_log_level($hostfw_options, "log_level_out");
1783
c98c037d
DM
1784 # fixme: should we really block inter-bridge traffic?
1785
1786 # always allow traffic from containers?
1787 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i venet0 -j RETURN");
1788
eba0fb64
DM
1789 # disable interbridge routing
1790 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-o vmbr+ -j PVEFW-Drop");
1791 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i vmbr+ -j PVEFW-Drop");
782c4cde
DM
1792 ruleset_addlog($ruleset, "PVEFW-FORWARD", 0, "DROP: ", $loglevel, "-o vmbr+");
1793 ruleset_addlog($ruleset, "PVEFW-FORWARD", 0, "DROP: ", $loglevel, "-i vmbr+");
eba0fb64
DM
1794 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-o vmbr+ -j DROP");
1795 ruleset_addrule($ruleset, "PVEFW-FORWARD", "-i vmbr+ -j DROP");
1796
490cdead 1797 return wantarray ? ($ruleset, $hostfw_conf) : $ruleset;
3fa83edf
DM
1798}
1799
1800sub get_ruleset_status {
1801 my ($ruleset, $verbose) = @_;
1802
1803 my $active_chains = iptables_get_chains();
1804
1805 my $statushash = {};
1806
1807 foreach my $chain (sort keys %$ruleset) {
09d5f68e 1808 my $digest = Digest::SHA->new('sha1');
3fa83edf
DM
1809 foreach my $cmd (@{$ruleset->{$chain}}) {
1810 $digest->add("$cmd\n");
1811 }
1812 my $sig = $digest->b64digest;
1813 $statushash->{$chain}->{sig} = $sig;
1814
1815 my $oldsig = $active_chains->{$chain};
1816 if (!defined($oldsig)) {
1817 $statushash->{$chain}->{action} = 'create';
1818 } else {
1819 if ($oldsig eq $sig) {
1820 $statushash->{$chain}->{action} = 'exists';
1821 } else {
1822 $statushash->{$chain}->{action} = 'update';
1823 }
1824 }
1825 print "$statushash->{$chain}->{action} $chain ($sig)\n" if $verbose;
1826 foreach my $cmd (@{$ruleset->{$chain}}) {
1827 print "\t$cmd\n" if $verbose;
1828 }
1829 }
1830
1831 foreach my $chain (sort keys %$active_chains) {
1832 if (!defined($ruleset->{$chain})) {
1833 my $sig = $active_chains->{$chain};
1834 $statushash->{$chain}->{action} = 'delete';
1835 $statushash->{$chain}->{sig} = $sig;
1836 print "delete $chain ($sig)\n" if $verbose;
1837 }
6158271d 1838 }
3fa83edf
DM
1839
1840 return $statushash;
1841}
1842
1843sub print_ruleset {
1844 my ($ruleset) = @_;
1845
1846 get_ruleset_status($ruleset, 1);
1847}
1848
1849sub print_sig_rule {
1850 my ($chain, $sig) = @_;
1851
09d5f68e
DM
1852 # We just use this to store a SHA1 checksum used to detect changes
1853 return "-A $chain -m comment --comment \"PVESIG:$sig\"\n";
b6360c3f
DM
1854}
1855
6b9f68a2 1856sub get_rulset_cmdlist {
a84f4d96 1857 my ($ruleset, $verbose) = @_;
3fa83edf 1858
3fa83edf
DM
1859 my $cmdlist = "*filter\n"; # we pass this to iptables-restore;
1860
1861 my $statushash = get_ruleset_status($ruleset, $verbose);
1862
1863 # create missing chains first
1864 foreach my $chain (sort keys %$ruleset) {
1865 my $stat = $statushash->{$chain};
1866 die "internal error" if !$stat;
1867 next if $stat->{action} ne 'create';
886aba9c 1868
3fa83edf
DM
1869 $cmdlist .= ":$chain - [0:0]\n";
1870 }
1871
dec84fcd 1872 my $rule = "INPUT -j PVEFW-INPUT";
3fa83edf
DM
1873 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1874 $cmdlist .= "-A $rule\n";
1875 }
dec84fcd 1876 $rule = "OUTPUT -j PVEFW-OUTPUT";
3fa83edf
DM
1877 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1878 $cmdlist .= "-A $rule\n";
1879 }
1880
dec84fcd 1881 $rule = "FORWARD -j PVEFW-FORWARD";
3fa83edf
DM
1882 if (!PVE::Firewall::iptables_rule_exist($rule)) {
1883 $cmdlist .= "-A $rule\n";
1884 }
1885
1886 foreach my $chain (sort keys %$ruleset) {
1887 my $stat = $statushash->{$chain};
1888 die "internal error" if !$stat;
1889
1890 if ($stat->{action} eq 'update' || $stat->{action} eq 'create') {
1891 $cmdlist .= "-F $chain\n";
1892 foreach my $cmd (@{$ruleset->{$chain}}) {
1893 $cmdlist .= "$cmd\n";
1894 }
1895 $cmdlist .= print_sig_rule($chain, $stat->{sig});
1896 } elsif ($stat->{action} eq 'delete') {
f5d28682 1897 die "internal error"; # this should not happen
3fa83edf
DM
1898 } elsif ($stat->{action} eq 'exists') {
1899 # do nothing
1900 } else {
1901 die "internal error - unknown status '$stat->{action}'";
1902 }
1903 }
1904
f5d28682
DM
1905 foreach my $chain (keys %$statushash) {
1906 next if $statushash->{$chain}->{action} ne 'delete';
1907 $cmdlist .= "-F $chain\n";
1908 }
1909 foreach my $chain (keys %$statushash) {
1910 next if $statushash->{$chain}->{action} ne 'delete';
fadb13dd
DM
1911 next if $chain eq 'PVEFW-INPUT';
1912 next if $chain eq 'PVEFW-OUTPUT';
1913 next if $chain eq 'PVEFW-FORWARD';
f5d28682
DM
1914 $cmdlist .= "-X $chain\n";
1915 }
1916
3fa83edf
DM
1917 $cmdlist .= "COMMIT\n";
1918
6b9f68a2
DM
1919 return $cmdlist;
1920}
1921
1922sub apply_ruleset {
edb75ba9 1923 my ($ruleset, $hostfw_conf, $verbose) = @_;
6b9f68a2
DM
1924
1925 enable_bridge_firewall();
1926
edb75ba9
DM
1927 update_nf_conntrack_max($hostfw_conf);
1928
6b9f68a2
DM
1929 my $cmdlist = get_rulset_cmdlist($ruleset, $verbose);
1930
3fa83edf
DM
1931 print $cmdlist if $verbose;
1932
1933 iptables_restore_cmdlist($cmdlist);
1934
6158271d 1935 # test: re-read status and check if everything is up to date
6b9f68a2 1936 my $statushash = get_ruleset_status($ruleset);
3fa83edf
DM
1937
1938 my $errors;
1939 foreach my $chain (sort keys %$ruleset) {
1940 my $stat = $statushash->{$chain};
1941 if ($stat->{action} ne 'exists') {
1942 warn "unable to update chain '$chain'\n";
1943 $errors = 1;
1944 }
1945 }
b6360c3f 1946
3fa83edf 1947 die "unable to apply firewall changes\n" if $errors;
b6360c3f
DM
1948}
1949
490cdead
DM
1950sub update_nf_conntrack_max {
1951 my ($hostfw_conf) = @_;
1952
1953 my $max = 65536; # reasonable default
1954
1955 my $options = $hostfw_conf->{options} || {};
1956
1957 if (defined($options->{nf_conntrack_max}) && ($options->{nf_conntrack_max} > $max)) {
1958 $max = $options->{nf_conntrack_max};
1959 $max = int(($max+ 8191)/8192)*8192; # round to multiples of 8192
1960 }
1961
1962 my $filename_nf_conntrack_max = "/proc/sys/net/nf_conntrack_max";
1963 my $filename_hashsize = "/sys/module/nf_conntrack/parameters/hashsize";
1964
1965 my $current = int(PVE::Tools::file_read_firstline($filename_nf_conntrack_max) || $max);
1966
1967 if ($current != $max) {
1968 my $hashsize = int($max/4);
1969 PVE::ProcFSTools::write_proc_entry($filename_hashsize, $hashsize);
1970 PVE::ProcFSTools::write_proc_entry($filename_nf_conntrack_max, $max);
1971 }
1972}
1973
6b9f68a2
DM
1974sub update {
1975 my ($start, $verbose) = @_;
1976
1977 my $code = sub {
1978 my $status = read_pvefw_status();
1979
490cdead
DM
1980 my ($ruleset, $hostfw_conf) = PVE::Firewall::compile();
1981
6b9f68a2
DM
1982 if ($start || $status eq 'active') {
1983
1984 save_pvefw_status('active') if ($status ne 'active');
1985
edb75ba9 1986 apply_ruleset($ruleset, $hostfw_conf, $verbose);
6b9f68a2
DM
1987 } else {
1988 print "Firewall not active (status = $status)\n" if $verbose;
1989 }
1990 };
1991
1992 run_locked($code);
1993}
1994
1995
b6360c3f 19961;