blob: ae19ef8fec940041bcd44f9e5aa089bc04257a1f [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 */
paul30be8022003-10-22 02:51:38 +000059#if defined(HAVE_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)))
paul718e3742002-12-13 20:15:29 +000079#endif /* HAVE_SA_LEN */
80
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"},
139 {RTM_OLDADD, "RTM_OLDADD"},
140 {RTM_OLDDEL, "RTM_OLDDEL"},
141 {RTM_RESOLVE, "RTM_RESOLVE"},
142 {RTM_NEWADDR, "RTM_NEWADDR"},
143 {RTM_DELADDR, "RTM_DELADDR"},
144 {RTM_IFINFO, "RTM_IFINFO"},
145#ifdef RTM_OIFINFO
146 {RTM_OIFINFO, "RTM_OIFINFO"},
147#endif /* RTM_OIFINFO */
148#ifdef RTM_NEWMADDR
149 {RTM_NEWMADDR, "RTM_NEWMADDR"},
150#endif /* RTM_NEWMADDR */
151#ifdef RTM_DELMADDR
152 {RTM_DELMADDR, "RTM_DELMADDR"},
153#endif /* RTM_DELMADDR */
154#ifdef RTM_IFANNOUNCE
155 {RTM_IFANNOUNCE, "RTM_IFANNOUNCE"},
156#endif /* RTM_IFANNOUNCE */
157 {0, NULL}
158};
159
160struct message rtm_flag_str[] =
161{
162 {RTF_UP, "UP"},
163 {RTF_GATEWAY, "GATEWAY"},
164 {RTF_HOST, "HOST"},
165 {RTF_REJECT, "REJECT"},
166 {RTF_DYNAMIC, "DYNAMIC"},
167 {RTF_MODIFIED, "MODIFIED"},
168 {RTF_DONE, "DONE"},
169#ifdef RTF_MASK
170 {RTF_MASK, "MASK"},
171#endif /* RTF_MASK */
172 {RTF_CLONING, "CLONING"},
173 {RTF_XRESOLVE, "XRESOLVE"},
174 {RTF_LLINFO, "LLINFO"},
175 {RTF_STATIC, "STATIC"},
176 {RTF_BLACKHOLE, "BLACKHOLE"},
paul6fe70d12005-11-12 22:55:10 +0000177#ifdef RTF_PRIVATE
178 {RTF_PRIVATE, "PRIVATE"},
179#endif /* RTF_PRIVATE */
paul718e3742002-12-13 20:15:29 +0000180 {RTF_PROTO1, "PROTO1"},
181 {RTF_PROTO2, "PROTO2"},
182#ifdef RTF_PRCLONING
183 {RTF_PRCLONING, "PRCLONING"},
184#endif /* RTF_PRCLONING */
185#ifdef RTF_WASCLONED
186 {RTF_WASCLONED, "WASCLONED"},
187#endif /* RTF_WASCLONED */
188#ifdef RTF_PROTO3
189 {RTF_PROTO3, "PROTO3"},
190#endif /* RTF_PROTO3 */
191#ifdef RTF_PINNED
192 {RTF_PINNED, "PINNED"},
193#endif /* RTF_PINNED */
194#ifdef RTF_LOCAL
195 {RTF_LOCAL, "LOCAL"},
196#endif /* RTF_LOCAL */
197#ifdef RTF_BROADCAST
198 {RTF_BROADCAST, "BROADCAST"},
199#endif /* RTF_BROADCAST */
200#ifdef RTF_MULTICAST
201 {RTF_MULTICAST, "MULTICAST"},
202#endif /* RTF_MULTICAST */
paul6fe70d12005-11-12 22:55:10 +0000203#ifdef RTF_MULTIRT
204 {RTF_MULTIRT, "MULTIRT"},
205#endif /* RTF_MULTIRT */
206#ifdef RTF_SETSRC
207 {RTF_SETSRC, "SETSRC"},
208#endif /* RTF_SETSRC */
paul718e3742002-12-13 20:15:29 +0000209 {0, NULL}
210};
211
212/* Kernel routing update socket. */
213int routing_sock = -1;
214
215/* Yes I'm checking ugly routing socket behavior. */
216/* #define DEBUG */
217
218/* Supported address family check. */
paul62debbb2005-06-14 14:07:07 +0000219static int inline
paul718e3742002-12-13 20:15:29 +0000220af_check (int family)
221{
222 if (family == AF_INET)
223 return 1;
224#ifdef HAVE_IPV6
225 if (family == AF_INET6)
226 return 1;
227#endif /* HAVE_IPV6 */
228 return 0;
229}
230
231/* Dump routing table flag for debug purpose. */
ajsb6178002004-12-07 21:12:56 +0000232static void
paul718e3742002-12-13 20:15:29 +0000233rtm_flag_dump (int flag)
234{
235 struct message *mes;
236 static char buf[BUFSIZ];
237
gdtcced60d2004-07-13 16:45:54 +0000238 buf[0] = '\0';
paul718e3742002-12-13 20:15:29 +0000239 for (mes = rtm_flag_str; mes->key != 0; mes++)
240 {
241 if (mes->key & flag)
242 {
243 strlcat (buf, mes->str, BUFSIZ);
244 strlcat (buf, " ", BUFSIZ);
245 }
246 }
ajsb6178002004-12-07 21:12:56 +0000247 zlog_debug ("Kernel: %s", buf);
paul718e3742002-12-13 20:15:29 +0000248}
249
250#ifdef RTM_IFANNOUNCE
251/* Interface adding function */
paul6621ca82005-11-23 13:02:08 +0000252static int
paul718e3742002-12-13 20:15:29 +0000253ifan_read (struct if_announcemsghdr *ifan)
254{
255 struct interface *ifp;
paul6fe70d12005-11-12 22:55:10 +0000256
paul718e3742002-12-13 20:15:29 +0000257 ifp = if_lookup_by_index (ifan->ifan_index);
paul6fe70d12005-11-12 22:55:10 +0000258
259 if (ifp)
260 assert ( (ifp->ifindex == ifan->ifan_index)
261 || (ifp->ifindex == IFINDEX_INTERNAL) );
262
paulec1a4282005-11-24 15:15:17 +0000263 if ( (ifp == NULL)
264 || ((ifp->ifindex == IFINDEX_INTERNAL)
265 && (ifan->ifan_what == IFAN_ARRIVAL)) )
paul718e3742002-12-13 20:15:29 +0000266 {
paul6fe70d12005-11-12 22:55:10 +0000267 if (IS_ZEBRA_DEBUG_KERNEL)
268 zlog_debug ("%s: creating interface for ifindex %d, name %s",
269 __func__, ifan->ifan_index, ifan->ifan_name);
270
paul718e3742002-12-13 20:15:29 +0000271 /* Create Interface */
ajs08dbfb62005-04-03 03:40:52 +0000272 ifp = if_get_by_name_len(ifan->ifan_name,
273 strnlen(ifan->ifan_name,
274 sizeof(ifan->ifan_name)));
paul718e3742002-12-13 20:15:29 +0000275 ifp->ifindex = ifan->ifan_index;
276
277 if_add_update (ifp);
278 }
279 else if (ifp != NULL && ifan->ifan_what == IFAN_DEPARTURE)
paul6eb88272005-07-29 14:36:00 +0000280 if_delete_update (ifp);
paul718e3742002-12-13 20:15:29 +0000281
282 if_get_flags (ifp);
283 if_get_mtu (ifp);
284 if_get_metric (ifp);
285
286 if (IS_ZEBRA_DEBUG_KERNEL)
paul6fe70d12005-11-12 22:55:10 +0000287 zlog_debug ("%s: interface %s index %d",
288 __func__, ifan->ifan_name, ifan->ifan_index);
paul718e3742002-12-13 20:15:29 +0000289
290 return 0;
291}
292#endif /* RTM_IFANNOUNCE */
293
gdtda26e3b2004-01-05 17:20:59 +0000294/*
295 * Handle struct if_msghdr obtained from reading routing socket or
296 * sysctl (from interface_list). There may or may not be sockaddrs
297 * present after the header.
298 */
paulec1a4282005-11-24 15:15:17 +0000299int
paul718e3742002-12-13 20:15:29 +0000300ifm_read (struct if_msghdr *ifm)
301{
paul3e95a072003-09-24 00:05:45 +0000302 struct interface *ifp = NULL;
paul6fe70d12005-11-12 22:55:10 +0000303 char ifname[IFNAMSIZ];
304 short ifnlen = 0;
paul0994c3a2005-11-11 09:52:40 +0000305 caddr_t *cp;
paul6fe70d12005-11-12 22:55:10 +0000306
307 /* terminate ifname at head (for strnlen) and tail (for safety) */
308 ifname[IFNAMSIZ - 1] = '\0';
309
gdtda26e3b2004-01-05 17:20:59 +0000310 /* paranoia: sanity check structure */
311 if (ifm->ifm_msglen < sizeof(struct if_msghdr))
312 {
313 zlog_err ("ifm_read: ifm->ifm_msglen %d too short\n",
314 ifm->ifm_msglen);
315 return -1;
316 }
317
318 /*
gdt4bfbea82004-01-06 01:13:05 +0000319 * Check for a sockaddr_dl following the message. First, point to
320 * where a socakddr might be if one follows the message.
gdtda26e3b2004-01-05 17:20:59 +0000321 */
gdt4bfbea82004-01-06 01:13:05 +0000322 cp = (void *)(ifm + 1);
323
paul3e95a072003-09-24 00:05:45 +0000324#ifdef SUNOS_5
paul3e95a072003-09-24 00:05:45 +0000325 /*
gdt4bfbea82004-01-06 01:13:05 +0000326 * XXX This behavior should be narrowed to only the kernel versions
327 * for which the structures returned do not match the headers.
328 *
paul3e95a072003-09-24 00:05:45 +0000329 * if_msghdr_t on 64 bit kernels in Solaris 9 and earlier versions
gdt4bfbea82004-01-06 01:13:05 +0000330 * is 12 bytes larger than the 32 bit version.
paul3e95a072003-09-24 00:05:45 +0000331 */
gdt4bfbea82004-01-06 01:13:05 +0000332 if (((struct sockaddr *) cp)->sa_family == AF_UNSPEC)
paul3e95a072003-09-24 00:05:45 +0000333 cp = cp + 12;
paul3e95a072003-09-24 00:05:45 +0000334#endif
paul718e3742002-12-13 20:15:29 +0000335
paul6fe70d12005-11-12 22:55:10 +0000336 RTA_ADDR_GET (NULL, RTA_DST, ifm->ifm_addrs, cp);
337 RTA_ADDR_GET (NULL, RTA_GATEWAY, ifm->ifm_addrs, cp);
338 RTA_ATTR_GET (NULL, RTA_NETMASK, ifm->ifm_addrs, cp);
339 RTA_ADDR_GET (NULL, RTA_GENMASK, ifm->ifm_addrs, cp);
340 RTA_NAME_GET (ifname, RTA_IFP, ifm->ifm_addrs, cp, ifnlen);
341 RTA_ADDR_GET (NULL, RTA_IFA, ifm->ifm_addrs, cp);
342 RTA_ADDR_GET (NULL, RTA_AUTHOR, ifm->ifm_addrs, cp);
343 RTA_ADDR_GET (NULL, RTA_BRD, ifm->ifm_addrs, cp);
344
345 if (IS_ZEBRA_DEBUG_KERNEL)
346 zlog_debug ("%s: sdl ifname %s", __func__, (ifnlen ? ifname : "(nil)"));
347
gdt4bfbea82004-01-06 01:13:05 +0000348 /*
paul6fe70d12005-11-12 22:55:10 +0000349 * Look up on ifindex first, because ifindices are the primary handle for
350 * interfaces across the user/kernel boundary, for most systems. (Some
351 * messages, such as up/down status changes on NetBSD, do not include a
352 * sockaddr_dl).
gdt4bfbea82004-01-06 01:13:05 +0000353 */
paul6fe70d12005-11-12 22:55:10 +0000354 if ( (ifp = if_lookup_by_index (ifm->ifm_index)) != NULL )
gdt4bfbea82004-01-06 01:13:05 +0000355 {
paul6fe70d12005-11-12 22:55:10 +0000356 /* we have an ifp, verify that the name matches as some systems,
357 * eg Solaris, have a 1:many association of ifindex:ifname
358 * if they dont match, we dont have the correct ifp and should
359 * set it back to NULL to let next check do lookup by name
360 */
361 if (ifnlen && (strncmp (ifp->name, ifname, IFNAMSIZ) != 0) )
gdt4bfbea82004-01-06 01:13:05 +0000362 {
paul6fe70d12005-11-12 22:55:10 +0000363 if (IS_ZEBRA_DEBUG_KERNEL)
364 zlog_debug ("%s: ifp name %s doesnt match sdl name %s",
365 __func__, ifp->name, ifname);
366 ifp = NULL;
gdt4bfbea82004-01-06 01:13:05 +0000367 }
368 }
paul6fe70d12005-11-12 22:55:10 +0000369
gdtda26e3b2004-01-05 17:20:59 +0000370 /*
paul6fe70d12005-11-12 22:55:10 +0000371 * If we dont have an ifp, try looking up by name. Particularly as some
372 * systems (Solaris) have a 1:many mapping of ifindex:ifname - the ifname
373 * is therefore our unique handle to that interface.
374 *
375 * Interfaces specified in the configuration file for which the ifindex
376 * has not been determined will have ifindex == IFINDEX_INTERNAL, and such
377 * interfaces are found by this search, and then their ifindex values can
378 * be filled in.
gdtda26e3b2004-01-05 17:20:59 +0000379 */
paul6fe70d12005-11-12 22:55:10 +0000380 if ( (ifp == NULL) && ifnlen)
381 ifp = if_lookup_by_name (ifname);
paul718e3742002-12-13 20:15:29 +0000382
gdtda26e3b2004-01-05 17:20:59 +0000383 /*
paul6fe70d12005-11-12 22:55:10 +0000384 * If ifp still does not exist or has an invalid index (IFINDEX_INTERNAL),
385 * create or fill in an interface.
gdtda26e3b2004-01-05 17:20:59 +0000386 */
ajsd2fc8892005-04-02 18:38:43 +0000387 if ((ifp == NULL) || (ifp->ifindex == IFINDEX_INTERNAL))
paul718e3742002-12-13 20:15:29 +0000388 {
gdt4bfbea82004-01-06 01:13:05 +0000389 /*
390 * To create or fill in an interface, a sockaddr_dl (via
391 * RTA_IFP) is required.
392 */
paul6fe70d12005-11-12 22:55:10 +0000393 if (!ifnlen)
paul718e3742002-12-13 20:15:29 +0000394 {
paul6fe70d12005-11-12 22:55:10 +0000395 zlog_warn ("Interface index %d (new) missing ifname\n",
paul718e3742002-12-13 20:15:29 +0000396 ifm->ifm_index);
397 return -1;
398 }
paul6fe70d12005-11-12 22:55:10 +0000399
paul3e95a072003-09-24 00:05:45 +0000400 if (ifp == NULL)
paul6fe70d12005-11-12 22:55:10 +0000401 {
402 /* Interface that zebra was not previously aware of, so create. */
403 ifp = if_create (ifname, ifnlen);
404 if (IS_ZEBRA_DEBUG_KERNEL)
405 zlog_debug ("%s: creating ifp for ifindex %d",
406 __func__, ifm->ifm_index);
407 }
paul718e3742002-12-13 20:15:29 +0000408
paul6fe70d12005-11-12 22:55:10 +0000409 if (IS_ZEBRA_DEBUG_KERNEL)
410 zlog_debug ("%s: updated/created ifp, ifname %s, ifindex %d",
411 __func__, ifp->name, ifp->ifindex);
gdt4bfbea82004-01-06 01:13:05 +0000412 /*
413 * Fill in newly created interface structure, or larval
ajsd2fc8892005-04-02 18:38:43 +0000414 * structure with ifindex IFINDEX_INTERNAL.
gdt4bfbea82004-01-06 01:13:05 +0000415 */
paul718e3742002-12-13 20:15:29 +0000416 ifp->ifindex = ifm->ifm_index;
417 ifp->flags = ifm->ifm_flags;
418#if defined(__bsdi__)
419 if_kvm_get_mtu (ifp);
420#else
421 if_get_mtu (ifp);
422#endif /* __bsdi__ */
423 if_get_metric (ifp);
424
paul718e3742002-12-13 20:15:29 +0000425 if_add_update (ifp);
426 }
427 else
gdtda26e3b2004-01-05 17:20:59 +0000428 /*
429 * Interface structure exists. Adjust stored flags from
430 * notification. If interface has up->down or down->up
431 * transition, call state change routines (to adjust routes,
432 * notify routing daemons, etc.). (Other flag changes are stored
433 * but apparently do not trigger action.)
434 */
paul718e3742002-12-13 20:15:29 +0000435 {
paul6fe70d12005-11-12 22:55:10 +0000436 if (ifp->ifindex != ifm->ifm_index)
437 {
438 zlog_warn ("%s: index mismatch, ifname %s, ifp index %d, "
439 "ifm index %d",
440 __func__, ifp->name, ifp->ifindex, ifm->ifm_index);
441 return -1;
442 }
443
paul718e3742002-12-13 20:15:29 +0000444 if (if_is_up (ifp))
445 {
446 ifp->flags = ifm->ifm_flags;
447 if (! if_is_up (ifp))
paul6eb88272005-07-29 14:36:00 +0000448 {
449 if_down (ifp);
450#ifndef RTM_IFANNOUNCE
451 /* No RTM_IFANNOUNCE on this platform, so we can never
452 * distinguish between down and delete. We must presume
453 * it has been deleted.
454 * Eg, Solaris will not notify us of unplumb.
455 *
456 * XXX: Fixme - this should be runtime detected
457 * So that a binary compiled on a system with IFANNOUNCE
458 * will still behave correctly if run on a platform without
459 */
460 if_delete_update (ifp);
461#endif /* RTM_IFANNOUNCE */
462 }
paul718e3742002-12-13 20:15:29 +0000463 }
464 else
465 {
466 ifp->flags = ifm->ifm_flags;
467 if (if_is_up (ifp))
468 if_up (ifp);
469 }
470 }
471
472#ifdef HAVE_NET_RT_IFLIST
473 ifp->stats = ifm->ifm_data;
474#endif /* HAVE_NET_RT_IFLIST */
475
476 if (IS_ZEBRA_DEBUG_KERNEL)
paul6fe70d12005-11-12 22:55:10 +0000477 zlog_debug ("%s: interface %s index %d",
478 __func__, ifp->name, ifp->ifindex);
paul718e3742002-12-13 20:15:29 +0000479
480 return 0;
481}
482
483/* Address read from struct ifa_msghdr. */
paul6621ca82005-11-23 13:02:08 +0000484static void
paul718e3742002-12-13 20:15:29 +0000485ifam_read_mesg (struct ifa_msghdr *ifm,
486 union sockunion *addr,
487 union sockunion *mask,
paul6fe70d12005-11-12 22:55:10 +0000488 union sockunion *brd,
489 char *ifname,
490 short *ifnlen)
paul718e3742002-12-13 20:15:29 +0000491{
492 caddr_t pnt, end;
493
494 pnt = (caddr_t)(ifm + 1);
495 end = ((caddr_t)ifm) + ifm->ifam_msglen;
496
paul718e3742002-12-13 20:15:29 +0000497 /* Be sure structure is cleared */
498 memset (mask, 0, sizeof (union sockunion));
499 memset (addr, 0, sizeof (union sockunion));
paul6621ca82005-11-23 13:02:08 +0000500 memset (brd, 0, sizeof (union sockunion));
paul718e3742002-12-13 20:15:29 +0000501
502 /* We fetch each socket variable into sockunion. */
paul62debbb2005-06-14 14:07:07 +0000503 RTA_ADDR_GET (NULL, RTA_DST, ifm->ifam_addrs, pnt);
504 RTA_ADDR_GET (NULL, RTA_GATEWAY, ifm->ifam_addrs, pnt);
505 RTA_ATTR_GET (mask, RTA_NETMASK, ifm->ifam_addrs, pnt);
506 RTA_ADDR_GET (NULL, RTA_GENMASK, ifm->ifam_addrs, pnt);
paul6fe70d12005-11-12 22:55:10 +0000507 RTA_NAME_GET (ifname, RTA_IFP, ifm->ifam_addrs, pnt, *ifnlen);
paul62debbb2005-06-14 14:07:07 +0000508 RTA_ADDR_GET (addr, RTA_IFA, ifm->ifam_addrs, pnt);
509 RTA_ADDR_GET (NULL, RTA_AUTHOR, ifm->ifam_addrs, pnt);
paul6fe70d12005-11-12 22:55:10 +0000510 RTA_ADDR_GET (brd, RTA_BRD, ifm->ifam_addrs, pnt);
paul718e3742002-12-13 20:15:29 +0000511
paul6fe70d12005-11-12 22:55:10 +0000512 if (IS_ZEBRA_DEBUG_KERNEL)
513 zlog_debug ("%s: ifindex %d, ifname %s, ifam_addrs 0x%x",
514 __func__, ifm->ifam_index,
515 (ifnlen ? ifname : "(nil)"), ifm->ifam_addrs);
516
paul718e3742002-12-13 20:15:29 +0000517 /* Assert read up end point matches to end point */
518 if (pnt != end)
519 zlog_warn ("ifam_read() does't read all socket data");
520}
521
522/* Interface's address information get. */
paulec1a4282005-11-24 15:15:17 +0000523int
paul718e3742002-12-13 20:15:29 +0000524ifam_read (struct ifa_msghdr *ifam)
525{
paul6fe70d12005-11-12 22:55:10 +0000526 struct interface *ifp = NULL;
paul0752ef02005-11-03 12:35:21 +0000527 union sockunion addr, mask, brd;
paul6fe70d12005-11-12 22:55:10 +0000528 char ifname[INTERFACE_NAMSIZ];
529 short ifnlen = 0;
530 char isalias = 0;
531
532 ifname[0] = ifname[INTERFACE_NAMSIZ - 1] = '\0';
533
534 /* Allocate and read address information. */
535 ifam_read_mesg (ifam, &addr, &mask, &brd, ifname, &ifnlen);
536
537 if ((ifp = if_lookup_by_index(ifam->ifam_index)) == NULL)
paul718e3742002-12-13 20:15:29 +0000538 {
paul6fe70d12005-11-12 22:55:10 +0000539 zlog_warn ("%s: no interface for ifname %s, index %d",
540 __func__, ifname, ifam->ifam_index);
paul718e3742002-12-13 20:15:29 +0000541 return -1;
542 }
paul6fe70d12005-11-12 22:55:10 +0000543
544 if (ifnlen && strncmp (ifp->name, ifname, INTERFACE_NAMSIZ))
545 isalias = 1;
546
pauld34b8992006-01-17 18:03:04 +0000547 ifp->metric = ifam->ifam_metric;
548
paul718e3742002-12-13 20:15:29 +0000549 /* Check interface flag for implicit up of the interface. */
550 if_refresh (ifp);
551
552 /* Add connected address. */
553 switch (sockunion_family (&addr))
554 {
555 case AF_INET:
556 if (ifam->ifam_type == RTM_NEWADDR)
557 connected_add_ipv4 (ifp, 0, &addr.sin.sin_addr,
558 ip_masklen (mask.sin.sin_addr),
pauld34b8992006-01-17 18:03:04 +0000559 &brd.sin.sin_addr,
560 (isalias ? ifname : NULL));
paul718e3742002-12-13 20:15:29 +0000561 else
562 connected_delete_ipv4 (ifp, 0, &addr.sin.sin_addr,
563 ip_masklen (mask.sin.sin_addr),
paul0752ef02005-11-03 12:35:21 +0000564 &brd.sin.sin_addr);
paul718e3742002-12-13 20:15:29 +0000565 break;
566#ifdef HAVE_IPV6
567 case AF_INET6:
568 /* Unset interface index from link-local address when IPv6 stack
569 is KAME. */
570 if (IN6_IS_ADDR_LINKLOCAL (&addr.sin6.sin6_addr))
571 SET_IN6_LINKLOCAL_IFINDEX (addr.sin6.sin6_addr, 0);
572
573 if (ifam->ifam_type == RTM_NEWADDR)
574 connected_add_ipv6 (ifp,
575 &addr.sin6.sin6_addr,
576 ip6_masklen (mask.sin6.sin6_addr),
pauld34b8992006-01-17 18:03:04 +0000577 &brd.sin6.sin6_addr,
578 (isalias ? ifname : NULL));
paul718e3742002-12-13 20:15:29 +0000579 else
580 connected_delete_ipv6 (ifp,
581 &addr.sin6.sin6_addr,
582 ip6_masklen (mask.sin6.sin6_addr),
paul0752ef02005-11-03 12:35:21 +0000583 &brd.sin6.sin6_addr);
paul718e3742002-12-13 20:15:29 +0000584 break;
585#endif /* HAVE_IPV6 */
586 default:
587 /* Unsupported family silently ignore... */
588 break;
589 }
590 return 0;
591}
592
593/* Interface function for reading kernel routing table information. */
paul6621ca82005-11-23 13:02:08 +0000594static int
paul718e3742002-12-13 20:15:29 +0000595rtm_read_mesg (struct rt_msghdr *rtm,
596 union sockunion *dest,
597 union sockunion *mask,
paul6fe70d12005-11-12 22:55:10 +0000598 union sockunion *gate,
599 char *ifname,
600 short *ifnlen)
paul718e3742002-12-13 20:15:29 +0000601{
602 caddr_t pnt, end;
603
604 /* Pnt points out socket data start point. */
605 pnt = (caddr_t)(rtm + 1);
606 end = ((caddr_t)rtm) + rtm->rtm_msglen;
607
608 /* rt_msghdr version check. */
609 if (rtm->rtm_version != RTM_VERSION)
610 zlog (NULL, LOG_WARNING,
611 "Routing message version different %d should be %d."
612 "This may cause problem\n", rtm->rtm_version, RTM_VERSION);
paul62debbb2005-06-14 14:07:07 +0000613
paul718e3742002-12-13 20:15:29 +0000614 /* Be sure structure is cleared */
615 memset (dest, 0, sizeof (union sockunion));
616 memset (gate, 0, sizeof (union sockunion));
617 memset (mask, 0, sizeof (union sockunion));
618
619 /* We fetch each socket variable into sockunion. */
paul62debbb2005-06-14 14:07:07 +0000620 RTA_ADDR_GET (dest, RTA_DST, rtm->rtm_addrs, pnt);
621 RTA_ADDR_GET (gate, RTA_GATEWAY, rtm->rtm_addrs, pnt);
622 RTA_ATTR_GET (mask, RTA_NETMASK, rtm->rtm_addrs, pnt);
623 RTA_ADDR_GET (NULL, RTA_GENMASK, rtm->rtm_addrs, pnt);
paul6fe70d12005-11-12 22:55:10 +0000624 RTA_NAME_GET (ifname, RTA_IFP, rtm->rtm_addrs, pnt, *ifnlen);
paul62debbb2005-06-14 14:07:07 +0000625 RTA_ADDR_GET (NULL, RTA_IFA, rtm->rtm_addrs, pnt);
626 RTA_ADDR_GET (NULL, RTA_AUTHOR, rtm->rtm_addrs, pnt);
627 RTA_ADDR_GET (NULL, RTA_BRD, rtm->rtm_addrs, pnt);
paul718e3742002-12-13 20:15:29 +0000628
629 /* If there is netmask information set it's family same as
630 destination family*/
631 if (rtm->rtm_addrs & RTA_NETMASK)
632 mask->sa.sa_family = dest->sa.sa_family;
633
634 /* Assert read up to the end of pointer. */
635 if (pnt != end)
636 zlog (NULL, LOG_WARNING, "rtm_read() does't read all socket data.");
637
638 return rtm->rtm_flags;
639}
640
paulec1a4282005-11-24 15:15:17 +0000641void
paul718e3742002-12-13 20:15:29 +0000642rtm_read (struct rt_msghdr *rtm)
643{
644 int flags;
645 u_char zebra_flags;
646 union sockunion dest, mask, gate;
paul6fe70d12005-11-12 22:55:10 +0000647 char ifname[INTERFACE_NAMSIZ + 1];
648 short ifnlen = 0;
paul718e3742002-12-13 20:15:29 +0000649
650 zebra_flags = 0;
651
652 /* Discard self send message. */
653 if (rtm->rtm_type != RTM_GET
654 && (rtm->rtm_pid == pid || rtm->rtm_pid == old_pid))
655 return;
656
657 /* Read destination and netmask and gateway from rtm message
658 structure. */
paul6fe70d12005-11-12 22:55:10 +0000659 flags = rtm_read_mesg (rtm, &dest, &mask, &gate, ifname, &ifnlen);
paul718e3742002-12-13 20:15:29 +0000660
661#ifdef RTF_CLONED /*bsdi, netbsd 1.6*/
662 if (flags & RTF_CLONED)
663 return;
664#endif
665#ifdef RTF_WASCLONED /*freebsd*/
666 if (flags & RTF_WASCLONED)
667 return;
668#endif
669
670 if ((rtm->rtm_type == RTM_ADD) && ! (flags & RTF_UP))
671 return;
672
673 /* This is connected route. */
674 if (! (flags & RTF_GATEWAY))
675 return;
676
677 if (flags & RTF_PROTO1)
678 SET_FLAG (zebra_flags, ZEBRA_FLAG_SELFROUTE);
679
680 /* This is persistent route. */
681 if (flags & RTF_STATIC)
682 SET_FLAG (zebra_flags, ZEBRA_FLAG_STATIC);
683
hasso81dfcaa2003-05-25 19:21:25 +0000684 /* This is a reject or blackhole route */
685 if (flags & RTF_REJECT)
686 SET_FLAG (zebra_flags, ZEBRA_FLAG_REJECT);
687 if (flags & RTF_BLACKHOLE)
688 SET_FLAG (zebra_flags, ZEBRA_FLAG_BLACKHOLE);
689
paul718e3742002-12-13 20:15:29 +0000690 if (dest.sa.sa_family == AF_INET)
691 {
692 struct prefix_ipv4 p;
693
694 p.family = AF_INET;
695 p.prefix = dest.sin.sin_addr;
696 if (flags & RTF_HOST)
697 p.prefixlen = IPV4_MAX_PREFIXLEN;
698 else
699 p.prefixlen = ip_masklen (mask.sin.sin_addr);
paulca162182005-09-12 16:58:52 +0000700
701 /* Change, delete the old prefix, we have no further information
702 * to specify the route really
703 */
704 if (rtm->rtm_type == RTM_CHANGE)
705 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags, &p,
706 NULL, 0, 0);
707
708 if (rtm->rtm_type == RTM_GET
709 || rtm->rtm_type == RTM_ADD
710 || rtm->rtm_type == RTM_CHANGE)
paul718e3742002-12-13 20:15:29 +0000711 rib_add_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags,
712 &p, &gate.sin.sin_addr, 0, 0, 0, 0);
713 else
714 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags,
715 &p, &gate.sin.sin_addr, 0, 0);
716 }
717#ifdef HAVE_IPV6
718 if (dest.sa.sa_family == AF_INET6)
719 {
720 struct prefix_ipv6 p;
721 unsigned int ifindex = 0;
722
723 p.family = AF_INET6;
724 p.prefix = dest.sin6.sin6_addr;
725 if (flags & RTF_HOST)
726 p.prefixlen = IPV6_MAX_PREFIXLEN;
727 else
728 p.prefixlen = ip6_masklen (mask.sin6.sin6_addr);
729
730#ifdef KAME
731 if (IN6_IS_ADDR_LINKLOCAL (&gate.sin6.sin6_addr))
732 {
733 ifindex = IN6_LINKLOCAL_IFINDEX (gate.sin6.sin6_addr);
734 SET_IN6_LINKLOCAL_IFINDEX (gate.sin6.sin6_addr, 0);
735 }
736#endif /* KAME */
737
paulca162182005-09-12 16:58:52 +0000738 /* CHANGE: delete the old prefix, we have no further information
739 * to specify the route really
740 */
741 if (rtm->rtm_type == RTM_CHANGE)
paul6621ca82005-11-23 13:02:08 +0000742 rib_delete_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags, &p,
paulca162182005-09-12 16:58:52 +0000743 NULL, 0, 0);
744
745 if (rtm->rtm_type == RTM_GET
746 || rtm->rtm_type == RTM_ADD
747 || rtm->rtm_type == RTM_CHANGE)
paul718e3742002-12-13 20:15:29 +0000748 rib_add_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags,
hassobe61c4e2005-08-27 06:05:47 +0000749 &p, &gate.sin6.sin6_addr, ifindex, 0, 0, 0);
paul718e3742002-12-13 20:15:29 +0000750 else
751 rib_delete_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags,
752 &p, &gate.sin6.sin6_addr, ifindex, 0);
753 }
754#endif /* HAVE_IPV6 */
755}
756
757/* Interface function for the kernel routing table updates. Support
paul6621ca82005-11-23 13:02:08 +0000758 * for RTM_CHANGE will be needed.
759 * Exported only for rt_socket.c
760 */
paul718e3742002-12-13 20:15:29 +0000761int
762rtm_write (int message,
763 union sockunion *dest,
764 union sockunion *mask,
765 union sockunion *gate,
766 unsigned int index,
767 int zebra_flags,
768 int metric)
769{
770 int ret;
771 caddr_t pnt;
772 struct interface *ifp;
paul718e3742002-12-13 20:15:29 +0000773
774 /* Sequencial number of routing message. */
775 static int msg_seq = 0;
776
777 /* Struct of rt_msghdr and buffer for storing socket's data. */
778 struct
779 {
780 struct rt_msghdr rtm;
781 char buf[512];
782 } msg;
783
paul718e3742002-12-13 20:15:29 +0000784 if (routing_sock < 0)
785 return ZEBRA_ERR_EPERM;
786
787 /* Clear and set rt_msghdr values */
788 memset (&msg, 0, sizeof (struct rt_msghdr));
789 msg.rtm.rtm_version = RTM_VERSION;
790 msg.rtm.rtm_type = message;
791 msg.rtm.rtm_seq = msg_seq++;
792 msg.rtm.rtm_addrs = RTA_DST;
793 msg.rtm.rtm_addrs |= RTA_GATEWAY;
794 msg.rtm.rtm_flags = RTF_UP;
795 msg.rtm.rtm_index = index;
796
797 if (metric != 0)
798 {
799 msg.rtm.rtm_rmx.rmx_hopcount = metric;
800 msg.rtm.rtm_inits |= RTV_HOPCOUNT;
801 }
802
803 ifp = if_lookup_by_index (index);
804
805 if (gate && message == RTM_ADD)
806 msg.rtm.rtm_flags |= RTF_GATEWAY;
807
808 if (! gate && message == RTM_ADD && ifp &&
809 (ifp->flags & IFF_POINTOPOINT) == 0)
810 msg.rtm.rtm_flags |= RTF_CLONING;
811
812 /* If no protocol specific gateway is specified, use link
813 address for gateway. */
814 if (! gate)
815 {
816 if (!ifp)
817 {
818 zlog_warn ("no gateway found for interface index %d", index);
819 return -1;
820 }
821 gate = (union sockunion *) & ifp->sdl;
822 }
823
824 if (mask)
825 msg.rtm.rtm_addrs |= RTA_NETMASK;
826 else if (message == RTM_ADD)
827 msg.rtm.rtm_flags |= RTF_HOST;
828
829 /* Tagging route with flags */
830 msg.rtm.rtm_flags |= (RTF_PROTO1);
831
832 /* Additional flags. */
833 if (zebra_flags & ZEBRA_FLAG_BLACKHOLE)
834 msg.rtm.rtm_flags |= RTF_BLACKHOLE;
hasso81dfcaa2003-05-25 19:21:25 +0000835 if (zebra_flags & ZEBRA_FLAG_REJECT)
836 msg.rtm.rtm_flags |= RTF_REJECT;
837
paul718e3742002-12-13 20:15:29 +0000838
839#ifdef HAVE_SIN_LEN
840#define SOCKADDRSET(X,R) \
841 if (msg.rtm.rtm_addrs & (R)) \
842 { \
843 int len = ROUNDUP ((X)->sa.sa_len); \
844 memcpy (pnt, (caddr_t)(X), len); \
845 pnt += len; \
846 }
847#else
848#define SOCKADDRSET(X,R) \
849 if (msg.rtm.rtm_addrs & (R)) \
850 { \
paul6fe70d12005-11-12 22:55:10 +0000851 int len = SAROUNDUP (X); \
paul718e3742002-12-13 20:15:29 +0000852 memcpy (pnt, (caddr_t)(X), len); \
853 pnt += len; \
854 }
855#endif /* HAVE_SIN_LEN */
856
857 pnt = (caddr_t) msg.buf;
858
859 /* Write each socket data into rtm message buffer */
860 SOCKADDRSET (dest, RTA_DST);
861 SOCKADDRSET (gate, RTA_GATEWAY);
862 SOCKADDRSET (mask, RTA_NETMASK);
863
864 msg.rtm.rtm_msglen = pnt - (caddr_t) &msg;
865
866 ret = write (routing_sock, &msg, msg.rtm.rtm_msglen);
867
868 if (ret != msg.rtm.rtm_msglen)
869 {
870 if (errno == EEXIST)
871 return ZEBRA_ERR_RTEXIST;
872 if (errno == ENETUNREACH)
873 return ZEBRA_ERR_RTUNREACH;
874
ajs6099b3b2004-11-20 02:06:59 +0000875 zlog_warn ("write : %s (%d)", safe_strerror (errno), errno);
paul718e3742002-12-13 20:15:29 +0000876 return -1;
877 }
878 return 0;
879}
880
881
882#include "thread.h"
883#include "zebra/zserv.h"
884
paul718e3742002-12-13 20:15:29 +0000885/* For debug purpose. */
ajsb6178002004-12-07 21:12:56 +0000886static void
paul718e3742002-12-13 20:15:29 +0000887rtmsg_debug (struct rt_msghdr *rtm)
888{
gdt6a250b02004-12-09 14:48:12 +0000889 const char *type = "Unknown";
paul718e3742002-12-13 20:15:29 +0000890 struct message *mes;
891
892 for (mes = rtm_type_str; mes->str; mes++)
893 if (mes->key == rtm->rtm_type)
894 {
895 type = mes->str;
896 break;
897 }
898
ajsb6178002004-12-07 21:12:56 +0000899 zlog_debug ("Kernel: Len: %d Type: %s", rtm->rtm_msglen, type);
paul718e3742002-12-13 20:15:29 +0000900 rtm_flag_dump (rtm->rtm_flags);
ajsb6178002004-12-07 21:12:56 +0000901 zlog_debug ("Kernel: message seq %d", rtm->rtm_seq);
paul6fe70d12005-11-12 22:55:10 +0000902 zlog_debug ("Kernel: pid %d, rtm_addrs 0x%x", rtm->rtm_pid, rtm->rtm_addrs);
paul718e3742002-12-13 20:15:29 +0000903}
904
905/* This is pretty gross, better suggestions welcome -- mhandler */
906#ifndef RTAX_MAX
907#ifdef RTA_NUMBITS
908#define RTAX_MAX RTA_NUMBITS
909#else
910#define RTAX_MAX 8
911#endif /* RTA_NUMBITS */
912#endif /* RTAX_MAX */
913
914/* Kernel routing table and interface updates via routing socket. */
paul6621ca82005-11-23 13:02:08 +0000915static int
paul718e3742002-12-13 20:15:29 +0000916kernel_read (struct thread *thread)
917{
918 int sock;
919 int nbytes;
920 struct rt_msghdr *rtm;
921
gdtdbee01f2004-01-06 00:36:51 +0000922 /*
923 * This must be big enough for any message the kernel might send.
gdtb27900b2004-01-08 15:44:29 +0000924 * Rather than determining how many sockaddrs of what size might be
925 * in each particular message, just use RTAX_MAX of sockaddr_storage
926 * for each. Note that the sockaddrs must be after each message
927 * definition, or rather after whichever happens to be the largest,
928 * since the buffer needs to be big enough for a message and the
929 * sockaddrs together.
gdtdbee01f2004-01-06 00:36:51 +0000930 */
paul718e3742002-12-13 20:15:29 +0000931 union
932 {
933 /* Routing information. */
934 struct
935 {
936 struct rt_msghdr rtm;
gdtb27900b2004-01-08 15:44:29 +0000937 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +0000938 } r;
939
940 /* Interface information. */
941 struct
942 {
943 struct if_msghdr ifm;
gdtb27900b2004-01-08 15:44:29 +0000944 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +0000945 } im;
946
947 /* Interface address information. */
948 struct
949 {
950 struct ifa_msghdr ifa;
gdtb27900b2004-01-08 15:44:29 +0000951 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +0000952 } ia;
953
954#ifdef RTM_IFANNOUNCE
955 /* Interface arrival/departure */
956 struct
957 {
958 struct if_announcemsghdr ifan;
gdtb27900b2004-01-08 15:44:29 +0000959 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +0000960 } ian;
961#endif /* RTM_IFANNOUNCE */
962
963 } buf;
964
965 /* Fetch routing socket. */
966 sock = THREAD_FD (thread);
967
968 nbytes= read (sock, &buf, sizeof buf);
969
970 if (nbytes <= 0)
971 {
972 if (nbytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN)
ajs6099b3b2004-11-20 02:06:59 +0000973 zlog_warn ("routing socket error: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000974 return 0;
975 }
976
paul9bcdb632003-07-08 08:09:45 +0000977 thread_add_read (zebrad.master, kernel_read, NULL, sock);
paul718e3742002-12-13 20:15:29 +0000978
hasso726f9b22003-05-25 21:04:54 +0000979 if (IS_ZEBRA_DEBUG_KERNEL)
980 rtmsg_debug (&buf.r.rtm);
paul718e3742002-12-13 20:15:29 +0000981
982 rtm = &buf.r.rtm;
983
gdtb27900b2004-01-08 15:44:29 +0000984 /*
985 * Ensure that we didn't drop any data, so that processing routines
986 * can assume they have the whole message.
987 */
gdtda26e3b2004-01-05 17:20:59 +0000988 if (rtm->rtm_msglen != nbytes)
989 {
990 zlog_warn ("kernel_read: rtm->rtm_msglen %d, nbytes %d, type %d\n",
991 rtm->rtm_msglen, nbytes, rtm->rtm_type);
992 return -1;
993 }
994
paul718e3742002-12-13 20:15:29 +0000995 switch (rtm->rtm_type)
996 {
997 case RTM_ADD:
998 case RTM_DELETE:
paulca162182005-09-12 16:58:52 +0000999 case RTM_CHANGE:
paul718e3742002-12-13 20:15:29 +00001000 rtm_read (rtm);
1001 break;
1002 case RTM_IFINFO:
1003 ifm_read (&buf.im.ifm);
1004 break;
1005 case RTM_NEWADDR:
1006 case RTM_DELADDR:
1007 ifam_read (&buf.ia.ifa);
1008 break;
1009#ifdef RTM_IFANNOUNCE
1010 case RTM_IFANNOUNCE:
1011 ifan_read (&buf.ian.ifan);
1012 break;
1013#endif /* RTM_IFANNOUNCE */
1014 default:
hasso726f9b22003-05-25 21:04:54 +00001015 if (IS_ZEBRA_DEBUG_KERNEL)
ajsb6178002004-12-07 21:12:56 +00001016 zlog_debug("Unprocessed RTM_type: %d", rtm->rtm_type);
paul718e3742002-12-13 20:15:29 +00001017 break;
1018 }
1019 return 0;
1020}
1021
1022/* Make routing socket. */
paul6621ca82005-11-23 13:02:08 +00001023static void
1024routing_socket (void)
paul718e3742002-12-13 20:15:29 +00001025{
pauledd7c242003-06-04 13:59:38 +00001026 if ( zserv_privs.change (ZPRIVS_RAISE) )
1027 zlog_err ("routing_socket: Can't raise privileges");
1028
paul718e3742002-12-13 20:15:29 +00001029 routing_sock = socket (AF_ROUTE, SOCK_RAW, 0);
1030
1031 if (routing_sock < 0)
1032 {
pauledd7c242003-06-04 13:59:38 +00001033 if ( zserv_privs.change (ZPRIVS_LOWER) )
1034 zlog_err ("routing_socket: Can't lower privileges");
paul718e3742002-12-13 20:15:29 +00001035 zlog_warn ("Can't init kernel routing socket");
1036 return;
1037 }
1038
paul865b8522005-01-05 08:30:35 +00001039 /* XXX: Socket should be NONBLOCK, however as we currently
1040 * discard failed writes, this will lead to inconsistencies.
1041 * For now, socket must be blocking.
1042 */
1043 /*if (fcntl (routing_sock, F_SETFL, O_NONBLOCK) < 0)
1044 zlog_warn ("Can't set O_NONBLOCK to routing socket");*/
1045
pauledd7c242003-06-04 13:59:38 +00001046 if ( zserv_privs.change (ZPRIVS_LOWER) )
1047 zlog_err ("routing_socket: Can't lower privileges");
paul718e3742002-12-13 20:15:29 +00001048
1049 /* kernel_read needs rewrite. */
paul9bcdb632003-07-08 08:09:45 +00001050 thread_add_read (zebrad.master, kernel_read, NULL, routing_sock);
paul718e3742002-12-13 20:15:29 +00001051}
1052
1053/* Exported interface function. This function simply calls
1054 routing_socket (). */
1055void
paul6621ca82005-11-23 13:02:08 +00001056kernel_init (void)
paul718e3742002-12-13 20:15:29 +00001057{
1058 routing_socket ();
1059}