X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/0c42946536087bc2caa4d5d1fe4569c7c097c941..7b1a0c19b867b2ea7766c4d742a15bca3a1fb3ed:/flist.c diff --git a/flist.c b/flist.c index f1b054f5..41605340 100644 --- a/flist.c +++ b/flist.c @@ -70,6 +70,7 @@ extern struct exclude_struct **local_exclude_list; int io_error; static struct file_struct null_file; +static char empty_sum[MD4_SUM_LENGTH]; static void clean_flist(struct file_list *flist, int strip_root, int no_dups); @@ -350,18 +351,32 @@ static void flist_expand(struct file_list *flist) } } +/* These vars are used by both send_file_entry() and receive_file_entry() + * (but just one at a time). They have been placed outside these functions + * so that we can reset the values when the batch-processing wants to make + * extra use of these functions (which needs to start from a known state). */ +static time_t modtime; +static mode_t mode; +static DEV64_T rdev; /* just high bytes in p28 onward */ +static uid_t uid; +static gid_t gid; +static DEV64_T dev; +static char lastname[MAXPATHLEN]; + +void reset_file_entry_vars(void) +{ + modtime = 0; + mode = 0; + rdev = 0; + uid = 0; + gid = 0; + dev = 0; + *lastname = '\0'; +} -static void send_file_entry(struct file_struct *file, int f, - unsigned short base_flags) +void send_file_entry(struct file_struct *file, int f, unsigned short base_flags) { unsigned short flags; - static time_t modtime; - static mode_t mode; - static DEV64_T rdev; /* just high bytes after p28 */ - static uid_t uid; - static gid_t gid; - static DEV64_T dev; - static char lastname[MAXPATHLEN]; char *fname, fbuf[MAXPATHLEN]; int l1, l2; @@ -500,11 +515,10 @@ static void send_file_entry(struct file_struct *file, int f, } #endif - if (always_checksum) { - if (protocol_version < 21) - write_buf(f, file->sum, 2); - else - write_buf(f, file->sum, MD4_SUM_LENGTH); + if (always_checksum && (protocol_version < 28 || S_ISREG(mode))) { + char *sum = file->sum? file->sum : empty_sum; + write_buf(f, sum, protocol_version < 21? 2 + : MD4_SUM_LENGTH); } strlcpy(lastname, fname, MAXPATHLEN); @@ -515,16 +529,8 @@ static void send_file_entry(struct file_struct *file, int f, -static void receive_file_entry(struct file_struct **fptr, - unsigned short flags, int f) +void receive_file_entry(struct file_struct **fptr, unsigned short flags, int f) { - static time_t modtime; - static mode_t mode; - static DEV64_T rdev; /* just high bytes after p28 */ - static uid_t uid; - static gid_t gid; - static DEV64_T dev; - static char lastname[MAXPATHLEN]; char thisname[MAXPATHLEN]; unsigned int l1 = 0, l2 = 0; char *p; @@ -649,19 +655,26 @@ static void receive_file_entry(struct file_struct **fptr, #endif if (always_checksum) { - file->sum = new_array(char, MD4_SUM_LENGTH); - if (!file->sum) - out_of_memory("md4 sum"); - if (protocol_version < 21) - read_buf(f, file->sum, 2); - else - read_buf(f, file->sum, MD4_SUM_LENGTH); + char *sum; + if (S_ISREG(mode)) { + sum = file->sum = new_array(char, MD4_SUM_LENGTH); + if (!sum) + out_of_memory("md4 sum"); + } else if (protocol_version < 28) { + /* Prior to 28, we get a useless set of nulls. */ + sum = empty_sum; + } else + sum = NULL; + if (sum) { + read_buf(f, sum, protocol_version < 21? 2 + : MD4_SUM_LENGTH); + } } if (!preserve_perms) { extern int orig_umask; /* set an appropriate set of permissions based on original - permissions and umask. This emulates what GNU cp does */ + * permissions and umask. This emulates what GNU cp does */ file->mode &= ~orig_umask; } } @@ -817,18 +830,11 @@ struct file_struct *make_file(char *fname, struct string_area **ap, file->link = STRDUP(ap, linkbuf); #endif - if (always_checksum) { - file->sum = (char *) MALLOC(ap, MD4_SUM_LENGTH); + if (always_checksum && S_ISREG(st.st_mode)) { + file->sum = (char*)MALLOC(ap, MD4_SUM_LENGTH); if (!file->sum) out_of_memory("md4 sum"); - /* drat. we have to provide a null checksum for non-regular - files in order to be compatible with earlier versions - of rsync */ - if (S_ISREG(st.st_mode)) { - file_checksum(fname, file->sum, st.st_size); - } else { - memset(file->sum, 0, MD4_SUM_LENGTH); - } + file_checksum(fname, file->sum, st.st_size); } if (flist_dir) {