constification
[exim.git] / src / src / log.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2014 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* Functions for writing log files. The code for maintaining datestamped
9 log files was originally contributed by Tony Sheen. */
10
11
12 #include "exim.h"
13
14 #define LOG_NAME_SIZE 256
15 #define MAX_SYSLOG_LEN 870
16
17 #define LOG_MODE_FILE   1
18 #define LOG_MODE_SYSLOG 2
19
20 enum { lt_main, lt_reject, lt_panic, lt_debug };
21
22 static uschar *log_names[] = { US"main", US"reject", US"panic", US"debug" };
23
24
25
26 /*************************************************
27 *           Local static variables               *
28 *************************************************/
29
30 static uschar mainlog_name[LOG_NAME_SIZE];
31 static uschar rejectlog_name[LOG_NAME_SIZE];
32 static uschar debuglog_name[LOG_NAME_SIZE];
33
34 static uschar *mainlog_datestamp = NULL;
35 static uschar *rejectlog_datestamp = NULL;
36
37 static int    mainlogfd = -1;
38 static int    rejectlogfd = -1;
39 static ino_t  mainlog_inode = 0;
40 static ino_t  rejectlog_inode = 0;
41
42 static uschar *panic_save_buffer = NULL;
43 static BOOL   panic_recurseflag = FALSE;
44
45 static BOOL   syslog_open = FALSE;
46 static BOOL   path_inspected = FALSE;
47 static int    logging_mode = LOG_MODE_FILE;
48 static uschar *file_path = US"";
49
50
51
52
53 /*************************************************
54 *              Write to syslog                   *
55 *************************************************/
56
57 /* The given string is split into sections according to length, or at embedded
58 newlines, and syslogged as a numbered sequence if it is overlong or if there is
59 more than one line. However, if we are running in the test harness, do not do
60 anything. (The test harness doesn't use syslog - for obvious reasons - but we
61 can get here if there is a failure to open the panic log.)
62
63 Arguments:
64   priority       syslog priority
65   s              the string to be written
66
67 Returns:         nothing
68 */
69
70 static void
71 write_syslog(int priority, uschar *s)
72 {
73 int len, pass;
74 int linecount = 0;
75
76 if (running_in_test_harness) return;
77
78 if (!syslog_timestamp) s += log_timezone? 26 : 20;
79
80 len = Ustrlen(s);
81
82 #ifndef NO_OPENLOG
83 if (!syslog_open)
84   {
85   #ifdef SYSLOG_LOG_PID
86   openlog(CS syslog_processname, LOG_PID|LOG_CONS, syslog_facility);
87   #else
88   openlog(CS syslog_processname, LOG_CONS, syslog_facility);
89   #endif
90   syslog_open = TRUE;
91   }
92 #endif
93
94 /* First do a scan through the message in order to determine how many lines
95 it is going to end up as. Then rescan to output it. */
96
97 for (pass = 0; pass < 2; pass++)
98   {
99   int i;
100   int tlen;
101   uschar *ss = s;
102   for (i = 1, tlen = len; tlen > 0; i++)
103     {
104     int plen = tlen;
105     uschar *nlptr = Ustrchr(ss, '\n');
106     if (nlptr != NULL) plen = nlptr - ss;
107     #ifndef SYSLOG_LONG_LINES
108     if (plen > MAX_SYSLOG_LEN) plen = MAX_SYSLOG_LEN;
109     #endif
110     tlen -= plen;
111     if (ss[plen] == '\n') tlen--;    /* chars left */
112
113     if (pass == 0) linecount++; else
114       {
115       if (linecount == 1)
116         syslog(priority, "%.*s", plen, ss);
117       else
118         syslog(priority, "[%d%c%d] %.*s", i,
119           (ss[plen] == '\n' && tlen != 0)? '\\' : '/',
120           linecount, plen, ss);
121       }
122     ss += plen;
123     if (*ss == '\n') ss++;
124     }
125   }
126 }
127
128
129
130 /*************************************************
131 *             Die tidily                         *
132 *************************************************/
133
134 /* This is called when Exim is dying as a result of something going wrong in
135 the logging, or after a log call with LOG_PANIC_DIE set. Optionally write a
136 message to debug_file or a stderr file, if they exist. Then, if in the middle
137 of accepting a message, throw it away tidily by calling receive_bomb_out();
138 this will attempt to send an SMTP response if appropriate. Passing NULL as the
139 first argument stops it trying to run the NOTQUIT ACL (which might try further
140 logging and thus cause problems). Otherwise, try to close down an outstanding
141 SMTP call tidily.
142
143 Arguments:
144   s1         Error message to write to debug_file and/or stderr and syslog
145   s2         Error message for any SMTP call that is in progress
146 Returns:     The function does not return
147 */
148
149 static void
150 die(uschar *s1, uschar *s2)
151 {
152 if (s1 != NULL)
153   {
154   write_syslog(LOG_CRIT, s1);
155   if (debug_file != NULL) debug_printf("%s\n", s1);
156   if (log_stderr != NULL && log_stderr != debug_file)
157     fprintf(log_stderr, "%s\n", s1);
158   }
159 if (receive_call_bombout) receive_bomb_out(NULL, s2);  /* does not return */
160 if (smtp_input) smtp_closedown(s2);
161 exim_exit(EXIT_FAILURE);
162 }
163
164
165
166 /*************************************************
167 *             Create a log file                  *
168 *************************************************/
169
170 /* This function is called to create and open a log file. It may be called in a
171 subprocess when the original process is root.
172
173 Arguments:
174   name         the file name
175
176 The file name has been build in a working buffer, so it is permissible to
177 overwrite it temporarily if it is necessary to create the directory.
178
179 Returns:       a file descriptor, or < 0 on failure (errno set)
180 */
181
182 int
183 log_create(uschar *name)
184 {
185 int fd = Uopen(name, O_CREAT|O_APPEND|O_WRONLY, LOG_MODE);
186
187 /* If creation failed, attempt to build a log directory in case that is the
188 problem. */
189
190 if (fd < 0 && errno == ENOENT)
191   {
192   BOOL created;
193   uschar *lastslash = Ustrrchr(name, '/');
194   *lastslash = 0;
195   created = directory_make(NULL, name, LOG_DIRECTORY_MODE, FALSE);
196   DEBUG(D_any) debug_printf("%s log directory %s\n",
197     created? "created" : "failed to create", name);
198   *lastslash = '/';
199   if (created) fd = Uopen(name, O_CREAT|O_APPEND|O_WRONLY, LOG_MODE);
200   }
201
202 return fd;
203 }
204
205
206
207 /*************************************************
208 *     Create a log file as the exim user         *
209 *************************************************/
210
211 /* This function is called when we are root to spawn an exim:exim subprocess
212 in which we can create a log file. It must be signal-safe since it is called
213 by the usr1_handler().
214
215 Arguments:
216   name         the file name
217
218 Returns:       a file descriptor, or < 0 on failure (errno set)
219 */
220
221 int
222 log_create_as_exim(uschar *name)
223 {
224 pid_t pid = fork();
225 int status = 1;
226 int fd = -1;
227
228 /* In the subprocess, change uid/gid and do the creation. Return 0 from the
229 subprocess on success. If we don't check for setuid failures, then the file
230 can be created as root, so vulnerabilities which cause setuid to fail mean
231 that the Exim user can use symlinks to cause a file to be opened/created as
232 root. We always open for append, so can't nuke existing content but it would
233 still be Rather Bad. */
234
235 if (pid == 0)
236   {
237   if (setgid(exim_gid) < 0)
238     die(US"exim: setgid for log-file creation failed, aborting",
239       US"Unexpected log failure, please try later");
240   if (setuid(exim_uid) < 0)
241     die(US"exim: setuid for log-file creation failed, aborting",
242       US"Unexpected log failure, please try later");
243   _exit((log_create(name) < 0)? 1 : 0);
244   }
245
246 /* If we created a subprocess, wait for it. If it succeeded, try the open. */
247
248 while (pid > 0 && waitpid(pid, &status, 0) != pid);
249 if (status == 0) fd = Uopen(name, O_APPEND|O_WRONLY, LOG_MODE);
250
251 /* If we failed to create a subprocess, we are in a bad way. We return
252 with fd still < 0, and errno set, letting the caller handle the error. */
253
254 return fd;
255 }
256
257
258
259
260 /*************************************************
261 *                Open a log file                 *
262 *************************************************/
263
264 /* This function opens one of a number of logs, creating the log directory if
265 it does not exist. This may be called recursively on failure, in order to open
266 the panic log.
267
268 The directory is in the static variable file_path. This is static so that it
269 the work of sorting out the path is done just once per Exim process.
270
271 Exim is normally configured to avoid running as root wherever possible, the log
272 files must be owned by the non-privileged exim user. To ensure this, first try
273 an open without O_CREAT - most of the time this will succeed. If it fails, try
274 to create the file; if running as root, this must be done in a subprocess to
275 avoid races.
276
277 Arguments:
278   fd         where to return the resulting file descriptor
279   type       lt_main, lt_reject, lt_panic, or lt_debug
280   tag        optional tag to include in the name (only hooked up for debug)
281
282 Returns:   nothing
283 */
284
285 static void
286 open_log(int *fd, int type, uschar *tag)
287 {
288 uid_t euid;
289 BOOL ok, ok2;
290 uschar buffer[LOG_NAME_SIZE];
291
292 /* The names of the log files are controlled by file_path. The panic log is
293 written to the same directory as the main and reject logs, but its name does
294 not have a datestamp. The use of datestamps is indicated by %D/%M in file_path.
295 When opening the panic log, if %D or %M is present, we remove the datestamp
296 from the generated name; if it is at the start, remove a following
297 non-alphanumeric character as well; otherwise, remove a preceding
298 non-alphanumeric character. This is definitely kludgy, but it sort of does what
299 people want, I hope. */
300
301 ok = string_format(buffer, sizeof(buffer), CS file_path, log_names[type]);
302
303 /* Save the name of the mainlog for rollover processing. Without a datestamp,
304 it gets statted to see if it has been cycled. With a datestamp, the datestamp
305 will be compared. The static slot for saving it is the same size as buffer,
306 and the text has been checked above to fit, so this use of strcpy() is OK. */
307
308 if (type == lt_main)
309   {
310   Ustrcpy(mainlog_name, buffer);
311   mainlog_datestamp = mainlog_name + string_datestamp_offset;
312   }
313
314 /* Ditto for the reject log */
315
316 else if (type == lt_reject)
317   {
318   Ustrcpy(rejectlog_name, buffer);
319   rejectlog_datestamp = rejectlog_name + string_datestamp_offset;
320   }
321
322 /* and deal with the debug log (which keeps the datestamp, but does not
323 update it) */
324
325 else if (type == lt_debug)
326   {
327   Ustrcpy(debuglog_name, buffer);
328   if (tag)
329     {
330     /* this won't change the offset of the datestamp */
331     ok2 = string_format(buffer, sizeof(buffer), "%s%s",
332       debuglog_name, tag);
333     if (ok2)
334       Ustrcpy(debuglog_name, buffer);
335     }
336   }
337
338 /* Remove any datestamp if this is the panic log. This is rare, so there's no
339 need to optimize getting the datestamp length. We remove one non-alphanumeric
340 char afterwards if at the start, otherwise one before. */
341
342 else if (string_datestamp_offset >= 0)
343   {
344   uschar *from = buffer + string_datestamp_offset;
345   uschar *to = from + string_datestamp_length;
346   if (from == buffer || from[-1] == '/')
347     {
348     if (!isalnum(*to)) to++;
349     }
350   else
351     {
352     if (!isalnum(from[-1])) from--;
353     }
354
355   /* This strcpy is ok, because we know that to is a substring of from. */
356
357   Ustrcpy(from, to);
358   }
359
360 /* If the file name is too long, it is an unrecoverable disaster */
361
362 if (!ok)
363   {
364   die(US"exim: log file path too long: aborting",
365       US"Logging failure; please try later");
366   }
367
368 /* We now have the file name. Try to open an existing file. After a successful
369 open, arrange for automatic closure on exec(), and then return. */
370
371 *fd = Uopen(buffer, O_APPEND|O_WRONLY, LOG_MODE);
372
373 if (*fd >= 0)
374   {
375   (void)fcntl(*fd, F_SETFD, fcntl(*fd, F_GETFD) | FD_CLOEXEC);
376   return;
377   }
378
379 /* Open was not successful: try creating the file. If this is a root process,
380 we must do the creating in a subprocess set to exim:exim in order to ensure
381 that the file is created with the right ownership. Otherwise, there can be a
382 race if another Exim process is trying to write to the log at the same time.
383 The use of SIGUSR1 by the exiwhat utility can provoke a lot of simultaneous
384 writing. */
385
386 euid = geteuid();
387
388 /* If we are already running as the Exim user (even if that user is root),
389 we can go ahead and create in the current process. */
390
391 if (euid == exim_uid) *fd = log_create(buffer);
392
393 /* Otherwise, if we are root, do the creation in an exim:exim subprocess. If we
394 are neither exim nor root, creation is not attempted. */
395
396 else if (euid == root_uid) *fd = log_create_as_exim(buffer);
397
398 /* If we now have an open file, set the close-on-exec flag and return. */
399
400 if (*fd >= 0)
401   {
402   (void)fcntl(*fd, F_SETFD, fcntl(*fd, F_GETFD) | FD_CLOEXEC);
403   return;
404   }
405
406 /* Creation failed. There are some circumstances in which we get here when
407 the effective uid is not root or exim, which is the problem. (For example, a
408 non-setuid binary with log_arguments set, called in certain ways.) Rather than
409 just bombing out, force the log to stderr and carry on if stderr is available.
410 */
411
412 if (euid != root_uid && euid != exim_uid && log_stderr != NULL)
413   {
414   *fd = fileno(log_stderr);
415   return;
416   }
417
418 /* Otherwise this is a disaster. This call is deliberately ONLY to the panic
419 log. If possible, save a copy of the original line that was being logged. If we
420 are recursing (can't open the panic log either), the pointer will already be
421 set. */
422
423 if (panic_save_buffer == NULL)
424   {
425   panic_save_buffer = (uschar *)malloc(LOG_BUFFER_SIZE);
426   if (panic_save_buffer != NULL)
427     memcpy(panic_save_buffer, log_buffer, LOG_BUFFER_SIZE);
428   }
429
430 log_write(0, LOG_PANIC_DIE, "Cannot open %s log file \"%s\": %s: "
431   "euid=%d egid=%d", log_names[type], buffer, strerror(errno), euid, getegid());
432 /* Never returns */
433 }
434
435
436
437 /*************************************************
438 *     Add configuration file info to log line    *
439 *************************************************/
440
441 /* This is put in a function because it's needed twice (once for debugging,
442 once for real).
443
444 Arguments:
445   ptr         pointer to the end of the line we are building
446   flags       log flags
447
448 Returns:      updated pointer
449 */
450
451 static uschar *
452 log_config_info(uschar *ptr, int flags)
453 {
454 Ustrcpy(ptr, "Exim configuration error");
455 ptr += 24;
456
457 if ((flags & (LOG_CONFIG_FOR & ~LOG_CONFIG)) != 0)
458   {
459   Ustrcpy(ptr, " for ");
460   return ptr + 5;
461   }
462
463 if ((flags & (LOG_CONFIG_IN & ~LOG_CONFIG)) != 0)
464   {
465   sprintf(CS ptr, " in line %d of %s", config_lineno, config_filename);
466   while (*ptr) ptr++;
467   }
468
469 Ustrcpy(ptr, ":\n  ");
470 return ptr + 4;
471 }
472
473
474 /*************************************************
475 *           A write() operation failed           *
476 *************************************************/
477
478 /* This function is called when write() fails on anything other than the panic
479 log, which can happen if a disk gets full or a file gets too large or whatever.
480 We try to save the relevant message in the panic_save buffer before crashing
481 out.
482
483 The potential invoker should probably not call us for EINTR -1 writes.  But
484 otherwise, short writes are bad as we don't do non-blocking writes to fds
485 subject to flow control.  (If we do, that's new and the logic of this should
486 be reconsidered).
487
488 Arguments:
489   name      the name of the log being written
490   length    the string length being written
491   rc        the return value from write()
492
493 Returns:    does not return
494 */
495
496 static void
497 log_write_failed(uschar *name, int length, int rc)
498 {
499 int save_errno = errno;
500
501 if (panic_save_buffer == NULL)
502   {
503   panic_save_buffer = (uschar *)malloc(LOG_BUFFER_SIZE);
504   if (panic_save_buffer != NULL)
505     memcpy(panic_save_buffer, log_buffer, LOG_BUFFER_SIZE);
506   }
507
508 log_write(0, LOG_PANIC_DIE, "failed to write to %s: length=%d result=%d "
509   "errno=%d (%s)", name, length, rc, save_errno,
510   (save_errno == 0)? "write incomplete" : strerror(save_errno));
511 /* Never returns */
512 }
513
514
515
516 /*************************************************
517 *     Write to an fd, retrying after signals     *
518 *************************************************/
519
520 /* Basic write to fd for logs, handling EINTR.
521
522 Arguments:
523   fd        the fd to write to
524   buf       the string to write
525   length    the string length being written
526
527 Returns:
528   length actually written, persisting an errno from write()
529 */
530 ssize_t
531 write_to_fd_buf(int fd, const uschar *buf, size_t length)
532 {
533 ssize_t wrote;
534 size_t total_written = 0;
535 const uschar *p = buf;
536 size_t left = length;
537
538 while (1)
539   {
540   wrote = write(fd, p, left);
541   if (wrote == (ssize_t)-1)
542     {
543     if (errno == EINTR) continue;
544     return wrote;
545     }
546   total_written += wrote;
547   if (wrote == left)
548     break;
549   else
550     {
551     p += wrote;
552     left -= wrote;
553     }
554   }
555 return total_written;
556 }
557
558
559 /*************************************************
560 *            Write message to log file           *
561 *************************************************/
562
563 /* Exim can be configured to log to local files, or use syslog, or both. This
564 is controlled by the setting of log_file_path. The following cases are
565 recognized:
566
567   log_file_path = ""               write files in the spool/log directory
568   log_file_path = "xxx"            write files in the xxx directory
569   log_file_path = "syslog"         write to syslog
570   log_file_path = "syslog : xxx"   write to syslog and to files (any order)
571
572 The message always gets '\n' added on the end of it, since more than one
573 process may be writing to the log at once and we don't want intermingling to
574 happen in the middle of lines. To be absolutely sure of this we write the data
575 into a private buffer and then put it out in a single write() call.
576
577 The flags determine which log(s) the message is written to, or for syslogging,
578 which priority to use, and in the case of the panic log, whether the process
579 should die afterwards.
580
581 The variable really_exim is TRUE only when exim is running in privileged state
582 (i.e. not with a changed configuration or with testing options such as -brw).
583 If it is not, don't try to write to the log because permission will probably be
584 denied.
585
586 Avoid actually writing to the logs when exim is called with -bv or -bt to
587 test an address, but take other actions, such as panicing.
588
589 In Exim proper, the buffer for building the message is got at start-up, so that
590 nothing gets done if it can't be got. However, some functions that are also
591 used in utilities occasionally obey log_write calls in error situations, and it
592 is simplest to put a single malloc() here rather than put one in each utility.
593 Malloc is used directly because the store functions may call log_write().
594
595 If a message_id exists, we include it after the timestamp.
596
597 Arguments:
598   selector  write to main log or LOG_INFO only if this value is zero, or if
599               its bit is set in log_write_selector
600   flags     each bit indicates some independent action:
601               LOG_SENDER      add raw sender to the message
602               LOG_RECIPIENTS  add raw recipients list to message
603               LOG_CONFIG      add "Exim configuration error"
604               LOG_CONFIG_FOR  add " for " instead of ":\n  "
605               LOG_CONFIG_IN   add " in line x[ of file y]"
606               LOG_MAIN        write to main log or syslog LOG_INFO
607               LOG_REJECT      write to reject log or syslog LOG_NOTICE
608               LOG_PANIC       write to panic log or syslog LOG_ALERT
609               LOG_PANIC_DIE   write to panic log or LOG_ALERT and then crash
610   format    a printf() format
611   ...       arguments for format
612
613 Returns:    nothing
614 */
615
616 void
617 log_write(unsigned int selector, int flags, const char *format, ...)
618 {
619 uschar *ptr;
620 int length;
621 int paniclogfd;
622 ssize_t written_len;
623 va_list ap;
624
625 /* If panic_recurseflag is set, we have failed to open the panic log. This is
626 the ultimate disaster. First try to write the message to a debug file and/or
627 stderr and also to syslog. If panic_save_buffer is not NULL, it contains the
628 original log line that caused the problem. Afterwards, expire. */
629
630 if (panic_recurseflag)
631   {
632   uschar *extra = (panic_save_buffer == NULL)? US"" : panic_save_buffer;
633   if (debug_file != NULL) debug_printf("%s%s", extra, log_buffer);
634   if (log_stderr != NULL && log_stderr != debug_file)
635     fprintf(log_stderr, "%s%s", extra, log_buffer);
636   if (*extra != 0) write_syslog(LOG_CRIT, extra);
637   write_syslog(LOG_CRIT, log_buffer);
638   die(US"exim: could not open panic log - aborting: see message(s) above",
639     US"Unexpected log failure, please try later");
640   }
641
642 /* Ensure we have a buffer (see comment above); this should never be obeyed
643 when running Exim proper, only when running utilities. */
644
645 if (log_buffer == NULL)
646   {
647   log_buffer = (uschar *)malloc(LOG_BUFFER_SIZE);
648   if (log_buffer == NULL)
649     {
650     fprintf(stderr, "exim: failed to get store for log buffer\n");
651     exim_exit(EXIT_FAILURE);
652     }
653   }
654
655 /* If we haven't already done so, inspect the setting of log_file_path to
656 determine whether to log to files and/or to syslog. Bits in logging_mode
657 control this, and for file logging, the path must end up in file_path. This
658 variable must be in permanent store because it may be required again later in
659 the process. */
660
661 if (!path_inspected)
662   {
663   BOOL multiple = FALSE;
664   int old_pool = store_pool;
665
666   store_pool = POOL_PERM;
667
668   /* If nothing has been set, don't waste effort... the default values for the
669   statics are file_path="" and logging_mode = LOG_MODE_FILE. */
670
671   if (log_file_path[0] != 0)
672     {
673     int sep = ':';              /* Fixed separator - outside use */
674     uschar *s;
675     const uschar *ss = log_file_path;
676     logging_mode = 0;
677     while ((s = string_nextinlist(&ss, &sep, log_buffer, LOG_BUFFER_SIZE)))
678       {
679       if (Ustrcmp(s, "syslog") == 0)
680         logging_mode |= LOG_MODE_SYSLOG;
681       else if ((logging_mode & LOG_MODE_FILE) != 0) multiple = TRUE;
682       else
683         {
684         logging_mode |= LOG_MODE_FILE;
685
686         /* If a non-empty path is given, use it */
687
688         if (s[0] != 0)
689           {
690           file_path = string_copy(s);
691           }
692
693         /* If the path is empty, we want to use the first non-empty, non-
694         syslog item in LOG_FILE_PATH, if there is one, since the value of
695         log_file_path may have been set at runtime. If there is no such item,
696         use the ultimate default in the spool directory. */
697
698         else
699           {
700           uschar *t;
701           const uschar *tt = US LOG_FILE_PATH;
702           while ((t = string_nextinlist(&tt, &sep, log_buffer, LOG_BUFFER_SIZE)))
703             {
704             if (Ustrcmp(t, "syslog") == 0 || t[0] == 0) continue;
705             file_path = string_copy(t);
706             break;
707             }
708           }  /* Empty item in log_file_path */
709         }    /* First non-syslog item in log_file_path */
710       }      /* Scan of log_file_path */
711     }
712
713   /* If no modes have been selected, it is a major disaster */
714
715   if (logging_mode == 0)
716     die(US"Neither syslog nor file logging set in log_file_path",
717         US"Unexpected logging failure");
718
719   /* Set up the ultimate default if necessary. Then revert to the old store
720   pool, and record that we've sorted out the path. */
721
722   if ((logging_mode & LOG_MODE_FILE) != 0 && file_path[0] == 0)
723     file_path = string_sprintf("%s/log/%%slog", spool_directory);
724   store_pool = old_pool;
725   path_inspected = TRUE;
726
727   /* If more than one file path was given, log a complaint. This recursive call
728   should work since we have now set up the routing. */
729
730   if (multiple)
731     {
732     log_write(0, LOG_MAIN|LOG_PANIC,
733       "More than one path given in log_file_path: using %s", file_path);
734     }
735   }
736
737 /* If debugging, show all log entries, but don't show headers. Do it all
738 in one go so that it doesn't get split when multi-processing. */
739
740 DEBUG(D_any|D_v)
741   {
742   int i;
743   ptr = log_buffer;
744
745   Ustrcpy(ptr, "LOG:");
746   ptr += 4;
747
748   /* Show the options that were passed into the call. These are those whose
749   flag values do not have the 0x80000000 bit in them. Note that this
750   automatically exclude the "all" setting. */
751
752   for (i = 0; i < log_options_count; i++)
753     {
754     unsigned int bit = log_options[i].bit;
755     if ((bit & 0x80000000) != 0) continue;
756     if ((selector & bit) != 0)
757       {
758       *ptr++ = ' ';
759       Ustrcpy(ptr, log_options[i].name);
760       while (*ptr) ptr++;
761       }
762     }
763
764   sprintf(CS ptr, "%s%s%s%s\n  ",
765     ((flags & LOG_MAIN) != 0)?    " MAIN"   : "",
766     ((flags & LOG_PANIC) != 0)?   " PANIC"  : "",
767     ((flags & LOG_PANIC_DIE) == LOG_PANIC_DIE)? " DIE" : "",
768     ((flags & LOG_REJECT) != 0)?  " REJECT" : "");
769
770   while(*ptr) ptr++;
771   if ((flags & LOG_CONFIG) != 0) ptr = log_config_info(ptr, flags);
772
773   va_start(ap, format);
774   if (!string_vformat(ptr, LOG_BUFFER_SIZE - (ptr-log_buffer)-1, format, ap))
775     Ustrcpy(ptr, "**** log string overflowed log buffer ****");
776   va_end(ap);
777
778   while(*ptr) ptr++;
779   Ustrcat(ptr, "\n");
780   debug_printf("%s", log_buffer);
781   }
782
783 /* If no log file is specified, we are in a mess. */
784
785 if ((flags & (LOG_MAIN|LOG_PANIC|LOG_REJECT)) == 0)
786   log_write(0, LOG_MAIN|LOG_PANIC_DIE, "log_write called with no log "
787     "flags set");
788
789 /* There are some weird circumstances in which logging is disabled. */
790
791 if (disable_logging)
792   {
793   DEBUG(D_any) debug_printf("log writing disabled\n");
794   return;
795   }
796
797 /* Handle disabled reject log */
798
799 if (!write_rejectlog) flags &= ~LOG_REJECT;
800
801 /* Create the main message in the log buffer. Do not include the message id
802 when called by a utility. */
803
804 ptr = log_buffer;
805 sprintf(CS ptr, "%s ", tod_stamp(tod_log));
806 while(*ptr) ptr++;
807
808 if ((log_extra_selector & LX_pid) != 0)
809   {
810   sprintf(CS ptr, "[%d] ", (int)getpid());
811   while (*ptr) ptr++;
812   }
813
814 if (really_exim && message_id[0] != 0)
815   {
816   sprintf(CS ptr, "%s ", message_id);
817   while(*ptr) ptr++;
818   }
819
820 if ((flags & LOG_CONFIG) != 0) ptr = log_config_info(ptr, flags);
821
822 va_start(ap, format);
823 if (!string_vformat(ptr, LOG_BUFFER_SIZE - (ptr-log_buffer)-1, format, ap))
824   Ustrcpy(ptr, "**** log string overflowed log buffer ****\n");
825 while(*ptr) ptr++;
826 va_end(ap);
827
828 /* Add the raw, unrewritten, sender to the message if required. This is done
829 this way because it kind of fits with LOG_RECIPIENTS. */
830
831 if ((flags & LOG_SENDER) != 0 &&
832     ptr < log_buffer + LOG_BUFFER_SIZE - 10 - Ustrlen(raw_sender))
833   {
834   sprintf(CS ptr, " from <%s>", raw_sender);
835   while (*ptr) ptr++;
836   }
837
838 /* Add list of recipients to the message if required; the raw list,
839 before rewriting, was saved in raw_recipients. There may be none, if an ACL
840 discarded them all. */
841
842 if ((flags & LOG_RECIPIENTS) != 0 && ptr < log_buffer + LOG_BUFFER_SIZE - 6 &&
843      raw_recipients_count > 0)
844   {
845   int i;
846   sprintf(CS ptr, " for");
847   while (*ptr) ptr++;
848   for (i = 0; i < raw_recipients_count; i++)
849     {
850     uschar *s = raw_recipients[i];
851     if (log_buffer + LOG_BUFFER_SIZE - ptr < Ustrlen(s) + 3) break;
852     sprintf(CS ptr, " %s", s);
853     while (*ptr) ptr++;
854     }
855   }
856
857 sprintf(CS  ptr, "\n");
858 while(*ptr) ptr++;
859 length = ptr - log_buffer;
860
861 /* Handle loggable errors when running a utility, or when address testing.
862 Write to log_stderr unless debugging (when it will already have been written),
863 or unless there is no log_stderr (expn called from daemon, for example). */
864
865 if (!really_exim || log_testing_mode)
866   {
867   if (debug_selector == 0 && log_stderr != NULL &&
868       (selector == 0 || (selector & log_write_selector) != 0))
869     {
870     if (host_checking)
871       fprintf(log_stderr, "LOG: %s", CS(log_buffer + 20));  /* no timestamp */
872     else
873       fprintf(log_stderr, "%s", CS log_buffer);
874     }
875   if ((flags & LOG_PANIC_DIE) == LOG_PANIC_DIE) exim_exit(EXIT_FAILURE);
876   return;
877   }
878
879 /* Handle the main log. We know that either syslog or file logging (or both) is
880 set up. A real file gets left open during reception or delivery once it has
881 been opened, but we don't want to keep on writing to it for too long after it
882 has been renamed. Therefore, do a stat() and see if the inode has changed, and
883 if so, re-open. */
884
885 if ((flags & LOG_MAIN) != 0 &&
886     (selector == 0 || (selector & log_write_selector) != 0))
887   {
888   if ((logging_mode & LOG_MODE_SYSLOG) != 0 &&
889       (syslog_duplication || (flags & (LOG_REJECT|LOG_PANIC)) == 0))
890     write_syslog(LOG_INFO, log_buffer);
891
892   if ((logging_mode & LOG_MODE_FILE) != 0)
893     {
894     struct stat statbuf;
895
896     /* Check for a change to the mainlog file name when datestamping is in
897     operation. This happens at midnight, at which point we want to roll over
898     the file. Closing it has the desired effect. */
899
900     if (mainlog_datestamp != NULL)
901       {
902       uschar *nowstamp = tod_stamp(string_datestamp_type);
903       if (Ustrncmp (mainlog_datestamp, nowstamp, Ustrlen(nowstamp)) != 0)
904         {
905         (void)close(mainlogfd);       /* Close the file */
906         mainlogfd = -1;               /* Clear the file descriptor */
907         mainlog_inode = 0;            /* Unset the inode */
908         mainlog_datestamp = NULL;     /* Clear the datestamp */
909         }
910       }
911
912     /* Otherwise, we want to check whether the file has been renamed by a
913     cycling script. This could be "if else", but for safety's sake, leave it as
914     "if" so that renaming the log starts a new file even when datestamping is
915     happening. */
916
917     if (mainlogfd >= 0)
918       {
919       if (Ustat(mainlog_name, &statbuf) < 0 || statbuf.st_ino != mainlog_inode)
920         {
921         (void)close(mainlogfd);
922         mainlogfd = -1;
923         mainlog_inode = 0;
924         }
925       }
926
927     /* If the log is closed, open it. Then write the line. */
928
929     if (mainlogfd < 0)
930       {
931       open_log(&mainlogfd, lt_main, NULL);     /* No return on error */
932       if (fstat(mainlogfd, &statbuf) >= 0) mainlog_inode = statbuf.st_ino;
933       }
934
935     /* Failing to write to the log is disastrous */
936
937     written_len = write_to_fd_buf(mainlogfd, log_buffer, length);
938     if (written_len != length)
939       {
940       log_write_failed(US"main log", length, written_len);
941       /* That function does not return */
942       }
943     }
944   }
945
946 /* Handle the log for rejected messages. This can be globally disabled, in
947 which case the flags are altered above. If there are any header lines (i.e. if
948 the rejection is happening after the DATA phase), log the recipients and the
949 headers. */
950
951 if ((flags & LOG_REJECT) != 0)
952   {
953   header_line *h;
954
955   if (header_list != NULL && (log_extra_selector & LX_rejected_header) != 0)
956     {
957     if (recipients_count > 0)
958       {
959       int i;
960
961       /* List the sender */
962
963       string_format(ptr, LOG_BUFFER_SIZE - (ptr-log_buffer),
964         "Envelope-from: <%s>\n", sender_address);
965       while (*ptr) ptr++;
966
967       /* List up to 5 recipients */
968
969       string_format(ptr, LOG_BUFFER_SIZE - (ptr-log_buffer),
970         "Envelope-to: <%s>\n", recipients_list[0].address);
971       while (*ptr) ptr++;
972
973       for (i = 1; i < recipients_count && i < 5; i++)
974         {
975         string_format(ptr, LOG_BUFFER_SIZE - (ptr-log_buffer), "    <%s>\n",
976           recipients_list[i].address);
977         while (*ptr) ptr++;
978         }
979
980       if (i < recipients_count)
981         {
982         (void)string_format(ptr, LOG_BUFFER_SIZE - (ptr-log_buffer),
983           "    ...\n");
984         while (*ptr) ptr++;
985         }
986       }
987
988     /* A header with a NULL text is an unfilled in Received: header */
989
990     for (h = header_list; h != NULL; h = h->next)
991       {
992       BOOL fitted;
993       if (h->text == NULL) continue;
994       fitted = string_format(ptr, LOG_BUFFER_SIZE - (ptr-log_buffer),
995         "%c %s", h->type, h->text);
996       while(*ptr) ptr++;
997       if (!fitted)         /* Buffer is full; truncate */
998         {
999         ptr -= 100;        /* For message and separator */
1000         if (ptr[-1] == '\n') ptr--;
1001         Ustrcpy(ptr, "\n*** truncated ***\n");
1002         while (*ptr) ptr++;
1003         break;
1004         }
1005       }
1006
1007     length = ptr - log_buffer;
1008     }
1009
1010   /* Write to syslog or to a log file */
1011
1012   if ((logging_mode & LOG_MODE_SYSLOG) != 0 &&
1013       (syslog_duplication || (flags & LOG_PANIC) == 0))
1014     write_syslog(LOG_NOTICE, log_buffer);
1015
1016   /* Check for a change to the rejectlog file name when datestamping is in
1017   operation. This happens at midnight, at which point we want to roll over
1018   the file. Closing it has the desired effect. */
1019
1020   if ((logging_mode & LOG_MODE_FILE) != 0)
1021     {
1022     struct stat statbuf;
1023
1024     if (rejectlog_datestamp != NULL)
1025       {
1026       uschar *nowstamp = tod_stamp(string_datestamp_type);
1027       if (Ustrncmp (rejectlog_datestamp, nowstamp, Ustrlen(nowstamp)) != 0)
1028         {
1029         (void)close(rejectlogfd);       /* Close the file */
1030         rejectlogfd = -1;               /* Clear the file descriptor */
1031         rejectlog_inode = 0;            /* Unset the inode */
1032         rejectlog_datestamp = NULL;     /* Clear the datestamp */
1033         }
1034       }
1035
1036     /* Otherwise, we want to check whether the file has been renamed by a
1037     cycling script. This could be "if else", but for safety's sake, leave it as
1038     "if" so that renaming the log starts a new file even when datestamping is
1039     happening. */
1040
1041     if (rejectlogfd >= 0)
1042       {
1043       if (Ustat(rejectlog_name, &statbuf) < 0 ||
1044            statbuf.st_ino != rejectlog_inode)
1045         {
1046         (void)close(rejectlogfd);
1047         rejectlogfd = -1;
1048         rejectlog_inode = 0;
1049         }
1050       }
1051
1052     /* Open the file if necessary, and write the data */
1053
1054     if (rejectlogfd < 0)
1055       {
1056       open_log(&rejectlogfd, lt_reject, NULL); /* No return on error */
1057       if (fstat(rejectlogfd, &statbuf) >= 0) rejectlog_inode = statbuf.st_ino;
1058       }
1059
1060     written_len = write_to_fd_buf(rejectlogfd, log_buffer, length);
1061     if (written_len != length)
1062       {
1063       log_write_failed(US"reject log", length, written_len);
1064       /* That function does not return */
1065       }
1066     }
1067   }
1068
1069
1070 /* Handle the panic log, which is not kept open like the others. If it fails to
1071 open, there will be a recursive call to log_write(). We detect this above and
1072 attempt to write to the system log as a last-ditch try at telling somebody. In
1073 all cases except mua_wrapper, try to write to log_stderr. */
1074
1075 if ((flags & LOG_PANIC) != 0)
1076   {
1077   if (log_stderr != NULL && log_stderr != debug_file && !mua_wrapper)
1078     fprintf(log_stderr, "%s", CS log_buffer);
1079
1080   if ((logging_mode & LOG_MODE_SYSLOG) != 0)
1081     {
1082     write_syslog(LOG_ALERT, log_buffer);
1083     }
1084
1085   /* If this panic logging was caused by a failure to open the main log,
1086   the original log line is in panic_save_buffer. Make an attempt to write it. */
1087
1088   if ((logging_mode & LOG_MODE_FILE) != 0)
1089     {
1090     panic_recurseflag = TRUE;
1091     open_log(&paniclogfd, lt_panic, NULL);  /* Won't return on failure */
1092     panic_recurseflag = FALSE;
1093
1094     if (panic_save_buffer != NULL)
1095       {
1096       int i = write(paniclogfd, panic_save_buffer, Ustrlen(panic_save_buffer));
1097       i = i;    /* compiler quietening */
1098       }
1099
1100     written_len = write_to_fd_buf(paniclogfd, log_buffer, length);
1101     if (written_len != length)
1102       {
1103       int save_errno = errno;
1104       write_syslog(LOG_CRIT, log_buffer);
1105       sprintf(CS log_buffer, "write failed on panic log: length=%d result=%d "
1106         "errno=%d (%s)", length, (int)written_len, save_errno, strerror(save_errno));
1107       write_syslog(LOG_CRIT, log_buffer);
1108       flags |= LOG_PANIC_DIE;
1109       }
1110
1111     (void)close(paniclogfd);
1112     }
1113
1114   /* Give up if the DIE flag is set */
1115
1116   if ((flags & LOG_PANIC_DIE) != LOG_PANIC)
1117     die(NULL, US"Unexpected failure, please try later");
1118   }
1119 }
1120
1121
1122
1123 /*************************************************
1124 *            Close any open log files            *
1125 *************************************************/
1126
1127 void
1128 log_close_all(void)
1129 {
1130 if (mainlogfd >= 0)
1131   { (void)close(mainlogfd); mainlogfd = -1; }
1132 if (rejectlogfd >= 0)
1133   { (void)close(rejectlogfd); rejectlogfd = -1; }
1134 closelog();
1135 syslog_open = FALSE;
1136 }
1137
1138
1139
1140 /*************************************************
1141 *         Decode bit settings for log/debug      *
1142 *************************************************/
1143
1144 /* This function decodes a string containing bit settings in the form of +name
1145 and/or -name sequences, and sets/unsets bits in a bit string accordingly. It
1146 also recognizes a numeric setting of the form =<number>, but this is not
1147 intended for user use. It's an easy way for Exim to pass the debug settings
1148 when it is re-exec'ed.
1149
1150 The log options are held in two unsigned ints (because there became too many
1151 for one). The top bit in the table means "put in 2nd selector". This does not
1152 yet apply to debug options, so the "=" facility sets only the first selector.
1153
1154 The "all" selector, which must be equal to 0xffffffff, is recognized specially.
1155 It sets all the bits in both selectors. However, there is a facility for then
1156 unsetting certain bits, because we want to turn off "memory" in the debug case.
1157
1158 The action taken for bad values varies depending upon why we're here.
1159 For log messages, or if the debugging is triggered from config, then we write
1160 to the log on the way out.  For debug setting triggered from the command-line,
1161 we treat it as an unknown option: error message to stderr and die.
1162
1163 Arguments:
1164   selector1      address of the first bit string
1165   selector2      address of the second bit string, or NULL
1166   notall1        bits to exclude from "all" for selector1
1167   notall2        bits to exclude from "all" for selector2
1168   string         the configured string
1169   options        the table of option names
1170   count          size of table
1171   which          "log" or "debug"
1172   flags          DEBUG_FROM_CONFIG
1173
1174 Returns:         nothing on success - bomb out on failure
1175 */
1176
1177 void
1178 decode_bits(unsigned int *selector1, unsigned int *selector2, int notall1,
1179   int notall2, uschar *string, bit_table *options, int count, uschar *which,
1180   int flags)
1181 {
1182 uschar *errmsg;
1183 if (string == NULL) return;
1184
1185 if (*string == '=')
1186   {
1187   char *end;    /* Not uschar */
1188   *selector1 = strtoul(CS string+1, &end, 0);
1189   if (*end == 0) return;
1190   errmsg = string_sprintf("malformed numeric %s_selector setting: %s", which,
1191     string);
1192   goto ERROR_RETURN;
1193   }
1194
1195 /* Handle symbolic setting */
1196
1197 else for(;;)
1198   {
1199   BOOL adding;
1200   uschar *s;
1201   int len;
1202   bit_table *start, *end;
1203
1204   while (isspace(*string)) string++;
1205   if (*string == 0) return;
1206
1207   if (*string != '+' && *string != '-')
1208     {
1209     errmsg = string_sprintf("malformed %s_selector setting: "
1210       "+ or - expected but found \"%s\"", which, string);
1211     goto ERROR_RETURN;
1212     }
1213
1214   adding = *string++ == '+';
1215   s = string;
1216   while (isalnum(*string) || *string == '_') string++;
1217   len = string - s;
1218
1219   start = options;
1220   end = options + count;
1221
1222   while (start < end)
1223     {
1224     bit_table *middle = start + (end - start)/2;
1225     int c = Ustrncmp(s, middle->name, len);
1226     if (c == 0)
1227       {
1228       if (middle->name[len] != 0) c = -1; else
1229         {
1230         unsigned int bit = middle->bit;
1231         unsigned int *selector;
1232
1233         /* The value with all bits set means "force all bits in both selectors"
1234         in the case where two are being handled. However, the top bit in the
1235         second selector is never set. When setting, some bits can be excluded.
1236         */
1237
1238         if (bit == 0xffffffff)
1239           {
1240           if (adding)
1241             {
1242             *selector1 = 0xffffffff ^ notall1;
1243             if (selector2 != NULL) *selector2 = 0x7fffffff ^ notall2;
1244             }
1245           else
1246             {
1247             *selector1 = 0;
1248             if (selector2 != NULL) *selector2 = 0;
1249             }
1250           }
1251
1252         /* Otherwise, the 0x80000000 bit means "this value, without the top
1253         bit, belongs in the second selector". */
1254
1255         else
1256           {
1257           if ((bit & 0x80000000) != 0)
1258             {
1259             selector = selector2;
1260             bit &= 0x7fffffff;
1261             }
1262           else selector = selector1;
1263           if (adding) *selector |= bit; else *selector &= ~bit;
1264           }
1265         break;  /* Out of loop to match selector name */
1266         }
1267       }
1268     if (c < 0) end = middle; else start = middle + 1;
1269     }  /* Loop to match selector name */
1270
1271   if (start >= end)
1272     {
1273     errmsg = string_sprintf("unknown %s_selector setting: %c%.*s", which,
1274       adding? '+' : '-', len, s);
1275     goto ERROR_RETURN;
1276     }
1277   }    /* Loop for selector names */
1278
1279 /* Handle disasters */
1280
1281 ERROR_RETURN:
1282 if (Ustrcmp(which, "debug") == 0)
1283   {
1284   if (flags & DEBUG_FROM_CONFIG)
1285     {
1286     log_write(0, LOG_CONFIG|LOG_PANIC, "%s", errmsg);
1287     return;
1288     }
1289   fprintf(stderr, "exim: %s\n", errmsg);
1290   exit(EXIT_FAILURE);
1291   }
1292 else log_write(0, LOG_CONFIG|LOG_PANIC_DIE, "%s", errmsg);
1293 }
1294
1295
1296
1297 /*************************************************
1298 *        Activate a debug logfile (late)         *
1299 *************************************************/
1300
1301 /* Normally, debugging is activated from the command-line; it may be useful
1302 within the configuration to activate debugging later, based on certain
1303 conditions.  If debugging is already in progress, we return early, no action
1304 taken (besides debug-logging that we wanted debug-logging).
1305
1306 Failures in options are not fatal but will result in paniclog entries for the
1307 misconfiguration.
1308
1309 The first use of this is in ACL logic, "control = debug/tag=foo/opts=+expand"
1310 which can be combined with conditions, etc, to activate extra logging only
1311 for certain sources. The second use is inetd wait mode debug preservation. */
1312
1313 void
1314 debug_logging_activate(uschar *tag_name, uschar *opts)
1315 {
1316 int fd = -1;
1317
1318 if (debug_file)
1319   {
1320   debug_printf("DEBUGGING ACTIVATED FROM WITHIN CONFIG.\n"
1321       "DEBUG: Tag=\"%s\" Opts=\"%s\"\n", tag_name, opts ? opts : US"");
1322   return;
1323   }
1324
1325 if (tag_name != NULL && (Ustrchr(tag_name, '/') != NULL))
1326   {
1327   log_write(0, LOG_MAIN|LOG_PANIC, "debug tag may not contain a '/' in: %s",
1328       tag_name);
1329   return;
1330   }
1331
1332 debug_selector = D_default;
1333 if (opts)
1334   {
1335   decode_bits(&debug_selector, NULL, D_memory, 0, opts,
1336       debug_options, debug_options_count, US"debug", DEBUG_FROM_CONFIG);
1337   }
1338
1339 open_log(&fd, lt_debug, tag_name);
1340
1341 if (fd != -1)
1342   debug_file = fdopen(fd, "w");
1343 else
1344   log_write(0, LOG_MAIN|LOG_PANIC, "unable to open debug log");
1345 }
1346
1347
1348 /* End of log.c */