librpc: Shorten dcerpc_binding_handle_call a bit
[Samba/gebeck_regimport.git] / lib / util / debug.c
blob34aa76fb5c9eef04bed3132f79326a6a852bf61b
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 "includes.h"
23 #include "system/filesys.h"
24 #include "system/syslog.h"
25 #include "lib/util/time.h"
27 /* define what facility to use for syslog */
28 #ifndef SYSLOG_FACILITY
29 #define SYSLOG_FACILITY LOG_DAEMON
30 #endif
32 /* -------------------------------------------------------------------------- **
33 * Defines...
35 * FORMAT_BUFR_MAX - Index of the last byte of the format buffer;
36 * format_bufr[FORMAT_BUFR_MAX] should always be reserved
37 * for a terminating null byte.
40 #define FORMAT_BUFR_SIZE 1024
41 #define FORMAT_BUFR_MAX (FORMAT_BUFR_SIZE - 1)
43 /* -------------------------------------------------------------------------- **
44 * This module implements Samba's debugging utility.
46 * The syntax of a debugging log file is represented as:
48 * <debugfile> :== { <debugmsg> }
50 * <debugmsg> :== <debughdr> '\n' <debugtext>
52 * <debughdr> :== '[' TIME ',' LEVEL ']' [ [FILENAME ':'] [FUNCTION '()'] ]
54 * <debugtext> :== { <debugline> }
56 * <debugline> :== TEXT '\n'
58 * TEXT is a string of characters excluding the newline character.
59 * LEVEL is the DEBUG level of the message (an integer in the range 0..10).
60 * TIME is a timestamp.
61 * FILENAME is the name of the file from which the debug message was generated.
62 * FUNCTION is the function from which the debug message was generated.
64 * Basically, what that all means is:
66 * - A debugging log file is made up of debug messages.
68 * - Each debug message is made up of a header and text. The header is
69 * separated from the text by a newline.
71 * - The header begins with the timestamp and debug level of the message
72 * enclosed in brackets. The filename and function from which the
73 * message was generated may follow. The filename is terminated by a
74 * colon, and the function name is terminated by parenthesis.
76 * - The message text is made up of zero or more lines, each terminated by
77 * a newline.
80 /* state variables for the debug system */
81 static struct {
82 bool initialized;
83 int fd; /* The log file handle */
84 enum debug_logtype logtype; /* The type of logging we are doing: eg stdout, file, stderr */
85 const char *prog_name;
86 bool reopening_logs;
87 bool schedule_reopen_logs;
89 struct debug_settings settings;
90 char *debugf;
91 debug_callback_fn callback;
92 void *callback_private;
93 } state = {
94 .settings = {
95 .timestamp_logs = true
97 .fd = 2 /* stderr by default */
100 /* -------------------------------------------------------------------------- **
101 * External variables.
103 * debugf - Debug file name.
104 * DEBUGLEVEL - System-wide debug message limit. Messages with message-
105 * levels higher than DEBUGLEVEL will not be processed.
109 used to check if the user specified a
110 logfile on the command line
112 bool override_logfile;
115 * This is to allow reading of DEBUGLEVEL_CLASS before the debug
116 * system has been initialized.
118 static const int debug_class_list_initial[DBGC_MAX_FIXED + 1];
120 static int debug_num_classes = 0;
121 int *DEBUGLEVEL_CLASS = discard_const_p(int, debug_class_list_initial);
124 /* -------------------------------------------------------------------------- **
125 * Internal variables.
127 * debug_count - Number of debug messages that have been output.
128 * Used to check log size.
130 * current_msg_level - Internal copy of the message debug level. Written by
131 * dbghdr() and read by Debug1().
133 * format_bufr - Used to format debug messages. The dbgtext() function
134 * prints debug messages to a string, and then passes the
135 * string to format_debug_text(), which uses format_bufr
136 * to build the formatted output.
138 * format_pos - Marks the first free byte of the format_bufr.
141 * log_overflow - When this variable is true, never attempt to check the
142 * size of the log. This is a hack, so that we can write
143 * a message using DEBUG, from open_logs() when we
144 * are unable to open a new log file for some reason.
147 static int debug_count = 0;
148 static int current_msg_level = 0;
149 static char *format_bufr = NULL;
150 static size_t format_pos = 0;
151 static bool log_overflow = false;
154 * Define all the debug class selection names here. Names *MUST NOT* contain
155 * white space. There must be one name for each DBGC_<class name>, and they
156 * must be in the table in the order of DBGC_<class name>..
158 static const char *default_classname_table[] = {
159 "all", /* DBGC_ALL; index refs traditional DEBUGLEVEL */
160 "tdb", /* DBGC_TDB */
161 "printdrivers", /* DBGC_PRINTDRIVERS */
162 "lanman", /* DBGC_LANMAN */
163 "smb", /* DBGC_SMB */
164 "rpc_parse", /* DBGC_RPC_PARSE */
165 "rpc_srv", /* DBGC_RPC_SRV */
166 "rpc_cli", /* DBGC_RPC_CLI */
167 "passdb", /* DBGC_PASSDB */
168 "sam", /* DBGC_SAM */
169 "auth", /* DBGC_AUTH */
170 "winbind", /* DBGC_WINBIND */
171 "vfs", /* DBGC_VFS */
172 "idmap", /* DBGC_IDMAP */
173 "quota", /* DBGC_QUOTA */
174 "acls", /* DBGC_ACLS */
175 "locking", /* DBGC_LOCKING */
176 "msdfs", /* DBGC_MSDFS */
177 "dmapi", /* DBGC_DMAPI */
178 "registry", /* DBGC_REGISTRY */
179 "scavenger", /* DBGC_SCAVENGER */
180 "dns", /* DBGC_DNS */
181 NULL
184 static char **classname_table = NULL;
187 /* -------------------------------------------------------------------------- **
188 * Functions...
191 static void debug_init(void);
193 /***************************************************************************
194 Free memory pointed to by global pointers.
195 ****************************************************************************/
197 void gfree_debugsyms(void)
199 TALLOC_FREE(classname_table);
201 if ( DEBUGLEVEL_CLASS != debug_class_list_initial ) {
202 TALLOC_FREE( DEBUGLEVEL_CLASS );
203 DEBUGLEVEL_CLASS = discard_const_p(int, debug_class_list_initial);
206 TALLOC_FREE(format_bufr);
208 debug_num_classes = 0;
210 state.initialized = false;
213 /****************************************************************************
214 utility lists registered debug class names's
215 ****************************************************************************/
217 char *debug_list_class_names_and_levels(void)
219 char *buf = NULL;
220 unsigned int i;
221 /* prepare strings */
222 for (i = 0; i < debug_num_classes; i++) {
223 buf = talloc_asprintf_append(buf,
224 "%s:%d%s",
225 classname_table[i],
226 DEBUGLEVEL_CLASS[i],
227 i == (debug_num_classes - 1) ? "\n" : " ");
228 if (buf == NULL) {
229 return NULL;
232 return buf;
235 /****************************************************************************
236 Utility to translate names to debug class index's (internal version).
237 ****************************************************************************/
239 static int debug_lookup_classname_int(const char* classname)
241 int i;
243 if (!classname) return -1;
245 for (i=0; i < debug_num_classes; i++) {
246 if (strcmp(classname, classname_table[i])==0)
247 return i;
249 return -1;
252 /****************************************************************************
253 Add a new debug class to the system.
254 ****************************************************************************/
256 int debug_add_class(const char *classname)
258 int ndx;
259 int *new_class_list;
260 char **new_name_list;
261 int default_level;
263 if (!classname)
264 return -1;
266 /* check the init has yet been called */
267 debug_init();
269 ndx = debug_lookup_classname_int(classname);
270 if (ndx >= 0)
271 return ndx;
272 ndx = debug_num_classes;
274 if (DEBUGLEVEL_CLASS == debug_class_list_initial) {
275 /* Initial loading... */
276 new_class_list = NULL;
277 } else {
278 new_class_list = DEBUGLEVEL_CLASS;
281 default_level = DEBUGLEVEL_CLASS[DBGC_ALL];
283 new_class_list = talloc_realloc(NULL, new_class_list, int, ndx + 1);
284 if (!new_class_list)
285 return -1;
286 DEBUGLEVEL_CLASS = new_class_list;
288 DEBUGLEVEL_CLASS[ndx] = default_level;
290 new_name_list = talloc_realloc(NULL, classname_table, char *, ndx + 1);
291 if (!new_name_list)
292 return -1;
293 classname_table = new_name_list;
295 classname_table[ndx] = talloc_strdup(classname_table, classname);
296 if (! classname_table[ndx])
297 return -1;
299 debug_num_classes = ndx + 1;
301 return ndx;
304 /****************************************************************************
305 Utility to translate names to debug class index's (public version).
306 ****************************************************************************/
308 int debug_lookup_classname(const char *classname)
310 int ndx;
312 if (!classname || !*classname)
313 return -1;
315 ndx = debug_lookup_classname_int(classname);
317 if (ndx != -1)
318 return ndx;
320 DEBUG(0, ("debug_lookup_classname(%s): Unknown class\n",
321 classname));
322 return debug_add_class(classname);
325 /****************************************************************************
326 Dump the current registered debug levels.
327 ****************************************************************************/
329 static void debug_dump_status(int level)
331 int q;
333 DEBUG(level, ("INFO: Current debug levels:\n"));
334 for (q = 0; q < debug_num_classes; q++) {
335 const char *classname = classname_table[q];
336 DEBUGADD(level, (" %s: %d\n",
337 classname,
338 DEBUGLEVEL_CLASS[q]));
342 /****************************************************************************
343 parse the debug levels from smbcontrol. Example debug level parameter:
344 printdrivers:7
345 ****************************************************************************/
347 static bool debug_parse_params(char **params)
349 int i, ndx;
350 char *class_name;
351 char *class_level;
353 if (!params)
354 return false;
356 /* Allow DBGC_ALL to be specified w/o requiring its class name e.g."10"
357 * v.s. "all:10", this is the traditional way to set DEBUGLEVEL
359 if (isdigit((int)params[0][0])) {
360 DEBUGLEVEL_CLASS[DBGC_ALL] = atoi(params[0]);
361 i = 1; /* start processing at the next params */
362 } else {
363 DEBUGLEVEL_CLASS[DBGC_ALL] = 0;
364 i = 0; /* DBGC_ALL not specified OR class name was included */
367 /* Array is debug_num_classes long */
368 for (ndx = DBGC_ALL; ndx < debug_num_classes; ndx++) {
369 DEBUGLEVEL_CLASS[ndx] = DEBUGLEVEL_CLASS[DBGC_ALL];
372 /* Fill in new debug class levels */
373 for (; i < debug_num_classes && params[i]; i++) {
374 char *saveptr;
375 if ((class_name = strtok_r(params[i],":", &saveptr)) &&
376 (class_level = strtok_r(NULL, "\0", &saveptr)) &&
377 ((ndx = debug_lookup_classname(class_name)) != -1)) {
378 DEBUGLEVEL_CLASS[ndx] = atoi(class_level);
379 } else {
380 DEBUG(0,("debug_parse_params: unrecognized debug class name or format [%s]\n", params[i]));
381 return false;
385 return true;
388 /****************************************************************************
389 Parse the debug levels from smb.conf. Example debug level string:
390 3 tdb:5 printdrivers:7
391 Note: the 1st param has no "name:" preceeding it.
392 ****************************************************************************/
394 bool debug_parse_levels(const char *params_str)
396 char **params;
398 /* Just in case */
399 debug_init();
401 params = str_list_make(NULL, params_str, NULL);
403 if (debug_parse_params(params)) {
404 debug_dump_status(5);
405 TALLOC_FREE(params);
406 return true;
407 } else {
408 TALLOC_FREE(params);
409 return false;
413 /* setup for logging of talloc warnings */
414 static void talloc_log_fn(const char *msg)
416 DEBUG(0,("%s", msg));
419 void debug_setup_talloc_log(void)
421 talloc_set_log_fn(talloc_log_fn);
425 /****************************************************************************
426 Init debugging (one time stuff)
427 ****************************************************************************/
429 static void debug_init(void)
431 const char **p;
433 if (state.initialized)
434 return;
436 state.initialized = true;
438 debug_setup_talloc_log();
440 for(p = default_classname_table; *p; p++) {
441 debug_add_class(*p);
443 format_bufr = talloc_array(NULL, char, FORMAT_BUFR_SIZE);
444 if (!format_bufr) {
445 smb_panic("debug_init: unable to create buffer");
449 /* This forces in some smb.conf derived values into the debug system.
450 * There are no pointers in this structure, so we can just
451 * structure-assign it in */
452 void debug_set_settings(struct debug_settings *settings)
454 state.settings = *settings;
458 control the name of the logfile and whether logging will be to stdout, stderr
459 or a file, and set up syslog
461 new_log indicates the destination for the debug log (an enum in
462 order of precedence - once set to DEBUG_FILE, it is not possible to
463 reset to DEBUG_STDOUT for example. This makes it easy to override
464 for debug to stderr on the command line, as the smb.conf cannot
465 reset it back to file-based logging
467 void setup_logging(const char *prog_name, enum debug_logtype new_logtype)
469 debug_init();
470 if (state.logtype < new_logtype) {
471 state.logtype = new_logtype;
473 if (prog_name) {
474 state.prog_name = prog_name;
476 reopen_logs_internal();
478 if (state.logtype == DEBUG_FILE) {
479 #ifdef WITH_SYSLOG
480 const char *p = strrchr_m( prog_name,'/' );
481 if (p)
482 prog_name = p + 1;
483 #ifdef LOG_DAEMON
484 openlog( prog_name, LOG_PID, SYSLOG_FACILITY );
485 #else
486 /* for old systems that have no facility codes. */
487 openlog( prog_name, LOG_PID );
488 #endif
489 #endif
493 /***************************************************************************
494 Set the logfile name.
495 **************************************************************************/
497 void debug_set_logfile(const char *name)
499 if (name == NULL || *name == 0) {
500 /* this copes with calls when smb.conf is not loaded yet */
501 return;
503 TALLOC_FREE(state.debugf);
504 state.debugf = talloc_strdup(NULL, name);
507 static void debug_close_fd(int fd)
509 if (fd > 2) {
510 close(fd);
514 bool debug_get_output_is_stderr(void)
516 return (state.logtype == DEBUG_DEFAULT_STDERR) || (state.logtype == DEBUG_STDERR);
519 bool debug_get_output_is_stdout(void)
521 return (state.logtype == DEBUG_DEFAULT_STDOUT) || (state.logtype == DEBUG_STDOUT);
524 void debug_set_callback(void *private_ptr, debug_callback_fn fn)
526 debug_init();
527 if (fn) {
528 state.logtype = DEBUG_CALLBACK;
529 state.callback_private = private_ptr;
530 state.callback = fn;
531 } else {
532 state.logtype = DEBUG_DEFAULT_STDERR;
533 state.callback_private = NULL;
534 state.callback = NULL;
538 /**************************************************************************
539 reopen the log files
540 note that we now do this unconditionally
541 We attempt to open the new debug fp before closing the old. This means
542 if we run out of fd's we just keep using the old fd rather than aborting.
543 Fix from dgibson@linuxcare.com.
544 **************************************************************************/
547 reopen the log file (usually called because the log file name might have changed)
549 bool reopen_logs_internal(void)
551 mode_t oldumask;
552 int new_fd = 0;
553 int old_fd = 0;
554 bool ret = true;
556 if (state.reopening_logs) {
557 return true;
560 /* Now clear the SIGHUP induced flag */
561 state.schedule_reopen_logs = false;
563 switch (state.logtype) {
564 case DEBUG_CALLBACK:
565 return true;
566 case DEBUG_STDOUT:
567 case DEBUG_DEFAULT_STDOUT:
568 debug_close_fd(state.fd);
569 state.fd = 1;
570 return true;
572 case DEBUG_DEFAULT_STDERR:
573 case DEBUG_STDERR:
574 debug_close_fd(state.fd);
575 state.fd = 2;
576 return true;
578 case DEBUG_FILE:
579 break;
582 oldumask = umask( 022 );
584 if (!state.debugf) {
585 return false;
588 state.reopening_logs = true;
590 new_fd = open( state.debugf, O_WRONLY|O_APPEND|O_CREAT, 0644);
592 if (new_fd == -1) {
593 log_overflow = true;
594 DEBUG(0, ("Unable to open new log file '%s': %s\n", state.debugf, strerror(errno)));
595 log_overflow = false;
596 ret = false;
597 } else {
598 old_fd = state.fd;
599 state.fd = new_fd;
600 debug_close_fd(old_fd);
603 /* Fix from klausr@ITAP.Physik.Uni-Stuttgart.De
604 * to fix problem where smbd's that generate less
605 * than 100 messages keep growing the log.
607 force_check_log_size();
608 (void)umask(oldumask);
610 /* Take over stderr to catch output into logs */
611 if (state.fd > 0) {
612 if (dup2(state.fd, 2) == -1) {
613 /* Close stderr too, if dup2 can't point it -
614 at the logfile. There really isn't much
615 that can be done on such a fundemental
616 failure... */
617 close_low_fds(false, false, true);
621 state.reopening_logs = false;
623 return ret;
626 /**************************************************************************
627 Force a check of the log size.
628 ***************************************************************************/
630 void force_check_log_size( void )
632 debug_count = 100;
635 _PUBLIC_ void debug_schedule_reopen_logs(void)
637 state.schedule_reopen_logs = true;
641 /***************************************************************************
642 Check to see if there is any need to check if the logfile has grown too big.
643 **************************************************************************/
645 bool need_to_check_log_size( void )
647 int maxlog;
649 if( debug_count < 100)
650 return( false );
652 maxlog = state.settings.max_log_size * 1024;
653 if ( state.fd <=2 || maxlog <= 0 ) {
654 debug_count = 0;
655 return(false);
657 return( true );
660 /**************************************************************************
661 Check to see if the log has grown to be too big.
662 **************************************************************************/
664 void check_log_size( void )
666 int maxlog;
667 struct stat st;
670 * We need to be root to check/change log-file, skip this and let the main
671 * loop check do a new check as root.
674 #if _SAMBA_BUILD_ == 3
675 if (geteuid() != sec_initial_uid())
676 #else
677 if( geteuid() != 0)
678 #endif
680 /* We don't check sec_initial_uid() here as it isn't
681 * available in common code and we don't generally
682 * want to rotate and the possibly lose logs in
683 * make test or the build farm */
684 return;
687 if(log_overflow || (!state.schedule_reopen_logs && !need_to_check_log_size())) {
688 return;
691 maxlog = state.settings.max_log_size * 1024;
693 if (state.schedule_reopen_logs) {
694 (void)reopen_logs_internal();
697 if (maxlog && (fstat(state.fd, &st) == 0
698 && st.st_size > maxlog )) {
699 (void)reopen_logs_internal();
700 if (state.fd > 2 && (fstat(state.fd, &st) == 0
701 && st.st_size > maxlog)) {
702 char *name = NULL;
704 if (asprintf(&name, "%s.old", state.debugf ) < 0) {
705 return;
707 (void)rename(state.debugf, name);
709 if (!reopen_logs_internal()) {
710 /* We failed to reopen a log - continue using the old name. */
711 (void)rename(name, state.debugf);
713 SAFE_FREE(name);
718 * Here's where we need to panic if state.fd == 0 or -1 (invalid values)
721 if (state.fd <= 0) {
722 /* This code should only be reached in very strange
723 * circumstances. If we merely fail to open the new log we
724 * should stick with the old one. ergo this should only be
725 * reached when opening the logs for the first time: at
726 * startup or when the log level is increased from zero.
727 * -dwg 6 June 2000
729 int fd = open( "/dev/console", O_WRONLY, 0);
730 if (fd != -1) {
731 state.fd = fd;
732 DEBUG(0,("check_log_size: open of debug file %s failed - using console.\n",
733 state.debugf ));
734 } else {
736 * We cannot continue without a debug file handle.
738 abort();
741 debug_count = 0;
744 /*************************************************************************
745 Write an debug message on the debugfile.
746 This is called by dbghdr() and format_debug_text().
747 ************************************************************************/
749 int Debug1( const char *format_str, ... )
751 va_list ap;
752 int old_errno = errno;
754 debug_count++;
756 if (state.logtype == DEBUG_CALLBACK) {
757 char *msg;
758 int ret;
759 va_start( ap, format_str );
760 ret = vasprintf( &msg, format_str, ap );
761 if (ret != -1) {
762 if (msg[ret - 1] == '\n') {
763 msg[ret - 1] = '\0';
765 state.callback(state.callback_private, current_msg_level, msg);
766 free(msg);
768 va_end( ap );
770 goto done;
772 } else if ( state.logtype != DEBUG_FILE ) {
773 va_start( ap, format_str );
774 if (state.fd > 0)
775 (void)vdprintf( state.fd, format_str, ap );
776 va_end( ap );
777 errno = old_errno;
778 goto done;
781 #ifdef WITH_SYSLOG
782 if( !state.settings.syslog_only)
783 #endif
785 if( state.fd <= 0 ) {
786 mode_t oldumask = umask( 022 );
787 int fd = open( state.debugf, O_WRONLY|O_APPEND|O_CREAT, 0644 );
788 (void)umask( oldumask );
789 if(fd == -1) {
790 errno = old_errno;
791 goto done;
793 state.fd = fd;
798 #ifdef WITH_SYSLOG
799 if( current_msg_level < state.settings.syslog ) {
800 /* map debug levels to syslog() priorities
801 * note that not all DEBUG(0, ...) calls are
802 * necessarily errors */
803 static const int priority_map[4] = {
804 LOG_ERR, /* 0 */
805 LOG_WARNING, /* 1 */
806 LOG_NOTICE, /* 2 */
807 LOG_INFO, /* 3 */
809 int priority;
810 char *msgbuf = NULL;
811 int ret;
813 if( current_msg_level >= ARRAY_SIZE(priority_map) || current_msg_level < 0)
814 priority = LOG_DEBUG;
815 else
816 priority = priority_map[current_msg_level];
819 * Specify the facility to interoperate with other syslog
820 * callers (vfs_full_audit for example).
822 priority |= SYSLOG_FACILITY;
824 va_start(ap, format_str);
825 ret = vasprintf(&msgbuf, format_str, ap);
826 va_end(ap);
828 if (ret != -1) {
829 syslog(priority, "%s", msgbuf);
831 SAFE_FREE(msgbuf);
833 #endif
835 check_log_size();
837 #ifdef WITH_SYSLOG
838 if( !state.settings.syslog_only)
839 #endif
841 va_start( ap, format_str );
842 if (state.fd > 0)
843 (void)vdprintf( state.fd, format_str, ap );
844 va_end( ap );
847 done:
848 errno = old_errno;
850 return( 0 );
854 /**************************************************************************
855 Print the buffer content via Debug1(), then reset the buffer.
856 Input: none
857 Output: none
858 ****************************************************************************/
860 static void bufr_print( void )
862 format_bufr[format_pos] = '\0';
863 (void)Debug1( "%s", format_bufr );
864 format_pos = 0;
867 /***************************************************************************
868 Format the debug message text.
870 Input: msg - Text to be added to the "current" debug message text.
872 Output: none.
874 Notes: The purpose of this is two-fold. First, each call to syslog()
875 (used by Debug1(), see above) generates a new line of syslog
876 output. This is fixed by storing the partial lines until the
877 newline character is encountered. Second, printing the debug
878 message lines when a newline is encountered allows us to add
879 spaces, thus indenting the body of the message and making it
880 more readable.
881 **************************************************************************/
883 static void format_debug_text( const char *msg )
885 size_t i;
886 bool timestamp = (state.logtype == DEBUG_FILE && (state.settings.timestamp_logs));
888 if (!format_bufr) {
889 debug_init();
892 for( i = 0; msg[i]; i++ ) {
893 /* Indent two spaces at each new line. */
894 if(timestamp && 0 == format_pos) {
895 format_bufr[0] = format_bufr[1] = ' ';
896 format_pos = 2;
899 /* If there's room, copy the character to the format buffer. */
900 if( format_pos < FORMAT_BUFR_MAX )
901 format_bufr[format_pos++] = msg[i];
903 /* If a newline is encountered, print & restart. */
904 if( '\n' == msg[i] )
905 bufr_print();
907 /* If the buffer is full dump it out, reset it, and put out a line
908 * continuation indicator.
910 if( format_pos >= FORMAT_BUFR_MAX ) {
911 bufr_print();
912 (void)Debug1( " +>\n" );
916 /* Just to be safe... */
917 format_bufr[format_pos] = '\0';
920 /***************************************************************************
921 Flush debug output, including the format buffer content.
923 Input: none
924 Output: none
925 ***************************************************************************/
927 void dbgflush( void )
929 bufr_print();
932 /***************************************************************************
933 Print a Debug Header.
935 Input: level - Debug level of the message (not the system-wide debug
936 level. )
937 cls - Debuglevel class of the calling module.
938 file - Pointer to a string containing the name of the file
939 from which this function was called, or an empty string
940 if the __FILE__ macro is not implemented.
941 func - Pointer to a string containing the name of the function
942 from which this function was called, or an empty string
943 if the __FUNCTION__ macro is not implemented.
944 line - line number of the call to dbghdr, assuming __LINE__
945 works.
947 Output: Always true. This makes it easy to fudge a call to dbghdr()
948 in a macro, since the function can be called as part of a test.
949 Eg: ( (level <= DEBUGLEVEL) && (dbghdr(level,"",line)) )
951 Notes: This function takes care of setting current_msg_level.
953 ****************************************************************************/
955 bool dbghdrclass(int level, int cls, const char *location, const char *func)
957 /* Ensure we don't lose any real errno value. */
958 int old_errno = errno;
960 if( format_pos ) {
961 /* This is a fudge. If there is stuff sitting in the format_bufr, then
962 * the *right* thing to do is to call
963 * format_debug_text( "\n" );
964 * to write the remainder, and then proceed with the new header.
965 * Unfortunately, there are several places in the code at which
966 * the DEBUG() macro is used to build partial lines. That in mind,
967 * we'll work under the assumption that an incomplete line indicates
968 * that a new header is *not* desired.
970 return( true );
973 /* Set current_msg_level. */
974 current_msg_level = level;
976 /* Don't print a header if we're logging to stdout. */
977 if ( state.logtype != DEBUG_FILE ) {
978 return( true );
981 /* Print the header if timestamps are turned on. If parameters are
982 * not yet loaded, then default to timestamps on.
984 if( state.settings.timestamp_logs || state.settings.debug_prefix_timestamp) {
985 bool verbose = false;
986 char header_str[200];
988 header_str[0] = '\0';
990 if (unlikely(DEBUGLEVEL_CLASS[ cls ] >= 10)) {
991 verbose = true;
994 if (verbose || state.settings.debug_pid)
995 slprintf(header_str,sizeof(header_str)-1,", pid=%u",(unsigned int)getpid());
997 if (verbose || state.settings.debug_uid) {
998 size_t hs_len = strlen(header_str);
999 slprintf(header_str + hs_len,
1000 sizeof(header_str) - 1 - hs_len,
1001 ", effective(%u, %u), real(%u, %u)",
1002 (unsigned int)geteuid(), (unsigned int)getegid(),
1003 (unsigned int)getuid(), (unsigned int)getgid());
1006 if ((verbose || state.settings.debug_class)
1007 && (cls != DBGC_ALL)) {
1008 size_t hs_len = strlen(header_str);
1009 slprintf(header_str + hs_len,
1010 sizeof(header_str) -1 - hs_len,
1011 ", class=%s",
1012 classname_table[cls]);
1015 /* Print it all out at once to prevent split syslog output. */
1016 if( state.settings.debug_prefix_timestamp ) {
1017 char *time_str = current_timestring(NULL,
1018 state.settings.debug_hires_timestamp);
1019 (void)Debug1( "[%s, %2d%s] ",
1020 time_str,
1021 level, header_str);
1022 talloc_free(time_str);
1023 } else {
1024 char *time_str = current_timestring(NULL,
1025 state.settings.debug_hires_timestamp);
1026 (void)Debug1( "[%s, %2d%s] %s(%s)\n",
1027 time_str,
1028 level, header_str, location, func );
1029 talloc_free(time_str);
1033 errno = old_errno;
1034 return( true );
1037 /***************************************************************************
1038 Add text to the body of the "current" debug message via the format buffer.
1040 Input: format_str - Format string, as used in printf(), et. al.
1041 ... - Variable argument list.
1043 ..or.. va_alist - Old style variable parameter list starting point.
1045 Output: Always true. See dbghdr() for more info, though this is not
1046 likely to be used in the same way.
1048 ***************************************************************************/
1050 bool dbgtext( const char *format_str, ... )
1052 va_list ap;
1053 char *msgbuf = NULL;
1054 bool ret = true;
1055 int res;
1057 va_start(ap, format_str);
1058 res = vasprintf(&msgbuf, format_str, ap);
1059 va_end(ap);
1061 if (res != -1) {
1062 format_debug_text(msgbuf);
1063 } else {
1064 ret = false;
1066 SAFE_FREE(msgbuf);
1067 return ret;
1071 /* the registered mutex handlers */
1072 static struct {
1073 const char *name;
1074 struct debug_ops ops;
1075 } debug_handlers;
1078 log suspicious usage - print comments and backtrace
1080 _PUBLIC_ void log_suspicious_usage(const char *from, const char *info)
1082 if (!debug_handlers.ops.log_suspicious_usage) return;
1084 debug_handlers.ops.log_suspicious_usage(from, info);
1089 print suspicious usage - print comments and backtrace
1091 _PUBLIC_ void print_suspicious_usage(const char* from, const char* info)
1093 if (!debug_handlers.ops.print_suspicious_usage) return;
1095 debug_handlers.ops.print_suspicious_usage(from, info);
1098 _PUBLIC_ uint32_t get_task_id(void)
1100 if (debug_handlers.ops.get_task_id) {
1101 return debug_handlers.ops.get_task_id();
1103 return getpid();
1106 _PUBLIC_ void log_task_id(void)
1108 if (!debug_handlers.ops.log_task_id) return;
1110 if (!reopen_logs_internal()) return;
1112 debug_handlers.ops.log_task_id(state.fd);
1116 register a set of debug handlers.
1118 _PUBLIC_ void register_debug_handlers(const char *name, struct debug_ops *ops)
1120 debug_handlers.name = name;
1121 debug_handlers.ops = *ops;