-API comments
[oweals/gnunet.git] / src / util / common_logging.c
1 /*
2      This file is part of GNUnet.
3      (C) 2006, 2008, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file util/common_logging.c
23  * @brief error handling API
24  *
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_crypto_lib.h"
30 #include "gnunet_strings_lib.h"
31 #include "gnunet_time_lib.h"
32
33 #include <regex.h>
34
35 /**
36  * After how many milliseconds do we always print
37  * that "message X was repeated N times"?  Use 12h.
38  */
39 #define BULK_DELAY_THRESHOLD (12 * 60 * 60 * 1000)
40
41 /**
42  * After how many repetitions do we always print
43  * that "message X was repeated N times"? (even if
44  * we have not yet reached the delay threshold)
45  */
46 #define BULK_REPEAT_THRESHOLD 1000
47
48 /**
49  * How many characters do we use for matching of
50  * bulk messages?
51  */
52 #define BULK_TRACK_SIZE 256
53
54 /**
55  * How many characters do we use for matching of
56  * bulk components?
57  */
58 #define COMP_TRACK_SIZE 32
59
60 /**
61  * How many characters can a date/time string
62  * be at most?
63  */
64 #define DATE_STR_SIZE 64
65
66 /**
67  * How many log files to keep?
68  */
69 #define ROTATION_KEEP 3
70
71 #ifndef PATH_MAX
72 /**
73  * Assumed maximum path length (for the log file name).
74  */
75 #define PATH_MAX 4096
76 #endif
77
78
79 /**
80  * Linked list of active loggers.
81  */
82 struct CustomLogger
83 {
84   /**
85    * This is a linked list.
86    */
87   struct CustomLogger *next;
88
89   /**
90    * Log function.
91    */
92   GNUNET_Logger logger;
93
94   /**
95    * Closure for logger.
96    */
97   void *logger_cls;
98 };
99
100 /**
101  * The last "bulk" error message that we have been logging.
102  * Note that this message maybe truncated to the first BULK_TRACK_SIZE
103  * characters, in which case it is NOT 0-terminated!
104  */
105 static char last_bulk[BULK_TRACK_SIZE];
106
107 /**
108  * Type of the last bulk message.
109  */
110 static enum GNUNET_ErrorType last_bulk_kind;
111
112 /**
113  * Time of the last bulk error message (0 for none)
114  */
115 static struct GNUNET_TIME_Absolute last_bulk_time;
116
117 /**
118  * Number of times that bulk message has been repeated since.
119  */
120 static unsigned int last_bulk_repeat;
121
122 /**
123  * Component when the last bulk was logged.  Will be 0-terminated.
124  */
125 static char last_bulk_comp[COMP_TRACK_SIZE + 1];
126
127 /**
128  * Running component.
129  */
130 static char *component;
131
132 /**
133  * Running component (without pid).
134  */
135 static char *component_nopid;
136
137 /**
138  * Format string describing the name of the log file.
139  */
140 static char *log_file_name;
141
142 /**
143  * Minimum log level.
144  */
145 static enum GNUNET_ErrorType min_level;
146
147 /**
148  * Linked list of our custom loggres.
149  */
150 static struct CustomLogger *loggers;
151
152 /**
153  * Number of log calls to ignore.
154  */
155 int skip_log = 0;
156
157 /**
158  * File descriptor to use for "stderr", or NULL for none.
159  */
160 static FILE *GNUNET_stderr;
161
162 /**
163  * Represents a single logging definition
164  */
165 struct LogDef
166 {
167   /**
168    * Component name regex
169    */
170   regex_t component_regex;
171
172   /**
173    * File name regex
174    */
175   regex_t file_regex;
176
177   /**
178    * Function name regex
179    */
180   regex_t function_regex;
181
182   /**
183    * Lowest line at which this definition matches.
184    * Defaults to 0. Must be <= to_line.
185    */
186   int from_line;
187
188   /**
189    * Highest line at which this definition matches.
190    * Defaults to INT_MAX. Must be >= from_line.
191    */
192   int to_line;
193
194   /**
195    * Maximal log level allowed for calls that match this definition.
196    * Calls with higher log level will be disabled.
197    * Must be >= 0
198    */
199   int level;
200
201   /**
202    * 1 if this definition comes from GNUNET_FORCE_LOG, which means that it
203    * overrides any configuration options. 0 otherwise.
204    */
205   int force;
206 };
207
208 /**
209  * Dynamic array of logging definitions
210  */
211 static struct LogDef *logdefs;
212
213 /**
214  * Allocated size of logdefs array (in units)
215  */
216 static int logdefs_size;
217
218 /**
219  * The number of units used in logdefs array.
220  */
221 static int logdefs_len;
222
223 /**
224  * GNUNET_YES if GNUNET_LOG environment variable is already parsed.
225  */
226 static int gnunet_log_parsed;
227
228 /**
229  * GNUNET_YES if GNUNET_FORCE_LOG environment variable is already parsed.
230  */
231 static int gnunet_force_log_parsed;
232
233 /**
234  * GNUNET_YES if at least one definition with forced == 1 is available.
235  */
236 static int gnunet_force_log_present;
237
238 #ifdef WINDOWS
239 /**
240  * Contains the number of performance counts per second.
241  */
242 static LARGE_INTEGER performance_frequency;
243 #endif
244
245
246 /**
247  * Convert a textual description of a loglevel
248  * to the respective GNUNET_GE_KIND.
249  *
250  * @param log loglevel to parse
251  * @return GNUNET_GE_INVALID if log does not parse
252  */
253 static enum GNUNET_ErrorType
254 get_type (const char *log)
255 {
256   if (NULL == log)
257     return GNUNET_ERROR_TYPE_UNSPECIFIED;
258   if (0 == strcasecmp (log, _("DEBUG")))
259     return GNUNET_ERROR_TYPE_DEBUG;
260   if (0 == strcasecmp (log, _("INFO")))
261     return GNUNET_ERROR_TYPE_INFO;
262   if (0 == strcasecmp (log, _("WARNING")))
263     return GNUNET_ERROR_TYPE_WARNING;
264   if (0 == strcasecmp (log, _("ERROR")))
265     return GNUNET_ERROR_TYPE_ERROR;
266   if (0 == strcasecmp (log, _("NONE")))
267     return GNUNET_ERROR_TYPE_NONE;
268   return GNUNET_ERROR_TYPE_INVALID;
269 }
270
271
272 #if !defined(GNUNET_CULL_LOGGING)
273 /**
274  * Utility function - reallocates logdefs array to be twice as large.
275  */
276 static void
277 resize_logdefs ()
278 {
279   logdefs_size = (logdefs_size + 1) * 2;
280   logdefs = GNUNET_realloc (logdefs, logdefs_size * sizeof (struct LogDef));
281 }
282
283
284 /**
285  * Abort the process, generate a core dump if possible.
286  */
287 void
288 GNUNET_abort ()
289 {
290 #if WINDOWS
291   DebugBreak ();
292 #endif
293   abort ();
294 }
295
296
297 /**
298  * Rotate logs, deleting the oldest log.
299  *
300  * @param new_name new name to add to the rotation
301  */ 
302 static void
303 log_rotate (const char *new_name)
304 {
305   static char *rotation[ROTATION_KEEP];
306   static unsigned int rotation_off;
307   char *discard;
308
309   if ('\0' == *new_name)
310     return; /* not a real log file name */
311   discard = rotation[rotation_off % ROTATION_KEEP];
312   if (NULL != discard)
313   {
314     /* Note: can't log errors during logging (recursion!), so this
315        operation MUST silently fail... */
316     (void) UNLINK (discard);
317     GNUNET_free (discard);
318   }
319   rotation[rotation_off % ROTATION_KEEP] = GNUNET_strdup (new_name);
320   rotation_off++;  
321 }
322
323
324 /**
325  * Setup the log file.
326  *
327  * @param tm timestamp for which we should setup logging
328  * @return GNUNET_OK on success, GNUNET_SYSERR on error
329  */
330 static int
331 setup_log_file (const struct tm *tm)
332 {
333   static char last_fn[PATH_MAX + 1];  
334   char fn[PATH_MAX + 1];
335   int dirwarn;
336   int altlog_fd;
337   int dup_return;
338   FILE *altlog;
339   char *leftsquare;
340   
341   if (NULL == log_file_name)
342     return GNUNET_SYSERR;
343   if (0 == strftime (fn, sizeof (fn), log_file_name, tm))
344     return GNUNET_SYSERR;
345   leftsquare = strrchr (fn, '[');
346   if ( (NULL != leftsquare) && (']' == leftsquare[1]) )
347   {
348     char *logfile_copy = GNUNET_strdup (fn);
349     logfile_copy[leftsquare - fn] = '\0';
350     logfile_copy[leftsquare - fn + 1] = '\0';
351     snprintf (fn, PATH_MAX, "%s%d%s",
352          logfile_copy, getpid (), &logfile_copy[leftsquare - fn + 2]);
353     GNUNET_free (logfile_copy);
354   }
355   if (0 == strcmp (fn, last_fn))
356     return GNUNET_OK; /* no change */
357   log_rotate (last_fn);
358   strcpy (last_fn, fn);
359   dirwarn = (GNUNET_OK != GNUNET_DISK_directory_create_for_file (fn));
360 #if WINDOWS
361   altlog_fd = OPEN (fn, O_APPEND |
362                         O_BINARY |
363                         O_WRONLY | O_CREAT,
364                         _S_IREAD | _S_IWRITE);
365 #else
366   altlog_fd = OPEN (fn, O_APPEND |
367                         O_WRONLY | O_CREAT,
368                         S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
369 #endif
370   if (-1 != altlog_fd)
371   {
372     if (NULL != GNUNET_stderr)
373       fclose (GNUNET_stderr);
374     dup_return = dup2 (altlog_fd, 2);
375     (void) close (altlog_fd);
376     if (-1 != dup_return)
377     {
378       altlog = fdopen (2, "ab");
379       if (NULL == altlog)
380       {
381         (void) close (2);
382         altlog_fd = -1;
383       }
384     }
385     else
386     {
387       altlog_fd = -1;
388     }
389   }
390   if (-1 == altlog_fd)
391   {
392     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open", fn);
393     if (dirwarn)
394       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
395                   _("Failed to create or access directory for log file `%s'\n"),
396                   fn);
397     return GNUNET_SYSERR;
398   }
399   GNUNET_stderr = altlog; 
400   return GNUNET_OK;
401 }
402
403 /**
404  * Utility function - adds a parsed definition to logdefs array.
405  *
406  * @param component see struct LogDef, can't be NULL
407  * @param file see struct LogDef, can't be NULL
408  * @param function see struct LogDef, can't be NULL
409  * @param from_line see struct LogDef
410  * @param to_line see struct LogDef
411  * @param level see struct LogDef, must be >= 0
412  * @param force see struct LogDef
413  * @return 0 on success, regex-specific error otherwise
414  */
415 static int
416 add_definition (char *component, char *file, char *function, int from_line,
417                 int to_line, int level, int force)
418 {
419   struct LogDef n;
420   int r;
421
422   if (logdefs_size == logdefs_len)
423     resize_logdefs ();
424   memset (&n, 0, sizeof (n));
425   if (0 == strlen (component))
426     component = (char *) ".*";
427   r = regcomp (&n.component_regex, (const char *) component, REG_NOSUB);
428   if (0 != r)
429   {
430     return r;
431   }
432   if (0 == strlen (file))
433     file = (char *) ".*";
434   r = regcomp (&n.file_regex, (const char *) file, REG_NOSUB);
435   if (0 != r)
436   {
437     regfree (&n.component_regex);
438     return r;
439   }
440   if ((NULL == function) || (0 == strlen (function)))
441     function = (char *) ".*";
442   r = regcomp (&n.function_regex, (const char *) function, REG_NOSUB);
443   if (0 != r)
444   {
445     regfree (&n.component_regex);
446     regfree (&n.file_regex);
447     return r;
448   }
449   n.from_line = from_line;
450   n.to_line = to_line;
451   n.level = level;
452   n.force = force;
453   logdefs[logdefs_len++] = n;
454   return 0;
455 }
456
457
458 /**
459  * Decides whether a particular logging call should or should not be allowed
460  * to be made. Used internally by GNUNET_log*()
461  *
462  * @param caller_level loglevel the caller wants to use
463  * @param comp component name the caller uses (NULL means that global
464  *   component name is used)
465  * @param file file name containing the logging call, usually __FILE__
466  * @param function function which tries to make a logging call,
467  *   usually __FUNCTION__
468  * @param line line at which the call is made, usually __LINE__
469  * @return 0 to disallow the call, 1 to allow it
470  */
471 int
472 GNUNET_get_log_call_status (int caller_level, const char *comp,
473                             const char *file, const char *function, int line)
474 {
475   struct LogDef *ld;
476   int i;
477   int force_only;
478
479   if (NULL == comp)
480     /* Use default component */
481     comp = component_nopid;
482
483   /* We have no definitions to override globally configured log level,
484    * so just use it right away.
485    */
486   if ( (min_level >= 0) && (GNUNET_NO == gnunet_force_log_present) )
487     return caller_level <= min_level;
488
489   /* Only look for forced definitions? */
490   force_only = min_level >= 0;
491   for (i = 0; i < logdefs_len; i++)
492   {
493     ld = &logdefs[i];
494     if (( (!force_only) || ld->force) &&
495         (line >= ld->from_line && line <= ld->to_line) &&
496         (0 == regexec (&ld->component_regex, comp, 0, NULL, 0)) &&
497         (0 == regexec (&ld->file_regex, file, 0, NULL, 0)) &&
498         (0 == regexec (&ld->function_regex, function, 0, NULL, 0)))
499     {
500       /* We're finished */
501       return caller_level <= ld->level;
502     }
503   }
504   /* No matches - use global level, if defined */
505   if (min_level >= 0)
506     return caller_level <= min_level;
507   /* All programs/services previously defaulted to WARNING.
508    * Now WE default to WARNING, and THEY default to NULL.
509    */
510   return caller_level <= GNUNET_ERROR_TYPE_WARNING;
511 }
512
513
514 /**
515  * Utility function - parses a definition
516  *
517  * Definition format:
518  * component;file;function;from_line-to_line;level[/component...]
519  * All entries are mandatory, but may be empty.
520  * Empty entries for component, file and function are treated as
521  * "matches anything".
522  * Empty line entry is treated as "from 0 to INT_MAX"
523  * Line entry with only one line is treated as "this line only"
524  * Entry for level MUST NOT be empty.
525  * Entries for component, file and function that consist of a
526  * single character "*" are treated (at the moment) the same way
527  * empty entries are treated (wildcard matching is not implemented (yet?)).
528  * file entry is matched to the end of __FILE__. That is, it might be
529  * a base name, or a base name with leading directory names (some compilers
530  * define __FILE__ to absolute file path).
531  *
532  * @param constname name of the environment variable from which to get the
533  *   string to be parsed
534  * @param force 1 if definitions found in constname are to be forced
535  * @return number of added definitions
536  */
537 static int
538 parse_definitions (const char *constname, int force)
539 {
540   char *def;
541   const char *tmp;
542   char *comp = NULL;
543   char *file = NULL;
544   char *function = NULL;
545   char *p;
546   char *start;
547   char *t;
548   short state;
549   int level;
550   int from_line, to_line;
551   int counter = 0;
552   int keep_looking = 1;
553
554   tmp = getenv (constname);
555   if (NULL == tmp)
556     return 0;
557   def = GNUNET_strdup (tmp);
558   from_line = 0;
559   to_line = INT_MAX;
560   for (p = def, state = 0, start = def; keep_looking; p++)
561   {
562     switch (p[0])
563     {
564     case ';':                  /* found a field separator */
565       p[0] = '\0';
566       switch (state)
567       {
568       case 0:                  /* within a component name */
569         comp = start;
570         break;
571       case 1:                  /* within a file name */
572         file = start;
573         break;
574       case 2:                  /* within a function name */
575         /* after a file name there must be a function name */
576         function = start;
577         break;
578       case 3:                  /* within a from-to line range */
579         if (strlen (start) > 0)
580         {
581           errno = 0;
582           from_line = strtol (start, &t, 10);
583           if ( (0 != errno) || (from_line < 0) )
584           {
585             GNUNET_free (def);
586             return counter;
587           }
588           if ( (t < p) && ('-' == t[0]) )
589           {
590             errno = 0;
591             start = t + 1;
592             to_line = strtol (start, &t, 10);
593             if ( (0 != errno) || (to_line < 0) || (t != p) )
594             {
595               GNUNET_free (def);
596               return counter;
597             }
598           }
599           else                  /* one number means "match this line only" */
600             to_line = from_line;
601         }
602         else                    /* default to 0-max */
603         {
604           from_line = 0;
605           to_line = INT_MAX;
606         }
607         break;
608       }
609       start = p + 1;
610       state++;
611       break;
612     case '\0':                 /* found EOL */
613       keep_looking = 0;
614       /* fall through to '/' */
615     case '/':                  /* found a definition separator */
616       switch (state)
617       {
618       case 4:                  /* within a log level */
619         p[0] = '\0';
620         state = 0;
621         level = get_type ((const char *) start);
622         if ( (GNUNET_ERROR_TYPE_INVALID == level) ||
623              (GNUNET_ERROR_TYPE_UNSPECIFIED == level) ||
624              (0 != add_definition (comp, file, function, from_line, to_line,
625                                    level, force)) )
626         {
627           GNUNET_free (def);
628           return counter;
629         }
630         counter++;
631         start = p + 1;
632         break;
633       default:
634         break;
635       }
636     default:
637       break;
638     }
639   }
640   GNUNET_free (def);
641   return counter;
642 }
643
644
645 /**
646  * Utility function - parses GNUNET_LOG and GNUNET_FORCE_LOG.
647  */
648 static void
649 parse_all_definitions ()
650 {
651   if (GNUNET_NO == gnunet_log_parsed)
652     parse_definitions ("GNUNET_LOG", 0);
653   gnunet_log_parsed = GNUNET_YES;
654   if (GNUNET_NO == gnunet_force_log_parsed)
655     gnunet_force_log_present =
656         parse_definitions ("GNUNET_FORCE_LOG", 1) > 0 ? GNUNET_YES : GNUNET_NO;
657   gnunet_force_log_parsed = GNUNET_YES;
658 }
659 #endif
660
661
662 /**
663  * Setup logging.
664  *
665  * @param comp default component to use
666  * @param loglevel what types of messages should be logged
667  * @param logfile which file to write log messages to (can be NULL)
668  * @return GNUNET_OK on success
669  */
670 int
671 GNUNET_log_setup (const char *comp, const char *loglevel, const char *logfile)
672 {
673   const char *env_logfile;
674   const struct tm *tm;
675   time_t t;
676
677   min_level = get_type (loglevel);
678 #if !defined(GNUNET_CULL_LOGGING)
679   parse_all_definitions ();
680 #endif
681 #ifdef WINDOWS
682   QueryPerformanceFrequency (&performance_frequency);
683 #endif
684   GNUNET_free_non_null (component);
685   GNUNET_asprintf (&component, "%s-%d", comp, getpid ());
686   GNUNET_free_non_null (component_nopid);
687   component_nopid = GNUNET_strdup (comp);
688
689   env_logfile = getenv ("GNUNET_FORCE_LOGFILE");
690   if ((NULL != env_logfile) && (strlen (env_logfile) > 0))
691     logfile = env_logfile;
692   if (NULL == logfile)
693     return GNUNET_OK;
694   GNUNET_free_non_null (log_file_name);
695   log_file_name = GNUNET_STRINGS_filename_expand (logfile);
696   if (NULL == log_file_name)
697     return GNUNET_SYSERR;
698   t = time (NULL);
699   tm = gmtime (&t);
700   return setup_log_file (tm);
701 }
702
703
704 /**
705  * Add a custom logger.
706  *
707  * @param logger log function
708  * @param logger_cls closure for logger
709  */
710 void
711 GNUNET_logger_add (GNUNET_Logger logger, void *logger_cls)
712 {
713   struct CustomLogger *entry;
714
715   entry = GNUNET_malloc (sizeof (struct CustomLogger));
716   entry->logger = logger;
717   entry->logger_cls = logger_cls;
718   entry->next = loggers;
719   loggers = entry;
720 }
721
722
723 /**
724  * Remove a custom logger.
725  *
726  * @param logger log function
727  * @param logger_cls closure for logger
728  */
729 void
730 GNUNET_logger_remove (GNUNET_Logger logger, void *logger_cls)
731 {
732   struct CustomLogger *pos;
733   struct CustomLogger *prev;
734
735   prev = NULL;
736   pos = loggers;
737   while ((pos != NULL) &&
738          ((pos->logger != logger) || (pos->logger_cls != logger_cls)))
739   {
740     prev = pos;
741     pos = pos->next;
742   }
743   GNUNET_assert (pos != NULL);
744   if (prev == NULL)
745     loggers = pos->next;
746   else
747     prev->next = pos->next;
748   GNUNET_free (pos);
749 }
750
751 #if WINDOWS
752 CRITICAL_SECTION output_message_cs;
753 #endif
754
755
756 /**
757  * Actually output the log message.
758  *
759  * @param kind how severe was the issue
760  * @param comp component responsible
761  * @param datestr current date/time
762  * @param msg the actual message
763  */
764 static void
765 output_message (enum GNUNET_ErrorType kind, const char *comp,
766                 const char *datestr, const char *msg)
767 {
768   struct CustomLogger *pos;
769 #if WINDOWS
770   EnterCriticalSection (&output_message_cs);
771 #endif
772   if (NULL != GNUNET_stderr)
773   {
774     FPRINTF (GNUNET_stderr, "%s %s %s %s", datestr, comp,
775              GNUNET_error_type_to_string (kind), msg);
776     fflush (GNUNET_stderr);
777   }
778   pos = loggers;
779   while (pos != NULL)
780   {
781     pos->logger (pos->logger_cls, kind, comp, datestr, msg);
782     pos = pos->next;
783   }
784 #if WINDOWS
785   LeaveCriticalSection (&output_message_cs);
786 #endif
787 }
788
789
790 /**
791  * Flush an existing bulk report to the output.
792  *
793  * @param datestr our current timestamp
794  */
795 static void
796 flush_bulk (const char *datestr)
797 {
798   char msg[DATE_STR_SIZE + BULK_TRACK_SIZE + 256];
799   int rev;
800   char *last;
801   char *ft;
802
803   if ((last_bulk_time.abs_value == 0) || (last_bulk_repeat == 0))
804     return;
805   rev = 0;
806   last = memchr (last_bulk, '\0', BULK_TRACK_SIZE);
807   if (last == NULL)
808     last = &last_bulk[BULK_TRACK_SIZE - 1];
809   else if (last != last_bulk)
810     last--;
811   if (last[0] == '\n')
812   {
813     rev = 1;
814     last[0] = '\0';
815   }
816   ft = GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration
817                                                (last_bulk_time));
818   snprintf (msg, sizeof (msg),
819             _("Message `%.*s' repeated %u times in the last %s\n"),
820             BULK_TRACK_SIZE, last_bulk, last_bulk_repeat, ft);
821   GNUNET_free (ft);
822   if (rev == 1)
823     last[0] = '\n';
824   output_message (last_bulk_kind, last_bulk_comp, datestr, msg);
825   last_bulk_time = GNUNET_TIME_absolute_get ();
826   last_bulk_repeat = 0;
827 }
828
829
830 /**
831  * Ignore the next n calls to the log function.
832  *
833  * @param n number of log calls to ignore (could be negative)
834  * @param check_reset GNUNET_YES to assert that the log skip counter is currently zero
835  */
836 void
837 GNUNET_log_skip (int n, int check_reset)
838 {
839   int ok;
840
841   if (0 == n)
842   {
843     ok = (0 == skip_log);
844     skip_log = 0;
845     if (check_reset)
846       GNUNET_assert (ok);
847   }
848   else
849   {
850     skip_log += n;
851   }
852 }
853
854 /**
855  * Get the number of log calls that are going to be skipped
856  *
857  * @return number of log calls to be ignored
858  */
859 int
860 GNUNET_get_log_skip ()
861 {
862   return skip_log;
863 }
864
865 /**
866  * Output a log message using the default mechanism.
867  *
868  * @param kind how severe was the issue
869  * @param comp component responsible
870  * @param message the actual message
871  * @param va arguments to the format string "message"
872  */
873 static void
874 mylog (enum GNUNET_ErrorType kind, const char *comp, const char *message,
875        va_list va)
876 {
877   char date[DATE_STR_SIZE];
878   char date2[DATE_STR_SIZE];
879   struct tm *tmptr;
880   size_t size;
881   va_list vacp;
882
883   va_copy (vacp, va);
884   size = VSNPRINTF (NULL, 0, message, vacp) + 1;
885   GNUNET_assert (0 != size);
886   va_end (vacp);
887   memset (date, 0, DATE_STR_SIZE);
888   {
889     char buf[size];
890 #ifdef WINDOWS
891     LARGE_INTEGER pc;
892     time_t timetmp;
893
894     time (&timetmp);
895     tmptr = localtime (&timetmp);
896     pc.QuadPart = 0;
897     QueryPerformanceCounter (&pc);
898     if (NULL == tmptr)
899     {
900       strcpy (date, "localtime error");
901     }
902     else
903     {
904       strftime (date2, DATE_STR_SIZE, "%b %d %H:%M:%S-%%020llu", tmptr);
905       snprintf (date, sizeof (date), date2,
906                 (long long) (pc.QuadPart /
907                              (performance_frequency.QuadPart / 1000)));
908     }
909 #else
910     struct timeval timeofday;
911
912     gettimeofday (&timeofday, NULL);
913     tmptr = localtime (&timeofday.tv_sec);
914     if (NULL == tmptr)
915     {
916       strcpy (date, "localtime error");
917     }
918     else
919     {
920       strftime (date2, DATE_STR_SIZE, "%b %d %H:%M:%S-%%06u", tmptr);
921       snprintf (date, sizeof (date), date2, timeofday.tv_usec);
922     }
923 #endif  
924     VSNPRINTF (buf, size, message, va);
925     if (NULL != tmptr)
926       (void) setup_log_file (tmptr);
927     if ((0 != (kind & GNUNET_ERROR_TYPE_BULK)) &&
928         (last_bulk_time.abs_value != 0) &&
929         (0 == strncmp (buf, last_bulk, sizeof (last_bulk))))
930     {
931       last_bulk_repeat++;
932       if ((GNUNET_TIME_absolute_get_duration (last_bulk_time).rel_value >
933            BULK_DELAY_THRESHOLD) || (last_bulk_repeat > BULK_REPEAT_THRESHOLD))
934         flush_bulk (date);
935       return;
936     }
937     flush_bulk (date);
938     strncpy (last_bulk, buf, sizeof (last_bulk));
939     last_bulk_repeat = 0;
940     last_bulk_kind = kind;
941     last_bulk_time = GNUNET_TIME_absolute_get ();
942     strncpy (last_bulk_comp, comp, COMP_TRACK_SIZE);
943     output_message (kind, comp, date, buf);
944   }
945 }
946
947
948 /**
949  * Main log function.
950  *
951  * @param kind how serious is the error?
952  * @param message what is the message (format string)
953  * @param ... arguments for format string
954  */
955 void
956 GNUNET_log_nocheck (enum GNUNET_ErrorType kind, const char *message, ...)
957 {
958   va_list va;
959
960   va_start (va, message);
961   mylog (kind, component, message, va);
962   va_end (va);
963 }
964
965
966 /**
967  * Log function that specifies an alternative component.
968  * This function should be used by plugins.
969  *
970  * @param kind how serious is the error?
971  * @param comp component responsible for generating the message
972  * @param message what is the message (format string)
973  * @param ... arguments for format string
974  */
975 void
976 GNUNET_log_from_nocheck (enum GNUNET_ErrorType kind, const char *comp,
977                          const char *message, ...)
978 {
979   va_list va;
980   char comp_w_pid[128];
981
982   if (comp == NULL)
983     comp = component_nopid;
984
985   va_start (va, message);
986   GNUNET_snprintf (comp_w_pid, sizeof (comp_w_pid), "%s-%d", comp, getpid ());
987   mylog (kind, comp_w_pid, message, va);
988   va_end (va);
989 }
990
991
992 /**
993  * Convert error type to string.
994  *
995  * @param kind type to convert
996  * @return string corresponding to the type
997  */
998 const char *
999 GNUNET_error_type_to_string (enum GNUNET_ErrorType kind)
1000 {
1001   if ((kind & GNUNET_ERROR_TYPE_ERROR) > 0)
1002     return _("ERROR");
1003   if ((kind & GNUNET_ERROR_TYPE_WARNING) > 0)
1004     return _("WARNING");
1005   if ((kind & GNUNET_ERROR_TYPE_INFO) > 0)
1006     return _("INFO");
1007   if ((kind & GNUNET_ERROR_TYPE_DEBUG) > 0)
1008     return _("DEBUG");
1009   if ((kind & ~GNUNET_ERROR_TYPE_BULK) == 0)
1010     return _("NONE");
1011   return _("INVALID");
1012 }
1013
1014
1015 /**
1016  * Convert a hash to a string (for printing debug messages).
1017  * This is one of the very few calls in the entire API that is
1018  * NOT reentrant!
1019  *
1020  * @param hc the hash code
1021  * @return string form; will be overwritten by next call to GNUNET_h2s.
1022  */
1023 const char *
1024 GNUNET_h2s (const struct GNUNET_HashCode * hc)
1025 {
1026   static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
1027
1028   GNUNET_CRYPTO_hash_to_enc (hc, &ret);
1029   ret.encoding[8] = '\0';
1030   return (const char *) ret.encoding;
1031 }
1032
1033
1034 /**
1035  * Convert a hash to a string (for printing debug messages).
1036  * This is one of the very few calls in the entire API that is
1037  * NOT reentrant!
1038  *
1039  * @param hc the hash code
1040  * @return string form; will be overwritten by next call to GNUNET_h2s_full.
1041  */
1042 const char *
1043 GNUNET_h2s_full (const struct GNUNET_HashCode * hc)
1044 {
1045   static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
1046
1047   GNUNET_CRYPTO_hash_to_enc (hc, &ret);
1048   ret.encoding[sizeof (ret) - 1] = '\0';
1049   return (const char *) ret.encoding;
1050 }
1051
1052
1053 /**
1054  * Convert a peer identity to a string (for printing debug messages).
1055  * This is one of the very few calls in the entire API that is
1056  * NOT reentrant!
1057  *
1058  * @param pid the peer identity
1059  * @return string form of the pid; will be overwritten by next
1060  *         call to GNUNET_i2s.
1061  */
1062 const char *
1063 GNUNET_i2s (const struct GNUNET_PeerIdentity *pid)
1064 {
1065   static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
1066
1067   GNUNET_CRYPTO_hash_to_enc (&pid->hashPubKey, &ret);
1068   ret.encoding[4] = '\0';
1069   return (const char *) ret.encoding;
1070 }
1071
1072
1073 /**
1074  * Convert a peer identity to a string (for printing debug messages).
1075  * This is one of the very few calls in the entire API that is
1076  * NOT reentrant!
1077  *
1078  * @param pid the peer identity
1079  * @return string form of the pid; will be overwritten by next
1080  *         call to GNUNET_i2s.
1081  */
1082 const char *
1083 GNUNET_i2s_full (const struct GNUNET_PeerIdentity *pid)
1084 {
1085   static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
1086
1087   GNUNET_CRYPTO_hash_to_enc (&pid->hashPubKey, &ret);
1088   return (const char *) ret.encoding;
1089 }
1090
1091
1092 /**
1093  * Convert a "struct sockaddr*" (IPv4 or IPv6 address) to a string
1094  * (for printing debug messages).  This is one of the very few calls
1095  * in the entire API that is NOT reentrant!
1096  *
1097  * @param addr the address
1098  * @param addrlen the length of the address
1099  * @return nicely formatted string for the address
1100  *  will be overwritten by next call to GNUNET_a2s.
1101  */
1102 const char *
1103 GNUNET_a2s (const struct sockaddr *addr, socklen_t addrlen)
1104 {
1105   static char buf[INET6_ADDRSTRLEN + 8];
1106   static char b2[6];
1107   const struct sockaddr_in *v4;
1108   const struct sockaddr_un *un;
1109   const struct sockaddr_in6 *v6;
1110   unsigned int off;
1111
1112   if (addr == NULL)
1113     return _("unknown address");
1114   switch (addr->sa_family)
1115   {
1116   case AF_INET:
1117     if (addrlen != sizeof (struct sockaddr_in))
1118       return "<invalid v4 address>";
1119     v4 = (const struct sockaddr_in *) addr;
1120     inet_ntop (AF_INET, &v4->sin_addr, buf, INET_ADDRSTRLEN);
1121     if (0 == ntohs (v4->sin_port))
1122       return buf;
1123     strcat (buf, ":");
1124     GNUNET_snprintf (b2, sizeof (b2), "%u", ntohs (v4->sin_port));
1125     strcat (buf, b2);
1126     return buf;
1127   case AF_INET6:
1128     if (addrlen != sizeof (struct sockaddr_in6))
1129       return "<invalid v4 address>";
1130     v6 = (const struct sockaddr_in6 *) addr;
1131     buf[0] = '[';
1132     inet_ntop (AF_INET6, &v6->sin6_addr, &buf[1], INET6_ADDRSTRLEN);
1133     if (0 == ntohs (v6->sin6_port))
1134       return &buf[1];
1135     strcat (buf, "]:");
1136     GNUNET_snprintf (b2, sizeof (b2), "%u", ntohs (v6->sin6_port));
1137     strcat (buf, b2);
1138     return buf;
1139   case AF_UNIX:
1140     if (addrlen <= sizeof (sa_family_t))
1141       return "<unbound UNIX client>";
1142     un = (const struct sockaddr_un *) addr;
1143     off = 0;
1144     if (un->sun_path[0] == '\0')
1145       off++;
1146     snprintf (buf, sizeof (buf), "%s%.*s", (off == 1) ? "@" : "",
1147               (int) (addrlen - sizeof (sa_family_t) - 1 - off),
1148               &un->sun_path[off]);
1149     return buf;
1150   default:
1151     return _("invalid address");
1152   }
1153 }
1154
1155
1156 /**
1157  * Initializer
1158  */
1159 void __attribute__ ((constructor)) GNUNET_util_cl_init ()
1160 {
1161   GNUNET_stderr = stderr;
1162 #ifdef MINGW
1163   GNInitWinEnv (NULL);
1164 #endif
1165 #if WINDOWS
1166   if (!InitializeCriticalSectionAndSpinCount (&output_message_cs, 0x00000400))\r
1167     GNUNET_abort ();
1168 #endif
1169 }
1170
1171
1172 /**
1173  * Destructor
1174  */
1175 void __attribute__ ((destructor)) GNUNET_util_cl_fini ()
1176 {
1177 #if WINDOWS
1178   DeleteCriticalSection (&output_message_cs);
1179 #endif
1180 #ifdef MINGW
1181   GNShutdownWinEnv ();
1182 #endif
1183 }
1184
1185 /* end of common_logging.c */