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