]> git.proxmox.com Git - pve-manager.git/blame - PVE/VZDump.pm
ui/storage: cifs: reoder fields
[pve-manager.git] / PVE / VZDump.pm
CommitLineData
aaeeeebe
DM
1package PVE::VZDump;
2
aaeeeebe
DM
3use strict;
4use warnings;
5use Fcntl ':flock';
31aef761 6use PVE::Exception qw(raise_param_exc);
aaeeeebe
DM
7use IO::File;
8use IO::Select;
9use IPC::Open3;
aaeeeebe 10use File::Path;
98e84b16 11use PVE::RPCEnvironment;
4a4051d8
DM
12use PVE::Storage;
13use PVE::Cluster qw(cfs_read_file);
aaeeeebe
DM
14use Time::localtime;
15use Time::Local;
ac27b58d 16use PVE::JSONSchema qw(get_standard_option);
10a9a736 17use PVE::HA::Env::PVE2;
2de3ee58 18use PVE::HA::Config;
a5c94797 19use PVE::VZDump::Plugin;
aaeeeebe
DM
20
21my @posix_filesystems = qw(ext3 ext4 nfs nfs4 reiserfs xfs);
22
23my $lockfile = '/var/run/vzdump.lock';
24
8682f6fc
WL
25my $pidfile = '/var/run/vzdump.pid';
26
aaeeeebe
DM
27my $logdir = '/var/log/vzdump';
28
dafb6246 29my @plugins = qw();
aaeeeebe 30
cc61ea36
TL
31my $confdesc = {
32 vmid => {
33 type => 'string', format => 'pve-vmid-list',
2fcb9347 34 description => "The ID of the guest system you want to backup.",
e1bde280 35 completion => \&PVE::Cluster::complete_local_vmid,
cc61ea36
TL
36 optional => 1,
37 },
38 node => get_standard_option('pve-node', {
39 description => "Only run if executed on this node.",
e1bde280 40 completion => \&PVE::Cluster::get_nodelist,
cc61ea36
TL
41 optional => 1,
42 }),
43 all => {
44 type => 'boolean',
2fcb9347 45 description => "Backup all known guest systems on this host.",
cc61ea36
TL
46 optional => 1,
47 default => 0,
48 },
49 stdexcludes => {
50 type => 'boolean',
af77c164 51 description => "Exclude temporary files and logs.",
cc61ea36
TL
52 optional => 1,
53 default => 1,
54 },
55 compress => {
56 type => 'string',
57 description => "Compress dump file.",
58 optional => 1,
59 enum => ['0', '1', 'gzip', 'lzo'],
d1918d1b 60 default => '0',
cc61ea36
TL
61 },
62 pigz=> {
63 type => "integer",
af77c164 64 description => "Use pigz instead of gzip when N>0.".
cc61ea36
TL
65 " N=1 uses half of cores, N>1 uses N as thread count.",
66 optional => 1,
67 default => 0,
68 },
69 quiet => {
70 type => 'boolean',
71 description => "Be quiet.",
72 optional => 1,
73 default => 0,
74 },
75 mode => {
76 type => 'string',
77 description => "Backup mode.",
78 optional => 1,
1ab98f05 79 default => 'snapshot',
cc61ea36
TL
80 enum => [ 'snapshot', 'suspend', 'stop' ],
81 },
82 exclude => {
83 type => 'string', format => 'pve-vmid-list',
2fcb9347 84 description => "Exclude specified guest systems (assumes --all)",
cc61ea36
TL
85 optional => 1,
86 },
87 'exclude-path' => {
88 type => 'string', format => 'string-alist',
af77c164 89 description => "Exclude certain files/directories (shell globs).",
cc61ea36
TL
90 optional => 1,
91 },
92 mailto => {
93 type => 'string', format => 'string-list',
4f367c19
FG
94 description => "Comma-separated list of email addresses that should" .
95 " receive email notifications.",
cc61ea36
TL
96 optional => 1,
97 },
98 mailnotification => {
99 type => 'string',
100 description => "Specify when to send an email",
101 optional => 1,
102 enum => [ 'always', 'failure' ],
103 default => 'always',
104 },
105 tmpdir => {
106 type => 'string',
107 description => "Store temporary files to specified directory.",
108 optional => 1,
109 },
110 dumpdir => {
111 type => 'string',
112 description => "Store resulting files to specified directory.",
113 optional => 1,
114 },
115 script => {
116 type => 'string',
117 description => "Use specified hook script.",
118 optional => 1,
119 },
120 storage => get_standard_option('pve-storage-id', {
121 description => "Store resulting file to this storage.",
e1bde280 122 completion => \&complete_backup_storage,
cc61ea36
TL
123 optional => 1,
124 }),
125 stop => {
126 type => 'boolean',
127 description => "Stop runnig backup jobs on this host.",
128 optional => 1,
129 default => 0,
130 },
131 size => {
132 type => 'integer',
e2a2525e 133 description => "Unused, will be removed in a future release.",
cc61ea36
TL
134 optional => 1,
135 minimum => 500,
1ab98f05 136 default => 1024,
cc61ea36
TL
137 },
138 bwlimit => {
139 type => 'integer',
140 description => "Limit I/O bandwidth (KBytes per second).",
141 optional => 1,
142 minimum => 0,
1ab98f05 143 default => 0,
cc61ea36
TL
144 },
145 ionice => {
146 type => 'integer',
147 description => "Set CFQ ionice priority.",
148 optional => 1,
149 minimum => 0,
150 maximum => 8,
1ab98f05 151 default => 7,
cc61ea36
TL
152 },
153 lockwait => {
154 type => 'integer',
155 description => "Maximal time to wait for the global lock (minutes).",
156 optional => 1,
157 minimum => 0,
1ab98f05 158 default => 3*60, # 3 hours
cc61ea36
TL
159 },
160 stopwait => {
161 type => 'integer',
2fcb9347 162 description => "Maximal time to wait until a guest system is stopped (minutes).",
cc61ea36
TL
163 optional => 1,
164 minimum => 0,
1ab98f05 165 default => 10, # 10 minutes
cc61ea36
TL
166 },
167 maxfiles => {
168 type => 'integer',
2fcb9347 169 description => "Maximal number of backup files per guest system.",
cc61ea36
TL
170 optional => 1,
171 minimum => 1,
1ab98f05 172 default => 1,
cc61ea36
TL
173 },
174 remove => {
175 type => 'boolean',
176 description => "Remove old backup files if there are more than 'maxfiles' backup files.",
177 optional => 1,
178 default => 1,
179 },
180};
181
aaeeeebe 182# Load available plugins
8187f6b0
DM
183my @pve_vzdump_classes = qw(PVE::VZDump::QemuServer PVE::VZDump::LXC);
184foreach my $plug (@pve_vzdump_classes) {
185 my $filename = "/usr/share/perl5/$plug.pm";
186 $filename =~ s!::!/!g;
187 if (-f $filename) {
188 eval { require $filename; };
189 if (!$@) {
190 $plug->import ();
191 push @plugins, $plug;
192 } else {
c76d0106 193 die $@;
8187f6b0
DM
194 }
195 }
aaeeeebe
DM
196}
197
198# helper functions
199
aaeeeebe
DM
200sub debugmsg {
201 my ($mtype, $msg, $logfd, $syslog) = @_;
202
a5c94797 203 PVE::VZDump::Plugin::debugmsg(@_);
aaeeeebe
DM
204}
205
206sub run_command {
207 my ($logfd, $cmdstr, %param) = @_;
208
7f910306 209 my $logfunc = sub {
4a4051d8 210 my $line = shift;
4a4051d8 211 debugmsg ('info', $line, $logfd);
aaeeeebe
DM
212 };
213
7f910306 214 PVE::Tools::run_command($cmdstr, %param, logfunc => $logfunc);
aaeeeebe
DM
215}
216
217sub storage_info {
218 my $storage = shift;
219
bbcfdc08 220 my $cfg = PVE::Storage::config();
4a4051d8 221 my $scfg = PVE::Storage::storage_config($cfg, $storage);
aaeeeebe
DM
222 my $type = $scfg->{type};
223
224 die "can't use storage type '$type' for backup\n"
6d09915c
WL
225 if (!($type eq 'dir' || $type eq 'nfs' || $type eq 'glusterfs'
226 || $type eq 'cifs'));
b13a7a31 227 die "can't use storage '$storage' for backups - wrong content type\n"
aaeeeebe
DM
228 if (!$scfg->{content}->{backup});
229
4a4051d8 230 PVE::Storage::activate_storage($cfg, $storage);
aaeeeebe
DM
231
232 return {
30edfad9 233 dumpdir => PVE::Storage::get_backup_dir($cfg, $storage),
19d5c0f2 234 maxfiles => $scfg->{maxfiles},
aaeeeebe
DM
235 };
236}
237
238sub format_size {
239 my $size = shift;
240
241 my $kb = $size / 1024;
242
243 if ($kb < 1024) {
244 return int ($kb) . "KB";
245 }
246
247 my $mb = $size / (1024*1024);
248
249 if ($mb < 1024) {
250 return int ($mb) . "MB";
251 } else {
252 my $gb = $mb / 1024;
253 return sprintf ("%.2fGB", $gb);
254 }
255}
256
257sub format_time {
258 my $seconds = shift;
259
260 my $hours = int ($seconds/3600);
261 $seconds = $seconds - $hours*3600;
262 my $min = int ($seconds/60);
263 $seconds = $seconds - $min*60;
264
265 return sprintf ("%02d:%02d:%02d", $hours, $min, $seconds);
266}
267
268sub encode8bit {
269 my ($str) = @_;
270
271 $str =~ s/^(.{990})/$1\n/mg; # reduce line length
272
273 return $str;
274}
275
276sub escape_html {
277 my ($str) = @_;
278
279 $str =~ s/&/&amp;/g;
280 $str =~ s/</&lt;/g;
281 $str =~ s/>/&gt;/g;
282
283 return $str;
284}
285
286sub check_bin {
287 my ($bin) = @_;
288
289 foreach my $p (split (/:/, $ENV{PATH})) {
290 my $fn = "$p/$bin";
291 if (-x $fn) {
292 return $fn;
293 }
294 }
295
296 die "unable to find command '$bin'\n";
297}
298
299sub check_vmids {
300 my (@vmids) = @_;
301
302 my $res = [];
303 foreach my $vmid (@vmids) {
304 die "ERROR: strange VM ID '${vmid}'\n" if $vmid !~ m/^\d+$/;
305 $vmid = int ($vmid); # remove leading zeros
4a4051d8 306 next if !$vmid;
aaeeeebe
DM
307 push @$res, $vmid;
308 }
309
310 return $res;
311}
312
313
314sub read_vzdump_defaults {
315
316 my $fn = "/etc/vzdump.conf";
317
cc61ea36 318 my $defaults = {
1ab98f05
WB
319 map {
320 my $default = $confdesc->{$_}->{default};
321 defined($default) ? ($_ => $default) : ()
322 } keys %$confdesc
aaeeeebe
DM
323 };
324
cc61ea36
TL
325 my $raw;
326 eval { $raw = PVE::Tools::file_get_contents($fn); };
327 return $defaults if $@;
aaeeeebe 328
cc61ea36
TL
329 my $conf_schema = { type => 'object', properties => $confdesc, };
330 my $res = PVE::JSONSchema::parse_config($conf_schema, $fn, $raw);
6368bbd4
WB
331 if (my $excludes = $res->{'exclude-path'}) {
332 $res->{'exclude-path'} = PVE::Tools::split_args($excludes);
333 }
74b47fd8
FG
334 if (defined($res->{mailto})) {
335 my @mailto = PVE::Tools::split_list($res->{mailto});
336 $res->{mailto} = [ @mailto ];
337 }
cc61ea36
TL
338
339 foreach my $key (keys %$defaults) {
e94fa5cb 340 $res->{$key} = $defaults->{$key} if !defined($res->{$key});
aaeeeebe 341 }
aaeeeebe
DM
342
343 return $res;
344}
345
6ec9de44 346sub sendmail {
44b21574 347 my ($self, $tasklist, $totaltime, $err, $detail_pre, $detail_post) = @_;
aaeeeebe
DM
348
349 my $opts = $self->{opts};
350
351 my $mailto = $opts->{mailto};
352
4a4051d8 353 return if !($mailto && scalar(@$mailto));
aaeeeebe
DM
354
355 my $cmdline = $self->{cmdline};
356
357 my $ecount = 0;
358 foreach my $task (@$tasklist) {
359 $ecount++ if $task->{state} ne 'ok';
360 chomp $task->{msg} if $task->{msg};
361 $task->{backuptime} = 0 if !$task->{backuptime};
362 $task->{size} = 0 if !$task->{size};
363 $task->{tarfile} = 'unknown' if !$task->{tarfile};
364 $task->{hostname} = "VM $task->{vmid}" if !$task->{hostname};
365
366 if ($task->{state} eq 'todo') {
367 $task->{msg} = 'aborted';
368 }
369 }
370
02e59759
DM
371 my $notify = $opts->{mailnotification} || 'always';
372 return if (!$ecount && !$err && ($notify eq 'failure'));
8b4b4860 373
6ec9de44 374 my $stat = ($ecount || $err) ? 'backup failed' : 'backup successful';
403761c4
WB
375 if ($err) {
376 if ($err =~ /\n/) {
377 $stat .= ": multiple problems";
378 } else {
379 $stat .= ": $err";
380 $err = undef;
381 }
382 }
aaeeeebe 383
4a4051d8 384 my $hostname = `hostname -f` || PVE::INotify::nodename();
aaeeeebe
DM
385 chomp $hostname;
386
aaeeeebe 387 # text part
403761c4
WB
388 my $text = $err ? "$err\n\n" : '';
389 $text .= sprintf ("%-10s %-6s %10s %10s %s\n", qw(VMID STATUS TIME SIZE FILENAME));
aaeeeebe
DM
390 foreach my $task (@$tasklist) {
391 my $vmid = $task->{vmid};
392 if ($task->{state} eq 'ok') {
393
7a0a8e67
TL
394 $text .= sprintf ("%-10s %-6s %10s %10s %s\n", $vmid,
395 $task->{state},
aaeeeebe
DM
396 format_time($task->{backuptime}),
397 format_size ($task->{size}),
398 $task->{tarfile});
399 } else {
7a0a8e67
TL
400 $text .= sprintf ("%-10s %-6s %10s %8.2fMB %s\n", $vmid,
401 $task->{state},
aaeeeebe
DM
402 format_time($task->{backuptime}),
403 0, '-');
404 }
405 }
7a0a8e67 406
0da2260f 407 $text .= "\nDetailed backup logs:\n\n";
7a0a8e67 408 $text .= "$cmdline\n\n";
aaeeeebe 409
44b21574 410 $text .= $detail_pre . "\n" if defined($detail_pre);
aaeeeebe
DM
411 foreach my $task (@$tasklist) {
412 my $vmid = $task->{vmid};
413 my $log = $task->{tmplog};
414 if (!$log) {
7a0a8e67 415 $text .= "$vmid: no log available\n\n";
aaeeeebe
DM
416 next;
417 }
418 open (TMP, "$log");
7a0a8e67 419 while (my $line = <TMP>) { $text .= encode8bit ("$vmid: $line"); }
aaeeeebe 420 close (TMP);
7a0a8e67 421 $text .= "\n";
aaeeeebe 422 }
44b21574 423 $text .= $detail_post if defined($detail_post);
aaeeeebe 424
aaeeeebe 425 # html part
7a0a8e67 426 my $html = "<html><body>\n";
403761c4 427 $html .= "<p>" . (escape_html($err) =~ s/\n/<br>/gr) . "</p>\n" if $err;
7a0a8e67
TL
428 $html .= "<table border=1 cellpadding=3>\n";
429 $html .= "<tr><td>VMID<td>NAME<td>STATUS<td>TIME<td>SIZE<td>FILENAME</tr>\n";
aaeeeebe
DM
430
431 my $ssize = 0;
432
433 foreach my $task (@$tasklist) {
434 my $vmid = $task->{vmid};
435 my $name = $task->{hostname};
436
437 if ($task->{state} eq 'ok') {
438
439 $ssize += $task->{size};
440
7a0a8e67 441 $html .= sprintf ("<tr><td>%s<td>%s<td>OK<td>%s<td align=right>%s<td>%s</tr>\n",
aaeeeebe
DM
442 $vmid, $name,
443 format_time($task->{backuptime}),
444 format_size ($task->{size}),
445 escape_html ($task->{tarfile}));
446 } else {
7a0a8e67
TL
447 $html .= sprintf ("<tr><td>%s<td>%s<td><font color=red>FAILED<td>%s<td colspan=2>%s</tr>\n",
448 $vmid, $name, format_time($task->{backuptime}),
aaeeeebe
DM
449 escape_html ($task->{msg}));
450 }
451 }
452
7a0a8e67 453 $html .= sprintf ("<tr><td align=left colspan=3>TOTAL<td>%s<td>%s<td></tr>",
aaeeeebe
DM
454 format_time ($totaltime), format_size ($ssize));
455
7a0a8e67
TL
456 $html .= "</table><br><br>\n";
457 $html .= "Detailed backup logs:<br /><br />\n";
458 $html .= "<pre>\n";
459 $html .= escape_html($cmdline) . "\n\n";
aaeeeebe 460
44b21574 461 $html .= escape_html($detail_pre) . "\n" if defined($detail_pre);
aaeeeebe
DM
462 foreach my $task (@$tasklist) {
463 my $vmid = $task->{vmid};
464 my $log = $task->{tmplog};
465 if (!$log) {
7a0a8e67 466 $html .= "$vmid: no log available\n\n";
aaeeeebe
DM
467 next;
468 }
469 open (TMP, "$log");
470 while (my $line = <TMP>) {
471 if ($line =~ m/^\S+\s\d+\s+\d+:\d+:\d+\s+(ERROR|WARN):/) {
7a0a8e67
TL
472 $html .= encode8bit ("$vmid: <font color=red>".
473 escape_html ($line) . "</font>");
aaeeeebe 474 } else {
7a0a8e67 475 $html .= encode8bit ("$vmid: " . escape_html ($line));
aaeeeebe
DM
476 }
477 }
478 close (TMP);
7a0a8e67 479 $html .= "\n";
aaeeeebe 480 }
44b21574 481 $html .= escape_html($detail_post) if defined($detail_post);
7a0a8e67
TL
482 $html .= "</pre></body></html>\n";
483 # end html part
aaeeeebe 484
7a0a8e67 485 my $subject = "vzdump backup status ($hostname) : $stat";
aaeeeebe 486
7a0a8e67
TL
487 my $dcconf = PVE::Cluster::cfs_read_file('datacenter.cfg');
488 my $mailfrom = $dcconf->{email_from} || "root";
aaeeeebe 489
7a0a8e67 490 PVE::Tools::sendmail($mailto, $subject, $text, $html, $mailfrom, "vzdump backup tool");
aaeeeebe
DM
491};
492
493sub new {
a7e42354 494 my ($class, $cmdline, $opts, $skiplist) = @_;
aaeeeebe
DM
495
496 mkpath $logdir;
497
498 check_bin ('cp');
499 check_bin ('df');
500 check_bin ('sendmail');
501 check_bin ('rsync');
502 check_bin ('tar');
503 check_bin ('mount');
504 check_bin ('umount');
505 check_bin ('cstream');
506 check_bin ('ionice');
507
47664cbe 508 if ($opts->{mode} && $opts->{mode} eq 'snapshot') {
aaeeeebe
DM
509 check_bin ('lvcreate');
510 check_bin ('lvs');
511 check_bin ('lvremove');
512 }
513
514 my $defaults = read_vzdump_defaults();
515
84ad4385
DM
516 my $maxfiles = $opts->{maxfiles}; # save here, because we overwrite with default
517
899b8373
DM
518 $opts->{remove} = 1 if !defined($opts->{remove});
519
aaeeeebe 520 foreach my $k (keys %$defaults) {
b1f09117 521 next if $k eq 'exclude-path'; # dealt with separately
aaeeeebe
DM
522 if ($k eq 'dumpdir' || $k eq 'storage') {
523 $opts->{$k} = $defaults->{$k} if !defined ($opts->{dumpdir}) &&
524 !defined ($opts->{storage});
525 } else {
526 $opts->{$k} = $defaults->{$k} if !defined ($opts->{$k});
527 }
528 }
529
aaeeeebe
DM
530 $opts->{dumpdir} =~ s|/+$|| if ($opts->{dumpdir});
531 $opts->{tmpdir} =~ s|/+$|| if ($opts->{tmpdir});
532
a7e42354
DM
533 $skiplist = [] if !$skiplist;
534 my $self = bless { cmdline => $cmdline, opts => $opts, skiplist => $skiplist };
aaeeeebe 535
45f16a06 536 my $findexcl = $self->{findexcl} = [];
f4a8bab4 537 if ($defaults->{'exclude-path'}) {
45f16a06 538 push @$findexcl, @{$defaults->{'exclude-path'}};
f4a8bab4
DM
539 }
540
aaeeeebe 541 if ($opts->{'exclude-path'}) {
45f16a06 542 push @$findexcl, @{$opts->{'exclude-path'}};
aaeeeebe
DM
543 }
544
545 if ($opts->{stdexcludes}) {
e42ae622 546 push @$findexcl, '/tmp/?*',
45f16a06 547 '/var/tmp/?*',
0568e342 548 '/var/run/?*.pid';
aaeeeebe
DM
549 }
550
551 foreach my $p (@plugins) {
552
553 my $pd = $p->new ($self);
554
555 push @{$self->{plugins}}, $pd;
aaeeeebe
DM
556 }
557
558 if (!$opts->{dumpdir} && !$opts->{storage}) {
19d5c0f2 559 $opts->{storage} = 'local';
aaeeeebe
DM
560 }
561
403761c4
WB
562 my $errors = '';
563
aaeeeebe 564 if ($opts->{storage}) {
c3b58274
FG
565 my $info;
566 eval {
567 $info = storage_info ($opts->{storage});
568 };
569 $errors .= "could not get storage information for '$opts->{storage}': $@"
570 if ($@);
aaeeeebe 571 $opts->{dumpdir} = $info->{dumpdir};
84ad4385 572 $maxfiles = $info->{maxfiles} if !defined($maxfiles) && defined($info->{maxfiles});
aaeeeebe 573 } elsif ($opts->{dumpdir}) {
403761c4 574 $errors .= "dumpdir '$opts->{dumpdir}' does not exist"
aaeeeebe
DM
575 if ! -d $opts->{dumpdir};
576 } else {
577 die "internal error";
578 }
579
580 if ($opts->{tmpdir} && ! -d $opts->{tmpdir}) {
403761c4
WB
581 $errors .= "\n" if $errors;
582 $errors .= "tmpdir '$opts->{tmpdir}' does not exist";
583 }
584
585 if ($errors) {
586 eval { $self->sendmail([], 0, $errors); };
587 debugmsg ('err', $@) if $@;
588 die "$errors\n";
aaeeeebe
DM
589 }
590
84ad4385 591 $opts->{maxfiles} = $maxfiles if defined($maxfiles);
899b8373 592
aaeeeebe
DM
593 return $self;
594
595}
596
aaeeeebe
DM
597sub get_mount_info {
598 my ($dir) = @_;
599
8572d646
DM
600 # Note: df 'available' can be negative, and percentage set to '-'
601
d93d0459 602 my $cmd = [ 'df', '-P', '-T', '-B', '1', $dir];
aaeeeebe 603
d93d0459 604 my $res;
aaeeeebe 605
d93d0459
DM
606 my $parser = sub {
607 my $line = shift;
8572d646
DM
608 if (my ($fsid, $fstype, undef, $mp) = $line =~
609 m!(\S+.*)\s+(\S+)\s+\d+\s+\-?\d+\s+\d+\s+(\d+%|-)\s+(/.*)$!) {
d93d0459
DM
610 $res = {
611 device => $fsid,
612 fstype => $fstype,
613 mountpoint => $mp,
614 };
615 }
aaeeeebe 616 };
d93d0459
DM
617
618 eval { PVE::Tools::run_command($cmd, errfunc => sub {}, outfunc => $parser); };
619 warn $@ if $@;
620
621 return $res;
aaeeeebe
DM
622}
623
aaeeeebe 624sub getlock {
eab837c4 625 my ($self, $upid) = @_;
aaeeeebe 626
8682f6fc
WL
627 my $fh;
628
aaeeeebe
DM
629 my $maxwait = $self->{opts}->{lockwait} || $self->{lockwait};
630
eab837c4
DM
631 die "missimg UPID" if !$upid; # should not happen
632
aaeeeebe
DM
633 if (!open (SERVER_FLCK, ">>$lockfile")) {
634 debugmsg ('err', "can't open lock on file '$lockfile' - $!", undef, 1);
6ec9de44 635 die "can't open lock on file '$lockfile' - $!";
aaeeeebe
DM
636 }
637
eab837c4 638 if (!flock (SERVER_FLCK, LOCK_EX|LOCK_NB)) {
aaeeeebe 639
eab837c4
DM
640 if (!$maxwait) {
641 debugmsg ('err', "can't aquire lock '$lockfile' (wait = 0)", undef, 1);
642 die "can't aquire lock '$lockfile' (wait = 0)";
643 }
aaeeeebe 644
eab837c4 645 debugmsg('info', "trying to get global lock - waiting...", undef, 1);
aaeeeebe 646
eab837c4
DM
647 eval {
648 alarm ($maxwait * 60);
aaeeeebe 649
eab837c4 650 local $SIG{ALRM} = sub { alarm (0); die "got timeout\n"; };
aaeeeebe 651
eab837c4
DM
652 if (!flock (SERVER_FLCK, LOCK_EX)) {
653 my $err = $!;
654 close (SERVER_FLCK);
655 alarm (0);
656 die "$err\n";
657 }
aaeeeebe 658 alarm (0);
eab837c4 659 };
aaeeeebe 660 alarm (0);
aaeeeebe 661
eab837c4
DM
662 my $err = $@;
663
664 if ($err) {
665 debugmsg ('err', "can't aquire lock '$lockfile' - $err", undef, 1);
666 die "can't aquire lock '$lockfile' - $err";
667 }
aaeeeebe 668
eab837c4 669 debugmsg('info', "got global lock", undef, 1);
aaeeeebe
DM
670 }
671
eab837c4 672 PVE::Tools::file_set_contents($pidfile, $upid);
aaeeeebe
DM
673}
674
675sub run_hook_script {
676 my ($self, $phase, $task, $logfd) = @_;
677
678 my $opts = $self->{opts};
679
680 my $script = $opts->{script};
681
682 return if !$script;
683
684 my $cmd = "$script $phase";
685
686 $cmd .= " $task->{mode} $task->{vmid}" if ($task);
687
688 local %ENV;
689
28272ca2
DM
690 # set immutable opts directly (so they are available in all phases)
691 $ENV{STOREID} = $opts->{storage} if $opts->{storage};
692 $ENV{DUMPDIR} = $opts->{dumpdir} if $opts->{dumpdir};
693
694 foreach my $ek (qw(vmtype hostname tarfile logfile)) {
aaeeeebe
DM
695 $ENV{uc($ek)} = $task->{$ek} if $task->{$ek};
696 }
697
698 run_command ($logfd, $cmd);
699}
700
d7550e09 701sub compressor_info {
778d5b6d
TL
702 my ($opts) = @_;
703 my $opt_compress = $opts->{compress};
d7550e09
DM
704
705 if (!$opt_compress || $opt_compress eq '0') {
706 return undef;
707 } elsif ($opt_compress eq '1' || $opt_compress eq 'lzo') {
708 return ('lzop', 'lzo');
709 } elsif ($opt_compress eq 'gzip') {
778d5b6d 710 if ($opts->{pigz} > 0) {
8555b100
TL
711 my $pigz_threads = $opts->{pigz};
712 if ($pigz_threads == 1) {
713 my $cpuinfo = PVE::ProcFSTools::read_cpuinfo();
714 $pigz_threads = int(($cpuinfo->{cpus} + 1)/2);
715 }
778d5b6d
TL
716 return ("pigz -p ${pigz_threads}", 'gz');
717 } else {
718 return ('gzip', 'gz');
719 }
d7550e09
DM
720 } else {
721 die "internal error - unknown compression option '$opt_compress'";
722 }
723}
899b8373
DM
724
725sub get_backup_file_list {
726 my ($dir, $bkname, $exclude_fn) = @_;
727
728 my $bklist = [];
729 foreach my $fn (<$dir/${bkname}-*>) {
730 next if $exclude_fn && $fn eq $exclude_fn;
757fd3d5 731 if ($fn =~ m!/(${bkname}-(\d{4})_(\d{2})_(\d{2})-(\d{2})_(\d{2})_(\d{2})\.(tgz|((tar|vma)(\.(gz|lzo))?)))$!) {
899b8373 732 $fn = "$dir/$1"; # untaint
998e4eeb 733 my $t = timelocal ($7, $6, $5, $4, $3 - 1, $2);
899b8373
DM
734 push @$bklist, [$fn, $t];
735 }
736 }
737
738 return $bklist;
739}
d7550e09 740
aaeeeebe
DM
741sub exec_backup_task {
742 my ($self, $task) = @_;
743
744 my $opts = $self->{opts};
745
746 my $vmid = $task->{vmid};
747 my $plugin = $task->{plugin};
748
749 my $vmstarttime = time ();
750
751 my $logfd;
752
753 my $cleanup = {};
754
755 my $vmstoptime = 0;
756
757 eval {
758 die "unable to find VM '$vmid'\n" if !$plugin;
759
2de3ee58 760 # for now we deny backups of a running ha managed service in *stop* mode
83ec8f81 761 # as it interferes with the HA stack (started services should not stop).
2de3ee58 762 if ($opts->{mode} eq 'stop' &&
83ec8f81 763 PVE::HA::Config::vm_is_ha_managed($vmid, 'started'))
2de3ee58
TL
764 {
765 die "Cannot execute a backup with stop mode on a HA managed and".
766 " enabled Service. Use snapshot mode or disable the Service.\n";
767 }
768
aaeeeebe
DM
769 my $vmtype = $plugin->type();
770
771 my $tmplog = "$logdir/$vmtype-$vmid.log";
772
773 my $lt = localtime();
774
775 my $bkname = "vzdump-$vmtype-$vmid";
776 my $basename = sprintf "${bkname}-%04d_%02d_%02d-%02d_%02d_%02d",
777 $lt->year + 1900, $lt->mon + 1, $lt->mday,
778 $lt->hour, $lt->min, $lt->sec;
779
899b8373
DM
780 my $maxfiles = $opts->{maxfiles};
781
782 if ($maxfiles && !$opts->{remove}) {
783 my $bklist = get_backup_file_list($opts->{dumpdir}, $bkname);
784 die "only $maxfiles backup(s) allowed - please consider to remove old backup files.\n"
785 if scalar(@$bklist) >= $maxfiles;
786 }
787
aaeeeebe
DM
788 my $logfile = $task->{logfile} = "$opts->{dumpdir}/$basename.log";
789
757fd3d5 790 my $ext = $vmtype eq 'qemu' ? '.vma' : '.tar';
778d5b6d 791 my ($comp, $comp_ext) = compressor_info($opts);
d7550e09
DM
792 if ($comp && $comp_ext) {
793 $ext .= ".${comp_ext}";
794 }
aaeeeebe
DM
795
796 if ($opts->{stdout}) {
797 $task->{tarfile} = '-';
798 } else {
799 my $tarfile = $task->{tarfile} = "$opts->{dumpdir}/$basename$ext";
800 $task->{tmptar} = $task->{tarfile};
801 $task->{tmptar} =~ s/\.[^\.]+$/\.dat/;
802 unlink $task->{tmptar};
803 }
804
805 $task->{vmtype} = $vmtype;
806
807 if ($opts->{tmpdir}) {
808 $task->{tmpdir} = "$opts->{tmpdir}/vzdumptmp$$";
809 } else {
810 # dumpdir is posix? then use it as temporary dir
5dc86eb8 811 my $info = get_mount_info($opts->{dumpdir});
aaeeeebe
DM
812 if ($vmtype eq 'qemu' ||
813 grep ($_ eq $info->{fstype}, @posix_filesystems)) {
814 $task->{tmpdir} = "$opts->{dumpdir}/$basename.tmp";
815 } else {
816 $task->{tmpdir} = "/var/tmp/vzdumptmp$$";
817 debugmsg ('info', "filesystem type on dumpdir is '$info->{fstype}' -" .
818 "using $task->{tmpdir} for temporary files", $logfd);
819 }
820 }
821
822 rmtree $task->{tmpdir};
823 mkdir $task->{tmpdir};
824 -d $task->{tmpdir} ||
825 die "unable to create temporary directory '$task->{tmpdir}'";
826
827 $logfd = IO::File->new (">$tmplog") ||
828 die "unable to create log file '$tmplog'";
829
830 $task->{dumpdir} = $opts->{dumpdir};
ff00abe6 831 $task->{storeid} = $opts->{storage};
aaeeeebe
DM
832 $task->{tmplog} = $tmplog;
833
834 unlink $logfile;
835
836 debugmsg ('info', "Starting Backup of VM $vmid ($vmtype)", $logfd, 1);
837
838 $plugin->set_logfd ($logfd);
839
840 # test is VM is running
841 my ($running, $status_text) = $plugin->vm_status ($vmid);
842
843 debugmsg ('info', "status = ${status_text}", $logfd);
844
845 # lock VM (prevent config changes)
846 $plugin->lock_vm ($vmid);
847
848 $cleanup->{unlock} = 1;
849
850 # prepare
851
6acb632a 852 my $mode = $running ? $task->{mode} : 'stop';
aaeeeebe
DM
853
854 if ($mode eq 'snapshot') {
855 my %saved_task = %$task;
856 eval { $plugin->prepare ($task, $vmid, $mode); };
857 if (my $err = $@) {
858 die $err if $err !~ m/^mode failure/;
859 debugmsg ('info', $err, $logfd);
860 debugmsg ('info', "trying 'suspend' mode instead", $logfd);
861 $mode = 'suspend'; # so prepare is called again below
862 %$task = %saved_task;
863 }
864 }
865
6acb632a
WB
866 $cleanup->{prepared} = 1;
867
aaeeeebe
DM
868 $task->{mode} = $mode;
869
870 debugmsg ('info', "backup mode: $mode", $logfd);
871
872 debugmsg ('info', "bandwidth limit: $opts->{bwlimit} KB/s", $logfd)
873 if $opts->{bwlimit};
874
875 debugmsg ('info', "ionice priority: $opts->{ionice}", $logfd);
876
877 if ($mode eq 'stop') {
878
879 $plugin->prepare ($task, $vmid, $mode);
880
881 $self->run_hook_script ('backup-start', $task, $logfd);
882
883 if ($running) {
884 debugmsg ('info', "stopping vm", $logfd);
885 $vmstoptime = time ();
886 $self->run_hook_script ('pre-stop', $task, $logfd);
887 $plugin->stop_vm ($task, $vmid);
888 $cleanup->{restart} = 1;
889 }
890
891
892 } elsif ($mode eq 'suspend') {
893
894 $plugin->prepare ($task, $vmid, $mode);
895
896 $self->run_hook_script ('backup-start', $task, $logfd);
897
8187f6b0
DM
898 if ($vmtype eq 'lxc') {
899 # pre-suspend rsync
900 $plugin->copy_data_phase1($task, $vmid);
901 }
902
aaeeeebe
DM
903 debugmsg ('info', "suspend vm", $logfd);
904 $vmstoptime = time ();
905 $self->run_hook_script ('pre-stop', $task, $logfd);
906 $plugin->suspend_vm ($task, $vmid);
907 $cleanup->{resume} = 1;
908
8187f6b0
DM
909 if ($vmtype eq 'lxc') {
910 # post-suspend rsync
911 $plugin->copy_data_phase2($task, $vmid);
912
913 debugmsg ('info', "resume vm", $logfd);
914 $cleanup->{resume} = 0;
915 $self->run_hook_script('pre-restart', $task, $logfd);
916 $plugin->resume_vm($task, $vmid);
d5047243 917 $self->run_hook_script('post-restart', $task, $logfd);
8187f6b0
DM
918 my $delay = time () - $vmstoptime;
919 debugmsg('info', "vm is online again after $delay seconds", $logfd);
920 }
921
aaeeeebe
DM
922 } elsif ($mode eq 'snapshot') {
923
c5be0f8c
DM
924 $self->run_hook_script ('backup-start', $task, $logfd);
925
aaeeeebe
DM
926 my $snapshot_count = $task->{snapshot_count} || 0;
927
928 $self->run_hook_script ('pre-stop', $task, $logfd);
929
930 if ($snapshot_count > 1) {
931 debugmsg ('info', "suspend vm to make snapshot", $logfd);
932 $vmstoptime = time ();
933 $plugin->suspend_vm ($task, $vmid);
934 $cleanup->{resume} = 1;
935 }
936
937 $plugin->snapshot ($task, $vmid);
938
939 $self->run_hook_script ('pre-restart', $task, $logfd);
940
941 if ($snapshot_count > 1) {
942 debugmsg ('info', "resume vm", $logfd);
943 $cleanup->{resume} = 0;
944 $plugin->resume_vm ($task, $vmid);
945 my $delay = time () - $vmstoptime;
946 debugmsg ('info', "vm is online again after $delay seconds", $logfd);
947 }
948
d5047243
FG
949 $self->run_hook_script ('post-restart', $task, $logfd);
950
aaeeeebe
DM
951 } else {
952 die "internal error - unknown mode '$mode'\n";
953 }
954
955 # assemble archive image
956 $plugin->assemble ($task, $vmid);
957
958 # produce archive
959
960 if ($opts->{stdout}) {
961 debugmsg ('info', "sending archive to stdout", $logfd);
d7550e09 962 $plugin->archive($task, $vmid, $task->{tmptar}, $comp);
aaeeeebe
DM
963 $self->run_hook_script ('backup-end', $task, $logfd);
964 return;
965 }
966
967 debugmsg ('info', "creating archive '$task->{tarfile}'", $logfd);
d7550e09 968 $plugin->archive($task, $vmid, $task->{tmptar}, $comp);
aaeeeebe
DM
969
970 rename ($task->{tmptar}, $task->{tarfile}) ||
971 die "unable to rename '$task->{tmptar}' to '$task->{tarfile}'\n";
972
973 # determine size
974 $task->{size} = (-s $task->{tarfile}) || 0;
975 my $cs = format_size ($task->{size});
976 debugmsg ('info', "archive file size: $cs", $logfd);
977
978 # purge older backup
979
899b8373
DM
980 if ($maxfiles && $opts->{remove}) {
981 my $bklist = get_backup_file_list($opts->{dumpdir}, $bkname, $task->{tarfile});
982 $bklist = [ sort { $b->[1] <=> $a->[1] } @$bklist ];
aaeeeebe 983
899b8373
DM
984 while (scalar (@$bklist) >= $maxfiles) {
985 my $d = pop @$bklist;
aaeeeebe
DM
986 debugmsg ('info', "delete old backup '$d->[0]'", $logfd);
987 unlink $d->[0];
988 my $logfn = $d->[0];
757fd3d5 989 $logfn =~ s/\.(tgz|((tar|vma)(\.(gz|lzo))?))$/\.log/;
aaeeeebe
DM
990 unlink $logfn;
991 }
992 }
993
994 $self->run_hook_script ('backup-end', $task, $logfd);
995 };
996 my $err = $@;
997
998 if ($plugin) {
999 # clean-up
1000
1001 if ($cleanup->{unlock}) {
1002 eval { $plugin->unlock_vm ($vmid); };
1003 warn $@ if $@;
1004 }
1005
6acb632a 1006 if ($cleanup->{prepared}) {
ca2605e7
DM
1007 # only call cleanup when necessary (when prepare was executed)
1008 eval { $plugin->cleanup ($task, $vmid) };
1009 warn $@ if $@;
1010 }
aaeeeebe
DM
1011
1012 eval { $plugin->set_logfd (undef); };
1013 warn $@ if $@;
1014
1015 if ($cleanup->{resume} || $cleanup->{restart}) {
1016 eval {
1017 $self->run_hook_script ('pre-restart', $task, $logfd);
1018 if ($cleanup->{resume}) {
1019 debugmsg ('info', "resume vm", $logfd);
1020 $plugin->resume_vm ($task, $vmid);
1021 } else {
757fd3d5
DM
1022 my $running = $plugin->vm_status($vmid);
1023 if (!$running) {
1024 debugmsg ('info', "restarting vm", $logfd);
1025 $plugin->start_vm ($task, $vmid);
1026 }
d5047243
FG
1027 }
1028 $self->run_hook_script ('post-restart', $task, $logfd);
aaeeeebe
DM
1029 };
1030 my $err = $@;
1031 if ($err) {
1032 warn $err;
1033 } else {
1034 my $delay = time () - $vmstoptime;
1035 debugmsg ('info', "vm is online again after $delay seconds", $logfd);
1036 }
1037 }
1038 }
1039
1040 eval { unlink $task->{tmptar} if $task->{tmptar} && -f $task->{tmptar}; };
1041 warn $@ if $@;
1042
fe6643b6 1043 eval { rmtree $task->{tmpdir} if $task->{tmpdir} && -d $task->{tmpdir}; };
aaeeeebe
DM
1044 warn $@ if $@;
1045
1046 my $delay = $task->{backuptime} = time () - $vmstarttime;
1047
1048 if ($err) {
1049 $task->{state} = 'err';
1050 $task->{msg} = $err;
1051 debugmsg ('err', "Backup of VM $vmid failed - $err", $logfd, 1);
1052
1053 eval { $self->run_hook_script ('backup-abort', $task, $logfd); };
1054
1055 } else {
1056 $task->{state} = 'ok';
1057 my $tstr = format_time ($delay);
1058 debugmsg ('info', "Finished Backup of VM $vmid ($tstr)", $logfd, 1);
1059 }
1060
1061 close ($logfd) if $logfd;
1062
1063 if ($task->{tmplog} && $task->{logfile}) {
6cd97500 1064 system {'cp'} 'cp', $task->{tmplog}, $task->{logfile};
aaeeeebe
DM
1065 }
1066
1067 eval { $self->run_hook_script ('log-end', $task); };
1068
1069 die $err if $err && $err =~ m/^interrupted by signal$/;
1070}
1071
1072sub exec_backup {
d7550e09 1073 my ($self, $rpcenv, $authuser) = @_;
aaeeeebe
DM
1074
1075 my $opts = $self->{opts};
1076
1077 debugmsg ('info', "starting new backup job: $self->{cmdline}", undef, 1);
a7e42354
DM
1078 debugmsg ('info', "skip external VMs: " . join(', ', @{$self->{skiplist}}))
1079 if scalar(@{$self->{skiplist}});
1080
aaeeeebe
DM
1081 my $tasklist = [];
1082
1083 if ($opts->{all}) {
1084 foreach my $plugin (@{$self->{plugins}}) {
1085 my $vmlist = $plugin->vmlist();
1086 foreach my $vmid (sort @$vmlist) {
1087 next if grep { $_ eq $vmid } @{$opts->{exclude}};
98e84b16 1088 next if !$rpcenv->check($authuser, "/vms/$vmid", [ 'VM.Backup' ], 1);
6acb632a 1089 push @$tasklist, { vmid => $vmid, state => 'todo', plugin => $plugin, mode => $opts->{mode} };
aaeeeebe
DM
1090 }
1091 }
1092 } else {
1093 foreach my $vmid (sort @{$opts->{vmids}}) {
1094 my $plugin;
1095 foreach my $pg (@{$self->{plugins}}) {
1096 my $vmlist = $pg->vmlist();
1097 if (grep { $_ eq $vmid } @$vmlist) {
1098 $plugin = $pg;
1099 last;
1100 }
1101 }
98e84b16 1102 $rpcenv->check($authuser, "/vms/$vmid", [ 'VM.Backup' ]);
6acb632a 1103 push @$tasklist, { vmid => $vmid, state => 'todo', plugin => $plugin, mode => $opts->{mode} };
aaeeeebe
DM
1104 }
1105 }
1106
44b21574
WB
1107 # Use in-memory files for the outer hook logs to pass them to sendmail.
1108 my $job_start_log = '';
1109 my $job_end_log = '';
1110 open my $job_start_fd, '>', \$job_start_log;
1111 open my $job_end_fd, '>', \$job_end_log;
1112
aaeeeebe
DM
1113 my $starttime = time();
1114 my $errcount = 0;
1115 eval {
1116
44b21574 1117 $self->run_hook_script ('job-start', undef, $job_start_fd);
aaeeeebe
DM
1118
1119 foreach my $task (@$tasklist) {
1120 $self->exec_backup_task ($task);
1121 $errcount += 1 if $task->{state} ne 'ok';
1122 }
1123
44b21574 1124 $self->run_hook_script ('job-end', undef, $job_end_fd);
aaeeeebe
DM
1125 };
1126 my $err = $@;
1127
44b21574 1128 $self->run_hook_script ('job-abort', undef, $job_end_fd) if $err;
aaeeeebe
DM
1129
1130 if ($err) {
1131 debugmsg ('err', "Backup job failed - $err", undef, 1);
1132 } else {
1133 if ($errcount) {
1134 debugmsg ('info', "Backup job finished with errors", undef, 1);
1135 } else {
61ca4432 1136 debugmsg ('info', "Backup job finished successfully", undef, 1);
aaeeeebe
DM
1137 }
1138 }
1139
44b21574
WB
1140 close $job_start_fd;
1141 close $job_end_fd;
1142
aaeeeebe
DM
1143 my $totaltime = time() - $starttime;
1144
44b21574 1145 eval { $self->sendmail ($tasklist, $totaltime, undef, $job_start_log, $job_end_log); };
aaeeeebe 1146 debugmsg ('err', $@) if $@;
4a4051d8
DM
1147
1148 die $err if $err;
1149
1150 die "job errors\n" if $errcount;
8682f6fc
WL
1151
1152 unlink $pidfile;
aaeeeebe
DM
1153}
1154
ac27b58d 1155
47664cbe
DM
1156sub option_exists {
1157 my $key = shift;
1158 return defined($confdesc->{$key});
1159}
1160
ac27b58d
DM
1161# add JSON properties for create and set function
1162sub json_config_properties {
1163 my $prop = shift;
1164
1165 foreach my $opt (keys %$confdesc) {
1166 $prop->{$opt} = $confdesc->{$opt};
1167 }
1168
1169 return $prop;
1170}
1171
31aef761
DM
1172sub verify_vzdump_parameters {
1173 my ($param, $check_missing) = @_;
1174
1175 raise_param_exc({ all => "option conflicts with option 'vmid'"})
eab837c4 1176 if $param->{all} && $param->{vmid};
31aef761
DM
1177
1178 raise_param_exc({ exclude => "option conflicts with option 'vmid'"})
1179 if $param->{exclude} && $param->{vmid};
1180
1181 $param->{all} = 1 if defined($param->{exclude});
1182
e2a2525e
FG
1183 warn "option 'size' is deprecated and will be removed in a future " .
1184 "release, please update your script/configuration!\n"
1185 if defined($param->{size});
1186
31aef761
DM
1187 return if !$check_missing;
1188
1189 raise_param_exc({ vmid => "property is missing"})
8682f6fc
WL
1190 if !($param->{all} || $param->{stop}) && !$param->{vmid};
1191
1192}
1193
eab837c4 1194sub stop_running_backups {
8682f6fc
WL
1195 my($self) = @_;
1196
eab837c4
DM
1197 my $upid = PVE::Tools::file_read_firstline($pidfile);
1198 return if !$upid;
8682f6fc 1199
eab837c4 1200 my $task = PVE::Tools::upid_decode($upid);
8682f6fc 1201
eab837c4
DM
1202 if (PVE::ProcFSTools::check_process_running($task->{pid}, $task->{pstart}) &&
1203 PVE::ProcFSTools::read_proc_starttime($task->{pid}) == $task->{pstart}) {
1204 kill(15, $task->{pid});
1205 # wait max 15 seconds to shut down (else, do nothing for now)
1206 my $i;
1207 for ($i = 15; $i > 0; $i--) {
1208 last if !PVE::ProcFSTools::check_process_running(($task->{pid}, $task->{pstart}));
1209 sleep (1);
1210 }
1211 die "stoping backup process $task->{pid} failed\n" if $i == 0;
8682f6fc 1212 }
31aef761
DM
1213}
1214
1215sub command_line {
1216 my ($param) = @_;
1217
1218 my $cmd = "vzdump";
1219
1220 if ($param->{vmid}) {
1daa9380 1221 $cmd .= " " . join(' ', PVE::Tools::split_list($param->{vmid}));
31aef761
DM
1222 }
1223
1224 foreach my $p (keys %$param) {
4341db1d
TL
1225 next if $p eq 'id' || $p eq 'vmid' || $p eq 'starttime' ||
1226 $p eq 'dow' || $p eq 'stdout' || $p eq 'enabled';
31aef761
DM
1227 my $v = $param->{$p};
1228 my $pd = $confdesc->{$p} || die "no such vzdump option '$p'\n";
f4a8bab4
DM
1229 if ($p eq 'exclude-path') {
1230 foreach my $path (split(/\0/, $v || '')) {
1231 $cmd .= " --$p " . PVE::Tools::shellquote($path);
1232 }
1233 } else {
1234 $cmd .= " --$p " . PVE::Tools::shellquote($v) if defined($v) && $v ne '';
1235 }
31aef761
DM
1236 }
1237
1238 return $cmd;
1239}
1240
e1bde280
DM
1241# bash completion helpers
1242sub complete_backup_storage {
1243
1244 my $cfg = PVE::Storage::config();
1245 my $ids = $cfg->{ids};
1246
1247 my $nodename = PVE::INotify::nodename();
1248
1249 my $res = [];
1250 foreach my $sid (keys %$ids) {
1251 my $scfg = $ids->{$sid};
1252 next if !PVE::Storage::storage_check_enabled($cfg, $sid, $nodename, 1);
1253 next if !$scfg->{content}->{backup};
1254 push @$res, $sid;
1255 }
1256
1257 return $res;
1258}
1259
aaeeeebe 12601;