torlog.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* Copyright (c) 2001, Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2011, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file torlog.h
  8. *
  9. * \brief Headers for log.c
  10. **/
  11. #ifndef _TOR_LOG_H
  12. #include "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. /* Note: Syslog's logging code refers to priorities, with 0 being the most
  22. * important. Thus, all our comparisons needed to be reversed when we added
  23. * syslog support.
  24. *
  25. * The upshot of this is that comments about log levels may be messed up: for
  26. * "maximum severity" read "most severe" and "numerically *lowest* severity".
  27. */
  28. /** Debug-level severity: for hyper-verbose messages of no interest to
  29. * anybody but developers. */
  30. #define LOG_DEBUG 7
  31. /** Info-level severity: for messages that appear frequently during normal
  32. * operation. */
  33. #define LOG_INFO 6
  34. /** Notice-level severity: for messages that appear infrequently
  35. * during normal operation; that the user will probably care about;
  36. * and that are not errors.
  37. */
  38. #define LOG_NOTICE 5
  39. /** Warn-level severity: for messages that only appear when something has gone
  40. * wrong. */
  41. #define LOG_WARN 4
  42. /** Error-level severity: for messages that only appear when something has gone
  43. * very wrong, and the Tor process can no longer proceed. */
  44. #define LOG_ERR 3
  45. #endif
  46. /* Logging domains */
  47. /** Catch-all for miscellaneous events and fatal errors. */
  48. #define LD_GENERAL (1u<<0)
  49. /** The cryptography subsystem. */
  50. #define LD_CRYPTO (1u<<1)
  51. /** Networking. */
  52. #define LD_NET (1u<<2)
  53. /** Parsing and acting on our configuration. */
  54. #define LD_CONFIG (1u<<3)
  55. /** Reading and writing from the filesystem. */
  56. #define LD_FS (1u<<4)
  57. /** Other servers' (non)compliance with the Tor protocol. */
  58. #define LD_PROTOCOL (1u<<5)
  59. /** Memory management. */
  60. #define LD_MM (1u<<6)
  61. /** HTTP implementation. */
  62. #define LD_HTTP (1u<<7)
  63. /** Application (socks) requests. */
  64. #define LD_APP (1u<<8)
  65. /** Communication via the controller protocol. */
  66. #define LD_CONTROL (1u<<9)
  67. /** Building, using, and managing circuits. */
  68. #define LD_CIRC (1u<<10)
  69. /** Hidden services. */
  70. #define LD_REND (1u<<11)
  71. /** Internal errors in this Tor process. */
  72. #define LD_BUG (1u<<12)
  73. /** Learning and using information about Tor servers. */
  74. #define LD_DIR (1u<<13)
  75. /** Learning and using information about Tor servers. */
  76. #define LD_DIRSERV (1u<<14)
  77. /** Onion routing protocol. */
  78. #define LD_OR (1u<<15)
  79. /** Generic edge-connection functionality. */
  80. #define LD_EDGE (1u<<16)
  81. #define LD_EXIT LD_EDGE
  82. /** Bandwidth accounting. */
  83. #define LD_ACCT (1u<<17)
  84. /** Router history */
  85. #define LD_HIST (1u<<18)
  86. /** OR handshaking */
  87. #define LD_HANDSHAKE (1u<<19)
  88. /** Number of logging domains in the code. */
  89. #define N_LOGGING_DOMAINS 20
  90. /** This log message is not safe to send to a callback-based logger
  91. * immediately. Used as a flag, not a log domain. */
  92. #define LD_NOCB (1u<<31)
  93. typedef uint32_t log_domain_mask_t;
  94. /** Configures which severities are logged for each logging domain for a given
  95. * log target. */
  96. typedef struct log_severity_list_t {
  97. /** For each log severity, a bitmask of which domains a given logger is
  98. * logging. */
  99. log_domain_mask_t masks[LOG_DEBUG-LOG_ERR+1];
  100. } log_severity_list_t;
  101. #ifdef LOG_PRIVATE
  102. /** Given a severity, yields an index into log_severity_list_t.masks to use
  103. * for that severity. */
  104. #define SEVERITY_MASK_IDX(sev) ((sev) - LOG_ERR)
  105. #endif
  106. /** Callback type used for add_callback_log. */
  107. typedef void (*log_callback)(int severity, uint32_t domain, const char *msg);
  108. void init_logging(void);
  109. int parse_log_level(const char *level);
  110. const char *log_level_to_string(int level);
  111. int parse_log_severity_config(const char **cfg,
  112. log_severity_list_t *severity_out);
  113. void set_log_severity_config(int minSeverity, int maxSeverity,
  114. log_severity_list_t *severity_out);
  115. void add_stream_log(const log_severity_list_t *severity, const char *name,
  116. int fd);
  117. int add_file_log(const log_severity_list_t *severity, const char *filename);
  118. #ifdef HAVE_SYSLOG_H
  119. int add_syslog_log(const log_severity_list_t *severity);
  120. #endif
  121. int add_callback_log(const log_severity_list_t *severity, log_callback cb);
  122. void logs_set_domain_logging(int enabled);
  123. int get_min_log_level(void);
  124. void switch_logs_debug(void);
  125. void logs_free_all(void);
  126. void add_temp_log(int min_severity);
  127. void close_temp_logs(void);
  128. void rollback_log_changes(void);
  129. void mark_logs_temp(void);
  130. void change_callback_log_severity(int loglevelMin, int loglevelMax,
  131. log_callback cb);
  132. void flush_pending_log_callbacks(void);
  133. void log_set_application_name(const char *name);
  134. /* Outputs a message to stdout */
  135. void tor_log(int severity, log_domain_mask_t domain, const char *format, ...)
  136. CHECK_PRINTF(3,4);
  137. #define log tor_log /* hack it so we don't conflict with log() as much */
  138. #ifdef __GNUC__
  139. extern int _log_global_min_severity;
  140. void _log_fn(int severity, log_domain_mask_t domain,
  141. const char *funcname, const char *format, ...)
  142. CHECK_PRINTF(4,5);
  143. /** Log a message at level <b>severity</b>, using a pretty-printed version
  144. * of the current function name. */
  145. #define log_fn(severity, domain, args...) \
  146. _log_fn(severity, domain, __PRETTY_FUNCTION__, args)
  147. #define log_debug(domain, args...) \
  148. STMT_BEGIN \
  149. if (PREDICT_UNLIKELY(_log_global_min_severity == LOG_DEBUG)) \
  150. _log_fn(LOG_DEBUG, domain, __PRETTY_FUNCTION__, args); \
  151. STMT_END
  152. #define log_info(domain, args...) \
  153. _log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
  154. #define log_notice(domain, args...) \
  155. _log_fn(LOG_NOTICE, domain, __PRETTY_FUNCTION__, args)
  156. #define log_warn(domain, args...) \
  157. _log_fn(LOG_WARN, domain, __PRETTY_FUNCTION__, args)
  158. #define log_err(domain, args...) \
  159. _log_fn(LOG_ERR, domain, __PRETTY_FUNCTION__, args)
  160. #else /* ! defined(__GNUC__) */
  161. void _log_fn(int severity, log_domain_mask_t domain, const char *format, ...);
  162. void _log_debug(log_domain_mask_t domain, const char *format, ...);
  163. void _log_info(log_domain_mask_t domain, const char *format, ...);
  164. void _log_notice(log_domain_mask_t domain, const char *format, ...);
  165. void _log_warn(log_domain_mask_t domain, const char *format, ...);
  166. void _log_err(log_domain_mask_t domain, const char *format, ...);
  167. #if defined(_MSC_VER) && _MSC_VER < 1300
  168. /* MSVC 6 and earlier don't have __func__, or even __LINE__. */
  169. #define log_fn _log_fn
  170. #define log_debug _log_debug
  171. #define log_info _log_info
  172. #define log_notice _log_notice
  173. #define log_warn _log_warn
  174. #define log_err _log_err
  175. #else
  176. /* We don't have GCC's varargs macros, so use a global variable to pass the
  177. * function name to log_fn */
  178. extern const char *_log_fn_function_name;
  179. /* We abuse the comma operator here, since we can't use the standard
  180. * do {...} while (0) trick to wrap this macro, since the macro can't take
  181. * arguments. */
  182. #define log_fn (_log_fn_function_name=__func__),_log_fn
  183. #define log_debug (_log_fn_function_name=__func__),_log_debug
  184. #define log_info (_log_fn_function_name=__func__),_log_info
  185. #define log_notice (_log_fn_function_name=__func__),_log_notice
  186. #define log_warn (_log_fn_function_name=__func__),_log_warn
  187. #define log_err (_log_fn_function_name=__func__),_log_err
  188. #endif
  189. #endif /* !GNUC */
  190. # define _TOR_LOG_H
  191. #endif