Make sure rwrite() can handle any logcode value in --msgs2stderr mode.
[rsync/rsync.git] / log.c
CommitLineData
0b76cd63 1/*
0f78b815
WD
2 * Logging and utility functions.
3 *
4 * Copyright (C) 1998-2001 Andrew Tridgell <tridge@samba.org>
5 * Copyright (C) 2000-2001 Martin Pool <mbp@samba.org>
b3bf9b9d 6 * Copyright (C) 2003-2009 Wayne Davison
0f78b815
WD
7 *
8 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
0f78b815
WD
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
e7c67065 18 * You should have received a copy of the GNU General Public License along
4fd842f9 19 * with this program; if not, visit the http://fsf.org website.
0f78b815 20 */
0b76cd63 21
0b76cd63 22#include "rsync.h"
5dd14f0c
WD
23#include "itypes.h"
24#include "inums.h"
0b76cd63 25
088aff1a 26extern int dry_run;
548abf96
WD
27extern int am_daemon;
28extern int am_server;
29extern int am_sender;
332cf6df 30extern int am_generator;
c1759b9f 31extern int local_server;
548abf96
WD
32extern int quiet;
33extern int module_id;
886df221 34extern int checksum_len;
507433f6 35extern int allow_8bit_chars;
19bc826d 36extern int protocol_version;
886df221 37extern int always_checksum;
ef74f5d6 38extern int preserve_times;
eabc85ef 39extern int msgs2stderr;
9b25ef35
WD
40extern int uid_ndx;
41extern int gid_ndx;
b5343510
WD
42extern int stdout_format_has_i;
43extern int stdout_format_has_o_or_i;
d0133e6e 44extern int logfile_format_has_i;
13b597fa 45extern int logfile_format_has_o_or_i;
1ed56a05 46extern int receiver_symlink_times;
4dde3347
WD
47extern int64 total_data_written;
48extern int64 total_data_read;
c5b7aa15 49extern mode_t orig_umask;
548abf96 50extern char *auth_user;
b5343510 51extern char *stdout_format;
13b597fa
WD
52extern char *logfile_format;
53extern char *logfile_name;
332cf6df 54#ifdef ICONV_CONST
9a31746b
WD
55extern iconv_t ic_chck;
56#endif
332cf6df 57#ifdef ICONV_OPTION
93465f51 58extern iconv_t ic_recv;
332cf6df 59#endif
b791d680 60extern char curr_dir[MAXPATHLEN];
26e21efc 61extern char *full_module_path;
6fb7cc38 62extern unsigned int module_dirlen;
b791d680 63extern char sender_file_sum[MAX_DIGEST_LEN];
11ef77b7 64extern const char undetermined_hostname[];
548abf96 65
ceca8cca 66static int log_initialised;
64c37826 67static int logfile_was_closed;
13b597fa 68static FILE *logfile_fp;
b35d0d8e 69struct stats stats;
e0414f42 70
3f0211b6 71int got_xfer_error = 0;
951e826b 72int output_needs_newline = 0;
20caffd2 73int send_msgs_to_gen = 0;
af642a61 74
4dde3347
WD
75static int64 initial_data_written;
76static int64 initial_data_read;
77
af642a61
MP
78struct {
79 int code;
80 char const *name;
81} const rerr_names[] = {
4a7319be
WD
82 { RERR_SYNTAX , "syntax or usage error" },
83 { RERR_PROTOCOL , "protocol incompatibility" },
84 { RERR_FILESELECT , "errors selecting input/output files, dirs" },
85 { RERR_UNSUPPORTED, "requested action not supported" },
86 { RERR_STARTCLIENT, "error starting client-server protocol" },
87 { RERR_SOCKETIO , "error in socket IO" },
88 { RERR_FILEIO , "error in file IO" },
89 { RERR_STREAMIO , "error in rsync protocol data stream" },
90 { RERR_MESSAGEIO , "errors with program diagnostics" },
91 { RERR_IPC , "error in IPC code" },
60168410 92 { RERR_CRASHED , "sibling process crashed" },
0047f535 93 { RERR_TERMINATED , "sibling process terminated abnormally" },
4a50a217
WD
94 { RERR_SIGNAL1 , "received SIGUSR1" },
95 { RERR_SIGNAL , "received SIGINT, SIGTERM, or SIGHUP" },
f14a65d9 96 { RERR_WAITCHILD , "waitpid() failed" },
4a7319be 97 { RERR_MALLOC , "error allocating core memory buffers" },
94a4a125 98 { RERR_PARTIAL , "some files/attrs were not transferred (see previous errors)" },
584ba4eb 99 { RERR_VANISHED , "some files vanished before they could be transferred" },
4a7319be 100 { RERR_TIMEOUT , "timeout in data send/receive" },
ba22c9e2 101 { RERR_CONTIMEOUT , "timeout waiting for daemon connection" },
19b27a48
AT
102 { RERR_CMD_FAILED , "remote shell failed" },
103 { RERR_CMD_KILLED , "remote shell killed" },
24cecf13
WD
104 { RERR_CMD_RUN , "remote command could not be run" },
105 { RERR_CMD_NOTFOUND,"remote command not found" },
26718401 106 { RERR_DEL_LIMIT , "the --max-delete limit stopped deletions" },
4a7319be 107 { 0, NULL }
af642a61
MP
108};
109
af642a61
MP
110/*
111 * Map from rsync error code to name, or return NULL.
112 */
113static char const *rerr_name(int code)
114{
4a7319be
WD
115 int i;
116 for (i = 0; rerr_names[i].name; i++) {
117 if (rerr_names[i].code == code)
118 return rerr_names[i].name;
119 }
120 return NULL;
af642a61
MP
121}
122
4a19c3b2 123static void logit(int priority, const char *buf)
4f6325c3 124{
64c37826
WD
125 if (logfile_was_closed)
126 logfile_reopen();
13b597fa
WD
127 if (logfile_fp) {
128 fprintf(logfile_fp, "%s [%d] %s",
f7632fc6 129 timestring(time(NULL)), (int)getpid(), buf);
13b597fa 130 fflush(logfile_fp);
4f6325c3
AT
131 } else {
132 syslog(priority, "%s", buf);
133 }
134}
e42c9458 135
6afb9077 136static void syslog_init()
1a016bfd 137{
6afb9077 138 static int been_here = 0;
1a016bfd 139 int options = LOG_PID;
6afb9077
WD
140
141 if (been_here)
142 return;
143 been_here = 1;
144
145#ifdef LOG_NDELAY
146 options |= LOG_NDELAY;
147#endif
148
149#ifdef LOG_DAEMON
04c84119 150 openlog("rsyncd", options, lp_syslog_facility(module_id));
6afb9077
WD
151#else
152 openlog("rsyncd", options);
153#endif
154
155#ifndef LOG_NDELAY
156 logit(LOG_INFO, "rsyncd started\n");
157#endif
158}
159
64c37826
WD
160static void logfile_open(void)
161{
c5b7aa15 162 mode_t old_umask = umask(022 | orig_umask);
13b597fa 163 logfile_fp = fopen(logfile_name, "a");
64c37826 164 umask(old_umask);
13b597fa 165 if (!logfile_fp) {
64c37826
WD
166 int fopen_errno = errno;
167 /* Rsync falls back to using syslog on failure. */
168 syslog_init();
169 rsyserr(FERROR, fopen_errno,
13b597fa 170 "failed to open log-file %s", logfile_name);
64c37826
WD
171 rprintf(FINFO, "Ignoring \"log file\" setting.\n");
172 }
173}
174
04c84119 175void log_init(int restart)
6afb9077 176{
04c84119
WD
177 if (log_initialised) {
178 if (!restart)
179 return;
180 if (strcmp(logfile_name, lp_log_file(module_id)) != 0) {
181 if (logfile_fp) {
182 fclose(logfile_fp);
183 logfile_fp = NULL;
184 } else
185 closelog();
186 logfile_name = NULL;
187 } else if (*logfile_name)
188 return; /* unchanged, non-empty "log file" names */
189 else if (lp_syslog_facility(-1) != lp_syslog_facility(module_id))
190 closelog();
191 else
192 return; /* unchanged syslog settings */
193 } else
194 log_initialised = 1;
1a016bfd 195
38de2866 196 /* This looks pointless, but it is needed in order for the
4a7319be 197 * C library on some systems to fetch the timezone info
38de2866
WD
198 * before the chroot. */
199 timestring(time(NULL));
958f3735 200
13b597fa
WD
201 /* Optionally use a log file instead of syslog. (Non-daemon
202 * rsyncs will have already set logfile_name, as needed.) */
203 if (am_daemon && !logfile_name)
04c84119 204 logfile_name = lp_log_file(module_id);
13b597fa 205 if (logfile_name && *logfile_name)
64c37826
WD
206 logfile_open();
207 else
208 syslog_init();
1a016bfd 209}
1a016bfd 210
64c37826 211void logfile_close(void)
4a239e98 212{
13b597fa 213 if (logfile_fp) {
64c37826 214 logfile_was_closed = 1;
13b597fa
WD
215 fclose(logfile_fp);
216 logfile_fp = NULL;
4a239e98
WD
217 }
218}
219
64c37826 220void logfile_reopen(void)
4a239e98 221{
64c37826
WD
222 if (logfile_was_closed) {
223 logfile_was_closed = 0;
224 logfile_open();
4a239e98
WD
225 }
226}
227
3648ab3a 228static void filtered_fwrite(FILE *f, const char *buf, int len, int use_isprint)
be0602ec
WD
229{
230 const char *s, *end = buf + len;
231 for (s = buf; s < end; s++) {
232 if ((s < end - 4
3648ab3a 233 && *s == '\\' && s[1] == '#'
2dc7b8bd
WD
234 && isDigit(s + 2)
235 && isDigit(s + 3)
236 && isDigit(s + 4))
3648ab3a 237 || (*s != '\t'
2dc7b8bd 238 && ((use_isprint && !isPrint(s))
3648ab3a 239 || *(uchar*)s < ' '))) {
be0602ec 240 if (s != buf && fwrite(buf, s - buf, 1, f) != 1)
25f637a3 241 exit_cleanup(RERR_MESSAGEIO);
3648ab3a 242 fprintf(f, "\\#%03o", *(uchar*)s);
be0602ec
WD
243 buf = s + 1;
244 }
245 }
246 if (buf != end && fwrite(buf, end - buf, 1, f) != 1)
25f637a3 247 exit_cleanup(RERR_MESSAGEIO);
be0602ec
WD
248}
249
554e0a8d 250/* this is the underlying (unformatted) rsync debugging function. Call
3f0211b6
WD
251 * it with FINFO, FERROR_*, FWARNING, FLOG, or FCLIENT. Note: recursion
252 * can happen with certain fatal conditions. */
332cf6df 253void rwrite(enum logcode code, const char *buf, int len, int is_utf8)
0b76cd63 254{
be0602ec 255 int trailing_CR_or_NL;
1d891835 256 FILE *f = msgs2stderr ? stderr : stdout;
332cf6df
WD
257#ifdef ICONV_OPTION
258 iconv_t ic = is_utf8 && ic_recv != (iconv_t)-1 ? ic_recv : ic_chck;
259#else
260#ifdef ICONV_CONST
261 iconv_t ic = ic_chck;
262#endif
263#endif
8d9dc9f9 264
a644fc3c 265 if (len < 0)
25f637a3 266 exit_cleanup(RERR_MESSAGEIO);
0b76cd63 267
1d891835 268 if (msgs2stderr && code != FLOG)
eabc85ef 269 goto output_msg;
eabc85ef 270
20caffd2 271 if (send_msgs_to_gen) {
332cf6df 272 assert(!is_utf8);
7c7462cd 273 /* Pass the message to our sibling in native charset. */
332cf6df 274 send_msg((enum msgcode)code, buf, len, 0);
11a5a3c7
AT
275 return;
276 }
277
3f0211b6 278 if (code == FERROR_SOCKET) /* This gets simplified for a non-sibling. */
b66e31bf 279 code = FERROR;
7c7462cd
WD
280 else if (code == FERROR_UTF8) {
281 is_utf8 = 1;
282 code = FERROR;
283 }
b66e31bf 284
1eec003a
WD
285 if (code == FCLIENT)
286 code = FINFO;
d0133e6e 287 else if (am_daemon || logfile_name) {
0bb4d176 288 static int in_block;
d0133e6e 289 char msg[2048];
3f0211b6 290 int priority = code == FINFO || code == FLOG ? LOG_INFO : LOG_WARNING;
0bb4d176
WD
291
292 if (in_block)
a644fc3c 293 return;
0bb4d176
WD
294 in_block = 1;
295 if (!log_initialised)
04c84119 296 log_init(0);
0bb4d176 297 strlcpy(msg, buf, MIN((int)sizeof msg, len + 1));
d0133e6e 298 logit(priority, msg);
0bb4d176
WD
299 in_block = 0;
300
13b597fa 301 if (code == FLOG || (am_daemon && !am_server))
a644fc3c 302 return;
0bb4d176 303 } else if (code == FLOG)
ff8b29b8 304 return;
0bb4d176 305
3f0211b6 306 if (quiet && code == FINFO)
b3e8e7c7
WD
307 return;
308
0bb4d176 309 if (am_server) {
3f0211b6
WD
310 enum msgcode msg = (enum msgcode)code;
311 if (protocol_version < 30) {
312 if (msg == MSG_ERROR)
313 msg = MSG_ERROR_XFER;
314 else if (msg == MSG_WARNING)
315 msg = MSG_INFO;
316 }
0bb4d176 317 /* Pass the message to the non-server side. */
3f0211b6 318 if (send_msg(msg, buf, len, !is_utf8))
0bb4d176
WD
319 return;
320 if (am_daemon) {
321 /* TODO: can we send the error to the user somehow? */
322 return;
323 }
1d891835 324 f = stderr;
0b76cd63
AT
325 }
326
37077bd3 327output_msg:
be0602ec 328 switch (code) {
3f0211b6
WD
329 case FERROR_XFER:
330 got_xfer_error = 1;
9468cf79 331 /* FALL THROUGH */
be0602ec 332 case FERROR:
ef9d3a15
WD
333 case FERROR_UTF8:
334 case FERROR_SOCKET:
3f0211b6 335 case FWARNING:
ff8b29b8 336 f = stderr;
be0602ec 337 break;
ef9d3a15 338 case FLOG:
d0133e6e 339 case FINFO:
37077bd3 340 case FCLIENT:
be0602ec
WD
341 break;
342 default:
ef9d3a15 343 fprintf(stderr, "Unknown logcode in rwrite(): %d\n", (int)code);
25f637a3 344 exit_cleanup(RERR_MESSAGEIO);
be0602ec 345 }
0b76cd63 346
951e826b 347 if (output_needs_newline) {
f3185096 348 fputc('\n', f);
951e826b 349 output_needs_newline = 0;
f3185096
WD
350 }
351
be0602ec
WD
352 trailing_CR_or_NL = len && (buf[len-1] == '\n' || buf[len-1] == '\r')
353 ? buf[--len] : 0;
8d9dc9f9 354
bb4e4d88
WD
355 if (len && buf[0] == '\r') {
356 fputc('\r', f);
357 buf++;
358 len--;
359 }
360
332cf6df
WD
361#ifdef ICONV_CONST
362 if (ic != (iconv_t)-1) {
2509753f 363 xbuf outbuf, inbuf;
9a31746b 364 char convbuf[1024];
2509753f
WD
365 int ierrno;
366
367 INIT_CONST_XBUF(outbuf, convbuf);
bb640d32 368 INIT_XBUF(inbuf, (char*)buf, len, (size_t)-1);
2509753f
WD
369
370 while (inbuf.len) {
d8a7290f 371 iconvbufs(ic, &inbuf, &outbuf, inbuf.pos ? 0 : ICB_INIT);
2509753f
WD
372 ierrno = errno;
373 if (outbuf.len) {
374 filtered_fwrite(f, convbuf, outbuf.len, 0);
375 outbuf.len = 0;
9a31746b 376 }
2509753f 377 if (!ierrno || ierrno == E2BIG)
9a31746b 378 continue;
2509753f
WD
379 fprintf(f, "\\#%03o", CVAL(inbuf.buf, inbuf.pos++));
380 inbuf.len--;
9a31746b 381 }
9a31746b
WD
382 } else
383#endif
507433f6 384 filtered_fwrite(f, buf, len, !allow_8bit_chars);
be0602ec
WD
385
386 if (trailing_CR_or_NL) {
387 fputc(trailing_CR_or_NL, f);
0bb4d176 388 fflush(f);
be0602ec 389 }
0b76cd63 390}
0455cd93 391
3f0211b6
WD
392/* This is the rsync debugging function. Call it with FINFO, FERROR_*,
393 * FWARNING, FLOG, or FCLIENT. */
a039749b 394void rprintf(enum logcode code, const char *format, ...)
554e0a8d 395{
4a7319be 396 va_list ap;
b74b3d53 397 char buf[BIGPATHBUFLEN];
8fcdc444 398 size_t len;
554e0a8d
AT
399
400 va_start(ap, format);
ef74f5d6 401 len = vsnprintf(buf, sizeof buf, format, ap);
554e0a8d
AT
402 va_end(ap);
403
b2f02464 404 /* Deal with buffer overruns. Instead of panicking, just
8fcdc444
WD
405 * truncate the resulting string. (Note that configure ensures
406 * that we have a vsnprintf() that doesn't ever return -1.) */
407 if (len > sizeof buf - 1) {
b74b3d53 408 static const char ellipsis[] = "[...]";
b2f02464
MP
409
410 /* Reset length, and zero-terminate the end of our buffer */
ef74f5d6 411 len = sizeof buf - 1;
b2f02464
MP
412 buf[len] = '\0';
413
414 /* Copy the ellipsis to the end of the string, but give
415 * us one extra character:
416 *
ef74f5d6 417 * v--- null byte at buf[sizeof buf - 1]
b2f02464
MP
418 * abcdefghij0
419 * -> abcd[...]00 <-- now two null bytes at end
420 *
421 * If the input format string has a trailing newline,
422 * we copy it into that extra null; if it doesn't, well,
423 * all we lose is one byte. */
b74b3d53 424 memcpy(buf+len-sizeof ellipsis, ellipsis, sizeof ellipsis);
b2f02464
MP
425 if (format[strlen(format)-1] == '\n') {
426 buf[len-1] = '\n';
427 }
428 }
554e0a8d 429
332cf6df 430 rwrite(code, buf, len, 0);
554e0a8d 431}
0b76cd63 432
a039749b
MP
433/* This is like rprintf, but it also tries to print some
434 * representation of the error code. Normally errcode = errno.
435 *
436 * Unlike rprintf, this always adds a newline and there should not be
437 * one in the format string.
438 *
439 * Note that since strerror might involve dynamically loading a
440 * message catalog we need to call it once before chroot-ing. */
441void rsyserr(enum logcode code, int errcode, const char *format, ...)
442{
4a7319be 443 va_list ap;
b74b3d53 444 char buf[BIGPATHBUFLEN];
8fcdc444
WD
445 size_t len;
446
c9bce0b8 447 strlcpy(buf, RSYNC_NAME ": ", sizeof buf);
8fcdc444 448 len = (sizeof RSYNC_NAME ": ") - 1;
a039749b
MP
449
450 va_start(ap, format);
8fcdc444 451 len += vsnprintf(buf + len, sizeof buf - len, format, ap);
a039749b
MP
452 va_end(ap);
453
8fcdc444
WD
454 if (len < sizeof buf) {
455 len += snprintf(buf + len, sizeof buf - len,
456 ": %s (%d)\n", strerror(errcode), errcode);
457 }
458 if (len >= sizeof buf)
25f637a3 459 exit_cleanup(RERR_MESSAGEIO);
a039749b 460
332cf6df 461 rwrite(code, buf, len, 0);
a039749b
MP
462}
463
ff41a59f 464void rflush(enum logcode code)
0b76cd63 465{
1d891835 466 FILE *f;
0455cd93 467
13b597fa 468 if (am_daemon || code == FLOG)
0b76cd63 469 return;
0b76cd63 470
951e826b 471 if (!am_server && (code == FINFO || code == FCLIENT))
13b597fa 472 f = stdout;
3f0211b6
WD
473 else
474 f = stderr;
0b76cd63 475
0b76cd63
AT
476 fflush(f);
477}
478
4dde3347
WD
479void remember_initial_stats(void)
480{
481 initial_data_read = total_data_read;
482 initial_data_written = total_data_written;
483}
484
b5343510 485/* A generic logging routine for send/recv, with parameter substitiution. */
4a19c3b2 486static void log_formatted(enum logcode code, const char *format, const char *op,
4dde3347 487 struct file_struct *file, const char *fname, int iflags,
112d728f 488 const char *hlink)
e08bfe12 489{
ddd74b67 490 char buf[MAXPATHLEN+1024], buf2[MAXPATHLEN], fmt[32];
4a19c3b2
WD
491 char *p, *s, *c;
492 const char *n;
ef74f5d6 493 size_t len, total;
1b7c47cb 494 int64 b;
e08bfe12 495
ddd74b67
WD
496 *fmt = '%';
497
aa126974 498 /* We expand % codes one by one in place in buf. We don't
126e7aff
WD
499 * copy in the terminating null of the inserted strings, but
500 * rather keep going until we reach the null of the format. */
ef74f5d6 501 total = strlcpy(buf, format, sizeof buf);
d9c0051f
WD
502 if (total > MAXPATHLEN) {
503 rprintf(FERROR, "log-format string is WAY too long!\n");
25f637a3 504 exit_cleanup(RERR_MESSAGEIO);
d9c0051f
WD
505 }
506 buf[total++] = '\n';
507 buf[total] = '\0';
0455cd93 508
16f960fe 509 for (p = buf; (p = strchr(p, '%')) != NULL; ) {
df7ec1cf 510 int humanize = 0;
ddd74b67 511 s = p++;
4a19c3b2 512 c = fmt + 1;
df7ec1cf
WD
513 while (*p == '\'') {
514 humanize++;
515 p++;
516 }
9baed760 517 if (*p == '-')
4a19c3b2
WD
518 *c++ = *p++;
519 while (isDigit(p) && c - fmt < (int)(sizeof fmt) - 8)
520 *c++ = *p++;
df7ec1cf
WD
521 while (*p == '\'') {
522 humanize++;
523 p++;
524 }
e145d51b
WD
525 if (!*p)
526 break;
4a19c3b2 527 *c = '\0';
e08bfe12 528 n = NULL;
e08bfe12 529
11ef77b7
MM
530 /* Note for %h and %a: it doesn't matter what fd we pass to
531 * client_{name,addr} because rsync_module will already have
532 * forced the answer to be cached (assuming, of course, for %h
533 * that lp_reverse_lookup(module_id) is true). */
0455cd93 534 switch (*p) {
b74b3d53 535 case 'h':
11ef77b7
MM
536 if (am_daemon) {
537 n = lp_reverse_lookup(module_id)
538 ? client_name(0) : undetermined_hostname;
539 }
b74b3d53
WD
540 break;
541 case 'a':
542 if (am_daemon)
543 n = client_addr(0);
544 break;
4a7319be 545 case 'l':
7f0db4fd 546 strlcat(fmt, "s", sizeof fmt);
ddd74b67 547 snprintf(buf2, sizeof buf2, fmt,
df7ec1cf 548 do_big_num(F_LENGTH(file), humanize, NULL));
e08bfe12
AT
549 n = buf2;
550 break;
427b6179 551 case 'U':
4ade505c 552 strlcat(fmt, "u", sizeof fmt);
427b6179 553 snprintf(buf2, sizeof buf2, fmt,
9b25ef35 554 uid_ndx ? F_OWNER(file) : 0);
427b6179
WD
555 n = buf2;
556 break;
557 case 'G':
9b25ef35 558 if (!gid_ndx || file->flags & FLAG_SKIP_GROUP)
998113fe
WD
559 n = "DEFAULT";
560 else {
4ade505c 561 strlcat(fmt, "u", sizeof fmt);
998113fe 562 snprintf(buf2, sizeof buf2, fmt,
4ade505c 563 F_GROUP(file));
998113fe
WD
564 n = buf2;
565 }
427b6179 566 break;
4a7319be 567 case 'p':
126e7aff 568 strlcat(fmt, "ld", sizeof fmt);
ddd74b67 569 snprintf(buf2, sizeof buf2, fmt,
126e7aff 570 (long)getpid());
e08bfe12
AT
571 n = buf2;
572 break;
427b6179 573 case 'M':
4a19c3b2 574 n = c = timestring(file->modtime);
f2681d42 575 while ((c = strchr(c, ' ')) != NULL)
4a19c3b2 576 *c = '-';
427b6179
WD
577 break;
578 case 'B':
4a19c3b2
WD
579 c = buf2 + MAXPATHLEN - PERMSTRING_SIZE - 1;
580 permstring(c, file->mode);
581 n = c + 1; /* skip the type char */
427b6179 582 break;
b74b3d53
WD
583 case 'o':
584 n = op;
585 break;
4a7319be 586 case 'f':
112d728f
WD
587 if (fname) {
588 c = f_name_buf();
589 strlcpy(c, fname, MAXPATHLEN);
590 } else
591 c = f_name(file, NULL);
8fc4033e 592 if (am_sender && F_PATHNAME(file)) {
9baed760 593 pathjoin(buf2, sizeof buf2,
8fc4033e 594 F_PATHNAME(file), c);
0ee6ca98 595 clean_fname(buf2, 0);
4a19c3b2
WD
596 if (fmt[1]) {
597 strlcpy(c, buf2, MAXPATHLEN);
598 n = c;
599 } else
dcbae654 600 n = buf2;
1b81f797 601 } else if (am_daemon && *c != '/') {
ec55b4f2 602 pathjoin(buf2, sizeof buf2,
4a19c3b2 603 curr_dir + module_dirlen, c);
ec55b4f2 604 clean_fname(buf2, 0);
4a19c3b2
WD
605 if (fmt[1]) {
606 strlcpy(c, buf2, MAXPATHLEN);
607 n = c;
608 } else
ec55b4f2 609 n = buf2;
4a19c3b2
WD
610 } else {
611 clean_fname(c, 0);
612 n = c;
613 }
9baed760
WD
614 if (*n == '/')
615 n++;
ab7104da 616 break;
ef74f5d6 617 case 'n':
112d728f
WD
618 if (fname) {
619 c = f_name_buf();
620 strlcpy(c, fname, MAXPATHLEN);
621 } else
622 c = f_name(file, NULL);
0ee6ca98 623 if (S_ISDIR(file->mode))
4a19c3b2
WD
624 strlcat(c, "/", MAXPATHLEN);
625 n = c;
ef74f5d6
WD
626 break;
627 case 'L':
afc65a5a 628 if (hlink && *hlink) {
0ee6ca98 629 n = hlink;
c9bce0b8 630 strlcpy(buf2, " => ", sizeof buf2);
112d728f 631 } else if (S_ISLNK(file->mode) && !fname) {
82ad07c4 632 n = F_SYMLINK(file);
c9bce0b8 633 strlcpy(buf2, " -> ", sizeof buf2);
126e7aff 634 } else {
ef74f5d6 635 n = "";
126e7aff
WD
636 if (!fmt[1])
637 break;
c9bce0b8 638 strlcpy(buf2, " ", sizeof buf2);
126e7aff
WD
639 }
640 strlcat(fmt, "s", sizeof fmt);
641 snprintf(buf2 + 4, sizeof buf2 - 4, fmt, n);
642 n = buf2;
ef74f5d6 643 break;
b74b3d53
WD
644 case 'm':
645 n = lp_name(module_id);
646 break;
647 case 't':
648 n = timestring(time(NULL));
649 break;
650 case 'P':
26e21efc 651 n = full_module_path;
b74b3d53
WD
652 break;
653 case 'u':
654 n = auth_user;
655 break;
4a7319be 656 case 'b':
4dde3347
WD
657 if (!(iflags & ITEM_TRANSFER))
658 b = 0;
659 else if (am_sender)
660 b = total_data_written - initial_data_written;
661 else
662 b = total_data_read - initial_data_read;
7f0db4fd 663 strlcat(fmt, "s", sizeof fmt);
df7ec1cf
WD
664 snprintf(buf2, sizeof buf2, fmt,
665 do_big_num(b, humanize, NULL));
1b7c47cb
AT
666 n = buf2;
667 break;
4a7319be 668 case 'c':
4dde3347
WD
669 if (!(iflags & ITEM_TRANSFER))
670 b = 0;
671 else if (!am_sender)
672 b = total_data_written - initial_data_written;
673 else
674 b = total_data_read - initial_data_read;
7f0db4fd 675 strlcat(fmt, "s", sizeof fmt);
df7ec1cf
WD
676 snprintf(buf2, sizeof buf2, fmt,
677 do_big_num(b, humanize, NULL));
1b7c47cb
AT
678 n = buf2;
679 break;
886df221
WD
680 case 'C':
681 if (protocol_version >= 30
682 && (iflags & ITEM_TRANSFER
683 || (always_checksum && S_ISREG(file->mode)))) {
684 int i, x1, x2;
685 const char *sum = iflags & ITEM_TRANSFER
686 ? sender_file_sum : F_SUM(file);
687 c = buf2 + checksum_len*2;
688 *c = '\0';
689 for (i = checksum_len; --i >= 0; ) {
690 x1 = CVAL(sum, i);
691 x2 = x1 >> 4;
692 x1 &= 0xF;
693 *--c = x1 <= 9 ? x1 + '0' : x1 + 'a' - 10;
694 *--c = x2 <= 9 ? x2 + '0' : x2 + 'a' - 10;
695 }
696 } else {
697 memset(buf2, ' ', checksum_len*2);
698 buf2[checksum_len*2] = '\0';
699 }
700 n = buf2;
701 break;
ef74f5d6 702 case 'i':
19bc826d 703 if (iflags & ITEM_DELETED) {
46f800e8 704 n = "*deleting ";
19bc826d
WD
705 break;
706 }
4a19c3b2
WD
707 n = c = buf2 + MAXPATHLEN - 32;
708 c[0] = iflags & ITEM_LOCAL_CHANGE
fd84673e 709 ? iflags & ITEM_XNAME_FOLLOWS ? 'h' : 'c'
ca62acc3 710 : !(iflags & ITEM_TRANSFER) ? '.'
c1759b9f 711 : !local_server && *op == 's' ? '<' : '>';
1ed9018e
WD
712 if (S_ISLNK(file->mode)) {
713 c[1] = 'L';
714 c[3] = '.';
715 c[4] = !(iflags & ITEM_REPORT_TIME) ? '.'
716 : !preserve_times || !receiver_symlink_times
717 || (iflags & ITEM_REPORT_TIMEFAIL) ? 'T' : 't';
718 } else {
719 c[1] = S_ISDIR(file->mode) ? 'd'
720 : IS_SPECIAL(file->mode) ? 'S'
721 : IS_DEVICE(file->mode) ? 'D' : 'f';
722 c[3] = !(iflags & ITEM_REPORT_SIZE) ? '.' : 's';
723 c[4] = !(iflags & ITEM_REPORT_TIME) ? '.'
724 : !preserve_times ? 'T' : 't';
725 }
726 c[2] = !(iflags & ITEM_REPORT_CHANGE) ? '.' : 'c';
4a19c3b2
WD
727 c[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p';
728 c[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o';
729 c[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g';
1c3344a1
WD
730 c[8] = !(iflags & ITEM_REPORT_ATIME) ? '.' : 'u';
731 c[9] = !(iflags & ITEM_REPORT_ACL) ? '.' : 'a';
732 c[10] = !(iflags & ITEM_REPORT_XATTR) ? '.' : 'x';
733 c[11] = '\0';
ef74f5d6
WD
734
735 if (iflags & (ITEM_IS_NEW|ITEM_MISSING_DATA)) {
736 char ch = iflags & ITEM_IS_NEW ? '+' : '?';
737 int i;
4a19c3b2
WD
738 for (i = 2; c[i]; i++)
739 c[i] = ch;
740 } else if (c[0] == '.' || c[0] == 'h' || c[0] == 'c') {
19bc826d 741 int i;
4a19c3b2
WD
742 for (i = 2; c[i]; i++) {
743 if (c[i] != '.')
19bc826d
WD
744 break;
745 }
4a19c3b2
WD
746 if (!c[i]) {
747 for (i = 2; c[i]; i++)
748 c[i] = ' ';
19bc826d 749 }
ef74f5d6
WD
750 }
751 break;
e08bfe12
AT
752 }
753
ddd74b67
WD
754 /* "n" is the string to be inserted in place of this % code. */
755 if (!n)
756 continue;
9baed760
WD
757 if (n != buf2 && fmt[1]) {
758 strlcat(fmt, "s", sizeof fmt);
759 snprintf(buf2, sizeof buf2, fmt, n);
760 n = buf2;
761 }
ef74f5d6 762 len = strlen(n);
e08bfe12 763
e145d51b 764 /* Subtract the length of the escape from the string's size. */
0455cd93 765 total -= p - s + 1;
e145d51b 766
d9c0051f 767 if (len + total >= (size_t)sizeof buf) {
1e7098b5
WD
768 rprintf(FERROR,
769 "buffer overflow expanding %%%c -- exiting\n",
0455cd93 770 p[0]);
25f637a3 771 exit_cleanup(RERR_MESSAGEIO);
e08bfe12
AT
772 }
773
aa126974 774 /* Shuffle the rest of the string along to make space for n */
0455cd93
WD
775 if (len != (size_t)(p - s + 1))
776 memmove(s + len, p + 1, total - (s - buf) + 1);
ddd74b67 777 total += len;
aa126974 778
ddd74b67 779 /* Insert the contents of string "n", but NOT its null. */
ef74f5d6 780 if (len)
ddd74b67 781 memcpy(s, n, len);
e08bfe12 782
aa126974 783 /* Skip over inserted string; continue looking */
ddd74b67 784 p = s + len;
e08bfe12
AT
785 }
786
332cf6df 787 rwrite(code, buf, total, 0);
e08bfe12
AT
788}
789
0455cd93
WD
790/* Return 1 if the format escape is in the log-format string (e.g. look for
791 * the 'b' in the "%9b" format escape). */
16f960fe
WD
792int log_format_has(const char *format, char esc)
793{
794 const char *p;
795
796 if (!format)
797 return 0;
798
799 for (p = format; (p = strchr(p, '%')) != NULL; ) {
44a97a34
WD
800 for (p++; *p == '\''; p++) {}
801 if (*p == '-')
16f960fe 802 p++;
2dc7b8bd 803 while (isDigit(p))
16f960fe 804 p++;
44a97a34 805 while (*p == '\'') p++;
16f960fe
WD
806 if (!*p)
807 break;
808 if (*p == esc)
809 return 1;
810 }
811 return 0;
812}
813
d0133e6e 814/* Log the transfer of a file. If the code is FCLIENT, the output just goes
b5343510
WD
815 * to stdout. If it is FLOG, it just goes to the log file. Otherwise we
816 * output to both. */
4dde3347 817void log_item(enum logcode code, struct file_struct *file, int iflags, const char *hlink)
11a5a3c7 818{
4a19c3b2 819 const char *s_or_r = am_sender ? "send" : "recv";
11a5a3c7 820
4dde3347
WD
821 if (code != FLOG && stdout_format && !am_server)
822 log_formatted(FCLIENT, stdout_format, s_or_r, file, NULL, iflags, hlink);
823 if (code != FCLIENT && logfile_format && *logfile_format)
824 log_formatted(FLOG, logfile_format, s_or_r, file, NULL, iflags, hlink);
11a5a3c7
AT
825}
826
1c3e3679 827void maybe_log_item(struct file_struct *file, int iflags, int itemizing,
4a19c3b2 828 const char *buf)
1c3e3679 829{
f2b6fe44 830 int significant_flags = iflags & SIGNIFICANT_ITEM_FLAGS;
6d4ecad1 831 int see_item = itemizing && (significant_flags || *buf
951e826b 832 || stdout_format_has_i > 1 || (INFO_GTE(NAME, 2) && stdout_format_has_i));
6d4ecad1 833 int local_change = iflags & ITEM_LOCAL_CHANGE && significant_flags;
1c3e3679 834 if (am_server) {
d0133e6e
WD
835 if (logfile_name && !dry_run && see_item
836 && (significant_flags || logfile_format_has_i))
4dde3347 837 log_item(FLOG, file, iflags, buf);
f2b6fe44 838 } else if (see_item || local_change || *buf
d0133e6e
WD
839 || (S_ISDIR(file->mode) && significant_flags)) {
840 enum logcode code = significant_flags || logfile_format_has_i ? FINFO : FCLIENT;
4dde3347 841 log_item(code, file, iflags, buf);
d0133e6e 842 }
1c3e3679
WD
843}
844
4a19c3b2 845void log_delete(const char *fname, int mode)
19bc826d 846{
112d728f 847 static struct {
aac5cab8 848 union file_extras ex[4]; /* just in case... */
112d728f 849 struct file_struct file;
112d728f 850 } x;
19bc826d 851 int len = strlen(fname);
4a19c3b2 852 const char *fmt;
19bc826d 853
112d728f 854 x.file.mode = mode;
19bc826d 855
951e826b 856 if (!INFO_GTE(DEL, 1) && !stdout_format)
41b5b5e7
WD
857 ;
858 else if (am_server && protocol_version >= 29 && len < MAXPATHLEN) {
19bc826d
WD
859 if (S_ISDIR(mode))
860 len++; /* directories include trailing null */
332cf6df 861 send_msg(MSG_DELETED, fname, len, am_generator);
19bc826d 862 } else {
b5343510 863 fmt = stdout_format_has_o_or_i ? stdout_format : "deleting %n";
4dde3347 864 log_formatted(FCLIENT, fmt, "del.", &x.file, fname, ITEM_DELETED, NULL);
19bc826d
WD
865 }
866
13b597fa 867 if (!logfile_name || dry_run || !logfile_format)
1eec003a
WD
868 return;
869
13b597fa 870 fmt = logfile_format_has_o_or_i ? logfile_format : "deleting %n";
4dde3347 871 log_formatted(FLOG, fmt, "del.", &x.file, fname, ITEM_DELETED, NULL);
19bc826d 872}
af642a61 873
af642a61
MP
874/*
875 * Called when the transfer is interrupted for some reason.
876 *
877 * Code is one of the RERR_* codes from errcode.h, or terminating
878 * successfully.
879 */
a9766ef1 880void log_exit(int code, const char *file, int line)
9b73d1c0
AT
881{
882 if (code == 0) {
6d56efa6 883 rprintf(FLOG,"sent %s bytes received %s bytes total size %s\n",
adc2476f
WD
884 comma_num(stats.total_written),
885 comma_num(stats.total_read),
886 comma_num(stats.total_size));
969cdffb 887 } else if (am_server != 2) {
4a7319be
WD
888 const char *name;
889
890 name = rerr_name(code);
891 if (!name)
892 name = "unexplained error";
af642a61 893
1bca1de6
WD
894 /* VANISHED is not an error, only a warning */
895 if (code == RERR_VANISHED) {
3f0211b6 896 rprintf(FWARNING, "rsync warning: %s (code %d) at %s(%d) [%s=%s]\n",
43eae40e 897 name, code, file, line, who_am_i(), RSYNC_VERSION);
1bca1de6 898 } else {
43eae40e
WD
899 rprintf(FERROR, "rsync error: %s (code %d) at %s(%d) [%s=%s]\n",
900 name, code, file, line, who_am_i(), RSYNC_VERSION);
1bca1de6 901 }
9b73d1c0
AT
902 }
903}