2 Unix SMB/Netbios implementation.
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.
24 /* -------------------------------------------------------------------------- **
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
71 /* -------------------------------------------------------------------------- **
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
78 * DEBUGLEVEL - System-wide debug message limit. Messages with message-
79 * levels higher than DEBUGLEVEL will not be processed.
84 BOOL append_log
= False
;
86 int DEBUGLEVEL_CLASS
[DBGC_LAST
];
87 int DEBUGLEVEL
= DEBUGLEVEL_CLASS
;
88 BOOL AllowDebugChange
= True
;
91 /* -------------------------------------------------------------------------- **
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;
121 static int syslog_level
= 0;
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 /* -------------------------------------------------------------------------- **
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
)
159 if (!classname
) return -1;
161 for (i
=0; i
<DBGC_LAST
; i
++) {
162 if (strcmp(classname
, classname_table
[i
])==0)
168 /****************************************************************************
169 parse the debug levels from smbcontrol. Example debug level parameter:
171 ****************************************************************************/
172 BOOL
debug_parse_params(char **params
, int *debuglevel_class
)
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 */
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
);
198 DEBUG(0,("debug_parse_params: unrecognized debug class name or format [%s]\n", params
[i
]));
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
)
214 char *params
[DBGC_LAST
];
215 int debuglevel_class
[DBGC_LAST
];
217 if (AllowDebugChange
== False
)
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
)
231 if (debug_parse_params(params
, debuglevel_class
)) {
232 debug_message(0, getpid(), (void*)debuglevel_class
, sizeof(debuglevel_class
));
238 /****************************************************************************
239 receive a "set debug level" message
240 ****************************************************************************/
241 void debug_message(int msg_type
, pid_t src
, void *buf
, size_t len
)
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
279 stdout_logging
= False
;
283 stdout_logging
= True
;
288 char *p
= strrchr( pname
,'/' );
292 openlog( pname
, LOG_PID
, SYSLOG_FACILITY
);
293 #else /* for old systems that have no facility codes. */
294 openlog( pname
, LOG_PID
);
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 )
313 FILE *new_dbf
= NULL
;
319 oldumask
= umask( 022 );
321 pstrcpy(fname
, debugf
);
326 logfname
= lp_logfile();
328 pstrcpy(fname
, logfname
);
331 pstrcpy(debugf
, fname
);
334 new_dbf
= sys_fopen( debugf
, "a" );
336 new_dbf
= sys_fopen( debugf
, "w" );
340 DEBUG(0, ("Unable to open new log file %s: %s\n", debugf
, strerror(errno
)));
341 log_overflow
= False
;
346 setbuf(new_dbf
, NULL
);
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
);
362 /* ************************************************************************** **
363 * Force a check of the log size.
364 * ************************************************************************** **
366 void force_check_log_size( void )
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 )
379 if( debug_count
++ < 100 )
382 maxlog
= lp_max_log_size() * 1024;
383 if( !dbf
|| maxlog
<= 0 ) {
390 /* ************************************************************************** **
391 * Check to see if the log has grown to be too big.
392 * ************************************************************************** **
395 void check_log_size( void )
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.
408 if(log_overflow
|| !need_to_check_log_size() )
411 maxlog
= lp_max_log_size() * 1024;
413 if( sys_fstat( fileno( dbf
), &st
) == 0 && st
.st_size
> maxlog
) {
415 if( dbf
&& get_file_size( debugf
) > maxlog
) {
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..
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.
440 dbf
= sys_fopen( "/dev/console", "w" );
442 DEBUG(0,("check_log_size: open of debug file %s failed - using console.\n",
446 * We cannot continue without a debug file handle.
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
, ... )
462 int old_errno
= errno
;
466 va_start( ap
, format_str
);
468 (void)vfprintf( dbf
, format_str
, ap
);
475 if( !lp_syslog_only() )
480 mode_t oldumask
= umask( 022 );
483 dbf
= sys_fopen( debugf
, "a" );
485 dbf
= sys_fopen( debugf
, "w" );
486 (void)umask( oldumask
);
500 if( syslog_level
< lp_syslog() )
502 /* map debug levels to syslog() priorities
503 * note that not all DEBUG(0, ...) calls are
506 static int priority_map
[] = {
515 if( syslog_level
>= ( sizeof(priority_map
) / sizeof(priority_map
[0]) )
517 priority
= LOG_DEBUG
;
519 priority
= priority_map
[syslog_level
];
521 va_start( ap
, format_str
);
522 vslprintf( msgbuf
, sizeof(msgbuf
)-1, format_str
, ap
);
526 syslog( priority
, "%s", msgbuf
);
533 if( !lp_syslog_only() )
536 va_start( ap
, format_str
);
538 (void)vfprintf( dbf
, format_str
, ap
);
550 /* ************************************************************************** **
551 * Print the buffer content via Debug1(), then reset the buffer.
556 * ************************************************************************** **
558 static void bufr_print( void )
560 format_bufr
[format_pos
] = '\0';
561 (void)Debug1( "%s", format_bufr
);
565 /* ************************************************************************** **
566 * Format the debug message text.
568 * Input: msg - Text to be added to the "current" debug message text.
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
580 * ************************************************************************** **
582 static void format_debug_text( char *msg
)
585 BOOL timestamp
= (!stdout_logging
&& (lp_timestamp_logs() ||
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] = ' ';
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. */
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
)
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.
625 * ************************************************************************** **
627 void dbgflush( void )
634 /* ************************************************************************** **
635 * Print a Debug Header.
637 * Input: level - Debug level of the message (not the system-wide debug
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__
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
;
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.
676 /* Set syslog_level. */
677 syslog_level
= level
;
680 /* Don't print a header if we're logging to stdout. */
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';
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
);
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
, ... )
732 va_start( ap
, format_str
);
733 vslprintf( msgbuf
, sizeof(msgbuf
)-1, format_str
, ap
);
736 format_debug_text( msgbuf
);
742 /* ************************************************************************** */