X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/898a2112e681761ce68f6f3aca9ed78921699963..7170ca8dba0a407cd0c91b41b48163c7b682abb1:/checksum-xattr.diff diff --git a/checksum-xattr.diff b/checksum-xattr.diff index b8c6b81..1f8d6bc 100644 --- a/checksum-xattr.diff +++ b/checksum-xattr.diff @@ -8,21 +8,24 @@ To use this patch, run these commands for a successful build: ./configure (optional if already run) make ---- old/flist.c -+++ new/flist.c -@@ -1193,7 +1193,8 @@ struct file_struct *make_file(const char - } +based-on: 181c9faf928faad08ef095f4667afe460ec3bef6 +diff --git a/flist.c b/flist.c +--- a/flist.c ++++ b/flist.c +@@ -1277,7 +1277,8 @@ struct file_struct *make_file(const char *fname, struct file_list *flist, #endif -- if (always_checksum && am_sender && S_ISREG(st.st_mode)) -+ if (always_checksum && am_sender && S_ISREG(st.st_mode) -+ && !get_sum_xattr(thisname, &st, tmp_sum)) - file_checksum(thisname, tmp_sum, st.st_size); - - F_PATHNAME(file) = pathname; ---- old/generator.c -+++ new/generator.c -@@ -627,7 +627,8 @@ int unchanged_file(char *fn, struct file + if (always_checksum && am_sender && S_ISREG(st.st_mode)) { +- file_checksum(thisname, tmp_sum, st.st_size); ++ if (!get_sum_xattr(thisname, &st, tmp_sum)) ++ file_checksum(thisname, tmp_sum, st.st_size); + if (sender_keeps_checksum) + extra_len += SUM_EXTRA_CNT * EXTRA_LEN; + } +diff --git a/generator.c b/generator.c +--- a/generator.c ++++ b/generator.c +@@ -531,7 +531,8 @@ int unchanged_file(char *fn, struct file_struct *file, STRUCT_STAT *st) of the file time to determine whether to sync */ if (always_checksum > 0 && S_ISREG(st->st_mode)) { char sum[MAX_DIGEST_LEN]; @@ -32,8 +35,10 @@ To use this patch, run these commands for a successful build: return memcmp(sum, F_SUM(file), checksum_len) == 0; } ---- old/support/xsums -+++ new/support/xsums +diff --git a/support/xsums b/support/xsums +new file mode 100644 +--- /dev/null ++++ b/support/xsums @@ -0,0 +1,118 @@ +#!/usr/bin/perl -w +use strict; @@ -153,9 +158,10 @@ To use this patch, run these commands for a successful build: + -h, --help Display this help message. +EOT +} ---- old/xattrs.c -+++ new/xattrs.c -@@ -32,6 +32,8 @@ extern int read_only; +diff --git a/xattrs.c b/xattrs.c +--- a/xattrs.c ++++ b/xattrs.c +@@ -34,6 +34,8 @@ extern int read_only; extern int list_only; extern int preserve_xattrs; extern int checksum_seed; @@ -164,18 +170,31 @@ To use this patch, run these commands for a successful build: #define RSYNC_XAL_INITIAL 5 #define RSYNC_XAL_LIST_INITIAL 100 -@@ -63,6 +65,8 @@ extern int checksum_seed; - #define RPRE_LEN ((int)sizeof RSYNC_PREFIX - 1) - - #define XSTAT_ATTR RSYNC_PREFIX "%stat" -+#define MD4_ATTR RSYNC_PREFIX "%md4" -+#define MD5_ATTR RSYNC_PREFIX "%md5" +@@ -69,6 +71,10 @@ extern int checksum_seed; + #define XACC_ACL_ATTR RSYNC_PREFIX "%" XACC_ACL_SUFFIX + #define XDEF_ACL_SUFFIX "dacl" + #define XDEF_ACL_ATTR RSYNC_PREFIX "%" XDEF_ACL_SUFFIX ++#define MD4_SUFFIX "md4" ++#define MD4_ATTR RSYNC_PREFIX "%" MD4_SUFFIX ++#define MD5_SUFFIX "md5" ++#define MD5_ATTR RSYNC_PREFIX "%" MD5_SUFFIX typedef struct { char *datum, *name; -@@ -797,6 +801,39 @@ int set_xattr(const char *fname, const s - return rsync_xal_set(fname, lst + ndx, fnamecmp, sxp); +@@ -241,7 +247,9 @@ static int rsync_xal_get(const char *fname, item_list *xalp) + || (am_root < 0 + && (strcmp(name+RPRE_LEN+1, XSTAT_SUFFIX) == 0 + || strcmp(name+RPRE_LEN+1, XACC_ACL_SUFFIX) == 0 +- || strcmp(name+RPRE_LEN+1, XDEF_ACL_SUFFIX) == 0))) ++ || strcmp(name+RPRE_LEN+1, XDEF_ACL_SUFFIX) == 0 ++ || strcmp(name+RPRE_LEN+1, MD4_SUFFIX) == 0 ++ || strcmp(name+RPRE_LEN+1, MD5_SUFFIX) == 0))) + continue; + } + +@@ -914,6 +922,39 @@ int del_def_xattr_acl(const char *fname) } + #endif +int get_sum_xattr(const char *fname, STRUCT_STAT *stp, char *sum) +{ @@ -184,12 +203,12 @@ To use this patch, run these commands for a successful build: + 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, errno, "failed to read xattr %s for %s", ++ rsyserr(FERROR_XFER, errno, "failed to read xattr %s for %s", + mdattr, full_fname(fname)); + return 0; + }