Enabled width-sizing for %L.
[rsync/rsync.git] / log.c
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
30 extern int verbose;
31 extern int dry_run;
32 extern int am_daemon;
33 extern int am_server;
34 extern int am_sender;
35 extern int local_server;
36 extern int quiet;
37 extern int module_id;
38 extern int msg_fd_out;
39 extern int protocol_version;
40 extern int preserve_times;
41 extern int log_format_has_o_or_i;
42 extern int daemon_log_format_has_o_or_i;
43 extern char *auth_user;
44 extern char *log_format;
45
46 static int log_initialised;
47 static char *logfname;
48 static FILE *logfile;
49 struct stats stats;
50
51 int log_got_error = 0;
52
53 struct {
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_LOG_FAILURE, "daemon unable to append to log-file" },
63         { RERR_SOCKETIO   , "error in socket IO" },
64         { RERR_FILEIO     , "error in file IO" },
65         { RERR_STREAMIO   , "error in rsync protocol data stream" },
66         { RERR_MESSAGEIO  , "errors with program diagnostics" },
67         { RERR_IPC        , "error in IPC code" },
68         { RERR_SIGNAL     , "received SIGUSR1 or SIGINT" },
69         { RERR_WAITCHILD  , "some error returned by waitpid()" },
70         { RERR_MALLOC     , "error allocating core memory buffers" },
71         { RERR_PARTIAL    , "some files could not be transferred" },
72         { RERR_VANISHED   , "some files vanished before they could be transferred" },
73         { RERR_TIMEOUT    , "timeout in data send/receive" },
74         { RERR_CMD_FAILED , "remote shell failed" },
75         { RERR_CMD_KILLED , "remote shell killed" },
76         { RERR_CMD_RUN    , "remote command could not be run" },
77         { RERR_CMD_NOTFOUND,"remote command not found" },
78         { RERR_DEL_LIMIT  , "the --max-delete limit stopped deletions" },
79         { 0, NULL }
80 };
81
82
83
84 /*
85  * Map from rsync error code to name, or return NULL.
86  */
87 static char const *rerr_name(int code)
88 {
89         int i;
90         for (i = 0; rerr_names[i].name; i++) {
91                 if (rerr_names[i].code == code)
92                         return rerr_names[i].name;
93         }
94         return NULL;
95 }
96
97
98 static void logit(int priority, char *buf)
99 {
100         if (logfname) {
101                 if (!logfile)
102                         log_open();
103                 fprintf(logfile,"%s [%d] %s",
104                         timestring(time(NULL)), (int)getpid(), buf);
105                 fflush(logfile);
106         } else {
107                 syslog(priority, "%s", buf);
108         }
109 }
110
111 void log_init(void)
112 {
113         int options = LOG_PID;
114         time_t t;
115
116         if (log_initialised)
117                 return;
118         log_initialised = 1;
119
120         /* this looks pointless, but it is needed in order for the
121          * C library on some systems to fetch the timezone info
122          * before the chroot */
123         t = time(NULL);
124         localtime(&t);
125
126         /* optionally use a log file instead of syslog */
127         logfname = lp_log_file();
128         if (logfname) {
129                 if (*logfname) {
130                         log_open();
131                         return;
132                 }
133                 logfname = NULL;
134         }
135
136 #ifdef LOG_NDELAY
137         options |= LOG_NDELAY;
138 #endif
139
140 #ifdef LOG_DAEMON
141         openlog("rsyncd", options, lp_syslog_facility());
142 #else
143         openlog("rsyncd", options);
144 #endif
145
146 #ifndef LOG_NDELAY
147         logit(LOG_INFO,"rsyncd started\n");
148 #endif
149 }
150
151 void log_open(void)
152 {
153         if (logfname && !logfile) {
154                 extern int orig_umask;
155                 int old_umask = umask(022 | orig_umask);
156                 logfile = fopen(logfname, "a");
157                 umask(old_umask);
158                 if (!logfile) {
159                         am_daemon = 0; /* avoid trying to log again */
160                         rsyserr(FERROR, errno, "fopen() of log-file failed");
161                         exit_cleanup(RERR_LOG_FAILURE);
162                 }
163         }
164 }
165
166 void log_close(void)
167 {
168         if (logfile) {
169                 fclose(logfile);
170                 logfile = NULL;
171         }
172 }
173
174 /* this is the underlying (unformatted) rsync debugging function. Call
175  * it with FINFO, FERROR or FLOG */
176 void rwrite(enum logcode code, char *buf, int len)
177 {
178         FILE *f = NULL;
179         /* recursion can happen with certain fatal conditions */
180
181         if (quiet && code == FINFO)
182                 return;
183
184         if (len < 0)
185                 exit_cleanup(RERR_MESSAGEIO);
186
187         buf[len] = 0;
188
189         if (am_server && msg_fd_out >= 0) {
190                 /* Pass the message to our sibling. */
191                 send_msg((enum msgcode)code, buf, len);
192                 return;
193         }
194
195         if (code == FCLIENT)
196                 code = FINFO;
197         else if (am_daemon) {
198                 static int in_block;
199                 char msg[2048];
200                 int priority = code == FERROR ? LOG_WARNING : LOG_INFO;
201
202                 if (in_block)
203                         return;
204                 in_block = 1;
205                 if (!log_initialised)
206                         log_init();
207                 strlcpy(msg, buf, MIN((int)sizeof msg, len + 1));
208                 logit(priority, msg);
209                 in_block = 0;
210
211                 if (code == FLOG || !am_server)
212                         return;
213         } else if (code == FLOG)
214                 return;
215
216         if (am_server) {
217                 /* Pass the message to the non-server side. */
218                 if (io_multiplex_write((enum msgcode)code, buf, len))
219                         return;
220                 if (am_daemon) {
221                         /* TODO: can we send the error to the user somehow? */
222                         return;
223                 }
224         }
225
226         if (code == FERROR) {
227                 log_got_error = 1;
228                 f = stderr;
229         }
230
231         if (code == FINFO)
232                 f = am_server ? stderr : stdout;
233
234         if (!f)
235                 exit_cleanup(RERR_MESSAGEIO);
236
237         if (fwrite(buf, len, 1, f) != 1)
238                 exit_cleanup(RERR_MESSAGEIO);
239
240         if (buf[len-1] == '\r' || buf[len-1] == '\n')
241                 fflush(f);
242 }
243                 
244
245 /* This is the rsync debugging function. Call it with FINFO, FERROR or
246  * FLOG. */
247 void rprintf(enum logcode code, const char *format, ...)
248 {
249         va_list ap;
250         char buf[MAXPATHLEN+512];
251         size_t len;
252
253         va_start(ap, format);
254         len = vsnprintf(buf, sizeof buf, format, ap);
255         va_end(ap);
256
257         /* Deal with buffer overruns.  Instead of panicking, just
258          * truncate the resulting string.  (Note that configure ensures
259          * that we have a vsnprintf() that doesn't ever return -1.) */
260         if (len > sizeof buf - 1) {
261                 const char ellipsis[] = "[...]";
262
263                 /* Reset length, and zero-terminate the end of our buffer */
264                 len = sizeof buf - 1;
265                 buf[len] = '\0';
266
267                 /* Copy the ellipsis to the end of the string, but give
268                  * us one extra character:
269                  *
270                  *                  v--- null byte at buf[sizeof buf - 1]
271                  *        abcdefghij0
272                  *     -> abcd[...]00  <-- now two null bytes at end
273                  *
274                  * If the input format string has a trailing newline,
275                  * we copy it into that extra null; if it doesn't, well,
276                  * all we lose is one byte.  */
277                 strncpy(buf+len-sizeof ellipsis, ellipsis, sizeof ellipsis);
278                 if (format[strlen(format)-1] == '\n') {
279                         buf[len-1] = '\n';
280                 }
281         }
282
283         rwrite(code, buf, len);
284 }
285
286
287 /* This is like rprintf, but it also tries to print some
288  * representation of the error code.  Normally errcode = errno.
289  *
290  * Unlike rprintf, this always adds a newline and there should not be
291  * one in the format string.
292  *
293  * Note that since strerror might involve dynamically loading a
294  * message catalog we need to call it once before chroot-ing. */
295 void rsyserr(enum logcode code, int errcode, const char *format, ...)
296 {
297         va_list ap;
298         char buf[MAXPATHLEN+512];
299         size_t len;
300
301         strcpy(buf, RSYNC_NAME ": ");
302         len = (sizeof RSYNC_NAME ": ") - 1;
303
304         va_start(ap, format);
305         len += vsnprintf(buf + len, sizeof buf - len, format, ap);
306         va_end(ap);
307
308         if (len < sizeof buf) {
309                 len += snprintf(buf + len, sizeof buf - len,
310                                 ": %s (%d)\n", strerror(errcode), errcode);
311         }
312         if (len >= sizeof buf)
313                 exit_cleanup(RERR_MESSAGEIO);
314
315         rwrite(code, buf, len);
316 }
317
318
319
320 void rflush(enum logcode code)
321 {
322         FILE *f = NULL;
323         
324         if (am_daemon) {
325                 return;
326         }
327
328         if (code == FLOG) {
329                 return;
330         }
331
332         if (code == FERROR) {
333                 f = stderr;
334         }
335
336         if (code == FINFO) {
337                 if (am_server)
338                         f = stderr;
339                 else
340                         f = stdout;
341         }
342
343         if (!f) exit_cleanup(RERR_MESSAGEIO);
344         fflush(f);
345 }
346
347
348
349 /* a generic logging routine for send/recv, with parameter
350  * substitiution */
351 static void log_formatted(enum logcode code, char *format, char *op,
352                           struct file_struct *file, struct stats *initial_stats,
353                           int iflags, char *hlink)
354 {
355         char buf[MAXPATHLEN+1024], buf2[MAXPATHLEN], fmt[32];
356         char *p, *s, *n;
357         size_t len, total;
358         int64 b;
359
360         *fmt = '%';
361
362         /* We expand % codes one by one in place in buf.  We don't
363          * copy in the terminating null of the inserted strings, but
364          * rather keep going until we reach the null of the format. */
365         total = strlcpy(buf, format, sizeof buf);
366         
367         for (p = buf; (p = strchr(p, '%')) != NULL; ) {
368                 s = p++;
369                 n = fmt + 1;
370                 if (*p == '-')
371                         *n++ = *p++;
372                 while (isdigit(*(uchar*)p) && n - fmt < (int)(sizeof fmt) - 8)
373                         *n++ = *p++;
374                 if (!*p)
375                         break;
376                 *n = '\0';
377                 n = NULL;
378
379                 switch (*p++) {
380                 case 'h': if (am_daemon) n = client_name(0); break;
381                 case 'a': if (am_daemon) n = client_addr(0); break;
382                 case 'l':
383                         strlcat(fmt, ".0f", sizeof fmt);
384                         snprintf(buf2, sizeof buf2, fmt,
385                                  (double)file->length);
386                         n = buf2;
387                         break;
388                 case 'p':
389                         strlcat(fmt, "ld", sizeof fmt);
390                         snprintf(buf2, sizeof buf2, fmt,
391                                  (long)getpid());
392                         n = buf2;
393                         break;
394                 case 'o': n = op; break;
395                 case 'f':
396                         n = safe_fname(f_name(file));
397                         if (am_sender && file->dir.root) {
398                                 pathjoin(buf2, sizeof buf2,
399                                          file->dir.root, n);
400                                 /* The buffer from safe_fname() has more
401                                  * room than MAXPATHLEN, so this is safe. */
402                                 if (fmt[1])
403                                         strcpy(n, buf2);
404                                 else
405                                         n = buf2;
406                         }
407                         clean_fname(n, 0);
408                         if (*n == '/')
409                                 n++;
410                         break;
411                 case 'n':
412                         n = safe_fname(f_name(file));
413                         if (S_ISDIR(file->mode)) {
414                                 /* The buffer from safe_fname() has more
415                                  * room than MAXPATHLEN, so this is safe. */
416                                 strcat(n, "/");
417                         }
418                         break;
419                 case 'L':
420                         if (hlink && *hlink) {
421                                 n = safe_fname(hlink);
422                                 strcpy(buf2, " => ");
423                         } else if (S_ISLNK(file->mode) && file->u.link) {
424                                 n = safe_fname(file->u.link);
425                                 strcpy(buf2, " -> ");
426                         } else {
427                                 n = "";
428                                 if (!fmt[1])
429                                         break;
430                                 strcpy(buf2, "    ");
431                         }
432                         strlcat(fmt, "s", sizeof fmt);
433                         snprintf(buf2 + 4, sizeof buf2 - 4, fmt, n);
434                         n = buf2;
435                         break;
436                 case 'm': n = lp_name(module_id); break;
437                 case 't': n = timestring(time(NULL)); break;
438                 case 'P': n = lp_path(module_id); break;
439                 case 'u': n = auth_user; break;
440                 case 'b':
441                         strlcat(fmt, ".0f", sizeof fmt);
442                         if (am_sender) {
443                                 b = stats.total_written -
444                                         initial_stats->total_written;
445                         } else {
446                                 b = stats.total_read -
447                                         initial_stats->total_read;
448                         }
449                         snprintf(buf2, sizeof buf2, fmt, (double)b);
450                         n = buf2;
451                         break;
452                 case 'c':
453                         strlcat(fmt, ".0f", sizeof fmt);
454                         if (!am_sender) {
455                                 b = stats.total_written -
456                                         initial_stats->total_written;
457                         } else {
458                                 b = stats.total_read -
459                                         initial_stats->total_read;
460                         }
461                         snprintf(buf2, sizeof buf2, fmt, (double)b);
462                         n = buf2;
463                         break;
464                 case 'i':
465                         if (iflags & ITEM_DELETED) {
466                                 n = "*deleting";
467                                 break;
468                         }
469                         n = buf2 + MAXPATHLEN - 32;
470                         n[0] = iflags & ITEM_LOCAL_CHANGE
471                               ? iflags & ITEM_XNAME_FOLLOWS ? 'h' : 'c'
472                              : !(iflags & ITEM_TRANSFER) ? '.'
473                              : !local_server && *op == 's' ? '<' : '>';
474                         n[1] = S_ISDIR(file->mode) ? 'd'
475                              : IS_DEVICE(file->mode) ? 'D'
476                              : S_ISLNK(file->mode) ? 'L' : 'f';
477                         n[2] = !(iflags & ITEM_REPORT_CHECKSUM) ? '.' : 'c';
478                         n[3] = !(iflags & ITEM_REPORT_SIZE) ? '.' : 's';
479                         n[4] = !(iflags & ITEM_REPORT_TIME) ? '.'
480                              : !preserve_times || IS_DEVICE(file->mode)
481                                                || S_ISLNK(file->mode) ? 'T' : 't';
482                         n[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p';
483                         n[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o';
484                         n[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g';
485                         n[8] = !(iflags & ITEM_REPORT_XATTRS) ? '.' : 'a';
486                         n[9] = '\0';
487
488                         if (iflags & (ITEM_IS_NEW|ITEM_MISSING_DATA)) {
489                                 char ch = iflags & ITEM_IS_NEW ? '+' : '?';
490                                 int i;
491                                 for (i = 2; n[i]; i++)
492                                         n[i] = ch;
493                         } else if (!(iflags & (ITEM_TRANSFER|ITEM_LOCAL_CHANGE))) {
494                                 int i;
495                                 for (i = 2; n[i]; i++) {
496                                         if (n[i] != '.')
497                                                 break;
498                                 }
499                                 if (!n[i]) {
500                                         for (i = 2; n[i]; i++)
501                                                 n[i] = ' ';
502                                 }
503                         }
504                         break;
505                 }
506
507                 /* "n" is the string to be inserted in place of this % code. */
508                 if (!n)
509                         continue;
510                 if (n != buf2 && fmt[1]) {
511                         strlcat(fmt, "s", sizeof fmt);
512                         snprintf(buf2, sizeof buf2, fmt, n);
513                         n = buf2;
514                 }
515                 len = strlen(n);
516
517                 /* Subtract the length of the escape from the string's size. */
518                 total -= p - s;
519
520                 if (len + total >= sizeof buf) {
521                         rprintf(FERROR,
522                                 "buffer overflow expanding %%%c -- exiting\n",
523                                 p[-1]);
524                         exit_cleanup(RERR_MESSAGEIO);
525                 }
526
527                 /* Shuffle the rest of the string along to make space for n */
528                 if (len != (size_t)(p - s))
529                         memmove(s + len, p, total - (s - buf) + 1);
530                 total += len;
531
532                 /* Insert the contents of string "n", but NOT its null. */
533                 if (len)
534                         memcpy(s, n, len);
535
536                 /* Skip over inserted string; continue looking */
537                 p = s + len;
538         }
539
540         rprintf(code, "%s\n", buf);
541 }
542
543 int log_format_has(const char *format, char esc)
544 {
545         const char *p;
546
547         if (!format)
548                 return 0;
549
550         for (p = format; (p = strchr(p, '%')) != NULL; ) {
551                 if (*++p == '-')
552                         p++;
553                 while (isdigit(*(uchar*)p))
554                         p++;
555                 if (!*p)
556                         break;
557                 if (*p == esc)
558                         return 1;
559         }
560         return 0;
561 }
562
563 /* log the transfer of a file */
564 void log_item(struct file_struct *file, struct stats *initial_stats,
565               int iflags, char *hlink)
566 {
567         char *s_or_r = am_sender ? "send" : "recv";
568
569         if (lp_transfer_logging(module_id)) {
570                 log_formatted(FLOG, lp_log_format(module_id), s_or_r,
571                               file, initial_stats, iflags, hlink);
572         } else if (log_format && !am_server) {
573                 log_formatted(FINFO, log_format, s_or_r,
574                               file, initial_stats, iflags, hlink);
575         }
576 }
577
578 void maybe_log_item(struct file_struct *file, int iflags, int itemizing,
579                     char *buf)
580 {
581         int see_item = itemizing && (iflags || verbose > 1);
582         if (am_server) {
583                 if (am_daemon && !dry_run && see_item)
584                         log_item(file, &stats, iflags, buf);
585         } else if (see_item || iflags & ITEM_LOCAL_CHANGE || *buf
586             || (S_ISDIR(file->mode) && iflags & SIGNIFICANT_ITEM_FLAGS))
587                 log_item(file, &stats, iflags, buf);
588 }
589
590 void log_delete(char *fname, int mode)
591 {
592         static struct file_struct file;
593         int len = strlen(fname);
594         char *fmt;
595
596         file.mode = mode;
597         file.basename = fname;
598
599         if (!verbose && !log_format)
600                 ;
601         else if (am_server && protocol_version >= 29 && len < MAXPATHLEN) {
602                 if (S_ISDIR(mode))
603                         len++; /* directories include trailing null */
604                 send_msg(MSG_DELETED, fname, len);
605         } else {
606                 fmt = log_format_has_o_or_i ? log_format : "deleting %n";
607                 log_formatted(FCLIENT, fmt, "del.", &file, &stats,
608                               ITEM_DELETED, NULL);
609         }
610
611         if (!am_daemon || dry_run || !lp_transfer_logging(module_id))
612                 return;
613
614         fmt = daemon_log_format_has_o_or_i ? lp_log_format(module_id) : "deleting %n";
615         log_formatted(FLOG, fmt, "del.", &file, &stats, ITEM_DELETED, NULL);
616 }
617
618
619 /*
620  * Called when the transfer is interrupted for some reason.
621  *
622  * Code is one of the RERR_* codes from errcode.h, or terminating
623  * successfully.
624  */
625 void log_exit(int code, const char *file, int line)
626 {
627         if (code == 0) {
628                 rprintf(FLOG,"sent %.0f bytes  received %.0f bytes  total size %.0f\n",
629                         (double)stats.total_written,
630                         (double)stats.total_read,
631                         (double)stats.total_size);
632         } else {
633                 const char *name;
634
635                 name = rerr_name(code);
636                 if (!name)
637                         name = "unexplained error";
638
639                 /* VANISHED is not an error, only a warning */
640                 if (code == RERR_VANISHED) {
641                         rprintf(FINFO, "rsync warning: %s (code %d) at %s(%d)\n", 
642                                 name, code, file, line);
643                 } else {
644                         rprintf(FERROR, "rsync error: %s (code %d) at %s(%d)\n",
645                                 name, code, file, line);
646                 }
647         }
648 }