2 protocol_subnet.c -- handle the meta-protocol, subnets
3 Copyright (C) 1999-2003 Ivo Timmermans <ivo@o2w.nl>,
4 2000-2003 Guus Sliepen <guus@sliepen.eu.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 $Id: protocol_subnet.c,v 1.1.4.17 2003/11/17 15:30:18 guus Exp $
26 #include "connection.h"
36 bool send_add_subnet(connection_t *c, const subnet_t *subnet)
43 x = send_request(c, "%d %lx %s %s", ADD_SUBNET, random(),
44 subnet->owner->name, netstr = net2str(subnet));
51 bool add_subnet_h(connection_t *c)
53 char subnetstr[MAX_STRING_SIZE];
54 char name[MAX_STRING_SIZE];
60 if(sscanf(c->buffer, "%*d %*x " MAX_STRING " " MAX_STRING, name, subnetstr) != 2) {
61 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "ADD_SUBNET", c->name,
66 /* Check if owner name is a valid */
69 logger(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_SUBNET", c->name,
70 c->hostname, _("invalid name"));
74 /* Check if subnet string is valid */
76 s = str2net(subnetstr);
79 logger(LOG_ERR, _("Got bad %s from %s (%s): %s"), "ADD_SUBNET", c->name,
80 c->hostname, _("invalid subnet string"));
84 if(seen_request(c->buffer))
87 /* Check if the owner of the new subnet is in the connection list */
89 owner = lookup_node(name);
93 owner->name = xstrdup(name);
97 if(tunnelserver && owner != myself && owner != c->node)
100 /* Check if we already know this subnet */
102 if(lookup_subnet(owner, s)) {
107 /* If we don't know this subnet, but we are the owner, retaliate with a DEL_SUBNET */
109 if(owner == myself) {
110 ifdebug(PROTOCOL) logger(LOG_WARNING, _("Got %s from %s (%s) for ourself"),
111 "ADD_SUBNET", c->name, c->hostname);
113 send_del_subnet(c, s);
117 /* In tunnel server mode, check if the subnet matches one in the config file of this node */
123 for(cfg = lookup_config(c->config_tree, "Subnet"); cfg; cfg = lookup_config_next(c->config_tree, cfg)) {
124 if(!get_config_subnet(cfg, &allowed))
127 if(!subnet_compare(s, allowed))
130 free_subnet(allowed);
136 free_subnet(allowed);
139 /* If everything is correct, add the subnet to the list of the owner */
141 subnet_add(owner, s);
151 bool send_del_subnet(connection_t *c, const subnet_t *s)
160 x = send_request(c, "%d %lx %s %s", DEL_SUBNET, random(), s->owner->name, netstr);
167 bool del_subnet_h(connection_t *c)
169 char subnetstr[MAX_STRING_SIZE];
170 char name[MAX_STRING_SIZE];
176 if(sscanf(c->buffer, "%*d %*x " MAX_STRING " " MAX_STRING, name, subnetstr) != 2) {
177 logger(LOG_ERR, _("Got bad %s from %s (%s)"), "DEL_SUBNET", c->name,
182 /* Check if owner name is a valid */
184 if(!check_id(name)) {
185 logger(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_SUBNET", c->name,
186 c->hostname, _("invalid name"));
190 /* Check if the owner of the new subnet is in the connection list */
192 owner = lookup_node(name);
195 ifdebug(PROTOCOL) logger(LOG_WARNING, _("Got %s from %s (%s) for %s which is not in our node tree"),
196 "DEL_SUBNET", c->name, c->hostname, name);
200 if(tunnelserver && owner != myself && owner != c->node)
203 /* Check if subnet string is valid */
205 s = str2net(subnetstr);
208 logger(LOG_ERR, _("Got bad %s from %s (%s): %s"), "DEL_SUBNET", c->name,
209 c->hostname, _("invalid subnet string"));
213 if(seen_request(c->buffer))
216 /* If everything is correct, delete the subnet from the list of the owner */
220 find = lookup_subnet(owner, s);
225 ifdebug(PROTOCOL) logger(LOG_WARNING, _("Got %s from %s (%s) for %s which does not appear in his subnet tree"),
226 "DEL_SUBNET", c->name, c->hostname, name);
230 /* If we are the owner of this subnet, retaliate with an ADD_SUBNET */
232 if(owner == myself) {
233 ifdebug(PROTOCOL) logger(LOG_WARNING, _("Got %s from %s (%s) for ourself"),
234 "DEL_SUBNET", c->name, c->hostname);
235 send_add_subnet(c, find);
244 /* Finally, delete it. */
246 subnet_del(owner, find);