torlog.h 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  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-2017, 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_TORLOG_H
  12. #include "compat.h"
  13. #include "testsupport.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 /* !(defined(HAVE_SYSLOG_H)) */
  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 /* defined(HAVE_SYSLOG_H) */
  47. /* Logging domains */
  48. /** Catch-all for miscellaneous events and fatal errors. */
  49. #define LD_GENERAL (1u<<0)
  50. /** The cryptography subsystem. */
  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. /** Router history */
  86. #define LD_HIST (1u<<18)
  87. /** OR handshaking */
  88. #define LD_HANDSHAKE (1u<<19)
  89. /** Heartbeat messages */
  90. #define LD_HEARTBEAT (1u<<20)
  91. /** Abstract channel_t code */
  92. #define LD_CHANNEL (1u<<21)
  93. /** Scheduler */
  94. #define LD_SCHED (1u<<22)
  95. /** Guard nodes */
  96. #define LD_GUARD (1u<<23)
  97. /** Generation and application of consensus diffs. */
  98. #define LD_CONSDIFF (1u<<24)
  99. /** Number of logging domains in the code. */
  100. #define N_LOGGING_DOMAINS 25
  101. /** This log message is not safe to send to a callback-based logger
  102. * immediately. Used as a flag, not a log domain. */
  103. #define LD_NOCB (1u<<31)
  104. /** This log message should not include a function name, even if it otherwise
  105. * would. Used as a flag, not a log domain. */
  106. #define LD_NOFUNCNAME (1u<<30)
  107. #ifdef TOR_UNIT_TESTS
  108. /** This log message should not be intercepted by mock_saving_logv */
  109. #define LD_NO_MOCK (1u<<29)
  110. #endif
  111. /** Mask of zero or more log domains, OR'd together. */
  112. typedef uint32_t log_domain_mask_t;
  113. /** Configures which severities are logged for each logging domain for a given
  114. * log target. */
  115. typedef struct log_severity_list_t {
  116. /** For each log severity, a bitmask of which domains a given logger is
  117. * logging. */
  118. log_domain_mask_t masks[LOG_DEBUG-LOG_ERR+1];
  119. } log_severity_list_t;
  120. /** Callback type used for add_callback_log. */
  121. typedef void (*log_callback)(int severity, uint32_t domain, const char *msg);
  122. void init_logging(int disable_startup_queue);
  123. int parse_log_level(const char *level);
  124. const char *log_level_to_string(int level);
  125. int parse_log_severity_config(const char **cfg,
  126. log_severity_list_t *severity_out);
  127. void set_log_severity_config(int minSeverity, int maxSeverity,
  128. log_severity_list_t *severity_out);
  129. void add_stream_log(const log_severity_list_t *severity, const char *name,
  130. int fd);
  131. int add_file_log(const log_severity_list_t *severity, const char *filename,
  132. const int truncate);
  133. #ifdef HAVE_SYSLOG_H
  134. int add_syslog_log(const log_severity_list_t *severity,
  135. const char* syslog_identity_tag);
  136. #endif // HAVE_SYSLOG_H.
  137. #ifdef HAVE_ANDROID_LOG_H
  138. int add_android_log(const log_severity_list_t *severity,
  139. const char *android_identity_tag);
  140. #endif // HAVE_ANDROID_LOG_H.
  141. int add_callback_log(const log_severity_list_t *severity, log_callback cb);
  142. void logs_set_domain_logging(int enabled);
  143. int get_min_log_level(void);
  144. void switch_logs_debug(void);
  145. void logs_free_all(void);
  146. void add_temp_log(int min_severity);
  147. void close_temp_logs(void);
  148. void rollback_log_changes(void);
  149. void mark_logs_temp(void);
  150. void change_callback_log_severity(int loglevelMin, int loglevelMax,
  151. log_callback cb);
  152. void flush_pending_log_callbacks(void);
  153. void flush_log_messages_from_startup(void);
  154. void log_set_application_name(const char *name);
  155. void set_log_time_granularity(int granularity_msec);
  156. void truncate_logs(void);
  157. void tor_log(int severity, log_domain_mask_t domain, const char *format, ...)
  158. CHECK_PRINTF(3,4);
  159. void tor_log_err_sigsafe(const char *m, ...);
  160. int tor_log_get_sigsafe_err_fds(const int **out);
  161. void tor_log_update_sigsafe_err_fds(void);
  162. struct smartlist_t;
  163. void tor_log_get_logfile_names(struct smartlist_t *out);
  164. extern int log_global_min_severity_;
  165. void log_fn_(int severity, log_domain_mask_t domain,
  166. const char *funcname, const char *format, ...)
  167. CHECK_PRINTF(4,5);
  168. struct ratelim_t;
  169. void log_fn_ratelim_(struct ratelim_t *ratelim, int severity,
  170. log_domain_mask_t domain, const char *funcname,
  171. const char *format, ...)
  172. CHECK_PRINTF(5,6);
  173. #if defined(__GNUC__) && __GNUC__ <= 3
  174. /* These are the GCC varidaic macros, so that older versions of GCC don't
  175. * break. */
  176. /** Log a message at level <b>severity</b>, using a pretty-printed version
  177. * of the current function name. */
  178. #define log_fn(severity, domain, args...) \
  179. log_fn_(severity, domain, __FUNCTION__, args)
  180. /** As log_fn, but use <b>ratelim</b> (an instance of ratelim_t) to control
  181. * the frequency at which messages can appear.
  182. */
  183. #define log_fn_ratelim(ratelim, severity, domain, args...) \
  184. log_fn_ratelim_(ratelim, severity, domain, __FUNCTION__, args)
  185. #define log_debug(domain, args...) \
  186. STMT_BEGIN \
  187. if (PREDICT_UNLIKELY(log_global_min_severity_ == LOG_DEBUG)) \
  188. log_fn_(LOG_DEBUG, domain, __FUNCTION__, args); \
  189. STMT_END
  190. #define log_info(domain, args...) \
  191. log_fn_(LOG_INFO, domain, __FUNCTION__, args)
  192. #define log_notice(domain, args...) \
  193. log_fn_(LOG_NOTICE, domain, __FUNCTION__, args)
  194. #define log_warn(domain, args...) \
  195. log_fn_(LOG_WARN, domain, __FUNCTION__, args)
  196. #define log_err(domain, args...) \
  197. log_fn_(LOG_ERR, domain, __FUNCTION__, args)
  198. #else /* !(defined(__GNUC__) && __GNUC__ <= 3) */
  199. /* Here are the c99 variadic macros, to work with non-GCC compilers */
  200. #define log_debug(domain, args, ...) \
  201. STMT_BEGIN \
  202. if (PREDICT_UNLIKELY(log_global_min_severity_ == LOG_DEBUG)) \
  203. log_fn_(LOG_DEBUG, domain, __FUNCTION__, args, ##__VA_ARGS__); \
  204. STMT_END
  205. #define log_info(domain, args,...) \
  206. log_fn_(LOG_INFO, domain, __FUNCTION__, args, ##__VA_ARGS__)
  207. #define log_notice(domain, args,...) \
  208. log_fn_(LOG_NOTICE, domain, __FUNCTION__, args, ##__VA_ARGS__)
  209. #define log_warn(domain, args,...) \
  210. log_fn_(LOG_WARN, domain, __FUNCTION__, args, ##__VA_ARGS__)
  211. #define log_err(domain, args,...) \
  212. log_fn_(LOG_ERR, domain, __FUNCTION__, args, ##__VA_ARGS__)
  213. /** Log a message at level <b>severity</b>, using a pretty-printed version
  214. * of the current function name. */
  215. #define log_fn(severity, domain, args,...) \
  216. log_fn_(severity, domain, __FUNCTION__, args, ##__VA_ARGS__)
  217. /** As log_fn, but use <b>ratelim</b> (an instance of ratelim_t) to control
  218. * the frequency at which messages can appear.
  219. */
  220. #define log_fn_ratelim(ratelim, severity, domain, args,...) \
  221. log_fn_ratelim_(ratelim, severity, domain, __FUNCTION__, \
  222. args, ##__VA_ARGS__)
  223. #endif /* defined(__GNUC__) && __GNUC__ <= 3 */
  224. #ifdef LOG_PRIVATE
  225. MOCK_DECL(STATIC void, logv, (int severity, log_domain_mask_t domain,
  226. const char *funcname, const char *suffix, const char *format,
  227. va_list ap) CHECK_PRINTF(5,0));
  228. #endif
  229. # define TOR_TORLOG_H
  230. #endif /* !defined(TOR_TORLOG_H) */