2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) John H Terpstra 1996-1998
6 Copyright (C) Luke Kenneth Casson Leighton 1996-1998
7 Copyright (C) Paul Ashton 1998
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 /* -------------------------------------------------------------------------- **
27 * Debugging code. See also debug.c
30 /* the maximum debug level to compile into the code. This assumes a good
31 optimising compiler that can remove unused code
32 for embedded or low-memory systems set this to a value like 2 to get
33 only important messages. This gives *much* smaller binaries
35 #ifndef MAX_DEBUG_LEVEL
36 #define MAX_DEBUG_LEVEL 1000
39 int Debug1( const char *, ... ) PRINTF_ATTRIBUTE(1,2);
40 bool dbgtext( const char *, ... ) PRINTF_ATTRIBUTE(1,2);
41 bool dbghdrclass( int level
, int cls
, const char *location
, const char *func
);
42 bool dbghdr( int level
, const char *location
, const char *func
);
45 * Redefine DEBUGLEVEL because so we don't have to change every source file
46 * that *unnecessarily* references it.
48 #define DEBUGLEVEL DEBUGLEVEL_CLASS[DBGC_ALL]
51 * Define all new debug classes here. A class is represented by an entry in
52 * the DEBUGLEVEL_CLASS array. Index zero of this arrray is equivalent to the
53 * old DEBUGLEVEL. Any source file that does NOT add the following lines:
56 * #define DBGC_CLASS DBGC_<your class name here>
58 * at the start of the file (after #include "includes.h") will default to
59 * using index zero, so it will behaive just like it always has.
61 #define DBGC_ALL 0 /* index equivalent to DEBUGLEVEL */
64 #define DBGC_PRINTDRIVERS 2
67 #define DBGC_RPC_PARSE 5
68 #define DBGC_RPC_SRV 6
69 #define DBGC_RPC_CLI 7
73 #define DBGC_WINBIND 11
78 #define DBGC_LOCKING 16
81 #define DBGC_REGISTRY 19
83 /* Always ensure this is updated when new fixed classes area added, to ensure the array in debug.c is the right size */
84 #define DBGC_MAX_FIXED 19
86 /* So you can define DBGC_CLASS before including debug.h */
88 #define DBGC_CLASS 0 /* override as shown above */
91 extern int *DEBUGLEVEL_CLASS
;
96 * If the 'file specific' debug class level >= level OR the system-wide
97 * DEBUGLEVEL (synomym for DEBUGLEVEL_CLASS[ DBGC_ALL ]) >= level then
98 * generate a header using the default macros for file, line, and
99 * function name. Returns True if the debug level was <= DEBUGLEVEL.
101 * Example: if( DEBUGLVL( 2 ) ) dbgtext( "Some text.\n" );
104 * If the 'file specific' debug class level >= level OR the system-wide
105 * DEBUGLEVEL (synomym for DEBUGLEVEL_CLASS[ DBGC_ALL ]) >= level then
106 * generate a header using the default macros for file, line, and
107 * function name. Each call to DEBUG() generates a new header *unless* the
108 * previous debug output was unterminated (i.e. no '\n').
109 * See debug.c:dbghdr() for more info.
111 * Example: DEBUG( 2, ("Some text and a value %d.\n", value) );
114 * If the 'macro specified' debug class level >= level OR the system-wide
115 * DEBUGLEVEL (synomym for DEBUGLEVEL_CLASS[ DBGC_ALL ]) >= level then
116 * generate a header using the default macros for file, line, and
117 * function name. Each call to DEBUG() generates a new header *unless* the
118 * previous debug output was unterminated (i.e. no '\n').
119 * See debug.c:dbghdr() for more info.
121 * Example: DEBUGC( DBGC_TDB, 2, ("Some text and a value %d.\n", value) );
123 * DEBUGADD(), DEBUGADDC()
124 * Same as DEBUG() and DEBUGC() except the text is appended to the previous
125 * DEBUG(), DEBUGC(), DEBUGADD(), DEBUGADDC() with out another interviening
128 * Example: DEBUGADD( 2, ("Some text and a value %d.\n", value) );
129 * DEBUGADDC( DBGC_TDB, 2, ("Some text and a value %d.\n", value) );
131 * Note: If the debug class has not be redeined (see above) then the optimizer
132 * will remove the extra conditional test.
139 /* these macros gain us a few percent of speed on gcc */
141 /* the strange !! is to ensure that __builtin_expect() takes either 0 or 1
142 as its first argument */
144 #define likely(x) __builtin_expect(!!(x), 1)
147 #define unlikely(x) __builtin_expect(!!(x), 0)
151 #define likely(x) (x)
154 #define unlikely(x) (x)
158 #define CHECK_DEBUGLVL( level ) \
159 ( ((level) <= MAX_DEBUG_LEVEL) && \
160 unlikely(DEBUGLEVEL_CLASS[ DBGC_CLASS ] >= (level)))
162 #define DEBUGLVL( level ) \
163 ( CHECK_DEBUGLVL(level) \
164 && dbghdrclass( level, DBGC_CLASS, __location__, __FUNCTION__ ) )
167 #define DEBUG( level, body ) \
168 (void)( ((level) <= MAX_DEBUG_LEVEL) && \
169 unlikely(DEBUGLEVEL_CLASS[ DBGC_CLASS ] >= (level)) \
170 && (dbghdrclass( level, DBGC_CLASS, __location__, __FUNCTION__ )) \
173 #define DEBUGC( dbgc_class, level, body ) \
174 (void)( ((level) <= MAX_DEBUG_LEVEL) && \
175 unlikely(DEBUGLEVEL_CLASS[ dbgc_class ] >= (level)) \
176 && (dbghdrclass( level, DBGC_CLASS, __location__, __FUNCTION__ )) \
179 #define DEBUGADD( level, body ) \
180 (void)( ((level) <= MAX_DEBUG_LEVEL) && \
181 unlikely(DEBUGLEVEL_CLASS[ DBGC_CLASS ] >= (level)) \
184 #define DEBUGADDC( dbgc_class, level, body ) \
185 (void)( ((level) <= MAX_DEBUG_LEVEL) && \
186 unlikely((DEBUGLEVEL_CLASS[ dbgc_class ] >= (level))) \
189 /* Print a separator to the debug log. */
190 #define DEBUGSEP(level)\
191 DEBUG((level),("===============================================================\n"))
193 /* The following definitions come from lib/debug.c */
195 /** Possible destinations for the debug log (in order of precedence -
196 * once set to DEBUG_FILE, it is not possible to reset to DEBUG_STDOUT
197 * for example. This makes it easy to override for debug to stderr on
198 * the command line, as the smb.conf cannot reset it back to
199 * file-based logging */
200 enum debug_logtype
{DEBUG_DEFAULT_STDERR
= 0, DEBUG_DEFAULT_STDOUT
= 1, DEBUG_FILE
= 2, DEBUG_STDOUT
= 3, DEBUG_STDERR
= 4};
202 struct debug_settings
{
207 bool debug_prefix_timestamp
;
208 bool debug_hires_timestamp
;
214 void setup_logging(const char *prog_name
, enum debug_logtype new_logtype
);
216 void debug_close_dbf(void);
217 void gfree_debugsyms(void);
218 int debug_add_class(const char *classname
);
219 int debug_lookup_classname(const char *classname
);
220 bool debug_parse_levels(const char *params_str
);
221 void debug_setup_talloc_log(void);
222 void debug_set_logfile(const char *name
);
223 void debug_set_settings(struct debug_settings
*settings
);
224 bool reopen_logs_internal( void );
225 void force_check_log_size( void );
226 bool need_to_check_log_size( void );
227 void check_log_size( void );
228 void dbgflush( void );
229 bool dbghdrclass(int level
, int cls
, const char *location
, const char *func
);
230 bool dbghdr(int level
, const char *location
, const char *func
);
231 bool debug_get_output_is_stderr(void);
232 bool debug_get_output_is_stdout(void);
233 void debug_schedule_reopen_logs(void);
234 char *debug_list_class_names_and_levels(void);
237 log suspicious usage - print comments and backtrace
239 _PUBLIC_
void log_suspicious_usage(const char *from
, const char *info
);
242 print suspicious usage - print comments and backtrace
244 _PUBLIC_
void print_suspicious_usage(const char* from
, const char* info
);
245 _PUBLIC_
uint32_t get_task_id(void);
246 _PUBLIC_
void log_task_id(void);
248 /* the debug operations structure - contains function pointers to
249 various debug implementations of each operation */
251 /* function to log (using DEBUG) suspicious usage of data structure */
252 void (*log_suspicious_usage
)(const char* from
, const char* info
);
254 /* function to log (using printf) suspicious usage of data structure.
255 * To be used in circumstances when using DEBUG would cause loop. */
256 void (*print_suspicious_usage
)(const char* from
, const char* info
);
258 /* function to return process/thread id */
259 uint32_t (*get_task_id
)(void);
261 /* function to log process/thread id */
262 void (*log_task_id
)(int fd
);
266 register a set of debug handlers.
268 _PUBLIC_
void register_debug_handlers(const char *name
, struct debug_ops
*ops
);