configure.in: fix AC_ARG_ENABLE and AC_ARG_WITH
[tinc] / src / protocol_edge.c
1 /*
2     protocol_edge.c -- handle the meta-protocol, edges
3     Copyright (C) 1999-2005 Ivo Timmermans,
4                   2000-2012 Guus Sliepen <guus@tinc-vpn.org>
5                   2009      Michael Tokarev <mjt@corpit.ru>
6
7     This program is free software; you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or
10     (at your option) any later version.
11
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License along
18     with this program; if not, write to the Free Software Foundation, Inc.,
19     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22 #include "system.h"
23
24 #include "avl_tree.h"
25 #include "conf.h"
26 #include "connection.h"
27 #include "edge.h"
28 #include "graph.h"
29 #include "logger.h"
30 #include "meta.h"
31 #include "net.h"
32 #include "netutl.h"
33 #include "node.h"
34 #include "protocol.h"
35 #include "utils.h"
36 #include "xalloc.h"
37
38 bool send_add_edge(connection_t *c, const edge_t *e) {
39         bool x;
40         char *address, *port;
41
42         sockaddr2str(&e->address, &address, &port);
43
44         x = send_request(c, "%d %x %s %s %s %s %x %d", ADD_EDGE, rand(),
45                                          e->from->name, e->to->name, address, port,
46                                          e->options, e->weight);
47         free(address);
48         free(port);
49
50         return x;
51 }
52
53 bool add_edge_h(connection_t *c) {
54         edge_t *e;
55         node_t *from, *to;
56         char from_name[MAX_STRING_SIZE];
57         char to_name[MAX_STRING_SIZE];
58         char to_address[MAX_STRING_SIZE];
59         char to_port[MAX_STRING_SIZE];
60         sockaddr_t address;
61         uint32_t options;
62         int weight;
63
64         if(sscanf(c->buffer, "%*d %*x "MAX_STRING" "MAX_STRING" "MAX_STRING" "MAX_STRING" %x %d",
65                           from_name, to_name, to_address, to_port, &options, &weight) != 6) {
66                 logger(LOG_ERR, "Got bad %s from %s (%s)", "ADD_EDGE", c->name,
67                            c->hostname);
68                 return false;
69         }
70
71         /* Check if names are valid */
72
73         if(!check_id(from_name) || !check_id(to_name)) {
74                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "ADD_EDGE", c->name,
75                            c->hostname, "invalid name");
76                 return false;
77         }
78
79         if(seen_request(c->buffer))
80                 return true;
81
82         /* Lookup nodes */
83
84         from = lookup_node(from_name);
85         to = lookup_node(to_name);
86
87         if(tunnelserver &&
88            from != myself && from != c->node &&
89            to != myself && to != c->node) {
90                 /* ignore indirect edge registrations for tunnelserver */
91                 ifdebug(PROTOCOL) logger(LOG_WARNING,
92                    "Ignoring indirect %s from %s (%s)",
93                    "ADD_EDGE", c->name, c->hostname);
94                 return true;
95         }
96
97         if(!from) {
98                 from = new_node();
99                 from->name = xstrdup(from_name);
100                 node_add(from);
101         }
102
103         if(!to) {
104                 to = new_node();
105                 to->name = xstrdup(to_name);
106                 node_add(to);
107         }
108
109
110         /* Convert addresses */
111
112         address = str2sockaddr(to_address, to_port);
113
114         /* Check if edge already exists */
115
116         e = lookup_edge(from, to);
117
118         if(e) {
119                 if(e->weight != weight || e->options != options || sockaddrcmp(&e->address, &address)) {
120                         if(from == myself) {
121                                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for ourself which does not match existing entry",
122                                                    "ADD_EDGE", c->name, c->hostname);
123                                 send_add_edge(c, e);
124                                 return true;
125                         } else {
126                                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) which does not match existing entry",
127                                                    "ADD_EDGE", c->name, c->hostname);
128                                 edge_del(e);
129                                 graph();
130                         }
131                 } else
132                         return true;
133         } else if(from == myself) {
134                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for ourself which does not exist",
135                                    "ADD_EDGE", c->name, c->hostname);
136                 contradicting_add_edge++;
137                 e = new_edge();
138                 e->from = from;
139                 e->to = to;
140                 send_del_edge(c, e);
141                 free_edge(e);
142                 return true;
143         }
144
145         e = new_edge();
146         e->from = from;
147         e->to = to;
148         e->address = address;
149         e->options = options;
150         e->weight = weight;
151         edge_add(e);
152
153         /* Tell the rest about the new edge */
154
155         if(!tunnelserver)
156                 forward_request(c);
157
158         /* Run MST before or after we tell the rest? */
159
160         graph();
161
162         return true;
163 }
164
165 bool send_del_edge(connection_t *c, const edge_t *e) {
166         return send_request(c, "%d %x %s %s", DEL_EDGE, rand(),
167                                                 e->from->name, e->to->name);
168 }
169
170 bool del_edge_h(connection_t *c) {
171         edge_t *e;
172         char from_name[MAX_STRING_SIZE];
173         char to_name[MAX_STRING_SIZE];
174         node_t *from, *to;
175
176         if(sscanf(c->buffer, "%*d %*x "MAX_STRING" "MAX_STRING, from_name, to_name) != 2) {
177                 logger(LOG_ERR, "Got bad %s from %s (%s)", "DEL_EDGE", c->name,
178                            c->hostname);
179                 return false;
180         }
181
182         /* Check if names are valid */
183
184         if(!check_id(from_name) || !check_id(to_name)) {
185                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "DEL_EDGE", c->name,
186                            c->hostname, "invalid name");
187                 return false;
188         }
189
190         if(seen_request(c->buffer))
191                 return true;
192
193         /* Lookup nodes */
194
195         from = lookup_node(from_name);
196         to = lookup_node(to_name);
197
198         if(tunnelserver &&
199            from != myself && from != c->node &&
200            to != myself && to != c->node) {
201                 /* ignore indirect edge registrations for tunnelserver */
202                 ifdebug(PROTOCOL) logger(LOG_WARNING,
203                    "Ignoring indirect %s from %s (%s)",
204                    "DEL_EDGE", c->name, c->hostname);
205                 return true;
206         }
207
208         if(!from) {
209                 ifdebug(PROTOCOL) logger(LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
210                                    "DEL_EDGE", c->name, c->hostname);
211                 return true;
212         }
213
214         if(!to) {
215                 ifdebug(PROTOCOL) logger(LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
216                                    "DEL_EDGE", c->name, c->hostname);
217                 return true;
218         }
219
220         /* Check if edge exists */
221
222         e = lookup_edge(from, to);
223
224         if(!e) {
225                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) which does not appear in the edge tree",
226                                    "DEL_EDGE", c->name, c->hostname);
227                 return true;
228         }
229
230         if(e->from == myself) {
231                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for ourself",
232                                    "DEL_EDGE", c->name, c->hostname);
233                 contradicting_del_edge++;
234                 send_add_edge(c, e);    /* Send back a correction */
235                 return true;
236         }
237
238         /* Tell the rest about the deleted edge */
239
240         if(!tunnelserver)
241                 forward_request(c);
242
243         /* Delete the edge */
244
245         edge_del(e);
246
247         /* Run MST before or after we tell the rest? */
248
249         graph();
250
251         /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
252
253         if(!to->status.reachable) {
254                 e = lookup_edge(to, myself);
255                 if(e) {
256                         if(!tunnelserver)
257                                 send_del_edge(everyone, e);
258                         edge_del(e);
259                 }
260         }
261
262         return true;
263 }