]> git.meshlink.io Git - meshlink-tiny/blob - src/devtools.h
c9335cf5450d00ca5366d4ffaef9563dafd4f50f
[meshlink-tiny] / src / devtools.h
1 #ifndef MESHLINK_DEVTOOLS_H
2 #define MESHLINK_DEVTOOLS_H
3
4 /*
5     devtools.h -- header for devtools.h
6     Copyright (C) 2014, 2017 Guus Sliepen <guus@meshlink.io>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License along
19     with this program; if not, write to the Free Software Foundation, Inc.,
20     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 /// \file devtools.h
24 /** This header files declares functions that are only intended for debugging and quality control.
25  *  They are not necessary for the normal operation of MeshLink.
26  *  Applications should not depend on any of these functions for their normal operation.
27  */
28
29 /// The status of a node.
30 typedef struct devtool_node_status devtool_node_status_t;
31
32 /// The status of a node.
33 struct devtool_node_status {
34         uint32_t status;
35         struct sockaddr_storage address;
36         uint16_t mtu;
37         uint16_t minmtu;
38         uint16_t maxmtu;
39         int mtuprobes;
40         enum {
41                 DEVTOOL_UDP_FAILED = -2,     /// UDP tried but failed
42                 DEVTOOL_UDP_IMPOSSIBLE = -1, /// UDP not possible (node unreachable)
43                 DEVTOOL_UDP_UNKNOWN = 0,     /// UDP status not known (never tried to communicate with the node)
44                 DEVTOOL_UDP_TRYING,          /// UDP detection in progress
45                 DEVTOOL_UDP_WORKING,         /// UDP communication established
46         } udp_status;
47         uint64_t in_packets;
48         uint64_t in_bytes;
49         uint64_t out_packets;
50         uint64_t out_bytes;
51 };
52
53 /// Get the status of a node.
54 /** This function returns a struct containing extra information about a node.
55  *  The information is a snapshot taken at call time.
56  *
57  *  @param mesh         A handle which represents an instance of MeshLink.
58  *  @param node         A pointer to a meshlink_node_t.
59  *  @param status       A pointer to a devtools_node_status_t variable that has
60  *                      to be provided by the caller.
61  *                      The contents of this variable will be changed to reflect
62  *                      the current status of the node.
63  */
64 void devtool_get_node_status(meshlink_handle_t *mesh, meshlink_node_t *node, devtool_node_status_t *status);
65
66 /// Get the list of all submeshes of a meshlink instance.
67 /** This function returns an array of submesh handles.
68  *  These pointers are the same pointers that are present in the submeshes list
69  *  in mesh handle.
70  *
71  *  @param mesh         A handle which represents an instance of MeshLink.
72  *  @param submeshes    A pointer to an array of submesh handles if any allocated previously.
73  *  @param nmemb        A pointer to a size_t variable that has
74  *                      to be provided by the caller.
75  *                      The contents of this variable will be changed to indicate
76  *                      the number if array elements.
77  */
78 meshlink_submesh_t **devtool_get_all_submeshes(meshlink_handle_t *mesh, meshlink_submesh_t **submeshes, size_t *nmemb);
79
80 /// Open a MeshLink instance in a given network namespace.
81 /** This function opens MeshLink in the given network namespace.
82  *
83  *  @param confbase The directory in which MeshLink will store its configuration files.
84  *                  After the function returns, the application is free to overwrite or free @a confbase @a.
85  *  @param name     The name which this instance of the application will use in the mesh.
86  *                  After the function returns, the application is free to overwrite or free @a name @a.
87  *  @param appname  The application name which will be used in the mesh.
88  *                  After the function returns, the application is free to overwrite or free @a name @a.
89  *  @param devclass The device class which will be used in the mesh.
90  *  @param netns    A filedescriptor that represents the network namespace.
91  *
92  *  @return         A pointer to a meshlink_handle_t which represents this instance of MeshLink, or NULL in case of an error.
93  *                  The pointer is valid until meshlink_close() is called.
94  */
95 meshlink_handle_t *devtool_open_in_netns(const char *confbase, const char *name, const char *appname, dev_class_t devclass, int netns);
96
97 /// Debug function pointer variable for set port API
98 /** This function pointer variable is a userspace tracepoint or debugger callback for
99  *  set port function @a meshlink_set_port @a.
100  *  On assigning a debug function variable invokes callback when try_bind() succeeds in meshlink_set_port API.
101  *
102  */
103 extern void (*devtool_trybind_probe)(void);
104
105 /// Debug function pointer variable for encrypted key rotate API
106 /** This function pointer variable is a userspace tracepoint or debugger callback for
107  *  encrypted key rotation function @a meshlink_encrypted_key_rotate @a.
108  *  On assigning a debug function variable invokes callback for each stage from the key rotate API.
109  *
110  *  @param stage Debug stage number.
111  */
112 extern void (*devtool_keyrotate_probe)(int stage);
113
114 /// Debug function pointer variable for asynchronous DNS resolving
115 extern void (*devtool_adns_resolve_probe)(void);
116
117 /// Debug function pointer variable for SPTPS key renewal
118 /** This function pointer variable is a userspace tracepoint or debugger callback for
119  *  SPTPS key renewal.
120  *
121  *  @param node The node whose SPTPS key(s) are being renewed
122  */
123 extern void (*devtool_sptps_renewal_probe)(meshlink_node_t *node);
124
125 /// Force renewal of SPTPS sessions with the given node.
126 /** This causes the SPTPS sessions for both the UDP and TCP connections to renew their keys.
127  *
128  *  @param mesh A handle which represents an instance of MeshLink.
129  *  @param node The node whose SPTPS key(s) should be renewed
130  */
131 void devtool_force_sptps_renewal(meshlink_handle_t *mesh, meshlink_node_t *node);
132
133 /// Debug function pointer variable for asserting inviter/invitee committing sequence
134 /** This function pointer variable is a userspace tracepoint or debugger callback which
135  *  invokes either after inviter writing invitees host file into the disk
136  *  or after invitee writing it's main config file and host config files that inviter sent into
137  *  the disk.
138  *
139  *  @param inviter_commited_first       true if inviter committed first else false if invitee committed first the other host file into the disk.
140  */
141 extern void (*devtool_set_inviter_commits_first)(bool inviter_commited_first);
142
143 /// Set the meta-connection status callback.
144 /** This functions sets the callback that is called whenever a meta-connection is made or closed.
145  *  The callback is run in MeshLink's own thread.
146  *  It is therefore important that the callback uses apprioriate methods (queues, pipes, locking, etc.)
147  *  to hand the data over to the application's thread.
148  *  The callback should also not block itself and return as quickly as possible.
149  *
150  *  \memberof meshlink_handle
151  *  @param mesh      A handle which represents an instance of MeshLink.
152  *  @param cb        A pointer to the function which will be called when a node's meta-connection status changes.
153  *                   If a NULL pointer is given, the callback will be disabled.
154  */
155 void devtool_set_meta_status_cb(struct meshlink_handle *mesh, meshlink_node_status_cb_t cb);
156
157 #endif