log.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. " \
  18. "We aren't prepared to deal with that."
  19. #endif
  20. #else
  21. /* XXXX Note: The code was originally written to refer to severities,
  22. * with 0 being the least severe; while syslog's logging code refers to
  23. * priorities, with 0 being the most important. Thus, all our comparisons
  24. * needed to be reversed when we added syslog support.
  25. *
  26. * The upshot of this is that comments about log levels may be messed
  27. * up: for "maximum severity" read "most severe" and "numerically
  28. * *lowest* severity".
  29. */
  30. /** Debug-level severity: for hyper-verbose messages of no interest to
  31. * anybody but developers. */
  32. #define LOG_DEBUG 7
  33. /** Info-level severity: for messages that appear frequently during normal
  34. * operation. */
  35. #define LOG_INFO 6
  36. /** Notice-level severity: for messages that appear infrequently
  37. * during normal operation; that the user will probably care about;
  38. * and that are not errors.
  39. */
  40. #define LOG_NOTICE 5
  41. /** Warn-level severity: for messages that only appear when something has gone
  42. * wrong. */
  43. #define LOG_WARN 4
  44. /** Error-level severity: for messages that only appear when something has gone
  45. * very wrong, and the Tor process can no longer proceed. */
  46. #define LOG_ERR 3
  47. #endif
  48. /* Logging domains */
  49. /** Catch-all for miscellaneous events and fatal errors. */
  50. #define LD_GENERAL (1u<<0)
  51. /** The cryptography subsytem. */
  52. #define LD_CRYPTO (1u<<1)
  53. /** Networking. */
  54. #define LD_NET (1u<<2)
  55. /** Parsing and acting on our configuration. */
  56. #define LD_CONFIG (1u<<3)
  57. /** Reading and writing from the filesystem. */
  58. #define LD_FS (1u<<4)
  59. /** Other servers' (non)compliance with the Tor protocol. */
  60. #define LD_PROTOCOL (1u<<5)
  61. /** Memory management. */
  62. #define LD_MM (1u<<6)
  63. /** HTTP implementation. */
  64. #define LD_HTTP (1u<<7)
  65. /** Application (socks) requests. */
  66. #define LD_APP (1u<<8)
  67. /** Communication via the controller protocol. */
  68. #define LD_CONTROL (1u<<9)
  69. /** Building, using, and managing circuits. */
  70. #define LD_CIRC (1u<<10)
  71. /** Hidden services. */
  72. #define LD_REND (1u<<11)
  73. /** Internal errors in this Tor process. */
  74. #define LD_BUG (1u<<12)
  75. /** Learning and using information about Tor servers. */
  76. #define LD_DIR (1u<<13)
  77. /** Learning and using information about Tor servers. */
  78. #define LD_DIRSERV (1u<<14)
  79. /** Onion routing protocol. */
  80. #define LD_OR (1u<<15)
  81. /** Generic edge-connection functionality. */
  82. #define LD_EDGE (1u<<16)
  83. #define LD_EXIT LD_EDGE
  84. /** Bandwidth accounting. */
  85. #define LD_ACCT (1u<<17)
  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 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 debug(domain, args...) \
  119. _log_fn(LOG_DEBUG, domain, __PRETTY_FUNCTION__, args)
  120. #define info(domain, args...) \
  121. _log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
  122. #define notice(domain, args...) \
  123. _log_fn(LOG_NOTICE, domain, __PRETTY_FUNCTION__, args)
  124. #define warn(domain, args...) \
  125. _log_fn(LOG_WARN, domain, __PRETTY_FUNCTION__, args)
  126. #define 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 debug(uint32_t domain, const char *format, ...);
  131. void info(uint32_t domain, const char *format, ...);
  132. void notice(uint32_t domain, const char *format, ...);
  133. void warn(uint32_t domain, const char *format, ...);
  134. void err(uint32_t domain, const char *format, ...);
  135. #if defined(_MSC_VER) && _MSC_VER < 1300
  136. /* MSVC 6 and earlier don't have __FUNCTION__, or even __LINE__. */
  137. #define log_fn _log_fn
  138. /*
  139. #define debug _debug
  140. #define info _info
  141. #define notice _notice
  142. #define warn _warn
  143. #define err _err
  144. */
  145. #else
  146. /* We don't have GCC's varargs macros, so use a global variable to pass the
  147. * function name to log_fn */
  148. extern const char *_log_fn_function_name;
  149. /* We abuse the comma operator here, since we can't use the standard
  150. * do {...} while (0) trick to wrap this macro, since the macro can't take
  151. * arguments. */
  152. #define log_fn (_log_fn_function_name=__FUNCTION__),_log_fn
  153. /*
  154. #define debug (_log_fn_function_name=__FUNCTION__),_debug
  155. #define info (_log_fn_function_name=__FUNCTION__),_info
  156. #define notice (_log_fn_function_name=__FUNCTION__),_notice
  157. #define warn (_log_fn_function_name=__FUNCTION__),_warn
  158. #define err (_log_fn_function_name=__FUNCTION__),_err
  159. */
  160. #endif
  161. #endif /* !GNUC */
  162. # define __LOG_H
  163. #endif