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