]> git.meshlink.io Git - meshlink/blob - examples/manynodes.c
manynodes: implemented /select to be able to select the node that will execute the...
[meshlink] / examples / manynodes.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <strings.h>
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <linux/limits.h>
8
9 #include "../src/meshlink.h"
10 #include "../src/devtools.h"
11
12 #include <sys/types.h>
13 #include <sys/stat.h>
14 #include <errno.h>
15
16 #include <sys/time.h>
17 #include <signal.h>
18
19 static int n = 10;
20 static meshlink_handle_t **mesh;
21
22 static int nodeindex = 0;
23
24 static meshlink_node_t **nodes;
25 static size_t nnodes;
26
27 static void log_message(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) {
28         const char *levelstr[] = {
29                 [MESHLINK_DEBUG] = "\x1b[34mDEBUG",
30                 [MESHLINK_INFO] = "\x1b[32mINFO",
31                 [MESHLINK_WARNING] = "\x1b[33mWARNING",
32                 [MESHLINK_ERROR] = "\x1b[31mERROR",
33                 [MESHLINK_CRITICAL] = "\x1b[31mCRITICAL",
34         };
35         fprintf(stderr, "%s\t%s:\x1b[0m %s\n", mesh ? mesh->name : "global",levelstr[level], text);
36 }
37
38 //Test mesh sending data
39 static void testmesh () {
40
41         for(int nindex = 0; nindex < n; nindex++) {
42
43                         nodes = meshlink_get_all_nodes(mesh[nindex], nodes, &nnodes);
44                         if(!nodes) {
45                                 fprintf(stderr, "Could not get list of nodes: %s\n", meshlink_strerror(meshlink_errno));
46                         } else {
47                                 printf("%zu known nodes:\n", nnodes);
48                                 for(int i = 0; i < nnodes; i++) {
49                                         //printf(" %s\n", nodes[i]->name);
50                                                 if(!meshlink_send(mesh[nindex], nodes[i], "magic", strlen("magic") + 1)) {
51                 fprintf(stderr, "Could not send message to '%s': %s\n", nodes[i]->name, meshlink_strerror(meshlink_errno));
52                                                 }
53                                 }
54
55                         }
56
57         }
58 }
59 // Make all nodes know about each other by importing each others public keys and addresses.
60 static void linkmesh() {
61         for(int i = 0; i < n; i++) {
62                 char *datai = meshlink_export(mesh[i]);
63
64                 for(int j = i + 1; j < n; j++) {
65                         char *dataj = meshlink_export(mesh[j]);
66                         meshlink_import(mesh[i], dataj);
67                         meshlink_import(mesh[j], datai);
68                         free(dataj);
69                 }
70
71                 free(datai);
72         }
73 }
74
75 static bool exportmeshgraph(const char* path)
76 {
77         struct stat ps;
78         int psr = stat(path, &ps);
79
80         if(psr == 0 || errno != ENOENT)
81         {
82                 if(psr == -1)
83                         { perror("stat"); }
84                 else
85                         { fprintf(stderr, "%s exists already\n", path); }
86
87                 return false;
88         }
89
90         FILE* stream = fopen(path, "w");
91
92         if(!stream)
93         {
94                 perror("stream");
95                 return false;
96         }
97
98         if(!devtool_export_json_all_edges_state(mesh[nodeindex], stream))
99         {
100                 fclose(stream);
101                 fprintf(stderr, "could not export graph\n");
102                 return false;
103         }
104
105         fclose(stream);
106         return true;
107 }
108
109
110 void exportmeshgraph_timer(int signum)
111 {
112         struct timeval ts;
113         gettimeofday(&ts, NULL);
114
115         char name[1024];
116         snprintf(name, sizeof(name), "graph_%ld_%03ld.json", ts.tv_sec, ts.tv_usec/1000);
117
118         exportmeshgraph(name);
119 }
120
121 static bool exportmeshgraph_started = false;
122
123 static bool exportmeshgraph_end(const char* none)
124 {
125         if(!exportmeshgraph_started)
126                 { return false; }
127
128         struct itimerval zero_timer = { 0 };
129         setitimer (ITIMER_REAL, &zero_timer, NULL);
130
131         exportmeshgraph_started = false;
132
133         return true;
134 }
135
136 static bool exportmeshgraph_begin(const char* timeout_str)
137 {
138         if(!timeout_str)
139                 return false;
140
141         if(exportmeshgraph_started)
142         {
143                 if(!exportmeshgraph_end(NULL))
144                         return false;
145         }
146
147         // get timeout
148         int timeout = atoi(timeout_str);
149
150         if(timeout < 100)
151                 { timeout = 100; }
152
153         int timeout_sec = timeout / 1000;
154         int timeout_msec = timeout % 1000;
155
156         /* Install timer_handler as the signal handler for SIGALRM. */
157         signal(SIGALRM, exportmeshgraph_timer);
158
159         /* Configure the timer to expire immediately... */
160         struct itimerval timer;
161         timer.it_value.tv_sec = 0;
162         timer.it_value.tv_usec = 1000;
163
164         /* ... and every X msec after that. */
165         timer.it_interval.tv_sec = timeout_sec;
166         timer.it_interval.tv_usec = timeout_msec * 1000;
167
168         /* Start a real timer. */
169         setitimer (ITIMER_REAL, &timer, NULL);
170
171         exportmeshgraph_started = true;
172
173         return true;
174 }
175
176 static void parse_command(char *buf) {
177         char *arg = strchr(buf, ' ');
178         if(arg)
179                 *arg++ = 0;
180
181         if(!strcasecmp(buf, "invite")) {
182                 char *invitation;
183
184                 if(!arg) {
185                         fprintf(stderr, "/invite requires an argument!\n");
186                         return;
187                 }
188
189                 invitation = meshlink_invite(mesh[nodeindex], arg);
190                 if(!invitation) {
191                         fprintf(stderr, "Could not invite '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
192                         return;
193                 }
194
195                 printf("Invitation for %s: %s\n", arg, invitation);
196                 free(invitation);
197         } else if(!strcasecmp(buf, "join")) {
198                 if(!arg) {
199                         fprintf(stderr, "/join requires an argument!\n");
200                         return;
201                 }
202                 meshlink_stop(mesh[nodeindex]);
203                 if(!meshlink_join(mesh[nodeindex], arg))
204                         fprintf(stderr, "Could not join using invitation: %s\n", meshlink_strerror(meshlink_errno));
205                 else {
206                         fprintf(stderr, "Invitation accepted!\n");
207                         meshlink_start(mesh[nodeindex]);
208                 }
209         } else if(!strcasecmp(buf, "kick")) {
210                 if(!arg) {
211                         fprintf(stderr, "/kick requires an argument!\n");
212                         return;
213                 }
214
215                 meshlink_node_t *node = meshlink_get_node(mesh[nodeindex], arg);
216                 if(!node) {
217                         fprintf(stderr, "Unknown node '%s'\n", arg);
218                         return;
219                 }
220
221                 meshlink_blacklist(mesh[nodeindex], node);
222
223                 printf("Node '%s' blacklisted.\n", arg);
224         } else if(!strcasecmp(buf, "who")) {
225                 if(!arg) {
226                         nodes = meshlink_get_all_nodes(mesh[nodeindex], nodes, &nnodes);
227                         if(!nodes) {
228                                 fprintf(stderr, "Could not get list of nodes: %s\n", meshlink_strerror(meshlink_errno));
229                         } else {
230                                 printf("%zu known nodes:", nnodes);
231                                 for(int i = 0; i < nnodes; i++)
232                                         printf(" %s", nodes[i]->name);
233                                 printf("\n");
234                         }
235                 } else {
236                         meshlink_node_t *node = meshlink_get_node(mesh[nodeindex], arg);
237                         if(!node) {
238                                 fprintf(stderr, "Unknown node '%s'\n", arg);
239                         } else {
240                                 printf("Node %s found, pmtu %zd\n", arg, meshlink_get_pmtu(mesh[nodeindex], node));
241                         }
242                 }
243         } else if(!strcasecmp(buf, "link")) {
244                 linkmesh();
245         } else if(!strcasecmp(buf, "eg")) {
246                 exportmeshgraph(arg);
247         } else if(!strcasecmp(buf, "egb")) {
248                 exportmeshgraph_begin(arg);
249         } else if(!strcasecmp(buf, "ege")) {
250                 exportmeshgraph_end(NULL);
251         } else if(!strcasecmp(buf, "test")) {
252                 testmesh();
253         } else if(!strcasecmp(buf, "select")) {
254                 if(!arg) {
255                         fprintf(stderr, "/select requires an argument!\n");
256                         return;
257                 }
258                 nodeindex = atoi(arg);
259                 printf("Index is now %d\n",nodeindex);
260         
261         } else if(!strcasecmp(buf, "quit")) {
262                 printf("Bye!\n");
263                 fclose(stdin);
264         } else if(!strcasecmp(buf, "help")) {
265                 printf(
266                         "<name>: <message>     Send a message to the given node.\n"
267                         "                      Subsequent messages don't need the <name>: prefix.\n"
268                         "/invite <name>        Create an invitation for a new node.\n"
269                         "/join <invitation>    Join an existing mesh using an invitation.\n"
270                         "/kick <name>          Blacklist the given node.\n"
271                         "/who [<name>]         List all nodes or show information about the given node.\n"
272                         "/link                 Link all nodes together.\n"
273                         "/eg <path>            Export graph as json file.\n"
274                         "/test                 Test functionality sending some data to all nodes\n"
275                         "/select <number>      Select the active node running the user commands\n"
276                         "/quit                 Exit this program.\n"
277                         );
278         } else {
279                 fprintf(stderr, "Unknown command '/%s'\n", buf);
280         }
281 }
282
283 static void parse_input(char *buf) {
284         static meshlink_node_t *destination;
285         size_t len;
286
287         if(!buf)
288                 return;
289
290         // Remove newline.
291
292         len = strlen(buf);
293
294         if(len && buf[len - 1] == '\n')
295                 buf[--len] = 0;
296
297         if(len && buf[len - 1] == '\r')
298                 buf[--len] = 0;
299
300         // Ignore empty lines.
301
302         if(!len)
303                 return;
304
305         // Commands start with '/'
306
307         if(*buf == '/')
308                 return parse_command(buf + 1);
309
310         // Lines in the form "name: message..." set the destination node.
311
312         char *msg = buf;
313         char *colon = strchr(buf, ':');
314
315         if(colon) {
316                 *colon = 0;
317                 msg = colon + 1;
318                 if(*msg == ' ')
319                         msg++;
320
321                 destination = meshlink_get_node(mesh[nodeindex], buf);
322                 if(!destination) {
323                         fprintf(stderr, "Unknown node '%s'\n", buf);
324                         return;
325                 }
326         }
327
328         if(!destination) {
329                 fprintf(stderr, "Who are you talking to? Write 'name: message...'\n");
330                 return;
331         }
332
333         if(!meshlink_send(mesh[nodeindex], destination, msg, strlen(msg) + 1)) {
334                 fprintf(stderr, "Could not send message to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
335                 return;
336         }
337
338         printf("Message sent to '%s'.\n", destination->name);
339 }
340
341 int main(int argc, char *argv[]) {
342         const char *basebase = ".manynodes";
343         const char *namesprefix = "machine1";
344         const char *graphexporttimeout = NULL;
345         char buf[1024];
346
347         if(argc > 1)
348                 n = atoi(argv[1]);
349
350         if(n < 1) {
351                 fprintf(stderr, "Usage: %s [number of local nodes] [confbase] [prefixnodenames] [graphexport timeout]\n", argv[0]);
352                 return 1;
353         }
354
355         if(argc > 2)
356                 basebase = argv[2];
357
358         if(argc > 3)
359                 namesprefix = argv[3];
360
361         if(argc > 4)
362                 graphexporttimeout = argv[4];
363
364         mesh = calloc(n, sizeof *mesh);
365
366         meshlink_set_log_cb(NULL, MESHLINK_WARNING, log_message);
367         mkdir(basebase, 0750);
368
369         char filename[PATH_MAX];
370         char nodename[100];
371         for(int i = 0; i < n; i++) {
372                 snprintf(nodename, sizeof nodename, "%snode%d", namesprefix,i);
373                 snprintf(filename, sizeof filename, "%s/%s", basebase, nodename);
374                 bool itsnew = access(filename, R_OK);
375                 mesh[i] = meshlink_open(filename, nodename, "manynodes", i%_DEV_CLASS_MAX);
376                 meshlink_set_log_cb(mesh[i], MESHLINK_WARNING, log_message);
377                 if(!mesh[i]) {
378                         fprintf(stderr, "errno is: %d\n", meshlink_errno);
379                         fprintf(stderr, "Could not open %s: %s\n", filename, meshlink_strerror(meshlink_errno));
380                         return 1;
381                 }
382         }
383
384         int started = 0;
385
386         for(int i = 0; i < n; i++) {
387                 if(!meshlink_start(mesh[i]))
388                         fprintf(stderr, "Could not start node %d: %s\n", i, meshlink_strerror(meshlink_errno));
389                 else
390                         started++;
391         }
392
393         if(!started) {
394                 fprintf(stderr, "Could not start any node!\n");
395                 return 1;
396         }
397
398         if(graphexporttimeout)
399                 { exportmeshgraph_begin(graphexporttimeout); }
400
401         printf("%d nodes started.\nType /help for a list of commands.\n", started);
402
403         // handle input
404         while(fgets(buf, sizeof buf, stdin))
405                 parse_input(buf);
406
407         exportmeshgraph_end(NULL);
408
409         printf("Nodes stopping.\n");
410
411         for(int i = 0; i < n; i++)
412                 meshlink_close(mesh[i]);
413
414         return 0;
415 }