]> git.meshlink.io Git - meshlink/blob - examples/groupchat.c
Never automatically try to bind to ports >= 32768.
[meshlink] / examples / groupchat.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <strings.h>
5
6 #include "../src/meshlink.h"
7 #include "../src/devtools.h"
8
9 #define CHAT_PORT 531
10
11 static void log_message(meshlink_handle_t *mesh, meshlink_log_level_t level, const char *text) {
12         (void) mesh;
13
14         static const char *levelstr[] = {
15                 [MESHLINK_DEBUG] = "\x1b[34mDEBUG",
16                 [MESHLINK_INFO] = "\x1b[32mINFO",
17                 [MESHLINK_WARNING] = "\x1b[33mWARNING",
18                 [MESHLINK_ERROR] = "\x1b[31mERROR",
19                 [MESHLINK_CRITICAL] = "\x1b[31mCRITICAL",
20         };
21         fprintf(stderr, "%s:\x1b[0m %s\n", levelstr[level], text);
22 }
23
24 static void channel_receive(meshlink_handle_t *mesh, meshlink_channel_t *channel, const void *data, size_t len) {
25         if(!len) {
26                 if(meshlink_errno) {
27                         fprintf(stderr, "Error while reading data from %s: %s\n", channel->node->name, meshlink_strerror(meshlink_errno));
28                 } else {
29                         fprintf(stderr, "Chat connection closed by %s\n", channel->node->name);
30                 }
31
32                 channel->node->priv = NULL;
33                 meshlink_channel_close(mesh, channel);
34                 return;
35         }
36
37         // TODO: we now have TCP semantics, don't expect exactly one message per receive call.
38
39         fprintf(stderr, "%s says: ", channel->node->name);
40         fwrite(data, len, 1, stderr);
41         fputc('\n', stderr);
42 }
43
44 static bool channel_accept(meshlink_handle_t *mesh, meshlink_channel_t *channel, uint16_t port, const void *data, size_t len) {
45         (void)data;
46         (void)len;
47
48         // Only accept connections to the chat port
49         if(port != CHAT_PORT) {
50                 fprintf(stderr, "Rejected incoming channel from '%s' to port %u\n", channel->node->name, port);
51                 return false;
52         }
53
54         fprintf(stderr, "Accepted incoming channel from '%s'\n", channel->node->name);
55
56         // Remember the channel
57         channel->node->priv = channel;
58
59         // Set the receive callback
60         meshlink_set_channel_receive_cb(mesh, channel, channel_receive);
61
62         // Accept this channel
63         return true;
64 }
65
66 static void channel_poll(meshlink_handle_t *mesh, meshlink_channel_t *channel, size_t len) {
67         (void)len;
68
69         fprintf(stderr, "Channel to '%s' connected\n", channel->node->name);
70         meshlink_set_channel_poll_cb(mesh, channel, NULL);
71 }
72
73 static void node_status(meshlink_handle_t *mesh, meshlink_node_t *node, bool reachable) {
74         (void)mesh;
75
76         if(reachable) {
77                 fprintf(stderr, "%s joined.\n", node->name);
78         } else {
79                 fprintf(stderr, "%s left.\n", node->name);
80         }
81 }
82
83 static meshlink_node_t **nodes;
84 static size_t nnodes;
85
86 static void parse_command(meshlink_handle_t *mesh, char *buf) {
87         char *arg = strchr(buf, ' ');
88         char *arg1 = NULL;
89         meshlink_submesh_t *s = NULL;
90         static meshlink_submesh_t **submesh = NULL;
91         static size_t nmemb = 0;
92         size_t i;
93
94         if(arg) {
95                 *arg++ = 0;
96
97                 arg1 = strchr(arg, ' ');
98
99                 if(arg1) {
100                         *arg1++ = 0;
101                 }
102
103         }
104
105         if(!strcasecmp(buf, "invite")) {
106                 char *invitation;
107
108                 if(!arg) {
109                         fprintf(stderr, "/invite requires an argument!\n");
110                         return;
111                 }
112
113                 if(arg1) {
114
115                         submesh = devtool_get_all_submeshes(mesh, submesh, &nmemb);
116
117                         if(!submesh || !nmemb) {
118                                 fprintf(stderr, "Group does not exist!\n");
119                                 return;
120                         }
121
122                         for(i = 0; i < nmemb; i++) {
123                                 if(!strcmp(arg1, submesh[i]->name)) {
124                                         s = submesh[i];
125                                         break;
126                                 } else {
127                                         s = NULL;
128                                 }
129                         }
130
131                         if(!s) {
132                                 fprintf(stderr, "Group is not yet creted!\n");
133                                 return;
134                         }
135                 }
136
137                 invitation = meshlink_invite(mesh, s, arg);
138
139                 if(!invitation) {
140                         fprintf(stderr, "Could not invite '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
141                         return;
142                 }
143
144                 fprintf(stderr, "Invitation for %s: %s\n", arg, invitation);
145                 free(invitation);
146         } else if(!strcasecmp(buf, "canonical")) {
147                 bool set;
148                 char *host = NULL, *port = NULL;
149
150                 if(!arg) {
151                         fprintf(stderr, "/canonical requires an argument!\n");
152                         return;
153                 }
154
155                 if((0 == strncasecmp(arg, "-h", 2)) && (strlen(arg) > 2)) {
156                         host = arg + 2;
157                 } else if((0 == strncasecmp(arg, "-p", 2)) && (strlen(arg) > 2)) {
158                         port = arg + 2;
159                 } else {
160                         fprintf(stderr, "Unknown argument: %s!\n", arg);
161                         return;
162                 }
163
164                 if(arg1) {
165                         if((0 == strncasecmp(arg1, "-h", 2)) && (strlen(arg1) > 2)) {
166                                 host = arg1 + 2;
167                         } else if((0 == strncasecmp(arg1, "-p", 2)) && (strlen(arg1) > 2)) {
168                                 port = arg1 + 2;
169                         } else {
170                                 fprintf(stderr, "Unknown argument: %s!\n", arg1);
171                                 return;
172                         }
173                 }
174
175                 if(!host && !port) {
176                         fprintf(stderr, "Unable to set Canonical address because no valid arguments are found!\n");
177                         return;
178                 }
179
180                 set = meshlink_set_canonical_address(mesh, meshlink_get_self(mesh), host, port);
181
182                 if(!set) {
183                         fprintf(stderr, "Could not set canonical address '%s:%s': %s\n", host, port, meshlink_strerror(meshlink_errno));
184                         return;
185                 }
186
187                 fprintf(stderr, "Canonical address set as '%s:%s'\n", host, port);
188         } else if(!strcasecmp(buf, "group")) {
189                 if(!arg) {
190                         fprintf(stderr, "/group requires an argument!\n");
191                         return;
192                 }
193
194                 if(!(s = meshlink_submesh_open(mesh, arg))) {
195                         fprintf(stderr, "Could not create group: %s\n", meshlink_strerror(meshlink_errno));
196                 } else {
197                         fprintf(stderr, "Group '%s' created!\n", s->name);
198                 }
199         } else if(!strcasecmp(buf, "join")) {
200                 if(!arg) {
201                         fprintf(stderr, "/join requires an argument!\n");
202                         return;
203                 }
204
205                 meshlink_stop(mesh);
206
207                 if(!meshlink_join(mesh, arg)) {
208                         fprintf(stderr, "Could not join using invitation: %s\n", meshlink_strerror(meshlink_errno));
209                 } else {
210                         fprintf(stderr, "Invitation accepted!\n");
211                 }
212
213                 if(!meshlink_start(mesh)) {
214                         fprintf(stderr, "Could not restart MeshLink: %s\n", meshlink_strerror(meshlink_errno));
215                         exit(1);
216                 }
217         } else if(!strcasecmp(buf, "kick")) {
218                 if(!arg) {
219                         fprintf(stderr, "/kick requires an argument!\n");
220                         return;
221                 }
222
223                 meshlink_node_t *node = meshlink_get_node(mesh, arg);
224
225                 if(!node) {
226                         fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
227                         return;
228                 }
229
230                 meshlink_blacklist(mesh, node);
231
232                 fprintf(stderr, "Node '%s' blacklisted.\n", arg);
233         } else if(!strcasecmp(buf, "who")) {
234                 meshlink_submesh_t *node_group = NULL;
235
236                 if(!arg) {
237                         nodes = meshlink_get_all_nodes(mesh, nodes, &nnodes);
238
239                         if(!nnodes) {
240                                 fprintf(stderr, "Could not get list of nodes: %s\n", meshlink_strerror(meshlink_errno));
241                         } else {
242                                 fprintf(stderr, "%lu known nodes:\n", (unsigned long)nnodes);
243
244                                 for(size_t i = 0; i < nnodes; i++) {
245                                         fprintf(stderr, " %lu. %s", (unsigned long)i, nodes[i]->name);
246
247                                         if((node_group = meshlink_get_node_submesh(mesh, nodes[i]))) {
248                                                 fprintf(stderr, "\t%s", node_group->name);
249                                         }
250
251                                         fprintf(stderr, "\n");
252                                 }
253
254                                 fprintf(stderr, "\n");
255                         }
256                 } else {
257                         meshlink_node_t *node = meshlink_get_node(mesh, arg);
258
259                         if(!node) {
260                                 fprintf(stderr, "Error looking up '%s': %s\n", arg, meshlink_strerror(meshlink_errno));
261                         } else {
262                                 fprintf(stderr, "Node %s found", arg);
263
264                                 if((node_group = meshlink_get_node_submesh(mesh, node))) {
265                                         fprintf(stderr, " in group %s", node_group->name);
266                                 }
267
268                                 fprintf(stderr, "\n");
269                         }
270                 }
271         } else if(!strcasecmp(buf, "listgroup")) {
272                 if(!arg) {
273                         fprintf(stderr, "/listgroup requires an argument!\n");
274                         return;
275                 }
276
277                 submesh = devtool_get_all_submeshes(mesh, submesh, &nmemb);
278
279                 if(!submesh || !nmemb) {
280                         fprintf(stderr, "Group does not exist!\n");
281                         return;
282                 }
283
284                 for(i = 0; i < nmemb; i++) {
285                         if(!strcmp(arg, submesh[i]->name)) {
286                                 s = submesh[i];
287                                 break;
288                         } else {
289                                 s = NULL;
290                         }
291                 }
292
293                 if(!s) {
294                         fprintf(stderr, "Group %s does not exist!\n", arg);
295                         return;
296                 }
297
298                 nodes = meshlink_get_all_nodes_by_submesh(mesh, s, nodes, &nnodes);
299
300                 if(!nodes) {
301                         fprintf(stderr, "Group %s does not contain any nodes!\n", arg);
302                         return;
303                 }
304
305                 if(nnodes <= 0) {
306                         fprintf(stderr, "Could not get list of nodes for group %s: %s\n", arg, meshlink_strerror(meshlink_errno));
307                 } else {
308                         fprintf(stderr, "%zu known nodes in group %s:", nnodes, arg);
309
310                         for(size_t i = 0; i < nnodes; i++) {
311                                 fprintf(stderr, " %s", nodes[i]->name);
312                         }
313
314                         fprintf(stderr, "\n");
315                 }
316         } else if(!strcasecmp(buf, "quit")) {
317                 fprintf(stderr, "Bye!\n");
318                 fclose(stdin);
319         } else if(!strcasecmp(buf, "help")) {
320                 fprintf(stderr,
321                         "<name>: <message>                        Send a message to the given node.\n"
322                         "                                         Subsequent messages don't need the <name>: prefix.\n"
323                         "/group <name>                            Create a new group"
324                         "/invite <name> [submesh]                 Create an invitation for a new node.\n"
325                         "                                         Node joins either coremesh or submesh depending on submesh parameter.\n"
326                         "/join <invitation>                               Join an existing mesh using an invitation.\n"
327                         "/kick <name>                             Blacklist the given node.\n"
328                         "/who [<name>]                            List all nodes or show information about the given node.\n"
329                         "/listgroup <name>                        List all nodes in a given group.\n"
330                         "/canonical -h<hostname> -p<port> Set Canonical address to be present in invitation.\n"
331                         "                                         Any one of two options an be specified. At least one option must be present\n"
332                         "/quit                                    Exit this program.\n"
333                        );
334         } else {
335                 fprintf(stderr, "Unknown command '/%s'\n", buf);
336         }
337 }
338
339 static void parse_input(meshlink_handle_t *mesh, char *buf) {
340         static meshlink_node_t *destination;
341         size_t len;
342
343         if(!buf) {
344                 return;
345         }
346
347         // Remove newline.
348
349         len = strlen(buf);
350
351         if(len && buf[len - 1] == '\n') {
352                 buf[--len] = 0;
353         }
354
355         if(len && buf[len - 1] == '\r') {
356                 buf[--len] = 0;
357         }
358
359         // Ignore empty lines.
360
361         if(!len) {
362                 return;
363         }
364
365         // Commands start with '/'
366
367         if(*buf == '/') {
368                 parse_command(mesh, buf + 1);
369                 return;
370         }
371
372         // Lines in the form "name: message..." set the destination node.
373
374         char *msg = buf;
375         char *colon = strchr(buf, ':');
376
377         if(colon) {
378                 *colon = 0;
379                 msg = colon + 1;
380
381                 if(*msg == ' ') {
382                         msg++;
383                 }
384
385                 destination = meshlink_get_node(mesh, buf);
386
387                 if(!destination) {
388                         fprintf(stderr, "Error looking up '%s': %s\n", buf, meshlink_strerror(meshlink_errno));
389                         return;
390                 }
391         }
392
393         if(!destination) {
394                 fprintf(stderr, "Who are you talking to? Write 'name: message...'\n");
395                 return;
396         }
397
398         // We want to have one channel per node.
399         // We keep the pointer to the meshlink_channel_t in the priv field of that node.
400         meshlink_channel_t *channel = destination->priv;
401
402         if(!channel) {
403                 fprintf(stderr, "Opening chat channel to '%s'\n", destination->name);
404                 channel = meshlink_channel_open(mesh, destination, CHAT_PORT, channel_receive, NULL, 0);
405
406                 if(!channel) {
407                         fprintf(stderr, "Could not create channel to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
408                         return;
409                 }
410
411                 destination->priv = channel;
412                 meshlink_set_channel_poll_cb(mesh, channel, channel_poll);
413         }
414
415         if(!meshlink_channel_send(mesh, channel, msg, strlen(msg))) {
416                 fprintf(stderr, "Could not send message to '%s': %s\n", destination->name, meshlink_strerror(meshlink_errno));
417                 return;
418         }
419
420         fprintf(stderr, "Message sent to '%s'.\n", destination->name);
421 }
422
423 int main(int argc, char *argv[]) {
424         const char *confbase = ".chat";
425         const char *nick = NULL;
426         char buf[1024];
427
428         if(argc > 1) {
429                 confbase = argv[1];
430         }
431
432         if(argc > 2) {
433                 nick = argv[2];
434         }
435
436         meshlink_set_log_cb(NULL, MESHLINK_DEBUG, log_message);
437
438         meshlink_handle_t *mesh = meshlink_open(confbase, nick, "chat", DEV_CLASS_STATIONARY);
439
440         if(!mesh) {
441                 fprintf(stderr, "Could not open MeshLink: %s\n", meshlink_strerror(meshlink_errno));
442                 return 1;
443         }
444
445         meshlink_set_node_status_cb(mesh, node_status);
446         meshlink_set_log_cb(mesh, MESHLINK_INFO, log_message);
447
448         // Set the channel accept callback. This implicitly turns on channels for all nodes.
449         // This replaces the call to meshlink_set_receive_cb().
450         meshlink_set_channel_accept_cb(mesh, channel_accept);
451
452         if(!meshlink_start(mesh)) {
453                 fprintf(stderr, "Could not start MeshLink: %s\n", meshlink_strerror(meshlink_errno));
454                 return 1;
455         }
456
457         fprintf(stderr, "Chat started.\nType /help for a list of commands.\n");
458
459         while(fgets(buf, sizeof(buf), stdin)) {
460                 parse_input(mesh, buf);
461         }
462
463         fprintf(stderr, "Chat stopping.\n");
464
465         meshlink_stop(mesh);
466         meshlink_close(mesh);
467
468         return 0;
469 }