2007-12-12 22:09:01 +01:00
|
|
|
/* Copyright (c) 2001-2004, Roger Dingledine.
|
|
|
|
* 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-04-07 04:12:02 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
2008-12-23 18:56:31 +01:00
|
|
|
/* Ordinarily defined in tor_main.c; this bit is just here to provide one
|
|
|
|
* since we're not linking to tor_main.c */
|
2009-06-12 19:38:37 +02:00
|
|
|
const char tor_git_revision[] = "";
|
2007-04-17 01:56:31 +02:00
|
|
|
|
2005-06-11 07:31:17 +02:00
|
|
|
/**
|
|
|
|
* \file test.c
|
|
|
|
* \brief Unit tests for many pieces of the lower level Tor modules.
|
|
|
|
**/
|
|
|
|
|
2004-12-07 06:31:38 +01:00
|
|
|
#include "orconfig.h"
|
2008-09-09 22:43:31 +02:00
|
|
|
|
2003-04-15 21:10:18 +02:00
|
|
|
#include <stdio.h>
|
2003-08-12 05:08:41 +02:00
|
|
|
#ifdef HAVE_FCNTL_H
|
2003-04-15 21:10:18 +02:00
|
|
|
#include <fcntl.h>
|
2003-08-12 05:08:41 +02:00
|
|
|
#endif
|
|
|
|
|
2012-01-31 16:59:42 +01:00
|
|
|
#ifdef _WIN32
|
2003-08-12 05:08:41 +02:00
|
|
|
/* For mkdir() */
|
|
|
|
#include <direct.h>
|
2004-12-07 06:31:38 +01:00
|
|
|
#else
|
2004-08-11 21:20:24 +02:00
|
|
|
#include <dirent.h>
|
2004-12-07 06:31:38 +01:00
|
|
|
#endif
|
|
|
|
|
2007-04-11 15:18:25 +02:00
|
|
|
/* These macros pull in declarations for some functions and structures that
|
|
|
|
* are typically file-private. */
|
2007-12-18 22:27:08 +01:00
|
|
|
#define GEOIP_PRIVATE
|
2007-04-11 15:18:25 +02:00
|
|
|
#define ROUTER_PRIVATE
|
2012-10-15 20:48:34 +02:00
|
|
|
#define CIRCUITSTATS_PRIVATE
|
2013-11-22 18:27:41 +01:00
|
|
|
#define CIRCUITLIST_PRIVATE
|
2014-04-26 06:10:04 +02:00
|
|
|
#define STATEFILE_PRIVATE
|
2009-08-28 08:28:20 +02:00
|
|
|
|
2009-09-18 11:01:39 +02:00
|
|
|
/*
|
|
|
|
* Linux doesn't provide lround in math.h by default, but mac os does...
|
|
|
|
* It's best just to leave math.h out of the picture entirely.
|
|
|
|
*/
|
|
|
|
//#include <math.h>
|
|
|
|
long int lround(double x);
|
|
|
|
double fabs(double x);
|
2007-04-11 02:30:25 +02:00
|
|
|
|
2003-04-07 15:25:44 +02:00
|
|
|
#include "or.h"
|
2010-07-22 01:21:00 +02:00
|
|
|
#include "buffers.h"
|
2013-09-01 10:40:05 +02:00
|
|
|
#include "circuitlist.h"
|
2012-10-15 20:48:34 +02:00
|
|
|
#include "circuitstats.h"
|
2010-07-22 10:22:51 +02:00
|
|
|
#include "config.h"
|
2010-07-22 10:43:02 +02:00
|
|
|
#include "connection_edge.h"
|
2010-07-21 14:38:52 +02:00
|
|
|
#include "geoip.h"
|
2010-07-21 17:52:54 +02:00
|
|
|
#include "rendcommon.h"
|
2007-08-08 07:50:31 +02:00
|
|
|
#include "test.h"
|
|
|
|
#include "torgzip.h"
|
|
|
|
#include "mempool.h"
|
2008-03-26 17:33:33 +01:00
|
|
|
#include "memarea.h"
|
2013-09-01 10:40:05 +02:00
|
|
|
#include "onion.h"
|
2013-09-08 23:14:07 +02:00
|
|
|
#include "onion_ntor.h"
|
2012-12-04 22:09:52 +01:00
|
|
|
#include "onion_tap.h"
|
2010-07-23 20:51:25 +02:00
|
|
|
#include "policies.h"
|
2010-07-23 22:57:20 +02:00
|
|
|
#include "rephist.h"
|
2010-07-23 23:23:43 +02:00
|
|
|
#include "routerparse.h"
|
2014-04-26 06:10:04 +02:00
|
|
|
#include "statefile.h"
|
2012-12-04 03:24:21 +01:00
|
|
|
#ifdef CURVE25519_ENABLED
|
|
|
|
#include "crypto_curve25519.h"
|
|
|
|
#include "onion_ntor.h"
|
|
|
|
#endif
|
2003-04-07 15:25:44 +02:00
|
|
|
|
2008-09-09 22:43:31 +02:00
|
|
|
#ifdef USE_DMALLOC
|
|
|
|
#include <dmalloc.h>
|
2008-09-25 19:37:00 +02:00
|
|
|
#include <openssl/crypto.h>
|
2010-08-16 06:00:13 +02:00
|
|
|
#include "main.h"
|
2008-09-09 22:43:31 +02:00
|
|
|
#endif
|
|
|
|
|
2008-12-22 20:14:08 +01:00
|
|
|
/** Set to true if any unit test has failed. Mostly, this is set by the macros
|
|
|
|
* in test.h */
|
2004-03-01 07:45:32 +01:00
|
|
|
int have_failed = 0;
|
|
|
|
|
2008-12-22 20:14:08 +01:00
|
|
|
/** Temporary directory (set up by setup_directory) under which we store all
|
|
|
|
* our files during testing. */
|
2004-08-11 21:20:24 +02:00
|
|
|
static char temp_dir[256];
|
2012-05-16 16:08:24 +02:00
|
|
|
#ifdef _WIN32
|
2012-06-05 17:06:26 +02:00
|
|
|
#define pid_t int
|
2012-05-16 16:08:24 +02:00
|
|
|
#endif
|
2010-08-16 03:20:19 +02:00
|
|
|
static pid_t temp_dir_setup_in_pid = 0;
|
2004-08-11 21:20:24 +02:00
|
|
|
|
2008-12-22 18:53:04 +01:00
|
|
|
/** Select and create the temporary directory we'll use to run our unit tests.
|
|
|
|
* Store it in <b>temp_dir</b>. Exit immediately if we can't create it.
|
|
|
|
* idempotent. */
|
2004-11-02 04:02:17 +01:00
|
|
|
static void
|
2004-10-27 20:16:37 +02:00
|
|
|
setup_directory(void)
|
2004-08-11 21:20:24 +02:00
|
|
|
{
|
|
|
|
static int is_setup = 0;
|
2003-08-12 05:08:41 +02:00
|
|
|
int r;
|
2013-04-04 18:05:14 +02:00
|
|
|
char rnd[256], rnd32[256];
|
2004-08-11 21:20:24 +02:00
|
|
|
if (is_setup) return;
|
|
|
|
|
2013-04-04 18:05:14 +02:00
|
|
|
/* Due to base32 limitation needs to be a multiple of 5. */
|
|
|
|
#define RAND_PATH_BYTES 5
|
|
|
|
crypto_rand(rnd, RAND_PATH_BYTES);
|
|
|
|
base32_encode(rnd32, sizeof(rnd32), rnd, RAND_PATH_BYTES);
|
|
|
|
|
2012-01-31 16:59:42 +01:00
|
|
|
#ifdef _WIN32
|
2011-04-08 00:34:11 +02:00
|
|
|
{
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
const char *tmp = buf;
|
|
|
|
/* If this fails, we're probably screwed anyway */
|
2012-06-07 17:59:32 +02:00
|
|
|
if (!GetTempPathA(sizeof(buf),buf))
|
2011-04-08 00:34:11 +02:00
|
|
|
tmp = "c:\\windows\\temp";
|
|
|
|
tor_snprintf(temp_dir, sizeof(temp_dir),
|
2013-04-04 18:05:14 +02:00
|
|
|
"%s\\tor_test_%d_%s", tmp, (int)getpid(), rnd32);
|
2011-04-08 00:34:11 +02:00
|
|
|
r = mkdir(temp_dir);
|
|
|
|
}
|
2003-08-12 05:08:41 +02:00
|
|
|
#else
|
2013-04-18 16:30:14 +02:00
|
|
|
tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s",
|
|
|
|
(int) getpid(), rnd32);
|
2004-08-11 21:20:24 +02:00
|
|
|
r = mkdir(temp_dir, 0700);
|
|
|
|
#endif
|
|
|
|
if (r) {
|
|
|
|
fprintf(stderr, "Can't create directory %s:", temp_dir);
|
|
|
|
perror("");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
is_setup = 1;
|
2010-08-16 03:20:19 +02:00
|
|
|
temp_dir_setup_in_pid = getpid();
|
2004-08-11 21:20:24 +02:00
|
|
|
}
|
|
|
|
|
2008-12-22 18:53:04 +01:00
|
|
|
/** Return a filename relative to our testing temporary directory */
|
2009-09-22 19:06:47 +02:00
|
|
|
const char *
|
2004-08-11 21:20:24 +02:00
|
|
|
get_fname(const char *name)
|
|
|
|
{
|
|
|
|
static char buf[1024];
|
|
|
|
setup_directory();
|
2010-08-20 19:24:54 +02:00
|
|
|
if (!name)
|
|
|
|
return temp_dir;
|
2004-10-27 08:37:34 +02:00
|
|
|
tor_snprintf(buf,sizeof(buf),"%s/%s",temp_dir,name);
|
2004-08-11 21:20:24 +02:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2010-10-07 21:28:54 +02:00
|
|
|
/* Remove a directory and all of its subdirectories */
|
2004-11-02 04:02:17 +01:00
|
|
|
static void
|
2010-10-07 21:28:54 +02:00
|
|
|
rm_rf(const char *dir)
|
2004-08-11 21:20:24 +02:00
|
|
|
{
|
2010-10-07 21:28:54 +02:00
|
|
|
struct stat st;
|
2010-08-16 03:20:19 +02:00
|
|
|
smartlist_t *elements;
|
2010-10-07 21:28:54 +02:00
|
|
|
|
|
|
|
elements = tor_listdir(dir);
|
2005-09-10 03:42:42 +02:00
|
|
|
if (elements) {
|
2012-07-17 15:33:38 +02:00
|
|
|
SMARTLIST_FOREACH_BEGIN(elements, const char *, cp) {
|
2010-10-07 21:28:54 +02:00
|
|
|
char *tmp = NULL;
|
|
|
|
tor_asprintf(&tmp, "%s"PATH_SEPARATOR"%s", dir, cp);
|
|
|
|
if (0 == stat(tmp,&st) && (st.st_mode & S_IFDIR)) {
|
|
|
|
rm_rf(tmp);
|
|
|
|
} else {
|
|
|
|
if (unlink(tmp)) {
|
|
|
|
fprintf(stderr, "Error removing %s: %s\n", tmp, strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
2005-09-10 03:42:42 +02:00
|
|
|
tor_free(tmp);
|
2012-07-17 15:33:38 +02:00
|
|
|
} SMARTLIST_FOREACH_END(cp);
|
2005-09-10 03:42:42 +02:00
|
|
|
SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
|
|
|
|
smartlist_free(elements);
|
2004-12-07 06:31:38 +01:00
|
|
|
}
|
2010-10-07 21:28:54 +02:00
|
|
|
if (rmdir(dir))
|
|
|
|
fprintf(stderr, "Error removing directory %s: %s\n", dir, strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Remove all files stored under the temporary directory, and the directory
|
|
|
|
* itself. Called by atexit(). */
|
|
|
|
static void
|
|
|
|
remove_directory(void)
|
|
|
|
{
|
|
|
|
if (getpid() != temp_dir_setup_in_pid) {
|
|
|
|
/* Only clean out the tempdir when the main process is exiting. */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rm_rf(temp_dir);
|
2003-04-15 21:10:18 +02:00
|
|
|
}
|
|
|
|
|
2008-12-18 07:12:19 +01:00
|
|
|
/** Define this if unit tests spend too much time generating public keys*/
|
|
|
|
#undef CACHE_GENERATED_KEYS
|
|
|
|
|
2012-01-18 21:53:30 +01:00
|
|
|
static crypto_pk_t *pregen_keys[5] = {NULL, NULL, NULL, NULL, NULL};
|
2008-12-22 18:53:04 +01:00
|
|
|
#define N_PREGEN_KEYS ((int)(sizeof(pregen_keys)/sizeof(pregen_keys[0])))
|
|
|
|
|
|
|
|
/** Generate and return a new keypair for use in unit tests. If we're using
|
|
|
|
* the key cache optimization, we might reuse keys: we only guarantee that
|
|
|
|
* keys made with distinct values for <b>idx</b> are different. The value of
|
|
|
|
* <b>idx</b> must be at least 0, and less than N_PREGEN_KEYS. */
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_t *
|
2006-10-23 05:48:58 +02:00
|
|
|
pk_generate(int idx)
|
|
|
|
{
|
2008-12-18 07:12:19 +01:00
|
|
|
#ifdef CACHE_GENERATED_KEYS
|
2008-12-22 18:53:04 +01:00
|
|
|
tor_assert(idx < N_PREGEN_KEYS);
|
2008-09-25 19:37:00 +02:00
|
|
|
if (! pregen_keys[idx]) {
|
2012-01-18 21:53:30 +01:00
|
|
|
pregen_keys[idx] = crypto_pk_new();
|
2008-09-25 19:37:00 +02:00
|
|
|
tor_assert(!crypto_pk_generate_key(pregen_keys[idx]));
|
|
|
|
}
|
|
|
|
return crypto_pk_dup_key(pregen_keys[idx]);
|
2008-12-18 07:12:19 +01:00
|
|
|
#else
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_t *result;
|
2008-12-18 07:12:19 +01:00
|
|
|
(void) idx;
|
2012-01-18 21:53:30 +01:00
|
|
|
result = crypto_pk_new();
|
2008-12-18 07:12:19 +01:00
|
|
|
tor_assert(!crypto_pk_generate_key(result));
|
|
|
|
return result;
|
|
|
|
#endif
|
2008-09-25 19:37:00 +02:00
|
|
|
}
|
|
|
|
|
2008-12-22 18:53:04 +01:00
|
|
|
/** Free all storage used for the cached key optimization. */
|
2008-09-25 19:37:00 +02:00
|
|
|
static void
|
|
|
|
free_pregenerated_keys(void)
|
|
|
|
{
|
|
|
|
unsigned idx;
|
2008-12-22 18:53:04 +01:00
|
|
|
for (idx = 0; idx < N_PREGEN_KEYS; ++idx) {
|
2008-09-25 19:37:00 +02:00
|
|
|
if (pregen_keys[idx]) {
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_free(pregen_keys[idx]);
|
2008-09-25 19:37:00 +02:00
|
|
|
pregen_keys[idx] = NULL;
|
|
|
|
}
|
2006-10-23 05:48:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-22 18:53:04 +01:00
|
|
|
/** Run unit tests for the onion handshake code. */
|
2004-11-02 04:02:17 +01:00
|
|
|
static void
|
2004-10-27 20:16:37 +02:00
|
|
|
test_onion_handshake(void)
|
|
|
|
{
|
2003-05-05 06:27:00 +02:00
|
|
|
/* client-side */
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_dh_t *c_dh = NULL;
|
2012-12-05 03:27:07 +01:00
|
|
|
char c_buf[TAP_ONIONSKIN_CHALLENGE_LEN];
|
2003-05-05 06:27:00 +02:00
|
|
|
char c_keys[40];
|
|
|
|
/* server-side */
|
2012-12-05 03:27:07 +01:00
|
|
|
char s_buf[TAP_ONIONSKIN_REPLY_LEN];
|
2003-05-05 06:27:00 +02:00
|
|
|
char s_keys[40];
|
2013-03-01 20:06:09 +01:00
|
|
|
int i;
|
2003-05-05 06:27:00 +02:00
|
|
|
/* shared */
|
2013-03-01 20:06:09 +01:00
|
|
|
crypto_pk_t *pk = NULL, *pk2 = NULL;
|
2003-05-05 06:27:00 +02:00
|
|
|
|
2006-10-23 05:48:58 +02:00
|
|
|
pk = pk_generate(0);
|
2013-03-01 20:06:09 +01:00
|
|
|
pk2 = pk_generate(1);
|
2003-05-05 06:27:00 +02:00
|
|
|
|
|
|
|
/* client handshake 1. */
|
2012-12-05 03:27:07 +01:00
|
|
|
memset(c_buf, 0, TAP_ONIONSKIN_CHALLENGE_LEN);
|
|
|
|
test_assert(! onion_skin_TAP_create(pk, &c_dh, c_buf));
|
2003-05-05 06:27:00 +02:00
|
|
|
|
2013-03-01 20:06:09 +01:00
|
|
|
for (i = 1; i <= 3; ++i) {
|
|
|
|
crypto_pk_t *k1, *k2;
|
|
|
|
if (i==1) {
|
|
|
|
/* server handshake: only one key known. */
|
|
|
|
k1 = pk; k2 = NULL;
|
|
|
|
} else if (i==2) {
|
|
|
|
/* server handshake: try the right key first. */
|
|
|
|
k1 = pk; k2 = pk2;
|
|
|
|
} else {
|
|
|
|
/* server handshake: try the right key second. */
|
|
|
|
k1 = pk2; k2 = pk;
|
|
|
|
}
|
2003-12-17 22:09:31 +01:00
|
|
|
|
2013-03-01 20:06:09 +01:00
|
|
|
memset(s_buf, 0, TAP_ONIONSKIN_REPLY_LEN);
|
|
|
|
memset(s_keys, 0, 40);
|
|
|
|
test_assert(! onion_skin_TAP_server_handshake(c_buf, k1, k2,
|
|
|
|
s_buf, s_keys, 40));
|
2003-12-17 22:09:31 +01:00
|
|
|
|
2013-03-01 20:06:09 +01:00
|
|
|
/* client handshake 2 */
|
|
|
|
memset(c_keys, 0, 40);
|
|
|
|
test_assert(! onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40));
|
|
|
|
|
|
|
|
test_memeq(c_keys, s_keys, 40);
|
|
|
|
memset(s_buf, 0, 40);
|
|
|
|
test_memneq(c_keys, s_buf, 40);
|
2003-06-13 23:23:14 +02:00
|
|
|
}
|
2013-03-01 20:06:09 +01:00
|
|
|
done:
|
|
|
|
crypto_dh_free(c_dh);
|
|
|
|
crypto_pk_free(pk);
|
|
|
|
crypto_pk_free(pk2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_bad_onion_handshake(void *arg)
|
|
|
|
{
|
|
|
|
char junk_buf[TAP_ONIONSKIN_CHALLENGE_LEN];
|
|
|
|
char junk_buf2[TAP_ONIONSKIN_CHALLENGE_LEN];
|
|
|
|
/* client-side */
|
|
|
|
crypto_dh_t *c_dh = NULL;
|
|
|
|
char c_buf[TAP_ONIONSKIN_CHALLENGE_LEN];
|
|
|
|
char c_keys[40];
|
|
|
|
/* server-side */
|
|
|
|
char s_buf[TAP_ONIONSKIN_REPLY_LEN];
|
|
|
|
char s_keys[40];
|
|
|
|
/* shared */
|
|
|
|
crypto_pk_t *pk = NULL, *pk2 = NULL;
|
|
|
|
|
|
|
|
(void)arg;
|
|
|
|
|
|
|
|
pk = pk_generate(0);
|
|
|
|
pk2 = pk_generate(1);
|
|
|
|
|
|
|
|
/* Server: Case 1: the encrypted data is degenerate. */
|
|
|
|
memset(junk_buf, 0, sizeof(junk_buf));
|
|
|
|
crypto_pk_public_hybrid_encrypt(pk, junk_buf2, TAP_ONIONSKIN_CHALLENGE_LEN,
|
|
|
|
junk_buf, DH_KEY_LEN, PK_PKCS1_OAEP_PADDING, 1);
|
|
|
|
tt_int_op(-1, ==,
|
|
|
|
onion_skin_TAP_server_handshake(junk_buf2, pk, NULL,
|
|
|
|
s_buf, s_keys, 40));
|
|
|
|
|
|
|
|
/* Server: Case 2: the encrypted data is not long enough. */
|
|
|
|
memset(junk_buf, 0, sizeof(junk_buf));
|
|
|
|
memset(junk_buf2, 0, sizeof(junk_buf2));
|
|
|
|
crypto_pk_public_encrypt(pk, junk_buf2, sizeof(junk_buf2),
|
|
|
|
junk_buf, 48, PK_PKCS1_OAEP_PADDING);
|
|
|
|
tt_int_op(-1, ==,
|
|
|
|
onion_skin_TAP_server_handshake(junk_buf2, pk, NULL,
|
|
|
|
s_buf, s_keys, 40));
|
|
|
|
|
|
|
|
/* client handshake 1: do it straight. */
|
|
|
|
memset(c_buf, 0, TAP_ONIONSKIN_CHALLENGE_LEN);
|
|
|
|
test_assert(! onion_skin_TAP_create(pk, &c_dh, c_buf));
|
|
|
|
|
|
|
|
/* Server: Case 3: we just don't have the right key. */
|
|
|
|
tt_int_op(-1, ==,
|
|
|
|
onion_skin_TAP_server_handshake(c_buf, pk2, NULL,
|
|
|
|
s_buf, s_keys, 40));
|
|
|
|
|
|
|
|
/* Server: Case 4: The RSA-encrypted portion is corrupt. */
|
|
|
|
c_buf[64] ^= 33;
|
|
|
|
tt_int_op(-1, ==,
|
|
|
|
onion_skin_TAP_server_handshake(c_buf, pk, NULL,
|
|
|
|
s_buf, s_keys, 40));
|
|
|
|
c_buf[64] ^= 33;
|
|
|
|
|
|
|
|
/* (Let the server procede) */
|
|
|
|
tt_int_op(0, ==,
|
|
|
|
onion_skin_TAP_server_handshake(c_buf, pk, NULL,
|
|
|
|
s_buf, s_keys, 40));
|
|
|
|
|
|
|
|
/* Client: Case 1: The server sent back junk. */
|
|
|
|
s_buf[64] ^= 33;
|
|
|
|
tt_int_op(-1, ==,
|
|
|
|
onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40));
|
|
|
|
s_buf[64] ^= 33;
|
|
|
|
|
|
|
|
/* Let the client finish; make sure it can. */
|
|
|
|
tt_int_op(0, ==,
|
|
|
|
onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40));
|
|
|
|
test_memeq(s_keys, c_keys, 40);
|
|
|
|
|
|
|
|
/* Client: Case 2: The server sent back a degenerate DH. */
|
|
|
|
memset(s_buf, 0, sizeof(s_buf));
|
|
|
|
tt_int_op(-1, ==,
|
|
|
|
onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40));
|
2008-09-09 22:43:31 +02:00
|
|
|
|
|
|
|
done:
|
2013-03-01 20:06:09 +01:00
|
|
|
crypto_dh_free(c_dh);
|
|
|
|
crypto_pk_free(pk);
|
|
|
|
crypto_pk_free(pk2);
|
2003-05-05 06:27:00 +02:00
|
|
|
}
|
|
|
|
|
2012-12-04 03:24:21 +01:00
|
|
|
#ifdef CURVE25519_ENABLED
|
|
|
|
static void
|
|
|
|
test_ntor_handshake(void *arg)
|
|
|
|
{
|
|
|
|
/* client-side */
|
|
|
|
ntor_handshake_state_t *c_state = NULL;
|
|
|
|
uint8_t c_buf[NTOR_ONIONSKIN_LEN];
|
|
|
|
uint8_t c_keys[400];
|
|
|
|
|
|
|
|
/* server-side */
|
|
|
|
di_digest256_map_t *s_keymap=NULL;
|
|
|
|
curve25519_keypair_t s_keypair;
|
|
|
|
uint8_t s_buf[NTOR_REPLY_LEN];
|
|
|
|
uint8_t s_keys[400];
|
|
|
|
|
|
|
|
/* shared */
|
|
|
|
const curve25519_public_key_t *server_pubkey;
|
|
|
|
uint8_t node_id[20] = "abcdefghijklmnopqrst";
|
|
|
|
|
|
|
|
(void) arg;
|
|
|
|
|
|
|
|
/* Make the server some keys */
|
|
|
|
curve25519_secret_key_generate(&s_keypair.seckey, 0);
|
|
|
|
curve25519_public_key_generate(&s_keypair.pubkey, &s_keypair.seckey);
|
|
|
|
dimap_add_entry(&s_keymap, s_keypair.pubkey.public_key, &s_keypair);
|
|
|
|
server_pubkey = &s_keypair.pubkey;
|
|
|
|
|
|
|
|
/* client handshake 1. */
|
|
|
|
memset(c_buf, 0, NTOR_ONIONSKIN_LEN);
|
|
|
|
tt_int_op(0, ==, onion_skin_ntor_create(node_id, server_pubkey,
|
|
|
|
&c_state, c_buf));
|
|
|
|
|
|
|
|
/* server handshake */
|
|
|
|
memset(s_buf, 0, NTOR_REPLY_LEN);
|
|
|
|
memset(s_keys, 0, 40);
|
2012-12-07 19:40:21 +01:00
|
|
|
tt_int_op(0, ==, onion_skin_ntor_server_handshake(c_buf, s_keymap, NULL,
|
|
|
|
node_id,
|
2012-12-04 03:24:21 +01:00
|
|
|
s_buf, s_keys, 400));
|
|
|
|
|
|
|
|
/* client handshake 2 */
|
|
|
|
memset(c_keys, 0, 40);
|
|
|
|
tt_int_op(0, ==, onion_skin_ntor_client_handshake(c_state, s_buf,
|
|
|
|
c_keys, 400));
|
|
|
|
|
|
|
|
test_memeq(c_keys, s_keys, 400);
|
|
|
|
memset(s_buf, 0, 40);
|
|
|
|
test_memneq(c_keys, s_buf, 40);
|
|
|
|
|
|
|
|
done:
|
|
|
|
ntor_handshake_state_free(c_state);
|
|
|
|
dimap_free(s_keymap, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-09-01 10:40:05 +02:00
|
|
|
/** Run unit tests for the onion queues. */
|
|
|
|
static void
|
|
|
|
test_onion_queues(void)
|
|
|
|
{
|
|
|
|
uint8_t buf1[TAP_ONIONSKIN_CHALLENGE_LEN] = {0};
|
|
|
|
uint8_t buf2[NTOR_ONIONSKIN_LEN] = {0};
|
|
|
|
|
|
|
|
or_circuit_t *circ1 = or_circuit_new(0, NULL);
|
|
|
|
or_circuit_t *circ2 = or_circuit_new(0, NULL);
|
|
|
|
|
2014-04-26 06:11:17 +02:00
|
|
|
create_cell_t *onionskin = NULL, *create2_ptr;
|
2013-09-01 10:40:05 +02:00
|
|
|
create_cell_t *create1 = tor_malloc_zero(sizeof(create_cell_t));
|
|
|
|
create_cell_t *create2 = tor_malloc_zero(sizeof(create_cell_t));
|
2014-04-26 06:11:17 +02:00
|
|
|
create2_ptr = create2; /* remember, but do not free */
|
2013-09-01 10:40:05 +02:00
|
|
|
|
|
|
|
create_cell_init(create1, CELL_CREATE, ONION_HANDSHAKE_TYPE_TAP,
|
|
|
|
TAP_ONIONSKIN_CHALLENGE_LEN, buf1);
|
|
|
|
create_cell_init(create2, CELL_CREATE, ONION_HANDSHAKE_TYPE_NTOR,
|
|
|
|
NTOR_ONIONSKIN_LEN, buf2);
|
|
|
|
|
|
|
|
test_eq(0, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP));
|
|
|
|
test_eq(0, onion_pending_add(circ1, create1));
|
2013-11-22 18:27:41 +01:00
|
|
|
create1 = NULL;
|
2013-09-01 10:40:05 +02:00
|
|
|
test_eq(1, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP));
|
|
|
|
|
|
|
|
test_eq(0, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR));
|
|
|
|
test_eq(0, onion_pending_add(circ2, create2));
|
2013-11-22 18:27:41 +01:00
|
|
|
create2 = NULL;
|
2013-09-01 10:40:05 +02:00
|
|
|
test_eq(1, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR));
|
|
|
|
|
|
|
|
test_eq_ptr(circ2, onion_next_task(&onionskin));
|
|
|
|
test_eq(1, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP));
|
|
|
|
test_eq(0, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR));
|
2014-04-26 06:11:17 +02:00
|
|
|
tt_ptr_op(onionskin, ==, create2_ptr);
|
2013-09-01 10:40:05 +02:00
|
|
|
|
|
|
|
clear_pending_onions();
|
|
|
|
test_eq(0, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP));
|
|
|
|
test_eq(0, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR));
|
|
|
|
|
|
|
|
done:
|
2013-11-22 18:27:41 +01:00
|
|
|
circuit_free(TO_CIRCUIT(circ1));
|
|
|
|
circuit_free(TO_CIRCUIT(circ2));
|
|
|
|
tor_free(create1);
|
|
|
|
tor_free(create2);
|
2014-04-26 06:11:17 +02:00
|
|
|
tor_free(onionskin);
|
2013-09-01 10:40:05 +02:00
|
|
|
}
|
|
|
|
|
2009-08-28 08:28:20 +02:00
|
|
|
static void
|
|
|
|
test_circuit_timeout(void)
|
|
|
|
{
|
|
|
|
/* Plan:
|
|
|
|
* 1. Generate 1000 samples
|
|
|
|
* 2. Estimate parameters
|
|
|
|
* 3. If difference, repeat
|
|
|
|
* 4. Save state
|
|
|
|
* 5. load state
|
|
|
|
* 6. Estimate parameters
|
|
|
|
* 7. compare differences
|
|
|
|
*/
|
|
|
|
circuit_build_times_t initial;
|
|
|
|
circuit_build_times_t estimate;
|
|
|
|
circuit_build_times_t final;
|
2009-09-18 11:01:39 +02:00
|
|
|
double timeout1, timeout2;
|
2014-04-26 06:10:04 +02:00
|
|
|
or_state_t *state=NULL;
|
2009-09-18 11:01:39 +02:00
|
|
|
int i, runs;
|
2010-07-06 17:49:50 +02:00
|
|
|
double close_ms;
|
2009-09-02 05:27:43 +02:00
|
|
|
circuit_build_times_init(&initial);
|
|
|
|
circuit_build_times_init(&estimate);
|
|
|
|
circuit_build_times_init(&final);
|
|
|
|
|
2014-04-26 06:10:04 +02:00
|
|
|
state = or_state_new();
|
2009-08-28 08:28:20 +02:00
|
|
|
|
2009-09-02 05:27:43 +02:00
|
|
|
circuitbuild_running_unit_tests();
|
2009-09-17 00:20:25 +02:00
|
|
|
#define timeout0 (build_time_t)(30*1000.0)
|
2010-07-06 17:49:50 +02:00
|
|
|
initial.Xm = 3000;
|
2010-01-22 01:10:02 +01:00
|
|
|
circuit_build_times_initial_alpha(&initial,
|
|
|
|
CBT_DEFAULT_QUANTILE_CUTOFF/100.0,
|
2009-08-28 08:28:20 +02:00
|
|
|
timeout0);
|
2010-07-06 17:49:50 +02:00
|
|
|
close_ms = MAX(circuit_build_times_calculate_timeout(&initial,
|
|
|
|
CBT_DEFAULT_CLOSE_QUANTILE/100.0),
|
|
|
|
CBT_DEFAULT_TIMEOUT_INITIAL_VALUE);
|
2009-08-28 08:28:20 +02:00
|
|
|
do {
|
2010-01-22 01:10:02 +01:00
|
|
|
for (i=0; i < CBT_DEFAULT_MIN_CIRCUITS_TO_OBSERVE; i++) {
|
2010-07-06 17:49:50 +02:00
|
|
|
build_time_t sample = circuit_build_times_generate_sample(&initial,0,1);
|
|
|
|
|
|
|
|
if (sample > close_ms) {
|
|
|
|
circuit_build_times_add_time(&estimate, CBT_BUILD_ABANDONED);
|
|
|
|
} else {
|
|
|
|
circuit_build_times_add_time(&estimate, sample);
|
2009-08-28 08:28:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
circuit_build_times_update_alpha(&estimate);
|
|
|
|
timeout1 = circuit_build_times_calculate_timeout(&estimate,
|
2010-01-22 01:10:02 +01:00
|
|
|
CBT_DEFAULT_QUANTILE_CUTOFF/100.0);
|
2009-09-02 05:27:43 +02:00
|
|
|
circuit_build_times_set_timeout(&estimate);
|
2011-08-31 02:42:51 +02:00
|
|
|
log_notice(LD_CIRC, "Timeout1 is %f, Xm is %d", timeout1, estimate.Xm);
|
2010-07-06 17:49:50 +02:00
|
|
|
/* 2% error */
|
2009-08-28 08:28:20 +02:00
|
|
|
} while (fabs(circuit_build_times_cdf(&initial, timeout0) -
|
2010-07-06 17:49:50 +02:00
|
|
|
circuit_build_times_cdf(&initial, timeout1)) > 0.02);
|
2009-08-28 08:28:20 +02:00
|
|
|
|
2010-06-08 04:06:06 +02:00
|
|
|
test_assert(estimate.total_build_times <= CBT_NCIRCUITS_TO_OBSERVE);
|
2009-08-28 08:28:20 +02:00
|
|
|
|
2014-04-26 06:10:04 +02:00
|
|
|
circuit_build_times_update_state(&estimate, state);
|
|
|
|
circuit_build_times_free_timeouts(&final);
|
|
|
|
test_assert(circuit_build_times_parse_state(&final, state) == 0);
|
2009-08-28 08:28:20 +02:00
|
|
|
|
|
|
|
circuit_build_times_update_alpha(&final);
|
|
|
|
timeout2 = circuit_build_times_calculate_timeout(&final,
|
2010-01-22 01:10:02 +01:00
|
|
|
CBT_DEFAULT_QUANTILE_CUTOFF/100.0);
|
2009-09-02 05:27:43 +02:00
|
|
|
|
|
|
|
circuit_build_times_set_timeout(&final);
|
2011-08-31 02:42:51 +02:00
|
|
|
log_notice(LD_CIRC, "Timeout2 is %f, Xm is %d", timeout2, final.Xm);
|
2009-08-28 08:28:20 +02:00
|
|
|
|
2010-06-08 04:06:06 +02:00
|
|
|
/* 5% here because some accuracy is lost due to histogram conversion */
|
2009-08-28 08:28:20 +02:00
|
|
|
test_assert(fabs(circuit_build_times_cdf(&initial, timeout0) -
|
2009-09-07 05:14:13 +02:00
|
|
|
circuit_build_times_cdf(&initial, timeout2)) < 0.05);
|
2009-08-28 08:28:20 +02:00
|
|
|
|
2009-09-18 11:01:39 +02:00
|
|
|
for (runs = 0; runs < 50; runs++) {
|
|
|
|
int build_times_idx = 0;
|
|
|
|
int total_build_times = 0;
|
|
|
|
|
2010-06-15 10:13:49 +02:00
|
|
|
final.close_ms = final.timeout_ms = CBT_DEFAULT_TIMEOUT_INITIAL_VALUE;
|
|
|
|
estimate.close_ms = estimate.timeout_ms
|
|
|
|
= CBT_DEFAULT_TIMEOUT_INITIAL_VALUE;
|
2009-09-18 11:01:39 +02:00
|
|
|
|
2010-01-22 01:10:02 +01:00
|
|
|
for (i = 0; i < CBT_DEFAULT_RECENT_CIRCUITS*2; i++) {
|
2009-09-18 11:01:39 +02:00
|
|
|
circuit_build_times_network_circ_success(&estimate);
|
|
|
|
circuit_build_times_add_time(&estimate,
|
|
|
|
circuit_build_times_generate_sample(&estimate, 0,
|
2010-01-22 01:10:02 +01:00
|
|
|
CBT_DEFAULT_QUANTILE_CUTOFF/100.0));
|
2010-06-15 10:13:49 +02:00
|
|
|
|
2009-09-18 11:01:39 +02:00
|
|
|
circuit_build_times_network_circ_success(&estimate);
|
|
|
|
circuit_build_times_add_time(&final,
|
|
|
|
circuit_build_times_generate_sample(&final, 0,
|
2010-01-22 01:10:02 +01:00
|
|
|
CBT_DEFAULT_QUANTILE_CUTOFF/100.0));
|
2009-09-18 11:01:39 +02:00
|
|
|
}
|
2009-09-02 05:27:43 +02:00
|
|
|
|
2009-09-18 11:01:39 +02:00
|
|
|
test_assert(!circuit_build_times_network_check_changed(&estimate));
|
|
|
|
test_assert(!circuit_build_times_network_check_changed(&final));
|
|
|
|
|
|
|
|
/* Reset liveness to be non-live */
|
|
|
|
final.liveness.network_last_live = 0;
|
|
|
|
estimate.liveness.network_last_live = 0;
|
|
|
|
|
|
|
|
build_times_idx = estimate.build_times_idx;
|
|
|
|
total_build_times = estimate.total_build_times;
|
|
|
|
|
2010-09-29 17:55:11 +02:00
|
|
|
test_assert(circuit_build_times_network_check_live(&estimate));
|
|
|
|
test_assert(circuit_build_times_network_check_live(&final));
|
2009-09-01 03:10:27 +02:00
|
|
|
|
2010-09-29 17:55:11 +02:00
|
|
|
circuit_build_times_count_close(&estimate, 0,
|
|
|
|
(time_t)(approx_time()-estimate.close_ms/1000.0-1));
|
|
|
|
circuit_build_times_count_close(&final, 0,
|
|
|
|
(time_t)(approx_time()-final.close_ms/1000.0-1));
|
2009-09-01 03:10:27 +02:00
|
|
|
|
2009-09-18 11:01:39 +02:00
|
|
|
test_assert(!circuit_build_times_network_check_live(&estimate));
|
|
|
|
test_assert(!circuit_build_times_network_check_live(&final));
|
|
|
|
|
|
|
|
log_info(LD_CIRC, "idx: %d %d, tot: %d %d",
|
|
|
|
build_times_idx, estimate.build_times_idx,
|
|
|
|
total_build_times, estimate.total_build_times);
|
|
|
|
|
|
|
|
/* Check rollback index. Should match top of loop. */
|
|
|
|
test_assert(build_times_idx == estimate.build_times_idx);
|
2010-06-08 04:06:06 +02:00
|
|
|
// This can fail if estimate.total_build_times == 1000, because
|
|
|
|
// in that case, rewind actually causes us to lose timeouts
|
|
|
|
if (total_build_times != CBT_NCIRCUITS_TO_OBSERVE)
|
|
|
|
test_assert(total_build_times == estimate.total_build_times);
|
2009-09-18 11:01:39 +02:00
|
|
|
|
|
|
|
/* Now simulate that the network has become live and we need
|
|
|
|
* a change */
|
|
|
|
circuit_build_times_network_is_live(&estimate);
|
|
|
|
circuit_build_times_network_is_live(&final);
|
|
|
|
|
2010-01-22 01:10:02 +01:00
|
|
|
for (i = 0; i < CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT; i++) {
|
2010-06-15 10:13:49 +02:00
|
|
|
circuit_build_times_count_timeout(&estimate, 1);
|
2009-09-18 11:01:39 +02:00
|
|
|
|
2010-01-22 01:10:02 +01:00
|
|
|
if (i < CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT-1) {
|
2010-06-15 10:13:49 +02:00
|
|
|
circuit_build_times_count_timeout(&final, 1);
|
2009-09-18 11:01:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-21 01:50:44 +02:00
|
|
|
test_assert(estimate.liveness.after_firsthop_idx == 0);
|
|
|
|
test_assert(final.liveness.after_firsthop_idx ==
|
2010-01-22 01:10:02 +01:00
|
|
|
CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT-1);
|
2009-09-18 11:01:39 +02:00
|
|
|
|
|
|
|
test_assert(circuit_build_times_network_check_live(&estimate));
|
|
|
|
test_assert(circuit_build_times_network_check_live(&final));
|
|
|
|
|
2010-06-15 10:13:49 +02:00
|
|
|
circuit_build_times_count_timeout(&final, 1);
|
2009-09-18 11:01:39 +02:00
|
|
|
}
|
2009-09-01 03:10:27 +02:00
|
|
|
|
2010-08-16 00:29:27 +02:00
|
|
|
done:
|
2014-04-26 06:10:04 +02:00
|
|
|
circuit_build_times_free_timeouts(&initial);
|
|
|
|
circuit_build_times_free_timeouts(&estimate);
|
|
|
|
circuit_build_times_free_timeouts(&final);
|
|
|
|
or_state_free(state);
|
2009-09-15 04:15:57 +02:00
|
|
|
}
|
|
|
|
|
2009-05-02 23:31:58 +02:00
|
|
|
/** Test encoding and parsing of rendezvous service descriptors. */
|
2007-10-28 20:48:14 +01:00
|
|
|
static void
|
2009-05-02 23:31:58 +02:00
|
|
|
test_rend_fns(void)
|
2007-10-28 20:48:14 +01:00
|
|
|
{
|
2008-09-25 17:20:38 +02:00
|
|
|
rend_service_descriptor_t *generated = NULL, *parsed = NULL;
|
2007-10-28 20:48:14 +01:00
|
|
|
char service_id[DIGEST_LEN];
|
2007-11-29 16:25:04 +01:00
|
|
|
char service_id_base32[REND_SERVICE_ID_LEN_BASE32+1];
|
2007-10-28 20:48:14 +01:00
|
|
|
const char *next_desc;
|
2012-01-18 21:53:30 +01:00
|
|
|
smartlist_t *descs = smartlist_new();
|
2007-10-28 20:48:14 +01:00
|
|
|
char computed_desc_id[DIGEST_LEN];
|
|
|
|
char parsed_desc_id[DIGEST_LEN];
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_t *pk1 = NULL, *pk2 = NULL;
|
2007-10-28 20:48:14 +01:00
|
|
|
time_t now;
|
2008-09-25 17:20:38 +02:00
|
|
|
char *intro_points_encrypted = NULL;
|
2007-10-28 20:48:14 +01:00
|
|
|
size_t intro_points_size;
|
|
|
|
size_t encoded_size;
|
|
|
|
int i;
|
2009-05-02 23:31:58 +02:00
|
|
|
char address1[] = "fooaddress.onion";
|
|
|
|
char address2[] = "aaaaaaaaaaaaaaaa.onion";
|
|
|
|
char address3[] = "fooaddress.exit";
|
|
|
|
char address4[] = "www.torproject.org";
|
2012-07-06 15:31:47 +02:00
|
|
|
char address5[] = "foo.abcdefghijklmnop.onion";
|
|
|
|
char address6[] = "foo.bar.abcdefghijklmnop.onion";
|
|
|
|
char address7[] = ".abcdefghijklmnop.onion";
|
2009-05-02 23:31:58 +02:00
|
|
|
|
2012-05-11 23:00:41 +02:00
|
|
|
test_assert(BAD_HOSTNAME == parse_extended_hostname(address1));
|
|
|
|
test_assert(ONION_HOSTNAME == parse_extended_hostname(address2));
|
2012-07-06 15:31:47 +02:00
|
|
|
test_streq(address2, "aaaaaaaaaaaaaaaa");
|
2012-05-11 23:00:41 +02:00
|
|
|
test_assert(EXIT_HOSTNAME == parse_extended_hostname(address3));
|
|
|
|
test_assert(NORMAL_HOSTNAME == parse_extended_hostname(address4));
|
2012-07-06 15:31:47 +02:00
|
|
|
test_assert(ONION_HOSTNAME == parse_extended_hostname(address5));
|
|
|
|
test_streq(address5, "abcdefghijklmnop");
|
|
|
|
test_assert(ONION_HOSTNAME == parse_extended_hostname(address6));
|
|
|
|
test_streq(address6, "abcdefghijklmnop");
|
|
|
|
test_assert(BAD_HOSTNAME == parse_extended_hostname(address7));
|
2009-05-02 23:31:58 +02:00
|
|
|
|
2007-10-28 20:48:14 +01:00
|
|
|
pk1 = pk_generate(0);
|
|
|
|
pk2 = pk_generate(1);
|
|
|
|
generated = tor_malloc_zero(sizeof(rend_service_descriptor_t));
|
|
|
|
generated->pk = crypto_pk_dup_key(pk1);
|
|
|
|
crypto_pk_get_digest(generated->pk, service_id);
|
2007-11-29 16:25:04 +01:00
|
|
|
base32_encode(service_id_base32, REND_SERVICE_ID_LEN_BASE32+1,
|
|
|
|
service_id, REND_SERVICE_ID_LEN);
|
2007-10-28 20:48:14 +01:00
|
|
|
now = time(NULL);
|
|
|
|
generated->timestamp = now;
|
|
|
|
generated->version = 2;
|
|
|
|
generated->protocols = 42;
|
2012-01-18 21:53:30 +01:00
|
|
|
generated->intro_nodes = smartlist_new();
|
2008-09-10 02:11:53 +02:00
|
|
|
|
2007-12-21 10:28:22 +01:00
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
rend_intro_point_t *intro = tor_malloc_zero(sizeof(rend_intro_point_t));
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_t *okey = pk_generate(2 + i);
|
2007-12-21 10:28:22 +01:00
|
|
|
intro->extend_info = tor_malloc_zero(sizeof(extend_info_t));
|
2008-12-18 07:02:23 +01:00
|
|
|
intro->extend_info->onion_key = okey;
|
2007-12-21 10:28:22 +01:00
|
|
|
crypto_pk_get_digest(intro->extend_info->onion_key,
|
|
|
|
intro->extend_info->identity_digest);
|
2007-10-28 20:48:14 +01:00
|
|
|
//crypto_rand(info->identity_digest, DIGEST_LEN); /* Would this work? */
|
2007-12-21 10:28:22 +01:00
|
|
|
intro->extend_info->nickname[0] = '$';
|
|
|
|
base16_encode(intro->extend_info->nickname + 1,
|
|
|
|
sizeof(intro->extend_info->nickname) - 1,
|
|
|
|
intro->extend_info->identity_digest, DIGEST_LEN);
|
2008-08-05 22:08:19 +02:00
|
|
|
/* Does not cover all IP addresses. */
|
|
|
|
tor_addr_from_ipv4h(&intro->extend_info->addr, crypto_rand_int(65536));
|
2010-08-07 20:31:58 +02:00
|
|
|
intro->extend_info->port = 1 + crypto_rand_int(65535);
|
2007-12-21 11:44:10 +01:00
|
|
|
intro->intro_key = crypto_pk_dup_key(pk2);
|
2007-12-21 10:28:22 +01:00
|
|
|
smartlist_add(generated->intro_nodes, intro);
|
2007-10-28 20:48:14 +01:00
|
|
|
}
|
2008-08-19 17:41:28 +02:00
|
|
|
test_assert(rend_encode_v2_descriptors(descs, generated, now, 0,
|
|
|
|
REND_NO_AUTH, NULL, NULL) > 0);
|
2007-10-28 20:48:14 +01:00
|
|
|
test_assert(rend_compute_v2_desc_id(computed_desc_id, service_id_base32,
|
|
|
|
NULL, now, 0) == 0);
|
2007-12-15 21:28:09 +01:00
|
|
|
test_memeq(((rend_encoded_v2_service_descriptor_t *)
|
|
|
|
smartlist_get(descs, 0))->desc_id, computed_desc_id, DIGEST_LEN);
|
2007-10-28 20:48:14 +01:00
|
|
|
test_assert(rend_parse_v2_service_descriptor(&parsed, parsed_desc_id,
|
|
|
|
&intro_points_encrypted,
|
|
|
|
&intro_points_size,
|
|
|
|
&encoded_size,
|
|
|
|
&next_desc,
|
2007-12-15 21:28:09 +01:00
|
|
|
((rend_encoded_v2_service_descriptor_t *)
|
|
|
|
smartlist_get(descs, 0))->desc_str) == 0);
|
2007-10-28 20:48:14 +01:00
|
|
|
test_assert(parsed);
|
2007-12-15 21:28:09 +01:00
|
|
|
test_memeq(((rend_encoded_v2_service_descriptor_t *)
|
|
|
|
smartlist_get(descs, 0))->desc_id, parsed_desc_id, DIGEST_LEN);
|
2008-11-03 17:36:15 +01:00
|
|
|
test_eq(rend_parse_introduction_points(parsed, intro_points_encrypted,
|
|
|
|
intro_points_size), 3);
|
2007-10-28 20:48:14 +01:00
|
|
|
test_assert(!crypto_pk_cmp_keys(generated->pk, parsed->pk));
|
|
|
|
test_eq(parsed->timestamp, now);
|
|
|
|
test_eq(parsed->version, 2);
|
|
|
|
test_eq(parsed->protocols, 42);
|
2007-12-21 10:28:22 +01:00
|
|
|
test_eq(smartlist_len(parsed->intro_nodes), 3);
|
|
|
|
for (i = 0; i < smartlist_len(parsed->intro_nodes); i++) {
|
|
|
|
rend_intro_point_t *par_intro = smartlist_get(parsed->intro_nodes, i),
|
|
|
|
*gen_intro = smartlist_get(generated->intro_nodes, i);
|
|
|
|
extend_info_t *par_info = par_intro->extend_info;
|
|
|
|
extend_info_t *gen_info = gen_intro->extend_info;
|
2007-10-28 20:48:14 +01:00
|
|
|
test_assert(!crypto_pk_cmp_keys(gen_info->onion_key, par_info->onion_key));
|
|
|
|
test_memeq(gen_info->identity_digest, par_info->identity_digest,
|
|
|
|
DIGEST_LEN);
|
|
|
|
test_streq(gen_info->nickname, par_info->nickname);
|
2008-08-05 22:08:19 +02:00
|
|
|
test_assert(tor_addr_eq(&gen_info->addr, &par_info->addr));
|
2007-10-28 20:48:14 +01:00
|
|
|
test_eq(gen_info->port, par_info->port);
|
|
|
|
}
|
2008-09-25 17:20:38 +02:00
|
|
|
|
2009-01-13 15:43:51 +01:00
|
|
|
rend_service_descriptor_free(parsed);
|
|
|
|
rend_service_descriptor_free(generated);
|
|
|
|
parsed = generated = NULL;
|
|
|
|
|
2008-09-09 22:43:31 +02:00
|
|
|
done:
|
2008-09-25 17:20:38 +02:00
|
|
|
if (descs) {
|
|
|
|
for (i = 0; i < smartlist_len(descs); i++)
|
|
|
|
rend_encoded_v2_service_descriptor_free(smartlist_get(descs, i));
|
|
|
|
smartlist_free(descs);
|
|
|
|
}
|
|
|
|
if (parsed)
|
|
|
|
rend_service_descriptor_free(parsed);
|
|
|
|
if (generated)
|
|
|
|
rend_service_descriptor_free(generated);
|
|
|
|
if (pk1)
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_free(pk1);
|
2008-12-18 07:02:23 +01:00
|
|
|
if (pk2)
|
2012-01-18 21:53:30 +01:00
|
|
|
crypto_pk_free(pk2);
|
2008-09-25 17:20:38 +02:00
|
|
|
tor_free(intro_points_encrypted);
|
2007-10-28 20:48:14 +01:00
|
|
|
}
|
|
|
|
|
2013-02-25 20:28:10 +01:00
|
|
|
/* Record odd numbered fake-IPs using ipv6, even numbered fake-IPs
|
|
|
|
* using ipv4. Since our fake geoip database is the same between
|
|
|
|
* ipv4 and ipv6, we should get the same result no matter which
|
|
|
|
* address family we pick for each IP. */
|
|
|
|
#define SET_TEST_ADDRESS(i) do { \
|
|
|
|
if ((i) & 1) { \
|
|
|
|
SET_TEST_IPV6(i); \
|
|
|
|
tor_addr_from_in6(&addr, &in6); \
|
|
|
|
} else { \
|
|
|
|
tor_addr_from_ipv4h(&addr, (uint32_t) i); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* Make sure that country ID actually works. */
|
|
|
|
#define SET_TEST_IPV6(i) \
|
|
|
|
do { \
|
|
|
|
set_uint32(in6.s6_addr + 12, htonl((uint32_t) (i))); \
|
|
|
|
} while (0)
|
|
|
|
#define CHECK_COUNTRY(country, val) do { \
|
|
|
|
/* test ipv4 country lookup */ \
|
|
|
|
test_streq(country, \
|
|
|
|
geoip_get_country_name(geoip_get_country_by_ipv4(val))); \
|
|
|
|
/* test ipv6 country lookup */ \
|
|
|
|
SET_TEST_IPV6(val); \
|
|
|
|
test_streq(country, \
|
|
|
|
geoip_get_country_name(geoip_get_country_by_ipv6(&in6))); \
|
|
|
|
} while (0)
|
|
|
|
|
2008-12-22 18:53:04 +01:00
|
|
|
/** Run unit tests for GeoIP code. */
|
2007-12-18 22:27:08 +01:00
|
|
|
static void
|
|
|
|
test_geoip(void)
|
|
|
|
{
|
|
|
|
int i, j;
|
2011-08-04 12:28:12 +02:00
|
|
|
time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */
|
2012-10-19 23:23:04 +02:00
|
|
|
char *s = NULL, *v = NULL;
|
2011-08-04 14:45:24 +02:00
|
|
|
const char *bridge_stats_1 =
|
|
|
|
"bridge-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
2012-02-24 22:21:48 +01:00
|
|
|
"bridge-ips zz=24,xy=8\n"
|
2013-02-25 20:29:28 +01:00
|
|
|
"bridge-ip-versions v4=16,v6=16\n"
|
|
|
|
"bridge-ip-transports <OR>=24\n",
|
2011-08-04 14:45:24 +02:00
|
|
|
*dirreq_stats_1 =
|
2011-08-04 12:28:12 +02:00
|
|
|
"dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"dirreq-v3-ips ab=8\n"
|
|
|
|
"dirreq-v3-reqs ab=8\n"
|
|
|
|
"dirreq-v3-resp ok=0,not-enough-sigs=0,unavailable=0,not-found=0,"
|
|
|
|
"not-modified=0,busy=0\n"
|
|
|
|
"dirreq-v3-direct-dl complete=0,timeout=0,running=0\n"
|
2013-01-29 18:01:41 +01:00
|
|
|
"dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n",
|
2011-08-04 12:28:12 +02:00
|
|
|
*dirreq_stats_2 =
|
|
|
|
"dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"dirreq-v3-ips \n"
|
|
|
|
"dirreq-v3-reqs \n"
|
|
|
|
"dirreq-v3-resp ok=0,not-enough-sigs=0,unavailable=0,not-found=0,"
|
|
|
|
"not-modified=0,busy=0\n"
|
|
|
|
"dirreq-v3-direct-dl complete=0,timeout=0,running=0\n"
|
2013-01-29 18:01:41 +01:00
|
|
|
"dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n",
|
2011-08-04 12:28:12 +02:00
|
|
|
*dirreq_stats_3 =
|
|
|
|
"dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"dirreq-v3-ips \n"
|
|
|
|
"dirreq-v3-reqs \n"
|
|
|
|
"dirreq-v3-resp ok=8,not-enough-sigs=0,unavailable=0,not-found=0,"
|
|
|
|
"not-modified=0,busy=0\n"
|
|
|
|
"dirreq-v3-direct-dl complete=0,timeout=0,running=0\n"
|
2013-01-29 18:01:41 +01:00
|
|
|
"dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n",
|
2011-08-04 12:28:12 +02:00
|
|
|
*dirreq_stats_4 =
|
|
|
|
"dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"dirreq-v3-ips \n"
|
|
|
|
"dirreq-v3-reqs \n"
|
|
|
|
"dirreq-v3-resp ok=8,not-enough-sigs=0,unavailable=0,not-found=0,"
|
|
|
|
"not-modified=0,busy=0\n"
|
|
|
|
"dirreq-v3-direct-dl complete=0,timeout=0,running=0\n"
|
2013-01-29 18:01:41 +01:00
|
|
|
"dirreq-v3-tunneled-dl complete=0,timeout=0,running=4\n",
|
2011-08-04 14:14:01 +02:00
|
|
|
*entry_stats_1 =
|
|
|
|
"entry-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"entry-ips ab=8\n",
|
|
|
|
*entry_stats_2 =
|
|
|
|
"entry-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"entry-ips \n";
|
2012-02-09 11:12:30 +01:00
|
|
|
tor_addr_t addr;
|
2012-03-01 02:04:45 +01:00
|
|
|
struct in6_addr in6;
|
2007-12-18 22:27:08 +01:00
|
|
|
|
|
|
|
/* Populate the DB a bit. Add these in order, since we can't do the final
|
|
|
|
* 'sort' step. These aren't very good IP addresses, but they're perfectly
|
|
|
|
* fine uint32_t values. */
|
2012-10-31 13:58:55 +01:00
|
|
|
test_eq(0, geoip_parse_entry("10,50,AB", AF_INET));
|
|
|
|
test_eq(0, geoip_parse_entry("52,90,XY", AF_INET));
|
|
|
|
test_eq(0, geoip_parse_entry("95,100,AB", AF_INET));
|
|
|
|
test_eq(0, geoip_parse_entry("\"105\",\"140\",\"ZZ\"", AF_INET));
|
|
|
|
test_eq(0, geoip_parse_entry("\"150\",\"190\",\"XY\"", AF_INET));
|
|
|
|
test_eq(0, geoip_parse_entry("\"200\",\"250\",\"AB\"", AF_INET));
|
2007-12-18 22:27:08 +01:00
|
|
|
|
2012-03-01 02:04:45 +01:00
|
|
|
/* Populate the IPv6 DB equivalently with fake IPs in the same range */
|
2012-10-31 13:58:55 +01:00
|
|
|
test_eq(0, geoip_parse_entry("::a,::32,AB", AF_INET6));
|
|
|
|
test_eq(0, geoip_parse_entry("::34,::5a,XY", AF_INET6));
|
|
|
|
test_eq(0, geoip_parse_entry("::5f,::64,AB", AF_INET6));
|
|
|
|
test_eq(0, geoip_parse_entry("::69,::8c,ZZ", AF_INET6));
|
|
|
|
test_eq(0, geoip_parse_entry("::96,::be,XY", AF_INET6));
|
|
|
|
test_eq(0, geoip_parse_entry("::c8,::fa,AB", AF_INET6));
|
2007-12-18 22:27:08 +01:00
|
|
|
|
2010-07-31 21:20:28 +02:00
|
|
|
/* We should have 4 countries: ??, ab, xy, zz. */
|
|
|
|
test_eq(4, geoip_get_n_countries());
|
2012-03-01 02:04:45 +01:00
|
|
|
memset(&in6, 0, sizeof(in6));
|
|
|
|
|
|
|
|
CHECK_COUNTRY("??", 3);
|
|
|
|
CHECK_COUNTRY("ab", 32);
|
|
|
|
CHECK_COUNTRY("??", 5);
|
|
|
|
CHECK_COUNTRY("??", 51);
|
|
|
|
CHECK_COUNTRY("xy", 150);
|
|
|
|
CHECK_COUNTRY("xy", 190);
|
|
|
|
CHECK_COUNTRY("??", 2000);
|
|
|
|
|
2012-03-01 01:42:59 +01:00
|
|
|
test_eq(0, geoip_get_country_by_ipv4(3));
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_IPV6(3);
|
|
|
|
test_eq(0, geoip_get_country_by_ipv6(&in6));
|
|
|
|
|
2011-06-14 19:01:38 +02:00
|
|
|
get_options_mutable()->BridgeRelay = 1;
|
|
|
|
get_options_mutable()->BridgeRecordUsageByCountry = 1;
|
2007-12-18 22:27:08 +01:00
|
|
|
/* Put 9 observations in AB... */
|
2012-02-09 11:12:30 +01:00
|
|
|
for (i=32; i < 40; ++i) {
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(i);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200);
|
2012-02-09 11:12:30 +01:00
|
|
|
}
|
2012-03-28 15:52:33 +02:00
|
|
|
SET_TEST_ADDRESS(225);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200);
|
2007-12-18 22:27:08 +01:00
|
|
|
/* and 3 observations in XY, several times. */
|
|
|
|
for (j=0; j < 10; ++j)
|
2012-02-09 11:12:30 +01:00
|
|
|
for (i=52; i < 55; ++i) {
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(i);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-3600);
|
2012-02-09 11:12:30 +01:00
|
|
|
}
|
2007-12-18 22:27:08 +01:00
|
|
|
/* and 17 observations in ZZ... */
|
2012-02-09 11:12:30 +01:00
|
|
|
for (i=110; i < 127; ++i) {
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(i);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
|
2012-02-09 11:12:30 +01:00
|
|
|
}
|
2012-10-19 23:23:04 +02:00
|
|
|
geoip_get_client_history(GEOIP_CLIENT_CONNECT, &s, &v);
|
2007-12-18 22:27:08 +01:00
|
|
|
test_assert(s);
|
2012-10-19 23:23:04 +02:00
|
|
|
test_assert(v);
|
2008-06-04 20:38:37 +02:00
|
|
|
test_streq("zz=24,ab=16,xy=8", s);
|
2012-10-19 23:23:04 +02:00
|
|
|
test_streq("v4=16,v6=16", v);
|
2007-12-18 22:27:08 +01:00
|
|
|
tor_free(s);
|
2012-10-19 23:23:04 +02:00
|
|
|
tor_free(v);
|
2007-12-18 22:27:08 +01:00
|
|
|
|
2009-05-27 23:47:59 +02:00
|
|
|
/* Now clear out all the AB observations. */
|
2007-12-18 22:27:08 +01:00
|
|
|
geoip_remove_old_clients(now-6000);
|
2012-10-19 23:23:04 +02:00
|
|
|
geoip_get_client_history(GEOIP_CLIENT_CONNECT, &s, &v);
|
2007-12-18 22:27:08 +01:00
|
|
|
test_assert(s);
|
2012-10-19 23:23:04 +02:00
|
|
|
test_assert(v);
|
2009-05-27 23:47:59 +02:00
|
|
|
test_streq("zz=24,xy=8", s);
|
2012-10-19 23:23:04 +02:00
|
|
|
test_streq("v4=16,v6=16", v);
|
|
|
|
tor_free(s);
|
|
|
|
tor_free(v);
|
2008-09-10 02:11:53 +02:00
|
|
|
|
2011-08-04 14:45:24 +02:00
|
|
|
/* Start testing bridge statistics by making sure that we don't output
|
|
|
|
* bridge stats without initializing them. */
|
|
|
|
s = geoip_format_bridge_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Initialize stats and generate the bridge-stats history string out of
|
|
|
|
* the connecting clients added above. */
|
|
|
|
geoip_bridge_stats_init(now);
|
|
|
|
s = geoip_format_bridge_stats(now + 86400);
|
2013-02-11 22:32:13 +01:00
|
|
|
test_assert(s);
|
2011-08-04 14:45:24 +02:00
|
|
|
test_streq(bridge_stats_1, s);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Stop collecting bridge stats and make sure we don't write a history
|
|
|
|
* string anymore. */
|
|
|
|
geoip_bridge_stats_term();
|
|
|
|
s = geoip_format_bridge_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
2011-08-04 12:28:12 +02:00
|
|
|
/* Stop being a bridge and start being a directory mirror that gathers
|
|
|
|
* directory request statistics. */
|
2011-08-04 14:14:01 +02:00
|
|
|
geoip_bridge_stats_term();
|
2011-08-04 12:28:12 +02:00
|
|
|
get_options_mutable()->BridgeRelay = 0;
|
|
|
|
get_options_mutable()->BridgeRecordUsageByCountry = 0;
|
|
|
|
get_options_mutable()->DirReqStatistics = 1;
|
|
|
|
|
|
|
|
/* Start testing dirreq statistics by making sure that we don't collect
|
|
|
|
* dirreq stats without initializing them. */
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(100);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now);
|
2011-08-04 12:28:12 +02:00
|
|
|
s = geoip_format_dirreq_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Initialize stats, note one connecting client, and generate the
|
|
|
|
* dirreq-stats history string. */
|
|
|
|
geoip_dirreq_stats_init(now);
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(100);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now);
|
2011-08-04 12:28:12 +02:00
|
|
|
s = geoip_format_dirreq_stats(now + 86400);
|
|
|
|
test_streq(dirreq_stats_1, s);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Stop collecting stats, add another connecting client, and ensure we
|
|
|
|
* don't generate a history string. */
|
|
|
|
geoip_dirreq_stats_term();
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(101);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now);
|
2011-08-04 12:28:12 +02:00
|
|
|
s = geoip_format_dirreq_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Re-start stats, add a connecting client, reset stats, and make sure
|
|
|
|
* that we get an all empty history string. */
|
|
|
|
geoip_dirreq_stats_init(now);
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(100);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now);
|
2011-08-04 12:28:12 +02:00
|
|
|
geoip_reset_dirreq_stats(now);
|
|
|
|
s = geoip_format_dirreq_stats(now + 86400);
|
|
|
|
test_streq(dirreq_stats_2, s);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Note a successful network status response and make sure that it
|
|
|
|
* appears in the history string. */
|
2013-01-17 10:45:19 +01:00
|
|
|
geoip_note_ns_response(GEOIP_SUCCESS);
|
2011-08-04 12:28:12 +02:00
|
|
|
s = geoip_format_dirreq_stats(now + 86400);
|
|
|
|
test_streq(dirreq_stats_3, s);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Start a tunneled directory request. */
|
2013-01-17 10:45:19 +01:00
|
|
|
geoip_start_dirreq((uint64_t) 1, 1024, DIRREQ_TUNNELED);
|
2011-08-04 12:28:12 +02:00
|
|
|
s = geoip_format_dirreq_stats(now + 86400);
|
|
|
|
test_streq(dirreq_stats_4, s);
|
|
|
|
|
2011-08-04 14:14:01 +02:00
|
|
|
/* Stop collecting directory request statistics and start gathering
|
|
|
|
* entry stats. */
|
|
|
|
geoip_dirreq_stats_term();
|
|
|
|
get_options_mutable()->DirReqStatistics = 0;
|
|
|
|
get_options_mutable()->EntryStatistics = 1;
|
|
|
|
|
|
|
|
/* Start testing entry statistics by making sure that we don't collect
|
|
|
|
* anything without initializing entry stats. */
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(100);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
|
2011-08-04 14:14:01 +02:00
|
|
|
s = geoip_format_entry_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Initialize stats, note one connecting client, and generate the
|
|
|
|
* entry-stats history string. */
|
|
|
|
geoip_entry_stats_init(now);
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(100);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
|
2011-08-04 14:14:01 +02:00
|
|
|
s = geoip_format_entry_stats(now + 86400);
|
|
|
|
test_streq(entry_stats_1, s);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Stop collecting stats, add another connecting client, and ensure we
|
|
|
|
* don't generate a history string. */
|
|
|
|
geoip_entry_stats_term();
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(101);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
|
2011-08-04 14:14:01 +02:00
|
|
|
s = geoip_format_entry_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Re-start stats, add a connecting client, reset stats, and make sure
|
|
|
|
* that we get an all empty history string. */
|
|
|
|
geoip_entry_stats_init(now);
|
2012-03-01 02:04:45 +01:00
|
|
|
SET_TEST_ADDRESS(100);
|
2013-02-11 20:51:41 +01:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now);
|
2011-08-04 14:14:01 +02:00
|
|
|
geoip_reset_entry_stats(now);
|
|
|
|
s = geoip_format_entry_stats(now + 86400);
|
|
|
|
test_streq(entry_stats_2, s);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Stop collecting entry statistics. */
|
|
|
|
geoip_entry_stats_term();
|
|
|
|
get_options_mutable()->EntryStatistics = 0;
|
|
|
|
|
2008-09-09 22:43:31 +02:00
|
|
|
done:
|
2008-09-10 02:11:53 +02:00
|
|
|
tor_free(s);
|
2013-02-11 20:57:10 +01:00
|
|
|
tor_free(v);
|
2007-12-18 22:27:08 +01:00
|
|
|
}
|
|
|
|
|
2013-02-25 20:28:10 +01:00
|
|
|
static void
|
|
|
|
test_geoip_with_pt(void)
|
|
|
|
{
|
|
|
|
time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */
|
|
|
|
char *s = NULL;
|
|
|
|
int i;
|
|
|
|
tor_addr_t addr;
|
|
|
|
struct in6_addr in6;
|
|
|
|
|
|
|
|
get_options_mutable()->BridgeRelay = 1;
|
|
|
|
get_options_mutable()->BridgeRecordUsageByCountry = 1;
|
|
|
|
|
|
|
|
/* No clients seen yet. */
|
|
|
|
s = geoip_get_transport_history();
|
|
|
|
tor_assert(!s);
|
|
|
|
|
|
|
|
/* 4 connections without a pluggable transport */
|
|
|
|
for (i=0; i < 4; ++i) {
|
|
|
|
SET_TEST_ADDRESS(i);
|
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200);
|
|
|
|
}
|
|
|
|
|
2013-06-29 13:46:45 +02:00
|
|
|
/* 9 connections with "alpha" */
|
2013-02-25 20:28:10 +01:00
|
|
|
for (i=4; i < 13; ++i) {
|
|
|
|
SET_TEST_ADDRESS(i);
|
2013-06-29 13:46:45 +02:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "alpha", now-7200);
|
2013-02-25 20:28:10 +01:00
|
|
|
}
|
|
|
|
|
2013-06-29 13:46:45 +02:00
|
|
|
/* one connection with "beta" */
|
2013-02-25 20:28:10 +01:00
|
|
|
SET_TEST_ADDRESS(13);
|
2013-06-29 13:46:45 +02:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "beta", now-7200);
|
2013-02-25 20:28:10 +01:00
|
|
|
|
2013-06-29 13:46:45 +02:00
|
|
|
/* 14 connections with "charlie" */
|
2013-02-25 20:28:10 +01:00
|
|
|
for (i=14; i < 28; ++i) {
|
|
|
|
SET_TEST_ADDRESS(i);
|
2013-06-29 13:46:45 +02:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "charlie", now-7200);
|
2013-02-25 20:28:10 +01:00
|
|
|
}
|
|
|
|
|
2013-06-29 13:46:45 +02:00
|
|
|
/* 131 connections with "ddr" */
|
2013-02-25 20:28:10 +01:00
|
|
|
for (i=28; i < 159; ++i) {
|
|
|
|
SET_TEST_ADDRESS(i);
|
2013-06-29 13:46:45 +02:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "ddr", now-7200);
|
2013-02-25 20:28:10 +01:00
|
|
|
}
|
|
|
|
|
2013-06-29 13:46:45 +02:00
|
|
|
/* 8 connections with "entropy" */
|
2013-02-25 20:28:10 +01:00
|
|
|
for (i=159; i < 167; ++i) {
|
|
|
|
SET_TEST_ADDRESS(i);
|
2013-06-29 13:46:45 +02:00
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "entropy", now-7200);
|
2013-02-25 20:28:10 +01:00
|
|
|
}
|
|
|
|
|
2013-06-27 17:27:44 +02:00
|
|
|
/* 2 connections from the same IP with two different transports. */
|
|
|
|
SET_TEST_ADDRESS(++i);
|
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "fire", now-7200);
|
|
|
|
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "google", now-7200);
|
|
|
|
|
2013-02-25 20:28:10 +01:00
|
|
|
/* Test the transport history string. */
|
|
|
|
s = geoip_get_transport_history();
|
|
|
|
tor_assert(s);
|
2013-08-15 18:10:10 +02:00
|
|
|
test_streq(s, "<OR>=8,alpha=16,beta=8,charlie=16,ddr=136,"
|
|
|
|
"entropy=8,fire=8,google=8");
|
2013-02-25 20:28:10 +01:00
|
|
|
|
|
|
|
/* Stop collecting entry statistics. */
|
|
|
|
geoip_entry_stats_term();
|
|
|
|
get_options_mutable()->EntryStatistics = 0;
|
|
|
|
|
|
|
|
done:
|
|
|
|
tor_free(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef SET_TEST_ADDRESS
|
|
|
|
#undef SET_TEST_IPV6
|
|
|
|
#undef CHECK_COUNTRY
|
|
|
|
|
2010-08-11 14:13:08 +02:00
|
|
|
/** Run unit tests for stats code. */
|
|
|
|
static void
|
|
|
|
test_stats(void)
|
|
|
|
{
|
|
|
|
time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */
|
|
|
|
char *s = NULL;
|
2010-11-23 21:09:12 +01:00
|
|
|
int i;
|
2010-08-11 14:13:08 +02:00
|
|
|
|
2010-08-18 15:44:02 +02:00
|
|
|
/* Start with testing exit port statistics; we shouldn't collect exit
|
|
|
|
* stats without initializing them. */
|
2010-08-11 14:13:08 +02:00
|
|
|
rep_hist_note_exit_stream_opened(80);
|
|
|
|
rep_hist_note_exit_bytes(80, 100, 10000);
|
2010-08-16 02:55:24 +02:00
|
|
|
s = rep_hist_format_exit_stats(now + 86400);
|
2010-08-11 14:13:08 +02:00
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Initialize stats, note some streams and bytes, and generate history
|
|
|
|
* string. */
|
|
|
|
rep_hist_exit_stats_init(now);
|
|
|
|
rep_hist_note_exit_stream_opened(80);
|
|
|
|
rep_hist_note_exit_bytes(80, 100, 10000);
|
|
|
|
rep_hist_note_exit_stream_opened(443);
|
|
|
|
rep_hist_note_exit_bytes(443, 100, 10000);
|
|
|
|
rep_hist_note_exit_bytes(443, 100, 10000);
|
2010-08-16 02:55:24 +02:00
|
|
|
s = rep_hist_format_exit_stats(now + 86400);
|
2010-08-11 14:13:08 +02:00
|
|
|
test_streq("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"exit-kibibytes-written 80=1,443=1,other=0\n"
|
|
|
|
"exit-kibibytes-read 80=10,443=20,other=0\n"
|
|
|
|
"exit-streams-opened 80=4,443=4,other=0\n", s);
|
|
|
|
tor_free(s);
|
|
|
|
|
2010-11-23 21:09:12 +01:00
|
|
|
/* Add a few bytes on 10 more ports and ensure that only the top 10
|
|
|
|
* ports are contained in the history string. */
|
|
|
|
for (i = 50; i < 60; i++) {
|
|
|
|
rep_hist_note_exit_bytes(i, i, i);
|
|
|
|
rep_hist_note_exit_stream_opened(i);
|
|
|
|
}
|
|
|
|
s = rep_hist_format_exit_stats(now + 86400);
|
|
|
|
test_streq("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"exit-kibibytes-written 52=1,53=1,54=1,55=1,56=1,57=1,58=1,"
|
|
|
|
"59=1,80=1,443=1,other=1\n"
|
|
|
|
"exit-kibibytes-read 52=1,53=1,54=1,55=1,56=1,57=1,58=1,"
|
|
|
|
"59=1,80=10,443=20,other=1\n"
|
|
|
|
"exit-streams-opened 52=4,53=4,54=4,55=4,56=4,57=4,58=4,"
|
|
|
|
"59=4,80=4,443=4,other=4\n", s);
|
|
|
|
tor_free(s);
|
|
|
|
|
2010-08-11 14:13:08 +02:00
|
|
|
/* Stop collecting stats, add some bytes, and ensure we don't generate
|
|
|
|
* a history string. */
|
|
|
|
rep_hist_exit_stats_term();
|
|
|
|
rep_hist_note_exit_bytes(80, 100, 10000);
|
2010-08-16 02:55:24 +02:00
|
|
|
s = rep_hist_format_exit_stats(now + 86400);
|
2010-08-11 14:13:08 +02:00
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Re-start stats, add some bytes, reset stats, and see what history we
|
2010-08-18 15:44:02 +02:00
|
|
|
* get when observing no streams or bytes at all. */
|
2010-08-11 14:13:08 +02:00
|
|
|
rep_hist_exit_stats_init(now);
|
|
|
|
rep_hist_note_exit_stream_opened(80);
|
|
|
|
rep_hist_note_exit_bytes(80, 100, 10000);
|
|
|
|
rep_hist_reset_exit_stats(now);
|
2010-08-16 02:55:24 +02:00
|
|
|
s = rep_hist_format_exit_stats(now + 86400);
|
2010-08-11 14:13:08 +02:00
|
|
|
test_streq("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"exit-kibibytes-written other=0\n"
|
|
|
|
"exit-kibibytes-read other=0\n"
|
|
|
|
"exit-streams-opened other=0\n", s);
|
2010-08-18 15:44:02 +02:00
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Continue with testing connection statistics; we shouldn't collect
|
|
|
|
* conn stats without initializing them. */
|
|
|
|
rep_hist_note_or_conn_bytes(1, 20, 400, now);
|
|
|
|
s = rep_hist_format_conn_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Initialize stats, note bytes, and generate history string. */
|
|
|
|
rep_hist_conn_stats_init(now);
|
|
|
|
rep_hist_note_or_conn_bytes(1, 30000, 400000, now);
|
|
|
|
rep_hist_note_or_conn_bytes(1, 30000, 400000, now + 5);
|
|
|
|
rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 10);
|
|
|
|
rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15);
|
|
|
|
s = rep_hist_format_conn_stats(now + 86400);
|
2010-08-24 08:11:17 +02:00
|
|
|
test_streq("conn-bi-direct 2010-08-12 13:27:30 (86400 s) 0,0,1,0\n", s);
|
2010-08-18 15:44:02 +02:00
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Stop collecting stats, add some bytes, and ensure we don't generate
|
|
|
|
* a history string. */
|
|
|
|
rep_hist_conn_stats_term();
|
|
|
|
rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15);
|
|
|
|
s = rep_hist_format_conn_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Re-start stats, add some bytes, reset stats, and see what history we
|
2010-08-24 08:11:17 +02:00
|
|
|
* get when observing no bytes at all. */
|
2010-08-18 15:44:02 +02:00
|
|
|
rep_hist_conn_stats_init(now);
|
|
|
|
rep_hist_note_or_conn_bytes(1, 30000, 400000, now);
|
|
|
|
rep_hist_note_or_conn_bytes(1, 30000, 400000, now + 5);
|
|
|
|
rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 10);
|
|
|
|
rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15);
|
|
|
|
rep_hist_reset_conn_stats(now);
|
|
|
|
s = rep_hist_format_conn_stats(now + 86400);
|
2010-08-24 08:11:17 +02:00
|
|
|
test_streq("conn-bi-direct 2010-08-12 13:27:30 (86400 s) 0,0,0,0\n", s);
|
2011-08-03 13:29:03 +02:00
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Continue with testing buffer statistics; we shouldn't collect buffer
|
|
|
|
* stats without initializing them. */
|
|
|
|
rep_hist_add_buffer_stats(2.0, 2.0, 20);
|
|
|
|
s = rep_hist_format_buffer_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Initialize stats, add statistics for a single circuit, and generate
|
|
|
|
* the history string. */
|
|
|
|
rep_hist_buffer_stats_init(now);
|
|
|
|
rep_hist_add_buffer_stats(2.0, 2.0, 20);
|
|
|
|
s = rep_hist_format_buffer_stats(now + 86400);
|
|
|
|
test_streq("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"cell-processed-cells 20,0,0,0,0,0,0,0,0,0\n"
|
|
|
|
"cell-queued-cells 2.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,"
|
|
|
|
"0.00,0.00\n"
|
|
|
|
"cell-time-in-queue 2,0,0,0,0,0,0,0,0,0\n"
|
|
|
|
"cell-circuits-per-decile 1\n", s);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Add nineteen more circuit statistics to the one that's already in the
|
|
|
|
* history to see that the math works correctly. */
|
|
|
|
for (i = 21; i < 30; i++)
|
|
|
|
rep_hist_add_buffer_stats(2.0, 2.0, i);
|
|
|
|
for (i = 20; i < 30; i++)
|
|
|
|
rep_hist_add_buffer_stats(3.5, 3.5, i);
|
|
|
|
s = rep_hist_format_buffer_stats(now + 86400);
|
|
|
|
test_streq("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"cell-processed-cells 29,28,27,26,25,24,23,22,21,20\n"
|
|
|
|
"cell-queued-cells 2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75,"
|
|
|
|
"2.75,2.75\n"
|
|
|
|
"cell-time-in-queue 3,3,3,3,3,3,3,3,3,3\n"
|
|
|
|
"cell-circuits-per-decile 2\n", s);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
/* Stop collecting stats, add statistics for one circuit, and ensure we
|
|
|
|
* don't generate a history string. */
|
|
|
|
rep_hist_buffer_stats_term();
|
|
|
|
rep_hist_add_buffer_stats(2.0, 2.0, 20);
|
|
|
|
s = rep_hist_format_buffer_stats(now + 86400);
|
|
|
|
test_assert(!s);
|
|
|
|
|
|
|
|
/* Re-start stats, add statistics for one circuit, reset stats, and make
|
|
|
|
* sure that the history has all zeros. */
|
|
|
|
rep_hist_buffer_stats_init(now);
|
|
|
|
rep_hist_add_buffer_stats(2.0, 2.0, 20);
|
|
|
|
rep_hist_reset_buffer_stats(now);
|
|
|
|
s = rep_hist_format_buffer_stats(now + 86400);
|
|
|
|
test_streq("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n"
|
|
|
|
"cell-processed-cells 0,0,0,0,0,0,0,0,0,0\n"
|
|
|
|
"cell-queued-cells 0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,"
|
|
|
|
"0.00,0.00\n"
|
|
|
|
"cell-time-in-queue 0,0,0,0,0,0,0,0,0,0\n"
|
|
|
|
"cell-circuits-per-decile 0\n", s);
|
2010-08-11 14:13:08 +02:00
|
|
|
|
|
|
|
done:
|
|
|
|
tor_free(s);
|
|
|
|
}
|
|
|
|
|
2009-09-21 20:23:13 +02:00
|
|
|
static void *
|
|
|
|
legacy_test_setup(const struct testcase_t *testcase)
|
|
|
|
{
|
|
|
|
return testcase->setup_data;
|
|
|
|
}
|
|
|
|
|
2009-09-22 19:06:47 +02:00
|
|
|
void
|
2009-09-21 20:23:13 +02:00
|
|
|
legacy_test_helper(void *data)
|
|
|
|
{
|
|
|
|
void (*fn)(void) = data;
|
|
|
|
fn();
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
legacy_test_cleanup(const struct testcase_t *testcase, void *ptr)
|
|
|
|
{
|
|
|
|
(void)ptr;
|
|
|
|
(void)testcase;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-09-22 19:06:47 +02:00
|
|
|
const struct testcase_setup_t legacy_setup = {
|
2009-09-21 20:23:13 +02:00
|
|
|
legacy_test_setup, legacy_test_cleanup
|
|
|
|
};
|
|
|
|
|
|
|
|
#define ENT(name) \
|
|
|
|
{ #name, legacy_test_helper, 0, &legacy_setup, test_ ## name }
|
2010-08-15 14:30:37 +02:00
|
|
|
#define FORK(name) \
|
|
|
|
{ #name, legacy_test_helper, TT_FORK, &legacy_setup, test_ ## name }
|
2009-09-21 20:23:13 +02:00
|
|
|
|
|
|
|
static struct testcase_t test_array[] = {
|
2007-08-18 21:39:14 +02:00
|
|
|
ENT(onion_handshake),
|
2013-03-01 20:06:09 +01:00
|
|
|
{ "bad_onion_handshake", test_bad_onion_handshake, 0, NULL, NULL },
|
2013-09-01 10:40:05 +02:00
|
|
|
ENT(onion_queues),
|
2012-12-04 03:24:21 +01:00
|
|
|
#ifdef CURVE25519_ENABLED
|
|
|
|
{ "ntor_handshake", test_ntor_handshake, 0, NULL, NULL },
|
|
|
|
#endif
|
2009-08-28 08:28:20 +02:00
|
|
|
ENT(circuit_timeout),
|
2007-08-18 21:39:14 +02:00
|
|
|
ENT(rend_fns),
|
2007-12-18 22:27:08 +01:00
|
|
|
ENT(geoip),
|
2013-02-25 20:28:10 +01:00
|
|
|
FORK(geoip_with_pt),
|
2010-08-15 14:30:37 +02:00
|
|
|
FORK(stats),
|
2008-12-22 20:00:09 +01:00
|
|
|
|
2009-09-21 20:23:13 +02:00
|
|
|
END_OF_TESTCASES
|
2007-08-18 21:39:14 +02:00
|
|
|
};
|
|
|
|
|
2009-09-22 19:29:55 +02:00
|
|
|
extern struct testcase_t addr_tests[];
|
2013-07-17 23:31:27 +02:00
|
|
|
extern struct testcase_t buffer_tests[];
|
2009-09-22 19:06:47 +02:00
|
|
|
extern struct testcase_t crypto_tests[];
|
2009-09-22 19:15:06 +02:00
|
|
|
extern struct testcase_t container_tests[];
|
2009-09-22 19:29:55 +02:00
|
|
|
extern struct testcase_t util_tests[];
|
2009-09-22 19:49:09 +02:00
|
|
|
extern struct testcase_t dir_tests[];
|
2010-10-07 21:28:54 +02:00
|
|
|
extern struct testcase_t microdesc_tests[];
|
2011-07-13 19:06:14 +02:00
|
|
|
extern struct testcase_t pt_tests[];
|
2010-08-02 21:09:37 +02:00
|
|
|
extern struct testcase_t config_tests[];
|
2012-07-22 10:50:33 +02:00
|
|
|
extern struct testcase_t introduce_tests[];
|
2012-07-05 23:01:42 +02:00
|
|
|
extern struct testcase_t replaycache_tests[];
|
2014-04-02 19:38:50 +02:00
|
|
|
extern struct testcase_t relaycell_tests[];
|
2012-10-22 17:28:37 +02:00
|
|
|
extern struct testcase_t cell_format_tests[];
|
2013-07-10 21:07:32 +02:00
|
|
|
extern struct testcase_t circuitlist_tests[];
|
2013-07-19 16:17:00 +02:00
|
|
|
extern struct testcase_t circuitmux_tests[];
|
2013-07-18 17:02:36 +02:00
|
|
|
extern struct testcase_t cell_queue_tests[];
|
2013-07-18 20:38:31 +02:00
|
|
|
extern struct testcase_t options_tests[];
|
2013-07-17 23:31:27 +02:00
|
|
|
extern struct testcase_t socks_tests[];
|
2013-07-18 21:51:29 +02:00
|
|
|
extern struct testcase_t extorport_tests[];
|
2013-05-31 15:51:25 +02:00
|
|
|
extern struct testcase_t controller_event_tests[];
|
2013-07-29 19:30:49 +02:00
|
|
|
extern struct testcase_t logging_tests[];
|
2013-12-18 07:40:05 +01:00
|
|
|
extern struct testcase_t hs_tests[];
|
2014-02-05 01:54:09 +01:00
|
|
|
extern struct testcase_t nodelist_tests[];
|
2014-02-26 19:42:21 +01:00
|
|
|
extern struct testcase_t routerkeys_tests[];
|
2014-01-13 20:15:33 +01:00
|
|
|
extern struct testcase_t oom_tests[];
|
2014-04-08 20:14:12 +02:00
|
|
|
extern struct testcase_t policy_tests[];
|
2014-04-15 14:20:34 +02:00
|
|
|
extern struct testcase_t status_tests[];
|
2009-09-22 19:06:47 +02:00
|
|
|
|
2009-09-21 20:23:13 +02:00
|
|
|
static struct testgroup_t testgroups[] = {
|
|
|
|
{ "", test_array },
|
2013-07-17 23:31:27 +02:00
|
|
|
{ "buffer/", buffer_tests },
|
2011-06-29 23:30:55 +02:00
|
|
|
{ "socks/", socks_tests },
|
2009-09-22 19:29:55 +02:00
|
|
|
{ "addr/", addr_tests },
|
2009-09-22 19:06:47 +02:00
|
|
|
{ "crypto/", crypto_tests },
|
2009-09-22 19:15:06 +02:00
|
|
|
{ "container/", container_tests },
|
2009-09-22 19:29:55 +02:00
|
|
|
{ "util/", util_tests },
|
2013-07-29 19:30:49 +02:00
|
|
|
{ "util/logging/", logging_tests },
|
2012-10-22 17:28:37 +02:00
|
|
|
{ "cellfmt/", cell_format_tests },
|
2013-07-18 17:02:36 +02:00
|
|
|
{ "cellqueue/", cell_queue_tests },
|
2009-09-22 19:49:09 +02:00
|
|
|
{ "dir/", dir_tests },
|
2010-10-07 21:28:54 +02:00
|
|
|
{ "dir/md/", microdesc_tests },
|
2011-07-13 19:06:14 +02:00
|
|
|
{ "pt/", pt_tests },
|
2010-08-02 21:09:37 +02:00
|
|
|
{ "config/", config_tests },
|
2012-07-05 23:01:42 +02:00
|
|
|
{ "replaycache/", replaycache_tests },
|
2014-04-02 19:38:50 +02:00
|
|
|
{ "relaycell/", relaycell_tests },
|
2012-07-22 10:50:33 +02:00
|
|
|
{ "introduce/", introduce_tests },
|
2013-07-10 21:07:32 +02:00
|
|
|
{ "circuitlist/", circuitlist_tests },
|
2013-07-19 16:17:00 +02:00
|
|
|
{ "circuitmux/", circuitmux_tests },
|
2013-07-18 20:38:31 +02:00
|
|
|
{ "options/", options_tests },
|
2013-07-18 21:51:29 +02:00
|
|
|
{ "extorport/", extorport_tests },
|
2013-05-31 15:51:25 +02:00
|
|
|
{ "control/", controller_event_tests },
|
2013-12-18 07:40:05 +01:00
|
|
|
{ "hs/", hs_tests },
|
2014-02-05 01:54:09 +01:00
|
|
|
{ "nodelist/", nodelist_tests },
|
2014-02-26 19:42:21 +01:00
|
|
|
{ "routerkeys/", routerkeys_tests },
|
2014-01-13 20:15:33 +01:00
|
|
|
{ "oom/", oom_tests },
|
2014-04-08 20:14:12 +02:00
|
|
|
{ "policy/" , policy_tests },
|
2014-04-15 14:20:34 +02:00
|
|
|
{ "status/" , status_tests },
|
2009-09-21 20:23:13 +02:00
|
|
|
END_OF_GROUPS
|
|
|
|
};
|
2007-08-18 21:39:14 +02:00
|
|
|
|
2008-12-22 18:53:04 +01:00
|
|
|
/** Main entry point for unit test code: parse the command line, and run
|
|
|
|
* some unit tests. */
|
2003-12-17 22:09:31 +01:00
|
|
|
int
|
2009-09-21 20:23:13 +02:00
|
|
|
main(int c, const char **v)
|
2005-06-11 20:52:12 +02:00
|
|
|
{
|
2008-09-25 19:37:00 +02:00
|
|
|
or_options_t *options;
|
2006-03-26 08:51:26 +02:00
|
|
|
char *errmsg = NULL;
|
2009-09-21 20:23:13 +02:00
|
|
|
int i, i_out;
|
2007-08-18 21:39:14 +02:00
|
|
|
int loglevel = LOG_ERR;
|
2014-01-13 22:34:28 +01:00
|
|
|
int accel_crypto = 0;
|
2007-08-18 21:39:14 +02:00
|
|
|
|
2008-09-25 19:37:00 +02:00
|
|
|
#ifdef USE_DMALLOC
|
|
|
|
{
|
2012-10-12 18:22:13 +02:00
|
|
|
int r = CRYPTO_set_mem_ex_functions(tor_malloc_, tor_realloc_, tor_free_);
|
2008-09-25 19:37:00 +02:00
|
|
|
tor_assert(r);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-12-18 18:19:04 +01:00
|
|
|
update_approx_time(time(NULL));
|
2008-09-25 19:37:00 +02:00
|
|
|
options = options_new();
|
2008-04-23 22:32:31 +02:00
|
|
|
tor_threads_init();
|
2008-01-02 06:38:53 +01:00
|
|
|
init_logging();
|
|
|
|
|
2009-09-21 20:23:13 +02:00
|
|
|
for (i_out = i = 1; i < c; ++i) {
|
|
|
|
if (!strcmp(v[i], "--warn")) {
|
2007-08-18 21:39:14 +02:00
|
|
|
loglevel = LOG_WARN;
|
2009-09-21 20:23:13 +02:00
|
|
|
} else if (!strcmp(v[i], "--notice")) {
|
2007-08-18 21:39:14 +02:00
|
|
|
loglevel = LOG_NOTICE;
|
2009-09-21 20:23:13 +02:00
|
|
|
} else if (!strcmp(v[i], "--info")) {
|
2007-08-18 21:39:14 +02:00
|
|
|
loglevel = LOG_INFO;
|
2009-09-21 20:23:13 +02:00
|
|
|
} else if (!strcmp(v[i], "--debug")) {
|
2007-08-18 21:39:14 +02:00
|
|
|
loglevel = LOG_DEBUG;
|
2014-01-13 22:34:28 +01:00
|
|
|
} else if (!strcmp(v[i], "--accel")) {
|
|
|
|
accel_crypto = 1;
|
2009-09-21 20:23:13 +02:00
|
|
|
} else {
|
|
|
|
v[i_out++] = v[i];
|
2007-08-18 21:39:14 +02:00
|
|
|
}
|
|
|
|
}
|
2009-09-21 20:23:13 +02:00
|
|
|
c = i_out;
|
2007-08-18 21:39:14 +02:00
|
|
|
|
2008-03-05 23:31:39 +01:00
|
|
|
{
|
2008-09-10 07:34:03 +02:00
|
|
|
log_severity_list_t s;
|
|
|
|
memset(&s, 0, sizeof(s));
|
|
|
|
set_log_severity_config(loglevel, LOG_ERR, &s);
|
2008-12-03 00:36:58 +01:00
|
|
|
add_stream_log(&s, "", fileno(stdout));
|
2008-03-05 23:31:39 +01:00
|
|
|
}
|
2007-08-18 21:39:14 +02:00
|
|
|
|
2005-08-27 01:22:27 +02:00
|
|
|
options->command = CMD_RUN_UNITTESTS;
|
2014-01-13 22:34:28 +01:00
|
|
|
if (crypto_global_init(accel_crypto, NULL, NULL)) {
|
2011-07-01 17:56:09 +02:00
|
|
|
printf("Can't initialize crypto subsystem; exiting.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2011-11-30 02:37:57 +01:00
|
|
|
crypto_set_tls_dh_prime(NULL);
|
2013-04-04 18:05:14 +02:00
|
|
|
crypto_seed_rng(1);
|
2007-01-11 02:41:07 +01:00
|
|
|
rep_hist_init();
|
2004-12-07 06:31:38 +01:00
|
|
|
network_init();
|
2005-08-22 02:34:42 +02:00
|
|
|
setup_directory();
|
2004-11-06 06:18:11 +01:00
|
|
|
options_init(options);
|
2005-08-22 02:34:42 +02:00
|
|
|
options->DataDirectory = tor_strdup(temp_dir);
|
2009-07-24 01:13:33 +02:00
|
|
|
options->EntryStatistics = 1;
|
2006-03-26 08:51:26 +02:00
|
|
|
if (set_options(options, &errmsg) < 0) {
|
|
|
|
printf("Failed to set initial options: %s\n", errmsg);
|
|
|
|
tor_free(errmsg);
|
|
|
|
return 1;
|
|
|
|
}
|
2003-04-17 01:21:44 +02:00
|
|
|
|
2004-08-11 21:20:24 +02:00
|
|
|
atexit(remove_directory);
|
2004-08-07 04:46:16 +02:00
|
|
|
|
2009-10-11 00:50:57 +02:00
|
|
|
have_failed = (tinytest_main(c, v, testgroups) != 0);
|
2004-03-01 07:45:32 +01:00
|
|
|
|
2008-09-25 19:37:00 +02:00
|
|
|
free_pregenerated_keys();
|
2008-09-09 22:43:31 +02:00
|
|
|
#ifdef USE_DMALLOC
|
|
|
|
tor_free_all(0);
|
|
|
|
dmalloc_log_unfreed();
|
|
|
|
#endif
|
2008-03-25 21:20:45 +01:00
|
|
|
|
2004-03-01 07:45:32 +01:00
|
|
|
if (have_failed)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
2003-04-07 04:12:02 +02:00
|
|
|
}
|
2005-06-09 21:03:31 +02:00
|
|
|
|