X-Git-Url: http://git.rot13.org/?p=BackupPC.git;a=blobdiff_plain;f=bin%2FBackupPC_zipCreate;h=51683fb9952afa637650e69c7fd02f0f9df73239;hp=362799e9472c9fd8b22da2e82148617bf772ec84;hb=5b3e6091d542c2e7445d5dd511cdf6e20aec8b8d;hpb=ce708288691ba7dd95a8dac7a468bc0e4c1d6588 diff --git a/bin/BackupPC_zipCreate b/bin/BackupPC_zipCreate index 362799e..51683fb 100755 --- a/bin/BackupPC_zipCreate +++ b/bin/BackupPC_zipCreate @@ -6,15 +6,14 @@ # # DESCRIPTION # -# Usage: BackupPC_zipCreate [-t] [-h host] [-n dumpNum] [-s shareName] -# [-r pathRemove] [-p pathAdd] [-c compressionLevel] -# files/directories... +# Usage: BackupPC_zipCreate [options] files/directories... # # Flags: # Required options: -# # -h host host from which the zip archive is created # -n dumpNum dump number from which the zip archive is created +# A negative number means relative to the end (eg -1 +# means the most recent dump, -2 2nd most recent etc). # -s shareName share name from which the zip archive is created # # Other options: @@ -22,6 +21,8 @@ # -r pathRemove path prefix that will be replaced with pathAdd # -p pathAdd new path prefix # -c level compression level (default is 0, no compression) +# -e charset charset for encoding file names (default: value of +# $Conf{ClientCharset} when backup was done) # # The -h, -n and -s options specify which dump is used to generate # the zip archive. The -r and -p options can be used to relocate @@ -51,7 +52,7 @@ # #======================================================================== # -# Version 2.1.0beta0, released 20 Mar 2004. +# Version 3.0.0alpha, released 23 Jan 2006. # # See http://backuppc.sourceforge.net. # @@ -63,6 +64,7 @@ use lib "/usr/local/BackupPC/lib"; use Archive::Zip qw(:ERROR_CODES); use File::Path; use Getopt::Std; +use Encode qw/from_to/; use IO::Handle; use BackupPC::Lib; use BackupPC::Attrib qw(:all); @@ -77,10 +79,24 @@ my %Conf = $bpc->Conf(); my %opts; -if ( !getopts("th:n:p:r:s:c:", \%opts) || @ARGV < 1 ) { - print(STDERR "usage: $0 [-t] [-h host] [-n dumpNum] [-s shareName]" - . " [-r pathRemove] [-p pathAdd] [-c compressionLevel]" - . " files/directories...\n"); +if ( !getopts("te:h:n:p:r:s:c:", \%opts) || @ARGV < 1 ) { + print STDERR <BackupInfoRead($Host); -my($i); my $FileCnt = 0; my $ByteCnt = 0; my $DirCnt = 0; my $SpecialCnt = 0; my $ErrorCnt = 0; +my $i; +$Num = $Backups[@Backups + $Num]{num} if ( -@Backups <= $Num && $Num < 0 ); for ( $i = 0 ; $i < @Backups ; $i++ ) { last if ( $Backups[$i]{num} == $Num ); } @@ -118,9 +136,12 @@ if ( $i >= @Backups ) { exit(1); } +my $Charset = $Backups[$i]{charset}; +$Charset = $opts{e} if ( $opts{e} ne "" ); + my $PathRemove = $1 if ( $opts{r} =~ /(.+)/ ); my $PathAdd = $1 if ( $opts{p} =~ /(.+)/ ); -if ( $opts{s} !~ /^([\w\s\.\/\$-]+)$/ ) { +if ( $opts{s} !~ /^([\w\s.\/$(){}[\]-]+)$/ ) { print(STDERR "$0: bad share name '$opts{s}'\n"); exit(1); } @@ -200,9 +221,10 @@ sub ZipWriteFile && substr($tarPath, 0, length($PathRemove)) eq $PathRemove ) { substr($tarPath, 0, length($PathRemove)) = $PathAdd; } - $tarPath = "./" . $tarPath if ( $tarPath !~ /^\.\// ); + $tarPath = $1 if ( $tarPath =~ m{^\.?/+(.*)} ); $tarPath =~ s{//+}{/}g; $hdr->{name} = $tarPath; + return if ( $tarPath eq "." || $tarPath eq "./" || $tarPath eq "" ); my $zipmember; # Container to hold the file/directory to zip. @@ -211,12 +233,14 @@ sub ZipWriteFile # Directory: just write the header # $hdr->{name} .= "/" if ( $hdr->{name} !~ m{/$} ); + from_to($hdr->{name}, "utf8", $Charset) if ( $Charset ne "" ); $zipmember = Archive::Zip::Member->newDirectoryNamed($hdr->{name}); $DirCnt++; } elsif ( $hdr->{type} == BPC_FTYPE_FILE ) { # # Regular file: write the header and file # + from_to($hdr->{name}, "utf8", $Charset) if ( $Charset ne "" ); $zipmember = BackupPC::Zip::FileMember->newFromFileNamed( $hdr->{fullPath}, $hdr->{name}, @@ -271,8 +295,14 @@ sub ZipWriteFile } return if ( !$zipmember ); - # Set the attributes and permissions - $zipmember->setLastModFileDateTimeFromUnix($hdr->{mtime}); + # + # Set the attributes and permissions. The standard zip file + # header cannot handle dates prior to 1/1/1980, or 315561600 + # unix seconds, so we round up the mtime. + # + my $mtime = $hdr->{mtime}; + $mtime = 315561600 if ( $mtime < 315561600 ); + $zipmember->setLastModFileDateTimeFromUnix($mtime); $zipmember->unixFileAttributes($hdr->{mode}); # Zip files don't accept uid and gid, so we put them in the comment field. $zipmember->fileComment("uid=".$hdr->{uid}." gid=".$hdr->{gid})