rdisc.c revision 1.7 1 1.7 thorpej /* $NetBSD: rdisc.c,v 1.7 1998/06/02 18:02:56 thorpej Exp $ */
2 1.2 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 1995
5 1.1 thorpej * The Regents of the University of California. All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Redistribution and use in source and binary forms, with or without
8 1.1 thorpej * modification, are permitted provided that the following conditions
9 1.1 thorpej * are met:
10 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
11 1.1 thorpej * notice, this list of conditions and the following disclaimer.
12 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
14 1.1 thorpej * documentation and/or other materials provided with the distribution.
15 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
16 1.1 thorpej * must display the following acknowledgement:
17 1.1 thorpej * This product includes software developed by the University of
18 1.1 thorpej * California, Berkeley and its contributors.
19 1.1 thorpej * 4. Neither the name of the University nor the names of its contributors
20 1.1 thorpej * may be used to endorse or promote products derived from this software
21 1.1 thorpej * without specific prior written permission.
22 1.1 thorpej *
23 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 thorpej * SUCH DAMAGE.
34 1.1 thorpej */
35 1.1 thorpej
36 1.4 christos #if !defined(lint) && !defined(sgi) && !defined(__NetBSD__)
37 1.1 thorpej static char sccsid[] = "@(#)rdisc.c 8.1 (Berkeley) x/y/95";
38 1.4 christos #elif defined(__NetBSD__)
39 1.6 lukem #include <sys/cdefs.h>
40 1.7 thorpej __RCSID("$NetBSD: rdisc.c,v 1.7 1998/06/02 18:02:56 thorpej Exp $");
41 1.2 thorpej #endif
42 1.1 thorpej
43 1.1 thorpej #include "defs.h"
44 1.1 thorpej #include <netinet/in_systm.h>
45 1.1 thorpej #include <netinet/ip.h>
46 1.1 thorpej #include <netinet/ip_icmp.h>
47 1.7 thorpej #if defined(sgi) && !defined(PRE_KUDZU)
48 1.7 thorpej #include <cap_net.h>
49 1.7 thorpej #else
50 1.7 thorpej #define cap_socket socket
51 1.7 thorpej #endif
52 1.1 thorpej
53 1.1 thorpej /* router advertisement ICMP packet */
54 1.1 thorpej struct icmp_ad {
55 1.4 christos u_int8_t icmp_type; /* type of message */
56 1.4 christos u_int8_t icmp_code; /* type sub code */
57 1.4 christos u_int16_t icmp_cksum; /* ones complement cksum of struct */
58 1.4 christos u_int8_t icmp_ad_num; /* # of following router addresses */
59 1.4 christos u_int8_t icmp_ad_asize; /* 2--words in each advertisement */
60 1.4 christos u_int16_t icmp_ad_life; /* seconds of validity */
61 1.1 thorpej struct icmp_ad_info {
62 1.1 thorpej n_long icmp_ad_addr;
63 1.1 thorpej n_long icmp_ad_pref;
64 1.1 thorpej } icmp_ad_info[1];
65 1.1 thorpej };
66 1.1 thorpej
67 1.1 thorpej /* router solicitation ICMP packet */
68 1.1 thorpej struct icmp_so {
69 1.4 christos u_int8_t icmp_type; /* type of message */
70 1.4 christos u_int8_t icmp_code; /* type sub code */
71 1.4 christos u_int16_t icmp_cksum; /* ones complement cksum of struct */
72 1.4 christos n_long icmp_so_rsvd;
73 1.1 thorpej };
74 1.1 thorpej
75 1.1 thorpej union ad_u {
76 1.1 thorpej struct icmp icmp;
77 1.1 thorpej struct icmp_ad ad;
78 1.1 thorpej struct icmp_so so;
79 1.1 thorpej };
80 1.1 thorpej
81 1.1 thorpej
82 1.1 thorpej int rdisc_sock = -1; /* router-discovery raw socket */
83 1.1 thorpej struct interface *rdisc_sock_mcast; /* current multicast interface */
84 1.1 thorpej
85 1.1 thorpej struct timeval rdisc_timer;
86 1.7 thorpej int rdisc_ok; /* using solicted route */
87 1.1 thorpej
88 1.1 thorpej
89 1.7 thorpej #define MAX_ADS 16 /* at least one per interface */
90 1.1 thorpej struct dr { /* accumulated advertisements */
91 1.1 thorpej struct interface *dr_ifp;
92 1.1 thorpej naddr dr_gate; /* gateway */
93 1.1 thorpej time_t dr_ts; /* when received */
94 1.1 thorpej time_t dr_life; /* lifetime */
95 1.1 thorpej n_long dr_recv_pref; /* received but biased preference */
96 1.1 thorpej n_long dr_pref; /* preference adjusted by metric */
97 1.1 thorpej } *cur_drp, drs[MAX_ADS];
98 1.1 thorpej
99 1.7 thorpej /* convert between signed, balanced around zero,
100 1.7 thorpej * and unsigned zero-based preferences */
101 1.7 thorpej #define SIGN_PREF(p) ((p) ^ MIN_PreferenceLevel)
102 1.7 thorpej #define UNSIGN_PREF(p) SIGN_PREF(p)
103 1.7 thorpej /* adjust unsigned preference by interface metric,
104 1.7 thorpej * without driving it to infinity */
105 1.1 thorpej #define PREF(p, ifp) ((p) <= (ifp)->int_metric ? ((p) != 0 ? 1 : 0) \
106 1.1 thorpej : (p) - ((ifp)->int_metric))
107 1.1 thorpej
108 1.1 thorpej static void rdisc_sort(void);
109 1.1 thorpej
110 1.1 thorpej
111 1.1 thorpej /* dump an ICMP Router Discovery Advertisement Message
112 1.1 thorpej */
113 1.1 thorpej static void
114 1.1 thorpej trace_rdisc(char *act,
115 1.1 thorpej naddr from,
116 1.1 thorpej naddr to,
117 1.1 thorpej struct interface *ifp,
118 1.1 thorpej union ad_u *p,
119 1.1 thorpej u_int len)
120 1.1 thorpej {
121 1.1 thorpej int i;
122 1.1 thorpej n_long *wp, *lim;
123 1.1 thorpej
124 1.1 thorpej
125 1.1 thorpej if (!TRACEPACKETS || ftrace == 0)
126 1.1 thorpej return;
127 1.1 thorpej
128 1.1 thorpej lastlog();
129 1.1 thorpej
130 1.1 thorpej if (p->icmp.icmp_type == ICMP_ROUTERADVERT) {
131 1.1 thorpej (void)fprintf(ftrace, "%s Router Ad"
132 1.1 thorpej " from %s to %s via %s life=%d\n",
133 1.1 thorpej act, naddr_ntoa(from), naddr_ntoa(to),
134 1.1 thorpej ifp ? ifp->int_name : "?",
135 1.1 thorpej ntohs(p->ad.icmp_ad_life));
136 1.1 thorpej if (!TRACECONTENTS)
137 1.1 thorpej return;
138 1.1 thorpej
139 1.1 thorpej wp = &p->ad.icmp_ad_info[0].icmp_ad_addr;
140 1.1 thorpej lim = &wp[(len - sizeof(p->ad)) / sizeof(*wp)];
141 1.1 thorpej for (i = 0; i < p->ad.icmp_ad_num && wp <= lim; i++) {
142 1.5 christos (void)fprintf(ftrace, "\t%s preference=%d",
143 1.4 christos naddr_ntoa(wp[0]), (int)ntohl(wp[1]));
144 1.1 thorpej wp += p->ad.icmp_ad_asize;
145 1.1 thorpej }
146 1.1 thorpej (void)fputc('\n',ftrace);
147 1.1 thorpej
148 1.1 thorpej } else {
149 1.5 christos trace_act("%s Router Solic. from %s to %s via %s value=%#x",
150 1.1 thorpej act, naddr_ntoa(from), naddr_ntoa(to),
151 1.1 thorpej ifp ? ifp->int_name : "?",
152 1.1 thorpej ntohl(p->so.icmp_so_rsvd));
153 1.1 thorpej }
154 1.1 thorpej }
155 1.1 thorpej
156 1.4 christos /* prepare Router Discovery socket.
157 1.4 christos */
158 1.4 christos static void
159 1.4 christos get_rdisc_sock(void)
160 1.4 christos {
161 1.4 christos if (rdisc_sock < 0) {
162 1.7 thorpej rdisc_sock = cap_socket(AF_INET, SOCK_RAW, IPPROTO_ICMP);
163 1.4 christos if (rdisc_sock < 0)
164 1.4 christos BADERR(1,"rdisc_sock = socket()");
165 1.4 christos fix_sock(rdisc_sock,"rdisc_sock");
166 1.4 christos fix_select();
167 1.4 christos }
168 1.4 christos }
169 1.4 christos
170 1.1 thorpej
171 1.1 thorpej /* Pick multicast group for router-discovery socket
172 1.1 thorpej */
173 1.1 thorpej void
174 1.1 thorpej set_rdisc_mg(struct interface *ifp,
175 1.5 christos int on) /* 0=turn it off */
176 1.5 christos {
177 1.1 thorpej struct ip_mreq m;
178 1.1 thorpej
179 1.4 christos if (rdisc_sock < 0) {
180 1.4 christos /* Create the raw socket so that we can hear at least
181 1.4 christos * broadcast router discovery packets.
182 1.4 christos */
183 1.4 christos if ((ifp->int_state & IS_NO_RDISC) == IS_NO_RDISC
184 1.4 christos || !on)
185 1.4 christos return;
186 1.4 christos get_rdisc_sock();
187 1.4 christos }
188 1.4 christos
189 1.5 christos if (!(ifp->int_if_flags & IFF_MULTICAST)) {
190 1.1 thorpej ifp->int_state &= ~(IS_ALL_HOSTS | IS_ALL_ROUTERS);
191 1.1 thorpej return;
192 1.1 thorpej }
193 1.1 thorpej
194 1.1 thorpej #ifdef MCAST_PPP_BUG
195 1.1 thorpej if (ifp->int_if_flags & IFF_POINTOPOINT)
196 1.1 thorpej return;
197 1.1 thorpej #endif
198 1.6 lukem memset(&m, 0, sizeof(m));
199 1.1 thorpej m.imr_interface.s_addr = ((ifp->int_if_flags & IFF_POINTOPOINT)
200 1.1 thorpej ? ifp->int_dstaddr
201 1.1 thorpej : ifp->int_addr);
202 1.1 thorpej if (supplier
203 1.1 thorpej || (ifp->int_state & IS_NO_ADV_IN)
204 1.1 thorpej || !on) {
205 1.4 christos /* stop listening to advertisements
206 1.4 christos */
207 1.1 thorpej if (ifp->int_state & IS_ALL_HOSTS) {
208 1.1 thorpej m.imr_multiaddr.s_addr = htonl(INADDR_ALLHOSTS_GROUP);
209 1.1 thorpej if (setsockopt(rdisc_sock, IPPROTO_IP,
210 1.1 thorpej IP_DROP_MEMBERSHIP,
211 1.1 thorpej &m, sizeof(m)) < 0)
212 1.1 thorpej LOGERR("IP_DROP_MEMBERSHIP ALLHOSTS");
213 1.1 thorpej ifp->int_state &= ~IS_ALL_HOSTS;
214 1.1 thorpej }
215 1.1 thorpej
216 1.1 thorpej } else if (!(ifp->int_state & IS_ALL_HOSTS)) {
217 1.4 christos /* start listening to advertisements
218 1.4 christos */
219 1.1 thorpej m.imr_multiaddr.s_addr = htonl(INADDR_ALLHOSTS_GROUP);
220 1.1 thorpej if (setsockopt(rdisc_sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
221 1.1 thorpej &m, sizeof(m)) < 0) {
222 1.1 thorpej LOGERR("IP_ADD_MEMBERSHIP ALLHOSTS");
223 1.1 thorpej } else {
224 1.1 thorpej ifp->int_state |= IS_ALL_HOSTS;
225 1.1 thorpej }
226 1.1 thorpej }
227 1.1 thorpej
228 1.1 thorpej if (!supplier
229 1.1 thorpej || (ifp->int_state & IS_NO_ADV_OUT)
230 1.1 thorpej || !on) {
231 1.4 christos /* stop listening to solicitations
232 1.4 christos */
233 1.1 thorpej if (ifp->int_state & IS_ALL_ROUTERS) {
234 1.1 thorpej m.imr_multiaddr.s_addr=htonl(INADDR_ALLROUTERS_GROUP);
235 1.1 thorpej if (setsockopt(rdisc_sock, IPPROTO_IP,
236 1.1 thorpej IP_DROP_MEMBERSHIP,
237 1.1 thorpej &m, sizeof(m)) < 0)
238 1.1 thorpej LOGERR("IP_DROP_MEMBERSHIP ALLROUTERS");
239 1.1 thorpej ifp->int_state &= ~IS_ALL_ROUTERS;
240 1.1 thorpej }
241 1.1 thorpej
242 1.1 thorpej } else if (!(ifp->int_state & IS_ALL_ROUTERS)) {
243 1.4 christos /* start hearing solicitations
244 1.4 christos */
245 1.1 thorpej m.imr_multiaddr.s_addr=htonl(INADDR_ALLROUTERS_GROUP);
246 1.1 thorpej if (setsockopt(rdisc_sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
247 1.1 thorpej &m, sizeof(m)) < 0) {
248 1.1 thorpej LOGERR("IP_ADD_MEMBERSHIP ALLROUTERS");
249 1.1 thorpej } else {
250 1.1 thorpej ifp->int_state |= IS_ALL_ROUTERS;
251 1.1 thorpej }
252 1.1 thorpej }
253 1.1 thorpej }
254 1.1 thorpej
255 1.1 thorpej
256 1.1 thorpej /* start supplying routes
257 1.1 thorpej */
258 1.1 thorpej void
259 1.1 thorpej set_supplier(void)
260 1.1 thorpej {
261 1.1 thorpej struct interface *ifp;
262 1.1 thorpej struct dr *drp;
263 1.1 thorpej
264 1.1 thorpej if (supplier_set)
265 1.1 thorpej return;
266 1.1 thorpej
267 1.5 christos trace_act("start suppying routes");
268 1.1 thorpej
269 1.1 thorpej /* Forget discovered routes.
270 1.1 thorpej */
271 1.1 thorpej for (drp = drs; drp < &drs[MAX_ADS]; drp++) {
272 1.1 thorpej drp->dr_recv_pref = 0;
273 1.1 thorpej drp->dr_life = 0;
274 1.1 thorpej }
275 1.1 thorpej rdisc_age(0);
276 1.1 thorpej
277 1.1 thorpej supplier_set = 1;
278 1.1 thorpej supplier = 1;
279 1.1 thorpej
280 1.1 thorpej /* Do not start advertising until we have heard some RIP routes */
281 1.1 thorpej LIM_SEC(rdisc_timer, now.tv_sec+MIN_WAITTIME);
282 1.1 thorpej
283 1.1 thorpej /* Switch router discovery multicast groups from soliciting
284 1.1 thorpej * to advertising.
285 1.1 thorpej */
286 1.1 thorpej for (ifp = ifnet; ifp; ifp = ifp->int_next) {
287 1.1 thorpej if (ifp->int_state & IS_BROKE)
288 1.1 thorpej continue;
289 1.1 thorpej ifp->int_rdisc_cnt = 0;
290 1.1 thorpej ifp->int_rdisc_timer.tv_usec = rdisc_timer.tv_usec;
291 1.1 thorpej ifp->int_rdisc_timer.tv_sec = now.tv_sec+MIN_WAITTIME;
292 1.1 thorpej set_rdisc_mg(ifp, 1);
293 1.1 thorpej }
294 1.1 thorpej
295 1.1 thorpej /* get rid of any redirects */
296 1.1 thorpej del_redirects(0,0);
297 1.1 thorpej }
298 1.1 thorpej
299 1.1 thorpej
300 1.1 thorpej /* age discovered routes and find the best one
301 1.1 thorpej */
302 1.1 thorpej void
303 1.1 thorpej rdisc_age(naddr bad_gate)
304 1.1 thorpej {
305 1.1 thorpej time_t sec;
306 1.1 thorpej struct dr *drp;
307 1.1 thorpej
308 1.1 thorpej
309 1.1 thorpej /* If only adverising, then do only that. */
310 1.1 thorpej if (supplier) {
311 1.7 thorpej /* If switching from client to server, get rid of old
312 1.1 thorpej * default routes.
313 1.1 thorpej */
314 1.1 thorpej if (cur_drp != 0)
315 1.1 thorpej rdisc_sort();
316 1.1 thorpej rdisc_adv();
317 1.1 thorpej return;
318 1.1 thorpej }
319 1.1 thorpej
320 1.1 thorpej /* If we are being told about a bad router,
321 1.1 thorpej * then age the discovered default route, and if there is
322 1.1 thorpej * no alternative, solicite a replacement.
323 1.1 thorpej */
324 1.1 thorpej if (bad_gate != 0) {
325 1.1 thorpej /* Look for the bad discovered default route.
326 1.1 thorpej * Age it and note its interface.
327 1.1 thorpej */
328 1.1 thorpej for (drp = drs; drp < &drs[MAX_ADS]; drp++) {
329 1.1 thorpej if (drp->dr_ts == 0)
330 1.1 thorpej continue;
331 1.1 thorpej
332 1.1 thorpej /* When we find the bad router, then age the route
333 1.1 thorpej * to at most SUPPLY_INTERVAL.
334 1.1 thorpej * This is contrary to RFC 1256, but defends against
335 1.1 thorpej * black holes.
336 1.1 thorpej */
337 1.1 thorpej if (drp->dr_gate == bad_gate) {
338 1.1 thorpej sec = (now.tv_sec - drp->dr_life
339 1.1 thorpej + SUPPLY_INTERVAL);
340 1.1 thorpej if (drp->dr_ts > sec) {
341 1.5 christos trace_act("age 0.0.0.0 --> %s via %s",
342 1.1 thorpej naddr_ntoa(drp->dr_gate),
343 1.1 thorpej drp->dr_ifp->int_name);
344 1.1 thorpej drp->dr_ts = sec;
345 1.1 thorpej }
346 1.1 thorpej break;
347 1.1 thorpej }
348 1.1 thorpej }
349 1.1 thorpej }
350 1.1 thorpej
351 1.1 thorpej rdisc_sol();
352 1.7 thorpej rdisc_sort();
353 1.1 thorpej
354 1.7 thorpej /* Delete old redirected routes to keep the kernel table small,
355 1.7 thorpej * and to prevent black holes. Check that the kernel table
356 1.7 thorpej * matches the daemon table (i.e. has the default route).
357 1.7 thorpej * But only if RIP is not running and we are not dealing with
358 1.7 thorpej * a bad gateway, since otherwise age() will be called.
359 1.7 thorpej */
360 1.7 thorpej if (rip_sock < 0 && bad_gate == 0)
361 1.7 thorpej age(0);
362 1.1 thorpej }
363 1.1 thorpej
364 1.1 thorpej
365 1.1 thorpej /* Zap all routes discovered via an interface that has gone bad
366 1.1 thorpej * This should only be called when !(ifp->int_state & IS_ALIAS)
367 1.1 thorpej */
368 1.1 thorpej void
369 1.1 thorpej if_bad_rdisc(struct interface *ifp)
370 1.1 thorpej {
371 1.1 thorpej struct dr *drp;
372 1.1 thorpej
373 1.1 thorpej for (drp = drs; drp < &drs[MAX_ADS]; drp++) {
374 1.1 thorpej if (drp->dr_ifp != ifp)
375 1.1 thorpej continue;
376 1.1 thorpej drp->dr_recv_pref = 0;
377 1.7 thorpej drp->dr_ts = 0;
378 1.1 thorpej drp->dr_life = 0;
379 1.1 thorpej }
380 1.1 thorpej
381 1.7 thorpej /* make a note to re-solicit, turn RIP on or off, etc. */
382 1.7 thorpej rdisc_timer.tv_sec = 0;
383 1.1 thorpej }
384 1.1 thorpej
385 1.1 thorpej
386 1.1 thorpej /* mark an interface ok for router discovering.
387 1.1 thorpej */
388 1.1 thorpej void
389 1.1 thorpej if_ok_rdisc(struct interface *ifp)
390 1.1 thorpej {
391 1.1 thorpej set_rdisc_mg(ifp, 1);
392 1.1 thorpej
393 1.1 thorpej ifp->int_rdisc_cnt = 0;
394 1.1 thorpej ifp->int_rdisc_timer.tv_sec = now.tv_sec + (supplier
395 1.1 thorpej ? MIN_WAITTIME
396 1.1 thorpej : MAX_SOLICITATION_DELAY);
397 1.1 thorpej if (timercmp(&rdisc_timer, &ifp->int_rdisc_timer, >))
398 1.1 thorpej rdisc_timer = ifp->int_rdisc_timer;
399 1.1 thorpej }
400 1.1 thorpej
401 1.1 thorpej
402 1.1 thorpej /* get rid of a dead discovered router
403 1.1 thorpej */
404 1.1 thorpej static void
405 1.1 thorpej del_rdisc(struct dr *drp)
406 1.1 thorpej {
407 1.1 thorpej struct interface *ifp;
408 1.7 thorpej naddr gate;
409 1.1 thorpej int i;
410 1.1 thorpej
411 1.1 thorpej
412 1.7 thorpej del_redirects(gate = drp->dr_gate, 0);
413 1.1 thorpej drp->dr_ts = 0;
414 1.1 thorpej drp->dr_life = 0;
415 1.1 thorpej
416 1.1 thorpej
417 1.1 thorpej /* Count the other discovered routes on the interface.
418 1.1 thorpej */
419 1.1 thorpej i = 0;
420 1.1 thorpej ifp = drp->dr_ifp;
421 1.1 thorpej for (drp = drs; drp < &drs[MAX_ADS]; drp++) {
422 1.1 thorpej if (drp->dr_ts != 0
423 1.1 thorpej && drp->dr_ifp == ifp)
424 1.1 thorpej i++;
425 1.1 thorpej }
426 1.1 thorpej
427 1.1 thorpej /* If that was the last good discovered router on the interface,
428 1.1 thorpej * then solicit a new one.
429 1.1 thorpej * This is contrary to RFC 1256, but defends against black holes.
430 1.1 thorpej */
431 1.7 thorpej if (i != 0) {
432 1.7 thorpej trace_act("discovered router %s via %s"
433 1.7 thorpej " is bad--have %d remaining",
434 1.7 thorpej naddr_ntoa(gate), ifp->int_name, i);
435 1.7 thorpej } else if (ifp->int_rdisc_cnt >= MAX_SOLICITATIONS) {
436 1.7 thorpej trace_act("last discovered router %s via %s"
437 1.7 thorpej " is bad--re-solicit",
438 1.7 thorpej naddr_ntoa(gate), ifp->int_name);
439 1.1 thorpej ifp->int_rdisc_cnt = 0;
440 1.1 thorpej ifp->int_rdisc_timer.tv_sec = 0;
441 1.1 thorpej rdisc_sol();
442 1.7 thorpej } else {
443 1.7 thorpej trace_act("last discovered router %s via %s"
444 1.7 thorpej " is bad--wait to solicit",
445 1.7 thorpej naddr_ntoa(gate), ifp->int_name);
446 1.1 thorpej }
447 1.1 thorpej }
448 1.1 thorpej
449 1.1 thorpej
450 1.1 thorpej /* Find the best discovered route,
451 1.1 thorpej * and discard stale routers.
452 1.1 thorpej */
453 1.1 thorpej static void
454 1.1 thorpej rdisc_sort(void)
455 1.1 thorpej {
456 1.1 thorpej struct dr *drp, *new_drp;
457 1.1 thorpej struct rt_entry *rt;
458 1.7 thorpej struct rt_spare new;
459 1.1 thorpej struct interface *ifp;
460 1.1 thorpej u_int new_st;
461 1.1 thorpej n_long new_pref;
462 1.1 thorpej
463 1.1 thorpej
464 1.1 thorpej /* Find the best discovered route.
465 1.1 thorpej */
466 1.1 thorpej new_drp = 0;
467 1.6 lukem new_st = 0;
468 1.6 lukem new_pref = 0;
469 1.1 thorpej for (drp = drs; drp < &drs[MAX_ADS]; drp++) {
470 1.1 thorpej if (drp->dr_ts == 0)
471 1.1 thorpej continue;
472 1.1 thorpej ifp = drp->dr_ifp;
473 1.1 thorpej
474 1.1 thorpej /* Get rid of expired discovered routers.
475 1.1 thorpej */
476 1.1 thorpej if (drp->dr_ts + drp->dr_life <= now.tv_sec) {
477 1.1 thorpej del_rdisc(drp);
478 1.1 thorpej continue;
479 1.1 thorpej }
480 1.1 thorpej
481 1.1 thorpej LIM_SEC(rdisc_timer, drp->dr_ts+drp->dr_life+1);
482 1.1 thorpej
483 1.1 thorpej /* Update preference with possibly changed interface
484 1.1 thorpej * metric.
485 1.1 thorpej */
486 1.1 thorpej drp->dr_pref = PREF(drp->dr_recv_pref, ifp);
487 1.1 thorpej
488 1.1 thorpej /* Prefer the current route to prevent thrashing.
489 1.1 thorpej * Prefer shorter lifetimes to speed the detection of
490 1.1 thorpej * bad routers.
491 1.1 thorpej * Avoid sick interfaces.
492 1.1 thorpej */
493 1.1 thorpej if (new_drp == 0
494 1.1 thorpej || (!((new_st ^ drp->dr_ifp->int_state) & IS_SICK)
495 1.1 thorpej && (new_pref < drp->dr_pref
496 1.1 thorpej || (new_pref == drp->dr_pref
497 1.1 thorpej && (drp == cur_drp
498 1.1 thorpej || (new_drp != cur_drp
499 1.1 thorpej && new_drp->dr_life > drp->dr_life)))))
500 1.1 thorpej || ((new_st & IS_SICK)
501 1.1 thorpej && !(drp->dr_ifp->int_state & IS_SICK))) {
502 1.1 thorpej new_drp = drp;
503 1.1 thorpej new_st = drp->dr_ifp->int_state;
504 1.1 thorpej new_pref = drp->dr_pref;
505 1.1 thorpej }
506 1.1 thorpej }
507 1.1 thorpej
508 1.1 thorpej /* switch to a better default route
509 1.1 thorpej */
510 1.1 thorpej if (new_drp != cur_drp) {
511 1.1 thorpej rt = rtget(RIP_DEFAULT, 0);
512 1.1 thorpej
513 1.1 thorpej /* Stop using discovered routes if they are all bad
514 1.1 thorpej */
515 1.1 thorpej if (new_drp == 0) {
516 1.5 christos trace_act("turn off Router Discovery client");
517 1.1 thorpej rdisc_ok = 0;
518 1.1 thorpej
519 1.1 thorpej if (rt != 0
520 1.1 thorpej && (rt->rt_state & RS_RDISC)) {
521 1.7 thorpej new = rt->rt_spares[0];
522 1.7 thorpej new.rts_metric = HOPCNT_INFINITY;
523 1.7 thorpej new.rts_time = now.tv_sec - GARBAGE_TIME;
524 1.1 thorpej rtchange(rt, rt->rt_state & ~RS_RDISC,
525 1.7 thorpej &new, 0);
526 1.1 thorpej rtswitch(rt, 0);
527 1.1 thorpej }
528 1.1 thorpej
529 1.1 thorpej } else {
530 1.1 thorpej if (cur_drp == 0) {
531 1.1 thorpej trace_act("turn on Router Discovery client"
532 1.5 christos " using %s via %s",
533 1.1 thorpej naddr_ntoa(new_drp->dr_gate),
534 1.1 thorpej new_drp->dr_ifp->int_name);
535 1.1 thorpej rdisc_ok = 1;
536 1.1 thorpej
537 1.1 thorpej } else {
538 1.1 thorpej trace_act("switch Router Discovery from"
539 1.5 christos " %s via %s to %s via %s",
540 1.1 thorpej naddr_ntoa(cur_drp->dr_gate),
541 1.1 thorpej cur_drp->dr_ifp->int_name,
542 1.1 thorpej naddr_ntoa(new_drp->dr_gate),
543 1.1 thorpej new_drp->dr_ifp->int_name);
544 1.1 thorpej }
545 1.1 thorpej
546 1.7 thorpej bzero(&new, sizeof(new));
547 1.7 thorpej new.rts_ifp = new_drp->dr_ifp;
548 1.7 thorpej new.rts_gate = new_drp->dr_gate;
549 1.7 thorpej new.rts_router = new_drp->dr_gate;
550 1.7 thorpej new.rts_metric = HOPCNT_INFINITY-1;
551 1.7 thorpej new.rts_time = now.tv_sec;
552 1.1 thorpej if (rt != 0) {
553 1.7 thorpej rtchange(rt, rt->rt_state | RS_RDISC, &new, 0);
554 1.1 thorpej } else {
555 1.7 thorpej rtadd(RIP_DEFAULT, 0, RS_RDISC, &new);
556 1.1 thorpej }
557 1.1 thorpej }
558 1.1 thorpej
559 1.1 thorpej cur_drp = new_drp;
560 1.1 thorpej }
561 1.7 thorpej
562 1.7 thorpej /* turn RIP on or off */
563 1.7 thorpej if (!rdisc_ok || rip_interfaces > 1) {
564 1.7 thorpej rip_on(0);
565 1.7 thorpej } else {
566 1.7 thorpej rip_off();
567 1.7 thorpej }
568 1.1 thorpej }
569 1.1 thorpej
570 1.1 thorpej
571 1.1 thorpej /* handle a single address in an advertisement
572 1.1 thorpej */
573 1.1 thorpej static void
574 1.1 thorpej parse_ad(naddr from,
575 1.1 thorpej naddr gate,
576 1.7 thorpej n_long pref, /* signed and in network order */
577 1.1 thorpej u_short life,
578 1.1 thorpej struct interface *ifp)
579 1.1 thorpej {
580 1.5 christos static struct msg_limit bad_gate;
581 1.1 thorpej struct dr *drp, *new_drp;
582 1.1 thorpej
583 1.1 thorpej
584 1.1 thorpej if (gate == RIP_DEFAULT
585 1.1 thorpej || !check_dst(gate)) {
586 1.5 christos msglim(&bad_gate, from,"router %s advertising bad gateway %s",
587 1.5 christos naddr_ntoa(from),
588 1.5 christos naddr_ntoa(gate));
589 1.1 thorpej return;
590 1.1 thorpej }
591 1.1 thorpej
592 1.1 thorpej /* ignore pointers to ourself and routes via unreachable networks
593 1.1 thorpej */
594 1.1 thorpej if (ifwithaddr(gate, 1, 0) != 0) {
595 1.5 christos trace_pkt(" discard Router Discovery Ad pointing at us");
596 1.1 thorpej return;
597 1.1 thorpej }
598 1.1 thorpej if (!on_net(gate, ifp->int_net, ifp->int_mask)) {
599 1.5 christos trace_pkt(" discard Router Discovery Ad"
600 1.5 christos " toward unreachable net");
601 1.1 thorpej return;
602 1.1 thorpej }
603 1.1 thorpej
604 1.1 thorpej /* Convert preference to an unsigned value
605 1.1 thorpej * and later bias it by the metric of the interface.
606 1.1 thorpej */
607 1.7 thorpej pref = UNSIGN_PREF(ntohl(pref));
608 1.4 christos
609 1.7 thorpej if (pref == 0 || life < MinMaxAdvertiseInterval) {
610 1.1 thorpej pref = 0;
611 1.1 thorpej life = 0;
612 1.1 thorpej }
613 1.1 thorpej
614 1.1 thorpej for (new_drp = 0, drp = drs; drp < &drs[MAX_ADS]; drp++) {
615 1.1 thorpej /* accept new info for a familiar entry
616 1.1 thorpej */
617 1.1 thorpej if (drp->dr_gate == gate) {
618 1.1 thorpej new_drp = drp;
619 1.1 thorpej break;
620 1.1 thorpej }
621 1.1 thorpej
622 1.1 thorpej if (life == 0)
623 1.1 thorpej continue; /* do not worry about dead ads */
624 1.1 thorpej
625 1.1 thorpej if (drp->dr_ts == 0) {
626 1.1 thorpej new_drp = drp; /* use unused entry */
627 1.1 thorpej
628 1.1 thorpej } else if (new_drp == 0) {
629 1.1 thorpej /* look for an entry worse than the new one to
630 1.1 thorpej * reuse.
631 1.1 thorpej */
632 1.1 thorpej if ((!(ifp->int_state & IS_SICK)
633 1.1 thorpej && (drp->dr_ifp->int_state & IS_SICK))
634 1.1 thorpej || (pref > drp->dr_pref
635 1.1 thorpej && !((ifp->int_state ^ drp->dr_ifp->int_state)
636 1.1 thorpej & IS_SICK)))
637 1.1 thorpej new_drp = drp;
638 1.1 thorpej
639 1.1 thorpej } else if (new_drp->dr_ts != 0) {
640 1.1 thorpej /* look for the least valueable entry to reuse
641 1.1 thorpej */
642 1.1 thorpej if ((!(new_drp->dr_ifp->int_state & IS_SICK)
643 1.1 thorpej && (drp->dr_ifp->int_state & IS_SICK))
644 1.1 thorpej || (new_drp->dr_pref > drp->dr_pref
645 1.1 thorpej && !((new_drp->dr_ifp->int_state
646 1.1 thorpej ^ drp->dr_ifp->int_state)
647 1.1 thorpej & IS_SICK)))
648 1.1 thorpej new_drp = drp;
649 1.1 thorpej }
650 1.1 thorpej }
651 1.1 thorpej
652 1.1 thorpej /* forget it if all of the current entries are better */
653 1.1 thorpej if (new_drp == 0)
654 1.1 thorpej return;
655 1.1 thorpej
656 1.1 thorpej new_drp->dr_ifp = ifp;
657 1.1 thorpej new_drp->dr_gate = gate;
658 1.1 thorpej new_drp->dr_ts = now.tv_sec;
659 1.1 thorpej new_drp->dr_life = ntohs(life);
660 1.1 thorpej new_drp->dr_recv_pref = pref;
661 1.1 thorpej /* bias functional preference by metric of the interface */
662 1.1 thorpej new_drp->dr_pref = PREF(pref,ifp);
663 1.1 thorpej
664 1.1 thorpej /* after hearing a good advertisement, stop asking
665 1.1 thorpej */
666 1.1 thorpej if (!(ifp->int_state & IS_SICK))
667 1.1 thorpej ifp->int_rdisc_cnt = MAX_SOLICITATIONS;
668 1.1 thorpej }
669 1.1 thorpej
670 1.1 thorpej
671 1.1 thorpej /* Compute the IP checksum
672 1.1 thorpej * This assumes the packet is less than 32K long.
673 1.1 thorpej */
674 1.1 thorpej static u_short
675 1.1 thorpej in_cksum(u_short *p,
676 1.1 thorpej u_int len)
677 1.1 thorpej {
678 1.1 thorpej u_int sum = 0;
679 1.1 thorpej int nwords = len >> 1;
680 1.1 thorpej
681 1.1 thorpej while (nwords-- != 0)
682 1.1 thorpej sum += *p++;
683 1.1 thorpej
684 1.1 thorpej if (len & 1)
685 1.1 thorpej sum += *(u_char *)p;
686 1.1 thorpej
687 1.1 thorpej /* end-around-carry */
688 1.1 thorpej sum = (sum >> 16) + (sum & 0xffff);
689 1.1 thorpej sum += (sum >> 16);
690 1.1 thorpej return (~sum);
691 1.1 thorpej }
692 1.1 thorpej
693 1.1 thorpej
694 1.1 thorpej /* Send a router discovery advertisement or solicitation ICMP packet.
695 1.1 thorpej */
696 1.1 thorpej static void
697 1.1 thorpej send_rdisc(union ad_u *p,
698 1.1 thorpej int p_size,
699 1.1 thorpej struct interface *ifp,
700 1.1 thorpej naddr dst, /* 0 or unicast destination */
701 1.1 thorpej int type) /* 0=unicast, 1=bcast, 2=mcast */
702 1.1 thorpej {
703 1.1 thorpej struct sockaddr_in sin;
704 1.1 thorpej int flags;
705 1.1 thorpej char *msg;
706 1.1 thorpej naddr tgt_mcast;
707 1.1 thorpej
708 1.1 thorpej
709 1.6 lukem memset(&sin, 0, sizeof(sin));
710 1.4 christos sin.sin_addr.s_addr = dst;
711 1.3 mycroft sin.sin_family = AF_INET;
712 1.4 christos #ifdef _HAVE_SIN_LEN
713 1.3 mycroft sin.sin_len = sizeof(sin);
714 1.4 christos #endif
715 1.1 thorpej flags = MSG_DONTROUTE;
716 1.1 thorpej
717 1.1 thorpej switch (type) {
718 1.1 thorpej case 0: /* unicast */
719 1.5 christos default:
720 1.1 thorpej msg = "Send";
721 1.1 thorpej break;
722 1.1 thorpej
723 1.1 thorpej case 1: /* broadcast */
724 1.1 thorpej if (ifp->int_if_flags & IFF_POINTOPOINT) {
725 1.1 thorpej msg = "Send pt-to-pt";
726 1.1 thorpej sin.sin_addr.s_addr = ifp->int_dstaddr;
727 1.1 thorpej } else {
728 1.1 thorpej msg = "Send broadcast";
729 1.1 thorpej sin.sin_addr.s_addr = ifp->int_brdaddr;
730 1.1 thorpej }
731 1.1 thorpej break;
732 1.1 thorpej
733 1.1 thorpej case 2: /* multicast */
734 1.1 thorpej msg = "Send multicast";
735 1.1 thorpej if (ifp->int_state & IS_DUP) {
736 1.1 thorpej trace_act("abort multicast output via %s"
737 1.5 christos " with duplicate address",
738 1.1 thorpej ifp->int_name);
739 1.1 thorpej return;
740 1.1 thorpej }
741 1.1 thorpej if (rdisc_sock_mcast != ifp) {
742 1.1 thorpej /* select the right interface. */
743 1.1 thorpej #ifdef MCAST_PPP_BUG
744 1.1 thorpej /* Do not specifiy the primary interface explicitly
745 1.1 thorpej * if we have the multicast point-to-point kernel
746 1.1 thorpej * bug, since the kernel will do the wrong thing
747 1.1 thorpej * if the local address of a point-to-point link
748 1.1 thorpej * is the same as the address of an ordinary
749 1.1 thorpej * interface.
750 1.1 thorpej */
751 1.1 thorpej if (ifp->int_addr == myaddr) {
752 1.1 thorpej tgt_mcast = 0;
753 1.1 thorpej } else
754 1.1 thorpej #endif
755 1.1 thorpej tgt_mcast = ifp->int_addr;
756 1.1 thorpej if (0 > setsockopt(rdisc_sock,
757 1.1 thorpej IPPROTO_IP, IP_MULTICAST_IF,
758 1.1 thorpej &tgt_mcast, sizeof(tgt_mcast))) {
759 1.1 thorpej LOGERR("setsockopt(rdisc_sock,"
760 1.1 thorpej "IP_MULTICAST_IF)");
761 1.1 thorpej rdisc_sock_mcast = 0;
762 1.1 thorpej return;
763 1.1 thorpej }
764 1.1 thorpej rdisc_sock_mcast = ifp;
765 1.1 thorpej }
766 1.1 thorpej flags = 0;
767 1.1 thorpej break;
768 1.1 thorpej }
769 1.4 christos
770 1.4 christos if (rdisc_sock < 0)
771 1.4 christos get_rdisc_sock();
772 1.1 thorpej
773 1.1 thorpej trace_rdisc(msg, ifp->int_addr, sin.sin_addr.s_addr, ifp,
774 1.1 thorpej p, p_size);
775 1.1 thorpej
776 1.1 thorpej if (0 > sendto(rdisc_sock, p, p_size, flags,
777 1.1 thorpej (struct sockaddr *)&sin, sizeof(sin))) {
778 1.1 thorpej if (ifp == 0 || !(ifp->int_state & IS_BROKE))
779 1.1 thorpej msglog("sendto(%s%s%s): %s",
780 1.1 thorpej ifp != 0 ? ifp->int_name : "",
781 1.1 thorpej ifp != 0 ? ", " : "",
782 1.1 thorpej inet_ntoa(sin.sin_addr),
783 1.1 thorpej strerror(errno));
784 1.1 thorpej if (ifp != 0)
785 1.1 thorpej if_sick(ifp);
786 1.1 thorpej }
787 1.1 thorpej }
788 1.1 thorpej
789 1.1 thorpej
790 1.1 thorpej /* Send an advertisement
791 1.1 thorpej */
792 1.1 thorpej static void
793 1.1 thorpej send_adv(struct interface *ifp,
794 1.1 thorpej naddr dst, /* 0 or unicast destination */
795 1.1 thorpej int type) /* 0=unicast, 1=bcast, 2=mcast */
796 1.1 thorpej {
797 1.1 thorpej union ad_u u;
798 1.1 thorpej n_long pref;
799 1.1 thorpej
800 1.1 thorpej
801 1.6 lukem memset(&u, 0, sizeof(u.ad));
802 1.1 thorpej
803 1.1 thorpej u.ad.icmp_type = ICMP_ROUTERADVERT;
804 1.1 thorpej u.ad.icmp_ad_num = 1;
805 1.1 thorpej u.ad.icmp_ad_asize = sizeof(u.ad.icmp_ad_info[0])/4;
806 1.1 thorpej
807 1.1 thorpej u.ad.icmp_ad_life = stopint ? 0 : htons(ifp->int_rdisc_int*3);
808 1.7 thorpej
809 1.7 thorpej /* Convert the configured preference to an unsigned value,
810 1.7 thorpej * bias it by the interface metric, and then send it as a
811 1.7 thorpej * signed, network byte order value.
812 1.7 thorpej */
813 1.7 thorpej pref = UNSIGN_PREF(ifp->int_rdisc_pref);
814 1.7 thorpej u.ad.icmp_ad_info[0].icmp_ad_pref = htonl(SIGN_PREF(PREF(pref, ifp)));
815 1.1 thorpej
816 1.1 thorpej u.ad.icmp_ad_info[0].icmp_ad_addr = ifp->int_addr;
817 1.1 thorpej
818 1.1 thorpej u.ad.icmp_cksum = in_cksum((u_short*)&u.ad, sizeof(u.ad));
819 1.1 thorpej
820 1.1 thorpej send_rdisc(&u, sizeof(u.ad), ifp, dst, type);
821 1.1 thorpej }
822 1.1 thorpej
823 1.1 thorpej
824 1.1 thorpej /* Advertise for Router Discovery
825 1.1 thorpej */
826 1.1 thorpej void
827 1.1 thorpej rdisc_adv(void)
828 1.1 thorpej {
829 1.1 thorpej struct interface *ifp;
830 1.1 thorpej
831 1.5 christos if (!supplier)
832 1.5 christos return;
833 1.1 thorpej
834 1.1 thorpej rdisc_timer.tv_sec = now.tv_sec + NEVER;
835 1.1 thorpej
836 1.1 thorpej for (ifp = ifnet; ifp; ifp = ifp->int_next) {
837 1.5 christos if (0 != (ifp->int_state & (IS_NO_ADV_OUT | IS_BROKE)))
838 1.1 thorpej continue;
839 1.1 thorpej
840 1.1 thorpej if (!timercmp(&ifp->int_rdisc_timer, &now, >)
841 1.1 thorpej || stopint) {
842 1.1 thorpej send_adv(ifp, htonl(INADDR_ALLHOSTS_GROUP),
843 1.1 thorpej (ifp->int_state&IS_BCAST_RDISC) ? 1 : 2);
844 1.1 thorpej ifp->int_rdisc_cnt++;
845 1.1 thorpej
846 1.1 thorpej intvl_random(&ifp->int_rdisc_timer,
847 1.1 thorpej (ifp->int_rdisc_int*3)/4,
848 1.1 thorpej ifp->int_rdisc_int);
849 1.1 thorpej if (ifp->int_rdisc_cnt < MAX_INITIAL_ADVERTS
850 1.1 thorpej && (ifp->int_rdisc_timer.tv_sec
851 1.1 thorpej > MAX_INITIAL_ADVERT_INTERVAL)) {
852 1.1 thorpej ifp->int_rdisc_timer.tv_sec
853 1.1 thorpej = MAX_INITIAL_ADVERT_INTERVAL;
854 1.1 thorpej }
855 1.1 thorpej timevaladd(&ifp->int_rdisc_timer, &now);
856 1.1 thorpej }
857 1.1 thorpej
858 1.1 thorpej if (timercmp(&rdisc_timer, &ifp->int_rdisc_timer, >))
859 1.1 thorpej rdisc_timer = ifp->int_rdisc_timer;
860 1.1 thorpej }
861 1.1 thorpej }
862 1.1 thorpej
863 1.1 thorpej
864 1.1 thorpej /* Solicit for Router Discovery
865 1.1 thorpej */
866 1.1 thorpej void
867 1.1 thorpej rdisc_sol(void)
868 1.1 thorpej {
869 1.1 thorpej struct interface *ifp;
870 1.1 thorpej union ad_u u;
871 1.1 thorpej
872 1.1 thorpej
873 1.5 christos if (supplier)
874 1.5 christos return;
875 1.5 christos
876 1.1 thorpej rdisc_timer.tv_sec = now.tv_sec + NEVER;
877 1.1 thorpej
878 1.1 thorpej for (ifp = ifnet; ifp; ifp = ifp->int_next) {
879 1.5 christos if (0 != (ifp->int_state & (IS_NO_SOL_OUT | IS_BROKE))
880 1.1 thorpej || ifp->int_rdisc_cnt >= MAX_SOLICITATIONS)
881 1.1 thorpej continue;
882 1.1 thorpej
883 1.1 thorpej if (!timercmp(&ifp->int_rdisc_timer, &now, >)) {
884 1.6 lukem memset(&u, 0, sizeof(u.so));
885 1.1 thorpej u.so.icmp_type = ICMP_ROUTERSOLICIT;
886 1.1 thorpej u.so.icmp_cksum = in_cksum((u_short*)&u.so,
887 1.1 thorpej sizeof(u.so));
888 1.1 thorpej send_rdisc(&u, sizeof(u.so), ifp,
889 1.1 thorpej htonl(INADDR_ALLROUTERS_GROUP),
890 1.1 thorpej ((ifp->int_state&IS_BCAST_RDISC) ? 1 : 2));
891 1.1 thorpej
892 1.1 thorpej if (++ifp->int_rdisc_cnt >= MAX_SOLICITATIONS)
893 1.1 thorpej continue;
894 1.1 thorpej
895 1.1 thorpej ifp->int_rdisc_timer.tv_sec = SOLICITATION_INTERVAL;
896 1.1 thorpej ifp->int_rdisc_timer.tv_usec = 0;
897 1.1 thorpej timevaladd(&ifp->int_rdisc_timer, &now);
898 1.1 thorpej }
899 1.1 thorpej
900 1.1 thorpej if (timercmp(&rdisc_timer, &ifp->int_rdisc_timer, >))
901 1.1 thorpej rdisc_timer = ifp->int_rdisc_timer;
902 1.1 thorpej }
903 1.1 thorpej }
904 1.1 thorpej
905 1.1 thorpej
906 1.1 thorpej /* check the IP header of a possible Router Discovery ICMP packet */
907 1.1 thorpej static struct interface * /* 0 if bad */
908 1.1 thorpej ck_icmp(char *act,
909 1.1 thorpej naddr from,
910 1.5 christos struct interface *ifp,
911 1.1 thorpej naddr to,
912 1.1 thorpej union ad_u *p,
913 1.1 thorpej u_int len)
914 1.1 thorpej {
915 1.1 thorpej char *type;
916 1.1 thorpej
917 1.1 thorpej
918 1.1 thorpej if (p->icmp.icmp_type == ICMP_ROUTERADVERT) {
919 1.1 thorpej type = "advertisement";
920 1.1 thorpej } else if (p->icmp.icmp_type == ICMP_ROUTERSOLICIT) {
921 1.1 thorpej type = "solicitation";
922 1.1 thorpej } else {
923 1.1 thorpej return 0;
924 1.1 thorpej }
925 1.1 thorpej
926 1.1 thorpej if (p->icmp.icmp_code != 0) {
927 1.5 christos trace_pkt("unrecognized ICMP Router %s code=%d from %s to %s",
928 1.1 thorpej type, p->icmp.icmp_code,
929 1.1 thorpej naddr_ntoa(from), naddr_ntoa(to));
930 1.1 thorpej return 0;
931 1.1 thorpej }
932 1.1 thorpej
933 1.1 thorpej trace_rdisc(act, from, to, ifp, p, len);
934 1.1 thorpej
935 1.1 thorpej if (ifp == 0)
936 1.1 thorpej trace_pkt("unknown interface for router-discovery %s"
937 1.1 thorpej " from %s to %s",
938 1.1 thorpej type, naddr_ntoa(from), naddr_ntoa(to));
939 1.1 thorpej
940 1.1 thorpej return ifp;
941 1.1 thorpej }
942 1.1 thorpej
943 1.1 thorpej
944 1.1 thorpej /* read packets from the router discovery socket
945 1.1 thorpej */
946 1.1 thorpej void
947 1.1 thorpej read_d(void)
948 1.1 thorpej {
949 1.5 christos static struct msg_limit bad_asize, bad_len;
950 1.5 christos #ifdef USE_PASSIFNAME
951 1.5 christos static struct msg_limit bad_name;
952 1.5 christos #endif
953 1.1 thorpej struct sockaddr_in from;
954 1.1 thorpej int n, fromlen, cc, hlen;
955 1.5 christos struct {
956 1.5 christos #ifdef USE_PASSIFNAME
957 1.5 christos char ifname[IFNAMSIZ];
958 1.5 christos #endif
959 1.5 christos union {
960 1.5 christos struct ip ip;
961 1.5 christos u_short s[512/2];
962 1.5 christos u_char b[512];
963 1.5 christos } pkt;
964 1.5 christos } buf;
965 1.1 thorpej union ad_u *p;
966 1.1 thorpej n_long *wp;
967 1.1 thorpej struct interface *ifp;
968 1.1 thorpej
969 1.1 thorpej
970 1.1 thorpej for (;;) {
971 1.1 thorpej fromlen = sizeof(from);
972 1.5 christos cc = recvfrom(rdisc_sock, &buf, sizeof(buf), 0,
973 1.1 thorpej (struct sockaddr*)&from,
974 1.1 thorpej &fromlen);
975 1.1 thorpej if (cc <= 0) {
976 1.1 thorpej if (cc < 0 && errno != EWOULDBLOCK)
977 1.1 thorpej LOGERR("recvfrom(rdisc_sock)");
978 1.1 thorpej break;
979 1.1 thorpej }
980 1.1 thorpej if (fromlen != sizeof(struct sockaddr_in))
981 1.1 thorpej logbad(1,"impossible recvfrom(rdisc_sock) fromlen=%d",
982 1.1 thorpej fromlen);
983 1.5 christos #ifdef USE_PASSIFNAME
984 1.5 christos if ((cc -= sizeof(buf.ifname)) < 0)
985 1.5 christos logbad(0,"missing USE_PASSIFNAME; only %d bytes",
986 1.5 christos cc+sizeof(buf.ifname));
987 1.5 christos #endif
988 1.1 thorpej
989 1.5 christos hlen = buf.pkt.ip.ip_hl << 2;
990 1.1 thorpej if (cc < hlen + ICMP_MINLEN)
991 1.1 thorpej continue;
992 1.5 christos p = (union ad_u *)&buf.pkt.b[hlen];
993 1.1 thorpej cc -= hlen;
994 1.1 thorpej
995 1.5 christos #ifdef USE_PASSIFNAME
996 1.5 christos ifp = ifwithname(buf.ifname, 0);
997 1.5 christos if (ifp == 0)
998 1.5 christos msglim(&bad_name, from.sin_addr.s_addr,
999 1.5 christos "impossible rdisc if_ name %.*s",
1000 1.5 christos IFNAMSIZ, buf.ifname);
1001 1.5 christos #else
1002 1.5 christos /* If we could tell the interface on which a packet from
1003 1.5 christos * address 0 arrived, we could deal with such solicitations.
1004 1.5 christos */
1005 1.5 christos ifp = ((from.sin_addr.s_addr == 0)
1006 1.5 christos ? 0 : iflookup(from.sin_addr.s_addr));
1007 1.5 christos #endif
1008 1.5 christos ifp = ck_icmp("Recv", from.sin_addr.s_addr, ifp,
1009 1.5 christos buf.pkt.ip.ip_dst.s_addr, p, cc);
1010 1.1 thorpej if (ifp == 0)
1011 1.1 thorpej continue;
1012 1.1 thorpej if (ifwithaddr(from.sin_addr.s_addr, 0, 0)) {
1013 1.5 christos trace_pkt(" "
1014 1.5 christos "discard our own Router Discovery message");
1015 1.1 thorpej continue;
1016 1.1 thorpej }
1017 1.1 thorpej
1018 1.1 thorpej switch (p->icmp.icmp_type) {
1019 1.1 thorpej case ICMP_ROUTERADVERT:
1020 1.1 thorpej if (p->ad.icmp_ad_asize*4
1021 1.1 thorpej < sizeof(p->ad.icmp_ad_info[0])) {
1022 1.5 christos msglim(&bad_asize, from.sin_addr.s_addr,
1023 1.5 christos "intolerable rdisc address size=%d",
1024 1.5 christos p->ad.icmp_ad_asize);
1025 1.1 thorpej continue;
1026 1.1 thorpej }
1027 1.1 thorpej if (p->ad.icmp_ad_num == 0) {
1028 1.5 christos trace_pkt(" empty?");
1029 1.1 thorpej continue;
1030 1.1 thorpej }
1031 1.1 thorpej if (cc != (sizeof(p->ad) - sizeof(p->ad.icmp_ad_info)
1032 1.1 thorpej + (p->ad.icmp_ad_num
1033 1.1 thorpej * sizeof(p->ad.icmp_ad_info[0])))) {
1034 1.5 christos msglim(&bad_len, from.sin_addr.s_addr,
1035 1.5 christos "rdisc length %d does not match ad_num"
1036 1.5 christos " %d", cc, p->ad.icmp_ad_num);
1037 1.1 thorpej continue;
1038 1.1 thorpej }
1039 1.1 thorpej if (supplier)
1040 1.1 thorpej continue;
1041 1.1 thorpej if (ifp->int_state & IS_NO_ADV_IN)
1042 1.1 thorpej continue;
1043 1.1 thorpej
1044 1.1 thorpej wp = &p->ad.icmp_ad_info[0].icmp_ad_addr;
1045 1.1 thorpej for (n = 0; n < p->ad.icmp_ad_num; n++) {
1046 1.1 thorpej parse_ad(from.sin_addr.s_addr,
1047 1.1 thorpej wp[0], wp[1],
1048 1.1 thorpej ntohs(p->ad.icmp_ad_life),
1049 1.1 thorpej ifp);
1050 1.1 thorpej wp += p->ad.icmp_ad_asize;
1051 1.1 thorpej }
1052 1.1 thorpej break;
1053 1.1 thorpej
1054 1.1 thorpej
1055 1.1 thorpej case ICMP_ROUTERSOLICIT:
1056 1.1 thorpej if (!supplier)
1057 1.1 thorpej continue;
1058 1.1 thorpej if (ifp->int_state & IS_NO_ADV_OUT)
1059 1.7 thorpej continue;
1060 1.7 thorpej if (stopint)
1061 1.1 thorpej continue;
1062 1.1 thorpej
1063 1.1 thorpej /* XXX
1064 1.1 thorpej * We should handle messages from address 0.
1065 1.1 thorpej */
1066 1.1 thorpej
1067 1.1 thorpej /* Respond with a point-to-point advertisement */
1068 1.1 thorpej send_adv(ifp, from.sin_addr.s_addr, 0);
1069 1.1 thorpej break;
1070 1.1 thorpej }
1071 1.1 thorpej }
1072 1.1 thorpej
1073 1.1 thorpej rdisc_sort();
1074 1.1 thorpej }
1075