s3: VFS: solarisacl: Add solarisacl_sys_acl_delete_def_fd().
[Samba.git] / lib / util / debug.c
blob05a76efc5a443ea9c1bf691d864ffa75826f922e
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"
33 #include <assert.h>
35 /* define what facility to use for syslog */
36 #ifndef SYSLOG_FACILITY
37 #define SYSLOG_FACILITY LOG_DAEMON
38 #endif
40 /* -------------------------------------------------------------------------- **
41 * Defines...
45 * format_bufr[FORMAT_BUFR_SIZE - 1] should always be reserved
46 * for a terminating null byte.
48 #define FORMAT_BUFR_SIZE 4096
50 /* -------------------------------------------------------------------------- **
51 * This module implements Samba's debugging utility.
53 * The syntax of a debugging log file is represented as:
55 * <debugfile> :== { <debugmsg> }
57 * <debugmsg> :== <debughdr> '\n' <debugtext>
59 * <debughdr> :== '[' TIME ',' LEVEL ']' [ [FILENAME ':'] [FUNCTION '()'] ]
61 * <debugtext> :== { <debugline> }
63 * <debugline> :== TEXT '\n'
65 * TEXT is a string of characters excluding the newline character.
66 * LEVEL is the DEBUG level of the message (an integer in the range 0..10).
67 * TIME is a timestamp.
68 * FILENAME is the name of the file from which the debug message was generated.
69 * FUNCTION is the function from which the debug message was generated.
71 * Basically, what that all means is:
73 * - A debugging log file is made up of debug messages.
75 * - Each debug message is made up of a header and text. The header is
76 * separated from the text by a newline.
78 * - The header begins with the timestamp and debug level of the message
79 * enclosed in brackets. The filename and function from which the
80 * message was generated may follow. The filename is terminated by a
81 * colon, and the function name is terminated by parenthesis.
83 * - The message text is made up of zero or more lines, each terminated by
84 * a newline.
87 /* state variables for the debug system */
88 static struct {
89 bool initialized;
90 enum debug_logtype logtype; /* The type of logging we are doing: eg stdout, file, stderr */
91 char prog_name[255];
92 bool reopening_logs;
93 bool schedule_reopen_logs;
95 struct debug_settings settings;
96 debug_callback_fn callback;
97 void *callback_private;
98 } state = {
99 .settings = {
100 .timestamp_logs = true
104 struct debug_class {
106 * The debug loglevel of the class.
108 int loglevel;
111 * An optional class specific logfile, may be NULL in which case the
112 * "global" logfile is used and fd is -1.
114 char *logfile;
115 int fd;
116 /* inode number of the logfile to detect logfile rotation */
117 ino_t ino;
120 static const char *default_classname_table[] = {
121 [DBGC_ALL] = "all",
122 [DBGC_TDB] = "tdb",
123 [DBGC_PRINTDRIVERS] = "printdrivers",
124 [DBGC_LANMAN] = "lanman",
125 [DBGC_SMB] = "smb",
126 [DBGC_RPC_PARSE] = "rpc_parse",
127 [DBGC_RPC_SRV] = "rpc_srv",
128 [DBGC_RPC_CLI] = "rpc_cli",
129 [DBGC_PASSDB] = "passdb",
130 [DBGC_SAM] = "sam",
131 [DBGC_AUTH] = "auth",
132 [DBGC_WINBIND] = "winbind",
133 [DBGC_VFS] = "vfs",
134 [DBGC_IDMAP] = "idmap",
135 [DBGC_QUOTA] = "quota",
136 [DBGC_ACLS] = "acls",
137 [DBGC_LOCKING] = "locking",
138 [DBGC_MSDFS] = "msdfs",
139 [DBGC_DMAPI] = "dmapi",
140 [DBGC_REGISTRY] = "registry",
141 [DBGC_SCAVENGER] = "scavenger",
142 [DBGC_DNS] = "dns",
143 [DBGC_LDB] = "ldb",
144 [DBGC_TEVENT] = "tevent",
145 [DBGC_AUTH_AUDIT] = "auth_audit",
146 [DBGC_AUTH_AUDIT_JSON] = "auth_json_audit",
147 [DBGC_KERBEROS] = "kerberos",
148 [DBGC_DRS_REPL] = "drs_repl",
149 [DBGC_SMB2] = "smb2",
150 [DBGC_SMB2_CREDITS] = "smb2_credits",
151 [DBGC_DSDB_AUDIT] = "dsdb_audit",
152 [DBGC_DSDB_AUDIT_JSON] = "dsdb_json_audit",
153 [DBGC_DSDB_PWD_AUDIT] = "dsdb_password_audit",
154 [DBGC_DSDB_PWD_AUDIT_JSON] = "dsdb_password_json_audit",
155 [DBGC_DSDB_TXN_AUDIT] = "dsdb_transaction_audit",
156 [DBGC_DSDB_TXN_AUDIT_JSON] = "dsdb_transaction_json_audit",
157 [DBGC_DSDB_GROUP_AUDIT] = "dsdb_group_audit",
158 [DBGC_DSDB_GROUP_AUDIT_JSON] = "dsdb_group_json_audit",
162 * This is to allow reading of dbgc_config before the debug
163 * system has been initialized.
165 static struct debug_class debug_class_list_initial[ARRAY_SIZE(default_classname_table)] = {
166 [DBGC_ALL] = { .fd = 2 },
169 static size_t debug_num_classes = 0;
170 static struct debug_class *dbgc_config = debug_class_list_initial;
172 static int current_msg_level = 0;
173 static int current_msg_class = 0;
175 #if defined(WITH_SYSLOG) || defined(HAVE_LIBSYSTEMD_JOURNAL) || defined(HAVE_LIBSYSTEMD)
176 static int debug_level_to_priority(int level)
179 * map debug levels to syslog() priorities
181 static const int priority_map[] = {
182 LOG_ERR, /* 0 */
183 LOG_WARNING, /* 1 */
184 LOG_NOTICE, /* 2 */
185 LOG_NOTICE, /* 3 */
186 LOG_NOTICE, /* 4 */
187 LOG_NOTICE, /* 5 */
188 LOG_INFO, /* 6 */
189 LOG_INFO, /* 7 */
190 LOG_INFO, /* 8 */
191 LOG_INFO, /* 9 */
193 int priority;
195 if (level < 0 || (size_t)level >= ARRAY_SIZE(priority_map))
196 priority = LOG_DEBUG;
197 else
198 priority = priority_map[level];
200 return priority;
202 #endif
204 /* -------------------------------------------------------------------------- **
205 * Debug backends. When logging to DEBUG_FILE, send the log entries to
206 * all active backends.
209 static void debug_file_log(int msg_level,
210 const char *msg, const char *msg_no_nl)
212 ssize_t ret;
213 int fd;
215 check_log_size();
217 if (dbgc_config[current_msg_class].fd != -1) {
218 fd = dbgc_config[current_msg_class].fd;
219 } else {
220 fd = dbgc_config[DBGC_ALL].fd;
223 do {
224 ret = write(fd, msg, strlen(msg));
225 } while (ret == -1 && errno == EINTR);
228 #ifdef WITH_SYSLOG
229 static void debug_syslog_reload(bool enabled, bool previously_enabled,
230 const char *prog_name, char *option)
232 if (enabled && !previously_enabled) {
233 const char *ident = NULL;
234 if ((prog_name != NULL) && (prog_name[0] != '\0')) {
235 ident = prog_name;
237 #ifdef LOG_DAEMON
238 openlog(ident, LOG_PID, SYSLOG_FACILITY);
239 #else
240 /* for old systems that have no facility codes. */
241 openlog(ident, LOG_PID);
242 #endif
243 return;
246 if (!enabled && previously_enabled) {
247 closelog();
251 static void debug_syslog_log(int msg_level,
252 const char *msg, const char *msg_no_nl)
254 int priority;
256 priority = debug_level_to_priority(msg_level);
259 * Specify the facility to interoperate with other syslog
260 * callers (vfs_full_audit for example).
262 priority |= SYSLOG_FACILITY;
264 syslog(priority, "%s", msg);
266 #endif /* WITH_SYSLOG */
268 #if defined(HAVE_LIBSYSTEMD_JOURNAL) || defined(HAVE_LIBSYSTEMD)
269 #include <systemd/sd-journal.h>
270 static void debug_systemd_log(int msg_level,
271 const char *msg, const char *msg_no_nl)
273 sd_journal_send("MESSAGE=%s", msg_no_nl,
274 "PRIORITY=%d", debug_level_to_priority(msg_level),
275 "LEVEL=%d", msg_level,
276 NULL);
278 #endif
280 #ifdef HAVE_LTTNG_TRACEF
281 #include <lttng/tracef.h>
282 static void debug_lttng_log(int msg_level,
283 const char *msg, const char *msg_no_nl)
285 tracef(msg_no_nl);
287 #endif /* WITH_LTTNG_TRACEF */
289 #ifdef HAVE_GPFS
290 #include "gpfswrap.h"
291 static void debug_gpfs_reload(bool enabled, bool previously_enabled,
292 const char *prog_name, char *option)
294 gpfswrap_init();
296 if (enabled && !previously_enabled) {
297 gpfswrap_init_trace();
298 return;
301 if (!enabled && previously_enabled) {
302 gpfswrap_fini_trace();
303 return;
306 if (enabled) {
308 * Trigger GPFS library to adjust state if necessary.
310 gpfswrap_query_trace();
314 static void debug_gpfs_log(int msg_level,
315 const char *msg, const char *msg_no_nl)
317 gpfswrap_add_trace(msg_level, msg_no_nl);
319 #endif /* HAVE_GPFS */
321 #define DEBUG_RINGBUF_SIZE (1024 * 1024)
322 #define DEBUG_RINGBUF_SIZE_OPT "size="
324 static char *debug_ringbuf;
325 static size_t debug_ringbuf_size;
326 static size_t debug_ringbuf_ofs;
328 /* We ensure in debug_ringbuf_log() that this is always \0 terminated */
329 char *debug_get_ringbuf(void)
331 return debug_ringbuf;
334 /* Return the size of the ringbuf (including a \0 terminator) */
335 size_t debug_get_ringbuf_size(void)
337 return debug_ringbuf_size;
340 static void debug_ringbuf_reload(bool enabled, bool previously_enabled,
341 const char *prog_name, char *option)
343 bool cmp;
344 size_t optlen = strlen(DEBUG_RINGBUF_SIZE_OPT);
346 debug_ringbuf_size = DEBUG_RINGBUF_SIZE;
347 debug_ringbuf_ofs = 0;
349 SAFE_FREE(debug_ringbuf);
351 if (!enabled) {
352 return;
355 if (option != NULL) {
356 cmp = strncmp(option, DEBUG_RINGBUF_SIZE_OPT, optlen);
357 if (cmp == 0) {
358 debug_ringbuf_size = (size_t)strtoull(
359 option + optlen, NULL, 10);
363 debug_ringbuf = calloc(debug_ringbuf_size, sizeof(char));
364 if (debug_ringbuf == NULL) {
365 return;
369 static void debug_ringbuf_log(int msg_level,
370 const char *msg,
371 const char *msg_no_nl)
373 size_t msglen = strlen(msg);
374 size_t allowed_size;
376 if (debug_ringbuf == NULL) {
377 return;
380 /* Ensure the buffer is always \0 terminated */
381 allowed_size = debug_ringbuf_size - 1;
383 if (msglen > allowed_size) {
384 return;
387 if ((debug_ringbuf_ofs + msglen) < debug_ringbuf_ofs) {
388 return;
391 if ((debug_ringbuf_ofs + msglen) > allowed_size) {
392 debug_ringbuf_ofs = 0;
395 memcpy(debug_ringbuf + debug_ringbuf_ofs, msg, msglen);
396 debug_ringbuf_ofs += msglen;
399 static struct debug_backend {
400 const char *name;
401 int log_level;
402 int new_log_level;
403 void (*reload)(bool enabled, bool prev_enabled,
404 const char *prog_name, char *option);
405 void (*log)(int msg_level, const char *msg, const char *msg_no_nl);
406 char *option;
407 } debug_backends[] = {
409 .name = "file",
410 .log = debug_file_log,
412 #ifdef WITH_SYSLOG
414 .name = "syslog",
415 .reload = debug_syslog_reload,
416 .log = debug_syslog_log,
418 #endif
420 #if defined(HAVE_LIBSYSTEMD_JOURNAL) || defined(HAVE_LIBSYSTEMD)
422 .name = "systemd",
423 .log = debug_systemd_log,
425 #endif
427 #ifdef HAVE_LTTNG_TRACEF
429 .name = "lttng",
430 .log = debug_lttng_log,
432 #endif
434 #ifdef HAVE_GPFS
436 .name = "gpfs",
437 .reload = debug_gpfs_reload,
438 .log = debug_gpfs_log,
440 #endif
442 .name = "ringbuf",
443 .log = debug_ringbuf_log,
444 .reload = debug_ringbuf_reload,
448 static struct debug_backend *debug_find_backend(const char *name)
450 unsigned i;
452 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
453 if (strcmp(name, debug_backends[i].name) == 0) {
454 return &debug_backends[i];
458 return NULL;
462 * parse "backend[:option][@loglevel]
464 static void debug_backend_parse_token(char *tok)
466 char *backend_name_option, *backend_name,*backend_level, *saveptr;
467 char *backend_option;
468 struct debug_backend *b;
471 * First parse into backend[:option] and loglevel
473 backend_name_option = strtok_r(tok, "@\0", &saveptr);
474 if (backend_name_option == NULL) {
475 return;
478 backend_level = strtok_r(NULL, "\0", &saveptr);
481 * Now parse backend[:option]
483 backend_name = strtok_r(backend_name_option, ":\0", &saveptr);
484 if (backend_name == NULL) {
485 return;
488 backend_option = strtok_r(NULL, "\0", &saveptr);
491 * Find and update backend
493 b = debug_find_backend(backend_name);
494 if (b == NULL) {
495 return;
498 if (backend_level == NULL) {
499 b->new_log_level = MAX_DEBUG_LEVEL;
500 } else {
501 b->new_log_level = atoi(backend_level);
504 if (backend_option != NULL) {
505 b->option = strdup(backend_option);
506 if (b->option == NULL) {
507 return;
513 * parse "backend1[:option1][@loglevel1] backend2[option2][@loglevel2] ... "
514 * and enable/disable backends accordingly
516 static void debug_set_backends(const char *param)
518 size_t str_len = strlen(param);
519 char str[str_len+1];
520 char *tok, *saveptr;
521 unsigned i;
524 * initialize new_log_level to detect backends that have been
525 * disabled
527 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
528 SAFE_FREE(debug_backends[i].option);
529 debug_backends[i].new_log_level = -1;
532 memcpy(str, param, str_len + 1);
534 tok = strtok_r(str, LIST_SEP, &saveptr);
535 if (tok == NULL) {
536 return;
539 while (tok != NULL) {
540 debug_backend_parse_token(tok);
541 tok = strtok_r(NULL, LIST_SEP, &saveptr);
545 * Let backends react to config changes
547 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
548 struct debug_backend *b = &debug_backends[i];
550 if (b->reload) {
551 bool enabled = b->new_log_level > -1;
552 bool previously_enabled = b->log_level > -1;
554 b->reload(enabled, previously_enabled, state.prog_name,
555 b->option);
557 b->log_level = b->new_log_level;
561 static void debug_backends_log(const char *msg, int msg_level)
563 char msg_no_nl[FORMAT_BUFR_SIZE];
564 size_t i;
565 size_t len;
568 * Some backends already add an extra newline, so also provide
569 * a buffer without the newline character.
571 len = MIN(strlen(msg), FORMAT_BUFR_SIZE - 1);
572 if ((len > 0) && (msg[len - 1] == '\n')) {
573 len--;
576 memcpy(msg_no_nl, msg, len);
577 msg_no_nl[len] = '\0';
579 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
580 if (msg_level <= debug_backends[i].log_level) {
581 debug_backends[i].log(msg_level, msg, msg_no_nl);
586 /* -------------------------------------------------------------------------- **
587 * External variables.
591 used to check if the user specified a
592 logfile on the command line
594 bool override_logfile;
596 int debuglevel_get_class(size_t idx)
598 return dbgc_config[idx].loglevel;
601 void debuglevel_set_class(size_t idx, int level)
603 dbgc_config[idx].loglevel = level;
607 /* -------------------------------------------------------------------------- **
608 * Internal variables.
610 * debug_count - Number of debug messages that have been output.
611 * Used to check log size.
613 * current_msg_level - Internal copy of the message debug level. Written by
614 * dbghdr() and read by Debug1().
616 * format_bufr - Used to format debug messages. The dbgtext() function
617 * prints debug messages to a string, and then passes the
618 * string to format_debug_text(), which uses format_bufr
619 * to build the formatted output.
621 * format_pos - Marks the first free byte of the format_bufr.
624 * log_overflow - When this variable is true, never attempt to check the
625 * size of the log. This is a hack, so that we can write
626 * a message using DEBUG, from open_logs() when we
627 * are unable to open a new log file for some reason.
630 static int debug_count = 0;
631 static char format_bufr[FORMAT_BUFR_SIZE];
632 static size_t format_pos = 0;
633 static bool log_overflow = false;
636 * Define all the debug class selection names here. Names *MUST NOT* contain
637 * white space. There must be one name for each DBGC_<class name>, and they
638 * must be in the table in the order of DBGC_<class name>..
641 static char **classname_table = NULL;
644 /* -------------------------------------------------------------------------- **
645 * Functions...
648 static void debug_init(void);
650 /***************************************************************************
651 Free memory pointed to by global pointers.
652 ****************************************************************************/
654 void gfree_debugsyms(void)
656 unsigned i;
658 TALLOC_FREE(classname_table);
660 if ( dbgc_config != debug_class_list_initial ) {
661 TALLOC_FREE( dbgc_config );
662 dbgc_config = discard_const_p(struct debug_class,
663 debug_class_list_initial);
666 debug_num_classes = 0;
668 state.initialized = false;
670 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
671 SAFE_FREE(debug_backends[i].option);
675 /****************************************************************************
676 utility lists registered debug class names's
677 ****************************************************************************/
679 char *debug_list_class_names_and_levels(void)
681 char *buf = NULL;
682 size_t i;
683 /* prepare strings */
684 for (i = 0; i < debug_num_classes; i++) {
685 buf = talloc_asprintf_append(buf,
686 "%s:%d%s",
687 classname_table[i],
688 dbgc_config[i].loglevel,
689 i == (debug_num_classes - 1) ? "\n" : " ");
690 if (buf == NULL) {
691 return NULL;
694 return buf;
697 /****************************************************************************
698 Utility to translate names to debug class index's (internal version).
699 ****************************************************************************/
701 static int debug_lookup_classname_int(const char* classname)
703 size_t i;
705 if (classname == NULL) {
706 return -1;
709 for (i=0; i < debug_num_classes; i++) {
710 char *entry = classname_table[i];
711 if (entry != NULL && strcmp(classname, entry)==0) {
712 return i;
715 return -1;
718 /****************************************************************************
719 Add a new debug class to the system.
720 ****************************************************************************/
722 int debug_add_class(const char *classname)
724 int ndx;
725 struct debug_class *new_class_list = NULL;
726 char **new_name_list;
727 int default_level;
729 if (classname == NULL) {
730 return -1;
733 /* check the init has yet been called */
734 debug_init();
736 ndx = debug_lookup_classname_int(classname);
737 if (ndx >= 0) {
738 return ndx;
740 ndx = debug_num_classes;
742 if (dbgc_config == debug_class_list_initial) {
743 /* Initial loading... */
744 new_class_list = NULL;
745 } else {
746 new_class_list = dbgc_config;
749 default_level = dbgc_config[DBGC_ALL].loglevel;
751 new_class_list = talloc_realloc(NULL,
752 new_class_list,
753 struct debug_class,
754 ndx + 1);
755 if (new_class_list == NULL) {
756 return -1;
759 dbgc_config = new_class_list;
761 dbgc_config[ndx] = (struct debug_class) {
762 .loglevel = default_level,
763 .fd = -1,
766 new_name_list = talloc_realloc(NULL, classname_table, char *, ndx + 1);
767 if (new_name_list == NULL) {
768 return -1;
770 classname_table = new_name_list;
772 classname_table[ndx] = talloc_strdup(classname_table, classname);
773 if (classname_table[ndx] == NULL) {
774 return -1;
777 debug_num_classes = ndx + 1;
779 return ndx;
782 /****************************************************************************
783 Utility to translate names to debug class index's (public version).
784 ****************************************************************************/
786 static int debug_lookup_classname(const char *classname)
788 int ndx;
790 if (classname == NULL || !*classname)
791 return -1;
793 ndx = debug_lookup_classname_int(classname);
795 if (ndx != -1)
796 return ndx;
798 DEBUG(0, ("debug_lookup_classname(%s): Unknown class\n",
799 classname));
800 return debug_add_class(classname);
803 /****************************************************************************
804 Dump the current registered debug levels.
805 ****************************************************************************/
807 static void debug_dump_status(int level)
809 size_t q;
811 DEBUG(level, ("INFO: Current debug levels:\n"));
812 for (q = 0; q < debug_num_classes; q++) {
813 const char *classname = classname_table[q];
814 DEBUGADD(level, (" %s: %d\n",
815 classname,
816 dbgc_config[q].loglevel));
820 static bool debug_parse_param(char *param)
822 char *class_name;
823 char *class_file = NULL;
824 char *class_level;
825 char *saveptr = NULL;
826 int ndx;
828 class_name = strtok_r(param, ":", &saveptr);
829 if (class_name == NULL) {
830 return false;
833 class_level = strtok_r(NULL, "@\0", &saveptr);
834 if (class_level == NULL) {
835 return false;
838 class_file = strtok_r(NULL, "\0", &saveptr);
840 ndx = debug_lookup_classname(class_name);
841 if (ndx == -1) {
842 return false;
845 dbgc_config[ndx].loglevel = atoi(class_level);
847 if (class_file == NULL) {
848 return true;
851 TALLOC_FREE(dbgc_config[ndx].logfile);
853 dbgc_config[ndx].logfile = talloc_strdup(NULL, class_file);
854 if (dbgc_config[ndx].logfile == NULL) {
855 return false;
857 return true;
860 /****************************************************************************
861 Parse the debug levels from smb.conf. Example debug level string:
862 3 tdb:5 printdrivers:7
863 Note: the 1st param has no "name:" preceding it.
864 ****************************************************************************/
866 bool debug_parse_levels(const char *params_str)
868 size_t str_len = strlen(params_str);
869 char str[str_len+1];
870 char *tok, *saveptr;
871 size_t i;
873 /* Just in case */
874 debug_init();
876 memcpy(str, params_str, str_len+1);
878 tok = strtok_r(str, LIST_SEP, &saveptr);
879 if (tok == NULL) {
880 return true;
883 /* Allow DBGC_ALL to be specified w/o requiring its class name e.g."10"
884 * v.s. "all:10", this is the traditional way to set DEBUGLEVEL
886 if (isdigit(tok[0])) {
887 dbgc_config[DBGC_ALL].loglevel = atoi(tok);
888 tok = strtok_r(NULL, LIST_SEP, &saveptr);
889 } else {
890 dbgc_config[DBGC_ALL].loglevel = 0;
893 /* Array is debug_num_classes long */
894 for (i = DBGC_ALL+1; i < debug_num_classes; i++) {
895 dbgc_config[i].loglevel = dbgc_config[DBGC_ALL].loglevel;
896 TALLOC_FREE(dbgc_config[i].logfile);
899 while (tok != NULL) {
900 bool ok;
902 ok = debug_parse_param(tok);
903 if (!ok) {
904 DEBUG(0,("debug_parse_params: unrecognized debug "
905 "class name or format [%s]\n", tok));
906 return false;
909 tok = strtok_r(NULL, LIST_SEP, &saveptr);
912 debug_dump_status(5);
914 return true;
917 /* setup for logging of talloc warnings */
918 static void talloc_log_fn(const char *msg)
920 DEBUG(0,("%s", msg));
923 void debug_setup_talloc_log(void)
925 talloc_set_log_fn(talloc_log_fn);
929 /****************************************************************************
930 Init debugging (one time stuff)
931 ****************************************************************************/
933 static void debug_init(void)
935 size_t i;
937 if (state.initialized)
938 return;
940 state.initialized = true;
942 debug_setup_talloc_log();
944 for (i = 0; i < ARRAY_SIZE(default_classname_table); i++) {
945 debug_add_class(default_classname_table[i]);
947 dbgc_config[DBGC_ALL].fd = 2;
949 for (i = 0; i < ARRAY_SIZE(debug_backends); i++) {
950 debug_backends[i].log_level = -1;
951 debug_backends[i].new_log_level = -1;
955 void debug_set_settings(struct debug_settings *settings,
956 const char *logging_param,
957 int syslog_level, bool syslog_only)
959 char fake_param[256];
960 size_t len = 0;
963 * This forces in some smb.conf derived values into the debug
964 * system. There are no pointers in this structure, so we can
965 * just structure-assign it in
967 state.settings = *settings;
970 * If 'logging' is not set, create backend settings from
971 * deprecated 'syslog' and 'syslog only' parameters
973 if (logging_param != NULL) {
974 len = strlen(logging_param);
976 if (len == 0) {
977 if (syslog_only) {
978 snprintf(fake_param, sizeof(fake_param),
979 "syslog@%d", syslog_level - 1);
980 } else {
981 snprintf(fake_param, sizeof(fake_param),
982 "syslog@%d file@%d", syslog_level -1,
983 MAX_DEBUG_LEVEL);
986 logging_param = fake_param;
989 debug_set_backends(logging_param);
993 control the name of the logfile and whether logging will be to stdout, stderr
994 or a file, and set up syslog
996 new_log indicates the destination for the debug log (an enum in
997 order of precedence - once set to DEBUG_FILE, it is not possible to
998 reset to DEBUG_STDOUT for example. This makes it easy to override
999 for debug to stderr on the command line, as the smb.conf cannot
1000 reset it back to file-based logging
1002 void setup_logging(const char *prog_name, enum debug_logtype new_logtype)
1004 debug_init();
1005 if (state.logtype < new_logtype) {
1006 state.logtype = new_logtype;
1008 if (prog_name) {
1009 const char *p = strrchr(prog_name, '/');
1011 if (p) {
1012 prog_name = p + 1;
1015 strlcpy(state.prog_name, prog_name, sizeof(state.prog_name));
1017 reopen_logs_internal();
1020 /***************************************************************************
1021 Set the logfile name.
1022 **************************************************************************/
1024 void debug_set_logfile(const char *name)
1026 if (name == NULL || *name == 0) {
1027 /* this copes with calls when smb.conf is not loaded yet */
1028 return;
1030 TALLOC_FREE(dbgc_config[DBGC_ALL].logfile);
1031 dbgc_config[DBGC_ALL].logfile = talloc_strdup(NULL, name);
1034 static void debug_close_fd(int fd)
1036 if (fd > 2) {
1037 close(fd);
1041 enum debug_logtype debug_get_log_type(void)
1043 return state.logtype;
1046 bool debug_get_output_is_stderr(void)
1048 return (state.logtype == DEBUG_DEFAULT_STDERR) || (state.logtype == DEBUG_STDERR);
1051 bool debug_get_output_is_stdout(void)
1053 return (state.logtype == DEBUG_DEFAULT_STDOUT) || (state.logtype == DEBUG_STDOUT);
1056 void debug_set_callback(void *private_ptr, debug_callback_fn fn)
1058 debug_init();
1059 if (fn) {
1060 state.logtype = DEBUG_CALLBACK;
1061 state.callback_private = private_ptr;
1062 state.callback = fn;
1063 } else {
1064 state.logtype = DEBUG_DEFAULT_STDERR;
1065 state.callback_private = NULL;
1066 state.callback = NULL;
1070 static void debug_callback_log(const char *msg, int msg_level)
1072 size_t msg_len = strlen(msg);
1073 char msg_copy[msg_len];
1075 if ((msg_len > 0) && (msg[msg_len-1] == '\n')) {
1076 memcpy(msg_copy, msg, msg_len-1);
1077 msg_copy[msg_len-1] = '\0';
1078 msg = msg_copy;
1081 state.callback(state.callback_private, msg_level, msg);
1084 /**************************************************************************
1085 reopen the log files
1086 note that we now do this unconditionally
1087 We attempt to open the new debug fp before closing the old. This means
1088 if we run out of fd's we just keep using the old fd rather than aborting.
1089 Fix from dgibson@linuxcare.com.
1090 **************************************************************************/
1092 static bool reopen_one_log(struct debug_class *config)
1094 int old_fd = config->fd;
1095 const char *logfile = config->logfile;
1096 struct stat st;
1097 int new_fd;
1098 int ret;
1100 if (logfile == NULL) {
1101 debug_close_fd(old_fd);
1102 config->fd = -1;
1103 return true;
1106 new_fd = open(logfile, O_WRONLY|O_APPEND|O_CREAT, 0644);
1107 if (new_fd == -1) {
1108 log_overflow = true;
1109 DBG_ERR("Unable to open new log file '%s': %s\n",
1110 logfile, strerror(errno));
1111 log_overflow = false;
1112 return false;
1115 debug_close_fd(old_fd);
1116 smb_set_close_on_exec(new_fd);
1117 config->fd = new_fd;
1119 ret = fstat(new_fd, &st);
1120 if (ret != 0) {
1121 log_overflow = true;
1122 DBG_ERR("Unable to fstat() new log file '%s': %s\n",
1123 logfile, strerror(errno));
1124 log_overflow = false;
1125 return false;
1128 config->ino = st.st_ino;
1129 return true;
1133 reopen the log file (usually called because the log file name might have changed)
1135 bool reopen_logs_internal(void)
1137 struct debug_backend *b = NULL;
1138 mode_t oldumask;
1139 int new_fd = 0;
1140 size_t i;
1141 bool ok;
1143 if (state.reopening_logs) {
1144 return true;
1147 /* Now clear the SIGHUP induced flag */
1148 state.schedule_reopen_logs = false;
1150 switch (state.logtype) {
1151 case DEBUG_CALLBACK:
1152 return true;
1153 case DEBUG_STDOUT:
1154 case DEBUG_DEFAULT_STDOUT:
1155 debug_close_fd(dbgc_config[DBGC_ALL].fd);
1156 dbgc_config[DBGC_ALL].fd = 1;
1157 return true;
1159 case DEBUG_DEFAULT_STDERR:
1160 case DEBUG_STDERR:
1161 debug_close_fd(dbgc_config[DBGC_ALL].fd);
1162 dbgc_config[DBGC_ALL].fd = 2;
1163 return true;
1165 case DEBUG_FILE:
1166 b = debug_find_backend("file");
1167 assert(b != NULL);
1169 b->log_level = MAX_DEBUG_LEVEL;
1170 break;
1173 oldumask = umask( 022 );
1175 for (i = DBGC_ALL; i < debug_num_classes; i++) {
1176 if (dbgc_config[i].logfile != NULL) {
1177 break;
1180 if (i == debug_num_classes) {
1181 return false;
1184 state.reopening_logs = true;
1186 for (i = DBGC_ALL; i < debug_num_classes; i++) {
1187 ok = reopen_one_log(&dbgc_config[i]);
1188 if (!ok) {
1189 break;
1193 /* Fix from klausr@ITAP.Physik.Uni-Stuttgart.De
1194 * to fix problem where smbd's that generate less
1195 * than 100 messages keep growing the log.
1197 force_check_log_size();
1198 (void)umask(oldumask);
1201 * If log file was opened or created successfully, take over stderr to
1202 * catch output into logs.
1204 if (new_fd != -1) {
1205 if (dup2(dbgc_config[DBGC_ALL].fd, 2) == -1) {
1206 /* Close stderr too, if dup2 can't point it -
1207 at the logfile. There really isn't much
1208 that can be done on such a fundamental
1209 failure... */
1210 close_low_fd(2);
1214 state.reopening_logs = false;
1216 return ok;
1219 /**************************************************************************
1220 Force a check of the log size.
1221 ***************************************************************************/
1223 void force_check_log_size( void )
1225 debug_count = 100;
1228 _PUBLIC_ void debug_schedule_reopen_logs(void)
1230 state.schedule_reopen_logs = true;
1234 /***************************************************************************
1235 Check to see if there is any need to check if the logfile has grown too big.
1236 **************************************************************************/
1238 bool need_to_check_log_size(void)
1240 int maxlog;
1241 size_t i;
1243 if (debug_count < 100) {
1244 return false;
1247 maxlog = state.settings.max_log_size * 1024;
1248 if (maxlog <= 0) {
1249 debug_count = 0;
1250 return false;
1253 if (dbgc_config[DBGC_ALL].fd > 2) {
1254 return true;
1257 for (i = DBGC_ALL + 1; i < debug_num_classes; i++) {
1258 if (dbgc_config[i].fd != -1) {
1259 return true;
1263 debug_count = 0;
1264 return false;
1267 /**************************************************************************
1268 Check to see if the log has grown to be too big.
1269 **************************************************************************/
1271 static void do_one_check_log_size(off_t maxlog, struct debug_class *config)
1273 char name[strlen(config->logfile) + 5];
1274 struct stat st;
1275 int ret;
1276 bool reopen = false;
1277 bool ok;
1279 if (maxlog == 0) {
1280 return;
1283 ret = stat(config->logfile, &st);
1284 if (ret != 0) {
1285 return;
1287 if (st.st_size >= maxlog ) {
1288 reopen = true;
1291 if (st.st_ino != config->ino) {
1292 reopen = true;
1295 if (!reopen) {
1296 return;
1299 /* reopen_logs_internal() modifies *_fd */
1300 (void)reopen_logs_internal();
1302 if (config->fd <= 2) {
1303 return;
1305 ret = fstat(config->fd, &st);
1306 if (ret != 0) {
1307 config->ino = (ino_t)0;
1308 return;
1311 config->ino = st.st_ino;
1313 if (st.st_size < maxlog) {
1314 return;
1317 snprintf(name, sizeof(name), "%s.old", config->logfile);
1319 (void)rename(config->logfile, name);
1321 ok = reopen_logs_internal();
1322 if (ok) {
1323 return;
1325 /* We failed to reopen a log - continue using the old name. */
1326 (void)rename(name, config->logfile);
1329 static void do_check_log_size(off_t maxlog)
1331 size_t i;
1333 for (i = DBGC_ALL; i < debug_num_classes; i++) {
1334 if (dbgc_config[i].fd == -1) {
1335 continue;
1337 if (dbgc_config[i].logfile == NULL) {
1338 continue;
1340 do_one_check_log_size(maxlog, &dbgc_config[i]);
1344 void check_log_size( void )
1346 off_t maxlog;
1349 * We need to be root to check/change log-file, skip this and let the main
1350 * loop check do a new check as root.
1353 #if _SAMBA_BUILD_ == 3
1354 if (geteuid() != sec_initial_uid())
1355 #else
1356 if( geteuid() != 0)
1357 #endif
1359 /* We don't check sec_initial_uid() here as it isn't
1360 * available in common code and we don't generally
1361 * want to rotate and the possibly lose logs in
1362 * make test or the build farm */
1363 return;
1366 if(log_overflow || (!state.schedule_reopen_logs && !need_to_check_log_size())) {
1367 return;
1370 maxlog = state.settings.max_log_size * 1024;
1372 if (state.schedule_reopen_logs) {
1373 (void)reopen_logs_internal();
1376 do_check_log_size(maxlog);
1379 * Here's where we need to panic if dbgc_config[DBGC_ALL].fd == 0 or -1
1380 * (invalid values)
1383 if (dbgc_config[DBGC_ALL].fd <= 0) {
1384 /* This code should only be reached in very strange
1385 * circumstances. If we merely fail to open the new log we
1386 * should stick with the old one. ergo this should only be
1387 * reached when opening the logs for the first time: at
1388 * startup or when the log level is increased from zero.
1389 * -dwg 6 June 2000
1391 int fd = open( "/dev/console", O_WRONLY, 0);
1392 if (fd != -1) {
1393 smb_set_close_on_exec(fd);
1394 dbgc_config[DBGC_ALL].fd = fd;
1395 DBG_ERR("check_log_size: open of debug file %s failed "
1396 "- using console.\n",
1397 dbgc_config[DBGC_ALL].logfile);
1398 } else {
1400 * We cannot continue without a debug file handle.
1402 abort();
1405 debug_count = 0;
1408 /*************************************************************************
1409 Write an debug message on the debugfile.
1410 This is called by dbghdr() and format_debug_text().
1411 ************************************************************************/
1413 static void Debug1(const char *msg)
1415 int old_errno = errno;
1417 debug_count++;
1419 switch(state.logtype) {
1420 case DEBUG_CALLBACK:
1421 debug_callback_log(msg, current_msg_level);
1422 break;
1423 case DEBUG_STDOUT:
1424 case DEBUG_STDERR:
1425 case DEBUG_DEFAULT_STDOUT:
1426 case DEBUG_DEFAULT_STDERR:
1427 if (dbgc_config[DBGC_ALL].fd > 0) {
1428 ssize_t ret;
1429 do {
1430 ret = write(dbgc_config[DBGC_ALL].fd,
1431 msg,
1432 strlen(msg));
1433 } while (ret == -1 && errno == EINTR);
1435 break;
1436 case DEBUG_FILE:
1437 debug_backends_log(msg, current_msg_level);
1438 break;
1441 errno = old_errno;
1444 /**************************************************************************
1445 Print the buffer content via Debug1(), then reset the buffer.
1446 Input: none
1447 Output: none
1448 ****************************************************************************/
1450 static void bufr_print( void )
1452 format_bufr[format_pos] = '\0';
1453 (void)Debug1(format_bufr);
1454 format_pos = 0;
1457 /***************************************************************************
1458 Format the debug message text.
1460 Input: msg - Text to be added to the "current" debug message text.
1462 Output: none.
1464 Notes: The purpose of this is two-fold. First, each call to syslog()
1465 (used by Debug1(), see above) generates a new line of syslog
1466 output. This is fixed by storing the partial lines until the
1467 newline character is encountered. Second, printing the debug
1468 message lines when a newline is encountered allows us to add
1469 spaces, thus indenting the body of the message and making it
1470 more readable.
1471 **************************************************************************/
1473 static void format_debug_text( const char *msg )
1475 size_t i;
1476 bool timestamp = (state.logtype == DEBUG_FILE && (state.settings.timestamp_logs));
1478 debug_init();
1480 for( i = 0; msg[i]; i++ ) {
1481 /* Indent two spaces at each new line. */
1482 if(timestamp && 0 == format_pos) {
1483 format_bufr[0] = format_bufr[1] = ' ';
1484 format_pos = 2;
1487 /* If there's room, copy the character to the format buffer. */
1488 if (format_pos < FORMAT_BUFR_SIZE - 1)
1489 format_bufr[format_pos++] = msg[i];
1491 /* If a newline is encountered, print & restart. */
1492 if( '\n' == msg[i] )
1493 bufr_print();
1495 /* If the buffer is full dump it out, reset it, and put out a line
1496 * continuation indicator.
1498 if (format_pos >= FORMAT_BUFR_SIZE - 1) {
1499 bufr_print();
1500 (void)Debug1( " +>\n" );
1504 /* Just to be safe... */
1505 format_bufr[format_pos] = '\0';
1508 /***************************************************************************
1509 Flush debug output, including the format buffer content.
1511 Input: none
1512 Output: none
1513 ***************************************************************************/
1515 void dbgflush( void )
1517 bufr_print();
1520 bool dbgsetclass(int level, int cls)
1522 /* Set current_msg_level. */
1523 current_msg_level = level;
1525 /* Set current message class */
1526 current_msg_class = cls;
1528 return true;
1531 /***************************************************************************
1532 Print a Debug Header.
1534 Input: level - Debug level of the message (not the system-wide debug
1535 level. )
1536 cls - Debuglevel class of the calling module.
1537 location - Pointer to a string containing the name of the file
1538 from which this function was called, or an empty string
1539 if the __FILE__ macro is not implemented.
1540 func - Pointer to a string containing the name of the function
1541 from which this function was called, or an empty string
1542 if the __FUNCTION__ macro is not implemented.
1544 Output: Always true. This makes it easy to fudge a call to dbghdr()
1545 in a macro, since the function can be called as part of a test.
1546 Eg: ( (level <= DEBUGLEVEL) && (dbghdr(level,"",line)) )
1548 Notes: This function takes care of setting current_msg_level.
1550 ****************************************************************************/
1552 bool dbghdrclass(int level, int cls, const char *location, const char *func)
1554 /* Ensure we don't lose any real errno value. */
1555 int old_errno = errno;
1556 bool verbose = false;
1557 char header_str[300];
1558 size_t hs_len;
1559 struct timeval tv;
1560 struct timeval_buf tvbuf;
1562 if( format_pos ) {
1563 /* This is a fudge. If there is stuff sitting in the format_bufr, then
1564 * the *right* thing to do is to call
1565 * format_debug_text( "\n" );
1566 * to write the remainder, and then proceed with the new header.
1567 * Unfortunately, there are several places in the code at which
1568 * the DEBUG() macro is used to build partial lines. That in mind,
1569 * we'll work under the assumption that an incomplete line indicates
1570 * that a new header is *not* desired.
1572 return( true );
1575 dbgsetclass(level, cls);
1577 /* Don't print a header if we're logging to stdout. */
1578 if ( state.logtype != DEBUG_FILE ) {
1579 return( true );
1582 /* Print the header if timestamps are turned on. If parameters are
1583 * not yet loaded, then default to timestamps on.
1585 if (!(state.settings.timestamp_logs ||
1586 state.settings.debug_prefix_timestamp)) {
1587 return true;
1590 GetTimeOfDay(&tv);
1591 timeval_str_buf(&tv, false, state.settings.debug_hires_timestamp,
1592 &tvbuf);
1594 hs_len = snprintf(header_str, sizeof(header_str), "[%s, %2d",
1595 tvbuf.buf, level);
1596 if (hs_len >= sizeof(header_str)) {
1597 goto full;
1600 if (unlikely(dbgc_config[cls].loglevel >= 10)) {
1601 verbose = true;
1604 if (verbose || state.settings.debug_pid) {
1605 hs_len += snprintf(
1606 header_str + hs_len, sizeof(header_str) - hs_len,
1607 ", pid=%u", (unsigned int)getpid());
1608 if (hs_len >= sizeof(header_str)) {
1609 goto full;
1613 if (verbose || state.settings.debug_uid) {
1614 hs_len += snprintf(
1615 header_str + hs_len, sizeof(header_str) - hs_len,
1616 ", effective(%u, %u), real(%u, %u)",
1617 (unsigned int)geteuid(), (unsigned int)getegid(),
1618 (unsigned int)getuid(), (unsigned int)getgid());
1619 if (hs_len >= sizeof(header_str)) {
1620 goto full;
1624 if ((verbose || state.settings.debug_class)
1625 && (cls != DBGC_ALL)) {
1626 hs_len += snprintf(
1627 header_str + hs_len, sizeof(header_str) - hs_len,
1628 ", class=%s", classname_table[cls]);
1629 if (hs_len >= sizeof(header_str)) {
1630 goto full;
1635 * No +=, see man man strlcat
1637 hs_len = strlcat(header_str, "] ", sizeof(header_str));
1638 if (hs_len >= sizeof(header_str)) {
1639 goto full;
1642 if (!state.settings.debug_prefix_timestamp) {
1643 hs_len += snprintf(
1644 header_str + hs_len, sizeof(header_str) - hs_len,
1645 "%s(%s)\n", location, func);
1646 if (hs_len >= sizeof(header_str)) {
1647 goto full;
1651 full:
1652 (void)Debug1(header_str);
1654 errno = old_errno;
1655 return( true );
1658 /***************************************************************************
1659 Add text to the body of the "current" debug message via the format buffer.
1661 Input: format_str - Format string, as used in printf(), et. al.
1662 ... - Variable argument list.
1664 ..or.. va_alist - Old style variable parameter list starting point.
1666 Output: Always true. See dbghdr() for more info, though this is not
1667 likely to be used in the same way.
1669 ***************************************************************************/
1671 static inline bool __dbgtext_va(const char *format_str, va_list ap) PRINTF_ATTRIBUTE(1,0);
1672 static inline bool __dbgtext_va(const char *format_str, va_list ap)
1674 char *msgbuf = NULL;
1675 bool ret = true;
1676 int res;
1678 res = vasprintf(&msgbuf, format_str, ap);
1679 if (res != -1) {
1680 format_debug_text(msgbuf);
1681 } else {
1682 ret = false;
1684 SAFE_FREE(msgbuf);
1685 return ret;
1688 bool dbgtext_va(const char *format_str, va_list ap)
1690 return __dbgtext_va(format_str, ap);
1693 bool dbgtext(const char *format_str, ... )
1695 va_list ap;
1696 bool ret;
1698 va_start(ap, format_str);
1699 ret = __dbgtext_va(format_str, ap);
1700 va_end(ap);
1702 return ret;