ldb: version 1.5.2
[Samba.git] / lib / util / debug.c
blob30e5a28a23384350e9b5e93a664e465ff48eb120
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Elrond 2002
6 Copyright (C) Simo Sorce 2002
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "replace.h"
23 #include <talloc.h>
24 #include "system/filesys.h"
25 #include "system/syslog.h"
26 #include "system/locale.h"
27 #include "time_basic.h"
28 #include "close_low_fd.h"
29 #include "memory.h"
30 #include "util_strlist.h" /* LIST_SEP */
31 #include "blocking.h"
32 #include "debug.h"
34 /* define what facility to use for syslog */
35 #ifndef SYSLOG_FACILITY
36 #define SYSLOG_FACILITY LOG_DAEMON
37 #endif
39 /* -------------------------------------------------------------------------- **
40 * Defines...
44 * format_bufr[FORMAT_BUFR_SIZE - 1] should always be reserved
45 * for a terminating null byte.
47 #define FORMAT_BUFR_SIZE 1024
49 /* -------------------------------------------------------------------------- **
50 * This module implements Samba's debugging utility.
52 * The syntax of a debugging log file is represented as:
54 * <debugfile> :== { <debugmsg> }
56 * <debugmsg> :== <debughdr> '\n' <debugtext>
58 * <debughdr> :== '[' TIME ',' LEVEL ']' [ [FILENAME ':'] [FUNCTION '()'] ]
60 * <debugtext> :== { <debugline> }
62 * <debugline> :== TEXT '\n'
64 * TEXT is a string of characters excluding the newline character.
65 * LEVEL is the DEBUG level of the message (an integer in the range 0..10).
66 * TIME is a timestamp.
67 * FILENAME is the name of the file from which the debug message was generated.
68 * FUNCTION is the function from which the debug message was generated.
70 * Basically, what that all means is:
72 * - A debugging log file is made up of debug messages.
74 * - Each debug message is made up of a header and text. The header is
75 * separated from the text by a newline.
77 * - The header begins with the timestamp and debug level of the message
78 * enclosed in brackets. The filename and function from which the
79 * message was generated may follow. The filename is terminated by a
80 * colon, and the function name is terminated by parenthesis.
82 * - The message text is made up of zero or more lines, each terminated by
83 * a newline.
86 /* state variables for the debug system */
87 static struct {
88 bool initialized;
89 enum debug_logtype logtype; /* The type of logging we are doing: eg stdout, file, stderr */
90 const char *prog_name;
91 bool reopening_logs;
92 bool schedule_reopen_logs;
94 struct debug_settings settings;
95 debug_callback_fn callback;
96 void *callback_private;
97 } state = {
98 .settings = {
99 .timestamp_logs = true
103 struct debug_class {
105 * The debug loglevel of the class.
107 int loglevel;
110 * An optional class specific logfile, may be NULL in which case the
111 * "global" logfile is used and fd is -1.
113 char *logfile;
114 int fd;
117 static const char *default_classname_table[] = {
118 [DBGC_ALL] = "all",
119 [DBGC_TDB] = "tdb",
120 [DBGC_PRINTDRIVERS] = "printdrivers",
121 [DBGC_LANMAN] = "lanman",
122 [DBGC_SMB] = "smb",
123 [DBGC_RPC_PARSE] = "rpc_parse",
124 [DBGC_RPC_SRV] = "rpc_srv",
125 [DBGC_RPC_CLI] = "rpc_cli",
126 [DBGC_PASSDB] = "passdb",
127 [DBGC_SAM] = "sam",
128 [DBGC_AUTH] = "auth",
129 [DBGC_WINBIND] = "winbind",
130 [DBGC_VFS] = "vfs",
131 [DBGC_IDMAP] = "idmap",
132 [DBGC_QUOTA] = "quota",
133 [DBGC_ACLS] = "acls",
134 [DBGC_LOCKING] = "locking",
135 [DBGC_MSDFS] = "msdfs",
136 [DBGC_DMAPI] = "dmapi",
137 [DBGC_REGISTRY] = "registry",
138 [DBGC_SCAVENGER] = "scavenger",
139 [DBGC_DNS] = "dns",
140 [DBGC_LDB] = "ldb",
141 [DBGC_TEVENT] = "tevent",
142 [DBGC_AUTH_AUDIT] = "auth_audit",
143 [DBGC_AUTH_AUDIT_JSON] = "auth_json_audit",
144 [DBGC_KERBEROS] = "kerberos",
145 [DBGC_DRS_REPL] = "drs_repl",
146 [DBGC_SMB2] = "smb2",
147 [DBGC_SMB2_CREDITS] = "smb2_credits",
148 [DBGC_DSDB_AUDIT] = "dsdb_audit",
149 [DBGC_DSDB_AUDIT_JSON] = "dsdb_json_audit",
150 [DBGC_DSDB_PWD_AUDIT] = "dsdb_password_audit",
151 [DBGC_DSDB_PWD_AUDIT_JSON] = "dsdb_password_json_audit",
152 [DBGC_DSDB_TXN_AUDIT] = "dsdb_transaction_audit",
153 [DBGC_DSDB_TXN_AUDIT_JSON] = "dsdb_transaction_json_audit",
154 [DBGC_DSDB_GROUP_AUDIT] = "dsdb_group_audit",
155 [DBGC_DSDB_GROUP_AUDIT_JSON] = "dsdb_group_json_audit",
159 * This is to allow reading of dbgc_config before the debug
160 * system has been initialized.
162 static struct debug_class debug_class_list_initial[ARRAY_SIZE(default_classname_table)] = {
163 [DBGC_ALL] = (struct debug_class) { .fd = 2 },
166 static size_t debug_num_classes = 0;
167 static struct debug_class *dbgc_config = debug_class_list_initial;
169 static int current_msg_level = 0;
170 static int current_msg_class = 0;
172 #if defined(WITH_SYSLOG) || defined(HAVE_LIBSYSTEMD_JOURNAL) || defined(HAVE_LIBSYSTEMD)
173 static int debug_level_to_priority(int level)
176 * map debug levels to syslog() priorities
178 static const int priority_map[] = {
179 LOG_ERR, /* 0 */
180 LOG_WARNING, /* 1 */
181 LOG_NOTICE, /* 2 */
182 LOG_NOTICE, /* 3 */
183 LOG_NOTICE, /* 4 */
184 LOG_NOTICE, /* 5 */
185 LOG_INFO, /* 6 */
186 LOG_INFO, /* 7 */
187 LOG_INFO, /* 8 */
188 LOG_INFO, /* 9 */
190 int priority;
192 if( level >= ARRAY_SIZE(priority_map) || level < 0)
193 priority = LOG_DEBUG;
194 else
195 priority = priority_map[level];
197 return priority;
199 #endif
201 /* -------------------------------------------------------------------------- **
202 * Debug backends. When logging to DEBUG_FILE, send the log entries to
203 * all active backends.
206 static void debug_file_log(int msg_level,
207 const char *msg, const char *msg_no_nl)
209 ssize_t ret;
210 int fd;
212 check_log_size();
214 if (dbgc_config[current_msg_class].fd != -1) {
215 fd = dbgc_config[current_msg_class].fd;
216 } else {
217 fd = dbgc_config[DBGC_ALL].fd;
220 do {
221 ret = write(fd, msg, strlen(msg));
222 } while (ret == -1 && errno == EINTR);
225 #ifdef WITH_SYSLOG
226 static void debug_syslog_reload(bool enabled, bool previously_enabled,
227 const char *prog_name, char *option)
229 if (enabled && !previously_enabled) {
230 #ifdef LOG_DAEMON
231 openlog(prog_name, LOG_PID, SYSLOG_FACILITY);
232 #else
233 /* for old systems that have no facility codes. */
234 openlog(prog_name, LOG_PID );
235 #endif
236 return;
239 if (!enabled && previously_enabled) {
240 closelog();
244 static void debug_syslog_log(int msg_level,
245 const char *msg, const char *msg_no_nl)
247 int priority;
249 priority = debug_level_to_priority(msg_level);
252 * Specify the facility to interoperate with other syslog
253 * callers (vfs_full_audit for example).
255 priority |= SYSLOG_FACILITY;
257 syslog(priority, "%s", msg);
259 #endif /* WITH_SYSLOG */
261 #if defined(HAVE_LIBSYSTEMD_JOURNAL) || defined(HAVE_LIBSYSTEMD)
262 #include <systemd/sd-journal.h>
263 static void debug_systemd_log(int msg_level,
264 const char *msg, const char *msg_no_nl)
266 sd_journal_send("MESSAGE=%s", msg_no_nl,
267 "PRIORITY=%d", debug_level_to_priority(msg_level),
268 "LEVEL=%d", msg_level,
269 NULL);
271 #endif
273 #ifdef HAVE_LTTNG_TRACEF
274 #include <lttng/tracef.h>
275 static void debug_lttng_log(int msg_level,
276 const char *msg, const char *msg_no_nl)
278 tracef(msg_no_nl);
280 #endif /* WITH_LTTNG_TRACEF */
282 #ifdef HAVE_GPFS
283 #include "gpfswrap.h"
284 static void debug_gpfs_reload(bool enabled, bool previously_enabled,
285 const char *prog_name, char *option)
287 gpfswrap_init();
289 if (enabled && !previously_enabled) {
290 gpfswrap_init_trace();
291 return;
294 if (!enabled && previously_enabled) {
295 gpfswrap_fini_trace();
296 return;
299 if (enabled) {
301 * Trigger GPFS library to adjust state if necessary.
303 gpfswrap_query_trace();
307 static void debug_gpfs_log(int msg_level,
308 const char *msg, const char *msg_no_nl)
310 gpfswrap_add_trace(msg_level, msg_no_nl);
312 #endif /* HAVE_GPFS */
314 #define DEBUG_RINGBUF_SIZE (1024 * 1024)
315 #define DEBUG_RINGBUF_SIZE_OPT "size="
317 static char *debug_ringbuf;
318 static size_t debug_ringbuf_size;
319 static size_t debug_ringbuf_ofs;
321 /* We ensure in debug_ringbuf_log() that this is always \0 terminated */
322 char *debug_get_ringbuf(void)
324 return debug_ringbuf;
327 /* Return the size of the ringbuf (including a \0 terminator) */
328 size_t debug_get_ringbuf_size(void)
330 return debug_ringbuf_size;
333 static void debug_ringbuf_reload(bool enabled, bool previously_enabled,
334 const char *prog_name, char *option)
336 bool cmp;
337 size_t optlen = strlen(DEBUG_RINGBUF_SIZE_OPT);
339 debug_ringbuf_size = DEBUG_RINGBUF_SIZE;
340 debug_ringbuf_ofs = 0;
342 SAFE_FREE(debug_ringbuf);
344 if (!enabled) {
345 return;
348 if (option != NULL) {
349 cmp = strncmp(option, DEBUG_RINGBUF_SIZE_OPT, optlen);
350 if (cmp == 0) {
351 debug_ringbuf_size = (size_t)strtoull(
352 option + optlen, NULL, 10);
356 debug_ringbuf = calloc(debug_ringbuf_size, sizeof(char));
357 if (debug_ringbuf == NULL) {
358 return;
362 static void debug_ringbuf_log(int msg_level,
363 const char *msg,
364 const char *msg_no_nl)
366 size_t msglen = strlen(msg);
367 size_t allowed_size;
369 if (debug_ringbuf == NULL) {
370 return;
373 /* Ensure the buffer is always \0 terminated */
374 allowed_size = debug_ringbuf_size - 1;
376 if (msglen > allowed_size) {
377 return;
380 if ((debug_ringbuf_ofs + msglen) < debug_ringbuf_ofs) {
381 return;
384 if ((debug_ringbuf_ofs + msglen) > allowed_size) {
385 debug_ringbuf_ofs = 0;
388 memcpy(debug_ringbuf + debug_ringbuf_ofs, msg, msglen);
389 debug_ringbuf_ofs += msglen;
392 static struct debug_backend {
393 const char *name;
394 int log_level;
395 int new_log_level;
396 void (*reload)(bool enabled, bool prev_enabled,
397 const char *prog_name, char *option);
398 void (*log)(int msg_level, const char *msg, const char *msg_no_nl);
399 char *option;
400 } debug_backends[] = {
402 .name = "file",
403 .log = debug_file_log,
405 #ifdef WITH_SYSLOG
407 .name = "syslog",
408 .reload = debug_syslog_reload,
409 .log = debug_syslog_log,
411 #endif
413 #if defined(HAVE_LIBSYSTEMD_JOURNAL) || defined(HAVE_LIBSYSTEMD)
415 .name = "systemd",
416 .log = debug_systemd_log,
418 #endif
420 #ifdef HAVE_LTTNG_TRACEF
422 .name = "lttng",
423 .log = debug_lttng_log,
425 #endif
427 #ifdef HAVE_GPFS
429 .name = "gpfs",
430 .reload = debug_gpfs_reload,
431 .log = debug_gpfs_log,
433 #endif
435 .name = "ringbuf",
436 .log = debug_ringbuf_log,
437 .reload = debug_ringbuf_reload,
441 static struct debug_backend *debug_find_backend(const char *name)
443 unsigned i;
445 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
446 if (strcmp(name, debug_backends[i].name) == 0) {
447 return &debug_backends[i];
451 return NULL;
455 * parse "backend[:option][@loglevel]
457 static void debug_backend_parse_token(char *tok)
459 char *backend_name_option, *backend_name,*backend_level, *saveptr;
460 char *backend_option;
461 struct debug_backend *b;
464 * First parse into backend[:option] and loglevel
466 backend_name_option = strtok_r(tok, "@\0", &saveptr);
467 if (backend_name_option == NULL) {
468 return;
471 backend_level = strtok_r(NULL, "\0", &saveptr);
474 * Now parse backend[:option]
476 backend_name = strtok_r(backend_name_option, ":\0", &saveptr);
477 if (backend_name == NULL) {
478 return;
481 backend_option = strtok_r(NULL, "\0", &saveptr);
484 * Find and update backend
486 b = debug_find_backend(backend_name);
487 if (b == NULL) {
488 return;
491 if (backend_level == NULL) {
492 b->new_log_level = MAX_DEBUG_LEVEL;
493 } else {
494 b->new_log_level = atoi(backend_level);
497 if (backend_option != NULL) {
498 b->option = strdup(backend_option);
499 if (b->option == NULL) {
500 return;
506 * parse "backend1[:option1][@loglevel1] backend2[option2][@loglevel2] ... "
507 * and enable/disable backends accordingly
509 static void debug_set_backends(const char *param)
511 size_t str_len = strlen(param);
512 char str[str_len+1];
513 char *tok, *saveptr;
514 unsigned i;
517 * initialize new_log_level to detect backends that have been
518 * disabled
520 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
521 SAFE_FREE(debug_backends[i].option);
522 debug_backends[i].new_log_level = -1;
525 memcpy(str, param, str_len + 1);
527 tok = strtok_r(str, LIST_SEP, &saveptr);
528 if (tok == NULL) {
529 return;
532 while (tok != NULL) {
533 debug_backend_parse_token(tok);
534 tok = strtok_r(NULL, LIST_SEP, &saveptr);
538 * Let backends react to config changes
540 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
541 struct debug_backend *b = &debug_backends[i];
543 if (b->reload) {
544 bool enabled = b->new_log_level > -1;
545 bool previously_enabled = b->log_level > -1;
547 b->reload(enabled, previously_enabled, state.prog_name,
548 b->option);
550 b->log_level = b->new_log_level;
554 static void debug_backends_log(const char *msg, int msg_level)
556 char msg_no_nl[FORMAT_BUFR_SIZE];
557 size_t i;
558 size_t len;
561 * Some backends already add an extra newline, so also provide
562 * a buffer without the newline character.
564 len = MIN(strlen(msg), FORMAT_BUFR_SIZE - 1);
565 if ((len > 0) && (msg[len - 1] == '\n')) {
566 len--;
569 memcpy(msg_no_nl, msg, len);
570 msg_no_nl[len] = '\0';
572 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
573 if (msg_level <= debug_backends[i].log_level) {
574 debug_backends[i].log(msg_level, msg, msg_no_nl);
579 /* -------------------------------------------------------------------------- **
580 * External variables.
584 used to check if the user specified a
585 logfile on the command line
587 bool override_logfile;
589 int debuglevel_get_class(size_t idx)
591 return dbgc_config[idx].loglevel;
594 void debuglevel_set_class(size_t idx, int level)
596 dbgc_config[idx].loglevel = level;
600 /* -------------------------------------------------------------------------- **
601 * Internal variables.
603 * debug_count - Number of debug messages that have been output.
604 * Used to check log size.
606 * current_msg_level - Internal copy of the message debug level. Written by
607 * dbghdr() and read by Debug1().
609 * format_bufr - Used to format debug messages. The dbgtext() function
610 * prints debug messages to a string, and then passes the
611 * string to format_debug_text(), which uses format_bufr
612 * to build the formatted output.
614 * format_pos - Marks the first free byte of the format_bufr.
617 * log_overflow - When this variable is true, never attempt to check the
618 * size of the log. This is a hack, so that we can write
619 * a message using DEBUG, from open_logs() when we
620 * are unable to open a new log file for some reason.
623 static int debug_count = 0;
624 static char format_bufr[FORMAT_BUFR_SIZE];
625 static size_t format_pos = 0;
626 static bool log_overflow = false;
629 * Define all the debug class selection names here. Names *MUST NOT* contain
630 * white space. There must be one name for each DBGC_<class name>, and they
631 * must be in the table in the order of DBGC_<class name>..
634 static char **classname_table = NULL;
637 /* -------------------------------------------------------------------------- **
638 * Functions...
641 static void debug_init(void);
643 /***************************************************************************
644 Free memory pointed to by global pointers.
645 ****************************************************************************/
647 void gfree_debugsyms(void)
649 unsigned i;
651 TALLOC_FREE(classname_table);
653 if ( dbgc_config != debug_class_list_initial ) {
654 TALLOC_FREE( dbgc_config );
655 dbgc_config = discard_const_p(struct debug_class,
656 debug_class_list_initial);
659 debug_num_classes = 0;
661 state.initialized = false;
663 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
664 SAFE_FREE(debug_backends[i].option);
668 /****************************************************************************
669 utility lists registered debug class names's
670 ****************************************************************************/
672 char *debug_list_class_names_and_levels(void)
674 char *buf = NULL;
675 size_t i;
676 /* prepare strings */
677 for (i = 0; i < debug_num_classes; i++) {
678 buf = talloc_asprintf_append(buf,
679 "%s:%d%s",
680 classname_table[i],
681 dbgc_config[i].loglevel,
682 i == (debug_num_classes - 1) ? "\n" : " ");
683 if (buf == NULL) {
684 return NULL;
687 return buf;
690 /****************************************************************************
691 Utility to translate names to debug class index's (internal version).
692 ****************************************************************************/
694 static int debug_lookup_classname_int(const char* classname)
696 size_t i;
698 if (!classname) return -1;
700 for (i=0; i < debug_num_classes; i++) {
701 if (strcmp(classname, classname_table[i])==0)
702 return i;
704 return -1;
707 /****************************************************************************
708 Add a new debug class to the system.
709 ****************************************************************************/
711 int debug_add_class(const char *classname)
713 int ndx;
714 struct debug_class *new_class_list = NULL;
715 char **new_name_list;
716 int default_level;
718 if (classname == NULL) {
719 return -1;
722 /* check the init has yet been called */
723 debug_init();
725 ndx = debug_lookup_classname_int(classname);
726 if (ndx >= 0) {
727 return ndx;
729 ndx = debug_num_classes;
731 if (dbgc_config == debug_class_list_initial) {
732 /* Initial loading... */
733 new_class_list = NULL;
734 } else {
735 new_class_list = dbgc_config;
738 default_level = dbgc_config[DBGC_ALL].loglevel;
740 new_class_list = talloc_realloc(NULL,
741 new_class_list,
742 struct debug_class,
743 ndx + 1);
744 if (new_class_list == NULL) {
745 return -1;
748 dbgc_config = new_class_list;
750 dbgc_config[ndx] = (struct debug_class) {
751 .loglevel = default_level,
752 .fd = -1,
755 new_name_list = talloc_realloc(NULL, classname_table, char *, ndx + 1);
756 if (new_name_list == NULL) {
757 return -1;
759 classname_table = new_name_list;
761 classname_table[ndx] = talloc_strdup(classname_table, classname);
762 if (classname_table[ndx] == NULL) {
763 return -1;
766 debug_num_classes = ndx + 1;
768 return ndx;
771 /****************************************************************************
772 Utility to translate names to debug class index's (public version).
773 ****************************************************************************/
775 static int debug_lookup_classname(const char *classname)
777 int ndx;
779 if (!classname || !*classname)
780 return -1;
782 ndx = debug_lookup_classname_int(classname);
784 if (ndx != -1)
785 return ndx;
787 DEBUG(0, ("debug_lookup_classname(%s): Unknown class\n",
788 classname));
789 return debug_add_class(classname);
792 /****************************************************************************
793 Dump the current registered debug levels.
794 ****************************************************************************/
796 static void debug_dump_status(int level)
798 size_t q;
800 DEBUG(level, ("INFO: Current debug levels:\n"));
801 for (q = 0; q < debug_num_classes; q++) {
802 const char *classname = classname_table[q];
803 DEBUGADD(level, (" %s: %d\n",
804 classname,
805 dbgc_config[q].loglevel));
809 static bool debug_parse_param(char *param)
811 char *class_name;
812 char *class_file = NULL;
813 char *class_level;
814 char *saveptr = NULL;
815 int ndx;
817 class_name = strtok_r(param, ":", &saveptr);
818 if (class_name == NULL) {
819 return false;
822 class_level = strtok_r(NULL, "@\0", &saveptr);
823 if (class_level == NULL) {
824 return false;
827 class_file = strtok_r(NULL, "\0", &saveptr);
829 ndx = debug_lookup_classname(class_name);
830 if (ndx == -1) {
831 return false;
834 dbgc_config[ndx].loglevel = atoi(class_level);
836 if (class_file == NULL) {
837 return true;
840 TALLOC_FREE(dbgc_config[ndx].logfile);
842 dbgc_config[ndx].logfile = talloc_strdup(NULL, class_file);
843 if (dbgc_config[ndx].logfile == NULL) {
844 return false;
846 return true;
849 /****************************************************************************
850 Parse the debug levels from smb.conf. Example debug level string:
851 3 tdb:5 printdrivers:7
852 Note: the 1st param has no "name:" preceeding it.
853 ****************************************************************************/
855 bool debug_parse_levels(const char *params_str)
857 size_t str_len = strlen(params_str);
858 char str[str_len+1];
859 char *tok, *saveptr;
860 size_t i;
862 /* Just in case */
863 debug_init();
865 memcpy(str, params_str, str_len+1);
867 tok = strtok_r(str, LIST_SEP, &saveptr);
868 if (tok == NULL) {
869 return true;
872 /* Allow DBGC_ALL to be specified w/o requiring its class name e.g."10"
873 * v.s. "all:10", this is the traditional way to set DEBUGLEVEL
875 if (isdigit(tok[0])) {
876 dbgc_config[DBGC_ALL].loglevel = atoi(tok);
877 tok = strtok_r(NULL, LIST_SEP, &saveptr);
878 } else {
879 dbgc_config[DBGC_ALL].loglevel = 0;
882 /* Array is debug_num_classes long */
883 for (i = DBGC_ALL+1; i < debug_num_classes; i++) {
884 dbgc_config[i].loglevel = dbgc_config[DBGC_ALL].loglevel;
885 TALLOC_FREE(dbgc_config[i].logfile);
888 while (tok != NULL) {
889 bool ok;
891 ok = debug_parse_param(tok);
892 if (!ok) {
893 DEBUG(0,("debug_parse_params: unrecognized debug "
894 "class name or format [%s]\n", tok));
895 return false;
898 tok = strtok_r(NULL, LIST_SEP, &saveptr);
901 debug_dump_status(5);
903 return true;
906 /* setup for logging of talloc warnings */
907 static void talloc_log_fn(const char *msg)
909 DEBUG(0,("%s", msg));
912 void debug_setup_talloc_log(void)
914 talloc_set_log_fn(talloc_log_fn);
918 /****************************************************************************
919 Init debugging (one time stuff)
920 ****************************************************************************/
922 static void debug_init(void)
924 size_t i;
926 if (state.initialized)
927 return;
929 state.initialized = true;
931 debug_setup_talloc_log();
933 for (i = 0; i < ARRAY_SIZE(default_classname_table); i++) {
934 debug_add_class(default_classname_table[i]);
936 dbgc_config[DBGC_ALL].fd = 2;
938 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
939 debug_backends[i].log_level = -1;
940 debug_backends[i].new_log_level = -1;
944 void debug_set_settings(struct debug_settings *settings,
945 const char *logging_param,
946 int syslog_level, bool syslog_only)
948 char fake_param[256];
949 size_t len = 0;
952 * This forces in some smb.conf derived values into the debug
953 * system. There are no pointers in this structure, so we can
954 * just structure-assign it in
956 state.settings = *settings;
959 * If 'logging' is not set, create backend settings from
960 * deprecated 'syslog' and 'syslog only' parameters
962 if (logging_param != NULL) {
963 len = strlen(logging_param);
965 if (len == 0) {
966 if (syslog_only) {
967 snprintf(fake_param, sizeof(fake_param),
968 "syslog@%d", syslog_level - 1);
969 } else {
970 snprintf(fake_param, sizeof(fake_param),
971 "syslog@%d file@%d", syslog_level -1,
972 MAX_DEBUG_LEVEL);
975 logging_param = fake_param;
978 debug_set_backends(logging_param);
982 control the name of the logfile and whether logging will be to stdout, stderr
983 or a file, and set up syslog
985 new_log indicates the destination for the debug log (an enum in
986 order of precedence - once set to DEBUG_FILE, it is not possible to
987 reset to DEBUG_STDOUT for example. This makes it easy to override
988 for debug to stderr on the command line, as the smb.conf cannot
989 reset it back to file-based logging
991 void setup_logging(const char *prog_name, enum debug_logtype new_logtype)
993 debug_init();
994 if (state.logtype < new_logtype) {
995 state.logtype = new_logtype;
997 if (prog_name) {
998 const char *p = strrchr(prog_name, '/');
1000 if (p) {
1001 prog_name = p + 1;
1004 state.prog_name = prog_name;
1006 reopen_logs_internal();
1009 /***************************************************************************
1010 Set the logfile name.
1011 **************************************************************************/
1013 void debug_set_logfile(const char *name)
1015 if (name == NULL || *name == 0) {
1016 /* this copes with calls when smb.conf is not loaded yet */
1017 return;
1019 TALLOC_FREE(dbgc_config[DBGC_ALL].logfile);
1020 dbgc_config[DBGC_ALL].logfile = talloc_strdup(NULL, name);
1023 static void debug_close_fd(int fd)
1025 if (fd > 2) {
1026 close(fd);
1030 bool debug_get_output_is_stderr(void)
1032 return (state.logtype == DEBUG_DEFAULT_STDERR) || (state.logtype == DEBUG_STDERR);
1035 bool debug_get_output_is_stdout(void)
1037 return (state.logtype == DEBUG_DEFAULT_STDOUT) || (state.logtype == DEBUG_STDOUT);
1040 void debug_set_callback(void *private_ptr, debug_callback_fn fn)
1042 debug_init();
1043 if (fn) {
1044 state.logtype = DEBUG_CALLBACK;
1045 state.callback_private = private_ptr;
1046 state.callback = fn;
1047 } else {
1048 state.logtype = DEBUG_DEFAULT_STDERR;
1049 state.callback_private = NULL;
1050 state.callback = NULL;
1054 static void debug_callback_log(const char *msg, int msg_level)
1056 size_t msg_len = strlen(msg);
1057 char msg_copy[msg_len];
1059 if ((msg_len > 0) && (msg[msg_len-1] == '\n')) {
1060 memcpy(msg_copy, msg, msg_len-1);
1061 msg_copy[msg_len-1] = '\0';
1062 msg = msg_copy;
1065 state.callback(state.callback_private, msg_level, msg);
1068 /**************************************************************************
1069 reopen the log files
1070 note that we now do this unconditionally
1071 We attempt to open the new debug fp before closing the old. This means
1072 if we run out of fd's we just keep using the old fd rather than aborting.
1073 Fix from dgibson@linuxcare.com.
1074 **************************************************************************/
1076 static bool reopen_one_log(int *fd, const char *logfile)
1078 int old_fd = *fd;
1079 int new_fd;
1081 if (logfile == NULL) {
1082 debug_close_fd(old_fd);
1083 *fd = -1;
1084 return true;
1087 new_fd = open(logfile, O_WRONLY|O_APPEND|O_CREAT, 0644);
1088 if (new_fd == -1) {
1089 log_overflow = true;
1090 DBG_ERR("Unable to open new log file '%s': %s\n",
1091 logfile, strerror(errno));
1092 log_overflow = false;
1093 return false;
1096 debug_close_fd(old_fd);
1097 smb_set_close_on_exec(new_fd);
1098 *fd = new_fd;
1100 return true;
1104 reopen the log file (usually called because the log file name might have changed)
1106 bool reopen_logs_internal(void)
1108 mode_t oldumask;
1109 int new_fd = 0;
1110 size_t i;
1111 bool ok;
1113 if (state.reopening_logs) {
1114 return true;
1117 /* Now clear the SIGHUP induced flag */
1118 state.schedule_reopen_logs = false;
1120 switch (state.logtype) {
1121 case DEBUG_CALLBACK:
1122 return true;
1123 case DEBUG_STDOUT:
1124 case DEBUG_DEFAULT_STDOUT:
1125 debug_close_fd(dbgc_config[DBGC_ALL].fd);
1126 dbgc_config[DBGC_ALL].fd = 1;
1127 return true;
1129 case DEBUG_DEFAULT_STDERR:
1130 case DEBUG_STDERR:
1131 debug_close_fd(dbgc_config[DBGC_ALL].fd);
1132 dbgc_config[DBGC_ALL].fd = 2;
1133 return true;
1135 case DEBUG_FILE:
1136 break;
1139 oldumask = umask( 022 );
1141 for (i = DBGC_ALL; i < debug_num_classes; i++) {
1142 if (dbgc_config[DBGC_ALL].logfile != NULL) {
1143 break;
1146 if (i == debug_num_classes) {
1147 return false;
1150 state.reopening_logs = true;
1152 for (i = DBGC_ALL; i < debug_num_classes; i++) {
1153 ok = reopen_one_log(&dbgc_config[i].fd,
1154 dbgc_config[i].logfile);
1155 if (!ok) {
1156 break;
1160 /* Fix from klausr@ITAP.Physik.Uni-Stuttgart.De
1161 * to fix problem where smbd's that generate less
1162 * than 100 messages keep growing the log.
1164 force_check_log_size();
1165 (void)umask(oldumask);
1168 * If log file was opened or created successfully, take over stderr to
1169 * catch output into logs.
1171 if (new_fd != -1) {
1172 if (dup2(dbgc_config[DBGC_ALL].fd, 2) == -1) {
1173 /* Close stderr too, if dup2 can't point it -
1174 at the logfile. There really isn't much
1175 that can be done on such a fundamental
1176 failure... */
1177 close_low_fd(2);
1181 state.reopening_logs = false;
1183 return ok;
1186 /**************************************************************************
1187 Force a check of the log size.
1188 ***************************************************************************/
1190 void force_check_log_size( void )
1192 debug_count = 100;
1195 _PUBLIC_ void debug_schedule_reopen_logs(void)
1197 state.schedule_reopen_logs = true;
1201 /***************************************************************************
1202 Check to see if there is any need to check if the logfile has grown too big.
1203 **************************************************************************/
1205 bool need_to_check_log_size(void)
1207 int maxlog;
1208 size_t i;
1210 if (debug_count < 100) {
1211 return false;
1214 maxlog = state.settings.max_log_size * 1024;
1215 if (maxlog <= 0) {
1216 debug_count = 0;
1217 return false;
1220 if (dbgc_config[DBGC_ALL].fd > 2) {
1221 return true;
1224 for (i = DBGC_ALL + 1; i < debug_num_classes; i++) {
1225 if (dbgc_config[i].fd != -1) {
1226 return true;
1230 debug_count = 0;
1231 return false;
1234 /**************************************************************************
1235 Check to see if the log has grown to be too big.
1236 **************************************************************************/
1238 static void do_one_check_log_size(off_t maxlog, int *_fd, const char *logfile)
1240 char name[strlen(logfile) + 5];
1241 struct stat st;
1242 int fd = *_fd;
1243 int ret;
1244 bool ok;
1246 if (maxlog == 0) {
1247 return;
1250 ret = fstat(fd, &st);
1251 if (ret != 0) {
1252 return;
1254 if (st.st_size < maxlog ) {
1255 return;
1258 /* reopen_logs_internal() modifies *_fd */
1259 (void)reopen_logs_internal();
1260 fd = *_fd;
1262 if (fd <= 2) {
1263 return;
1265 ret = fstat(fd, &st);
1266 if (ret != 0) {
1267 return;
1269 if (st.st_size < maxlog) {
1270 return;
1273 snprintf(name, sizeof(name), "%s.old", logfile);
1275 (void)rename(logfile, name);
1277 ok = reopen_logs_internal();
1278 if (ok) {
1279 return;
1281 /* We failed to reopen a log - continue using the old name. */
1282 (void)rename(name, logfile);
1285 static void do_check_log_size(off_t maxlog)
1287 size_t i;
1289 for (i = DBGC_ALL; i < debug_num_classes; i++) {
1290 if (dbgc_config[i].fd == -1) {
1291 continue;
1293 if (dbgc_config[i].logfile == NULL) {
1294 continue;
1296 do_one_check_log_size(maxlog,
1297 &dbgc_config[i].fd,
1298 dbgc_config[i].logfile);
1302 void check_log_size( void )
1304 off_t maxlog;
1307 * We need to be root to check/change log-file, skip this and let the main
1308 * loop check do a new check as root.
1311 #if _SAMBA_BUILD_ == 3
1312 if (geteuid() != sec_initial_uid())
1313 #else
1314 if( geteuid() != 0)
1315 #endif
1317 /* We don't check sec_initial_uid() here as it isn't
1318 * available in common code and we don't generally
1319 * want to rotate and the possibly lose logs in
1320 * make test or the build farm */
1321 return;
1324 if(log_overflow || (!state.schedule_reopen_logs && !need_to_check_log_size())) {
1325 return;
1328 maxlog = state.settings.max_log_size * 1024;
1330 if (state.schedule_reopen_logs) {
1331 (void)reopen_logs_internal();
1334 do_check_log_size(maxlog);
1337 * Here's where we need to panic if dbgc_config[DBGC_ALL].fd == 0 or -1
1338 * (invalid values)
1341 if (dbgc_config[DBGC_ALL].fd <= 0) {
1342 /* This code should only be reached in very strange
1343 * circumstances. If we merely fail to open the new log we
1344 * should stick with the old one. ergo this should only be
1345 * reached when opening the logs for the first time: at
1346 * startup or when the log level is increased from zero.
1347 * -dwg 6 June 2000
1349 int fd = open( "/dev/console", O_WRONLY, 0);
1350 if (fd != -1) {
1351 smb_set_close_on_exec(fd);
1352 dbgc_config[DBGC_ALL].fd = fd;
1353 DBG_ERR("check_log_size: open of debug file %s failed "
1354 "- using console.\n",
1355 dbgc_config[DBGC_ALL].logfile);
1356 } else {
1358 * We cannot continue without a debug file handle.
1360 abort();
1363 debug_count = 0;
1366 /*************************************************************************
1367 Write an debug message on the debugfile.
1368 This is called by dbghdr() and format_debug_text().
1369 ************************************************************************/
1371 static void Debug1(const char *msg)
1373 int old_errno = errno;
1375 debug_count++;
1377 switch(state.logtype) {
1378 case DEBUG_CALLBACK:
1379 debug_callback_log(msg, current_msg_level);
1380 break;
1381 case DEBUG_STDOUT:
1382 case DEBUG_STDERR:
1383 case DEBUG_DEFAULT_STDOUT:
1384 case DEBUG_DEFAULT_STDERR:
1385 if (dbgc_config[DBGC_ALL].fd > 0) {
1386 ssize_t ret;
1387 do {
1388 ret = write(dbgc_config[DBGC_ALL].fd,
1389 msg,
1390 strlen(msg));
1391 } while (ret == -1 && errno == EINTR);
1393 break;
1394 case DEBUG_FILE:
1395 debug_backends_log(msg, current_msg_level);
1396 break;
1399 errno = old_errno;
1402 /**************************************************************************
1403 Print the buffer content via Debug1(), then reset the buffer.
1404 Input: none
1405 Output: none
1406 ****************************************************************************/
1408 static void bufr_print( void )
1410 format_bufr[format_pos] = '\0';
1411 (void)Debug1(format_bufr);
1412 format_pos = 0;
1415 /***************************************************************************
1416 Format the debug message text.
1418 Input: msg - Text to be added to the "current" debug message text.
1420 Output: none.
1422 Notes: The purpose of this is two-fold. First, each call to syslog()
1423 (used by Debug1(), see above) generates a new line of syslog
1424 output. This is fixed by storing the partial lines until the
1425 newline character is encountered. Second, printing the debug
1426 message lines when a newline is encountered allows us to add
1427 spaces, thus indenting the body of the message and making it
1428 more readable.
1429 **************************************************************************/
1431 static void format_debug_text( const char *msg )
1433 size_t i;
1434 bool timestamp = (state.logtype == DEBUG_FILE && (state.settings.timestamp_logs));
1436 debug_init();
1438 for( i = 0; msg[i]; i++ ) {
1439 /* Indent two spaces at each new line. */
1440 if(timestamp && 0 == format_pos) {
1441 format_bufr[0] = format_bufr[1] = ' ';
1442 format_pos = 2;
1445 /* If there's room, copy the character to the format buffer. */
1446 if (format_pos < FORMAT_BUFR_SIZE - 1)
1447 format_bufr[format_pos++] = msg[i];
1449 /* If a newline is encountered, print & restart. */
1450 if( '\n' == msg[i] )
1451 bufr_print();
1453 /* If the buffer is full dump it out, reset it, and put out a line
1454 * continuation indicator.
1456 if (format_pos >= FORMAT_BUFR_SIZE - 1) {
1457 bufr_print();
1458 (void)Debug1( " +>\n" );
1462 /* Just to be safe... */
1463 format_bufr[format_pos] = '\0';
1466 /***************************************************************************
1467 Flush debug output, including the format buffer content.
1469 Input: none
1470 Output: none
1471 ***************************************************************************/
1473 void dbgflush( void )
1475 bufr_print();
1478 /***************************************************************************
1479 Print a Debug Header.
1481 Input: level - Debug level of the message (not the system-wide debug
1482 level. )
1483 cls - Debuglevel class of the calling module.
1484 location - Pointer to a string containing the name of the file
1485 from which this function was called, or an empty string
1486 if the __FILE__ macro is not implemented.
1487 func - Pointer to a string containing the name of the function
1488 from which this function was called, or an empty string
1489 if the __FUNCTION__ macro is not implemented.
1491 Output: Always true. This makes it easy to fudge a call to dbghdr()
1492 in a macro, since the function can be called as part of a test.
1493 Eg: ( (level <= DEBUGLEVEL) && (dbghdr(level,"",line)) )
1495 Notes: This function takes care of setting current_msg_level.
1497 ****************************************************************************/
1499 bool dbghdrclass(int level, int cls, const char *location, const char *func)
1501 /* Ensure we don't lose any real errno value. */
1502 int old_errno = errno;
1503 bool verbose = false;
1504 char header_str[300];
1505 size_t hs_len;
1506 struct timeval tv;
1507 struct timeval_buf tvbuf;
1509 if( format_pos ) {
1510 /* This is a fudge. If there is stuff sitting in the format_bufr, then
1511 * the *right* thing to do is to call
1512 * format_debug_text( "\n" );
1513 * to write the remainder, and then proceed with the new header.
1514 * Unfortunately, there are several places in the code at which
1515 * the DEBUG() macro is used to build partial lines. That in mind,
1516 * we'll work under the assumption that an incomplete line indicates
1517 * that a new header is *not* desired.
1519 return( true );
1522 /* Set current_msg_level. */
1523 current_msg_level = level;
1525 /* Set current message class */
1526 current_msg_class = cls;
1528 /* Don't print a header if we're logging to stdout. */
1529 if ( state.logtype != DEBUG_FILE ) {
1530 return( true );
1533 /* Print the header if timestamps are turned on. If parameters are
1534 * not yet loaded, then default to timestamps on.
1536 if (!(state.settings.timestamp_logs ||
1537 state.settings.debug_prefix_timestamp)) {
1538 return true;
1541 GetTimeOfDay(&tv);
1542 timeval_str_buf(&tv, false, state.settings.debug_hires_timestamp,
1543 &tvbuf);
1545 hs_len = snprintf(header_str, sizeof(header_str), "[%s, %2d",
1546 tvbuf.buf, level);
1547 if (hs_len >= sizeof(header_str)) {
1548 goto full;
1551 if (unlikely(dbgc_config[cls].loglevel >= 10)) {
1552 verbose = true;
1555 if (verbose || state.settings.debug_pid) {
1556 hs_len += snprintf(
1557 header_str + hs_len, sizeof(header_str) - hs_len,
1558 ", pid=%u", (unsigned int)getpid());
1559 if (hs_len >= sizeof(header_str)) {
1560 goto full;
1564 if (verbose || state.settings.debug_uid) {
1565 hs_len += snprintf(
1566 header_str + hs_len, sizeof(header_str) - hs_len,
1567 ", effective(%u, %u), real(%u, %u)",
1568 (unsigned int)geteuid(), (unsigned int)getegid(),
1569 (unsigned int)getuid(), (unsigned int)getgid());
1570 if (hs_len >= sizeof(header_str)) {
1571 goto full;
1575 if ((verbose || state.settings.debug_class)
1576 && (cls != DBGC_ALL)) {
1577 hs_len += snprintf(
1578 header_str + hs_len, sizeof(header_str) - hs_len,
1579 ", class=%s", classname_table[cls]);
1580 if (hs_len >= sizeof(header_str)) {
1581 goto full;
1586 * No +=, see man man strlcat
1588 hs_len = strlcat(header_str, "] ", sizeof(header_str));
1589 if (hs_len >= sizeof(header_str)) {
1590 goto full;
1593 if (!state.settings.debug_prefix_timestamp) {
1594 hs_len += snprintf(
1595 header_str + hs_len, sizeof(header_str) - hs_len,
1596 "%s(%s)\n", location, func);
1597 if (hs_len >= sizeof(header_str)) {
1598 goto full;
1602 full:
1603 (void)Debug1(header_str);
1605 errno = old_errno;
1606 return( true );
1609 /***************************************************************************
1610 Add text to the body of the "current" debug message via the format buffer.
1612 Input: format_str - Format string, as used in printf(), et. al.
1613 ... - Variable argument list.
1615 ..or.. va_alist - Old style variable parameter list starting point.
1617 Output: Always true. See dbghdr() for more info, though this is not
1618 likely to be used in the same way.
1620 ***************************************************************************/
1622 static inline bool __dbgtext_va(const char *format_str, va_list ap) PRINTF_ATTRIBUTE(1,0);
1623 static inline bool __dbgtext_va(const char *format_str, va_list ap)
1625 char *msgbuf = NULL;
1626 bool ret = true;
1627 int res;
1629 res = vasprintf(&msgbuf, format_str, ap);
1630 if (res != -1) {
1631 format_debug_text(msgbuf);
1632 } else {
1633 ret = false;
1635 SAFE_FREE(msgbuf);
1636 return ret;
1639 bool dbgtext_va(const char *format_str, va_list ap)
1641 return __dbgtext_va(format_str, ap);
1644 bool dbgtext(const char *format_str, ... )
1646 va_list ap;
1647 bool ret;
1649 va_start(ap, format_str);
1650 ret = __dbgtext_va(format_str, ap);
1651 va_end(ap);
1653 return ret;