up the debug level of the debug level change msg
[amitay/samba.git] / source3 / lib / debug.c
1 /*
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    Samba utility functions
5    Copyright (C) Andrew Tridgell 1992-1998
6
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.
11
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.
16
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.
20 */
21
22 #include "includes.h"
23
24 /* -------------------------------------------------------------------------- **
25  * Defines...
26  *
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.
30  */
31
32 #define FORMAT_BUFR_MAX ( sizeof( format_bufr ) - 1 )
33
34 /* -------------------------------------------------------------------------- **
35  * This module implements Samba's debugging utility.
36  *
37  * The syntax of a debugging log file is represented as:
38  *
39  *  <debugfile> :== { <debugmsg> }
40  *
41  *  <debugmsg>  :== <debughdr> '\n' <debugtext>
42  *
43  *  <debughdr>  :== '[' TIME ',' LEVEL ']' [ [FILENAME ':'] [FUNCTION '()'] ]
44  *
45  *  <debugtext> :== { <debugline> }
46  *
47  *  <debugline> :== TEXT '\n'
48  *
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.
54  *
55  * Basically, what that all means is:
56  *
57  * - A debugging log file is made up of debug messages.
58  *
59  * - Each debug message is made up of a header and text.  The header is
60  *   separated from the text by a newline.
61  *
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.
66  *
67  * - The message text is made up of zero or more lines, each terminated by
68  *   a newline.
69  */
70
71 /* -------------------------------------------------------------------------- **
72  * External variables.
73  *
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.
80  */
81
82 FILE   *dbf        = NULL;
83 pstring debugf     = "";
84 BOOL    append_log = False;
85 int     DEBUGLEVEL_CLASS[DBGC_LAST];
86 int     DEBUGLEVEL = DEBUGLEVEL_CLASS;
87
88
89 /* -------------------------------------------------------------------------- **
90  * Internal variables.
91  *
92  *  stdout_logging  - Default False, if set to True then dbf will be set to
93  *                    stdout and debug output will go to dbf only, and not
94  *                    to syslog.  Set in setup_logging() and read in Debug1().
95  *
96  *  debug_count     - Number of debug messages that have been output.
97  *                    Used to check log size.
98  *
99  *  syslog_level    - Internal copy of the message debug level.  Written by
100  *                    dbghdr() and read by Debug1().
101  *
102  *  format_bufr     - Used to format debug messages.  The dbgtext() function
103  *                    prints debug messages to a string, and then passes the
104  *                    string to format_debug_text(), which uses format_bufr
105  *                    to build the formatted output.
106  *
107  *  format_pos      - Marks the first free byte of the format_bufr.
108  */
109
110 static BOOL    stdout_logging = False;
111 static int     debug_count    = 0;
112 #ifdef WITH_SYSLOG
113 static int     syslog_level   = 0;
114 #endif
115 static pstring format_bufr    = { '\0' };
116 static size_t     format_pos     = 0;
117
118 /*
119 * Define all the debug class selection names here. Names *MUST NOT* contain 
120 * white space. There must be one name for each DBGC_<class name>, and they 
121 * must be in the table in the order of DBGC_<class name>.. 
122 */
123 char *classname_table[] = {
124         "all",               /* DBGC_ALL; index references traditional DEBUGLEVEL */
125         "tdb",               /* DBGC_TDB        */
126         "printdrivers",      /* DBGC_PRINTDRIVERS */
127         "lanman",            /* DBGC_LANMAN */
128 };
129
130
131 /* -------------------------------------------------------------------------- **
132  * Functions...
133  */
134
135 /****************************************************************************
136 utility access to debug class names's
137 ****************************************************************************/
138 char* debug_classname_from_index(int ndx)
139 {
140         return classname_table[ndx];
141 }
142
143 /****************************************************************************
144 utility to translate names to debug class index's
145 ****************************************************************************/
146 int debug_lookup_classname(char* classname)
147 {
148         int i;
149
150         if (!classname) return -1;
151
152         for (i=0; i<DBGC_LAST; i++) {
153                 if (strcmp(classname, classname_table[i])==0)
154                         return i;
155         }
156         return -1;
157 }
158
159 /****************************************************************************
160 parse the debug levels from smbcontrol. Example debug level parameter:
161   printdrivers:7
162 ****************************************************************************/
163 BOOL debug_parse_params(char **params, int *debuglevel_class)
164 {
165         int   i, ndx;
166         char *class_name;
167         char *class_level;
168         
169         /* Set the new debug level array to the current DEBUGLEVEL array */
170         memcpy(debuglevel_class, DEBUGLEVEL_CLASS, sizeof(DEBUGLEVEL_CLASS));
171
172         /* Allow DBGC_ALL to be specifies w/o requiring its class name e.g."10"  
173          * v.s. "all:10", this is the traditional way to set DEBUGLEVEL 
174          */
175         if (isdigit(params[0][0])) {
176                 debuglevel_class[DBGC_ALL] = atoi(params[0]);
177                 i = 1; /* start processing at the next params */
178         }
179         else
180                 i = 0; /* DBGC_ALL not specified  OR calss name was included */
181
182         /* Fill in new debug class levels */
183         for (; i < DBGC_LAST && params[i]; i++) {
184                 if ((class_name=strtok(params[i],":")) &&
185                         (class_level=strtok(NULL, "\0")) &&
186             ((ndx = debug_lookup_classname(class_name)) != -1)) {
187                                 debuglevel_class[ndx] = atoi(class_level);
188                 } else {
189                         DEBUG(0,("debug_parse_params: unrecognized debug class name or format [%s]\n", params[i]));
190                         return False;
191                 }
192         }
193
194         return True;
195 }
196
197 /****************************************************************************
198 parse the debug levels from smb.conf. Example debug level string:
199   3 tdb:5 printdrivers:7
200 Note: the 1st param has no "name:" preceeding it.
201 ****************************************************************************/
202 BOOL debug_parse_levels(char *params_str)
203 {
204         int  i;
205         char *params[DBGC_LAST];
206         int  debuglevel_class[DBGC_LAST];       
207
208         ZERO_ARRAY(params);
209         ZERO_ARRAY(debuglevel_class);
210
211         if ((params[0]=strtok(params_str," ,"))) {
212                 for (i=1; i<DBGC_LAST;i++) {
213                         if ((params[i]=strtok(NULL," ,"))==NULL)
214                                 break;
215                 }
216         }
217         else
218                 return False;
219
220         if (debug_parse_params(params, debuglevel_class)) {
221                 debug_message(0, getpid(), (void*)debuglevel_class, sizeof(debuglevel_class));
222                 return True;
223         } else
224                 return False;
225 }
226
227 /****************************************************************************
228 receive a "set debug level" message
229 ****************************************************************************/
230 void debug_message(int msg_type, pid_t src, void *buf, size_t len)
231 {
232         int i;
233
234         /* Set the new DEBUGLEVEL_CLASS array from the pased array */
235         memcpy(DEBUGLEVEL_CLASS, buf, sizeof(DEBUGLEVEL_CLASS));
236         
237         DEBUG(3,("INFO: Debug class %s level = %d   (pid %d from pid %d)\n",
238                         classname_table[DBGC_ALL],
239                         DEBUGLEVEL_CLASS[DBGC_ALL], getpid(), (int)src));
240
241         for (i=1; i<DBGC_LAST; i++) {
242                 if (DEBUGLEVEL_CLASS[i])
243                          DEBUGADD(3,("INFO: Debug class %s level = %d\n", 
244                                                 classname_table[i], DEBUGLEVEL_CLASS[i]));
245         }
246 }
247
248
249 /****************************************************************************
250 send a "set debug level" message
251 ****************************************************************************/
252 void debug_message_send(pid_t pid, int level)
253 {
254         message_send_pid(pid, MSG_DEBUG, &level, sizeof(int), False);
255 }
256
257
258 /* ************************************************************************** **
259  * get ready for syslog stuff
260  * ************************************************************************** **
261  */
262 void setup_logging(char *pname, BOOL interactive)
263 {
264         message_register(MSG_DEBUG, debug_message);
265
266         if (interactive) {
267                 stdout_logging = True;
268                 dbf = stdout;
269         }
270 #ifdef WITH_SYSLOG
271         else {
272                 char *p = strrchr( pname,'/' );
273                 if (p)
274                         pname = p + 1;
275 #ifdef LOG_DAEMON
276                 openlog( pname, LOG_PID, SYSLOG_FACILITY );
277 #else /* for old systems that have no facility codes. */
278                 openlog( pname, LOG_PID );
279 #endif
280         }
281 #endif
282 } /* setup_logging */
283
284 /* ************************************************************************** **
285  * reopen the log files
286  * note that we now do this unconditionally
287  * ************************************************************************** **
288  */
289 void reopen_logs( void )
290 {
291         pstring fname;
292         mode_t oldumask;
293
294         if (DEBUGLEVEL_CLASS[ DBGC_ALL ] <= 0) {
295                 if (dbf) {
296                         (void)fclose(dbf);
297                         dbf = NULL;
298                 }
299                 return;
300         }
301
302         oldumask = umask( 022 );
303   
304         pstrcpy(fname, debugf );
305         if (lp_loaded() && (*lp_logfile()))
306                 pstrcpy(fname, lp_logfile());
307
308         pstrcpy( debugf, fname );
309         if (dbf)
310                 (void)fclose(dbf);
311         if (append_log)
312                 dbf = sys_fopen( debugf, "a" );
313         else
314                 dbf = sys_fopen( debugf, "w" );
315         /* Fix from klausr@ITAP.Physik.Uni-Stuttgart.De
316          * to fix problem where smbd's that generate less
317          * than 100 messages keep growing the log.
318          */
319         force_check_log_size();
320         if (dbf)
321                 setbuf( dbf, NULL );
322         (void)umask(oldumask);
323 }
324
325
326 /* ************************************************************************** **
327  * Force a check of the log size.
328  * ************************************************************************** **
329  */
330 void force_check_log_size( void )
331 {
332   debug_count = 100;
333 }
334
335 /***************************************************************************
336  Check to see if there is any need to check if the logfile has grown too big.
337 **************************************************************************/
338
339 BOOL need_to_check_log_size( void )
340 {
341         int maxlog;
342
343         if( debug_count++ < 100 )
344                 return( False );
345
346         maxlog = lp_max_log_size() * 1024;
347         if( !dbf || maxlog <= 0 ) {
348                 debug_count = 0;
349                 return(False);
350         }
351         return( True );
352 }
353
354 /* ************************************************************************** **
355  * Check to see if the log has grown to be too big.
356  * ************************************************************************** **
357  */
358
359 void check_log_size( void )
360 {
361   int         maxlog;
362   SMB_STRUCT_STAT st;
363
364   /*
365    *  We need to be root to check/change log-file, skip this and let the main
366    *  loop check do a new check as root.
367    */
368
369   if( geteuid() != 0 )
370     return;
371
372   if( !need_to_check_log_size() )
373     return;
374
375   maxlog = lp_max_log_size() * 1024;
376
377   if( sys_fstat( fileno( dbf ), &st ) == 0 && st.st_size > maxlog )
378     {
379     (void)fclose( dbf );
380     dbf = NULL;
381     reopen_logs();
382     if( dbf && get_file_size( debugf ) > maxlog )
383       {
384       pstring name;
385
386       (void)fclose( dbf );
387       dbf = NULL;
388       slprintf( name, sizeof(name)-1, "%s.old", debugf );
389       (void)rename( debugf, name );
390       reopen_logs();
391       }
392     }
393   /*
394    * Here's where we need to panic if dbf == NULL..
395    */
396   if(dbf == NULL) {
397     dbf = sys_fopen( "/dev/console", "w" );
398     if(dbf) {
399       DEBUG(0,("check_log_size: open of debug file %s failed - using console.\n",
400             debugf ));
401     } else {
402       /*
403        * We cannot continue without a debug file handle.
404        */
405       abort();
406     }
407   }
408   debug_count = 0;
409 } /* check_log_size */
410
411 /* ************************************************************************** **
412  * Write an debug message on the debugfile.
413  * This is called by dbghdr() and format_debug_text().
414  * ************************************************************************** **
415  */
416 #ifdef HAVE_STDARG_H
417  int Debug1( char *format_str, ... )
418 {
419 #else
420  int Debug1(va_alist)
421 va_dcl
422 {  
423   char *format_str;
424 #endif
425   va_list ap;  
426   int old_errno = errno;
427
428   if( stdout_logging )
429     {
430 #ifdef HAVE_STDARG_H
431     va_start( ap, format_str );
432 #else
433     va_start( ap );
434     format_str = va_arg( ap, char * );
435 #endif
436     if(dbf)
437       (void)vfprintf( dbf, format_str, ap );
438     va_end( ap );
439     errno = old_errno;
440     return( 0 );
441     }
442   
443 #ifdef WITH_SYSLOG
444   if( !lp_syslog_only() )
445 #endif
446     {
447     if( !dbf )
448       {
449       mode_t oldumask = umask( 022 );
450
451       if( append_log )
452         dbf = sys_fopen( debugf, "a" );
453       else
454         dbf = sys_fopen( debugf, "w" );
455       (void)umask( oldumask );
456       if( dbf )
457         {
458         setbuf( dbf, NULL );
459         }
460       else
461         {
462         errno = old_errno;
463         return(0);
464         }
465       }
466     }
467
468 #ifdef WITH_SYSLOG
469   if( syslog_level < lp_syslog() )
470     {
471     /* map debug levels to syslog() priorities
472      * note that not all DEBUG(0, ...) calls are
473      * necessarily errors
474      */
475     static int priority_map[] = { 
476       LOG_ERR,     /* 0 */
477       LOG_WARNING, /* 1 */
478       LOG_NOTICE,  /* 2 */
479       LOG_INFO,    /* 3 */
480       };
481     int     priority;
482     pstring msgbuf;
483
484     if( syslog_level >= ( sizeof(priority_map) / sizeof(priority_map[0]) )
485      || syslog_level < 0)
486       priority = LOG_DEBUG;
487     else
488       priority = priority_map[syslog_level];
489       
490 #ifdef HAVE_STDARG_H
491     va_start( ap, format_str );
492 #else
493     va_start( ap );
494     format_str = va_arg( ap, char * );
495 #endif
496     vslprintf( msgbuf, sizeof(msgbuf)-1, format_str, ap );
497     va_end( ap );
498       
499     msgbuf[255] = '\0';
500     syslog( priority, "%s", msgbuf );
501     }
502 #endif
503   
504   check_log_size();
505
506 #ifdef WITH_SYSLOG
507   if( !lp_syslog_only() )
508 #endif
509     {
510 #ifdef HAVE_STDARG_H
511     va_start( ap, format_str );
512 #else
513     va_start( ap );
514     format_str = va_arg( ap, char * );
515 #endif
516     if(dbf)
517       (void)vfprintf( dbf, format_str, ap );
518     va_end( ap );
519     if(dbf)
520       (void)fflush( dbf );
521     }
522
523   errno = old_errno;
524
525   return( 0 );
526   } /* Debug1 */
527
528
529 /* ************************************************************************** **
530  * Print the buffer content via Debug1(), then reset the buffer.
531  *
532  *  Input:  none
533  *  Output: none
534  *
535  * ************************************************************************** **
536  */
537 static void bufr_print( void )
538   {
539   format_bufr[format_pos] = '\0';
540   (void)Debug1( "%s", format_bufr );
541   format_pos = 0;
542   } /* bufr_print */
543
544 /* ************************************************************************** **
545  * Format the debug message text.
546  *
547  *  Input:  msg - Text to be added to the "current" debug message text.
548  *
549  *  Output: none.
550  *
551  *  Notes:  The purpose of this is two-fold.  First, each call to syslog()
552  *          (used by Debug1(), see above) generates a new line of syslog
553  *          output.  This is fixed by storing the partial lines until the
554  *          newline character is encountered.  Second, printing the debug
555  *          message lines when a newline is encountered allows us to add
556  *          spaces, thus indenting the body of the message and making it
557  *          more readable.
558  *
559  * ************************************************************************** **
560  */
561 static void format_debug_text( char *msg )
562   {
563   size_t i;
564   BOOL timestamp = (!stdout_logging && (lp_timestamp_logs() || 
565                                         !(lp_loaded())));
566
567   for( i = 0; msg[i]; i++ )
568     {
569     /* Indent two spaces at each new line. */
570     if(timestamp && 0 == format_pos)
571       {
572       format_bufr[0] = format_bufr[1] = ' ';
573       format_pos = 2;
574       }
575
576     /* If there's room, copy the character to the format buffer. */
577     if( format_pos < FORMAT_BUFR_MAX )
578       format_bufr[format_pos++] = msg[i];
579
580     /* If a newline is encountered, print & restart. */
581     if( '\n' == msg[i] )
582       bufr_print();
583
584     /* If the buffer is full dump it out, reset it, and put out a line
585      * continuation indicator.
586      */
587     if( format_pos >= FORMAT_BUFR_MAX )
588       {
589       bufr_print();
590       (void)Debug1( " +>\n" );
591       }
592     }
593
594   /* Just to be safe... */
595   format_bufr[format_pos] = '\0';
596   } /* format_debug_text */
597
598 /* ************************************************************************** **
599  * Flush debug output, including the format buffer content.
600  *
601  *  Input:  none
602  *  Output: none
603  *
604  * ************************************************************************** **
605  */
606 void dbgflush( void )
607   {
608   bufr_print();
609   if(dbf)
610     (void)fflush( dbf );
611   } /* dbgflush */
612
613 /* ************************************************************************** **
614  * Print a Debug Header.
615  *
616  *  Input:  level - Debug level of the message (not the system-wide debug
617  *                  level.
618  *          file  - Pointer to a string containing the name of the file
619  *                  from which this function was called, or an empty string
620  *                  if the __FILE__ macro is not implemented.
621  *          func  - Pointer to a string containing the name of the function
622  *                  from which this function was called, or an empty string
623  *                  if the __FUNCTION__ macro is not implemented.
624  *          line  - line number of the call to dbghdr, assuming __LINE__
625  *                  works.
626  *
627  *  Output: Always True.  This makes it easy to fudge a call to dbghdr()
628  *          in a macro, since the function can be called as part of a test.
629  *          Eg: ( (level <= DEBUGLEVEL) && (dbghdr(level,"",line)) )
630  *
631  *  Notes:  This function takes care of setting syslog_level.
632  *
633  * ************************************************************************** **
634  */
635
636 BOOL dbghdr( int level, char *file, char *func, int line )
637 {
638   /* Ensure we don't lose any real errno value. */
639   int old_errno = errno;
640
641   if( format_pos ) {
642     /* This is a fudge.  If there is stuff sitting in the format_bufr, then
643      * the *right* thing to do is to call
644      *   format_debug_text( "\n" );
645      * to write the remainder, and then proceed with the new header.
646      * Unfortunately, there are several places in the code at which
647      * the DEBUG() macro is used to build partial lines.  That in mind,
648      * we'll work under the assumption that an incomplete line indicates
649      * that a new header is *not* desired.
650      */
651     return( True );
652   }
653
654 #ifdef WITH_SYSLOG
655   /* Set syslog_level. */
656   syslog_level = level;
657 #endif
658
659   /* Don't print a header if we're logging to stdout. */
660   if( stdout_logging )
661     return( True );
662
663   /* Print the header if timestamps are turned on.  If parameters are
664    * not yet loaded, then default to timestamps on.
665    */
666   if( lp_timestamp_logs() || !(lp_loaded()) ) {
667     char header_str[200];
668
669         header_str[0] = '\0';
670
671         if( lp_debug_pid())
672           slprintf(header_str,sizeof(header_str)-1,", pid=%u",(unsigned int)sys_getpid());
673
674         if( lp_debug_uid()) {
675       size_t hs_len = strlen(header_str);
676           slprintf(header_str + hs_len,
677                sizeof(header_str) - 1 - hs_len,
678                            ", effective(%u, %u), real(%u, %u)",
679                (unsigned int)geteuid(), (unsigned int)getegid(),
680                            (unsigned int)getuid(), (unsigned int)getgid()); 
681         }
682   
683     /* Print it all out at once to prevent split syslog output. */
684     (void)Debug1( "[%s, %d%s] %s:%s(%d)\n",
685                   timestring(lp_debug_hires_timestamp()), level,
686                                   header_str, file, func, line );
687   }
688
689   errno = old_errno;
690   return( True );
691 }
692
693 /* ************************************************************************** **
694  * Add text to the body of the "current" debug message via the format buffer.
695  *
696  *  Input:  format_str  - Format string, as used in printf(), et. al.
697  *          ...         - Variable argument list.
698  *
699  *  ..or..  va_alist    - Old style variable parameter list starting point.
700  *
701  *  Output: Always True.  See dbghdr() for more info, though this is not
702  *          likely to be used in the same way.
703  *
704  * ************************************************************************** **
705  */
706 #ifdef HAVE_STDARG_H
707  BOOL dbgtext( char *format_str, ... )
708   {
709   va_list ap;
710   pstring msgbuf;
711
712   va_start( ap, format_str ); 
713   vslprintf( msgbuf, sizeof(msgbuf)-1, format_str, ap );
714   va_end( ap );
715
716   format_debug_text( msgbuf );
717
718   return( True );
719   } /* dbgtext */
720
721 #else
722  BOOL dbgtext( va_alist )
723  va_dcl
724   {
725   char *format_str;
726   va_list ap;
727   pstring msgbuf;
728
729   va_start( ap );
730   format_str = va_arg( ap, char * );
731   vslprintf( msgbuf, sizeof(msgbuf)-1, format_str, ap );
732   va_end( ap );
733
734   format_debug_text( msgbuf );
735
736   return( True );
737   } /* dbgtext */
738
739 #endif
740
741 /* ************************************************************************** */