Imported Upstream version 3.2.0
[debian/amanda] / application-src / amzfs-sendrecv.pl
1 #!@PERL@
2 # Copyright (c) 2008, 2009, 2010 Zmanda, Inc.  All Rights Reserved.
3 #
4 # This program is free software; you can redistribute it and/or modify it
5 # under the terms of the GNU General Public License version 2 as published
6 # by the Free Software Foundation.
7 #
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
11 # for more details.
12 #
13 # You should have received a copy of the GNU General Public License along
14 # with this program; if not, write to the Free Software Foundation, Inc.,
15 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
18 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
19
20 use lib '@amperldir@';
21 use strict;
22 use warnings;
23 use Getopt::Long;
24
25 package Amanda::Application::Amzfs_sendrecv;
26 use base qw(Amanda::Application Amanda::Application::Zfs);
27 use File::Copy;
28 use File::Path;
29 use IPC::Open3;
30 use Sys::Hostname;
31 use Symbol;
32 use Amanda::Constants;
33 use Amanda::Config qw( :init :getconf  config_dir_relative );
34 use Amanda::Debug qw( :logging );
35 use Amanda::Paths;
36 use Amanda::Util qw( :constants );
37
38 sub new {
39     my $class = shift;
40     my ($config, $host, $disk, $device, $level, $index, $message, $collection, $record, $df_path, $zfs_path, $pfexec_path, $pfexec, $keep_snapshot, $exclude_list, $include_list, $directory) = @_;
41     my $self = $class->SUPER::new($config);
42
43     $self->{config}     = $config;
44     $self->{host}       = $host;
45     if (defined $disk) {
46         $self->{disk}      = $disk;
47     } else {
48         $self->{disk}      = $device;
49     }
50     if (defined $device) {
51         $self->{device}    = $device;
52     } else {
53         $self->{device}    = $disk;
54     }
55     $self->{level}      = [ @{$level} ];
56     $self->{index}      = $index;
57     $self->{message}    = $message;
58     $self->{collection} = $collection;
59     $self->{record}     = $record;
60     $self->{df_path}       = $df_path;
61     $self->{zfs_path}      = $zfs_path;
62     $self->{pfexec_path}   = $pfexec_path;
63     $self->{pfexec}        = $pfexec;
64     $self->{keep_snapshot} = $keep_snapshot;
65     $self->{pfexec_cmd}    = undef;
66     $self->{exclude_list}  = [ @{$exclude_list} ];
67     $self->{include_list}  = [ @{$include_list} ];
68     $self->{directory}     = $directory;
69
70     if ($self->{keep_snapshot} =~ /^YES$/i) {
71         $self->{keep_snapshot} = "YES";
72         if (!defined $self->{record}) {
73             $self->{keep_snapshot} = "NO";
74         }
75     }
76
77     return $self;
78 }
79
80 sub check_for_backup_failure {
81    my $self = shift;
82
83    $self->zfs_destroy_snapshot();
84 }
85
86 sub command_support {
87    my $self = shift;
88
89    print "CONFIG YES\n";
90    print "HOST YES\n";
91    print "DISK YES\n";
92    print "MAX-LEVEL 9\n";
93    print "INDEX-LINE NO\n";
94    print "INDEX-XML NO\n";
95    print "MESSAGE-LINE YES\n";
96    print "MESSAGE-XML NO\n";
97    print "RECORD YES\n";
98    print "COLLECTION NO\n";
99    print "CLIENT-ESTIMATE YES\n";
100 }
101
102 sub command_selfcheck {
103     my $self = shift;
104
105     $self->zfs_set_value();
106
107     if (!defined $self->{device}) {
108         return;
109     }
110
111     if ($self->{error_status} == $Amanda::Script_App::GOOD) {
112         $self->zfs_create_snapshot();
113         $self->zfs_destroy_snapshot();
114         print "OK " . $self->{disk} . "\n";
115         print "OK " . $self->{device} . "\n";
116     }
117
118     if ($#{$self->{include_list}} >= 0) {
119         $self->print_to_server("include-list not supported for backup",
120                                $Amanda::Script_App::ERROR);
121     }
122     if ($#{$self->{exclude_list}} >= 0) {
123         $self->print_to_server("exclude-list not supported for backup",
124                                $Amanda::Script_App::ERROR);
125     }
126 }
127
128 sub command_estimate() {
129     my $self = shift;
130     my $level = 0;
131
132     if ($#{$self->{include_list}} >= 0) {
133         $self->print_to_server("include-list not supported for backup",
134                                $Amanda::Script_App::ERROR);
135     }
136     if ($#{$self->{exclude_list}} >= 0) {
137         $self->print_to_server("exclude-list not supported for backup",
138                                $Amanda::Script_App::ERROR);
139     }
140
141     $self->zfs_set_value();
142     $self->zfs_create_snapshot();
143
144     while (defined ($level = shift @{$self->{level}})) {
145       debug "Estimate of level $level";
146       my $size = $self->estimate_snapshot($level);
147       output_size($level, $size);
148     }
149
150     $self->zfs_destroy_snapshot();
151
152     exit 0;
153 }
154
155 sub output_size {
156    my($level) = shift;
157    my($size) = shift;
158    if($size == -1) {
159       print "$level -1 -1\n";
160       #exit 2;
161    }
162    else {
163       my($ksize) = int $size / (1024);
164       $ksize=32 if ($ksize<32);
165       print "$level $ksize 1\n";
166    }
167 }
168
169 sub command_backup {
170     my $self = shift;
171
172     if ($#{$self->{include_list}} >= 0) {
173         $self->print_to_server("include-list not supported for backup",
174                                $Amanda::Script_App::ERROR);
175     }
176     if ($#{$self->{exclude_list}} >= 0) {
177         $self->print_to_server("exclude-list not supported for backup",
178                                $Amanda::Script_App::ERROR);
179     }
180
181     $self->zfs_set_value();
182     $self->zfs_create_snapshot();
183
184     my $size = -1;
185     my $level = $self->{level}[0];
186     my $cmd;
187     debug "Backup of level $level";
188     if ($level == 0) {
189        $cmd = "$self->{pfexec_cmd} $self->{zfs_path} send $self->{filesystem}\@$self->{snapshot} | $Amanda::Paths::amlibexecdir/teecount";
190     } else {
191       my $refsnapshotname = $self->zfs_find_snapshot_level($level-1);
192       debug "Referenced snapshot name: $refsnapshotname|";
193       if ($refsnapshotname ne "") {
194         $cmd = "$self->{pfexec_cmd} $self->{zfs_path} send -i $refsnapshotname $self->{filesystem}\@$self->{snapshot} | $Amanda::Paths::amlibexecdir/teecount";
195       } else {
196         $self->print_to_server_and_die("cannot backup snapshot '$self->{filesystem}\@$self->{snapshot}': reference snapshot doesn't exists for level $level", $Amanda::Script_App::ERROR);
197       }
198     }
199
200     debug "running (backup): $cmd";
201     my($wtr, $err, $pid);
202     my($errmsg);
203     $err = Symbol::gensym;
204     $pid = open3($wtr, '>&STDOUT', $err, $cmd);
205     close $wtr;
206     $errmsg = <$err>;
207     waitpid $pid, 0;
208     close $err;
209     if ($? !=  0) {
210         if (defined $errmsg) {
211             $self->print_to_server_and_die($errmsg, $Amanda::Script_App::ERROR);
212         } else {
213             $self->print_to_server_and_die("cannot backup snapshot '$self->{filesystem}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR);
214         }
215     }
216     $size = $errmsg;
217     debug "Dump done";
218
219     my($ksize) = int ($size/1024);
220     $ksize=32 if ($ksize<32);
221
222     print {$self->{mesgout}} "sendbackup: size $ksize\n";
223     print {$self->{mesgout}} "sendbackup: end\n";
224
225     # destroy all snapshot of this level and higher
226     $self->zfs_purge_snapshot($level, 9);
227
228     if ($self->{keep_snapshot} eq 'YES') {
229         $self->zfs_rename_snapshot($level);
230     } else {
231         $self->zfs_destroy_snapshot();
232     }
233
234     exit 0;
235 }
236
237 sub estimate_snapshot
238 {
239     my $self = shift;
240     my $level = shift;
241
242     debug "\$filesystem = $self->{filesystem}";
243     debug "\$snapshot = $self->{snapshot}";
244     debug "\$level = $level";
245
246     my $cmd;
247     if ($level == 0) {
248       $cmd = "$self->{pfexec_cmd} $self->{zfs_path} get -Hp -o value referenced $self->{filesystem}\@$self->{snapshot}";
249     } else {
250       my $refsnapshotname = $self->zfs_find_snapshot_level($level-1);
251       debug "Referenced snapshot name: $refsnapshotname|";
252       if ($refsnapshotname ne "") {
253         $cmd = "$self->{pfexec_cmd} $self->{zfs_path} send -i $refsnapshotname $self->{filesystem}\@$self->{snapshot} | /usr/bin/wc -c";
254       } else {
255         return "-1";
256       }
257     }
258     debug "running (estimate): $cmd";
259     my($wtr, $rdr, $err, $pid);
260     $err = Symbol::gensym;
261     $pid = open3($wtr, $rdr, $err, $cmd);
262     close $wtr;
263     my ($msg) = <$rdr>;
264     my ($errmsg) = <$err>;
265     waitpid $pid, 0;
266     close $rdr;
267     close $err;
268     if ($? !=  0) {
269         if (defined $msg && defined $errmsg) {
270             $self->print_to_server_and_die("$msg, $errmsg", $Amanda::Script_App::ERROR);
271         } elsif (defined $msg) {
272             $self->print_to_server_and_die($msg, $Amanda::Script_App::ERROR);
273         } elsif (defined $errmsg) {
274             $self->print_to_server_and_die($errmsg, $Amanda::Script_App::ERROR);
275         } else {
276             $self->print_to_server_and_die("cannot estimate snapshot '$self->{snapshot}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR);
277         }
278     }
279     if ($level == 0) {
280         my $compratio = $self->get_compratio();
281         chop($compratio);
282         $msg *= $compratio;
283     }
284
285     return $msg;
286 }
287
288 sub get_compratio
289 {
290     my $self = shift;
291
292     my $cmd;
293     $cmd =  "$self->{pfexec_cmd} $self->{zfs_path} get -Hp -o value compressratio $self->{filesystem}\@$self->{snapshot}";
294     debug "running (get-compression): $cmd";
295     my($wtr, $rdr, $err, $pid);
296     $err = Symbol::gensym;
297     $pid = open3($wtr, $rdr, $err, $cmd);
298     close $wtr;
299     my ($msg) = <$rdr>;
300     my ($errmsg) = <$err>;
301     waitpid $pid, 0;
302     close $rdr;
303     close $err;
304     if ($? !=  0) {
305         if (defined $msg && defined $errmsg) {
306             $self->print_to_server_and_die("$msg, $errmsg", $Amanda::Script_App::ERROR);
307         } elsif (defined $msg) {
308             $self->print_to_server_and_die($msg, $Amanda::Script_App::ERROR);
309         } elsif (defined $errmsg) {
310             $self->print_to_server_and_die($errmsg, $Amanda::Script_App::ERROR);
311         } else {
312             $self->print_to_server_and_die("cannot read compression ratio '$self->{snapshot}\@$self->{snapshot}': unknown reason", $Amanda::Script_App::ERROR);
313         }
314     }
315     return $msg
316 }
317
318 sub command_index_from_output {
319 }
320
321 sub command_index_from_image {
322 }
323
324 #sub command_restore {
325 #    my $self = shift;
326 #
327 #TODO
328 #}
329
330 sub command_print_command {
331 }
332
333 package main;
334
335 sub usage {
336     print <<EOF;
337 Usage: amzfs-sendrecv <command> --config=<config> --host=<host> --disk=<disk> --device=<device> --level=<level> --index=<yes|no> --message=<text> --collection=<no> --record=<yes|no> --df-path=<path/to/df> --zfs-path=<path/to/zfs> --pfexec-path=<path/to/pfexec> --pfexec=<yes|no> --keep-snapshot=<yes|no>.
338 EOF
339     exit(1);
340 }
341
342 my $opt_config;
343 my $opt_host;
344 my $opt_disk;
345 my $opt_device;
346 my @opt_level;
347 my $opt_index;
348 my $opt_message;
349 my $opt_collection;
350 my $opt_record;
351 my $df_path  = 'df';
352 my $zfs_path = 'zfs';
353 my $pfexec_path = 'pfexec';
354 my $pfexec = "NO";
355 my $opt_keep_snapshot = "YES";
356 my @opt_exclude_list;
357 my @opt_include_list;
358 my $opt_directory;
359
360 Getopt::Long::Configure(qw{bundling});
361 GetOptions(
362     'config=s'        => \$opt_config,
363     'host=s'          => \$opt_host,
364     'disk=s'          => \$opt_disk,
365     'device=s'        => \$opt_device,
366     'level=s'         => \@opt_level,
367     'index=s'         => \$opt_index,
368     'message=s'       => \$opt_message,
369     'collection=s'    => \$opt_collection,
370     'record'          => \$opt_record,
371     'df-path=s'       => \$df_path,
372     'zfs-path=s'      => \$zfs_path,
373     'pfexec-path=s'   => \$pfexec_path,
374     'pfexec=s'        => \$pfexec,
375     'keep-snapshot=s' => \$opt_keep_snapshot,
376     'exclude-list=s'  => \@opt_exclude_list,
377     'include-list=s'  => \@opt_include_list,
378     'directory=s'     => \$opt_directory,
379 ) or usage();
380
381 my $application = Amanda::Application::Amzfs_sendrecv->new($opt_config, $opt_host, $opt_disk, $opt_device, \@opt_level, $opt_index, $opt_message, $opt_collection, $opt_record, $df_path, $zfs_path, $pfexec_path, $pfexec, $opt_keep_snapshot, \@opt_exclude_list, \@opt_include_list, $opt_directory);
382
383 $application->do($ARGV[0]);
384