Mention that less data is sent over the wire when --only-write-batch
[rsync/rsync.git] / log.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux"; -*-
2
3 Copyright (C) 1998-2001 by Andrew Tridgell <tridge@samba.org>
4 Copyright (C) 2000-2001 by Martin Pool <mbp@samba.org>
5
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.
10
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.
15
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/*
22 Logging and utility functions.
23 tridge, May 1998
24
25 Mapping to human-readable messages added by Martin Pool
26 <mbp@samba.org>, Oct 2000.
27 */
28#include "rsync.h"
29
30extern int verbose;
31extern int dry_run;
32extern int am_daemon;
33extern int am_server;
34extern int am_sender;
35extern int local_server;
36extern int quiet;
37extern int module_id;
38extern int msg_fd_out;
39extern int protocol_version;
40extern int preserve_times;
41extern int log_format_has_o_or_i;
42extern int daemon_log_format_has_o_or_i;
43extern char *auth_user;
44extern char *log_format;
45
46static int log_initialised;
47static char *logfname;
48static FILE *logfile;
49struct stats stats;
50
51int log_got_error = 0;
52
53struct {
54 int code;
55 char const *name;
56} const rerr_names[] = {
57 { RERR_SYNTAX , "syntax or usage error" },
58 { RERR_PROTOCOL , "protocol incompatibility" },
59 { RERR_FILESELECT , "errors selecting input/output files, dirs" },
60 { RERR_UNSUPPORTED, "requested action not supported" },
61 { RERR_STARTCLIENT, "error starting client-server protocol" },
62 { RERR_SOCKETIO , "error in socket IO" },
63 { RERR_FILEIO , "error in file IO" },
64 { RERR_STREAMIO , "error in rsync protocol data stream" },
65 { RERR_MESSAGEIO , "errors with program diagnostics" },
66 { RERR_IPC , "error in IPC code" },
67 { RERR_SIGNAL , "received SIGUSR1 or SIGINT" },
68 { RERR_WAITCHILD , "some error returned by waitpid()" },
69 { RERR_MALLOC , "error allocating core memory buffers" },
70 { RERR_PARTIAL , "some files could not be transferred" },
71 { RERR_VANISHED , "some files vanished before they could be transferred" },
72 { RERR_TIMEOUT , "timeout in data send/receive" },
73 { RERR_CMD_FAILED , "remote shell failed" },
74 { RERR_CMD_KILLED , "remote shell killed" },
75 { RERR_CMD_RUN , "remote command could not be run" },
76 { RERR_CMD_NOTFOUND,"remote command not found" },
77 { RERR_DEL_LIMIT , "the --max-delete limit stopped deletions" },
78 { 0, NULL }
79};
80
81
82
83/*
84 * Map from rsync error code to name, or return NULL.
85 */
86static char const *rerr_name(int code)
87{
88 int i;
89 for (i = 0; rerr_names[i].name; i++) {
90 if (rerr_names[i].code == code)
91 return rerr_names[i].name;
92 }
93 return NULL;
94}
95
96
97static void logit(int priority, char *buf)
98{
99 if (logfname) {
100 if (!logfile) {
101 log_open();
102 if (!logfname) {
103 logit(priority, buf);
104 return;
105 }
106 }
107 fprintf(logfile,"%s [%d] %s",
108 timestring(time(NULL)), (int)getpid(), buf);
109 fflush(logfile);
110 } else {
111 syslog(priority, "%s", buf);
112 }
113}
114
115static void syslog_init()
116{
117 static int been_here = 0;
118 int options = LOG_PID;
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
139void log_init(void)
140{
141 time_t t;
142
143 if (log_initialised)
144 return;
145 log_initialised = 1;
146
147 /* this looks pointless, but it is needed in order for the
148 * C library on some systems to fetch the timezone info
149 * before the chroot */
150 t = time(NULL);
151 localtime(&t);
152
153 /* optionally use a log file instead of syslog */
154 logfname = lp_log_file();
155 if (logfname) {
156 if (*logfname) {
157 log_open();
158 return;
159 }
160 logfname = NULL;
161 }
162
163 syslog_init();
164}
165
166void log_open(void)
167{
168 if (logfname && !logfile) {
169 extern int orig_umask;
170 int old_umask = umask(022 | orig_umask);
171 logfile = fopen(logfname, "a");
172 umask(old_umask);
173 if (!logfile) {
174 char *had_logfname = logfname;
175 int open_errno = errno;
176 /* Rsync falls back to using syslog on failure. */
177 logfname = NULL;
178 syslog_init();
179 rsyserr(FERROR, open_errno,
180 "failed to open log-file %s", had_logfname);
181 rprintf(FINFO, "Ignoring \"log file\" setting.\n");
182 }
183 }
184}
185
186void log_close(void)
187{
188 if (logfile) {
189 fclose(logfile);
190 logfile = NULL;
191 }
192}
193
194/* this is the underlying (unformatted) rsync debugging function. Call
195 * it with FINFO, FERROR or FLOG */
196void rwrite(enum logcode code, char *buf, int len)
197{
198 FILE *f = NULL;
199 /* recursion can happen with certain fatal conditions */
200
201 if (quiet && code == FINFO)
202 return;
203
204 if (len < 0)
205 exit_cleanup(RERR_MESSAGEIO);
206
207 buf[len] = 0;
208
209 if (am_server && msg_fd_out >= 0) {
210 /* Pass the message to our sibling. */
211 send_msg((enum msgcode)code, buf, len);
212 return;
213 }
214
215 if (code == FCLIENT)
216 code = FINFO;
217 else if (am_daemon) {
218 static int in_block;
219 char msg[2048];
220 int priority = code == FERROR ? LOG_WARNING : LOG_INFO;
221
222 if (in_block)
223 return;
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)
232 return;
233 } else if (code == FLOG)
234 return;
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 }
244 }
245
246 if (code == FERROR) {
247 log_got_error = 1;
248 f = stderr;
249 }
250
251 if (code == FINFO)
252 f = am_server ? stderr : stdout;
253
254 if (!f)
255 exit_cleanup(RERR_MESSAGEIO);
256
257 if (fwrite(buf, len, 1, f) != 1)
258 exit_cleanup(RERR_MESSAGEIO);
259
260 if (buf[len-1] == '\r' || buf[len-1] == '\n')
261 fflush(f);
262}
263
264
265/* This is the rsync debugging function. Call it with FINFO, FERROR or
266 * FLOG. */
267void rprintf(enum logcode code, const char *format, ...)
268{
269 va_list ap;
270 char buf[MAXPATHLEN+512];
271 size_t len;
272
273 va_start(ap, format);
274 len = vsnprintf(buf, sizeof buf, format, ap);
275 va_end(ap);
276
277 /* Deal with buffer overruns. Instead of panicking, just
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) {
281 const char ellipsis[] = "[...]";
282
283 /* Reset length, and zero-terminate the end of our buffer */
284 len = sizeof buf - 1;
285 buf[len] = '\0';
286
287 /* Copy the ellipsis to the end of the string, but give
288 * us one extra character:
289 *
290 * v--- null byte at buf[sizeof buf - 1]
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. */
297 strncpy(buf+len-sizeof ellipsis, ellipsis, sizeof ellipsis);
298 if (format[strlen(format)-1] == '\n') {
299 buf[len-1] = '\n';
300 }
301 }
302
303 rwrite(code, buf, len);
304}
305
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{
317 va_list ap;
318 char buf[MAXPATHLEN+512];
319 size_t len;
320
321 strcpy(buf, RSYNC_NAME ": ");
322 len = (sizeof RSYNC_NAME ": ") - 1;
323
324 va_start(ap, format);
325 len += vsnprintf(buf + len, sizeof buf - len, format, ap);
326 va_end(ap);
327
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)
333 exit_cleanup(RERR_MESSAGEIO);
334
335 rwrite(code, buf, len);
336}
337
338
339
340void rflush(enum logcode code)
341{
342 FILE *f = NULL;
343
344 if (am_daemon) {
345 return;
346 }
347
348 if (code == FLOG) {
349 return;
350 }
351
352 if (code == FERROR) {
353 f = stderr;
354 }
355
356 if (code == FINFO) {
357 if (am_server)
358 f = stderr;
359 else
360 f = stdout;
361 }
362
363 if (!f) exit_cleanup(RERR_MESSAGEIO);
364 fflush(f);
365}
366
367
368
369/* a generic logging routine for send/recv, with parameter
370 * substitiution */
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)
374{
375 char buf[MAXPATHLEN+1024], buf2[MAXPATHLEN], fmt[32];
376 char *p, *s, *n;
377 size_t len, total;
378 int64 b;
379
380 *fmt = '%';
381
382 /* We expand % codes one by one in place in buf. We don't
383 * copy in the terminating null of the inserted strings, but
384 * rather keep going until we reach the null of the format. */
385 total = strlcpy(buf, format, sizeof buf);
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';
392
393 for (p = buf; (p = strchr(p, '%')) != NULL; ) {
394 s = p++;
395 n = fmt + 1;
396 if (*p == '-')
397 *n++ = *p++;
398 while (isdigit(*(uchar*)p) && n - fmt < (int)(sizeof fmt) - 8)
399 *n++ = *p++;
400 if (!*p)
401 break;
402 *n = '\0';
403 n = NULL;
404
405 switch (*p) {
406 case 'h': if (am_daemon) n = client_name(0); break;
407 case 'a': if (am_daemon) n = client_addr(0); break;
408 case 'l':
409 strlcat(fmt, ".0f", sizeof fmt);
410 snprintf(buf2, sizeof buf2, fmt,
411 (double)file->length);
412 n = buf2;
413 break;
414 case 'p':
415 strlcat(fmt, "ld", sizeof fmt);
416 snprintf(buf2, sizeof buf2, fmt,
417 (long)getpid());
418 n = buf2;
419 break;
420 case 'o': n = op; break;
421 case 'f':
422 n = safe_fname(f_name(file));
423 if (am_sender && file->dir.root) {
424 pathjoin(buf2, sizeof buf2,
425 file->dir.root, n);
426 /* The buffer from safe_fname() has more
427 * room than MAXPATHLEN, so this is safe. */
428 if (fmt[1])
429 strcpy(n, buf2);
430 else
431 n = buf2;
432 }
433 clean_fname(n, 0);
434 if (*n == '/')
435 n++;
436 break;
437 case 'n':
438 n = safe_fname(f_name(file));
439 if (S_ISDIR(file->mode)) {
440 /* The buffer from safe_fname() has more
441 * room than MAXPATHLEN, so this is safe. */
442 strcat(n, "/");
443 }
444 break;
445 case 'L':
446 if (hlink && *hlink) {
447 n = safe_fname(hlink);
448 strcpy(buf2, " => ");
449 } else if (S_ISLNK(file->mode) && file->u.link) {
450 n = safe_fname(file->u.link);
451 strcpy(buf2, " -> ");
452 } else {
453 n = "";
454 if (!fmt[1])
455 break;
456 strcpy(buf2, " ");
457 }
458 strlcat(fmt, "s", sizeof fmt);
459 snprintf(buf2 + 4, sizeof buf2 - 4, fmt, n);
460 n = buf2;
461 break;
462 case 'm': n = lp_name(module_id); break;
463 case 't': n = timestring(time(NULL)); break;
464 case 'P': n = lp_path(module_id); break;
465 case 'u': n = auth_user; break;
466 case 'b':
467 if (am_sender) {
468 b = stats.total_written -
469 initial_stats->total_written;
470 } else {
471 b = stats.total_read -
472 initial_stats->total_read;
473 }
474 strlcat(fmt, ".0f", sizeof fmt);
475 snprintf(buf2, sizeof buf2, fmt, (double)b);
476 n = buf2;
477 break;
478 case 'c':
479 if (!am_sender) {
480 b = stats.total_written -
481 initial_stats->total_written;
482 } else {
483 b = stats.total_read -
484 initial_stats->total_read;
485 }
486 strlcat(fmt, ".0f", sizeof fmt);
487 snprintf(buf2, sizeof buf2, fmt, (double)b);
488 n = buf2;
489 break;
490 case 'i':
491 if (iflags & ITEM_DELETED) {
492 n = "*deleting";
493 break;
494 }
495 n = buf2 + MAXPATHLEN - 32;
496 n[0] = iflags & ITEM_LOCAL_CHANGE
497 ? iflags & ITEM_XNAME_FOLLOWS ? 'h' : 'c'
498 : !(iflags & ITEM_TRANSFER) ? '.'
499 : !local_server && *op == 's' ? '<' : '>';
500 n[1] = S_ISDIR(file->mode) ? 'd'
501 : IS_DEVICE(file->mode) ? 'D'
502 : S_ISLNK(file->mode) ? 'L' : 'f';
503 n[2] = !(iflags & ITEM_REPORT_CHECKSUM) ? '.' : 'c';
504 n[3] = !(iflags & ITEM_REPORT_SIZE) ? '.' : 's';
505 n[4] = !(iflags & ITEM_REPORT_TIME) ? '.'
506 : !preserve_times || IS_DEVICE(file->mode)
507 || S_ISLNK(file->mode) ? 'T' : 't';
508 n[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p';
509 n[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o';
510 n[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g';
511 n[8] = !(iflags & ITEM_REPORT_XATTRS) ? '.' : 'a';
512 n[9] = '\0';
513
514 if (iflags & (ITEM_IS_NEW|ITEM_MISSING_DATA)) {
515 char ch = iflags & ITEM_IS_NEW ? '+' : '?';
516 int i;
517 for (i = 2; n[i]; i++)
518 n[i] = ch;
519 } else if (!(iflags & (ITEM_TRANSFER|ITEM_LOCAL_CHANGE))) {
520 int i;
521 for (i = 2; n[i]; i++) {
522 if (n[i] != '.')
523 break;
524 }
525 if (!n[i]) {
526 for (i = 2; n[i]; i++)
527 n[i] = ' ';
528 }
529 }
530 break;
531 }
532
533 /* "n" is the string to be inserted in place of this % code. */
534 if (!n)
535 continue;
536 if (n != buf2 && fmt[1]) {
537 strlcat(fmt, "s", sizeof fmt);
538 snprintf(buf2, sizeof buf2, fmt, n);
539 n = buf2;
540 }
541 len = strlen(n);
542
543 /* Subtract the length of the escape from the string's size. */
544 total -= p - s + 1;
545
546 if (len + total >= (size_t)sizeof buf) {
547 rprintf(FERROR,
548 "buffer overflow expanding %%%c -- exiting\n",
549 p[0]);
550 exit_cleanup(RERR_MESSAGEIO);
551 }
552
553 /* Shuffle the rest of the string along to make space for n */
554 if (len != (size_t)(p - s + 1))
555 memmove(s + len, p + 1, total - (s - buf) + 1);
556 total += len;
557
558 /* Insert the contents of string "n", but NOT its null. */
559 if (len)
560 memcpy(s, n, len);
561
562 /* Skip over inserted string; continue looking */
563 p = s + len;
564 }
565
566 rwrite(code, buf, total);
567}
568
569/* Return 1 if the format escape is in the log-format string (e.g. look for
570 * the 'b' in the "%9b" format escape). */
571int log_format_has(const char *format, char esc)
572{
573 const char *p;
574
575 if (!format)
576 return 0;
577
578 for (p = format; (p = strchr(p, '%')) != NULL; ) {
579 if (*++p == '-')
580 p++;
581 while (isdigit(*(uchar*)p))
582 p++;
583 if (!*p)
584 break;
585 if (*p == esc)
586 return 1;
587 }
588 return 0;
589}
590
591/* log the transfer of a file */
592void log_item(struct file_struct *file, struct stats *initial_stats,
593 int iflags, char *hlink)
594{
595 char *s_or_r = am_sender ? "send" : "recv";
596
597 if (lp_transfer_logging(module_id)) {
598 log_formatted(FLOG, lp_log_format(module_id), s_or_r,
599 file, initial_stats, iflags, hlink);
600 } else if (log_format && !am_server) {
601 log_formatted(FINFO, log_format, s_or_r,
602 file, initial_stats, iflags, hlink);
603 }
604}
605
606void maybe_log_item(struct file_struct *file, int iflags, int itemizing,
607 char *buf)
608{
609 int see_item = itemizing && (iflags || verbose > 1);
610 if (am_server) {
611 if (am_daemon && !dry_run && see_item)
612 log_item(file, &stats, iflags, buf);
613 } else if (see_item || iflags & ITEM_LOCAL_CHANGE || *buf
614 || (S_ISDIR(file->mode) && iflags & SIGNIFICANT_ITEM_FLAGS))
615 log_item(file, &stats, iflags, buf);
616}
617
618void log_delete(char *fname, int mode)
619{
620 static struct file_struct file;
621 int len = strlen(fname);
622 char *fmt;
623
624 file.mode = mode;
625 file.basename = fname;
626
627 if (!verbose && !log_format)
628 ;
629 else if (am_server && protocol_version >= 29 && len < MAXPATHLEN) {
630 if (S_ISDIR(mode))
631 len++; /* directories include trailing null */
632 send_msg(MSG_DELETED, fname, len);
633 } else {
634 fmt = log_format_has_o_or_i ? log_format : "deleting %n";
635 log_formatted(FCLIENT, fmt, "del.", &file, &stats,
636 ITEM_DELETED, NULL);
637 }
638
639 if (!am_daemon || dry_run || !lp_transfer_logging(module_id))
640 return;
641
642 fmt = daemon_log_format_has_o_or_i ? lp_log_format(module_id) : "deleting %n";
643 log_formatted(FLOG, fmt, "del.", &file, &stats, ITEM_DELETED, NULL);
644}
645
646
647/*
648 * Called when the transfer is interrupted for some reason.
649 *
650 * Code is one of the RERR_* codes from errcode.h, or terminating
651 * successfully.
652 */
653void log_exit(int code, const char *file, int line)
654{
655 if (code == 0) {
656 rprintf(FLOG,"sent %.0f bytes received %.0f bytes total size %.0f\n",
657 (double)stats.total_written,
658 (double)stats.total_read,
659 (double)stats.total_size);
660 } else {
661 const char *name;
662
663 name = rerr_name(code);
664 if (!name)
665 name = "unexplained error";
666
667 /* VANISHED is not an error, only a warning */
668 if (code == RERR_VANISHED) {
669 rprintf(FINFO, "rsync warning: %s (code %d) at %s(%d)\n",
670 name, code, file, line);
671 } else {
672 rprintf(FERROR, "rsync error: %s (code %d) at %s(%d)\n",
673 name, code, file, line);
674 }
675 }
676}