2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Elrond 2002
6 Copyright (C) Simo Sorce 2002
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "librpc/gen_ndr/messaging.h"
25 /* -------------------------------------------------------------------------- **
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.
33 #define FORMAT_BUFR_SIZE 1024
34 #define FORMAT_BUFR_MAX (FORMAT_BUFR_SIZE - 1)
36 /* -------------------------------------------------------------------------- **
37 * This module implements Samba's debugging utility.
39 * The syntax of a debugging log file is represented as:
41 * <debugfile> :== { <debugmsg> }
43 * <debugmsg> :== <debughdr> '\n' <debugtext>
45 * <debughdr> :== '[' TIME ',' LEVEL ']' [ [FILENAME ':'] [FUNCTION '()'] ]
47 * <debugtext> :== { <debugline> }
49 * <debugline> :== TEXT '\n'
51 * TEXT is a string of characters excluding the newline character.
52 * LEVEL is the DEBUG level of the message (an integer in the range 0..10).
53 * TIME is a timestamp.
54 * FILENAME is the name of the file from which the debug message was generated.
55 * FUNCTION is the function from which the debug message was generated.
57 * Basically, what that all means is:
59 * - A debugging log file is made up of debug messages.
61 * - Each debug message is made up of a header and text. The header is
62 * separated from the text by a newline.
64 * - The header begins with the timestamp and debug level of the message
65 * enclosed in brackets. The filename and function from which the
66 * message was generated may follow. The filename is terminated by a
67 * colon, and the function name is terminated by parenthesis.
69 * - The message text is made up of zero or more lines, each terminated by
73 /* state variables for the debug system */
75 int fd
; /* The log file handle */
76 enum debug_logtype logtype
; /* The type of logging we are doing: eg stdout, file, stderr */
77 const char *prog_name
;
81 /* -------------------------------------------------------------------------- **
84 * debugf - Debug file name.
85 * DEBUGLEVEL - System-wide debug message limit. Messages with message-
86 * levels higher than DEBUGLEVEL will not be processed.
89 static char *debugf
= NULL
;
90 bool debug_warn_unknown_class
= True
;
91 bool debug_auto_add_unknown_class
= True
;
94 used to check if the user specified a
95 logfile on the command line
97 bool override_logfile
;
100 * This is to allow assignment to DEBUGLEVEL before the debug
101 * system has been initialized.
103 static int debug_all_class_hack
= 1;
104 static bool debug_all_class_isset_hack
= True
;
106 static int debug_num_classes
= 0;
107 int *DEBUGLEVEL_CLASS
= &debug_all_class_hack
;
108 bool *DEBUGLEVEL_CLASS_ISSET
= &debug_all_class_isset_hack
;
110 /* DEBUGLEVEL is #defined to *debug_level */
111 int DEBUGLEVEL
= &debug_all_class_hack
;
114 /* -------------------------------------------------------------------------- **
115 * Internal variables.
117 * debug_count - Number of debug messages that have been output.
118 * Used to check log size.
120 * syslog_level - Internal copy of the message debug level. Written by
121 * dbghdr() and read by Debug1().
123 * format_bufr - Used to format debug messages. The dbgtext() function
124 * prints debug messages to a string, and then passes the
125 * string to format_debug_text(), which uses format_bufr
126 * to build the formatted output.
128 * format_pos - Marks the first free byte of the format_bufr.
131 * log_overflow - When this variable is True, never attempt to check the
132 * size of the log. This is a hack, so that we can write
133 * a message using DEBUG, from open_logs() when we
134 * are unable to open a new log file for some reason.
137 static int debug_count
= 0;
139 static int syslog_level
= 0;
141 static char *format_bufr
= NULL
;
142 static size_t format_pos
= 0;
143 static bool log_overflow
= False
;
146 * Define all the debug class selection names here. Names *MUST NOT* contain
147 * white space. There must be one name for each DBGC_<class name>, and they
148 * must be in the table in the order of DBGC_<class name>..
150 static const char *default_classname_table
[] = {
151 "all", /* DBGC_ALL; index refs traditional DEBUGLEVEL */
152 "tdb", /* DBGC_TDB */
153 "printdrivers", /* DBGC_PRINTDRIVERS */
154 "lanman", /* DBGC_LANMAN */
155 "smb", /* DBGC_SMB */
156 "rpc_parse", /* DBGC_RPC_PARSE */
157 "rpc_srv", /* DBGC_RPC_SRV */
158 "rpc_cli", /* DBGC_RPC_CLI */
159 "passdb", /* DBGC_PASSDB */
160 "sam", /* DBGC_SAM */
161 "auth", /* DBGC_AUTH */
162 "winbind", /* DBGC_WINBIND */
163 "vfs", /* DBGC_VFS */
164 "idmap", /* DBGC_IDMAP */
165 "quota", /* DBGC_QUOTA */
166 "acls", /* DBGC_ACLS */
167 "locking", /* DBGC_LOCKING */
168 "msdfs", /* DBGC_MSDFS */
169 "dmapi", /* DBGC_DMAPI */
170 "registry", /* DBGC_REGISTRY */
174 static char **classname_table
= NULL
;
177 /* -------------------------------------------------------------------------- **
181 /***************************************************************************
182 Free memory pointed to by global pointers.
183 ****************************************************************************/
185 static bool initialized
;
187 void gfree_debugsyms(void)
191 if ( classname_table
) {
192 for ( i
= 0; i
< debug_num_classes
; i
++ ) {
193 SAFE_FREE( classname_table
[i
] );
195 SAFE_FREE( classname_table
);
198 if ( DEBUGLEVEL_CLASS
!= &debug_all_class_hack
) {
199 SAFE_FREE( DEBUGLEVEL_CLASS
);
200 DEBUGLEVEL_CLASS
= &debug_all_class_hack
;
203 if ( DEBUGLEVEL_CLASS_ISSET
!= &debug_all_class_isset_hack
) {
204 SAFE_FREE( DEBUGLEVEL_CLASS_ISSET
);
205 DEBUGLEVEL_CLASS_ISSET
= &debug_all_class_isset_hack
;
208 SAFE_FREE(format_bufr
);
210 debug_num_classes
= 0;
212 debug_level
= DEBUGLEVEL_CLASS
;
217 /****************************************************************************
218 utility lists registered debug class names's
219 ****************************************************************************/
221 #define MAX_CLASS_NAME_SIZE 1024
223 static char *debug_list_class_names_and_levels(void)
231 if (DEBUGLEVEL_CLASS
== &debug_all_class_hack
) {
235 list
= SMB_CALLOC_ARRAY(char *, debug_num_classes
+ 1);
240 /* prepare strings */
241 for (i
= 0, dim
= 0; i
< debug_num_classes
; i
++) {
242 int l
= asprintf(&list
[i
],
245 DEBUGLEVEL_CLASS_ISSET
[i
]?DEBUGLEVEL_CLASS
[i
]:DEBUGLEVEL
);
246 if (l
< 0 || l
> MAX_CLASS_NAME_SIZE
) {
253 /* create single string list - add space for newline */
254 b
= buf
= (char *)SMB_MALLOC(dim
+1);
259 for (i
= 0; i
< debug_num_classes
; i
++) {
260 int l
= strlen(list
[i
]);
261 strncpy(b
, list
[i
], l
);
264 b
[-1] = '\n'; /* replace last space with newline */
265 b
[0] = '\0'; /* null terminate string */
268 /* free strings list */
269 for (i
= 0; i
< debug_num_classes
; i
++) {
281 /****************************************************************************
282 Utility access to debug class names's.
283 ****************************************************************************/
285 const char *debug_classname_from_index(int ndx
)
287 if (ndx
< 0 || ndx
>= debug_num_classes
)
290 return classname_table
[ndx
];
293 /****************************************************************************
294 Utility to translate names to debug class index's (internal version).
295 ****************************************************************************/
297 static int debug_lookup_classname_int(const char* classname
)
301 if (!classname
) return -1;
303 for (i
=0; i
< debug_num_classes
; i
++) {
304 if (strcmp(classname
, classname_table
[i
])==0)
310 /****************************************************************************
311 Add a new debug class to the system.
312 ****************************************************************************/
314 int debug_add_class(const char *classname
)
322 /* check the init has yet been called */
325 ndx
= debug_lookup_classname_int(classname
);
328 ndx
= debug_num_classes
;
330 new_ptr
= DEBUGLEVEL_CLASS
;
331 if (DEBUGLEVEL_CLASS
== &debug_all_class_hack
) {
332 /* Initial loading... */
335 new_ptr
= SMB_REALLOC_ARRAY(new_ptr
, int, debug_num_classes
+ 1);
338 DEBUGLEVEL_CLASS
= (int *)new_ptr
;
339 DEBUGLEVEL_CLASS
[ndx
] = 0;
341 /* debug_level is the pointer used for the DEBUGLEVEL-thingy */
343 /* Transfer the initial level from debug_all_class_hack */
344 DEBUGLEVEL_CLASS
[ndx
] = DEBUGLEVEL
;
346 debug_level
= DEBUGLEVEL_CLASS
;
348 new_ptr
= DEBUGLEVEL_CLASS_ISSET
;
349 if (new_ptr
== &debug_all_class_isset_hack
) {
352 new_ptr
= SMB_REALLOC_ARRAY(new_ptr
, bool, debug_num_classes
+ 1);
355 DEBUGLEVEL_CLASS_ISSET
= (bool *)new_ptr
;
356 DEBUGLEVEL_CLASS_ISSET
[ndx
] = False
;
358 new_ptr
= SMB_REALLOC_ARRAY(classname_table
, char *, debug_num_classes
+ 1);
361 classname_table
= (char **)new_ptr
;
363 classname_table
[ndx
] = SMB_STRDUP(classname
);
364 if (! classname_table
[ndx
])
372 /****************************************************************************
373 Utility to translate names to debug class index's (public version).
374 ****************************************************************************/
376 int debug_lookup_classname(const char *classname
)
380 if (!classname
|| !*classname
)
383 ndx
= debug_lookup_classname_int(classname
);
388 if (debug_warn_unknown_class
) {
389 DEBUG(0, ("debug_lookup_classname(%s): Unknown class\n",
392 if (debug_auto_add_unknown_class
) {
393 return debug_add_class(classname
);
398 /****************************************************************************
399 Dump the current registered debug levels.
400 ****************************************************************************/
402 static void debug_dump_status(int level
)
406 DEBUG(level
, ("INFO: Current debug levels:\n"));
407 for (q
= 0; q
< debug_num_classes
; q
++) {
408 DEBUGADD(level
, (" %s: %s/%d\n",
410 (DEBUGLEVEL_CLASS_ISSET
[q
]
412 DEBUGLEVEL_CLASS
[q
]));
416 /****************************************************************************
417 parse the debug levels from smbcontrol. Example debug level parameter:
419 ****************************************************************************/
421 static bool debug_parse_params(char **params
)
430 /* Allow DBGC_ALL to be specified w/o requiring its class name e.g."10"
431 * v.s. "all:10", this is the traditional way to set DEBUGLEVEL
433 if (isdigit((int)params
[0][0])) {
434 DEBUGLEVEL_CLASS
[DBGC_ALL
] = atoi(params
[0]);
435 DEBUGLEVEL_CLASS_ISSET
[DBGC_ALL
] = True
;
436 i
= 1; /* start processing at the next params */
438 i
= 0; /* DBGC_ALL not specified OR class name was included */
441 /* Fill in new debug class levels */
442 for (; i
< debug_num_classes
&& params
[i
]; i
++) {
444 if ((class_name
= strtok_r(params
[i
],":", &saveptr
)) &&
445 (class_level
= strtok_r(NULL
, "\0", &saveptr
)) &&
446 ((ndx
= debug_lookup_classname(class_name
)) != -1)) {
447 DEBUGLEVEL_CLASS
[ndx
] = atoi(class_level
);
448 DEBUGLEVEL_CLASS_ISSET
[ndx
] = True
;
450 DEBUG(0,("debug_parse_params: unrecognized debug class name or format [%s]\n", params
[i
]));
458 /****************************************************************************
459 Parse the debug levels from smb.conf. Example debug level string:
460 3 tdb:5 printdrivers:7
461 Note: the 1st param has no "name:" preceeding it.
462 ****************************************************************************/
464 bool debug_parse_levels(const char *params_str
)
471 params
= str_list_make_v3(talloc_tos(), params_str
, NULL
);
473 if (debug_parse_params(params
)) {
474 debug_dump_status(5);
483 /****************************************************************************
484 Receive a "set debug level" message.
485 ****************************************************************************/
487 void debug_message(struct messaging_context
*msg_ctx
,
490 struct server_id src
,
493 const char *params_str
= (const char *)data
->data
;
495 /* Check, it's a proper string! */
496 if (params_str
[(data
->length
)-1] != '\0') {
497 DEBUG(1, ("Invalid debug message from pid %u to pid %u\n",
498 (unsigned int)procid_to_pid(&src
),
499 (unsigned int)getpid()));
503 DEBUG(3, ("INFO: Remote set of debug to `%s' (pid %u from pid %u)\n",
504 params_str
, (unsigned int)getpid(),
505 (unsigned int)procid_to_pid(&src
)));
507 debug_parse_levels(params_str
);
510 /****************************************************************************
511 Return current debug level.
512 ****************************************************************************/
514 static void debuglevel_message(struct messaging_context
*msg_ctx
,
517 struct server_id src
,
520 char *message
= debug_list_class_names_and_levels();
523 DEBUG(0,("debuglevel_message - debug_list_class_names_and_levels returned NULL\n"));
527 DEBUG(1,("INFO: Received REQ_DEBUGLEVEL message from PID %s\n",
528 procid_str_static(&src
)));
529 messaging_send_buf(msg_ctx
, src
, MSG_DEBUGLEVEL
,
530 (uint8
*)message
, strlen(message
) + 1);
535 /****************************************************************************
536 Init debugging (one time stuff)
537 ****************************************************************************/
539 void debug_init(void)
548 for(p
= default_classname_table
; *p
; p
++) {
551 format_bufr
= (char *)SMB_MALLOC(FORMAT_BUFR_SIZE
);
553 smb_panic("debug_init: unable to create buffer");
557 void debug_register_msgs(struct messaging_context
*msg_ctx
)
559 messaging_register(msg_ctx
, NULL
, MSG_DEBUG
, debug_message
);
560 messaging_register(msg_ctx
, NULL
, MSG_REQ_DEBUGLEVEL
,
565 control the name of the logfile and whether logging will be to stdout, stderr
566 or a file, and set up syslog
568 void setup_logging(const char *prog_name
, enum debug_logtype new_logtype
)
571 if (state
.logtype
< new_logtype
) {
572 state
.logtype
= new_logtype
;
575 state
.prog_name
= prog_name
;
579 if (state
.logtype
== DEBUG_FILE
) {
581 const char *p
= strrchr_m( prog_name
,'/' );
585 openlog( prog_name
, LOG_PID
, SYSLOG_FACILITY
);
587 /* for old systems that have no facility codes. */
588 openlog( prog_name
, LOG_PID
);
594 /***************************************************************************
595 Set the logfile name.
596 **************************************************************************/
598 void debug_set_logfile(const char *name
)
601 debugf
= SMB_STRDUP(name
);
604 static void debug_close_fd(int fd
)
611 /**************************************************************************
613 note that we now do this unconditionally
614 We attempt to open the new debug fp before closing the old. This means
615 if we run out of fd's we just keep using the old fd rather than aborting.
616 Fix from dgibson@linuxcare.com.
617 **************************************************************************/
620 reopen the log file (usually called because the log file name might have changed)
622 bool reopen_logs(void)
630 if (state
.reopening_logs
) {
634 switch (state
.logtype
) {
639 case DEBUG_DEFAULT_STDERR
:
641 debug_close_fd(state
.fd
);
649 oldumask
= umask( 022 );
660 logfname
= lp_logfile();
663 fname
= SMB_STRDUP(logfname
);
671 new_fd
= open( debugf
, O_WRONLY
|O_APPEND
|O_CREAT
, 0644);
675 DEBUG(0, ("Unable to open new log file %s: %s\n", debugf
, strerror(errno
)));
676 log_overflow
= False
;
681 debug_close_fd(old_fd
);
684 /* Fix from klausr@ITAP.Physik.Uni-Stuttgart.De
685 * to fix problem where smbd's that generate less
686 * than 100 messages keep growing the log.
688 force_check_log_size();
689 (void)umask(oldumask
);
691 /* Take over stderr to catch output into logs */
692 if (state
.fd
&& dup2(state
.fd
, 2) == -1) {
693 close_low_fds(True
); /* Close stderr too, if dup2 can't point it
700 /**************************************************************************
701 Force a check of the log size.
702 ***************************************************************************/
704 void force_check_log_size( void )
709 /***************************************************************************
710 Check to see if there is any need to check if the logfile has grown too big.
711 **************************************************************************/
713 bool need_to_check_log_size( void )
717 if( debug_count
< 100 )
720 maxlog
= lp_max_log_size() * 1024;
721 if( !state
.fd
|| maxlog
<= 0 ) {
728 /**************************************************************************
729 Check to see if the log has grown to be too big.
730 **************************************************************************/
732 void check_log_size( void )
738 * We need to be root to check/change log-file, skip this and let the main
739 * loop check do a new check as root.
742 if( geteuid() != sec_initial_uid() )
745 if(log_overflow
|| !need_to_check_log_size() )
748 maxlog
= lp_max_log_size() * 1024;
750 if(sys_fstat(state
.fd
, &st
, false) == 0
751 && st
.st_ex_size
> maxlog
) {
753 if( state
.fd
&& get_file_size( debugf
) > maxlog
) {
756 if (asprintf(&name
, "%s.old", debugf
) < 0) {
759 (void)rename(debugf
, name
);
761 if (!reopen_logs()) {
762 /* We failed to reopen a log - continue using the old name. */
763 (void)rename(name
, debugf
);
770 * Here's where we need to panic if state.fd == NULL..
774 /* This code should only be reached in very strange
775 * circumstances. If we merely fail to open the new log we
776 * should stick with the old one. ergo this should only be
777 * reached when opening the logs for the first time: at
778 * startup or when the log level is increased from zero.
781 int fd
= open( "/dev/console", O_WRONLY
, 0);
784 DEBUG(0,("check_log_size: open of debug file %s failed - using console.\n",
788 * We cannot continue without a debug file handle.
796 /*************************************************************************
797 Write an debug message on the debugfile.
798 This is called by dbghdr() and format_debug_text().
799 ************************************************************************/
801 int Debug1( const char *format_str
, ... )
804 int old_errno
= errno
;
808 if ( state
.logtype
!= DEBUG_FILE
) {
809 va_start( ap
, format_str
);
811 (void)vdprintf( state
.fd
, format_str
, ap
);
817 /* prevent recursion by checking if reopen_logs() has temporaily
818 set the debugf string to NULL */
823 if( !lp_syslog_only() )
827 mode_t oldumask
= umask( 022 );
828 int fd
= open( debugf
, O_WRONLY
|O_APPEND
|O_CREAT
, 0644 );
829 (void)umask( oldumask
);
839 if( syslog_level
< lp_syslog() ) {
840 /* map debug levels to syslog() priorities
841 * note that not all DEBUG(0, ...) calls are
842 * necessarily errors */
843 static const int priority_map
[4] = {
853 if( syslog_level
>= ARRAY_SIZE(priority_map
) || syslog_level
< 0)
854 priority
= LOG_DEBUG
;
856 priority
= priority_map
[syslog_level
];
859 * Specify the facility to interoperate with other syslog
860 * callers (vfs_full_audit for example).
862 priority
|= SYSLOG_FACILITY
;
864 va_start(ap
, format_str
);
865 ret
= vasprintf(&msgbuf
, format_str
, ap
);
869 syslog(priority
, "%s", msgbuf
);
878 if( !lp_syslog_only() )
881 va_start( ap
, format_str
);
883 (void)vdprintf( state
.fd
, format_str
, ap
);
894 /**************************************************************************
895 Print the buffer content via Debug1(), then reset the buffer.
898 ****************************************************************************/
900 static void bufr_print( void )
902 format_bufr
[format_pos
] = '\0';
903 (void)Debug1( "%s", format_bufr
);
907 /***************************************************************************
908 Format the debug message text.
910 Input: msg - Text to be added to the "current" debug message text.
914 Notes: The purpose of this is two-fold. First, each call to syslog()
915 (used by Debug1(), see above) generates a new line of syslog
916 output. This is fixed by storing the partial lines until the
917 newline character is encountered. Second, printing the debug
918 message lines when a newline is encountered allows us to add
919 spaces, thus indenting the body of the message and making it
921 **************************************************************************/
923 static void format_debug_text( const char *msg
)
926 bool timestamp
= (state
.logtype
== DEBUG_FILE
&& (lp_timestamp_logs() || !(lp_loaded())));
932 for( i
= 0; msg
[i
]; i
++ ) {
933 /* Indent two spaces at each new line. */
934 if(timestamp
&& 0 == format_pos
) {
935 format_bufr
[0] = format_bufr
[1] = ' ';
939 /* If there's room, copy the character to the format buffer. */
940 if( format_pos
< FORMAT_BUFR_MAX
)
941 format_bufr
[format_pos
++] = msg
[i
];
943 /* If a newline is encountered, print & restart. */
947 /* If the buffer is full dump it out, reset it, and put out a line
948 * continuation indicator.
950 if( format_pos
>= FORMAT_BUFR_MAX
) {
952 (void)Debug1( " +>\n" );
956 /* Just to be safe... */
957 format_bufr
[format_pos
] = '\0';
960 /***************************************************************************
961 Flush debug output, including the format buffer content.
965 ***************************************************************************/
967 void dbgflush( void )
972 /***************************************************************************
973 Print a Debug Header.
975 Input: level - Debug level of the message (not the system-wide debug
977 cls - Debuglevel class of the calling module.
978 file - Pointer to a string containing the name of the file
979 from which this function was called, or an empty string
980 if the __FILE__ macro is not implemented.
981 func - Pointer to a string containing the name of the function
982 from which this function was called, or an empty string
983 if the __FUNCTION__ macro is not implemented.
984 line - line number of the call to dbghdr, assuming __LINE__
987 Output: Always True. This makes it easy to fudge a call to dbghdr()
988 in a macro, since the function can be called as part of a test.
989 Eg: ( (level <= DEBUGLEVEL) && (dbghdr(level,"",line)) )
991 Notes: This function takes care of setting syslog_level.
993 ****************************************************************************/
995 bool dbghdrclass(int level
, int cls
, const char *location
, const char *func
)
997 /* Ensure we don't lose any real errno value. */
998 int old_errno
= errno
;
1001 /* This is a fudge. If there is stuff sitting in the format_bufr, then
1002 * the *right* thing to do is to call
1003 * format_debug_text( "\n" );
1004 * to write the remainder, and then proceed with the new header.
1005 * Unfortunately, there are several places in the code at which
1006 * the DEBUG() macro is used to build partial lines. That in mind,
1007 * we'll work under the assumption that an incomplete line indicates
1008 * that a new header is *not* desired.
1014 /* Set syslog_level. */
1015 syslog_level
= level
;
1018 /* Don't print a header if we're logging to stdout. */
1019 if ( state
.logtype
!= DEBUG_FILE
) {
1023 /* Print the header if timestamps are turned on. If parameters are
1024 * not yet loaded, then default to timestamps on.
1026 if( lp_timestamp_logs() || lp_debug_prefix_timestamp() || !(lp_loaded()) ) {
1027 char header_str
[200];
1029 header_str
[0] = '\0';
1032 slprintf(header_str
,sizeof(header_str
)-1,", pid=%u",(unsigned int)sys_getpid());
1034 if( lp_debug_uid()) {
1035 size_t hs_len
= strlen(header_str
);
1036 slprintf(header_str
+ hs_len
,
1037 sizeof(header_str
) - 1 - hs_len
,
1038 ", effective(%u, %u), real(%u, %u)",
1039 (unsigned int)geteuid(), (unsigned int)getegid(),
1040 (unsigned int)getuid(), (unsigned int)getgid());
1043 if (lp_debug_class() && (cls
!= DBGC_ALL
)) {
1044 size_t hs_len
= strlen(header_str
);
1045 slprintf(header_str
+ hs_len
,
1046 sizeof(header_str
) -1 - hs_len
,
1048 default_classname_table
[cls
]);
1051 /* Print it all out at once to prevent split syslog output. */
1052 if( lp_debug_prefix_timestamp() ) {
1053 (void)Debug1( "[%s, %2d%s] ",
1054 current_timestring(talloc_tos(),
1055 lp_debug_hires_timestamp()),
1058 (void)Debug1( "[%s, %2d%s] %s(%s)\n",
1059 current_timestring(talloc_tos(),
1060 lp_debug_hires_timestamp()),
1061 level
, header_str
, location
, func
);
1069 bool dbghdr(int level
, const char *location
, const char *func
)
1071 /* For compatibility with Samba 4, which doesn't have debug classes */
1072 return dbghdrclass(level
, 0, location
, func
);
1075 /***************************************************************************
1076 Add text to the body of the "current" debug message via the format buffer.
1078 Input: format_str - Format string, as used in printf(), et. al.
1079 ... - Variable argument list.
1081 ..or.. va_alist - Old style variable parameter list starting point.
1083 Output: Always True. See dbghdr() for more info, though this is not
1084 likely to be used in the same way.
1086 ***************************************************************************/
1088 bool dbgtext( const char *format_str
, ... )
1091 char *msgbuf
= NULL
;
1095 va_start(ap
, format_str
);
1096 res
= vasprintf(&msgbuf
, format_str
, ap
);
1100 format_debug_text(msgbuf
);