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"
26 #include "splay_tree.h"
32 static void nop_probe(void) {
36 static void keyrotate_nop_probe(int stage) {
41 static void inviter_commits_first_nop_probe(bool stage) {
46 static void sptps_renewal_nop_probe(meshlink_node_t *node) {
51 void (*devtool_trybind_probe)(void) = nop_probe;
52 void (*devtool_keyrotate_probe)(int stage) = keyrotate_nop_probe;
53 void (*devtool_set_inviter_commits_first)(bool inviter_commited_first) = inviter_commits_first_nop_probe;
54 void (*devtool_sptps_renewal_probe)(meshlink_node_t *node) = sptps_renewal_nop_probe;
56 meshlink_handle_t *devtool_open_in_netns(const char *confbase, const char *name, const char *appname, dev_class_t devclass, int netns) {
57 meshlink_open_params_t *params = meshlink_open_params_init(confbase, name, appname, devclass);
58 params->netns = dup(netns);
59 meshlink_handle_t *handle;
61 if(params->netns == -1) {
63 meshlink_errno = MESHLINK_EINVAL;
65 handle = meshlink_open_ex(params);
68 meshlink_open_params_free(params);
73 void devtool_force_sptps_renewal(meshlink_handle_t *mesh, meshlink_node_t *node) {
75 meshlink_errno = MESHLINK_EINVAL;
79 node_t *n = (node_t *)node;
80 connection_t *c = n->connection;
83 c->last_key_renewal = -3600;
87 void devtool_set_meta_status_cb(meshlink_handle_t *mesh, meshlink_node_status_cb_t cb) {
89 meshlink_errno = MESHLINK_EINVAL;
93 if(pthread_mutex_lock(&mesh->mutex) != 0) {
97 mesh->meta_status_cb = cb;
98 pthread_mutex_unlock(&mesh->mutex);