2013-06-24 20:28:19 +08:00
|
|
|
/* 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
|
|
|
*
|
2013-07-13 04:27:19 +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
|
|
|
*
|
2013-07-13 04:27:19 +08:00
|
|
|
* The test will then ask you for the id (in hex format) of the friend you wish to add
|
2013-07-26 09:45:56 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Tox project All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This file is part of Tox.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
|
2013-08-17 01:11:09 +08:00
|
|
|
*
|
2013-06-24 20:28:19 +08:00
|
|
|
*/
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-13 04:27:19 +08:00
|
|
|
//#include "../core/network.h"
|
2013-08-04 20:10:37 +08:00
|
|
|
#include "../toxcore/DHT.h"
|
|
|
|
#include "../toxcore/friend_requests.h"
|
2013-07-28 00:10:41 +08:00
|
|
|
#include "misc_tools.h"
|
2013-06-24 20:28:19 +08:00
|
|
|
|
2013-06-26 00:11:11 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
2013-06-25 04:50:43 +08:00
|
|
|
//Sleep function (x = milliseconds)
|
|
|
|
#ifdef WIN32
|
|
|
|
|
|
|
|
#define c_sleep(x) Sleep(1*x)
|
|
|
|
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
2013-06-25 21:19:01 +08:00
|
|
|
#include <arpa/inet.h>
|
2013-06-25 04:50:43 +08:00
|
|
|
#define c_sleep(x) usleep(1000*x)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PORT 33445
|
2013-06-24 20:28:19 +08:00
|
|
|
|
2013-08-21 07:37:05 +08:00
|
|
|
void print_clientlist(DHT *dht)
|
2013-06-25 21:19:01 +08:00
|
|
|
{
|
|
|
|
uint32_t i, j;
|
|
|
|
IP_Port p_ip;
|
2013-06-26 03:24:31 +08:00
|
|
|
printf("___________________CLOSE________________________________\n");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
for (i = 0; i < 32; i++) {
|
2013-06-25 21:19:01 +08:00
|
|
|
printf("ClientID: ");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
for (j = 0; j < 32; j++) {
|
2013-08-21 03:53:15 +08:00
|
|
|
printf("%02hhX", dht->close_clientlist[i].client_id[j]);
|
2013-06-25 21:19:01 +08:00
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
p_ip = dht->close_clientlist[i].ip_port;
|
2013-08-17 01:11:09 +08:00
|
|
|
printf("\nIP: %u.%u.%u.%u Port: %u", p_ip.ip.c[0], p_ip.ip.c[1], p_ip.ip.c[2], p_ip.ip.c[3], ntohs(p_ip.port));
|
2013-08-21 03:53:15 +08:00
|
|
|
printf("\nTimestamp: %llu", (long long unsigned int) dht->close_clientlist[i].timestamp);
|
|
|
|
printf("\nLast pinged: %llu\n", (long long unsigned int) dht->close_clientlist[i].last_pinged);
|
|
|
|
p_ip = dht->close_clientlist[i].ret_ip_port;
|
2013-08-17 01:11:09 +08:00
|
|
|
printf("OUR IP: %u.%u.%u.%u Port: %u\n", p_ip.ip.c[0], p_ip.ip.c[1], p_ip.ip.c[2], p_ip.ip.c[3], ntohs(p_ip.port));
|
2013-08-21 03:53:15 +08:00
|
|
|
printf("Timestamp: %llu\n", (long long unsigned int) dht->close_clientlist[i].ret_timestamp);
|
2013-08-17 01:11:09 +08:00
|
|
|
}
|
2013-06-25 21:19:01 +08:00
|
|
|
}
|
2013-06-25 04:50:43 +08:00
|
|
|
|
2013-08-21 07:37:05 +08:00
|
|
|
void print_friendlist(DHT *dht)
|
2013-06-26 03:24:31 +08:00
|
|
|
{
|
|
|
|
uint32_t i, j, k;
|
|
|
|
IP_Port p_ip;
|
|
|
|
printf("_________________FRIENDS__________________________________\n");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
for (k = 0; k < dht->num_friends; k++) {
|
2013-06-26 03:24:31 +08:00
|
|
|
printf("FRIEND %u\n", k);
|
|
|
|
printf("ID: ");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
for (j = 0; j < 32; j++) {
|
2013-08-21 03:53:15 +08:00
|
|
|
printf("%c", dht->friends_list[k].client_id[j]);
|
2013-06-26 03:24:31 +08:00
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
p_ip = DHT_getfriendip(dht, dht->friends_list[k].client_id);
|
2013-08-17 01:11:09 +08:00
|
|
|
printf("\nIP: %u.%u.%u.%u:%u", p_ip.ip.c[0], p_ip.ip.c[1], p_ip.ip.c[2], p_ip.ip.c[3], ntohs(p_ip.port));
|
2013-06-26 03:24:31 +08:00
|
|
|
|
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 < 4; i++) {
|
2013-06-26 03:24:31 +08:00
|
|
|
printf("ClientID: ");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
for (j = 0; j < 32; j++) {
|
2013-08-21 03:53:15 +08:00
|
|
|
if (dht->friends_list[k].client_list[i].client_id[j] < 16)
|
2013-06-26 19:40:07 +08:00
|
|
|
printf("0");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
printf("%hhX", dht->friends_list[k].client_list[i].client_id[j]);
|
2013-06-26 03:24:31 +08:00
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
p_ip = dht->friends_list[k].client_list[i].ip_port;
|
2013-08-17 01:11:09 +08:00
|
|
|
printf("\nIP: %u.%u.%u.%u:%u", p_ip.ip.c[0], p_ip.ip.c[1], p_ip.ip.c[2], p_ip.ip.c[3], ntohs(p_ip.port));
|
2013-08-21 03:53:15 +08:00
|
|
|
printf("\nTimestamp: %llu", (long long unsigned int) dht->friends_list[k].client_list[i].timestamp);
|
|
|
|
printf("\nLast pinged: %llu\n", (long long unsigned int) dht->friends_list[k].client_list[i].last_pinged);
|
2013-08-21 07:37:05 +08:00
|
|
|
p_ip = dht->friends_list[k].client_list[i].ret_ip_port;
|
2013-08-17 01:11:09 +08:00
|
|
|
printf("ret IP: %u.%u.%u.%u:%u\n", p_ip.ip.c[0], p_ip.ip.c[1], p_ip.ip.c[2], p_ip.ip.c[3], ntohs(p_ip.port));
|
2013-08-21 03:53:15 +08:00
|
|
|
printf("Timestamp: %llu\n", (long long unsigned int)dht->friends_list[k].client_list[i].ret_timestamp);
|
2013-06-26 03:24:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-17 01:11:09 +08:00
|
|
|
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++) {
|
|
|
|
if (data[i] < 16)
|
2013-06-27 22:01:31 +08:00
|
|
|
printf("0");
|
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");
|
|
|
|
}
|
2013-06-26 03:24:31 +08:00
|
|
|
|
2013-06-25 04:50:43 +08:00
|
|
|
int main(int argc, char *argv[])
|
2013-06-24 20:28:19 +08:00
|
|
|
{
|
2013-06-26 19:40:07 +08:00
|
|
|
//memcpy(self_client_id, "qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq", 32);
|
2013-08-21 03:53:15 +08:00
|
|
|
/* initialize networking */
|
|
|
|
/* bind to ip 0.0.0.0:PORT */
|
|
|
|
IP ip;
|
|
|
|
ip.i = 0;
|
2013-08-21 07:37:05 +08:00
|
|
|
|
|
|
|
DHT *dht = new_DHT(new_net_crypto(new_networking(ip, PORT)));
|
|
|
|
|
2013-06-26 03:24:31 +08:00
|
|
|
if (argc < 4) {
|
2013-07-13 04:27:19 +08:00
|
|
|
printf("usage %s ip port public_key\n", argv[0]);
|
2013-06-25 04:50:43 +08:00
|
|
|
exit(0);
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
new_keys(dht->c);
|
2013-07-13 04:27:19 +08:00
|
|
|
printf("OUR ID: ");
|
|
|
|
uint32_t i;
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
for (i = 0; i < 32; i++) {
|
2013-08-21 03:53:15 +08:00
|
|
|
if (dht->c->self_public_key[i] < 16)
|
2013-07-13 04:27:19 +08:00
|
|
|
printf("0");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
printf("%hhX", dht->c->self_public_key[i]);
|
2013-07-13 04:27:19 +08:00
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-13 04:27:19 +08:00
|
|
|
char temp_id[128];
|
|
|
|
printf("\nEnter the client_id of the friend you wish to add (32 bytes HEX format):\n");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
if (scanf("%s", temp_id) != 1)
|
2013-07-30 20:48:36 +08:00
|
|
|
exit(0);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
DHT_addfriend(dht, hex_string_to_bin(temp_id));
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-13 04:27:19 +08:00
|
|
|
|
2013-06-25 21:19:01 +08:00
|
|
|
perror("Initialization");
|
2013-06-25 04:50:43 +08:00
|
|
|
IP_Port bootstrap_ip_port;
|
|
|
|
bootstrap_ip_port.port = htons(atoi(argv[2]));
|
2013-07-26 16:02:17 +08:00
|
|
|
/* bootstrap_ip_port.ip.c[0] = 127;
|
|
|
|
* bootstrap_ip_port.ip.c[1] = 0;
|
|
|
|
* bootstrap_ip_port.ip.c[2] = 0;
|
|
|
|
* bootstrap_ip_port.ip.c[3] = 1; */
|
2013-06-25 04:50:43 +08:00
|
|
|
bootstrap_ip_port.ip.i = inet_addr(argv[1]);
|
2013-08-21 03:53:15 +08:00
|
|
|
DHT_bootstrap(dht, bootstrap_ip_port, hex_string_to_bin(argv[3]));
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
IP_Port ip_port;
|
|
|
|
uint8_t data[MAX_UDP_PACKET_SIZE];
|
|
|
|
uint32_t length;
|
|
|
|
*/
|
2013-08-10 07:30:18 +08:00
|
|
|
|
2013-08-17 01:11:09 +08:00
|
|
|
while (1) {
|
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
do_DHT(dht);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
/* slvrTODO:
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2013-08-21 03:53:15 +08:00
|
|
|
networking_poll(dht->c->lossless_udp->net);
|
2013-08-10 07:30:18 +08:00
|
|
|
|
2013-08-21 03:53:15 +08:00
|
|
|
print_clientlist(dht);
|
|
|
|
print_friendlist(dht);
|
2013-06-25 21:19:01 +08:00
|
|
|
c_sleep(300);
|
2013-06-25 04:50:43 +08:00
|
|
|
}
|
2013-08-21 07:37:05 +08:00
|
|
|
|
2013-08-10 07:30:18 +08:00
|
|
|
return 0;
|
2013-07-27 04:16:58 +08:00
|
|
|
}
|