log.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2007, 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. /** Callback type used for add_callback_log. */
  86. typedef void (*log_callback)(int severity, uint32_t domain, const char *msg);
  87. int parse_log_level(const char *level);
  88. const char *log_level_to_string(int level);
  89. void add_stream_log(int severityMin, int severityMax, const char *name,
  90. FILE *stream);
  91. int add_file_log(int severityMin, int severityMax, const char *filename);
  92. #ifdef HAVE_SYSLOG_H
  93. int add_syslog_log(int loglevelMin, int loglevelMax);
  94. #endif
  95. int add_callback_log(int loglevelMin, int loglevelMax, log_callback cb);
  96. int get_min_log_level(void);
  97. void switch_logs_debug(void);
  98. void close_logs(void);
  99. void add_temp_log(void);
  100. void close_temp_logs(void);
  101. void rollback_log_changes(void);
  102. void mark_logs_temp(void);
  103. void configure_libevent_logging(void);
  104. void suppress_libevent_log_msg(const char *msg);
  105. void change_callback_log_severity(int loglevelMin, int loglevelMax,
  106. log_callback cb);
  107. /* Outputs a message to stdout */
  108. void _log(int severity, uint32_t domain, const char *format, ...)
  109. CHECK_PRINTF(3,4);
  110. #define log _log /* hack it so we don't conflict with log() as much */
  111. #ifdef __GNUC__
  112. void _log_fn(int severity, uint32_t domain,
  113. const char *funcname, const char *format, ...)
  114. CHECK_PRINTF(4,5);
  115. /** Log a message at level <b>severity</b>, using a pretty-printed version
  116. * of the current function name. */
  117. #define log_fn(severity, domain, args...) \
  118. _log_fn(severity, domain, __PRETTY_FUNCTION__, args)
  119. #define log_debug(domain, args...) \
  120. _log_fn(LOG_DEBUG, domain, __PRETTY_FUNCTION__, args)
  121. #define log_info(domain, args...) \
  122. _log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
  123. #define log_notice(domain, args...) \
  124. _log_fn(LOG_NOTICE, domain, __PRETTY_FUNCTION__, args)
  125. #define log_warn(domain, args...) \
  126. _log_fn(LOG_WARN, domain, __PRETTY_FUNCTION__, args)
  127. #define log_err(domain, args...) \
  128. _log_fn(LOG_ERR, domain, __PRETTY_FUNCTION__, args)
  129. #else /* ! defined(__GNUC__) */
  130. void _log_fn(int severity, uint32_t domain, const char *format, ...);
  131. void _log_debug(uint32_t domain, const char *format, ...);
  132. void _log_info(uint32_t domain, const char *format, ...);
  133. void _log_notice(uint32_t domain, const char *format, ...);
  134. void _log_warn(uint32_t domain, const char *format, ...);
  135. void _log_err(uint32_t domain, const char *format, ...);
  136. #if defined(_MSC_VER) && _MSC_VER < 1300
  137. /* MSVC 6 and earlier don't have __func__, or even __LINE__. */
  138. #define log_fn _log_fn
  139. #define log_debug _log_debug
  140. #define log_info _log_info
  141. #define log_notice _log_notice
  142. #define log_warn _log_warn
  143. #define log_err _log_err
  144. /*
  145. #define debug _debug
  146. #define info _info
  147. #define notice _notice
  148. #define warn _warn
  149. #define err _err
  150. */
  151. #else
  152. /* We don't have GCC's varargs macros, so use a global variable to pass the
  153. * function name to log_fn */
  154. extern const char *_log_fn_function_name;
  155. /* We abuse the comma operator here, since we can't use the standard
  156. * do {...} while (0) trick to wrap this macro, since the macro can't take
  157. * arguments. */
  158. #define log_fn (_log_fn_function_name=__func__),_log_fn
  159. #define log_debug (_log_fn_function_name=__func__),_log_debug
  160. #define log_info (_log_fn_function_name=__func__),_log_info
  161. #define log_notice (_log_fn_function_name=__func__),_log_notice
  162. #define log_warn (_log_fn_function_name=__func__),_log_warn
  163. #define log_err (_log_fn_function_name=__func__),_log_err
  164. /*
  165. #define debug (_log_fn_function_name=__func__),_debug
  166. #define info (_log_fn_function_name=__func__),_info
  167. #define notice (_log_fn_function_name=__func__),_notice
  168. #define warn (_log_fn_function_name=__func__),_warn
  169. #define err (_log_fn_function_name=__func__),_err
  170. */
  171. #endif
  172. #endif /* !GNUC */
  173. # define __LOG_H
  174. #endif