if.c revision 1.14 1 /* $NetBSD: if.c,v 1.14 1998/06/02 18:02:55 thorpej Exp $ */
2
3 /*
4 * Copyright (c) 1983, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36 #if !defined(lint) && !defined(sgi) && !defined(__NetBSD__)
37 static char sccsid[] = "@(#)if.c 8.1 (Berkeley) 6/5/93";
38 #elif defined(__NetBSD__)
39 #include <sys/cdefs.h>
40 __RCSID("$NetBSD: if.c,v 1.14 1998/06/02 18:02:55 thorpej Exp $");
41 #endif
42
43 #include "defs.h"
44 #include "pathnames.h"
45
46 struct interface *ifnet; /* all interfaces */
47
48 /* hash table for all interfaces, big enough to tolerate ridiculous
49 * numbers of IP aliases. Crazy numbers of aliases such as 7000
50 * still will not do well, but not just in looking up interfaces
51 * by name or address.
52 */
53 #define AHASH_LEN 211 /* must be prime */
54 #define AHASH(a) &ahash_tbl[(a)%AHASH_LEN]
55 struct interface *ahash_tbl[AHASH_LEN];
56
57 #define BHASH_LEN 211 /* must be prime */
58 #define BHASH(a) &bhash_tbl[(a)%BHASH_LEN]
59 struct interface *bhash_tbl[BHASH_LEN];
60
61 struct interface *remote_if; /* remote interfaces */
62
63 /* hash for physical interface names.
64 * Assume there are never more 100 or 200 real interfaces, and that
65 * aliases are put on the end of the hash chains.
66 */
67 #define NHASH_LEN 97
68 struct interface *nhash_tbl[NHASH_LEN];
69
70 int tot_interfaces; /* # of remote and local interfaces */
71 int rip_interfaces; /* # of interfaces doing RIP */
72 int foundloopback; /* valid flag for loopaddr */
73 naddr loopaddr; /* our address on loopback */
74 struct rt_spare loop_rts;
75
76 struct timeval ifinit_timer;
77 static struct timeval last_ifinit;
78 #define IF_RESCAN_DELAY() (last_ifinit.tv_sec == now.tv_sec \
79 && last_ifinit.tv_usec == now.tv_usec \
80 && timercmp(&ifinit_timer, &now, >))
81
82 int have_ripv1_out; /* have a RIPv1 interface */
83 int have_ripv1_in;
84
85
86 static struct interface**
87 nhash(char *p)
88 {
89 u_int i;
90
91 for (i = 0; *p != '\0'; p++) {
92 i = ((i<<1) & 0x7fffffff) | ((i>>31) & 1);
93 i ^= *p;
94 }
95 return &nhash_tbl[i % NHASH_LEN];
96 }
97
98
99 /* Link a new interface into the lists and hash tables.
100 */
101 void
102 if_link(struct interface *ifp)
103 {
104 struct interface **hifp;
105
106 ifp->int_prev = &ifnet;
107 ifp->int_next = ifnet;
108 if (ifnet != 0)
109 ifnet->int_prev = &ifp->int_next;
110 ifnet = ifp;
111
112 hifp = AHASH(ifp->int_addr);
113 ifp->int_ahash_prev = hifp;
114 if ((ifp->int_ahash = *hifp) != 0)
115 (*hifp)->int_ahash_prev = &ifp->int_ahash;
116 *hifp = ifp;
117
118 if (ifp->int_if_flags & IFF_BROADCAST) {
119 hifp = BHASH(ifp->int_brdaddr);
120 ifp->int_bhash_prev = hifp;
121 if ((ifp->int_bhash = *hifp) != 0)
122 (*hifp)->int_bhash_prev = &ifp->int_bhash;
123 *hifp = ifp;
124 }
125
126 if (ifp->int_state & IS_REMOTE) {
127 ifp->int_rlink_prev = &remote_if;
128 ifp->int_rlink = remote_if;
129 if (remote_if != 0)
130 remote_if->int_rlink_prev = &ifp->int_rlink;
131 remote_if = ifp;
132 }
133
134 hifp = nhash(ifp->int_name);
135 if (ifp->int_state & IS_ALIAS) {
136 /* put aliases on the end of the hash chain */
137 while (*hifp != 0)
138 hifp = &(*hifp)->int_nhash;
139 }
140 ifp->int_nhash_prev = hifp;
141 if ((ifp->int_nhash = *hifp) != 0)
142 (*hifp)->int_nhash_prev = &ifp->int_nhash;
143 *hifp = ifp;
144 }
145
146
147 /* Find the interface with an address
148 */
149 struct interface *
150 ifwithaddr(naddr addr,
151 int bcast, /* notice IFF_BROADCAST address */
152 int remote) /* include IS_REMOTE interfaces */
153 {
154 struct interface *ifp, *possible = 0;
155
156 remote = (remote == 0) ? IS_REMOTE : 0;
157
158 for (ifp = *AHASH(addr); ifp; ifp = ifp->int_ahash) {
159 if (ifp->int_addr != addr)
160 continue;
161 if ((ifp->int_state & remote) != 0)
162 continue;
163 if ((ifp->int_state & (IS_BROKE | IS_PASSIVE)) == 0)
164 return ifp;
165 possible = ifp;
166 }
167
168 if (possible || !bcast)
169 return possible;
170
171 for (ifp = *BHASH(addr); ifp; ifp = ifp->int_bhash) {
172 if (ifp->int_brdaddr != addr)
173 continue;
174 if ((ifp->int_state & remote) != 0)
175 continue;
176 if ((ifp->int_state & (IS_BROKE | IS_PASSIVE)) == 0)
177 return ifp;
178 possible = ifp;
179 }
180
181 return possible;
182 }
183
184
185 /* find the interface with a name
186 */
187 struct interface *
188 ifwithname(char *name, /* "ec0" or whatever */
189 naddr addr) /* 0 or network address */
190 {
191 struct interface *ifp;
192
193 for (;;) {
194 for (ifp = *nhash(name); ifp != 0; ifp = ifp->int_nhash) {
195 /* If the network address is not specified,
196 * ignore any alias interfaces. Otherwise, look
197 * for the interface with the target name and address.
198 */
199 if (!strcmp(ifp->int_name, name)
200 && ((addr == 0 && !(ifp->int_state & IS_ALIAS))
201 || (ifp->int_addr == addr)))
202 return ifp;
203 }
204
205 /* If there is no known interface, maybe there is a
206 * new interface. So just once look for new interfaces.
207 */
208 if (IF_RESCAN_DELAY())
209 return 0;
210 ifinit();
211 }
212 }
213
214
215 struct interface *
216 ifwithindex(u_short index,
217 int rescan_ok)
218 {
219 struct interface *ifp;
220
221 for (;;) {
222 for (ifp = ifnet; 0 != ifp; ifp = ifp->int_next) {
223 if (ifp->int_index == index)
224 return ifp;
225 }
226
227 /* If there is no known interface, maybe there is a
228 * new interface. So just once look for new interfaces.
229 */
230 if (!rescan_ok
231 || IF_RESCAN_DELAY())
232 return 0;
233 ifinit();
234 }
235 }
236
237
238 /* Find an interface from which the specified address
239 * should have come from. Used for figuring out which
240 * interface a packet came in on.
241 */
242 struct interface *
243 iflookup(naddr addr)
244 {
245 struct interface *ifp, *maybe;
246
247 maybe = 0;
248 for (;;) {
249 for (ifp = ifnet; ifp; ifp = ifp->int_next) {
250 if (ifp->int_if_flags & IFF_POINTOPOINT) {
251 /* finished with a match */
252 if (ifp->int_dstaddr == addr)
253 return ifp;
254
255 } else {
256 /* finished with an exact match */
257 if (ifp->int_addr == addr)
258 return ifp;
259
260 /* Look for the longest approximate match.
261 */
262 if (on_net(addr, ifp->int_net, ifp->int_mask)
263 && (maybe == 0
264 || ifp->int_mask > maybe->int_mask))
265 maybe = ifp;
266 }
267 }
268
269 if (maybe != 0
270 || IF_RESCAN_DELAY())
271 return maybe;
272
273 /* If there is no known interface, maybe there is a
274 * new interface. So just once look for new interfaces.
275 */
276 ifinit();
277 }
278 }
279
280
281 /* Return the classical netmask for an IP address.
282 */
283 naddr /* host byte order */
284 std_mask(naddr addr) /* network byte order */
285 {
286 NTOHL(addr); /* was a host, not a network */
287
288 if (addr == 0) /* default route has mask 0 */
289 return 0;
290 if (IN_CLASSA(addr))
291 return IN_CLASSA_NET;
292 if (IN_CLASSB(addr))
293 return IN_CLASSB_NET;
294 return IN_CLASSC_NET;
295 }
296
297
298 /* Find the netmask that would be inferred by RIPv1 listeners
299 * on the given interface for a given network.
300 * If no interface is specified, look for the best fitting interface.
301 */
302 naddr
303 ripv1_mask_net(naddr addr, /* in network byte order */
304 struct interface *ifp) /* as seen on this interface */
305 {
306 struct r1net *r1p;
307 naddr mask = 0;
308
309 if (addr == 0) /* default always has 0 mask */
310 return mask;
311
312 if (ifp != 0 && ifp->int_ripv1_mask != HOST_MASK) {
313 /* If the target network is that of the associated interface
314 * on which it arrived, then use the netmask of the interface.
315 */
316 if (on_net(addr, ifp->int_net, ifp->int_std_mask))
317 mask = ifp->int_ripv1_mask;
318
319 } else {
320 /* Examine all interfaces, and if it the target seems
321 * to have the same network number of an interface, use the
322 * netmask of that interface. If there is more than one
323 * such interface, prefer the interface with the longest
324 * match.
325 */
326 for (ifp = ifnet; ifp != 0; ifp = ifp->int_next) {
327 if (on_net(addr, ifp->int_std_net, ifp->int_std_mask)
328 && ifp->int_ripv1_mask > mask
329 && ifp->int_ripv1_mask != HOST_MASK)
330 mask = ifp->int_ripv1_mask;
331 }
332
333 }
334
335 /* check special definitions */
336 if (mask == 0) {
337 for (r1p = r1nets; r1p != 0; r1p = r1p->r1net_next) {
338 if (on_net(addr, r1p->r1net_net, r1p->r1net_match)
339 && r1p->r1net_mask > mask)
340 r1p->r1net_mask = mask;
341 }
342
343 /* Otherwise, make the classic A/B/C guess.
344 */
345 if (mask == 0)
346 mask = std_mask(addr);
347 }
348
349 return mask;
350 }
351
352
353 naddr
354 ripv1_mask_host(naddr addr, /* in network byte order */
355 struct interface *ifp) /* as seen on this interface */
356 {
357 naddr mask = ripv1_mask_net(addr, ifp);
358
359
360 /* If the computed netmask does not mask the address,
361 * then assume it is a host address
362 */
363 if ((ntohl(addr) & ~mask) != 0)
364 mask = HOST_MASK;
365 return mask;
366 }
367
368
369 /* See if a IP address looks reasonable as a destination
370 */
371 int /* 0=bad */
372 check_dst(naddr addr)
373 {
374 NTOHL(addr);
375
376 if (IN_CLASSA(addr)) {
377 if (addr == 0)
378 return 1; /* default */
379
380 addr >>= IN_CLASSA_NSHIFT;
381 return (addr != 0 && addr != IN_LOOPBACKNET);
382 }
383
384 return (IN_CLASSB(addr) || IN_CLASSC(addr));
385 }
386
387
388 /* See a new interface duplicates an existing interface.
389 */
390 struct interface *
391 check_dup(naddr addr, /* IP address, so network byte order */
392 naddr dstaddr, /* ditto */
393 naddr mask, /* mask, so host byte order */
394 int if_flags)
395 {
396 struct interface *ifp;
397
398 for (ifp = ifnet; 0 != ifp; ifp = ifp->int_next) {
399 if (ifp->int_mask != mask)
400 continue;
401
402 if (!iff_up(ifp->int_if_flags))
403 continue;
404
405 /* The local address can only be shared with a point-to-point
406 * link.
407 */
408 if (ifp->int_addr == addr
409 && (((if_flags|ifp->int_if_flags) & IFF_POINTOPOINT) == 0))
410 return ifp;
411
412 if (on_net(ifp->int_dstaddr, ntohl(dstaddr),mask))
413 return ifp;
414 }
415 return 0;
416 }
417
418
419 /* See that a remote gateway is reachable.
420 * Note that the answer can change as real interfaces come and go.
421 */
422 int /* 0=bad */
423 check_remote(struct interface *ifp)
424 {
425 struct rt_entry *rt;
426
427 /* do not worry about other kinds */
428 if (!(ifp->int_state & IS_REMOTE))
429 return 1;
430
431 rt = rtfind(ifp->int_addr);
432 if (rt != 0
433 && rt->rt_ifp != 0
434 &&on_net(ifp->int_addr,
435 rt->rt_ifp->int_net, rt->rt_ifp->int_mask))
436 return 1;
437
438 /* the gateway cannot be reached directly from one of our
439 * interfaces
440 */
441 if (!(ifp->int_state & IS_BROKE)) {
442 msglog("unreachable gateway %s in "_PATH_GATEWAYS,
443 naddr_ntoa(ifp->int_addr));
444 if_bad(ifp);
445 }
446 return 0;
447 }
448
449
450 /* Delete an interface.
451 */
452 static void
453 ifdel(struct interface *ifp)
454 {
455 struct ip_mreq m;
456 struct interface *ifp1;
457
458
459 trace_if("Del", ifp);
460
461 ifp->int_state |= IS_BROKE;
462
463 /* unlink the interface
464 */
465 *ifp->int_prev = ifp->int_next;
466 if (ifp->int_next != 0)
467 ifp->int_next->int_prev = ifp->int_prev;
468 *ifp->int_ahash_prev = ifp->int_ahash;
469 if (ifp->int_ahash != 0)
470 ifp->int_ahash->int_ahash_prev = ifp->int_ahash_prev;
471 *ifp->int_nhash_prev = ifp->int_nhash;
472 if (ifp->int_nhash != 0)
473 ifp->int_nhash->int_nhash_prev = ifp->int_nhash_prev;
474 if (ifp->int_if_flags & IFF_BROADCAST) {
475 *ifp->int_bhash_prev = ifp->int_bhash;
476 if (ifp->int_bhash != 0)
477 ifp->int_bhash->int_bhash_prev = ifp->int_bhash_prev;
478 }
479 if (ifp->int_state & IS_REMOTE) {
480 *ifp->int_rlink_prev = ifp->int_rlink;
481 if (ifp->int_rlink != 0)
482 ifp->int_rlink->int_rlink_prev = ifp->int_rlink_prev;
483 }
484
485 if (!(ifp->int_state & IS_ALIAS)) {
486 /* delete aliases when the main interface dies
487 */
488 for (ifp1 = ifnet; 0 != ifp1; ifp1 = ifp1->int_next) {
489 if (ifp1 != ifp
490 && !strcmp(ifp->int_name, ifp1->int_name))
491 ifdel(ifp1);
492 }
493
494 if ((ifp->int_if_flags & IFF_MULTICAST)
495 #ifdef MCAST_PPP_BUG
496 && !(ifp->int_if_flags & IFF_POINTOPOINT)
497 #endif
498 && rip_sock >= 0) {
499 m.imr_multiaddr.s_addr = htonl(INADDR_RIP_GROUP);
500 m.imr_interface.s_addr = ((ifp->int_if_flags
501 & IFF_POINTOPOINT)
502 ? ifp->int_dstaddr
503 : ifp->int_addr);
504 if (setsockopt(rip_sock,IPPROTO_IP,IP_DROP_MEMBERSHIP,
505 &m, sizeof(m)) < 0
506 && errno != EADDRNOTAVAIL
507 && !TRACEACTIONS)
508 LOGERR("setsockopt(IP_DROP_MEMBERSHIP RIP)");
509 if (rip_sock_mcast == ifp)
510 rip_sock_mcast = 0;
511 }
512 if (ifp->int_rip_sock >= 0) {
513 (void)close(ifp->int_rip_sock);
514 ifp->int_rip_sock = -1;
515 fix_select();
516 }
517
518 tot_interfaces--;
519 if (!IS_RIP_OFF(ifp->int_state))
520 rip_interfaces--;
521
522 /* Zap all routes associated with this interface.
523 * Assume routes just using gateways beyond this interface
524 * will timeout naturally, and have probably already died.
525 */
526 (void)rn_walktree(rhead, walk_bad, 0);
527
528 set_rdisc_mg(ifp, 0);
529 if_bad_rdisc(ifp);
530 }
531
532 free(ifp);
533 }
534
535
536 /* Mark an interface ill.
537 */
538 void
539 if_sick(struct interface *ifp)
540 {
541 if (0 == (ifp->int_state & (IS_SICK | IS_BROKE))) {
542 ifp->int_state |= IS_SICK;
543 ifp->int_act_time = NEVER;
544 trace_if("Chg", ifp);
545
546 LIM_SEC(ifinit_timer, now.tv_sec+CHECK_BAD_INTERVAL);
547 }
548 }
549
550
551 /* Mark an interface dead.
552 */
553 void
554 if_bad(struct interface *ifp)
555 {
556 struct interface *ifp1;
557
558
559 if (ifp->int_state & IS_BROKE)
560 return;
561
562 LIM_SEC(ifinit_timer, now.tv_sec+CHECK_BAD_INTERVAL);
563
564 ifp->int_state |= (IS_BROKE | IS_SICK);
565 ifp->int_act_time = NEVER;
566 ifp->int_query_time = NEVER;
567 ifp->int_data.ts = now.tv_sec;
568
569 trace_if("Chg", ifp);
570
571 if (!(ifp->int_state & IS_ALIAS)) {
572 for (ifp1 = ifnet; 0 != ifp1; ifp1 = ifp1->int_next) {
573 if (ifp1 != ifp
574 && !strcmp(ifp->int_name, ifp1->int_name))
575 if_bad(ifp1);
576 }
577 (void)rn_walktree(rhead, walk_bad, 0);
578 if_bad_rdisc(ifp);
579 }
580 }
581
582
583 /* Mark an interface alive
584 */
585 int /* 1=it was dead */
586 if_ok(struct interface *ifp,
587 char *type)
588 {
589 struct interface *ifp1;
590
591
592 if (!(ifp->int_state & IS_BROKE)) {
593 if (ifp->int_state & IS_SICK) {
594 trace_act("%sinterface %s to %s working better",
595 type,
596 ifp->int_name, naddr_ntoa(ifp->int_dstaddr));
597 ifp->int_state &= ~IS_SICK;
598 }
599 return 0;
600 }
601
602 msglog("%sinterface %s to %s restored",
603 type, ifp->int_name, naddr_ntoa(ifp->int_dstaddr));
604 ifp->int_state &= ~(IS_BROKE | IS_SICK);
605 ifp->int_data.ts = 0;
606
607 if (!(ifp->int_state & IS_ALIAS)) {
608 for (ifp1 = ifnet; 0 != ifp1; ifp1 = ifp1->int_next) {
609 if (ifp1 != ifp
610 && !strcmp(ifp->int_name, ifp1->int_name))
611 if_ok(ifp1, type);
612 }
613 if_ok_rdisc(ifp);
614 }
615
616 if (ifp->int_state & IS_REMOTE) {
617 if (!addrouteforif(ifp))
618 return 0;
619 }
620 return 1;
621 }
622
623
624 /* disassemble routing message
625 */
626 void
627 rt_xaddrs(struct rt_addrinfo *info,
628 struct sockaddr *sa,
629 struct sockaddr *lim,
630 int addrs)
631 {
632 int i;
633 #ifdef _HAVE_SA_LEN
634 static struct sockaddr sa_zero;
635 #endif
636 #ifdef sgi
637 #define ROUNDUP(a) ((a) > 0 ? (1 + (((a) - 1) | (sizeof(__uint64_t) - 1))) \
638 : sizeof(__uint64_t))
639 #else
640 #define ROUNDUP(a) ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) \
641 : sizeof(long))
642 #endif
643
644
645 memset(info, 0, sizeof(*info));
646 info->rti_addrs = addrs;
647 for (i = 0; i < RTAX_MAX && sa < lim; i++) {
648 if ((addrs & (1 << i)) == 0)
649 continue;
650 #ifdef _HAVE_SA_LEN
651 info->rti_info[i] = (sa->sa_len != 0) ? sa : &sa_zero;
652 sa = (struct sockaddr *)((char*)(sa)
653 + ROUNDUP(sa->sa_len));
654 #else
655 info->rti_info[i] = sa;
656 sa = (struct sockaddr *)((char*)(sa)
657 + ROUNDUP(_FAKE_SA_LEN_DST(sa)));
658 #endif
659 }
660 }
661
662
663 /* Find the network interfaces which have configured themselves.
664 * This must be done regularly, if only for extra addresses
665 * that come and go on interfaces.
666 */
667 void
668 ifinit(void)
669 {
670 static char *sysctl_buf;
671 static size_t sysctl_buf_size = 0;
672 uint complaints = 0;
673 static u_int prev_complaints = 0;
674 # define COMP_NOT_INET 0x001
675 # define COMP_NOADDR 0x002
676 # define COMP_BADADDR 0x004
677 # define COMP_NODST 0x008
678 # define COMP_NOBADR 0x010
679 # define COMP_NOMASK 0x020
680 # define COMP_DUP 0x040
681 # define COMP_BAD_METRIC 0x080
682 # define COMP_NETMASK 0x100
683
684 struct interface ifs, ifs0, *ifp, *ifp1;
685 struct rt_entry *rt;
686 size_t needed;
687 int mib[6];
688 struct if_msghdr *ifm;
689 struct ifa_msghdr *ifam, *ifam_lim, *ifam2;
690 int in, ierr, out, oerr;
691 struct intnet *intnetp;
692 struct rt_addrinfo info;
693 #ifdef SIOCGIFMETRIC
694 struct ifreq ifr;
695 #endif
696
697
698 last_ifinit = now;
699 ifinit_timer.tv_sec = now.tv_sec + (supplier
700 ? CHECK_ACT_INTERVAL
701 : CHECK_QUIET_INTERVAL);
702
703 /* mark all interfaces so we can get rid of thost that disappear */
704 for (ifp = ifnet; 0 != ifp; ifp = ifp->int_next)
705 ifp->int_state &= ~(IS_CHECKED | IS_DUP);
706
707 /* Fetch the interface list, without too many system calls
708 * since we do it repeatedly.
709 */
710 mib[0] = CTL_NET;
711 mib[1] = PF_ROUTE;
712 mib[2] = 0;
713 mib[3] = AF_INET;
714 mib[4] = NET_RT_IFLIST;
715 mib[5] = 0;
716 for (;;) {
717 if ((needed = sysctl_buf_size) != 0) {
718 if (sysctl(mib, 6, sysctl_buf,&needed, 0, 0) >= 0)
719 break;
720 /* retry if the table grew */
721 if (errno != ENOMEM && errno != EFAULT)
722 BADERR(1, "ifinit: sysctl(RT_IFLIST)");
723 free(sysctl_buf);
724 needed = 0;
725 }
726 if (sysctl(mib, 6, 0, &needed, 0, 0) < 0)
727 BADERR(1,"ifinit: sysctl(RT_IFLIST) estimate");
728 sysctl_buf = rtmalloc(sysctl_buf_size = needed,
729 "ifinit sysctl");
730 }
731
732 ifam_lim = (struct ifa_msghdr *)(sysctl_buf + needed);
733 for (ifam = (struct ifa_msghdr *)sysctl_buf;
734 ifam < ifam_lim;
735 ifam = ifam2) {
736
737 ifam2 = (struct ifa_msghdr*)((char*)ifam + ifam->ifam_msglen);
738
739 if (ifam->ifam_type == RTM_IFINFO) {
740 struct sockaddr_dl *sdl;
741
742 ifm = (struct if_msghdr *)ifam;
743 /* make prototype structure for the IP aliases
744 */
745 memset(&ifs0, 0, sizeof(ifs0));
746 ifs0.int_rip_sock = -1;
747 ifs0.int_index = ifm->ifm_index;
748 ifs0.int_if_flags = ifm->ifm_flags;
749 ifs0.int_state = IS_CHECKED;
750 ifs0.int_query_time = NEVER;
751 ifs0.int_act_time = now.tv_sec;
752 ifs0.int_data.ts = now.tv_sec;
753 ifs0.int_data.ipackets = ifm->ifm_data.ifi_ipackets;
754 ifs0.int_data.ierrors = ifm->ifm_data.ifi_ierrors;
755 ifs0.int_data.opackets = ifm->ifm_data.ifi_opackets;
756 ifs0.int_data.oerrors = ifm->ifm_data.ifi_oerrors;
757 #ifdef sgi
758 ifs0.int_data.odrops = ifm->ifm_data.ifi_odrops;
759 #endif
760 sdl = (struct sockaddr_dl *)(ifm + 1);
761 sdl->sdl_data[sdl->sdl_nlen] = 0;
762 strncpy(ifs0.int_name, sdl->sdl_data,
763 MIN(sizeof(ifs0.int_name), sdl->sdl_nlen));
764 continue;
765 }
766 if (ifam->ifam_type != RTM_NEWADDR) {
767 logbad(1,"ifinit: out of sync");
768 continue;
769 }
770 rt_xaddrs(&info, (struct sockaddr *)(ifam+1),
771 (struct sockaddr *)ifam2,
772 ifam->ifam_addrs);
773
774 /* Prepare for the next address of this interface, which
775 * will be an alias.
776 * Do not output RIP or Router-Discovery packets via aliases.
777 */
778 memmove(&ifs, &ifs0, sizeof(ifs));
779 ifs0.int_state |= (IS_ALIAS | IS_NO_RIP_OUT | IS_NO_RDISC);
780
781 if (INFO_IFA(&info) == 0) {
782 if (iff_up(ifs.int_if_flags)) {
783 if (!(prev_complaints & COMP_NOADDR))
784 msglog("%s has no address",
785 ifs.int_name);
786 complaints |= COMP_NOADDR;
787 }
788 continue;
789 }
790 if (INFO_IFA(&info)->sa_family != AF_INET) {
791 if (iff_up(ifs.int_if_flags)) {
792 if (!(prev_complaints & COMP_NOT_INET))
793 trace_act("%s: not AF_INET",
794 ifs.int_name);
795 complaints |= COMP_NOT_INET;
796 }
797 continue;
798 }
799
800 ifs.int_addr = S_ADDR(INFO_IFA(&info));
801
802 if (ntohl(ifs.int_addr)>>24 == 0
803 || ntohl(ifs.int_addr)>>24 == 0xff) {
804 if (iff_up(ifs.int_if_flags)) {
805 if (!(prev_complaints & COMP_BADADDR))
806 msglog("%s has a bad address",
807 ifs.int_name);
808 complaints |= COMP_BADADDR;
809 }
810 continue;
811 }
812
813 if (ifs.int_if_flags & IFF_LOOPBACK) {
814 ifs.int_state |= IS_PASSIVE | IS_NO_RIP | IS_NO_RDISC;
815 ifs.int_dstaddr = ifs.int_addr;
816 ifs.int_mask = HOST_MASK;
817 ifs.int_ripv1_mask = HOST_MASK;
818 ifs.int_std_mask = std_mask(ifs.int_dstaddr);
819 ifs.int_net = ntohl(ifs.int_dstaddr);
820 if (!foundloopback) {
821 foundloopback = 1;
822 loopaddr = ifs.int_addr;
823 loop_rts.rts_gate = loopaddr;
824 loop_rts.rts_router = loopaddr;
825 }
826
827 } else if (ifs.int_if_flags & IFF_POINTOPOINT) {
828 if (INFO_BRD(&info) == 0
829 || INFO_BRD(&info)->sa_family != AF_INET) {
830 if (iff_up(ifs.int_if_flags)) {
831 if (!(prev_complaints & COMP_NODST))
832 msglog("%s has a bad"
833 " destination address",
834 ifs.int_name);
835 complaints |= COMP_NODST;
836 }
837 continue;
838 }
839 ifs.int_dstaddr = S_ADDR(INFO_BRD(&info));
840 if (ntohl(ifs.int_dstaddr)>>24 == 0
841 || ntohl(ifs.int_dstaddr)>>24 == 0xff) {
842 if (iff_up(ifs.int_if_flags)) {
843 if (!(prev_complaints & COMP_NODST))
844 msglog("%s has a bad"
845 " destination address",
846 ifs.int_name);
847 complaints |= COMP_NODST;
848 }
849 continue;
850 }
851 ifs.int_mask = HOST_MASK;
852 ifs.int_ripv1_mask = ntohl(S_ADDR(INFO_MASK(&info)));
853 ifs.int_std_mask = std_mask(ifs.int_dstaddr);
854 ifs.int_net = ntohl(ifs.int_dstaddr);
855
856 } else {
857 if (INFO_MASK(&info) == 0) {
858 if (iff_up(ifs.int_if_flags)) {
859 if (!(prev_complaints & COMP_NOMASK))
860 msglog("%s has no netmask",
861 ifs.int_name);
862 complaints |= COMP_NOMASK;
863 }
864 continue;
865 }
866 ifs.int_dstaddr = ifs.int_addr;
867 ifs.int_mask = ntohl(S_ADDR(INFO_MASK(&info)));
868 ifs.int_ripv1_mask = ifs.int_mask;
869 ifs.int_std_mask = std_mask(ifs.int_addr);
870 ifs.int_net = ntohl(ifs.int_addr) & ifs.int_mask;
871 if (ifs.int_mask != ifs.int_std_mask)
872 ifs.int_state |= IS_SUBNET;
873
874 if (ifs.int_if_flags & IFF_BROADCAST) {
875 if (INFO_BRD(&info) == 0) {
876 if (iff_up(ifs.int_if_flags)) {
877 if (!(prev_complaints
878 & COMP_NOBADR))
879 msglog("%s has"
880 "no broadcast address",
881 ifs.int_name);
882 complaints |= COMP_NOBADR;
883 }
884 continue;
885 }
886 ifs.int_brdaddr = S_ADDR(INFO_BRD(&info));
887 }
888 }
889 ifs.int_std_net = ifs.int_net & ifs.int_std_mask;
890 ifs.int_std_addr = htonl(ifs.int_std_net);
891
892 /* Use a minimum metric of one. Treat the interface metric
893 * (default 0) as an increment to the hop count of one.
894 *
895 * The metric obtained from the routing socket dump of
896 * interface addresses is wrong. It is not set by the
897 * SIOCSIFMETRIC ioctl.
898 */
899 #ifdef SIOCGIFMETRIC
900 strncpy(ifr.ifr_name, ifs.int_name, sizeof(ifr.ifr_name));
901 if (ioctl(rt_sock, SIOCGIFMETRIC, &ifr) < 0) {
902 DBGERR(1, "ioctl(SIOCGIFMETRIC)");
903 ifs.int_metric = 0;
904 } else {
905 ifs.int_metric = ifr.ifr_metric;
906 }
907 #else
908 ifs.int_metric = ifam->ifam_metric;
909 #endif
910 if (ifs.int_metric > HOPCNT_INFINITY) {
911 ifs.int_metric = 0;
912 if (!(prev_complaints & COMP_BAD_METRIC)
913 && iff_up(ifs.int_if_flags)) {
914 complaints |= COMP_BAD_METRIC;
915 msglog("%s has a metric of %d",
916 ifs.int_name, ifs.int_metric);
917 }
918 }
919
920 /* See if this is a familiar interface.
921 * If so, stop worrying about it if it is the same.
922 * Start it over if it now is to somewhere else, as happens
923 * frequently with PPP and SLIP.
924 */
925 ifp = ifwithname(ifs.int_name, ((ifs.int_state & IS_ALIAS)
926 ? ifs.int_addr
927 : 0));
928 if (ifp != 0) {
929 ifp->int_state |= IS_CHECKED;
930
931 if (0 != ((ifp->int_if_flags ^ ifs.int_if_flags)
932 & (IFF_BROADCAST
933 | IFF_LOOPBACK
934 | IFF_POINTOPOINT
935 | IFF_MULTICAST))
936 || 0 != ((ifp->int_state ^ ifs.int_state)
937 & IS_ALIAS)
938 || ifp->int_addr != ifs.int_addr
939 || ifp->int_brdaddr != ifs.int_brdaddr
940 || ifp->int_dstaddr != ifs.int_dstaddr
941 || ifp->int_mask != ifs.int_mask
942 || ifp->int_metric != ifs.int_metric) {
943 /* Forget old information about
944 * a changed interface.
945 */
946 trace_act("interface %s has changed",
947 ifp->int_name);
948 ifdel(ifp);
949 ifp = 0;
950 }
951 }
952
953 if (ifp != 0) {
954 /* The primary representative of an alias worries
955 * about how things are working.
956 */
957 if (ifp->int_state & IS_ALIAS)
958 continue;
959
960 /* note interfaces that have been turned off
961 */
962 if (!iff_up(ifs.int_if_flags)) {
963 if (iff_up(ifp->int_if_flags)) {
964 msglog("interface %s to %s turned off",
965 ifp->int_name,
966 naddr_ntoa(ifp->int_dstaddr));
967 if_bad(ifp);
968 ifp->int_if_flags &= ~IFF_UP;
969 } else if (now.tv_sec>(ifp->int_data.ts
970 + CHECK_BAD_INTERVAL)) {
971 trace_act("interface %s has been off"
972 " %d seconds; forget it",
973 ifp->int_name,
974 now.tv_sec-ifp->int_data.ts);
975 ifdel(ifp);
976 }
977 continue;
978 }
979 /* or that were off and are now ok */
980 if (!iff_up(ifp->int_if_flags)) {
981 ifp->int_if_flags |= IFF_UP;
982 (void)if_ok(ifp, "");
983 }
984
985 /* If it has been long enough,
986 * see if the interface is broken.
987 */
988 if (now.tv_sec < ifp->int_data.ts+CHECK_BAD_INTERVAL)
989 continue;
990
991 in = ifs.int_data.ipackets - ifp->int_data.ipackets;
992 ierr = ifs.int_data.ierrors - ifp->int_data.ierrors;
993 out = ifs.int_data.opackets - ifp->int_data.opackets;
994 oerr = ifs.int_data.oerrors - ifp->int_data.oerrors;
995 #ifdef sgi
996 /* Through at least IRIX 6.2, PPP and SLIP
997 * count packets dropped by the filters.
998 * But FDDI rings stuck non-operational count
999 * dropped packets as they wait for improvement.
1000 */
1001 if (!(ifp->int_if_flags & IFF_POINTOPOINT))
1002 oerr += (ifs.int_data.odrops
1003 - ifp->int_data.odrops);
1004 #endif
1005 /* If the interface just awoke, restart the counters.
1006 */
1007 if (ifp->int_data.ts == 0) {
1008 ifp->int_data = ifs.int_data;
1009 continue;
1010 }
1011 ifp->int_data = ifs.int_data;
1012
1013 /* Withhold judgement when the short error
1014 * counters wrap or the interface is reset.
1015 */
1016 if (ierr < 0 || in < 0 || oerr < 0 || out < 0) {
1017 LIM_SEC(ifinit_timer,
1018 now.tv_sec+CHECK_BAD_INTERVAL);
1019 continue;
1020 }
1021
1022 /* Withhold judgement when there is no traffic
1023 */
1024 if (in == 0 && out == 0 && ierr == 0 && oerr == 0)
1025 continue;
1026
1027 /* It is bad if input or output is not working.
1028 * Require presistent problems before marking it dead.
1029 */
1030 if ((in <= ierr && ierr > 0)
1031 || (out <= oerr && oerr > 0)) {
1032 if (!(ifp->int_state & IS_SICK)) {
1033 trace_act("interface %s to %s"
1034 " sick: in=%d ierr=%d"
1035 " out=%d oerr=%d",
1036 ifp->int_name,
1037 naddr_ntoa(ifp->int_dstaddr),
1038 in, ierr, out, oerr);
1039 if_sick(ifp);
1040 continue;
1041 }
1042 if (!(ifp->int_state & IS_BROKE)) {
1043 msglog("interface %s to %s broken:"
1044 " in=%d ierr=%d out=%d oerr=%d",
1045 ifp->int_name,
1046 naddr_ntoa(ifp->int_dstaddr),
1047 in, ierr, out, oerr);
1048 if_bad(ifp);
1049 }
1050 continue;
1051 }
1052
1053 /* otherwise, it is active and healthy
1054 */
1055 ifp->int_act_time = now.tv_sec;
1056 (void)if_ok(ifp, "");
1057 continue;
1058 }
1059
1060 /* This is a new interface.
1061 * If it is dead, forget it.
1062 */
1063 if (!iff_up(ifs.int_if_flags))
1064 continue;
1065
1066 /* If it duplicates an existing interface,
1067 * complain about it, mark the other one
1068 * duplicated, and forget this one.
1069 */
1070 ifp = check_dup(ifs.int_addr,ifs.int_dstaddr,ifs.int_mask,
1071 ifs.int_if_flags);
1072 if (ifp != 0) {
1073 /* Ignore duplicates of itself, caused by having
1074 * IP aliases on the same network.
1075 */
1076 if (!strcmp(ifp->int_name, ifs.int_name))
1077 continue;
1078
1079 if (!(prev_complaints & COMP_DUP)) {
1080 complaints |= COMP_DUP;
1081 msglog("%s (%s%s%s) is duplicated by"
1082 " %s (%s%s%s)",
1083 ifs.int_name,
1084 addrname(ifs.int_addr,ifs.int_mask,1),
1085 ((ifs.int_if_flags & IFF_POINTOPOINT)
1086 ? "-->" : ""),
1087 ((ifs.int_if_flags & IFF_POINTOPOINT)
1088 ? naddr_ntoa(ifs.int_dstaddr) : ""),
1089 ifp->int_name,
1090 addrname(ifp->int_addr,ifp->int_mask,1),
1091 ((ifp->int_if_flags & IFF_POINTOPOINT)
1092 ? "-->" : ""),
1093 ((ifp->int_if_flags & IFF_POINTOPOINT)
1094 ? naddr_ntoa(ifp->int_dstaddr) : ""));
1095 }
1096 ifp->int_state |= IS_DUP;
1097 continue;
1098 }
1099
1100 if (0 == (ifs.int_if_flags & (IFF_POINTOPOINT | IFF_BROADCAST))
1101 && !(ifs.int_state & IS_PASSIVE)) {
1102 trace_act("%s is neither broadcast, point-to-point,"
1103 " nor loopback",
1104 ifs.int_name);
1105 if (!(ifs.int_state & IFF_MULTICAST))
1106 ifs.int_state |= IS_NO_RDISC;
1107 }
1108
1109
1110 /* It is new and ok. Add it to the list of interfaces
1111 */
1112 ifp = (struct interface *)rtmalloc(sizeof(*ifp), "ifinit ifp");
1113 memmove(ifp, &ifs, sizeof(*ifp));
1114 get_parms(ifp);
1115 if_link(ifp);
1116 trace_if("Add", ifp);
1117
1118 /* Notice likely bad netmask.
1119 */
1120 if (!(prev_complaints & COMP_NETMASK)
1121 && !(ifp->int_if_flags & IFF_POINTOPOINT)
1122 && ifp->int_addr != RIP_DEFAULT) {
1123 for (ifp1 = ifnet; 0 != ifp1; ifp1 = ifp1->int_next) {
1124 if (ifp1->int_mask == ifp->int_mask)
1125 continue;
1126 if (ifp1->int_if_flags & IFF_POINTOPOINT)
1127 continue;
1128 if (ifp1->int_dstaddr == RIP_DEFAULT)
1129 continue;
1130 if (on_net(ifp->int_dstaddr,
1131 ifp1->int_net, ifp1->int_mask)
1132 || on_net(ifp1->int_dstaddr,
1133 ifp->int_net, ifp->int_mask)) {
1134 msglog("possible netmask problem"
1135 " between %s:%s and %s:%s",
1136 ifp->int_name,
1137 addrname(htonl(ifp->int_net),
1138 ifp->int_mask, 1),
1139 ifp1->int_name,
1140 addrname(htonl(ifp1->int_net),
1141 ifp1->int_mask, 1));
1142 complaints |= COMP_NETMASK;
1143 }
1144 }
1145 }
1146
1147 if (!(ifp->int_state & IS_ALIAS)) {
1148 /* Count the # of directly connected networks.
1149 */
1150 if (!(ifp->int_if_flags & IFF_LOOPBACK))
1151 tot_interfaces++;
1152 if (!IS_RIP_OFF(ifp->int_state))
1153 rip_interfaces++;
1154
1155 /* turn on router discovery and RIP If needed */
1156 if_ok_rdisc(ifp);
1157 rip_on(ifp);
1158 }
1159 }
1160
1161 /* If we are multi-homed and have at least two interfaces
1162 * listening to RIP, then output by default.
1163 */
1164 if (!supplier_set && rip_interfaces > 1)
1165 set_supplier();
1166
1167 /* If we are multi-homed, optionally advertise a route to
1168 * our main address.
1169 */
1170 if (advertise_mhome
1171 || (tot_interfaces > 1
1172 && mhome
1173 && (ifp = ifwithaddr(myaddr, 0, 0)) != 0
1174 && foundloopback)) {
1175 advertise_mhome = 1;
1176 rt = rtget(myaddr, HOST_MASK);
1177 if (rt != 0) {
1178 if (rt->rt_ifp != ifp
1179 || rt->rt_router != loopaddr) {
1180 rtdelete(rt);
1181 rt = 0;
1182 } else {
1183 loop_rts.rts_ifp = ifp;
1184 loop_rts.rts_metric = 0;
1185 loop_rts.rts_time = rt->rt_time;
1186 rtchange(rt, rt->rt_state | RS_MHOME,
1187 &loop_rts, 0);
1188 }
1189 }
1190 if (rt == 0) {
1191 loop_rts.rts_ifp = ifp;
1192 loop_rts.rts_metric = 0;
1193 rtadd(myaddr, HOST_MASK, RS_MHOME, &loop_rts);
1194 }
1195 }
1196
1197 for (ifp = ifnet; ifp != 0; ifp = ifp1) {
1198 ifp1 = ifp->int_next; /* because we may delete it */
1199
1200 /* Forget any interfaces that have disappeared.
1201 */
1202 if (!(ifp->int_state & (IS_CHECKED | IS_REMOTE))) {
1203 trace_act("interface %s has disappeared",
1204 ifp->int_name);
1205 ifdel(ifp);
1206 continue;
1207 }
1208
1209 if ((ifp->int_state & IS_BROKE)
1210 && !(ifp->int_state & IS_PASSIVE))
1211 LIM_SEC(ifinit_timer, now.tv_sec+CHECK_BAD_INTERVAL);
1212
1213 /* If we ever have a RIPv1 interface, assume we always will.
1214 * It might come back if it ever goes away.
1215 */
1216 if (!(ifp->int_state & IS_NO_RIPV1_OUT) && supplier)
1217 have_ripv1_out = 1;
1218 if (!(ifp->int_state & IS_NO_RIPV1_IN))
1219 have_ripv1_in = 1;
1220 }
1221
1222 for (ifp = ifnet; ifp != 0; ifp = ifp->int_next) {
1223 /* Ensure there is always a network route for interfaces,
1224 * after any dead interfaces have been deleted, which
1225 * might affect routes for point-to-point links.
1226 */
1227 if (!addrouteforif(ifp))
1228 continue;
1229
1230 /* Add routes to the local end of point-to-point interfaces
1231 * using loopback.
1232 */
1233 if ((ifp->int_if_flags & IFF_POINTOPOINT)
1234 && !(ifp->int_state & IS_REMOTE)
1235 && foundloopback) {
1236 /* Delete any routes to the network address through
1237 * foreign routers. Remove even static routes.
1238 */
1239 del_static(ifp->int_addr, HOST_MASK, 0, 0);
1240 rt = rtget(ifp->int_addr, HOST_MASK);
1241 if (rt != 0 && rt->rt_router != loopaddr) {
1242 rtdelete(rt);
1243 rt = 0;
1244 }
1245 if (rt != 0) {
1246 if (!(rt->rt_state & RS_LOCAL)
1247 || rt->rt_metric > ifp->int_metric) {
1248 ifp1 = ifp;
1249 } else {
1250 ifp1 = rt->rt_ifp;
1251 }
1252 loop_rts.rts_ifp = ifp1;
1253 loop_rts.rts_metric = 0;
1254 loop_rts.rts_time = rt->rt_time;
1255 rtchange(rt, ((rt->rt_state & ~RS_NET_SYN)
1256 | (RS_IF|RS_LOCAL)),
1257 &loop_rts, 0);
1258 } else {
1259 loop_rts.rts_ifp = ifp;
1260 loop_rts.rts_metric = 0;
1261 rtadd(ifp->int_addr, HOST_MASK,
1262 (RS_IF | RS_LOCAL), &loop_rts);
1263 }
1264 }
1265 }
1266
1267 /* add the authority routes */
1268 for (intnetp = intnets; intnetp!=0; intnetp = intnetp->intnet_next) {
1269 rt = rtget(intnetp->intnet_addr, intnetp->intnet_mask);
1270 if (rt != 0
1271 && !(rt->rt_state & RS_NO_NET_SYN)
1272 && !(rt->rt_state & RS_NET_INT)) {
1273 rtdelete(rt);
1274 rt = 0;
1275 }
1276 if (rt == 0) {
1277 loop_rts.rts_ifp = 0;
1278 loop_rts.rts_metric = intnetp->intnet_metric-1;
1279 rtadd(intnetp->intnet_addr, intnetp->intnet_mask,
1280 RS_NET_SYN | RS_NET_INT, &loop_rts);
1281 }
1282 }
1283
1284 prev_complaints = complaints;
1285 }
1286
1287
1288 static void
1289 check_net_syn(struct interface *ifp)
1290 {
1291 struct rt_entry *rt;
1292 static struct rt_spare new;
1293
1294
1295 /* Turn on the need to automatically synthesize a network route
1296 * for this interface only if we are running RIPv1 on some other
1297 * interface that is on a different class-A,B,or C network.
1298 */
1299 if (have_ripv1_out || have_ripv1_in) {
1300 ifp->int_state |= IS_NEED_NET_SYN;
1301 rt = rtget(ifp->int_std_addr, ifp->int_std_mask);
1302 if (rt != 0
1303 && 0 == (rt->rt_state & RS_NO_NET_SYN)
1304 && (!(rt->rt_state & RS_NET_SYN)
1305 || rt->rt_metric > ifp->int_metric)) {
1306 rtdelete(rt);
1307 rt = 0;
1308 }
1309 if (rt == 0) {
1310 new.rts_ifp = ifp;
1311 new.rts_gate = ifp->int_addr;
1312 new.rts_router = ifp->int_addr;
1313 new.rts_metric = ifp->int_metric;
1314 rtadd(ifp->int_std_addr, ifp->int_std_mask,
1315 RS_NET_SYN, &new);
1316 }
1317
1318 } else {
1319 ifp->int_state &= ~IS_NEED_NET_SYN;
1320
1321 rt = rtget(ifp->int_std_addr,
1322 ifp->int_std_mask);
1323 if (rt != 0
1324 && (rt->rt_state & RS_NET_SYN)
1325 && rt->rt_ifp == ifp)
1326 rtbad_sub(rt);
1327 }
1328 }
1329
1330
1331 /* Add route for interface if not currently installed.
1332 * Create route to other end if a point-to-point link,
1333 * otherwise a route to this (sub)network.
1334 */
1335 int /* 0=bad interface */
1336 addrouteforif(struct interface *ifp)
1337 {
1338 struct rt_entry *rt;
1339 static struct rt_spare new;
1340 naddr dst;
1341
1342
1343 /* skip sick interfaces
1344 */
1345 if (ifp->int_state & IS_BROKE)
1346 return 0;
1347
1348 /* If the interface on a subnet, then install a RIPv1 route to
1349 * the network as well (unless it is sick).
1350 */
1351 if (ifp->int_state & IS_SUBNET)
1352 check_net_syn(ifp);
1353
1354 dst = (0 != (ifp->int_if_flags & (IFF_POINTOPOINT | IFF_LOOPBACK))
1355 ? ifp->int_dstaddr
1356 : htonl(ifp->int_net));
1357
1358 new.rts_ifp = ifp;
1359 new.rts_router = ifp->int_addr;
1360 new.rts_gate = ifp->int_addr;
1361 new.rts_metric = ifp->int_metric;
1362 new.rts_time = now.tv_sec;
1363
1364 /* If we are going to send packets to the gateway,
1365 * it must be reachable using our physical interfaces
1366 */
1367 if ((ifp->int_state & IS_REMOTE)
1368 && !(ifp->int_state & IS_EXTERNAL)
1369 && !check_remote(ifp))
1370 return 0;
1371
1372 /* We are finished if the correct main interface route exists.
1373 * The right route must be for the right interface, not synthesized
1374 * from a subnet, be a "gateway" or not as appropriate, and so forth.
1375 */
1376 del_static(dst, ifp->int_mask, 0, 0);
1377 rt = rtget(dst, ifp->int_mask);
1378 if (rt != 0) {
1379 if ((rt->rt_ifp != ifp
1380 || rt->rt_router != ifp->int_addr)
1381 && (!(ifp->int_state & IS_DUP)
1382 || rt->rt_ifp == 0
1383 || (rt->rt_ifp->int_state & IS_BROKE))) {
1384 rtdelete(rt);
1385 rt = 0;
1386 } else {
1387 rtchange(rt, ((rt->rt_state | RS_IF)
1388 & ~(RS_NET_SYN | RS_LOCAL)),
1389 &new, 0);
1390 }
1391 }
1392 if (rt == 0) {
1393 if (ifp->int_transitions++ > 0)
1394 trace_act("re-install interface %s",
1395 ifp->int_name);
1396
1397 rtadd(dst, ifp->int_mask, RS_IF, &new);
1398 }
1399
1400 return 1;
1401 }
1402