+ fix minor regression in OSPF sending buffer adjustment logic
[jleu-quagga.git] / zebra / kernel_socket.c
blobcb23bf9fbe1640bd4476ead20cbab5d22788b351
1 /* Kernel communication using routing socket.
2 * Copyright (C) 1999 Kunihiro Ishiguro
4 * This file is part of GNU Zebra.
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
22 #include <zebra.h>
24 #include "if.h"
25 #include "prefix.h"
26 #include "sockunion.h"
27 #include "connected.h"
28 #include "memory.h"
29 #include "ioctl.h"
30 #include "log.h"
31 #include "str.h"
32 #include "table.h"
33 #include "rib.h"
34 #include "privs.h"
36 #include "zebra/interface.h"
37 #include "zebra/zserv.h"
38 #include "zebra/debug.h"
39 #include "zebra/kernel_socket.h"
41 extern struct zebra_privs_t zserv_privs;
42 extern struct zebra_t zebrad;
45 * Given a sockaddr length, round it up to include pad bytes following
46 * it. Assumes the kernel pads to sizeof(long).
48 * XXX: why is ROUNDUP(0) sizeof(long)? 0 is an illegal sockaddr
49 * length anyway (< sizeof (struct sockaddr)), so this shouldn't
50 * matter.
52 #define ROUNDUP(a) \
53 ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
56 * Given a pointer (sockaddr or void *), return the number of bytes
57 * taken up by the sockaddr and any padding needed for alignment.
59 #if defined(HAVE_STRUCT_SOCKADDR_SA_LEN)
60 #define SAROUNDUP(X) ROUNDUP(((struct sockaddr *)(X))->sa_len)
61 #elif defined(HAVE_IPV6)
63 * One would hope all fixed-size structure definitions are aligned,
64 * but round them up nonetheless.
66 #define SAROUNDUP(X) \
67 (((struct sockaddr *)(X))->sa_family == AF_INET ? \
68 ROUNDUP(sizeof(struct sockaddr_in)):\
69 (((struct sockaddr *)(X))->sa_family == AF_INET6 ? \
70 ROUNDUP(sizeof(struct sockaddr_in6)) : \
71 (((struct sockaddr *)(X))->sa_family == AF_LINK ? \
72 ROUNDUP(sizeof(struct sockaddr_dl)) : sizeof(struct sockaddr))))
73 #else /* HAVE_IPV6 */
74 #define SAROUNDUP(X) \
75 (((struct sockaddr *)(X))->sa_family == AF_INET ? \
76 ROUNDUP(sizeof(struct sockaddr_in)):\
77 (((struct sockaddr *)(X))->sa_family == AF_LINK ? \
78 ROUNDUP(sizeof(struct sockaddr_dl)) : sizeof(struct sockaddr)))
79 #endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
81 /* We use an additional pointer in following, pdest, rather than (DEST)
82 * directly, because gcc will warn if the macro is expanded and DEST is NULL,
83 * complaining that memcpy is being passed a NULL value, despite the fact
84 * the if (NULL) makes it impossible.
86 #define RTA_ADDR_GET(DEST, RTA, RTMADDRS, PNT) \
87 if ((RTMADDRS) & (RTA)) \
88 { \
89 void *pdest = (DEST); \
90 int len = SAROUNDUP ((PNT)); \
91 if ( ((DEST) != NULL) && \
92 af_check (((struct sockaddr *)(PNT))->sa_family)) \
93 memcpy (pdest, (PNT), len); \
94 (PNT) += len; \
96 #define RTA_ATTR_GET(DEST, RTA, RTMADDRS, PNT) \
97 if ((RTMADDRS) & (RTA)) \
98 { \
99 void *pdest = (DEST); \
100 int len = SAROUNDUP ((PNT)); \
101 if ((DEST) != NULL) \
102 memcpy (pdest, (PNT), len); \
103 (PNT) += len; \
106 #define RTA_NAME_GET(DEST, RTA, RTMADDRS, PNT, LEN) \
107 if ((RTMADDRS) & (RTA)) \
109 u_char *pdest = (u_char *) (DEST); \
110 int len = SAROUNDUP ((PNT)); \
111 struct sockaddr_dl *sdl = (struct sockaddr_dl *)(PNT); \
112 if (IS_ZEBRA_DEBUG_KERNEL) \
113 zlog_debug ("%s: RTA_SDL_GET nlen %d, alen %d", \
114 __func__, sdl->sdl_nlen, sdl->sdl_alen); \
115 if ( ((DEST) != NULL) && (sdl->sdl_family == AF_LINK) \
116 && (sdl->sdl_nlen < IFNAMSIZ) && (sdl->sdl_nlen <= len) ) \
118 memcpy (pdest, sdl->sdl_data, sdl->sdl_nlen); \
119 pdest[sdl->sdl_nlen] = '\0'; \
120 (LEN) = sdl->sdl_nlen; \
122 (PNT) += len; \
124 else \
126 (LEN) = 0; \
128 /* Routing socket message types. */
129 struct message rtm_type_str[] =
131 {RTM_ADD, "RTM_ADD"},
132 {RTM_DELETE, "RTM_DELETE"},
133 {RTM_CHANGE, "RTM_CHANGE"},
134 {RTM_GET, "RTM_GET"},
135 {RTM_LOSING, "RTM_LOSING"},
136 {RTM_REDIRECT, "RTM_REDIRECT"},
137 {RTM_MISS, "RTM_MISS"},
138 {RTM_LOCK, "RTM_LOCK"},
139 #ifdef OLDADD
140 {RTM_OLDADD, "RTM_OLDADD"},
141 #endif /* RTM_OLDADD */
142 #ifdef RTM_OLDDEL
143 {RTM_OLDDEL, "RTM_OLDDEL"},
144 #endif /* RTM_OLDDEL */
145 {RTM_RESOLVE, "RTM_RESOLVE"},
146 {RTM_NEWADDR, "RTM_NEWADDR"},
147 {RTM_DELADDR, "RTM_DELADDR"},
148 {RTM_IFINFO, "RTM_IFINFO"},
149 #ifdef RTM_OIFINFO
150 {RTM_OIFINFO, "RTM_OIFINFO"},
151 #endif /* RTM_OIFINFO */
152 #ifdef RTM_NEWMADDR
153 {RTM_NEWMADDR, "RTM_NEWMADDR"},
154 #endif /* RTM_NEWMADDR */
155 #ifdef RTM_DELMADDR
156 {RTM_DELMADDR, "RTM_DELMADDR"},
157 #endif /* RTM_DELMADDR */
158 #ifdef RTM_IFANNOUNCE
159 {RTM_IFANNOUNCE, "RTM_IFANNOUNCE"},
160 #endif /* RTM_IFANNOUNCE */
161 {0, NULL}
164 struct message rtm_flag_str[] =
166 {RTF_UP, "UP"},
167 {RTF_GATEWAY, "GATEWAY"},
168 {RTF_HOST, "HOST"},
169 {RTF_REJECT, "REJECT"},
170 {RTF_DYNAMIC, "DYNAMIC"},
171 {RTF_MODIFIED, "MODIFIED"},
172 {RTF_DONE, "DONE"},
173 #ifdef RTF_MASK
174 {RTF_MASK, "MASK"},
175 #endif /* RTF_MASK */
176 {RTF_CLONING, "CLONING"},
177 {RTF_XRESOLVE, "XRESOLVE"},
178 {RTF_LLINFO, "LLINFO"},
179 {RTF_STATIC, "STATIC"},
180 {RTF_BLACKHOLE, "BLACKHOLE"},
181 #ifdef RTF_PRIVATE
182 {RTF_PRIVATE, "PRIVATE"},
183 #endif /* RTF_PRIVATE */
184 {RTF_PROTO1, "PROTO1"},
185 {RTF_PROTO2, "PROTO2"},
186 #ifdef RTF_PRCLONING
187 {RTF_PRCLONING, "PRCLONING"},
188 #endif /* RTF_PRCLONING */
189 #ifdef RTF_WASCLONED
190 {RTF_WASCLONED, "WASCLONED"},
191 #endif /* RTF_WASCLONED */
192 #ifdef RTF_PROTO3
193 {RTF_PROTO3, "PROTO3"},
194 #endif /* RTF_PROTO3 */
195 #ifdef RTF_PINNED
196 {RTF_PINNED, "PINNED"},
197 #endif /* RTF_PINNED */
198 #ifdef RTF_LOCAL
199 {RTF_LOCAL, "LOCAL"},
200 #endif /* RTF_LOCAL */
201 #ifdef RTF_BROADCAST
202 {RTF_BROADCAST, "BROADCAST"},
203 #endif /* RTF_BROADCAST */
204 #ifdef RTF_MULTICAST
205 {RTF_MULTICAST, "MULTICAST"},
206 #endif /* RTF_MULTICAST */
207 #ifdef RTF_MULTIRT
208 {RTF_MULTIRT, "MULTIRT"},
209 #endif /* RTF_MULTIRT */
210 #ifdef RTF_SETSRC
211 {RTF_SETSRC, "SETSRC"},
212 #endif /* RTF_SETSRC */
213 {0, NULL}
216 /* Kernel routing update socket. */
217 int routing_sock = -1;
219 /* Yes I'm checking ugly routing socket behavior. */
220 /* #define DEBUG */
222 /* Supported address family check. */
223 static int inline
224 af_check (int family)
226 if (family == AF_INET)
227 return 1;
228 #ifdef HAVE_IPV6
229 if (family == AF_INET6)
230 return 1;
231 #endif /* HAVE_IPV6 */
232 return 0;
235 /* Dump routing table flag for debug purpose. */
236 static void
237 rtm_flag_dump (int flag)
239 struct message *mes;
240 static char buf[BUFSIZ];
242 buf[0] = '\0';
243 for (mes = rtm_flag_str; mes->key != 0; mes++)
245 if (mes->key & flag)
247 strlcat (buf, mes->str, BUFSIZ);
248 strlcat (buf, " ", BUFSIZ);
251 zlog_debug ("Kernel: %s", buf);
254 #ifdef RTM_IFANNOUNCE
255 /* Interface adding function */
256 static int
257 ifan_read (struct if_announcemsghdr *ifan)
259 struct interface *ifp;
261 ifp = if_lookup_by_index (ifan->ifan_index);
263 if (ifp)
264 assert ( (ifp->ifindex == ifan->ifan_index)
265 || (ifp->ifindex == IFINDEX_INTERNAL) );
267 if ( (ifp == NULL)
268 || ((ifp->ifindex == IFINDEX_INTERNAL)
269 && (ifan->ifan_what == IFAN_ARRIVAL)) )
271 if (IS_ZEBRA_DEBUG_KERNEL)
272 zlog_debug ("%s: creating interface for ifindex %d, name %s",
273 __func__, ifan->ifan_index, ifan->ifan_name);
275 /* Create Interface */
276 ifp = if_get_by_name_len(ifan->ifan_name,
277 strnlen(ifan->ifan_name,
278 sizeof(ifan->ifan_name)));
279 ifp->ifindex = ifan->ifan_index;
281 if_add_update (ifp);
283 else if (ifp != NULL && ifan->ifan_what == IFAN_DEPARTURE)
284 if_delete_update (ifp);
286 if_get_flags (ifp);
287 if_get_mtu (ifp);
288 if_get_metric (ifp);
290 if (IS_ZEBRA_DEBUG_KERNEL)
291 zlog_debug ("%s: interface %s index %d",
292 __func__, ifan->ifan_name, ifan->ifan_index);
294 return 0;
296 #endif /* RTM_IFANNOUNCE */
299 * Handle struct if_msghdr obtained from reading routing socket or
300 * sysctl (from interface_list). There may or may not be sockaddrs
301 * present after the header.
304 ifm_read (struct if_msghdr *ifm)
306 struct interface *ifp = NULL;
307 char ifname[IFNAMSIZ];
308 short ifnlen = 0;
309 caddr_t *cp;
311 /* terminate ifname at head (for strnlen) and tail (for safety) */
312 ifname[IFNAMSIZ - 1] = '\0';
314 /* paranoia: sanity check structure */
315 if (ifm->ifm_msglen < sizeof(struct if_msghdr))
317 zlog_err ("ifm_read: ifm->ifm_msglen %d too short\n",
318 ifm->ifm_msglen);
319 return -1;
323 * Check for a sockaddr_dl following the message. First, point to
324 * where a socakddr might be if one follows the message.
326 cp = (void *)(ifm + 1);
328 #ifdef SUNOS_5
330 * XXX This behavior should be narrowed to only the kernel versions
331 * for which the structures returned do not match the headers.
333 * if_msghdr_t on 64 bit kernels in Solaris 9 and earlier versions
334 * is 12 bytes larger than the 32 bit version.
336 if (((struct sockaddr *) cp)->sa_family == AF_UNSPEC)
337 cp = cp + 12;
338 #endif
340 RTA_ADDR_GET (NULL, RTA_DST, ifm->ifm_addrs, cp);
341 RTA_ADDR_GET (NULL, RTA_GATEWAY, ifm->ifm_addrs, cp);
342 RTA_ATTR_GET (NULL, RTA_NETMASK, ifm->ifm_addrs, cp);
343 RTA_ADDR_GET (NULL, RTA_GENMASK, ifm->ifm_addrs, cp);
344 RTA_NAME_GET (ifname, RTA_IFP, ifm->ifm_addrs, cp, ifnlen);
345 RTA_ADDR_GET (NULL, RTA_IFA, ifm->ifm_addrs, cp);
346 RTA_ADDR_GET (NULL, RTA_AUTHOR, ifm->ifm_addrs, cp);
347 RTA_ADDR_GET (NULL, RTA_BRD, ifm->ifm_addrs, cp);
349 if (IS_ZEBRA_DEBUG_KERNEL)
350 zlog_debug ("%s: sdl ifname %s", __func__, (ifnlen ? ifname : "(nil)"));
353 * Look up on ifindex first, because ifindices are the primary handle for
354 * interfaces across the user/kernel boundary, for most systems. (Some
355 * messages, such as up/down status changes on NetBSD, do not include a
356 * sockaddr_dl).
358 if ( (ifp = if_lookup_by_index (ifm->ifm_index)) != NULL )
360 /* we have an ifp, verify that the name matches as some systems,
361 * eg Solaris, have a 1:many association of ifindex:ifname
362 * if they dont match, we dont have the correct ifp and should
363 * set it back to NULL to let next check do lookup by name
365 if (ifnlen && (strncmp (ifp->name, ifname, IFNAMSIZ) != 0) )
367 if (IS_ZEBRA_DEBUG_KERNEL)
368 zlog_debug ("%s: ifp name %s doesnt match sdl name %s",
369 __func__, ifp->name, ifname);
370 ifp = NULL;
375 * If we dont have an ifp, try looking up by name. Particularly as some
376 * systems (Solaris) have a 1:many mapping of ifindex:ifname - the ifname
377 * is therefore our unique handle to that interface.
379 * Interfaces specified in the configuration file for which the ifindex
380 * has not been determined will have ifindex == IFINDEX_INTERNAL, and such
381 * interfaces are found by this search, and then their ifindex values can
382 * be filled in.
384 if ( (ifp == NULL) && ifnlen)
385 ifp = if_lookup_by_name (ifname);
388 * If ifp still does not exist or has an invalid index (IFINDEX_INTERNAL),
389 * create or fill in an interface.
391 if ((ifp == NULL) || (ifp->ifindex == IFINDEX_INTERNAL))
394 * To create or fill in an interface, a sockaddr_dl (via
395 * RTA_IFP) is required.
397 if (!ifnlen)
399 zlog_warn ("Interface index %d (new) missing ifname\n",
400 ifm->ifm_index);
401 return -1;
404 #ifndef RTM_IFANNOUNCE
405 /* Down->Down interface should be ignored here.
406 * See further comment below.
408 if (!CHECK_FLAG (ifm->ifm_flags, IFF_UP))
409 return 0;
410 #endif /* !RTM_IFANNOUNCE */
412 if (ifp == NULL)
414 /* Interface that zebra was not previously aware of, so create. */
415 ifp = if_create (ifname, ifnlen);
416 if (IS_ZEBRA_DEBUG_KERNEL)
417 zlog_debug ("%s: creating ifp for ifindex %d",
418 __func__, ifm->ifm_index);
421 if (IS_ZEBRA_DEBUG_KERNEL)
422 zlog_debug ("%s: updated/created ifp, ifname %s, ifindex %d",
423 __func__, ifp->name, ifp->ifindex);
425 * Fill in newly created interface structure, or larval
426 * structure with ifindex IFINDEX_INTERNAL.
428 ifp->ifindex = ifm->ifm_index;
429 if_flags_update (ifp, ifm->ifm_flags);
430 #if defined(__bsdi__)
431 if_kvm_get_mtu (ifp);
432 #else
433 if_get_mtu (ifp);
434 #endif /* __bsdi__ */
435 if_get_metric (ifp);
437 if_add_update (ifp);
439 else
441 * Interface structure exists. Adjust stored flags from
442 * notification. If interface has up->down or down->up
443 * transition, call state change routines (to adjust routes,
444 * notify routing daemons, etc.). (Other flag changes are stored
445 * but apparently do not trigger action.)
448 if (ifp->ifindex != ifm->ifm_index)
450 zlog_warn ("%s: index mismatch, ifname %s, ifp index %d, "
451 "ifm index %d",
452 __func__, ifp->name, ifp->ifindex, ifm->ifm_index);
453 return -1;
456 /* update flags and handle operative->inoperative transition, if any */
457 if_flags_update (ifp, ifm->ifm_flags);
459 #ifndef RTM_IFANNOUNCE
460 if (!if_is_up (ifp))
462 /* No RTM_IFANNOUNCE on this platform, so we can never
463 * distinguish between ~IFF_UP and delete. We must presume
464 * it has been deleted.
465 * Eg, Solaris will not notify us of unplumb.
467 * XXX: Fixme - this should be runtime detected
468 * So that a binary compiled on a system with IFANNOUNCE
469 * will still behave correctly if run on a platform without
471 if_delete_update (ifp);
473 #endif /* RTM_IFANNOUNCE */
474 if (if_is_up (ifp))
476 #if defined(__bsdi__)
477 if_kvm_get_mtu (ifp);
478 #else
479 if_get_mtu (ifp);
480 #endif /* __bsdi__ */
481 if_get_metric (ifp);
485 #ifdef HAVE_NET_RT_IFLIST
486 ifp->stats = ifm->ifm_data;
487 #endif /* HAVE_NET_RT_IFLIST */
489 if (IS_ZEBRA_DEBUG_KERNEL)
490 zlog_debug ("%s: interface %s index %d",
491 __func__, ifp->name, ifp->ifindex);
493 return 0;
496 /* Address read from struct ifa_msghdr. */
497 static void
498 ifam_read_mesg (struct ifa_msghdr *ifm,
499 union sockunion *addr,
500 union sockunion *mask,
501 union sockunion *brd,
502 char *ifname,
503 short *ifnlen)
505 caddr_t pnt, end;
506 union sockunion dst;
507 union sockunion gateway;
509 pnt = (caddr_t)(ifm + 1);
510 end = ((caddr_t)ifm) + ifm->ifam_msglen;
512 /* Be sure structure is cleared */
513 memset (mask, 0, sizeof (union sockunion));
514 memset (addr, 0, sizeof (union sockunion));
515 memset (brd, 0, sizeof (union sockunion));
516 memset (&dst, 0, sizeof (union sockunion));
517 memset (&gateway, 0, sizeof (union sockunion));
519 /* We fetch each socket variable into sockunion. */
520 RTA_ADDR_GET (&dst, RTA_DST, ifm->ifam_addrs, pnt);
521 RTA_ADDR_GET (&gateway, RTA_GATEWAY, ifm->ifam_addrs, pnt);
522 RTA_ATTR_GET (mask, RTA_NETMASK, ifm->ifam_addrs, pnt);
523 RTA_ADDR_GET (NULL, RTA_GENMASK, ifm->ifam_addrs, pnt);
524 RTA_NAME_GET (ifname, RTA_IFP, ifm->ifam_addrs, pnt, *ifnlen);
525 RTA_ADDR_GET (addr, RTA_IFA, ifm->ifam_addrs, pnt);
526 RTA_ADDR_GET (NULL, RTA_AUTHOR, ifm->ifam_addrs, pnt);
527 RTA_ADDR_GET (brd, RTA_BRD, ifm->ifam_addrs, pnt);
529 if (IS_ZEBRA_DEBUG_KERNEL)
531 switch (sockunion_family(addr))
533 case AF_INET:
535 char buf[4][INET_ADDRSTRLEN];
536 zlog_debug ("%s: ifindex %d, ifname %s, ifam_addrs 0x%x, "
537 "ifam_flags 0x%x, addr %s/%d broad %s dst %s "
538 "gateway %s",
539 __func__, ifm->ifam_index,
540 (ifnlen ? ifname : "(nil)"), ifm->ifam_addrs,
541 ifm->ifam_flags,
542 inet_ntop(AF_INET,&addr->sin.sin_addr,
543 buf[0],sizeof(buf[0])),
544 ip_masklen(mask->sin.sin_addr),
545 inet_ntop(AF_INET,&brd->sin.sin_addr,
546 buf[1],sizeof(buf[1])),
547 inet_ntop(AF_INET,&dst.sin.sin_addr,
548 buf[2],sizeof(buf[2])),
549 inet_ntop(AF_INET,&gateway.sin.sin_addr,
550 buf[3],sizeof(buf[3])));
552 break;
553 #ifdef HAVE_IPV6
554 case AF_INET6:
556 char buf[4][INET6_ADDRSTRLEN];
557 zlog_debug ("%s: ifindex %d, ifname %s, ifam_addrs 0x%x, "
558 "ifam_flags 0x%x, addr %s/%d broad %s dst %s "
559 "gateway %s",
560 __func__, ifm->ifam_index,
561 (ifnlen ? ifname : "(nil)"), ifm->ifam_addrs,
562 ifm->ifam_flags,
563 inet_ntop(AF_INET6,&addr->sin6.sin6_addr,
564 buf[0],sizeof(buf[0])),
565 ip6_masklen(mask->sin6.sin6_addr),
566 inet_ntop(AF_INET6,&brd->sin6.sin6_addr,
567 buf[1],sizeof(buf[1])),
568 inet_ntop(AF_INET6,&dst.sin6.sin6_addr,
569 buf[2],sizeof(buf[2])),
570 inet_ntop(AF_INET6,&gateway.sin6.sin6_addr,
571 buf[3],sizeof(buf[3])));
573 break;
574 #endif /* HAVE_IPV6 */
575 default:
576 zlog_debug ("%s: ifindex %d, ifname %s, ifam_addrs 0x%x",
577 __func__, ifm->ifam_index,
578 (ifnlen ? ifname : "(nil)"), ifm->ifam_addrs);
579 break;
583 /* Assert read up end point matches to end point */
584 if (pnt != end)
585 zlog_warn ("ifam_read() does't read all socket data");
588 /* Interface's address information get. */
590 ifam_read (struct ifa_msghdr *ifam)
592 struct interface *ifp = NULL;
593 union sockunion addr, mask, brd;
594 char ifname[INTERFACE_NAMSIZ];
595 short ifnlen = 0;
596 char isalias = 0;
597 int flags = 0;
599 ifname[0] = ifname[INTERFACE_NAMSIZ - 1] = '\0';
601 /* Allocate and read address information. */
602 ifam_read_mesg (ifam, &addr, &mask, &brd, ifname, &ifnlen);
604 if ((ifp = if_lookup_by_index(ifam->ifam_index)) == NULL)
606 zlog_warn ("%s: no interface for ifname %s, index %d",
607 __func__, ifname, ifam->ifam_index);
608 return -1;
611 if (ifnlen && strncmp (ifp->name, ifname, INTERFACE_NAMSIZ))
612 isalias = 1;
614 /* N.B. The info in ifa_msghdr does not tell us whether the RTA_BRD
615 field contains a broadcast address or a peer address, so we are forced to
616 rely upon the interface type. */
617 if (if_is_pointopoint(ifp))
618 SET_FLAG(flags, ZEBRA_IFA_PEER);
620 #if 0
621 /* it might seem cute to grab the interface metric here, however
622 * we're processing an address update message, and so some systems
623 * (e.g. FBSD) dont bother to fill in ifam_metric. Disabled, but left
624 * in deliberately, as comment.
626 ifp->metric = ifam->ifam_metric;
627 #endif
629 /* Add connected address. */
630 switch (sockunion_family (&addr))
632 case AF_INET:
633 if (ifam->ifam_type == RTM_NEWADDR)
634 connected_add_ipv4 (ifp, flags, &addr.sin.sin_addr,
635 ip_masklen (mask.sin.sin_addr),
636 &brd.sin.sin_addr,
637 (isalias ? ifname : NULL));
638 else
639 connected_delete_ipv4 (ifp, flags, &addr.sin.sin_addr,
640 ip_masklen (mask.sin.sin_addr),
641 &brd.sin.sin_addr);
642 break;
643 #ifdef HAVE_IPV6
644 case AF_INET6:
645 /* Unset interface index from link-local address when IPv6 stack
646 is KAME. */
647 if (IN6_IS_ADDR_LINKLOCAL (&addr.sin6.sin6_addr))
648 SET_IN6_LINKLOCAL_IFINDEX (addr.sin6.sin6_addr, 0);
650 if (ifam->ifam_type == RTM_NEWADDR)
651 connected_add_ipv6 (ifp, flags, &addr.sin6.sin6_addr,
652 ip6_masklen (mask.sin6.sin6_addr),
653 &brd.sin6.sin6_addr,
654 (isalias ? ifname : NULL));
655 else
656 connected_delete_ipv6 (ifp,
657 &addr.sin6.sin6_addr,
658 ip6_masklen (mask.sin6.sin6_addr),
659 &brd.sin6.sin6_addr);
660 break;
661 #endif /* HAVE_IPV6 */
662 default:
663 /* Unsupported family silently ignore... */
664 break;
667 /* Check interface flag for implicit up of the interface. */
668 if_refresh (ifp);
670 #ifdef SUNOS_5
671 /* In addition to lacking IFANNOUNCE, on SUNOS IFF_UP is strange.
672 * See comments for SUNOS_5 in interface.c::if_flags_mangle.
674 * Here we take care of case where the real IFF_UP was previously
675 * unset (as kept in struct zebra_if.primary_state) and the mangled
676 * IFF_UP (ie IFF_UP set || listcount(connected) has now transitioned
677 * to unset due to the lost non-primary address having DELADDR'd.
679 * we must delete the interface, because in between here and next
680 * event for this interface-name the administrator could unplumb
681 * and replumb the interface.
683 if (!if_is_up (ifp))
684 if_delete_update (ifp);
685 #endif /* SUNOS_5 */
687 return 0;
690 /* Interface function for reading kernel routing table information. */
691 static int
692 rtm_read_mesg (struct rt_msghdr *rtm,
693 union sockunion *dest,
694 union sockunion *mask,
695 union sockunion *gate,
696 char *ifname,
697 short *ifnlen)
699 caddr_t pnt, end;
701 /* Pnt points out socket data start point. */
702 pnt = (caddr_t)(rtm + 1);
703 end = ((caddr_t)rtm) + rtm->rtm_msglen;
705 /* rt_msghdr version check. */
706 if (rtm->rtm_version != RTM_VERSION)
707 zlog (NULL, LOG_WARNING,
708 "Routing message version different %d should be %d."
709 "This may cause problem\n", rtm->rtm_version, RTM_VERSION);
711 /* Be sure structure is cleared */
712 memset (dest, 0, sizeof (union sockunion));
713 memset (gate, 0, sizeof (union sockunion));
714 memset (mask, 0, sizeof (union sockunion));
716 /* We fetch each socket variable into sockunion. */
717 RTA_ADDR_GET (dest, RTA_DST, rtm->rtm_addrs, pnt);
718 RTA_ADDR_GET (gate, RTA_GATEWAY, rtm->rtm_addrs, pnt);
719 RTA_ATTR_GET (mask, RTA_NETMASK, rtm->rtm_addrs, pnt);
720 RTA_ADDR_GET (NULL, RTA_GENMASK, rtm->rtm_addrs, pnt);
721 RTA_NAME_GET (ifname, RTA_IFP, rtm->rtm_addrs, pnt, *ifnlen);
722 RTA_ADDR_GET (NULL, RTA_IFA, rtm->rtm_addrs, pnt);
723 RTA_ADDR_GET (NULL, RTA_AUTHOR, rtm->rtm_addrs, pnt);
724 RTA_ADDR_GET (NULL, RTA_BRD, rtm->rtm_addrs, pnt);
726 /* If there is netmask information set it's family same as
727 destination family*/
728 if (rtm->rtm_addrs & RTA_NETMASK)
729 mask->sa.sa_family = dest->sa.sa_family;
731 /* Assert read up to the end of pointer. */
732 if (pnt != end)
733 zlog (NULL, LOG_WARNING, "rtm_read() does't read all socket data.");
735 return rtm->rtm_flags;
738 void
739 rtm_read (struct rt_msghdr *rtm)
741 int flags;
742 u_char zebra_flags;
743 union sockunion dest, mask, gate;
744 char ifname[INTERFACE_NAMSIZ + 1];
745 short ifnlen = 0;
747 zebra_flags = 0;
749 /* Read destination and netmask and gateway from rtm message
750 structure. */
751 flags = rtm_read_mesg (rtm, &dest, &mask, &gate, ifname, &ifnlen);
752 if (!(flags & RTF_DONE))
753 return;
754 if (IS_ZEBRA_DEBUG_KERNEL)
755 zlog_debug ("%s: got rtm of type %d (%s)", __func__, rtm->rtm_type,
756 lookup (rtm_type_str, rtm->rtm_type));
758 #ifdef RTF_CLONED /*bsdi, netbsd 1.6*/
759 if (flags & RTF_CLONED)
760 return;
761 #endif
762 #ifdef RTF_WASCLONED /*freebsd*/
763 if (flags & RTF_WASCLONED)
764 return;
765 #endif
767 if ((rtm->rtm_type == RTM_ADD) && ! (flags & RTF_UP))
768 return;
770 /* This is connected route. */
771 if (! (flags & RTF_GATEWAY))
772 return;
774 if (flags & RTF_PROTO1)
775 SET_FLAG (zebra_flags, ZEBRA_FLAG_SELFROUTE);
777 /* This is persistent route. */
778 if (flags & RTF_STATIC)
779 SET_FLAG (zebra_flags, ZEBRA_FLAG_STATIC);
781 /* This is a reject or blackhole route */
782 if (flags & RTF_REJECT)
783 SET_FLAG (zebra_flags, ZEBRA_FLAG_REJECT);
784 if (flags & RTF_BLACKHOLE)
785 SET_FLAG (zebra_flags, ZEBRA_FLAG_BLACKHOLE);
787 if (dest.sa.sa_family == AF_INET)
789 struct prefix_ipv4 p;
791 p.family = AF_INET;
792 p.prefix = dest.sin.sin_addr;
793 if (flags & RTF_HOST)
794 p.prefixlen = IPV4_MAX_PREFIXLEN;
795 else
796 p.prefixlen = ip_masklen (mask.sin.sin_addr);
798 /* Catch self originated messages and match them against our current RIB.
799 * At the same time, ignore unconfirmed messages, they should be tracked
800 * by rtm_write() and kernel_rtm_ipv4().
802 if (rtm->rtm_type != RTM_GET && rtm->rtm_pid == pid)
804 char buf[INET_ADDRSTRLEN], gate_buf[INET_ADDRSTRLEN];
805 int ret;
806 if (! IS_ZEBRA_DEBUG_RIB)
807 return;
808 ret = rib_lookup_ipv4_route (&p, &gate);
809 inet_ntop (AF_INET, &p.prefix, buf, INET_ADDRSTRLEN);
810 switch (rtm->rtm_type)
812 case RTM_ADD:
813 case RTM_GET:
814 case RTM_CHANGE:
815 /* The kernel notifies us about a new route in FIB created by us.
816 Do we have a correspondent entry in our RIB? */
817 switch (ret)
819 case ZEBRA_RIB_NOTFOUND:
820 zlog_debug ("%s: %s %s/%d: desync: RR isn't yet in RIB, while already in FIB",
821 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
822 break;
823 case ZEBRA_RIB_FOUND_CONNECTED:
824 case ZEBRA_RIB_FOUND_NOGATE:
825 inet_ntop (AF_INET, &gate.sin.sin_addr, gate_buf, INET_ADDRSTRLEN);
826 zlog_debug ("%s: %s %s/%d: desync: RR is in RIB, but gate differs (ours is %s)",
827 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen, gate_buf);
828 break;
829 case ZEBRA_RIB_FOUND_EXACT: /* RIB RR == FIB RR */
830 zlog_debug ("%s: %s %s/%d: done Ok",
831 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
832 rib_lookup_and_dump (&p);
833 return;
834 break;
836 break;
837 case RTM_DELETE:
838 /* The kernel notifies us about a route deleted by us. Do we still
839 have it in the RIB? Do we have anything instead? */
840 switch (ret)
842 case ZEBRA_RIB_FOUND_EXACT:
843 zlog_debug ("%s: %s %s/%d: desync: RR is still in RIB, while already not in FIB",
844 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
845 rib_lookup_and_dump (&p);
846 break;
847 case ZEBRA_RIB_FOUND_CONNECTED:
848 case ZEBRA_RIB_FOUND_NOGATE:
849 zlog_debug ("%s: %s %s/%d: desync: RR is still in RIB, plus gate differs",
850 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
851 rib_lookup_and_dump (&p);
852 break;
853 case ZEBRA_RIB_NOTFOUND: /* RIB RR == FIB RR */
854 zlog_debug ("%s: %s %s/%d: done Ok",
855 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
856 rib_lookup_and_dump (&p);
857 return;
858 break;
860 break;
861 default:
862 zlog_debug ("%s: %s/%d: warning: loopback RTM of type %s received",
863 __func__, buf, p.prefixlen, lookup (rtm_type_str, rtm->rtm_type));
865 return;
868 /* Change, delete the old prefix, we have no further information
869 * to specify the route really
871 if (rtm->rtm_type == RTM_CHANGE)
872 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags, &p,
873 NULL, 0, 0);
875 if (rtm->rtm_type == RTM_GET
876 || rtm->rtm_type == RTM_ADD
877 || rtm->rtm_type == RTM_CHANGE)
878 rib_add_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags,
879 &p, &gate.sin.sin_addr, NULL, 0, 0, 0, 0);
880 else
881 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags,
882 &p, &gate.sin.sin_addr, 0, 0);
884 #ifdef HAVE_IPV6
885 if (dest.sa.sa_family == AF_INET6)
887 struct prefix_ipv6 p;
888 unsigned int ifindex = 0;
890 p.family = AF_INET6;
891 p.prefix = dest.sin6.sin6_addr;
892 if (flags & RTF_HOST)
893 p.prefixlen = IPV6_MAX_PREFIXLEN;
894 else
895 p.prefixlen = ip6_masklen (mask.sin6.sin6_addr);
897 #ifdef KAME
898 if (IN6_IS_ADDR_LINKLOCAL (&gate.sin6.sin6_addr))
900 ifindex = IN6_LINKLOCAL_IFINDEX (gate.sin6.sin6_addr);
901 SET_IN6_LINKLOCAL_IFINDEX (gate.sin6.sin6_addr, 0);
903 #endif /* KAME */
905 /* CHANGE: delete the old prefix, we have no further information
906 * to specify the route really
908 if (rtm->rtm_type == RTM_CHANGE)
909 rib_delete_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags, &p,
910 NULL, 0, 0);
912 if (rtm->rtm_type == RTM_GET
913 || rtm->rtm_type == RTM_ADD
914 || rtm->rtm_type == RTM_CHANGE)
915 rib_add_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags,
916 &p, &gate.sin6.sin6_addr, ifindex, 0, 0, 0);
917 else
918 rib_delete_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags,
919 &p, &gate.sin6.sin6_addr, ifindex, 0);
921 #endif /* HAVE_IPV6 */
924 /* Interface function for the kernel routing table updates. Support
925 * for RTM_CHANGE will be needed.
926 * Exported only for rt_socket.c
929 rtm_write (int message,
930 union sockunion *dest,
931 union sockunion *mask,
932 union sockunion *gate,
933 unsigned int index,
934 int zebra_flags,
935 int metric)
937 int ret;
938 caddr_t pnt;
939 struct interface *ifp;
941 /* Sequencial number of routing message. */
942 static int msg_seq = 0;
944 /* Struct of rt_msghdr and buffer for storing socket's data. */
945 struct
947 struct rt_msghdr rtm;
948 char buf[512];
949 } msg;
951 if (routing_sock < 0)
952 return ZEBRA_ERR_EPERM;
954 /* Clear and set rt_msghdr values */
955 memset (&msg, 0, sizeof (struct rt_msghdr));
956 msg.rtm.rtm_version = RTM_VERSION;
957 msg.rtm.rtm_type = message;
958 msg.rtm.rtm_seq = msg_seq++;
959 msg.rtm.rtm_addrs = RTA_DST;
960 msg.rtm.rtm_addrs |= RTA_GATEWAY;
961 msg.rtm.rtm_flags = RTF_UP;
962 msg.rtm.rtm_index = index;
964 if (metric != 0)
966 msg.rtm.rtm_rmx.rmx_hopcount = metric;
967 msg.rtm.rtm_inits |= RTV_HOPCOUNT;
970 ifp = if_lookup_by_index (index);
972 if (gate && message == RTM_ADD)
973 msg.rtm.rtm_flags |= RTF_GATEWAY;
975 if (! gate && message == RTM_ADD && ifp &&
976 (ifp->flags & IFF_POINTOPOINT) == 0)
977 msg.rtm.rtm_flags |= RTF_CLONING;
979 /* If no protocol specific gateway is specified, use link
980 address for gateway. */
981 if (! gate)
983 if (!ifp)
985 char dest_buf[INET_ADDRSTRLEN] = "NULL", mask_buf[INET_ADDRSTRLEN] = "255.255.255.255";
986 if (dest)
987 inet_ntop (AF_INET, &dest->sin.sin_addr, dest_buf, INET_ADDRSTRLEN);
988 if (mask)
989 inet_ntop (AF_INET, &mask->sin.sin_addr, mask_buf, INET_ADDRSTRLEN);
990 zlog_warn ("%s: %s/%s: gate == NULL and no gateway found for ifindex %d",
991 __func__, dest_buf, mask_buf, index);
992 return -1;
994 gate = (union sockunion *) & ifp->sdl;
997 if (mask)
998 msg.rtm.rtm_addrs |= RTA_NETMASK;
999 else if (message == RTM_ADD)
1000 msg.rtm.rtm_flags |= RTF_HOST;
1002 /* Tagging route with flags */
1003 msg.rtm.rtm_flags |= (RTF_PROTO1);
1005 /* Additional flags. */
1006 if (zebra_flags & ZEBRA_FLAG_BLACKHOLE)
1007 msg.rtm.rtm_flags |= RTF_BLACKHOLE;
1008 if (zebra_flags & ZEBRA_FLAG_REJECT)
1009 msg.rtm.rtm_flags |= RTF_REJECT;
1012 #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
1013 #define SOCKADDRSET(X,R) \
1014 if (msg.rtm.rtm_addrs & (R)) \
1016 int len = ROUNDUP ((X)->sa.sa_len); \
1017 memcpy (pnt, (caddr_t)(X), len); \
1018 pnt += len; \
1020 #else
1021 #define SOCKADDRSET(X,R) \
1022 if (msg.rtm.rtm_addrs & (R)) \
1024 int len = SAROUNDUP (X); \
1025 memcpy (pnt, (caddr_t)(X), len); \
1026 pnt += len; \
1028 #endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
1030 pnt = (caddr_t) msg.buf;
1032 /* Write each socket data into rtm message buffer */
1033 SOCKADDRSET (dest, RTA_DST);
1034 SOCKADDRSET (gate, RTA_GATEWAY);
1035 SOCKADDRSET (mask, RTA_NETMASK);
1037 msg.rtm.rtm_msglen = pnt - (caddr_t) &msg;
1039 ret = write (routing_sock, &msg, msg.rtm.rtm_msglen);
1041 if (ret != msg.rtm.rtm_msglen)
1043 if (errno == EEXIST)
1044 return ZEBRA_ERR_RTEXIST;
1045 if (errno == ENETUNREACH)
1046 return ZEBRA_ERR_RTUNREACH;
1047 if (errno == ESRCH)
1048 return ZEBRA_ERR_RTNOEXIST;
1050 zlog_warn ("%s: write : %s (%d)", __func__, safe_strerror (errno), errno);
1051 return ZEBRA_ERR_KERNEL;
1053 return ZEBRA_ERR_NOERROR;
1057 #include "thread.h"
1058 #include "zebra/zserv.h"
1060 /* For debug purpose. */
1061 static void
1062 rtmsg_debug (struct rt_msghdr *rtm)
1064 zlog_debug ("Kernel: Len: %d Type: %s", rtm->rtm_msglen, lookup (rtm_type_str, rtm->rtm_type));
1065 rtm_flag_dump (rtm->rtm_flags);
1066 zlog_debug ("Kernel: message seq %d", rtm->rtm_seq);
1067 zlog_debug ("Kernel: pid %d, rtm_addrs 0x%x", rtm->rtm_pid, rtm->rtm_addrs);
1070 /* This is pretty gross, better suggestions welcome -- mhandler */
1071 #ifndef RTAX_MAX
1072 #ifdef RTA_NUMBITS
1073 #define RTAX_MAX RTA_NUMBITS
1074 #else
1075 #define RTAX_MAX 8
1076 #endif /* RTA_NUMBITS */
1077 #endif /* RTAX_MAX */
1079 /* Kernel routing table and interface updates via routing socket. */
1080 static int
1081 kernel_read (struct thread *thread)
1083 int sock;
1084 int nbytes;
1085 struct rt_msghdr *rtm;
1088 * This must be big enough for any message the kernel might send.
1089 * Rather than determining how many sockaddrs of what size might be
1090 * in each particular message, just use RTAX_MAX of sockaddr_storage
1091 * for each. Note that the sockaddrs must be after each message
1092 * definition, or rather after whichever happens to be the largest,
1093 * since the buffer needs to be big enough for a message and the
1094 * sockaddrs together.
1096 union
1098 /* Routing information. */
1099 struct
1101 struct rt_msghdr rtm;
1102 struct sockaddr_storage addr[RTAX_MAX];
1103 } r;
1105 /* Interface information. */
1106 struct
1108 struct if_msghdr ifm;
1109 struct sockaddr_storage addr[RTAX_MAX];
1110 } im;
1112 /* Interface address information. */
1113 struct
1115 struct ifa_msghdr ifa;
1116 struct sockaddr_storage addr[RTAX_MAX];
1117 } ia;
1119 #ifdef RTM_IFANNOUNCE
1120 /* Interface arrival/departure */
1121 struct
1123 struct if_announcemsghdr ifan;
1124 struct sockaddr_storage addr[RTAX_MAX];
1125 } ian;
1126 #endif /* RTM_IFANNOUNCE */
1128 } buf;
1130 /* Fetch routing socket. */
1131 sock = THREAD_FD (thread);
1133 nbytes= read (sock, &buf, sizeof buf);
1135 if (nbytes <= 0)
1137 if (nbytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN)
1138 zlog_warn ("routing socket error: %s", safe_strerror (errno));
1139 return 0;
1142 thread_add_read (zebrad.master, kernel_read, NULL, sock);
1144 if (IS_ZEBRA_DEBUG_KERNEL)
1145 rtmsg_debug (&buf.r.rtm);
1147 rtm = &buf.r.rtm;
1150 * Ensure that we didn't drop any data, so that processing routines
1151 * can assume they have the whole message.
1153 if (rtm->rtm_msglen != nbytes)
1155 zlog_warn ("kernel_read: rtm->rtm_msglen %d, nbytes %d, type %d\n",
1156 rtm->rtm_msglen, nbytes, rtm->rtm_type);
1157 return -1;
1160 switch (rtm->rtm_type)
1162 case RTM_ADD:
1163 case RTM_DELETE:
1164 case RTM_CHANGE:
1165 rtm_read (rtm);
1166 break;
1167 case RTM_IFINFO:
1168 ifm_read (&buf.im.ifm);
1169 break;
1170 case RTM_NEWADDR:
1171 case RTM_DELADDR:
1172 ifam_read (&buf.ia.ifa);
1173 break;
1174 #ifdef RTM_IFANNOUNCE
1175 case RTM_IFANNOUNCE:
1176 ifan_read (&buf.ian.ifan);
1177 break;
1178 #endif /* RTM_IFANNOUNCE */
1179 default:
1180 if (IS_ZEBRA_DEBUG_KERNEL)
1181 zlog_debug("Unprocessed RTM_type: %d", rtm->rtm_type);
1182 break;
1184 return 0;
1187 /* Make routing socket. */
1188 static void
1189 routing_socket (void)
1191 if ( zserv_privs.change (ZPRIVS_RAISE) )
1192 zlog_err ("routing_socket: Can't raise privileges");
1194 routing_sock = socket (AF_ROUTE, SOCK_RAW, 0);
1196 if (routing_sock < 0)
1198 if ( zserv_privs.change (ZPRIVS_LOWER) )
1199 zlog_err ("routing_socket: Can't lower privileges");
1200 zlog_warn ("Can't init kernel routing socket");
1201 return;
1204 /* XXX: Socket should be NONBLOCK, however as we currently
1205 * discard failed writes, this will lead to inconsistencies.
1206 * For now, socket must be blocking.
1208 /*if (fcntl (routing_sock, F_SETFL, O_NONBLOCK) < 0)
1209 zlog_warn ("Can't set O_NONBLOCK to routing socket");*/
1211 if ( zserv_privs.change (ZPRIVS_LOWER) )
1212 zlog_err ("routing_socket: Can't lower privileges");
1214 /* kernel_read needs rewrite. */
1215 thread_add_read (zebrad.master, kernel_read, NULL, routing_sock);
1218 /* Exported interface function. This function simply calls
1219 routing_socket (). */
1220 void
1221 kernel_init (void)
1223 routing_socket ();