log.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. /**
  7. * \file log.h
  8. *
  9. * \brief Headers for log.c
  10. **/
  11. #ifndef __LOG_H
  12. #define LOG_H_ID "$Id$"
  13. #include "../common/compat.h"
  14. #ifdef HAVE_SYSLOG_H
  15. #include <syslog.h>
  16. #define LOG_WARN LOG_WARNING
  17. #if LOG_DEBUG < LOG_ERR
  18. #error "Your syslog.h thinks high numbers are more important. " \
  19. "We aren't prepared to deal with that."
  20. #endif
  21. #else
  22. /* Note: Syslog's logging code refers to priorities, with 0 being the most
  23. * important. Thus, all our comparisons needed to be reversed when we added
  24. * syslog support.
  25. *
  26. * The upshot of this is that comments about log levels may be messed up: for
  27. * "maximum severity" read "most severe" and "numerically *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 (1u<<0)
  50. /** The cryptography subsytem. */
  51. #define LD_CRYPTO (1u<<1)
  52. /** Networking. */
  53. #define LD_NET (1u<<2)
  54. /** Parsing and acting on our configuration. */
  55. #define LD_CONFIG (1u<<3)
  56. /** Reading and writing from the filesystem. */
  57. #define LD_FS (1u<<4)
  58. /** Other servers' (non)compliance with the Tor protocol. */
  59. #define LD_PROTOCOL (1u<<5)
  60. /** Memory management. */
  61. #define LD_MM (1u<<6)
  62. /** HTTP implementation. */
  63. #define LD_HTTP (1u<<7)
  64. /** Application (socks) requests. */
  65. #define LD_APP (1u<<8)
  66. /** Communication via the controller protocol. */
  67. #define LD_CONTROL (1u<<9)
  68. /** Building, using, and managing circuits. */
  69. #define LD_CIRC (1u<<10)
  70. /** Hidden services. */
  71. #define LD_REND (1u<<11)
  72. /** Internal errors in this Tor process. */
  73. #define LD_BUG (1u<<12)
  74. /** Learning and using information about Tor servers. */
  75. #define LD_DIR (1u<<13)
  76. /** Learning and using information about Tor servers. */
  77. #define LD_DIRSERV (1u<<14)
  78. /** Onion routing protocol. */
  79. #define LD_OR (1u<<15)
  80. /** Generic edge-connection functionality. */
  81. #define LD_EDGE (1u<<16)
  82. #define LD_EXIT LD_EDGE
  83. /** Bandwidth accounting. */
  84. #define LD_ACCT (1u<<17)
  85. typedef void (*log_callback)(int severity, uint32_t domain, const char *msg);
  86. int parse_log_level(const char *level);
  87. const char *log_level_to_string(int level);
  88. void add_stream_log(int severityMin, int severityMax, const char *name,
  89. FILE *stream);
  90. int add_file_log(int severityMin, int severityMax, const char *filename);
  91. #ifdef HAVE_SYSLOG_H
  92. int add_syslog_log(int loglevelMin, int loglevelMax);
  93. #endif
  94. int add_callback_log(int loglevelMin, int loglevelMax, log_callback cb);
  95. int get_min_log_level(void);
  96. void switch_logs_debug(void);
  97. void close_logs(void);
  98. void add_temp_log(void);
  99. void close_temp_logs(void);
  100. void rollback_log_changes(void);
  101. void mark_logs_temp(void);
  102. void configure_libevent_logging(void);
  103. void suppress_libevent_log_msg(const char *msg);
  104. void change_callback_log_severity(int loglevelMin, int loglevelMax,
  105. log_callback cb);
  106. /* Outputs a message to stdout */
  107. void _log(int severity, uint32_t domain, const char *format, ...)
  108. CHECK_PRINTF(3,4);
  109. #define log _log /* hack it so we don't conflict with log() as much */
  110. #ifdef __GNUC__
  111. void _log_fn(int severity, uint32_t domain,
  112. const char *funcname, const char *format, ...)
  113. CHECK_PRINTF(4,5);
  114. /** Log a message at level <b>severity</b>, using a pretty-printed version
  115. * of the current function name. */
  116. #define log_fn(severity, domain, args...) \
  117. _log_fn(severity, domain, __PRETTY_FUNCTION__, args)
  118. #define log_debug(domain, args...) \
  119. _log_fn(LOG_DEBUG, domain, __PRETTY_FUNCTION__, args)
  120. #define log_info(domain, args...) \
  121. _log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
  122. #define log_notice(domain, args...) \
  123. _log_fn(LOG_NOTICE, domain, __PRETTY_FUNCTION__, args)
  124. #define log_warn(domain, args...) \
  125. _log_fn(LOG_WARN, domain, __PRETTY_FUNCTION__, args)
  126. #define log_err(domain, args...) \
  127. _log_fn(LOG_ERR, domain, __PRETTY_FUNCTION__, args)
  128. #else /* ! defined(__GNUC__) */
  129. void _log_fn(int severity, uint32_t domain, const char *format, ...);
  130. void _log_debug(uint32_t domain, const char *format, ...);
  131. void _log_info(uint32_t domain, const char *format, ...);
  132. void _log_notice(uint32_t domain, const char *format, ...);
  133. void _log_warn(uint32_t domain, const char *format, ...);
  134. void _log_err(uint32_t domain, const char *format, ...);
  135. #if defined(_MSC_VER) && _MSC_VER < 1300
  136. /* MSVC 6 and earlier don't have __func__, or even __LINE__. */
  137. #define log_fn _log_fn
  138. #define log_debug _log_debug
  139. #define log_info _log_info
  140. #define log_notice _log_notice
  141. #define log_warn _log_warn
  142. #define log_err _log_err
  143. /*
  144. #define debug _debug
  145. #define info _info
  146. #define notice _notice
  147. #define warn _warn
  148. #define err _err
  149. */
  150. #else
  151. /* We don't have GCC's varargs macros, so use a global variable to pass the
  152. * function name to log_fn */
  153. extern const char *_log_fn_function_name;
  154. /* We abuse the comma operator here, since we can't use the standard
  155. * do {...} while (0) trick to wrap this macro, since the macro can't take
  156. * arguments. */
  157. #define log_fn (_log_fn_function_name=__func__),_log_fn
  158. #define log_debug (_log_fn_function_name=__func__),_log_debug
  159. #define log_info (_log_fn_function_name=__func__),_log_info
  160. #define log_notice (_log_fn_function_name=__func__),_log_notice
  161. #define log_warn (_log_fn_function_name=__func__),_log_warn
  162. #define log_err (_log_fn_function_name=__func__),_log_err
  163. /*
  164. #define debug (_log_fn_function_name=__func__),_debug
  165. #define info (_log_fn_function_name=__func__),_info
  166. #define notice (_log_fn_function_name=__func__),_notice
  167. #define warn (_log_fn_function_name=__func__),_warn
  168. #define err (_log_fn_function_name=__func__),_err
  169. */
  170. #endif
  171. #endif /* !GNUC */
  172. # define __LOG_H
  173. #endif