xref: /illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/table.c (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1 /*
2  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
3  * Use is subject to license terms.
4  *
5  * Copyright (c) 1983, 1988, 1993
6  *	The Regents of the University of California.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgment:
18  *	This product includes software developed by the University of
19  *	California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  * $FreeBSD: src/sbin/routed/table.c,v 1.15 2000/08/11 08:24:38 sheldonh Exp $
37  */
38 
39 #include "defs.h"
40 #include <fcntl.h>
41 #include <stropts.h>
42 #include <sys/tihdr.h>
43 #include <inet/mib2.h>
44 #include <inet/ip.h>
45 
46 /* This structure is used to store a disassembled routing socket message. */
47 struct rt_addrinfo {
48 	int	rti_addrs;
49 	struct sockaddr_storage *rti_info[RTAX_MAX];
50 };
51 
52 static struct rt_spare *rts_better(struct rt_entry *);
53 static struct rt_spare rts_empty = EMPTY_RT_SPARE;
54 static void set_need_flash(void);
55 static void rtbad(struct rt_entry *, struct interface *);
56 static int rt_xaddrs(struct rt_addrinfo *, struct sockaddr_storage *,
57     char *, int);
58 static struct interface *gwkludge_iflookup(in_addr_t, in_addr_t, in_addr_t);
59 static struct interface *lifp_iflookup(in_addr_t, const char *);
60 
61 struct radix_node_head *rhead;		/* root of the radix tree */
62 
63 /* Flash update needed.  _B_TRUE to suppress the 1st. */
64 boolean_t need_flash = _B_TRUE;
65 
66 struct timeval age_timer;		/* next check of old routes */
67 struct timeval need_kern = {		/* need to update kernel table */
68 	EPOCH+MIN_WAITTIME-1, 0
69 };
70 
71 static uint32_t	total_routes;
72 
73 #define	ROUNDUP_LONG(a) \
74 	((a) > 0 ? (1 + (((a) - 1) | (sizeof (long) - 1))) : sizeof (long))
75 
76 /*
77  * It is desirable to "aggregate" routes, to combine differing routes of
78  * the same metric and next hop into a common route with a smaller netmask
79  * or to suppress redundant routes, routes that add no information to
80  * routes with smaller netmasks.
81  *
82  * A route is redundant if and only if any and all routes with smaller
83  * but matching netmasks and nets are the same.  Since routes are
84  * kept sorted in the radix tree, redundant routes always come second.
85  *
86  * There are two kinds of aggregations.  First, two routes of the same bit
87  * mask and differing only in the least significant bit of the network
88  * number can be combined into a single route with a coarser mask.
89  *
90  * Second, a route can be suppressed in favor of another route with a more
91  * coarse mask provided no incompatible routes with intermediate masks
92  * are present.  The second kind of aggregation involves suppressing routes.
93  * A route must not be suppressed if an incompatible route exists with
94  * an intermediate mask, since the suppressed route would be covered
95  * by the intermediate.
96  *
97  * This code relies on the radix tree walk encountering routes
98  * sorted first by address, with the smallest address first.
99  */
100 
101 static struct ag_info ag_slots[NUM_AG_SLOTS], *ag_avail, *ag_corsest,
102 	*ag_finest;
103 
104 #ifdef DEBUG_AG
105 #define	CHECK_AG() do { int acnt = 0; struct ag_info *cag;	\
106 	for (cag = ag_avail; cag != NULL; cag = cag->ag_fine)	\
107 		acnt++;						\
108 	for (cag = ag_corsest; cag != NULL; cag = cag->ag_fine)	\
109 		acnt++;						\
110 	if (acnt != NUM_AG_SLOTS)				\
111 		abort();					\
112 } while (_B_FALSE)
113 #else
114 #define	CHECK_AG()	(void)0
115 #endif
116 
117 
118 /*
119  * Output the contents of an aggregation table slot.
120  *	This function must always be immediately followed with the deletion
121  *	of the target slot.
122  */
123 static void
124 ag_out(struct ag_info *ag, void (*out)(struct ag_info *))
125 {
126 	struct ag_info *ag_cors;
127 	uint32_t bit;
128 
129 
130 	/* Forget it if this route should not be output for split-horizon. */
131 	if (ag->ag_state & AGS_SPLIT_HZ)
132 		return;
133 
134 	/*
135 	 * If we output both the even and odd twins, then the immediate parent,
136 	 * if it is present, is redundant, unless the parent manages to
137 	 * aggregate into something coarser.
138 	 * On successive calls, this code detects the even and odd twins,
139 	 * and marks the parent.
140 	 *
141 	 * Note that the order in which the radix tree code emits routes
142 	 * ensures that the twins are seen before the parent is emitted.
143 	 */
144 	ag_cors = ag->ag_cors;
145 	if (ag_cors != NULL &&
146 	    ag_cors->ag_mask == (ag->ag_mask << 1) &&
147 	    ag_cors->ag_dst_h == (ag->ag_dst_h & ag_cors->ag_mask)) {
148 		ag_cors->ag_state |= ((ag_cors->ag_dst_h == ag->ag_dst_h) ?
149 		    AGS_REDUN0 : AGS_REDUN1);
150 	}
151 
152 	/*
153 	 * Skip it if this route is itself redundant.
154 	 *
155 	 * It is ok to change the contents of the slot here, since it is
156 	 * always deleted next.
157 	 */
158 	if (ag->ag_state & AGS_REDUN0) {
159 		if (ag->ag_state & AGS_REDUN1)
160 			return;		/* quit if fully redundant */
161 		/* make it finer if it is half-redundant */
162 		bit = (-ag->ag_mask) >> 1;
163 		ag->ag_dst_h |= bit;
164 		ag->ag_mask |= bit;
165 
166 	} else if (ag->ag_state & AGS_REDUN1) {
167 		/* make it finer if it is half-redundant */
168 		bit = (-ag->ag_mask) >> 1;
169 		ag->ag_mask |= bit;
170 	}
171 	out(ag);
172 }
173 
174 
175 static void
176 ag_del(struct ag_info *ag)
177 {
178 	CHECK_AG();
179 
180 	if (ag->ag_cors == NULL)
181 		ag_corsest = ag->ag_fine;
182 	else
183 		ag->ag_cors->ag_fine = ag->ag_fine;
184 
185 	if (ag->ag_fine == NULL)
186 		ag_finest = ag->ag_cors;
187 	else
188 		ag->ag_fine->ag_cors = ag->ag_cors;
189 
190 	ag->ag_fine = ag_avail;
191 	ag_avail = ag;
192 
193 	CHECK_AG();
194 }
195 
196 
197 /* Look for a route that can suppress the given route. */
198 static struct ag_info *
199 ag_find_suppressor(struct ag_info *ag)
200 {
201 	struct ag_info *ag_cors;
202 	in_addr_t dst_h = ag->ag_dst_h;
203 
204 	for (ag_cors = ag->ag_cors; ag_cors != NULL;
205 	    ag_cors = ag_cors->ag_cors) {
206 
207 		if ((dst_h & ag_cors->ag_mask) == ag_cors->ag_dst_h) {
208 			/*
209 			 * We found a route with a coarser mask that covers
210 			 * the given target.  It can suppress the target
211 			 * only if it has a good enough metric and it
212 			 * either has the same (gateway, ifp), or if its state
213 			 * includes AGS_CORS_GATE or the target's state
214 			 * includes AGS_FINE_GATE.
215 			 */
216 			if (ag_cors->ag_pref <= ag->ag_pref &&
217 			    (((ag->ag_nhop == ag_cors->ag_nhop) &&
218 			    (ag->ag_ifp == ag_cors->ag_ifp)) ||
219 			    ag_cors->ag_state & AGS_CORS_GATE ||
220 			    ag->ag_state & AGS_FINE_GATE)) {
221 				return (ag_cors);
222 			}
223 		}
224 	}
225 
226 	return (NULL);
227 }
228 
229 
230 /*
231  * Flush routes waiting for aggregation.
232  * This must not suppress a route unless it is known that among all routes
233  * with coarser masks that match it, the one with the longest mask is
234  * appropriate.  This is ensured by scanning the routes in lexical order,
235  * and with the most restrictive mask first among routes to the same
236  * destination.
237  */
238 void
239 ag_flush(in_addr_t lim_dst_h,	/* flush routes to here */
240     in_addr_t lim_mask,		/* matching this mask */
241     void (*out)(struct ag_info *))
242 {
243 	struct ag_info *ag, *ag_cors, *ag_supr;
244 	in_addr_t dst_h;
245 
246 
247 	for (ag = ag_finest; ag != NULL && ag->ag_mask >= lim_mask;
248 	    ag = ag_cors) {
249 		/* Get the next route now, before we delete ag. */
250 		ag_cors = ag->ag_cors;
251 
252 		/* Work on only the specified routes. */
253 		dst_h = ag->ag_dst_h;
254 		if ((dst_h & lim_mask) != lim_dst_h)
255 			continue;
256 
257 		/*
258 		 * Don't try to suppress the route if its state doesn't
259 		 * include AGS_SUPPRESS.
260 		 */
261 		if (!(ag->ag_state & AGS_SUPPRESS)) {
262 			ag_out(ag, out);
263 			ag_del(ag);
264 			continue;
265 		}
266 
267 		ag_supr = ag_find_suppressor(ag);
268 		if (ag_supr == NULL) {
269 			/*
270 			 * We didn't find a route which suppresses the
271 			 * target, so the target can go out.
272 			 */
273 			ag_out(ag, out);
274 		} else {
275 			/*
276 			 * We found a route which suppresses the target, so
277 			 * don't output the target.
278 			 */
279 			if (TRACEACTIONS) {
280 				trace_misc("aggregated away %s",
281 				    rtname(htonl(ag->ag_dst_h), ag->ag_mask,
282 				    ag->ag_nhop));
283 				trace_misc("on coarser route %s",
284 				    rtname(htonl(ag_supr->ag_dst_h),
285 				    ag_supr->ag_mask, ag_supr->ag_nhop));
286 			}
287 			/*
288 			 * If the suppressed target was redundant, then
289 			 * mark the suppressor as redundant.
290 			 */
291 			if (AG_IS_REDUN(ag->ag_state) &&
292 			    ag_supr->ag_mask == (ag->ag_mask<<1)) {
293 				if (ag_supr->ag_dst_h == dst_h)
294 					ag_supr->ag_state |= AGS_REDUN0;
295 				else
296 					ag_supr->ag_state |= AGS_REDUN1;
297 			}
298 			if (ag->ag_tag != ag_supr->ag_tag)
299 				ag_supr->ag_tag = 0;
300 			if (ag->ag_nhop != ag_supr->ag_nhop)
301 				ag_supr->ag_nhop = 0;
302 		}
303 
304 		/* The route has either been output or suppressed */
305 		ag_del(ag);
306 	}
307 
308 	CHECK_AG();
309 }
310 
311 
312 /* Try to aggregate a route with previous routes. */
313 void
314 ag_check(in_addr_t dst,
315     in_addr_t	mask,
316     in_addr_t	gate,
317     struct interface *ifp,
318     in_addr_t	nhop,
319     uint8_t	metric,
320     uint8_t	pref,
321     uint32_t	seqno,
322     uint16_t	tag,
323     uint16_t	state,
324     void (*out)(struct ag_info *))	/* output using this */
325 {
326 	struct ag_info *ag, *nag, *ag_cors;
327 	in_addr_t xaddr;
328 	int tmp;
329 	struct interface *xifp;
330 
331 	dst = ntohl(dst);
332 
333 	/*
334 	 * Don't bother trying to aggregate routes with non-contiguous
335 	 * subnet masks.
336 	 *
337 	 * (X & -X) contains a single bit if and only if X is a power of 2.
338 	 * (X + (X & -X)) == 0 if and only if X is a power of 2.
339 	 */
340 	if ((mask & -mask) + mask != 0) {
341 		struct ag_info nc_ag;
342 
343 		nc_ag.ag_dst_h = dst;
344 		nc_ag.ag_mask = mask;
345 		nc_ag.ag_gate = gate;
346 		nc_ag.ag_ifp = ifp;
347 		nc_ag.ag_nhop = nhop;
348 		nc_ag.ag_metric = metric;
349 		nc_ag.ag_pref = pref;
350 		nc_ag.ag_tag = tag;
351 		nc_ag.ag_state = state;
352 		nc_ag.ag_seqno = seqno;
353 		out(&nc_ag);
354 		return;
355 	}
356 
357 	/* Search for the right slot in the aggregation table. */
358 	ag_cors = NULL;
359 	ag = ag_corsest;
360 	while (ag != NULL) {
361 		if (ag->ag_mask >= mask)
362 			break;
363 
364 		/*
365 		 * Suppress old routes (i.e. combine with compatible routes
366 		 * with coarser masks) as we look for the right slot in the
367 		 * aggregation table for the new route.
368 		 * A route to an address less than the current destination
369 		 * will not be affected by the current route or any route
370 		 * seen hereafter.  That means it is safe to suppress it.
371 		 * This check keeps poor routes (e.g. with large hop counts)
372 		 * from preventing suppression of finer routes.
373 		 */
374 		if (ag_cors != NULL && ag->ag_dst_h < dst &&
375 		    (ag->ag_state & AGS_SUPPRESS) &&
376 		    ag_cors->ag_pref <= ag->ag_pref &&
377 		    (ag->ag_dst_h & ag_cors->ag_mask) == ag_cors->ag_dst_h &&
378 		    ((ag_cors->ag_nhop == ag->ag_nhop &&
379 		    (ag_cors->ag_ifp == ag->ag_ifp))||
380 		    (ag->ag_state & AGS_FINE_GATE) ||
381 		    (ag_cors->ag_state & AGS_CORS_GATE))) {
382 			/*
383 			 * If the suppressed target was redundant,
384 			 * then mark the suppressor redundant.
385 			 */
386 			if (AG_IS_REDUN(ag->ag_state) &&
387 			    ag_cors->ag_mask == (ag->ag_mask << 1)) {
388 				if (ag_cors->ag_dst_h == dst)
389 					ag_cors->ag_state |= AGS_REDUN0;
390 				else
391 					ag_cors->ag_state |= AGS_REDUN1;
392 			}
393 			if (ag->ag_tag != ag_cors->ag_tag)
394 				ag_cors->ag_tag = 0;
395 			if (ag->ag_nhop != ag_cors->ag_nhop)
396 				ag_cors->ag_nhop = 0;
397 			ag_del(ag);
398 			CHECK_AG();
399 		} else {
400 			ag_cors = ag;
401 		}
402 		ag = ag_cors->ag_fine;
403 	}
404 
405 	/*
406 	 * If we find the even/odd twin of the new route, and if the
407 	 * masks and so forth are equal, we can aggregate them.
408 	 * We can probably promote one of the pair.
409 	 *
410 	 * Since the routes are encountered in lexical order,
411 	 * the new route must be odd.  However, the second or later
412 	 * times around this loop, it could be the even twin promoted
413 	 * from the even/odd pair of twins of the finer route.
414 	 */
415 	while (ag != NULL && ag->ag_mask == mask &&
416 	    ((ag->ag_dst_h ^ dst) & (mask<<1)) == 0) {
417 
418 		/*
419 		 * Here we know the target route and the route in the current
420 		 * slot have the same netmasks and differ by at most the
421 		 * last bit.  They are either for the same destination, or
422 		 * for an even/odd pair of destinations.
423 		 */
424 		if (ag->ag_dst_h == dst) {
425 			if (ag->ag_nhop == nhop && ag->ag_ifp == ifp) {
426 				/*
427 				 * We have two routes to the same destination,
428 				 * with the same nexthop and interface.
429 				 * Routes are encountered in lexical order,
430 				 * so a route is never promoted until the
431 				 * parent route is already present.  So we
432 				 * know that the new route is a promoted (or
433 				 * aggregated) pair and the route already in
434 				 * the slot is the explicit route.
435 				 *
436 				 * Prefer the best route if their metrics
437 				 * differ, or the aggregated one if not,
438 				 * following a sort of longest-match rule.
439 				 */
440 				if (pref <= ag->ag_pref) {
441 					ag->ag_gate = gate;
442 					ag->ag_ifp = ifp;
443 					ag->ag_nhop = nhop;
444 					ag->ag_tag = tag;
445 					ag->ag_metric = metric;
446 					ag->ag_pref = pref;
447 					if (seqno > ag->ag_seqno)
448 						ag->ag_seqno = seqno;
449 					tmp = ag->ag_state;
450 					ag->ag_state = state;
451 					state = tmp;
452 				}
453 
454 				/*
455 				 * Some bits are set if they are set on
456 				 * either route, except when the route is
457 				 * for an interface.
458 				 */
459 				if (!(ag->ag_state & AGS_IF))
460 					ag->ag_state |=
461 					    (state & (AGS_AGGREGATE_EITHER |
462 					    AGS_REDUN0 | AGS_REDUN1));
463 
464 				return;
465 			} else {
466 				/*
467 				 * multiple routes to same dest/mask with
468 				 * differing gate nexthop/or ifp. Flush
469 				 * both out.
470 				 */
471 				break;
472 			}
473 		}
474 
475 		/*
476 		 * If one of the routes can be promoted and the other can
477 		 * be suppressed, it may be possible to combine them or
478 		 * worthwhile to promote one.
479 		 *
480 		 * Any route that can be promoted is always
481 		 * marked to be eligible to be suppressed.
482 		 */
483 		if (!((state & AGS_AGGREGATE) &&
484 		    (ag->ag_state & AGS_SUPPRESS)) &&
485 		    !((ag->ag_state & AGS_AGGREGATE) && (state & AGS_SUPPRESS)))
486 			break;
487 
488 		/*
489 		 * A pair of even/odd twin routes can be combined
490 		 * if either is redundant, or if they are via the
491 		 * same gateway and have the same metric.
492 		 */
493 		if (AG_IS_REDUN(ag->ag_state) || AG_IS_REDUN(state) ||
494 		    (ag->ag_nhop == nhop && ag->ag_ifp == ifp &&
495 		    ag->ag_pref == pref &&
496 		    (state & ag->ag_state & AGS_AGGREGATE) != 0)) {
497 
498 			/*
499 			 * We have both the even and odd pairs.
500 			 * Since the routes are encountered in order,
501 			 * the route in the slot must be the even twin.
502 			 *
503 			 * Combine and promote (aggregate) the pair of routes.
504 			 */
505 			if (seqno < ag->ag_seqno)
506 				seqno = ag->ag_seqno;
507 			if (!AG_IS_REDUN(state))
508 				state &= ~AGS_REDUN1;
509 			if (AG_IS_REDUN(ag->ag_state))
510 				state |= AGS_REDUN0;
511 			else
512 				state &= ~AGS_REDUN0;
513 			state |= (ag->ag_state & AGS_AGGREGATE_EITHER);
514 			if (ag->ag_tag != tag)
515 				tag = 0;
516 			if (ag->ag_nhop != nhop)
517 				nhop = 0;
518 
519 			/*
520 			 * Get rid of the even twin that was already
521 			 * in the slot.
522 			 */
523 			ag_del(ag);
524 
525 		} else if (ag->ag_pref >= pref &&
526 		    (ag->ag_state & AGS_AGGREGATE)) {
527 			/*
528 			 * If we cannot combine the pair, maybe the route
529 			 * with the worse metric can be promoted.
530 			 *
531 			 * Promote the old, even twin, by giving its slot
532 			 * in the table to the new, odd twin.
533 			 */
534 			ag->ag_dst_h = dst;
535 
536 			xaddr = ag->ag_gate;
537 			ag->ag_gate = gate;
538 			gate = xaddr;
539 
540 			xifp = ag->ag_ifp;
541 			ag->ag_ifp = ifp;
542 			ifp = xifp;
543 
544 			xaddr = ag->ag_nhop;
545 			ag->ag_nhop = nhop;
546 			nhop = xaddr;
547 
548 			tmp = ag->ag_tag;
549 			ag->ag_tag = tag;
550 			tag = tmp;
551 
552 			/*
553 			 * The promoted route is even-redundant only if the
554 			 * even twin was fully redundant.  It is not
555 			 * odd-redundant because the odd-twin will still be
556 			 * in the table.
557 			 */
558 			tmp = ag->ag_state;
559 			if (!AG_IS_REDUN(tmp))
560 				tmp &= ~AGS_REDUN0;
561 			tmp &= ~AGS_REDUN1;
562 			ag->ag_state = state;
563 			state = tmp;
564 
565 			tmp = ag->ag_metric;
566 			ag->ag_metric = metric;
567 			metric = tmp;
568 
569 			tmp = ag->ag_pref;
570 			ag->ag_pref = pref;
571 			pref = tmp;
572 
573 			/* take the newest sequence number */
574 			if (seqno <= ag->ag_seqno)
575 				seqno = ag->ag_seqno;
576 			else
577 				ag->ag_seqno = seqno;
578 
579 		} else {
580 			if (!(state & AGS_AGGREGATE))
581 				break;	/* cannot promote either twin */
582 
583 			/*
584 			 * Promote the new, odd twin by shaving its
585 			 * mask and address.
586 			 * The promoted route is odd-redundant only if the
587 			 * odd twin was fully redundant.  It is not
588 			 * even-redundant because the even twin is still in
589 			 * the table.
590 			 */
591 			if (!AG_IS_REDUN(state))
592 				state &= ~AGS_REDUN1;
593 			state &= ~AGS_REDUN0;
594 			if (seqno < ag->ag_seqno)
595 				seqno = ag->ag_seqno;
596 			else
597 				ag->ag_seqno = seqno;
598 		}
599 
600 		mask <<= 1;
601 		dst &= mask;
602 
603 		if (ag_cors == NULL) {
604 			ag = ag_corsest;
605 			break;
606 		}
607 		ag = ag_cors;
608 		ag_cors = ag->ag_cors;
609 	}
610 
611 	/*
612 	 * When we can no longer promote and combine routes,
613 	 * flush the old route in the target slot.  Also flush
614 	 * any finer routes that we know will never be aggregated by
615 	 * the new route.
616 	 *
617 	 * In case we moved toward coarser masks,
618 	 * get back where we belong
619 	 */
620 	if (ag != NULL && ag->ag_mask < mask) {
621 		ag_cors = ag;
622 		ag = ag->ag_fine;
623 	}
624 
625 	/* Empty the target slot */
626 	if (ag != NULL && ag->ag_mask == mask) {
627 		ag_flush(ag->ag_dst_h, ag->ag_mask, out);
628 		ag = (ag_cors == NULL) ? ag_corsest : ag_cors->ag_fine;
629 	}
630 
631 #ifdef DEBUG_AG
632 	if (ag == NULL && ag_cors != ag_finest)
633 		abort();
634 	if (ag_cors == NULL && ag != ag_corsest)
635 		abort();
636 	if (ag != NULL && ag->ag_cors != ag_cors)
637 		abort();
638 	if (ag_cors != NULL && ag_cors->ag_fine != ag)
639 		abort();
640 	CHECK_AG();
641 #endif
642 
643 	/* Save the new route on the end of the table. */
644 	nag = ag_avail;
645 	ag_avail = nag->ag_fine;
646 
647 	nag->ag_dst_h = dst;
648 	nag->ag_mask = mask;
649 	nag->ag_ifp = ifp;
650 	nag->ag_gate = gate;
651 	nag->ag_nhop = nhop;
652 	nag->ag_metric = metric;
653 	nag->ag_pref = pref;
654 	nag->ag_tag = tag;
655 	nag->ag_state = state;
656 	nag->ag_seqno = seqno;
657 
658 	nag->ag_fine = ag;
659 	if (ag != NULL)
660 		ag->ag_cors = nag;
661 	else
662 		ag_finest = nag;
663 	nag->ag_cors = ag_cors;
664 	if (ag_cors == NULL)
665 		ag_corsest = nag;
666 	else
667 		ag_cors->ag_fine = nag;
668 	CHECK_AG();
669 }
670 
671 
672 static const char *
673 rtm_type_name(uchar_t type)
674 {
675 	static const char *rtm_types[] = {
676 		"RTM_ADD",
677 		"RTM_DELETE",
678 		"RTM_CHANGE",
679 		"RTM_GET",
680 		"RTM_LOSING",
681 		"RTM_REDIRECT",
682 		"RTM_MISS",
683 		"RTM_LOCK",
684 		"RTM_OLDADD",
685 		"RTM_OLDDEL",
686 		"RTM_RESOLVE",
687 		"RTM_NEWADDR",
688 		"RTM_DELADDR",
689 		"RTM_IFINFO",
690 		"RTM_NEWMADDR",
691 		"RTM_DELMADDR"
692 	};
693 #define	NEW_RTM_PAT	"RTM type %#x"
694 	static char name0[sizeof (NEW_RTM_PAT) + 2];
695 
696 	if (type > sizeof (rtm_types) / sizeof (rtm_types[0]) || type == 0) {
697 		(void) snprintf(name0, sizeof (name0), NEW_RTM_PAT, type);
698 		return (name0);
699 	} else {
700 		return (rtm_types[type-1]);
701 	}
702 #undef	NEW_RTM_PAT
703 }
704 
705 
706 static void
707 dump_rt_msg(const char *act, struct rt_msghdr *rtm, int mlen)
708 {
709 	const char *mtype;
710 	uchar_t *cp;
711 	int i, j;
712 	char buffer[16*3 + 1], *ibs;
713 	struct ifa_msghdr *ifam;
714 	struct if_msghdr *ifm;
715 
716 	switch (rtm->rtm_type) {
717 	case RTM_NEWADDR:
718 	case RTM_DELADDR:
719 		mtype = "ifam";
720 		break;
721 	case RTM_IFINFO:
722 		mtype = "ifm";
723 		break;
724 	default:
725 		mtype = "rtm";
726 		break;
727 	}
728 	trace_misc("%s %s %d bytes", act, mtype, mlen);
729 	if (mlen > rtm->rtm_msglen) {
730 		trace_misc("%s: extra %d bytes ignored", mtype,
731 		    mlen - rtm->rtm_msglen);
732 		mlen = rtm->rtm_msglen;
733 	} else if (mlen < rtm->rtm_msglen) {
734 		trace_misc("%s: truncated by %d bytes", mtype,
735 		    rtm->rtm_msglen - mlen);
736 	}
737 	switch (rtm->rtm_type) {
738 	case RTM_NEWADDR:
739 	case RTM_DELADDR:
740 		ifam = (struct ifa_msghdr *)rtm;
741 		trace_misc("ifam: msglen %d version %d type %d addrs %X",
742 		    ifam->ifam_msglen, ifam->ifam_version, ifam->ifam_type,
743 		    ifam->ifam_addrs);
744 		trace_misc("ifam: flags %X index %d metric %d",
745 		    ifam->ifam_flags, ifam->ifam_index, ifam->ifam_metric);
746 		cp = (uchar_t *)(ifam + 1);
747 		break;
748 	case RTM_IFINFO:
749 		ifm = (struct if_msghdr *)rtm;
750 		trace_misc("ifm: msglen %d version %d type %d addrs %X",
751 		    ifm->ifm_msglen, ifm->ifm_version, ifm->ifm_type,
752 		    ifm->ifm_addrs);
753 		ibs = if_bit_string(ifm->ifm_flags, _B_TRUE);
754 		if (ibs == NULL) {
755 			trace_misc("ifm: flags %#x index %d", ifm->ifm_flags,
756 			    ifm->ifm_index);
757 		} else {
758 			trace_misc("ifm: flags %s index %d", ibs,
759 			    ifm->ifm_index);
760 			free(ibs);
761 		}
762 		cp = (uchar_t *)(ifm + 1);
763 		break;
764 	default:
765 		trace_misc("rtm: msglen %d version %d type %d index %d",
766 		    rtm->rtm_msglen, rtm->rtm_version, rtm->rtm_type,
767 		    rtm->rtm_index);
768 		trace_misc("rtm: flags %X addrs %X pid %d seq %d",
769 		    rtm->rtm_flags, rtm->rtm_addrs, rtm->rtm_pid, rtm->rtm_seq);
770 		trace_misc("rtm: errno %d use %d inits %X", rtm->rtm_errno,
771 		    rtm->rtm_use, rtm->rtm_inits);
772 		cp = (uchar_t *)(rtm + 1);
773 		break;
774 	}
775 	i = mlen - (cp - (uint8_t *)rtm);
776 	while (i > 0) {
777 		buffer[0] = '\0';
778 		ibs = buffer;
779 		for (j = 0; j < 16 && i > 0; j++, i--)
780 			ibs += sprintf(ibs, " %02X", *cp++);
781 		trace_misc("addr%s", buffer);
782 	}
783 }
784 
785 /*
786  * Tell the kernel to add, delete or change a route
787  * Pass k_state from khash in for diagnostic info.
788  */
789 static void
790 rtioctl(int action,			/* RTM_DELETE, etc */
791     in_addr_t dst,
792     in_addr_t gate,
793     in_addr_t mask,
794     struct interface *ifp,
795     uint8_t metric,
796     int flags)
797 {
798 	static int rt_sock_seqno = 0;
799 	struct {
800 		struct rt_msghdr w_rtm;
801 		struct sockaddr_in w_dst;
802 		struct sockaddr_in w_gate;
803 		uint8_t w_space[512];
804 	} w;
805 	struct sockaddr_in w_mask;
806 	struct sockaddr_dl w_ifp;
807 	uint8_t *cp;
808 	long cc;
809 #define	PAT " %-10s %s metric=%d flags=%#x"
810 #define	ARGS rtm_type_name(action), rtname(dst, mask, gate), metric, flags
811 
812 again:
813 	(void) memset(&w, 0, sizeof (w));
814 	(void) memset(&w_mask, 0, sizeof (w_mask));
815 	(void) memset(&w_ifp, 0, sizeof (w_ifp));
816 	cp = w.w_space;
817 	w.w_rtm.rtm_msglen = sizeof (struct rt_msghdr) +
818 	    2 * ROUNDUP_LONG(sizeof (struct sockaddr_in));
819 	w.w_rtm.rtm_version = RTM_VERSION;
820 	w.w_rtm.rtm_type = action;
821 	w.w_rtm.rtm_flags = flags;
822 	w.w_rtm.rtm_seq = ++rt_sock_seqno;
823 	w.w_rtm.rtm_addrs = RTA_DST|RTA_GATEWAY;
824 	if (metric != 0 || action == RTM_CHANGE) {
825 		w.w_rtm.rtm_rmx.rmx_hopcount = metric;
826 		w.w_rtm.rtm_inits |= RTV_HOPCOUNT;
827 	}
828 	w.w_dst.sin_family = AF_INET;
829 	w.w_dst.sin_addr.s_addr = dst;
830 	w.w_gate.sin_family = AF_INET;
831 	w.w_gate.sin_addr.s_addr = gate;
832 	if (mask == HOST_MASK) {
833 		w.w_rtm.rtm_flags |= RTF_HOST;
834 	} else {
835 		w.w_rtm.rtm_addrs |= RTA_NETMASK;
836 		w_mask.sin_family = AF_INET;
837 		w_mask.sin_addr.s_addr = htonl(mask);
838 		(void) memmove(cp, &w_mask, sizeof (w_mask));
839 		cp += ROUNDUP_LONG(sizeof (struct sockaddr_in));
840 		w.w_rtm.rtm_msglen += ROUNDUP_LONG(sizeof (struct sockaddr_in));
841 	}
842 	if (ifp == NULL)
843 		ifp = iflookup(gate);
844 
845 	if (ifp == NULL || (ifp->int_phys == NULL)) {
846 		trace_misc("no ifp for" PAT, ARGS);
847 	} else {
848 		if (ifp->int_phys->phyi_index > UINT16_MAX) {
849 			trace_misc("ifindex %d is too big for sdl_index",
850 			    ifp->int_phys->phyi_index);
851 		} else {
852 			w_ifp.sdl_family = AF_LINK;
853 			w.w_rtm.rtm_addrs |= RTA_IFP;
854 			w_ifp.sdl_index = ifp->int_phys->phyi_index;
855 			(void) memmove(cp, &w_ifp, sizeof (w_ifp));
856 			w.w_rtm.rtm_msglen +=
857 			    ROUNDUP_LONG(sizeof (struct sockaddr_dl));
858 		}
859 	}
860 
861 
862 	if (!no_install) {
863 		if (TRACERTS)
864 			dump_rt_msg("write", &w.w_rtm, w.w_rtm.rtm_msglen);
865 		cc = write(rt_sock, &w, w.w_rtm.rtm_msglen);
866 		if (cc < 0) {
867 			if (errno == ESRCH && (action == RTM_CHANGE ||
868 			    action == RTM_DELETE)) {
869 				trace_act("route disappeared before" PAT, ARGS);
870 				if (action == RTM_CHANGE) {
871 					action = RTM_ADD;
872 					goto again;
873 				}
874 				return;
875 			}
876 			writelog(LOG_WARNING, "write(rt_sock)" PAT ": %s ",
877 			    ARGS, rip_strerror(errno));
878 			return;
879 		} else if (cc != w.w_rtm.rtm_msglen) {
880 			msglog("write(rt_sock) wrote %ld instead of %d for" PAT,
881 			    cc, w.w_rtm.rtm_msglen, ARGS);
882 			return;
883 		}
884 	}
885 	if (TRACEKERNEL)
886 		trace_misc("write kernel" PAT, ARGS);
887 #undef PAT
888 #undef ARGS
889 }
890 
891 
892 /* Hash table containing our image of the kernel forwarding table. */
893 #define	KHASH_SIZE 71			/* should be prime */
894 #define	KHASH(a, m) khash_bins[((a) ^ (m)) % KHASH_SIZE]
895 static struct khash *khash_bins[KHASH_SIZE];
896 
897 #define	K_KEEP_LIM	30	/* k_keep */
898 
899 static struct khash *
900 kern_find(in_addr_t dst, in_addr_t mask, in_addr_t gate,
901     struct interface *ifp, struct khash ***ppk)
902 {
903 	struct khash *k, **pk;
904 
905 	for (pk = &KHASH(dst, mask); (k = *pk) != NULL; pk = &k->k_next) {
906 		if (k->k_dst == dst && k->k_mask == mask &&
907 		    (gate == 0 || k->k_gate == gate) &&
908 		    (ifp == NULL || k->k_ifp == ifp)) {
909 			break;
910 		}
911 	}
912 	if (ppk != NULL)
913 		*ppk = pk;
914 	return (k);
915 }
916 
917 
918 /*
919  * Find out if there is an alternate route to a given destination
920  * off of a given interface.
921  */
922 static struct khash *
923 kern_alternate(in_addr_t dst, in_addr_t mask, in_addr_t gate,
924     struct interface *ifp, struct khash ***ppk)
925 {
926 	struct khash *k, **pk;
927 
928 	for (pk = &KHASH(dst, mask); (k = *pk) != NULL; pk = &k->k_next) {
929 		if (k->k_dst == dst && k->k_mask == mask &&
930 		    (k->k_gate != gate) &&
931 		    (k->k_ifp == ifp)) {
932 			break;
933 		}
934 	}
935 	if (ppk != NULL)
936 		*ppk = pk;
937 	return (k);
938 }
939 
940 static struct khash *
941 kern_add(in_addr_t dst, uint32_t mask, in_addr_t gate, struct interface *ifp)
942 {
943 	struct khash *k, **pk;
944 
945 	k = kern_find(dst, mask, gate, ifp, &pk);
946 	if (k != NULL)
947 		return (k);
948 
949 	k = rtmalloc(sizeof (*k), "kern_add");
950 
951 	(void) memset(k, 0, sizeof (*k));
952 	k->k_dst = dst;
953 	k->k_mask = mask;
954 	k->k_state = KS_NEW;
955 	k->k_keep = now.tv_sec;
956 	k->k_gate = gate;
957 	k->k_ifp = ifp;
958 	*pk = k;
959 
960 	return (k);
961 }
962 
963 /* delete all khash entries that are wired through the interface ifp */
964 void
965 kern_flush_ifp(struct interface *ifp)
966 {
967 	struct khash *k, *kprev, *knext;
968 	int i;
969 
970 	for (i = 0; i < KHASH_SIZE; i++) {
971 		kprev = NULL;
972 		for (k = khash_bins[i]; k != NULL; k = knext) {
973 			knext = k->k_next;
974 			if (k->k_ifp == ifp) {
975 				if (kprev != NULL)
976 					kprev->k_next = k->k_next;
977 				else
978 					khash_bins[i] = k->k_next;
979 				free(k);
980 				continue;
981 			}
982 			kprev = k;
983 		}
984 	}
985 }
986 
987 /*
988  * rewire khash entries that currently go through oldifp to
989  * go through newifp.
990  */
991 void
992 kern_rewire_ifp(struct interface *oldifp, struct interface *newifp)
993 {
994 	struct khash *k;
995 	int i;
996 
997 	for (i = 0; i < KHASH_SIZE; i++) {
998 		for (k = khash_bins[i]; k; k = k->k_next) {
999 			if (k->k_ifp == oldifp) {
1000 				k->k_ifp = newifp;
1001 				trace_misc("kern_rewire_ifp k 0x%lx "
1002 				    "from %s to %s", k, oldifp->int_name,
1003 				    newifp->int_name);
1004 			}
1005 		}
1006 	}
1007 }
1008 
1009 /*
1010  * Check that a static route it is still in the daemon table, and not
1011  * deleted by interfaces coming and going.  This is also the routine
1012  * responsible for adding new static routes to the daemon table.
1013  */
1014 static void
1015 kern_check_static(struct khash *k, struct interface *ifp)
1016 {
1017 	struct rt_entry *rt;
1018 	struct rt_spare new;
1019 	uint16_t rt_state = RS_STATIC;
1020 
1021 	(void) memset(&new, 0, sizeof (new));
1022 	new.rts_ifp = ifp;
1023 	new.rts_gate = k->k_gate;
1024 	new.rts_router = (ifp != NULL) ? ifp->int_addr : loopaddr;
1025 	new.rts_metric = k->k_metric;
1026 	new.rts_time = now.tv_sec;
1027 	new.rts_origin = RO_STATIC;
1028 
1029 	rt = rtget(k->k_dst, k->k_mask);
1030 	if ((ifp != NULL && !IS_IFF_ROUTING(ifp->int_if_flags)) ||
1031 	    (k->k_state & KS_PRIVATE))
1032 		rt_state |= RS_NOPROPAGATE;
1033 
1034 	if (rt != NULL) {
1035 		if ((rt->rt_state & RS_STATIC) == 0) {
1036 			/*
1037 			 * We are already tracking this dest/mask
1038 			 * via RIP/RDISC. Ignore the static route,
1039 			 * because we don't currently have a good
1040 			 * way to compare metrics on static routes
1041 			 * with rip metrics, and therefore cannot
1042 			 * mix and match the two.
1043 			 */
1044 			return;
1045 		}
1046 		rt_state |= rt->rt_state;
1047 		if (rt->rt_state != rt_state)
1048 			rtchange(rt, rt_state, &new, 0);
1049 	} else {
1050 		rtadd(k->k_dst, k->k_mask, rt_state, &new);
1051 	}
1052 }
1053 
1054 
1055 /* operate on a kernel entry */
1056 static void
1057 kern_ioctl(struct khash *k,
1058     int action,			/* RTM_DELETE, etc */
1059     int flags)
1060 {
1061 	if (((k->k_state & (KS_IF|KS_PASSIVE)) == KS_IF) ||
1062 	    (k->k_state & KS_DEPRE_IF)) {
1063 		/*
1064 		 * Prevent execution of RTM_DELETE, RTM_ADD or
1065 		 * RTM_CHANGE of interface routes
1066 		 */
1067 		trace_act("Blocking execution of %s  %s --> %s ",
1068 		    rtm_type_name(action),
1069 		    addrname(k->k_dst, k->k_mask, 0), naddr_ntoa(k->k_gate));
1070 		return;
1071 	}
1072 
1073 	switch (action) {
1074 	case RTM_DELETE:
1075 		k->k_state &= ~KS_DYNAMIC;
1076 		if (k->k_state & KS_DELETED)
1077 			return;
1078 		k->k_state |= KS_DELETED;
1079 		break;
1080 	case RTM_ADD:
1081 		k->k_state &= ~KS_DELETED;
1082 		break;
1083 	case RTM_CHANGE:
1084 		if (k->k_state & KS_DELETED) {
1085 			action = RTM_ADD;
1086 			k->k_state &= ~KS_DELETED;
1087 		}
1088 		break;
1089 	}
1090 
1091 	rtioctl(action, k->k_dst, k->k_gate, k->k_mask, k->k_ifp,
1092 	    k->k_metric, flags);
1093 }
1094 
1095 
1096 /* add a route the kernel told us */
1097 static void
1098 rtm_add(struct rt_msghdr *rtm,
1099     struct rt_addrinfo *info,
1100     time_t keep,
1101     boolean_t interf_route,
1102     struct interface *ifptr)
1103 {
1104 	struct khash *k;
1105 	struct interface *ifp = ifptr;
1106 	in_addr_t mask, gate = 0;
1107 	static struct msg_limit msg_no_ifp;
1108 
1109 	if (rtm->rtm_flags & RTF_HOST) {
1110 		mask = HOST_MASK;
1111 	} else if (INFO_MASK(info) != 0) {
1112 		mask = ntohl(S_ADDR(INFO_MASK(info)));
1113 	} else {
1114 		writelog(LOG_WARNING,
1115 		    "ignore %s without mask", rtm_type_name(rtm->rtm_type));
1116 		return;
1117 	}
1118 
1119 	/*
1120 	 * Find the interface toward the gateway.
1121 	 */
1122 	if (INFO_GATE(info) != NULL)
1123 		gate = S_ADDR(INFO_GATE(info));
1124 
1125 	if (ifp == NULL) {
1126 		if (INFO_GATE(info) != NULL)
1127 			ifp = iflookup(gate);
1128 		if (ifp == NULL) {
1129 			msglim(&msg_no_ifp, gate,
1130 			    "route %s --> %s nexthop is not directly connected",
1131 			    addrname(S_ADDR(INFO_DST(info)), mask, 0),
1132 			    naddr_ntoa(gate));
1133 		}
1134 	}
1135 
1136 	k = kern_add(S_ADDR(INFO_DST(info)), mask, gate, ifp);
1137 
1138 	if (k->k_state & KS_NEW)
1139 		k->k_keep = now.tv_sec+keep;
1140 	if (INFO_GATE(info) == 0) {
1141 		trace_act("note %s without gateway",
1142 		    rtm_type_name(rtm->rtm_type));
1143 		k->k_metric = HOPCNT_INFINITY;
1144 	} else if (INFO_GATE(info)->ss_family != AF_INET) {
1145 		trace_act("note %s with gateway AF=%d",
1146 		    rtm_type_name(rtm->rtm_type),
1147 		    INFO_GATE(info)->ss_family);
1148 		k->k_metric = HOPCNT_INFINITY;
1149 	} else {
1150 		k->k_gate = S_ADDR(INFO_GATE(info));
1151 		k->k_metric = rtm->rtm_rmx.rmx_hopcount;
1152 		if (k->k_metric < 0)
1153 			k->k_metric = 0;
1154 		else if (k->k_metric > HOPCNT_INFINITY-1)
1155 			k->k_metric = HOPCNT_INFINITY-1;
1156 	}
1157 
1158 	if ((k->k_state & KS_NEW) && interf_route) {
1159 		if (k->k_gate != 0 && findifaddr(k->k_gate) == NULL)
1160 			k->k_state |= KS_DEPRE_IF;
1161 		else
1162 			k->k_state |= KS_IF;
1163 	}
1164 
1165 	k->k_state &= ~(KS_NEW | KS_DELETE | KS_ADD | KS_CHANGE | KS_DEL_ADD |
1166 	    KS_STATIC | KS_GATEWAY | KS_DELETED | KS_PRIVATE | KS_CHECK);
1167 	if (rtm->rtm_flags & RTF_GATEWAY)
1168 		k->k_state |= KS_GATEWAY;
1169 	if (rtm->rtm_flags & RTF_STATIC)
1170 		k->k_state |= KS_STATIC;
1171 	if (rtm->rtm_flags & RTF_PRIVATE)
1172 		k->k_state |= KS_PRIVATE;
1173 
1174 
1175 	if (rtm->rtm_flags & (RTF_DYNAMIC | RTF_MODIFIED)) {
1176 		if (INFO_AUTHOR(info) != 0 &&
1177 		    INFO_AUTHOR(info)->ss_family == AF_INET)
1178 			ifp = iflookup(S_ADDR(INFO_AUTHOR(info)));
1179 		else
1180 			ifp = NULL;
1181 		if (should_supply(ifp) && (ifp == NULL ||
1182 		    !(ifp->int_state & IS_REDIRECT_OK))) {
1183 			/*
1184 			 * Routers are not supposed to listen to redirects,
1185 			 * so delete it if it came via an unknown interface
1186 			 * or the interface does not have special permission.
1187 			 */
1188 			k->k_state &= ~KS_DYNAMIC;
1189 			k->k_state |= KS_DELETE;
1190 			LIM_SEC(need_kern, 0);
1191 			trace_act("mark for deletion redirected %s --> %s"
1192 			    " via %s",
1193 			    addrname(k->k_dst, k->k_mask, 0),
1194 			    naddr_ntoa(k->k_gate),
1195 			    ifp ? ifp->int_name : "unknown interface");
1196 		} else {
1197 			k->k_state |= KS_DYNAMIC;
1198 			k->k_redirect_time = now.tv_sec;
1199 			trace_act("accept redirected %s --> %s via %s",
1200 			    addrname(k->k_dst, k->k_mask, 0),
1201 			    naddr_ntoa(k->k_gate),
1202 			    ifp ? ifp->int_name : "unknown interface");
1203 		}
1204 		return;
1205 	}
1206 
1207 	/*
1208 	 * If it is not a static route, quit until the next comparison
1209 	 * between the kernel and daemon tables, when it will be deleted.
1210 	 */
1211 	if (!(k->k_state & KS_STATIC)) {
1212 		if (!(k->k_state & (KS_IF|KS_DEPRE_IF|KS_FILE)))
1213 			k->k_state |= KS_DELETE;
1214 		LIM_SEC(need_kern, k->k_keep);
1215 		return;
1216 	}
1217 
1218 	/*
1219 	 * Put static routes with real metrics into the daemon table so
1220 	 * they can be advertised.
1221 	 */
1222 
1223 	kern_check_static(k, ifp);
1224 }
1225 
1226 
1227 /* deal with packet loss */
1228 static void
1229 rtm_lose(struct rt_msghdr *rtm, struct rt_addrinfo *info)
1230 {
1231 	if (INFO_GATE(info) == NULL || INFO_GATE(info)->ss_family != AF_INET) {
1232 		trace_act("ignore %s without gateway",
1233 		    rtm_type_name(rtm->rtm_type));
1234 		age(0);
1235 		return;
1236 	}
1237 
1238 	if (rdisc_ok)
1239 		rdisc_age(S_ADDR(INFO_GATE(info)));
1240 	age(S_ADDR(INFO_GATE(info)));
1241 }
1242 
1243 
1244 /*
1245  * Make the gateway slot of an info structure point to something
1246  * useful.  If it is not already useful, but it specifies an interface,
1247  * then fill in the sockaddr_in provided and point it there.
1248  */
1249 static int
1250 get_info_gate(struct sockaddr_storage **ssp, struct sockaddr_in *sin)
1251 {
1252 	struct sockaddr_dl *sdl = (struct sockaddr_dl *)*ssp;
1253 	struct interface *ifp;
1254 
1255 	if (sdl == NULL)
1256 		return (0);
1257 	if ((sdl)->sdl_family == AF_INET)
1258 		return (1);
1259 	if ((sdl)->sdl_family != AF_LINK)
1260 		return (0);
1261 
1262 	ifp = ifwithindex(sdl->sdl_index, _B_TRUE);
1263 	if (ifp == NULL)
1264 		return (0);
1265 
1266 	sin->sin_addr.s_addr = ifp->int_addr;
1267 	sin->sin_family = AF_INET;
1268 	/* LINTED */
1269 	*ssp = (struct sockaddr_storage *)sin;
1270 
1271 	return (1);
1272 }
1273 
1274 
1275 /*
1276  * Clean the kernel table by copying it to the daemon image.
1277  * Eventually the daemon will delete any extra routes.
1278  */
1279 void
1280 sync_kern(void)
1281 {
1282 	int i;
1283 	struct khash *k;
1284 	struct {
1285 		struct T_optmgmt_req req;
1286 		struct opthdr hdr;
1287 	} req;
1288 	union {
1289 		struct T_optmgmt_ack ack;
1290 		unsigned char space[64];
1291 	} ack;
1292 	struct opthdr *rh;
1293 	struct strbuf cbuf, dbuf;
1294 	int ipfd, nroutes, flags, r;
1295 	mib2_ipRouteEntry_t routes[8];
1296 	mib2_ipRouteEntry_t *rp;
1297 	struct rt_msghdr rtm;
1298 	struct rt_addrinfo info;
1299 	struct sockaddr_in sin_dst;
1300 	struct sockaddr_in sin_gate;
1301 	struct sockaddr_in sin_mask;
1302 	struct sockaddr_in sin_author;
1303 	struct interface *ifp;
1304 	char ifname[LIFNAMSIZ + 1];
1305 
1306 	for (i = 0; i < KHASH_SIZE; i++) {
1307 		for (k = khash_bins[i]; k != NULL; k = k->k_next) {
1308 			if (!(k->k_state & (KS_IF|KS_DEPRE_IF)))
1309 				k->k_state |= KS_CHECK;
1310 		}
1311 	}
1312 
1313 	ipfd = open(IP_DEV_NAME, O_RDWR);
1314 	if (ipfd == -1) {
1315 		msglog("open " IP_DEV_NAME ": %s", rip_strerror(errno));
1316 		goto hash_clean;
1317 	}
1318 
1319 	req.req.PRIM_type = T_OPTMGMT_REQ;
1320 	req.req.OPT_offset = (caddr_t)&req.hdr - (caddr_t)&req;
1321 	req.req.OPT_length = sizeof (req.hdr);
1322 	req.req.MGMT_flags = T_CURRENT;
1323 
1324 	req.hdr.level = MIB2_IP;
1325 	req.hdr.name = 0;
1326 	req.hdr.len = 0;
1327 
1328 	cbuf.buf = (caddr_t)&req;
1329 	cbuf.len = sizeof (req);
1330 
1331 	if (putmsg(ipfd, &cbuf, NULL, 0) == -1) {
1332 		msglog("T_OPTMGMT_REQ putmsg: %s", rip_strerror(errno));
1333 		goto hash_clean;
1334 	}
1335 
1336 	for (;;) {
1337 		cbuf.buf = (caddr_t)&ack;
1338 		cbuf.maxlen = sizeof (ack);
1339 		dbuf.buf = (caddr_t)routes;
1340 		dbuf.maxlen = sizeof (routes);
1341 		flags = 0;
1342 		r = getmsg(ipfd, &cbuf, &dbuf, &flags);
1343 		if (r == -1) {
1344 			msglog("T_OPTMGMT_REQ getmsg: %s", rip_strerror(errno));
1345 			goto hash_clean;
1346 		}
1347 
1348 		if (cbuf.len < sizeof (struct T_optmgmt_ack) ||
1349 		    ack.ack.PRIM_type != T_OPTMGMT_ACK ||
1350 		    ack.ack.MGMT_flags != T_SUCCESS ||
1351 		    ack.ack.OPT_length < sizeof (struct opthdr)) {
1352 			msglog("bad T_OPTMGMT response; len=%d prim=%d "
1353 			    "flags=%d optlen=%d", cbuf.len, ack.ack.PRIM_type,
1354 			    ack.ack.MGMT_flags, ack.ack.OPT_length);
1355 			goto hash_clean;
1356 		}
1357 		/* LINTED */
1358 		rh = (struct opthdr *)((caddr_t)&ack + ack.ack.OPT_offset);
1359 		if (rh->level == 0 && rh->name == 0) {
1360 			break;
1361 		}
1362 		if (rh->level != MIB2_IP || rh->name != MIB2_IP_21) {
1363 			while (r == MOREDATA) {
1364 				r = getmsg(ipfd, NULL, &dbuf, &flags);
1365 			}
1366 			continue;
1367 		}
1368 		break;
1369 	}
1370 
1371 	(void) memset(&rtm, 0, sizeof (rtm));
1372 	(void) memset(&info, 0, sizeof (info));
1373 	(void) memset(&sin_dst, 0, sizeof (sin_dst));
1374 	(void) memset(&sin_gate, 0, sizeof (sin_gate));
1375 	(void) memset(&sin_mask, 0, sizeof (sin_mask));
1376 	(void) memset(&sin_author, 0, sizeof (sin_author));
1377 	sin_dst.sin_family = AF_INET;
1378 	/* LINTED */
1379 	info.rti_info[RTAX_DST] = (struct sockaddr_storage *)&sin_dst;
1380 	sin_gate.sin_family = AF_INET;
1381 	/* LINTED */
1382 	info.rti_info[RTAX_GATEWAY] = (struct sockaddr_storage *)&sin_gate;
1383 	sin_mask.sin_family = AF_INET;
1384 	/* LINTED */
1385 	info.rti_info[RTAX_NETMASK] = (struct sockaddr_storage *)&sin_mask;
1386 	sin_dst.sin_family = AF_INET;
1387 	/* LINTED */
1388 	info.rti_info[RTAX_AUTHOR] = (struct sockaddr_storage *)&sin_author;
1389 
1390 	for (;;) {
1391 		nroutes = dbuf.len / sizeof (mib2_ipRouteEntry_t);
1392 		for (rp = routes; nroutes > 0; ++rp, nroutes--) {
1393 
1394 			/*
1395 			 * Ignore IRE cache, broadcast, and local address
1396 			 * entries; they're not subject to routing socket
1397 			 * control.
1398 			 */
1399 			if (rp->ipRouteInfo.re_ire_type &
1400 			    (IRE_BROADCAST | IRE_CACHE | IRE_LOCAL))
1401 				continue;
1402 
1403 			/* ignore multicast and link local addresses */
1404 			if (IN_MULTICAST(ntohl(rp->ipRouteDest)) ||
1405 			    IN_LINKLOCAL(ntohl(rp->ipRouteDest))) {
1406 				continue;
1407 			}
1408 
1409 
1410 #ifdef DEBUG_KERNEL_ROUTE_READ
1411 			(void) fprintf(stderr, "route type %d, ire type %08X, "
1412 			    "flags %08X: %s", rp->ipRouteType,
1413 			    rp->ipRouteInfo.re_ire_type,
1414 			    rp->ipRouteInfo.re_flags,
1415 			    naddr_ntoa(rp->ipRouteDest));
1416 			(void) fprintf(stderr, " %s",
1417 			    naddr_ntoa(rp->ipRouteMask));
1418 			(void) fprintf(stderr, " %s\n",
1419 			    naddr_ntoa(rp->ipRouteNextHop));
1420 #endif
1421 
1422 			/* Fake up the needed entries */
1423 			rtm.rtm_flags = rp->ipRouteInfo.re_flags;
1424 			rtm.rtm_type = RTM_GET;
1425 			rtm.rtm_rmx.rmx_hopcount = rp->ipRouteMetric1;
1426 
1427 			(void) memset(ifname, 0, sizeof (ifname));
1428 			if (rp->ipRouteIfIndex.o_length <
1429 			    sizeof (rp->ipRouteIfIndex.o_bytes))
1430 				rp->ipRouteIfIndex.o_bytes[
1431 				    rp->ipRouteIfIndex.o_length] = '\0';
1432 				(void) strncpy(ifname,
1433 				    rp->ipRouteIfIndex.o_bytes,
1434 				    sizeof (ifname));
1435 
1436 			/*
1437 			 * First try to match up on gwkludge entries
1438 			 * before trying to match ifp by name/nexthop.
1439 			 */
1440 			if ((ifp = gwkludge_iflookup(rp->ipRouteDest,
1441 			    rp->ipRouteNextHop,
1442 			    ntohl(rp->ipRouteMask))) == NULL) {
1443 				ifp = lifp_iflookup(rp->ipRouteNextHop, ifname);
1444 			}
1445 
1446 #ifdef DEBUG_KERNEL_ROUTE_READ
1447 			if (ifp != NULL) {
1448 				(void) fprintf(stderr, "   found interface"
1449 				    " %-4s #%-3d ", ifp->int_name,
1450 				    (ifp->int_phys != NULL) ?
1451 				    ifp->int_phys->phyi_index : 0);
1452 				(void) fprintf(stderr, "%-15s-->%-15s \n",
1453 				    naddr_ntoa(ifp->int_addr),
1454 				    addrname(((ifp->int_if_flags &
1455 				    IFF_POINTOPOINT) ?
1456 				    ifp->int_dstaddr : htonl(ifp->int_net)),
1457 				    ifp->int_mask, 1));
1458 			}
1459 #endif
1460 
1461 			info.rti_addrs = RTA_DST | RTA_GATEWAY | RTA_NETMASK;
1462 			if (rp->ipRouteInfo.re_ire_type & IRE_HOST_REDIRECT)
1463 				info.rti_addrs |= RTA_AUTHOR;
1464 			sin_dst.sin_addr.s_addr = rp->ipRouteDest;
1465 			sin_gate.sin_addr.s_addr = rp->ipRouteNextHop;
1466 			sin_mask.sin_addr.s_addr = rp->ipRouteMask;
1467 			sin_author.sin_addr.s_addr =
1468 			    rp->ipRouteInfo.re_src_addr;
1469 
1470 			/*
1471 			 * Note static routes and interface routes, and also
1472 			 * preload the image of the kernel table so that
1473 			 * we can later clean it, as well as avoid making
1474 			 * unneeded changes.  Keep the old kernel routes for a
1475 			 * few seconds to allow a RIP or router-discovery
1476 			 * response to be heard.
1477 			 */
1478 			rtm_add(&rtm, &info, MAX_WAITTIME,
1479 			    ((rp->ipRouteInfo.re_ire_type &
1480 			    (IRE_INTERFACE|IRE_LOOPBACK)) != 0), ifp);
1481 		}
1482 		if (r == 0) {
1483 			break;
1484 		}
1485 		r = getmsg(ipfd, NULL, &dbuf, &flags);
1486 	}
1487 
1488 hash_clean:
1489 	if (ipfd != -1)
1490 		(void) close(ipfd);
1491 	for (i = 0; i < KHASH_SIZE; i++) {
1492 		for (k = khash_bins[i]; k != NULL; k = k->k_next) {
1493 
1494 			/*
1495 			 * KS_DELETED routes have been removed from the
1496 			 * kernel, but we keep them around for reasons
1497 			 * stated in del_static(), so we skip the check
1498 			 * for KS_DELETED routes here.
1499 			 */
1500 			if ((k->k_state & (KS_CHECK|KS_DELETED)) == KS_CHECK) {
1501 
1502 				if (!(k->k_state & KS_DYNAMIC)) {
1503 					writelog(LOG_WARNING,
1504 					    "%s --> %s disappeared from kernel",
1505 					    addrname(k->k_dst, k->k_mask, 0),
1506 					    naddr_ntoa(k->k_gate));
1507 				}
1508 				del_static(k->k_dst, k->k_mask, k->k_gate,
1509 				    k->k_ifp, 1);
1510 
1511 			}
1512 		}
1513 	}
1514 }
1515 
1516 
1517 /* Listen to announcements from the kernel */
1518 void
1519 read_rt(void)
1520 {
1521 	long cc;
1522 	struct interface *ifp;
1523 	struct sockaddr_in gate_sin;
1524 	in_addr_t mask, gate;
1525 	union {
1526 		struct {
1527 			struct rt_msghdr rtm;
1528 			struct sockaddr_storage addrs[RTA_NUMBITS];
1529 		} r;
1530 		struct if_msghdr ifm;
1531 	} m;
1532 	char str[100], *strp;
1533 	struct rt_addrinfo info;
1534 
1535 
1536 	for (;;) {
1537 		cc = read(rt_sock, &m, sizeof (m));
1538 		if (cc <= 0) {
1539 			if (cc < 0 && errno != EWOULDBLOCK)
1540 				LOGERR("read(rt_sock)");
1541 			return;
1542 		}
1543 
1544 		if (TRACERTS)
1545 			dump_rt_msg("read", &m.r.rtm, cc);
1546 
1547 		if (cc < m.r.rtm.rtm_msglen) {
1548 			msglog("routing message truncated (%d < %d)",
1549 			    cc, m.r.rtm.rtm_msglen);
1550 		}
1551 
1552 		if (m.r.rtm.rtm_version != RTM_VERSION) {
1553 			msglog("bogus routing message version %d",
1554 			    m.r.rtm.rtm_version);
1555 			continue;
1556 		}
1557 
1558 		ifp = NULL;
1559 
1560 		if (m.r.rtm.rtm_type == RTM_IFINFO ||
1561 		    m.r.rtm.rtm_type == RTM_NEWADDR ||
1562 		    m.r.rtm.rtm_type == RTM_DELADDR) {
1563 			strp = if_bit_string(m.ifm.ifm_flags, _B_TRUE);
1564 			if (strp == NULL) {
1565 				strp = str;
1566 				(void) sprintf(str, "%#x", m.ifm.ifm_flags);
1567 			}
1568 			ifp = ifwithindex(m.ifm.ifm_index,
1569 			    m.r.rtm.rtm_type != RTM_DELADDR);
1570 			if (ifp == NULL) {
1571 				char ifname[LIFNAMSIZ], *ifnamep;
1572 
1573 				ifnamep = if_indextoname(m.ifm.ifm_index,
1574 				    ifname);
1575 				if (ifnamep == NULL) {
1576 					trace_act("note %s with flags %s"
1577 					    " for unknown interface index #%d",
1578 					    rtm_type_name(m.r.rtm.rtm_type),
1579 					    strp, m.ifm.ifm_index);
1580 				} else {
1581 					trace_act("note %s with flags %s"
1582 					    " for unknown interface %s",
1583 					    rtm_type_name(m.r.rtm.rtm_type),
1584 					    strp, ifnamep);
1585 				}
1586 			} else {
1587 				trace_act("note %s with flags %s for %s",
1588 				    rtm_type_name(m.r.rtm.rtm_type),
1589 				    strp, ifp->int_name);
1590 			}
1591 			if (strp != str)
1592 				free(strp);
1593 
1594 			/*
1595 			 * After being informed of a change to an interface,
1596 			 * check them all now if the check would otherwise
1597 			 * be a long time from now, if the interface is
1598 			 * not known, or if the interface has been turned
1599 			 * off or on.
1600 			 */
1601 			if (ifscan_timer.tv_sec-now.tv_sec >=
1602 			    CHECK_BAD_INTERVAL || ifp == NULL ||
1603 			    ((ifp->int_if_flags ^ m.ifm.ifm_flags) &
1604 			    IFF_UP) != 0)
1605 				ifscan_timer.tv_sec = now.tv_sec;
1606 			continue;
1607 		} else {
1608 			if (m.r.rtm.rtm_index != 0)
1609 				ifp = ifwithindex(m.r.rtm.rtm_index, 1);
1610 		}
1611 
1612 		(void) strlcpy(str, rtm_type_name(m.r.rtm.rtm_type),
1613 		    sizeof (str));
1614 		strp = &str[strlen(str)];
1615 		if (m.r.rtm.rtm_type <= RTM_CHANGE)
1616 			strp += snprintf(strp, sizeof (str) - (strp - str),
1617 			    " from pid %d", (int)m.r.rtm.rtm_pid);
1618 
1619 		/* LINTED */
1620 		(void) rt_xaddrs(&info, (struct sockaddr_storage *)(&m.r.rtm +
1621 		    1), (char *)&m + cc, m.r.rtm.rtm_addrs);
1622 
1623 		if (INFO_DST(&info) == 0) {
1624 			trace_act("ignore %s without dst", str);
1625 			continue;
1626 		}
1627 
1628 		if (INFO_DST(&info)->ss_family != AF_INET) {
1629 			trace_act("ignore %s for AF %d", str,
1630 			    INFO_DST(&info)->ss_family);
1631 			continue;
1632 		}
1633 
1634 		mask = ((INFO_MASK(&info) != 0) ?
1635 		    ntohl(S_ADDR(INFO_MASK(&info))) :
1636 		    (m.r.rtm.rtm_flags & RTF_HOST) ?
1637 		    HOST_MASK : std_mask(S_ADDR(INFO_DST(&info))));
1638 
1639 		strp += snprintf(strp, sizeof (str) - (strp - str), ": %s",
1640 		    addrname(S_ADDR(INFO_DST(&info)), mask, 0));
1641 
1642 		if (IN_MULTICAST(ntohl(S_ADDR(INFO_DST(&info)))) ||
1643 		    IN_LINKLOCAL(ntohl(S_ADDR(INFO_DST(&info))))) {
1644 			trace_act("ignore multicast/link local %s", str);
1645 			continue;
1646 		}
1647 
1648 		if (m.r.rtm.rtm_flags & RTF_LLINFO) {
1649 			trace_act("ignore ARP %s", str);
1650 			continue;
1651 		}
1652 
1653 		if (get_info_gate(&INFO_GATE(&info), &gate_sin)) {
1654 			gate = S_ADDR(INFO_GATE(&info));
1655 			strp += snprintf(strp, sizeof (str) - (strp - str),
1656 			    " --> %s", naddr_ntoa(gate));
1657 		} else {
1658 			gate = 0;
1659 		}
1660 
1661 		if (INFO_AUTHOR(&info) != 0)
1662 			strp += snprintf(strp, sizeof (str) - (strp - str),
1663 			    " by authority of %s",
1664 			    saddr_ntoa(INFO_AUTHOR(&info)));
1665 
1666 		switch (m.r.rtm.rtm_type) {
1667 		case RTM_ADD:
1668 		case RTM_CHANGE:
1669 		case RTM_REDIRECT:
1670 			if (m.r.rtm.rtm_errno != 0) {
1671 				trace_act("ignore %s with \"%s\" error",
1672 				    str, rip_strerror(m.r.rtm.rtm_errno));
1673 			} else {
1674 				trace_act("%s", str);
1675 				rtm_add(&m.r.rtm, &info, 0,
1676 				    !(m.r.rtm.rtm_flags & RTF_GATEWAY) &&
1677 				    m.r.rtm.rtm_type != RTM_REDIRECT, ifp);
1678 
1679 			}
1680 			break;
1681 
1682 		case RTM_DELETE:
1683 			if (m.r.rtm.rtm_errno != 0 &&
1684 			    m.r.rtm.rtm_errno != ESRCH) {
1685 				trace_act("ignore %s with \"%s\" error",
1686 				    str, rip_strerror(m.r.rtm.rtm_errno));
1687 			} else {
1688 				trace_act("%s", str);
1689 				del_static(S_ADDR(INFO_DST(&info)), mask,
1690 				    gate, ifp, 1);
1691 			}
1692 			break;
1693 
1694 		case RTM_LOSING:
1695 			trace_act("%s", str);
1696 			rtm_lose(&m.r.rtm, &info);
1697 			break;
1698 
1699 		default:
1700 			trace_act("ignore %s", str);
1701 			break;
1702 		}
1703 	}
1704 }
1705 
1706 
1707 /*
1708  * Disassemble a routing message.  The result is an array of pointers
1709  * to sockaddr_storage structures stored in the info argument.
1710  *
1711  * ss is a pointer to the beginning of the data following the
1712  * rt_msghdr contained in the routing socket message, which consists
1713  * of a string of concatenated sockaddr structure of different types.
1714  *
1715  * Extended attributes can be appended at the end of the list.
1716  */
1717 static int
1718 rt_xaddrs(struct rt_addrinfo *info,
1719     struct sockaddr_storage *ss,
1720     char *lim,
1721     int addrs)
1722 {
1723 	int retv = 0;
1724 	int i;
1725 	int abit;
1726 	int complaints;
1727 	static int prev_complaints;
1728 
1729 #define	XBAD_AF		0x1
1730 #define	XBAD_SHORT	0x2
1731 #define	XBAD_LONG	0x4
1732 
1733 	(void) memset(info, 0, sizeof (*info));
1734 	info->rti_addrs = addrs;
1735 	complaints = 0;
1736 	for (i = 0, abit = 1; i < RTAX_MAX && (char *)ss < lim;
1737 	    i++, abit <<= 1) {
1738 		if ((addrs & abit) == 0)
1739 			continue;
1740 		info->rti_info[i] = ss;
1741 		/* Horrible interface here */
1742 		switch (ss->ss_family) {
1743 		case AF_UNIX:
1744 			/* LINTED */
1745 			ss = (struct sockaddr_storage *)(
1746 			    (struct sockaddr_un *)ss + 1);
1747 			break;
1748 		case AF_INET:
1749 			/* LINTED */
1750 			ss = (struct sockaddr_storage *)(
1751 			    (struct sockaddr_in *)ss + 1);
1752 			break;
1753 		case AF_LINK:
1754 			/* LINTED */
1755 			ss = (struct sockaddr_storage *)(
1756 			    (struct sockaddr_dl *)ss + 1);
1757 			break;
1758 		case AF_INET6:
1759 			/* LINTED */
1760 			ss = (struct sockaddr_storage *)(
1761 			    (struct sockaddr_in6 *)ss + 1);
1762 			break;
1763 		default:
1764 			if (!(prev_complaints & XBAD_AF))
1765 				writelog(LOG_WARNING,
1766 				    "unknown address family %d "
1767 				    "encountered", ss->ss_family);
1768 			if (complaints & XBAD_AF)
1769 				goto xaddr_done;
1770 			/* LINTED */
1771 			ss = (struct sockaddr_storage *)(
1772 			    (struct sockaddr *)ss + 1);
1773 			complaints |= XBAD_AF;
1774 			info->rti_addrs &= abit - 1;
1775 			addrs = info->rti_addrs;
1776 			retv = -1;
1777 			break;
1778 		}
1779 		if ((char *)ss > lim) {
1780 			if (!(prev_complaints & XBAD_SHORT))
1781 				msglog("sockaddr %d too short by %d "
1782 				    "bytes", i + 1, (char *)ss - lim);
1783 			complaints |= XBAD_SHORT;
1784 			info->rti_info[i] = NULL;
1785 			info->rti_addrs &= abit - 1;
1786 			retv = -1;
1787 			goto xaddr_done;
1788 		}
1789 	}
1790 
1791 	while (((char *)ss + sizeof (rtm_ext_t)) <= lim) {
1792 		rtm_ext_t *tp;
1793 		char *nxt;
1794 
1795 		/* LINTED: alignment */
1796 		tp = (rtm_ext_t *)ss;
1797 		nxt = (char *)(tp + 1) + tp->rtmex_len;
1798 
1799 		if (!IS_P2ALIGNED(tp->rtmex_len, sizeof (uint32_t)) ||
1800 		    nxt > lim) {
1801 			break;
1802 		}
1803 
1804 		/* LINTED: alignment */
1805 		ss = (struct sockaddr_storage *)nxt;
1806 	}
1807 
1808 	if ((char *)ss != lim) {
1809 		if ((char *)ss > lim) {
1810 			if (!(prev_complaints & XBAD_SHORT))
1811 				msglog("routing message too short by %d bytes",
1812 				    (char *)ss - lim);
1813 			complaints |= XBAD_SHORT;
1814 		} else if (!(prev_complaints & XBAD_LONG)) {
1815 			msglog("%d bytes of routing message left over",
1816 			    lim - (char *)ss);
1817 			complaints |= XBAD_LONG;
1818 		}
1819 		retv = -1;
1820 	}
1821 xaddr_done:
1822 	prev_complaints = complaints;
1823 	return (retv);
1824 }
1825 
1826 
1827 /* after aggregating, note routes that belong in the kernel */
1828 static void
1829 kern_out(struct ag_info *ag)
1830 {
1831 	struct khash *k;
1832 	struct interface *ifp;
1833 
1834 	ifp = ag->ag_ifp;
1835 
1836 	/*
1837 	 * Do not install bad routes if they are not already present.
1838 	 * This includes routes that had RS_NET_SYN for interfaces that
1839 	 * recently died.
1840 	 */
1841 	if (ag->ag_metric == HOPCNT_INFINITY) {
1842 		k = kern_find(htonl(ag->ag_dst_h), ag->ag_mask,
1843 		    ag->ag_nhop, ag->ag_ifp, NULL);
1844 		if (k == NULL)
1845 			return;
1846 	} else {
1847 		k = kern_add(htonl(ag->ag_dst_h), ag->ag_mask, ag->ag_nhop,
1848 		    ifp);
1849 	}
1850 
1851 	if (k->k_state & KS_NEW) {
1852 		/* will need to add new entry to the kernel table */
1853 		k->k_state = KS_ADD;
1854 		if (ag->ag_state & AGS_GATEWAY)
1855 			k->k_state |= KS_GATEWAY;
1856 		if (ag->ag_state & AGS_IF)
1857 			k->k_state |= KS_IF;
1858 		if (ag->ag_state & AGS_PASSIVE)
1859 			k->k_state |= KS_PASSIVE;
1860 		if (ag->ag_state & AGS_FILE)
1861 			k->k_state |= KS_FILE;
1862 		k->k_gate = ag->ag_nhop;
1863 		k->k_ifp = ifp;
1864 		k->k_metric = ag->ag_metric;
1865 		return;
1866 	}
1867 
1868 	if ((k->k_state & (KS_STATIC|KS_DEPRE_IF)) ||
1869 	    ((k->k_state & (KS_IF|KS_PASSIVE)) == KS_IF)) {
1870 		return;
1871 	}
1872 
1873 	/* modify existing kernel entry if necessary */
1874 	if (k->k_gate == ag->ag_nhop && k->k_ifp == ag->ag_ifp &&
1875 	    k->k_metric != ag->ag_metric) {
1876 			/*
1877 			 * Must delete bad interface routes etc.
1878 			 * to change them.
1879 			 */
1880 			if (k->k_metric == HOPCNT_INFINITY)
1881 				k->k_state |= KS_DEL_ADD;
1882 			k->k_gate = ag->ag_nhop;
1883 			k->k_metric = ag->ag_metric;
1884 			k->k_state |= KS_CHANGE;
1885 	}
1886 
1887 	/*
1888 	 * If the daemon thinks the route should exist, forget
1889 	 * about any redirections.
1890 	 * If the daemon thinks the route should exist, eventually
1891 	 * override manual intervention by the operator.
1892 	 */
1893 	if ((k->k_state & (KS_DYNAMIC | KS_DELETED)) != 0) {
1894 		k->k_state &= ~KS_DYNAMIC;
1895 		k->k_state |= (KS_ADD | KS_DEL_ADD);
1896 	}
1897 
1898 	if ((k->k_state & KS_GATEWAY) && !(ag->ag_state & AGS_GATEWAY)) {
1899 		k->k_state &= ~KS_GATEWAY;
1900 		k->k_state |= (KS_ADD | KS_DEL_ADD);
1901 	} else if (!(k->k_state & KS_GATEWAY) && (ag->ag_state & AGS_GATEWAY)) {
1902 		k->k_state |= KS_GATEWAY;
1903 		k->k_state |= (KS_ADD | KS_DEL_ADD);
1904 	}
1905 
1906 	/*
1907 	 * Deleting-and-adding is necessary to change aspects of a route.
1908 	 * Just delete instead of deleting and then adding a bad route.
1909 	 * Otherwise, we want to keep the route in the kernel.
1910 	 */
1911 	if (k->k_metric == HOPCNT_INFINITY && (k->k_state & KS_DEL_ADD))
1912 		k->k_state |= KS_DELETE;
1913 	else
1914 		k->k_state &= ~KS_DELETE;
1915 #undef RT
1916 }
1917 
1918 /*
1919  * Update our image of the kernel forwarding table using the given
1920  * route from our internal routing table.
1921  */
1922 
1923 /*ARGSUSED1*/
1924 static int
1925 walk_kern(struct radix_node *rn, void *argp)
1926 {
1927 #define	RT ((struct rt_entry *)rn)
1928 	uint8_t metric, pref;
1929 	uint_t ags = 0;
1930 	int i;
1931 	struct rt_spare *rts;
1932 
1933 	/* Do not install synthetic routes */
1934 	if (RT->rt_state & RS_NET_SYN)
1935 		return (0);
1936 
1937 	/*
1938 	 * Do not install static routes here. Only
1939 	 * read_rt->rtm_add->kern_add should install those
1940 	 */
1941 	if ((RT->rt_state & RS_STATIC) &&
1942 	    (RT->rt_spares[0].rts_origin != RO_FILE))
1943 		return (0);
1944 
1945 	/* Do not clobber kernel if this is a route for a dead interface */
1946 	if (RT->rt_state & RS_BADIF)
1947 		return (0);
1948 
1949 	if (!(RT->rt_state & RS_IF)) {
1950 		/* This is an ordinary route, not for an interface. */
1951 
1952 		/*
1953 		 * aggregate, ordinary good routes without regard to
1954 		 * their metric
1955 		 */
1956 		pref = 1;
1957 		ags |= (AGS_GATEWAY | AGS_SUPPRESS | AGS_AGGREGATE);
1958 
1959 		/*
1960 		 * Do not install host routes directly to hosts, to avoid
1961 		 * interfering with ARP entries in the kernel table.
1962 		 */
1963 		if (RT_ISHOST(RT) && ntohl(RT->rt_dst) == RT->rt_gate)
1964 			return (0);
1965 
1966 	} else {
1967 		/*
1968 		 * This is an interface route.
1969 		 * Do not install routes for "external" remote interfaces.
1970 		 */
1971 		if (RT->rt_ifp != NULL && (RT->rt_ifp->int_state & IS_EXTERNAL))
1972 			return (0);
1973 
1974 		/* Interfaces should override received routes. */
1975 		pref = 0;
1976 		ags |= (AGS_IF | AGS_CORS_GATE);
1977 		if (RT->rt_ifp != NULL &&
1978 		    !(RT->rt_ifp->int_if_flags & IFF_LOOPBACK) &&
1979 		    (RT->rt_ifp->int_state & (IS_PASSIVE|IS_ALIAS)) ==
1980 		    IS_PASSIVE) {
1981 			ags |= AGS_PASSIVE;
1982 		}
1983 
1984 		/*
1985 		 * If it is not an interface, or an alias for an interface,
1986 		 * it must be a "gateway."
1987 		 *
1988 		 * If it is a "remote" interface, it is also a "gateway" to
1989 		 * the kernel if is not a alias.
1990 		 */
1991 		if (RT->rt_ifp == NULL || (RT->rt_ifp->int_state & IS_REMOTE)) {
1992 
1993 			ags |= (AGS_GATEWAY | AGS_SUPPRESS);
1994 
1995 			/*
1996 			 * Do not aggregate IS_PASSIVE routes.
1997 			 */
1998 			if (!(RT->rt_ifp->int_state & IS_PASSIVE))
1999 				ags |= AGS_AGGREGATE;
2000 		}
2001 	}
2002 
2003 	metric = RT->rt_metric;
2004 	if (metric == HOPCNT_INFINITY) {
2005 		/* If the route is dead, try hard to aggregate. */
2006 		pref = HOPCNT_INFINITY;
2007 		ags |= (AGS_FINE_GATE | AGS_SUPPRESS);
2008 		ags &= ~(AGS_IF | AGS_CORS_GATE);
2009 	}
2010 
2011 	/*
2012 	 * dump all routes that have the same metric as rt_spares[0]
2013 	 * into the kern_table, to be added to the kernel.
2014 	 */
2015 	for (i = 0; i < RT->rt_num_spares; i++) {
2016 		rts = &RT->rt_spares[i];
2017 
2018 		/* Do not install external routes */
2019 		if (rts->rts_flags & RTS_EXTERNAL)
2020 			continue;
2021 
2022 		if (rts->rts_metric == metric) {
2023 			ag_check(RT->rt_dst, RT->rt_mask,
2024 			    rts->rts_router, rts->rts_ifp, rts->rts_gate,
2025 			    metric, pref, 0, 0,
2026 			    (rts->rts_origin & RO_FILE) ? (ags|AGS_FILE) : ags,
2027 			    kern_out);
2028 		}
2029 	}
2030 	return (0);
2031 #undef RT
2032 }
2033 
2034 
2035 /* Update the kernel table to match the daemon table. */
2036 static void
2037 fix_kern(void)
2038 {
2039 	int i;
2040 	struct khash *k, *pk, *knext;
2041 
2042 
2043 	need_kern = age_timer;
2044 
2045 	/* Walk daemon table, updating the copy of the kernel table. */
2046 	(void) rn_walktree(rhead, walk_kern, NULL);
2047 	ag_flush(0, 0, kern_out);
2048 
2049 	for (i = 0; i < KHASH_SIZE; i++) {
2050 		pk = NULL;
2051 		for (k = khash_bins[i]; k != NULL;  k = knext) {
2052 			knext = k->k_next;
2053 
2054 			/* Do not touch local interface routes */
2055 			if ((k->k_state & KS_DEPRE_IF) ||
2056 			    (k->k_state & (KS_IF|KS_PASSIVE)) == KS_IF) {
2057 				pk = k;
2058 				continue;
2059 			}
2060 
2061 			/* Do not touch static routes */
2062 			if (k->k_state & KS_STATIC) {
2063 				kern_check_static(k, 0);
2064 				pk = k;
2065 				continue;
2066 			}
2067 
2068 			/* check hold on routes deleted by the operator */
2069 			if (k->k_keep > now.tv_sec) {
2070 				/* ensure we check when the hold is over */
2071 				LIM_SEC(need_kern, k->k_keep);
2072 				pk = k;
2073 				continue;
2074 			}
2075 
2076 			if ((k->k_state & KS_DELETE) &&
2077 			    !(k->k_state & KS_DYNAMIC)) {
2078 				if ((k->k_dst == RIP_DEFAULT) &&
2079 				    (k->k_ifp != NULL) &&
2080 				    (kern_alternate(RIP_DEFAULT,
2081 				    k->k_mask, k->k_gate, k->k_ifp,
2082 				    NULL) == NULL))
2083 					rdisc_restore(k->k_ifp);
2084 				kern_ioctl(k, RTM_DELETE, 0);
2085 				if (pk != NULL)
2086 					pk->k_next = knext;
2087 				else
2088 					khash_bins[i] = knext;
2089 				free(k);
2090 				continue;
2091 			}
2092 
2093 			if (k->k_state & KS_DEL_ADD)
2094 				kern_ioctl(k, RTM_DELETE, 0);
2095 
2096 			if (k->k_state & KS_ADD) {
2097 				if ((k->k_dst == RIP_DEFAULT) &&
2098 				    (k->k_ifp != NULL))
2099 					rdisc_suppress(k->k_ifp);
2100 				kern_ioctl(k, RTM_ADD,
2101 				    ((0 != (k->k_state & (KS_GATEWAY |
2102 				    KS_DYNAMIC))) ? RTF_GATEWAY : 0));
2103 			} else if (k->k_state & KS_CHANGE) {
2104 				/*
2105 				 * Should be using RTM_CHANGE here, but
2106 				 * since RTM_CHANGE is currently
2107 				 * not multipath-aware, and assumes
2108 				 * that RTF_GATEWAY implies the gateway
2109 				 * of the route for dst has to be
2110 				 * changed, we play safe, and do a del + add.
2111 				 */
2112 				kern_ioctl(k,  RTM_DELETE, 0);
2113 				kern_ioctl(k, RTM_ADD,
2114 				    ((0 != (k->k_state & (KS_GATEWAY |
2115 				    KS_DYNAMIC))) ? RTF_GATEWAY : 0));
2116 			}
2117 			k->k_state &= ~(KS_ADD|KS_CHANGE|KS_DEL_ADD);
2118 
2119 			/*
2120 			 * Mark this route to be deleted in the next cycle.
2121 			 * This deletes routes that disappear from the
2122 			 * daemon table, since the normal aging code
2123 			 * will clear the bit for routes that have not
2124 			 * disappeared from the daemon table.
2125 			 */
2126 			k->k_state |= KS_DELETE;
2127 			pk = k;
2128 		}
2129 	}
2130 }
2131 
2132 
2133 /* Delete a static route in the image of the kernel table. */
2134 void
2135 del_static(in_addr_t dst, in_addr_t mask, in_addr_t gate,
2136     struct interface *ifp, int gone)
2137 {
2138 	struct khash *k;
2139 	struct rt_entry *rt;
2140 
2141 	/*
2142 	 * Just mark it in the table to be deleted next time the kernel
2143 	 * table is updated.
2144 	 * If it has already been deleted, mark it as such, and set its
2145 	 * keep-timer so that it will not be deleted again for a while.
2146 	 * This lets the operator delete a route added by the daemon
2147 	 * and add a replacement.
2148 	 */
2149 	k = kern_find(dst, mask, gate, ifp, NULL);
2150 	if (k != NULL && (gate == 0 || k->k_gate == gate)) {
2151 		k->k_state &= ~(KS_STATIC | KS_DYNAMIC | KS_CHECK);
2152 		k->k_state |= KS_DELETE;
2153 		if (gone) {
2154 			k->k_state |= KS_DELETED;
2155 			k->k_keep = now.tv_sec + K_KEEP_LIM;
2156 		}
2157 	}
2158 
2159 	rt = rtget(dst, mask);
2160 	if (rt != NULL && (rt->rt_state & RS_STATIC))
2161 		rtbad(rt, NULL);
2162 }
2163 
2164 
2165 /*
2166  * Delete all routes generated from ICMP Redirects that use a given gateway,
2167  * as well as old redirected routes.
2168  */
2169 void
2170 del_redirects(in_addr_t bad_gate, time_t old)
2171 {
2172 	int i;
2173 	struct khash *k;
2174 	boolean_t dosupply = should_supply(NULL);
2175 
2176 	for (i = 0; i < KHASH_SIZE; i++) {
2177 		for (k = khash_bins[i]; k != NULL; k = k->k_next) {
2178 			if (!(k->k_state & KS_DYNAMIC) ||
2179 			    (k->k_state & (KS_STATIC|KS_IF|KS_DEPRE_IF)))
2180 				continue;
2181 
2182 			if (k->k_gate != bad_gate && k->k_redirect_time > old &&
2183 			    !dosupply)
2184 				continue;
2185 
2186 			k->k_state |= KS_DELETE;
2187 			k->k_state &= ~KS_DYNAMIC;
2188 			need_kern.tv_sec = now.tv_sec;
2189 			trace_act("mark redirected %s --> %s for deletion",
2190 			    addrname(k->k_dst, k->k_mask, 0),
2191 			    naddr_ntoa(k->k_gate));
2192 		}
2193 	}
2194 }
2195 
2196 /* Start the daemon tables. */
2197 void
2198 rtinit(void)
2199 {
2200 	int i;
2201 	struct ag_info *ag;
2202 
2203 	/* Initialize the radix trees */
2204 	rn_init();
2205 	(void) rn_inithead((void**)&rhead, 32);
2206 
2207 	/* mark all of the slots in the table free */
2208 	ag_avail = ag_slots;
2209 	for (ag = ag_slots, i = 1; i < NUM_AG_SLOTS; i++) {
2210 		ag->ag_fine = ag+1;
2211 		ag++;
2212 	}
2213 }
2214 
2215 
2216 static struct sockaddr_in dst_sock = {AF_INET};
2217 static struct sockaddr_in mask_sock = {AF_INET};
2218 
2219 
2220 static void
2221 set_need_flash(void)
2222 {
2223 	if (!need_flash) {
2224 		need_flash = _B_TRUE;
2225 		/*
2226 		 * Do not send the flash update immediately.  Wait a little
2227 		 * while to hear from other routers.
2228 		 */
2229 		no_flash.tv_sec = now.tv_sec + MIN_WAITTIME;
2230 	}
2231 }
2232 
2233 
2234 /* Get a particular routing table entry */
2235 struct rt_entry *
2236 rtget(in_addr_t dst, in_addr_t mask)
2237 {
2238 	struct rt_entry *rt;
2239 
2240 	dst_sock.sin_addr.s_addr = dst;
2241 	mask_sock.sin_addr.s_addr = htonl(mask);
2242 	rt = (struct rt_entry *)rhead->rnh_lookup(&dst_sock, &mask_sock, rhead);
2243 	if (rt == NULL || rt->rt_dst != dst || rt->rt_mask != mask)
2244 		return (NULL);
2245 
2246 	return (rt);
2247 }
2248 
2249 
2250 /* Find a route to dst as the kernel would. */
2251 struct rt_entry *
2252 rtfind(in_addr_t dst)
2253 {
2254 	dst_sock.sin_addr.s_addr = dst;
2255 	return ((struct rt_entry *)rhead->rnh_matchaddr(&dst_sock, rhead));
2256 }
2257 
2258 
2259 /* add a route to the table */
2260 void
2261 rtadd(in_addr_t	dst,
2262     in_addr_t	mask,
2263     uint16_t	state,			/* rt_state for the entry */
2264     struct	rt_spare *new)
2265 {
2266 	struct rt_entry *rt;
2267 	in_addr_t smask;
2268 	int i;
2269 	struct rt_spare *rts;
2270 
2271 	/* This is the only function that increments total_routes. */
2272 	if (total_routes == MAX_ROUTES) {
2273 		msglog("have maximum (%d) routes", total_routes);
2274 		return;
2275 	}
2276 
2277 	rt = rtmalloc(sizeof (*rt), "rtadd");
2278 	(void) memset(rt, 0, sizeof (*rt));
2279 	rt->rt_spares = rtmalloc(SPARE_INC  * sizeof (struct rt_spare),
2280 	    "rtadd");
2281 	rt->rt_num_spares = SPARE_INC;
2282 	(void) memset(rt->rt_spares, 0, SPARE_INC  * sizeof (struct rt_spare));
2283 	for (rts = rt->rt_spares, i = rt->rt_num_spares; i != 0; i--, rts++)
2284 		rts->rts_metric = HOPCNT_INFINITY;
2285 
2286 	rt->rt_nodes->rn_key = (uint8_t *)&rt->rt_dst_sock;
2287 	rt->rt_dst = dst;
2288 	rt->rt_dst_sock.sin_family = AF_INET;
2289 	if (mask != HOST_MASK) {
2290 		smask = std_mask(dst);
2291 		if ((smask & ~mask) == 0 && mask > smask)
2292 			state |= RS_SUBNET;
2293 	}
2294 	mask_sock.sin_addr.s_addr = htonl(mask);
2295 	rt->rt_mask = mask;
2296 	rt->rt_spares[0] = *new;
2297 	rt->rt_state = state;
2298 	rt->rt_time = now.tv_sec;
2299 	rt->rt_poison_metric = HOPCNT_INFINITY;
2300 	rt->rt_seqno = update_seqno;
2301 
2302 	if (TRACEACTIONS)
2303 		trace_add_del("Add", rt);
2304 
2305 	need_kern.tv_sec = now.tv_sec;
2306 	set_need_flash();
2307 
2308 	if (NULL == rhead->rnh_addaddr(&rt->rt_dst_sock, &mask_sock, rhead,
2309 	    rt->rt_nodes)) {
2310 		msglog("rnh_addaddr() failed for %s mask=%s",
2311 		    naddr_ntoa(dst), naddr_ntoa(htonl(mask)));
2312 		free(rt);
2313 	}
2314 
2315 	total_routes++;
2316 }
2317 
2318 
2319 /* notice a changed route */
2320 void
2321 rtchange(struct rt_entry *rt,
2322     uint16_t	state,			/* new state bits */
2323     struct rt_spare *new,
2324     char	*label)
2325 {
2326 	if (rt->rt_metric != new->rts_metric) {
2327 		/*
2328 		 * Fix the kernel immediately if it seems the route
2329 		 * has gone bad, since there may be a working route that
2330 		 * aggregates this route.
2331 		 */
2332 		if (new->rts_metric == HOPCNT_INFINITY) {
2333 			need_kern.tv_sec = now.tv_sec;
2334 			if (new->rts_time >= now.tv_sec - EXPIRE_TIME)
2335 				new->rts_time = now.tv_sec - EXPIRE_TIME;
2336 		}
2337 		rt->rt_seqno = update_seqno;
2338 		set_need_flash();
2339 	}
2340 
2341 	if (rt->rt_gate != new->rts_gate) {
2342 		need_kern.tv_sec = now.tv_sec;
2343 		rt->rt_seqno = update_seqno;
2344 		set_need_flash();
2345 	}
2346 
2347 	state |= (rt->rt_state & RS_SUBNET);
2348 
2349 	/* Keep various things from deciding ageless routes are stale. */
2350 	if (!AGE_RT(state, rt->rt_spares[0].rts_origin, new->rts_ifp))
2351 		new->rts_time = now.tv_sec;
2352 
2353 	if (TRACEACTIONS)
2354 		trace_change(rt, state, new,
2355 		    label ? label : "Chg   ");
2356 
2357 	rt->rt_state = state;
2358 	/*
2359 	 * If the interface state of the new primary route is good,
2360 	 * turn off RS_BADIF flag
2361 	 */
2362 	if ((rt->rt_state & RS_BADIF) &&
2363 	    IS_IFF_UP(new->rts_ifp->int_if_flags) &&
2364 	    !(new->rts_ifp->int_state & (IS_BROKE | IS_SICK)))
2365 		rt->rt_state &= ~(RS_BADIF);
2366 
2367 	rt->rt_spares[0] = *new;
2368 }
2369 
2370 
2371 /* check for a better route among the spares */
2372 static struct rt_spare *
2373 rts_better(struct rt_entry *rt)
2374 {
2375 	struct rt_spare *rts, *rts1;
2376 	int i;
2377 
2378 	/* find the best alternative among the spares */
2379 	rts = rt->rt_spares+1;
2380 	for (i = rt->rt_num_spares, rts1 = rts+1; i > 2; i--, rts1++) {
2381 		if (BETTER_LINK(rt, rts1, rts))
2382 			rts = rts1;
2383 	}
2384 
2385 	return (rts);
2386 }
2387 
2388 
2389 /* switch to a backup route */
2390 void
2391 rtswitch(struct rt_entry *rt,
2392     struct rt_spare *rts)
2393 {
2394 	struct rt_spare swap;
2395 	char label[10];
2396 
2397 	/* Do not change permanent routes */
2398 	if (0 != (rt->rt_state & (RS_MHOME | RS_STATIC |
2399 	    RS_NET_SYN | RS_IF)))
2400 		return;
2401 
2402 	/* find the best alternative among the spares */
2403 	if (rts == NULL)
2404 		rts = rts_better(rt);
2405 
2406 	/* Do not bother if it is not worthwhile. */
2407 	if (!BETTER_LINK(rt, rts, rt->rt_spares))
2408 		return;
2409 
2410 	swap = rt->rt_spares[0];
2411 	(void) snprintf(label, sizeof (label), "Use #%d",
2412 	    (int)(rts - rt->rt_spares));
2413 	rtchange(rt, rt->rt_state & ~(RS_NET_SYN), rts, label);
2414 
2415 	if (swap.rts_metric == HOPCNT_INFINITY) {
2416 		*rts = rts_empty;
2417 	} else {
2418 		*rts = swap;
2419 	}
2420 
2421 }
2422 
2423 
2424 void
2425 rtdelete(struct rt_entry *rt)
2426 {
2427 	struct rt_entry *deleted_rt;
2428 	struct rt_spare *rts;
2429 	int i;
2430 	in_addr_t gate = rt->rt_gate; /* for debugging */
2431 
2432 	if (TRACEACTIONS)
2433 		trace_add_del("Del", rt);
2434 
2435 	for (i = 0; i < rt->rt_num_spares; i++) {
2436 		rts = &rt->rt_spares[i];
2437 		rts_delete(rt, rts);
2438 	}
2439 
2440 	dst_sock.sin_addr.s_addr = rt->rt_dst;
2441 	mask_sock.sin_addr.s_addr = htonl(rt->rt_mask);
2442 	if (rt != (deleted_rt =
2443 	    ((struct rt_entry *)rhead->rnh_deladdr(&dst_sock, &mask_sock,
2444 	    rhead)))) {
2445 		msglog("rnh_deladdr(%s) failed; found rt 0x%lx",
2446 		    rtname(rt->rt_dst, rt->rt_mask, gate), deleted_rt);
2447 		if (deleted_rt != NULL)
2448 			free(deleted_rt);
2449 	}
2450 	total_routes--;
2451 	free(rt->rt_spares);
2452 	free(rt);
2453 
2454 	if (dst_sock.sin_addr.s_addr == RIP_DEFAULT) {
2455 		/*
2456 		 * we just deleted the default route. Trigger rdisc_sort
2457 		 * so that we can recover from any rdisc information that
2458 		 * is valid
2459 		 */
2460 		rdisc_timer.tv_sec = 0;
2461 	}
2462 }
2463 
2464 void
2465 rts_delete(struct rt_entry *rt, struct rt_spare *rts)
2466 {
2467 	struct khash *k;
2468 
2469 	trace_upslot(rt, rts, &rts_empty);
2470 	k = kern_find(rt->rt_dst, rt->rt_mask,
2471 	    rts->rts_gate, rts->rts_ifp, NULL);
2472 	if (k != NULL &&
2473 	    !(k->k_state & KS_DEPRE_IF) &&
2474 	    ((k->k_state & (KS_IF|KS_PASSIVE)) != KS_IF)) {
2475 		k->k_state |= KS_DELETE;
2476 		need_kern.tv_sec = now.tv_sec;
2477 	}
2478 
2479 	*rts = rts_empty;
2480 }
2481 
2482 /*
2483  * Get rid of a bad route, and try to switch to a replacement.
2484  * If the route has gone bad because of a bad interface,
2485  * the information about the dead interface is available in badifp
2486  * for the purpose of sanity checks, if_flags checks etc.
2487  */
2488 static void
2489 rtbad(struct rt_entry *rt, struct interface *badifp)
2490 {
2491 	struct rt_spare new;
2492 	uint16_t rt_state;
2493 
2494 
2495 	if (badifp == NULL || (rt->rt_spares[0].rts_ifp == badifp)) {
2496 		/* Poison the route */
2497 		new = rt->rt_spares[0];
2498 		new.rts_metric = HOPCNT_INFINITY;
2499 		rt_state = rt->rt_state & ~(RS_IF | RS_LOCAL | RS_STATIC);
2500 	}
2501 
2502 	if (badifp != NULL) {
2503 		/*
2504 		 * Dont mark the rtentry bad unless the ifp for the primary
2505 		 * route is the bad ifp
2506 		 */
2507 		if (rt->rt_spares[0].rts_ifp != badifp)
2508 			return;
2509 		/*
2510 		 * badifp has just gone bad. We want to keep this
2511 		 * rt_entry around so that we tell our rip-neighbors
2512 		 * about the bad route, but we can't do anything
2513 		 * to the kernel itself, so mark it as RS_BADIF
2514 		 */
2515 		trace_misc("rtbad:Setting RS_BADIF (%s)", badifp->int_name);
2516 		rt_state |= RS_BADIF;
2517 		new.rts_ifp = &dummy_ifp;
2518 	}
2519 	rtchange(rt, rt_state, &new, 0);
2520 	rtswitch(rt, 0);
2521 }
2522 
2523 
2524 /*
2525  * Junk a RS_NET_SYN or RS_LOCAL route,
2526  *	unless it is needed by another interface.
2527  */
2528 void
2529 rtbad_sub(struct rt_entry *rt, struct interface *badifp)
2530 {
2531 	struct interface *ifp, *ifp1;
2532 	struct intnet *intnetp;
2533 	uint_t state;
2534 
2535 
2536 	ifp1 = NULL;
2537 	state = 0;
2538 
2539 	if (rt->rt_state & RS_LOCAL) {
2540 		/*
2541 		 * Is this the route through loopback for the interface?
2542 		 * If so, see if it is used by any other interfaces, such
2543 		 * as a point-to-point interface with the same local address.
2544 		 */
2545 		for (ifp = ifnet; ifp != NULL; ifp = ifp->int_next) {
2546 			/* Retain it if another interface needs it. */
2547 			if (ifp->int_addr == rt->rt_ifp->int_addr) {
2548 				state |= RS_LOCAL;
2549 				ifp1 = ifp;
2550 				break;
2551 			}
2552 		}
2553 
2554 	}
2555 
2556 	if (!(state & RS_LOCAL)) {
2557 		/*
2558 		 * Retain RIPv1 logical network route if there is another
2559 		 * interface that justifies it.
2560 		 */
2561 		if (rt->rt_state & RS_NET_SYN) {
2562 			for (ifp = ifnet; ifp != NULL; ifp = ifp->int_next) {
2563 				if ((ifp->int_state & IS_NEED_NET_SYN) &&
2564 				    rt->rt_mask == ifp->int_std_mask &&
2565 				    rt->rt_dst == ifp->int_std_addr) {
2566 					state |= RS_NET_SYN;
2567 					ifp1 = ifp;
2568 					break;
2569 				}
2570 			}
2571 		}
2572 
2573 		/* or if there is an authority route that needs it. */
2574 		for (intnetp = intnets; intnetp != NULL;
2575 		    intnetp = intnetp->intnet_next) {
2576 			if (intnetp->intnet_addr == rt->rt_dst &&
2577 			    intnetp->intnet_mask == rt->rt_mask) {
2578 				state |= (RS_NET_SYN | RS_NET_INT);
2579 				break;
2580 			}
2581 		}
2582 	}
2583 
2584 	if (ifp1 != NULL || (state & RS_NET_SYN)) {
2585 		struct rt_spare new = rt->rt_spares[0];
2586 		new.rts_ifp = ifp1;
2587 		rtchange(rt, ((rt->rt_state & ~(RS_NET_SYN|RS_LOCAL)) | state),
2588 		    &new, 0);
2589 	} else {
2590 		rtbad(rt, badifp);
2591 	}
2592 }
2593 
2594 /*
2595  * Called while walking the table looking for sick interfaces
2596  * or after a time change.
2597  */
2598 int
2599 walk_bad(struct radix_node *rn,
2600     void *argp)
2601 {
2602 #define	RT ((struct rt_entry *)rn)
2603 	struct rt_spare *rts;
2604 	int i, j = -1;
2605 
2606 	/* fix any spare routes through the interface */
2607 	for (i = 1; i < RT->rt_num_spares; i++) {
2608 		rts = &((struct rt_entry *)rn)->rt_spares[i];
2609 
2610 		if (rts->rts_metric < HOPCNT_INFINITY &&
2611 		    (rts->rts_ifp == NULL ||
2612 		    (rts->rts_ifp->int_state & IS_BROKE)))
2613 			rts_delete(RT, rts);
2614 		else {
2615 			if (rts->rts_origin != RO_NONE)
2616 				j = i;
2617 		}
2618 	}
2619 
2620 	/*
2621 	 * Deal with the main route
2622 	 * finished if it has been handled before or if its interface is ok
2623 	 */
2624 	if (RT->rt_ifp == NULL || !(RT->rt_ifp->int_state & IS_BROKE))
2625 		return (0);
2626 
2627 	/* Bad routes for other than interfaces are easy. */
2628 	if (!(RT->rt_state & (RS_IF | RS_NET_SYN | RS_LOCAL))) {
2629 		if (j > 0) {
2630 			RT->rt_spares[0].rts_metric = HOPCNT_INFINITY;
2631 			rtswitch(RT, NULL);
2632 		} else {
2633 			rtbad(RT, (struct interface *)argp);
2634 		}
2635 		return (0);
2636 	}
2637 
2638 	rtbad_sub(RT, (struct interface *)argp);
2639 	return (0);
2640 #undef RT
2641 }
2642 
2643 /*
2644  * Called while walking the table to replace a duplicate interface
2645  * with a backup.
2646  */
2647 int
2648 walk_rewire(struct radix_node *rn, void *argp)
2649 {
2650 	struct rt_entry *RT = (struct rt_entry *)rn;
2651 	struct rewire_data *wire = (struct rewire_data *)argp;
2652 	struct rt_spare *rts;
2653 	int i;
2654 
2655 	/* fix any spare routes through the interface */
2656 	rts = RT->rt_spares;
2657 	for (i = RT->rt_num_spares; i > 0; i--, rts++) {
2658 		if (rts->rts_ifp == wire->if_old) {
2659 			rts->rts_ifp = wire->if_new;
2660 			if ((RT->rt_dst == RIP_DEFAULT) &&
2661 			    (wire->if_old->int_state & IS_SUPPRESS_RDISC))
2662 				rdisc_suppress(rts->rts_ifp);
2663 			if ((rts->rts_metric += wire->metric_delta) >
2664 			    HOPCNT_INFINITY)
2665 				rts->rts_metric = HOPCNT_INFINITY;
2666 
2667 			/*
2668 			 * If the main route is getting a worse metric,
2669 			 * then it may be time to switch to a backup.
2670 			 */
2671 			if (i == RT->rt_num_spares && wire->metric_delta > 0) {
2672 				rtswitch(RT, NULL);
2673 			}
2674 		}
2675 	}
2676 
2677 	return (0);
2678 }
2679 
2680 /* Check the age of an individual route. */
2681 static int
2682 walk_age(struct radix_node *rn, void *argp)
2683 {
2684 #define	RT ((struct rt_entry *)rn)
2685 	struct interface *ifp;
2686 	struct rt_spare *rts;
2687 	int i;
2688 	in_addr_t age_bad_gate = *(in_addr_t *)argp;
2689 
2690 
2691 	/*
2692 	 * age all of the spare routes, including the primary route
2693 	 * currently in use
2694 	 */
2695 	rts = RT->rt_spares;
2696 	for (i = RT->rt_num_spares; i != 0; i--, rts++) {
2697 
2698 		ifp = rts->rts_ifp;
2699 		if (i == RT->rt_num_spares) {
2700 			if (!AGE_RT(RT->rt_state, rts->rts_origin, ifp)) {
2701 				/*
2702 				 * Keep various things from deciding ageless
2703 				 * routes are stale
2704 				 */
2705 				rts->rts_time = now.tv_sec;
2706 				continue;
2707 			}
2708 
2709 			/* forget RIP routes after RIP has been turned off. */
2710 			if (rip_sock < 0) {
2711 				rts->rts_time = now_stale + 1;
2712 			}
2713 		}
2714 
2715 		/* age failing routes */
2716 		if (age_bad_gate == rts->rts_gate &&
2717 		    rts->rts_time >= now_stale) {
2718 			rts->rts_time -= SUPPLY_INTERVAL;
2719 		}
2720 
2721 		/* trash the spare routes when they go bad */
2722 		if (rts->rts_origin == RO_RIP &&
2723 		    ((rip_sock < 0) ||
2724 		    (rts->rts_metric < HOPCNT_INFINITY &&
2725 		    now_garbage > rts->rts_time)) &&
2726 		    i != RT->rt_num_spares) {
2727 			rts_delete(RT, rts);
2728 		}
2729 	}
2730 
2731 
2732 	/* finished if the active route is still fresh */
2733 	if (now_stale <= RT->rt_time)
2734 		return (0);
2735 
2736 	/* try to switch to an alternative */
2737 	rtswitch(RT, NULL);
2738 
2739 	/* Delete a dead route after it has been publically mourned. */
2740 	if (now_garbage > RT->rt_time) {
2741 		rtdelete(RT);
2742 		return (0);
2743 	}
2744 
2745 	/* Start poisoning a bad route before deleting it. */
2746 	if (now.tv_sec - RT->rt_time > EXPIRE_TIME) {
2747 		struct rt_spare new = RT->rt_spares[0];
2748 
2749 		new.rts_metric = HOPCNT_INFINITY;
2750 		rtchange(RT, RT->rt_state, &new, 0);
2751 	}
2752 	return (0);
2753 }
2754 
2755 
2756 /* Watch for dead routes and interfaces. */
2757 void
2758 age(in_addr_t bad_gate)
2759 {
2760 	struct interface *ifp;
2761 	int need_query = 0;
2762 
2763 	/*
2764 	 * If not listening to RIP, there is no need to age the routes in
2765 	 * the table.
2766 	 */
2767 	age_timer.tv_sec = (now.tv_sec
2768 	    + ((rip_sock < 0) ? NEVER : SUPPLY_INTERVAL));
2769 
2770 	/*
2771 	 * Check for dead IS_REMOTE interfaces by timing their
2772 	 * transmissions.
2773 	 */
2774 	for (ifp = ifnet; ifp; ifp = ifp->int_next) {
2775 		if (!(ifp->int_state & IS_REMOTE))
2776 			continue;
2777 
2778 		/* ignore unreachable remote interfaces */
2779 		if (!check_remote(ifp))
2780 			continue;
2781 
2782 		/* Restore remote interface that has become reachable */
2783 		if (ifp->int_state & IS_BROKE)
2784 			if_ok(ifp, "remote ", _B_FALSE);
2785 
2786 		if (ifp->int_act_time != NEVER &&
2787 		    now.tv_sec - ifp->int_act_time > EXPIRE_TIME) {
2788 			writelog(LOG_NOTICE,
2789 			    "remote interface %s to %s timed out after"
2790 			    " %ld:%ld",
2791 			    ifp->int_name,
2792 			    naddr_ntoa(ifp->int_dstaddr),
2793 			    (now.tv_sec - ifp->int_act_time)/60,
2794 			    (now.tv_sec - ifp->int_act_time)%60);
2795 			if_sick(ifp, _B_FALSE);
2796 		}
2797 
2798 		/*
2799 		 * If we have not heard from the other router
2800 		 * recently, ask it.
2801 		 */
2802 		if (now.tv_sec >= ifp->int_query_time) {
2803 			ifp->int_query_time = NEVER;
2804 			need_query = 1;
2805 		}
2806 	}
2807 
2808 	/* Age routes. */
2809 	(void) rn_walktree(rhead, walk_age, &bad_gate);
2810 
2811 	/*
2812 	 * delete old redirected routes to keep the kernel table small
2813 	 * and prevent blackholes
2814 	 */
2815 	del_redirects(bad_gate, now.tv_sec-STALE_TIME);
2816 
2817 	/* Update the kernel routing table. */
2818 	fix_kern();
2819 
2820 	/* poke reticent remote gateways */
2821 	if (need_query)
2822 		rip_query();
2823 }
2824 
2825 void
2826 kern_dump(void)
2827 {
2828 	int i;
2829 	struct khash *k;
2830 
2831 	for (i = 0; i < KHASH_SIZE; i++) {
2832 		for (k = khash_bins[i]; k != NULL; k = k->k_next)
2833 			trace_khash(k);
2834 	}
2835 }
2836 
2837 
2838 static struct interface *
2839 gwkludge_iflookup(in_addr_t dstaddr, in_addr_t addr, in_addr_t mask)
2840 {
2841 	uint32_t int_state;
2842 	struct interface *ifp;
2843 
2844 	for (ifp = ifnet; ifp != NULL; ifp = ifp->int_next) {
2845 		int_state = ifp->int_state;
2846 
2847 		if (!(int_state & IS_REMOTE))
2848 			continue;
2849 
2850 		if (ifp->int_dstaddr == dstaddr && ifp->int_addr == addr &&
2851 		    ifp->int_mask == mask)
2852 			return (ifp);
2853 	}
2854 	return (NULL);
2855 }
2856 
2857 /*
2858  * Lookup logical interface structure given the gateway address.
2859  * Returns null if no interfaces match the given name.
2860  */
2861 static struct interface *
2862 lifp_iflookup(in_addr_t addr, const char *name)
2863 {
2864 	struct physical_interface *phyi;
2865 	struct interface *ifp;
2866 	struct interface *best = NULL;
2867 
2868 	if ((phyi = phys_byname(name)) == NULL)
2869 		return (NULL);
2870 
2871 	for (ifp = phyi->phyi_interface; ifp != NULL;
2872 	    ifp = ifp->int_ilist.hl_next) {
2873 
2874 #ifdef DEBUG_KERNEL_ROUTE_READ
2875 		(void) fprintf(stderr, " checking interface"
2876 		    " %-4s %-4s %-15s-->%-15s \n",
2877 		    phyi->phyi_name, ifp->int_name,
2878 		    naddr_ntoa(ifp->int_addr),
2879 		    addrname(((ifp->int_if_flags & IFF_POINTOPOINT) ?
2880 		    ifp->int_dstaddr : htonl(ifp->int_net)),
2881 		    ifp->int_mask, 1));
2882 #endif
2883 		/* Exact match found */
2884 		if (addr_on_ifp(addr, ifp, &best))
2885 			return (ifp);
2886 	}
2887 	/* No exact match found but return any best match found */
2888 	return (best);
2889 }
2890