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