blob: cd30631b38f48800a1fbe2cb0378b9393218bd72 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Kernel communication using routing socket.
2 * Copyright (C) 1999 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
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.
10 *
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.
15 *
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.
20 */
21
22#include <zebra.h>
23
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"
pauledd7c242003-06-04 13:59:38 +000034#include "privs.h"
paul718e3742002-12-13 20:15:29 +000035
36#include "zebra/interface.h"
37#include "zebra/zserv.h"
38#include "zebra/debug.h"
paulec1a4282005-11-24 15:15:17 +000039#include "zebra/kernel_socket.h"
paul718e3742002-12-13 20:15:29 +000040
pauledd7c242003-06-04 13:59:38 +000041extern struct zebra_privs_t zserv_privs;
paul9bcdb632003-07-08 08:09:45 +000042extern struct zebra_t zebrad;
pauledd7c242003-06-04 13:59:38 +000043
gdt4bfbea82004-01-06 01:13:05 +000044/*
45 * Given a sockaddr length, round it up to include pad bytes following
46 * it. Assumes the kernel pads to sizeof(long).
47 *
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.
51 */
paul718e3742002-12-13 20:15:29 +000052#define ROUNDUP(a) \
53 ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
54
gdt4bfbea82004-01-06 01:13:05 +000055/*
56 * Given a pointer (sockaddr or void *), return the number of bytes
57 * taken up by the sockaddr and any padding needed for alignment.
58 */
Paul Jakma6f0e3f62007-05-10 02:38:51 +000059#if defined(HAVE_STRUCT_SOCKADDR_SA_LEN)
gdt4bfbea82004-01-06 01:13:05 +000060#define SAROUNDUP(X) ROUNDUP(((struct sockaddr *)(X))->sa_len)
paul30be8022003-10-22 02:51:38 +000061#elif defined(HAVE_IPV6)
gdt4bfbea82004-01-06 01:13:05 +000062/*
63 * One would hope all fixed-size structure definitions are aligned,
64 * but round them up nonetheless.
65 */
66#define SAROUNDUP(X) \
paul3e95a072003-09-24 00:05:45 +000067 (((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 ? \
paulc50ae8b2004-05-11 11:31:07 +000072 ROUNDUP(sizeof(struct sockaddr_dl)) : sizeof(struct sockaddr))))
paul30be8022003-10-22 02:51:38 +000073#else /* HAVE_IPV6 */
gdt4bfbea82004-01-06 01:13:05 +000074#define SAROUNDUP(X) \
paul30be8022003-10-22 02:51:38 +000075 (((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)))
Paul Jakma6f0e3f62007-05-10 02:38:51 +000079#endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
paul718e3742002-12-13 20:15:29 +000080
paulec1a4282005-11-24 15:15:17 +000081/* 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.
85 */
paul62debbb2005-06-14 14:07:07 +000086#define RTA_ADDR_GET(DEST, RTA, RTMADDRS, PNT) \
87 if ((RTMADDRS) & (RTA)) \
88 { \
paulec1a4282005-11-24 15:15:17 +000089 void *pdest = (DEST); \
paul62debbb2005-06-14 14:07:07 +000090 int len = SAROUNDUP ((PNT)); \
paulea6f82b2005-06-28 17:20:26 +000091 if ( ((DEST) != NULL) && \
paul62debbb2005-06-14 14:07:07 +000092 af_check (((struct sockaddr *)(PNT))->sa_family)) \
paulec1a4282005-11-24 15:15:17 +000093 memcpy (pdest, (PNT), len); \
paul62debbb2005-06-14 14:07:07 +000094 (PNT) += len; \
95 }
96#define RTA_ATTR_GET(DEST, RTA, RTMADDRS, PNT) \
97 if ((RTMADDRS) & (RTA)) \
98 { \
paulec1a4282005-11-24 15:15:17 +000099 void *pdest = (DEST); \
paul62debbb2005-06-14 14:07:07 +0000100 int len = SAROUNDUP ((PNT)); \
paulec1a4282005-11-24 15:15:17 +0000101 if ((DEST) != NULL) \
102 memcpy (pdest, (PNT), len); \
paul62debbb2005-06-14 14:07:07 +0000103 (PNT) += len; \
104 }
105
paul6fe70d12005-11-12 22:55:10 +0000106#define RTA_NAME_GET(DEST, RTA, RTMADDRS, PNT, LEN) \
107 if ((RTMADDRS) & (RTA)) \
108 { \
paulec1a4282005-11-24 15:15:17 +0000109 u_char *pdest = (u_char *) (DEST); \
paul6fe70d12005-11-12 22:55:10 +0000110 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) ) \
117 { \
paulec1a4282005-11-24 15:15:17 +0000118 memcpy (pdest, sdl->sdl_data, sdl->sdl_nlen); \
119 pdest[sdl->sdl_nlen] = '\0'; \
paul6fe70d12005-11-12 22:55:10 +0000120 (LEN) = sdl->sdl_nlen; \
121 } \
122 (PNT) += len; \
123 } \
124 else \
125 { \
126 (LEN) = 0; \
127 }
paul718e3742002-12-13 20:15:29 +0000128/* Routing socket message types. */
129struct message rtm_type_str[] =
130{
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"},
Greg Troxel9458b812006-09-13 12:13:08 +0000139#ifdef OLDADD
paul718e3742002-12-13 20:15:29 +0000140 {RTM_OLDADD, "RTM_OLDADD"},
Greg Troxel9458b812006-09-13 12:13:08 +0000141#endif /* RTM_OLDADD */
142#ifdef RTM_OLDDEL
paul718e3742002-12-13 20:15:29 +0000143 {RTM_OLDDEL, "RTM_OLDDEL"},
Greg Troxel9458b812006-09-13 12:13:08 +0000144#endif /* RTM_OLDDEL */
paul718e3742002-12-13 20:15:29 +0000145 {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}
162};
163
164struct message rtm_flag_str[] =
165{
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"},
paul6fe70d12005-11-12 22:55:10 +0000181#ifdef RTF_PRIVATE
182 {RTF_PRIVATE, "PRIVATE"},
183#endif /* RTF_PRIVATE */
paul718e3742002-12-13 20:15:29 +0000184 {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 */
paul6fe70d12005-11-12 22:55:10 +0000207#ifdef RTF_MULTIRT
208 {RTF_MULTIRT, "MULTIRT"},
209#endif /* RTF_MULTIRT */
210#ifdef RTF_SETSRC
211 {RTF_SETSRC, "SETSRC"},
212#endif /* RTF_SETSRC */
paul718e3742002-12-13 20:15:29 +0000213 {0, NULL}
214};
215
216/* Kernel routing update socket. */
217int routing_sock = -1;
218
219/* Yes I'm checking ugly routing socket behavior. */
220/* #define DEBUG */
221
222/* Supported address family check. */
paul62debbb2005-06-14 14:07:07 +0000223static int inline
paul718e3742002-12-13 20:15:29 +0000224af_check (int family)
225{
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;
233}
234
235/* Dump routing table flag for debug purpose. */
ajsb6178002004-12-07 21:12:56 +0000236static void
paul718e3742002-12-13 20:15:29 +0000237rtm_flag_dump (int flag)
238{
239 struct message *mes;
240 static char buf[BUFSIZ];
241
gdtcced60d2004-07-13 16:45:54 +0000242 buf[0] = '\0';
paul718e3742002-12-13 20:15:29 +0000243 for (mes = rtm_flag_str; mes->key != 0; mes++)
244 {
245 if (mes->key & flag)
246 {
247 strlcat (buf, mes->str, BUFSIZ);
248 strlcat (buf, " ", BUFSIZ);
249 }
250 }
ajsb6178002004-12-07 21:12:56 +0000251 zlog_debug ("Kernel: %s", buf);
paul718e3742002-12-13 20:15:29 +0000252}
253
254#ifdef RTM_IFANNOUNCE
255/* Interface adding function */
paul6621ca82005-11-23 13:02:08 +0000256static int
paul718e3742002-12-13 20:15:29 +0000257ifan_read (struct if_announcemsghdr *ifan)
258{
259 struct interface *ifp;
paul6fe70d12005-11-12 22:55:10 +0000260
paul718e3742002-12-13 20:15:29 +0000261 ifp = if_lookup_by_index (ifan->ifan_index);
paul6fe70d12005-11-12 22:55:10 +0000262
263 if (ifp)
264 assert ( (ifp->ifindex == ifan->ifan_index)
265 || (ifp->ifindex == IFINDEX_INTERNAL) );
266
paulec1a4282005-11-24 15:15:17 +0000267 if ( (ifp == NULL)
268 || ((ifp->ifindex == IFINDEX_INTERNAL)
269 && (ifan->ifan_what == IFAN_ARRIVAL)) )
paul718e3742002-12-13 20:15:29 +0000270 {
paul6fe70d12005-11-12 22:55:10 +0000271 if (IS_ZEBRA_DEBUG_KERNEL)
272 zlog_debug ("%s: creating interface for ifindex %d, name %s",
273 __func__, ifan->ifan_index, ifan->ifan_name);
274
paul718e3742002-12-13 20:15:29 +0000275 /* Create Interface */
ajs08dbfb62005-04-03 03:40:52 +0000276 ifp = if_get_by_name_len(ifan->ifan_name,
277 strnlen(ifan->ifan_name,
278 sizeof(ifan->ifan_name)));
paul718e3742002-12-13 20:15:29 +0000279 ifp->ifindex = ifan->ifan_index;
280
281 if_add_update (ifp);
282 }
283 else if (ifp != NULL && ifan->ifan_what == IFAN_DEPARTURE)
paul6eb88272005-07-29 14:36:00 +0000284 if_delete_update (ifp);
paul718e3742002-12-13 20:15:29 +0000285
286 if_get_flags (ifp);
287 if_get_mtu (ifp);
288 if_get_metric (ifp);
289
290 if (IS_ZEBRA_DEBUG_KERNEL)
paul6fe70d12005-11-12 22:55:10 +0000291 zlog_debug ("%s: interface %s index %d",
292 __func__, ifan->ifan_name, ifan->ifan_index);
paul718e3742002-12-13 20:15:29 +0000293
294 return 0;
295}
296#endif /* RTM_IFANNOUNCE */
297
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000298#ifdef HAVE_BSD_LINK_DETECT
299/* BSD link detect translation */
300static void
301bsd_linkdetect_translate (struct if_msghdr *ifm)
302{
303 if (ifm->ifm_data.ifi_link_state >= LINK_STATE_UP)
304 SET_FLAG(ifm->ifm_flags, IFF_RUNNING);
305 else
306 UNSET_FLAG(ifm->ifm_flags, IFF_RUNNING);
307}
308#endif /* HAVE_BSD_LINK_DETECT */
309
gdtda26e3b2004-01-05 17:20:59 +0000310/*
311 * Handle struct if_msghdr obtained from reading routing socket or
312 * sysctl (from interface_list). There may or may not be sockaddrs
313 * present after the header.
314 */
paulec1a4282005-11-24 15:15:17 +0000315int
paul718e3742002-12-13 20:15:29 +0000316ifm_read (struct if_msghdr *ifm)
317{
paul3e95a072003-09-24 00:05:45 +0000318 struct interface *ifp = NULL;
paul6fe70d12005-11-12 22:55:10 +0000319 char ifname[IFNAMSIZ];
320 short ifnlen = 0;
paul0994c3a2005-11-11 09:52:40 +0000321 caddr_t *cp;
paul6fe70d12005-11-12 22:55:10 +0000322
323 /* terminate ifname at head (for strnlen) and tail (for safety) */
324 ifname[IFNAMSIZ - 1] = '\0';
325
gdtda26e3b2004-01-05 17:20:59 +0000326 /* paranoia: sanity check structure */
327 if (ifm->ifm_msglen < sizeof(struct if_msghdr))
328 {
329 zlog_err ("ifm_read: ifm->ifm_msglen %d too short\n",
330 ifm->ifm_msglen);
331 return -1;
332 }
333
334 /*
gdt4bfbea82004-01-06 01:13:05 +0000335 * Check for a sockaddr_dl following the message. First, point to
336 * where a socakddr might be if one follows the message.
gdtda26e3b2004-01-05 17:20:59 +0000337 */
gdt4bfbea82004-01-06 01:13:05 +0000338 cp = (void *)(ifm + 1);
339
paul3e95a072003-09-24 00:05:45 +0000340#ifdef SUNOS_5
paul3e95a072003-09-24 00:05:45 +0000341 /*
gdt4bfbea82004-01-06 01:13:05 +0000342 * XXX This behavior should be narrowed to only the kernel versions
343 * for which the structures returned do not match the headers.
344 *
paul3e95a072003-09-24 00:05:45 +0000345 * if_msghdr_t on 64 bit kernels in Solaris 9 and earlier versions
gdt4bfbea82004-01-06 01:13:05 +0000346 * is 12 bytes larger than the 32 bit version.
paul3e95a072003-09-24 00:05:45 +0000347 */
gdt4bfbea82004-01-06 01:13:05 +0000348 if (((struct sockaddr *) cp)->sa_family == AF_UNSPEC)
paul3e95a072003-09-24 00:05:45 +0000349 cp = cp + 12;
paul3e95a072003-09-24 00:05:45 +0000350#endif
paul718e3742002-12-13 20:15:29 +0000351
paul6fe70d12005-11-12 22:55:10 +0000352 RTA_ADDR_GET (NULL, RTA_DST, ifm->ifm_addrs, cp);
353 RTA_ADDR_GET (NULL, RTA_GATEWAY, ifm->ifm_addrs, cp);
354 RTA_ATTR_GET (NULL, RTA_NETMASK, ifm->ifm_addrs, cp);
355 RTA_ADDR_GET (NULL, RTA_GENMASK, ifm->ifm_addrs, cp);
356 RTA_NAME_GET (ifname, RTA_IFP, ifm->ifm_addrs, cp, ifnlen);
357 RTA_ADDR_GET (NULL, RTA_IFA, ifm->ifm_addrs, cp);
358 RTA_ADDR_GET (NULL, RTA_AUTHOR, ifm->ifm_addrs, cp);
359 RTA_ADDR_GET (NULL, RTA_BRD, ifm->ifm_addrs, cp);
360
361 if (IS_ZEBRA_DEBUG_KERNEL)
362 zlog_debug ("%s: sdl ifname %s", __func__, (ifnlen ? ifname : "(nil)"));
363
gdt4bfbea82004-01-06 01:13:05 +0000364 /*
paul6fe70d12005-11-12 22:55:10 +0000365 * Look up on ifindex first, because ifindices are the primary handle for
366 * interfaces across the user/kernel boundary, for most systems. (Some
367 * messages, such as up/down status changes on NetBSD, do not include a
368 * sockaddr_dl).
gdt4bfbea82004-01-06 01:13:05 +0000369 */
paul6fe70d12005-11-12 22:55:10 +0000370 if ( (ifp = if_lookup_by_index (ifm->ifm_index)) != NULL )
gdt4bfbea82004-01-06 01:13:05 +0000371 {
paul6fe70d12005-11-12 22:55:10 +0000372 /* we have an ifp, verify that the name matches as some systems,
373 * eg Solaris, have a 1:many association of ifindex:ifname
374 * if they dont match, we dont have the correct ifp and should
375 * set it back to NULL to let next check do lookup by name
376 */
377 if (ifnlen && (strncmp (ifp->name, ifname, IFNAMSIZ) != 0) )
gdt4bfbea82004-01-06 01:13:05 +0000378 {
paul6fe70d12005-11-12 22:55:10 +0000379 if (IS_ZEBRA_DEBUG_KERNEL)
380 zlog_debug ("%s: ifp name %s doesnt match sdl name %s",
381 __func__, ifp->name, ifname);
382 ifp = NULL;
gdt4bfbea82004-01-06 01:13:05 +0000383 }
384 }
paul6fe70d12005-11-12 22:55:10 +0000385
gdtda26e3b2004-01-05 17:20:59 +0000386 /*
paul6fe70d12005-11-12 22:55:10 +0000387 * If we dont have an ifp, try looking up by name. Particularly as some
388 * systems (Solaris) have a 1:many mapping of ifindex:ifname - the ifname
389 * is therefore our unique handle to that interface.
390 *
391 * Interfaces specified in the configuration file for which the ifindex
392 * has not been determined will have ifindex == IFINDEX_INTERNAL, and such
393 * interfaces are found by this search, and then their ifindex values can
394 * be filled in.
gdtda26e3b2004-01-05 17:20:59 +0000395 */
paul6fe70d12005-11-12 22:55:10 +0000396 if ( (ifp == NULL) && ifnlen)
397 ifp = if_lookup_by_name (ifname);
paul718e3742002-12-13 20:15:29 +0000398
gdtda26e3b2004-01-05 17:20:59 +0000399 /*
paul6fe70d12005-11-12 22:55:10 +0000400 * If ifp still does not exist or has an invalid index (IFINDEX_INTERNAL),
401 * create or fill in an interface.
gdtda26e3b2004-01-05 17:20:59 +0000402 */
ajsd2fc8892005-04-02 18:38:43 +0000403 if ((ifp == NULL) || (ifp->ifindex == IFINDEX_INTERNAL))
paul718e3742002-12-13 20:15:29 +0000404 {
gdt4bfbea82004-01-06 01:13:05 +0000405 /*
406 * To create or fill in an interface, a sockaddr_dl (via
407 * RTA_IFP) is required.
408 */
paul6fe70d12005-11-12 22:55:10 +0000409 if (!ifnlen)
paul718e3742002-12-13 20:15:29 +0000410 {
paul6fe70d12005-11-12 22:55:10 +0000411 zlog_warn ("Interface index %d (new) missing ifname\n",
paul718e3742002-12-13 20:15:29 +0000412 ifm->ifm_index);
413 return -1;
414 }
paul5c78b3d2006-01-25 04:31:40 +0000415
416#ifndef RTM_IFANNOUNCE
417 /* Down->Down interface should be ignored here.
418 * See further comment below.
419 */
420 if (!CHECK_FLAG (ifm->ifm_flags, IFF_UP))
421 return 0;
422#endif /* !RTM_IFANNOUNCE */
paul6fe70d12005-11-12 22:55:10 +0000423
paul3e95a072003-09-24 00:05:45 +0000424 if (ifp == NULL)
paul6fe70d12005-11-12 22:55:10 +0000425 {
426 /* Interface that zebra was not previously aware of, so create. */
427 ifp = if_create (ifname, ifnlen);
428 if (IS_ZEBRA_DEBUG_KERNEL)
429 zlog_debug ("%s: creating ifp for ifindex %d",
430 __func__, ifm->ifm_index);
431 }
paul718e3742002-12-13 20:15:29 +0000432
paul6fe70d12005-11-12 22:55:10 +0000433 if (IS_ZEBRA_DEBUG_KERNEL)
434 zlog_debug ("%s: updated/created ifp, ifname %s, ifindex %d",
435 __func__, ifp->name, ifp->ifindex);
gdt4bfbea82004-01-06 01:13:05 +0000436 /*
437 * Fill in newly created interface structure, or larval
ajsd2fc8892005-04-02 18:38:43 +0000438 * structure with ifindex IFINDEX_INTERNAL.
gdt4bfbea82004-01-06 01:13:05 +0000439 */
paul718e3742002-12-13 20:15:29 +0000440 ifp->ifindex = ifm->ifm_index;
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000441
442#ifdef HAVE_BSD_LINK_DETECT /* translate BSD kernel msg for link-state */
443 bsd_linkdetect_translate(ifm);
444#endif /* HAVE_BSD_LINK_DETECT */
445
paul5c78b3d2006-01-25 04:31:40 +0000446 if_flags_update (ifp, ifm->ifm_flags);
paul718e3742002-12-13 20:15:29 +0000447#if defined(__bsdi__)
448 if_kvm_get_mtu (ifp);
449#else
450 if_get_mtu (ifp);
451#endif /* __bsdi__ */
452 if_get_metric (ifp);
453
paul718e3742002-12-13 20:15:29 +0000454 if_add_update (ifp);
455 }
456 else
gdtda26e3b2004-01-05 17:20:59 +0000457 /*
458 * Interface structure exists. Adjust stored flags from
459 * notification. If interface has up->down or down->up
460 * transition, call state change routines (to adjust routes,
461 * notify routing daemons, etc.). (Other flag changes are stored
462 * but apparently do not trigger action.)
463 */
paul718e3742002-12-13 20:15:29 +0000464 {
paul6fe70d12005-11-12 22:55:10 +0000465 if (ifp->ifindex != ifm->ifm_index)
466 {
467 zlog_warn ("%s: index mismatch, ifname %s, ifp index %d, "
468 "ifm index %d",
469 __func__, ifp->name, ifp->ifindex, ifm->ifm_index);
470 return -1;
471 }
472
Andrew J. Schorrc543a172008-01-10 15:24:32 +0000473#ifdef HAVE_BSD_LINK_DETECT /* translate BSD kernel msg for link-state */
474 bsd_linkdetect_translate(ifm);
475#endif /* HAVE_BSD_LINK_DETECT */
476
paul5c78b3d2006-01-25 04:31:40 +0000477 /* update flags and handle operative->inoperative transition, if any */
478 if_flags_update (ifp, ifm->ifm_flags);
479
paul6eb88272005-07-29 14:36:00 +0000480#ifndef RTM_IFANNOUNCE
paul5c78b3d2006-01-25 04:31:40 +0000481 if (!if_is_up (ifp))
482 {
483 /* No RTM_IFANNOUNCE on this platform, so we can never
484 * distinguish between ~IFF_UP and delete. We must presume
485 * it has been deleted.
486 * Eg, Solaris will not notify us of unplumb.
487 *
488 * XXX: Fixme - this should be runtime detected
489 * So that a binary compiled on a system with IFANNOUNCE
490 * will still behave correctly if run on a platform without
491 */
492 if_delete_update (ifp);
493 }
paul6eb88272005-07-29 14:36:00 +0000494#endif /* RTM_IFANNOUNCE */
Denis Ovsienko1ba27562007-08-21 16:15:39 +0000495 if (if_is_up (ifp))
496 {
497#if defined(__bsdi__)
498 if_kvm_get_mtu (ifp);
499#else
500 if_get_mtu (ifp);
501#endif /* __bsdi__ */
502 if_get_metric (ifp);
503 }
paul718e3742002-12-13 20:15:29 +0000504 }
paul5c78b3d2006-01-25 04:31:40 +0000505
paul718e3742002-12-13 20:15:29 +0000506#ifdef HAVE_NET_RT_IFLIST
507 ifp->stats = ifm->ifm_data;
508#endif /* HAVE_NET_RT_IFLIST */
509
510 if (IS_ZEBRA_DEBUG_KERNEL)
paul6fe70d12005-11-12 22:55:10 +0000511 zlog_debug ("%s: interface %s index %d",
512 __func__, ifp->name, ifp->ifindex);
paul718e3742002-12-13 20:15:29 +0000513
514 return 0;
515}
516
517/* Address read from struct ifa_msghdr. */
paul6621ca82005-11-23 13:02:08 +0000518static void
paul718e3742002-12-13 20:15:29 +0000519ifam_read_mesg (struct ifa_msghdr *ifm,
520 union sockunion *addr,
521 union sockunion *mask,
paul6fe70d12005-11-12 22:55:10 +0000522 union sockunion *brd,
523 char *ifname,
524 short *ifnlen)
paul718e3742002-12-13 20:15:29 +0000525{
526 caddr_t pnt, end;
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000527 union sockunion dst;
528 union sockunion gateway;
paul718e3742002-12-13 20:15:29 +0000529
530 pnt = (caddr_t)(ifm + 1);
531 end = ((caddr_t)ifm) + ifm->ifam_msglen;
532
paul718e3742002-12-13 20:15:29 +0000533 /* Be sure structure is cleared */
534 memset (mask, 0, sizeof (union sockunion));
535 memset (addr, 0, sizeof (union sockunion));
paul6621ca82005-11-23 13:02:08 +0000536 memset (brd, 0, sizeof (union sockunion));
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000537 memset (&dst, 0, sizeof (union sockunion));
538 memset (&gateway, 0, sizeof (union sockunion));
paul718e3742002-12-13 20:15:29 +0000539
540 /* We fetch each socket variable into sockunion. */
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000541 RTA_ADDR_GET (&dst, RTA_DST, ifm->ifam_addrs, pnt);
542 RTA_ADDR_GET (&gateway, RTA_GATEWAY, ifm->ifam_addrs, pnt);
paul62debbb2005-06-14 14:07:07 +0000543 RTA_ATTR_GET (mask, RTA_NETMASK, ifm->ifam_addrs, pnt);
544 RTA_ADDR_GET (NULL, RTA_GENMASK, ifm->ifam_addrs, pnt);
paul6fe70d12005-11-12 22:55:10 +0000545 RTA_NAME_GET (ifname, RTA_IFP, ifm->ifam_addrs, pnt, *ifnlen);
paul62debbb2005-06-14 14:07:07 +0000546 RTA_ADDR_GET (addr, RTA_IFA, ifm->ifam_addrs, pnt);
547 RTA_ADDR_GET (NULL, RTA_AUTHOR, ifm->ifam_addrs, pnt);
paul6fe70d12005-11-12 22:55:10 +0000548 RTA_ADDR_GET (brd, RTA_BRD, ifm->ifam_addrs, pnt);
paul718e3742002-12-13 20:15:29 +0000549
paul6fe70d12005-11-12 22:55:10 +0000550 if (IS_ZEBRA_DEBUG_KERNEL)
Andrew J. Schorr55196042006-05-17 15:04:59 +0000551 {
552 switch (sockunion_family(addr))
553 {
554 case AF_INET:
555 {
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000556 char buf[4][INET_ADDRSTRLEN];
Andrew J. Schorr55196042006-05-17 15:04:59 +0000557 zlog_debug ("%s: ifindex %d, ifname %s, ifam_addrs 0x%x, "
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000558 "ifam_flags 0x%x, addr %s/%d broad %s dst %s "
559 "gateway %s",
560 __func__, ifm->ifam_index,
Andrew J. Schorr55196042006-05-17 15:04:59 +0000561 (ifnlen ? ifname : "(nil)"), ifm->ifam_addrs,
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000562 ifm->ifam_flags,
Andrew J. Schorr55196042006-05-17 15:04:59 +0000563 inet_ntop(AF_INET,&addr->sin.sin_addr,
564 buf[0],sizeof(buf[0])),
565 ip_masklen(mask->sin.sin_addr),
566 inet_ntop(AF_INET,&brd->sin.sin_addr,
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000567 buf[1],sizeof(buf[1])),
568 inet_ntop(AF_INET,&dst.sin.sin_addr,
569 buf[2],sizeof(buf[2])),
570 inet_ntop(AF_INET,&gateway.sin.sin_addr,
571 buf[3],sizeof(buf[3])));
Andrew J. Schorr55196042006-05-17 15:04:59 +0000572 }
573 break;
574#ifdef HAVE_IPV6
575 case AF_INET6:
576 {
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000577 char buf[4][INET6_ADDRSTRLEN];
Andrew J. Schorr55196042006-05-17 15:04:59 +0000578 zlog_debug ("%s: ifindex %d, ifname %s, ifam_addrs 0x%x, "
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000579 "ifam_flags 0x%x, addr %s/%d broad %s dst %s "
580 "gateway %s",
Andrew J. Schorr55196042006-05-17 15:04:59 +0000581 __func__, ifm->ifam_index,
582 (ifnlen ? ifname : "(nil)"), ifm->ifam_addrs,
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000583 ifm->ifam_flags,
Andrew J. Schorr55196042006-05-17 15:04:59 +0000584 inet_ntop(AF_INET6,&addr->sin6.sin6_addr,
585 buf[0],sizeof(buf[0])),
586 ip6_masklen(mask->sin6.sin6_addr),
587 inet_ntop(AF_INET6,&brd->sin6.sin6_addr,
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000588 buf[1],sizeof(buf[1])),
589 inet_ntop(AF_INET6,&dst.sin6.sin6_addr,
590 buf[2],sizeof(buf[2])),
591 inet_ntop(AF_INET6,&gateway.sin6.sin6_addr,
592 buf[3],sizeof(buf[3])));
Andrew J. Schorr55196042006-05-17 15:04:59 +0000593 }
594 break;
595#endif /* HAVE_IPV6 */
596 default:
597 zlog_debug ("%s: ifindex %d, ifname %s, ifam_addrs 0x%x",
598 __func__, ifm->ifam_index,
599 (ifnlen ? ifname : "(nil)"), ifm->ifam_addrs);
600 break;
601 }
602 }
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000603
paul718e3742002-12-13 20:15:29 +0000604 /* Assert read up end point matches to end point */
605 if (pnt != end)
606 zlog_warn ("ifam_read() does't read all socket data");
607}
608
609/* Interface's address information get. */
paulec1a4282005-11-24 15:15:17 +0000610int
paul718e3742002-12-13 20:15:29 +0000611ifam_read (struct ifa_msghdr *ifam)
612{
paul6fe70d12005-11-12 22:55:10 +0000613 struct interface *ifp = NULL;
paul0752ef02005-11-03 12:35:21 +0000614 union sockunion addr, mask, brd;
paul6fe70d12005-11-12 22:55:10 +0000615 char ifname[INTERFACE_NAMSIZ];
616 short ifnlen = 0;
617 char isalias = 0;
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000618 int flags = 0;
paul6fe70d12005-11-12 22:55:10 +0000619
620 ifname[0] = ifname[INTERFACE_NAMSIZ - 1] = '\0';
621
622 /* Allocate and read address information. */
623 ifam_read_mesg (ifam, &addr, &mask, &brd, ifname, &ifnlen);
624
625 if ((ifp = if_lookup_by_index(ifam->ifam_index)) == NULL)
paul718e3742002-12-13 20:15:29 +0000626 {
paul6fe70d12005-11-12 22:55:10 +0000627 zlog_warn ("%s: no interface for ifname %s, index %d",
628 __func__, ifname, ifam->ifam_index);
paul718e3742002-12-13 20:15:29 +0000629 return -1;
630 }
paul6fe70d12005-11-12 22:55:10 +0000631
632 if (ifnlen && strncmp (ifp->name, ifname, INTERFACE_NAMSIZ))
633 isalias = 1;
634
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000635 /* N.B. The info in ifa_msghdr does not tell us whether the RTA_BRD
636 field contains a broadcast address or a peer address, so we are forced to
637 rely upon the interface type. */
638 if (if_is_pointopoint(ifp))
639 SET_FLAG(flags, ZEBRA_IFA_PEER);
640
Paul Jakma65022082007-03-06 13:43:05 +0000641#if 0
642 /* it might seem cute to grab the interface metric here, however
643 * we're processing an address update message, and so some systems
644 * (e.g. FBSD) dont bother to fill in ifam_metric. Disabled, but left
645 * in deliberately, as comment.
646 */
pauld34b8992006-01-17 18:03:04 +0000647 ifp->metric = ifam->ifam_metric;
Paul Jakma65022082007-03-06 13:43:05 +0000648#endif
649
paul718e3742002-12-13 20:15:29 +0000650 /* Add connected address. */
651 switch (sockunion_family (&addr))
652 {
653 case AF_INET:
654 if (ifam->ifam_type == RTM_NEWADDR)
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000655 connected_add_ipv4 (ifp, flags, &addr.sin.sin_addr,
paul718e3742002-12-13 20:15:29 +0000656 ip_masklen (mask.sin.sin_addr),
pauld34b8992006-01-17 18:03:04 +0000657 &brd.sin.sin_addr,
658 (isalias ? ifname : NULL));
paul718e3742002-12-13 20:15:29 +0000659 else
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000660 connected_delete_ipv4 (ifp, flags, &addr.sin.sin_addr,
paul718e3742002-12-13 20:15:29 +0000661 ip_masklen (mask.sin.sin_addr),
paul0752ef02005-11-03 12:35:21 +0000662 &brd.sin.sin_addr);
paul718e3742002-12-13 20:15:29 +0000663 break;
664#ifdef HAVE_IPV6
665 case AF_INET6:
666 /* Unset interface index from link-local address when IPv6 stack
667 is KAME. */
668 if (IN6_IS_ADDR_LINKLOCAL (&addr.sin6.sin6_addr))
669 SET_IN6_LINKLOCAL_IFINDEX (addr.sin6.sin6_addr, 0);
670
671 if (ifam->ifam_type == RTM_NEWADDR)
Andrew J. Schorr7ab62c52007-05-17 15:00:41 +0000672 connected_add_ipv6 (ifp, flags, &addr.sin6.sin6_addr,
paul718e3742002-12-13 20:15:29 +0000673 ip6_masklen (mask.sin6.sin6_addr),
pauld34b8992006-01-17 18:03:04 +0000674 &brd.sin6.sin6_addr,
675 (isalias ? ifname : NULL));
paul718e3742002-12-13 20:15:29 +0000676 else
677 connected_delete_ipv6 (ifp,
678 &addr.sin6.sin6_addr,
679 ip6_masklen (mask.sin6.sin6_addr),
paul0752ef02005-11-03 12:35:21 +0000680 &brd.sin6.sin6_addr);
paul718e3742002-12-13 20:15:29 +0000681 break;
682#endif /* HAVE_IPV6 */
683 default:
684 /* Unsupported family silently ignore... */
685 break;
686 }
paul5c78b3d2006-01-25 04:31:40 +0000687
688 /* Check interface flag for implicit up of the interface. */
689 if_refresh (ifp);
690
691#ifdef SUNOS_5
692 /* In addition to lacking IFANNOUNCE, on SUNOS IFF_UP is strange.
693 * See comments for SUNOS_5 in interface.c::if_flags_mangle.
694 *
695 * Here we take care of case where the real IFF_UP was previously
696 * unset (as kept in struct zebra_if.primary_state) and the mangled
697 * IFF_UP (ie IFF_UP set || listcount(connected) has now transitioned
698 * to unset due to the lost non-primary address having DELADDR'd.
699 *
700 * we must delete the interface, because in between here and next
701 * event for this interface-name the administrator could unplumb
702 * and replumb the interface.
703 */
704 if (!if_is_up (ifp))
705 if_delete_update (ifp);
706#endif /* SUNOS_5 */
707
paul718e3742002-12-13 20:15:29 +0000708 return 0;
709}
710
711/* Interface function for reading kernel routing table information. */
paul6621ca82005-11-23 13:02:08 +0000712static int
paul718e3742002-12-13 20:15:29 +0000713rtm_read_mesg (struct rt_msghdr *rtm,
714 union sockunion *dest,
715 union sockunion *mask,
paul6fe70d12005-11-12 22:55:10 +0000716 union sockunion *gate,
717 char *ifname,
718 short *ifnlen)
paul718e3742002-12-13 20:15:29 +0000719{
720 caddr_t pnt, end;
721
722 /* Pnt points out socket data start point. */
723 pnt = (caddr_t)(rtm + 1);
724 end = ((caddr_t)rtm) + rtm->rtm_msglen;
725
726 /* rt_msghdr version check. */
727 if (rtm->rtm_version != RTM_VERSION)
728 zlog (NULL, LOG_WARNING,
729 "Routing message version different %d should be %d."
730 "This may cause problem\n", rtm->rtm_version, RTM_VERSION);
paul62debbb2005-06-14 14:07:07 +0000731
paul718e3742002-12-13 20:15:29 +0000732 /* Be sure structure is cleared */
733 memset (dest, 0, sizeof (union sockunion));
734 memset (gate, 0, sizeof (union sockunion));
735 memset (mask, 0, sizeof (union sockunion));
736
737 /* We fetch each socket variable into sockunion. */
paul62debbb2005-06-14 14:07:07 +0000738 RTA_ADDR_GET (dest, RTA_DST, rtm->rtm_addrs, pnt);
739 RTA_ADDR_GET (gate, RTA_GATEWAY, rtm->rtm_addrs, pnt);
740 RTA_ATTR_GET (mask, RTA_NETMASK, rtm->rtm_addrs, pnt);
741 RTA_ADDR_GET (NULL, RTA_GENMASK, rtm->rtm_addrs, pnt);
paul6fe70d12005-11-12 22:55:10 +0000742 RTA_NAME_GET (ifname, RTA_IFP, rtm->rtm_addrs, pnt, *ifnlen);
paul62debbb2005-06-14 14:07:07 +0000743 RTA_ADDR_GET (NULL, RTA_IFA, rtm->rtm_addrs, pnt);
744 RTA_ADDR_GET (NULL, RTA_AUTHOR, rtm->rtm_addrs, pnt);
745 RTA_ADDR_GET (NULL, RTA_BRD, rtm->rtm_addrs, pnt);
paul718e3742002-12-13 20:15:29 +0000746
747 /* If there is netmask information set it's family same as
748 destination family*/
749 if (rtm->rtm_addrs & RTA_NETMASK)
750 mask->sa.sa_family = dest->sa.sa_family;
751
752 /* Assert read up to the end of pointer. */
753 if (pnt != end)
754 zlog (NULL, LOG_WARNING, "rtm_read() does't read all socket data.");
755
756 return rtm->rtm_flags;
757}
758
paulec1a4282005-11-24 15:15:17 +0000759void
paul718e3742002-12-13 20:15:29 +0000760rtm_read (struct rt_msghdr *rtm)
761{
762 int flags;
763 u_char zebra_flags;
764 union sockunion dest, mask, gate;
paul6fe70d12005-11-12 22:55:10 +0000765 char ifname[INTERFACE_NAMSIZ + 1];
766 short ifnlen = 0;
paul718e3742002-12-13 20:15:29 +0000767
768 zebra_flags = 0;
769
paul718e3742002-12-13 20:15:29 +0000770 /* Read destination and netmask and gateway from rtm message
771 structure. */
paul6fe70d12005-11-12 22:55:10 +0000772 flags = rtm_read_mesg (rtm, &dest, &mask, &gate, ifname, &ifnlen);
Denis Ovsienko6da59802007-08-17 14:16:30 +0000773 if (!(flags & RTF_DONE))
774 return;
Denis Ovsienkodc958242007-08-13 16:03:06 +0000775 if (IS_ZEBRA_DEBUG_KERNEL)
776 zlog_debug ("%s: got rtm of type %d (%s)", __func__, rtm->rtm_type,
Denis Ovsienko2d844522007-09-14 11:31:55 +0000777 lookup (rtm_type_str, rtm->rtm_type));
paul718e3742002-12-13 20:15:29 +0000778
779#ifdef RTF_CLONED /*bsdi, netbsd 1.6*/
780 if (flags & RTF_CLONED)
781 return;
782#endif
783#ifdef RTF_WASCLONED /*freebsd*/
784 if (flags & RTF_WASCLONED)
785 return;
786#endif
787
788 if ((rtm->rtm_type == RTM_ADD) && ! (flags & RTF_UP))
789 return;
790
791 /* This is connected route. */
792 if (! (flags & RTF_GATEWAY))
793 return;
794
795 if (flags & RTF_PROTO1)
796 SET_FLAG (zebra_flags, ZEBRA_FLAG_SELFROUTE);
797
798 /* This is persistent route. */
799 if (flags & RTF_STATIC)
800 SET_FLAG (zebra_flags, ZEBRA_FLAG_STATIC);
801
hasso81dfcaa2003-05-25 19:21:25 +0000802 /* This is a reject or blackhole route */
803 if (flags & RTF_REJECT)
804 SET_FLAG (zebra_flags, ZEBRA_FLAG_REJECT);
805 if (flags & RTF_BLACKHOLE)
806 SET_FLAG (zebra_flags, ZEBRA_FLAG_BLACKHOLE);
807
paul718e3742002-12-13 20:15:29 +0000808 if (dest.sa.sa_family == AF_INET)
809 {
810 struct prefix_ipv4 p;
811
812 p.family = AF_INET;
813 p.prefix = dest.sin.sin_addr;
814 if (flags & RTF_HOST)
815 p.prefixlen = IPV4_MAX_PREFIXLEN;
816 else
817 p.prefixlen = ip_masklen (mask.sin.sin_addr);
paulca162182005-09-12 16:58:52 +0000818
Denis Ovsienkodc958242007-08-13 16:03:06 +0000819 /* Catch self originated messages and match them against our current RIB.
820 * At the same time, ignore unconfirmed messages, they should be tracked
821 * by rtm_write() and kernel_rtm_ipv4().
822 */
Denis Ovsienko96934e62007-09-14 14:56:28 +0000823 if (rtm->rtm_type != RTM_GET && rtm->rtm_pid == pid)
Denis Ovsienkodc958242007-08-13 16:03:06 +0000824 {
825 char buf[INET_ADDRSTRLEN], gate_buf[INET_ADDRSTRLEN];
826 int ret;
Denis Ovsienkodc958242007-08-13 16:03:06 +0000827 if (! IS_ZEBRA_DEBUG_RIB)
828 return;
829 ret = rib_lookup_ipv4_route (&p, &gate);
830 inet_ntop (AF_INET, &p.prefix, buf, INET_ADDRSTRLEN);
831 switch (rtm->rtm_type)
832 {
833 case RTM_ADD:
834 case RTM_GET:
835 case RTM_CHANGE:
836 /* The kernel notifies us about a new route in FIB created by us.
837 Do we have a correspondent entry in our RIB? */
838 switch (ret)
839 {
840 case ZEBRA_RIB_NOTFOUND:
841 zlog_debug ("%s: %s %s/%d: desync: RR isn't yet in RIB, while already in FIB",
Denis Ovsienko2d844522007-09-14 11:31:55 +0000842 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
Denis Ovsienkodc958242007-08-13 16:03:06 +0000843 break;
844 case ZEBRA_RIB_FOUND_CONNECTED:
845 case ZEBRA_RIB_FOUND_NOGATE:
846 inet_ntop (AF_INET, &gate.sin.sin_addr, gate_buf, INET_ADDRSTRLEN);
847 zlog_debug ("%s: %s %s/%d: desync: RR is in RIB, but gate differs (ours is %s)",
Denis Ovsienko2d844522007-09-14 11:31:55 +0000848 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen, gate_buf);
Denis Ovsienkodc958242007-08-13 16:03:06 +0000849 break;
850 case ZEBRA_RIB_FOUND_EXACT: /* RIB RR == FIB RR */
851 zlog_debug ("%s: %s %s/%d: done Ok",
Denis Ovsienko2d844522007-09-14 11:31:55 +0000852 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
Denis Ovsienkodc958242007-08-13 16:03:06 +0000853 rib_lookup_and_dump (&p);
854 return;
855 break;
856 }
857 break;
858 case RTM_DELETE:
859 /* The kernel notifies us about a route deleted by us. Do we still
860 have it in the RIB? Do we have anything instead? */
861 switch (ret)
862 {
863 case ZEBRA_RIB_FOUND_EXACT:
864 zlog_debug ("%s: %s %s/%d: desync: RR is still in RIB, while already not in FIB",
Denis Ovsienko2d844522007-09-14 11:31:55 +0000865 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
Denis Ovsienkodc958242007-08-13 16:03:06 +0000866 rib_lookup_and_dump (&p);
867 break;
868 case ZEBRA_RIB_FOUND_CONNECTED:
869 case ZEBRA_RIB_FOUND_NOGATE:
870 zlog_debug ("%s: %s %s/%d: desync: RR is still in RIB, plus gate differs",
Denis Ovsienko2d844522007-09-14 11:31:55 +0000871 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
Denis Ovsienkodc958242007-08-13 16:03:06 +0000872 rib_lookup_and_dump (&p);
873 break;
874 case ZEBRA_RIB_NOTFOUND: /* RIB RR == FIB RR */
875 zlog_debug ("%s: %s %s/%d: done Ok",
Denis Ovsienko2d844522007-09-14 11:31:55 +0000876 __func__, lookup (rtm_type_str, rtm->rtm_type), buf, p.prefixlen);
Denis Ovsienkodc958242007-08-13 16:03:06 +0000877 rib_lookup_and_dump (&p);
878 return;
879 break;
880 }
881 break;
882 default:
883 zlog_debug ("%s: %s/%d: warning: loopback RTM of type %s received",
Denis Ovsienko2d844522007-09-14 11:31:55 +0000884 __func__, buf, p.prefixlen, lookup (rtm_type_str, rtm->rtm_type));
Denis Ovsienkodc958242007-08-13 16:03:06 +0000885 }
886 return;
887 }
888
paulca162182005-09-12 16:58:52 +0000889 /* Change, delete the old prefix, we have no further information
890 * to specify the route really
891 */
892 if (rtm->rtm_type == RTM_CHANGE)
893 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags, &p,
894 NULL, 0, 0);
895
896 if (rtm->rtm_type == RTM_GET
897 || rtm->rtm_type == RTM_ADD
898 || rtm->rtm_type == RTM_CHANGE)
paul718e3742002-12-13 20:15:29 +0000899 rib_add_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags,
Paul Jakma7514fb72007-05-02 16:05:35 +0000900 &p, &gate.sin.sin_addr, NULL, 0, 0, 0, 0);
paul718e3742002-12-13 20:15:29 +0000901 else
902 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags,
903 &p, &gate.sin.sin_addr, 0, 0);
904 }
905#ifdef HAVE_IPV6
906 if (dest.sa.sa_family == AF_INET6)
907 {
Denis Ovsienko5619f562007-10-24 13:13:21 +0000908 /* One day we might have a debug section here like one in the
909 * IPv4 case above. Just ignore own messages at the moment.
910 */
911 if (rtm->rtm_type != RTM_GET && rtm->rtm_pid == pid)
912 return;
paul718e3742002-12-13 20:15:29 +0000913 struct prefix_ipv6 p;
914 unsigned int ifindex = 0;
915
916 p.family = AF_INET6;
917 p.prefix = dest.sin6.sin6_addr;
918 if (flags & RTF_HOST)
919 p.prefixlen = IPV6_MAX_PREFIXLEN;
920 else
921 p.prefixlen = ip6_masklen (mask.sin6.sin6_addr);
922
923#ifdef KAME
924 if (IN6_IS_ADDR_LINKLOCAL (&gate.sin6.sin6_addr))
925 {
926 ifindex = IN6_LINKLOCAL_IFINDEX (gate.sin6.sin6_addr);
927 SET_IN6_LINKLOCAL_IFINDEX (gate.sin6.sin6_addr, 0);
928 }
929#endif /* KAME */
930
paulca162182005-09-12 16:58:52 +0000931 /* CHANGE: delete the old prefix, we have no further information
932 * to specify the route really
933 */
934 if (rtm->rtm_type == RTM_CHANGE)
paul6621ca82005-11-23 13:02:08 +0000935 rib_delete_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags, &p,
paulca162182005-09-12 16:58:52 +0000936 NULL, 0, 0);
937
938 if (rtm->rtm_type == RTM_GET
939 || rtm->rtm_type == RTM_ADD
940 || rtm->rtm_type == RTM_CHANGE)
paul718e3742002-12-13 20:15:29 +0000941 rib_add_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags,
hassobe61c4e2005-08-27 06:05:47 +0000942 &p, &gate.sin6.sin6_addr, ifindex, 0, 0, 0);
paul718e3742002-12-13 20:15:29 +0000943 else
944 rib_delete_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags,
945 &p, &gate.sin6.sin6_addr, ifindex, 0);
946 }
947#endif /* HAVE_IPV6 */
948}
949
950/* Interface function for the kernel routing table updates. Support
paul6621ca82005-11-23 13:02:08 +0000951 * for RTM_CHANGE will be needed.
952 * Exported only for rt_socket.c
953 */
paul718e3742002-12-13 20:15:29 +0000954int
955rtm_write (int message,
956 union sockunion *dest,
957 union sockunion *mask,
958 union sockunion *gate,
959 unsigned int index,
960 int zebra_flags,
961 int metric)
962{
963 int ret;
964 caddr_t pnt;
965 struct interface *ifp;
paul718e3742002-12-13 20:15:29 +0000966
967 /* Sequencial number of routing message. */
968 static int msg_seq = 0;
969
970 /* Struct of rt_msghdr and buffer for storing socket's data. */
971 struct
972 {
973 struct rt_msghdr rtm;
974 char buf[512];
975 } msg;
976
paul718e3742002-12-13 20:15:29 +0000977 if (routing_sock < 0)
978 return ZEBRA_ERR_EPERM;
979
980 /* Clear and set rt_msghdr values */
981 memset (&msg, 0, sizeof (struct rt_msghdr));
982 msg.rtm.rtm_version = RTM_VERSION;
983 msg.rtm.rtm_type = message;
984 msg.rtm.rtm_seq = msg_seq++;
985 msg.rtm.rtm_addrs = RTA_DST;
986 msg.rtm.rtm_addrs |= RTA_GATEWAY;
987 msg.rtm.rtm_flags = RTF_UP;
988 msg.rtm.rtm_index = index;
989
990 if (metric != 0)
991 {
992 msg.rtm.rtm_rmx.rmx_hopcount = metric;
993 msg.rtm.rtm_inits |= RTV_HOPCOUNT;
994 }
995
996 ifp = if_lookup_by_index (index);
997
998 if (gate && message == RTM_ADD)
999 msg.rtm.rtm_flags |= RTF_GATEWAY;
1000
1001 if (! gate && message == RTM_ADD && ifp &&
1002 (ifp->flags & IFF_POINTOPOINT) == 0)
1003 msg.rtm.rtm_flags |= RTF_CLONING;
1004
1005 /* If no protocol specific gateway is specified, use link
1006 address for gateway. */
1007 if (! gate)
1008 {
1009 if (!ifp)
1010 {
Denis Ovsienkodc958242007-08-13 16:03:06 +00001011 char dest_buf[INET_ADDRSTRLEN] = "NULL", mask_buf[INET_ADDRSTRLEN] = "255.255.255.255";
1012 if (dest)
1013 inet_ntop (AF_INET, &dest->sin.sin_addr, dest_buf, INET_ADDRSTRLEN);
1014 if (mask)
1015 inet_ntop (AF_INET, &mask->sin.sin_addr, mask_buf, INET_ADDRSTRLEN);
1016 zlog_warn ("%s: %s/%s: gate == NULL and no gateway found for ifindex %d",
1017 __func__, dest_buf, mask_buf, index);
paul718e3742002-12-13 20:15:29 +00001018 return -1;
1019 }
1020 gate = (union sockunion *) & ifp->sdl;
1021 }
1022
1023 if (mask)
1024 msg.rtm.rtm_addrs |= RTA_NETMASK;
1025 else if (message == RTM_ADD)
1026 msg.rtm.rtm_flags |= RTF_HOST;
1027
1028 /* Tagging route with flags */
1029 msg.rtm.rtm_flags |= (RTF_PROTO1);
1030
1031 /* Additional flags. */
1032 if (zebra_flags & ZEBRA_FLAG_BLACKHOLE)
1033 msg.rtm.rtm_flags |= RTF_BLACKHOLE;
hasso81dfcaa2003-05-25 19:21:25 +00001034 if (zebra_flags & ZEBRA_FLAG_REJECT)
1035 msg.rtm.rtm_flags |= RTF_REJECT;
1036
paul718e3742002-12-13 20:15:29 +00001037
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001038#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
paul718e3742002-12-13 20:15:29 +00001039#define SOCKADDRSET(X,R) \
1040 if (msg.rtm.rtm_addrs & (R)) \
1041 { \
1042 int len = ROUNDUP ((X)->sa.sa_len); \
1043 memcpy (pnt, (caddr_t)(X), len); \
1044 pnt += len; \
1045 }
1046#else
1047#define SOCKADDRSET(X,R) \
1048 if (msg.rtm.rtm_addrs & (R)) \
1049 { \
paul6fe70d12005-11-12 22:55:10 +00001050 int len = SAROUNDUP (X); \
paul718e3742002-12-13 20:15:29 +00001051 memcpy (pnt, (caddr_t)(X), len); \
1052 pnt += len; \
1053 }
Paul Jakma6f0e3f62007-05-10 02:38:51 +00001054#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
paul718e3742002-12-13 20:15:29 +00001055
1056 pnt = (caddr_t) msg.buf;
1057
1058 /* Write each socket data into rtm message buffer */
1059 SOCKADDRSET (dest, RTA_DST);
1060 SOCKADDRSET (gate, RTA_GATEWAY);
1061 SOCKADDRSET (mask, RTA_NETMASK);
1062
1063 msg.rtm.rtm_msglen = pnt - (caddr_t) &msg;
1064
1065 ret = write (routing_sock, &msg, msg.rtm.rtm_msglen);
1066
1067 if (ret != msg.rtm.rtm_msglen)
1068 {
1069 if (errno == EEXIST)
1070 return ZEBRA_ERR_RTEXIST;
1071 if (errno == ENETUNREACH)
1072 return ZEBRA_ERR_RTUNREACH;
Denis Ovsienkodc958242007-08-13 16:03:06 +00001073 if (errno == ESRCH)
1074 return ZEBRA_ERR_RTNOEXIST;
paul718e3742002-12-13 20:15:29 +00001075
Denis Ovsienkodc958242007-08-13 16:03:06 +00001076 zlog_warn ("%s: write : %s (%d)", __func__, safe_strerror (errno), errno);
1077 return ZEBRA_ERR_KERNEL;
paul718e3742002-12-13 20:15:29 +00001078 }
Denis Ovsienkodc958242007-08-13 16:03:06 +00001079 return ZEBRA_ERR_NOERROR;
paul718e3742002-12-13 20:15:29 +00001080}
1081
1082
1083#include "thread.h"
1084#include "zebra/zserv.h"
1085
paul718e3742002-12-13 20:15:29 +00001086/* For debug purpose. */
ajsb6178002004-12-07 21:12:56 +00001087static void
paul718e3742002-12-13 20:15:29 +00001088rtmsg_debug (struct rt_msghdr *rtm)
1089{
Denis Ovsienko2d844522007-09-14 11:31:55 +00001090 zlog_debug ("Kernel: Len: %d Type: %s", rtm->rtm_msglen, lookup (rtm_type_str, rtm->rtm_type));
paul718e3742002-12-13 20:15:29 +00001091 rtm_flag_dump (rtm->rtm_flags);
ajsb6178002004-12-07 21:12:56 +00001092 zlog_debug ("Kernel: message seq %d", rtm->rtm_seq);
paul6fe70d12005-11-12 22:55:10 +00001093 zlog_debug ("Kernel: pid %d, rtm_addrs 0x%x", rtm->rtm_pid, rtm->rtm_addrs);
paul718e3742002-12-13 20:15:29 +00001094}
1095
1096/* This is pretty gross, better suggestions welcome -- mhandler */
1097#ifndef RTAX_MAX
1098#ifdef RTA_NUMBITS
1099#define RTAX_MAX RTA_NUMBITS
1100#else
1101#define RTAX_MAX 8
1102#endif /* RTA_NUMBITS */
1103#endif /* RTAX_MAX */
1104
1105/* Kernel routing table and interface updates via routing socket. */
paul6621ca82005-11-23 13:02:08 +00001106static int
paul718e3742002-12-13 20:15:29 +00001107kernel_read (struct thread *thread)
1108{
1109 int sock;
1110 int nbytes;
1111 struct rt_msghdr *rtm;
1112
gdtdbee01f2004-01-06 00:36:51 +00001113 /*
1114 * This must be big enough for any message the kernel might send.
gdtb27900b2004-01-08 15:44:29 +00001115 * Rather than determining how many sockaddrs of what size might be
1116 * in each particular message, just use RTAX_MAX of sockaddr_storage
1117 * for each. Note that the sockaddrs must be after each message
1118 * definition, or rather after whichever happens to be the largest,
1119 * since the buffer needs to be big enough for a message and the
1120 * sockaddrs together.
gdtdbee01f2004-01-06 00:36:51 +00001121 */
paul718e3742002-12-13 20:15:29 +00001122 union
1123 {
1124 /* Routing information. */
1125 struct
1126 {
1127 struct rt_msghdr rtm;
gdtb27900b2004-01-08 15:44:29 +00001128 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +00001129 } r;
1130
1131 /* Interface information. */
1132 struct
1133 {
1134 struct if_msghdr ifm;
gdtb27900b2004-01-08 15:44:29 +00001135 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +00001136 } im;
1137
1138 /* Interface address information. */
1139 struct
1140 {
1141 struct ifa_msghdr ifa;
gdtb27900b2004-01-08 15:44:29 +00001142 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +00001143 } ia;
1144
1145#ifdef RTM_IFANNOUNCE
1146 /* Interface arrival/departure */
1147 struct
1148 {
1149 struct if_announcemsghdr ifan;
gdtb27900b2004-01-08 15:44:29 +00001150 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +00001151 } ian;
1152#endif /* RTM_IFANNOUNCE */
1153
1154 } buf;
1155
1156 /* Fetch routing socket. */
1157 sock = THREAD_FD (thread);
1158
1159 nbytes= read (sock, &buf, sizeof buf);
1160
1161 if (nbytes <= 0)
1162 {
1163 if (nbytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN)
ajs6099b3b2004-11-20 02:06:59 +00001164 zlog_warn ("routing socket error: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001165 return 0;
1166 }
1167
paul9bcdb632003-07-08 08:09:45 +00001168 thread_add_read (zebrad.master, kernel_read, NULL, sock);
paul718e3742002-12-13 20:15:29 +00001169
hasso726f9b22003-05-25 21:04:54 +00001170 if (IS_ZEBRA_DEBUG_KERNEL)
1171 rtmsg_debug (&buf.r.rtm);
paul718e3742002-12-13 20:15:29 +00001172
1173 rtm = &buf.r.rtm;
1174
gdtb27900b2004-01-08 15:44:29 +00001175 /*
1176 * Ensure that we didn't drop any data, so that processing routines
1177 * can assume they have the whole message.
1178 */
gdtda26e3b2004-01-05 17:20:59 +00001179 if (rtm->rtm_msglen != nbytes)
1180 {
1181 zlog_warn ("kernel_read: rtm->rtm_msglen %d, nbytes %d, type %d\n",
1182 rtm->rtm_msglen, nbytes, rtm->rtm_type);
1183 return -1;
1184 }
1185
paul718e3742002-12-13 20:15:29 +00001186 switch (rtm->rtm_type)
1187 {
1188 case RTM_ADD:
1189 case RTM_DELETE:
paulca162182005-09-12 16:58:52 +00001190 case RTM_CHANGE:
paul718e3742002-12-13 20:15:29 +00001191 rtm_read (rtm);
1192 break;
1193 case RTM_IFINFO:
1194 ifm_read (&buf.im.ifm);
1195 break;
1196 case RTM_NEWADDR:
1197 case RTM_DELADDR:
1198 ifam_read (&buf.ia.ifa);
1199 break;
1200#ifdef RTM_IFANNOUNCE
1201 case RTM_IFANNOUNCE:
1202 ifan_read (&buf.ian.ifan);
1203 break;
1204#endif /* RTM_IFANNOUNCE */
1205 default:
hasso726f9b22003-05-25 21:04:54 +00001206 if (IS_ZEBRA_DEBUG_KERNEL)
ajsb6178002004-12-07 21:12:56 +00001207 zlog_debug("Unprocessed RTM_type: %d", rtm->rtm_type);
paul718e3742002-12-13 20:15:29 +00001208 break;
1209 }
1210 return 0;
1211}
1212
1213/* Make routing socket. */
paul6621ca82005-11-23 13:02:08 +00001214static void
1215routing_socket (void)
paul718e3742002-12-13 20:15:29 +00001216{
pauledd7c242003-06-04 13:59:38 +00001217 if ( zserv_privs.change (ZPRIVS_RAISE) )
1218 zlog_err ("routing_socket: Can't raise privileges");
1219
paul718e3742002-12-13 20:15:29 +00001220 routing_sock = socket (AF_ROUTE, SOCK_RAW, 0);
1221
1222 if (routing_sock < 0)
1223 {
pauledd7c242003-06-04 13:59:38 +00001224 if ( zserv_privs.change (ZPRIVS_LOWER) )
1225 zlog_err ("routing_socket: Can't lower privileges");
paul718e3742002-12-13 20:15:29 +00001226 zlog_warn ("Can't init kernel routing socket");
1227 return;
1228 }
1229
paul865b8522005-01-05 08:30:35 +00001230 /* XXX: Socket should be NONBLOCK, however as we currently
1231 * discard failed writes, this will lead to inconsistencies.
1232 * For now, socket must be blocking.
1233 */
1234 /*if (fcntl (routing_sock, F_SETFL, O_NONBLOCK) < 0)
1235 zlog_warn ("Can't set O_NONBLOCK to routing socket");*/
1236
pauledd7c242003-06-04 13:59:38 +00001237 if ( zserv_privs.change (ZPRIVS_LOWER) )
1238 zlog_err ("routing_socket: Can't lower privileges");
paul718e3742002-12-13 20:15:29 +00001239
1240 /* kernel_read needs rewrite. */
paul9bcdb632003-07-08 08:09:45 +00001241 thread_add_read (zebrad.master, kernel_read, NULL, routing_sock);
paul718e3742002-12-13 20:15:29 +00001242}
1243
1244/* Exported interface function. This function simply calls
1245 routing_socket (). */
1246void
paul6621ca82005-11-23 13:02:08 +00001247kernel_init (void)
paul718e3742002-12-13 20:15:29 +00001248{
1249 routing_socket ();
1250}