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