2014-01-01 12:18:37 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <check.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "../toxcore/onion.h"
|
2014-01-05 08:40:43 +08:00
|
|
|
#include "../toxcore/onion_announce.h"
|
2014-01-01 12:18:37 +08:00
|
|
|
|
2014-01-06 08:22:38 +08:00
|
|
|
#ifdef __WIN32__
|
|
|
|
#define c_sleep(x) Sleep(1*x)
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#define c_sleep(x) usleep(1000*x)
|
|
|
|
#endif
|
|
|
|
|
2014-01-01 12:18:37 +08:00
|
|
|
void do_onion(Onion *onion)
|
|
|
|
{
|
|
|
|
networking_poll(onion->net);
|
|
|
|
do_DHT(onion->dht);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int handled_test_1;
|
|
|
|
static int handle_test_1(void *object, IP_Port source, uint8_t *packet, uint32_t length)
|
|
|
|
{
|
|
|
|
Onion *onion = object;
|
|
|
|
|
|
|
|
if (memcmp(packet, "Install Gentoo", sizeof("Install Gentoo")) != 0)
|
|
|
|
return 1;
|
|
|
|
|
2014-01-05 08:40:43 +08:00
|
|
|
if (send_onion_response(onion->net, source, (uint8_t *)"install gentoo", sizeof("install gentoo"),
|
2014-01-04 11:13:20 +08:00
|
|
|
packet + sizeof("Install Gentoo")) == -1)
|
2014-01-01 12:18:37 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
handled_test_1 = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int handled_test_2;
|
|
|
|
static int handle_test_2(void *object, IP_Port source, uint8_t *packet, uint32_t length)
|
|
|
|
{
|
|
|
|
if (length != sizeof("install Gentoo"))
|
|
|
|
return 1;
|
|
|
|
|
2014-01-05 08:40:43 +08:00
|
|
|
if (memcmp(packet, (uint8_t *)"install gentoo", sizeof("install gentoo")) != 0)
|
2014-01-01 12:18:37 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
handled_test_2 = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
2014-01-06 08:22:38 +08:00
|
|
|
/*
|
|
|
|
void print_client_id(uint8_t *client_id, uint32_t length)
|
|
|
|
{
|
|
|
|
uint32_t j;
|
|
|
|
|
|
|
|
for (j = 0; j < length; j++) {
|
|
|
|
printf("%02hhX", client_id[j]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
static int handled_test_3;
|
|
|
|
uint8_t test_3_pub_key[crypto_box_PUBLICKEYBYTES];
|
|
|
|
uint8_t test_3_ping_id[crypto_hash_sha256_BYTES];
|
|
|
|
static int handle_test_3(void *object, IP_Port source, uint8_t *packet, uint32_t length)
|
|
|
|
{
|
|
|
|
Onion *onion = object;
|
|
|
|
|
|
|
|
if (length != (1 + crypto_box_NONCEBYTES + crypto_hash_sha256_BYTES + crypto_box_MACBYTES))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
//print_client_id(packet, length);
|
|
|
|
int len = decrypt_data(test_3_pub_key, onion->dht->c->self_secret_key, packet + 1, packet + 1 + crypto_box_NONCEBYTES,
|
|
|
|
crypto_hash_sha256_BYTES + crypto_box_MACBYTES, test_3_ping_id);
|
|
|
|
|
|
|
|
if (len == -1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
//print_client_id(test_3_ping_id, sizeof(test_3_ping_id));
|
|
|
|
handled_test_3 = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
2014-01-05 08:40:43 +08:00
|
|
|
|
2014-01-01 12:18:37 +08:00
|
|
|
START_TEST(test_basic)
|
|
|
|
{
|
|
|
|
IP ip;
|
|
|
|
ip_init(&ip, 1);
|
|
|
|
ip.ip6.uint8[15] = 1;
|
|
|
|
Onion *onion1 = new_onion(new_DHT(new_net_crypto(new_networking(ip, 34567))));
|
|
|
|
Onion *onion2 = new_onion(new_DHT(new_net_crypto(new_networking(ip, 34568))));
|
|
|
|
ck_assert_msg((onion1 != NULL) && (onion2 != NULL), "Onion failed initializing.");
|
|
|
|
networking_registerhandler(onion2->net, 'I', &handle_test_1, onion2);
|
|
|
|
|
|
|
|
IP_Port on1 = {ip, onion1->net->port};
|
|
|
|
Node_format n1;
|
|
|
|
memcpy(n1.client_id, onion1->dht->self_public_key, crypto_box_PUBLICKEYBYTES);
|
|
|
|
n1.ip_port = on1;
|
|
|
|
|
|
|
|
IP_Port on2 = {ip, onion2->net->port};
|
|
|
|
Node_format n2;
|
|
|
|
memcpy(n2.client_id, onion2->dht->self_public_key, crypto_box_PUBLICKEYBYTES);
|
|
|
|
n2.ip_port = on2;
|
|
|
|
|
|
|
|
Node_format nodes[4];
|
|
|
|
nodes[0] = n1;
|
|
|
|
nodes[1] = n2;
|
|
|
|
nodes[2] = n1;
|
|
|
|
nodes[3] = n2;
|
2014-01-06 08:22:38 +08:00
|
|
|
int ret = send_onion_packet(onion1->dht, nodes, (uint8_t *)"Install Gentoo", sizeof("Install Gentoo"));
|
2014-01-01 12:18:37 +08:00
|
|
|
ck_assert_msg(ret == 0, "Failed to create/send onion packet.");
|
|
|
|
|
|
|
|
handled_test_1 = 0;
|
|
|
|
|
|
|
|
while (handled_test_1 == 0) {
|
|
|
|
do_onion(onion1);
|
|
|
|
do_onion(onion2);
|
|
|
|
}
|
|
|
|
|
|
|
|
networking_registerhandler(onion1->net, 'i', &handle_test_2, onion1);
|
|
|
|
handled_test_2 = 0;
|
|
|
|
|
|
|
|
while (handled_test_2 == 0) {
|
|
|
|
do_onion(onion1);
|
|
|
|
do_onion(onion2);
|
|
|
|
}
|
2014-01-06 08:22:38 +08:00
|
|
|
|
|
|
|
Onion_Announce *onion1_a = new_onion_announce(onion1->dht);
|
|
|
|
Onion_Announce *onion2_a = new_onion_announce(onion2->dht);
|
|
|
|
networking_registerhandler(onion1->net, NET_PACKET_ANNOUNCE_RESPONSE, &handle_test_3, onion1);
|
|
|
|
ck_assert_msg((onion1_a != NULL) && (onion2_a != NULL), "Onion_Announce failed initializing.");
|
|
|
|
uint8_t zeroes[64] = {0};
|
|
|
|
memcpy(test_3_pub_key, nodes[3].client_id, crypto_box_PUBLICKEYBYTES);
|
|
|
|
ret = send_announce_request(onion1->dht, nodes, onion1->dht->c->self_public_key, onion1->dht->c->self_secret_key,
|
|
|
|
zeroes, onion1->dht->c->self_public_key);
|
|
|
|
ck_assert_msg(ret == 0, "Failed to create/send onion announce_request packet.");
|
|
|
|
handled_test_3 = 0;
|
|
|
|
|
|
|
|
while (handled_test_3 == 0) {
|
|
|
|
do_onion(onion1);
|
|
|
|
do_onion(onion2);
|
|
|
|
}
|
|
|
|
|
|
|
|
send_announce_request(onion1->dht, nodes, onion1->dht->c->self_public_key, onion1->dht->c->self_secret_key,
|
|
|
|
test_3_ping_id, onion1->dht->c->self_public_key);
|
|
|
|
|
|
|
|
while (memcmp(onion2_a->entries[ONION_ANNOUNCE_MAX_ENTRIES - 1].public_key, onion1->dht->c->self_public_key,
|
|
|
|
crypto_box_PUBLICKEYBYTES) != 0) {
|
|
|
|
do_onion(onion1);
|
|
|
|
do_onion(onion2);
|
|
|
|
c_sleep(50);
|
|
|
|
}
|
2014-01-01 12:18:37 +08:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2014-01-06 08:22:38 +08:00
|
|
|
typedef struct {
|
|
|
|
Onion *onion;
|
|
|
|
Onion_Announce *onion_a;
|
|
|
|
} Onions;
|
|
|
|
|
|
|
|
Onions *new_onions(uint16_t port)
|
|
|
|
{
|
|
|
|
IP ip;
|
|
|
|
ip_init(&ip, 1);
|
|
|
|
ip.ip6.uint8[15] = 1;
|
|
|
|
Onions *on = malloc(sizeof(Onions));
|
|
|
|
DHT *dht = new_DHT(new_net_crypto(new_networking(ip, port)));
|
|
|
|
on->onion = new_onion(dht);
|
|
|
|
on->onion_a = new_onion_announce(dht);
|
|
|
|
|
|
|
|
if (on->onion && on->onion_a)
|
|
|
|
return on;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NUM_ONIONS 64
|
|
|
|
|
2014-01-05 08:40:43 +08:00
|
|
|
START_TEST(test_announce)
|
|
|
|
{
|
2014-01-06 08:22:38 +08:00
|
|
|
uint32_t i;
|
|
|
|
Onions *onions[NUM_ONIONS];
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_ONIONS; ++i) {
|
|
|
|
onions[i] = new_onions(i + 34655);
|
|
|
|
ck_assert_msg(onions[i] != 0, "Failed to create onions. %u");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-05 08:40:43 +08:00
|
|
|
}
|
|
|
|
END_TEST
|
2014-01-01 12:18:37 +08:00
|
|
|
|
|
|
|
#define DEFTESTCASE(NAME) \
|
|
|
|
TCase *tc_##NAME = tcase_create(#NAME); \
|
|
|
|
tcase_add_test(tc_##NAME, test_##NAME); \
|
|
|
|
suite_add_tcase(s, tc_##NAME);
|
|
|
|
|
|
|
|
#define DEFTESTCASE_SLOW(NAME, TIMEOUT) \
|
|
|
|
DEFTESTCASE(NAME) \
|
|
|
|
tcase_set_timeout(tc_##NAME, TIMEOUT);
|
|
|
|
Suite *onion_suite(void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create("Onion");
|
|
|
|
|
|
|
|
DEFTESTCASE_SLOW(basic, 5);
|
2014-01-05 08:40:43 +08:00
|
|
|
DEFTESTCASE_SLOW(announce, 5);
|
2014-01-01 12:18:37 +08:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
srand((unsigned int) time(NULL));
|
|
|
|
|
|
|
|
Suite *onion = onion_suite();
|
|
|
|
SRunner *test_runner = srunner_create(onion);
|
|
|
|
|
|
|
|
int number_failed = 0;
|
|
|
|
srunner_run_all(test_runner, CK_NORMAL);
|
|
|
|
number_failed = srunner_ntests_failed(test_runner);
|
|
|
|
|
|
|
|
srunner_free(test_runner);
|
|
|
|
|
|
|
|
return number_failed;
|
|
|
|
}
|