log.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar.
  2. * Copyright 2004-2005 Roger Dingledine, Nick Mathewson */
  3. /* See LICENSE for licensing information */
  4. /* $Id$ */
  5. /**
  6. * \file log.h
  7. *
  8. * \brief Headers for log.c
  9. **/
  10. #ifndef __LOG_H
  11. #define LOG_H_ID "$Id$"
  12. #include "../common/compat.h"
  13. #ifdef HAVE_SYSLOG_H
  14. #include <syslog.h>
  15. #define LOG_WARN LOG_WARNING
  16. #if LOG_DEBUG < LOG_ERR
  17. #error "Your syslog.h thinks high numbers are more important. We aren't prepared to deal with that."
  18. #endif
  19. #else
  20. /* XXXX Note: The code was originally written to refer to severities,
  21. * with 0 being the least severe; while syslog's logging code refers to
  22. * priorities, with 0 being the most important. Thus, all our comparisons
  23. * needed to be reversed when we added syslog support.
  24. *
  25. * The upshot of this is that comments about log levels may be messed
  26. * up: for "maximum severity" read "most severe" and "numerically
  27. * *lowest* severity".
  28. */
  29. /** Debug-level severity: for hyper-verbose messages of no interest to
  30. * anybody but developers. */
  31. #define LOG_DEBUG 7
  32. /** Info-level severity: for messages that appear frequently during normal
  33. * operation. */
  34. #define LOG_INFO 6
  35. /** Notice-level severity: for messages that appear infrequently
  36. * during normal operation; that the user will probably care about;
  37. * and that are not errors.
  38. */
  39. #define LOG_NOTICE 5
  40. /** Warn-level severity: for messages that only appear when something has gone
  41. * wrong. */
  42. #define LOG_WARN 4
  43. /** Error-level severity: for messages that only appear when something has gone
  44. * very wrong, and the Tor process can no longer proceed. */
  45. #define LOG_ERR 3
  46. #endif
  47. /* Logging domains */
  48. /** Catch-all for miscellaneous events and fatal errors */
  49. #define LD_GENERAL 0
  50. /** The cryptography subsytem */
  51. #define LD_CRYPTO 1
  52. /** Networking */
  53. #define LD_NET 2
  54. /** Parsing and acting on our configuration */
  55. #define LD_CONFIG 3
  56. /** Reading and writing from the filesystem */
  57. #define LD_FS 4
  58. /** Other servers' (non)compliance with the Tor protocol */
  59. #define LD_PROTOCOL 5
  60. /** Memory management */
  61. #define LD_MM 6
  62. /** HTTP implementation */
  63. #define LD_HTTP 7
  64. /** Application (socks) requests */
  65. #define LD_APP 8
  66. /** Communication via the controller protocol */
  67. #define LD_CONTROL 9
  68. /** Building, using, and managing circuits */
  69. #define LD_CIRC 10
  70. /** Hidden services */
  71. #define LD_REND 11
  72. /** Internal errors in this Tor process. */
  73. #define LD_BUG 12
  74. /** Learning and using information about Tor servers. */
  75. #define LD_DIR 13
  76. typedef void (*log_callback)(int severity, int domain, const char *msg);
  77. int parse_log_level(const char *level);
  78. const char *log_level_to_string(int level);
  79. void add_stream_log(int severityMin, int severityMax, const char *name, FILE *stream);
  80. int add_file_log(int severityMin, int severityMax, const char *filename);
  81. #ifdef HAVE_SYSLOG_H
  82. int add_syslog_log(int loglevelMin, int loglevelMax);
  83. #endif
  84. int add_callback_log(int loglevelMin, int loglevelMax, log_callback cb);
  85. int get_min_log_level(void);
  86. void switch_logs_debug(void);
  87. void close_logs(void);
  88. void reset_logs(void);
  89. void add_temp_log(void);
  90. void close_temp_logs(void);
  91. void mark_logs_temp(void);
  92. void configure_libevent_logging(void);
  93. void suppress_libevent_log_msg(const char *msg);
  94. void change_callback_log_severity(int loglevelMin, int loglevelMax,
  95. log_callback cb);
  96. /* Outputs a message to stdout */
  97. void _log(int severity, int domain, const char *format, ...) CHECK_PRINTF(3,4);
  98. #ifdef __GNUC__
  99. void _log_fn(int severity, int domain,
  100. const char *funcname, const char *format, ...)
  101. CHECK_PRINTF(4,5);
  102. /** Log a message at level <b>severity</b>, using a pretty-printed version
  103. * of the current function name. */
  104. #ifdef OLD_LOG_INTERFACE
  105. #define log_fn(severity, args...) \
  106. _log_fn(severity, LD_GENERAL, __PRETTY_FUNCTION__, args)
  107. #define log(severity, args...) \
  108. _log(severity, LD_GENERAL, args)
  109. #else
  110. #define log_fn(severity, domain, args...) \
  111. _log_fn(severity, domain, __PRETTY_FUNCTION__, args)
  112. #define log _log
  113. #endif
  114. #define debug(domain, args...) \
  115. _log_fn(LOG_DEBUG, domain, __PRETTY_FUNCTION__, args)
  116. #define info(domain, args...) \
  117. _log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
  118. #define notice(domain, args...) \
  119. _log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
  120. #define warn(domain, args...) \
  121. _log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
  122. #define err(args...) \
  123. _log_fn(LOG_ERR, LD_GENERAL, __PRETTY_FUNCTION__, args)
  124. #else
  125. void _log_fn(int severity, int domain, const char *format, ...);
  126. void _debug(int domain, const char *format, ...);
  127. void _info(int domain, const char *format, ...);
  128. void _notice(int domain, const char *format, ...);
  129. void _warn(int domain, const char *format, ...);
  130. void _err(const char *format, ...);
  131. #define log _log /* hack it so we don't conflict with log() as much */
  132. #if defined(_MSC_VER) && _MSC_VER < 1300
  133. /* MSVC 6 and earlier don't have __FUNCTION__, or even __LINE__. */
  134. #define log_fn _log_fn
  135. #define debug _debug
  136. #define info _info
  137. #define notice _notice
  138. #define warn _warn
  139. #define err _err
  140. #else
  141. /* We don't have GCC's varargs macros, so use a global variable to pass the
  142. * function name to log_fn */
  143. extern const char *_log_fn_function_name;
  144. /* We abuse the comma operator here, since we can't use the standard
  145. * do {...} while (0) trick to wrap this macro, since the macro can't take
  146. * arguments. */
  147. #define log_fn (_log_fn_function_name=__FUNCTION__),_log_fn
  148. #define debug (_log_fn_function_name=__FUNCTION__),_debug
  149. #define info (_log_fn_function_name=__FUNCTION__),_info
  150. #define notice (_log_fn_function_name=__FUNCTION__),_notice
  151. #define warn (_log_fn_function_name=__FUNCTION__),_warn
  152. #define err (_log_fn_function_name=__FUNCTION__),_err
  153. #endif
  154. #endif /* !GNUC */
  155. # define __LOG_H
  156. #endif