torlog.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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-2012, 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. /** Heartbeat messages */
  89. #define LD_HEARTBEAT (1u<<20)
  90. /** Number of logging domains in the code. */
  91. #define N_LOGGING_DOMAINS 21
  92. /** This log message is not safe to send to a callback-based logger
  93. * immediately. Used as a flag, not a log domain. */
  94. #define LD_NOCB (1u<<31)
  95. /** Mask of zero or more log domains, OR'd together. */
  96. typedef uint32_t log_domain_mask_t;
  97. /** Configures which severities are logged for each logging domain for a given
  98. * log target. */
  99. typedef struct log_severity_list_t {
  100. /** For each log severity, a bitmask of which domains a given logger is
  101. * logging. */
  102. log_domain_mask_t masks[LOG_DEBUG-LOG_ERR+1];
  103. } log_severity_list_t;
  104. #ifdef LOG_PRIVATE
  105. /** Given a severity, yields an index into log_severity_list_t.masks to use
  106. * for that severity. */
  107. #define SEVERITY_MASK_IDX(sev) ((sev) - LOG_ERR)
  108. #endif
  109. /** Callback type used for add_callback_log. */
  110. typedef void (*log_callback)(int severity, uint32_t domain, const char *msg);
  111. void init_logging(void);
  112. int parse_log_level(const char *level);
  113. const char *log_level_to_string(int level);
  114. int parse_log_severity_config(const char **cfg,
  115. log_severity_list_t *severity_out);
  116. void set_log_severity_config(int minSeverity, int maxSeverity,
  117. log_severity_list_t *severity_out);
  118. void add_stream_log(const log_severity_list_t *severity, const char *name,
  119. int fd);
  120. int add_file_log(const log_severity_list_t *severity, const char *filename);
  121. #ifdef HAVE_SYSLOG_H
  122. int add_syslog_log(const log_severity_list_t *severity);
  123. #endif
  124. int add_callback_log(const log_severity_list_t *severity, log_callback cb);
  125. void logs_set_domain_logging(int enabled);
  126. int get_min_log_level(void);
  127. void switch_logs_debug(void);
  128. void logs_free_all(void);
  129. void add_temp_log(int min_severity);
  130. void close_temp_logs(void);
  131. void rollback_log_changes(void);
  132. void mark_logs_temp(void);
  133. void change_callback_log_severity(int loglevelMin, int loglevelMax,
  134. log_callback cb);
  135. void flush_pending_log_callbacks(void);
  136. void log_set_application_name(const char *name);
  137. void set_log_time_granularity(int granularity_msec);
  138. void tor_log(int severity, log_domain_mask_t domain, const char *format, ...)
  139. CHECK_PRINTF(3,4);
  140. #define log tor_log /* hack it so we don't conflict with log() as much */
  141. #if defined(__GNUC__) || defined(RUNNING_DOXYGEN)
  142. extern int _log_global_min_severity;
  143. void _log_fn(int severity, log_domain_mask_t domain,
  144. const char *funcname, const char *format, ...)
  145. CHECK_PRINTF(4,5);
  146. /** Log a message at level <b>severity</b>, using a pretty-printed version
  147. * of the current function name. */
  148. #define log_fn(severity, domain, args...) \
  149. _log_fn(severity, domain, __PRETTY_FUNCTION__, args)
  150. #define log_debug(domain, args...) \
  151. STMT_BEGIN \
  152. if (PREDICT_UNLIKELY(_log_global_min_severity == LOG_DEBUG)) \
  153. _log_fn(LOG_DEBUG, domain, __PRETTY_FUNCTION__, args); \
  154. STMT_END
  155. #define log_info(domain, args...) \
  156. _log_fn(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
  157. #define log_notice(domain, args...) \
  158. _log_fn(LOG_NOTICE, domain, __PRETTY_FUNCTION__, args)
  159. #define log_warn(domain, args...) \
  160. _log_fn(LOG_WARN, domain, __PRETTY_FUNCTION__, args)
  161. #define log_err(domain, args...) \
  162. _log_fn(LOG_ERR, domain, __PRETTY_FUNCTION__, args)
  163. #else /* ! defined(__GNUC__) */
  164. void _log_fn(int severity, log_domain_mask_t domain, const char *format, ...);
  165. void _log_debug(log_domain_mask_t domain, const char *format, ...);
  166. void _log_info(log_domain_mask_t domain, const char *format, ...);
  167. void _log_notice(log_domain_mask_t domain, const char *format, ...);
  168. void _log_warn(log_domain_mask_t domain, const char *format, ...);
  169. void _log_err(log_domain_mask_t domain, const char *format, ...);
  170. #if defined(_MSC_VER) && _MSC_VER < 1300
  171. /* MSVC 6 and earlier don't have __func__, or even __LINE__. */
  172. #define log_fn _log_fn
  173. #define log_debug _log_debug
  174. #define log_info _log_info
  175. #define log_notice _log_notice
  176. #define log_warn _log_warn
  177. #define log_err _log_err
  178. #else
  179. /* We don't have GCC's varargs macros, so use a global variable to pass the
  180. * function name to log_fn */
  181. extern const char *_log_fn_function_name;
  182. /* We abuse the comma operator here, since we can't use the standard
  183. * do {...} while (0) trick to wrap this macro, since the macro can't take
  184. * arguments. */
  185. #define log_fn (_log_fn_function_name=__func__),_log_fn
  186. #define log_debug (_log_fn_function_name=__func__),_log_debug
  187. #define log_info (_log_fn_function_name=__func__),_log_info
  188. #define log_notice (_log_fn_function_name=__func__),_log_notice
  189. #define log_warn (_log_fn_function_name=__func__),_log_warn
  190. #define log_err (_log_fn_function_name=__func__),_log_err
  191. #endif
  192. #endif /* !GNUC */
  193. # define _TOR_LOG_H
  194. #endif