Fix all -Wall -W compiler warnings.
[tinc] / src / protocol_subnet.c
1 /*
2     protocol_subnet.c -- handle the meta-protocol, subnets
3     Copyright (C) 1999-2005 Ivo Timmermans,
4                   2000-2009 Guus Sliepen <guus@tinc-vpn.org>
5                   2009      Michael Tokarev <mjt@tls.msk.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 "logger.h"
27 #include "net.h"
28 #include "netutl.h"
29 #include "node.h"
30 #include "protocol.h"
31 #include "subnet.h"
32 #include "utils.h"
33 #include "xalloc.h"
34
35 bool send_add_subnet(connection_t *c, const subnet_t *subnet) {
36         char netstr[MAXNETSTR];
37
38         if(!net2str(netstr, sizeof(netstr), subnet)) {
39                 return false;
40         }
41
42         return send_request(c, "%d %x %s %s", ADD_SUBNET, rand(), subnet->owner->name, netstr);
43 }
44
45 bool add_subnet_h(connection_t *c) {
46         char subnetstr[MAX_STRING_SIZE];
47         char name[MAX_STRING_SIZE];
48         node_t *owner;
49         subnet_t s = {}, *new, *old;
50
51         if(sscanf(c->buffer, "%*d %*x " MAX_STRING " " MAX_STRING, name, subnetstr) != 2) {
52                 logger(LOG_ERR, "Got bad %s from %s (%s)", "ADD_SUBNET", c->name,
53                        c->hostname);
54                 return false;
55         }
56
57         /* Check if owner name is valid */
58
59         if(!check_id(name)) {
60                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "ADD_SUBNET", c->name,
61                        c->hostname, "invalid name");
62                 return false;
63         }
64
65         /* Check if subnet string is valid */
66
67         if(!str2net(&s, subnetstr)) {
68                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "ADD_SUBNET", c->name,
69                        c->hostname, "invalid subnet string");
70                 return false;
71         }
72
73         if(seen_request(c->buffer)) {
74                 return true;
75         }
76
77         /* Check if the owner of the new subnet is in the connection list */
78
79         owner = lookup_node(name);
80
81         if(tunnelserver && owner != myself && owner != c->node) {
82                 /* in case of tunnelserver, ignore indirect subnet registrations */
83                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Ignoring indirect %s from %s (%s) for %s",
84                                          "ADD_SUBNET", c->name, c->hostname, subnetstr);
85                 return true;
86         }
87
88         if(!owner) {
89                 owner = new_node();
90                 owner->name = xstrdup(name);
91                 node_add(owner);
92         }
93
94         /* Check if we already know this subnet */
95
96         if(lookup_subnet(owner, &s)) {
97                 return true;
98         }
99
100         /* If we don't know this subnet, but we are the owner, retaliate with a DEL_SUBNET */
101
102         if(owner == myself) {
103                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for ourself",
104                                          "ADD_SUBNET", c->name, c->hostname);
105                 s.owner = myself;
106                 send_del_subnet(c, &s);
107                 return true;
108         }
109
110         /* In tunnel server mode, we should already know all allowed subnets */
111
112         if(tunnelserver) {
113                 logger(LOG_WARNING, "Ignoring unauthorized %s from %s (%s): %s",
114                        "ADD_SUBNET", c->name, c->hostname, subnetstr);
115                 return true;
116         }
117
118         /* Ignore if strictsubnets is true, but forward it to others */
119
120         if(strictsubnets) {
121                 logger(LOG_WARNING, "Ignoring unauthorized %s from %s (%s): %s",
122                        "ADD_SUBNET", c->name, c->hostname, subnetstr);
123                 forward_request(c);
124                 return true;
125         }
126
127         /* If everything is correct, add the subnet to the list of the owner */
128
129         *(new = new_subnet()) = s;
130         subnet_add(owner, new);
131
132         if(owner->status.reachable) {
133                 subnet_update(owner, new, true);
134         }
135
136         /* Tell the rest */
137
138         forward_request(c);
139
140         /* Fast handoff of roaming MAC addresses */
141
142         if(s.type == SUBNET_MAC && owner != myself && (old = lookup_subnet(myself, &s)) && old->expires) {
143                 old->expires = now;
144         }
145
146         return true;
147 }
148
149 bool send_del_subnet(connection_t *c, const subnet_t *s) {
150         char netstr[MAXNETSTR];
151
152         if(!net2str(netstr, sizeof(netstr), s)) {
153                 return false;
154         }
155
156         return send_request(c, "%d %x %s %s", DEL_SUBNET, rand(), s->owner->name, netstr);
157 }
158
159 bool del_subnet_h(connection_t *c) {
160         char subnetstr[MAX_STRING_SIZE];
161         char name[MAX_STRING_SIZE];
162         node_t *owner;
163         subnet_t s = {}, *find;
164
165         if(sscanf(c->buffer, "%*d %*x " MAX_STRING " " MAX_STRING, name, subnetstr) != 2) {
166                 logger(LOG_ERR, "Got bad %s from %s (%s)", "DEL_SUBNET", c->name,
167                        c->hostname);
168                 return false;
169         }
170
171         /* Check if owner name is valid */
172
173         if(!check_id(name)) {
174                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "DEL_SUBNET", c->name,
175                        c->hostname, "invalid name");
176                 return false;
177         }
178
179         /* Check if subnet string is valid */
180
181         if(!str2net(&s, subnetstr)) {
182                 logger(LOG_ERR, "Got bad %s from %s (%s): %s", "DEL_SUBNET", c->name,
183                        c->hostname, "invalid subnet string");
184                 return false;
185         }
186
187         if(seen_request(c->buffer)) {
188                 return true;
189         }
190
191         /* Check if the owner of the subnet being deleted is in the connection list */
192
193         owner = lookup_node(name);
194
195         if(tunnelserver && owner != myself && owner != c->node) {
196                 /* in case of tunnelserver, ignore indirect subnet deletion */
197                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Ignoring indirect %s from %s (%s) for %s",
198                                          "DEL_SUBNET", c->name, c->hostname, subnetstr);
199                 return true;
200         }
201
202         if(!owner) {
203                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for %s which is not in our node tree",
204                                          "DEL_SUBNET", c->name, c->hostname, name);
205                 return true;
206         }
207
208         /* If everything is correct, delete the subnet from the list of the owner */
209
210         s.owner = owner;
211
212         find = lookup_subnet(owner, &s);
213
214         if(!find) {
215                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for %s which does not appear in his subnet tree",
216                                          "DEL_SUBNET", c->name, c->hostname, name);
217
218                 if(strictsubnets) {
219                         forward_request(c);
220                 }
221
222                 return true;
223         }
224
225         /* If we are the owner of this subnet, retaliate with an ADD_SUBNET */
226
227         if(owner == myself) {
228                 ifdebug(PROTOCOL) logger(LOG_WARNING, "Got %s from %s (%s) for ourself",
229                                          "DEL_SUBNET", c->name, c->hostname);
230                 send_add_subnet(c, find);
231                 return true;
232         }
233
234         if(tunnelserver) {
235                 return true;
236         }
237
238         /* Tell the rest */
239
240         forward_request(c);
241
242         if(strictsubnets) {
243                 return true;
244         }
245
246         /* Finally, delete it. */
247
248         if(owner->status.reachable) {
249                 subnet_update(owner, find, false);
250         }
251
252         subnet_del(owner, find);
253
254         return true;
255 }