X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/ec52c3b9dadc91c7c5b27d6ff0e2b736b1be0b5a..04c841190f0ce5e89724d9221904c60e75988727:/log.c diff --git a/log.c b/log.c index 01fb10e0..20132c39 100644 --- a/log.c +++ b/log.c @@ -39,6 +39,7 @@ extern int protocol_version; extern int preserve_times; extern int stdout_format_has_i; extern int stdout_format_has_o_or_i; +extern int logfile_format_has_i; extern int logfile_format_has_o_or_i; extern mode_t orig_umask; extern char *auth_user; @@ -128,7 +129,7 @@ static void syslog_init() #endif #ifdef LOG_DAEMON - openlog("rsyncd", options, lp_syslog_facility()); + openlog("rsyncd", options, lp_syslog_facility(module_id)); #else openlog("rsyncd", options); #endif @@ -153,11 +154,26 @@ static void logfile_open(void) } } -void log_init(void) +void log_init(int restart) { - if (log_initialised) - return; - log_initialised = 1; + if (log_initialised) { + if (!restart) + return; + if (strcmp(logfile_name, lp_log_file(module_id)) != 0) { + if (logfile_fp) { + fclose(logfile_fp); + logfile_fp = NULL; + } else + closelog(); + logfile_name = NULL; + } else if (*logfile_name) + return; /* unchanged, non-empty "log file" names */ + else if (lp_syslog_facility(-1) != lp_syslog_facility(module_id)) + closelog(); + else + return; /* unchanged syslog settings */ + } else + log_initialised = 1; /* This looks pointless, but it is needed in order for the * C library on some systems to fetch the timezone info @@ -167,7 +183,7 @@ void log_init(void) /* Optionally use a log file instead of syslog. (Non-daemon * rsyncs will have already set logfile_name, as needed.) */ if (am_daemon && !logfile_name) - logfile_name = lp_log_file(); + logfile_name = lp_log_file(module_id); if (logfile_name && *logfile_name) logfile_open(); else @@ -235,22 +251,18 @@ void rwrite(enum logcode code, char *buf, int len) if (code == FCLIENT) code = FINFO; - else if (code == FNAME) { - if (am_server) - code = FINFO; - } else if (am_daemon || logfile_name) { + else if (am_daemon || logfile_name) { static int in_block; - char msg[2048], *s; + char msg[2048]; int priority = code == FERROR ? LOG_WARNING : LOG_INFO; if (in_block) return; in_block = 1; if (!log_initialised) - log_init(); + log_init(0); strlcpy(msg, buf, MIN((int)sizeof msg, len + 1)); - for (s = msg; *s == '\n' && s[1]; s++) {} - logit(priority, s); + logit(priority, msg); in_block = 0; if (code == FLOG || (am_daemon && !am_server)) @@ -275,17 +287,8 @@ void rwrite(enum logcode code, char *buf, int len) case FERROR: log_got_error = 1; f = stderr; - goto pre_scan; - case FINFO: - f = am_server ? stderr : stdout; - pre_scan: - while (len > 1 && *buf == '\n') { - fputc(*buf, f); - buf++; - len--; - } break; - case FNAME: + case FINFO: f = am_server ? stderr : stdout; break; default: @@ -675,7 +678,7 @@ int log_format_has(const char *format, char esc) return 0; } -/* Log the transfer of a file. If the code is FNAME, the output just goes +/* Log the transfer of a file. If the code is FCLIENT, the output just goes * to stdout. If it is FLOG, it just goes to the log file. Otherwise we * output to both. */ void log_item(enum logcode code, struct file_struct *file, @@ -684,10 +687,10 @@ void log_item(enum logcode code, struct file_struct *file, char *s_or_r = am_sender ? "send" : "recv"; if (code != FLOG && stdout_format && !am_server) { - log_formatted(FNAME, stdout_format, s_or_r, + log_formatted(FCLIENT, stdout_format, s_or_r, file, initial_stats, iflags, hlink); } - if (code != FNAME && logfile_format && *logfile_format) { + if (code != FCLIENT && logfile_format && *logfile_format) { log_formatted(FLOG, logfile_format, s_or_r, file, initial_stats, iflags, hlink); } @@ -701,11 +704,14 @@ void maybe_log_item(struct file_struct *file, int iflags, int itemizing, || stdout_format_has_i > 1 || (verbose > 1 && stdout_format_has_i)); int local_change = iflags & ITEM_LOCAL_CHANGE && significant_flags; if (am_server) { - if (logfile_name && !dry_run && see_item) + if (logfile_name && !dry_run && see_item + && (significant_flags || logfile_format_has_i)) log_item(FLOG, file, &stats, iflags, buf); } else if (see_item || local_change || *buf - || (S_ISDIR(file->mode) && significant_flags)) - log_item(FINFO, file, &stats, iflags, buf); + || (S_ISDIR(file->mode) && significant_flags)) { + enum logcode code = significant_flags || logfile_format_has_i ? FINFO : FCLIENT; + log_item(code, file, &stats, iflags, buf); + } } void log_delete(char *fname, int mode)