New silcconfig library and server parser. Merged silc-newconfig-final.patch.
[silc.git] / lib / silcutil / silclog.h
1 /*
2
3   silclog.h
4
5   Author: Johnny Mnemonic <johnny@themnemonic.org>
6
7   Copyright (C) 1997 - 2002 Pekka Riikonen
8
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 2 of the License, or
12   (at your option) any later version.
13
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.
18
19 */
20
21 /****h* silcutil/SilcLogAPI
22  *
23  * DESCRIPTION
24  *
25  * The SILC logging APIs provide a powerful and easy-to-use interface to
26  * the logging system and debugging output.
27  *
28  ***/
29
30 #ifndef SILCLOG_H
31 #define SILCLOG_H
32
33 /****d* silcutil/SilcLogAPI/SilcLogType
34  *
35  * NAME
36  *
37  *    typedef enum { ... } SilcLogType;
38  *
39  * DESCRIPTION
40  *
41  *    This is the main logging channel id. There are currently four known
42  *    logging channels (plus the debugging output channel), and they are
43  *    ordered by importance.
44  *    See the source code for SILC coding conventions about how to choose
45  *    the right output channel.
46  *
47  * SOURCE
48  */
49 typedef enum {
50   /* Generic info channel file */
51   SILC_LOG_INFO,
52
53   /* This should be used for warnings and non critical failures */
54   SILC_LOG_WARNING,
55
56   /* Generic error and critical failures messages */
57   SILC_LOG_ERROR,
58
59   /* Fatal messages (usually situations that will lead to a program crash */
60   SILC_LOG_FATAL,
61
62   /* Total number logging channels */
63   SILC_LOG_MAX
64 } SilcLogType;
65 /***/
66
67 /****f* silcutil/SilcLogAPI/SilcLogCb
68  *
69  * SYNOPSIS
70  *
71  *    typedef bool (*SilcLogCb)(SilcLogType type, char *message,
72  *                              void *context);
73  *
74  * DESCRIPTION
75  *
76  *    The logging custom callback function.  The `type' is the channel ID
77  *    that triggered the event, which allows you to use the same callback
78  *    function for multiple logging channels.
79  *    The `message' parameter points to a null-terminated buffer containing
80  *    the received message, while `context' is the caller-specified context.
81  *    The message must not be modified or freed by the callback function.
82  *
83  * SEE ALSO
84  *    silc_log_set_callback
85  *
86  ***/
87 typedef bool (*SilcLogCb)(SilcLogType type, char *message, void *context);
88
89 /****f* silcutil/SilcLogAPI/SilcLogDebugCb
90  *
91  * SYNOPSIS
92  *
93  *    typedef bool (*SilcLogDebugCb)(char *file, char *function, int line,
94  *                                   char *message, void *context);
95  *
96  * DESCRIPTION
97  *
98  *    The debug logging callback function.  The default behaviour is to
99  *    output messages to stderr.  `file', `function', and `line' are the
100  *    corresponding offsets in the source files.  `message' points to a
101  *    null-terminated buffer containing the debugging message, and `context'
102  *    is the caller-specified context.
103  *    The message must not be modified or freed by the callback function.
104  *    If the function returns TRUE, SilcLog will assume the message as handled
105  *    and won't run its default handler.
106  *
107  * SEE ALSO
108  *    silc_debug, silc_log_set_debug_callbacks
109  *
110  ***/
111 typedef bool (*SilcLogDebugCb)(char *file, char *function, int line,
112                                char *message, void *context);
113
114 /****f* silcutil/SilcLogAPI/SilcLogHexdumpCb
115  *
116  * SYNOPSIS
117  *
118  *    typedef bool (*SilcDebugHexdumpCb)(char *file, char *function, int line,
119  *                                       unsigned char *data, uint32 data_len,
120  *                                       char *message, void *context;
121  *
122  * DESCRIPTION
123  *
124  *    The hexdump logging callback function.  The default behaviour is to
125  *    print a formatted hexdump to stderr, and is commonly what you would
126  *    like it to be.  `file', `function', and `line' are the corresponding
127  *    offsets in the source files.  `data' is the begin of the buffer that
128  *    should be hexdumped, which is `data_len' bytes long.
129  *    The `message' parameter points to a null-terminated buffer containing
130  *    the received message, while `context' is the caller-specified context.
131  *    The message must not be modified or freed by the callback function.
132  *    If the function returns TRUE, SilcLog will assume the message as handled
133  *    and won't run its default handler.
134  *
135  * SEE ALSO
136  *    silc_debug_hexdump, silc_log_set_debug_callbacks
137  *
138  ***/
139 typedef bool (*SilcLogHexdumpCb)(char *file, char *function, int line,
140                                  unsigned char *data, uint32 data_len,
141                                  char *message, void *context);
142
143 /* Global Variables */
144
145 /****v* silcutil/SilcLogAPI/silc_log_quick
146  *
147  * NAME
148  *
149  *    bool silc_log_quick -- enable/disable fast logging output
150  *
151  * DESCRIPTION
152  *
153  *    SilcLog makes use of libc stream buffering output, which means that it
154  *    saves HD activity by buffering the logging messages and writing them
155  *    all together every some minutes (default is 5 minutes).
156  *    Setting this variable to TRUE will force SilcLog to write messages to the
157  *    filesystem as soon as they are received. This increases the CPU activity
158  *    notably on bigger servers, but reduces memory usage.
159  *    If you want to change the logging style on-the-fly, make sure to call
160  *    silc_log_flush_all() after setting this variable to TRUE.
161  *
162  ***/
163 extern DLLAPI bool silc_log_quick;
164
165 /****v* silcutil/SilcLogAPI/silc_log_flushdelay
166  *
167  * NAME
168  *
169  *    long silc_log_flushdelay -- flushing time delay
170  *
171  * DESCRIPTION
172  *
173  *    Sets the logfiles flushing delay in seconds.  As for now, changing this
174  *    value AFTER logfiles initialization won't take effect until previous
175  *    delay time will expire; for example if you change from 300 seconds to
176  *    60 seconds you will have to wait up to 300 seconds for this change to
177  *    take effect.
178  *    This value must be greater than 2 seconds.
179  *
180  ***/
181 extern DLLAPI long silc_log_flushdelay;
182
183 /****v* silcutil/SilcLogAPI/silc_debug
184  *
185  * NAME
186  *
187  *    bool silc_debug -- enable/disable debugging output
188  *
189  * DESCRIPTION
190  *
191  *    If silc_debug is set to FALSE, debugging functions won't procude any
192  *    output.  This is useful when for example you compile in the debugging
193  *    support but at a certain point you want to send the program in the
194  *    background.
195  *
196  * SEE ALSO
197  *    SILC_LOG_DEBUG
198  *
199  ***/
200 extern DLLAPI bool silc_debug;
201
202 /****v* silcutil/SilcLogAPI/silc_debug_hexdump
203  *
204  * NAME
205  *
206  *    bool silc_debug_hexdump -- enable/disable debugging output
207  *
208  * DESCRIPTION
209  *
210  *    If silc_debug_hexdump is set to FALSE, debugging functions won't produce
211  *    any output.  This is useful when for example you compile in the debugging
212  *    support but at a certain point you want to send the program in the
213  *    background.
214  *
215  * SEE ALSO
216  *    SILC_LOG_HEXDUMP
217  *
218  ***/
219 extern DLLAPI bool silc_debug_hexdump;
220
221 /* Macros */
222
223 #ifdef WIN32
224 #define __FUNCTION__ ""
225 #endif
226
227 /****d* silcutil/SilcLogAPI/SILC_LOG_INFO
228  *
229  * NAME
230  *
231  *    #define SILC_LOG_INFO(...)
232  *
233  * DESCRIPTION
234  *
235  *    This macro is a wrapper to the main logging function.
236  *    It supports variable argument list formatting, and *automatically*
237  *    appends newline at the end of the string.
238  *
239  * NOTES
240  *
241  *    This macro requires double parenthesis to ensure that the VA list
242  *    formatting would work correctly.
243  *
244  * EXAMPLE
245  *
246  *    SILC_LOG_INFO(("Today i feel %s", core->mood));
247  *
248  * SOURCE
249  */
250 #define SILC_LOG_INFO(fmt) silc_log_output(SILC_LOG_INFO, silc_format fmt)
251 /***/
252
253 /****d* silcutil/SilcLogAPI/SILC_LOG_WARNING
254  *
255  * NAME
256  *
257  *    #define SILC_LOG_WARNING(...)
258  *
259  * DESCRIPTION
260  *
261  *    Wrapper to the WARNING logging channel.
262  *    Please see the SILC_LOG_INFO macro.
263  *
264  * SEE ALSO
265  *    SILC_LOG_INFO
266  *
267  * SOURCE
268  */
269 #define SILC_LOG_WARNING(fmt) silc_log_output(SILC_LOG_WARNING, silc_format fmt)
270 /***/
271
272 /****d* silcutil/SilcLogAPI/SILC_LOG_ERROR
273  *
274  * NAME
275  *
276  *    #define SILC_LOG_ERROR(...)
277  *
278  * DESCRIPTION
279  *
280  *    Wrapper to the ERROR logging channel.
281  *    Please see the SILC_LOG_INFO macro.
282  *
283  * SEE ALSO
284  *    SILC_LOG_INFO
285  *
286  * SOURCE
287  */
288 #define SILC_LOG_ERROR(fmt) silc_log_output(SILC_LOG_ERROR, silc_format fmt)
289 /***/
290
291 /****d* silcutil/SilcLogAPI/SILC_LOG_FATAL
292  *
293  * NAME
294  *
295  *    #define SILC_LOG_FATAL(...)
296  *
297  * DESCRIPTION
298  *
299  *    Wrapper to the FATAL logging channel.
300  *    Please see the SILC_LOG_INFO macro.
301  *
302  * SEE ALSO
303  *    SILC_LOG_INFO
304  *
305  * SOURCE
306  */
307 #define SILC_LOG_FATAL(fmt) silc_log_output(SILC_LOG_FATAL, silc_format fmt)
308 /***/
309
310 /****d* silcutil/SilcLogAPI/SILC_LOG_DEBUG
311  *
312  * NAME
313  *
314  *    #define SILC_LOG_DEBUG(...)
315  *
316  * DESCRIPTION
317  *
318  *    This is a special wrapper to the debugging output (usually stderr).
319  *    The standard behaviour is the same as SILC_LOG_INFO, with the difference
320  *    that this macro also depends on the global define SILC_DEBUG.
321  *    Undefining SILC_DEBUG causes these functions to be defined to an empty
322  *    value, thus removing all debug logging calls from the compiled
323  *    application.
324  *    This macro is also affected by the global variable silc_debug.
325  *
326  * SOURCE
327  */
328 #ifdef SILC_DEBUG
329 #define SILC_LOG_DEBUG(fmt) silc_log_output_debug(__FILE__, \
330                                 __FUNCTION__, \
331                                 __LINE__, \
332                                 silc_format fmt)
333 #else
334 #define SILC_LOG_DEBUG(fmt)
335 #endif  /* SILC_DEBUG */
336 /***/
337
338 /****d* silcutil/SilcLogAPI/SILC_LOG_HEXDUMP
339  *
340  * NAME
341  *
342  *    #define SILC_LOG_HEXDUMP(...)
343  *
344  * DESCRIPTION
345  *
346  *    This is a special wrapper to the hexdump output function.  This macro
347  *    behaves slightly differently from other logging wrappers.
348  *    The first parameter, is composed by a group of parameters delimited by
349  *    parenthesis.
350  *    The second parameter is a `char *' pointer pointing to the beginning
351  *    of the memory section that should be hexdumped, and the third parameter
352  *    is the length of this memory section.
353  *    Undefining the global SILC_DEBUG define causes these functions to be
354  *    defined to an empty value, thus removing all debug logging calls from
355  *    the compiled application.
356  *    This macro is also affected by the global variable silc_debug_hexdump.
357  *
358  * EXAMPLE
359  *
360  *    SILC_LOG_HEXDUMP(("Outgoing packet [%d], len %d", pckt->seq, pckt->len),
361  *                     pckt->data, pckt->datalen);
362  *
363  * SOURCE
364  */
365 #ifdef SILC_DEBUG
366 #define SILC_LOG_HEXDUMP(fmt, data, len) silc_log_output_hexdump(__FILE__, \
367                                 __FUNCTION__, \
368                                 __LINE__, \
369                                 (data), (len), \
370                                 silc_format fmt)
371 #else
372 #define SILC_LOG_HEXDUMP(fmt, data, len)
373 #endif  /* SILC_DEBUG */
374 /***/
375
376 /* Prototypes */
377
378 /****f* silcutil/SilcLogAPI/silc_log_output
379  *
380  * SYNOPSIS
381  *
382  *    void silc_log_output(SilcLogType type, char *string);
383  *
384  * DESCRIPTION
385  *
386  *    This is the main function for logging output. Please note that you
387  *    should rather use one of the logging wrapper macros.
388  *    If you really want to use this function, its usage is quite simple.
389  *    The `type' parameter identifies the channel to use, while the `string'
390  *    parameter must be a dynamic allocated (null-terminated) buffer, because
391  *    it will be freed at the end of this function, for internal reasons.
392  *    If there are registered callbacks for the specified type, this function
393  *    will first trigger those callbacks.  The callback functions must NOT
394  *    free or modify the original buffer.
395  *
396  * SEE ALSO
397  *    SILC_LOG_INFO, SILC_LOG_WARNING, SILC_LOG_ERROR, SILC_LOG_FATAL
398  *
399  ***/
400 void silc_log_output(SilcLogType type, char *string);
401
402 /****f* silcutil/SilcLogAPI/silc_log_get_file
403  *
404  * SYNOPSIS
405  *
406  *    char *silc_log_get_file(SilcLogType type);
407  *
408  * DESCRIPTION
409  *
410  *    Returns the current logging file for the channel `type'.
411  *    If there has been an error during the opening of this channel, NULL
412  *    is returned, even if the file has been previously set with
413  *    silc_log_set_file().
414  *    The returned pointer points to internally allocated storage and must
415  *    not be freed, modified or stored.
416  *
417  ***/
418 char *silc_log_get_file(SilcLogType type);
419
420 /****f* silcutil/SilcLogAPI/silc_log_set_file
421  *
422  * SYNOPSIS
423  *
424  *    bool silc_log_set_file(SilcLogType type, char *filename, uint32 maxsize,
425  *                           SilcSchedule scheduler);
426  *
427  * DESCRIPTION
428  *
429  *    Sets `filename', which can be maximum `maxsize' bytes long, as the new
430  *    logging file for the channel `type'.  If you specify an illegal filename
431  *    a warning message is printed and FALSE is returned.  In this case
432  *    logging settings are not changed.
433  *    You can disable logging for a channel by specifying NULL filename, the
434  *    maxsize in this case is not important.
435  *    The `scheduler' parameter is needed by the internal logging to allow
436  *    buffered output and thus to save HD activity.
437  *
438  ***/
439 bool silc_log_set_file(SilcLogType type, char *filename, uint32 maxsize,
440                        SilcSchedule scheduler);
441
442 /****f* silcutil/SilcLogAPI/silc_log_set_callback
443  *
444  * SYNOPSIS
445  *
446  *    void silc_log_set_callback(SilcLogType type, SilcLogCb cb,
447  *                               void *context);
448  *
449  * DESCRIPTION
450  *
451  *    Set `cb' as the default callback function for the logging channel
452  *    `type'.  When SilcLog receives a message for this channel, it will
453  *    trigger the callback function.  If the callback function returns TRUE
454  *    SilcLog will assume the input as handled and won't run its default
455  *    handler.
456  *    You can disable/remove a callback by setting it to NULL or calling the
457  *    function silc_log_reset_callbacks.
458  *    If set, the callback function must be in the form described by
459  *    SilcLogCb.
460  *
461  * SEE ALSO
462  *    silc_log_reset_callbacks
463  *
464  ***/
465 void silc_log_set_callback(SilcLogType type, SilcLogCb cb, void *context);
466
467 /****f* silcutil/SilcLogAPI/silc_log_reset_callbacks
468  *
469  * SYNOPSIS
470  *
471  *    void silc_log_reset_callbacks();
472  *
473  * DESCRIPTION
474  *
475  *    Removes all logging callbacks for normal channels.  This function does
476  *    NOT remove callbacks for debugging channels (debug and hexdump), you
477  *    rather need to call silc_log_set_debug_callbacks() with NULL callbacks.
478  *
479  ***/
480 void silc_log_reset_callbacks();
481
482 /****f* silcutil/SilcLogAPI/silc_log_flush_all
483  *
484  * SYNOPSIS
485  *
486  *    void silc_log_flush_all();
487  *
488  * DESCRIPTION
489  *
490  *    Forces flushing for all logging channels.  This should be called for
491  *    example after receiving special signals.
492  *
493  * SEE ALSO
494  *    silc_log_quick
495  *
496  ***/
497 void silc_log_flush_all();
498
499 /****f* silcutil/SilcLogAPI/silc_log_reset_all
500  *
501  * SYNOPSIS
502  *
503  *    void silc_log_reset_all();
504  *
505  * DESCRIPTION
506  *
507  *    Forces all logging channels to close and reopen their streams.  Useful
508  *    for example after a SIGHUP signal.
509  *    Please note that this function could cause some warning messages if
510  *    some logging channel points to an illegal filename.
511  *
512  ***/
513 void silc_log_reset_all();
514
515 /****f* silcutil/SilcLogAPI/silc_log_output_debug
516  *
517  * SYNOPSIS
518  *
519  *    void silc_log_output_debug(char *file, char *function,
520  *                               int line, char *string);
521  *
522  * DESCRIPTION
523  *
524  *    This is the main function for debug output.  Please note that you should
525  *    rather use the wrapper macro SILC_LOG_DEBUG.
526  *    If you want to use it anyway, the `file', `function', and `line' are the
527  *    corresponding offsets in the source files, while `string' must be a
528  *    dynamic allocated (null-terminated) buffer.
529  *
530  ***/
531 void silc_log_output_debug(char *file, char *function,
532                            int line, char *string);
533
534 /****f* silcutil/SilcLogAPI/silc_log_output_hexdump
535  *
536  * SYNOPSIS
537  *
538  *    void silc_log_output_hexdump(char *file, char *function,
539  *                                 int line, void *data_in,
540  *                                 uint32 len, char *string);
541  *
542  * DESCRIPTION
543  *
544  *    This is the main function for hexdump output.  Please note that you
545  *    should rather use the wrapper macro SILC_LOG_HEXDUMP.
546  *    If you want to use it anyway, the `file', `function', and `line' are the
547  *    corresponding offsets in the source files, `data_in' is the beginning
548  *    of the buffer you wish to hexdump, which is `len' bytes long.
549  *    `string' must be a dynamic allocated (null-terminated) buffer.
550  *
551  ***/
552 void silc_log_output_hexdump(char *file, char *function,
553                              int line, void *data_in,
554                              uint32 len, char *string);
555
556 /****f* silcutil/SilcLogAPI/silc_log_set_debug_callbacks
557  *
558  * SYNOPSIS
559  *
560  *    void silc_log_set_debug_callbacks(SilcLogDebugCb debug_cb,
561  *                                      void *debug_context,
562  *                                      SilcLogHexdumpCb hexdump_cb,
563  *                                      void *hexdump_context);
564  *
565  * DESCRIPTION
566  *
567  *    Sets `debug_cb' as the the default callback function for the debug
568  *    output, that will be called with the `debug_context' parameter.
569  *    When SilcLog receives a debug message, it will trigger the callback
570  *    function.  If the callback function returns TRUE SilcLog will assume
571  *    the input as handled and won't run its default handler.
572  *    `hexdump_cb' and `hexdump_context' works the same way, except that they
573  *    are referred to SILC_LOG_HEXDUMP requests.
574  *    You can disable/remove a callback by setting it to NULL.
575  *    If set, each callback function must be either in the form described by
576  *    SilcLogDebugCb or SilcLogHexdumpCb.
577  *
578  * SEE ALSO
579  *    SilcLogDebugCb,  SilcLogHexdumpCb
580  *
581  ***/
582 void silc_log_set_debug_callbacks(SilcLogDebugCb debug_cb,
583                                   void *debug_context,
584                                   SilcLogHexdumpCb hexdump_cb,
585                                   void *hexdump_context);
586
587 /****f* silcutil/SilcLogAPI/silc_log_set_debug_string
588  *
589  * SYNOPSIS
590  *
591  *    void silc_log_set_debug_string(const char *debug_string);
592  *
593  * DESCRIPTION
594  *
595  *    Sets `debug_string' as the regexp string for filtering debugging
596  *    output.  The string is copied and it can be modified/destroyed after
597  *    this function call.
598  *
599  ***/
600 void silc_log_set_debug_string(const char *debug_string);
601
602 #endif  /* !SILCLOG_H */