X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/92cc9dd7c2c1936f8558bfada8a704c0e6e73482..eddd5d129e20bb27aa8ffde4f63e92a35f6bedf8:/flist.c diff --git a/flist.c b/flist.c index f2096f3b..4c7331f5 100644 --- a/flist.c +++ b/flist.c @@ -37,6 +37,8 @@ extern int verbose; extern int do_progress; extern int am_server; extern int always_checksum; +extern int module_id; +extern int ignore_errors; extern int cvs_exclude; @@ -428,7 +430,7 @@ void send_file_entry(struct file_struct *file, int f, unsigned short base_flags) for (l1 = 0; lastname[l1] && (fname[l1] == lastname[l1]) && (l1 < 255); l1++) {} - l2 = strlen(fname) - l1; + l2 = strlen(fname+l1); if (l1 > 0) flags |= SAME_NAME; @@ -746,7 +748,6 @@ struct file_struct *make_file(char *fname, struct string_area **ap, char *p; char cleaned_name[MAXPATHLEN]; char linkbuf[MAXPATHLEN]; - extern int module_id; strlcpy(cleaned_name, fname, MAXPATHLEN); cleaned_name[MAXPATHLEN - 1] = 0; @@ -910,7 +911,7 @@ static void send_directory(int f, struct file_list *flist, char *dir) DIR *d; struct dirent *di; char fname[MAXPATHLEN]; - int l; + unsigned int offset; char *p; d = opendir(dir); @@ -921,28 +922,27 @@ static void send_directory(int f, struct file_list *flist, char *dir) return; } - strlcpy(fname, dir, MAXPATHLEN); - l = strlen(fname); - if (fname[l - 1] != '/') { - if (l == MAXPATHLEN - 1) { + offset = strlcpy(fname, dir, MAXPATHLEN); + p = fname + offset; + if (offset >= MAXPATHLEN || p[-1] != '/') { + if (offset >= MAXPATHLEN - 1) { io_error |= IOERR_GENERAL; rprintf(FERROR, "skipping long-named directory: %s\n", full_fname(fname)); closedir(d); return; } - strlcat(fname, "/", MAXPATHLEN); - l++; + *p++ = '/'; + offset++; } - p = fname + strlen(fname); local_exclude_list = NULL; if (cvs_exclude) { - if (strlen(fname) + strlen(".cvsignore") <= MAXPATHLEN - 1) { - strcpy(p, ".cvsignore"); - add_exclude_file(&exclude_list,fname,MISSING_OK,ADD_EXCLUDE); - } else { + if (strlcpy(p, ".cvsignore", MAXPATHLEN - offset) + < MAXPATHLEN - offset) + add_exclude_file(&local_exclude_list,fname,MISSING_OK,ADD_EXCLUDE); + else { io_error |= IOERR_GENERAL; rprintf(FINFO, "cannot cvs-exclude in long-named directory %s\n", @@ -955,13 +955,19 @@ static void send_directory(int f, struct file_list *flist, char *dir) if (dname[0] == '.' && (dname[1] == '\0' || (dname[1] == '.' && dname[2] == '\0'))) continue; - strlcpy(p, dname, MAXPATHLEN - l); - send_file_name(f, flist, fname, recurse, 0); + if (strlcpy(p, dname, MAXPATHLEN - offset) < MAXPATHLEN - offset) + send_file_name(f, flist, fname, recurse, 0); + else { + io_error |= IOERR_GENERAL; + rprintf(FINFO, + "cannot send long-named file %s\n", + full_fname(fname)); + } } if (errno) { io_error |= IOERR_GENERAL; rprintf(FERROR, "readdir(%s): (%d) %s\n", - dir, errno, strerror(errno)); + dir, errno, strerror(errno)); } if (local_exclude_list) @@ -1027,8 +1033,9 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) if (l == 2 && fname[0] == '.') { /* Turn "./" into just "." rather than "./." */ fname[1] = '\0'; - } else { - strlcat(fname, ".", MAXPATHLEN); + } else if (l < MAXPATHLEN) { + fname[l++] = '.'; + fname[l] = '\0'; } } @@ -1125,26 +1132,23 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) } } - if (f != -1) + if (f != -1) { send_file_entry(NULL, f, 0); - if (show_filelist_p() && f != -1) - finish_filelist_progress(flist); + if (show_filelist_p()) + finish_filelist_progress(flist); + } clean_flist(flist, 0, 0); - /* now send the uid/gid list. This was introduced in protocol - version 15 */ - if (f != -1) + if (f != -1) { + /* Now send the uid/gid list. This was introduced in + * protocol version 15 */ send_uid_list(f); - /* send the io_error flag */ - if (f != -1) { - extern int module_id; + /* send the io_error flag */ write_int(f, lp_ignore_errors(module_id) ? 0 : io_error); - } - if (f != -1) { io_end_buffering(); stats.flist_size = stats.total_written - start_write; stats.num_files = flist->count; @@ -1208,23 +1212,23 @@ struct file_list *recv_file_list(int f) if (verbose > 2) rprintf(FINFO, "received %d names\n", flist->count); - clean_flist(flist, relative_paths, 1); - if (show_filelist_p()) finish_filelist_progress(flist); - /* now recv the uid/gid list. This was introduced in protocol version 15 */ - if (f != -1) + clean_flist(flist, relative_paths, 1); + + if (f != -1) { + /* Now send the uid/gid list. This was introduced in + * protocol version 15 */ recv_uid_list(f, flist); - /* recv the io_error flag */ - if (f != -1 && !read_batch) { /* dw-added readbatch */ - extern int module_id; - extern int ignore_errors; - if (lp_ignore_errors(module_id) || ignore_errors) - read_int(f); - else - io_error |= read_int(f); + if (!read_batch) { + /* Recv the io_error flag */ + if (lp_ignore_errors(module_id) || ignore_errors) + read_int(f); + else + io_error |= read_int(f); + } } if (list_only) { @@ -1233,7 +1237,6 @@ struct file_list *recv_file_list(int f) list_file_entry(flist->files[i]); } - if (verbose > 2) rprintf(FINFO, "recv_file_list done\n");