2 devtools.c -- Debugging and quality control functions.
3 Copyright (C) 2014, 2017 Guus Sliepen <guus@meshlink.io>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "meshlink_internal.h"
27 #include "splay_tree.h"
33 static void trybind_nop_probe(void) {
37 static void keyrotate_nop_probe(int stage) {
42 void (*devtool_trybind_probe)(void) = trybind_nop_probe;
43 void (*devtool_keyrotate_probe)(int stage) = keyrotate_nop_probe;
45 /* Return an array of edges in the current network graph.
46 * Data captures the current state and will not be updated.
47 * Caller must deallocate data when done.
49 devtool_edge_t *devtool_get_all_edges(meshlink_handle_t *mesh, devtool_edge_t *edges, size_t *nmemb) {
50 if(!mesh || !nmemb || (*nmemb && !edges)) {
51 meshlink_errno = MESHLINK_EINVAL;
55 pthread_mutex_lock(&(mesh->mesh_mutex));
57 devtool_edge_t *result = NULL;
58 unsigned int result_size = 0;
60 result_size = mesh->edges->count / 2;
62 // if result is smaller than edges, we have to dealloc all the excess devtool_edge_t
63 if((size_t)result_size > *nmemb) {
64 result = realloc(edges, result_size * sizeof(*result));
70 devtool_edge_t *p = result;
73 for splay_each(edge_t, e, mesh->edges) {
74 // skip edges that do not represent a two-directional connection
75 if((!e->reverse) || (e->reverse->to != e->from)) {
79 // don't count edges twice
84 assert(n < result_size);
86 p->from = (meshlink_node_t *)e->from;
87 p->to = (meshlink_node_t *)e->to;
88 p->address = e->address.storage;
89 p->options = e->options;
90 p->weight = e->weight;
96 // shrink result to the actual amount of memory used
97 result = realloc(result, n * sizeof(*result));
101 meshlink_errno = MESHLINK_ENOMEM;
104 pthread_mutex_unlock(&(mesh->mesh_mutex));
109 static bool fstrwrite(const char *str, FILE *stream) {
110 size_t len = strlen(str);
112 if(fwrite((void *)str, 1, len, stream) != len) {
119 static const char *__itoa(int value) {
120 static char buffer[sizeof(int) * 8 + 1]; // not thread safe
122 if(snprintf(buffer, sizeof(buffer), "%d", value) == -1) {
129 bool devtool_export_json_all_edges_state(meshlink_handle_t *mesh, FILE *stream) {
132 pthread_mutex_lock(&(mesh->mesh_mutex));
134 // export edges and nodes
135 size_t node_count = 0;
136 size_t edge_count = 0;
138 meshlink_node_t **nodes = meshlink_get_all_nodes(mesh, NULL, &node_count);
139 devtool_edge_t *edges = devtool_get_all_edges(mesh, NULL, &edge_count);
141 if((!nodes && node_count != 0) || (!edges && edge_count != 0)) {
146 if(!fstrwrite("{\n", stream)) {
151 if(!fstrwrite("\t\"nodes\": {\n", stream)) {
155 for(size_t i = 0; i < node_count; ++i) {
156 if(!fstrwrite("\t\t\"", stream) || !fstrwrite(((node_t *)nodes[i])->name, stream) || !fstrwrite("\": {\n", stream)) {
160 if(!fstrwrite("\t\t\t\"name\": \"", stream) || !fstrwrite(((node_t *)nodes[i])->name, stream) || !fstrwrite("\",\n", stream)) {
164 if(!fstrwrite("\t\t\t\"options\": ", stream) || !fstrwrite(__itoa(((node_t *)nodes[i])->options), stream) || !fstrwrite(",\n", stream)) {
168 if(!fstrwrite("\t\t\t\"devclass\": ", stream) || !fstrwrite(__itoa(((node_t *)nodes[i])->devclass), stream) || !fstrwrite("\n", stream)) {
172 if(!fstrwrite((i + 1) != node_count ? "\t\t},\n" : "\t\t}\n", stream)) {
177 if(!fstrwrite("\t},\n", stream)) {
183 if(!fstrwrite("\t\"edges\": {\n", stream)) {
187 for(size_t i = 0; i < edge_count; ++i) {
188 if(!fstrwrite("\t\t\"", stream) || !fstrwrite(edges[i].from->name, stream) || !fstrwrite("_to_", stream) || !fstrwrite(edges[i].to->name, stream) || !fstrwrite("\": {\n", stream)) {
192 if(!fstrwrite("\t\t\t\"from\": \"", stream) || !fstrwrite(edges[i].from->name, stream) || !fstrwrite("\",\n", stream)) {
196 if(!fstrwrite("\t\t\t\"to\": \"", stream) || !fstrwrite(edges[i].to->name, stream) || !fstrwrite("\",\n", stream)) {
200 char *host = NULL, *port = NULL, *address = NULL;
201 sockaddr2str((const sockaddr_t *)&edges[i].address, &host, &port);
204 xasprintf(&address, "{ \"host\": \"%s\", \"port\": %s }", host, port);
210 if(!fstrwrite("\t\t\t\"address\": ", stream) || !fstrwrite(address ? address : "null", stream) || !fstrwrite(",\n", stream)) {
217 if(!fstrwrite("\t\t\t\"options\": ", stream) || !fstrwrite(__itoa(edges[i].options), stream) || !fstrwrite(",\n", stream)) {
221 if(!fstrwrite("\t\t\t\"weight\": ", stream) || !fstrwrite(__itoa(edges[i].weight), stream) || !fstrwrite("\n", stream)) {
225 if(!fstrwrite((i + 1) != edge_count ? "\t\t},\n" : "\t\t}\n", stream)) {
230 if(!fstrwrite("\t}\n", stream)) {
236 if(!fstrwrite("}", stream)) {
249 pthread_mutex_unlock(&(mesh->mesh_mutex));
254 void devtool_get_node_status(meshlink_handle_t *mesh, meshlink_node_t *node, devtool_node_status_t *status) {
255 if(!mesh || !node || !status) {
256 meshlink_errno = MESHLINK_EINVAL;
260 node_t *internal = (node_t *)node;
262 pthread_mutex_lock(&mesh->mesh_mutex);
264 status->options = internal->options;
265 memcpy(&status->status, &internal->status, sizeof status->status);
266 memcpy(&status->address, &internal->address, sizeof status->address);
267 status->mtu = internal->mtu;
268 status->minmtu = internal->minmtu;
269 status->maxmtu = internal->maxmtu;
270 status->mtuprobes = internal->mtuprobes;
271 status->in_packets = internal->in_packets;
272 status->in_bytes = internal->in_bytes;
273 status->out_packets = internal->out_packets;
274 status->out_bytes = internal->out_bytes;
276 // Derive UDP connection status
277 if(internal == mesh->self) {
278 status->udp_status = DEVTOOL_UDP_WORKING;
279 } else if(!internal->status.reachable) {
280 status->udp_status = DEVTOOL_UDP_IMPOSSIBLE;
281 } else if(!internal->status.validkey) {
282 status->udp_status = DEVTOOL_UDP_UNKNOWN;
283 } else if(internal->status.udp_confirmed) {
284 status->udp_status = DEVTOOL_UDP_WORKING;
285 } else if(internal->mtuprobes > 30) {
286 status->udp_status = DEVTOOL_UDP_FAILED;
287 } else if(internal->mtuprobes > 0) {
288 status->udp_status = DEVTOOL_UDP_TRYING;
290 status->udp_status = DEVTOOL_UDP_UNKNOWN;
293 pthread_mutex_unlock(&mesh->mesh_mutex);
296 meshlink_submesh_t **devtool_get_all_submeshes(meshlink_handle_t *mesh, meshlink_submesh_t **submeshes, size_t *nmemb) {
297 if(!mesh || !nmemb || (*nmemb && !submeshes)) {
298 meshlink_errno = MESHLINK_EINVAL;
302 meshlink_submesh_t **result;
305 pthread_mutex_lock(&(mesh->mesh_mutex));
307 *nmemb = mesh->submeshes->count;
308 result = realloc(submeshes, *nmemb * sizeof(*submeshes));
311 meshlink_submesh_t **p = result;
313 for list_each(submesh_t, s, mesh->submeshes) {
314 *p++ = (meshlink_submesh_t *)s;
319 meshlink_errno = MESHLINK_ENOMEM;
322 pthread_mutex_unlock(&(mesh->mesh_mutex));
326 meshlink_handle_t *devtool_open_in_netns(const char *confbase, const char *name, const char *appname, dev_class_t devclass, int netns) {
327 meshlink_open_params_t *params = meshlink_open_params_init(confbase, name, appname, devclass);
328 params->netns = dup(netns);
329 meshlink_handle_t *handle;
331 if(params->netns == -1) {
333 meshlink_errno = MESHLINK_EINVAL;
335 handle = meshlink_open_ex(params);
338 meshlink_open_params_free(params);