preparing for release of 2.2.3a
[Samba.git] / source / lib / debug.c
blobd3ba8f9c37067031364b8fbed58bb58a78492b84
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
4 Samba utility functions
5 Copyright (C) Andrew Tridgell 1992-1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 /* -------------------------------------------------------------------------- **
25 * Defines...
27 * FORMAT_BUFR_MAX - Index of the last byte of the format buffer;
28 * format_bufr[FORMAT_BUFR_MAX] should always be reserved
29 * for a terminating nul byte.
32 #define FORMAT_BUFR_MAX ( sizeof( format_bufr ) - 1 )
34 /* -------------------------------------------------------------------------- **
35 * This module implements Samba's debugging utility.
37 * The syntax of a debugging log file is represented as:
39 * <debugfile> :== { <debugmsg> }
41 * <debugmsg> :== <debughdr> '\n' <debugtext>
43 * <debughdr> :== '[' TIME ',' LEVEL ']' [ [FILENAME ':'] [FUNCTION '()'] ]
45 * <debugtext> :== { <debugline> }
47 * <debugline> :== TEXT '\n'
49 * TEXT is a string of characters excluding the newline character.
50 * LEVEL is the DEBUG level of the message (an integer in the range 0..10).
51 * TIME is a timestamp.
52 * FILENAME is the name of the file from which the debug message was generated.
53 * FUNCTION is the function from which the debug message was generated.
55 * Basically, what that all means is:
57 * - A debugging log file is made up of debug messages.
59 * - Each debug message is made up of a header and text. The header is
60 * separated from the text by a newline.
62 * - The header begins with the timestamp and debug level of the message
63 * enclosed in brackets. The filename and function from which the
64 * message was generated may follow. The filename is terminated by a
65 * colon, and the function name is terminated by parenthesis.
67 * - The message text is made up of zero or more lines, each terminated by
68 * a newline.
71 /* -------------------------------------------------------------------------- **
72 * External variables.
74 * dbf - Global debug file handle.
75 * debugf - Debug file name.
76 * append_log - If True, then the output file will be opened in append
77 * mode.
78 * DEBUGLEVEL - System-wide debug message limit. Messages with message-
79 * levels higher than DEBUGLEVEL will not be processed.
82 FILE *dbf = NULL;
83 pstring debugf = "";
84 BOOL append_log = False;
86 int DEBUGLEVEL_CLASS[DBGC_LAST];
87 int DEBUGLEVEL = DEBUGLEVEL_CLASS;
88 BOOL AllowDebugChange = True;
91 /* -------------------------------------------------------------------------- **
92 * Internal variables.
94 * stdout_logging - Default False, if set to True then dbf will be set to
95 * stdout and debug output will go to dbf only, and not
96 * to syslog. Set in setup_logging() and read in Debug1().
98 * debug_count - Number of debug messages that have been output.
99 * Used to check log size.
101 * syslog_level - Internal copy of the message debug level. Written by
102 * dbghdr() and read by Debug1().
104 * format_bufr - Used to format debug messages. The dbgtext() function
105 * prints debug messages to a string, and then passes the
106 * string to format_debug_text(), which uses format_bufr
107 * to build the formatted output.
109 * format_pos - Marks the first free byte of the format_bufr.
112 * log_overflow - When this variable is True, never attempt to check the
113 * size of the log. This is a hack, so that we can write
114 * a message using DEBUG, from open_logs() when we
115 * are unable to open a new log file for some reason.
118 static BOOL stdout_logging = False;
119 static int debug_count = 0;
120 #ifdef WITH_SYSLOG
121 static int syslog_level = 0;
122 #endif
123 static pstring format_bufr = { '\0' };
124 static size_t format_pos = 0;
125 static BOOL log_overflow = False;
128 * Define all the debug class selection names here. Names *MUST NOT* contain
129 * white space. There must be one name for each DBGC_<class name>, and they
130 * must be in the table in the order of DBGC_<class name>..
132 char *classname_table[] = {
133 "all", /* DBGC_ALL; index references traditional DEBUGLEVEL */
134 "tdb", /* DBGC_TDB */
135 "printdrivers", /* DBGC_PRINTDRIVERS */
136 "lanman", /* DBGC_LANMAN */
140 /* -------------------------------------------------------------------------- **
141 * Functions...
144 /****************************************************************************
145 utility access to debug class names's
146 ****************************************************************************/
147 char* debug_classname_from_index(int ndx)
149 return classname_table[ndx];
152 /****************************************************************************
153 utility to translate names to debug class index's
154 ****************************************************************************/
155 int debug_lookup_classname(char* classname)
157 int i;
159 if (!classname) return -1;
161 for (i=0; i<DBGC_LAST; i++) {
162 if (strcmp(classname, classname_table[i])==0)
163 return i;
165 return -1;
168 /****************************************************************************
169 parse the debug levels from smbcontrol. Example debug level parameter:
170 printdrivers:7
171 ****************************************************************************/
172 BOOL debug_parse_params(char **params, int *debuglevel_class)
174 int i, ndx;
175 char *class_name;
176 char *class_level;
178 /* Set the new debug level array to the current DEBUGLEVEL array */
179 memcpy(debuglevel_class, DEBUGLEVEL_CLASS, sizeof(DEBUGLEVEL_CLASS));
181 /* Allow DBGC_ALL to be specifies w/o requiring its class name e.g."10"
182 * v.s. "all:10", this is the traditional way to set DEBUGLEVEL
184 if (isdigit((int)params[0][0])) {
185 debuglevel_class[DBGC_ALL] = atoi(params[0]);
186 i = 1; /* start processing at the next params */
188 else
189 i = 0; /* DBGC_ALL not specified OR calss name was included */
191 /* Fill in new debug class levels */
192 for (; i < DBGC_LAST && params[i]; i++) {
193 if ((class_name=strtok(params[i],":")) &&
194 (class_level=strtok(NULL, "\0")) &&
195 ((ndx = debug_lookup_classname(class_name)) != -1)) {
196 debuglevel_class[ndx] = atoi(class_level);
197 } else {
198 DEBUG(0,("debug_parse_params: unrecognized debug class name or format [%s]\n", params[i]));
199 return False;
203 return True;
206 /****************************************************************************
207 parse the debug levels from smb.conf. Example debug level string:
208 3 tdb:5 printdrivers:7
209 Note: the 1st param has no "name:" preceeding it.
210 ****************************************************************************/
211 BOOL debug_parse_levels(char *params_str)
213 int i;
214 char *params[DBGC_LAST];
215 int debuglevel_class[DBGC_LAST];
217 if (AllowDebugChange == False)
218 return True;
219 ZERO_ARRAY(params);
220 ZERO_ARRAY(debuglevel_class);
222 if ((params[0]=strtok(params_str," ,"))) {
223 for (i=1; i<DBGC_LAST;i++) {
224 if ((params[i]=strtok(NULL," ,"))==NULL)
225 break;
228 else
229 return False;
231 if (debug_parse_params(params, debuglevel_class)) {
232 debug_message(0, getpid(), (void*)debuglevel_class, sizeof(debuglevel_class));
233 return True;
234 } else
235 return False;
238 /****************************************************************************
239 receive a "set debug level" message
240 ****************************************************************************/
241 void debug_message(int msg_type, pid_t src, void *buf, size_t len)
243 int i;
245 /* Set the new DEBUGLEVEL_CLASS array from the pased array */
246 memcpy(DEBUGLEVEL_CLASS, buf, sizeof(DEBUGLEVEL_CLASS));
248 DEBUG(1,("INFO: Debug class %s level = %d (pid %u from pid %u)\n",
249 classname_table[DBGC_ALL],
250 DEBUGLEVEL_CLASS[DBGC_ALL], (unsigned int)getpid(), (unsigned int)src));
252 for (i=1; i<DBGC_LAST; i++) {
253 if (DEBUGLEVEL_CLASS[i])
254 DEBUGADD(1,("INFO: Debug class %s level = %d\n",
255 classname_table[i], DEBUGLEVEL_CLASS[i]));
260 /****************************************************************************
261 send a "set debug level" message
262 ****************************************************************************/
263 void debug_message_send(pid_t pid, int level)
265 message_send_pid(pid, MSG_DEBUG, &level, sizeof(int), False);
269 /* ************************************************************************** **
270 * get ready for syslog stuff
271 * ************************************************************************** **
273 void setup_logging(char *pname, BOOL interactive)
275 message_register(MSG_DEBUG, debug_message);
277 /* reset to allow multiple setup calls, going from interactive to
278 non-interactive */
279 stdout_logging = False;
280 dbf = NULL;
282 if (interactive) {
283 stdout_logging = True;
284 dbf = stdout;
286 #ifdef WITH_SYSLOG
287 else {
288 char *p = strrchr( pname,'/' );
289 if (p)
290 pname = p + 1;
291 #ifdef LOG_DAEMON
292 openlog( pname, LOG_PID, SYSLOG_FACILITY );
293 #else /* for old systems that have no facility codes. */
294 openlog( pname, LOG_PID );
295 #endif
297 #endif
298 } /* setup_logging */
300 /* ************************************************************************** **
301 * reopen the log files
302 * note that we now do this unconditionally
303 * We attempt to open the new debug fp before closing the old. This means
304 * if we run out of fd's we just keep using the old fd rather than aborting.
305 * Fix from dgibson@linuxcare.com.
306 * ************************************************************************** **
309 BOOL reopen_logs( void )
311 pstring fname;
312 mode_t oldumask;
313 FILE *new_dbf = NULL;
314 BOOL ret = True;
316 if (stdout_logging)
317 return True;
319 oldumask = umask( 022 );
321 pstrcpy(fname, debugf );
323 if (lp_loaded()) {
324 char *logfname;
326 logfname = lp_logfile();
327 if (*logfname)
328 pstrcpy(fname, logfname);
331 pstrcpy(debugf, fname);
333 if (append_log)
334 new_dbf = sys_fopen( debugf, "a" );
335 else
336 new_dbf = sys_fopen( debugf, "w" );
338 if (!new_dbf) {
339 log_overflow = True;
340 DEBUG(0, ("Unable to open new log file %s: %s\n", debugf, strerror(errno)));
341 log_overflow = False;
342 if (dbf)
343 fflush(dbf);
344 ret = False;
345 } else {
346 setbuf(new_dbf, NULL);
347 if (dbf)
348 (void) fclose(dbf);
349 dbf = new_dbf;
352 /* Fix from klausr@ITAP.Physik.Uni-Stuttgart.De
353 * to fix problem where smbd's that generate less
354 * than 100 messages keep growing the log.
356 force_check_log_size();
357 (void)umask(oldumask);
359 return ret;
362 /* ************************************************************************** **
363 * Force a check of the log size.
364 * ************************************************************************** **
366 void force_check_log_size( void )
368 debug_count = 100;
371 /***************************************************************************
372 Check to see if there is any need to check if the logfile has grown too big.
373 **************************************************************************/
375 BOOL need_to_check_log_size( void )
377 int maxlog;
379 if( debug_count++ < 100 )
380 return( False );
382 maxlog = lp_max_log_size() * 1024;
383 if( !dbf || maxlog <= 0 ) {
384 debug_count = 0;
385 return(False);
387 return( True );
390 /* ************************************************************************** **
391 * Check to see if the log has grown to be too big.
392 * ************************************************************************** **
395 void check_log_size( void )
397 int maxlog;
398 SMB_STRUCT_STAT st;
401 * We need to be root to check/change log-file, skip this and let the main
402 * loop check do a new check as root.
405 if( geteuid() != 0 )
406 return;
408 if(log_overflow || !need_to_check_log_size() )
409 return;
411 maxlog = lp_max_log_size() * 1024;
413 if( sys_fstat( fileno( dbf ), &st ) == 0 && st.st_size > maxlog ) {
414 (void)reopen_logs();
415 if( dbf && get_file_size( debugf ) > maxlog ) {
416 pstring name;
418 slprintf( name, sizeof(name)-1, "%s.old", debugf );
419 (void)rename( debugf, name );
421 if (!reopen_logs()) {
422 /* We failed to reopen a log - continue using the old name. */
423 (void)rename(name, debugf);
429 * Here's where we need to panic if dbf == NULL..
432 if(dbf == NULL) {
433 /* This code should only be reached in very strange
434 circumstances. If we merely fail to open the new log we
435 should stick with the old one. ergo this should only be
436 reached when opening the logs for the first time: at
437 startup or when the log level is increased from zero.
438 -dwg 6 June 2000
440 dbf = sys_fopen( "/dev/console", "w" );
441 if(dbf) {
442 DEBUG(0,("check_log_size: open of debug file %s failed - using console.\n",
443 debugf ));
444 } else {
446 * We cannot continue without a debug file handle.
448 abort();
451 debug_count = 0;
452 } /* check_log_size */
454 /* ************************************************************************** **
455 * Write an debug message on the debugfile.
456 * This is called by dbghdr() and format_debug_text().
457 * ************************************************************************** **
459 int Debug1( char *format_str, ... )
461 va_list ap;
462 int old_errno = errno;
464 if( stdout_logging )
466 va_start( ap, format_str );
467 if(dbf)
468 (void)vfprintf( dbf, format_str, ap );
469 va_end( ap );
470 errno = old_errno;
471 return( 0 );
474 #ifdef WITH_SYSLOG
475 if( !lp_syslog_only() )
476 #endif
478 if( !dbf )
480 mode_t oldumask = umask( 022 );
482 if( append_log )
483 dbf = sys_fopen( debugf, "a" );
484 else
485 dbf = sys_fopen( debugf, "w" );
486 (void)umask( oldumask );
487 if( dbf )
489 setbuf( dbf, NULL );
491 else
493 errno = old_errno;
494 return(0);
499 #ifdef WITH_SYSLOG
500 if( syslog_level < lp_syslog() )
502 /* map debug levels to syslog() priorities
503 * note that not all DEBUG(0, ...) calls are
504 * necessarily errors
506 static int priority_map[] = {
507 LOG_ERR, /* 0 */
508 LOG_WARNING, /* 1 */
509 LOG_NOTICE, /* 2 */
510 LOG_INFO, /* 3 */
512 int priority;
513 pstring msgbuf;
515 if( syslog_level >= ( sizeof(priority_map) / sizeof(priority_map[0]) )
516 || syslog_level < 0)
517 priority = LOG_DEBUG;
518 else
519 priority = priority_map[syslog_level];
521 va_start( ap, format_str );
522 vslprintf( msgbuf, sizeof(msgbuf)-1, format_str, ap );
523 va_end( ap );
525 msgbuf[255] = '\0';
526 syslog( priority, "%s", msgbuf );
528 #endif
530 check_log_size();
532 #ifdef WITH_SYSLOG
533 if( !lp_syslog_only() )
534 #endif
536 va_start( ap, format_str );
537 if(dbf)
538 (void)vfprintf( dbf, format_str, ap );
539 va_end( ap );
540 if(dbf)
541 (void)fflush( dbf );
544 errno = old_errno;
546 return( 0 );
547 } /* Debug1 */
550 /* ************************************************************************** **
551 * Print the buffer content via Debug1(), then reset the buffer.
553 * Input: none
554 * Output: none
556 * ************************************************************************** **
558 static void bufr_print( void )
560 format_bufr[format_pos] = '\0';
561 (void)Debug1( "%s", format_bufr );
562 format_pos = 0;
563 } /* bufr_print */
565 /* ************************************************************************** **
566 * Format the debug message text.
568 * Input: msg - Text to be added to the "current" debug message text.
570 * Output: none.
572 * Notes: The purpose of this is two-fold. First, each call to syslog()
573 * (used by Debug1(), see above) generates a new line of syslog
574 * output. This is fixed by storing the partial lines until the
575 * newline character is encountered. Second, printing the debug
576 * message lines when a newline is encountered allows us to add
577 * spaces, thus indenting the body of the message and making it
578 * more readable.
580 * ************************************************************************** **
582 static void format_debug_text( char *msg )
584 size_t i;
585 BOOL timestamp = (!stdout_logging && (lp_timestamp_logs() ||
586 !(lp_loaded())));
588 for( i = 0; msg[i]; i++ )
590 /* Indent two spaces at each new line. */
591 if(timestamp && 0 == format_pos)
593 format_bufr[0] = format_bufr[1] = ' ';
594 format_pos = 2;
597 /* If there's room, copy the character to the format buffer. */
598 if( format_pos < FORMAT_BUFR_MAX )
599 format_bufr[format_pos++] = msg[i];
601 /* If a newline is encountered, print & restart. */
602 if( '\n' == msg[i] )
603 bufr_print();
605 /* If the buffer is full dump it out, reset it, and put out a line
606 * continuation indicator.
608 if( format_pos >= FORMAT_BUFR_MAX )
610 bufr_print();
611 (void)Debug1( " +>\n" );
615 /* Just to be safe... */
616 format_bufr[format_pos] = '\0';
617 } /* format_debug_text */
619 /* ************************************************************************** **
620 * Flush debug output, including the format buffer content.
622 * Input: none
623 * Output: none
625 * ************************************************************************** **
627 void dbgflush( void )
629 bufr_print();
630 if(dbf)
631 (void)fflush( dbf );
632 } /* dbgflush */
634 /* ************************************************************************** **
635 * Print a Debug Header.
637 * Input: level - Debug level of the message (not the system-wide debug
638 * level.
639 * file - Pointer to a string containing the name of the file
640 * from which this function was called, or an empty string
641 * if the __FILE__ macro is not implemented.
642 * func - Pointer to a string containing the name of the function
643 * from which this function was called, or an empty string
644 * if the __FUNCTION__ macro is not implemented.
645 * line - line number of the call to dbghdr, assuming __LINE__
646 * works.
648 * Output: Always True. This makes it easy to fudge a call to dbghdr()
649 * in a macro, since the function can be called as part of a test.
650 * Eg: ( (level <= DEBUGLEVEL) && (dbghdr(level,"",line)) )
652 * Notes: This function takes care of setting syslog_level.
654 * ************************************************************************** **
657 BOOL dbghdr( int level, char *file, char *func, int line )
659 /* Ensure we don't lose any real errno value. */
660 int old_errno = errno;
662 if( format_pos ) {
663 /* This is a fudge. If there is stuff sitting in the format_bufr, then
664 * the *right* thing to do is to call
665 * format_debug_text( "\n" );
666 * to write the remainder, and then proceed with the new header.
667 * Unfortunately, there are several places in the code at which
668 * the DEBUG() macro is used to build partial lines. That in mind,
669 * we'll work under the assumption that an incomplete line indicates
670 * that a new header is *not* desired.
672 return( True );
675 #ifdef WITH_SYSLOG
676 /* Set syslog_level. */
677 syslog_level = level;
678 #endif
680 /* Don't print a header if we're logging to stdout. */
681 if( stdout_logging )
682 return( True );
684 /* Print the header if timestamps are turned on. If parameters are
685 * not yet loaded, then default to timestamps on.
687 if( lp_timestamp_logs() || !(lp_loaded()) ) {
688 char header_str[200];
690 header_str[0] = '\0';
692 if( lp_debug_pid())
693 slprintf(header_str,sizeof(header_str)-1,", pid=%u",(unsigned int)sys_getpid());
695 if( lp_debug_uid()) {
696 size_t hs_len = strlen(header_str);
697 slprintf(header_str + hs_len,
698 sizeof(header_str) - 1 - hs_len,
699 ", effective(%u, %u), real(%u, %u)",
700 (unsigned int)geteuid(), (unsigned int)getegid(),
701 (unsigned int)getuid(), (unsigned int)getgid());
704 /* Print it all out at once to prevent split syslog output. */
705 (void)Debug1( "[%s, %d%s] %s:%s(%d)\n",
706 timestring(lp_debug_hires_timestamp()), level,
707 header_str, file, func, line );
710 errno = old_errno;
711 return( True );
714 /* ************************************************************************** **
715 * Add text to the body of the "current" debug message via the format buffer.
717 * Input: format_str - Format string, as used in printf(), et. al.
718 * ... - Variable argument list.
720 * ..or.. va_alist - Old style variable parameter list starting point.
722 * Output: Always True. See dbghdr() for more info, though this is not
723 * likely to be used in the same way.
725 * ************************************************************************** **
727 BOOL dbgtext( char *format_str, ... )
729 va_list ap;
730 pstring msgbuf;
732 va_start( ap, format_str );
733 vslprintf( msgbuf, sizeof(msgbuf)-1, format_str, ap );
734 va_end( ap );
736 format_debug_text( msgbuf );
738 return( True );
739 } /* dbgtext */
742 /* ************************************************************************** */