toxcore/testing/DHT_test.c

262 lines
7.8 KiB
C
Raw Normal View History

/* DHT test
* A file with a main that runs our DHT for testing.
2013-08-17 01:11:09 +08:00
*
2013-07-22 19:26:25 +08:00
* Compile with: gcc -O2 -Wall -D VANILLA_NACL -o test ../core/Lossless_UDP.c ../core/network.c ../core/net_crypto.c ../core/Messenger.c ../nacl/build/${HOSTNAME%.*}/lib/amd64/{cpucycles.o,libnacl.a,randombytes.o} DHT_test.c
2013-08-17 01:11:09 +08:00
*
* Command line arguments are the ip, port and public key of a node.
* EX: ./test 127.0.0.1 33445 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
2013-08-17 01:11:09 +08:00
*
* The test will then ask you for the id (in hex format) of the friend you wish to add
*/
/*
* Copyright © 2016-2017 The TokTok team.
* Copyright © 2013 Tox project.
*
* This file is part of Tox, the free peer to peer instant messenger.
*
* Tox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Tox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2013-08-17 01:11:09 +08:00
*
* You should have received a copy of the GNU General Public License
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
*/
#define _XOPEN_SOURCE 600
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
//#include "../core/network.h"
#include "../toxcore/DHT.h"
#include "../toxcore/friend_requests.h"
#include "misc_tools.c"
#include <string.h>
#if !defined(_WIN32) && !defined(__WIN32__) && !defined (WIN32)
#include <arpa/inet.h>
#endif
#define PORT 33445
static uint8_t zeroes_cid[CRYPTO_PUBLIC_KEY_SIZE];
2018-01-15 09:23:08 +08:00
static void print_client_id(const uint8_t *public_key)
{
uint32_t j;
2013-12-17 09:49:24 +08:00
for (j = 0; j < CRYPTO_PUBLIC_KEY_SIZE; j++) {
2015-07-30 10:39:56 +08:00
printf("%02hhX", public_key[j]);
}
}
2018-01-15 09:23:08 +08:00
static void print_hardening(const Hardening *h)
{
printf("Hardening:\n");
printf("routes_requests_ok: %hhu\n", h->routes_requests_ok);
printf("routes_requests_timestamp: %llu\n", (long long unsigned int)h->routes_requests_timestamp);
2013-12-17 09:49:24 +08:00
printf("routes_requests_pingedid: ");
print_client_id(h->routes_requests_pingedid);
printf("\nsend_nodes_ok: %hhu\n", h->send_nodes_ok);
printf("send_nodes_timestamp: %llu\n", (long long unsigned int)h->send_nodes_timestamp);
2013-12-17 09:49:24 +08:00
printf("send_nodes_pingedid: ");
print_client_id(h->send_nodes_pingedid);
printf("\ntesting_requests: %hhu\n", h->testing_requests);
printf("testing_timestamp: %llu\n", (long long unsigned int)h->testing_timestamp);
2013-12-17 09:49:24 +08:00
printf("testing_pingedid: ");
print_client_id(h->testing_pingedid);
printf("\n\n");
}
2018-01-15 09:23:08 +08:00
static void print_assoc(const IPPTsPng *assoc, uint8_t ours)
{
2018-01-15 09:23:08 +08:00
const IP_Port *ipp = &assoc->ip_port;
char ip_str[IP_NTOA_LEN];
printf("\nIP: %s Port: %u", ip_ntoa(&ipp->ip, ip_str, sizeof(ip_str)), net_ntohs(ipp->port));
printf("\nTimestamp: %llu", (long long unsigned int) assoc->timestamp);
printf("\nLast pinged: %llu\n", (long long unsigned int) assoc->last_pinged);
ipp = &assoc->ret_ip_port;
2013-12-17 09:49:24 +08:00
2016-09-01 02:12:19 +08:00
if (ours) {
printf("OUR IP: %s Port: %u\n", ip_ntoa(&ipp->ip, ip_str, sizeof(ip_str)), net_ntohs(ipp->port));
2016-09-01 02:12:19 +08:00
} else {
printf("RET IP: %s Port: %u\n", ip_ntoa(&ipp->ip, ip_str, sizeof(ip_str)), net_ntohs(ipp->port));
2016-09-01 02:12:19 +08:00
}
2013-12-17 09:49:24 +08:00
printf("Timestamp: %llu\n", (long long unsigned int) assoc->ret_timestamp);
print_hardening(&assoc->hardening);
}
static void print_clientlist(DHT *dht)
{
uint32_t i;
printf("___________________CLOSE________________________________\n");
2013-12-17 09:49:24 +08:00
for (i = 0; i < LCLIENT_LIST; i++) {
2018-01-15 09:23:08 +08:00
const Client_data *client = dht_get_close_client(dht, i);
2013-12-17 09:49:24 +08:00
2016-09-01 02:12:19 +08:00
if (public_key_cmp(client->public_key, zeroes_cid) == 0) {
continue;
2016-09-01 02:12:19 +08:00
}
2013-12-17 09:49:24 +08:00
printf("ClientID: ");
2015-07-30 10:39:56 +08:00
print_client_id(client->public_key);
2013-08-17 01:11:09 +08:00
print_assoc(&client->assoc4, 1);
print_assoc(&client->assoc6, 1);
2013-08-17 01:11:09 +08:00
}
}
static void print_friendlist(DHT *dht)
{
uint32_t i, k;
IP_Port p_ip;
printf("_________________FRIENDS__________________________________\n");
2013-08-17 01:11:09 +08:00
2018-01-15 09:23:08 +08:00
for (k = 0; k < dht_get_num_friends(dht); k++) {
printf("FRIEND %u\n", k);
printf("ID: ");
2013-08-17 01:11:09 +08:00
2018-01-15 09:23:08 +08:00
print_client_id(dht_get_friend_public_key(dht, k));
2013-08-17 01:11:09 +08:00
2018-01-15 09:23:08 +08:00
int friendok = DHT_getfriendip(dht, dht_get_friend_public_key(dht, k), &p_ip);
char ip_str[IP_NTOA_LEN];
printf("\nIP: %s:%u (%d)", ip_ntoa(&p_ip.ip, ip_str, sizeof(ip_str)), net_ntohs(p_ip.port), friendok);
2013-06-26 19:40:07 +08:00
printf("\nCLIENTS IN LIST:\n\n");
2013-08-17 01:11:09 +08:00
for (i = 0; i < MAX_FRIEND_CLIENTS; i++) {
2018-01-15 09:23:08 +08:00
const Client_data *client = &dht_get_friend(dht, k)->client_list[i];
2013-12-17 09:49:24 +08:00
2016-09-01 02:12:19 +08:00
if (public_key_cmp(client->public_key, zeroes_cid) == 0) {
continue;
2016-09-01 02:12:19 +08:00
}
2013-12-17 09:49:24 +08:00
printf("ClientID: ");
2015-07-30 10:39:56 +08:00
print_client_id(client->public_key);
2013-08-17 01:11:09 +08:00
print_assoc(&client->assoc4, 0);
print_assoc(&client->assoc6, 0);
}
}
}
#if 0 /* TODO(slvr): */
static void printpacket(uint8_t *data, uint32_t length, IP_Port ip_port)
2013-06-27 22:01:31 +08:00
{
uint32_t i;
printf("UNHANDLED PACKET RECEIVED\nLENGTH:%u\nCONTENTS:\n", length);
printf("--------------------BEGIN-----------------------------\n");
2013-08-17 01:11:09 +08:00
for (i = 0; i < length; i++) {
2016-09-01 02:12:19 +08:00
if (data[i] < 16) {
2013-06-27 22:01:31 +08:00
printf("0");
2016-09-01 02:12:19 +08:00
}
2013-08-17 01:11:09 +08:00
printf("%hhX", data[i]);
2013-06-27 22:01:31 +08:00
}
2013-08-17 01:11:09 +08:00
2013-06-27 22:01:31 +08:00
printf("\n--------------------END-----------------------------\n\n\n");
}
#endif
int main(int argc, char *argv[])
{
if (argc < 4) {
printf("Usage: %s [--ipv4|--ipv6] ip port public_key\n", argv[0]);
exit(0);
}
/* let user override default by cmdline */
uint8_t ipv6enabled = TOX_ENABLE_IPV6_DEFAULT; /* x */
int argvoffset = cmdline_parsefor_ipv46(argc, argv, &ipv6enabled);
2013-09-15 00:42:17 +08:00
2016-09-01 02:12:19 +08:00
if (argvoffset < 0) {
exit(1);
2016-09-01 02:12:19 +08:00
}
2013-06-26 19:40:07 +08:00
//memcpy(self_client_id, "qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq", 32);
/* initialize networking */
/* bind to ip 0.0.0.0:PORT */
IP ip;
ip_init(&ip, ipv6enabled);
DHT *dht = new_DHT(nullptr, new_networking(nullptr, ip, PORT), true);
printf("OUR ID: ");
uint32_t i;
2013-08-17 01:11:09 +08:00
for (i = 0; i < 32; i++) {
2018-01-15 09:23:08 +08:00
const uint8_t *const self_public_key = dht_get_self_public_key(dht);
if (self_public_key[i] < 16) {
printf("0");
2016-09-01 02:12:19 +08:00
}
2013-08-17 01:11:09 +08:00
2018-01-15 09:23:08 +08:00
printf("%hhX", self_public_key[i]);
}
2013-08-17 01:11:09 +08:00
char temp_id[128];
2015-07-30 10:39:56 +08:00
printf("\nEnter the public_key of the friend you wish to add (32 bytes HEX format):\n");
2013-08-17 01:11:09 +08:00
2016-09-01 02:12:19 +08:00
if (!fgets(temp_id, sizeof(temp_id), stdin)) {
2013-07-30 20:48:36 +08:00
exit(0);
2016-09-01 02:12:19 +08:00
}
2016-09-01 02:12:19 +08:00
if ((strlen(temp_id) > 0) && (temp_id[strlen(temp_id) - 1] == '\n')) {
temp_id[strlen(temp_id) - 1] = '\0';
2016-09-01 02:12:19 +08:00
}
uint8_t *bin_id = hex_string_to_bin(temp_id);
DHT_addfriend(dht, bin_id, 0, 0, 0, 0);
free(bin_id);
2013-08-17 01:11:09 +08:00
perror("Initialization");
uint16_t port = net_htons(atoi(argv[argvoffset + 2]));
unsigned char *binary_string = hex_string_to_bin(argv[argvoffset + 3]);
int res = DHT_bootstrap_from_address(dht, argv[argvoffset + 1], ipv6enabled, port, binary_string);
free(binary_string);
2013-09-15 00:42:17 +08:00
if (!res) {
printf("Failed to convert \"%s\" into an IP address. Exiting...\n", argv[argvoffset + 1]);
return 1;
}
2013-08-17 01:11:09 +08:00
#if 0 /* TODO(slvr): */
IP_Port ip_port;
uint8_t data[MAX_UDP_PACKET_SIZE];
uint32_t length;
#endif
2013-08-10 07:30:18 +08:00
2013-08-17 01:11:09 +08:00
while (1) {
do_DHT(dht);
2013-08-17 01:11:09 +08:00
#if 0 /* TODO(slvr): */
while (receivepacket(&ip_port, data, &length) != -1) {
if (DHT_handlepacket(data, length, ip_port) && friendreq_handlepacket(data, length, ip_port)) {
//unhandled packet
printpacket(data, length, ip_port);
} else {
printf("Received handled packet with length: %u\n", length);
}
}
#endif
networking_poll(dht_get_net(dht), nullptr);
2013-08-10 07:30:18 +08:00
print_clientlist(dht);
print_friendlist(dht);
c_sleep(300);
}
}