2020-03-12 09:10:33 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
* Copyright © 2016-2018 The TokTok team.
|
|
|
|
* Copyright © 2013 Tox project.
|
2017-01-14 23:46:31 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2020-03-12 09:10:33 +08:00
|
|
|
* Special bootstrap node only packets.
|
2014-02-02 07:45:37 +08:00
|
|
|
*
|
2020-03-12 09:10:33 +08:00
|
|
|
* Include it in your bootstrap node and use: bootstrap_set_callbacks() to enable.
|
2014-02-02 07:45:37 +08:00
|
|
|
*/
|
2016-01-01 13:19:35 +08:00
|
|
|
#include "bootstrap_node_packets.h"
|
2014-02-02 07:45:37 +08:00
|
|
|
|
2018-02-27 10:07:59 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
2014-02-02 07:45:37 +08:00
|
|
|
#define INFO_REQUEST_PACKET_LENGTH 78
|
|
|
|
|
|
|
|
static uint32_t bootstrap_version;
|
|
|
|
static uint8_t bootstrap_motd[MAX_MOTD_LENGTH];
|
|
|
|
static uint16_t bootstrap_motd_length;
|
|
|
|
|
|
|
|
/* To request this packet just send a packet of length INFO_REQUEST_PACKET_LENGTH
|
|
|
|
* with the first byte being BOOTSTRAP_INFO_PACKET_ID
|
|
|
|
*/
|
2016-08-17 17:52:04 +08:00
|
|
|
static int handle_info_request(void *object, IP_Port source, const uint8_t *packet, uint16_t length, void *userdata)
|
2014-02-02 07:45:37 +08:00
|
|
|
{
|
2016-09-01 02:12:19 +08:00
|
|
|
if (length != INFO_REQUEST_PACKET_LENGTH) {
|
2014-02-02 07:45:37 +08:00
|
|
|
return 1;
|
2016-09-01 02:12:19 +08:00
|
|
|
}
|
2014-02-02 07:45:37 +08:00
|
|
|
|
2016-09-18 08:31:55 +08:00
|
|
|
Networking_Core *nc = (Networking_Core *)object;
|
|
|
|
|
2014-02-02 07:45:37 +08:00
|
|
|
uint8_t data[1 + sizeof(bootstrap_version) + MAX_MOTD_LENGTH];
|
|
|
|
data[0] = BOOTSTRAP_INFO_PACKET_ID;
|
|
|
|
memcpy(data + 1, &bootstrap_version, sizeof(bootstrap_version));
|
|
|
|
uint16_t len = 1 + sizeof(bootstrap_version) + bootstrap_motd_length;
|
|
|
|
memcpy(data + 1 + sizeof(bootstrap_version), bootstrap_motd, bootstrap_motd_length);
|
|
|
|
|
2016-09-18 08:31:55 +08:00
|
|
|
if (sendpacket(nc, source, data, len) == len) {
|
2014-02-02 07:45:37 +08:00
|
|
|
return 0;
|
2016-09-01 02:12:19 +08:00
|
|
|
}
|
2014-02-02 07:45:37 +08:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bootstrap_set_callbacks(Networking_Core *net, uint32_t version, uint8_t *motd, uint16_t motd_length)
|
|
|
|
{
|
2016-09-01 02:12:19 +08:00
|
|
|
if (motd_length > MAX_MOTD_LENGTH) {
|
2014-02-02 07:45:37 +08:00
|
|
|
return -1;
|
2016-09-01 02:12:19 +08:00
|
|
|
}
|
2014-02-02 07:45:37 +08:00
|
|
|
|
2017-01-07 16:28:53 +08:00
|
|
|
bootstrap_version = net_htonl(version);
|
2014-02-02 07:45:37 +08:00
|
|
|
memcpy(bootstrap_motd, motd, motd_length);
|
|
|
|
bootstrap_motd_length = motd_length;
|
|
|
|
|
|
|
|
networking_registerhandler(net, BOOTSTRAP_INFO_PACKET_ID, &handle_info_request, net);
|
|
|
|
return 0;
|
|
|
|
}
|