Removed duplicate fn to avoid compiler warning. (from HEAD - tpot).
[metze/samba/wip.git] / source3 / lib / debug.c
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
7
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 2 of the License, or
11    (at your option) any later version.
12
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.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24
25 /* -------------------------------------------------------------------------- **
26  * Defines...
27  *
28  *  FORMAT_BUFR_MAX - Index of the last byte of the format buffer;
29  *                    format_bufr[FORMAT_BUFR_MAX] should always be reserved
30  *                    for a terminating null byte.
31  */
32
33 #define FORMAT_BUFR_MAX ( sizeof( format_bufr ) - 1 )
34
35 /* -------------------------------------------------------------------------- **
36  * This module implements Samba's debugging utility.
37  *
38  * The syntax of a debugging log file is represented as:
39  *
40  *  <debugfile> :== { <debugmsg> }
41  *
42  *  <debugmsg>  :== <debughdr> '\n' <debugtext>
43  *
44  *  <debughdr>  :== '[' TIME ',' LEVEL ']' [ [FILENAME ':'] [FUNCTION '()'] ]
45  *
46  *  <debugtext> :== { <debugline> }
47  *
48  *  <debugline> :== TEXT '\n'
49  *
50  * TEXT     is a string of characters excluding the newline character.
51  * LEVEL    is the DEBUG level of the message (an integer in the range 0..10).
52  * TIME     is a timestamp.
53  * FILENAME is the name of the file from which the debug message was generated.
54  * FUNCTION is the function from which the debug message was generated.
55  *
56  * Basically, what that all means is:
57  *
58  * - A debugging log file is made up of debug messages.
59  *
60  * - Each debug message is made up of a header and text.  The header is
61  *   separated from the text by a newline.
62  *
63  * - The header begins with the timestamp and debug level of the message
64  *   enclosed in brackets.  The filename and function from which the
65  *   message was generated may follow.  The filename is terminated by a
66  *   colon, and the function name is terminated by parenthesis.
67  *
68  * - The message text is made up of zero or more lines, each terminated by
69  *   a newline.
70  */
71
72 /* -------------------------------------------------------------------------- **
73  * External variables.
74  *
75  *  dbf           - Global debug file handle.
76  *  debugf        - Debug file name.
77  *  DEBUGLEVEL    - System-wide debug message limit.  Messages with message-
78  *                  levels higher than DEBUGLEVEL will not be processed.
79  */
80
81 XFILE   *dbf        = NULL;
82 pstring debugf     = "";
83 BOOL    debug_warn_unknown_class = True;
84 BOOL    debug_auto_add_unknown_class = True;
85 BOOL    AllowDebugChange = True;
86
87 /*
88  * This is to allow assignment to DEBUGLEVEL before the debug
89  * system has been initialised.
90  */
91 static int debug_all_class_hack = 1;
92 static BOOL debug_all_class_isset_hack = True;
93
94 static int debug_num_classes = 0;
95 int     *DEBUGLEVEL_CLASS = &debug_all_class_hack;
96 BOOL    *DEBUGLEVEL_CLASS_ISSET = &debug_all_class_isset_hack;
97
98 /* DEBUGLEVEL is #defined to *debug_level */
99 int     DEBUGLEVEL = &debug_all_class_hack;
100
101
102 /* -------------------------------------------------------------------------- **
103  * Internal variables.
104  *
105  *  stdout_logging  - Default False, if set to True then dbf will be set to
106  *                    stdout and debug output will go to dbf only, and not
107  *                    to syslog.  Set in setup_logging() and read in Debug1().
108  *
109  *  debug_count     - Number of debug messages that have been output.
110  *                    Used to check log size.
111  *
112  *  syslog_level    - Internal copy of the message debug level.  Written by
113  *                    dbghdr() and read by Debug1().
114  *
115  *  format_bufr     - Used to format debug messages.  The dbgtext() function
116  *                    prints debug messages to a string, and then passes the
117  *                    string to format_debug_text(), which uses format_bufr
118  *                    to build the formatted output.
119  *
120  *  format_pos      - Marks the first free byte of the format_bufr.
121  * 
122  *
123  *  log_overflow    - When this variable is True, never attempt to check the
124  *                    size of the log. This is a hack, so that we can write
125  *                    a message using DEBUG, from open_logs() when we
126  *                    are unable to open a new log file for some reason.
127  */
128
129 static BOOL    stdout_logging = False;
130 static int     debug_count    = 0;
131 #ifdef WITH_SYSLOG
132 static int     syslog_level   = 0;
133 #endif
134 static pstring format_bufr    = { '\0' };
135 static size_t     format_pos     = 0;
136 static BOOL    log_overflow   = False;
137
138 /*
139  * Define all the debug class selection names here. Names *MUST NOT* contain 
140  * white space. There must be one name for each DBGC_<class name>, and they 
141  * must be in the table in the order of DBGC_<class name>.. 
142  */
143 static const char *default_classname_table[] = {
144         "all",               /* DBGC_ALL; index refs traditional DEBUGLEVEL */
145         "tdb",               /* DBGC_TDB          */
146         "printdrivers",      /* DBGC_PRINTDRIVERS */
147         "lanman",            /* DBGC_LANMAN       */
148         "smb",               /* DBGC_SMB          */
149         "rpc_parse",         /* DBGC_RPC_PARSE    */
150         "rpc_srv",           /* DBGC_RPC_SRV      */
151         "rpc_cli",           /* DBGC_RPC_CLI      */
152         "passdb",            /* DBGC_PASSDB       */
153         "sam",               /* DBGC_SAM          */
154         "auth",              /* DBGC_AUTH         */
155         "winbind",           /* DBGC_WINBIND      */
156         "vfs",               /* DBGC_VFS          */
157         NULL
158 };
159
160 static char **classname_table = NULL;
161
162
163 /* -------------------------------------------------------------------------- **
164  * Functions...
165  */
166
167
168 /****************************************************************************
169 utility lists registered debug class names's
170 ****************************************************************************/
171
172 #define MAX_CLASS_NAME_SIZE 1024
173
174 static char *debug_list_class_names_and_levels(void)
175 {
176         int i, dim;
177         char **list;
178         char *buf = NULL;
179         char *b;
180         BOOL err = False;
181
182         if (DEBUGLEVEL_CLASS == &debug_all_class_hack)
183                 return NULL;
184
185         list = calloc(debug_num_classes + 1, sizeof(char *));
186         if (!list)
187                 return NULL;
188
189         /* prepare strings */
190         for (i = 0, dim = 0; i < debug_num_classes; i++) {
191                 int l = asprintf(&list[i],
192                                 "%s:%d ",
193                                 classname_table[i],
194                                 DEBUGLEVEL_CLASS_ISSET[i]?DEBUGLEVEL_CLASS[i]:DEBUGLEVEL);
195                 if (l < 0 || l > MAX_CLASS_NAME_SIZE) {
196                         err = True;
197                         goto done;
198                 }
199                 dim += l;
200         }
201
202         /* create single string list */
203         b = buf = malloc(dim);
204         if (!buf) {
205                 err = True;
206                 goto done;
207         }
208         for (i = 0; i < debug_num_classes; i++) {
209                 int l = strlen(list[i]);
210                 strncpy(b, list[i], l);
211                 b = b + l;
212         }
213         b[-1] = '\0';
214
215 done:
216         /* free strings list */
217         for (i = 0; i < debug_num_classes; i++)
218                 if (list[i]) free(list[i]);
219         free(list);
220
221         if (err) {
222                 if (buf)
223                         free(buf);
224                 return NULL;
225         } else {
226                 return buf;
227         }
228 }
229
230 /****************************************************************************
231 utility access to debug class names's
232 ****************************************************************************/
233 const char *debug_classname_from_index(int ndx)
234 {
235         if (ndx < 0 || ndx >= debug_num_classes)
236                 return NULL;
237         else
238                 return classname_table[ndx];
239 }
240
241 /****************************************************************************
242 utility to translate names to debug class index's (internal version)
243 ****************************************************************************/
244 static int debug_lookup_classname_int(const char* classname)
245 {
246         int i;
247
248         if (!classname) return -1;
249
250         for (i=0; i < debug_num_classes; i++) {
251                 if (strcmp(classname, classname_table[i])==0)
252                         return i;
253         }
254         return -1;
255 }
256
257 /****************************************************************************
258 Add a new debug class to the system
259 ****************************************************************************/
260 int debug_add_class(const char *classname)
261 {
262         int ndx;
263         void *new_ptr;
264
265         if (!classname)
266                 return -1;
267
268         /* check the init has yet been called */
269         debug_init();
270
271         ndx = debug_lookup_classname_int(classname);
272         if (ndx >= 0)
273                 return ndx;
274         ndx = debug_num_classes;
275
276         new_ptr = DEBUGLEVEL_CLASS;
277         if (DEBUGLEVEL_CLASS == &debug_all_class_hack)
278         {
279                 /* Initial loading... */
280                 new_ptr = NULL;
281         }
282         new_ptr = Realloc(new_ptr,
283                           sizeof(int) * (debug_num_classes + 1));
284         if (!new_ptr)
285                 return -1;
286         DEBUGLEVEL_CLASS = new_ptr;
287         DEBUGLEVEL_CLASS[ndx] = 0;
288
289         /* debug_level is the pointer used for the DEBUGLEVEL-thingy */
290         if (ndx==0)
291         {
292                 /* Transfer the initial level from debug_all_class_hack */
293                 DEBUGLEVEL_CLASS[ndx] = DEBUGLEVEL;
294         }
295         debug_level = DEBUGLEVEL_CLASS;
296
297         new_ptr = DEBUGLEVEL_CLASS_ISSET;
298         if (new_ptr == &debug_all_class_isset_hack)
299         {
300                 new_ptr = NULL;
301         }
302         new_ptr = Realloc(new_ptr,
303                           sizeof(BOOL) * (debug_num_classes + 1));
304         if (!new_ptr)
305                 return -1;
306         DEBUGLEVEL_CLASS_ISSET = new_ptr;
307         DEBUGLEVEL_CLASS_ISSET[ndx] = False;
308
309         new_ptr = Realloc(classname_table,
310                           sizeof(char *) * (debug_num_classes + 1));
311         if (!new_ptr)
312                 return -1;
313         classname_table = new_ptr;
314
315         classname_table[ndx] = strdup(classname);
316         if (! classname_table[ndx])
317                 return -1;
318         
319         debug_num_classes++;
320
321         return ndx;
322 }
323
324 /****************************************************************************
325 utility to translate names to debug class index's (public version)
326 ****************************************************************************/
327 int debug_lookup_classname(const char *classname)
328 {
329         int ndx;
330        
331         if (!classname || !*classname) return -1;
332
333         ndx = debug_lookup_classname_int(classname);
334
335         if (ndx != -1)
336                 return ndx;
337
338         if (debug_warn_unknown_class)
339         {
340                 DEBUG(0, ("debug_lookup_classname(%s): Unknown class\n",
341                           classname));
342         }
343         if (debug_auto_add_unknown_class)
344         {
345                 return debug_add_class(classname);
346         }
347         return -1;
348 }
349
350
351 /****************************************************************************
352 dump the current registered debug levels
353 ****************************************************************************/
354 static void debug_dump_status(int level)
355 {
356         int q;
357
358         DEBUG(level, ("INFO: Current debug levels:\n"));
359         for (q = 0; q < debug_num_classes; q++)
360         {
361                 DEBUGADD(level, ("  %s: %s/%d\n",
362                                  classname_table[q],
363                                  (DEBUGLEVEL_CLASS_ISSET[q]
364                                   ? "True" : "False"),
365                                  DEBUGLEVEL_CLASS[q]));
366         }
367 }
368
369 /****************************************************************************
370 parse the debug levels from smbcontrol. Example debug level parameter:
371   printdrivers:7
372 ****************************************************************************/
373 static BOOL debug_parse_params(char **params)
374 {
375         int   i, ndx;
376         char *class_name;
377         char *class_level;
378
379         if (!params)
380                 return False;
381
382         /* Allow DBGC_ALL to be specified w/o requiring its class name e.g."10"  
383          * v.s. "all:10", this is the traditional way to set DEBUGLEVEL 
384          */
385         if (isdigit((int)params[0][0])) {
386                 DEBUGLEVEL_CLASS[DBGC_ALL] = atoi(params[0]);
387                 DEBUGLEVEL_CLASS_ISSET[DBGC_ALL] = True;
388                 i = 1; /* start processing at the next params */
389         }
390         else
391                 i = 0; /* DBGC_ALL not specified OR class name was included */
392
393         /* Fill in new debug class levels */
394         for (; i < debug_num_classes && params[i]; i++) {
395                 if ((class_name=strtok(params[i],":")) &&
396                         (class_level=strtok(NULL, "\0")) &&
397             ((ndx = debug_lookup_classname(class_name)) != -1)) {
398                                 DEBUGLEVEL_CLASS[ndx] = atoi(class_level);
399                                 DEBUGLEVEL_CLASS_ISSET[ndx] = True;
400                 } else {
401                         DEBUG(0,("debug_parse_params: unrecognized debug class name or format [%s]\n", params[i]));
402                         return False;
403                 }
404         }
405
406         return True;
407 }
408
409 /****************************************************************************
410 parse the debug levels from smb.conf. Example debug level string:
411   3 tdb:5 printdrivers:7
412 Note: the 1st param has no "name:" preceeding it.
413 ****************************************************************************/
414 BOOL debug_parse_levels(const char *params_str)
415 {
416         char **params;
417
418         /* Just in case */
419         debug_init();
420
421         if (AllowDebugChange == False)
422                 return True;
423
424         params = str_list_make(params_str, NULL);
425
426         if (debug_parse_params(params))
427         {
428                 debug_dump_status(5);
429                 str_list_free(&params);
430                 return True;
431         } else {
432                 str_list_free(&params);
433                 return False;
434         }
435 }
436
437 /****************************************************************************
438 receive a "set debug level" message
439 ****************************************************************************/
440 static void debug_message(int msg_type, pid_t src, void *buf, size_t len)
441 {
442         const char *params_str = buf;
443
444         /* Check, it's a proper string! */
445         if (params_str[len-1] != '\0')
446         {
447                 DEBUG(1, ("Invalid debug message from pid %u to pid %u\n",
448                           (unsigned int)src, (unsigned int)getpid()));
449                 return;
450         }
451
452         DEBUG(3, ("INFO: Remote set of debug to `%s'  (pid %u from pid %u)\n",
453                   params_str, (unsigned int)getpid(), (unsigned int)src));
454
455         debug_parse_levels(params_str);
456 }
457
458
459 /****************************************************************************
460 send a "set debug level" message
461 ****************************************************************************/
462 void debug_message_send(pid_t pid, const char *params_str)
463 {
464         if (!params_str)
465                 return;
466         message_send_pid(pid, MSG_DEBUG, params_str, strlen(params_str) + 1,
467                          False);
468 }
469
470
471 #if 0
472 /****************************************************************************
473  Return current debug level.
474 ****************************************************************************/
475
476 static void debuglevel_message(int msg_type, pid_t src, void *buf, size_t len)
477 {
478         char *debug_level_classes;
479         DEBUG(1,("INFO: Received REQ_DEBUGLEVEL message from PID %u\n",(unsigned int)src));
480
481         if ((debug_level_classes = debug_list_class_names_and_levels())) {
482         /*{ debug_level_classes = "test:1000";*/
483                 message_send_pid(src, MSG_DEBUGLEVEL, debug_level_classes, strlen(debug_level_classes) + 1, True);
484                 SAFE_FREE(debug_level_classes);
485         } else {
486                 DEBUG(0, ("debuglevel_message: error retrieving class levels!\n"));
487         }
488 }
489 #endif
490
491 /****************************************************************************
492 Init debugging (one time stuff)
493 ****************************************************************************/
494 void debug_init(void)
495 {
496         static BOOL initialised = False;
497         const char **p;
498
499         if (initialised)
500                 return;
501         
502         initialised = True;
503
504         message_register(MSG_DEBUG, debug_message);
505         message_register(MSG_REQ_DEBUGLEVEL, debuglevel_message);
506
507         for(p = default_classname_table; *p; p++)
508         {
509                 debug_add_class(*p);
510         }
511 }
512
513
514 /* ************************************************************************** **
515  * get ready for syslog stuff
516  * ************************************************************************** **
517  */
518 void setup_logging(const char *pname, BOOL interactive)
519 {
520         debug_init();
521
522         /* reset to allow multiple setup calls, going from interactive to
523            non-interactive */
524         stdout_logging = False;
525         dbf = NULL;
526
527         if (interactive) {
528                 stdout_logging = True;
529                 dbf = x_stdout;
530                 x_setbuf( x_stdout, NULL );
531         }
532 #ifdef WITH_SYSLOG
533         else {
534                 const char *p = strrchr_m( pname,'/' );
535                 if (p)
536                         pname = p + 1;
537 #ifdef LOG_DAEMON
538                 openlog( pname, LOG_PID, SYSLOG_FACILITY );
539 #else
540                 /* for old systems that have no facility codes. */
541                 openlog( pname, LOG_PID );
542 #endif
543         }
544 #endif
545 } /* setup_logging */
546
547 /* ************************************************************************** **
548  * reopen the log files
549  * note that we now do this unconditionally
550  * We attempt to open the new debug fp before closing the old. This means
551  * if we run out of fd's we just keep using the old fd rather than aborting.
552  * Fix from dgibson@linuxcare.com.
553  * ************************************************************************** **
554  */
555
556 BOOL reopen_logs( void )
557 {
558         pstring fname;
559         mode_t oldumask;
560         XFILE *new_dbf = NULL;
561         XFILE *old_dbf = NULL;
562         BOOL ret = True;
563
564         if (stdout_logging)
565                 return True;
566
567         oldumask = umask( 022 );
568   
569         pstrcpy(fname, debugf );
570
571         if (lp_loaded()) {
572                 char *logfname;
573
574                 logfname = lp_logfile();
575                 if (*logfname)
576                         pstrcpy(fname, logfname);
577         }
578
579         pstrcpy( debugf, fname );
580         new_dbf = x_fopen( debugf, O_WRONLY|O_APPEND|O_CREAT, 0644);
581
582         if (!new_dbf) {
583                 log_overflow = True;
584                 DEBUG(0, ("Unable to open new log file %s: %s\n", debugf, strerror(errno)));
585                 log_overflow = False;
586                 if (dbf)
587                         x_fflush(dbf);
588                 ret = False;
589         } else {
590                 x_setbuf(new_dbf, NULL);
591                 old_dbf = dbf;
592                 dbf = new_dbf;
593                 if (old_dbf)
594                         (void) x_fclose(old_dbf);
595         }
596
597         /* Fix from klausr@ITAP.Physik.Uni-Stuttgart.De
598          * to fix problem where smbd's that generate less
599          * than 100 messages keep growing the log.
600          */
601         force_check_log_size();
602         (void)umask(oldumask);
603
604         /* Take over stderr to catch ouput into logs */
605         if (dbf && sys_dup2(x_fileno(dbf), 2) == -1) {
606                 close_low_fds(True); /* Close stderr too, if dup2 can't point it
607                                         at the logfile */
608         }
609
610         return ret;
611 }
612
613 /* ************************************************************************** **
614  * Force a check of the log size.
615  * ************************************************************************** **
616  */
617 void force_check_log_size( void )
618 {
619   debug_count = 100;
620 }
621
622 /***************************************************************************
623  Check to see if there is any need to check if the logfile has grown too big.
624 **************************************************************************/
625
626 BOOL need_to_check_log_size( void )
627 {
628         int maxlog;
629
630         if( debug_count++ < 100 )
631                 return( False );
632
633         maxlog = lp_max_log_size() * 1024;
634         if( !dbf || maxlog <= 0 ) {
635                 debug_count = 0;
636                 return(False);
637         }
638         return( True );
639 }
640
641 /* ************************************************************************** **
642  * Check to see if the log has grown to be too big.
643  * ************************************************************************** **
644  */
645
646 void check_log_size( void )
647 {
648         int         maxlog;
649         SMB_STRUCT_STAT st;
650
651         /*
652          *  We need to be root to check/change log-file, skip this and let the main
653          *  loop check do a new check as root.
654          */
655
656         if( geteuid() != 0 )
657                 return;
658
659         if(log_overflow || !need_to_check_log_size() )
660                 return;
661
662         maxlog = lp_max_log_size() * 1024;
663
664         if( sys_fstat( x_fileno( dbf ), &st ) == 0 && st.st_size > maxlog ) {
665                 (void)reopen_logs();
666                 if( dbf && get_file_size( debugf ) > maxlog ) {
667                         pstring name;
668
669                         slprintf( name, sizeof(name)-1, "%s.old", debugf );
670                         (void)rename( debugf, name );
671       
672                         if (!reopen_logs()) {
673                                 /* We failed to reopen a log - continue using the old name. */
674                                 (void)rename(name, debugf);
675                         }
676                 }
677         }
678
679         /*
680          * Here's where we need to panic if dbf == NULL..
681          */
682
683         if(dbf == NULL) {
684                 /* This code should only be reached in very strange
685                  * circumstances. If we merely fail to open the new log we
686                  * should stick with the old one. ergo this should only be
687                  * reached when opening the logs for the first time: at
688                  * startup or when the log level is increased from zero.
689                  * -dwg 6 June 2000
690                  */
691                 dbf = x_fopen( "/dev/console", O_WRONLY, 0);
692                 if(dbf) {
693                         DEBUG(0,("check_log_size: open of debug file %s failed - using console.\n",
694                                         debugf ));
695                 } else {
696                         /*
697                          * We cannot continue without a debug file handle.
698                          */
699                         abort();
700                 }
701         }
702         debug_count = 0;
703 } /* check_log_size */
704
705 /* ************************************************************************** **
706  * Write an debug message on the debugfile.
707  * This is called by dbghdr() and format_debug_text().
708  * ************************************************************************** **
709  */
710  int Debug1( const char *format_str, ... )
711 {
712   va_list ap;  
713   int old_errno = errno;
714
715   if( stdout_logging )
716     {
717     va_start( ap, format_str );
718     if(dbf)
719       (void)x_vfprintf( dbf, format_str, ap );
720     va_end( ap );
721     errno = old_errno;
722     return( 0 );
723     }
724   
725 #ifdef WITH_SYSLOG
726   if( !lp_syslog_only() )
727 #endif
728     {
729     if( !dbf )
730       {
731       mode_t oldumask = umask( 022 );
732
733       dbf = x_fopen( debugf, O_WRONLY|O_APPEND|O_CREAT, 0644 );
734       (void)umask( oldumask );
735       if( dbf )
736         {
737         x_setbuf( dbf, NULL );
738         }
739       else
740         {
741         errno = old_errno;
742         return(0);
743         }
744       }
745     }
746
747 #ifdef WITH_SYSLOG
748   if( syslog_level < lp_syslog() )
749     {
750     /* map debug levels to syslog() priorities
751      * note that not all DEBUG(0, ...) calls are
752      * necessarily errors
753      */
754     static int priority_map[] = { 
755       LOG_ERR,     /* 0 */
756       LOG_WARNING, /* 1 */
757       LOG_NOTICE,  /* 2 */
758       LOG_INFO,    /* 3 */
759       };
760     int     priority;
761     pstring msgbuf;
762
763     if( syslog_level >= ( sizeof(priority_map) / sizeof(priority_map[0]) )
764      || syslog_level < 0)
765       priority = LOG_DEBUG;
766     else
767       priority = priority_map[syslog_level];
768       
769     va_start( ap, format_str );
770     vslprintf( msgbuf, sizeof(msgbuf)-1, format_str, ap );
771     va_end( ap );
772       
773     msgbuf[255] = '\0';
774     syslog( priority, "%s", msgbuf );
775     }
776 #endif
777   
778   check_log_size();
779
780 #ifdef WITH_SYSLOG
781   if( !lp_syslog_only() )
782 #endif
783     {
784     va_start( ap, format_str );
785     if(dbf)
786       (void)x_vfprintf( dbf, format_str, ap );
787     va_end( ap );
788     if(dbf)
789       (void)x_fflush( dbf );
790     }
791
792   errno = old_errno;
793
794   return( 0 );
795   } /* Debug1 */
796
797
798 /* ************************************************************************** **
799  * Print the buffer content via Debug1(), then reset the buffer.
800  *
801  *  Input:  none
802  *  Output: none
803  *
804  * ************************************************************************** **
805  */
806 static void bufr_print( void )
807   {
808   format_bufr[format_pos] = '\0';
809   (void)Debug1( "%s", format_bufr );
810   format_pos = 0;
811   } /* bufr_print */
812
813 /* ************************************************************************** **
814  * Format the debug message text.
815  *
816  *  Input:  msg - Text to be added to the "current" debug message text.
817  *
818  *  Output: none.
819  *
820  *  Notes:  The purpose of this is two-fold.  First, each call to syslog()
821  *          (used by Debug1(), see above) generates a new line of syslog
822  *          output.  This is fixed by storing the partial lines until the
823  *          newline character is encountered.  Second, printing the debug
824  *          message lines when a newline is encountered allows us to add
825  *          spaces, thus indenting the body of the message and making it
826  *          more readable.
827  *
828  * ************************************************************************** **
829  */
830 static void format_debug_text( char *msg )
831   {
832   size_t i;
833   BOOL timestamp = (!stdout_logging && (lp_timestamp_logs() || 
834                                         !(lp_loaded())));
835
836   for( i = 0; msg[i]; i++ )
837     {
838     /* Indent two spaces at each new line. */
839     if(timestamp && 0 == format_pos)
840       {
841       format_bufr[0] = format_bufr[1] = ' ';
842       format_pos = 2;
843       }
844
845     /* If there's room, copy the character to the format buffer. */
846     if( format_pos < FORMAT_BUFR_MAX )
847       format_bufr[format_pos++] = msg[i];
848
849     /* If a newline is encountered, print & restart. */
850     if( '\n' == msg[i] )
851       bufr_print();
852
853     /* If the buffer is full dump it out, reset it, and put out a line
854      * continuation indicator.
855      */
856     if( format_pos >= FORMAT_BUFR_MAX )
857       {
858       bufr_print();
859       (void)Debug1( " +>\n" );
860       }
861     }
862
863   /* Just to be safe... */
864   format_bufr[format_pos] = '\0';
865   } /* format_debug_text */
866
867 /* ************************************************************************** **
868  * Flush debug output, including the format buffer content.
869  *
870  *  Input:  none
871  *  Output: none
872  *
873  * ************************************************************************** **
874  */
875 void dbgflush( void )
876   {
877   bufr_print();
878   if(dbf)
879     (void)x_fflush( dbf );
880   } /* dbgflush */
881
882 /* ************************************************************************** **
883  * Print a Debug Header.
884  *
885  *  Input:  level - Debug level of the message (not the system-wide debug
886  *                  level. )
887  *          file  - Pointer to a string containing the name of the file
888  *                  from which this function was called, or an empty string
889  *                  if the __FILE__ macro is not implemented.
890  *          func  - Pointer to a string containing the name of the function
891  *                  from which this function was called, or an empty string
892  *                  if the __FUNCTION__ macro is not implemented.
893  *          line  - line number of the call to dbghdr, assuming __LINE__
894  *                  works.
895  *
896  *  Output: Always True.  This makes it easy to fudge a call to dbghdr()
897  *          in a macro, since the function can be called as part of a test.
898  *          Eg: ( (level <= DEBUGLEVEL) && (dbghdr(level,"",line)) )
899  *
900  *  Notes:  This function takes care of setting syslog_level.
901  *
902  * ************************************************************************** **
903  */
904
905 BOOL dbghdr( int level, const char *file, const char *func, int line )
906 {
907   /* Ensure we don't lose any real errno value. */
908   int old_errno = errno;
909
910   if( format_pos ) {
911     /* This is a fudge.  If there is stuff sitting in the format_bufr, then
912      * the *right* thing to do is to call
913      *   format_debug_text( "\n" );
914      * to write the remainder, and then proceed with the new header.
915      * Unfortunately, there are several places in the code at which
916      * the DEBUG() macro is used to build partial lines.  That in mind,
917      * we'll work under the assumption that an incomplete line indicates
918      * that a new header is *not* desired.
919      */
920     return( True );
921   }
922
923 #ifdef WITH_SYSLOG
924   /* Set syslog_level. */
925   syslog_level = level;
926 #endif
927
928   /* Don't print a header if we're logging to stdout. */
929   if( stdout_logging )
930     return( True );
931
932   /* Print the header if timestamps are turned on.  If parameters are
933    * not yet loaded, then default to timestamps on.
934    */
935   if( lp_timestamp_logs() || !(lp_loaded()) ) {
936     char header_str[200];
937
938         header_str[0] = '\0';
939
940         if( lp_debug_pid())
941           slprintf(header_str,sizeof(header_str)-1,", pid=%u",(unsigned int)sys_getpid());
942
943         if( lp_debug_uid()) {
944       size_t hs_len = strlen(header_str);
945           slprintf(header_str + hs_len,
946                sizeof(header_str) - 1 - hs_len,
947                            ", effective(%u, %u), real(%u, %u)",
948                (unsigned int)geteuid(), (unsigned int)getegid(),
949                            (unsigned int)getuid(), (unsigned int)getgid()); 
950         }
951   
952     /* Print it all out at once to prevent split syslog output. */
953     (void)Debug1( "[%s, %d%s] %s:%s(%d)\n",
954                   timestring(lp_debug_hires_timestamp()), level,
955                                   header_str, file, func, line );
956   }
957
958   errno = old_errno;
959   return( True );
960 }
961
962 /* ************************************************************************** **
963  * Add text to the body of the "current" debug message via the format buffer.
964  *
965  *  Input:  format_str  - Format string, as used in printf(), et. al.
966  *          ...         - Variable argument list.
967  *
968  *  ..or..  va_alist    - Old style variable parameter list starting point.
969  *
970  *  Output: Always True.  See dbghdr() for more info, though this is not
971  *          likely to be used in the same way.
972  *
973  * ************************************************************************** **
974  */
975  BOOL dbgtext( const char *format_str, ... )
976   {
977   va_list ap;
978   pstring msgbuf;
979
980   va_start( ap, format_str ); 
981   vslprintf( msgbuf, sizeof(msgbuf)-1, format_str, ap );
982   va_end( ap );
983
984   format_debug_text( msgbuf );
985
986   return( True );
987   } /* dbgtext */
988
989
990 /* ************************************************************************** */