]> git.proxmox.com Git - pve-common.git/blame - src/PVE/Tools.pm
allow workers to count warnings and finish tasks in a WARNINGS state
[pve-common.git] / src / PVE / Tools.pm
CommitLineData
e143e9d8
DM
1package PVE::Tools;
2
3use strict;
c36f332e 4use warnings;
7e1ee743 5use POSIX qw(EINTR EEXIST EOPNOTSUPP);
00dc9d0f 6use IO::Socket::IP;
a0ecb159
WB
7use Socket qw(AF_INET AF_INET6 AI_ALL AI_V4MAPPED AI_CANONNAME SOCK_DGRAM
8 IPPROTO_TCP);
e143e9d8
DM
9use IO::Select;
10use File::Basename;
11use File::Path qw(make_path);
97c8c857
WB
12use Filesys::Df (); # don't overwrite our df()
13use IO::Pipe;
e143e9d8 14use IO::File;
7eb283fb 15use IO::Dir;
21c56a96 16use IO::Handle;
e143e9d8
DM
17use IPC::Open3;
18use Fcntl qw(:DEFAULT :flock);
19use base 'Exporter';
20use URI::Escape;
21use Encode;
568ba6a4 22use Digest::SHA;
f2c72fc3 23use JSON;
e38bcd35 24use Text::ParseWords;
7514b23a 25use String::ShellQuote;
c38cea65 26use Time::HiRes qw(usleep gettimeofday tv_interval alarm);
d9f86d0d 27use Scalar::Util 'weaken';
b18826ce
SI
28use Date::Format qw(time2str);
29
c8e94d4b 30use PVE::Syscall;
e143e9d8 31
57eeea0c
DM
32# avoid warning when parsing long hex values with hex()
33no warnings 'portable'; # Support for 64-bit ints required
34
e143e9d8 35our @EXPORT_OK = qw(
602ec0cd
DM
36$IPV6RE
37$IPV4RE
813a5c0d 38lock_file
493004a2 39lock_file_full
813a5c0d
DC
40run_command
41file_set_contents
e143e9d8
DM
42file_get_contents
43file_read_firstline
7eb283fb
DM
44dir_glob_regex
45dir_glob_foreach
e143e9d8
DM
46split_list
47template_replace
48safe_print
49trim
50extract_param
40682a69 51extract_sensitive_params
23e0e0d7 52file_copy
ce007e99 53get_host_arch
c0647765
WB
54O_PATH
55O_TMPFILE
1b0bc6c0
WB
56AT_EMPTY_PATH
57AT_FDCWD
58CLONE_NEWNS
59CLONE_NEWUTS
60CLONE_NEWIPC
61CLONE_NEWUSER
62CLONE_NEWPID
63CLONE_NEWNET
e143e9d8
DM
64);
65
66my $pvelogdir = "/var/log/pve";
67my $pvetaskdir = "$pvelogdir/tasks";
68
69mkdir $pvelogdir;
70mkdir $pvetaskdir;
71
cd9bd252 72my $IPV4OCTET = "(?:25[0-5]|(?:2[0-4]|1[0-9]|[1-9])?[0-9])";
602ec0cd
DM
73our $IPV4RE = "(?:(?:$IPV4OCTET\\.){3}$IPV4OCTET)";
74my $IPV6H16 = "(?:[0-9a-fA-F]{1,4})";
75my $IPV6LS32 = "(?:(?:$IPV4RE|$IPV6H16:$IPV6H16))";
76
77our $IPV6RE = "(?:" .
78 "(?:(?:" . "(?:$IPV6H16:){6})$IPV6LS32)|" .
79 "(?:(?:" . "::(?:$IPV6H16:){5})$IPV6LS32)|" .
80 "(?:(?:(?:" . "$IPV6H16)?::(?:$IPV6H16:){4})$IPV6LS32)|" .
81 "(?:(?:(?:(?:$IPV6H16:){0,1}$IPV6H16)?::(?:$IPV6H16:){3})$IPV6LS32)|" .
82 "(?:(?:(?:(?:$IPV6H16:){0,2}$IPV6H16)?::(?:$IPV6H16:){2})$IPV6LS32)|" .
83 "(?:(?:(?:(?:$IPV6H16:){0,3}$IPV6H16)?::(?:$IPV6H16:){1})$IPV6LS32)|" .
84 "(?:(?:(?:(?:$IPV6H16:){0,4}$IPV6H16)?::" . ")$IPV6LS32)|" .
85 "(?:(?:(?:(?:$IPV6H16:){0,5}$IPV6H16)?::" . ")$IPV6H16)|" .
86 "(?:(?:(?:(?:$IPV6H16:){0,6}$IPV6H16)?::" . ")))";
87
176b1186
WB
88our $IPRE = "(?:$IPV4RE|$IPV6RE)";
89
4c4bd104
FE
90our $EMAIL_USER_RE = qr/[\w\+\-\~]+(\.[\w\+\-\~]+)*/;
91our $EMAIL_RE = qr/$EMAIL_USER_RE@[a-zA-Z0-9\-]+(\.[a-zA-Z0-9\-]+)*/;
92
be8f0477 93use constant {CLONE_NEWNS => 0x00020000,
952fd95e
WB
94 CLONE_NEWUTS => 0x04000000,
95 CLONE_NEWIPC => 0x08000000,
96 CLONE_NEWUSER => 0x10000000,
97 CLONE_NEWPID => 0x20000000,
be8f0477 98 CLONE_NEWNET => 0x40000000};
952fd95e 99
26598a51 100use constant {O_PATH => 0x00200000,
b260d4e3 101 O_CLOEXEC => 0x00080000,
26598a51 102 O_TMPFILE => 0x00410000}; # This includes O_DIRECTORY
44acb12c 103
1b0bc6c0
WB
104use constant {AT_EMPTY_PATH => 0x1000,
105 AT_FDCWD => -100};
6cf6b404 106
0f0990f1
DM
107sub run_with_timeout {
108 my ($timeout, $code, @param) = @_;
e143e9d8 109
0f0990f1 110 die "got timeout\n" if $timeout <= 0;
e143e9d8 111
c38cea65 112 my $prev_alarm = alarm 0; # suspend outer alarm early
0f0990f1
DM
113
114 my $sigcount = 0;
e143e9d8
DM
115
116 my $res;
117
e143e9d8 118 eval {
0f0990f1
DM
119 local $SIG{ALRM} = sub { $sigcount++; die "got timeout\n"; };
120 local $SIG{PIPE} = sub { $sigcount++; die "broken pipe\n" };
121 local $SIG{__DIE__}; # see SA bug 4631
e143e9d8 122
c38cea65 123 alarm($timeout);
e143e9d8 124
c38cea65 125 eval { $res = &$code(@param); };
0f0990f1
DM
126
127 alarm(0); # avoid race conditions
c38cea65
WB
128
129 die $@ if $@;
0f0990f1
DM
130 };
131
132 my $err = $@;
133
c38cea65 134 alarm $prev_alarm;
0f0990f1 135
c38cea65 136 # this shouldn't happen anymore?
0f0990f1
DM
137 die "unknown error" if $sigcount && !$err; # seems to happen sometimes
138
139 die $err if $err;
140
141 return $res;
142}
e143e9d8 143
0f0990f1 144# flock: we use one file handle per process, so lock file
d9f86d0d
WB
145# can be nested multiple times and succeeds for the same process.
146#
147# Since this is the only way we lock now and we don't have the old
148# 'lock(); code(); unlock();' pattern anymore we do not actually need to
149# count how deep we're nesting. Therefore this hash now stores a weak reference
150# to a boolean telling us whether we already have a lock.
0f0990f1
DM
151
152my $lock_handles = {};
153
493004a2
DM
154sub lock_file_full {
155 my ($filename, $timeout, $shared, $code, @param) = @_;
0f0990f1
DM
156
157 $timeout = 10 if !$timeout;
158
493004a2
DM
159 my $mode = $shared ? LOCK_SH : LOCK_EX;
160
d9f86d0d 161 my $lockhash = ($lock_handles->{$$} //= {});
e143e9d8 162
d9f86d0d
WB
163 # Returns a locked file handle.
164 my $get_locked_file = sub {
165 my $fh = IO::File->new(">>$filename")
166 or die "can't open file - $!\n";
167
168 if (!flock($fh, $mode|LOCK_NB)) {
91bae4c0 169 print STDERR "trying to acquire lock...\n";
b5d12b08
DM
170 my $success;
171 while(1) {
d9f86d0d 172 $success = flock($fh, $mode);
b5d12b08
DM
173 # try again on EINTR (see bug #273)
174 if ($success || ($! != EINTR)) {
175 last;
176 }
177 }
d9f86d0d
WB
178 if (!$success) {
179 print STDERR " failed\n";
180 die "can't acquire lock '$filename' - $!\n";
181 }
182 print STDERR " OK\n";
183 }
184
185 return $fh;
e143e9d8
DM
186 };
187
0f0990f1 188 my $res;
d9f86d0d
WB
189 my $checkptr = $lockhash->{$filename};
190 my $check = 0; # This must not go out of scope before running the code.
191 my $local_fh; # This must stay local
192 if (!$checkptr || !$$checkptr) {
193 # We cannot create a weak reference in a single atomic step, so we first
194 # create a false-value, then create a reference to it, then weaken it,
195 # and after successfully locking the file we change the boolean value.
196 #
197 # The reason for this is that if an outer SIGALRM throws an exception
198 # between creating the reference and weakening it, a subsequent call to
199 # lock_file_full() will see a leftover full reference to a valid
200 # variable. This variable must be 0 in order for said call to attempt to
201 # lock the file anew.
202 #
203 # An externally triggered exception elsewhere in the code will cause the
204 # weak reference to become 'undef', and since the file handle is only
205 # stored in the local scope in $local_fh, the file will be closed by
206 # perl's cleanup routines as well.
207 #
208 # This still assumes that an IO::File handle can properly deal with such
209 # exceptions thrown during its own destruction, but that's up to perls
210 # guts now.
211 $lockhash->{$filename} = \$check;
212 weaken $lockhash->{$filename};
213 $local_fh = eval { run_with_timeout($timeout, $get_locked_file) };
214 if ($@) {
215 $@ = "can't lock file '$filename' - $@";
216 return undef;
f127adab 217 }
d9f86d0d 218 $check = 1;
e143e9d8 219 }
d9f86d0d
WB
220 $res = eval { &$code(@param); };
221 return undef if $@;
e143e9d8
DM
222 return $res;
223}
224
493004a2
DM
225
226sub lock_file {
227 my ($filename, $timeout, $code, @param) = @_;
228
229 return lock_file_full($filename, $timeout, 0, $code, @param);
230}
231
e143e9d8
DM
232sub file_set_contents {
233 my ($filename, $data, $perm) = @_;
234
235 $perm = 0644 if !defined($perm);
236
237 my $tmpname = "$filename.tmp.$$";
238
239 eval {
ce338f4f
WB
240 my ($fh, $tries) = (undef, 0);
241 while (!$fh && $tries++ < 3) {
242 $fh = IO::File->new($tmpname, O_WRONLY|O_CREAT|O_EXCL, $perm);
243 if (!$fh && $! == EEXIST) {
244 unlink($tmpname) or die "unable to delete old temp file: $!\n";
245 }
246 }
e143e9d8
DM
247 die "unable to open file '$tmpname' - $!\n" if !$fh;
248 die "unable to write '$tmpname' - $!\n" unless print $fh $data;
249 die "closing file '$tmpname' failed - $!\n" unless close $fh;
250 };
251 my $err = $@;
252
253 if ($err) {
254 unlink $tmpname;
255 die $err;
256 }
257
258 if (!rename($tmpname, $filename)) {
259 my $msg = "close (rename) atomic file '$filename' failed: $!\n";
260 unlink $tmpname;
813a5c0d 261 die $msg;
e143e9d8
DM
262 }
263}
264
265sub file_get_contents {
266 my ($filename, $max) = @_;
267
268 my $fh = IO::File->new($filename, "r") ||
269 die "can't open '$filename' - $!\n";
270
034a8181 271 my $content = safe_read_from($fh, $max, 0, $filename);
e143e9d8
DM
272
273 close $fh;
274
275 return $content;
276}
277
23e0e0d7
WL
278sub file_copy {
279 my ($filename, $dst, $max, $perm) = @_;
280
281 file_set_contents ($dst, file_get_contents($filename, $max), $perm);
282}
283
e143e9d8
DM
284sub file_read_firstline {
285 my ($filename) = @_;
286
287 my $fh = IO::File->new ($filename, "r");
288 return undef if !$fh;
289 my $res = <$fh>;
88955a2e 290 chomp $res if $res;
e143e9d8
DM
291 $fh->close;
292 return $res;
293}
294
295sub safe_read_from {
034a8181 296 my ($fh, $max, $oneline, $filename) = @_;
e143e9d8 297
8fb28ab9
FG
298 # pmxcfs file size limit
299 $max = 512*1024 if !$max;
e143e9d8 300
034a8181
DM
301 my $subject = defined($filename) ? "file '$filename'" : 'input';
302
e143e9d8
DM
303 my $br = 0;
304 my $input = '';
305 my $count;
306 while ($count = sysread($fh, $input, 8192, $br)) {
307 $br += $count;
034a8181 308 die "$subject too long - aborting\n" if $br > $max;
e143e9d8
DM
309 if ($oneline && $input =~ m/^(.*)\n/) {
310 $input = $1;
311 last;
312 }
813a5c0d 313 }
034a8181 314 die "unable to read $subject - $!\n" if !defined($count);
e143e9d8
DM
315
316 return $input;
317}
318
bd9c3a36
WB
319# The $cmd parameter can be:
320# -) a string
321# This is generally executed by passing it to the shell with the -c option.
322# However, it can be executed in one of two ways, depending on whether
323# there's a pipe involved:
324# *) with pipe: passed explicitly to bash -c, prefixed with:
325# set -o pipefail &&
326# *) without a pipe: passed to perl's open3 which uses 'sh -c'
327# (Note that this may result in two different syntax requirements!)
328# FIXME?
329# -) an array of arguments (strings)
330# Will be executed without interference from a shell. (Parameters are passed
331# as is, no escape sequences of strings will be touched.)
fcdc0cfc
WB
332# -) an array of arrays
333# Each array represents a command, and each command's output is piped into
334# the following command's standard input.
335# For this a shell command string is created with pipe symbols between each
336# command.
337# Each command is a list of strings meant to end up in the final command
338# unchanged. In order to achieve this, every argument is shell-quoted.
339# Quoting can be disabled for a particular argument by turning it into a
340# reference, this allows inserting arbitrary shell options.
341# For instance: the $cmd [ [ 'echo', 'hello', \'>/dev/null' ] ] will not
342# produce any output, while the $cmd [ [ 'echo', 'hello', '>/dev/null' ] ]
343# will literally print: hello >/dev/null
e143e9d8
DM
344sub run_command {
345 my ($cmd, %param) = @_;
346
347 my $old_umask;
ded47a61 348 my $cmdstr;
e143e9d8 349
fcdc0cfc
WB
350 if (my $ref = ref($cmd)) {
351 if (ref($cmd->[0])) {
352 $cmdstr = 'set -o pipefail && ';
353 my $pipe = '';
354 foreach my $command (@$cmd) {
355 # concatenate quoted parameters
356 # strings which are passed by reference are NOT shell quoted
357 $cmdstr .= $pipe . join(' ', map { ref($_) ? $$_ : shellquote($_) } @$command);
358 $pipe = ' | ';
359 }
1a0c0103 360 $cmd = [ '/bin/bash', '-c', "$cmdstr" ];
fcdc0cfc
WB
361 } else {
362 $cmdstr = cmd2string($cmd);
363 }
364 } else {
ded47a61 365 $cmdstr = $cmd;
22d4efe6 366 if ($cmd =~ m/\|/) {
e0cabd2c
DM
367 # see 'man bash' for option pipefail
368 $cmd = [ '/bin/bash', '-c', "set -o pipefail && $cmd" ];
369 } else {
370 $cmd = [ $cmd ];
371 }
ded47a61 372 }
e143e9d8
DM
373
374 my $errmsg;
375 my $laststderr;
376 my $timeout;
377 my $oldtimeout;
378 my $pid;
38d9aa12 379 my $exitcode = -1;
e143e9d8 380
4630cb95
DM
381 my $outfunc;
382 my $errfunc;
383 my $logfunc;
384 my $input;
385 my $output;
a417477c 386 my $afterfork;
7e826928 387 my $noerr;
0f3f314e 388 my $keeplocale;
ed61b9d6 389 my $quiet;
4630cb95 390
e143e9d8 391 eval {
e143e9d8
DM
392
393 foreach my $p (keys %param) {
394 if ($p eq 'timeout') {
395 $timeout = $param{$p};
396 } elsif ($p eq 'umask') {
eb9e24df 397 $old_umask = umask($param{$p});
e143e9d8
DM
398 } elsif ($p eq 'errmsg') {
399 $errmsg = $param{$p};
e143e9d8
DM
400 } elsif ($p eq 'input') {
401 $input = $param{$p};
1c50a24a
DM
402 } elsif ($p eq 'output') {
403 $output = $param{$p};
e143e9d8
DM
404 } elsif ($p eq 'outfunc') {
405 $outfunc = $param{$p};
406 } elsif ($p eq 'errfunc') {
407 $errfunc = $param{$p};
776fbfa8
DM
408 } elsif ($p eq 'logfunc') {
409 $logfunc = $param{$p};
a417477c
DM
410 } elsif ($p eq 'afterfork') {
411 $afterfork = $param{$p};
7e826928
TL
412 } elsif ($p eq 'noerr') {
413 $noerr = $param{$p};
0f3f314e
DC
414 } elsif ($p eq 'keeplocale') {
415 $keeplocale = $param{$p};
ed61b9d6
TL
416 } elsif ($p eq 'quiet') {
417 $quiet = $param{$p};
e143e9d8
DM
418 } else {
419 die "got unknown parameter '$p' for run_command\n";
420 }
421 }
422
4630cb95
DM
423 if ($errmsg) {
424 my $origerrfunc = $errfunc;
425 $errfunc = sub {
426 if ($laststderr) {
427 if ($origerrfunc) {
428 &$origerrfunc("$laststderr\n");
429 } else {
430 print STDERR "$laststderr\n" if $laststderr;
431 }
432 }
813a5c0d 433 $laststderr = shift;
4630cb95
DM
434 };
435 }
436
1c50a24a
DM
437 my $reader = $output && $output =~ m/^>&/ ? $output : IO::File->new();
438 my $writer = $input && $input =~ m/^<&/ ? $input : IO::File->new();
439 my $error = IO::File->new();
440
e143e9d8
DM
441 my $orig_pid = $$;
442
443 eval {
0f3f314e 444 local $ENV{LC_ALL} = 'C' if !$keeplocale;
e143e9d8
DM
445
446 # suppress LVM warnings like: "File descriptor 3 left open";
447 local $ENV{LVM_SUPPRESS_FD_WARNINGS} = "1";
448
449 $pid = open3($writer, $reader, $error, @$cmd) || die $!;
f38995ab
DM
450
451 # if we pipe fron STDIN, open3 closes STDIN, so we we
452 # a perl warning "Filehandle STDIN reopened as GENXYZ .. "
453 # as soon as we open a new file.
454 # to avoid that we open /dev/null
455 if (!ref($writer) && !defined(fileno(STDIN))) {
456 POSIX::close(0);
457 open(STDIN, "</dev/null");
458 }
e143e9d8
DM
459 };
460
461 my $err = $@;
462
463 # catch exec errors
464 if ($orig_pid != $$) {
465 warn "ERROR: $err";
813a5c0d
DC
466 POSIX::_exit (1);
467 kill ('KILL', $$);
e143e9d8
DM
468 }
469
470 die $err if $err;
471
472 local $SIG{ALRM} = sub { die "got timeout\n"; } if $timeout;
473 $oldtimeout = alarm($timeout) if $timeout;
474
a417477c
DM
475 &$afterfork() if $afterfork;
476
f38995ab
DM
477 if (ref($writer)) {
478 print $writer $input if defined $input;
479 close $writer;
480 }
e143e9d8
DM
481
482 my $select = new IO::Select;
f38995ab 483 $select->add($reader) if ref($reader);
e143e9d8
DM
484 $select->add($error);
485
486 my $outlog = '';
487 my $errlog = '';
488
489 my $starttime = time();
490
491 while ($select->count) {
492 my @handles = $select->can_read(1);
493
494 foreach my $h (@handles) {
495 my $buf = '';
496 my $count = sysread ($h, $buf, 4096);
497 if (!defined ($count)) {
498 my $err = $!;
499 kill (9, $pid);
500 waitpid ($pid, 0);
501 die $err;
502 }
503 $select->remove ($h) if !$count;
504 if ($h eq $reader) {
776fbfa8 505 if ($outfunc || $logfunc) {
e143e9d8 506 eval {
ba104d67 507 while ($buf =~ s/^([^\010\r\n]*)(?:\n|(?:\010)+|\r\n?)//) {
cb9db10c
DC
508 my $line = $outlog . $1;
509 $outlog = '';
776fbfa8
DM
510 &$outfunc($line) if $outfunc;
511 &$logfunc($line) if $logfunc;
e143e9d8 512 }
cb9db10c 513 $outlog .= $buf;
e143e9d8
DM
514 };
515 my $err = $@;
516 if ($err) {
517 kill (9, $pid);
518 waitpid ($pid, 0);
519 die $err;
520 }
ed61b9d6 521 } elsif (!$quiet) {
e143e9d8
DM
522 print $buf;
523 *STDOUT->flush();
524 }
525 } elsif ($h eq $error) {
776fbfa8 526 if ($errfunc || $logfunc) {
e143e9d8 527 eval {
ba104d67 528 while ($buf =~ s/^([^\010\r\n]*)(?:\n|(?:\010)+|\r\n?)//) {
cb9db10c
DC
529 my $line = $errlog . $1;
530 $errlog = '';
776fbfa8
DM
531 &$errfunc($line) if $errfunc;
532 &$logfunc($line) if $logfunc;
e143e9d8 533 }
cb9db10c 534 $errlog .= $buf;
e143e9d8
DM
535 };
536 my $err = $@;
537 if ($err) {
538 kill (9, $pid);
539 waitpid ($pid, 0);
540 die $err;
541 }
ed61b9d6 542 } elsif (!$quiet) {
e143e9d8
DM
543 print STDERR $buf;
544 *STDERR->flush();
545 }
546 }
547 }
548 }
549
550 &$outfunc($outlog) if $outfunc && $outlog;
776fbfa8
DM
551 &$logfunc($outlog) if $logfunc && $outlog;
552
e143e9d8 553 &$errfunc($errlog) if $errfunc && $errlog;
776fbfa8 554 &$logfunc($errlog) if $logfunc && $errlog;
e143e9d8
DM
555
556 waitpid ($pid, 0);
813a5c0d 557
e143e9d8
DM
558 if ($? == -1) {
559 die "failed to execute\n";
560 } elsif (my $sig = ($? & 127)) {
561 die "got signal $sig\n";
7e826928
TL
562 } elsif ($exitcode = ($? >> 8)) {
563 if (!($exitcode == 24 && ($cmdstr =~ m|^(\S+/)?rsync\s|))) {
1c50a24a
DM
564 if ($errmsg && $laststderr) {
565 my $lerr = $laststderr;
566 $laststderr = undef;
567 die "$lerr\n";
568 }
7e826928 569 die "exit code $exitcode\n";
e143e9d8 570 }
e143e9d8
DM
571 }
572
573 alarm(0);
574 };
575
576 my $err = $@;
577
578 alarm(0);
579
4630cb95
DM
580 if ($errmsg && $laststderr) {
581 &$errfunc(undef); # flush laststderr
582 }
e143e9d8
DM
583
584 umask ($old_umask) if defined($old_umask);
585
586 alarm($oldtimeout) if $oldtimeout;
587
588 if ($err) {
589 if ($pid && ($err eq "got timeout\n")) {
590 kill (9, $pid);
591 waitpid ($pid, 0);
592 die "command '$cmdstr' failed: $err";
593 }
594
595 if ($errmsg) {
adbc988d 596 $err =~ s/^usermod:\s*// if $cmdstr =~ m|^(\S+/)?usermod\s|;
e143e9d8 597 die "$errmsg: $err";
7e826928 598 } elsif(!$noerr) {
e143e9d8
DM
599 die "command '$cmdstr' failed: $err";
600 }
601 }
1c50a24a 602
7e826928 603 return $exitcode;
e143e9d8
DM
604}
605
2d38b8a1
TL
606# Run a command with a tcp socket as standard input.
607sub pipe_socket_to_command {
608 my ($cmd, $ip, $port) = @_;
609
610 my $params = {
611 Listen => 1,
612 ReuseAddr => 1,
613 Proto => &Socket::IPPROTO_TCP,
614 GetAddrInfoFlags => 0,
615 LocalAddr => $ip,
616 LocalPort => $port,
617 };
618 my $socket = IO::Socket::IP->new(%$params) or die "failed to open socket: $!\n";
619
620 print "$ip\n$port\n"; # tell remote where to connect
621 *STDOUT->flush();
622
623 alarm 0;
624 local $SIG{ALRM} = sub { die "timed out waiting for client\n" };
625 alarm 30;
626 my $client = $socket->accept; # Wait for a client
627 alarm 0;
628 close($socket);
629
630 # We want that the command talks over the TCP socket and takes
631 # ownership of it, so that when it closes it the connection is
632 # terminated, so we need to be able to close the socket. So we
633 # can't really use PVE::Tools::run_command().
634 my $pid = fork() // die "fork failed: $!\n";
635 if (!$pid) {
636 POSIX::dup2(fileno($client), 0);
637 POSIX::dup2(fileno($client), 1);
638 close($client);
639 exec {$cmd->[0]} @$cmd or do {
640 warn "exec failed: $!\n";
641 POSIX::_exit(1);
642 };
643 }
644
645 close($client);
646 if (waitpid($pid, 0) != $pid) {
647 kill(15 => $pid); # if we got interrupted terminate the child
648 my $count = 0;
649 while (waitpid($pid, POSIX::WNOHANG) != $pid) {
650 usleep(100000);
651 $count++;
652 kill(9 => $pid), last if $count > 300; # 30 second timeout
653 }
654 }
655 if (my $sig = ($? & 127)) {
656 die "got signal $sig\n";
657 } elsif (my $exitcode = ($? >> 8)) {
658 die "exit code $exitcode\n";
659 }
660
661 return undef;
662}
663
e143e9d8 664sub split_list {
0a3de87e 665 my $listtxt = shift // '';
e143e9d8 666
d2b0374d 667 return split (/\0/, $listtxt) if $listtxt =~ m/\0/;
813a5c0d 668
d2b0374d 669 $listtxt =~ s/[,;]/ /g;
e143e9d8
DM
670 $listtxt =~ s/^\s+//;
671
672 my @data = split (/\s+/, $listtxt);
673
674 return @data;
675}
676
677sub trim {
678 my $txt = shift;
679
680 return $txt if !defined($txt);
681
682 $txt =~ s/^\s+//;
683 $txt =~ s/\s+$//;
813a5c0d 684
e143e9d8
DM
685 return $txt;
686}
687
688# simple uri templates like "/vms/{vmid}"
689sub template_replace {
690 my ($tmpl, $data) = @_;
691
3250f5c7 692 return $tmpl if !$tmpl;
813a5c0d 693
e143e9d8 694 my $res = '';
14410e5f 695 while ($tmpl =~ m/([^{]+)?(\{([^}]+)\})?/g) {
e143e9d8
DM
696 $res .= $1 if $1;
697 $res .= ($data->{$3} || '-') if $2;
698 }
699 return $res;
700}
701
702sub safe_print {
703 my ($filename, $fh, $data) = @_;
704
705 return if !$data;
706
707 my $res = print $fh $data;
708
709 die "write to '$filename' failed\n" if !$res;
710}
711
712sub debmirrors {
713
714 return {
715 'at' => 'ftp.at.debian.org',
716 'au' => 'ftp.au.debian.org',
717 'be' => 'ftp.be.debian.org',
718 'bg' => 'ftp.bg.debian.org',
719 'br' => 'ftp.br.debian.org',
720 'ca' => 'ftp.ca.debian.org',
721 'ch' => 'ftp.ch.debian.org',
722 'cl' => 'ftp.cl.debian.org',
723 'cz' => 'ftp.cz.debian.org',
724 'de' => 'ftp.de.debian.org',
725 'dk' => 'ftp.dk.debian.org',
726 'ee' => 'ftp.ee.debian.org',
727 'es' => 'ftp.es.debian.org',
728 'fi' => 'ftp.fi.debian.org',
729 'fr' => 'ftp.fr.debian.org',
730 'gr' => 'ftp.gr.debian.org',
731 'hk' => 'ftp.hk.debian.org',
732 'hr' => 'ftp.hr.debian.org',
733 'hu' => 'ftp.hu.debian.org',
734 'ie' => 'ftp.ie.debian.org',
735 'is' => 'ftp.is.debian.org',
736 'it' => 'ftp.it.debian.org',
737 'jp' => 'ftp.jp.debian.org',
738 'kr' => 'ftp.kr.debian.org',
739 'mx' => 'ftp.mx.debian.org',
740 'nl' => 'ftp.nl.debian.org',
741 'no' => 'ftp.no.debian.org',
742 'nz' => 'ftp.nz.debian.org',
743 'pl' => 'ftp.pl.debian.org',
744 'pt' => 'ftp.pt.debian.org',
745 'ro' => 'ftp.ro.debian.org',
746 'ru' => 'ftp.ru.debian.org',
747 'se' => 'ftp.se.debian.org',
748 'si' => 'ftp.si.debian.org',
749 'sk' => 'ftp.sk.debian.org',
750 'tr' => 'ftp.tr.debian.org',
751 'tw' => 'ftp.tw.debian.org',
752 'gb' => 'ftp.uk.debian.org',
753 'us' => 'ftp.us.debian.org',
754 };
755}
756
910d57b0
DM
757my $keymaphash = {
758 'dk' => ['Danish', 'da', 'qwerty/dk-latin1.kmap.gz', 'dk', 'nodeadkeys'],
759 'de' => ['German', 'de', 'qwertz/de-latin1-nodeadkeys.kmap.gz', 'de', 'nodeadkeys' ],
813a5c0d 760 'de-ch' => ['Swiss-German', 'de-ch', 'qwertz/sg-latin1.kmap.gz', 'ch', 'de_nodeadkeys' ],
5a5ca434
DM
761 'en-gb' => ['United Kingdom', 'en-gb', 'qwerty/uk.kmap.gz' , 'gb', undef],
762 'en-us' => ['U.S. English', 'en-us', 'qwerty/us-latin1.kmap.gz', 'us', undef ],
910d57b0
DM
763 'es' => ['Spanish', 'es', 'qwerty/es.kmap.gz', 'es', 'nodeadkeys'],
764 #'et' => [], # Ethopia or Estonia ??
765 'fi' => ['Finnish', 'fi', 'qwerty/fi-latin1.kmap.gz', 'fi', 'nodeadkeys'],
766 #'fo' => ['Faroe Islands', 'fo', ???, 'fo', 'nodeadkeys'],
767 'fr' => ['French', 'fr', 'azerty/fr-latin1.kmap.gz', 'fr', 'nodeadkeys'],
768 'fr-be' => ['Belgium-French', 'fr-be', 'azerty/be2-latin1.kmap.gz', 'be', 'nodeadkeys'],
769 'fr-ca' => ['Canada-French', 'fr-ca', 'qwerty/cf.kmap.gz', 'ca', 'fr-legacy'],
770 'fr-ch' => ['Swiss-French', 'fr-ch', 'qwertz/fr_CH-latin1.kmap.gz', 'ch', 'fr_nodeadkeys'],
771 #'hr' => ['Croatia', 'hr', 'qwertz/croat.kmap.gz', 'hr', ??], # latin2?
772 'hu' => ['Hungarian', 'hu', 'qwertz/hu.kmap.gz', 'hu', undef],
773 'is' => ['Icelandic', 'is', 'qwerty/is-latin1.kmap.gz', 'is', 'nodeadkeys'],
774 'it' => ['Italian', 'it', 'qwerty/it2.kmap.gz', 'it', 'nodeadkeys'],
775 'jp' => ['Japanese', 'ja', 'qwerty/jp106.kmap.gz', 'jp', undef],
776 'lt' => ['Lithuanian', 'lt', 'qwerty/lt.kmap.gz', 'lt', 'std'],
777 #'lv' => ['Latvian', 'lv', 'qwerty/lv-latin4.kmap.gz', 'lv', ??], # latin4 or latin7?
778 'mk' => ['Macedonian', 'mk', 'qwerty/mk.kmap.gz', 'mk', 'nodeadkeys'],
779 'nl' => ['Dutch', 'nl', 'qwerty/nl.kmap.gz', 'nl', undef],
780 #'nl-be' => ['Belgium-Dutch', 'nl-be', ?, ?, ?],
813a5c0d 781 'no' => ['Norwegian', 'no', 'qwerty/no-latin1.kmap.gz', 'no', 'nodeadkeys'],
910d57b0
DM
782 'pl' => ['Polish', 'pl', 'qwerty/pl.kmap.gz', 'pl', undef],
783 'pt' => ['Portuguese', 'pt', 'qwerty/pt-latin1.kmap.gz', 'pt', 'nodeadkeys'],
784 'pt-br' => ['Brazil-Portuguese', 'pt-br', 'qwerty/br-latin1.kmap.gz', 'br', 'nodeadkeys'],
fb3a1b29 785 #'ru' => ['Russian', 'ru', 'qwerty/ru.kmap.gz', 'ru', undef], # don't know?
910d57b0 786 'si' => ['Slovenian', 'sl', 'qwertz/slovene.kmap.gz', 'si', undef],
9934cd0b 787 'se' => ['Swedish', 'sv', 'qwerty/se-latin1.kmap.gz', 'se', 'nodeadkeys'],
910d57b0 788 #'th' => [],
c10cc112 789 'tr' => ['Turkish', 'tr', 'qwerty/trq.kmap.gz', 'tr', undef],
910d57b0
DM
790};
791
792my $kvmkeymaparray = [];
0a7de820 793foreach my $lc (sort keys %$keymaphash) {
910d57b0
DM
794 push @$kvmkeymaparray, $keymaphash->{$lc}->[1];
795}
796
e143e9d8 797sub kvmkeymaps {
910d57b0
DM
798 return $keymaphash;
799}
800
801sub kvmkeymaplist {
802 return $kvmkeymaparray;
e143e9d8
DM
803}
804
805sub extract_param {
806 my ($param, $key) = @_;
807
808 my $res = $param->{$key};
809 delete $param->{$key};
810
811 return $res;
812}
813
9d52694b 814# For extracting sensitive keys (e.g. password), to avoid writing them to www-data owned configs
40682a69
DC
815sub extract_sensitive_params :prototype($$$) {
816 my ($param, $sensitive_list, $delete_list) = @_;
817
40682a69
DC
818 my %delete = map { $_ => 1 } ($delete_list || [])->@*;
819
9d52694b 820 my $sensitive = {};
40682a69 821 for my $opt (@$sensitive_list) {
9d52694b
TL
822 # handle deletions as explicitly setting `undef`, so subs which only have $param but not
823 # $delete_list available can recognize them. Afterwards new values may override.
40682a69
DC
824 if (exists($delete{$opt})) {
825 $sensitive->{$opt} = undef;
826 }
827
828 if (defined(my $value = extract_param($param, $opt))) {
829 $sensitive->{$opt} = $value;
830 }
831 }
832
833 return $sensitive;
834}
835
eb7047f6 836# Note: we use this to wait until vncterm/spiceterm is ready
ec6d95b4 837sub wait_for_vnc_port {
590b924e 838 my ($port, $family, $timeout) = @_;
ec6d95b4
DM
839
840 $timeout = 5 if !$timeout;
eb7047f6
DM
841 my $sleeptime = 0;
842 my $starttime = [gettimeofday];
843 my $elapsed;
ec6d95b4 844
590b924e
TL
845 my $cmd = ['/bin/ss', '-Htln', "sport = :$port"];
846 push @$cmd, $family == AF_INET6 ? '-6' : '-4' if defined($family);
847
9a41a7b7 848 my $found;
eb7047f6 849 while (($elapsed = tv_interval($starttime)) < $timeout) {
9a41a7b7 850 # -Htln = don't print header, tcp, listening sockets only, numeric ports
590b924e 851 run_command($cmd, outfunc => sub {
9a41a7b7
TL
852 my $line = shift;
853 if ($line =~ m/^LISTEN\s+\d+\s+\d+\s+\S+:(\d+)\s/) {
854 $found = 1 if ($port == $1);
ec6d95b4 855 }
9a41a7b7
TL
856 });
857 return 1 if $found;
eb7047f6
DM
858 $sleeptime += 100000 if $sleeptime < 1000000;
859 usleep($sleeptime);
ec6d95b4
DM
860 }
861
8fd0d634 862 die "Timeout while waiting for port '$port' to get ready!\n";
ec6d95b4
DM
863}
864
59b3f563 865sub next_unused_port {
c14960cc 866 my ($range_start, $range_end, $family, $address) = @_;
59b3f563
DM
867
868 # We use a file to register allocated ports.
869 # Those registrations expires after $expiretime.
870 # We use this to avoid race conditions between
871 # allocation and use of ports.
872
873 my $filename = "/var/tmp/pve-reserved-ports";
e143e9d8 874
59b3f563 875 my $code = sub {
e143e9d8 876
59b3f563
DM
877 my $expiretime = 5;
878 my $ctime = time();
e143e9d8 879
59b3f563
DM
880 my $ports = {};
881
882 if (my $fh = IO::File->new ($filename, "r")) {
883 while (my $line = <$fh>) {
884 if ($line =~ m/^(\d+)\s(\d+)$/) {
885 my ($port, $timestamp) = ($1, $2);
886 if (($timestamp + $expiretime) > $ctime) {
887 $ports->{$port} = $timestamp; # not expired
813a5c0d 888 }
59b3f563
DM
889 }
890 }
e143e9d8 891 }
813a5c0d 892
59b3f563 893 my $newport;
c14960cc
WB
894 my %sockargs = (Listen => 5,
895 ReuseAddr => 1,
896 Family => $family,
a0ecb159 897 Proto => IPPROTO_TCP,
c14960cc
WB
898 GetAddrInfoFlags => 0);
899 $sockargs{LocalAddr} = $address if defined($address);
59b3f563
DM
900
901 for (my $p = $range_start; $p < $range_end; $p++) {
902 next if $ports->{$p}; # reserved
903
c14960cc
WB
904 $sockargs{LocalPort} = $p;
905 my $sock = IO::Socket::IP->new(%sockargs);
59b3f563
DM
906
907 if ($sock) {
908 close($sock);
909 $newport = $p;
910 $ports->{$p} = $ctime;
911 last;
912 }
913 }
813a5c0d 914
59b3f563
DM
915 my $data = "";
916 foreach my $p (keys %$ports) {
917 $data .= "$p $ports->{$p}\n";
918 }
813a5c0d 919
59b3f563 920 file_set_contents($filename, $data);
e143e9d8 921
59b3f563
DM
922 return $newport;
923 };
924
3c476ed5 925 my $p = lock_file('/var/lock/pve-ports.lck', 10, $code);
59b3f563 926 die $@ if $@;
813a5c0d 927
59b3f563
DM
928 die "unable to find free port (${range_start}-${range_end})\n" if !$p;
929
930 return $p;
931}
932
933sub next_migrate_port {
c14960cc
WB
934 my ($family, $address) = @_;
935 return next_unused_port(60000, 60050, $family, $address);
59b3f563
DM
936}
937
938sub next_vnc_port {
c14960cc
WB
939 my ($family, $address) = @_;
940 return next_unused_port(5900, 6000, $family, $address);
59b3f563 941}
e143e9d8 942
30aeac2e
DC
943sub spice_port_range {
944 return (61000, 61999);
945}
946
2f13cbb5 947sub next_spice_port {
c14960cc 948 my ($family, $address) = @_;
30aeac2e 949 return next_unused_port(spice_port_range(), $family, $address);
2f13cbb5
DM
950}
951
893ec6f2
WB
952sub must_stringify {
953 my ($value) = @_;
954 eval { $value = "$value" };
955 return "error turning value into a string: $@" if $@;
956 return $value;
957}
958
72fba911
EK
959# sigkill after $timeout a $sub running in a fork if it can't write a pipe
960# the $sub has to return a single scalar
961sub run_fork_with_timeout {
962 my ($timeout, $sub) = @_;
963
964 my $res;
965 my $error;
966 my $pipe_out = IO::Pipe->new();
72fba911
EK
967
968 # disable pending alarms, save their remaining time
969 my $prev_alarm = alarm 0;
970
eead1cca 971 # avoid leaving a zombie if the parent gets interrupted
72fba911 972 my $sig_received;
72fba911
EK
973
974 my $child = fork();
975 if (!defined($child)) {
976 die "fork failed: $!\n";
977 return $res;
978 }
979
980 if (!$child) {
981 $pipe_out->writer();
72fba911
EK
982
983 eval {
984 $res = $sub->();
f2c72fc3 985 print {$pipe_out} encode_json({ result => $res });
72fba911
EK
986 $pipe_out->flush();
987 };
988 if (my $err = $@) {
893ec6f2 989 print {$pipe_out} encode_json({ error => must_stringify($err) });
f2c72fc3 990 $pipe_out->flush();
72fba911
EK
991 POSIX::_exit(1);
992 }
993 POSIX::_exit(0);
994 }
995
2e353dfb
DC
996 local $SIG{INT} = sub { $sig_received++; };
997 local $SIG{TERM} = sub {
998 $error //= "interrupted by unexpected signal\n";
999 kill('TERM', $child);
1000 };
1001
72fba911 1002 $pipe_out->reader();
72fba911
EK
1003
1004 my $readvalues = sub {
1005 local $/ = undef;
2e353dfb 1006 my $child_res = decode_json(readline_nointr($pipe_out));
f2c72fc3
TL
1007 $res = $child_res->{result};
1008 $error = $child_res->{error};
72fba911
EK
1009 };
1010 eval {
a2d049af
WB
1011 if (defined($timeout)) {
1012 run_with_timeout($timeout, $readvalues);
1013 } else {
1014 $readvalues->();
1015 }
72fba911
EK
1016 };
1017 warn $@ if $@;
1018 $pipe_out->close();
72fba911
EK
1019 kill('KILL', $child);
1020 waitpid($child, 0);
1021
1022 alarm $prev_alarm;
1023 die "interrupted by unexpected signal\n" if $sig_received;
1024
1025 die $error if $error;
1026 return $res;
1027}
1028
a2d049af
WB
1029sub run_fork {
1030 my ($code) = @_;
1031 return run_fork_with_timeout(undef, $code);
1032}
1033
813a5c0d 1034# NOTE: NFS syscall can't be interrupted, so alarm does
e143e9d8
DM
1035# not work to provide timeouts.
1036# from 'man nfs': "Only SIGKILL can interrupt a pending NFS operation"
97c8c857 1037# So fork() before using Filesys::Df
e143e9d8
DM
1038sub df {
1039 my ($path, $timeout) = @_;
1040
4fdc9659 1041 my $df = sub { return Filesys::Df::df($path, 1) };
97c8c857 1042
4fdc9659
TL
1043 my $res = eval { run_fork_with_timeout($timeout, $df) } // {};
1044 warn $@ if $@;
97c8c857 1045
8bc99fda
TL
1046 # untaint, but be flexible: PB usage can result in scientific notation
1047 my ($blocks, $used, $bavail) = map { defined($_) ? (/^([\d\.e\-+]+)$/) : 0 }
fd58bb2b
DC
1048 $res->@{qw(blocks used bavail)};
1049
4fdc9659 1050 return {
fd58bb2b
DC
1051 total => $blocks,
1052 used => $used,
1053 avail => $bavail,
e143e9d8 1054 };
e143e9d8
DM
1055}
1056
62635f92
DM
1057sub du {
1058 my ($path, $timeout) = @_;
1059
1060 my $size;
1061
1062 $timeout //= 10;
1063
1064 my $parser = sub {
1065 my $line = shift;
1066
1067 if ($line =~ m/^(\d+)\s+total$/) {
1068 $size = $1;
1069 }
1070 };
1071
1072 run_command(['du', '-scb', $path], outfunc => $parser, timeout => $timeout);
1073
1074 return $size;
1075}
1076
e143e9d8
DM
1077# UPID helper
1078# We use this to uniquely identify a process.
813a5c0d 1079# An 'Unique Process ID' has the following format:
e143e9d8
DM
1080# "UPID:$node:$pid:$pstart:$startime:$dtype:$id:$user"
1081
1082sub upid_encode {
1083 my $d = shift;
1084
19cec230
DM
1085 # Note: pstart can be > 32bit if uptime > 497 days, so this can result in
1086 # more that 8 characters for pstart
813a5c0d
DC
1087 return sprintf("UPID:%s:%08X:%08X:%08X:%s:%s:%s:", $d->{node}, $d->{pid},
1088 $d->{pstart}, $d->{starttime}, $d->{type}, $d->{id},
e143e9d8
DM
1089 $d->{user});
1090}
1091
1092sub upid_decode {
1093 my ($upid, $noerr) = @_;
1094
1095 my $res;
1096 my $filename;
1097
1098 # "UPID:$node:$pid:$pstart:$startime:$dtype:$id:$user"
19cec230
DM
1099 # Note: allow up to 9 characters for pstart (work until 20 years uptime)
1100 if ($upid =~ m/^UPID:([a-zA-Z0-9]([a-zA-Z0-9\-]*[a-zA-Z0-9])?):([0-9A-Fa-f]{8}):([0-9A-Fa-f]{8,9}):([0-9A-Fa-f]{8}):([^:\s]+):([^:\s]*):([^:\s]+):$/) {
e143e9d8 1101 $res->{node} = $1;
3702f038
DM
1102 $res->{pid} = hex($3);
1103 $res->{pstart} = hex($4);
1104 $res->{starttime} = hex($5);
1105 $res->{type} = $6;
1106 $res->{id} = $7;
1107 $res->{user} = $8;
1108
1109 my $subdir = substr($5, 7, 8);
e143e9d8
DM
1110 $filename = "$pvetaskdir/$subdir/$upid";
1111
1112 } else {
1113 return undef if $noerr;
1114 die "unable to parse worker upid '$upid'\n";
1115 }
1116
1117 return wantarray ? ($res, $filename) : $res;
1118}
1119
1120sub upid_open {
1121 my ($upid) = @_;
1122
813a5c0d 1123 my ($task, $filename) = upid_decode($upid);
e143e9d8
DM
1124
1125 my $dirname = dirname($filename);
1126 make_path($dirname);
1127
1128 my $wwwid = getpwnam('www-data') ||
1129 die "getpwnam failed";
1130
1131 my $perm = 0640;
813a5c0d 1132
e143e9d8
DM
1133 my $outfh = IO::File->new ($filename, O_WRONLY|O_CREAT|O_EXCL, $perm) ||
1134 die "unable to create output file '$filename' - $!\n";
2b8e0f12 1135 chown $wwwid, -1, $outfh;
e143e9d8
DM
1136
1137 return $outfh;
1138};
1139
1140sub upid_read_status {
1141 my ($upid) = @_;
1142
1143 my ($task, $filename) = upid_decode($upid);
1144 my $fh = IO::File->new($filename, "r");
1145 return "unable to open file - $!" if !$fh;
cc9121d3 1146 my $maxlen = 4096;
e143e9d8
DM
1147 sysseek($fh, -$maxlen, 2);
1148 my $readbuf = '';
1149 my $br = sysread($fh, $readbuf, $maxlen);
1150 close($fh);
1151 if ($br) {
1152 return "unable to extract last line"
1153 if $readbuf !~ m/\n?(.+)$/;
1154 my $line = $1;
1155 if ($line =~ m/^TASK OK$/) {
1156 return 'OK';
1157 } elsif ($line =~ m/^TASK ERROR: (.+)$/) {
1158 return $1;
ff79ee65
FE
1159 } elsif ($line =~ m/^TASK (WARNINGS: \d+)$/) {
1160 return $1;
e143e9d8
DM
1161 } else {
1162 return "unexpected status";
1163 }
1164 }
1165 return "unable to read tail (got $br bytes)";
1166}
1167
813a5c0d 1168# useful functions to store comments in config files
e143e9d8
DM
1169sub encode_text {
1170 my ($text) = @_;
1171
1172 # all control and hi-bit characters, and ':'
1173 my $unsafe = "^\x20-\x39\x3b-\x7e";
1174 return uri_escape(Encode::encode("utf8", $text), $unsafe);
1175}
1176
1177sub decode_text {
1178 my ($data) = @_;
1179
1180 return Encode::decode("utf8", uri_unescape($data));
1181}
1182
6d46baf6
DM
1183# depreciated - do not use!
1184# we now decode all parameters by default
815b2aba
DM
1185sub decode_utf8_parameters {
1186 my ($param) = @_;
1187
34ebb226 1188 foreach my $p (qw(comment description firstname lastname)) {
815b2aba
DM
1189 $param->{$p} = decode('utf8', $param->{$p}) if $param->{$p};
1190 }
1191
1192 return $param;
1193}
1194
a413a515 1195sub random_ether_addr {
12392173 1196 my ($prefix) = @_;
a413a515 1197
46a11c00
DM
1198 my ($seconds, $microseconds) = gettimeofday;
1199
d743b69c 1200 my $rand = Digest::SHA::sha1($$, rand(), $seconds, $microseconds);
a413a515 1201
85d5625a 1202 # clear multicast, set local id
de9a267f 1203 vec($rand, 0, 8) = (vec($rand, 0, 8) & 0xfe) | 2;
a413a515 1204
12392173
WB
1205 my $addr = sprintf("%02X:%02X:%02X:%02X:%02X:%02X", unpack("C6", $rand));
1206 if (defined($prefix)) {
1207 $addr = uc($prefix) . substr($addr, length($prefix));
1208 }
1209 return $addr;
a413a515 1210}
e143e9d8 1211
762e3223
DM
1212sub shellquote {
1213 my $str = shift;
1214
7514b23a 1215 return String::ShellQuote::shell_quote($str);
762e3223
DM
1216}
1217
65e1d3fc
DM
1218sub cmd2string {
1219 my ($cmd) = @_;
1220
1221 die "no arguments" if !$cmd;
1222
1223 return $cmd if !ref($cmd);
1224
1225 my @qa = ();
1226 foreach my $arg (@$cmd) { push @qa, shellquote($arg); }
1227
1228 return join (' ', @qa);
1229}
1230
e38bcd35 1231# split an shell argument string into an array,
f9125663
DM
1232sub split_args {
1233 my ($str) = @_;
1234
e38bcd35 1235 return $str ? [ Text::ParseWords::shellwords($str) ] : [];
f9125663
DM
1236}
1237
804b1041 1238sub dump_logfile {
eb7e5538 1239 my ($filename, $start, $limit, $filter) = @_;
804b1041
DM
1240
1241 my $lines = [];
1242 my $count = 0;
1243
1244 my $fh = IO::File->new($filename, "r");
813a5c0d 1245 if (!$fh) {
804b1041
DM
1246 $count++;
1247 push @$lines, { n => $count, t => "unable to open file - $!"};
1248 return ($count, $lines);
1249 }
1250
1251 $start = 0 if !$start;
1252 $limit = 50 if !$limit;
1253
1254 my $line;
eb7e5538
DM
1255
1256 if ($filter) {
1257 # duplicate code, so that we do not slow down normal path
1258 while (defined($line = <$fh>)) {
1259 next if $line !~ m/$filter/;
1260 next if $count++ < $start;
1261 next if $limit <= 0;
1262 chomp $line;
1263 push @$lines, { n => $count, t => $line};
1264 $limit--;
1265 }
1266 } else {
1267 while (defined($line = <$fh>)) {
1268 next if $count++ < $start;
1269 next if $limit <= 0;
1270 chomp $line;
1271 push @$lines, { n => $count, t => $line};
1272 $limit--;
1273 }
804b1041
DM
1274 }
1275
1276 close($fh);
1277
6de95a66
DM
1278 # HACK: ExtJS store.guaranteeRange() does not like empty array
1279 # so we add a line
1280 if (!$count) {
1281 $count++;
1282 push @$lines, { n => $count, t => "no content"};
1283 }
1284
1285 return ($count, $lines);
1286}
1287
1288sub dump_journal {
ccf60d3b 1289 my ($start, $limit, $since, $until, $service) = @_;
6de95a66
DM
1290
1291 my $lines = [];
1292 my $count = 0;
813a5c0d 1293
6de95a66
DM
1294 $start = 0 if !$start;
1295 $limit = 50 if !$limit;
1296
1297 my $parser = sub {
1298 my $line = shift;
1299
1300 return if $count++ < $start;
1301 return if $limit <= 0;
1302 push @$lines, { n => int($count), t => $line};
1303 $limit--;
1304 };
1305
1306 my $cmd = ['journalctl', '-o', 'short', '--no-pager'];
19e95cd0 1307
ccf60d3b 1308 push @$cmd, '--unit', $service if $service;
19e95cd0
TL
1309 push @$cmd, '--since', $since if $since;
1310 push @$cmd, '--until', $until if $until;
6de95a66
DM
1311 run_command($cmd, outfunc => $parser);
1312
804b1041
DM
1313 # HACK: ExtJS store.guaranteeRange() does not like empty array
1314 # so we add a line
1315 if (!$count) {
1316 $count++;
1317 push @$lines, { n => $count, t => "no content"};
1318 }
1319
1320 return ($count, $lines);
1321}
1322
7eb283fb
DM
1323sub dir_glob_regex {
1324 my ($dir, $regex) = @_;
1325
1326 my $dh = IO::Dir->new ($dir);
1327 return wantarray ? () : undef if !$dh;
813a5c0d
DC
1328
1329 while (defined(my $tmp = $dh->read)) {
7eb283fb
DM
1330 if (my @res = $tmp =~ m/^($regex)$/) {
1331 $dh->close;
1332 return wantarray ? @res : $tmp;
1333 }
1334 }
1335 $dh->close;
1336
1337 return wantarray ? () : undef;
1338}
1339
1340sub dir_glob_foreach {
1341 my ($dir, $regex, $func) = @_;
1342
1343 my $dh = IO::Dir->new ($dir);
1344 if (defined $dh) {
1345 while (defined(my $tmp = $dh->read)) {
1346 if (my @res = $tmp =~ m/^($regex)$/) {
1347 &$func (@res);
1348 }
1349 }
813a5c0d 1350 }
7eb283fb
DM
1351}
1352
a345b9d5
DM
1353sub assert_if_modified {
1354 my ($digest1, $digest2) = @_;
1355
1356 if ($digest1 && $digest2 && ($digest1 ne $digest2)) {
212fc0b7 1357 die "detected modified configuration - file changed by other user? Try again.\n";
a345b9d5
DM
1358 }
1359}
1360
2d3bca34
DM
1361# Digest for short strings
1362# like FNV32a, but we only return 31 bits (positive numbers)
1363sub fnv31a {
1364 my ($string) = @_;
1365
1366 my $hval = 0x811c9dc5;
1367
1368 foreach my $c (unpack('C*', $string)) {
1369 $hval ^= $c;
1370 $hval += (
1371 (($hval << 1) ) +
1372 (($hval << 4) ) +
1373 (($hval << 7) ) +
1374 (($hval << 8) ) +
1375 (($hval << 24) ) );
1376 $hval = $hval & 0xffffffff;
1377 }
1378 return $hval & 0x7fffffff;
1379}
1380
1381sub fnv31a_hex { return sprintf("%X", fnv31a(@_)); }
1382
8df6b794
WB
1383sub unpack_sockaddr_in46 {
1384 my ($sin) = @_;
1385 my $family = Socket::sockaddr_family($sin);
1386 my ($port, $host) = ($family == AF_INET6 ? Socket::unpack_sockaddr_in6($sin)
1387 : Socket::unpack_sockaddr_in($sin));
1388 return ($family, $port, $host);
1389}
1390
a0b6ef52
WB
1391sub getaddrinfo_all {
1392 my ($hostname, @opts) = @_;
7a2e8ca1
TL
1393 my %hints = (
1394 flags => AI_V4MAPPED | AI_ALL,
1395 @opts,
1396 );
a956854f 1397 my ($err, @res) = Socket::getaddrinfo($hostname, '0', \%hints);
a0b6ef52
WB
1398 die "failed to get address info for: $hostname: $err\n" if $err;
1399 return @res;
1400}
a956854f 1401
a0b6ef52
WB
1402sub get_host_address_family {
1403 my ($hostname, $socktype) = @_;
1404 my @res = getaddrinfo_all($hostname, socktype => $socktype);
1405 return $res[0]->{family};
a956854f
WB
1406}
1407
d3c8f0c1
EK
1408# get the fully qualified domain name of a host
1409# same logic as hostname(1): The FQDN is the name getaddrinfo(3) returns,
1410# given a nodename as a parameter
1411sub get_fqdn {
1412 my ($nodename) = @_;
1413
1414 my $hints = {
1415 flags => AI_CANONNAME,
1416 socktype => SOCK_DGRAM
1417 };
1418
1419 my ($err, @addrs) = Socket::getaddrinfo($nodename, undef, $hints);
1420
1421 die "getaddrinfo: $err" if $err;
1422
1423 return $addrs[0]->{canonname};
1424}
1425
b2613777
WB
1426# Parses any sane kind of host, or host+port pair:
1427# The port is always optional and thus may be undef.
1428sub parse_host_and_port {
1429 my ($address) = @_;
1430 if ($address =~ /^($IPV4RE|[[:alnum:]\-.]+)(?::(\d+))?$/ || # ipv4 or host with optional ':port'
1431 $address =~ /^\[($IPV6RE|$IPV4RE|[[:alnum:]\-.]+)\](?::(\d+))?$/ || # anything in brackets with optional ':port'
1432 $address =~ /^($IPV6RE)(?:\.(\d+))?$/) # ipv6 with optional port separated by dot
1433 {
1434 return ($1, $2, 1); # end with 1 to support simple if(parse...) tests
1435 }
1436 return; # nothing
1437}
1438
0c078e66
SI
1439sub setresuid($$$) {
1440 my ($ruid, $euid, $suid) = @_;
1441 return 0 == syscall(PVE::Syscall::setresuid, $ruid, $euid, $suid);
1442}
1443
817c6be0 1444sub unshare($) {
952fd95e 1445 my ($flags) = @_;
c8e94d4b 1446 return 0 == syscall(PVE::Syscall::unshare, $flags);
952fd95e
WB
1447}
1448
891b224a
WB
1449sub setns($$) {
1450 my ($fileno, $nstype) = @_;
c8e94d4b 1451 return 0 == syscall(PVE::Syscall::setns, $fileno, $nstype);
891b224a
WB
1452}
1453
44acb12c
WB
1454sub syncfs($) {
1455 my ($fileno) = @_;
c8e94d4b 1456 return 0 == syscall(PVE::Syscall::syncfs, $fileno);
44acb12c
WB
1457}
1458
cee0e23a
TL
1459sub fsync($) {
1460 my ($fileno) = @_;
1461 return 0 == syscall(PVE::Syscall::fsync, $fileno);
1462}
1463
44acb12c
WB
1464sub sync_mountpoint {
1465 my ($path) = @_;
b260d4e3 1466 sysopen my $fd, $path, O_RDONLY|O_CLOEXEC or die "failed to open $path: $!\n";
09d47f9d
TL
1467 my $syncfs_err;
1468 if (!syncfs(fileno($fd))) {
1469 $syncfs_err = "$!";
1470 }
44acb12c 1471 close($fd);
09d47f9d 1472 die "syncfs '$path' failed - $syncfs_err\n" if defined $syncfs_err;
44acb12c
WB
1473}
1474
b61a47db
TL
1475# support sending multi-part mail messages with a text and or a HTML part
1476# mailto may be a single email string or an array of receivers
1477sub sendmail {
1478 my ($mailto, $subject, $text, $html, $mailfrom, $author) = @_;
1479
5a873e6d 1480 $mailto = [ $mailto ] if !ref($mailto);
b61a47db 1481
4c4bd104 1482 my $mailto_quoted = [];
a7886364 1483 for my $to (@$mailto) {
4c4bd104
FE
1484 die "mailto does not look like a valid email address or username\n"
1485 if $to !~ /^$EMAIL_RE$/ && $to !~ /^$EMAIL_USER_RE$/;
1486 push @$mailto_quoted, shellquote($to);
b61a47db 1487 }
c9c6d910 1488
b61a47db
TL
1489 my $rcvrtxt = join (', ', @$mailto);
1490
1491 $mailfrom = $mailfrom || "root";
4c4bd104
FE
1492 die "mailfrom does not look like a valid email address or username\n"
1493 if $mailfrom !~ /^$EMAIL_RE$/ && $mailfrom !~ /^$EMAIL_USER_RE$/;
1494 my $mailfrom_quoted = shellquote($mailfrom);
c9c6d910 1495
a24d91ea 1496 $author = $author // 'Proxmox VE';
b61a47db 1497
4c4bd104
FE
1498 open (MAIL, "|-", "sendmail", "-B", "8BITMIME", "-f", $mailfrom_quoted,
1499 "--", @$mailto_quoted) || die "unable to open 'sendmail' - $!";
b61a47db 1500
b18826ce
SI
1501 my $date = time2str('%a, %d %b %Y %H:%M:%S %z', time());
1502
1503 my $is_multipart = $text && $html;
1504
b61a47db
TL
1505 # multipart spec see https://www.ietf.org/rfc/rfc1521.txt
1506 my $boundary = "----_=_NextPart_001_".int(time).$$;
1507
b18826ce
SI
1508 if ($subject =~ /[^[:ascii:]]/) {
1509 $subject = Encode::encode('MIME-Header', $subject);
1510 }
b61a47db 1511
b18826ce
SI
1512 if ($subject =~ /[^[:ascii:]]/ || $is_multipart) {
1513 print MAIL "MIME-Version: 1.0\n";
1514 }
1515 print MAIL "From: $author <$mailfrom>\n";
1516 print MAIL "To: $rcvrtxt\n";
1517 print MAIL "Date: $date\n";
1518 print MAIL "Subject: $subject\n";
1519
1520 if ($is_multipart) {
1521 print MAIL "Content-Type: multipart/alternative;\n";
1522 print MAIL "\tboundary=\"$boundary\"\n";
1523 print MAIL "\n";
1524 print MAIL "This is a multi-part message in MIME format.\n\n";
1525 print MAIL "--$boundary\n";
1526 }
b61a47db 1527
5a873e6d 1528 if (defined($text)) {
b61a47db 1529 print MAIL "Content-Type: text/plain;\n";
b18826ce 1530 print MAIL "\tcharset=\"UTF-8\"\n";
b61a47db
TL
1531 print MAIL "Content-Transfer-Encoding: 8bit\n";
1532 print MAIL "\n";
1533
1534 # avoid 'remove extra line breaks' issue (MS Outlook)
1535 my $fill = ' ';
1536 $text =~ s/^/$fill/gm;
1537
1538 print MAIL $text;
1539
b18826ce 1540 print MAIL "\n--$boundary\n" if $is_multipart;
b61a47db
TL
1541 }
1542
5a873e6d 1543 if (defined($html)) {
b61a47db 1544 print MAIL "Content-Type: text/html;\n";
b18826ce 1545 print MAIL "\tcharset=\"UTF-8\"\n";
b61a47db
TL
1546 print MAIL "Content-Transfer-Encoding: 8bit\n";
1547 print MAIL "\n";
1548
1549 print MAIL $html;
1550
b18826ce 1551 print MAIL "\n--$boundary--\n" if $is_multipart;
b61a47db
TL
1552 }
1553
1554 close(MAIL);
b61a47db
TL
1555}
1556
26598a51
WB
1557sub tempfile {
1558 my ($perm, %opts) = @_;
1559
1560 # default permissions are stricter than with file_set_contents
1561 $perm = 0600 if !defined($perm);
1562
f0cfc20e 1563 my $dir = $opts{dir} // '/run';
26598a51
WB
1564 my $mode = $opts{mode} // O_RDWR;
1565 $mode |= O_EXCL if !$opts{allow_links};
1566
7e1ee743
WB
1567 my $fh = IO::File->new($dir, $mode | O_TMPFILE, $perm);
1568 if (!$fh && $! == EOPNOTSUPP) {
77b2b96f 1569 $dir = '/tmp' if !defined($opts{dir});
7e1ee743
WB
1570 $dir .= "/.tmpfile.$$";
1571 $fh = IO::File->new($dir, $mode | O_CREAT | O_EXCL, $perm);
1572 unlink($dir) if $fh;
1573 }
1574 die "failed to create tempfile: $!\n" if !$fh;
26598a51
WB
1575 return $fh;
1576}
1577
1578sub tempfile_contents {
1579 my ($data, $perm, %opts) = @_;
1580
1581 my $fh = tempfile($perm, %opts);
1582 eval {
1583 die "unable to write to tempfile: $!\n" if !print {$fh} $data;
1584 die "unable to flush to tempfile: $!\n" if !defined($fh->flush());
1585 };
1586 if (my $err = $@) {
1587 close $fh;
1588 die $err;
1589 }
1590
1591 return ("/proc/$$/fd/".$fh->fileno, $fh);
1592}
1593
48df47a4
FG
1594sub validate_ssh_public_keys {
1595 my ($raw) = @_;
1596 my @lines = split(/\n/, $raw);
1597
1598 foreach my $line (@lines) {
1599 next if $line =~ m/^\s*$/;
1600 eval {
1601 my ($filename, $handle) = tempfile_contents($line);
1602 run_command(["ssh-keygen", "-l", "-f", $filename],
1603 outfunc => sub {}, errfunc => sub {});
1604 };
1605 die "SSH public key validation error\n" if $@;
1606 }
1607}
1608
21c56a96
WB
1609sub openat($$$;$) {
1610 my ($dirfd, $pathname, $flags, $mode) = @_;
c8e94d4b 1611 my $fd = syscall(PVE::Syscall::openat, $dirfd, $pathname, $flags, $mode//0);
21c56a96
WB
1612 return undef if $fd < 0;
1613 # sysopen() doesn't deal with numeric file descriptors apparently
1614 # so we need to convert to a mode string for IO::Handle->new_from_fd
1615 my $flagstr = ($flags & O_RDWR) ? 'rw' : ($flags & O_WRONLY) ? 'w' : 'r';
1616 my $handle = IO::Handle->new_from_fd($fd, $flagstr);
1617 return $handle if $handle;
1618 my $err = $!; # save error before closing the raw fd
c8e94d4b 1619 syscall(PVE::Syscall::close, $fd); # close
21c56a96
WB
1620 $! = $err;
1621 return undef;
1622}
1623
1624sub mkdirat($$$) {
1625 my ($dirfd, $name, $mode) = @_;
c8e94d4b 1626 return syscall(PVE::Syscall::mkdirat, $dirfd, $name, $mode) == 0;
21c56a96
WB
1627}
1628
6cf6b404
FG
1629sub fchownat($$$$$) {
1630 my ($dirfd, $pathname, $owner, $group, $flags) = @_;
1631 return syscall(PVE::Syscall::fchownat, $dirfd, $pathname, $owner, $group, $flags) == 0;
1632}
1633
9867ff7a
DM
1634my $salt_starter = time();
1635
1636sub encrypt_pw {
1637 my ($pw) = @_;
1638
1639 $salt_starter++;
1640 my $salt = substr(Digest::SHA::sha1_base64(time() + $salt_starter + $$), 0, 8);
1641
1642 # crypt does not want '+' in salt (see 'man crypt')
1643 $salt =~ s/\+/X/g;
1644
1645 return crypt(encode("utf8", $pw), "\$5\$$salt\$");
1646}
1647
8e677e74 1648# intended usage: convert_size($val, "kb" => "gb")
95386daf
DC
1649# we round up to the next integer by default
1650# E.g. `convert_size(1023, "b" => "kb")` returns 1
8e677e74 1651# use $no_round_up to switch this off, above example would then return 0
95386daf
DC
1652# this is also true for converting down e.g. 0.0005 gb to mb returns 1
1653# (0 if $no_round_up is true)
1654# allowed formats for value:
1655# 1234
1656# 1234.
1657# 1234.1234
1658# .1234
8e677e74
TL
1659sub convert_size {
1660 my ($value, $from, $to, $no_round_up) = @_;
1661
1662 my $units = {
1663 b => 0,
1664 kb => 1,
1665 mb => 2,
1666 gb => 3,
1667 tb => 4,
1668 pb => 5,
1669 };
1670
95386daf
DC
1671 die "no value given"
1672 if !defined($value) || $value eq "";
1673
1674 $from = lc($from // ''); $to = lc($to // '');
8e677e74 1675 die "unknown 'from' and/or 'to' units ($from => $to)"
95386daf 1676 if !defined($units->{$from}) || !defined($units->{$to});
8e677e74 1677
95386daf
DC
1678 die "value '$value' is not a valid, positive number"
1679 if $value !~ m/^(?:[0-9]+\.?[0-9]*|[0-9]*\.[0-9]+)$/;
8e677e74 1680
95386daf
DC
1681 my $shift_amount = ($units->{$from} - $units->{$to}) * 10;
1682
1683 $value *= 2**$shift_amount;
1684 $value++ if !$no_round_up && ($value - int($value)) > 0.0;
8e677e74 1685
95386daf 1686 return int($value);
8e677e74
TL
1687}
1688
e03a8365
DC
1689# uninterruptible readline
1690# retries on EINTR
1691sub readline_nointr {
1692 my ($fh) = @_;
1693 my $line;
1694 while (1) {
1695 $line = <$fh>;
1696 last if defined($line) || ($! != EINTR);
1697 }
1698 return $line;
1699}
1700
ce007e99 1701my $host_arch;
b8faece3 1702sub get_host_arch {
ce007e99
SR
1703 $host_arch = (POSIX::uname())[4] if !$host_arch;
1704 return $host_arch;
732b693f
DM
1705}
1706
243c4e58
WB
1707# Devices are: [ (12 bits minor) (12 bits major) (8 bits minor) ]
1708sub dev_t_major($) {
1709 my ($dev_t) = @_;
1710 return (int($dev_t) & 0xfff00) >> 8;
1711}
1712
1713sub dev_t_minor($) {
1714 my ($dev_t) = @_;
1715 $dev_t = int($dev_t);
1716 return (($dev_t >> 12) & 0xfff00) | ($dev_t & 0xff);
1717}
1718
a59544e7
SR
1719# Given an array of array refs [ \[a b c], \[a b b], \[e b a] ]
1720# Returns the intersection of elements as a single array [a b]
1721sub array_intersect {
1722 my ($arrays) = @_;
1723
3982313e
TL
1724 if (!ref($arrays->[0])) {
1725 $arrays = [ grep { ref($_) eq 'ARRAY' } @_ ];
1726 }
1727
38586028
TL
1728 return [] if scalar(@$arrays) == 0;
1729 return $arrays->[0] if scalar(@$arrays) == 1;
a59544e7 1730
4c28a8bc
TL
1731 my $array_unique = sub {
1732 my %seen = ();
1733 return grep { ! $seen{ $_ }++ } @_;
1734 };
1735
38586028
TL
1736 # base idea is to get all unique members from the first array, then
1737 # check the common elements with the next (uniquely made) one, only keep
1738 # those. Repeat for every array and at the end we only have those left
1739 # which exist in all arrays
1740 my $return_arr = [ $array_unique->(@{$arrays->[0]}) ];
a59544e7
SR
1741 for my $i (1 .. $#$arrays) {
1742 my %count = ();
38586028 1743 # $return_arr is already unique, explicit at before the loop, implicit below.
4c28a8bc 1744 foreach my $element (@$return_arr, $array_unique->(@{$arrays->[$i]})) {
a59544e7
SR
1745 $count{$element}++;
1746 }
1747 $return_arr = [];
1748 foreach my $element (keys %count) {
1749 push @$return_arr, $element if $count{$element} > 1;
1750 }
26a68cf6 1751 last if scalar(@$return_arr) == 0; # empty intersection, early exit
a59544e7
SR
1752 }
1753
1754 return $return_arr;
1755}
1756
76c5fee8
WB
1757sub open_tree($$$) {
1758 my ($dfd, $pathname, $flags) = @_;
1759 return PVE::Syscall::file_handle_result(syscall(
1760 &PVE::Syscall::open_tree,
1761 $dfd,
1762 $pathname,
1763 $flags,
1764 ));
1765}
1766
1767sub move_mount($$$$$) {
1768 my ($from_dirfd, $from_pathname, $to_dirfd, $to_pathname, $flags) = @_;
1769 return 0 == syscall(
1770 &PVE::Syscall::move_mount,
1771 $from_dirfd,
1772 $from_pathname,
1773 $to_dirfd,
1774 $to_pathname,
1775 $flags,
1776 );
1777}
1778
1779sub fsopen($$) {
1780 my ($fsname, $flags) = @_;
1781 return PVE::Syscall::file_handle_result(syscall(&PVE::Syscall::fsopen, $fsname, $flags));
1782}
1783
1784sub fsmount($$$) {
1785 my ($fd, $flags, $mount_attrs) = @_;
1786 return PVE::Syscall::file_handle_result(syscall(
1787 &PVE::Syscall::fsmount,
1788 $fd,
1789 $flags,
1790 $mount_attrs,
1791 ));
1792}
1793
1794sub fspick($$$) {
1795 my ($dirfd, $pathname, $flags) = @_;
1796 return PVE::Syscall::file_handle_result(syscall(
1797 &PVE::Syscall::fspick,
1798 $dirfd,
1799 $pathname,
1800 $flags,
1801 ));
1802}
1803
1804sub fsconfig($$$$$) {
1805 my ($fd, $command, $key, $value, $aux) = @_;
1806 return 0 == syscall(&PVE::Syscall::fsconfig, $fd, $command, $key, $value, $aux);
1807}
1808
1809# "raw" mount, old api, not for generic use (as it does not invoke any helpers).
1810# use for lower level stuff such as bind/remount/... or simple tmpfs mounts
1811sub mount($$$$$) {
1812 my ($source, $target, $filesystemtype, $mountflags, $data) = @_;
1813 return 0 == syscall(
1814 &PVE::Syscall::mount,
1815 $source,
1816 $target,
1817 $filesystemtype,
1818 $mountflags,
1819 $data,
1820 );
1821}
a59544e7 1822
890d25d9
FE
1823sub safe_compare {
1824 my ($left, $right, $cmp) = @_;
1825
1826 return 0 if !defined($left) && !defined($right);
1827 return -1 if !defined($left);
1828 return 1 if !defined($right);
1829 return $cmp->($left, $right);
1830}
1831
e143e9d8 18321;