X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/059ec3d9952740285fb1ebf47961b8aca2eb1b4a..fca5cb18a75fef98293e4afdc1d5fcad45230818:/src/src/debug.c diff --git a/src/src/debug.c b/src/src/debug.c index 3128b545f..f6c8b2f62 100644 --- a/src/src/debug.c +++ b/src/src/debug.c @@ -1,16 +1,14 @@ -/* $Cambridge: exim/src/src/debug.c,v 1.1 2004/10/07 10:39:01 ph10 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2004 */ +/* Copyright (c) University of Cambridge 1995 - 2015 */ /* See the file NOTICE for conditions of use and distribution. */ #include "exim.h" -static uschar debug_buffer[1024]; +static uschar debug_buffer[2048]; static uschar *debug_ptr = debug_buffer; static int debug_prefix_length = 0; @@ -32,7 +30,7 @@ static uschar tree_printline[tree_printlinesize]; Arguments: p tree node - pos amount of indenting & vertical bars to pring + pos amount of indenting & vertical bars to print barswitch if TRUE print | at the pos value Returns: nothing @@ -77,7 +75,7 @@ Returns: nothing */ void -debug_print_argv(uschar **argv) +debug_print_argv(const uschar ** argv) { debug_printf("exec"); while (*argv != NULL) debug_printf(" %.256s", *argv++); @@ -139,43 +137,66 @@ debug_printf("%s uid=%ld gid=%ld euid=%ld egid=%ld\n", s, *************************************************/ /* There are two entries, one for use when being called directly from a -function with a variable argument list. +function with a variable argument list, one for prepending an indent. If debug_pid is nonzero, print the pid at the start of each line. This is for tidier output when running parallel remote deliveries with debugging turned on. Must do the whole thing with a single printf and flush, as otherwise output may get interleaved. Since some calls to debug_printf() don't end with newline, -we save up the text until we do get the newline. */ +we save up the text until we do get the newline. +Take care to not disturb errno. */ + +/* Debug printf indented by ACL nest depth */ void -debug_printf(char *format, ...) +debug_printf_indent(const char * format, ...) { va_list ap; va_start(ap, format); -debug_vprintf(format, ap); +debug_vprintf(acl_level + expand_level, format, ap); va_end(ap); } void -debug_vprintf(char *format, va_list ap) +debug_printf(const char *format, ...) { -if (debug_file == NULL) return; +va_list ap; +va_start(ap, format); +debug_vprintf(0, format, ap); +va_end(ap); +} -/* Various things can be inserted at the start of a line. */ +void +debug_vprintf(int indent, const char *format, va_list ap) +{ +int save_errno = errno; + +if (!debug_file) return; + +/* Various things can be inserted at the start of a line. Don't use the +tod_stamp() function for the timestamp, because that will overwrite the +timestamp buffer, which may contain something useful. (This was a bug fix: the ++memory debugging with +timestamp did cause a problem.) */ if (debug_ptr == debug_buffer) { DEBUG(D_timestamp) { - uschar *ts = tod_stamp(tod_log_bare); - sprintf(CS debug_ptr, "%s ", ts + 11); - while(*debug_ptr != 0) debug_ptr++; + struct timeval now; + time_t tmp; + struct tm * t; + + gettimeofday(&now, NULL); + tmp = now.tv_sec; + t = timestamps_utc ? gmtime(&now) : localtime(&now); + debug_ptr += sprintf(CS debug_ptr, + LOGGING(millisec) ? "%02d:%02d:%02d.%03d " : "%02d:%02d:%02d ", + t->tm_hour, t->tm_min, t->tm_sec, now.tv_usec/1000); } DEBUG(D_pid) { - sprintf(CS debug_ptr, "%5d ", (int)getpid()); - while(*debug_ptr != 0) debug_ptr++; + debug_ptr += sprintf(CS debug_ptr, "%5d ", (int)getpid()); } /* Set up prefix if outputting for host checking and not debugging */ @@ -189,6 +210,20 @@ if (debug_ptr == debug_buffer) debug_prefix_length = debug_ptr - debug_buffer; } +if (indent > 0) + { + int i; + for (i = indent >> 2; i > 0; i--) + { + Ustrcpy(debug_ptr, " " UTF8_VERT_2DASH); + debug_ptr += 6; /* 3 spaces + 3 UTF-8 octets */ + debug_prefix_length += 6; + } + Ustrncpy(debug_ptr, " ", indent &= 3); + debug_ptr += indent; + debug_prefix_length += indent; + } + /* Use the checked formatting routine to ensure that the buffer does not overflow. Ensure there's space for a newline at the end. */ @@ -232,6 +267,7 @@ if (debug_ptr[-1] == '\n') debug_ptr = debug_buffer; debug_prefix_length = 0; } +errno = save_errno; } /* End of debug.c */