mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
Use subsystems manager for subsystems used in tests.
This commit is contained in:
parent
a0ee54549f
commit
05b54f6a6a
@ -65,4 +65,8 @@ typedef struct subsys_fns_t {
|
|||||||
#define MIN_SUBSYS_LEVEL -100
|
#define MIN_SUBSYS_LEVEL -100
|
||||||
#define MAX_SUBSYS_LEVEL 100
|
#define MAX_SUBSYS_LEVEL 100
|
||||||
|
|
||||||
|
/* All tor "libraries" (in src/libs) should have a subsystem level equal to or
|
||||||
|
* less than this value. */
|
||||||
|
#define SUBSYS_LEVEL_LIBS -10
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
|
|
||||||
#include "core/or/circuitlist.h"
|
#include "core/or/circuitlist.h"
|
||||||
#include "app/config/config.h"
|
#include "app/config/config.h"
|
||||||
|
#include "app/main/subsysmgr.h"
|
||||||
#include "lib/crypt_ops/crypto_curve25519.h"
|
#include "lib/crypt_ops/crypto_curve25519.h"
|
||||||
#include "lib/crypt_ops/crypto_dh.h"
|
#include "lib/crypt_ops/crypto_dh.h"
|
||||||
#include "core/crypto/onion_ntor.h"
|
#include "core/crypto/onion_ntor.h"
|
||||||
@ -690,9 +691,10 @@ main(int argc, const char **argv)
|
|||||||
char *errmsg;
|
char *errmsg;
|
||||||
or_options_t *options;
|
or_options_t *options;
|
||||||
|
|
||||||
tor_threads_init();
|
subsystems_init_upto(SUBSYS_LEVEL_LIBS);
|
||||||
|
flush_log_messages_from_startup();
|
||||||
|
|
||||||
tor_compress_init();
|
tor_compress_init();
|
||||||
init_logging(1);
|
|
||||||
|
|
||||||
if (argc == 4 && !strcmp(argv[1], "diff")) {
|
if (argc == 4 && !strcmp(argv[1], "diff")) {
|
||||||
const int N = 200;
|
const int N = 200;
|
||||||
@ -739,7 +741,6 @@ main(int argc, const char **argv)
|
|||||||
|
|
||||||
init_protocol_warning_severity_level();
|
init_protocol_warning_severity_level();
|
||||||
options = options_new();
|
options = options_new();
|
||||||
init_logging(1);
|
|
||||||
options->command = CMD_RUN_UNITTESTS;
|
options->command = CMD_RUN_UNITTESTS;
|
||||||
options->DataDirectory = tor_strdup("");
|
options->DataDirectory = tor_strdup("");
|
||||||
options->KeyDirectory = tor_strdup("");
|
options->KeyDirectory = tor_strdup("");
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#define CRYPTO_ED25519_PRIVATE
|
#define CRYPTO_ED25519_PRIVATE
|
||||||
#include "orconfig.h"
|
#include "orconfig.h"
|
||||||
#include "core/or/or.h"
|
#include "core/or/or.h"
|
||||||
|
#include "app/main/subsysmgr.h"
|
||||||
#include "lib/err/backtrace.h"
|
#include "lib/err/backtrace.h"
|
||||||
#include "app/config/config.h"
|
#include "app/config/config.h"
|
||||||
#include "test/fuzz/fuzzing.h"
|
#include "test/fuzz/fuzzing.h"
|
||||||
@ -95,12 +96,10 @@ disable_signature_checking(void)
|
|||||||
static void
|
static void
|
||||||
global_init(void)
|
global_init(void)
|
||||||
{
|
{
|
||||||
tor_threads_init();
|
subsystems_init_upto(SUBSYS_LEVEL_LIBS);
|
||||||
tor_compress_init();
|
flush_log_messages_from_startup();
|
||||||
|
|
||||||
/* Initialise logging first */
|
tor_compress_init();
|
||||||
init_logging(1);
|
|
||||||
configure_backtrace_handler(get_version());
|
|
||||||
|
|
||||||
if (crypto_global_init(0, NULL, NULL) < 0)
|
if (crypto_global_init(0, NULL, NULL) < 0)
|
||||||
abort();
|
abort();
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "lib/evloop/compat_libevent.h"
|
#include "lib/evloop/compat_libevent.h"
|
||||||
#include "lib/crypt_ops/crypto_init.h"
|
#include "lib/crypt_ops/crypto_init.h"
|
||||||
#include "lib/version/torversion.h"
|
#include "lib/version/torversion.h"
|
||||||
|
#include "app/main/subsysmgr.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#ifdef HAVE_FCNTL_H
|
#ifdef HAVE_FCNTL_H
|
||||||
@ -251,12 +252,9 @@ main(int c, const char **v)
|
|||||||
int loglevel = LOG_ERR;
|
int loglevel = LOG_ERR;
|
||||||
int accel_crypto = 0;
|
int accel_crypto = 0;
|
||||||
|
|
||||||
/* We must initialise logs before we call tor_assert() */
|
subsystems_init_upto(SUBSYS_LEVEL_LIBS);
|
||||||
init_logging(1);
|
|
||||||
|
|
||||||
update_approx_time(time(NULL));
|
|
||||||
options = options_new();
|
options = options_new();
|
||||||
tor_threads_init();
|
|
||||||
tor_compress_init();
|
tor_compress_init();
|
||||||
|
|
||||||
network_init();
|
network_init();
|
||||||
@ -268,7 +266,6 @@ main(int c, const char **v)
|
|||||||
tor_libevent_initialize(&cfg);
|
tor_libevent_initialize(&cfg);
|
||||||
|
|
||||||
control_initialize_event_queue();
|
control_initialize_event_queue();
|
||||||
configure_backtrace_handler(get_version());
|
|
||||||
|
|
||||||
for (i_out = i = 1; i < c; ++i) {
|
for (i_out = i = 1; i < c; ++i) {
|
||||||
if (!strcmp(v[i], "--warn")) {
|
if (!strcmp(v[i], "--warn")) {
|
||||||
@ -295,6 +292,7 @@ main(int c, const char **v)
|
|||||||
s.masks[LOG_WARN-LOG_ERR] |= LD_BUG;
|
s.masks[LOG_WARN-LOG_ERR] |= LD_BUG;
|
||||||
add_stream_log(&s, "", fileno(stdout));
|
add_stream_log(&s, "", fileno(stdout));
|
||||||
}
|
}
|
||||||
|
flush_log_messages_from_startup();
|
||||||
init_protocol_warning_severity_level();
|
init_protocol_warning_severity_level();
|
||||||
|
|
||||||
options->command = CMD_RUN_UNITTESTS;
|
options->command = CMD_RUN_UNITTESTS;
|
||||||
|
Loading…
Reference in New Issue
Block a user