2007-12-12 22:09:01 +01:00
|
|
|
/* Copyright (c) 2001, Matej Pfajfar.
|
2006-02-09 06:46:49 +01:00
|
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
2007-12-12 22:09:01 +01:00
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2013-01-16 07:54:56 +01:00
|
|
|
* Copyright (c) 2007-2013, The Tor Project, Inc. */
|
2003-12-13 23:53:17 +01:00
|
|
|
/* See LICENSE for licensing information */
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2004-05-10 05:53:24 +02:00
|
|
|
/**
|
2011-03-16 19:47:27 +01:00
|
|
|
* \file torlog.h
|
2004-05-10 05:53:24 +02:00
|
|
|
*
|
2005-06-11 07:31:17 +02:00
|
|
|
* \brief Headers for log.c
|
2004-05-10 05:53:24 +02:00
|
|
|
**/
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_TORLOG_H
|
2004-05-10 09:54:13 +02:00
|
|
|
|
2007-08-08 07:50:31 +02:00
|
|
|
#include "compat.h"
|
2014-04-15 14:20:34 +02:00
|
|
|
#include "testsupport.h"
|
2004-11-01 21:41:47 +01:00
|
|
|
|
2003-08-12 05:08:41 +02:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
2002-06-27 00:45:49 +02:00
|
|
|
#include <syslog.h>
|
2003-10-10 03:48:03 +02:00
|
|
|
#define LOG_WARN LOG_WARNING
|
2004-10-26 23:48:41 +02:00
|
|
|
#if LOG_DEBUG < LOG_ERR
|
2005-12-14 21:40:40 +01:00
|
|
|
#error "Your syslog.h thinks high numbers are more important. " \
|
|
|
|
"We aren't prepared to deal with that."
|
2004-10-26 23:48:41 +02:00
|
|
|
#endif
|
2003-08-12 05:08:41 +02:00
|
|
|
#else
|
2006-04-18 05:58:42 +02:00
|
|
|
/* Note: Syslog's logging code refers to priorities, with 0 being the most
|
|
|
|
* important. Thus, all our comparisons needed to be reversed when we added
|
|
|
|
* syslog support.
|
2004-10-26 23:48:41 +02:00
|
|
|
*
|
2006-04-18 05:58:42 +02:00
|
|
|
* The upshot of this is that comments about log levels may be messed up: for
|
|
|
|
* "maximum severity" read "most severe" and "numerically *lowest* severity".
|
2004-10-26 23:48:41 +02:00
|
|
|
*/
|
|
|
|
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Debug-level severity: for hyper-verbose messages of no interest to
|
|
|
|
* anybody but developers. */
|
2004-10-26 23:48:41 +02:00
|
|
|
#define LOG_DEBUG 7
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Info-level severity: for messages that appear frequently during normal
|
|
|
|
* operation. */
|
2004-10-26 23:48:41 +02:00
|
|
|
#define LOG_INFO 6
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Notice-level severity: for messages that appear infrequently
|
|
|
|
* during normal operation; that the user will probably care about;
|
|
|
|
* and that are not errors.
|
|
|
|
*/
|
2004-10-26 23:48:41 +02:00
|
|
|
#define LOG_NOTICE 5
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Warn-level severity: for messages that only appear when something has gone
|
|
|
|
* wrong. */
|
2004-10-26 23:48:41 +02:00
|
|
|
#define LOG_WARN 4
|
2004-05-21 14:30:07 +02:00
|
|
|
/** Error-level severity: for messages that only appear when something has gone
|
2004-05-10 05:53:24 +02:00
|
|
|
* very wrong, and the Tor process can no longer proceed. */
|
2004-10-26 23:48:41 +02:00
|
|
|
#define LOG_ERR 3
|
2003-08-12 05:08:41 +02:00
|
|
|
#endif
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2005-10-18 23:58:19 +02:00
|
|
|
/* Logging domains */
|
2005-10-19 00:56:40 +02:00
|
|
|
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Catch-all for miscellaneous events and fatal errors. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_GENERAL (1u<<0)
|
2009-05-27 23:55:51 +02:00
|
|
|
/** The cryptography subsystem. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_CRYPTO (1u<<1)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Networking. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_NET (1u<<2)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Parsing and acting on our configuration. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_CONFIG (1u<<3)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Reading and writing from the filesystem. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_FS (1u<<4)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Other servers' (non)compliance with the Tor protocol. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_PROTOCOL (1u<<5)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Memory management. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_MM (1u<<6)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** HTTP implementation. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_HTTP (1u<<7)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Application (socks) requests. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_APP (1u<<8)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Communication via the controller protocol. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_CONTROL (1u<<9)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Building, using, and managing circuits. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_CIRC (1u<<10)
|
2005-10-25 19:58:43 +02:00
|
|
|
/** Hidden services. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_REND (1u<<11)
|
2005-10-24 20:37:09 +02:00
|
|
|
/** Internal errors in this Tor process. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_BUG (1u<<12)
|
2005-10-24 20:37:09 +02:00
|
|
|
/** Learning and using information about Tor servers. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_DIR (1u<<13)
|
2005-10-24 21:36:43 +02:00
|
|
|
/** Learning and using information about Tor servers. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_DIRSERV (1u<<14)
|
2005-10-24 21:36:43 +02:00
|
|
|
/** Onion routing protocol. */
|
2005-10-25 09:05:03 +02:00
|
|
|
#define LD_OR (1u<<15)
|
2005-10-25 10:20:10 +02:00
|
|
|
/** Generic edge-connection functionality. */
|
|
|
|
#define LD_EDGE (1u<<16)
|
|
|
|
#define LD_EXIT LD_EDGE
|
2005-10-25 19:52:14 +02:00
|
|
|
/** Bandwidth accounting. */
|
|
|
|
#define LD_ACCT (1u<<17)
|
2008-09-23 20:24:20 +02:00
|
|
|
/** Router history */
|
|
|
|
#define LD_HIST (1u<<18)
|
2009-09-24 18:31:22 +02:00
|
|
|
/** OR handshaking */
|
|
|
|
#define LD_HANDSHAKE (1u<<19)
|
2010-12-01 02:24:03 +01:00
|
|
|
/** Heartbeat messages */
|
|
|
|
#define LD_HEARTBEAT (1u<<20)
|
Add channel.c/channel.h for bug 6465
Note: this is a squashed commit; see branch bug6465_rebased_v2 of user/andrea/tor.git for full history of the following 90 commits:
Add channel.c/channel.h for bug 6465
Fix make check-spaces in new channel.c/channel.h
Make sure new channel.h is in nodist_HEADERS and Makefile.nmake is up to date too
Add channel_state_t and state utility functions
Add channel_change_state()
Better comments in channel.h
Add CHANNEL_STATE_LISTENING for channel_t
Fix wide line in channel.c
Add structures/prototypes for incoming cell handling
Implement channel_queue_cell() and channel_queue_var_cell()
Implement channel_process_cells()
Fix asserts in channel_queue_cell() and channel_queue_var_cell()
Add descriptive comments for channel_queue_cell() and channel_queue_var_cell()
Implement channel cell handler getters/setters
Queue outgoing writes when not in writeable state
Drain queues and test assertions when changing channel_t state
Add log_debug() messages for channel_t stuff
Add log_debug() messages for channel_t stuff
Add some channel_t metadata
Add time_t client_used to channel_t
Add channel_touched_by_client()
Declare a few channel_t metadata queries we'll have to implement later for use by circuitbuild.c
Add next_circ_id/circ_id_type to channel_t for use by circuitbuild.c
Count n_circuits in channel_t
Channel timestamp calls
Add create timestamp for channel.h
Declare some new metadata queries on channel_t
Add get_real_remote_descr() prototype
Move active_circuits stuff to channel_t, some other or.h and channel.h changes
Make channel_t refcounted and use global lists of active channels
Update channel_request_close() and channel_change_state() for channel_t registration mechanism
Handle closing channels sensibly
Add global_identifier for channels, channel_init() internal use function
Add timestamp_last_added_nonpadding to channel_t
Better comments in channel_init()
Correctly handle next_circ_id in channel_init()
Correctly handle next_circ_id in channel_init() and even compile this time
Appease make check-spaces
Update timestamps when writing cells to channel_t
Add channel_flush_some_cells() to call channel_flush_from_first_active_circuit()
Add registered channel lookup functions
Get rid of client_used in or_connection_t; it's in channel_t now
Get rid of circ_id_type in or_connection_t; implement channel_set_circ_id_type()
Eliminate is_bad_for_new_circs in or_connection_t; implement getter/setter for it in channel_t
Eliminate next_circ_id in or_connection_t in favor of channel_t
Handle packed cells in channel_t for relay.c
Add channel_identity_map and related functions
Handle add/remove from channel identity map on state transitions
Implement channel_is_local() and channel_mark_local()
Implement channel_is_client() and channel_mark_client()
Implement channel_is_outgoing() and channel_mark_outgoing()
Eliminate declaration for redundant channel_nonopen_was_started_here()
Add channel timestamps
Add channel timestamps, fix some make-check-spaces complaints
Remove redundant channel_was_started_here() function and initiated_remotely bit
Rename channel_get_remote_descr()/channel_get_real_remote_descr() to something clearer in channel.h
Replace channel_get_write_queue_len() with sufficient and easier to implement channel_has_queued_writes() in channel.h
Change return type of channel_is_bad_for_new_circs() to int for consistency
Implement channel_has_queued_writes()
Rename channel_touched_by_client() and client_used field for consistency with other timestamps in channel.{c,h}
Implement channel_get_actual_remote_descr() and channel_get_canonical_remote_descr() in channel.{c,h}
Implement channel_matches_extend_info() in channel.{c,h}
Implement channel_get_for_extend() and channel_is_better() in channel.{c,h}
Make channel_is_better() public in channel.{c,h}
Implement channel_matches_target_addr_for_extend() in channel.{c,h}
Implement channel_is_canonical_is_reliable() in channel.{c,h}
Demoronize get_remote_descr() method prototype - what the hell was I thinking there?
Timestamp channels in the right places in channel.c
Add missing tor_assert() in channel.c
Check if the lower layer accepted a cell in channel_write_cell() et al. of channel.c
Implement channel_flush_cells() in channel.c (w00t, it builds at last)
Call channel_timestamp_drained() at the right places in channel.c
Implement channel_run_cleanup()
Support optional channel_get_remote_addr() method and use it for GeoIP in channel_do_open_actions()
Get rid of channel refcounting; it'll be too complicated to handle it properly with all the pointers from circuits to channels, and closing from channel_run_cleanup() will work okay just like with connections
Doxygenate channel.c
Appease make check-spaces in channel.c
Fix superfluous semicolons in channel.c
Add/remove channels from identity digest map in all the right places in channel.c
The cell queues on channel_t must be empty when going to a CLOSED or ERROR state
Appease make check-spaces in channel.c
Add channel_clear/set_identity_digest() and some better logging to channel.{c,h}
Fix better logging to channel.c
Avoid SIGSEGV testing for queue emptiness in channel_flush_some_cells_from_outgoing_queue()
Remove TODO about checking cell queue in channel_free(); no need for it
Appease make check-spaces in channel.c
Add channel_free_all() and support functions
Check nullness of active_circuit_pqueue in channel_free()
Fix SMARTLIST_FOREACH_END usage in channel_process_cells()
Rearrange channel_t struct to use a union distinguishing listener from cell-bearing channels in channel.{c,h}
2012-07-31 06:49:39 +02:00
|
|
|
/** Abstract channel_t code */
|
|
|
|
#define LD_CHANNEL (1u<<21)
|
2008-03-05 23:31:39 +01:00
|
|
|
/** Number of logging domains in the code. */
|
Add channel.c/channel.h for bug 6465
Note: this is a squashed commit; see branch bug6465_rebased_v2 of user/andrea/tor.git for full history of the following 90 commits:
Add channel.c/channel.h for bug 6465
Fix make check-spaces in new channel.c/channel.h
Make sure new channel.h is in nodist_HEADERS and Makefile.nmake is up to date too
Add channel_state_t and state utility functions
Add channel_change_state()
Better comments in channel.h
Add CHANNEL_STATE_LISTENING for channel_t
Fix wide line in channel.c
Add structures/prototypes for incoming cell handling
Implement channel_queue_cell() and channel_queue_var_cell()
Implement channel_process_cells()
Fix asserts in channel_queue_cell() and channel_queue_var_cell()
Add descriptive comments for channel_queue_cell() and channel_queue_var_cell()
Implement channel cell handler getters/setters
Queue outgoing writes when not in writeable state
Drain queues and test assertions when changing channel_t state
Add log_debug() messages for channel_t stuff
Add log_debug() messages for channel_t stuff
Add some channel_t metadata
Add time_t client_used to channel_t
Add channel_touched_by_client()
Declare a few channel_t metadata queries we'll have to implement later for use by circuitbuild.c
Add next_circ_id/circ_id_type to channel_t for use by circuitbuild.c
Count n_circuits in channel_t
Channel timestamp calls
Add create timestamp for channel.h
Declare some new metadata queries on channel_t
Add get_real_remote_descr() prototype
Move active_circuits stuff to channel_t, some other or.h and channel.h changes
Make channel_t refcounted and use global lists of active channels
Update channel_request_close() and channel_change_state() for channel_t registration mechanism
Handle closing channels sensibly
Add global_identifier for channels, channel_init() internal use function
Add timestamp_last_added_nonpadding to channel_t
Better comments in channel_init()
Correctly handle next_circ_id in channel_init()
Correctly handle next_circ_id in channel_init() and even compile this time
Appease make check-spaces
Update timestamps when writing cells to channel_t
Add channel_flush_some_cells() to call channel_flush_from_first_active_circuit()
Add registered channel lookup functions
Get rid of client_used in or_connection_t; it's in channel_t now
Get rid of circ_id_type in or_connection_t; implement channel_set_circ_id_type()
Eliminate is_bad_for_new_circs in or_connection_t; implement getter/setter for it in channel_t
Eliminate next_circ_id in or_connection_t in favor of channel_t
Handle packed cells in channel_t for relay.c
Add channel_identity_map and related functions
Handle add/remove from channel identity map on state transitions
Implement channel_is_local() and channel_mark_local()
Implement channel_is_client() and channel_mark_client()
Implement channel_is_outgoing() and channel_mark_outgoing()
Eliminate declaration for redundant channel_nonopen_was_started_here()
Add channel timestamps
Add channel timestamps, fix some make-check-spaces complaints
Remove redundant channel_was_started_here() function and initiated_remotely bit
Rename channel_get_remote_descr()/channel_get_real_remote_descr() to something clearer in channel.h
Replace channel_get_write_queue_len() with sufficient and easier to implement channel_has_queued_writes() in channel.h
Change return type of channel_is_bad_for_new_circs() to int for consistency
Implement channel_has_queued_writes()
Rename channel_touched_by_client() and client_used field for consistency with other timestamps in channel.{c,h}
Implement channel_get_actual_remote_descr() and channel_get_canonical_remote_descr() in channel.{c,h}
Implement channel_matches_extend_info() in channel.{c,h}
Implement channel_get_for_extend() and channel_is_better() in channel.{c,h}
Make channel_is_better() public in channel.{c,h}
Implement channel_matches_target_addr_for_extend() in channel.{c,h}
Implement channel_is_canonical_is_reliable() in channel.{c,h}
Demoronize get_remote_descr() method prototype - what the hell was I thinking there?
Timestamp channels in the right places in channel.c
Add missing tor_assert() in channel.c
Check if the lower layer accepted a cell in channel_write_cell() et al. of channel.c
Implement channel_flush_cells() in channel.c (w00t, it builds at last)
Call channel_timestamp_drained() at the right places in channel.c
Implement channel_run_cleanup()
Support optional channel_get_remote_addr() method and use it for GeoIP in channel_do_open_actions()
Get rid of channel refcounting; it'll be too complicated to handle it properly with all the pointers from circuits to channels, and closing from channel_run_cleanup() will work okay just like with connections
Doxygenate channel.c
Appease make check-spaces in channel.c
Fix superfluous semicolons in channel.c
Add/remove channels from identity digest map in all the right places in channel.c
The cell queues on channel_t must be empty when going to a CLOSED or ERROR state
Appease make check-spaces in channel.c
Add channel_clear/set_identity_digest() and some better logging to channel.{c,h}
Fix better logging to channel.c
Avoid SIGSEGV testing for queue emptiness in channel_flush_some_cells_from_outgoing_queue()
Remove TODO about checking cell queue in channel_free(); no need for it
Appease make check-spaces in channel.c
Add channel_free_all() and support functions
Check nullness of active_circuit_pqueue in channel_free()
Fix SMARTLIST_FOREACH_END usage in channel_process_cells()
Rearrange channel_t struct to use a union distinguishing listener from cell-bearing channels in channel.{c,h}
2012-07-31 06:49:39 +02:00
|
|
|
#define N_LOGGING_DOMAINS 22
|
2008-03-05 23:31:39 +01:00
|
|
|
|
2010-11-20 04:52:32 +01:00
|
|
|
/** This log message is not safe to send to a callback-based logger
|
|
|
|
* immediately. Used as a flag, not a log domain. */
|
2010-11-20 04:22:43 +01:00
|
|
|
#define LD_NOCB (1u<<31)
|
2013-07-25 12:12:35 +02:00
|
|
|
/** This log message should not include a function name, even if it otherwise
|
|
|
|
* would. Used as a flag, not a log domain. */
|
|
|
|
#define LD_NOFUNCNAME (1u<<30)
|
2010-11-20 04:22:43 +01:00
|
|
|
|
2011-03-16 22:05:37 +01:00
|
|
|
/** Mask of zero or more log domains, OR'd together. */
|
2008-03-05 23:31:39 +01:00
|
|
|
typedef uint32_t log_domain_mask_t;
|
|
|
|
|
|
|
|
/** Configures which severities are logged for each logging domain for a given
|
|
|
|
* log target. */
|
|
|
|
typedef struct log_severity_list_t {
|
|
|
|
/** For each log severity, a bitmask of which domains a given logger is
|
|
|
|
* logging. */
|
|
|
|
log_domain_mask_t masks[LOG_DEBUG-LOG_ERR+1];
|
|
|
|
} log_severity_list_t;
|
|
|
|
|
2007-02-05 19:33:52 +01:00
|
|
|
/** Callback type used for add_callback_log. */
|
2005-11-01 07:15:48 +01:00
|
|
|
typedef void (*log_callback)(int severity, uint32_t domain, const char *msg);
|
2004-11-03 19:27:19 +01:00
|
|
|
|
2008-01-02 06:38:53 +01:00
|
|
|
void init_logging(void);
|
2004-05-19 22:07:08 +02:00
|
|
|
int parse_log_level(const char *level);
|
2004-11-05 06:50:35 +01:00
|
|
|
const char *log_level_to_string(int level);
|
2008-03-05 23:31:39 +01:00
|
|
|
int parse_log_severity_config(const char **cfg,
|
|
|
|
log_severity_list_t *severity_out);
|
2008-03-13 23:18:38 +01:00
|
|
|
void set_log_severity_config(int minSeverity, int maxSeverity,
|
|
|
|
log_severity_list_t *severity_out);
|
2008-09-05 21:52:44 +02:00
|
|
|
void add_stream_log(const log_severity_list_t *severity, const char *name,
|
2008-12-03 00:36:58 +01:00
|
|
|
int fd);
|
2008-09-05 21:52:44 +02:00
|
|
|
int add_file_log(const log_severity_list_t *severity, const char *filename);
|
2004-10-26 23:48:41 +02:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
2008-09-05 21:52:44 +02:00
|
|
|
int add_syslog_log(const log_severity_list_t *severity);
|
2004-10-26 23:48:41 +02:00
|
|
|
#endif
|
2008-09-05 21:52:44 +02:00
|
|
|
int add_callback_log(const log_severity_list_t *severity, log_callback cb);
|
2011-01-25 21:53:15 +01:00
|
|
|
void logs_set_domain_logging(int enabled);
|
2004-05-19 22:07:08 +02:00
|
|
|
int get_min_log_level(void);
|
2004-11-20 08:33:55 +01:00
|
|
|
void switch_logs_debug(void);
|
2007-07-16 06:33:47 +02:00
|
|
|
void logs_free_all(void);
|
2008-03-27 18:25:49 +01:00
|
|
|
void add_temp_log(int min_severity);
|
2004-05-20 21:47:28 +02:00
|
|
|
void close_temp_logs(void);
|
2006-01-11 20:40:14 +01:00
|
|
|
void rollback_log_changes(void);
|
2004-06-02 21:18:37 +02:00
|
|
|
void mark_logs_temp(void);
|
2005-04-06 00:56:17 +02:00
|
|
|
void change_callback_log_severity(int loglevelMin, int loglevelMax,
|
|
|
|
log_callback cb);
|
2010-11-20 04:52:32 +01:00
|
|
|
void flush_pending_log_callbacks(void);
|
2007-05-22 17:48:46 +02:00
|
|
|
void log_set_application_name(const char *name);
|
2010-08-27 08:13:54 +02:00
|
|
|
void set_log_time_granularity(int granularity_msec);
|
2003-09-16 19:58:36 +02:00
|
|
|
|
2009-12-15 20:32:55 +01:00
|
|
|
void tor_log(int severity, log_domain_mask_t domain, const char *format, ...)
|
2005-12-14 21:40:40 +01:00
|
|
|
CHECK_PRINTF(3,4);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2013-07-20 04:47:49 +02:00
|
|
|
void tor_log_err_sigsafe(const char *m, ...);
|
|
|
|
int tor_log_get_sigsafe_err_fds(const int **out);
|
|
|
|
void tor_log_update_sigsafe_err_fds(void);
|
|
|
|
|
2014-05-20 21:21:27 +02:00
|
|
|
struct smartlist_t;
|
|
|
|
void tor_log_get_logfile_names(struct smartlist_t *out);
|
|
|
|
|
2012-10-12 18:22:13 +02:00
|
|
|
extern int log_global_min_severity_;
|
2007-02-21 06:57:12 +01:00
|
|
|
|
2014-05-12 06:34:06 +02:00
|
|
|
#if defined(__GNUC__) || defined(RUNNING_DOXYGEN)
|
2012-10-12 18:22:13 +02:00
|
|
|
void log_fn_(int severity, log_domain_mask_t domain,
|
2005-10-18 23:58:19 +02:00
|
|
|
const char *funcname, const char *format, ...)
|
|
|
|
CHECK_PRINTF(4,5);
|
2012-12-26 16:51:58 +01:00
|
|
|
struct ratelim_t;
|
|
|
|
void log_fn_ratelim_(struct ratelim_t *ratelim, int severity,
|
|
|
|
log_domain_mask_t domain, const char *funcname,
|
|
|
|
const char *format, ...)
|
|
|
|
CHECK_PRINTF(5,6);
|
2004-05-10 05:53:24 +02:00
|
|
|
/** Log a message at level <b>severity</b>, using a pretty-printed version
|
|
|
|
* of the current function name. */
|
2005-10-18 23:58:19 +02:00
|
|
|
#define log_fn(severity, domain, args...) \
|
2012-10-12 18:22:13 +02:00
|
|
|
log_fn_(severity, domain, __PRETTY_FUNCTION__, args)
|
2012-12-26 16:51:58 +01:00
|
|
|
/** As log_fn, but use <b>ratelim</b> (an instance of ratelim_t) to control
|
|
|
|
* the frequency at which messages can appear.
|
|
|
|
*/
|
|
|
|
#define log_fn_ratelim(ratelim, severity, domain, args...) \
|
|
|
|
log_fn_ratelim_(ratelim, severity, domain, __PRETTY_FUNCTION__, args)
|
2007-03-06 21:25:44 +01:00
|
|
|
#define log_debug(domain, args...) \
|
2007-06-17 20:22:39 +02:00
|
|
|
STMT_BEGIN \
|
2012-10-12 18:22:13 +02:00
|
|
|
if (PREDICT_UNLIKELY(log_global_min_severity_ == LOG_DEBUG)) \
|
|
|
|
log_fn_(LOG_DEBUG, domain, __PRETTY_FUNCTION__, args); \
|
2007-06-17 20:22:39 +02:00
|
|
|
STMT_END
|
2006-02-13 09:01:59 +01:00
|
|
|
#define log_info(domain, args...) \
|
2012-10-12 18:22:13 +02:00
|
|
|
log_fn_(LOG_INFO, domain, __PRETTY_FUNCTION__, args)
|
2006-02-13 09:01:59 +01:00
|
|
|
#define log_notice(domain, args...) \
|
2012-10-12 18:22:13 +02:00
|
|
|
log_fn_(LOG_NOTICE, domain, __PRETTY_FUNCTION__, args)
|
2006-02-13 09:01:59 +01:00
|
|
|
#define log_warn(domain, args...) \
|
2012-10-12 18:22:13 +02:00
|
|
|
log_fn_(LOG_WARN, domain, __PRETTY_FUNCTION__, args)
|
2006-02-13 09:01:59 +01:00
|
|
|
#define log_err(domain, args...) \
|
2012-10-12 18:22:13 +02:00
|
|
|
log_fn_(LOG_ERR, domain, __PRETTY_FUNCTION__, args)
|
2005-10-25 20:01:01 +02:00
|
|
|
|
|
|
|
#else /* ! defined(__GNUC__) */
|
2005-10-18 23:58:19 +02:00
|
|
|
|
2012-10-12 18:22:13 +02:00
|
|
|
void log_fn_(int severity, log_domain_mask_t domain, const char *format, ...);
|
2012-12-26 16:51:58 +01:00
|
|
|
struct ratelim_t;
|
|
|
|
void log_fn_ratelim_(struct ratelim_t *ratelim, int severity,
|
|
|
|
log_domain_mask_t domain, const char *format, ...);
|
2012-10-12 18:22:13 +02:00
|
|
|
void log_debug_(log_domain_mask_t domain, const char *format, ...);
|
|
|
|
void log_info_(log_domain_mask_t domain, const char *format, ...);
|
|
|
|
void log_notice_(log_domain_mask_t domain, const char *format, ...);
|
|
|
|
void log_warn_(log_domain_mask_t domain, const char *format, ...);
|
|
|
|
void log_err_(log_domain_mask_t domain, const char *format, ...);
|
2005-10-18 23:58:19 +02:00
|
|
|
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1300
|
2006-03-13 01:25:36 +01:00
|
|
|
/* MSVC 6 and earlier don't have __func__, or even __LINE__. */
|
2012-10-12 18:22:13 +02:00
|
|
|
#define log_fn log_fn_
|
2012-12-26 16:51:58 +01:00
|
|
|
#define log_fn_ratelim log_fn_ratelim_
|
2012-10-12 18:22:13 +02:00
|
|
|
#define log_debug log_debug_
|
|
|
|
#define log_info log_info_
|
|
|
|
#define log_notice log_notice_
|
|
|
|
#define log_warn log_warn_
|
|
|
|
#define log_err log_err_
|
2003-05-09 04:25:37 +02:00
|
|
|
#else
|
2004-11-15 22:18:07 +01:00
|
|
|
/* We don't have GCC's varargs macros, so use a global variable to pass the
|
|
|
|
* function name to log_fn */
|
2012-10-12 18:22:13 +02:00
|
|
|
extern const char *log_fn_function_name_;
|
2004-11-15 22:18:07 +01:00
|
|
|
/* We abuse the comma operator here, since we can't use the standard
|
2004-11-28 10:05:49 +01:00
|
|
|
* do {...} while (0) trick to wrap this macro, since the macro can't take
|
2004-11-15 22:18:07 +01:00
|
|
|
* arguments. */
|
2012-10-12 18:22:13 +02:00
|
|
|
#define log_fn (log_fn_function_name_=__func__),log_fn_
|
2012-12-26 16:51:58 +01:00
|
|
|
#define log_fn_ratelim (log_fn_function_name_=__func__),log_fn_ratelim_
|
2012-10-12 18:22:13 +02:00
|
|
|
#define log_debug (log_fn_function_name_=__func__),log_debug_
|
|
|
|
#define log_info (log_fn_function_name_=__func__),log_info_
|
|
|
|
#define log_notice (log_fn_function_name_=__func__),log_notice_
|
|
|
|
#define log_warn (log_fn_function_name_=__func__),log_warn_
|
|
|
|
#define log_err (log_fn_function_name_=__func__),log_err_
|
2003-05-09 04:25:37 +02:00
|
|
|
#endif
|
2005-10-18 23:58:19 +02:00
|
|
|
|
|
|
|
#endif /* !GNUC */
|
2003-05-09 04:25:37 +02:00
|
|
|
|
2014-04-15 14:20:34 +02:00
|
|
|
#ifdef LOG_PRIVATE
|
|
|
|
MOCK_DECL(STATIC void, logv, (int severity, log_domain_mask_t domain,
|
|
|
|
const char *funcname, const char *suffix, const char *format,
|
|
|
|
va_list ap) CHECK_PRINTF(5,0));
|
|
|
|
#endif
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
# define TOR_TORLOG_H
|
2002-06-27 00:45:49 +02:00
|
|
|
#endif
|
2005-06-09 21:03:31 +02:00
|
|
|
|