- Significant documentation changes for 2.0.0beta0
[BackupPC.git] / lib / BackupPC / Xfer / Tar.pm
1 #============================================================= -*-perl-*-
2 #
3 # BackupPC::Xfer::Tar package
4 #
5 # DESCRIPTION
6 #
7 #   This library defines a BackupPC::Xfer::Tar class for managing
8 #   the tar-based transport of backup data from the client.
9 #
10 # AUTHOR
11 #   Craig Barratt  <cbarratt@users.sourceforge.net>
12 #
13 # COPYRIGHT
14 #   Copyright (C) 2001  Craig Barratt
15 #
16 #   This program is free software; you can redistribute it and/or modify
17 #   it under the terms of the GNU General Public License as published by
18 #   the Free Software Foundation; either version 2 of the License, or
19 #   (at your option) any later version.
20 #
21 #   This program is distributed in the hope that it will be useful,
22 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
23 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 #   GNU General Public License for more details.
25 #
26 #   You should have received a copy of the GNU General Public License
27 #   along with this program; if not, write to the Free Software
28 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29 #
30 #========================================================================
31 #
32 # Version 2.0.0_CVS, released 3 Feb 2003.
33 #
34 # See http://backuppc.sourceforge.net.
35 #
36 #========================================================================
37
38 package BackupPC::Xfer::Tar;
39
40 use strict;
41
42 sub new
43 {
44     my($class, $bpc, $args) = @_;
45
46     $args ||= {};
47     my $t = bless {
48         bpc       => $bpc,
49         conf      => { $bpc->Conf },
50         host      => "",
51         hostIP    => "",
52         shareName => "",
53         pipeRH    => undef,
54         pipeWH    => undef,
55         badFiles  => [],
56         %$args,
57     }, $class;
58
59     return $t;
60 }
61
62 sub args
63 {
64     my($t, $args) = @_;
65
66     foreach my $arg ( keys(%$args) ) {
67         $t->{$arg} = $args->{$arg};
68     }
69 }
70
71 sub useTar
72 {
73     return 1;
74 }
75
76 sub start
77 {
78     my($t) = @_;
79     my $bpc = $t->{bpc};
80     my $conf = $t->{conf};
81     my(@fileList, $tarClientCmd, $logMsg, $incrDate);
82     local(*TAR);
83
84     if ( $t->{type} eq "restore" ) {
85         $tarClientCmd = $conf->{TarClientRestoreCmd};
86         $logMsg = "restore started below directory $t->{shareName}";
87         #
88         # restores are considered to work unless we see they fail
89         # (opposite to backups...)
90         #
91         $t->{xferOK} = 1;
92     } else {
93         #
94         # Turn $conf->{BackupFilesOnly} and $conf->{BackupFilesExclude}
95         # into a hash of arrays of files
96         #
97         $conf->{TarShareName} = [ $conf->{TarShareName} ]
98                         unless ref($conf->{TarShareName}) eq "ARRAY";
99         foreach my $param qw(BackupFilesOnly BackupFilesExclude) {
100             next if ( !defined($conf->{$param}) );
101             if ( ref($conf->{$param}) eq "ARRAY" ) {
102                 $conf->{$param} = {
103                         $conf->{TarShareName}[0] => $conf->{$param}
104                 };
105             } elsif ( ref($conf->{$param}) eq "HASH" ) {
106                 # do nothing
107             } else {
108                 $conf->{$param} = {
109                         $conf->{TarShareName}[0] => [ $conf->{$param} ]
110                 };
111             }
112         }
113         if ( defined($conf->{BackupFilesExclude}{$t->{shareName}}) ) {
114             foreach my $file ( @{$conf->{BackupFilesExclude}{$t->{shareName}}} )
115             {
116                 $file = ".$file" if ( $file =~ /^\// );
117                 push(@fileList, "--exclude=$file");
118             }
119         }
120         if ( defined($conf->{BackupFilesOnly}{$t->{shareName}}) ) {
121             foreach my $file ( @{$conf->{BackupFilesOnly}{$t->{shareName}}} ) {
122                 $file = ".$file" if ( $file =~ /^\// );
123                 push(@fileList, $file);
124             }
125         } else {
126             push(@fileList, ".");
127         }
128         if ( ref($conf->{TarClientCmd}) eq "ARRAY" ) {
129             $tarClientCmd = $conf->{TarClientCmd};
130         } else {
131             $tarClientCmd = [split(/ +/, $conf->{TarClientCmd})];
132         }
133         my $args;
134         if ( $t->{type} eq "full" ) {
135             $args = $conf->{TarFullArgs};
136             $logMsg = "full backup started for directory $t->{shareName}";
137         } else {
138             $incrDate = $bpc->timeStampISO($t->{lastFull} - 3600, 1);
139             $args = $conf->{TarIncrArgs};
140             $logMsg = "incr backup started back to $incrDate for directory"
141                     . " $t->{shareName}";
142         }
143         push(@$tarClientCmd, split(/ +/, $args));
144     }
145     #
146     # Merge variables into @tarClientCmd
147     #
148     my $args = {
149         host      => $t->{host},
150         hostIP    => $t->{hostIP},
151         client    => $t->{client},
152         incrDate  => $incrDate,
153         shareName => $t->{shareName},
154         fileList  => \@fileList,
155         tarPath   => $conf->{TarClientPath},
156         sshPath   => $conf->{SshPath},
157     };
158     $tarClientCmd = $bpc->cmdVarSubstitute($tarClientCmd, $args);
159     if ( !defined($t->{xferPid} = open(TAR, "-|")) ) {
160         $t->{_errStr} = "Can't fork to run tar";
161         return;
162     }
163     $t->{pipeTar} = *TAR;
164     if ( !$t->{xferPid} ) {
165         #
166         # This is the tar child.
167         #
168         setpgrp 0,0;
169         if ( $t->{type} eq "restore" ) {
170             #
171             # For restores, close the write end of the pipe,
172             # clone STDIN to RH
173             #
174             close($t->{pipeWH});
175             close(STDERR);
176             open(STDERR, ">&STDOUT");
177             close(STDIN);
178             open(STDIN, "<&$t->{pipeRH}");
179         } else {
180             #
181             # For backups, close the read end of the pipe,
182             # clone STDOUT to WH, and STDERR to STDOUT
183             #
184             close($t->{pipeRH});
185             close(STDERR);
186             open(STDERR, ">&STDOUT");
187             open(STDOUT, ">&$t->{pipeWH}");
188         }
189         #
190         # Run the tar command
191         #
192         $bpc->cmdExecOrEval($tarClientCmd, $args);
193         # should not be reached, but just in case...
194         $t->{_errStr} = "Can't exec @$tarClientCmd";
195         return;
196     }
197     my $str = "Running: " . $bpc->execCmd2ShellCmd(@$tarClientCmd) . "\n";
198     $t->{XferLOG}->write(\"Running: @$tarClientCmd\n");
199     alarm($conf->{ClientTimeout});
200     $t->{_errStr} = undef;
201     return $logMsg;
202 }
203
204 sub readOutput
205 {
206     my($t, $FDreadRef, $rout) = @_;
207     my $conf = $t->{conf};
208
209     if ( vec($rout, fileno($t->{pipeTar}), 1) ) {
210         my $mesg;
211         if ( sysread($t->{pipeTar}, $mesg, 8192) <= 0 ) {
212             vec($$FDreadRef, fileno($t->{pipeTar}), 1) = 0;
213             if ( !close($t->{pipeTar}) ) {
214                 $t->{tarOut} .= "Tar exited with error $? ($!) status\n";
215                 $t->{xferOK} = 0 if ( !$t->{tarBadExitOk} );
216             }
217         } else {
218             $t->{tarOut} .= $mesg;
219         }
220     }
221     while ( $t->{tarOut} =~ /(.*?)[\n\r]+(.*)/s ) {
222         $_ = $1;
223         $t->{tarOut} = $2;
224         $t->{XferLOG}->write(\"$_\n");
225         #
226         # refresh our inactivity alarm
227         #
228         alarm($conf->{ClientTimeout});
229         $t->{lastOutputLine} = $_ if ( !/^$/ );
230         if ( /^Total bytes written: / ) {
231             $t->{xferOK} = 1;
232         } elsif ( /^\./ ) {
233             $t->{fileCnt}++;
234         } else {
235             $t->{xferErrCnt}++;
236             #
237             # If tar encounters a minor error, it will exit with a non-zero
238             # status.  We still consider that ok.  Remember if tar prints
239             # this message indicating a non-fatal error.
240             #
241             $t->{tarBadExitOk} = 1
242                     if ( $t->{xferOK} && /Error exit delayed from previous / );
243         }
244     }
245     return 1;
246 }
247
248 sub setSelectMask
249 {
250     my($t, $FDreadRef) = @_;
251
252     vec($$FDreadRef, fileno($t->{pipeTar}), 1) = 1;
253 }
254
255 sub errStr
256 {
257     my($t) = @_;
258
259     return $t->{_errStr};
260 }
261
262 sub xferPid
263 {
264     my($t) = @_;
265
266     return $t->{xferPid};
267 }
268
269 sub logMsg
270 {
271     my($t, $msg) = @_;
272
273     push(@{$t->{_logMsg}}, $msg);
274 }
275
276 sub logMsgGet
277 {
278     my($t) = @_;
279
280     return shift(@{$t->{_logMsg}});
281 }
282
283 #
284 # Returns a hash ref giving various status information about
285 # the transfer.
286 #
287 sub getStats
288 {
289     my($t) = @_;
290
291     return { map { $_ => $t->{$_} }
292             qw(byteCnt fileCnt xferErrCnt xferBadShareCnt xferBadFileCnt
293                xferOK hostAbort hostError lastOutputLine)
294     };
295 }
296
297 sub getBadFiles
298 {
299     my($t) = @_;
300
301     return @{$t->{badFiles}};
302 }
303
304 1;