This patch is the start of storing/using checksum information from extended attribute values. The rsync code only reads the values at the moment. There is also a perl script that can create them. To use this patch, run these commands for a successful build: patch -p1 0 && S_ISREG(st->st_mode)) { char sum[MAX_DIGEST_LEN]; - file_checksum(fn, sum, st->st_size); + if (!get_sum_xattr(fn, st, sum)) + file_checksum(fn, sum, st->st_size); return memcmp(sum, F_SUM(file), checksum_len) == 0; } diff --git a/support/xsums b/support/xsums new file mode 100644 --- /dev/null +++ b/support/xsums @@ -0,0 +1,119 @@ +#!/usr/bin/perl +use strict; +use warnings; + +use Getopt::Long; +use Cwd qw(abs_path cwd); +use Digest::MD4; +use Digest::MD5; +use File::ExtAttr ':all'; + +our($recurse_opt, $help_opt); +our $verbosity = 0; + +&Getopt::Long::Configure('bundling'); +&usage if !&GetOptions( + 'recurse|r' => \$recurse_opt, + 'verbose|v+' => \$verbosity, + 'help|h' => \$help_opt, +) || $help_opt; + +my $start_dir = cwd(); + +my @dirs = @ARGV; +@dirs = '.' unless @dirs; +foreach (@dirs) { + $_ = abs_path($_); +} + +$| = 1; + +my $md4 = Digest::MD4->new; +my $md5 = Digest::MD5->new; + +while (@dirs) { + my $dir = shift @dirs; + + if (!chdir($dir)) { + warn "Unable to chdir to $dir: $!\n"; + next; + } + if (!opendir(DP, '.')) { + warn "Unable to opendir $dir: $!\n"; + next; + } + + if ($verbosity) { + my $reldir = $dir; + $reldir =~ s#^$start_dir(/|$)# $1 ? '' : '.' #eo; + print "scanning $reldir\n"; + } + + my @subdirs; + while (defined(my $fn = readdir(DP))) { + next if $fn =~ /^\.\.?$/ || -l $fn; + if (-d _) { + push(@subdirs, "$dir/$fn"); + next; + } + next unless -f _; + + my($size,$mtime) = (stat(_))[7,9]; + + my $sum4 = getfattr($fn, 'rsync.%md4'); + my $sum5 = getfattr($fn, 'rsync.%md5'); + + foreach ($sum4, $sum5) { + if (defined $_) { + if (length($_) == 24) { + my($sz,$mt,$sum) = unpack('V2a16', $_); + if ($sz != ($size & 0xFFFFFFFF) + || $mt != ($mtime & 0xFFFFFFFF)) { + $_ = undef; + } else { + $_ = $sum; + } + } else { + $_ = undef; + } + } + } + if (!defined($sum4) || !defined($sum5)) { + if (!open(IN, $fn)) { + print STDERR "Unable to read $fn: $!\n"; + next; + } + + while (sysread(IN, $_, 64*1024)) { + $md4->add($_); + $md5->add($_); + } + close IN; + + $sum4 = $md4->digest; + $sum5 = $md5->digest; + print " $fn\n" if $verbosity > 1; + + my $szmt = pack('V2', $size, $mtime); # 32-bits, may truncate + setfattr($fn, 'rsync.%md4', $szmt.$sum4); + setfattr($fn, 'rsync.%md5', $szmt.$sum5); + #utime $mtime, $mtime, $fn; # Set mtime if it changes. + } + } + + closedir DP; + + unshift(@dirs, sort @subdirs) if $recurse_opt; +} + +sub usage +{ + die <= 30 + ? MD5_ATTR : MD4_ATTR; + char buf[256]; + uint32 file_length, mtime; + int len; + + len = sys_lgetxattr(fname, mdattr, buf, sizeof buf); + if (len < 0) { + if (errno == ENOTSUP || errno == ENOATTR) + return 0; + rsyserr(FERROR_XFER, errno, "failed to read xattr %s for %s", + mdattr, full_fname(fname)); + return 0; + } + if (len != 4 + 4 + checksum_len) { + rprintf(FERROR, "Corrupt %s xattr attached to %s -- skipping\n", + mdattr, full_fname(fname)); + return 0; + } + + file_length = IVAL(buf, 0); /* 32-bit values -- trunctions are OK */ + mtime = IVAL(buf, 4); + + if ((uint32)stp->st_size != file_length || (uint32)stp->st_mtime != mtime) + return 0; + + memcpy(sum, buf + 8, checksum_len); + + return 1; +} + int get_stat_xattr(const char *fname, int fd, STRUCT_STAT *fst, STRUCT_STAT *xst) { int mode, rdev_major, rdev_minor, uid, gid, len;