2013-06-26 21:56:15 +08:00
|
|
|
/* DHT.h
|
2013-07-27 20:43:36 +08:00
|
|
|
*
|
2013-08-04 05:46:52 +08:00
|
|
|
* An implementation of the DHT as seen in http://wiki.tox.im/index.php/DHT
|
2013-07-27 20:43:36 +08:00
|
|
|
*
|
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-07-27 20:43:36 +08:00
|
|
|
*
|
2013-07-26 09:45:56 +08:00
|
|
|
*/
|
2013-06-24 10:27:29 +08:00
|
|
|
|
2013-07-27 20:43:36 +08:00
|
|
|
#ifndef DHT_H
|
|
|
|
#define DHT_H
|
2013-06-24 10:27:29 +08:00
|
|
|
|
2014-04-23 23:35:40 +08:00
|
|
|
#include "crypto_core.h"
|
2014-05-02 07:42:44 +08:00
|
|
|
#include "network.h"
|
2014-05-29 05:59:48 +08:00
|
|
|
#include "ping_array.h"
|
2013-06-24 10:27:29 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Size of the client_id in bytes. */
|
2013-07-13 04:27:19 +08:00
|
|
|
#define CLIENT_ID_SIZE crypto_box_PUBLICKEYBYTES
|
2013-06-24 10:27:29 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Maximum number of clients stored per friend. */
|
2013-08-21 00:08:55 +08:00
|
|
|
#define MAX_FRIEND_CLIENTS 8
|
|
|
|
|
|
|
|
/* A list of the clients mathematically closest to ours. */
|
|
|
|
#define LCLIENT_LIST 32
|
|
|
|
|
2014-01-03 11:33:46 +08:00
|
|
|
/* The max number of nodes to send with send nodes. */
|
2014-04-25 21:15:53 +08:00
|
|
|
#define MAX_SENT_NODES 4
|
2014-01-03 11:33:46 +08:00
|
|
|
|
2013-11-15 02:05:36 +08:00
|
|
|
/* Ping timeout in seconds */
|
2013-12-07 11:51:17 +08:00
|
|
|
#define PING_TIMEOUT 3
|
2013-11-15 02:05:36 +08:00
|
|
|
|
2014-05-29 05:59:48 +08:00
|
|
|
/* size of DHT ping arrays. */
|
|
|
|
#define DHT_PING_ARRAY_SIZE 512
|
|
|
|
|
2013-11-15 02:05:36 +08:00
|
|
|
/* Ping interval in seconds for each node in our lists. */
|
|
|
|
#define PING_INTERVAL 60
|
|
|
|
|
|
|
|
/* The number of seconds for a non responsive node to become bad. */
|
2014-01-16 09:47:26 +08:00
|
|
|
#define PINGS_MISSED_NODE_GOES_BAD 1
|
2013-11-15 02:05:36 +08:00
|
|
|
#define PING_ROUNDTRIP 2
|
2014-01-16 09:47:26 +08:00
|
|
|
#define BAD_NODE_TIMEOUT (PING_INTERVAL + PINGS_MISSED_NODE_GOES_BAD * (PING_INTERVAL + PING_ROUNDTRIP))
|
2013-11-15 02:05:36 +08:00
|
|
|
|
2013-12-09 07:15:30 +08:00
|
|
|
/* Redefinitions of variables for safe transfer over wire. */
|
|
|
|
#define TOX_AF_INET 2
|
|
|
|
#define TOX_AF_INET6 10
|
2014-04-16 06:09:07 +08:00
|
|
|
#define TOX_TCP_INET 130
|
|
|
|
#define TOX_TCP_INET6 138
|
2013-12-09 07:15:30 +08:00
|
|
|
|
2014-01-20 03:14:23 +08:00
|
|
|
/* The number of "fake" friends to add (for optimization purposes and so our paths for the onion part are more random) */
|
|
|
|
#define DHT_FAKE_FRIEND_NUMBER 4
|
|
|
|
|
2013-12-09 07:23:30 +08:00
|
|
|
/* Functions to transfer ips safely across wire. */
|
|
|
|
void to_net_family(IP *ip);
|
|
|
|
void to_host_family(IP *ip);
|
|
|
|
|
2013-11-15 02:05:36 +08:00
|
|
|
typedef struct {
|
|
|
|
IP_Port ip_port;
|
|
|
|
uint64_t timestamp;
|
|
|
|
} IPPTs;
|
|
|
|
|
2013-10-31 07:50:06 +08:00
|
|
|
typedef struct {
|
|
|
|
/* Node routes request correctly (true (1) or false/didn't check (0)) */
|
|
|
|
uint8_t routes_requests_ok;
|
|
|
|
/* Time which we last checked this.*/
|
|
|
|
uint64_t routes_requests_timestamp;
|
|
|
|
uint8_t routes_requests_pingedid[CLIENT_ID_SIZE];
|
|
|
|
/* Node sends correct send_node (true (1) or false/didn't check (0)) */
|
|
|
|
uint8_t send_nodes_ok;
|
|
|
|
/* Time which we last checked this.*/
|
|
|
|
uint64_t send_nodes_timestamp;
|
|
|
|
uint8_t send_nodes_pingedid[CLIENT_ID_SIZE];
|
|
|
|
/* Node can be used to test other nodes (true (1) or false/didn't check (0)) */
|
|
|
|
uint8_t testing_requests;
|
|
|
|
/* Time which we last checked this.*/
|
|
|
|
uint64_t testing_timestamp;
|
|
|
|
uint8_t testing_pingedid[CLIENT_ID_SIZE];
|
|
|
|
} Hardening;
|
|
|
|
|
2013-08-11 10:55:57 +08:00
|
|
|
typedef struct {
|
|
|
|
IP_Port ip_port;
|
|
|
|
uint64_t timestamp;
|
|
|
|
uint64_t last_pinged;
|
2013-11-03 11:04:03 +08:00
|
|
|
|
2013-10-31 07:50:06 +08:00
|
|
|
Hardening hardening;
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Returned by this node. Either our friend or us. */
|
2013-08-11 10:55:57 +08:00
|
|
|
IP_Port ret_ip_port;
|
|
|
|
uint64_t ret_timestamp;
|
2013-09-27 09:27:52 +08:00
|
|
|
} IPPTsPng;
|
2013-08-21 00:08:55 +08:00
|
|
|
|
2013-09-27 09:27:52 +08:00
|
|
|
typedef struct {
|
|
|
|
uint8_t client_id[CLIENT_ID_SIZE];
|
|
|
|
IPPTsPng assoc4;
|
|
|
|
IPPTsPng assoc6;
|
2013-10-20 22:56:12 +08:00
|
|
|
} Client_data;
|
2013-08-21 00:08:55 +08:00
|
|
|
|
2013-09-27 09:27:52 +08:00
|
|
|
/*----------------------------------------------------------------------------------*/
|
2013-08-21 00:08:55 +08:00
|
|
|
|
2013-09-27 09:27:52 +08:00
|
|
|
typedef struct {
|
2013-08-21 00:08:55 +08:00
|
|
|
/* 1 if currently hole punching, otherwise 0 */
|
|
|
|
uint8_t hole_punching;
|
|
|
|
uint32_t punching_index;
|
2014-01-26 10:09:26 +08:00
|
|
|
uint32_t tries;
|
|
|
|
uint32_t punching_index2;
|
|
|
|
|
2013-08-21 00:08:55 +08:00
|
|
|
uint64_t punching_timestamp;
|
|
|
|
uint64_t recvNATping_timestamp;
|
|
|
|
uint64_t NATping_id;
|
|
|
|
uint64_t NATping_timestamp;
|
2013-09-27 09:27:52 +08:00
|
|
|
} NAT;
|
|
|
|
|
2014-09-28 06:25:03 +08:00
|
|
|
#define DHT_FRIEND_MAX_LOCKS 32
|
2014-09-27 05:56:06 +08:00
|
|
|
|
2013-09-27 09:27:52 +08:00
|
|
|
typedef struct {
|
|
|
|
uint8_t client_id[CLIENT_ID_SIZE];
|
2013-10-20 22:56:12 +08:00
|
|
|
Client_data client_list[MAX_FRIEND_CLIENTS];
|
2013-09-27 09:27:52 +08:00
|
|
|
|
|
|
|
/* Time at which the last get_nodes request was sent. */
|
|
|
|
uint64_t lastgetnode;
|
2014-02-25 06:14:47 +08:00
|
|
|
/* number of times get_node packets were sent. */
|
|
|
|
uint32_t bootstrap_times;
|
2013-09-27 09:27:52 +08:00
|
|
|
|
|
|
|
/* Symetric NAT hole punching stuff. */
|
|
|
|
NAT nat;
|
2014-09-27 03:42:56 +08:00
|
|
|
|
|
|
|
uint16_t lock_count;
|
2014-09-27 05:56:06 +08:00
|
|
|
struct {
|
|
|
|
void (*ip_callback)(void *, int32_t, IP_Port);
|
|
|
|
void *data;
|
|
|
|
int32_t number;
|
|
|
|
} callbacks[DHT_FRIEND_MAX_LOCKS];
|
|
|
|
|
2013-10-20 22:56:12 +08:00
|
|
|
} DHT_Friend;
|
2013-08-21 00:08:55 +08:00
|
|
|
|
2014-09-26 09:05:17 +08:00
|
|
|
typedef struct {
|
2013-08-21 00:08:55 +08:00
|
|
|
uint8_t client_id[CLIENT_ID_SIZE];
|
|
|
|
IP_Port ip_port;
|
2014-04-16 06:09:07 +08:00
|
|
|
}
|
|
|
|
Node_format;
|
|
|
|
|
|
|
|
/* Pack number of nodes into data of maxlength length.
|
|
|
|
*
|
|
|
|
* return length of packed nodes on success.
|
|
|
|
* return -1 on failure.
|
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int pack_nodes(uint8_t *data, uint16_t length, const Node_format *nodes, uint16_t number);
|
2014-04-16 06:09:07 +08:00
|
|
|
|
2014-04-25 21:02:49 +08:00
|
|
|
/* Unpack data of length into nodes of size max_num_nodes.
|
|
|
|
* Put the length of the data processed in processed_data_len.
|
2014-05-14 02:53:59 +08:00
|
|
|
* tcp_enabled sets if TCP nodes are expected (true) or not (false).
|
2014-04-16 06:09:07 +08:00
|
|
|
*
|
|
|
|
* return number of unpacked nodes on success.
|
|
|
|
* return -1 on failure.
|
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int unpack_nodes(Node_format *nodes, uint16_t max_num_nodes, uint16_t *processed_data_len, const uint8_t *data,
|
2014-05-14 02:53:59 +08:00
|
|
|
uint16_t length, uint8_t tcp_enabled);
|
2014-04-16 06:09:07 +08:00
|
|
|
|
2013-08-21 00:08:55 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
/*----------------------------------------------------------------------------------*/
|
2014-03-05 04:36:29 +08:00
|
|
|
/* struct to store some shared keys so we don't have to regenerate them for each request. */
|
|
|
|
#define MAX_KEYS_PER_SLOT 4
|
|
|
|
#define KEYS_TIMEOUT 600
|
2014-03-06 05:54:17 +08:00
|
|
|
typedef struct {
|
2014-03-05 04:36:29 +08:00
|
|
|
struct {
|
|
|
|
uint8_t client_id[CLIENT_ID_SIZE];
|
|
|
|
uint8_t shared_key[crypto_box_BEFORENMBYTES];
|
|
|
|
uint32_t times_requested;
|
|
|
|
uint8_t stored; /* 0 if not, 1 if is */
|
|
|
|
uint64_t time_last_requested;
|
|
|
|
} keys[256 * MAX_KEYS_PER_SLOT];
|
2014-03-06 05:54:17 +08:00
|
|
|
} Shared_Keys;
|
2013-09-21 21:39:15 +08:00
|
|
|
|
2014-03-05 04:36:29 +08:00
|
|
|
/*----------------------------------------------------------------------------------*/
|
2013-08-21 00:08:55 +08:00
|
|
|
|
2014-06-11 06:35:55 +08:00
|
|
|
typedef int (*cryptopacket_handler_callback)(void *object, IP_Port ip_port, const uint8_t *source_pubkey,
|
|
|
|
const uint8_t *data, uint32_t len);
|
2014-04-23 23:35:40 +08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
cryptopacket_handler_callback function;
|
|
|
|
void *object;
|
|
|
|
} Cryptopacket_Handles;
|
|
|
|
|
2013-08-21 00:08:55 +08:00
|
|
|
typedef struct {
|
2014-01-18 02:35:40 +08:00
|
|
|
Networking_Core *net;
|
2013-09-21 21:39:15 +08:00
|
|
|
|
2013-12-02 04:06:20 +08:00
|
|
|
Client_data close_clientlist[LCLIENT_LIST];
|
|
|
|
uint64_t close_lastgetnodes;
|
2014-02-25 06:14:47 +08:00
|
|
|
uint32_t close_bootstrap_times;
|
2013-10-25 05:39:14 +08:00
|
|
|
|
|
|
|
/* Note: this key should not be/is not used to transmit any sensitive materials */
|
2014-04-22 04:51:36 +08:00
|
|
|
uint8_t secret_symmetric_key[crypto_box_KEYBYTES];
|
2013-12-28 04:21:16 +08:00
|
|
|
/* DHT keypair */
|
|
|
|
uint8_t self_public_key[crypto_box_PUBLICKEYBYTES];
|
|
|
|
uint8_t self_secret_key[crypto_box_SECRETKEYBYTES];
|
2013-08-21 00:08:55 +08:00
|
|
|
|
2013-12-02 04:06:20 +08:00
|
|
|
DHT_Friend *friends_list;
|
|
|
|
uint16_t num_friends;
|
2013-09-21 21:39:15 +08:00
|
|
|
|
2014-09-10 03:48:09 +08:00
|
|
|
// Used after loading of file (tox_load), but no longer needed after connect (tox_connect)
|
|
|
|
// Unsure if friends_list and num_friends could just be used instead?
|
2014-09-13 01:21:17 +08:00
|
|
|
int has_loaded_friends_clients; // Whether or not we have loaded on the first do_DHT
|
2014-09-10 03:48:09 +08:00
|
|
|
DHT_Friend *loaded_friends_list;
|
|
|
|
uint32_t loaded_num_friends;
|
|
|
|
Client_data *loaded_clients_list;
|
|
|
|
uint32_t loaded_num_clients;
|
2014-09-10 00:34:39 +08:00
|
|
|
|
2014-03-06 05:54:17 +08:00
|
|
|
Shared_Keys shared_keys_recv;
|
|
|
|
Shared_Keys shared_keys_sent;
|
2014-03-05 04:36:29 +08:00
|
|
|
|
2013-12-02 04:06:20 +08:00
|
|
|
struct PING *ping;
|
2014-05-29 05:59:48 +08:00
|
|
|
Ping_Array dht_ping_array;
|
|
|
|
Ping_Array dht_harden_ping_array;
|
2014-01-18 04:46:09 +08:00
|
|
|
#ifdef ENABLE_ASSOC_DHT
|
2013-12-02 04:06:20 +08:00
|
|
|
struct Assoc *assoc;
|
2014-01-18 04:46:09 +08:00
|
|
|
#endif
|
2013-12-02 04:06:20 +08:00
|
|
|
uint64_t last_run;
|
2014-04-23 23:35:40 +08:00
|
|
|
|
|
|
|
Cryptopacket_Handles cryptopackethandlers[256];
|
2013-08-21 00:08:55 +08:00
|
|
|
} DHT;
|
|
|
|
/*----------------------------------------------------------------------------------*/
|
2013-08-11 10:45:56 +08:00
|
|
|
|
2014-03-06 05:54:17 +08:00
|
|
|
/* Shared key generations are costly, it is therefor smart to store commonly used
|
|
|
|
* ones so that they can re used later without being computed again.
|
|
|
|
*
|
|
|
|
* If shared key is already in shared_keys, copy it to shared_key.
|
|
|
|
* else generate it into shared_key and copy it to shared_keys
|
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
void get_shared_key(Shared_Keys *shared_keys, uint8_t *shared_key, const uint8_t *secret_key, const uint8_t *client_id);
|
2014-03-06 05:54:17 +08:00
|
|
|
|
2014-04-23 08:28:40 +08:00
|
|
|
/* Copy shared_key to encrypt/decrypt DHT packet from client_id into shared_key
|
2014-04-17 00:08:44 +08:00
|
|
|
* for packets that we receive.
|
2014-03-05 04:36:29 +08:00
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
void DHT_get_shared_key_recv(DHT *dht, uint8_t *shared_key, const uint8_t *client_id);
|
2014-03-05 04:36:29 +08:00
|
|
|
|
2014-04-23 08:28:40 +08:00
|
|
|
/* Copy shared_key to encrypt/decrypt DHT packet from client_id into shared_key
|
2014-03-06 05:54:17 +08:00
|
|
|
* for packets that we send.
|
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
void DHT_get_shared_key_sent(DHT *dht, uint8_t *shared_key, const uint8_t *client_id);
|
2014-03-05 04:36:29 +08:00
|
|
|
|
2014-06-11 02:54:48 +08:00
|
|
|
void DHT_getnodes(DHT *dht, const IP_Port *from_ipp, const uint8_t *from_id, const uint8_t *which_id);
|
2013-12-04 07:58:57 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Add a new friend to the friends list.
|
2013-09-02 20:31:00 +08:00
|
|
|
* client_id must be CLIENT_ID_SIZE bytes long.
|
|
|
|
*
|
2014-09-27 05:56:06 +08:00
|
|
|
* ip_callback is the callback of a function that will be called when the ip address
|
|
|
|
* is found along with arguments data and number.
|
|
|
|
*
|
2014-09-27 08:32:38 +08:00
|
|
|
* lock_count will be set to a non zero number that must be passed to DHT_delfriend()
|
|
|
|
* to properly remove the callback.
|
|
|
|
*
|
2013-09-02 20:31:00 +08:00
|
|
|
* return 0 if success.
|
2014-09-27 05:56:06 +08:00
|
|
|
* return -1 if failure (friends list is full).
|
2013-08-30 05:17:51 +08:00
|
|
|
*/
|
2014-09-27 05:56:06 +08:00
|
|
|
int DHT_addfriend(DHT *dht, const uint8_t *client_id, void (*ip_callback)(void *data, int32_t number, IP_Port),
|
|
|
|
void *data, int32_t number, uint16_t *lock_count);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Delete a friend from the friends list.
|
2013-09-02 20:31:00 +08:00
|
|
|
* client_id must be CLIENT_ID_SIZE bytes long.
|
|
|
|
*
|
|
|
|
* return 0 if success.
|
2014-09-27 05:56:06 +08:00
|
|
|
* return -1 if failure (client_id not in friends list).
|
2013-08-30 05:17:51 +08:00
|
|
|
*/
|
2014-09-27 05:56:06 +08:00
|
|
|
int DHT_delfriend(DHT *dht, const uint8_t *client_id, uint16_t lock_count);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Get ip of friend.
|
|
|
|
* client_id must be CLIENT_ID_SIZE bytes long.
|
|
|
|
* ip must be 4 bytes long.
|
|
|
|
* port must be 2 bytes long.
|
2013-09-02 20:31:00 +08:00
|
|
|
*
|
2013-09-12 02:50:15 +08:00
|
|
|
* !!! Signature changed !!!
|
2013-09-10 22:36:20 +08:00
|
|
|
*
|
|
|
|
* OLD: IP_Port DHT_getfriendip(DHT *dht, uint8_t *client_id);
|
|
|
|
*
|
2013-09-02 20:31:00 +08:00
|
|
|
* return ip if success.
|
|
|
|
* return ip of 0 if failure (This means the friend is either offline or we have not found him yet).
|
|
|
|
* return ip of 1 if friend is not in list.
|
2013-09-10 22:36:20 +08:00
|
|
|
*
|
|
|
|
* NEW: int DHT_getfriendip(DHT *dht, uint8_t *client_id, IP_Port *ip_port);
|
|
|
|
*
|
|
|
|
* return -1, -- if client_id does NOT refer to a friend
|
|
|
|
* return 0, -- if client_id refers to a friend and we failed to find the friend (yet)
|
|
|
|
* return 1, ip if client_id refers to a friend and we found him
|
2013-08-30 05:17:51 +08:00
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int DHT_getfriendip(const DHT *dht, const uint8_t *client_id, IP_Port *ip_port);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
/* Compares client_id1 and client_id2 with client_id.
|
|
|
|
*
|
|
|
|
* return 0 if both are same distance.
|
|
|
|
* return 1 if client_id1 is closer.
|
|
|
|
* return 2 if client_id2 is closer.
|
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int id_closest(const uint8_t *id, const uint8_t *id1, const uint8_t *id2);
|
2013-09-21 21:39:15 +08:00
|
|
|
|
2014-01-03 11:33:46 +08:00
|
|
|
/* Get the (maximum MAX_SENT_NODES) closest nodes to client_id we know
|
|
|
|
* and put them in nodes_list (must be MAX_SENT_NODES big).
|
|
|
|
*
|
2014-04-16 06:09:07 +08:00
|
|
|
* sa_family = family (IPv4 or IPv6) (0 if we don't care)?
|
2014-01-03 11:33:46 +08:00
|
|
|
* is_LAN = return some LAN ips (true or false)
|
|
|
|
* want_good = do we want tested nodes or not? (TODO)
|
|
|
|
*
|
|
|
|
* return the number of nodes returned.
|
|
|
|
*
|
|
|
|
*/
|
2014-06-11 06:35:55 +08:00
|
|
|
int get_close_nodes(const DHT *dht, const uint8_t *client_id, Node_format *nodes_list, sa_family_t sa_family,
|
|
|
|
uint8_t is_LAN, uint8_t want_good);
|
2014-01-03 11:33:46 +08:00
|
|
|
|
2014-01-16 09:47:26 +08:00
|
|
|
|
|
|
|
/* Put up to max_num nodes in nodes from the closelist.
|
|
|
|
*
|
|
|
|
* return the number of nodes.
|
|
|
|
*/
|
|
|
|
uint16_t closelist_nodes(DHT *dht, Node_format *nodes, uint16_t max_num);
|
|
|
|
|
2014-01-16 23:00:36 +08:00
|
|
|
/* Put up to max_num random nodes in nodes.
|
|
|
|
*
|
|
|
|
* return the number of nodes.
|
|
|
|
*
|
|
|
|
* NOTE:this is used to pick nodes for paths.
|
|
|
|
*/
|
2014-07-01 03:41:03 +08:00
|
|
|
uint16_t random_nodes_path(const DHT *dht, Node_format *nodes, uint16_t max_num);
|
2014-01-16 23:00:36 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Run this function at least a couple times per second (It's the main loop). */
|
2013-08-21 07:37:05 +08:00
|
|
|
void do_DHT(DHT *dht);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2013-09-12 02:50:15 +08:00
|
|
|
/*
|
|
|
|
* Use these two functions to bootstrap the client.
|
|
|
|
*/
|
|
|
|
/* Sends a "get nodes" request to the given node with ip, port and public_key
|
|
|
|
* to setup connections
|
2013-08-30 05:17:51 +08:00
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
void DHT_bootstrap(DHT *dht, IP_Port ip_port, const uint8_t *public_key);
|
2013-09-12 02:50:15 +08:00
|
|
|
/* Resolves address into an IP address. If successful, sends a "get nodes"
|
|
|
|
* request to the given node with ip, port and public_key to setup connections
|
|
|
|
*
|
|
|
|
* address can be a hostname or an IP address (IPv4 or IPv6).
|
|
|
|
* if ipv6enabled is 0 (zero), the resolving sticks STRICTLY to IPv4 addresses
|
|
|
|
* if ipv6enabled is not 0 (zero), the resolving looks for IPv6 addresses first,
|
|
|
|
* then IPv4 addresses.
|
2013-09-15 00:42:17 +08:00
|
|
|
*
|
2013-09-12 02:50:15 +08:00
|
|
|
* returns 1 if the address could be converted into an IP address
|
|
|
|
* returns 0 otherwise
|
|
|
|
*/
|
|
|
|
int DHT_bootstrap_from_address(DHT *dht, const char *address, uint8_t ipv6enabled,
|
2014-06-11 02:54:48 +08:00
|
|
|
uint16_t port, const uint8_t *public_key);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2014-09-10 00:34:39 +08:00
|
|
|
/* Start sending packets after DHT loaded_friends_list and loaded_clients_list are set.
|
|
|
|
*
|
|
|
|
* returns 0 if successful
|
|
|
|
* returns -1 otherwise
|
|
|
|
*/
|
|
|
|
int DHT_connect_after_load(DHT *dht);
|
2013-08-16 23:04:28 +08:00
|
|
|
|
2013-07-27 20:48:50 +08:00
|
|
|
/* ROUTING FUNCTIONS */
|
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Send the given packet to node with client_id.
|
2013-09-02 20:31:00 +08:00
|
|
|
*
|
|
|
|
* return -1 if failure.
|
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int route_packet(const DHT *dht, const uint8_t *client_id, const uint8_t *packet, uint32_t length);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Send the following packet to everyone who tells us they are connected to friend_id.
|
2013-09-02 20:31:00 +08:00
|
|
|
*
|
|
|
|
* return number of nodes it sent the packet to.
|
2013-08-30 05:17:51 +08:00
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int route_tofriend(const DHT *dht, const uint8_t *friend_id, const uint8_t *packet, uint32_t length);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2014-04-24 00:29:24 +08:00
|
|
|
/* Function to handle crypto packets.
|
|
|
|
*/
|
|
|
|
void cryptopacket_registerhandler(DHT *dht, uint8_t byte, cryptopacket_handler_callback cb, void *object);
|
|
|
|
|
2013-07-27 20:48:50 +08:00
|
|
|
/* NAT PUNCHING FUNCTIONS */
|
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Puts all the different ips returned by the nodes for a friend_id into array ip_portlist.
|
2013-09-02 20:31:00 +08:00
|
|
|
* ip_portlist must be at least MAX_FRIEND_CLIENTS big.
|
|
|
|
*
|
|
|
|
* returns number of ips returned.
|
2013-08-30 05:17:51 +08:00
|
|
|
* returns -1 if no such friend.
|
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int friend_ips(const DHT *dht, IP_Port *ip_portlist, const uint8_t *friend_id);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
|
|
|
/* SAVE/LOAD functions */
|
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Get the size of the DHT (for saving). */
|
2014-06-11 02:54:48 +08:00
|
|
|
uint32_t DHT_size(const DHT *dht);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Save the DHT in data where data is an array of size DHT_size(). */
|
2013-08-21 07:37:05 +08:00
|
|
|
void DHT_save(DHT *dht, uint8_t *data);
|
2013-07-27 20:48:50 +08:00
|
|
|
|
2013-11-11 06:57:24 +08:00
|
|
|
/* Load the DHT from data of size size.
|
|
|
|
*
|
|
|
|
* return -1 if failure.
|
|
|
|
* return 0 if success.
|
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int DHT_load(DHT *dht, const uint8_t *data, uint32_t length);
|
2013-11-11 06:57:24 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Initialize DHT. */
|
2014-04-23 23:35:40 +08:00
|
|
|
DHT *new_DHT(Networking_Core *net);
|
2013-08-21 00:08:55 +08:00
|
|
|
|
2013-08-21 07:37:05 +08:00
|
|
|
void kill_DHT(DHT *dht);
|
2013-08-10 07:30:18 +08:00
|
|
|
|
2013-09-02 20:31:00 +08:00
|
|
|
/* return 0 if we are not connected to the DHT.
|
|
|
|
* return 1 if we are.
|
2013-08-30 05:17:51 +08:00
|
|
|
*/
|
2014-06-11 02:54:48 +08:00
|
|
|
int DHT_isconnected(const DHT *dht);
|
2013-06-24 19:26:30 +08:00
|
|
|
|
2014-08-19 06:56:02 +08:00
|
|
|
/* return 0 if we are not connected or only connected to lan peers with the DHT.
|
|
|
|
* return 1 if we are.
|
|
|
|
*/
|
|
|
|
int DHT_non_lan_connected(const DHT *dht);
|
|
|
|
|
|
|
|
|
2014-06-11 02:54:48 +08:00
|
|
|
int addto_lists(DHT *dht, IP_Port ip_port, const uint8_t *client_id);
|
2013-07-23 06:06:24 +08:00
|
|
|
|
2013-07-20 11:00:10 +08:00
|
|
|
#endif
|
2013-11-15 02:05:36 +08:00
|
|
|
|