1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
/* $OpenBSD: rde_srt.c,v 1.2 2006/12/03 20:14:37 michele Exp $ */
/*
* Copyright (c) 2005, 2006 Esben Norby <norby@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/tree.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <err.h>
#include <stdlib.h>
#include "igmp.h"
#include "dvmrp.h"
#include "dvmrpd.h"
#include "log.h"
#include "dvmrpe.h"
#include "rde.h"
/* source route tree */
void rt_invalidate(void);
void rt_expire_timer(int, short, void *);
int rt_start_expire_timer(struct rt_node *);
RB_HEAD(rt_tree, rt_node) rt;
RB_PROTOTYPE(rt_tree, rt_node, entry, rt_compare)
RB_GENERATE(rt_tree, rt_node, entry, rt_compare)
extern struct dvmrpd_conf *rdeconf;
/* timers */
void
rt_expire_timer(int fd, short event, void *arg)
{
struct rt_node *rn = arg;
log_debug("rt_expire_timer: route %s/%d", inet_ntoa(rn->prefix),
rn->prefixlen);
/* XXX tell neighbors */
/* remove route entry */
event_del(&rn->expiration_timer);
rt_remove(rn);
}
int
rt_start_expire_timer(struct rt_node *rn)
{
struct timeval tv;
timerclear(&tv);
tv.tv_sec = ROUTE_EXPIRATION_TIME;
return (evtimer_add(&rn->expiration_timer, &tv));
}
/* route table */
void
rt_init(void)
{
RB_INIT(&rt);
}
int
rt_compare(struct rt_node *a, struct rt_node *b)
{
/*
* sort route entries based on prefixlen since generating route
* reports rely on that.
*/
if (a->prefixlen < b->prefixlen)
return (-1);
if (a->prefixlen > b->prefixlen)
return (1);
if (ntohl(a->prefix.s_addr) < ntohl(b->prefix.s_addr))
return (-1);
if (ntohl(a->prefix.s_addr) > ntohl(b->prefix.s_addr))
return (1);
return (0);
}
struct rt_node *
rt_find(in_addr_t prefix, u_int8_t prefixlen)
{
struct rt_node s;
s.prefix.s_addr = prefix;
s.prefixlen = prefixlen;
return (RB_FIND(rt_tree, &rt, &s));
}
struct rt_node *
rr_new_rt(struct route_report *rr, int adj_metric, int connected)
{
struct timespec now;
struct rt_node *rn;
clock_gettime(CLOCK_MONOTONIC, &now);
if ((rn = calloc(1, sizeof(*rn))) == NULL)
fatal("rr_new_rt");
rn->prefix.s_addr = rr->net.s_addr;
rn->prefixlen = mask2prefixlen(rr->mask.s_addr);
rn->nexthop.s_addr = rr->nexthop.s_addr;
rn->cost = adj_metric;
rn->ifindex = rr->ifindex;
rn->flags = F_DVMRPD_INSERTED;
rn->connected = connected;
rn->uptime = now.tv_sec;
evtimer_set(&rn->expiration_timer, rt_expire_timer, rn);
return (rn);
}
int
rt_insert(struct rt_node *r)
{
if (RB_INSERT(rt_tree, &rt, r) != NULL) {
log_warnx("rt_insert failed for %s/%u", inet_ntoa(r->prefix),
r->prefixlen);
free(r);
return (-1);
}
return (0);
}
int
rt_remove(struct rt_node *r)
{
if (RB_REMOVE(rt_tree, &rt, r) == NULL) {
log_warnx("rt_remove failed for %s/%u",
inet_ntoa(r->prefix), r->prefixlen);
return (-1);
}
free(r);
return (0);
}
void
rt_invalidate(void)
{
struct rt_node *r, *nr;
for (r = RB_MIN(rt_tree, &rt); r != NULL; r = nr) {
nr = RB_NEXT(rt_tree, &rt, r);
if (r->invalid)
rt_remove(r);
else
r->invalid = 1;
}
}
void
rt_clear(void)
{
struct rt_node *r;
while ((r = RB_MIN(rt_tree, &rt)) != NULL)
rt_remove(r);
}
void
rt_snap(u_int32_t peerid)
{
struct rt_node *r;
struct route_report rr;
RB_FOREACH(r, rt_tree, &rt) {
if (r->invalid)
continue;
rr.net = r->prefix;
rr.mask.s_addr = ntohl(prefixlen2mask(r->prefixlen));
rr.metric = r->cost;
rr.ifindex = r->ifindex;
rde_imsg_compose_dvmrpe(IMSG_FULL_ROUTE_REPORT, peerid, 0, &rr,
sizeof(rr));
}
}
void
rt_dump(pid_t pid)
{
static struct ctl_rt rtctl;
struct timespec now;
struct timeval tv, now2, res;
struct rt_node *r;
clock_gettime(CLOCK_MONOTONIC, &now);
RB_FOREACH(r, rt_tree, &rt) {
if (r->invalid)
continue;
rtctl.prefix.s_addr = r->prefix.s_addr;
rtctl.nexthop.s_addr = r->nexthop.s_addr;
rtctl.adv_rtr.s_addr = r->adv_rtr.s_addr;
rtctl.cost = r->cost;
rtctl.flags = r->flags;
rtctl.prefixlen = r->prefixlen;
rtctl.uptime = now.tv_sec - r->uptime;
gettimeofday(&now2, NULL);
if (evtimer_pending(&r->expiration_timer, &tv)) {
timersub(&tv, &now2, &res);
rtctl.expire = res.tv_sec;
} else
rtctl.expire = -1;
rde_imsg_compose_dvmrpe(IMSG_CTL_SHOW_RIB, 0, pid, &rtctl,
sizeof(rtctl));
}
}
void
rt_update(struct rt_node *rn)
{
if (!rn->connected)
rt_start_expire_timer(rn);
}
int
rde_check_route(struct route_report *rr, int connected)
{
struct rt_node *rn;
struct iface *iface;
u_int32_t adj_metric;
if ((iface = if_find_index(rr->ifindex)) == NULL)
return (-1);
/* Interpret special case 0.0.0.0/8 as 0.0.0.0/0 */
if (rr->net.s_addr == 0)
rr->mask.s_addr = 0;
adj_metric = rr->metric + iface->metric;
if ((rn = rt_find(rr->net.s_addr, mask2prefixlen(rr->mask.s_addr)))
== NULL) {
rn = rr_new_rt(rr, adj_metric, connected);
rt_insert(rn);
}
rt_update(rn);
return (0);
}
|