Use AF_UNSPEC instead of AF_UNKNOWN for unspecified local address in add_edge_h().
[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 "conf.h"
25 #include "connection.h"
26 #include "edge.h"
27 #include "graph.h"
28 #include "logger.h"
29 #include "meta.h"
30 #include "net.h"
31 #include "netutl.h"
32 #include "node.h"
33 #include "protocol.h"
34 #include "utils.h"
35 #include "xalloc.h"
36
37 bool send_add_edge(connection_t *c, const edge_t *e) {
38         bool x;
39         char *address, *port;
40         char *local_address, *local_port;
41
42         sockaddr2str(&e->address, &address, &port);
43         sockaddr2str(&e->local_address, &local_address, &local_port);
44
45         x = send_request(c, "%d %x %s %s %s %s %x %d %s %s", ADD_EDGE, rand(),
46                                          e->from->name, e->to->name, address, port,
47                                          e->options, e->weight, local_address, local_port);
48
49         free(address);
50         free(port);
51         free(local_address);
52         free(local_port);
53
54         return x;
55 }
56
57 bool add_edge_h(connection_t *c, const char *request) {
58         edge_t *e;
59         node_t *from, *to;
60         char from_name[MAX_STRING_SIZE];
61         char to_name[MAX_STRING_SIZE];
62         char to_address[MAX_STRING_SIZE];
63         char to_port[MAX_STRING_SIZE];
64         char address_local[MAX_STRING_SIZE];
65         char port_local[MAX_STRING_SIZE];
66         sockaddr_t address, local_address = {{0}};
67         uint32_t options;
68         int weight;
69
70         int parameter_count = sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING" "MAX_STRING" "MAX_STRING" %x %d "MAX_STRING" "MAX_STRING,
71                                               from_name, to_name, to_address, to_port, &options, &weight, address_local, port_local);
72         if (parameter_count != 6 && parameter_count != 8) {
73                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "ADD_EDGE", c->name,
74                            c->hostname);
75                 return false;
76         }
77
78         /* Check if names are valid */
79
80         if(!check_id(from_name) || !check_id(to_name)) {
81                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "ADD_EDGE", c->name,
82                            c->hostname, "invalid name");
83                 return false;
84         }
85
86         if(seen_request(request))
87                 return true;
88
89         /* Lookup nodes */
90
91         from = lookup_node(from_name);
92         to = lookup_node(to_name);
93
94         if(tunnelserver &&
95            from != myself && from != c->node &&
96            to != myself && to != c->node) {
97                 /* ignore indirect edge registrations for tunnelserver */
98                 logger(DEBUG_PROTOCOL, LOG_WARNING,
99                    "Ignoring indirect %s from %s (%s)",
100                    "ADD_EDGE", c->name, c->hostname);
101                 return true;
102         }
103
104         if(!from) {
105                 from = new_node();
106                 from->name = xstrdup(from_name);
107                 node_add(from);
108         }
109
110         if(!to) {
111                 to = new_node();
112                 to->name = xstrdup(to_name);
113                 node_add(to);
114         }
115
116
117         /* Convert addresses */
118
119         address = str2sockaddr(to_address, to_port);
120         if(parameter_count >= 8)
121                 local_address = str2sockaddr(address_local, port_local);
122
123         /* Check if edge already exists */
124
125         e = lookup_edge(from, to);
126
127         if(e) {
128                 if(e->weight != weight || e->options != options || sockaddrcmp(&e->address, &address) || sockaddrcmp(&e->local_address, &local_address)) {
129                         if(from == myself) {
130                                 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself which does not match existing entry",
131                                                    "ADD_EDGE", c->name, c->hostname);
132                                 send_add_edge(c, e);
133                                 return true;
134                         } else {
135                                 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) which does not match existing entry",
136                                                    "ADD_EDGE", c->name, c->hostname);
137                                 edge_del(e);
138                                 graph();
139                         }
140                 } else
141                         return true;
142         } else if(from == myself) {
143                 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself which does not exist",
144                                    "ADD_EDGE", c->name, c->hostname);
145                 contradicting_add_edge++;
146                 e = new_edge();
147                 e->from = from;
148                 e->to = to;
149                 send_del_edge(c, e);
150                 free_edge(e);
151                 return true;
152         }
153
154         e = new_edge();
155         e->from = from;
156         e->to = to;
157         e->address = address;
158         e->local_address = local_address;
159         e->options = options;
160         e->weight = weight;
161         edge_add(e);
162
163         /* Tell the rest about the new edge */
164
165         if(!tunnelserver)
166                 forward_request(c, request);
167
168         /* Run MST before or after we tell the rest? */
169
170         graph();
171
172         return true;
173 }
174
175 bool send_del_edge(connection_t *c, const edge_t *e) {
176         return send_request(c, "%d %x %s %s", DEL_EDGE, rand(),
177                                                 e->from->name, e->to->name);
178 }
179
180 bool del_edge_h(connection_t *c, const char *request) {
181         edge_t *e;
182         char from_name[MAX_STRING_SIZE];
183         char to_name[MAX_STRING_SIZE];
184         node_t *from, *to;
185
186         if(sscanf(request, "%*d %*x "MAX_STRING" "MAX_STRING, from_name, to_name) != 2) {
187                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s)", "DEL_EDGE", c->name,
188                            c->hostname);
189                 return false;
190         }
191
192         /* Check if names are valid */
193
194         if(!check_id(from_name) || !check_id(to_name)) {
195                 logger(DEBUG_ALWAYS, LOG_ERR, "Got bad %s from %s (%s): %s", "DEL_EDGE", c->name,
196                            c->hostname, "invalid name");
197                 return false;
198         }
199
200         if(seen_request(request))
201                 return true;
202
203         /* Lookup nodes */
204
205         from = lookup_node(from_name);
206         to = lookup_node(to_name);
207
208         if(tunnelserver &&
209            from != myself && from != c->node &&
210            to != myself && to != c->node) {
211                 /* ignore indirect edge registrations for tunnelserver */
212                 logger(DEBUG_PROTOCOL, LOG_WARNING,
213                    "Ignoring indirect %s from %s (%s)",
214                    "DEL_EDGE", c->name, c->hostname);
215                 return true;
216         }
217
218         if(!from) {
219                 logger(DEBUG_PROTOCOL, LOG_ERR, "Got %s from %s (%s) which does not appear in the edge tree",
220                                    "DEL_EDGE", c->name, c->hostname);
221                 return true;
222         }
223
224         if(!to) {
225                 logger(DEBUG_PROTOCOL, LOG_ERR, "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         /* Check if edge exists */
231
232         e = lookup_edge(from, to);
233
234         if(!e) {
235                 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) which does not appear in the edge tree",
236                                    "DEL_EDGE", c->name, c->hostname);
237                 return true;
238         }
239
240         if(e->from == myself) {
241                 logger(DEBUG_PROTOCOL, LOG_WARNING, "Got %s from %s (%s) for ourself",
242                                    "DEL_EDGE", c->name, c->hostname);
243                 contradicting_del_edge++;
244                 send_add_edge(c, e);    /* Send back a correction */
245                 return true;
246         }
247
248         /* Tell the rest about the deleted edge */
249
250         if(!tunnelserver)
251                 forward_request(c, request);
252
253         /* Delete the edge */
254
255         edge_del(e);
256
257         /* Run MST before or after we tell the rest? */
258
259         graph();
260
261         /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */
262
263         if(!to->status.reachable) {
264                 e = lookup_edge(to, myself);
265                 if(e) {
266                         if(!tunnelserver)
267                                 send_del_edge(everyone, e);
268                         edge_del(e);
269                 }
270         }
271
272         return true;
273 }