X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/0047f535efa81213860a53491a062f756a2708d9..fa3e4a0548699ccaac41df2428fe1ad9d3659435:/log.c diff --git a/log.c b/log.c index 6f7f3a77..8cf417c2 100644 --- a/log.c +++ b/log.c @@ -38,6 +38,7 @@ extern int module_id; extern int msg_fd_out; extern int protocol_version; extern int preserve_times; +extern int log_format_has_i; extern int log_format_has_o_or_i; extern int daemon_log_format_has_o_or_i; extern char *auth_user; @@ -65,10 +66,11 @@ struct { { RERR_STREAMIO , "error in rsync protocol data stream" }, { RERR_MESSAGEIO , "errors with program diagnostics" }, { RERR_IPC , "error in IPC code" }, - { RERR_CRASH , "sibling process crashed" }, + { RERR_CRASHED , "sibling process crashed" }, { RERR_TERMINATED , "sibling process terminated abnormally" }, - { RERR_SIGNAL , "received SIGUSR1 or SIGINT" }, - { RERR_WAITCHILD , "some error returned by waitpid()" }, + { RERR_SIGNAL1 , "received SIGUSR1" }, + { RERR_SIGNAL , "received SIGINT, SIGTERM, or SIGHUP" }, + { RERR_WAITCHILD , "waitpid() failed" }, { RERR_MALLOC , "error allocating core memory buffers" }, { RERR_PARTIAL , "some files could not be transferred" }, { RERR_VANISHED , "some files vanished before they could be transferred" }, @@ -82,7 +84,6 @@ struct { }; - /* * Map from rsync error code to name, or return NULL. */ @@ -96,7 +97,6 @@ static char const *rerr_name(int code) return NULL; } - static void logit(int priority, char *buf) { if (logfile_was_closed) @@ -189,12 +189,34 @@ void logfile_reopen(void) } } +static void filtered_fwrite(const char *buf, int len, FILE *f) +{ + const char *s, *end = buf + len; + for (s = buf; s < end; s++) { + if ((s < end - 4 + && *s == '\\' && s[1] == '0' + && isdigit(*(uchar*)(s+2)) + && isdigit(*(uchar*)(s+3)) + && isdigit(*(uchar*)(s+4))) + || !isprint(*(uchar*)s) + || *(uchar*)s < ' ') { + if (s != buf && fwrite(buf, s - buf, 1, f) != 1) + exit_cleanup(RERR_MESSAGEIO); + fprintf(f, "\\%04o", *(uchar*)s); + buf = s + 1; + } + } + if (buf != end && fwrite(buf, end - buf, 1, f) != 1) + exit_cleanup(RERR_MESSAGEIO); +} + /* this is the underlying (unformatted) rsync debugging function. Call - * it with FINFO, FERROR or FLOG */ + * it with FINFO, FERROR or FLOG. Note: recursion can happen with + * certain fatal conditions. */ void rwrite(enum logcode code, char *buf, int len) { + int trailing_CR_or_NL; FILE *f = NULL; - /* recursion can happen with certain fatal conditions */ if (quiet && code == FINFO) return; @@ -202,8 +224,6 @@ void rwrite(enum logcode code, char *buf, int len) if (len < 0) exit_cleanup(RERR_MESSAGEIO); - buf[len] = 0; - if (am_server && msg_fd_out >= 0) { /* Pass the message to our sibling. */ send_msg((enum msgcode)code, buf, len); @@ -241,31 +261,44 @@ void rwrite(enum logcode code, char *buf, int len) } } - if (code == FERROR) { + switch (code) { + case FERROR: log_got_error = 1; f = stderr; - } - - if (code == FINFO) + goto pre_scan; + case FINFO: f = am_server ? stderr : stdout; - - if (!f) + pre_scan: + while (len > 1 && (*buf == '\n' || *buf == '\t')) { + fputc(*buf, f); + buf++; + len--; + } + break; + case FNAME: + f = am_server ? stderr : stdout; + break; + default: exit_cleanup(RERR_MESSAGEIO); + } - if (fwrite(buf, len, 1, f) != 1) - exit_cleanup(RERR_MESSAGEIO); + trailing_CR_or_NL = len && (buf[len-1] == '\n' || buf[len-1] == '\r') + ? buf[--len] : 0; + + filtered_fwrite(buf, len, f); - if (buf[len-1] == '\r' || buf[len-1] == '\n') + if (trailing_CR_or_NL) { + fputc(trailing_CR_or_NL, f); fflush(f); + } } - /* This is the rsync debugging function. Call it with FINFO, FERROR or * FLOG. */ void rprintf(enum logcode code, const char *format, ...) { va_list ap; - char buf[MAXPATHLEN+512]; + char buf[BIGPATHBUFLEN]; size_t len; va_start(ap, format); @@ -276,7 +309,7 @@ void rprintf(enum logcode code, const char *format, ...) * truncate the resulting string. (Note that configure ensures * that we have a vsnprintf() that doesn't ever return -1.) */ if (len > sizeof buf - 1) { - const char ellipsis[] = "[...]"; + static const char ellipsis[] = "[...]"; /* Reset length, and zero-terminate the end of our buffer */ len = sizeof buf - 1; @@ -292,7 +325,7 @@ void rprintf(enum logcode code, const char *format, ...) * If the input format string has a trailing newline, * we copy it into that extra null; if it doesn't, well, * all we lose is one byte. */ - strncpy(buf+len-sizeof ellipsis, ellipsis, sizeof ellipsis); + memcpy(buf+len-sizeof ellipsis, ellipsis, sizeof ellipsis); if (format[strlen(format)-1] == '\n') { buf[len-1] = '\n'; } @@ -301,7 +334,6 @@ void rprintf(enum logcode code, const char *format, ...) rwrite(code, buf, len); } - /* This is like rprintf, but it also tries to print some * representation of the error code. Normally errcode = errno. * @@ -313,7 +345,7 @@ void rprintf(enum logcode code, const char *format, ...) void rsyserr(enum logcode code, int errcode, const char *format, ...) { va_list ap; - char buf[MAXPATHLEN+512]; + char buf[BIGPATHBUFLEN]; size_t len; strcpy(buf, RSYNC_NAME ": "); @@ -333,8 +365,6 @@ void rsyserr(enum logcode code, int errcode, const char *format, ...) rwrite(code, buf, len); } - - void rflush(enum logcode code) { FILE *f = NULL; @@ -362,8 +392,6 @@ void rflush(enum logcode code) fflush(f); } - - /* a generic logging routine for send/recv, with parameter * substitiution */ static void log_formatted(enum logcode code, char *format, char *op, @@ -401,8 +429,14 @@ static void log_formatted(enum logcode code, char *format, char *op, n = NULL; switch (*p) { - case 'h': if (am_daemon) n = client_name(0); break; - case 'a': if (am_daemon) n = client_addr(0); break; + case 'h': + if (am_daemon) + n = client_name(0); + break; + case 'a': + if (am_daemon) + n = client_addr(0); + break; case 'l': strlcat(fmt, ".0f", sizeof fmt); snprintf(buf2, sizeof buf2, fmt, @@ -415,37 +449,35 @@ static void log_formatted(enum logcode code, char *format, char *op, (long)getpid()); n = buf2; break; - case 'o': n = op; break; + case 'o': + n = op; + break; case 'f': - n = safe_fname(f_name(file)); + n = f_name(file, NULL); if (am_sender && file->dir.root) { pathjoin(buf2, sizeof buf2, file->dir.root, n); - /* The buffer from safe_fname() has more - * room than MAXPATHLEN, so this is safe. */ + clean_fname(buf2, 0); if (fmt[1]) - strcpy(n, buf2); + strlcpy(n, buf2, MAXPATHLEN); else n = buf2; - } - clean_fname(n, 0); + } else + clean_fname(n, 0); if (*n == '/') n++; break; case 'n': - n = safe_fname(f_name(file)); - if (S_ISDIR(file->mode)) { - /* The buffer from safe_fname() has more - * room than MAXPATHLEN, so this is safe. */ - strcat(n, "/"); - } + n = f_name(file, NULL); + if (S_ISDIR(file->mode)) + strlcat(n, "/", MAXPATHLEN); break; case 'L': if (hlink && *hlink) { - n = safe_fname(hlink); + n = hlink; strcpy(buf2, " => "); } else if (S_ISLNK(file->mode) && file->u.link) { - n = safe_fname(file->u.link); + n = file->u.link; strcpy(buf2, " -> "); } else { n = ""; @@ -457,10 +489,18 @@ static void log_formatted(enum logcode code, char *format, char *op, snprintf(buf2 + 4, sizeof buf2 - 4, fmt, n); n = buf2; break; - case 'm': n = lp_name(module_id); break; - case 't': n = timestring(time(NULL)); break; - case 'P': n = lp_path(module_id); break; - case 'u': n = auth_user; break; + case 'm': + n = lp_name(module_id); + break; + case 't': + n = timestring(time(NULL)); + break; + case 'P': + n = lp_path(module_id); + break; + case 'u': + n = auth_user; + break; case 'b': if (am_sender) { b = stats.total_written - @@ -496,25 +536,25 @@ static void log_formatted(enum logcode code, char *format, char *op, : !(iflags & ITEM_TRANSFER) ? '.' : !local_server && *op == 's' ? '<' : '>'; n[1] = S_ISDIR(file->mode) ? 'd' + : IS_SPECIAL(file->mode) ? 'S' : IS_DEVICE(file->mode) ? 'D' : S_ISLNK(file->mode) ? 'L' : 'f'; n[2] = !(iflags & ITEM_REPORT_CHECKSUM) ? '.' : 'c'; n[3] = !(iflags & ITEM_REPORT_SIZE) ? '.' : 's'; n[4] = !(iflags & ITEM_REPORT_TIME) ? '.' - : !preserve_times || IS_DEVICE(file->mode) - || S_ISLNK(file->mode) ? 'T' : 't'; + : !preserve_times || S_ISLNK(file->mode) ? 'T' : 't'; n[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p'; n[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o'; n[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g'; - n[8] = !(iflags & ITEM_REPORT_XATTRS) ? '.' : 'a'; - n[9] = '\0'; + n[8] = '\0'; if (iflags & (ITEM_IS_NEW|ITEM_MISSING_DATA)) { char ch = iflags & ITEM_IS_NEW ? '+' : '?'; int i; for (i = 2; n[i]; i++) n[i] = ch; - } else if (n[0] == '.' || n[0] == 'h') { + } else if (n[0] == '.' || n[0] == 'h' + || (n[0] == 'c' && n[1] == 'f')) { int i; for (i = 2; n[i]; i++) { if (n[i] != '.') @@ -596,7 +636,7 @@ void log_item(struct file_struct *file, struct stats *initial_stats, log_formatted(FLOG, lp_log_format(module_id), s_or_r, file, initial_stats, iflags, hlink); } else if (log_format && !am_server) { - log_formatted(FINFO, log_format, s_or_r, + log_formatted(FNAME, log_format, s_or_r, file, initial_stats, iflags, hlink); } } @@ -605,9 +645,9 @@ void maybe_log_item(struct file_struct *file, int iflags, int itemizing, char *buf) { int significant_flags = iflags & SIGNIFICANT_ITEM_FLAGS; - int see_item = itemizing && (significant_flags || *buf || verbose > 1); - int local_change = iflags & ITEM_LOCAL_CHANGE - && (!(iflags & ITEM_XNAME_FOLLOWS) || significant_flags); + int see_item = itemizing && (significant_flags || *buf + || log_format_has_i > 1 || (verbose > 1 && log_format_has_i)); + int local_change = iflags & ITEM_LOCAL_CHANGE && significant_flags; if (am_server) { if (am_daemon && !dry_run && see_item) log_item(file, &stats, iflags, buf); @@ -644,7 +684,6 @@ void log_delete(char *fname, int mode) log_formatted(FLOG, fmt, "del.", &file, &stats, ITEM_DELETED, NULL); } - /* * Called when the transfer is interrupted for some reason. *