-fixing indentation
[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  * Linked list of active loggers.
68  */
69 struct CustomLogger
70 {
71   /**
72    * This is a linked list.
73    */
74   struct CustomLogger *next;
75
76   /**
77    * Log function.
78    */
79   GNUNET_Logger logger;
80
81   /**
82    * Closure for logger.
83    */
84   void *logger_cls;
85 };
86
87 /**
88  * The last "bulk" error message that we have been logging.
89  * Note that this message maybe truncated to the first BULK_TRACK_SIZE
90  * characters, in which case it is NOT 0-terminated!
91  */
92 static char last_bulk[BULK_TRACK_SIZE];
93
94 /**
95  * Type of the last bulk message.
96  */
97 static enum GNUNET_ErrorType last_bulk_kind;
98
99 /**
100  * Time of the last bulk error message (0 for none)
101  */
102 static struct GNUNET_TIME_Absolute last_bulk_time;
103
104 /**
105  * Number of times that bulk message has been repeated since.
106  */
107 static unsigned int last_bulk_repeat;
108
109 /**
110  * Component when the last bulk was logged.  Will be 0-terminated.
111  */
112 static char last_bulk_comp[COMP_TRACK_SIZE + 1];
113
114 /**
115  * Running component.
116  */
117 static char *component;
118
119 /**
120  * Running component (without pid).
121  */
122 static char *component_nopid;
123
124 /**
125  * Minimum log level.
126  */
127 static enum GNUNET_ErrorType min_level;
128
129 /**
130  * Linked list of our custom loggres.
131  */
132 static struct CustomLogger *loggers;
133
134 /**
135  * Number of log calls to ignore.
136  */
137 unsigned int skip_log;
138
139 /**
140  * File descriptor to use for "stderr", or NULL for none.
141  */
142 static FILE *GNUNET_stderr;
143
144 /**
145  * Represents a single logging definition
146  */
147 struct LogDef
148 {
149   /**
150    * Component name regex
151    */
152   regex_t component_regex;
153
154   /**
155    * File name regex
156    */
157   regex_t file_regex;
158
159   /**
160    * Function name regex
161    */
162   regex_t function_regex;
163
164   /**
165    * Lowest line at which this definition matches.
166    * Defaults to 0. Must be <= to_line.
167    */
168   int from_line;
169
170   /**
171    * Highest line at which this definition matches.
172    * Defaults to INT_MAX. Must be >= from_line.
173    */
174   int to_line;
175
176   /**
177    * Maximal log level allowed for calls that match this definition.
178    * Calls with higher log level will be disabled.
179    * Must be >= 0
180    */
181   int level;
182
183   /**
184    * 1 if this definition comes from GNUNET_FORCE_LOG, which means that it
185    * overrides any configuration options. 0 otherwise.
186    */
187   int force;
188 };
189
190 /**
191  * Dynamic array of logging definitions
192  */
193 struct LogDef *logdefs = NULL;
194
195 /**
196  * Allocated size of logdefs array (in units)
197  */
198 int logdefs_size = 0;
199
200 /**
201  * The number of units used in logdefs array.
202  */
203 int logdefs_len = 0;
204
205 /**
206  * GNUNET_YES if GNUNET_LOG environment variable is already parsed.
207  */
208 int gnunet_log_parsed = GNUNET_NO;
209
210 /**
211  * GNUNET_YES if GNUNET_FORCE_LOG environment variable is already parsed.
212  */
213 int gnunet_force_log_parsed = GNUNET_NO;
214
215 /**
216  * GNUNET_YES if at least one definition with forced == 1 is available.
217  */
218 int gnunet_force_log_present = GNUNET_NO;
219
220 #ifdef WINDOWS
221 /**
222  * Contains the number of performance counts per second.
223  */
224 LARGE_INTEGER performance_frequency;
225 #endif
226
227 /**
228  * Convert a textual description of a loglevel
229  * to the respective GNUNET_GE_KIND.
230  *
231  * @param log loglevel to parse
232  * @return GNUNET_GE_INVALID if log does not parse
233  */
234 static enum GNUNET_ErrorType
235 get_type (const char *log)
236 {
237   if (log == NULL)
238     return GNUNET_ERROR_TYPE_UNSPECIFIED;
239   if (0 == strcasecmp (log, _("DEBUG")))
240     return GNUNET_ERROR_TYPE_DEBUG;
241   if (0 == strcasecmp (log, _("INFO")))
242     return GNUNET_ERROR_TYPE_INFO;
243   if (0 == strcasecmp (log, _("WARNING")))
244     return GNUNET_ERROR_TYPE_WARNING;
245   if (0 == strcasecmp (log, _("ERROR")))
246     return GNUNET_ERROR_TYPE_ERROR;
247   if (0 == strcasecmp (log, _("NONE")))
248     return GNUNET_ERROR_TYPE_NONE;
249   return GNUNET_ERROR_TYPE_INVALID;
250 }
251
252 #if !defined(GNUNET_CULL_LOGGING)
253 /**
254  * Utility function - reallocates logdefs array to be twice as large.
255  */
256 static void
257 resize_logdefs ()
258 {
259   logdefs_size = (logdefs_size + 1) * 2;
260   logdefs = GNUNET_realloc (logdefs, logdefs_size * sizeof (struct LogDef));
261 }
262
263
264 /**
265  * Abort the process, generate a core dump if possible.
266  */
267 void
268 GNUNET_abort ()
269 {
270 #if WINDOWS
271   DebugBreak ();
272 #endif
273   abort ();
274 }
275
276
277 /**
278  * Utility function - adds a parsed definition to logdefs array.
279  *
280  * @param component see struct LogDef, can't be NULL
281  * @param file see struct LogDef, can't be NULL
282  * @param function see struct LogDef, can't be NULL
283  * @param from_line see struct LogDef
284  * @param to_line see struct LogDef
285  * @param level see struct LogDef, must be >= 0
286  * @param force see struct LogDef
287  * @return 0 on success, regex-specific error otherwise
288  */
289 static int
290 add_definition (char *component, char *file, char *function, int from_line,
291                 int to_line, int level, int force)
292 {
293   struct LogDef n;
294   int r;
295
296   if (logdefs_size == logdefs_len)
297     resize_logdefs ();
298   memset (&n, 0, sizeof (n));
299   if (strlen (component) == 0)
300     component = (char *) ".*";
301   r = regcomp (&n.component_regex, (const char *) component, REG_NOSUB);
302   if (r != 0)
303   {
304     return r;
305   }
306   if (strlen (file) == 0)
307     file = (char *) ".*";
308   r = regcomp (&n.file_regex, (const char *) file, REG_NOSUB);
309   if (r != 0)
310   {
311     regfree (&n.component_regex);
312     return r;
313   }
314   if ((NULL == function) || (strlen (function) == 0))
315     function = (char *) ".*";
316   r = regcomp (&n.function_regex, (const char *) function, REG_NOSUB);
317   if (r != 0)
318   {
319     regfree (&n.component_regex);
320     regfree (&n.file_regex);
321     return r;
322   }
323   n.from_line = from_line;
324   n.to_line = to_line;
325   n.level = level;
326   n.force = force;
327   logdefs[logdefs_len++] = n;
328   return 0;
329 }
330
331
332 /**
333  * Decides whether a particular logging call should or should not be allowed
334  * to be made. Used internally by GNUNET_log*()
335  *
336  * @param caller_level loglevel the caller wants to use
337  * @param comp component name the caller uses (NULL means that global
338  *   component name is used)
339  * @param file file name containing the logging call, usually __FILE__
340  * @param function function which tries to make a logging call,
341  *   usually __FUNCTION__
342  * @param line line at which the call is made, usually __LINE__
343  * @return 0 to disallow the call, 1 to allow it
344  */
345 int
346 GNUNET_get_log_call_status (int caller_level, const char *comp,
347                             const char *file, const char *function, int line)
348 {
349   struct LogDef *ld;
350   int i;
351   int force_only;
352
353   if (comp == NULL)
354     /* Use default component */
355     comp = component_nopid;
356
357   /* We have no definitions to override globally configured log level,
358    * so just use it right away.
359    */
360   if (min_level >= 0 && gnunet_force_log_present == GNUNET_NO)
361     return caller_level <= min_level;
362
363   /* Only look for forced definitions? */
364   force_only = min_level >= 0;
365   for (i = 0; i < logdefs_len; i++)
366   {
367     ld = &logdefs[i];
368     if ((!force_only || ld->force) &&
369         (line >= ld->from_line && line <= ld->to_line) &&
370         (regexec (&ld->component_regex, comp, 0, NULL, 0) == 0) &&
371         (regexec (&ld->file_regex, file, 0, NULL, 0) == 0) &&
372         (regexec (&ld->function_regex, function, 0, NULL, 0) == 0))
373     {
374       /* We're finished */
375       return caller_level <= ld->level;
376     }
377   }
378   /* No matches - use global level, if defined */
379   if (min_level >= 0)
380     return caller_level <= min_level;
381   /* All programs/services previously defaulted to WARNING.
382    * Now WE default to WARNING, and THEY default to NULL.
383    */
384   return caller_level <= GNUNET_ERROR_TYPE_WARNING;
385 }
386
387
388 /**
389  * Utility function - parses a definition
390  *
391  * Definition format:
392  * component;file;function;from_line-to_line;level[/component...]
393  * All entries are mandatory, but may be empty.
394  * Empty entries for component, file and function are treated as
395  * "matches anything".
396  * Empty line entry is treated as "from 0 to INT_MAX"
397  * Line entry with only one line is treated as "this line only"
398  * Entry for level MUST NOT be empty.
399  * Entries for component, file and function that consist of a
400  * single character "*" are treated (at the moment) the same way
401  * empty entries are treated (wildcard matching is not implemented (yet?)).
402  * file entry is matched to the end of __FILE__. That is, it might be
403  * a base name, or a base name with leading directory names (some compilers
404  * define __FILE__ to absolute file path).
405  *
406  * @param constname name of the environment variable from which to get the
407  *   string to be parsed
408  * @param force 1 if definitions found in constname are to be forced
409  * @return number of added definitions
410  */
411 static int
412 parse_definitions (const char *constname, int force)
413 {
414   char *def;
415   const char *tmp;
416   char *comp = NULL;
417   char *file = NULL;
418   char *function = NULL;
419   char *p;
420   char *start;
421   char *t;
422   short state;
423   int level;
424   int from_line, to_line;
425   int counter = 0;
426   int keep_looking = 1;
427
428   tmp = getenv (constname);
429   if (tmp == NULL)
430     return 0;
431   def = GNUNET_strdup (tmp);
432   level = -1;
433   from_line = 0;
434   to_line = INT_MAX;
435   for (p = def, state = 0, start = def; keep_looking; p++)
436   {
437     switch (p[0])
438     {
439     case ';':                  /* found a field separator */
440       p[0] = '\0';
441       switch (state)
442       {
443       case 0:                  /* within a component name */
444         comp = start;
445         break;
446       case 1:                  /* within a file name */
447         file = start;
448         break;
449       case 2:                  /* within a function name */
450         /* after a file name there must be a function name */
451         function = start;
452         break;
453       case 3:                  /* within a from-to line range */
454         if (strlen (start) > 0)
455         {
456           errno = 0;
457           from_line = strtol (start, &t, 10);
458           if (errno != 0 || from_line < 0)
459           {
460             free (def);
461             return counter;
462           }
463           if (t < p && t[0] == '-')
464           {
465             errno = 0;
466             start = t + 1;
467             to_line = strtol (start, &t, 10);
468             if (errno != 0 || to_line < 0 || t != p)
469             {
470               free (def);
471               return counter;
472             }
473           }
474           else                  /* one number means "match this line only" */
475             to_line = from_line;
476         }
477         else                    /* default to 0-max */
478         {
479           from_line = 0;
480           to_line = INT_MAX;
481         }
482         break;
483       }
484       start = p + 1;
485       state += 1;
486       break;
487     case '\0':                 /* found EOL */
488       keep_looking = 0;
489       /* fall through to '/' */
490     case '/':                  /* found a definition separator */
491       switch (state)
492       {
493       case 4:                  /* within a log level */
494         p[0] = '\0';
495         state = 0;
496         level = get_type ((const char *) start);
497         if (level == GNUNET_ERROR_TYPE_INVALID ||
498             level == GNUNET_ERROR_TYPE_UNSPECIFIED ||
499             0 != add_definition (comp, file, function, from_line, to_line,
500                                  level, force))
501         {
502           free (def);
503           return counter;
504         }
505         counter += 1;
506         start = p + 1;
507         break;
508       default:
509         break;
510       }
511     default:
512       break;
513     }
514   }
515   free (def);
516   return counter;
517 }
518
519 /**
520  * Utility function - parses GNUNET_LOG and GNUNET_FORCE_LOG.
521  */
522 static void
523 parse_all_definitions ()
524 {
525   if (gnunet_log_parsed == GNUNET_NO)
526     parse_definitions ("GNUNET_LOG", 0);
527   gnunet_log_parsed = GNUNET_YES;
528   if (gnunet_force_log_parsed == GNUNET_NO)
529     gnunet_force_log_present =
530         parse_definitions ("GNUNET_FORCE_LOG", 1) > 0 ? GNUNET_YES : GNUNET_NO;
531   gnunet_force_log_parsed = GNUNET_YES;
532 }
533 #endif
534 /**
535  * Setup logging.
536  *
537  * @param comp default component to use
538  * @param loglevel what types of messages should be logged
539  * @param logfile which file to write log messages to (can be NULL)
540  * @return GNUNET_OK on success
541  */
542 int
543 GNUNET_log_setup (const char *comp, const char *loglevel, const char *logfile)
544 {
545   FILE *altlog;
546   int dirwarn;
547   char *fn;
548   const char *env_logfile = NULL;
549
550   min_level = get_type (loglevel);
551 #if !defined(GNUNET_CULL_LOGGING)
552   parse_all_definitions ();
553 #endif
554 #ifdef WINDOWS
555   QueryPerformanceFrequency (&performance_frequency);
556 #endif
557   GNUNET_free_non_null (component);
558   GNUNET_asprintf (&component, "%s-%d", comp, getpid ());
559   GNUNET_free_non_null (component_nopid);
560   component_nopid = GNUNET_strdup (comp);
561
562   env_logfile = getenv ("GNUNET_FORCE_LOGFILE");
563   if ((env_logfile != NULL) && (strlen (env_logfile) > 0))
564     logfile = env_logfile;
565
566   if (logfile == NULL)
567     return GNUNET_OK;
568   fn = GNUNET_STRINGS_filename_expand (logfile);
569   if (NULL == fn)
570     return GNUNET_SYSERR;
571   dirwarn = (GNUNET_OK != GNUNET_DISK_directory_create_for_file (fn));
572   altlog = FOPEN (fn, "a");
573   if (altlog == NULL)
574   {
575     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "fopen", fn);
576     if (dirwarn)
577       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
578                   _("Failed to create or access directory for log file `%s'\n"),
579                   fn);
580     GNUNET_free (fn);
581     return GNUNET_SYSERR;
582   }
583   GNUNET_free (fn);
584   if (GNUNET_stderr != NULL)
585     fclose (GNUNET_stderr);
586   GNUNET_stderr = altlog;
587   return GNUNET_OK;
588 }
589
590 /**
591  * Add a custom logger.
592  *
593  * @param logger log function
594  * @param logger_cls closure for logger
595  */
596 void
597 GNUNET_logger_add (GNUNET_Logger logger, void *logger_cls)
598 {
599   struct CustomLogger *entry;
600
601   entry = GNUNET_malloc (sizeof (struct CustomLogger));
602   entry->logger = logger;
603   entry->logger_cls = logger_cls;
604   entry->next = loggers;
605   loggers = entry;
606 }
607
608 /**
609  * Remove a custom logger.
610  *
611  * @param logger log function
612  * @param logger_cls closure for logger
613  */
614 void
615 GNUNET_logger_remove (GNUNET_Logger logger, void *logger_cls)
616 {
617   struct CustomLogger *pos;
618   struct CustomLogger *prev;
619
620   prev = NULL;
621   pos = loggers;
622   while ((pos != NULL) &&
623          ((pos->logger != logger) || (pos->logger_cls != logger_cls)))
624   {
625     prev = pos;
626     pos = pos->next;
627   }
628   GNUNET_assert (pos != NULL);
629   if (prev == NULL)
630     loggers = pos->next;
631   else
632     prev->next = pos->next;
633   GNUNET_free (pos);
634 }
635
636
637 /**
638  * Actually output the log message.
639  *
640  * @param kind how severe was the issue
641  * @param comp component responsible
642  * @param datestr current date/time
643  * @param msg the actual message
644  */
645 static void
646 output_message (enum GNUNET_ErrorType kind, const char *comp,
647                 const char *datestr, const char *msg)
648 {
649   struct CustomLogger *pos;
650
651   if (GNUNET_stderr != NULL)
652   {
653     fprintf (GNUNET_stderr, "%s %s %s %s", datestr, comp,
654              GNUNET_error_type_to_string (kind), msg);
655     fflush (GNUNET_stderr);
656   }
657   pos = loggers;
658   while (pos != NULL)
659   {
660     pos->logger (pos->logger_cls, kind, comp, datestr, msg);
661     pos = pos->next;
662   }
663 }
664
665
666 /**
667  * Flush an existing bulk report to the output.
668  *
669  * @param datestr our current timestamp
670  */
671 static void
672 flush_bulk (const char *datestr)
673 {
674   char msg[DATE_STR_SIZE + BULK_TRACK_SIZE + 256];
675   int rev;
676   char *last;
677   char *ft;
678
679   if ((last_bulk_time.abs_value == 0) || (last_bulk_repeat == 0))
680     return;
681   rev = 0;
682   last = memchr (last_bulk, '\0', BULK_TRACK_SIZE);
683   if (last == NULL)
684     last = &last_bulk[BULK_TRACK_SIZE - 1];
685   else if (last != last_bulk)
686     last--;
687   if (last[0] == '\n')
688   {
689     rev = 1;
690     last[0] = '\0';
691   }
692   ft = GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration
693                                                (last_bulk_time));
694   snprintf (msg, sizeof (msg),
695             _("Message `%.*s' repeated %u times in the last %s\n"),
696             BULK_TRACK_SIZE, last_bulk, last_bulk_repeat, ft);
697   GNUNET_free (ft);
698   if (rev == 1)
699     last[0] = '\n';
700   output_message (last_bulk_kind, last_bulk_comp, datestr, msg);
701   last_bulk_time = GNUNET_TIME_absolute_get ();
702   last_bulk_repeat = 0;
703 }
704
705
706 /**
707  * Ignore the next n calls to the log function.
708  *
709  * @param n number of log calls to ignore
710  * @param check_reset GNUNET_YES to assert that the log skip counter is currently zero
711  */
712 void
713 GNUNET_log_skip (unsigned int n, int check_reset)
714 {
715   if (n == 0)
716   {
717     int ok;
718
719     ok = (0 == skip_log);
720     skip_log = 0;
721     if (check_reset)
722       GNUNET_assert (ok);
723   }
724   else
725     skip_log += n;
726 }
727
728
729 /**
730  * Output a log message using the default mechanism.
731  *
732  * @param kind how severe was the issue
733  * @param comp component responsible
734  * @param message the actual message
735  * @param va arguments to the format string "message"
736  */
737 static void
738 mylog (enum GNUNET_ErrorType kind, const char *comp, const char *message,
739        va_list va)
740 {
741   char date[DATE_STR_SIZE];
742   char date2[DATE_STR_SIZE];
743   time_t timetmp;
744   struct timeval timeofday;
745   struct tm *tmptr;
746   size_t size;
747   va_list vacp;
748
749   va_copy (vacp, va);
750   size = VSNPRINTF (NULL, 0, message, vacp) + 1;
751   GNUNET_assert (0 != size);
752   va_end (vacp);
753   {
754     char buf[size];
755
756     VSNPRINTF (buf, size, message, va);
757     time (&timetmp);
758     memset (date, 0, DATE_STR_SIZE);
759     tmptr = localtime (&timetmp);
760     gettimeofday (&timeofday, NULL);
761     if (NULL != tmptr)
762     {
763 #ifdef WINDOWS
764       LARGE_INTEGER pc;
765
766       pc.QuadPart = 0;
767       QueryPerformanceCounter (&pc);
768       strftime (date2, DATE_STR_SIZE, "%b %d %H:%M:%S-%%020llu", tmptr);
769       snprintf (date, sizeof (date), date2,
770                 (long long) (pc.QuadPart /
771                              (performance_frequency.QuadPart / 1000)));
772 #else
773       strftime (date2, DATE_STR_SIZE, "%b %d %H:%M:%S-%%06u", tmptr);
774       snprintf (date, sizeof (date), date2, timeofday.tv_usec);
775 #endif
776     }
777     else
778       strcpy (date, "localtime error");
779     if ((0 != (kind & GNUNET_ERROR_TYPE_BULK)) &&
780         (last_bulk_time.abs_value != 0) &&
781         (0 == strncmp (buf, last_bulk, sizeof (last_bulk))))
782     {
783       last_bulk_repeat++;
784       if ((GNUNET_TIME_absolute_get_duration (last_bulk_time).rel_value >
785            BULK_DELAY_THRESHOLD) || (last_bulk_repeat > BULK_REPEAT_THRESHOLD))
786         flush_bulk (date);
787       return;
788     }
789     flush_bulk (date);
790     strncpy (last_bulk, buf, sizeof (last_bulk));
791     last_bulk_repeat = 0;
792     last_bulk_kind = kind;
793     last_bulk_time = GNUNET_TIME_absolute_get ();
794     strncpy (last_bulk_comp, comp, COMP_TRACK_SIZE);
795     output_message (kind, comp, date, buf);
796   }
797 }
798
799
800 /**
801  * Main log function.
802  *
803  * @param kind how serious is the error?
804  * @param message what is the message (format string)
805  * @param ... arguments for format string
806  */
807 void
808 GNUNET_log_nocheck (enum GNUNET_ErrorType kind, const char *message, ...)
809 {
810   va_list va;
811
812   va_start (va, message);
813   mylog (kind, component, message, va);
814   va_end (va);
815 }
816
817
818 /**
819  * Log function that specifies an alternative component.
820  * This function should be used by plugins.
821  *
822  * @param kind how serious is the error?
823  * @param comp component responsible for generating the message
824  * @param message what is the message (format string)
825  * @param ... arguments for format string
826  */
827 void
828 GNUNET_log_from_nocheck (enum GNUNET_ErrorType kind, const char *comp,
829                          const char *message, ...)
830 {
831   va_list va;
832   char comp_w_pid[128];
833
834   if (comp == NULL)
835     comp = component_nopid;
836
837   va_start (va, message);
838   GNUNET_snprintf (comp_w_pid, sizeof (comp_w_pid), "%s-%d", comp, getpid ());
839   mylog (kind, comp_w_pid, message, va);
840   va_end (va);
841 }
842
843
844 /**
845  * Convert error type to string.
846  *
847  * @param kind type to convert
848  * @return string corresponding to the type
849  */
850 const char *
851 GNUNET_error_type_to_string (enum GNUNET_ErrorType kind)
852 {
853   if ((kind & GNUNET_ERROR_TYPE_ERROR) > 0)
854     return _("ERROR");
855   if ((kind & GNUNET_ERROR_TYPE_WARNING) > 0)
856     return _("WARNING");
857   if ((kind & GNUNET_ERROR_TYPE_INFO) > 0)
858     return _("INFO");
859   if ((kind & GNUNET_ERROR_TYPE_DEBUG) > 0)
860     return _("DEBUG");
861   if ((kind & ~GNUNET_ERROR_TYPE_BULK) == 0)
862     return _("NONE");
863   return _("INVALID");
864 }
865
866
867 /**
868  * Convert a hash to a string (for printing debug messages).
869  * This is one of the very few calls in the entire API that is
870  * NOT reentrant!
871  *
872  * @param hc the hash code
873  * @return string form; will be overwritten by next call to GNUNET_h2s.
874  */
875 const char *
876 GNUNET_h2s (const GNUNET_HashCode * hc)
877 {
878   static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
879
880   GNUNET_CRYPTO_hash_to_enc (hc, &ret);
881   ret.encoding[8] = '\0';
882   return (const char *) ret.encoding;
883 }
884
885 /**
886  * Convert a hash to a string (for printing debug messages).
887  * This is one of the very few calls in the entire API that is
888  * NOT reentrant!
889  *
890  * @param hc the hash code
891  * @return string form; will be overwritten by next call to GNUNET_h2s_full.
892  */
893 const char *
894 GNUNET_h2s_full (const GNUNET_HashCode * hc)
895 {
896   static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
897
898   GNUNET_CRYPTO_hash_to_enc (hc, &ret);
899   ret.encoding[sizeof (ret) - 1] = '\0';
900   return (const char *) ret.encoding;
901 }
902
903 /**
904  * Convert a peer identity to a string (for printing debug messages).
905  * This is one of the very few calls in the entire API that is
906  * NOT reentrant!
907  *
908  * @param pid the peer identity
909  * @return string form of the pid; will be overwritten by next
910  *         call to GNUNET_i2s.
911  */
912 const char *
913 GNUNET_i2s (const struct GNUNET_PeerIdentity *pid)
914 {
915   static struct GNUNET_CRYPTO_HashAsciiEncoded ret;
916
917   GNUNET_CRYPTO_hash_to_enc (&pid->hashPubKey, &ret);
918   ret.encoding[4] = '\0';
919   return (const char *) ret.encoding;
920 }
921
922
923
924 /**
925  * Convert a "struct sockaddr*" (IPv4 or IPv6 address) to a string
926  * (for printing debug messages).  This is one of the very few calls
927  * in the entire API that is NOT reentrant!
928  *
929  * @param addr the address
930  * @param addrlen the length of the address
931  * @return nicely formatted string for the address
932  *  will be overwritten by next call to GNUNET_a2s.
933  */
934 const char *
935 GNUNET_a2s (const struct sockaddr *addr, socklen_t addrlen)
936 {
937   static char buf[INET6_ADDRSTRLEN + 8];
938   static char b2[6];
939   const struct sockaddr_in *v4;
940   const struct sockaddr_un *un;
941   const struct sockaddr_in6 *v6;
942   unsigned int off;
943
944   if (addr == NULL)
945     return _("unknown address");
946   switch (addr->sa_family)
947   {
948   case AF_INET:
949     if (addrlen != sizeof (struct sockaddr_in))
950       return "<invalid v4 address>";
951     v4 = (const struct sockaddr_in *) addr;
952     inet_ntop (AF_INET, &v4->sin_addr, buf, INET_ADDRSTRLEN);
953     if (0 == ntohs (v4->sin_port))
954       return buf;
955     strcat (buf, ":");
956     GNUNET_snprintf (b2, sizeof (b2), "%u", ntohs (v4->sin_port));
957     strcat (buf, b2);
958     return buf;
959   case AF_INET6:
960     if (addrlen != sizeof (struct sockaddr_in6))
961       return "<invalid v4 address>";
962     v6 = (const struct sockaddr_in6 *) addr;
963     buf[0] = '[';
964     inet_ntop (AF_INET6, &v6->sin6_addr, &buf[1], INET6_ADDRSTRLEN);
965     if (0 == ntohs (v6->sin6_port))
966       return &buf[1];
967     strcat (buf, "]:");
968     GNUNET_snprintf (b2, sizeof (b2), "%u", ntohs (v6->sin6_port));
969     strcat (buf, b2);
970     return buf;
971   case AF_UNIX:
972     if (addrlen <= sizeof (sa_family_t))
973       return "<unbound UNIX client>";
974     un = (const struct sockaddr_un *) addr;
975     off = 0;
976     if (un->sun_path[0] == '\0')
977       off++;
978     snprintf (buf, sizeof (buf), "%s%.*s", (off == 1) ? "@" : "",
979               (int) (addrlen - sizeof (sa_family_t) - 1 - off),
980               &un->sun_path[off]);
981     return buf;
982   default:
983     return _("invalid address");
984   }
985 }
986
987
988 /**
989  * Initializer
990  */
991 void __attribute__ ((constructor)) GNUNET_util_cl_init ()
992 {
993   GNUNET_stderr = stderr;
994 #ifdef MINGW
995   GNInitWinEnv (NULL);
996 #endif
997 }
998
999
1000 /**
1001  * Destructor
1002  */
1003 void __attribute__ ((destructor)) GNUNET_util_cl_fini ()
1004 {
1005 #ifdef MINGW
1006   GNShutdownWinEnv ();
1007 #endif
1008 }
1009
1010 /* end of common_logging.c */