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