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