Fixed a bug in the explode_mode code that was causing a crash
[rsync/rsync.git] / log.c
CommitLineData
a039749b 1/* -*- c-file-style: "linux"; -*-
4a7319be 2
0c5a792a 3 Copyright (C) 1998-2001 by Andrew Tridgell <tridge@samba.org>
18c71e96 4 Copyright (C) 2000-2001 by Martin Pool <mbp@samba.org>
4a7319be 5
0b76cd63
AT
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
4a7319be 10
0b76cd63
AT
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
4a7319be 15
0b76cd63
AT
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
21/*
3e3dcd62 22 Logging and utility functions.
0c5a792a 23 tridge, May 1998
0b76cd63 24
3e3dcd62
MP
25 Mapping to human-readable messages added by Martin Pool
26 <mbp@samba.org>, Oct 2000.
0b76cd63
AT
27 */
28#include "rsync.h"
29
41b5b5e7 30extern int verbose;
088aff1a 31extern int dry_run;
548abf96
WD
32extern int am_daemon;
33extern int am_server;
34extern int am_sender;
c1759b9f 35extern int local_server;
548abf96
WD
36extern int quiet;
37extern int module_id;
a644fc3c 38extern int msg_fd_out;
19bc826d 39extern int protocol_version;
ef74f5d6 40extern int preserve_times;
6d4ecad1 41extern int log_format_has_i;
d6707171 42extern int log_format_has_o_or_i;
1eec003a 43extern int daemon_log_format_has_o_or_i;
548abf96
WD
44extern char *auth_user;
45extern char *log_format;
46
30e8c8e1 47static int log_initialised;
64c37826 48static int logfile_was_closed;
45a83540 49static char *logfname;
4f6325c3 50static FILE *logfile;
b35d0d8e 51struct stats stats;
e0414f42 52
8fcdc444 53int log_got_error = 0;
af642a61
MP
54
55struct {
56 int code;
57 char const *name;
58} const rerr_names[] = {
4a7319be
WD
59 { RERR_SYNTAX , "syntax or usage error" },
60 { RERR_PROTOCOL , "protocol incompatibility" },
61 { RERR_FILESELECT , "errors selecting input/output files, dirs" },
62 { RERR_UNSUPPORTED, "requested action not supported" },
63 { RERR_STARTCLIENT, "error starting client-server protocol" },
64 { RERR_SOCKETIO , "error in socket IO" },
65 { RERR_FILEIO , "error in file IO" },
66 { RERR_STREAMIO , "error in rsync protocol data stream" },
67 { RERR_MESSAGEIO , "errors with program diagnostics" },
68 { RERR_IPC , "error in IPC code" },
60168410 69 { RERR_CRASHED , "sibling process crashed" },
0047f535 70 { RERR_TERMINATED , "sibling process terminated abnormally" },
4a50a217
WD
71 { RERR_SIGNAL1 , "received SIGUSR1" },
72 { RERR_SIGNAL , "received SIGINT, SIGTERM, or SIGHUP" },
f14a65d9 73 { RERR_WAITCHILD , "waitpid() failed" },
4a7319be
WD
74 { RERR_MALLOC , "error allocating core memory buffers" },
75 { RERR_PARTIAL , "some files could not be transferred" },
584ba4eb 76 { RERR_VANISHED , "some files vanished before they could be transferred" },
4a7319be 77 { RERR_TIMEOUT , "timeout in data send/receive" },
19b27a48
AT
78 { RERR_CMD_FAILED , "remote shell failed" },
79 { RERR_CMD_KILLED , "remote shell killed" },
24cecf13
WD
80 { RERR_CMD_RUN , "remote command could not be run" },
81 { RERR_CMD_NOTFOUND,"remote command not found" },
26718401 82 { RERR_DEL_LIMIT , "the --max-delete limit stopped deletions" },
4a7319be 83 { 0, NULL }
af642a61
MP
84};
85
86
87
88/*
89 * Map from rsync error code to name, or return NULL.
90 */
91static char const *rerr_name(int code)
92{
4a7319be
WD
93 int i;
94 for (i = 0; rerr_names[i].name; i++) {
95 if (rerr_names[i].code == code)
96 return rerr_names[i].name;
97 }
98 return NULL;
af642a61
MP
99}
100
2267efea 101
4f6325c3
AT
102static void logit(int priority, char *buf)
103{
64c37826
WD
104 if (logfile_was_closed)
105 logfile_reopen();
106 if (logfile) {
4a7319be 107 fprintf(logfile,"%s [%d] %s",
f7632fc6 108 timestring(time(NULL)), (int)getpid(), buf);
4f6325c3
AT
109 fflush(logfile);
110 } else {
111 syslog(priority, "%s", buf);
112 }
113}
e42c9458 114
6afb9077 115static void syslog_init()
1a016bfd 116{
6afb9077 117 static int been_here = 0;
1a016bfd 118 int options = LOG_PID;
6afb9077
WD
119
120 if (been_here)
121 return;
122 been_here = 1;
123
124#ifdef LOG_NDELAY
125 options |= LOG_NDELAY;
126#endif
127
128#ifdef LOG_DAEMON
129 openlog("rsyncd", options, lp_syslog_facility());
130#else
131 openlog("rsyncd", options);
132#endif
133
134#ifndef LOG_NDELAY
135 logit(LOG_INFO, "rsyncd started\n");
136#endif
137}
138
64c37826
WD
139static void logfile_open(void)
140{
141 extern int orig_umask;
142 int old_umask = umask(022 | orig_umask);
143 logfile = fopen(logfname, "a");
144 umask(old_umask);
145 if (!logfile) {
146 int fopen_errno = errno;
147 /* Rsync falls back to using syslog on failure. */
148 syslog_init();
149 rsyserr(FERROR, fopen_errno,
150 "failed to open log-file %s", logfname);
151 rprintf(FINFO, "Ignoring \"log file\" setting.\n");
152 }
153}
154
6afb9077
WD
155void log_init(void)
156{
bcf5b133 157 time_t t;
1a016bfd 158
0bb4d176
WD
159 if (log_initialised)
160 return;
30e8c8e1 161 log_initialised = 1;
1a016bfd 162
958f3735 163 /* this looks pointless, but it is needed in order for the
4a7319be
WD
164 * C library on some systems to fetch the timezone info
165 * before the chroot */
958f3735
AT
166 t = time(NULL);
167 localtime(&t);
168
169 /* optionally use a log file instead of syslog */
45a83540 170 logfname = lp_log_file();
64c37826
WD
171 if (logfname && *logfname)
172 logfile_open();
173 else
174 syslog_init();
1a016bfd 175}
1a016bfd 176
64c37826 177void logfile_close(void)
4a239e98 178{
64c37826
WD
179 if (logfile) {
180 logfile_was_closed = 1;
181 fclose(logfile);
182 logfile = NULL;
4a239e98
WD
183 }
184}
185
64c37826 186void logfile_reopen(void)
4a239e98 187{
64c37826
WD
188 if (logfile_was_closed) {
189 logfile_was_closed = 0;
190 logfile_open();
4a239e98
WD
191 }
192}
193
554e0a8d 194/* this is the underlying (unformatted) rsync debugging function. Call
4a7319be 195 * it with FINFO, FERROR or FLOG */
ff41a59f 196void rwrite(enum logcode code, char *buf, int len)
0b76cd63 197{
8fcdc444 198 FILE *f = NULL;
8d9dc9f9 199 /* recursion can happen with certain fatal conditions */
8d9dc9f9 200
a644fc3c
WD
201 if (quiet && code == FINFO)
202 return;
b86f0cef 203
a644fc3c
WD
204 if (len < 0)
205 exit_cleanup(RERR_MESSAGEIO);
0b76cd63 206
ff8b29b8
AT
207 buf[len] = 0;
208
0bb4d176
WD
209 if (am_server && msg_fd_out >= 0) {
210 /* Pass the message to our sibling. */
211 send_msg((enum msgcode)code, buf, len);
11a5a3c7
AT
212 return;
213 }
214
1eec003a
WD
215 if (code == FCLIENT)
216 code = FINFO;
217 else if (am_daemon) {
0bb4d176
WD
218 static int in_block;
219 char msg[2048];
220 int priority = code == FERROR ? LOG_WARNING : LOG_INFO;
221
222 if (in_block)
a644fc3c 223 return;
0bb4d176
WD
224 in_block = 1;
225 if (!log_initialised)
226 log_init();
227 strlcpy(msg, buf, MIN((int)sizeof msg, len + 1));
228 logit(priority, msg);
229 in_block = 0;
230
231 if (code == FLOG || !am_server)
a644fc3c 232 return;
0bb4d176 233 } else if (code == FLOG)
ff8b29b8 234 return;
0bb4d176
WD
235
236 if (am_server) {
237 /* Pass the message to the non-server side. */
238 if (io_multiplex_write((enum msgcode)code, buf, len))
239 return;
240 if (am_daemon) {
241 /* TODO: can we send the error to the user somehow? */
242 return;
243 }
0b76cd63
AT
244 }
245
ff41a59f 246 if (code == FERROR) {
ff81e809 247 log_got_error = 1;
ff8b29b8 248 f = stderr;
4a7319be 249 }
ff8b29b8 250
0bb4d176
WD
251 if (code == FINFO)
252 f = am_server ? stderr : stdout;
ff8b29b8 253
0bb4d176
WD
254 if (!f)
255 exit_cleanup(RERR_MESSAGEIO);
0b76cd63 256
0bb4d176
WD
257 if (fwrite(buf, len, 1, f) != 1)
258 exit_cleanup(RERR_MESSAGEIO);
8d9dc9f9 259
0bb4d176
WD
260 if (buf[len-1] == '\r' || buf[len-1] == '\n')
261 fflush(f);
0b76cd63 262}
0455cd93 263
554e0a8d 264
a039749b
MP
265/* This is the rsync debugging function. Call it with FINFO, FERROR or
266 * FLOG. */
267void rprintf(enum logcode code, const char *format, ...)
554e0a8d 268{
4a7319be 269 va_list ap;
b74b3d53 270 char buf[BIGPATHBUFLEN];
8fcdc444 271 size_t len;
554e0a8d
AT
272
273 va_start(ap, format);
ef74f5d6 274 len = vsnprintf(buf, sizeof buf, format, ap);
554e0a8d
AT
275 va_end(ap);
276
b2f02464 277 /* Deal with buffer overruns. Instead of panicking, just
8fcdc444
WD
278 * truncate the resulting string. (Note that configure ensures
279 * that we have a vsnprintf() that doesn't ever return -1.) */
280 if (len > sizeof buf - 1) {
b74b3d53 281 static const char ellipsis[] = "[...]";
b2f02464
MP
282
283 /* Reset length, and zero-terminate the end of our buffer */
ef74f5d6 284 len = sizeof buf - 1;
b2f02464
MP
285 buf[len] = '\0';
286
287 /* Copy the ellipsis to the end of the string, but give
288 * us one extra character:
289 *
ef74f5d6 290 * v--- null byte at buf[sizeof buf - 1]
b2f02464
MP
291 * abcdefghij0
292 * -> abcd[...]00 <-- now two null bytes at end
293 *
294 * If the input format string has a trailing newline,
295 * we copy it into that extra null; if it doesn't, well,
296 * all we lose is one byte. */
b74b3d53 297 memcpy(buf+len-sizeof ellipsis, ellipsis, sizeof ellipsis);
b2f02464
MP
298 if (format[strlen(format)-1] == '\n') {
299 buf[len-1] = '\n';
300 }
301 }
554e0a8d 302
ff41a59f 303 rwrite(code, buf, len);
554e0a8d 304}
0b76cd63 305
a039749b
MP
306
307/* This is like rprintf, but it also tries to print some
308 * representation of the error code. Normally errcode = errno.
309 *
310 * Unlike rprintf, this always adds a newline and there should not be
311 * one in the format string.
312 *
313 * Note that since strerror might involve dynamically loading a
314 * message catalog we need to call it once before chroot-ing. */
315void rsyserr(enum logcode code, int errcode, const char *format, ...)
316{
4a7319be 317 va_list ap;
b74b3d53 318 char buf[BIGPATHBUFLEN];
8fcdc444
WD
319 size_t len;
320
321 strcpy(buf, RSYNC_NAME ": ");
322 len = (sizeof RSYNC_NAME ": ") - 1;
a039749b
MP
323
324 va_start(ap, format);
8fcdc444 325 len += vsnprintf(buf + len, sizeof buf - len, format, ap);
a039749b
MP
326 va_end(ap);
327
8fcdc444
WD
328 if (len < sizeof buf) {
329 len += snprintf(buf + len, sizeof buf - len,
330 ": %s (%d)\n", strerror(errcode), errcode);
331 }
332 if (len >= sizeof buf)
4a7319be 333 exit_cleanup(RERR_MESSAGEIO);
a039749b 334
a039749b
MP
335 rwrite(code, buf, len);
336}
337
338
339
ff41a59f 340void rflush(enum logcode code)
0b76cd63
AT
341{
342 FILE *f = NULL;
0455cd93 343
0b76cd63
AT
344 if (am_daemon) {
345 return;
346 }
347
ff41a59f 348 if (code == FLOG) {
e08bfe12 349 return;
4a7319be 350 }
e08bfe12 351
ff41a59f 352 if (code == FERROR) {
0b76cd63 353 f = stderr;
4a7319be 354 }
0b76cd63 355
ff41a59f 356 if (code == FINFO) {
4a7319be 357 if (am_server)
0b76cd63
AT
358 f = stderr;
359 else
360 f = stdout;
4a7319be 361 }
0b76cd63 362
65417579 363 if (!f) exit_cleanup(RERR_MESSAGEIO);
0b76cd63
AT
364 fflush(f);
365}
366
11a5a3c7 367
e08bfe12
AT
368
369/* a generic logging routine for send/recv, with parameter
4a7319be 370 * substitiution */
afc65a5a
WD
371static void log_formatted(enum logcode code, char *format, char *op,
372 struct file_struct *file, struct stats *initial_stats,
373 int iflags, char *hlink)
e08bfe12 374{
ddd74b67
WD
375 char buf[MAXPATHLEN+1024], buf2[MAXPATHLEN], fmt[32];
376 char *p, *s, *n;
ef74f5d6 377 size_t len, total;
1b7c47cb 378 int64 b;
e08bfe12 379
ddd74b67
WD
380 *fmt = '%';
381
aa126974 382 /* We expand % codes one by one in place in buf. We don't
126e7aff
WD
383 * copy in the terminating null of the inserted strings, but
384 * rather keep going until we reach the null of the format. */
ef74f5d6 385 total = strlcpy(buf, format, sizeof buf);
d9c0051f
WD
386 if (total > MAXPATHLEN) {
387 rprintf(FERROR, "log-format string is WAY too long!\n");
388 exit_cleanup(RERR_MESSAGEIO);
389 }
390 buf[total++] = '\n';
391 buf[total] = '\0';
0455cd93 392
16f960fe 393 for (p = buf; (p = strchr(p, '%')) != NULL; ) {
ddd74b67
WD
394 s = p++;
395 n = fmt + 1;
9baed760
WD
396 if (*p == '-')
397 *n++ = *p++;
b4bf2b5a 398 while (isdigit(*(uchar*)p) && n - fmt < (int)(sizeof fmt) - 8)
ddd74b67 399 *n++ = *p++;
e145d51b
WD
400 if (!*p)
401 break;
ddd74b67 402 *n = '\0';
e08bfe12 403 n = NULL;
e08bfe12 404
0455cd93 405 switch (*p) {
b74b3d53
WD
406 case 'h':
407 if (am_daemon)
408 n = client_name(0);
409 break;
410 case 'a':
411 if (am_daemon)
412 n = client_addr(0);
413 break;
4a7319be 414 case 'l':
ddd74b67
WD
415 strlcat(fmt, ".0f", sizeof fmt);
416 snprintf(buf2, sizeof buf2, fmt,
4a7319be 417 (double)file->length);
e08bfe12
AT
418 n = buf2;
419 break;
4a7319be 420 case 'p':
126e7aff 421 strlcat(fmt, "ld", sizeof fmt);
ddd74b67 422 snprintf(buf2, sizeof buf2, fmt,
126e7aff 423 (long)getpid());
e08bfe12
AT
424 n = buf2;
425 break;
b74b3d53
WD
426 case 'o':
427 n = op;
428 break;
4a7319be 429 case 'f':
9baed760
WD
430 n = safe_fname(f_name(file));
431 if (am_sender && file->dir.root) {
432 pathjoin(buf2, sizeof buf2,
433 file->dir.root, n);
434 /* The buffer from safe_fname() has more
435 * room than MAXPATHLEN, so this is safe. */
dcbae654
WD
436 if (fmt[1])
437 strcpy(n, buf2);
438 else
439 n = buf2;
9baed760
WD
440 }
441 clean_fname(n, 0);
442 if (*n == '/')
443 n++;
ab7104da 444 break;
ef74f5d6 445 case 'n':
9baed760 446 n = safe_fname(f_name(file));
e66d70e3
WD
447 if (S_ISDIR(file->mode)) {
448 /* The buffer from safe_fname() has more
449 * room than MAXPATHLEN, so this is safe. */
450 strcat(n, "/");
451 }
ef74f5d6
WD
452 break;
453 case 'L':
afc65a5a 454 if (hlink && *hlink) {
126e7aff
WD
455 n = safe_fname(hlink);
456 strcpy(buf2, " => ");
afc65a5a 457 } else if (S_ISLNK(file->mode) && file->u.link) {
126e7aff
WD
458 n = safe_fname(file->u.link);
459 strcpy(buf2, " -> ");
460 } else {
ef74f5d6 461 n = "";
126e7aff
WD
462 if (!fmt[1])
463 break;
464 strcpy(buf2, " ");
465 }
466 strlcat(fmt, "s", sizeof fmt);
467 snprintf(buf2 + 4, sizeof buf2 - 4, fmt, n);
468 n = buf2;
ef74f5d6 469 break;
b74b3d53
WD
470 case 'm':
471 n = lp_name(module_id);
472 break;
473 case 't':
474 n = timestring(time(NULL));
475 break;
476 case 'P':
477 n = lp_path(module_id);
478 break;
479 case 'u':
480 n = auth_user;
481 break;
4a7319be 482 case 'b':
1b7c47cb 483 if (am_sender) {
4a7319be 484 b = stats.total_written -
1b7c47cb
AT
485 initial_stats->total_written;
486 } else {
4a7319be 487 b = stats.total_read -
1b7c47cb
AT
488 initial_stats->total_read;
489 }
0455cd93 490 strlcat(fmt, ".0f", sizeof fmt);
ddd74b67 491 snprintf(buf2, sizeof buf2, fmt, (double)b);
1b7c47cb
AT
492 n = buf2;
493 break;
4a7319be 494 case 'c':
1b7c47cb 495 if (!am_sender) {
4a7319be 496 b = stats.total_written -
1b7c47cb
AT
497 initial_stats->total_written;
498 } else {
4a7319be 499 b = stats.total_read -
1b7c47cb
AT
500 initial_stats->total_read;
501 }
0455cd93 502 strlcat(fmt, ".0f", sizeof fmt);
ddd74b67 503 snprintf(buf2, sizeof buf2, fmt, (double)b);
1b7c47cb
AT
504 n = buf2;
505 break;
ef74f5d6 506 case 'i':
19bc826d 507 if (iflags & ITEM_DELETED) {
d5609e96 508 n = "*deleting";
19bc826d
WD
509 break;
510 }
b4bf2b5a 511 n = buf2 + MAXPATHLEN - 32;
fd84673e
WD
512 n[0] = iflags & ITEM_LOCAL_CHANGE
513 ? iflags & ITEM_XNAME_FOLLOWS ? 'h' : 'c'
ca62acc3 514 : !(iflags & ITEM_TRANSFER) ? '.'
c1759b9f 515 : !local_server && *op == 's' ? '<' : '>';
19bc826d
WD
516 n[1] = S_ISDIR(file->mode) ? 'd'
517 : IS_DEVICE(file->mode) ? 'D'
ef74f5d6 518 : S_ISLNK(file->mode) ? 'L' : 'f';
d4e01963
WD
519 n[2] = !(iflags & ITEM_REPORT_CHECKSUM) ? '.' : 'c';
520 n[3] = !(iflags & ITEM_REPORT_SIZE) ? '.' : 's';
521 n[4] = !(iflags & ITEM_REPORT_TIME) ? '.'
ef74f5d6
WD
522 : !preserve_times || IS_DEVICE(file->mode)
523 || S_ISLNK(file->mode) ? 'T' : 't';
d4e01963
WD
524 n[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p';
525 n[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o';
526 n[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g';
ca62acc3 527 n[8] = !(iflags & ITEM_REPORT_XATTRS) ? '.' : 'a';
afc65a5a 528 n[9] = '\0';
ef74f5d6
WD
529
530 if (iflags & (ITEM_IS_NEW|ITEM_MISSING_DATA)) {
531 char ch = iflags & ITEM_IS_NEW ? '+' : '?';
532 int i;
533 for (i = 2; n[i]; i++)
534 n[i] = ch;
6d4ecad1
WD
535 } else if (n[0] == '.' || n[0] == 'h'
536 || (n[0] == 'c' && n[1] == 'f')) {
19bc826d
WD
537 int i;
538 for (i = 2; n[i]; i++) {
539 if (n[i] != '.')
540 break;
541 }
542 if (!n[i]) {
543 for (i = 2; n[i]; i++)
544 n[i] = ' ';
19bc826d 545 }
ef74f5d6
WD
546 }
547 break;
e08bfe12
AT
548 }
549
ddd74b67
WD
550 /* "n" is the string to be inserted in place of this % code. */
551 if (!n)
552 continue;
9baed760
WD
553 if (n != buf2 && fmt[1]) {
554 strlcat(fmt, "s", sizeof fmt);
555 snprintf(buf2, sizeof buf2, fmt, n);
556 n = buf2;
557 }
ef74f5d6 558 len = strlen(n);
e08bfe12 559
e145d51b 560 /* Subtract the length of the escape from the string's size. */
0455cd93 561 total -= p - s + 1;
e145d51b 562
d9c0051f 563 if (len + total >= (size_t)sizeof buf) {
1e7098b5
WD
564 rprintf(FERROR,
565 "buffer overflow expanding %%%c -- exiting\n",
0455cd93 566 p[0]);
65417579 567 exit_cleanup(RERR_MESSAGEIO);
e08bfe12
AT
568 }
569
aa126974 570 /* Shuffle the rest of the string along to make space for n */
0455cd93
WD
571 if (len != (size_t)(p - s + 1))
572 memmove(s + len, p + 1, total - (s - buf) + 1);
ddd74b67 573 total += len;
aa126974 574
ddd74b67 575 /* Insert the contents of string "n", but NOT its null. */
ef74f5d6 576 if (len)
ddd74b67 577 memcpy(s, n, len);
e08bfe12 578
aa126974 579 /* Skip over inserted string; continue looking */
ddd74b67 580 p = s + len;
e08bfe12
AT
581 }
582
d9c0051f 583 rwrite(code, buf, total);
e08bfe12
AT
584}
585
0455cd93
WD
586/* Return 1 if the format escape is in the log-format string (e.g. look for
587 * the 'b' in the "%9b" format escape). */
16f960fe
WD
588int log_format_has(const char *format, char esc)
589{
590 const char *p;
591
592 if (!format)
593 return 0;
594
595 for (p = format; (p = strchr(p, '%')) != NULL; ) {
596 if (*++p == '-')
597 p++;
598 while (isdigit(*(uchar*)p))
599 p++;
600 if (!*p)
601 break;
602 if (*p == esc)
603 return 1;
604 }
605 return 0;
606}
607
afc65a5a
WD
608/* log the transfer of a file */
609void log_item(struct file_struct *file, struct stats *initial_stats,
610 int iflags, char *hlink)
11a5a3c7 611{
afc65a5a 612 char *s_or_r = am_sender ? "send" : "recv";
11a5a3c7 613
11a5a3c7 614 if (lp_transfer_logging(module_id)) {
afc65a5a
WD
615 log_formatted(FLOG, lp_log_format(module_id), s_or_r,
616 file, initial_stats, iflags, hlink);
b6062654 617 } else if (log_format && !am_server) {
afc65a5a
WD
618 log_formatted(FINFO, log_format, s_or_r,
619 file, initial_stats, iflags, hlink);
11a5a3c7
AT
620 }
621}
622
1c3e3679
WD
623void maybe_log_item(struct file_struct *file, int iflags, int itemizing,
624 char *buf)
625{
f2b6fe44 626 int significant_flags = iflags & SIGNIFICANT_ITEM_FLAGS;
6d4ecad1
WD
627 int see_item = itemizing && (significant_flags || *buf
628 || (verbose > 1 && log_format_has_i));
629 int local_change = iflags & ITEM_LOCAL_CHANGE && significant_flags;
1c3e3679
WD
630 if (am_server) {
631 if (am_daemon && !dry_run && see_item)
632 log_item(file, &stats, iflags, buf);
f2b6fe44
WD
633 } else if (see_item || local_change || *buf
634 || (S_ISDIR(file->mode) && significant_flags))
1c3e3679
WD
635 log_item(file, &stats, iflags, buf);
636}
637
19bc826d
WD
638void log_delete(char *fname, int mode)
639{
640 static struct file_struct file;
641 int len = strlen(fname);
19bc826d
WD
642 char *fmt;
643
644 file.mode = mode;
645 file.basename = fname;
646
41b5b5e7
WD
647 if (!verbose && !log_format)
648 ;
649 else if (am_server && protocol_version >= 29 && len < MAXPATHLEN) {
19bc826d
WD
650 if (S_ISDIR(mode))
651 len++; /* directories include trailing null */
652 send_msg(MSG_DELETED, fname, len);
19bc826d 653 } else {
d5609e96 654 fmt = log_format_has_o_or_i ? log_format : "deleting %n";
afc65a5a
WD
655 log_formatted(FCLIENT, fmt, "del.", &file, &stats,
656 ITEM_DELETED, NULL);
19bc826d
WD
657 }
658
41b5b5e7 659 if (!am_daemon || dry_run || !lp_transfer_logging(module_id))
1eec003a
WD
660 return;
661
d5609e96 662 fmt = daemon_log_format_has_o_or_i ? lp_log_format(module_id) : "deleting %n";
afc65a5a 663 log_formatted(FLOG, fmt, "del.", &file, &stats, ITEM_DELETED, NULL);
19bc826d 664}
af642a61
MP
665
666
667/*
668 * Called when the transfer is interrupted for some reason.
669 *
670 * Code is one of the RERR_* codes from errcode.h, or terminating
671 * successfully.
672 */
a9766ef1 673void log_exit(int code, const char *file, int line)
9b73d1c0
AT
674{
675 if (code == 0) {
088aff1a 676 rprintf(FLOG,"sent %.0f bytes received %.0f bytes total size %.0f\n",
9b73d1c0
AT
677 (double)stats.total_written,
678 (double)stats.total_read,
679 (double)stats.total_size);
680 } else {
4a7319be
WD
681 const char *name;
682
683 name = rerr_name(code);
684 if (!name)
685 name = "unexplained error";
af642a61 686
1bca1de6
WD
687 /* VANISHED is not an error, only a warning */
688 if (code == RERR_VANISHED) {
689 rprintf(FINFO, "rsync warning: %s (code %d) at %s(%d)\n",
690 name, code, file, line);
691 } else {
692 rprintf(FERROR, "rsync error: %s (code %d) at %s(%d)\n",
693 name, code, file, line);
694 }
9b73d1c0
AT
695 }
696}