]> git.proxmox.com Git - pve-common.git/blob - src/PVE/INotify.pm
e3e43c1ade054228631b19863a140db841e0a75c
[pve-common.git] / src / PVE / INotify.pm
1 package PVE::INotify;
2
3 # todo: maybe we do not need update_file() ?
4
5 use strict;
6 use warnings;
7
8 use POSIX;
9 use IO::File;
10 use IO::Dir;
11 use File::stat;
12 use File::Basename;
13 use Fcntl qw(:DEFAULT :flock);
14 use PVE::SafeSyslog;
15 use PVE::Exception qw(raise_param_exc);
16 use PVE::Network;
17 use PVE::Tools;
18 use PVE::ProcFSTools;
19 use PVE::JSONSchema;
20 use Clone qw(clone);
21 use Linux::Inotify2;
22 use base 'Exporter';
23 use JSON;
24 use Digest::SHA;
25 use Encode qw(encode decode);
26
27 our @EXPORT_OK = qw(read_file write_file register_file);
28
29 my $ccache;
30 my $ccachemap;
31 my $ccacheregex;
32 my $inotify;
33 my $inotify_pid = 0;
34 my $versions;
35 my $shadowfiles = {
36 '/etc/network/interfaces' => '/etc/network/interfaces.new',
37 };
38
39 # to enable cached operation, you need to call 'inotify_init'
40 # inotify handles are a limited resource, so use with care (only
41 # enable the cache if you really need it)
42
43 # Note: please close the inotify handle after you fork
44
45 sub ccache_default_writer {
46 my ($filename, $data) = @_;
47
48 die "undefined config writer for '$filename' :ERROR";
49 }
50
51 sub ccache_default_parser {
52 my ($filename, $srcfd) = @_;
53
54 die "undefined config reader for '$filename' :ERROR";
55 }
56
57 sub ccache_compute_diff {
58 my ($filename, $shadow) = @_;
59
60 my $diff = '';
61
62 my $cmd = ['/usr/bin/diff', '-b', '-N', '-u', $filename, $shadow];
63 PVE::Tools::run_command($cmd, noerr => 1, outfunc => sub {
64 my ($line) = @_;
65 $diff .= decode('UTF-8', $line) . "\n";
66 });
67
68 $diff = undef if !$diff;
69
70 return $diff;
71 }
72
73 sub ccache_info {
74 my ($filename) = @_;
75
76 foreach my $uid (keys %$ccacheregex) {
77 my $ccinfo = $ccacheregex->{$uid};
78 my $dir = $ccinfo->{dir};
79 my $regex = $ccinfo->{regex};
80 if ($filename =~ m|^$dir/+$regex$|) {
81 if (!$ccache->{$filename}) {
82 my $cp = {};
83 while (my ($k, $v) = each %$ccinfo) {
84 $cp->{$k} = $v;
85 }
86 $ccache->{$filename} = $cp;
87 }
88 return ($ccache->{$filename}, $filename);
89 }
90 }
91
92 $filename = $ccachemap->{$filename} if defined ($ccachemap->{$filename});
93
94 die "file '$filename' not added :ERROR" if !defined ($ccache->{$filename});
95
96 return ($ccache->{$filename}, $filename);
97 }
98
99 sub write_file {
100 my ($fileid, $data, $full) = @_;
101
102 my ($ccinfo, $filename) = ccache_info($fileid);
103
104 my $writer = $ccinfo->{writer};
105
106 my $realname = $filename;
107
108 my $shadow;
109 if ($shadow = $shadowfiles->{$filename}) {
110 $realname = $shadow;
111 }
112
113 my $perm = $ccinfo->{perm} || 0644;
114
115 my $tmpname = "$realname.tmp.$$";
116
117 my $res;
118 eval {
119 my $fh = IO::File->new($tmpname, O_WRONLY|O_CREAT, $perm);
120 die "unable to open file '$tmpname' - $!\n" if !$fh;
121
122 $res = &$writer($filename, $fh, $data);
123
124 die "closing file '$tmpname' failed - $!\n" unless close $fh;
125 };
126 my $err = $@;
127
128 $ccinfo->{version} = undef;
129
130 if ($err) {
131 unlink $tmpname;
132 die $err;
133 }
134
135 if (!rename($tmpname, $realname)) {
136 my $msg = "close (rename) atomic file '$filename' failed: $!\n";
137 unlink $tmpname;
138 die $msg;
139 }
140
141 my $diff;
142 if ($shadow && $full) {
143 $diff = ccache_compute_diff ($filename, $shadow);
144 }
145
146 if ($full) {
147 return { data => $res, changes => $diff };
148 }
149
150 return $res;
151 }
152
153 sub update_file {
154 my ($fileid, $data, @args) = @_;
155
156 my ($ccinfo, $filename) = ccache_info($fileid);
157
158 my $update = $ccinfo->{update};
159
160 die "unable to update/merge data" if !$update;
161
162 my $lkfn = "$filename.lock";
163
164 my $timeout = 10;
165
166 my $fd;
167
168 my $code = sub {
169
170 $fd = IO::File->new ($filename, "r");
171
172 my $new = &$update($filename, $fd, $data, @args);
173
174 if (defined($new)) {
175 PVE::Tools::file_set_contents($filename, $new, $ccinfo->{perm});
176 } else {
177 unlink $filename;
178 }
179 };
180
181 PVE::Tools::lock_file($lkfn, $timeout, $code);
182 my $err = $@;
183
184 close($fd) if defined($fd);
185
186 die $err if $err;
187
188 return undef;
189 }
190
191 sub discard_changes {
192 my ($fileid, $full) = @_;
193
194 my ($ccinfo, $filename) = ccache_info($fileid);
195
196 if (my $copy = $shadowfiles->{$filename}) {
197 unlink $copy;
198 }
199
200 return read_file ($filename, $full);
201 }
202
203 sub poll_changes {
204 my ($filename) = @_;
205
206 poll() if $inotify; # read new inotify events
207
208 $versions->{$filename} = 0 if !defined ($versions->{$filename});
209
210 return $versions->{$filename};
211 }
212
213 sub read_file {
214 my ($fileid, $full) = @_;
215
216 my $parser;
217
218 my ($ccinfo, $filename) = ccache_info($fileid);
219
220 $parser = $ccinfo->{parser};
221
222 my $fd;
223 my $shadow;
224
225 my $cver = poll_changes($filename);
226
227 if (my $copy = $shadowfiles->{$filename}) {
228 if ($fd = IO::File->new ($copy, "r")) {
229 $shadow = $copy;
230 } else {
231 $fd = IO::File->new ($filename, "r");
232 }
233 } else {
234 $fd = IO::File->new ($filename, "r");
235 }
236
237 my $acp = $ccinfo->{always_call_parser};
238
239 if (!$fd) {
240 $ccinfo->{version} = undef;
241 $ccinfo->{data} = undef;
242 $ccinfo->{diff} = undef;
243 return undef if !$acp;
244 }
245
246 my $noclone = $ccinfo->{noclone};
247
248 # file unchanged?
249 if (!$ccinfo->{nocache} &&
250 $inotify && $cver &&
251 defined ($ccinfo->{data}) &&
252 defined ($ccinfo->{version}) &&
253 ($ccinfo->{readonce} ||
254 ($ccinfo->{version} == $cver))) {
255
256 my $ret;
257 if (!$noclone && ref ($ccinfo->{data})) {
258 $ret->{data} = clone ($ccinfo->{data});
259 } else {
260 $ret->{data} = $ccinfo->{data};
261 }
262 $ret->{changes} = $ccinfo->{diff};
263
264 return $full ? $ret : $ret->{data};
265 }
266
267 my $diff;
268
269 if ($shadow) {
270 $diff = ccache_compute_diff ($filename, $shadow);
271 }
272
273 my $res = &$parser($filename, $fd);
274
275 if (!$ccinfo->{nocache}) {
276 $ccinfo->{version} = $cver;
277 }
278
279 # we cache data with references, so we always need to
280 # clone this data. Else the original data may get
281 # modified.
282 $ccinfo->{data} = $res;
283
284 # also store diff
285 $ccinfo->{diff} = $diff;
286
287 my $ret;
288 if (!$noclone && ref ($ccinfo->{data})) {
289 $ret->{data} = clone ($ccinfo->{data});
290 } else {
291 $ret->{data} = $ccinfo->{data};
292 }
293 $ret->{changes} = $ccinfo->{diff};
294
295 return $full ? $ret : $ret->{data};
296 }
297
298 sub parse_ccache_options {
299 my ($ccinfo, %options) = @_;
300
301 foreach my $opt (keys %options) {
302 my $v = $options{$opt};
303 if ($opt eq 'readonce') {
304 $ccinfo->{$opt} = $v;
305 } elsif ($opt eq 'nocache') {
306 $ccinfo->{$opt} = $v;
307 } elsif ($opt eq 'shadow') {
308 $ccinfo->{$opt} = $v;
309 } elsif ($opt eq 'perm') {
310 $ccinfo->{$opt} = $v;
311 } elsif ($opt eq 'noclone') {
312 # noclone flag for large read-only data chunks like aplinfo
313 $ccinfo->{$opt} = $v;
314 } elsif ($opt eq 'always_call_parser') {
315 # when set, we call parser even when the file does not exist.
316 # this allows the parser to return some default
317 $ccinfo->{$opt} = $v;
318 } else {
319 die "internal error - unsupported option '$opt'";
320 }
321 }
322 }
323
324 sub register_file {
325 my ($id, $filename, $parser, $writer, $update, %options) = @_;
326
327 die "can't register file '$filename' after inotify_init" if $inotify;
328
329 die "file '$filename' already added :ERROR" if defined ($ccache->{$filename});
330 die "ID '$id' already used :ERROR" if defined ($ccachemap->{$id});
331
332 my $ccinfo = {};
333
334 $ccinfo->{id} = $id;
335 $ccinfo->{parser} = $parser || \&ccache_default_parser;
336 $ccinfo->{writer} = $writer || \&ccache_default_writer;
337 $ccinfo->{update} = $update;
338
339 parse_ccache_options($ccinfo, %options);
340
341 if ($options{shadow}) {
342 $shadowfiles->{$filename} = $options{shadow};
343 }
344
345 $ccachemap->{$id} = $filename;
346 $ccache->{$filename} = $ccinfo;
347 }
348
349 sub register_regex {
350 my ($dir, $regex, $parser, $writer, $update, %options) = @_;
351
352 die "can't register regex after inotify_init" if $inotify;
353
354 my $uid = "$dir/$regex";
355 die "regular expression '$uid' already added :ERROR" if defined ($ccacheregex->{$uid});
356
357 my $ccinfo = {};
358
359 $ccinfo->{dir} = $dir;
360 $ccinfo->{regex} = $regex;
361 $ccinfo->{parser} = $parser || \&ccache_default_parser;
362 $ccinfo->{writer} = $writer || \&ccache_default_writer;
363 $ccinfo->{update} = $update;
364
365 parse_ccache_options($ccinfo, %options);
366
367 $ccacheregex->{$uid} = $ccinfo;
368 }
369
370 sub poll {
371 return if !$inotify;
372
373 if ($inotify_pid != $$) {
374 syslog ('err', "got inotify poll request in wrong process - disabling inotify");
375 $inotify = undef;
376 } else {
377 1 while $inotify && $inotify->poll;
378 }
379 }
380
381 sub flushcache {
382 foreach my $filename (keys %$ccache) {
383 $ccache->{$filename}->{version} = undef;
384 $ccache->{$filename}->{data} = undef;
385 $ccache->{$filename}->{diff} = undef;
386 }
387 }
388
389 sub inotify_close {
390 $inotify = undef;
391 }
392
393 sub inotify_init {
394
395 die "only one inotify instance allowed" if $inotify;
396
397 $inotify = Linux::Inotify2->new()
398 || die "Unable to create new inotify object: $!";
399
400 $inotify->blocking (0);
401
402 $versions = {};
403
404 my $dirhash = {};
405 foreach my $fn (keys %$ccache) {
406 my $dir = dirname ($fn);
407 my $base = basename ($fn);
408
409 $dirhash->{$dir}->{$base} = $fn;
410
411 if (my $sf = $shadowfiles->{$fn}) {
412 $base = basename ($sf);
413 $dir = dirname ($sf);
414 $dirhash->{$dir}->{$base} = $fn; # change version of original file!
415 }
416 }
417
418 foreach my $uid (keys %$ccacheregex) {
419 my $ccinfo = $ccacheregex->{$uid};
420 $dirhash->{$ccinfo->{dir}}->{_regex} = 1;
421 }
422
423 $inotify_pid = $$;
424
425 foreach my $dir (keys %$dirhash) {
426
427 my $evlist = IN_MODIFY|IN_ATTRIB|IN_MOVED_FROM|IN_MOVED_TO|IN_DELETE|IN_CREATE;
428 $inotify->watch ($dir, $evlist, sub {
429 my $e = shift;
430 my $name = $e->name;
431
432 if ($inotify_pid != $$) {
433 syslog ('err', "got inotify event in wrong process");
434 }
435
436 if ($e->IN_ISDIR || !$name) {
437 return;
438 }
439
440 if ($e->IN_Q_OVERFLOW) {
441 syslog ('info', "got inotify overflow - flushing cache");
442 flushcache();
443 return;
444 }
445
446 if ($e->IN_UNMOUNT) {
447 syslog ('err', "got 'unmount' event on '$name' - disabling inotify");
448 $inotify = undef;
449 }
450 if ($e->IN_IGNORED) {
451 syslog ('err', "got 'ignored' event on '$name' - disabling inotify");
452 $inotify = undef;
453 }
454
455 if ($dirhash->{$dir}->{_regex}) {
456 foreach my $uid (keys %$ccacheregex) {
457 my $ccinfo = $ccacheregex->{$uid};
458 next if $dir ne $ccinfo->{dir};
459 my $regex = $ccinfo->{regex};
460 if ($regex && ($name =~ m|^$regex$|)) {
461
462 my $fn = "$dir/$name";
463 $versions->{$fn}++;
464 #print "VERSION:$fn:$versions->{$fn}\n";
465 }
466 }
467 } elsif (my $fn = $dirhash->{$dir}->{$name}) {
468
469 $versions->{$fn}++;
470 #print "VERSION:$fn:$versions->{$fn}\n";
471 }
472 });
473 }
474
475 foreach my $dir (keys %$dirhash) {
476 foreach my $name (keys %{$dirhash->{$dir}}) {
477 if ($name eq '_regex') {
478 foreach my $uid (keys %$ccacheregex) {
479 my $ccinfo = $ccacheregex->{$uid};
480 next if $dir ne $ccinfo->{dir};
481 my $re = $ccinfo->{regex};
482 if (my $fd = IO::Dir->new ($dir)) {
483 while (defined(my $de = $fd->read)) {
484 if ($de =~ m/^$re$/) {
485 my $fn = "$dir/$de";
486 $versions->{$fn}++; # init with version
487 #print "init:$fn:$versions->{$fn}\n";
488 }
489 }
490 }
491 }
492 } else {
493 my $fn = $dirhash->{$dir}->{$name};
494 $versions->{$fn}++; # init with version
495 #print "init:$fn:$versions->{$fn}\n";
496 }
497 }
498 }
499 }
500
501 my $cached_nodename;
502
503 sub nodename {
504
505 return $cached_nodename if $cached_nodename;
506
507 my ($sysname, $nodename) = POSIX::uname();
508
509 $nodename =~ s/\..*$//; # strip domain part, if any
510
511 die "unable to read node name\n" if !$nodename;
512
513 $cached_nodename = $nodename;
514
515 return $cached_nodename;
516 }
517
518 sub read_etc_hostname {
519 my ($filename, $fd) = @_;
520
521 my $hostname = <$fd>;
522
523 chomp $hostname;
524
525 $hostname =~ s/\..*$//; # strip domain part, if any
526
527 return $hostname;
528 }
529
530 sub write_etc_hostname {
531 my ($filename, $fh, $hostname) = @_;
532
533 die "write failed: $!" unless print $fh "$hostname\n";
534
535 return $hostname;
536 }
537
538 register_file('hostname', "/etc/hostname",
539 \&read_etc_hostname,
540 \&write_etc_hostname);
541
542 sub read_etc_hosts {
543 my ($filename, $fh) = @_;
544
545 my $raw = '';
546 my $data = '';
547
548 while (my $line = <$fh>) {
549 $raw .= $line;
550 if ($line =~ m/^\s*#/) {
551 $line = decode('UTF-8', $line);
552 }
553 $data .= $line;
554 }
555
556 return {
557 digest => Digest::SHA::sha1_hex($raw),
558 data => $data,
559 }
560 }
561
562 sub write_etc_hosts {
563 my ($filename, $fh, $hosts, @args) = @_;
564
565 # check validity of ips/names
566 for my $line (split("\n", $hosts)) {
567 next if $line =~ m/^\s*#/; # comments
568 next if $line =~ m/^\s*$/; # whitespace/empty lines
569
570 my ($ip, @names) = split(/\s+/, $line);
571
572 raise_param_exc({ 'data' => "Invalid IP '$ip'" })
573 if $ip !~ m/^$PVE::Tools::IPRE$/;
574
575 for my $name (@names) {
576 raise_param_exc({ 'data' => "Invalid Hostname '$name'" })
577 if $name !~ m/^[.\-a-zA-Z0-9]+$/;
578 }
579 }
580
581 die "write failed: $!" if !print $fh encode('UTF-8', $hosts);
582
583 return $hosts;
584 }
585
586 register_file('etchosts', "/etc/hosts",
587 \&read_etc_hosts,
588 \&write_etc_hosts);
589
590 sub read_etc_resolv_conf {
591 my ($filename, $fh) = @_;
592
593 my $res = {};
594
595 my $nscount = 0;
596 while (my $line = <$fh>) {
597 chomp $line;
598 if ($line =~ m/^(search|domain)\s+(\S+)\s*/) {
599 $res->{search} = $2;
600 } elsif ($line =~ m/^\s*nameserver\s+($PVE::Tools::IPRE)\s*/) {
601 $nscount++;
602 if ($nscount <= 3) {
603 $res->{"dns$nscount"} = $1;
604 }
605 }
606 }
607
608 return $res;
609 }
610
611 sub update_etc_resolv_conf {
612 my ($filename, $fh, $resolv, @args) = @_;
613
614 my $data = "";
615
616 $data = "search $resolv->{search}\n"
617 if $resolv->{search};
618
619 my $written = {};
620 foreach my $k ("dns1", "dns2", "dns3") {
621 my $ns = $resolv->{$k};
622 if ($ns && $ns ne '0.0.0.0' && !$written->{$ns}) {
623 $written->{$ns} = 1;
624 $data .= "nameserver $ns\n";
625 }
626 }
627
628 while (my $line = <$fh>) {
629 next if $line =~ m/^(search|domain|nameserver)\s+/;
630 $data .= $line
631 }
632
633 return $data;
634 }
635
636 register_file('resolvconf', "/etc/resolv.conf",
637 \&read_etc_resolv_conf, undef,
638 \&update_etc_resolv_conf);
639
640 sub read_etc_timezone {
641 my ($filename, $fd) = @_;
642
643 my $timezone = <$fd>;
644
645 chomp $timezone;
646
647 return $timezone;
648 }
649
650 sub write_etc_timezone {
651 my ($filename, $fh, $timezone) = @_;
652
653 my $tzinfo = "/usr/share/zoneinfo/$timezone";
654
655 raise_param_exc({ 'timezone' => "No such timezone" })
656 if (! -f $tzinfo);
657
658 ($timezone) = $timezone =~ m/^(.*)$/; # untaint
659
660 print $fh "$timezone\n";
661
662 unlink ("/etc/localtime");
663 symlink ("/usr/share/zoneinfo/$timezone", "/etc/localtime");
664
665 }
666
667 register_file('timezone', "/etc/timezone",
668 \&read_etc_timezone,
669 \&write_etc_timezone);
670
671 sub read_active_workers {
672 my ($filename, $fh) = @_;
673
674 return [] if !$fh;
675
676 my $res = [];
677 while (defined (my $line = <$fh>)) {
678 if ($line =~ m/^(\S+)\s(0|1)(\s([0-9A-Za-z]{8})(\s(\s*\S.*))?)?$/) {
679 my $upid = $1;
680 my $saved = $2;
681 my $endtime = $4;
682 my $status = $6;
683 if ((my $task = PVE::Tools::upid_decode($upid, 1))) {
684 $task->{upid} = $upid;
685 $task->{saved} = $saved;
686 $task->{endtime} = hex($endtime) if $endtime;
687 $task->{status} = $status if $status;
688 push @$res, $task;
689 }
690 } else {
691 warn "unable to parse line: $line";
692 }
693 }
694
695 return $res;
696
697 }
698
699 sub write_active_workers {
700 my ($filename, $fh, $tasklist) = @_;
701
702 my $raw = '';
703 foreach my $task (@$tasklist) {
704 my $upid = $task->{upid};
705 my $saved = $task->{saved} ? 1 : 0;
706 if ($task->{endtime}) {
707 if ($task->{status}) {
708 $raw .= sprintf("%s %s %08X %s\n", $upid, $saved, $task->{endtime}, $task->{status});
709 } else {
710 $raw .= sprintf("%s %s %08X\n", $upid, $saved, $task->{endtime});
711 }
712 } else {
713 $raw .= "$upid $saved\n";
714 }
715 }
716
717 PVE::Tools::safe_print($filename, $fh, $raw) if $raw;
718 }
719
720 register_file('active', "/var/log/pve/tasks/active",
721 \&read_active_workers,
722 \&write_active_workers);
723
724
725 our $bond_modes = { 'balance-rr' => 0,
726 'active-backup' => 1,
727 'balance-xor' => 2,
728 'broadcast' => 3,
729 '802.3ad' => 4,
730 'balance-tlb' => 5,
731 'balance-alb' => 6,
732 };
733
734 my $ovs_bond_modes = {
735 'active-backup' => 1,
736 'balance-slb' => 1,
737 'lacp-balance-slb' => 1,
738 'lacp-balance-tcp' => 1,
739 };
740
741 #sub get_bond_modes {
742 # return $bond_modes;
743 #}
744
745 my $parse_ovs_option = sub {
746 my ($data) = @_;
747
748 my $opts = {};
749 foreach my $kv (split (/\s+/, $data || '')) {
750 my ($k, $v) = split('=', $kv, 2);
751 $opts->{$k} = $v if $k && $v;
752 }
753 return $opts;
754 };
755
756 my $set_ovs_option = sub {
757 my ($d, %params) = @_;
758
759 my $opts = &$parse_ovs_option($d->{ovs_options});
760
761 foreach my $k (keys %params) {
762 my $v = $params{$k};
763 if ($v) {
764 $opts->{$k} = $v;
765 } else {
766 delete $opts->{$k};
767 }
768 }
769
770 my $res = [];
771 foreach my $k (keys %$opts) {
772 push @$res, "$k=$opts->{$k}";
773 }
774
775 if (my $new = join(' ', @$res)) {
776 $d->{ovs_options} = $new;
777 return $d->{ovs_options};
778 } else {
779 delete $d->{ovs_options};
780 return undef;
781 }
782 };
783
784 my $extract_ovs_option = sub {
785 my ($d, $name) = @_;
786
787 my $opts = &$parse_ovs_option($d->{ovs_options});
788
789 my $v = delete $opts->{$name};
790
791 my $res = [];
792 foreach my $k (keys %$opts) {
793 push @$res, "$k=$opts->{$k}";
794 }
795
796 if (my $new = join(' ', @$res)) {
797 $d->{ovs_options} = $new;
798 } else {
799 delete $d->{ovs_options};
800 }
801
802 return $v;
803 };
804
805 my $check_mtu = sub {
806 my ($ifaces, $parent, $child) = @_;
807
808 die "check mtu - missing parent interface\n" if !$parent;
809 die "check mtu - missing child interface\n" if !$child;
810
811 my $cmtu = $ifaces->{$child}->{mtu};
812 return if !$cmtu;
813
814 my $parentdata = $ifaces->{$parent};
815 my $pmtu = $parentdata->{mtu};
816 $pmtu = $cmtu if $parentdata->{type} eq 'bond' && !$pmtu;
817 $pmtu = 1500 if !$pmtu;
818
819 die "interface '$parent' - mtu $pmtu is lower than '$child' - mtu $cmtu\n"
820 if $pmtu < $cmtu;
821 };
822
823 # config => {
824 # ifaces => {
825 # $ifname => {
826 # <optional> exists => BOOL,
827 # <optional> active => BOOL,
828 # <optional> autostart => BOOL,
829 # <auto> priority => INT,
830 #
831 # type => "eth" | "bridge" | "bond" | "loopback" | "OVS*" | ... ,
832 #
833 # families => ["inet", "inet6", ...],
834 #
835 # method => "manual" | "static" | "dhcp" | ... ,
836 # address => IP,
837 # netmask => SUBNET,
838 # broadcast => IP,
839 # gateway => IP,
840 # comments => [ "..." ],
841 #
842 # method6 => "manual" | "static" | "dhcp" | ... ,
843 # address6 => IP,
844 # netmask6 => SUBNET,
845 # gateway6 => IP,
846 # comments6 => [ "..." ],
847 #
848 # <known options>, # like bridge_ports, ovs_*
849 #
850 # # extra/unknown options stored by-family:
851 # options => { <inet options>... }
852 # options6 => { <inet6 options>... }
853 # }
854 # },
855 # options => [
856 # # mappings end up here as well, as we don't need to understand them
857 # [priority,line]
858 # ]
859 # }
860 sub read_etc_network_interfaces {
861 my ($filename, $fh) = @_;
862 my $proc_net_dev = IO::File->new('/proc/net/dev', 'r');
863 my $active = PVE::ProcFSTools::get_active_network_interfaces();
864 return __read_etc_network_interfaces($fh, $proc_net_dev, $active);
865 }
866
867 sub __read_etc_network_interfaces {
868 my ($fh, $proc_net_dev, $active_ifaces) = @_;
869
870 my $config = {};
871 my $ifaces = $config->{ifaces} = {};
872 my $options = $config->{options} = [];
873
874 my $options_alternatives = {
875 'bond-slaves' => 'slaves',
876 'bond_slaves' => 'slaves',
877 'bond-xmit-hash-policy' => 'bond_xmit_hash_policy',
878 'bond-mode' => 'bond_mode',
879 'bond-miimon' =>'bond_miimon',
880 'bridge-vlan-aware' => 'bridge_vlan_aware',
881 'bridge-fd' => 'bridge_fd',
882 'bridge-stp' => 'bridge_stp',
883 'bridge-ports' => 'bridge_ports',
884 'bridge-vids' => 'bridge_vids'
885 };
886
887 my $line;
888
889 if ($proc_net_dev) {
890 while (defined ($line = <$proc_net_dev>)) {
891 if ($line =~ m/^\s*($PVE::Network::PHYSICAL_NIC_RE):.*/) {
892 $ifaces->{$1}->{exists} = 1;
893 }
894 }
895 close($proc_net_dev);
896 }
897
898 # we try to keep order inside the file
899 my $priority = 2; # 1 is reserved for lo
900
901 SECTION: while (defined ($line = <$fh>)) {
902 chomp ($line);
903 next if $line =~ m/^\s*#/;
904 next if $line =~ m/^\s*(allow-hotplug)\s+(.*)$/;
905
906 if ($line =~ m/^\s*(auto|allow-ovs)\s+(.*)$/) {
907 my @aa = split (/\s+/, $2);
908
909 foreach my $a (@aa) {
910 $ifaces->{$a}->{autostart} = 1;
911 }
912
913 } elsif ($line =~ m/^\s*iface\s+(\S+)\s+(inet6?)\s+(\S+)\s*$/) {
914 my $i = $1;
915 my $family = $2;
916 my $f = { method => $3 }; # by family, merged to $d with a $suffix
917 (my $suffix = $family) =~ s/^inet//;
918
919 my $d = $ifaces->{$i} ||= {};
920 $d->{priority} = $priority++ if !$d->{priority};
921 push @{$d->{families}}, $family;
922
923 while (defined ($line = <$fh>)) {
924 chomp $line;
925 if ($line =~ m/^\s*#(.*?)\s*$/) {
926 $f->{comments} = '' if !$f->{comments};
927 my $comment = decode('UTF-8', $1);
928 $f->{comments} .= "$comment\n";
929 } elsif ($line =~ m/^\s*(?:iface\s
930 |mapping\s
931 |auto\s
932 |allow-
933 |source\s
934 |source-directory\s
935 )/x) {
936 last;
937 } elsif ($line =~ m/^\s*((\S+)\s+(.+))$/) {
938 my $option = $1;
939 my ($id, $value) = ($2, $3);
940
941 $id = $options_alternatives->{$id} if $options_alternatives->{$id};
942
943 my $simple_options = {
944 'mtu' => 1,
945 'ovs_type' => 1,
946 'ovs_options' => 1,
947 'ovs_bridge' => 1,
948 'ovs_bonds' => 1,
949 'ovs_ports' => 1,
950 'bridge_fd' => 1,
951 'bridge_vids' => 1,
952 'bridge-access' => 1,
953 'bridge-learning' => 1,
954 'bridge-arp-nd-suppress' => 1,
955 'bridge-unicast-flood' => 1,
956 'bridge-multicast-flood' => 1,
957 'bond_miimon' => 1,
958 'bond_xmit_hash_policy' => 1,
959 'bond-primary' => 1,
960 'uplink-id' => 1,
961 'vlan-protocol' => 1,
962 'vxlan-id' => 1,
963 'vxlan-svcnodeip' => 1,
964 'vxlan-physdev' => 1,
965 'vxlan-local-tunnelip' => 1 };
966
967 if (($id eq 'address') || ($id eq 'netmask') || ($id eq 'broadcast') || ($id eq 'gateway')) {
968 $f->{$id} = $value;
969 } elsif ($simple_options->{$id}) {
970 $d->{$id} = $value;
971 } elsif ($id eq 'slaves' || $id eq 'bridge_ports') {
972 my $devs = {};
973 foreach my $p (split (/\s+/, $value)) {
974 next if $p eq 'none';
975 $devs->{$p} = 1;
976 }
977 my $str = join (' ', sort keys %{$devs});
978 if ($d->{$id}) {
979 $d->{$id} .= ' ' . $str if $str;
980 } else {
981 $d->{$id} = $str || '';
982 }
983 } elsif ($id eq 'bridge_stp') {
984 if ($value =~ m/^\s*(on|yes)\s*$/i) {
985 $d->{$id} = 'on';
986 } else {
987 $d->{$id} = 'off';
988 }
989 } elsif ($id eq 'bridge_vlan_aware') {
990 $d->{$id} = 1;
991 } elsif ($id eq 'bond_mode') {
992 # always use names
993 foreach my $bm (keys %$bond_modes) {
994 my $id = $bond_modes->{$bm};
995 if ($id eq $value) {
996 $value = $bm;
997 last;
998 }
999 }
1000 $d->{$id} = $value;
1001 } elsif ($id eq 'vxlan-remoteip') {
1002 push @{$d->{$id}}, $value;
1003 } else {
1004 push @{$f->{options}}, $option;
1005 }
1006 } else {
1007 last;
1008 }
1009 }
1010 $d->{"$_$suffix"} = $f->{$_} foreach (keys %$f);
1011 last SECTION if !defined($line);
1012 redo SECTION;
1013 } elsif ($line =~ /\w/) {
1014 push @$options, [$priority++, $line];
1015 }
1016 }
1017
1018 foreach my $ifname (@$active_ifaces) {
1019 if (my $iface = $ifaces->{$ifname}) {
1020 $iface->{active} = 1;
1021 }
1022 }
1023
1024 if (!$ifaces->{lo}) {
1025 $ifaces->{lo}->{priority} = 1;
1026 $ifaces->{lo}->{method} = 'loopback';
1027 $ifaces->{lo}->{type} = 'loopback';
1028 $ifaces->{lo}->{autostart} = 1;
1029 }
1030
1031 foreach my $iface (keys %$ifaces) {
1032 my $d = $ifaces->{$iface};
1033 if ($iface =~ m/^bond\d+$/) {
1034 if (!$d->{ovs_type}) {
1035 $d->{type} = 'bond';
1036 } elsif ($d->{ovs_type} eq 'OVSBond') {
1037 $d->{type} = $d->{ovs_type};
1038 # translate: ovs_options => bond_mode
1039 $d->{'bond_mode'} = &$extract_ovs_option($d, 'bond_mode');
1040 my $lacp = &$extract_ovs_option($d, 'lacp');
1041 if ($lacp && $lacp eq 'active') {
1042 if ($d->{'bond_mode'} eq 'balance-slb') {
1043 $d->{'bond_mode'} = 'lacp-balance-slb';
1044 }
1045 }
1046 # Note: balance-tcp needs lacp
1047 if ($d->{'bond_mode'} eq 'balance-tcp') {
1048 $d->{'bond_mode'} = 'lacp-balance-tcp';
1049 }
1050 my $tag = &$extract_ovs_option($d, 'tag');
1051 $d->{ovs_tag} = $tag if defined($tag);
1052 } else {
1053 $d->{type} = 'unknown';
1054 }
1055 } elsif ($iface =~ m/^vmbr\d+$/) {
1056 if (!$d->{ovs_type}) {
1057 $d->{type} = 'bridge';
1058
1059 if (!defined ($d->{bridge_fd})) {
1060 $d->{bridge_fd} = 0;
1061 }
1062 if (!defined ($d->{bridge_stp})) {
1063 $d->{bridge_stp} = 'off';
1064 }
1065 } elsif ($d->{ovs_type} eq 'OVSBridge') {
1066 $d->{type} = $d->{ovs_type};
1067 } else {
1068 $d->{type} = 'unknown';
1069 }
1070 } elsif ($iface =~ m/^(\S+):\d+$/) {
1071 $d->{type} = 'alias';
1072 if (defined ($ifaces->{$1})) {
1073 $d->{exists} = $ifaces->{$1}->{exists};
1074 } else {
1075 $ifaces->{$1}->{exists} = 0;
1076 $d->{exists} = 0;
1077 }
1078 } elsif ($iface =~ m/^(\S+)\.\d+$/) {
1079 $d->{type} = 'vlan';
1080 if (defined ($ifaces->{$1})) {
1081 $d->{exists} = $ifaces->{$1}->{exists};
1082 } else {
1083 $ifaces->{$1}->{exists} = 0;
1084 $d->{exists} = 0;
1085 }
1086 } elsif ($iface =~ m/^$PVE::Network::PHYSICAL_NIC_RE$/) {
1087 if (!$d->{ovs_type}) {
1088 $d->{type} = 'eth';
1089 } elsif ($d->{ovs_type} eq 'OVSPort') {
1090 $d->{type} = $d->{ovs_type};
1091 my $tag = &$extract_ovs_option($d, 'tag');
1092 $d->{ovs_tag} = $tag if defined($tag);
1093 } else {
1094 $d->{type} = 'unknown';
1095 }
1096 } elsif ($iface =~ m/^lo$/) {
1097 $d->{type} = 'loopback';
1098 } else {
1099 if ($d->{'vxlan-id'}) {
1100 $d->{type} = 'vxlan';
1101 } elsif (!$d->{ovs_type}) {
1102 $d->{type} = 'unknown';
1103 } elsif ($d->{ovs_type} eq 'OVSIntPort') {
1104 $d->{type} = $d->{ovs_type};
1105 my $tag = &$extract_ovs_option($d, 'tag');
1106 $d->{ovs_tag} = $tag if defined($tag);
1107 }
1108 }
1109
1110 # map address and netmask to cidr
1111 if ($d->{address}) {
1112 if ($d->{netmask} && $d->{netmask} =~ m/^\d+$/) { # e.g. netmask 20
1113 $d->{cidr} = $d->{address} . "/" . $d->{netmask};
1114 } elsif ($d->{netmask} &&
1115 (my $cidr = PVE::JSONSchema::get_netmask_bits($d->{netmask}))) { # e.g. netmask 255.255.255.0
1116 $d->{cidr} = $d->{address} . "/" . $cidr;
1117 } elsif ($d->{address} =~ m!^(.*)/(\d+)$!) {
1118 $d->{cidr} = $d->{address};
1119 $d->{address} = $1;
1120 $d->{netmask} = $2;
1121 } else {
1122 $d->{cidr} = $d->{address};
1123 }
1124 }
1125
1126 # map address6 and netmask6 to cidr6
1127 if ($d->{address6}) {
1128 $d->{cidr6} = $d->{address6};
1129 if ($d->{netmask6}) {
1130 $d->{cidr6} .= "/" . $d->{netmask6};
1131 } elsif ($d->{address6} =~ m!^(.*)/(\d+)$!) {
1132 $d->{address6} = $1;
1133 $d->{netmask6} = $2;
1134 }
1135 }
1136
1137 $d->{method} = 'manual' if !$d->{method};
1138 $d->{method6} = 'manual' if !$d->{method6};
1139
1140 $d->{families} ||= ['inet'];
1141 }
1142
1143 # OVS bridges create "allow-$BRIDGE $IFACE" lines which we need to remove
1144 # from the {options} hash for them to be removed correctly.
1145 @$options = grep {defined($_)} map {
1146 my ($pri, $line) = @$_;
1147 if ($line =~ /^allow-ovs\s+(.*)$/) {
1148 undef;
1149 } elsif ($line =~ /^allow-(\S+)\s+(.*)$/) {
1150 my $bridge = $1;
1151 my @ports = split(/\s+/, $2);
1152 if (defined(my $br = $ifaces->{$bridge})) {
1153 # if this port is part of a bridge, remove it
1154 my %in_ovs_ports = map {$_=>1} split(/\s+/, $br->{ovs_ports});
1155 @ports = grep { not $in_ovs_ports{$_} } @ports;
1156 }
1157 # create the allow line for the remaining ports, or delete if empty
1158 if (@ports) {
1159 [$pri, "allow-$bridge " . join(' ', @ports)];
1160 } else {
1161 undef;
1162 }
1163 } else {
1164 # don't modify other lines
1165 $_;
1166 }
1167 } @$options;
1168
1169 return $config;
1170 }
1171
1172 sub __interface_to_string {
1173 my ($iface, $d, $family, $first_block, $ifupdown2) = @_;
1174
1175 (my $suffix = $family) =~ s/^inet//;
1176
1177 return '' if !($d && $d->{"method$suffix"});
1178
1179 my $raw = '';
1180
1181 $raw .= "iface $iface $family " . $d->{"method$suffix"} . "\n";
1182 $raw .= "\taddress " . $d->{"address$suffix"} . "\n" if $d->{"address$suffix"};
1183 $raw .= "\tnetmask " . $d->{"netmask$suffix"} . "\n" if $d->{"netmask$suffix"};
1184 $raw .= "\tgateway " . $d->{"gateway$suffix"} . "\n" if $d->{"gateway$suffix"};
1185 $raw .= "\tbroadcast " . $d->{"broadcast$suffix"} . "\n" if $d->{"broadcast$suffix"};
1186
1187 my $done = { type => 1, priority => 1, method => 1, active => 1, exists => 1,
1188 comments => 1, autostart => 1, options => 1,
1189 address => 1, netmask => 1, gateway => 1, broadcast => 1,
1190 method6 => 1, families => 1, options6 => 1,
1191 address6 => 1, netmask6 => 1, gateway6 => 1, broadcast6 => 1, 'uplink-id' => 1 };
1192
1193 if (!$first_block) {
1194 # not printing out options
1195 } elsif ($d->{type} eq 'bridge') {
1196
1197 $d->{bridge_ports} =~ s/[;,\s]+/ /g;
1198 my $ports = $d->{bridge_ports} || 'none';
1199 $raw .= "\tbridge-ports $ports\n";
1200 $done->{bridge_ports} = 1;
1201
1202 my $v = defined($d->{bridge_stp}) ? $d->{bridge_stp} : 'off';
1203 $raw .= "\tbridge-stp $v\n";
1204 $done->{bridge_stp} = 1;
1205
1206 $v = defined($d->{bridge_fd}) ? $d->{bridge_fd} : 0;
1207 $raw .= "\tbridge-fd $v\n";
1208 $done->{bridge_fd} = 1;
1209
1210 if( defined($d->{bridge_vlan_aware})) {
1211 $raw .= "\tbridge-vlan-aware yes\n";
1212 $v = defined($d->{bridge_vids}) ? $d->{bridge_vids} : "2-4094";
1213 $raw .= "\tbridge-vids $v\n";
1214 }
1215 $done->{bridge_vlan_aware} = 1;
1216 $done->{bridge_vids} = 1;
1217
1218 } elsif ($d->{type} eq 'bond') {
1219
1220 $d->{slaves} =~ s/[;,\s]+/ /g;
1221 my $slaves = $d->{slaves} || 'none';
1222 $raw .= "\tbond-slaves $slaves\n";
1223 $done->{slaves} = 1;
1224
1225 my $v = defined ($d->{'bond_miimon'}) ? $d->{'bond_miimon'} : 100;
1226 $raw .= "\tbond-miimon $v\n";
1227 $done->{'bond_miimon'} = 1;
1228
1229 $v = defined ($d->{'bond_mode'}) ? $d->{'bond_mode'} : 'balance-rr';
1230 $raw .= "\tbond-mode $v\n";
1231 $done->{'bond_mode'} = 1;
1232
1233 if ($d->{'bond_mode'} && $d->{'bond_xmit_hash_policy'} &&
1234 ($d->{'bond_mode'} eq 'balance-xor' || $d->{'bond_mode'} eq '802.3ad')) {
1235 $raw .= "\tbond-xmit-hash-policy $d->{'bond_xmit_hash_policy'}\n";
1236 }
1237 $done->{'bond_xmit_hash_policy'} = 1;
1238
1239 if ($d->{'bond_mode'} && $d->{'bond_mode'} eq 'active-backup' && $d->{'bond-primary'}) {
1240 $raw .= "\tbond-primary $d->{'bond-primary'}\n";
1241 }
1242 $done->{'bond-primary'} = 1;
1243
1244 } elsif ($d->{type} eq 'vlan') {
1245 die "$iface: wrong vlan-protocol $d->{'vlan-protocol'}\n"
1246 if $d->{'vlan-protocol'} && $d->{'vlan-protocol'} ne '802.1ad' && $d->{'vlan-protocol'} ne '802.1q';
1247
1248 } elsif ($d->{type} eq 'vxlan') {
1249
1250 foreach my $k (qw(vxlan-id vxlan-svcnodeip vxlan-physdev vxlan-local-tunnelip)) {
1251 $raw .= "\t$k $d->{$k}\n" if defined $d->{$k};
1252 $done->{$k} = 1;
1253 }
1254
1255 if ($d->{'vxlan-remoteip'}) {
1256 foreach my $remoteip (@{$d->{'vxlan-remoteip'}}) {
1257 $raw .= "\tvxlan-remoteip $remoteip\n";
1258 }
1259 $done->{'vxlan-remoteip'} = 1;
1260 }
1261 } elsif ($d->{type} eq 'OVSBridge') {
1262
1263 $raw .= "\tovs_type $d->{type}\n";
1264 $done->{ovs_type} = 1;
1265
1266 $raw .= "\tovs_ports $d->{ovs_ports}\n" if $d->{ovs_ports};
1267
1268 $done->{ovs_ports} = 1;
1269 } elsif ($d->{type} eq 'OVSPort' || $d->{type} eq 'OVSIntPort' ||
1270 $d->{type} eq 'OVSBond') {
1271
1272 $d->{autostart} = 0; # started by the bridge
1273
1274 if (defined($d->{ovs_tag})) {
1275 &$set_ovs_option($d, tag => $d->{ovs_tag});
1276 }
1277 $done->{ovs_tag} = 1;
1278
1279 if ($d->{type} eq 'OVSBond') {
1280
1281 $d->{bond_mode} = 'active-backup' if !$d->{bond_mode};
1282
1283 $ovs_bond_modes->{$d->{bond_mode}} ||
1284 die "OVS does not support bond mode '$d->{bond_mode}\n";
1285
1286 if ($d->{bond_mode} eq 'lacp-balance-slb') {
1287 &$set_ovs_option($d, lacp => 'active');
1288 &$set_ovs_option($d, bond_mode => 'balance-slb');
1289 } elsif ($d->{bond_mode} eq 'lacp-balance-tcp') {
1290 &$set_ovs_option($d, lacp => 'active');
1291 &$set_ovs_option($d, bond_mode => 'balance-tcp');
1292 } else {
1293 &$set_ovs_option($d, lacp => undef);
1294 &$set_ovs_option($d, bond_mode => $d->{bond_mode});
1295 }
1296 $done->{bond_mode} = 1;
1297
1298 $raw .= "\tovs_bonds $d->{ovs_bonds}\n" if $d->{ovs_bonds};
1299 $done->{ovs_bonds} = 1;
1300 }
1301
1302 $raw .= "\tovs_type $d->{type}\n";
1303 $done->{ovs_type} = 1;
1304
1305 if (my $bridge = $d->{ovs_bridge}) {
1306 $raw = "allow-$bridge $iface\n$raw";
1307 $raw .= "\tovs_bridge $bridge\n";
1308 $done->{ovs_bridge} = 1;
1309 }
1310 }
1311
1312 if ($first_block) {
1313 # print other settings
1314 foreach my $k (sort keys %$d) {
1315 next if $done->{$k};
1316 next if !$d->{$k};
1317 $raw .= "\t$k $d->{$k}\n";
1318 }
1319 }
1320
1321 foreach my $option (@{$d->{"options$suffix"}}) {
1322 $raw .= "\t$option\n";
1323 }
1324
1325 # add comments
1326 my $comments = $d->{"comments$suffix"} || '';
1327 foreach my $cl (split(/\n/, $comments)) {
1328 $raw .= "#$cl\n";
1329 }
1330
1331 $raw .= "\n";
1332
1333 return $raw;
1334 }
1335
1336
1337 sub write_etc_network_interfaces {
1338 my ($filename, $fh, $config) = @_;
1339 my $ifupdown2 = -e '/usr/share/ifupdown2';
1340 my $raw = __write_etc_network_interfaces($config, $ifupdown2);
1341 PVE::Tools::safe_print($filename, $fh, encode('UTF-8', $raw));
1342 }
1343 sub __write_etc_network_interfaces {
1344 my ($config, $ifupdown2) = @_;
1345
1346 my $ifaces = $config->{ifaces};
1347 my @options = @{$config->{options}};
1348
1349 my $used_ports = {};
1350
1351 foreach my $iface (keys %$ifaces) {
1352 my $d = $ifaces->{$iface};
1353
1354 delete $d->{cidr};
1355 delete $d->{cidr6};
1356
1357 my $ports = '';
1358 foreach my $k (qw(bridge_ports ovs_ports slaves ovs_bonds)) {
1359 $ports .= " $d->{$k}" if $d->{$k};
1360 }
1361
1362 foreach my $p (PVE::Tools::split_list($ports)) {
1363 die "port '$p' is already used on interface '$used_ports->{$p}'\n"
1364 if $used_ports->{$p} && $used_ports->{$p} ne $iface;
1365 $used_ports->{$p} = $iface;
1366 }
1367 }
1368
1369 # delete unused OVS ports
1370 foreach my $iface (keys %$ifaces) {
1371 my $d = $ifaces->{$iface};
1372 if ($d->{type} eq 'OVSPort' || $d->{type} eq 'OVSIntPort' ||
1373 $d->{type} eq 'OVSBond') {
1374 my $brname = $used_ports->{$iface};
1375 if (!$brname || !$ifaces->{$brname}) {
1376 if ($iface =~ /^$PVE::Network::PHYSICAL_NIC_RE/) {
1377 $ifaces->{$iface} = { type => 'eth',
1378 exists => 1,
1379 method => 'manual',
1380 families => ['inet'] };
1381 } else {
1382 delete $ifaces->{$iface};
1383 }
1384 next;
1385 }
1386 my $bd = $ifaces->{$brname};
1387 if ($bd->{type} ne 'OVSBridge') {
1388 delete $ifaces->{$iface};
1389 next;
1390 }
1391 }
1392 }
1393
1394 # create OVS bridge ports
1395 foreach my $iface (keys %$ifaces) {
1396 my $d = $ifaces->{$iface};
1397 if ($d->{type} eq 'OVSBridge' && $d->{ovs_ports}) {
1398 foreach my $p (split (/\s+/, $d->{ovs_ports})) {
1399 my $n = $ifaces->{$p};
1400 die "OVS bridge '$iface' - unable to find port '$p'\n"
1401 if !$n;
1402 $n->{autostart} = 0;
1403 if ($n->{type} eq 'eth') {
1404 $n->{type} = 'OVSPort';
1405 $n->{ovs_bridge} = $iface;
1406 } elsif ($n->{type} eq 'OVSBond' || $n->{type} eq 'OVSPort' ||
1407 $n->{type} eq 'OVSIntPort') {
1408 $n->{ovs_bridge} = $iface;
1409 } else {
1410 die "interface '$p' is not defined as OVS port/bond\n";
1411 }
1412
1413 &$check_mtu($ifaces, $iface, $p);
1414 }
1415 }
1416 }
1417
1418 # check OVS bond ports
1419 foreach my $iface (keys %$ifaces) {
1420 my $d = $ifaces->{$iface};
1421 if ($d->{type} eq 'OVSBond' && $d->{ovs_bonds}) {
1422 foreach my $p (split (/\s+/, $d->{ovs_bonds})) {
1423 my $n = $ifaces->{$p};
1424 die "OVS bond '$iface' - unable to find slave '$p'\n"
1425 if !$n;
1426 die "OVS bond '$iface' - wrong interface type on slave '$p' " .
1427 "('$n->{type}' != 'eth')\n" if $n->{type} ne 'eth';
1428 &$check_mtu($ifaces, $iface, $p);
1429 }
1430 }
1431 }
1432
1433 # check bond
1434 foreach my $iface (keys %$ifaces) {
1435 my $d = $ifaces->{$iface};
1436 if ($d->{type} eq 'bond' && $d->{slaves}) {
1437 my $bond_primary_is_slave = undef;
1438 foreach my $p (split (/\s+/, $d->{slaves})) {
1439 my $n = $ifaces->{$p};
1440
1441 die "bond '$iface' - unable to find slave '$p'\n"
1442 if !$n;
1443 die "bond '$iface' - wrong interface type on slave '$p' " .
1444 "('$n->{type}' != 'eth')\n" if $n->{type} ne 'eth';
1445 &$check_mtu($ifaces, $iface, $p);
1446 $bond_primary_is_slave = 1 if $d->{'bond-primary'} && $d->{'bond-primary'} eq $p;
1447 }
1448 die "bond '$iface' - bond-primary interface is not a slave" if $d->{'bond-primary'} && !$bond_primary_is_slave;
1449 }
1450 }
1451
1452 # check vxlan
1453 my $vxlans = {};
1454 foreach my $iface (keys %$ifaces) {
1455 my $d = $ifaces->{$iface};
1456
1457 if ($d->{type} eq 'vxlan' && $d->{'vxlan-id'}) {
1458 my $vxlanid = $d->{'vxlan-id'};
1459 die "iface $iface - duplicate vxlan-id $vxlanid already used in $vxlans->{$vxlanid}\n" if $vxlans->{$vxlanid};
1460 $vxlans->{$vxlanid} = $iface;
1461 }
1462
1463 my $ips = 0;
1464 ++$ips if defined $d->{'vxlan-svcnodeip'};
1465 ++$ips if defined $d->{'vxlan-remoteip'};
1466 ++$ips if defined $d->{'vxlan-local-tunnelip'};
1467 if ($ips > 1) {
1468 die "iface $iface - vxlan-svcnodeip, vxlan-remoteip and vxlan-localtunnelip are mutually exclusive\n";
1469 }
1470
1471 if (defined($d->{'vxlan-svcnodeip'}) != defined($d->{'vxlan-physdev'})) {
1472 die "iface $iface - vxlan-svcnodeip and vxlan-physdev must be define together\n";
1473 }
1474 #fixme : check if vxlan mtu is lower than 50bytes than physical interface where tunnel is going out
1475 }
1476
1477 # check vlan
1478 foreach my $iface (keys %$ifaces) {
1479 my $d = $ifaces->{$iface};
1480 if ($d->{type} eq 'vlan' && $iface =~ m/^(\S+)\.\d+$/) {
1481 my $p = $1;
1482 my $n = $ifaces->{$p};
1483
1484 die "vlan '$iface' - unable to find parent '$p'\n"
1485 if !$n;
1486
1487 if ($n->{type} ne 'eth' && $n->{type} ne 'bridge' && $n->{type} ne 'bond' && $n->{type} ne 'vlan') {
1488 die "vlan '$iface' - wrong interface type on parent '$p' " .
1489 "('$n->{type}' != 'eth|bond|bridge|vlan' )\n";
1490 }
1491
1492 &$check_mtu($ifaces, $p, $iface);
1493
1494 }
1495 }
1496
1497 # check uplink
1498 my $uplinks = {};
1499 foreach my $iface (keys %$ifaces) {
1500 my $d = $ifaces->{$iface};
1501 if (my $uplinkid = $d->{'uplink-id'}) {
1502 die "iface '$iface' - uplink-id $uplinkid is only allowed on physical and linux bond interfaces\n"
1503 if $d->{type} ne 'eth' && $d->{type} ne 'bond';
1504
1505 die "iface '$iface' - uplink-id $uplinkid is already assigned on '$uplinks->{$uplinkid}'\n"
1506 if $uplinks->{$uplinkid};
1507
1508 $uplinks->{$uplinkid} = $iface;
1509 }
1510 }
1511
1512 # check bridgeport option
1513 my $bridgeports = {};
1514 my $bridges = {};
1515 foreach my $iface (keys %$ifaces) {
1516 my $d = $ifaces->{$iface};
1517 if ($d->{type} eq 'bridge') {
1518 foreach my $p (split (/\s+/, $d->{bridge_ports})) {
1519 $p =~ s/\.\d+$//;
1520 my $n = $ifaces->{$p};
1521 die "bridge '$iface' - unable to find bridge port '$p'\n"
1522 if !$n;
1523 die "iface $p - ip address can't be set on interface if bridged in $iface\n"
1524 if ($n->{method} eq 'static' && $n->{address} ne '0.0.0.0') ||
1525 ($n->{method6} eq 'static' && $n->{address} ne "\:\:");
1526
1527 &$check_mtu($ifaces, $iface, $p);
1528 $bridgeports->{$p} = $iface;
1529 }
1530 $bridges->{$iface} = $d;
1531 }
1532 }
1533
1534 foreach my $iface (keys %$ifaces) {
1535 my $d = $ifaces->{$iface};
1536
1537 foreach my $k (qw(bridge-learning bridge-arp-nd-suppress bridge-unicast-flood bridge-multicast-flood bridge-access)) {
1538 die "iface $iface - $k: bridge port specific options can be used only on interfaces attached to a bridge\n"
1539 if $d->{$k} && !$bridgeports->{$iface};
1540 }
1541
1542 if ($d->{'bridge-access'} && !$bridges->{$bridgeports->{$iface}}->{bridge_vlan_aware}) {
1543 die "iface $iface - bridge-access option can be only used if interface is in a vlan aware bridge\n";
1544 }
1545 }
1546
1547 my $raw = <<'NETWORKDOC';
1548 # network interface settings; autogenerated
1549 # Please do NOT modify this file directly, unless you know what
1550 # you're doing.
1551 #
1552 # If you want to manage parts of the network configuration manually,
1553 # please utilize the 'source' or 'source-directory' directives to do
1554 # so.
1555 # PVE will preserve these directives, but will NOT read its network
1556 # configuration from sourced files, so do not attempt to move any of
1557 # the PVE managed interfaces into external files!
1558
1559 NETWORKDOC
1560
1561 my $printed = {};
1562
1563 my $if_type_hash = {
1564 loopback => 100000,
1565 eth => 200000,
1566 OVSPort => 200000,
1567 OVSIntPort => 200000,
1568 bond => 300000,
1569 bridge => 400000,
1570 OVSBridge => 400000,
1571 vxlan => 500000,
1572 };
1573
1574 my $lookup_type_prio = sub {
1575 my ($iface, $ifaces) = @_;
1576
1577 my ($rootiface, @rest) = split(/[.:]/, $iface);
1578 my $childlevel = scalar(@rest);
1579 my $n = $ifaces->{$rootiface};
1580
1581 my $pri = $if_type_hash->{$n->{type}} + $childlevel
1582 if $n->{type} && $n->{type} ne 'unknown';
1583
1584 return $pri;
1585 };
1586
1587 foreach my $iface (sort {
1588 my $ref1 = $ifaces->{$a};
1589 my $ref2 = $ifaces->{$b};
1590 my $tp1 = &$lookup_type_prio($a, $ifaces);
1591 my $tp2 = &$lookup_type_prio($b, $ifaces);
1592
1593 # Only recognized types are in relation to each other. If one type
1594 # is unknown then only consider the interfaces' priority attributes.
1595 $tp1 = $tp2 = 0 if !defined($tp1) || !defined($tp2);
1596
1597 my $p1 = $tp1 + ($ref1->{priority} // 50000);
1598 my $p2 = $tp2 + ($ref2->{priority} // 50000);
1599
1600 return $p1 <=> $p2 if $p1 != $p2;
1601
1602 return $a cmp $b;
1603 } keys %$ifaces) {
1604 next if $printed->{$iface};
1605 my $d = $ifaces->{$iface};
1606 my $pri = $d->{priority} // 0;
1607 if (@options && $options[0]->[0] < $pri) {
1608 do {
1609 $raw .= (shift @options)->[1] . "\n";
1610 } while (@options && $options[0]->[0] < $pri);
1611 $raw .= "\n";
1612 }
1613
1614 $printed->{$iface} = 1;
1615 if ($d->{autostart}) {
1616 if ($d->{type} eq 'OVSBridge') {
1617 # cannot use 'auto' for OVS, would add race with systemd ifup@.service
1618 $raw .= "allow-ovs $iface\n";
1619 } else {
1620 $raw .= "auto $iface\n";
1621 }
1622 }
1623
1624 my $i = 0; # some options should be printed only once
1625 $raw .= __interface_to_string($iface, $d, $_, !$i++, $ifupdown2) foreach @{$d->{families}};
1626 }
1627
1628 $raw .= $_->[1] . "\n" foreach @options;
1629 return $raw;
1630 }
1631
1632 register_file('interfaces', "/etc/network/interfaces",
1633 \&read_etc_network_interfaces,
1634 \&write_etc_network_interfaces);
1635
1636
1637 sub read_iscsi_initiatorname {
1638 my ($filename, $fd) = @_;
1639
1640 while (defined(my $line = <$fd>)) {
1641 if ($line =~ m/^InitiatorName=(\S+)$/) {
1642 return $1;
1643 }
1644 }
1645
1646 return 'undefined';
1647 }
1648
1649 register_file('initiatorname', "/etc/iscsi/initiatorname.iscsi",
1650 \&read_iscsi_initiatorname);
1651
1652 sub read_apt_auth {
1653 my ($filename, $fd) = @_;
1654
1655 local $/;
1656
1657 my $raw = defined($fd) ? <$fd> : '';
1658
1659 $raw =~ s/^\s+//;
1660
1661
1662 my @tokens = split(/\s+/, $raw);
1663
1664 my $data = {};
1665
1666 my $machine;
1667 while (defined(my $tok = shift @tokens)) {
1668
1669 $machine = shift @tokens if $tok eq 'machine';
1670 next if !$machine;
1671 $data->{$machine} = {} if !$data->{$machine};
1672
1673 $data->{$machine}->{login} = shift @tokens if $tok eq 'login';
1674 $data->{$machine}->{password} = shift @tokens if $tok eq 'password';
1675 };
1676
1677 return $data;
1678 }
1679
1680 my $format_apt_auth_data = sub {
1681 my $data = shift;
1682
1683 my $raw = '';
1684
1685 foreach my $machine (sort keys %$data) {
1686 my $d = $data->{$machine};
1687 $raw .= "machine $machine\n";
1688 $raw .= " login $d->{login}\n" if $d->{login};
1689 $raw .= " password $d->{password}\n" if $d->{password};
1690 $raw .= "\n";
1691 }
1692
1693 return $raw;
1694 };
1695
1696 sub write_apt_auth {
1697 my ($filename, $fh, $data) = @_;
1698
1699 my $raw = &$format_apt_auth_data($data);
1700
1701 die "write failed: $!" unless print $fh "$raw\n";
1702
1703 return $data;
1704 }
1705
1706 sub update_apt_auth {
1707 my ($filename, $fh, $data) = @_;
1708
1709 my $orig = read_apt_auth($filename, $fh);
1710
1711 foreach my $machine (keys %$data) {
1712 $orig->{$machine} = $data->{$machine};
1713 }
1714
1715 return &$format_apt_auth_data($orig);
1716 }
1717
1718 register_file('apt-auth', "/etc/apt/auth.conf",
1719 \&read_apt_auth, \&write_apt_auth,
1720 \&update_apt_auth, perm => 0640);
1721
1722 1;