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