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