]> git.proxmox.com Git - pve-cluster.git/blame - data/PVE/Cluster.pm
move corosync config helpers to PVE::Cluster
[pve-cluster.git] / data / PVE / Cluster.pm
CommitLineData
fe000966
DM
1package PVE::Cluster;
2
3use strict;
7181f622 4use warnings;
62613060 5use POSIX qw(EEXIST);
fe000966
DM
6use File::stat qw();
7use Socket;
8use Storable qw(dclone);
9use IO::File;
10use MIME::Base64;
ec48ec22 11use XML::Parser;
440121dc 12use Digest::SHA;
fe000966 13use Digest::HMAC_SHA1;
26784563 14use Net::SSLeay;
fe000966
DM
15use PVE::Tools;
16use PVE::INotify;
17use PVE::IPCC;
18use PVE::SafeSyslog;
d0ad18e8 19use PVE::JSONSchema;
54d487bf 20use PVE::Network;
fe000966
DM
21use JSON;
22use RRDs;
23use Encode;
ed8eb70d 24use UUID;
fe000966
DM
25use base 'Exporter';
26
27our @EXPORT_OK = qw(
28cfs_read_file
29cfs_write_file
30cfs_register_file
31cfs_lock_file);
32
33use Data::Dumper; # fixme: remove
34
35# x509 certificate utils
36
37my $basedir = "/etc/pve";
38my $authdir = "$basedir/priv";
39my $lockdir = "/etc/pve/priv/lock";
40
41my $authprivkeyfn = "$authdir/authkey.key";
42my $authpubkeyfn = "$basedir/authkey.pub";
43my $pveca_key_fn = "$authdir/pve-root-ca.key";
44my $pveca_srl_fn = "$authdir/pve-root-ca.srl";
45my $pveca_cert_fn = "$basedir/pve-root-ca.pem";
46# this is just a secret accessable by the web browser
47# and is used for CSRF prevention
48my $pvewww_key_fn = "$basedir/pve-www.key";
49
50# ssh related files
51my $ssh_rsa_id_priv = "/root/.ssh/id_rsa";
52my $ssh_rsa_id = "/root/.ssh/id_rsa.pub";
53my $ssh_host_rsa_id = "/etc/ssh/ssh_host_rsa_key.pub";
54my $sshglobalknownhosts = "/etc/ssh/ssh_known_hosts";
55my $sshknownhosts = "/etc/pve/priv/known_hosts";
56my $sshauthkeys = "/etc/pve/priv/authorized_keys";
ac50b36d 57my $sshd_config_fn = "/etc/ssh/sshd_config";
fe000966 58my $rootsshauthkeys = "/root/.ssh/authorized_keys";
6056578e 59my $rootsshauthkeysbackup = "${rootsshauthkeys}.org";
f666cdde 60my $rootsshconfig = "/root/.ssh/config";
fe000966
DM
61
62my $observed = {
e1735a61 63 'vzdump.cron' => 1,
fe000966
DM
64 'storage.cfg' => 1,
65 'datacenter.cfg' => 1,
cafc7309
DM
66 'corosync.conf' => 1,
67 'corosync.conf.new' => 1,
fe000966
DM
68 'user.cfg' => 1,
69 'domains.cfg' => 1,
70 'priv/shadow.cfg' => 1,
71 '/qemu-server/' => 1,
f71eee41 72 '/openvz/' => 1,
7f66b436 73 '/lxc/' => 1,
5a5417e6
DM
74 'ha/crm_commands' => 1,
75 'ha/manager_status' => 1,
76 'ha/resources.cfg' => 1,
77 'ha/groups.cfg' => 1,
e9af3eb7 78 'ha/fence.cfg' => 1,
9d4f69ff 79 'status.cfg' => 1,
fe000966
DM
80};
81
82# only write output if something fails
83sub run_silent_cmd {
84 my ($cmd) = @_;
85
86 my $outbuf = '';
87
88 my $record_output = sub {
89 $outbuf .= shift;
90 $outbuf .= "\n";
91 };
92
93 eval {
c53b111f 94 PVE::Tools::run_command($cmd, outfunc => $record_output,
fe000966
DM
95 errfunc => $record_output);
96 };
97
98 my $err = $@;
99
100 if ($err) {
101 print STDERR $outbuf;
102 die $err;
103 }
104}
105
106sub check_cfs_quorum {
01dddfb9
DM
107 my ($noerr) = @_;
108
fe000966
DM
109 # note: -w filename always return 1 for root, so wee need
110 # to use File::lstat here
111 my $st = File::stat::lstat("$basedir/local");
01dddfb9
DM
112 my $quorate = ($st && (($st->mode & 0200) != 0));
113
114 die "cluster not ready - no quorum?\n" if !$quorate && !$noerr;
115
116 return $quorate;
fe000966
DM
117}
118
119sub check_cfs_is_mounted {
120 my ($noerr) = @_;
121
122 my $res = -l "$basedir/local";
123
124 die "pve configuration filesystem not mounted\n"
125 if !$res && !$noerr;
126
127 return $res;
128}
129
130sub gen_local_dirs {
131 my ($nodename) = @_;
132
133 check_cfs_is_mounted();
134
135 my @required_dirs = (
136 "$basedir/priv",
c53b111f 137 "$basedir/nodes",
fe000966 138 "$basedir/nodes/$nodename",
7f66b436 139 "$basedir/nodes/$nodename/lxc",
a1c08cfa
DM
140 "$basedir/nodes/$nodename/qemu-server",
141 "$basedir/nodes/$nodename/openvz",
fe000966 142 "$basedir/nodes/$nodename/priv");
c53b111f 143
fe000966
DM
144 foreach my $dir (@required_dirs) {
145 if (! -d $dir) {
62613060 146 mkdir($dir) || $! == EEXIST || die "unable to create directory '$dir' - $!\n";
fe000966
DM
147 }
148 }
149}
150
151sub gen_auth_key {
152
153 return if -f "$authprivkeyfn";
154
155 check_cfs_is_mounted();
156
62613060 157 mkdir $authdir || $! == EEXIST || die "unable to create dir '$authdir' - $!\n";
fe000966 158
2d899b19 159 run_silent_cmd(['openssl', 'genrsa', '-out', $authprivkeyfn, '2048']);
fe000966 160
de4b4155 161 run_silent_cmd(['openssl', 'rsa', '-in', $authprivkeyfn, '-pubout', '-out', $authpubkeyfn]);
fe000966
DM
162}
163
164sub gen_pveca_key {
165
166 return if -f $pveca_key_fn;
167
168 eval {
147661a8 169 run_silent_cmd(['openssl', 'genrsa', '-out', $pveca_key_fn, '4096']);
fe000966
DM
170 };
171
172 die "unable to generate pve ca key:\n$@" if $@;
173}
174
175sub gen_pveca_cert {
176
177 if (-f $pveca_key_fn && -f $pveca_cert_fn) {
178 return 0;
179 }
180
181 gen_pveca_key();
182
183 # we try to generate an unique 'subject' to avoid browser problems
184 # (reused serial numbers, ..)
ed8eb70d
FG
185 my $uuid;
186 UUID::generate($uuid);
187 my $uuid_str;
188 UUID::unparse($uuid, $uuid_str);
fe000966
DM
189
190 eval {
f5566fc6
FG
191 # wrap openssl with faketime to prevent bug #904
192 run_silent_cmd(['faketime', 'yesterday', 'openssl', 'req', '-batch',
193 '-days', '3650', '-new', '-x509', '-nodes', '-key',
fe000966 194 $pveca_key_fn, '-out', $pveca_cert_fn, '-subj',
ed8eb70d 195 "/CN=Proxmox Virtual Environment/OU=$uuid_str/O=PVE Cluster Manager CA/"]);
fe000966
DM
196 };
197
198 die "generating pve root certificate failed:\n$@" if $@;
199
200 return 1;
201}
202
203sub gen_pve_ssl_key {
204 my ($nodename) = @_;
205
206 die "no node name specified" if !$nodename;
207
208 my $pvessl_key_fn = "$basedir/nodes/$nodename/pve-ssl.key";
209
210 return if -f $pvessl_key_fn;
211
212 eval {
213 run_silent_cmd(['openssl', 'genrsa', '-out', $pvessl_key_fn, '2048']);
214 };
215
216 die "unable to generate pve ssl key for node '$nodename':\n$@" if $@;
217}
218
219sub gen_pve_www_key {
220
221 return if -f $pvewww_key_fn;
222
223 eval {
224 run_silent_cmd(['openssl', 'genrsa', '-out', $pvewww_key_fn, '2048']);
225 };
226
227 die "unable to generate pve www key:\n$@" if $@;
228}
229
230sub update_serial {
231 my ($serial) = @_;
232
233 PVE::Tools::file_set_contents($pveca_srl_fn, $serial);
234}
235
236sub gen_pve_ssl_cert {
237 my ($force, $nodename, $ip) = @_;
238
239 die "no node name specified" if !$nodename;
240 die "no IP specified" if !$ip;
241
242 my $pvessl_cert_fn = "$basedir/nodes/$nodename/pve-ssl.pem";
243
244 return if !$force && -f $pvessl_cert_fn;
245
8acde170 246 my $names = "IP:127.0.0.1,IP:::1,DNS:localhost";
fe000966
DM
247
248 my $rc = PVE::INotify::read_file('resolvconf');
249
250 $names .= ",IP:$ip";
c53b111f 251
fe000966
DM
252 my $fqdn = $nodename;
253
254 $names .= ",DNS:$nodename";
255
256 if ($rc && $rc->{search}) {
257 $fqdn = $nodename . "." . $rc->{search};
258 $names .= ",DNS:$fqdn";
259 }
260
261 my $sslconf = <<__EOD;
262RANDFILE = /root/.rnd
263extensions = v3_req
264
265[ req ]
266default_bits = 2048
267distinguished_name = req_distinguished_name
268req_extensions = v3_req
269prompt = no
270string_mask = nombstr
271
272[ req_distinguished_name ]
273organizationalUnitName = PVE Cluster Node
274organizationName = Proxmox Virtual Environment
275commonName = $fqdn
276
277[ v3_req ]
278basicConstraints = CA:FALSE
e544d064 279extendedKeyUsage = serverAuth
fe000966
DM
280subjectAltName = $names
281__EOD
282
283 my $cfgfn = "/tmp/pvesslconf-$$.tmp";
284 my $fh = IO::File->new ($cfgfn, "w");
285 print $fh $sslconf;
286 close ($fh);
287
288 my $reqfn = "/tmp/pvecertreq-$$.tmp";
289 unlink $reqfn;
290
291 my $pvessl_key_fn = "$basedir/nodes/$nodename/pve-ssl.key";
292 eval {
293 run_silent_cmd(['openssl', 'req', '-batch', '-new', '-config', $cfgfn,
294 '-key', $pvessl_key_fn, '-out', $reqfn]);
295 };
296
297 if (my $err = $@) {
298 unlink $reqfn;
299 unlink $cfgfn;
300 die "unable to generate pve certificate request:\n$err";
301 }
302
303 update_serial("0000000000000000") if ! -f $pveca_srl_fn;
304
305 eval {
f5566fc6
FG
306 # wrap openssl with faketime to prevent bug #904
307 run_silent_cmd(['faketime', 'yesterday', 'openssl', 'x509', '-req',
308 '-in', $reqfn, '-days', '3650', '-out', $pvessl_cert_fn,
309 '-CAkey', $pveca_key_fn, '-CA', $pveca_cert_fn,
310 '-CAserial', $pveca_srl_fn, '-extfile', $cfgfn]);
fe000966
DM
311 };
312
313 if (my $err = $@) {
314 unlink $reqfn;
315 unlink $cfgfn;
316 die "unable to generate pve ssl certificate:\n$err";
317 }
318
319 unlink $cfgfn;
320 unlink $reqfn;
321}
322
323sub gen_pve_node_files {
324 my ($nodename, $ip, $opt_force) = @_;
325
326 gen_local_dirs($nodename);
327
328 gen_auth_key();
329
330 # make sure we have a (cluster wide) secret
331 # for CSRFR prevention
332 gen_pve_www_key();
333
334 # make sure we have a (per node) private key
335 gen_pve_ssl_key($nodename);
336
337 # make sure we have a CA
338 my $force = gen_pveca_cert();
339
340 $force = 1 if $opt_force;
341
342 gen_pve_ssl_cert($force, $nodename, $ip);
343}
344
bd0ae7ff
DM
345my $vzdump_cron_dummy = <<__EOD;
346# cluster wide vzdump cron schedule
347# Atomatically generated file - do not edit
348
349PATH="/usr/sbin:/usr/bin:/sbin:/bin"
350
351__EOD
352
353sub gen_pve_vzdump_symlink {
354
e1735a61 355 my $filename = "/etc/pve/vzdump.cron";
bd0ae7ff
DM
356
357 my $link_fn = "/etc/cron.d/vzdump";
358
359 if ((-f $filename) && (! -l $link_fn)) {
360 rename($link_fn, "/root/etc_cron_vzdump.org"); # make backup if file exists
361 symlink($filename, $link_fn);
362 }
363}
364
365sub gen_pve_vzdump_files {
366
e1735a61 367 my $filename = "/etc/pve/vzdump.cron";
bd0ae7ff
DM
368
369 PVE::Tools::file_set_contents($filename, $vzdump_cron_dummy)
370 if ! -f $filename;
371
372 gen_pve_vzdump_symlink();
373};
374
fe000966
DM
375my $versions = {};
376my $vmlist = {};
377my $clinfo = {};
378
379my $ipcc_send_rec = sub {
380 my ($msgid, $data) = @_;
381
382 my $res = PVE::IPCC::ipcc_send_rec($msgid, $data);
383
384 die "ipcc_send_rec failed: $!\n" if !defined($res) && ($! != 0);
385
386 return $res;
387};
388
389my $ipcc_send_rec_json = sub {
390 my ($msgid, $data) = @_;
391
392 my $res = PVE::IPCC::ipcc_send_rec($msgid, $data);
393
394 die "ipcc_send_rec failed: $!\n" if !defined($res) && ($! != 0);
395
396 return decode_json($res);
397};
398
399my $ipcc_get_config = sub {
400 my ($path) = @_;
401
402 my $bindata = pack "Z*", $path;
2db32d95
DM
403 my $res = PVE::IPCC::ipcc_send_rec(6, $bindata);
404 if (!defined($res)) {
405 return undef if ($! != 0);
406 return '';
407 }
408
409 return $res;
fe000966
DM
410};
411
412my $ipcc_get_status = sub {
413 my ($name, $nodename) = @_;
414
415 my $bindata = pack "Z[256]Z[256]", $name, ($nodename || "");
416 return PVE::IPCC::ipcc_send_rec(5, $bindata);
417};
418
419my $ipcc_update_status = sub {
420 my ($name, $data) = @_;
421
422 my $raw = ref($data) ? encode_json($data) : $data;
423 # update status
424 my $bindata = pack "Z[256]Z*", $name, $raw;
425
426 return &$ipcc_send_rec(4, $bindata);
427};
428
429my $ipcc_log = sub {
430 my ($priority, $ident, $tag, $msg) = @_;
431
432 my $bindata = pack "CCCZ*Z*Z*", $priority, bytes::length($ident) + 1,
433 bytes::length($tag) + 1, $ident, $tag, $msg;
434
435 return &$ipcc_send_rec(7, $bindata);
436};
437
438my $ipcc_get_cluster_log = sub {
439 my ($user, $max) = @_;
440
441 $max = 0 if !defined($max);
442
443 my $bindata = pack "VVVVZ*", $max, 0, 0, 0, ($user || "");
444 return &$ipcc_send_rec(8, $bindata);
445};
446
447my $ccache = {};
448
449sub cfs_update {
450 eval {
451 my $res = &$ipcc_send_rec_json(1);
452 #warn "GOT1: " . Dumper($res);
453 die "no starttime\n" if !$res->{starttime};
454
455 if (!$res->{starttime} || !$versions->{starttime} ||
456 $res->{starttime} != $versions->{starttime}) {
457 #print "detected changed starttime\n";
458 $vmlist = {};
459 $clinfo = {};
460 $ccache = {};
461 }
462
463 $versions = $res;
464 };
465 my $err = $@;
466 if ($err) {
467 $versions = {};
468 $vmlist = {};
469 $clinfo = {};
470 $ccache = {};
471 warn $err;
472 }
473
474 eval {
475 if (!$clinfo->{version} || $clinfo->{version} != $versions->{clinfo}) {
476 #warn "detected new clinfo\n";
477 $clinfo = &$ipcc_send_rec_json(2);
478 }
479 };
480 $err = $@;
481 if ($err) {
482 $clinfo = {};
483 warn $err;
484 }
485
486 eval {
487 if (!$vmlist->{version} || $vmlist->{version} != $versions->{vmlist}) {
488 #warn "detected new vmlist1\n";
489 $vmlist = &$ipcc_send_rec_json(3);
490 }
491 };
492 $err = $@;
493 if ($err) {
494 $vmlist = {};
495 warn $err;
496 }
497}
498
499sub get_vmlist {
500 return $vmlist;
501}
502
503sub get_clinfo {
504 return $clinfo;
505}
506
9ddd4ae9
DM
507sub get_members {
508 return $clinfo->{nodelist};
509}
510
fe000966
DM
511sub get_nodelist {
512
513 my $nodelist = $clinfo->{nodelist};
514
515 my $result = [];
516
517 my $nodename = PVE::INotify::nodename();
518
519 if (!$nodelist || !$nodelist->{$nodename}) {
520 return [ $nodename ];
521 }
522
523 return [ keys %$nodelist ];
524}
525
526sub broadcast_tasklist {
527 my ($data) = @_;
528
529 eval {
530 &$ipcc_update_status("tasklist", $data);
531 };
532
533 warn $@ if $@;
534}
535
536my $tasklistcache = {};
537
538sub get_tasklist {
539 my ($nodename) = @_;
540
541 my $kvstore = $versions->{kvstore} || {};
542
543 my $nodelist = get_nodelist();
544
545 my $res = [];
546 foreach my $node (@$nodelist) {
547 next if $nodename && ($nodename ne $node);
548 eval {
549 my $ver = $kvstore->{$node}->{tasklist} if $kvstore->{$node};
550 my $cd = $tasklistcache->{$node};
c53b111f 551 if (!$cd || !$ver || !$cd->{version} ||
cebe16ec 552 ($cd->{version} != $ver)) {
fe000966
DM
553 my $raw = &$ipcc_get_status("tasklist", $node) || '[]';
554 my $data = decode_json($raw);
555 push @$res, @$data;
556 $cd = $tasklistcache->{$node} = {
557 data => $data,
558 version => $ver,
559 };
560 } elsif ($cd && $cd->{data}) {
561 push @$res, @{$cd->{data}};
562 }
563 };
564 my $err = $@;
565 syslog('err', $err) if $err;
566 }
567
568 return $res;
569}
570
571sub broadcast_rrd {
572 my ($rrdid, $data) = @_;
573
574 eval {
575 &$ipcc_update_status("rrd/$rrdid", $data);
576 };
577 my $err = $@;
578
579 warn $err if $err;
580}
581
582my $last_rrd_dump = 0;
583my $last_rrd_data = "";
584
585sub rrd_dump {
586
587 my $ctime = time();
588
589 my $diff = $ctime - $last_rrd_dump;
590 if ($diff < 2) {
591 return $last_rrd_data;
592 }
593
594 my $raw;
595 eval {
596 $raw = &$ipcc_send_rec(10);
597 };
598 my $err = $@;
599
600 if ($err) {
601 warn $err;
602 return {};
603 }
604
605 my $res = {};
606
c3fabca7
DM
607 if ($raw) {
608 while ($raw =~ s/^(.*)\n//) {
609 my ($key, @ela) = split(/:/, $1);
610 next if !$key;
611 next if !(scalar(@ela) > 1);
612 $res->{$key} = \@ela;
613 }
fe000966
DM
614 }
615
616 $last_rrd_dump = $ctime;
617 $last_rrd_data = $res;
618
619 return $res;
620}
621
622sub create_rrd_data {
623 my ($rrdname, $timeframe, $cf) = @_;
624
625 my $rrddir = "/var/lib/rrdcached/db";
626
627 my $rrd = "$rrddir/$rrdname";
628
629 my $setup = {
630 hour => [ 60, 70 ],
631 day => [ 60*30, 70 ],
632 week => [ 60*180, 70 ],
633 month => [ 60*720, 70 ],
634 year => [ 60*10080, 70 ],
635 };
636
637 my ($reso, $count) = @{$setup->{$timeframe}};
638 my $ctime = $reso*int(time()/$reso);
639 my $req_start = $ctime - $reso*$count;
640
641 $cf = "AVERAGE" if !$cf;
642
643 my @args = (
644 "-s" => $req_start,
645 "-e" => $ctime - 1,
646 "-r" => $reso,
647 );
648
649 my $socket = "/var/run/rrdcached.sock";
650 push @args, "--daemon" => "unix:$socket" if -S $socket;
651
652 my ($start, $step, $names, $data) = RRDs::fetch($rrd, $cf, @args);
653
654 my $err = RRDs::error;
655 die "RRD error: $err\n" if $err;
c53b111f
DM
656
657 die "got wrong time resolution ($step != $reso)\n"
fe000966
DM
658 if $step != $reso;
659
660 my $res = [];
661 my $fields = scalar(@$names);
662 for my $line (@$data) {
663 my $entry = { 'time' => $start };
664 $start += $step;
fe000966
DM
665 for (my $i = 0; $i < $fields; $i++) {
666 my $name = $names->[$i];
667 if (defined(my $val = $line->[$i])) {
668 $entry->{$name} = $val;
669 } else {
fba7c78c
DC
670 # leave empty fields undefined
671 # maybe make this configurable?
fe000966
DM
672 }
673 }
fba7c78c 674 push @$res, $entry;
fe000966
DM
675 }
676
677 return $res;
678}
679
680sub create_rrd_graph {
681 my ($rrdname, $timeframe, $ds, $cf) = @_;
682
683 # Using RRD graph is clumsy - maybe it
684 # is better to simply fetch the data, and do all display
685 # related things with javascript (new extjs html5 graph library).
c53b111f 686
fe000966
DM
687 my $rrddir = "/var/lib/rrdcached/db";
688
689 my $rrd = "$rrddir/$rrdname";
690
31938ad4
DM
691 my @ids = PVE::Tools::split_list($ds);
692
693 my $ds_txt = join('_', @ids);
694
695 my $filename = "${rrd}_${ds_txt}.png";
fe000966
DM
696
697 my $setup = {
698 hour => [ 60, 60 ],
699 day => [ 60*30, 70 ],
700 week => [ 60*180, 70 ],
701 month => [ 60*720, 70 ],
702 year => [ 60*10080, 70 ],
703 };
704
705 my ($reso, $count) = @{$setup->{$timeframe}};
706
707 my @args = (
708 "--imgformat" => "PNG",
709 "--border" => 0,
710 "--height" => 200,
711 "--width" => 800,
712 "--start" => - $reso*$count,
713 "--end" => 'now' ,
8daa8f04 714 "--lower-limit" => 0,
fe000966
DM
715 );
716
717 my $socket = "/var/run/rrdcached.sock";
718 push @args, "--daemon" => "unix:$socket" if -S $socket;
719
fe000966
DM
720 my @coldef = ('#00ddff', '#ff0000');
721
722 $cf = "AVERAGE" if !$cf;
723
724 my $i = 0;
725 foreach my $id (@ids) {
726 my $col = $coldef[$i++] || die "fixme: no color definition";
727 push @args, "DEF:${id}=$rrd:${id}:$cf";
728 my $dataid = $id;
729 if ($id eq 'cpu' || $id eq 'iowait') {
730 push @args, "CDEF:${id}_per=${id},100,*";
731 $dataid = "${id}_per";
732 }
733 push @args, "LINE2:${dataid}${col}:${id}";
734 }
735
a665376e
DM
736 push @args, '--full-size-mode';
737
31938ad4 738 # we do not really store data into the file
b871db9c 739 my $res = RRDs::graphv('', @args);
fe000966
DM
740
741 my $err = RRDs::error;
742 die "RRD error: $err\n" if $err;
743
31938ad4 744 return { filename => $filename, image => $res->{image} };
fe000966
DM
745}
746
747# a fast way to read files (avoid fuse overhead)
748sub get_config {
749 my ($path) = @_;
750
d3a92ba7 751 return &$ipcc_get_config($path);
fe000966
DM
752}
753
754sub get_cluster_log {
755 my ($user, $max) = @_;
756
757 return &$ipcc_get_cluster_log($user, $max);
758}
759
760my $file_info = {};
761
762sub cfs_register_file {
763 my ($filename, $parser, $writer) = @_;
764
765 $observed->{$filename} || die "unknown file '$filename'";
766
767 die "file '$filename' already registered" if $file_info->{$filename};
768
769 $file_info->{$filename} = {
770 parser => $parser,
771 writer => $writer,
772 };
773}
774
775my $ccache_read = sub {
776 my ($filename, $parser, $version) = @_;
777
778 $ccache->{$filename} = {} if !$ccache->{$filename};
779
780 my $ci = $ccache->{$filename};
781
d3a92ba7
DM
782 if (!$ci->{version} || !$version || $ci->{version} != $version) {
783 # we always call the parser, even when the file does not exists
784 # (in that case $data is undef)
fe000966 785 my $data = get_config($filename);
fe000966
DM
786 $ci->{data} = &$parser("/etc/pve/$filename", $data);
787 $ci->{version} = $version;
788 }
789
790 my $res = ref($ci->{data}) ? dclone($ci->{data}) : $ci->{data};
791
792 return $res;
793};
794
795sub cfs_file_version {
796 my ($filename) = @_;
797
798 my $version;
799 my $infotag;
6e73d5c2 800 if ($filename =~ m!^nodes/[^/]+/(openvz|lxc|qemu-server)/(\d+)\.conf$!) {
f71eee41 801 my ($type, $vmid) = ($1, $2);
fe000966
DM
802 if ($vmlist && $vmlist->{ids} && $vmlist->{ids}->{$vmid}) {
803 $version = $vmlist->{ids}->{$vmid}->{version};
804 }
f71eee41 805 $infotag = "/$type/";
fe000966
DM
806 } else {
807 $infotag = $filename;
808 $version = $versions->{$filename};
809 }
810
811 my $info = $file_info->{$infotag} ||
812 die "unknown file type '$filename'\n";
813
814 return wantarray ? ($version, $info) : $version;
815}
816
817sub cfs_read_file {
818 my ($filename) = @_;
819
c53b111f 820 my ($version, $info) = cfs_file_version($filename);
fe000966
DM
821 my $parser = $info->{parser};
822
823 return &$ccache_read($filename, $parser, $version);
824}
825
826sub cfs_write_file {
827 my ($filename, $data) = @_;
828
c53b111f 829 my ($version, $info) = cfs_file_version($filename);
fe000966
DM
830
831 my $writer = $info->{writer} || die "no writer defined";
832
833 my $fsname = "/etc/pve/$filename";
834
835 my $raw = &$writer($fsname, $data);
836
837 if (my $ci = $ccache->{$filename}) {
838 $ci->{version} = undef;
839 }
840
841 PVE::Tools::file_set_contents($fsname, $raw);
842}
843
844my $cfs_lock = sub {
845 my ($lockid, $timeout, $code, @param) = @_;
846
847 my $res;
848
849 # this timeout is for aquire the lock
850 $timeout = 10 if !$timeout;
851
852 my $filename = "$lockdir/$lockid";
853
854 my $msg = "can't aquire cfs lock '$lockid'";
855
856 eval {
857
858 mkdir $lockdir;
859
860 if (! -d $lockdir) {
861 die "$msg: pve cluster filesystem not online.\n";
862 }
863
864 local $SIG{ALRM} = sub { die "got lock request timeout\n"; };
865
866 alarm ($timeout);
867
868 if (!(mkdir $filename)) {
869 print STDERR "trying to aquire cfs lock '$lockid' ...";
870 while (1) {
871 if (!(mkdir $filename)) {
872 (utime 0, 0, $filename); # cfs unlock request
873 } else {
874 print STDERR " OK\n";
875 last;
876 }
877 sleep(1);
878 }
879 }
880
881 # fixed command timeout: cfs locks have a timeout of 120
882 # using 60 gives us another 60 seconds to abort the task
883 alarm(60);
884 local $SIG{ALRM} = sub { die "got lock timeout - aborting command\n"; };
885
9c206b2b
DM
886 cfs_update(); # make sure we read latest versions inside code()
887
fe000966
DM
888 $res = &$code(@param);
889
890 alarm(0);
891 };
892
893 my $err = $@;
894
895 alarm(0);
896
897 if ($err && ($err eq "got lock request timeout\n") &&
898 !check_cfs_quorum()){
899 $err = "$msg: no quorum!\n";
c53b111f 900 }
fe000966
DM
901
902 if (!$err || $err !~ /^got lock timeout -/) {
903 rmdir $filename; # cfs unlock
904 }
905
906 if ($err) {
907 $@ = $err;
908 return undef;
909 }
910
911 $@ = undef;
912
913 return $res;
914};
915
916sub cfs_lock_file {
917 my ($filename, $timeout, $code, @param) = @_;
918
919 my $info = $observed->{$filename} || die "unknown file '$filename'";
920
921 my $lockid = "file-$filename";
922 $lockid =~ s/[.\/]/_/g;
923
924 &$cfs_lock($lockid, $timeout, $code, @param);
925}
926
927sub cfs_lock_storage {
928 my ($storeid, $timeout, $code, @param) = @_;
929
930 my $lockid = "storage-$storeid";
931
932 &$cfs_lock($lockid, $timeout, $code, @param);
933}
934
78897707
TL
935sub cfs_lock_domain {
936 my ($domainname, $timeout, $code, @param) = @_;
937
938 my $lockid = "domain-$domainname";
939
940 &$cfs_lock($lockid, $timeout, $code, @param);
941}
942
fe000966
DM
943my $log_levels = {
944 "emerg" => 0,
945 "alert" => 1,
946 "crit" => 2,
947 "critical" => 2,
948 "err" => 3,
949 "error" => 3,
950 "warn" => 4,
951 "warning" => 4,
952 "notice" => 5,
953 "info" => 6,
954 "debug" => 7,
955};
956
957sub log_msg {
958 my ($priority, $ident, $msg) = @_;
959
960 if (my $tmp = $log_levels->{$priority}) {
961 $priority = $tmp;
962 }
963
964 die "need numeric log priority" if $priority !~ /^\d+$/;
965
966 my $tag = PVE::SafeSyslog::tag();
967
968 $msg = "empty message" if !$msg;
969
970 $ident = "" if !$ident;
8f2d54ff 971 $ident = encode("ascii", $ident,
fe000966
DM
972 sub { sprintf "\\u%04x", shift });
973
8f2d54ff 974 my $ascii = encode("ascii", $msg, sub { sprintf "\\u%04x", shift });
fe000966
DM
975
976 if ($ident) {
977 syslog($priority, "<%s> %s", $ident, $ascii);
978 } else {
979 syslog($priority, "%s", $ascii);
980 }
981
982 eval { &$ipcc_log($priority, $ident, $tag, $ascii); };
983
984 syslog("err", "writing cluster log failed: $@") if $@;
985}
986
9d76a1bb
DM
987sub check_vmid_unused {
988 my ($vmid, $noerr) = @_;
c53b111f 989
9d76a1bb
DM
990 my $vmlist = get_vmlist();
991
992 my $d = $vmlist->{ids}->{$vmid};
993 return 1 if !defined($d);
c53b111f 994
9d76a1bb
DM
995 return undef if $noerr;
996
4f66b109 997 my $vmtypestr = $d->{type} eq 'qemu' ? 'VM' : 'CT';
e75ccbee 998 die "$vmtypestr $vmid already exists on node '$d->{node}'\n";
9d76a1bb
DM
999}
1000
65ff467f
DM
1001sub check_node_exists {
1002 my ($nodename, $noerr) = @_;
1003
1004 my $nodelist = $clinfo->{nodelist};
1005 return 1 if $nodelist && $nodelist->{$nodename};
1006
1007 return undef if $noerr;
1008
1009 die "no such cluster node '$nodename'\n";
1010}
1011
fe000966
DM
1012# this is also used to get the IP of the local node
1013sub remote_node_ip {
1014 my ($nodename, $noerr) = @_;
1015
1016 my $nodelist = $clinfo->{nodelist};
1017 if ($nodelist && $nodelist->{$nodename}) {
1018 if (my $ip = $nodelist->{$nodename}->{ip}) {
fc31f517
WB
1019 return $ip if !wantarray;
1020 my $family = $nodelist->{$nodename}->{address_family};
1021 if (!$family) {
1022 $nodelist->{$nodename}->{address_family} =
1023 $family =
1024 PVE::Tools::get_host_address_family($ip);
1025 }
1026 return ($ip, $family);
fe000966
DM
1027 }
1028 }
1029
1030 # fallback: try to get IP by other means
5720a852 1031 my ($family, $packed_ip);
fe000966 1032
5720a852
WB
1033 eval {
1034 my @res = PVE::Tools::getaddrinfo_all($nodename);
1035 $family = $res[0]->{family};
1036 $packed_ip = (PVE::Tools::unpack_sockaddr_in46($res[0]->{addr}))[2];
1037 };
fe000966 1038
5720a852
WB
1039 if ($@) {
1040 die "hostname lookup failed:\n$@" if !$noerr;
1041 return undef;
fe000966
DM
1042 }
1043
5720a852
WB
1044 my $ip = Socket::inet_ntop($family, $packed_ip);
1045 if ($ip =~ m/^127\.|^::1$/) {
1046 die "hostname lookup failed - got local IP address ($nodename = $ip)\n" if !$noerr;
1047 return undef;
1048 }
fe000966 1049
5720a852 1050 return wantarray ? ($ip, $family) : $ip;
fe000966
DM
1051}
1052
54d487bf
TL
1053sub get_local_migration_ip {
1054 my ($migration_network, $noerr) = @_;
1055
1056 my $cidr = $migration_network;
1057
1058 if (!defined($cidr)) {
1059 my $dc_conf = cfs_read_file('datacenter.cfg');
1060 $cidr = $dc_conf->{migration}->{network}
1061 if defined($dc_conf->{migration}->{network});
1062 }
1063
1064 if (defined($cidr)) {
1065 my $ips = PVE::Network::get_local_ip_from_cidr($cidr);
1066
cb8c3bc6
TL
1067 die "could not get migration ip: no IP address configured on local " .
1068 "node for network '$cidr'\n" if !$noerr && (scalar(@$ips) == 0);
54d487bf 1069
cb8c3bc6
TL
1070 die "could not get migration ip: multiple IP address configured for " .
1071 "network '$cidr'\n" if !$noerr && (scalar(@$ips) > 1);
54d487bf
TL
1072
1073 return @$ips[0];
1074 }
1075
1076 return undef;
1077};
1078
fe000966
DM
1079# ssh related utility functions
1080
1081sub ssh_merge_keys {
1082 # remove duplicate keys in $sshauthkeys
1083 # ssh-copy-id simply add keys, so the file can grow to large
1084
1085 my $data = '';
1086 if (-f $sshauthkeys) {
1087 $data = PVE::Tools::file_get_contents($sshauthkeys, 128*1024);
1088 chomp($data);
1089 }
1090
6056578e
DM
1091 my $found_backup;
1092 if (-f $rootsshauthkeysbackup) {
404343d7 1093 $data .= "\n";
6056578e
DM
1094 $data .= PVE::Tools::file_get_contents($rootsshauthkeysbackup, 128*1024);
1095 chomp($data);
1096 $found_backup = 1;
1097 }
1098
fe000966
DM
1099 # always add ourself
1100 if (-f $ssh_rsa_id) {
1101 my $pub = PVE::Tools::file_get_contents($ssh_rsa_id);
1102 chomp($pub);
1103 $data .= "\n$pub\n";
1104 }
1105
1106 my $newdata = "";
1107 my $vhash = {};
2055b0a9
DM
1108 my @lines = split(/\n/, $data);
1109 foreach my $line (@lines) {
7eb37d8d
SP
1110 if ($line !~ /^#/ && $line =~ m/(^|\s)ssh-(rsa|dsa)\s+(\S+)\s+\S+$/) {
1111 next if $vhash->{$3}++;
fe000966 1112 }
2055b0a9 1113 $newdata .= "$line\n";
fe000966 1114 }
fe000966
DM
1115
1116 PVE::Tools::file_set_contents($sshauthkeys, $newdata, 0600);
6056578e
DM
1117
1118 if ($found_backup && -l $rootsshauthkeys) {
1119 # everything went well, so we can remove the backup
1120 unlink $rootsshauthkeysbackup;
1121 }
fe000966
DM
1122}
1123
ac50b36d 1124sub setup_sshd_config {
6c0e95b3 1125 my ($start_sshd) = @_;
ac50b36d
DM
1126
1127 my $conf = PVE::Tools::file_get_contents($sshd_config_fn);
c53b111f 1128
ac50b36d
DM
1129 return if $conf =~ m/^PermitRootLogin\s+yes\s*$/m;
1130
1131 if ($conf !~ s/^#?PermitRootLogin.*$/PermitRootLogin yes/m) {
1132 chomp $conf;
1133 $conf .= "\nPermitRootLogin yes\n";
c53b111f 1134 }
ac50b36d
DM
1135
1136 PVE::Tools::file_set_contents($sshd_config_fn, $conf);
1137
6c0e95b3
DM
1138 my $cmd = $start_sshd ? 'reload-or-restart' : 'reload-or-try-restart';
1139 PVE::Tools::run_command(['systemctl', $cmd, 'sshd']);
ac50b36d
DM
1140}
1141
f666cdde
SP
1142sub setup_rootsshconfig {
1143
39df71df
DM
1144 # create ssh key if it does not exist
1145 if (! -f $ssh_rsa_id) {
1146 mkdir '/root/.ssh/';
1147 system ("echo|ssh-keygen -t rsa -N '' -b 2048 -f ${ssh_rsa_id_priv}");
1148 }
1149
f666cdde
SP
1150 # create ssh config if it does not exist
1151 if (! -f $rootsshconfig) {
9aabc24b
DM
1152 mkdir '/root/.ssh';
1153 if (my $fh = IO::File->new($rootsshconfig, O_CREAT|O_WRONLY|O_EXCL, 0640)) {
f666cdde 1154 # this is the default ciphers list from debian openssl0.9.8 except blowfish is added as prefered
9aabc24b 1155 print $fh "Ciphers blowfish-cbc,aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc\n";
f666cdde
SP
1156 close($fh);
1157 }
1158 }
1159}
1160
fe000966
DM
1161sub setup_ssh_keys {
1162
fe000966
DM
1163 mkdir $authdir;
1164
6056578e
DM
1165 my $import_ok;
1166
fe000966 1167 if (! -f $sshauthkeys) {
6056578e
DM
1168 my $old;
1169 if (-f $rootsshauthkeys) {
1170 $old = PVE::Tools::file_get_contents($rootsshauthkeys, 128*1024);
1171 }
fe000966 1172 if (my $fh = IO::File->new ($sshauthkeys, O_CREAT|O_WRONLY|O_EXCL, 0400)) {
6056578e 1173 PVE::Tools::safe_print($sshauthkeys, $fh, $old) if $old;
fe000966 1174 close($fh);
6056578e 1175 $import_ok = 1;
fe000966
DM
1176 }
1177 }
1178
c53b111f 1179 warn "can't create shared ssh key database '$sshauthkeys'\n"
fe000966
DM
1180 if ! -f $sshauthkeys;
1181
404343d7 1182 if (-f $rootsshauthkeys && ! -l $rootsshauthkeys) {
6056578e
DM
1183 if (!rename($rootsshauthkeys , $rootsshauthkeysbackup)) {
1184 warn "rename $rootsshauthkeys failed - $!\n";
1185 }
fe000966
DM
1186 }
1187
1188 if (! -l $rootsshauthkeys) {
1189 symlink $sshauthkeys, $rootsshauthkeys;
1190 }
fe000966 1191
6056578e
DM
1192 if (! -l $rootsshauthkeys) {
1193 warn "can't create symlink for ssh keys '$rootsshauthkeys' -> '$sshauthkeys'\n";
1194 } else {
1195 unlink $rootsshauthkeysbackup if $import_ok;
1196 }
fe000966
DM
1197}
1198
1199sub ssh_unmerge_known_hosts {
1200 return if ! -l $sshglobalknownhosts;
1201
1202 my $old = '';
1203 $old = PVE::Tools::file_get_contents($sshknownhosts, 128*1024)
1204 if -f $sshknownhosts;
1205
1206 PVE::Tools::file_set_contents($sshglobalknownhosts, $old);
1207}
1208
1209sub ssh_merge_known_hosts {
1210 my ($nodename, $ip_address, $createLink) = @_;
1211
1212 die "no node name specified" if !$nodename;
1213 die "no ip address specified" if !$ip_address;
c53b111f 1214
fe000966
DM
1215 mkdir $authdir;
1216
1217 if (! -f $sshknownhosts) {
1218 if (my $fh = IO::File->new($sshknownhosts, O_CREAT|O_WRONLY|O_EXCL, 0600)) {
1219 close($fh);
1220 }
1221 }
1222
c53b111f
DM
1223 my $old = PVE::Tools::file_get_contents($sshknownhosts, 128*1024);
1224
fe000966 1225 my $new = '';
c53b111f 1226
fe000966
DM
1227 if ((! -l $sshglobalknownhosts) && (-f $sshglobalknownhosts)) {
1228 $new = PVE::Tools::file_get_contents($sshglobalknownhosts, 128*1024);
1229 }
1230
1231 my $hostkey = PVE::Tools::file_get_contents($ssh_host_rsa_id);
1d182ad3
DM
1232 # Note: file sometimes containe emty lines at start, so we use multiline match
1233 die "can't parse $ssh_host_rsa_id" if $hostkey !~ m/^(ssh-rsa\s\S+)(\s.*)?$/m;
fe000966
DM
1234 $hostkey = $1;
1235
1236 my $data = '';
1237 my $vhash = {};
1238
1239 my $found_nodename;
1240 my $found_local_ip;
1241
1242 my $merge_line = sub {
1243 my ($line, $all) = @_;
1244
1245 if ($line =~ m/^(\S+)\s(ssh-rsa\s\S+)(\s.*)?$/) {
1246 my $key = $1;
1247 my $rsakey = $2;
1248 if (!$vhash->{$key}) {
1249 $vhash->{$key} = 1;
1250 if ($key =~ m/\|1\|([^\|\s]+)\|([^\|\s]+)$/) {
1251 my $salt = decode_base64($1);
1252 my $digest = $2;
1253 my $hmac = Digest::HMAC_SHA1->new($salt);
1254 $hmac->add($nodename);
1255 my $hd = $hmac->b64digest . '=';
1256 if ($digest eq $hd) {
1257 if ($rsakey eq $hostkey) {
1258 $found_nodename = 1;
1259 $data .= $line;
1260 }
1261 return;
1262 }
1263 $hmac = Digest::HMAC_SHA1->new($salt);
1264 $hmac->add($ip_address);
1265 $hd = $hmac->b64digest . '=';
1266 if ($digest eq $hd) {
1267 if ($rsakey eq $hostkey) {
1268 $found_local_ip = 1;
1269 $data .= $line;
1270 }
1271 return;
1272 }
1273 }
1274 $data .= $line;
1275 }
1276 } elsif ($all) {
1277 $data .= $line;
1278 }
1279 };
1280
1281 while ($old && $old =~ s/^((.*?)(\n|$))//) {
1282 my $line = "$2\n";
1283 next if $line =~ m/^\s*$/; # skip empty lines
1284 next if $line =~ m/^#/; # skip comments
1285 &$merge_line($line, 1);
1286 }
1287
1288 while ($new && $new =~ s/^((.*?)(\n|$))//) {
1289 my $line = "$2\n";
1290 next if $line =~ m/^\s*$/; # skip empty lines
1291 next if $line =~ m/^#/; # skip comments
1292 &$merge_line($line);
1293 }
1294
1295 my $addIndex = $$;
1296 my $add_known_hosts_entry = sub {
1297 my ($name, $hostkey) = @_;
1298 $addIndex++;
1299 my $hmac = Digest::HMAC_SHA1->new("$addIndex" . time());
1300 my $b64salt = $hmac->b64digest . '=';
1301 $hmac = Digest::HMAC_SHA1->new(decode_base64($b64salt));
1302 $hmac->add($name);
1303 my $digest = $hmac->b64digest . '=';
1304 $data .= "|1|$b64salt|$digest $hostkey\n";
1305 };
1306
1307 if (!$found_nodename || !$found_local_ip) {
1308 &$add_known_hosts_entry($nodename, $hostkey) if !$found_nodename;
1309 &$add_known_hosts_entry($ip_address, $hostkey) if !$found_local_ip;
1310 }
1311
1312 PVE::Tools::file_set_contents($sshknownhosts, $data);
1313
1314 return if !$createLink;
1315
1316 unlink $sshglobalknownhosts;
1317 symlink $sshknownhosts, $sshglobalknownhosts;
c53b111f
DM
1318
1319 warn "can't create symlink for ssh known hosts '$sshglobalknownhosts' -> '$sshknownhosts'\n"
fe000966
DM
1320 if ! -l $sshglobalknownhosts;
1321
1322}
1323
bba12ad7
TL
1324my $migration_format = {
1325 type => {
1326 default_key => 1,
1327 type => 'string',
1328 enum => ['secure', 'insecure'],
1329 description => "Migration traffic is encrypted using an SSH tunnel by " .
1330 "default. On secure, completely private networks this can be " .
1331 "disabled to increase performance.",
1332 default => 'secure',
bba12ad7
TL
1333 },
1334 network => {
1335 optional => 1,
1336 type => 'string', format => 'CIDR',
1337 format_description => 'CIDR',
1338 description => "CIDR of the (sub) network that is used for migration."
1339 },
1340};
1341
fe000966
DM
1342my $datacenter_schema = {
1343 type => "object",
1344 additionalProperties => 0,
1345 properties => {
1346 keyboard => {
1347 optional => 1,
1348 type => 'string',
1349 description => "Default keybord layout for vnc server.",
c59334cb 1350 enum => PVE::Tools::kvmkeymaplist(),
fe000966
DM
1351 },
1352 language => {
1353 optional => 1,
1354 type => 'string',
1355 description => "Default GUI language.",
1356 enum => [ 'en', 'de' ],
1357 },
1358 http_proxy => {
1359 optional => 1,
1360 type => 'string',
1361 description => "Specify external http proxy which is used for downloads (example: 'http://username:password\@host:port/')",
1362 pattern => "http://.*",
1363 },
a9323ef0
SP
1364 migration_unsecure => {
1365 optional => 1,
1366 type => 'boolean',
bba12ad7
TL
1367 description => "Migration is secure using SSH tunnel by default. " .
1368 "For secure private networks you can disable it to speed up " .
1369 "migration. Deprecated, use the 'migration' property instead!",
1370 },
1371 migration => {
1372 optional => 1,
1373 type => 'string', format => $migration_format,
1374 description => "For cluster wide migration settings.",
a9323ef0 1375 },
dce47328
DM
1376 console => {
1377 optional => 1,
1378 type => 'string',
66a15f27
DM
1379 description => "Select the default Console viewer. You can either use the builtin java applet (VNC), an external virt-viewer comtatible application (SPICE), or an HTML5 based viewer (noVNC).",
1380 enum => ['applet', 'vv', 'html5'],
dce47328 1381 },
8548bd87
SGE
1382 email_from => {
1383 optional => 1,
1384 type => 'string',
a05baf53 1385 format => 'email-opt',
8548bd87
SGE
1386 description => "Specify email address to send notification from (default is root@\$hostname)",
1387 },
66c2b1e9
TL
1388 max_workers => {
1389 optional => 1,
1390 type => 'integer',
1391 minimum => 1,
1392 description => "Defines how many workers (per node) are maximal started ".
1393 " on actions like 'stopall VMs' or task from the ha-manager.",
1394 },
8d762bd6
TL
1395 fencing => {
1396 optional => 1,
1397 type => 'string',
1398 default => 'watchdog',
1399 enum => [ 'watchdog', 'hardware', 'both' ],
1400 description => "Set the fencing mode of the HA cluster. Hardware mode " .
1401 "needs a valid configuration of fence devices in /etc/pve/ha/fence.cfg." .
bd0c003a
FG
1402 " With both all two modes are used." .
1403 "\n\nWARNING: 'hardware' and 'both' are EXPERIMENTAL & WIP",
8d762bd6 1404 },
329da63d
WB
1405 mac_prefix => {
1406 optional => 1,
1407 type => 'string',
1408 pattern => qr/[a-f0-9]{2}(?::[a-f0-9]{2}){0,2}:?/i,
1409 description => 'Prefix for autogenerated MAC addresses.',
1410 },
fe000966
DM
1411 },
1412};
1413
1414# make schema accessible from outside (for documentation)
1415sub get_datacenter_schema { return $datacenter_schema };
1416
1417sub parse_datacenter_config {
1418 my ($filename, $raw) = @_;
1419
bba12ad7
TL
1420 my $res = PVE::JSONSchema::parse_config($datacenter_schema, $filename, $raw // '');
1421
1422 if (my $migration = $res->{migration}) {
1423 $res->{migration} = PVE::JSONSchema::parse_property_string($migration_format, $migration);
1424 }
1425
1426 # for backwards compatibility only, new migration property has precedence
1427 if (defined($res->{migration_unsecure})) {
1428 if (defined($res->{migration}->{type})) {
1429 warn "deprecated setting 'migration_unsecure' and new 'migration: type' " .
1430 "set at same time! Ignore 'migration_unsecure'\n";
1431 } else {
1432 $res->{migration}->{type} = ($res->{migration_unsecure}) ? 'insecure' : 'secure';
1433 }
1434 }
1435
1436 return $res;
fe000966
DM
1437}
1438
1439sub write_datacenter_config {
1440 my ($filename, $cfg) = @_;
bba12ad7
TL
1441
1442 # map deprecated setting to new one
8f706517 1443 if (defined($cfg->{migration_unsecure}) && !defined($cfg->{migration})) {
bba12ad7
TL
1444 my $migration_unsecure = delete $cfg->{migration_unsecure};
1445 $cfg->{migration}->{type} = ($migration_unsecure) ? 'insecure' : 'secure';
1446 }
1447
fe000966
DM
1448 return PVE::JSONSchema::dump_config($datacenter_schema, $filename, $cfg);
1449}
1450
c53b111f
DM
1451cfs_register_file('datacenter.cfg',
1452 \&parse_datacenter_config,
fe000966 1453 \&write_datacenter_config);
ec48ec22 1454
cafc7309
DM
1455# a very simply parser ...
1456sub parse_corosync_conf {
ec48ec22
DM
1457 my ($filename, $raw) = @_;
1458
cafc7309 1459 return {} if !$raw;
ec48ec22 1460
440121dc 1461 my $digest = Digest::SHA::sha1_hex(defined($raw) ? $raw : '');
ec48ec22 1462
cafc7309
DM
1463 $raw =~ s/#.*$//mg;
1464 $raw =~ s/\r?\n/ /g;
1465 $raw =~ s/\s+/ /g;
1466 $raw =~ s/^\s+//;
1467 $raw =~ s/\s*$//;
c53b111f 1468
cafc7309 1469 my @tokens = split(/\s/, $raw);
c53b111f 1470
cafc7309 1471 my $conf = { section => 'main', children => [] };
1d01c3f6 1472
cafc7309
DM
1473 my $stack = [];
1474 my $section = $conf;
c53b111f 1475
cafc7309
DM
1476 while (defined(my $token = shift @tokens)) {
1477 my $nexttok = $tokens[0];
1478
1479 if ($nexttok && ($nexttok eq '{')) {
1480 shift @tokens; # skip '{'
1481 my $new_section = {
1482 section => $token,
1483 children => [],
1484 };
1485 push @{$section->{children}}, $new_section;
1486 push @$stack, $section;
1487 $section = $new_section;
1488 next;
1d01c3f6 1489 }
1d01c3f6 1490
cafc7309
DM
1491 if ($token eq '}') {
1492 $section = pop @$stack;
1493 die "parse error - uncexpected '}'\n" if !$section;
1494 next;
1495 }
1d01c3f6 1496
cafc7309
DM
1497 my $key = $token;
1498 die "missing ':' after key '$key'\n" if ! ($key =~ s/:$//);
c53b111f 1499
cafc7309
DM
1500 die "parse error - no value for '$key'\n" if !defined($nexttok);
1501 my $value = shift @tokens;
1d01c3f6 1502
cafc7309
DM
1503 push @{$section->{children}}, { key => $key, value => $value };
1504 }
1d01c3f6 1505
cafc7309 1506 $conf->{digest} = $digest;
1d01c3f6 1507
cafc7309 1508 return $conf;
1d01c3f6
DM
1509}
1510
cafc7309
DM
1511my $dump_corosync_section;
1512$dump_corosync_section = sub {
1513 my ($section, $prefix) = @_;
1d01c3f6 1514
cafc7309 1515 my $raw = $prefix . $section->{section} . " {\n";
c53b111f 1516
cafc7309
DM
1517 my @list = grep { defined($_->{key}) } @{$section->{children}};
1518 foreach my $child (sort {$a->{key} cmp $b->{key}} @list) {
1519 $raw .= $prefix . " $child->{key}: $child->{value}\n";
1d01c3f6 1520 }
c53b111f 1521
cafc7309
DM
1522 @list = grep { defined($_->{section}) } @{$section->{children}};
1523 foreach my $child (sort {$a->{section} cmp $b->{section}} @list) {
1524 $raw .= &$dump_corosync_section($child, "$prefix ");
1d01c3f6
DM
1525 }
1526
cafc7309 1527 $raw .= $prefix . "}\n\n";
c53b111f 1528
cafc7309 1529 return $raw;
c53b111f 1530
cafc7309 1531};
1d01c3f6 1532
cafc7309
DM
1533sub write_corosync_conf {
1534 my ($filename, $conf) = @_;
ec48ec22 1535
cafc7309 1536 my $raw = '';
ec48ec22 1537
cafc7309 1538 my $prefix = '';
c53b111f 1539
cafc7309 1540 die "no main section" if $conf->{section} ne 'main';
ec48ec22 1541
cafc7309
DM
1542 my @list = grep { defined($_->{key}) } @{$conf->{children}};
1543 foreach my $child (sort {$a->{key} cmp $b->{key}} @list) {
1544 $raw .= "$child->{key}: $child->{value}\n";
1d01c3f6
DM
1545 }
1546
cafc7309
DM
1547 @list = grep { defined($_->{section}) } @{$conf->{children}};
1548 foreach my $child (sort {$a->{section} cmp $b->{section}} @list) {
1549 $raw .= &$dump_corosync_section($child, $prefix);
1550 }
ec48ec22 1551
cafc7309 1552 return $raw;
ec48ec22
DM
1553}
1554
cafc7309
DM
1555sub corosync_conf_version {
1556 my ($conf, $noerr, $new_value) = @_;
1557
1558 foreach my $child (@{$conf->{children}}) {
1559 next if !defined($child->{section});
1560 if ($child->{section} eq 'totem') {
1561 foreach my $e (@{$child->{children}}) {
1562 next if !defined($e->{key});
1563 if ($e->{key} eq 'config_version') {
1564 if ($new_value) {
1565 $e->{value} = $new_value;
1566 return $new_value;
1567 } elsif (my $version = int($e->{value})) {
1568 return $version;
1569 }
1570 last;
1571 }
1572 }
ec48ec22 1573 }
ec48ec22 1574 }
c53b111f 1575
cafc7309 1576 return undef if $noerr;
ec48ec22 1577
cafc7309 1578 die "invalid corosync config - unable to read version\n";
ec48ec22
DM
1579}
1580
cafc7309
DM
1581# read only - use "rename corosync.conf.new corosync.conf" to write
1582PVE::Cluster::cfs_register_file('corosync.conf', \&parse_corosync_conf);
ec48ec22 1583# this is read/write
c53b111f 1584PVE::Cluster::cfs_register_file('corosync.conf.new', \&parse_corosync_conf,
cafc7309 1585 \&write_corosync_conf);
2c66fb58 1586
eb51b829
FG
1587sub check_corosync_conf_exists {
1588 my ($silent) = @_;
1589
1590 $silent = $silent // 0;
1591
1592 my $exists = -f "$basedir/corosync.conf";
1593
1594 warn "Corosync config '$basedir/corosync.conf' does not exist - is this node part of a cluster?\n"
c50900f2 1595 if !$silent && !$exists;
eb51b829
FG
1596
1597 return $exists;
1598}
1599
4ed5e654
DM
1600sub corosync_update_nodelist {
1601 my ($conf, $nodelist) = @_;
1602
1603 delete $conf->{digest};
1604
1605 my $version = corosync_conf_version($conf);
1606 corosync_conf_version($conf, undef, $version + 1);
1607
1608 my $children = [];
1609 foreach my $v (values %$nodelist) {
1610 next if !($v->{ring0_addr} || $v->{name});
1611 my $kv = [];
1612 foreach my $k (keys %$v) {
1613 push @$kv, { key => $k, value => $v->{$k} };
1614 }
1615 my $ns = { section => 'node', children => $kv };
1616 push @$children, $ns;
1617 }
1618
1619 foreach my $main (@{$conf->{children}}) {
1620 next if !defined($main->{section});
1621 if ($main->{section} eq 'nodelist') {
1622 $main->{children} = $children;
1623 last;
1624 }
1625 }
1626
1627
1628 cfs_write_file("corosync.conf.new", $conf);
1629
1630 rename("/etc/pve/corosync.conf.new", "/etc/pve/corosync.conf")
1631 || die "activate corosync.conf.new failed - $!\n";
1632}
1633
1634sub corosync_nodelist {
1635 my ($conf) = @_;
1636
1637 my $nodelist = {};
1638
1639 foreach my $main (@{$conf->{children}}) {
1640 next if !defined($main->{section});
1641 if ($main->{section} eq 'nodelist') {
1642 foreach my $ne (@{$main->{children}}) {
1643 next if !defined($ne->{section}) || ($ne->{section} ne 'node');
1644 my $node = { quorum_votes => 1 };
1645 my $name;
1646 foreach my $child (@{$ne->{children}}) {
1647 next if !defined($child->{key});
1648 $node->{$child->{key}} = $child->{value};
1649 # use 'name' over 'ring0_addr' if set
1650 if ($child->{key} eq 'name') {
1651 delete $nodelist->{$name} if $name;
1652 $name = $child->{value};
1653 $nodelist->{$name} = $node;
1654 } elsif(!$name && $child->{key} eq 'ring0_addr') {
1655 $name = $child->{value};
1656 $nodelist->{$name} = $node;
1657 }
1658 }
1659 }
1660 }
1661 }
1662
1663 return $nodelist;
1664}
1665
1666# get a hash representation of the corosync config totem section
1667sub corosync_totem_config {
1668 my ($conf) = @_;
1669
1670 my $res = {};
1671
1672 foreach my $main (@{$conf->{children}}) {
1673 next if !defined($main->{section}) ||
1674 $main->{section} ne 'totem';
1675
1676 foreach my $e (@{$main->{children}}) {
1677
1678 if ($e->{section} && $e->{section} eq 'interface') {
1679 my $entry = {};
1680
1681 $res->{interface} = {};
1682
1683 foreach my $child (@{$e->{children}}) {
1684 next if !defined($child->{key});
1685 $entry->{$child->{key}} = $child->{value};
1686 if($child->{key} eq 'ringnumber') {
1687 $res->{interface}->{$child->{value}} = $entry;
1688 }
1689 }
1690
1691 } elsif ($e->{key}) {
1692 $res->{$e->{key}} = $e->{value};
1693 }
1694 }
1695 }
1696
1697 return $res;
1698}
1699
26784563
DM
1700# X509 Certificate cache helper
1701
1702my $cert_cache_nodes = {};
1703my $cert_cache_timestamp = time();
1704my $cert_cache_fingerprints = {};
1705
1706sub update_cert_cache {
1707 my ($update_node, $clear) = @_;
1708
1709 syslog('info', "Clearing outdated entries from certificate cache")
1710 if $clear;
1711
1712 $cert_cache_timestamp = time() if !defined($update_node);
1713
1714 my $node_list = defined($update_node) ?
1715 [ $update_node ] : [ keys %$cert_cache_nodes ];
1716
1717 foreach my $node (@$node_list) {
1718 my $clear_old = sub {
1719 if (my $old_fp = $cert_cache_nodes->{$node}) {
1720 # distrust old fingerprint
1721 delete $cert_cache_fingerprints->{$old_fp};
1722 # ensure reload on next proxied request
1723 delete $cert_cache_nodes->{$node};
1724 }
1725 };
1726
1727 my $cert_path = "/etc/pve/nodes/$node/pve-ssl.pem";
1728 my $custom_cert_path = "/etc/pve/nodes/$node/pveproxy-ssl.pem";
1729
1730 $cert_path = $custom_cert_path if -f $custom_cert_path;
1731
1732 my $cert;
1733 eval {
1734 my $bio = Net::SSLeay::BIO_new_file($cert_path, 'r');
1735 $cert = Net::SSLeay::PEM_read_bio_X509($bio);
1736 Net::SSLeay::BIO_free($bio);
1737 };
1738 my $err = $@;
1739 if ($err || !defined($cert)) {
1740 &$clear_old() if $clear;
1741 next;
1742 }
1743
1744 my $fp;
1745 eval {
1746 $fp = Net::SSLeay::X509_get_fingerprint($cert, 'sha256');
1747 };
1748 $err = $@;
1749 if ($err || !defined($fp) || $fp eq '') {
1750 &$clear_old() if $clear;
1751 next;
1752 }
1753
1754 my $old_fp = $cert_cache_nodes->{$node};
1755 $cert_cache_fingerprints->{$fp} = 1;
1756 $cert_cache_nodes->{$node} = $fp;
1757
1758 if (defined($old_fp) && $fp ne $old_fp) {
1759 delete $cert_cache_fingerprints->{$old_fp};
1760 }
1761 }
1762}
1763
ab224148
DM
1764# load and cache cert fingerprint once
1765sub initialize_cert_cache {
1766 my ($node) = @_;
1767
1768 update_cert_cache($node)
1769 if defined($node) && !defined($cert_cache_nodes->{$node});
1770}
1771
26784563
DM
1772sub check_cert_fingerprint {
1773 my ($cert) = @_;
1774
1775 # clear cache every 30 minutes at least
1776 update_cert_cache(undef, 1) if time() - $cert_cache_timestamp >= 60*30;
1777
1778 # get fingerprint of server certificate
1779 my $fp;
1780 eval {
1781 $fp = Net::SSLeay::X509_get_fingerprint($cert, 'sha256');
1782 };
1783 return 0 if $@ || !defined($fp) || $fp eq ''; # error
1784
1785 my $check = sub {
1786 for my $expected (keys %$cert_cache_fingerprints) {
1787 return 1 if $fp eq $expected;
1788 }
1789 return 0;
1790 };
1791
1792 return 1 if &$check();
1793
1794 # clear cache and retry at most once every minute
1795 if (time() - $cert_cache_timestamp >= 60) {
1796 syslog ('info', "Could not verify remote node certificate '$fp' with list of pinned certificates, refreshing cache");
1797 update_cert_cache();
1798 return &$check();
1799 }
1800
1801 return 0;
1802}
1803
15df58e6
DM
1804# bash completion helpers
1805
1806sub complete_next_vmid {
1807
1808 my $vmlist = get_vmlist() || {};
1809 my $idlist = $vmlist->{ids} || {};
1810
1811 for (my $i = 100; $i < 10000; $i++) {
1812 return [$i] if !defined($idlist->{$i});
1813 }
1814
1815 return [];
1816}
1817
87515b25
DM
1818sub complete_vmid {
1819
1820 my $vmlist = get_vmlist();
1821 my $ids = $vmlist->{ids} || {};
1822
1823 return [ keys %$ids ];
1824}
1825
15df58e6
DM
1826sub complete_local_vmid {
1827
1828 my $vmlist = get_vmlist();
1829 my $ids = $vmlist->{ids} || {};
1830
1831 my $nodename = PVE::INotify::nodename();
1832
1833 my $res = [];
1834 foreach my $vmid (keys %$ids) {
1835 my $d = $ids->{$vmid};
1836 next if !$d->{node} || $d->{node} ne $nodename;
1837 push @$res, $vmid;
1838 }
1839
1840 return $res;
1841}
1842
4dd189df
DM
1843sub complete_migration_target {
1844
1845 my $res = [];
1846
1847 my $nodename = PVE::INotify::nodename();
1848
1849 my $nodelist = get_nodelist();
1850 foreach my $node (@$nodelist) {
1851 next if $node eq $nodename;
1852 push @$res, $node;
1853 }
1854
1855 return $res;
1856}
1857
ac68281b 18581;