X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6abd193fe3f8e7b986c388e7642adc08516e8279..226df8e7172e4be3ae4f65fcdd5b86ee5ba4e16d:/batch.c diff --git a/batch.c b/batch.c index 4074e05b..f27e6fc3 100644 --- a/batch.c +++ b/batch.c @@ -8,54 +8,38 @@ #include "rsync.h" #include -char rsync_flist_file[27] = "rsync_flist."; -char rsync_csums_file[27] = "rsync_csums."; -char rsync_delta_file[27] = "rsync_delta."; -char rsync_argvs_file[27] = "rsync_argvs."; - -char batch_file_ext[15]; - -int fdb; -int fdb_delta; -int fdb_open; -int fdb_close; +extern char *batch_prefix; struct file_list *batch_flist; -void create_batch_file_ext() -{ - struct tm *timeptr; - time_t elapsed_seconds; - - /* Save run date and time to use for batch file extensions */ - time(&elapsed_seconds); - timeptr = localtime(&elapsed_seconds); - - sprintf(batch_file_ext, "%4d%02d%02d%02d%02d%02d", - timeptr->tm_year + 1900, timeptr->tm_mon + 1, - timeptr->tm_mday, timeptr->tm_hour, timeptr->tm_min, - timeptr->tm_sec); -} +static char rsync_flist_file[] = ".rsync_flist"; +static char rsync_csums_file[] = ".rsync_csums"; +static char rsync_delta_file[] = ".rsync_delta"; +static char rsync_argvs_file[] = ".rsync_argvs"; -void set_batch_file_ext(char *ext) -{ - strcpy(batch_file_ext, ext); -} +static int fdb; +static int fdb_delta; +static int fdb_open; +static int fdb_close; void write_batch_flist_file(char *buff, int bytes_to_write) { + char filename[MAXPATHLEN]; if (fdb_open) { /* Set up file extension */ - strcat(rsync_flist_file, batch_file_ext); - - /* Open batch flist file for writing; create it if it doesn't exist */ - fdb = - do_open(rsync_flist_file, O_WRONLY | O_CREAT | O_TRUNC, + strlcpy(filename, batch_prefix, sizeof(filename)); + strlcat(filename, rsync_flist_file, sizeof(filename)); + + /* + * Open batch flist file for writing; + * create it if it doesn't exist + */ + fdb = do_open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE); if (fdb == -1) { rprintf(FERROR, "Batch file %s open error: %s\n", - rsync_flist_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } @@ -66,12 +50,11 @@ void write_batch_flist_file(char *buff, int bytes_to_write) if (write(fdb, buff, bytes_to_write) == -1) { rprintf(FERROR, "Batch file %s write error: %s\n", - rsync_flist_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } - if (fdb_close) { close(fdb); } @@ -84,12 +67,16 @@ void write_batch_flist_info(int flist_count, struct file_struct **fptr) /* Write flist info to batch file */ - bytes_to_write = sizeof(unsigned) + + bytes_to_write = + sizeof(unsigned) + sizeof(time_t) + sizeof(OFF_T) + sizeof(mode_t) + sizeof(INO64_T) + - (2 * sizeof(DEV64_T)) + sizeof(uid_t) + sizeof(gid_t); + sizeof(DEV64_T) + + sizeof(DEV64_T) + + sizeof(uid_t) + + sizeof(gid_t); fdb_open = 1; fdb_close = 0; @@ -105,7 +92,6 @@ void write_batch_flist_info(int flist_count, struct file_struct **fptr) } write_char_bufs(fptr[i]->sum); } - } void write_char_bufs(char *buf) @@ -113,11 +99,8 @@ void write_char_bufs(char *buf) /* Write the size of the string which will follow */ char b[4]; - if (buf != NULL) - SIVAL(b, 0, strlen(buf)); - else { - SIVAL(b, 0, 0); - } + + SIVAL(b, 0, buf != NULL ? strlen(buf) : 0); write_batch_flist_file(b, sizeof(int)); @@ -128,54 +111,74 @@ void write_char_bufs(char *buf) } } -void write_batch_argvs_file(int orig_argc, int argc, char **argv) +void write_batch_argvs_file(int argc, char *argv[]) { int fdb; int i; - char buff[256]; - - strcat(rsync_argvs_file, batch_file_ext); - - - /* Open batch argvs file for writing; create it if it doesn't exist */ - fdb = do_open(rsync_argvs_file, O_WRONLY | O_CREAT | O_TRUNC, + char buff[256]; /* XXX */ + char buff2[MAXPATHLEN + 6]; + char filename[MAXPATHLEN]; + + /* Set up file extension */ + strlcpy(filename, batch_prefix, sizeof(filename)); + strlcat(filename, rsync_argvs_file, sizeof(filename)); + + /* + * Open batch argvs file for writing; + * create it if it doesn't exist + */ + fdb = do_open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE | S_IEXEC); if (fdb == -1) { rprintf(FERROR, "Batch file %s open error: %s\n", - rsync_argvs_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } buff[0] = '\0'; + /* Write argvs info to batch file */ - for (i = argc - orig_argc; i < argc; i++) { - /* FIXME: This apparently crashes if rsync is run with - * just "rsync -F". I think directly manipulating - * argv[] is probably bogus -- what if -F is part of a - * run of several short options? */ - if (!strcmp(argv[i], "-F")) { /* safer to change it here than script */ - strncat(buff, "-f ", 3); /* chg to -f + ext to get ready for remote */ - strncat(buff, batch_file_ext, - strlen(batch_file_ext)); - } else { - strncat(buff, argv[i], strlen(argv[i])); + for (i = 0; i < argc; ++i) { + if (i == argc - 2) /* Skip source directory on cmdline */ + continue; + /* + * FIXME: + * I think directly manipulating argv[] is probably bogus + */ + if (!strncmp(argv[i], "--write-batch", + strlen("--write-batch"))) { + /* Safer to change it here than script */ + /* + * Change to --read-batch=prefix + * to get ready for remote + */ + strlcat(buff, "--read-batch=", sizeof(buff)); + strlcat(buff, batch_prefix, sizeof(buff)); + } else + if (i == argc - 1) { + snprintf(buff2, sizeof(buff2), "${1:-%s}", argv[i]); + strlcat(buff, buff2, sizeof(buff)); + } + else { + strlcat(buff, argv[i], sizeof(buff)); } if (i < (argc - 1)) { - strncat(buff, " ", 1); + strlcat(buff, " ", sizeof(buff)); } } + strlcat(buff, "\n", sizeof(buff)); if (!write(fdb, buff, strlen(buff))) { rprintf(FERROR, "Batch file %s write error: %s\n", - rsync_argvs_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } close(fdb); } -struct file_list *create_flist_from_batch() +struct file_list *create_flist_from_batch(void) { unsigned char flags; @@ -192,7 +195,7 @@ struct file_list *create_flist_from_batch() (struct file_struct **) malloc(sizeof(batch_flist->files[0]) * batch_flist->malloced); if (!batch_flist->files) { - out_of_memory("create_flist_from_batch"); /* dw -- will exit */ + out_of_memory("create_flist_from_batch"); } for (flags = read_batch_flags(); flags; flags = read_batch_flags()) { @@ -222,23 +225,23 @@ struct file_list *create_flist_from_batch() } return batch_flist; - } int read_batch_flist_file(char *buff, int len) { int bytes_read; + char filename[MAXPATHLEN]; if (fdb_open) { - - /* Set up file extension */ - strcat(rsync_flist_file, batch_file_ext); + /* Set up file extension */ + strlcpy(filename, batch_prefix, sizeof(filename)); + strlcat(filename, rsync_flist_file, sizeof(filename)); /* Open batch flist file for reading */ - fdb = do_open(rsync_flist_file, O_RDONLY, 0); + fdb = do_open(filename, O_RDONLY, 0); if (fdb == -1) { rprintf(FERROR, "Batch file %s open error: %s\n", - rsync_flist_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } @@ -247,17 +250,17 @@ int read_batch_flist_file(char *buff, int len) /* Read flist batch file */ - bytes_read = read(fdb, buff, len); - - if (bytes_read == -1) { + switch (bytes_read = read(fdb, buff, len)) { + case -1: rprintf(FERROR, "Batch file %s read error: %s\n", - rsync_flist_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); - } - if (bytes_read == 0) { /* EOF */ + break; + case 0: /* EOF */ close(fdb); } + return bytes_read; } @@ -284,14 +287,18 @@ void read_batch_flist_info(struct file_struct **fptr) out_of_memory("read_batch_flist_info"); memset((char *) file, 0, sizeof(*file)); - (*fptr) = file; + *fptr = file; + /* + * Keep these in sync with bytes_to_write assignment + * in write_batch_flist_info() + */ read_batch_flist_file((char *) &file->modtime, sizeof(time_t)); read_batch_flist_file((char *) &file->length, sizeof(OFF_T)); read_batch_flist_file((char *) &file->mode, sizeof(mode_t)); read_batch_flist_file((char *) &file->inode, sizeof(INO64_T)); read_batch_flist_file((char *) &file->dev, sizeof(DEV64_T)); - read_batch_flist_file((char *) &file->rdev, sizeof(dev_t)); + read_batch_flist_file((char *) &file->rdev, sizeof(DEV64_T)); read_batch_flist_file((char *) &file->uid, sizeof(uid_t)); read_batch_flist_file((char *) &file->gid, sizeof(gid_t)); read_batch_flist_file(char_str_len, sizeof(char_str_len)); @@ -345,22 +352,25 @@ void read_batch_flist_info(struct file_struct **fptr) } } -void write_batch_csums_file(char *buff, int bytes_to_write) +void write_batch_csums_file(void *buff, int bytes_to_write) { - static int fdb_open = 1; + char filename[MAXPATHLEN]; if (fdb_open) { /* Set up file extension */ - strcat(rsync_csums_file, batch_file_ext); - - /* Open batch csums file for writing; create it if it doesn't exist */ - fdb = - do_open(rsync_csums_file, O_WRONLY | O_CREAT | O_TRUNC, + strlcpy(filename, batch_prefix, sizeof(filename)); + strlcat(filename, rsync_csums_file, sizeof(filename)); + + /* + * Open batch csums file for writing; + * create it if it doesn't exist + */ + fdb = do_open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE); if (fdb == -1) { rprintf(FERROR, "Batch file %s open error: %s\n", - rsync_csums_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } @@ -371,42 +381,40 @@ void write_batch_csums_file(char *buff, int bytes_to_write) if (write(fdb, buff, bytes_to_write) == -1) { rprintf(FERROR, "Batch file %s write error: %s\n", - rsync_csums_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } } -void close_batch_csums_file() +void close_batch_csums_file(void) { close(fdb); - } void write_batch_csum_info(int *flist_entry, int flist_count, struct sum_struct *s) { - int i; - int int_zero = 0; + size_t i; + size_t int_zero = 0; extern int csum_length; fdb_open = 1; /* Write csum info to batch file */ - write_batch_csums_file((char *) flist_entry, sizeof(int)); - write_batch_csums_file((char *) (s ? &s->count : &int_zero), - sizeof(int)); + /* FIXME: This will break if s->count is ever not exactly an int. */ + write_batch_csums_file(flist_entry, sizeof(int)); + write_batch_csums_file(s ? &s->count : &int_zero, sizeof(int)); + if (s) { for (i = 0; i < s->count; i++) { - write_batch_csums_file((char *) &s->sums[i].sum1, - sizeof(uint32)); + write_batch_csums_file(&s->sums[i].sum1, sizeof(uint32)); if ((*flist_entry == flist_count - 1) && (i == s->count - 1)) { fdb_close = 1; } - write_batch_csums_file(s->sums[i].sum2, - csum_length); + write_batch_csums_file(s->sums[i].sum2, csum_length); } } } @@ -415,17 +423,18 @@ int read_batch_csums_file(char *buff, int len) { static int fdb_open = 1; int bytes_read; + char filename[MAXPATHLEN]; if (fdb_open) { - - /* Set up file extension */ - strcat(rsync_csums_file, batch_file_ext); + /* Set up file extension */ + strlcpy(filename, batch_prefix, sizeof(filename)); + strlcat(filename, rsync_csums_file, sizeof(filename)); /* Open batch flist file for reading */ - fdb = do_open(rsync_csums_file, O_RDONLY, 0); + fdb = do_open(filename, O_RDONLY, 0); if (fdb == -1) { rprintf(FERROR, "Batch file %s open error: %s\n", - rsync_csums_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } @@ -438,14 +447,14 @@ int read_batch_csums_file(char *buff, int len) if (bytes_read == -1) { rprintf(FERROR, "Batch file %s read error: %s\n", - rsync_csums_file, strerror(errno)); + filename, strerror(errno)); close(fdb); exit_cleanup(1); } + return bytes_read; } - void read_batch_csum_info(int flist_entry, struct sum_struct *s, int *checksums_match) { @@ -456,11 +465,9 @@ void read_batch_csum_info(int flist_entry, struct sum_struct *s, char file_sum2[SUM_LENGTH]; extern int csum_length; - read_batch_csums_file((char *) &file_flist_entry, sizeof(int)); if (file_flist_entry != flist_entry) { - rprintf(FINFO, "file_list_entry NE flist_entry\n"); - rprintf(FINFO, "file_flist_entry = %d flist_entry = %d\n", + rprintf(FINFO, "file_flist_entry (%d) != flist_entry (%d)\n", file_flist_entry, flist_entry); close(fdb); exit_cleanup(1); @@ -476,31 +483,33 @@ void read_batch_csum_info(int flist_entry, struct sum_struct *s, read_batch_csums_file(file_sum2, csum_length); if ((s->sums[i].sum1 != file_sum1) || - (memcmp - (s->sums[i].sum2, file_sum2, - csum_length) != 0)) { + (memcmp(s->sums[i].sum2, file_sum2, csum_length) + != 0)) { *checksums_match = 0; } } /* end for */ } - } void write_batch_delta_file(char *buff, int bytes_to_write) { static int fdb_delta_open = 1; + char filename[MAXPATHLEN]; if (fdb_delta_open) { /* Set up file extension */ - strcat(rsync_delta_file, batch_file_ext); - - /* Open batch delta file for writing; create it if it doesn't exist */ - fdb_delta = - do_open(rsync_delta_file, O_WRONLY | O_CREAT | O_TRUNC, + strlcpy(filename, batch_prefix, sizeof(filename)); + strlcat(filename, rsync_delta_file, sizeof(filename)); + + /* + * Open batch delta file for writing; + * create it if it doesn't exist + */ + fdb_delta = do_open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE); if (fdb_delta == -1) { rprintf(FERROR, "Batch file %s open error: %s\n", - rsync_delta_file, strerror(errno)); + filename, strerror(errno)); close(fdb_delta); exit_cleanup(1); } @@ -511,32 +520,33 @@ void write_batch_delta_file(char *buff, int bytes_to_write) if (write(fdb_delta, buff, bytes_to_write) == -1) { rprintf(FERROR, "Batch file %s write error: %s\n", - rsync_delta_file, strerror(errno)); + filename, strerror(errno)); close(fdb_delta); exit_cleanup(1); } } -void close_batch_delta_file() + +void close_batch_delta_file(void) { close(fdb_delta); - } int read_batch_delta_file(char *buff, int len) { static int fdb_delta_open = 1; int bytes_read; + char filename[MAXPATHLEN]; if (fdb_delta_open) { - - /* Set up file extension */ - strcat(rsync_delta_file, batch_file_ext); + /* Set up file extension */ + strlcpy(filename, batch_prefix, sizeof(filename)); + strlcat(filename, rsync_delta_file, sizeof(filename)); /* Open batch flist file for reading */ - fdb_delta = do_open(rsync_delta_file, O_RDONLY, 0); + fdb_delta = do_open(filename, O_RDONLY, 0); if (fdb_delta == -1) { rprintf(FERROR, "Batch file %s open error: %s\n", - rsync_delta_file, strerror(errno)); + filename, strerror(errno)); close(fdb_delta); exit_cleanup(1); } @@ -549,14 +559,14 @@ int read_batch_delta_file(char *buff, int len) if (bytes_read == -1) { rprintf(FERROR, "Batch file %s read error: %s\n", - rsync_delta_file, strerror(errno)); + filename, strerror(errno)); close(fdb_delta); exit_cleanup(1); } + return bytes_read; } - void show_flist(int index, struct file_struct **fptr) { /* for debugging show_flist(flist->count, flist->files * */