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/>.
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"
30 #include "util_strlist.h" /* LIST_SEP */
34 /* define what facility to use for syslog */
35 #ifndef SYSLOG_FACILITY
36 #define SYSLOG_FACILITY LOG_DAEMON
39 /* -------------------------------------------------------------------------- **
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
86 /* state variables for the debug system */
89 enum debug_logtype logtype
; /* The type of logging we are doing: eg stdout, file, stderr */
90 const char *prog_name
;
92 bool schedule_reopen_logs
;
94 struct debug_settings settings
;
95 debug_callback_fn callback
;
96 void *callback_private
;
99 .timestamp_logs
= true
105 * The debug loglevel of the class.
110 * An optional class specific logfile, may be NULL in which case the
111 * "global" logfile is used and fd is -1.
117 static const char *default_classname_table
[] = {
120 [DBGC_PRINTDRIVERS
] = "printdrivers",
121 [DBGC_LANMAN
] = "lanman",
123 [DBGC_RPC_PARSE
] = "rpc_parse",
124 [DBGC_RPC_SRV
] = "rpc_srv",
125 [DBGC_RPC_CLI
] = "rpc_cli",
126 [DBGC_PASSDB
] = "passdb",
128 [DBGC_AUTH
] = "auth",
129 [DBGC_WINBIND
] = "winbind",
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",
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
[] = {
192 if( level
>= ARRAY_SIZE(priority_map
) || level
< 0)
193 priority
= LOG_DEBUG
;
195 priority
= priority_map
[level
];
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
)
214 if (dbgc_config
[current_msg_class
].fd
!= -1) {
215 fd
= dbgc_config
[current_msg_class
].fd
;
217 fd
= dbgc_config
[DBGC_ALL
].fd
;
221 ret
= write(fd
, msg
, strlen(msg
));
222 } while (ret
== -1 && errno
== EINTR
);
226 static void debug_syslog_reload(bool enabled
, bool previously_enabled
,
227 const char *prog_name
, char *option
)
229 if (enabled
&& !previously_enabled
) {
231 openlog(prog_name
, LOG_PID
, SYSLOG_FACILITY
);
233 /* for old systems that have no facility codes. */
234 openlog(prog_name
, LOG_PID
);
239 if (!enabled
&& previously_enabled
) {
244 static void debug_syslog_log(int msg_level
,
245 const char *msg
, const char *msg_no_nl
)
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
,
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
)
280 #endif /* WITH_LTTNG_TRACEF */
283 #include "gpfswrap.h"
284 static void debug_gpfs_reload(bool enabled
, bool previously_enabled
,
285 const char *prog_name
, char *option
)
289 if (enabled
&& !previously_enabled
) {
290 gpfswrap_init_trace();
294 if (!enabled
&& previously_enabled
) {
295 gpfswrap_fini_trace();
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
)
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
);
348 if (option
!= NULL
) {
349 cmp
= strncmp(option
, DEBUG_RINGBUF_SIZE_OPT
, optlen
);
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
) {
362 static void debug_ringbuf_log(int msg_level
,
364 const char *msg_no_nl
)
366 size_t msglen
= strlen(msg
);
369 if (debug_ringbuf
== NULL
) {
373 /* Ensure the buffer is always \0 terminated */
374 allowed_size
= debug_ringbuf_size
- 1;
376 if (msglen
> allowed_size
) {
380 if ((debug_ringbuf_ofs
+ msglen
) < debug_ringbuf_ofs
) {
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
{
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
);
400 } debug_backends
[] = {
403 .log
= debug_file_log
,
408 .reload
= debug_syslog_reload
,
409 .log
= debug_syslog_log
,
413 #if defined(HAVE_LIBSYSTEMD_JOURNAL) || defined(HAVE_LIBSYSTEMD)
416 .log
= debug_systemd_log
,
420 #ifdef HAVE_LTTNG_TRACEF
423 .log
= debug_lttng_log
,
430 .reload
= debug_gpfs_reload
,
431 .log
= debug_gpfs_log
,
436 .log
= debug_ringbuf_log
,
437 .reload
= debug_ringbuf_reload
,
441 static struct debug_backend
*debug_find_backend(const char *name
)
445 for (i
= 0; i
< ARRAY_SIZE(debug_backends
); i
++) {
446 if (strcmp(name
, debug_backends
[i
].name
) == 0) {
447 return &debug_backends
[i
];
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
) {
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
) {
481 backend_option
= strtok_r(NULL
, "\0", &saveptr
);
484 * Find and update backend
486 b
= debug_find_backend(backend_name
);
491 if (backend_level
== NULL
) {
492 b
->new_log_level
= MAX_DEBUG_LEVEL
;
494 b
->new_log_level
= atoi(backend_level
);
497 if (backend_option
!= NULL
) {
498 b
->option
= strdup(backend_option
);
499 if (b
->option
== NULL
) {
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
);
517 * initialize new_log_level to detect backends that have been
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
);
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
];
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
,
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
];
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')) {
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 /* -------------------------------------------------------------------------- **
641 static void debug_init(void);
643 /***************************************************************************
644 Free memory pointed to by global pointers.
645 ****************************************************************************/
647 void gfree_debugsyms(void)
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)
676 /* prepare strings */
677 for (i
= 0; i
< debug_num_classes
; i
++) {
678 buf
= talloc_asprintf_append(buf
,
681 dbgc_config
[i
].loglevel
,
682 i
== (debug_num_classes
- 1) ? "\n" : " ");
690 /****************************************************************************
691 Utility to translate names to debug class index's (internal version).
692 ****************************************************************************/
694 static int debug_lookup_classname_int(const char* classname
)
698 if (!classname
) return -1;
700 for (i
=0; i
< debug_num_classes
; i
++) {
701 if (strcmp(classname
, classname_table
[i
])==0)
707 /****************************************************************************
708 Add a new debug class to the system.
709 ****************************************************************************/
711 int debug_add_class(const char *classname
)
714 struct debug_class
*new_class_list
= NULL
;
715 char **new_name_list
;
718 if (classname
== NULL
) {
722 /* check the init has yet been called */
725 ndx
= debug_lookup_classname_int(classname
);
729 ndx
= debug_num_classes
;
731 if (dbgc_config
== debug_class_list_initial
) {
732 /* Initial loading... */
733 new_class_list
= NULL
;
735 new_class_list
= dbgc_config
;
738 default_level
= dbgc_config
[DBGC_ALL
].loglevel
;
740 new_class_list
= talloc_realloc(NULL
,
744 if (new_class_list
== NULL
) {
748 dbgc_config
= new_class_list
;
750 dbgc_config
[ndx
] = (struct debug_class
) {
751 .loglevel
= default_level
,
755 new_name_list
= talloc_realloc(NULL
, classname_table
, char *, ndx
+ 1);
756 if (new_name_list
== NULL
) {
759 classname_table
= new_name_list
;
761 classname_table
[ndx
] = talloc_strdup(classname_table
, classname
);
762 if (classname_table
[ndx
] == NULL
) {
766 debug_num_classes
= ndx
+ 1;
771 /****************************************************************************
772 Utility to translate names to debug class index's (public version).
773 ****************************************************************************/
775 static int debug_lookup_classname(const char *classname
)
779 if (!classname
|| !*classname
)
782 ndx
= debug_lookup_classname_int(classname
);
787 DEBUG(0, ("debug_lookup_classname(%s): Unknown class\n",
789 return debug_add_class(classname
);
792 /****************************************************************************
793 Dump the current registered debug levels.
794 ****************************************************************************/
796 static void debug_dump_status(int level
)
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",
805 dbgc_config
[q
].loglevel
));
809 static bool debug_parse_param(char *param
)
812 char *class_file
= NULL
;
814 char *saveptr
= NULL
;
817 class_name
= strtok_r(param
, ":", &saveptr
);
818 if (class_name
== NULL
) {
822 class_level
= strtok_r(NULL
, "@\0", &saveptr
);
823 if (class_level
== NULL
) {
827 class_file
= strtok_r(NULL
, "\0", &saveptr
);
829 ndx
= debug_lookup_classname(class_name
);
834 dbgc_config
[ndx
].loglevel
= atoi(class_level
);
836 if (class_file
== NULL
) {
840 TALLOC_FREE(dbgc_config
[ndx
].logfile
);
842 dbgc_config
[ndx
].logfile
= talloc_strdup(NULL
, class_file
);
843 if (dbgc_config
[ndx
].logfile
== NULL
) {
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
);
865 memcpy(str
, params_str
, str_len
+1);
867 tok
= strtok_r(str
, LIST_SEP
, &saveptr
);
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
);
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
) {
891 ok
= debug_parse_param(tok
);
893 DEBUG(0,("debug_parse_params: unrecognized debug "
894 "class name or format [%s]\n", tok
));
898 tok
= strtok_r(NULL
, LIST_SEP
, &saveptr
);
901 debug_dump_status(5);
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)
926 if (state
.initialized
)
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];
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
);
967 snprintf(fake_param
, sizeof(fake_param
),
968 "syslog@%d", syslog_level
- 1);
970 snprintf(fake_param
, sizeof(fake_param
),
971 "syslog@%d file@%d", syslog_level
-1,
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
)
994 if (state
.logtype
< new_logtype
) {
995 state
.logtype
= new_logtype
;
998 const char *p
= strrchr(prog_name
, '/');
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 */
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
)
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
)
1044 state
.logtype
= DEBUG_CALLBACK
;
1045 state
.callback_private
= private_ptr
;
1046 state
.callback
= fn
;
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';
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
)
1081 if (logfile
== NULL
) {
1082 debug_close_fd(old_fd
);
1087 new_fd
= open(logfile
, O_WRONLY
|O_APPEND
|O_CREAT
, 0644);
1089 log_overflow
= true;
1090 DBG_ERR("Unable to open new log file '%s': %s\n",
1091 logfile
, strerror(errno
));
1092 log_overflow
= false;
1096 debug_close_fd(old_fd
);
1097 smb_set_close_on_exec(new_fd
);
1104 reopen the log file (usually called because the log file name might have changed)
1106 bool reopen_logs_internal(void)
1113 if (state
.reopening_logs
) {
1117 /* Now clear the SIGHUP induced flag */
1118 state
.schedule_reopen_logs
= false;
1120 switch (state
.logtype
) {
1121 case DEBUG_CALLBACK
:
1124 case DEBUG_DEFAULT_STDOUT
:
1125 debug_close_fd(dbgc_config
[DBGC_ALL
].fd
);
1126 dbgc_config
[DBGC_ALL
].fd
= 1;
1129 case DEBUG_DEFAULT_STDERR
:
1131 debug_close_fd(dbgc_config
[DBGC_ALL
].fd
);
1132 dbgc_config
[DBGC_ALL
].fd
= 2;
1139 oldumask
= umask( 022 );
1141 for (i
= DBGC_ALL
; i
< debug_num_classes
; i
++) {
1142 if (dbgc_config
[DBGC_ALL
].logfile
!= NULL
) {
1146 if (i
== debug_num_classes
) {
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
);
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.
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
1181 state
.reopening_logs
= false;
1186 /**************************************************************************
1187 Force a check of the log size.
1188 ***************************************************************************/
1190 void force_check_log_size( void )
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)
1210 if (debug_count
< 100) {
1214 maxlog
= state
.settings
.max_log_size
* 1024;
1220 if (dbgc_config
[DBGC_ALL
].fd
> 2) {
1224 for (i
= DBGC_ALL
+ 1; i
< debug_num_classes
; i
++) {
1225 if (dbgc_config
[i
].fd
!= -1) {
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];
1250 ret
= fstat(fd
, &st
);
1254 if (st
.st_size
< maxlog
) {
1258 /* reopen_logs_internal() modifies *_fd */
1259 (void)reopen_logs_internal();
1265 ret
= fstat(fd
, &st
);
1269 if (st
.st_size
< maxlog
) {
1273 snprintf(name
, sizeof(name
), "%s.old", logfile
);
1275 (void)rename(logfile
, name
);
1277 ok
= reopen_logs_internal();
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
)
1289 for (i
= DBGC_ALL
; i
< debug_num_classes
; i
++) {
1290 if (dbgc_config
[i
].fd
== -1) {
1293 if (dbgc_config
[i
].logfile
== NULL
) {
1296 do_one_check_log_size(maxlog
,
1298 dbgc_config
[i
].logfile
);
1302 void check_log_size( void )
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())
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 */
1324 if(log_overflow
|| (!state
.schedule_reopen_logs
&& !need_to_check_log_size())) {
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
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.
1349 int fd
= open( "/dev/console", O_WRONLY
, 0);
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
);
1358 * We cannot continue without a debug file handle.
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
;
1377 switch(state
.logtype
) {
1378 case DEBUG_CALLBACK
:
1379 debug_callback_log(msg
, current_msg_level
);
1383 case DEBUG_DEFAULT_STDOUT
:
1384 case DEBUG_DEFAULT_STDERR
:
1385 if (dbgc_config
[DBGC_ALL
].fd
> 0) {
1388 ret
= write(dbgc_config
[DBGC_ALL
].fd
,
1391 } while (ret
== -1 && errno
== EINTR
);
1395 debug_backends_log(msg
, current_msg_level
);
1402 /**************************************************************************
1403 Print the buffer content via Debug1(), then reset the buffer.
1406 ****************************************************************************/
1408 static void bufr_print( void )
1410 format_bufr
[format_pos
] = '\0';
1411 (void)Debug1(format_bufr
);
1415 /***************************************************************************
1416 Format the debug message text.
1418 Input: msg - Text to be added to the "current" debug message text.
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
1429 **************************************************************************/
1431 static void format_debug_text( const char *msg
)
1434 bool timestamp
= (state
.logtype
== DEBUG_FILE
&& (state
.settings
.timestamp_logs
));
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] = ' ';
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
] )
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) {
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.
1471 ***************************************************************************/
1473 void dbgflush( void )
1478 /***************************************************************************
1479 Print a Debug Header.
1481 Input: level - Debug level of the message (not the system-wide debug
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];
1507 struct timeval_buf tvbuf
;
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.
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
) {
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
)) {
1542 timeval_str_buf(&tv
, false, state
.settings
.debug_hires_timestamp
,
1545 hs_len
= snprintf(header_str
, sizeof(header_str
), "[%s, %2d",
1547 if (hs_len
>= sizeof(header_str
)) {
1551 if (unlikely(dbgc_config
[cls
].loglevel
>= 10)) {
1555 if (verbose
|| state
.settings
.debug_pid
) {
1557 header_str
+ hs_len
, sizeof(header_str
) - hs_len
,
1558 ", pid=%u", (unsigned int)getpid());
1559 if (hs_len
>= sizeof(header_str
)) {
1564 if (verbose
|| state
.settings
.debug_uid
) {
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
)) {
1575 if ((verbose
|| state
.settings
.debug_class
)
1576 && (cls
!= DBGC_ALL
)) {
1578 header_str
+ hs_len
, sizeof(header_str
) - hs_len
,
1579 ", class=%s", classname_table
[cls
]);
1580 if (hs_len
>= sizeof(header_str
)) {
1586 * No +=, see man man strlcat
1588 hs_len
= strlcat(header_str
, "] ", sizeof(header_str
));
1589 if (hs_len
>= sizeof(header_str
)) {
1593 if (!state
.settings
.debug_prefix_timestamp
) {
1595 header_str
+ hs_len
, sizeof(header_str
) - hs_len
,
1596 "%s(%s)\n", location
, func
);
1597 if (hs_len
>= sizeof(header_str
)) {
1603 (void)Debug1(header_str
);
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
;
1629 res
= vasprintf(&msgbuf
, format_str
, ap
);
1631 format_debug_text(msgbuf
);
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
, ... )
1649 va_start(ap
, format_str
);
1650 ret
= __dbgtext_va(format_str
, ap
);