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 nop_probe(void) {
37 static void keyrotate_nop_probe(int stage) {
42 static void inviter_commits_first_nop_probe(bool stage) {
47 static void sptps_renewal_nop_probe(meshlink_node_t *node) {
52 void (*devtool_trybind_probe)(void) = nop_probe;
53 void (*devtool_keyrotate_probe)(int stage) = keyrotate_nop_probe;
54 void (*devtool_set_inviter_commits_first)(bool inviter_commited_first) = inviter_commits_first_nop_probe;
55 void (*devtool_adns_resolve_probe)(void) = nop_probe;
56 void (*devtool_sptps_renewal_probe)(meshlink_node_t *node) = sptps_renewal_nop_probe;
58 void devtool_get_node_status(meshlink_handle_t *mesh, meshlink_node_t *node, devtool_node_status_t *status) {
59 if(!mesh || !node || !status) {
60 meshlink_errno = MESHLINK_EINVAL;
64 node_t *internal = (node_t *)node;
66 if(pthread_mutex_lock(&mesh->mutex) != 0) {
70 memcpy(&status->status, &internal->status, sizeof status->status);
71 memcpy(&status->address, &internal->address, sizeof status->address);
72 status->mtu = internal->mtu;
73 status->minmtu = internal->minmtu;
74 status->maxmtu = internal->maxmtu;
75 status->mtuprobes = internal->mtuprobes;
76 status->in_packets = internal->in_packets;
77 status->in_bytes = internal->in_bytes;
78 status->out_packets = internal->out_packets;
79 status->out_bytes = internal->out_bytes;
81 // Derive UDP connection status
82 if(internal == mesh->self) {
83 status->udp_status = DEVTOOL_UDP_WORKING;
84 } else if(!internal->status.reachable) {
85 status->udp_status = DEVTOOL_UDP_IMPOSSIBLE;
86 } else if(!internal->status.validkey) {
87 status->udp_status = DEVTOOL_UDP_UNKNOWN;
88 } else if(internal->status.udp_confirmed) {
89 status->udp_status = DEVTOOL_UDP_WORKING;
90 } else if(internal->mtuprobes > 30) {
91 status->udp_status = DEVTOOL_UDP_FAILED;
92 } else if(internal->mtuprobes > 0) {
93 status->udp_status = DEVTOOL_UDP_TRYING;
95 status->udp_status = DEVTOOL_UDP_UNKNOWN;
98 pthread_mutex_unlock(&mesh->mutex);
101 meshlink_submesh_t **devtool_get_all_submeshes(meshlink_handle_t *mesh, meshlink_submesh_t **submeshes, size_t *nmemb) {
102 if(!mesh || !nmemb || (*nmemb && !submeshes)) {
103 meshlink_errno = MESHLINK_EINVAL;
107 meshlink_submesh_t **result;
110 if(pthread_mutex_lock(&mesh->mutex) != 0) {
114 *nmemb = mesh->submeshes->count;
115 result = realloc(submeshes, *nmemb * sizeof(*submeshes));
118 meshlink_submesh_t **p = result;
120 for list_each(submesh_t, s, mesh->submeshes) {
121 *p++ = (meshlink_submesh_t *)s;
126 meshlink_errno = MESHLINK_ENOMEM;
129 pthread_mutex_unlock(&mesh->mutex);
134 meshlink_handle_t *devtool_open_in_netns(const char *confbase, const char *name, const char *appname, dev_class_t devclass, int netns) {
135 meshlink_open_params_t *params = meshlink_open_params_init(confbase, name, appname, devclass);
136 params->netns = dup(netns);
137 meshlink_handle_t *handle;
139 if(params->netns == -1) {
141 meshlink_errno = MESHLINK_EINVAL;
143 handle = meshlink_open_ex(params);
146 meshlink_open_params_free(params);
151 void devtool_force_sptps_renewal(meshlink_handle_t *mesh, meshlink_node_t *node) {
153 meshlink_errno = MESHLINK_EINVAL;
157 node_t *n = (node_t *)node;
158 connection_t *c = n->connection;
160 n->last_req_key = -3600;
163 c->last_key_renewal = -3600;
167 void devtool_set_meta_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
169 meshlink_errno = MESHLINK_EINVAL;
173 if(pthread_mutex_lock(&mesh->mutex) != 0) {
177 mesh->meta_status_cb = cb;
178 pthread_mutex_unlock(&mesh->mutex);