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