2013-08-06 03:51:58 +08:00
|
|
|
/*
|
|
|
|
* ping.c -- Buffered pinging using cyclic arrays.
|
|
|
|
*
|
|
|
|
* This file is donated to the Tox Project.
|
|
|
|
* Copyright 2013 plutooo
|
2013-10-25 01:34:04 +08:00
|
|
|
*
|
2013-10-24 02:32:09 +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-10-25 01:34:04 +08:00
|
|
|
*
|
2013-08-06 03:51:58 +08:00
|
|
|
*/
|
|
|
|
|
2013-09-05 18:02:26 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-08-06 03:51:58 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
#include "DHT.h"
|
2013-11-15 02:05:36 +08:00
|
|
|
#include "ping.h"
|
|
|
|
|
|
|
|
#include "network.h"
|
|
|
|
#include "util.h"
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2014-01-26 10:09:26 +08:00
|
|
|
#define PING_NUM_MAX 512
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
/* Maximum newly announced nodes to ping per TIME_TO_PING seconds. */
|
2014-04-17 01:53:51 +08:00
|
|
|
#define MAX_TO_PING 8
|
2014-03-17 01:57:21 +08:00
|
|
|
|
|
|
|
/* Ping newly announced nodes to ping per TIME_TO_PING seconds*/
|
2014-04-17 01:53:51 +08:00
|
|
|
#define TIME_TO_PING 3
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-10-25 06:59:00 +08:00
|
|
|
typedef struct {
|
|
|
|
IP_Port ip_port;
|
|
|
|
uint64_t id;
|
|
|
|
uint64_t timestamp;
|
2014-03-03 08:46:47 +08:00
|
|
|
uint8_t shared_key[crypto_box_BEFORENMBYTES];
|
2013-10-25 06:59:00 +08:00
|
|
|
} pinged_t;
|
|
|
|
|
2013-12-02 04:06:20 +08:00
|
|
|
struct PING {
|
2014-01-18 02:35:40 +08:00
|
|
|
DHT *dht;
|
2013-09-21 21:39:15 +08:00
|
|
|
|
2013-08-21 02:47:32 +08:00
|
|
|
pinged_t pings[PING_NUM_MAX];
|
|
|
|
size_t num_pings;
|
|
|
|
size_t pos_pings;
|
2013-09-21 21:39:15 +08:00
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
Node_format to_ping[MAX_TO_PING];
|
|
|
|
uint64_t last_to_ping;
|
2013-12-02 04:06:20 +08:00
|
|
|
};
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-11-15 02:05:36 +08:00
|
|
|
static int is_ping_timeout(uint64_t time)
|
2013-08-06 08:35:47 +08:00
|
|
|
{
|
2013-10-25 04:32:28 +08:00
|
|
|
return is_timeout(time, PING_TIMEOUT);
|
2013-08-06 03:51:58 +08:00
|
|
|
}
|
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
static void remove_timeouts(PING *ping) // O(n)
|
2013-08-06 08:35:47 +08:00
|
|
|
{
|
|
|
|
size_t i, id;
|
2013-09-21 21:39:15 +08:00
|
|
|
size_t new_pos = ping->pos_pings;
|
|
|
|
size_t new_num = ping->num_pings;
|
2013-08-06 08:35:47 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
// Loop through buffer, oldest first.
|
2013-09-21 21:39:15 +08:00
|
|
|
for (i = 0; i < ping->num_pings; i++) {
|
|
|
|
id = (ping->pos_pings + i) % PING_NUM_MAX;
|
2013-08-06 08:35:47 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
if (is_ping_timeout(ping->pings[id].timestamp)) {
|
2013-08-06 08:35:47 +08:00
|
|
|
new_pos++;
|
|
|
|
new_num--;
|
|
|
|
}
|
|
|
|
// Break here because list is sorted.
|
2013-08-06 06:04:38 +08:00
|
|
|
else {
|
2013-08-06 08:35:47 +08:00
|
|
|
break;
|
2013-08-06 06:04:38 +08:00
|
|
|
}
|
2013-08-06 03:51:58 +08:00
|
|
|
}
|
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
ping->num_pings = new_num;
|
|
|
|
ping->pos_pings = new_pos % PING_NUM_MAX;
|
2013-08-06 03:51:58 +08:00
|
|
|
}
|
|
|
|
|
2014-03-03 08:46:47 +08:00
|
|
|
static uint64_t add_ping(PING *ping, IP_Port ipp, uint8_t *shared_encryption_key) // O(n)
|
2013-08-06 08:35:47 +08:00
|
|
|
{
|
|
|
|
size_t p;
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-08-21 02:47:32 +08:00
|
|
|
remove_timeouts(ping);
|
2013-08-06 08:35:47 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Remove oldest ping if full buffer. */
|
2013-09-21 21:39:15 +08:00
|
|
|
if (ping->num_pings == PING_NUM_MAX) {
|
|
|
|
ping->num_pings--;
|
|
|
|
ping->pos_pings = (ping->pos_pings + 1) % PING_NUM_MAX;
|
2013-08-06 08:35:47 +08:00
|
|
|
}
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-08-30 05:17:51 +08:00
|
|
|
/* Insert new ping at end of list. */
|
2013-09-21 21:39:15 +08:00
|
|
|
p = (ping->pos_pings + ping->num_pings) % PING_NUM_MAX;
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
ping->pings[p].ip_port = ipp;
|
2013-10-25 04:32:28 +08:00
|
|
|
ping->pings[p].timestamp = unix_time();
|
2013-09-21 21:39:15 +08:00
|
|
|
ping->pings[p].id = random_64b();
|
2014-03-03 08:46:47 +08:00
|
|
|
memcpy(ping->pings[p].shared_key, shared_encryption_key, crypto_box_BEFORENMBYTES);
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
ping->num_pings++;
|
|
|
|
return ping->pings[p].id;
|
2013-08-06 03:51:58 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 21:50:46 +08:00
|
|
|
/* checks if ip/port or ping_id are already in the list to ping
|
|
|
|
* if both are set, both must match, otherwise the set must match
|
|
|
|
*
|
|
|
|
* returns 0 if neither is set or no match was found
|
|
|
|
* returns the (index + 1) of the match if one was found
|
|
|
|
*/
|
|
|
|
static int is_pinging(PING *ping, IP_Port ipp, uint64_t ping_id)
|
2013-08-06 08:35:47 +08:00
|
|
|
{
|
2013-11-06 21:50:46 +08:00
|
|
|
// O(n) TODO: Replace this with something else.
|
2013-08-21 07:37:05 +08:00
|
|
|
|
2013-11-06 21:50:46 +08:00
|
|
|
/* at least one MUST be set */
|
|
|
|
uint8_t ip_valid = ip_isset(&ipp.ip);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-11-06 21:50:46 +08:00
|
|
|
if (!ip_valid && !ping_id)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
size_t i;
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-08-21 02:47:32 +08:00
|
|
|
remove_timeouts(ping);
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
for (i = 0; i < ping->num_pings; i++) {
|
2013-11-06 21:50:46 +08:00
|
|
|
size_t id = (ping->pos_pings + i) % PING_NUM_MAX;
|
2013-08-06 03:51:58 +08:00
|
|
|
|
2013-11-06 21:50:46 +08:00
|
|
|
if (!ping_id || (ping->pings[id].id == ping_id))
|
|
|
|
if (!ip_valid || ipport_equal(&ping->pings[id].ip_port, &ipp))
|
|
|
|
return id + 1;
|
2013-08-06 03:51:58 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 21:50:46 +08:00
|
|
|
return 0;
|
2013-08-06 03:51:58 +08:00
|
|
|
}
|
2013-08-06 06:04:38 +08:00
|
|
|
|
2013-10-25 01:34:04 +08:00
|
|
|
#define DHT_PING_SIZE (1 + CLIENT_ID_SIZE + crypto_box_NONCEBYTES + sizeof(uint64_t) + crypto_box_MACBYTES)
|
2013-08-30 07:06:09 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
int send_ping_request(PING *ping, IP_Port ipp, uint8_t *client_id)
|
2013-08-06 06:04:38 +08:00
|
|
|
{
|
2013-08-30 07:06:09 +08:00
|
|
|
uint8_t pk[DHT_PING_SIZE];
|
2013-08-06 06:04:38 +08:00
|
|
|
int rc;
|
|
|
|
uint64_t ping_id;
|
|
|
|
|
2014-01-18 02:35:40 +08:00
|
|
|
if (is_pinging(ping, ipp, 0) || id_equal(client_id, ping->dht->self_public_key))
|
2013-08-06 06:04:38 +08:00
|
|
|
return 1;
|
|
|
|
|
2014-03-03 08:46:47 +08:00
|
|
|
uint8_t shared_key[crypto_box_BEFORENMBYTES];
|
|
|
|
|
|
|
|
// generate key to encrypt ping_id with recipient privkey
|
2014-03-06 05:54:17 +08:00
|
|
|
DHT_get_shared_key_sent(ping->dht, shared_key, client_id);
|
2013-08-30 05:17:51 +08:00
|
|
|
// Generate random ping_id.
|
2014-03-03 08:46:47 +08:00
|
|
|
ping_id = add_ping(ping, ipp, shared_key);
|
2013-08-06 06:04:38 +08:00
|
|
|
|
2013-08-30 07:06:09 +08:00
|
|
|
pk[0] = NET_PACKET_PING_REQUEST;
|
2014-01-18 02:35:40 +08:00
|
|
|
id_copy(pk + 1, ping->dht->self_public_key); // Our pubkey
|
2013-09-13 22:42:14 +08:00
|
|
|
new_nonce(pk + 1 + CLIENT_ID_SIZE); // Generate new nonce
|
2013-08-06 06:04:38 +08:00
|
|
|
|
2014-03-03 08:46:47 +08:00
|
|
|
|
|
|
|
rc = encrypt_data_fast(shared_key,
|
|
|
|
pk + 1 + CLIENT_ID_SIZE,
|
|
|
|
(uint8_t *) &ping_id, sizeof(ping_id),
|
|
|
|
pk + 1 + CLIENT_ID_SIZE + crypto_box_NONCEBYTES);
|
2013-08-06 06:04:38 +08:00
|
|
|
|
2013-10-25 01:34:04 +08:00
|
|
|
if (rc != sizeof(ping_id) + crypto_box_MACBYTES)
|
2013-08-06 06:04:38 +08:00
|
|
|
return 1;
|
|
|
|
|
2014-01-18 02:35:40 +08:00
|
|
|
return sendpacket(ping->dht->net, ipp, pk, sizeof(pk));
|
2013-08-06 06:04:38 +08:00
|
|
|
}
|
|
|
|
|
2014-03-02 10:18:53 +08:00
|
|
|
static int send_ping_response(PING *ping, IP_Port ipp, uint8_t *client_id, uint64_t ping_id,
|
|
|
|
uint8_t *shared_encryption_key)
|
2013-08-06 06:04:38 +08:00
|
|
|
{
|
2013-08-30 07:06:09 +08:00
|
|
|
uint8_t pk[DHT_PING_SIZE];
|
2013-08-06 06:04:38 +08:00
|
|
|
int rc;
|
|
|
|
|
2014-01-18 02:35:40 +08:00
|
|
|
if (id_equal(client_id, ping->dht->self_public_key))
|
2013-08-06 06:04:38 +08:00
|
|
|
return 1;
|
|
|
|
|
2013-08-30 07:06:09 +08:00
|
|
|
pk[0] = NET_PACKET_PING_RESPONSE;
|
2014-01-18 02:35:40 +08:00
|
|
|
id_copy(pk + 1, ping->dht->self_public_key); // Our pubkey
|
2013-09-13 22:42:14 +08:00
|
|
|
new_nonce(pk + 1 + CLIENT_ID_SIZE); // Generate new nonce
|
2013-08-06 06:04:38 +08:00
|
|
|
|
2013-08-30 07:06:09 +08:00
|
|
|
// Encrypt ping_id using recipient privkey
|
2014-03-02 10:18:53 +08:00
|
|
|
rc = encrypt_data_fast(shared_encryption_key,
|
|
|
|
pk + 1 + CLIENT_ID_SIZE,
|
|
|
|
(uint8_t *) &ping_id, sizeof(ping_id),
|
|
|
|
pk + 1 + CLIENT_ID_SIZE + crypto_box_NONCEBYTES );
|
2013-08-06 06:04:38 +08:00
|
|
|
|
2013-10-25 01:34:04 +08:00
|
|
|
if (rc != sizeof(ping_id) + crypto_box_MACBYTES)
|
2013-08-06 06:04:38 +08:00
|
|
|
return 1;
|
|
|
|
|
2014-01-18 02:35:40 +08:00
|
|
|
return sendpacket(ping->dht->net, ipp, pk, sizeof(pk));
|
2013-08-06 03:51:58 +08:00
|
|
|
}
|
2013-08-07 04:09:14 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
static int handle_ping_request(void *_dht, IP_Port source, uint8_t *packet, uint32_t length)
|
2013-08-07 04:09:14 +08:00
|
|
|
{
|
2013-09-21 21:39:15 +08:00
|
|
|
DHT *dht = _dht;
|
2013-08-07 04:09:14 +08:00
|
|
|
int rc;
|
|
|
|
uint64_t ping_id;
|
|
|
|
|
2013-08-30 07:06:09 +08:00
|
|
|
if (length != DHT_PING_SIZE)
|
|
|
|
return 1;
|
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
PING *ping = dht->ping;
|
2013-09-25 22:07:07 +08:00
|
|
|
|
2014-01-18 02:35:40 +08:00
|
|
|
if (id_equal(packet + 1, ping->dht->self_public_key))
|
2013-08-07 04:09:14 +08:00
|
|
|
return 1;
|
|
|
|
|
2014-03-02 10:18:53 +08:00
|
|
|
uint8_t shared_key[crypto_box_BEFORENMBYTES];
|
|
|
|
|
2013-08-30 07:06:09 +08:00
|
|
|
// Decrypt ping_id
|
2014-03-06 05:54:17 +08:00
|
|
|
DHT_get_shared_key_recv(dht, shared_key, packet + 1);
|
2014-03-02 10:18:53 +08:00
|
|
|
rc = decrypt_data_fast(shared_key,
|
|
|
|
packet + 1 + CLIENT_ID_SIZE,
|
|
|
|
packet + 1 + CLIENT_ID_SIZE + crypto_box_NONCEBYTES,
|
|
|
|
sizeof(ping_id) + crypto_box_MACBYTES,
|
|
|
|
(uint8_t *) &ping_id );
|
2013-08-07 04:09:14 +08:00
|
|
|
|
|
|
|
if (rc != sizeof(ping_id))
|
|
|
|
return 1;
|
|
|
|
|
2013-08-30 07:06:09 +08:00
|
|
|
// Send response
|
2014-03-02 10:18:53 +08:00
|
|
|
send_ping_response(ping, source, packet + 1, ping_id, shared_key);
|
2014-03-17 01:57:21 +08:00
|
|
|
add_to_ping(ping, packet + 1, source);
|
2013-08-07 04:09:14 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
static int handle_ping_response(void *_dht, IP_Port source, uint8_t *packet, uint32_t length)
|
2013-08-07 04:09:14 +08:00
|
|
|
{
|
2013-09-21 21:39:15 +08:00
|
|
|
DHT *dht = _dht;
|
2013-08-07 04:09:14 +08:00
|
|
|
int rc;
|
|
|
|
uint64_t ping_id;
|
|
|
|
|
2013-08-30 07:06:09 +08:00
|
|
|
if (length != DHT_PING_SIZE)
|
|
|
|
return 1;
|
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
PING *ping = dht->ping;
|
2013-09-25 22:07:07 +08:00
|
|
|
|
2014-01-18 02:35:40 +08:00
|
|
|
if (id_equal(packet + 1, ping->dht->self_public_key))
|
2013-08-07 04:09:14 +08:00
|
|
|
return 1;
|
|
|
|
|
2014-03-03 08:46:47 +08:00
|
|
|
int ping_index = is_pinging(ping, source, 0);
|
|
|
|
|
|
|
|
if (!ping_index)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
--ping_index;
|
2013-08-30 07:06:09 +08:00
|
|
|
// Decrypt ping_id
|
2014-03-03 08:46:47 +08:00
|
|
|
rc = decrypt_data_fast(ping->pings[ping_index].shared_key,
|
|
|
|
packet + 1 + CLIENT_ID_SIZE,
|
|
|
|
packet + 1 + CLIENT_ID_SIZE + crypto_box_NONCEBYTES,
|
|
|
|
sizeof(ping_id) + crypto_box_MACBYTES,
|
|
|
|
(uint8_t *) &ping_id);
|
2013-08-07 04:09:14 +08:00
|
|
|
|
|
|
|
if (rc != sizeof(ping_id))
|
|
|
|
return 1;
|
|
|
|
|
2014-03-03 08:46:47 +08:00
|
|
|
if (ping->pings[ping_index].id != ping_id)
|
2013-08-07 04:09:14 +08:00
|
|
|
return 1;
|
|
|
|
|
2013-12-09 08:48:18 +08:00
|
|
|
addto_lists(dht, source, packet + 1);
|
2013-11-15 02:05:36 +08:00
|
|
|
|
2013-08-07 04:09:14 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2013-09-21 21:39:15 +08:00
|
|
|
|
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
/* Add nodes to the to_ping list.
|
|
|
|
* All nodes in this list are pinged every TIME_TO_PING seconds
|
2013-09-21 21:39:15 +08:00
|
|
|
* and are then removed from the list.
|
|
|
|
* If the list is full the nodes farthest from our client_id are replaced.
|
|
|
|
* The purpose of this list is to enable quick integration of new nodes into the
|
|
|
|
* network while preventing amplification attacks.
|
|
|
|
*
|
|
|
|
* return 0 if node was added.
|
|
|
|
* return -1 if node was not added.
|
|
|
|
*/
|
2014-03-17 01:57:21 +08:00
|
|
|
int add_to_ping(PING *ping, uint8_t *client_id, IP_Port ip_port)
|
2013-09-21 21:39:15 +08:00
|
|
|
{
|
|
|
|
if (!ip_isset(&ip_port.ip))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
uint32_t i;
|
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
for (i = 0; i < MAX_TO_PING; ++i) {
|
|
|
|
if (!ip_isset(&ping->to_ping[i].ip_port.ip)) {
|
|
|
|
memcpy(ping->to_ping[i].client_id, client_id, CLIENT_ID_SIZE);
|
|
|
|
ipport_copy(&ping->to_ping[i].ip_port, &ip_port);
|
2013-09-21 21:39:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2014-04-17 01:53:51 +08:00
|
|
|
|
|
|
|
if (memcmp(ping->to_ping[i].client_id, client_id, CLIENT_ID_SIZE) == 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-09-21 21:39:15 +08:00
|
|
|
}
|
|
|
|
|
2014-04-17 01:53:51 +08:00
|
|
|
uint32_t r = rand();
|
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
for (i = 0; i < MAX_TO_PING; ++i) {
|
2014-04-17 01:53:51 +08:00
|
|
|
if (id_closest(ping->dht->self_public_key, ping->to_ping[(i + r) % MAX_TO_PING].client_id, client_id) == 2) {
|
|
|
|
memcpy(ping->to_ping[(i + r) % MAX_TO_PING].client_id, client_id, CLIENT_ID_SIZE);
|
|
|
|
ipport_copy(&ping->to_ping[(i + r) % MAX_TO_PING].ip_port, &ip_port);
|
2013-09-21 21:39:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
/* Ping all the valid nodes in the to_ping list every TIME_TO_PING seconds.
|
|
|
|
* This function must be run at least once every TIME_TO_PING seconds.
|
2013-09-21 21:39:15 +08:00
|
|
|
*/
|
2014-03-17 01:57:21 +08:00
|
|
|
void do_to_ping(PING *ping)
|
2013-09-21 21:39:15 +08:00
|
|
|
{
|
2014-03-17 01:57:21 +08:00
|
|
|
if (!is_timeout(ping->last_to_ping, TIME_TO_PING))
|
2013-09-21 21:39:15 +08:00
|
|
|
return;
|
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
ping->last_to_ping = unix_time();
|
2013-09-21 21:39:15 +08:00
|
|
|
uint32_t i;
|
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
for (i = 0; i < MAX_TO_PING; ++i) {
|
|
|
|
if (!ip_isset(&ping->to_ping[i].ip_port.ip))
|
2013-09-21 21:39:15 +08:00
|
|
|
return;
|
|
|
|
|
2014-03-17 01:57:21 +08:00
|
|
|
send_ping_request(ping, ping->to_ping[i].ip_port, ping->to_ping[i].client_id);
|
|
|
|
ip_reset(&ping->to_ping[i].ip_port.ip);
|
2013-09-21 21:39:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-18 02:35:40 +08:00
|
|
|
PING *new_ping(DHT *dht)
|
2013-09-21 21:39:15 +08:00
|
|
|
{
|
|
|
|
PING *ping = calloc(1, sizeof(PING));
|
2013-09-25 22:07:07 +08:00
|
|
|
|
2013-09-21 21:39:15 +08:00
|
|
|
if (ping == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2014-01-18 02:35:40 +08:00
|
|
|
ping->dht = dht;
|
|
|
|
networking_registerhandler(ping->dht->net, NET_PACKET_PING_REQUEST, &handle_ping_request, dht);
|
|
|
|
networking_registerhandler(ping->dht->net, NET_PACKET_PING_RESPONSE, &handle_ping_response, dht);
|
2013-09-21 21:39:15 +08:00
|
|
|
|
|
|
|
return ping;
|
|
|
|
}
|
|
|
|
|
|
|
|
void kill_ping(PING *ping)
|
|
|
|
{
|
2014-01-18 02:35:40 +08:00
|
|
|
networking_registerhandler(ping->dht->net, NET_PACKET_PING_REQUEST, NULL, NULL);
|
|
|
|
networking_registerhandler(ping->dht->net, NET_PACKET_PING_RESPONSE, NULL, NULL);
|
2013-09-21 21:39:15 +08:00
|
|
|
|
|
|
|
free(ping);
|
|
|
|
}
|