]> git.meshlink.io Git - meshlink/blob - src/protocol.c
Stop using the global variable mesh in most of the rest of the code.
[meshlink] / src / protocol.c
1 /*
2     protocol.c -- handle the meta-protocol, basic functions
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
4
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.
9
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.
14
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.
18 */
19
20 #include "system.h"
21
22 #include "conf.h"
23 #include "connection.h"
24 #include "logger.h"
25 #include "meshlink_internal.h"
26 #include "meta.h"
27 #include "protocol.h"
28 #include "utils.h"
29 #include "xalloc.h"
30
31 /* Jumptable for the request handlers */
32
33 static bool (*request_handlers[])(meshlink_handle_t *, connection_t *, const char *) = {
34                 id_h, NULL, NULL, NULL /* metakey_h, challenge_h, chal_reply_h */, ack_h,
35                 status_h, error_h, termreq_h,
36                 ping_h, pong_h,
37                 NULL, NULL, //add_subnet_h, del_subnet_h,
38                 add_edge_h, del_edge_h,
39                 key_changed_h, req_key_h, ans_key_h, tcppacket_h, NULL, //control_h,
40 };
41
42 /* Request names */
43
44 static char (*request_name[]) = {
45                 "ID", "METAKEY", "CHALLENGE", "CHAL_REPLY", "ACK",
46                 "STATUS", "ERROR", "TERMREQ",
47                 "PING", "PONG",
48                 "ADD_SUBNET", "DEL_SUBNET",
49                 "ADD_EDGE", "DEL_EDGE", "KEY_CHANGED", "REQ_KEY", "ANS_KEY", "PACKET", "CONTROL",
50 };
51
52 static splay_tree_t *past_request_tree;
53
54 bool check_id(const char *id) {
55         if(!id || !*id)
56                 return false;
57
58         for(; *id; id++)
59                 if(!isalnum(*id) && *id != '_')
60                         return false;
61
62         return true;
63 }
64
65 /* Generic request routines - takes care of logging and error
66    detection as well */
67
68 bool send_request(meshlink_handle_t *mesh, connection_t *c, const char *format, ...) {
69         va_list args;
70         char request[MAXBUFSIZE];
71         int len;
72
73         /* Use vsnprintf instead of vxasprintf: faster, no memory
74            fragmentation, cleanup is automatic, and there is a limit on the
75            input buffer anyway */
76
77         va_start(args, format);
78         len = vsnprintf(request, MAXBUFSIZE, format, args);
79         va_end(args);
80
81         if(len < 0 || len > MAXBUFSIZE - 1) {
82                 logger(DEBUG_ALWAYS, LOG_ERR, "Output buffer overflow while sending request to %s (%s)",
83                            c->name, c->hostname);
84                 return false;
85         }
86
87         logger(DEBUG_META, LOG_DEBUG, "Sending %s to %s (%s): %s", request_name[atoi(request)], c->name, c->hostname, request);
88
89         request[len++] = '\n';
90
91         if(c == mesh->everyone) {
92                 broadcast_meta(mesh, NULL, request, len);
93                 return true;
94         } else
95                 return send_meta(mesh, c, request, len);
96 }
97
98 void forward_request(meshlink_handle_t *mesh, connection_t *from, const char *request) {
99         logger(DEBUG_META, LOG_DEBUG, "Forwarding %s from %s (%s): %s", request_name[atoi(request)], from->name, from->hostname, request);
100
101         // Create a temporary newline-terminated copy of the request
102         int len = strlen(request);
103         char tmp[len + 1];
104         memcpy(tmp, request, len);
105         tmp[len] = '\n';
106         broadcast_meta(mesh, from, tmp, sizeof tmp);
107 }
108
109 bool receive_request(meshlink_handle_t *mesh, connection_t *c, const char *request) {
110         if(c->outgoing && mesh->proxytype == PROXY_HTTP && c->allow_request == ID) {
111                 if(!request[0] || request[0] == '\r')
112                         return true;
113                 if(!strncasecmp(request, "HTTP/1.1 ", 9)) {
114                         if(!strncmp(request + 9, "200", 3)) {
115                                 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request granted");
116                                 return true;
117                         } else {
118                                 logger(DEBUG_ALWAYS, LOG_DEBUG, "Proxy request rejected: %s", request + 9);
119                                 return false;
120                         }
121                 }
122         }
123
124         int reqno = atoi(request);
125
126         if(reqno || *request == '0') {
127                 if((reqno < 0) || (reqno >= LAST) || !request_handlers[reqno]) {
128                         logger(DEBUG_META, LOG_DEBUG, "Unknown request from %s (%s): %s", c->name, c->hostname, request);
129                         return false;
130                 } else {
131                         logger(DEBUG_META, LOG_DEBUG, "Got %s from %s (%s): %s", request_name[reqno], c->name, c->hostname, request);
132                 }
133
134                 if((c->allow_request != ALL) && (c->allow_request != reqno)) {
135                         logger(DEBUG_ALWAYS, LOG_ERR, "Unauthorized request from %s (%s)", c->name, c->hostname);
136                         return false;
137                 }
138
139                 if(!request_handlers[reqno](mesh, c, request)) {
140                         /* Something went wrong. Probably scriptkiddies. Terminate. */
141
142                         logger(DEBUG_ALWAYS, LOG_ERR, "Error while processing %s from %s (%s)", request_name[reqno], c->name, c->hostname);
143                         return false;
144                 }
145         } else {
146                 logger(DEBUG_ALWAYS, LOG_ERR, "Bogus data received from %s (%s)", c->name, c->hostname);
147                 return false;
148         }
149
150         return true;
151 }
152
153 static int past_request_compare(const past_request_t *a, const past_request_t *b) {
154         return strcmp(a->request, b->request);
155 }
156
157 static void free_past_request(past_request_t *r) {
158         if(r->request)
159                 free(r->request);
160
161         free(r);
162 }
163
164 static timeout_t past_request_timeout;
165
166 static void age_past_requests(event_loop_t *loop, void *data) {
167         meshlink_handle_t *mesh = loop->data;
168         int left = 0, deleted = 0;
169
170         for splay_each(past_request_t, p, past_request_tree) {
171                 if(p->firstseen + mesh->pinginterval <= mesh->loop.now.tv_sec)
172                         splay_delete_node(past_request_tree, node), deleted++;
173                 else
174                         left++;
175         }
176
177         if(left || deleted)
178                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Aging past requests: deleted %d, left %d", deleted, left);
179
180         if(left)
181                 timeout_set(&mesh->loop, &past_request_timeout, &(struct timeval){10, rand() % 100000});
182 }
183
184 bool seen_request(meshlink_handle_t *mesh, const char *request) {
185         past_request_t *new, p = {NULL};
186
187         p.request = request;
188
189         if(splay_search(past_request_tree, &p)) {
190                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Already seen request");
191                 return true;
192         } else {
193                 new = xmalloc(sizeof *new);
194                 new->request = xstrdup(request);
195                 new->firstseen = mesh->loop.now.tv_sec;
196                 splay_insert(past_request_tree, new);
197                 timeout_add(&mesh->loop, &past_request_timeout, age_past_requests, NULL, &(struct timeval){10, rand() % 100000});
198                 return false;
199         }
200 }
201
202 // TODO: move past_request_tree to meshlink_handle_t
203 void init_requests(meshlink_handle_t *mesh) {
204         past_request_tree = splay_alloc_tree((splay_compare_t) past_request_compare, (splay_action_t) free_past_request);
205 }
206
207 void exit_requests(meshlink_handle_t *mesh) {
208         splay_delete_tree(past_request_tree);
209
210         timeout_del(&mesh->loop, &past_request_timeout);
211 }