blob: c264437d15a8e781e50d81dc38c932fcaef48656 [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"
39
pauledd7c242003-06-04 13:59:38 +000040extern struct zebra_privs_t zserv_privs;
paul9bcdb632003-07-08 08:09:45 +000041extern struct zebra_t zebrad;
pauledd7c242003-06-04 13:59:38 +000042
gdt4bfbea82004-01-06 01:13:05 +000043/*
44 * Given a sockaddr length, round it up to include pad bytes following
45 * it. Assumes the kernel pads to sizeof(long).
46 *
47 * XXX: why is ROUNDUP(0) sizeof(long)? 0 is an illegal sockaddr
48 * length anyway (< sizeof (struct sockaddr)), so this shouldn't
49 * matter.
50 */
paul718e3742002-12-13 20:15:29 +000051#define ROUNDUP(a) \
52 ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
53
gdt4bfbea82004-01-06 01:13:05 +000054/*
55 * Given a pointer (sockaddr or void *), return the number of bytes
56 * taken up by the sockaddr and any padding needed for alignment.
57 */
paul30be8022003-10-22 02:51:38 +000058#if defined(HAVE_SA_LEN)
gdt4bfbea82004-01-06 01:13:05 +000059#define SAROUNDUP(X) ROUNDUP(((struct sockaddr *)(X))->sa_len)
paul30be8022003-10-22 02:51:38 +000060#elif defined(HAVE_IPV6)
gdt4bfbea82004-01-06 01:13:05 +000061/*
62 * One would hope all fixed-size structure definitions are aligned,
63 * but round them up nonetheless.
64 */
65#define SAROUNDUP(X) \
paul3e95a072003-09-24 00:05:45 +000066 (((struct sockaddr *)(X))->sa_family == AF_INET ? \
67 ROUNDUP(sizeof(struct sockaddr_in)):\
68 (((struct sockaddr *)(X))->sa_family == AF_INET6 ? \
69 ROUNDUP(sizeof(struct sockaddr_in6)) : \
70 (((struct sockaddr *)(X))->sa_family == AF_LINK ? \
paulc50ae8b2004-05-11 11:31:07 +000071 ROUNDUP(sizeof(struct sockaddr_dl)) : sizeof(struct sockaddr))))
paul30be8022003-10-22 02:51:38 +000072#else /* HAVE_IPV6 */
gdt4bfbea82004-01-06 01:13:05 +000073#define SAROUNDUP(X) \
paul30be8022003-10-22 02:51:38 +000074 (((struct sockaddr *)(X))->sa_family == AF_INET ? \
75 ROUNDUP(sizeof(struct sockaddr_in)):\
76 (((struct sockaddr *)(X))->sa_family == AF_LINK ? \
77 ROUNDUP(sizeof(struct sockaddr_dl)) : sizeof(struct sockaddr)))
paul718e3742002-12-13 20:15:29 +000078#endif /* HAVE_SA_LEN */
79
paul62debbb2005-06-14 14:07:07 +000080#define RTA_ADDR_GET(DEST, RTA, RTMADDRS, PNT) \
81 if ((RTMADDRS) & (RTA)) \
82 { \
83 int len = SAROUNDUP ((PNT)); \
paulea6f82b2005-06-28 17:20:26 +000084 if ( ((DEST) != NULL) && \
paul62debbb2005-06-14 14:07:07 +000085 af_check (((struct sockaddr *)(PNT))->sa_family)) \
86 memcpy ((caddr_t)(DEST), (PNT), len); \
87 (PNT) += len; \
88 }
89#define RTA_ATTR_GET(DEST, RTA, RTMADDRS, PNT) \
90 if ((RTMADDRS) & (RTA)) \
91 { \
92 int len = SAROUNDUP ((PNT)); \
paulea6f82b2005-06-28 17:20:26 +000093 if ( ((DEST) != NULL) ) \
paul62debbb2005-06-14 14:07:07 +000094 memcpy ((caddr_t)(DEST), (PNT), len); \
95 (PNT) += len; \
96 }
97
paul718e3742002-12-13 20:15:29 +000098/* Routing socket message types. */
99struct message rtm_type_str[] =
100{
101 {RTM_ADD, "RTM_ADD"},
102 {RTM_DELETE, "RTM_DELETE"},
103 {RTM_CHANGE, "RTM_CHANGE"},
104 {RTM_GET, "RTM_GET"},
105 {RTM_LOSING, "RTM_LOSING"},
106 {RTM_REDIRECT, "RTM_REDIRECT"},
107 {RTM_MISS, "RTM_MISS"},
108 {RTM_LOCK, "RTM_LOCK"},
109 {RTM_OLDADD, "RTM_OLDADD"},
110 {RTM_OLDDEL, "RTM_OLDDEL"},
111 {RTM_RESOLVE, "RTM_RESOLVE"},
112 {RTM_NEWADDR, "RTM_NEWADDR"},
113 {RTM_DELADDR, "RTM_DELADDR"},
114 {RTM_IFINFO, "RTM_IFINFO"},
115#ifdef RTM_OIFINFO
116 {RTM_OIFINFO, "RTM_OIFINFO"},
117#endif /* RTM_OIFINFO */
118#ifdef RTM_NEWMADDR
119 {RTM_NEWMADDR, "RTM_NEWMADDR"},
120#endif /* RTM_NEWMADDR */
121#ifdef RTM_DELMADDR
122 {RTM_DELMADDR, "RTM_DELMADDR"},
123#endif /* RTM_DELMADDR */
124#ifdef RTM_IFANNOUNCE
125 {RTM_IFANNOUNCE, "RTM_IFANNOUNCE"},
126#endif /* RTM_IFANNOUNCE */
127 {0, NULL}
128};
129
130struct message rtm_flag_str[] =
131{
132 {RTF_UP, "UP"},
133 {RTF_GATEWAY, "GATEWAY"},
134 {RTF_HOST, "HOST"},
135 {RTF_REJECT, "REJECT"},
136 {RTF_DYNAMIC, "DYNAMIC"},
137 {RTF_MODIFIED, "MODIFIED"},
138 {RTF_DONE, "DONE"},
139#ifdef RTF_MASK
140 {RTF_MASK, "MASK"},
141#endif /* RTF_MASK */
142 {RTF_CLONING, "CLONING"},
143 {RTF_XRESOLVE, "XRESOLVE"},
144 {RTF_LLINFO, "LLINFO"},
145 {RTF_STATIC, "STATIC"},
146 {RTF_BLACKHOLE, "BLACKHOLE"},
147 {RTF_PROTO1, "PROTO1"},
148 {RTF_PROTO2, "PROTO2"},
149#ifdef RTF_PRCLONING
150 {RTF_PRCLONING, "PRCLONING"},
151#endif /* RTF_PRCLONING */
152#ifdef RTF_WASCLONED
153 {RTF_WASCLONED, "WASCLONED"},
154#endif /* RTF_WASCLONED */
155#ifdef RTF_PROTO3
156 {RTF_PROTO3, "PROTO3"},
157#endif /* RTF_PROTO3 */
158#ifdef RTF_PINNED
159 {RTF_PINNED, "PINNED"},
160#endif /* RTF_PINNED */
161#ifdef RTF_LOCAL
162 {RTF_LOCAL, "LOCAL"},
163#endif /* RTF_LOCAL */
164#ifdef RTF_BROADCAST
165 {RTF_BROADCAST, "BROADCAST"},
166#endif /* RTF_BROADCAST */
167#ifdef RTF_MULTICAST
168 {RTF_MULTICAST, "MULTICAST"},
169#endif /* RTF_MULTICAST */
170 {0, NULL}
171};
172
173/* Kernel routing update socket. */
174int routing_sock = -1;
175
176/* Yes I'm checking ugly routing socket behavior. */
177/* #define DEBUG */
178
179/* Supported address family check. */
paul62debbb2005-06-14 14:07:07 +0000180static int inline
paul718e3742002-12-13 20:15:29 +0000181af_check (int family)
182{
183 if (family == AF_INET)
184 return 1;
185#ifdef HAVE_IPV6
186 if (family == AF_INET6)
187 return 1;
188#endif /* HAVE_IPV6 */
189 return 0;
190}
191
192/* Dump routing table flag for debug purpose. */
ajsb6178002004-12-07 21:12:56 +0000193static void
paul718e3742002-12-13 20:15:29 +0000194rtm_flag_dump (int flag)
195{
196 struct message *mes;
197 static char buf[BUFSIZ];
198
gdtcced60d2004-07-13 16:45:54 +0000199 buf[0] = '\0';
paul718e3742002-12-13 20:15:29 +0000200 for (mes = rtm_flag_str; mes->key != 0; mes++)
201 {
202 if (mes->key & flag)
203 {
204 strlcat (buf, mes->str, BUFSIZ);
205 strlcat (buf, " ", BUFSIZ);
206 }
207 }
ajsb6178002004-12-07 21:12:56 +0000208 zlog_debug ("Kernel: %s", buf);
paul718e3742002-12-13 20:15:29 +0000209}
210
211#ifdef RTM_IFANNOUNCE
212/* Interface adding function */
213int
214ifan_read (struct if_announcemsghdr *ifan)
215{
216 struct interface *ifp;
217
218 ifp = if_lookup_by_index (ifan->ifan_index);
219 if (ifp == NULL && ifan->ifan_what == IFAN_ARRIVAL)
220 {
221 /* Create Interface */
ajs08dbfb62005-04-03 03:40:52 +0000222 ifp = if_get_by_name_len(ifan->ifan_name,
223 strnlen(ifan->ifan_name,
224 sizeof(ifan->ifan_name)));
paul718e3742002-12-13 20:15:29 +0000225 ifp->ifindex = ifan->ifan_index;
226
227 if_add_update (ifp);
228 }
229 else if (ifp != NULL && ifan->ifan_what == IFAN_DEPARTURE)
paul6eb88272005-07-29 14:36:00 +0000230 if_delete_update (ifp);
paul718e3742002-12-13 20:15:29 +0000231
232 if_get_flags (ifp);
233 if_get_mtu (ifp);
234 if_get_metric (ifp);
235
236 if (IS_ZEBRA_DEBUG_KERNEL)
ajsb6178002004-12-07 21:12:56 +0000237 zlog_debug ("interface %s index %d", ifp->name, ifp->ifindex);
paul718e3742002-12-13 20:15:29 +0000238
239 return 0;
240}
241#endif /* RTM_IFANNOUNCE */
242
gdtda26e3b2004-01-05 17:20:59 +0000243/*
244 * Handle struct if_msghdr obtained from reading routing socket or
245 * sysctl (from interface_list). There may or may not be sockaddrs
246 * present after the header.
247 */
paul718e3742002-12-13 20:15:29 +0000248int
249ifm_read (struct if_msghdr *ifm)
250{
paul3e95a072003-09-24 00:05:45 +0000251 struct interface *ifp = NULL;
paul718e3742002-12-13 20:15:29 +0000252 struct sockaddr_dl *sdl = NULL;
gdt4bfbea82004-01-06 01:13:05 +0000253 void *cp;
254 unsigned int i;
paul718e3742002-12-13 20:15:29 +0000255
gdtda26e3b2004-01-05 17:20:59 +0000256 /* paranoia: sanity check structure */
257 if (ifm->ifm_msglen < sizeof(struct if_msghdr))
258 {
259 zlog_err ("ifm_read: ifm->ifm_msglen %d too short\n",
260 ifm->ifm_msglen);
261 return -1;
262 }
263
264 /*
gdt4bfbea82004-01-06 01:13:05 +0000265 * Check for a sockaddr_dl following the message. First, point to
266 * where a socakddr might be if one follows the message.
gdtda26e3b2004-01-05 17:20:59 +0000267 */
gdt4bfbea82004-01-06 01:13:05 +0000268 cp = (void *)(ifm + 1);
269
paul3e95a072003-09-24 00:05:45 +0000270#ifdef SUNOS_5
paul3e95a072003-09-24 00:05:45 +0000271 /*
gdt4bfbea82004-01-06 01:13:05 +0000272 * XXX This behavior should be narrowed to only the kernel versions
273 * for which the structures returned do not match the headers.
274 *
paul3e95a072003-09-24 00:05:45 +0000275 * if_msghdr_t on 64 bit kernels in Solaris 9 and earlier versions
gdt4bfbea82004-01-06 01:13:05 +0000276 * is 12 bytes larger than the 32 bit version.
paul3e95a072003-09-24 00:05:45 +0000277 */
gdt4bfbea82004-01-06 01:13:05 +0000278 if (((struct sockaddr *) cp)->sa_family == AF_UNSPEC)
paul3e95a072003-09-24 00:05:45 +0000279 cp = cp + 12;
paul3e95a072003-09-24 00:05:45 +0000280#endif
paul718e3742002-12-13 20:15:29 +0000281
gdt4bfbea82004-01-06 01:13:05 +0000282 /*
283 * Check for each sockaddr in turn, advancing over it. After this
284 * loop, sdl should point to a sockaddr_dl iff one was present.
285 */
286 for (i = 1; i != 0; i <<= 1)
287 {
288 if (i & ifm->ifm_addrs)
289 {
290 if (i == RTA_IFP)
291 {
292 sdl = (struct sockaddr_dl *)cp;
293 break;
294 }
gdt6a250b02004-12-09 14:48:12 +0000295 /* XXX warning: pointer of type `void *' used in arithmetic */
gdt4bfbea82004-01-06 01:13:05 +0000296 cp += SAROUNDUP(cp);
297 }
298 }
gdtda26e3b2004-01-05 17:20:59 +0000299
gdt4bfbea82004-01-06 01:13:05 +0000300 /* Ensure that sdl, if present, is actually a sockaddr_dl. */
301 if (sdl != NULL && sdl->sdl_family != AF_LINK)
302 {
303 zlog_err ("ifm_read: sockaddr_dl bad AF %d\n",
304 sdl->sdl_family);
305 return -1;
306 }
gdtda26e3b2004-01-05 17:20:59 +0000307
308 /*
gdt4bfbea82004-01-06 01:13:05 +0000309 * Look up on ifindex first, because ifindices are the primary
310 * handle for interfaces across the user/kernel boundary. (Some
311 * messages, such as up/down status changes on NetBSD, do not
312 * include a sockaddr_dl).
gdtda26e3b2004-01-05 17:20:59 +0000313 */
gdt4bfbea82004-01-06 01:13:05 +0000314 ifp = if_lookup_by_index (ifm->ifm_index);
gdtda26e3b2004-01-05 17:20:59 +0000315
gdtda26e3b2004-01-05 17:20:59 +0000316 /*
317 * If lookup by index was unsuccessful and we have a name, try
318 * looking up by name. Interfaces specified in the configuration
319 * file for which the ifindex has not been determined will have
ajsd2fc8892005-04-02 18:38:43 +0000320 * ifindex == IFINDEX_INTERNAL, and such interfaces are found by this search,
321 * and then their ifindex values can be filled in.
gdtda26e3b2004-01-05 17:20:59 +0000322 */
gdtcb42c032004-01-05 17:55:46 +0000323 if (ifp == NULL && sdl != NULL)
paul3e95a072003-09-24 00:05:45 +0000324 {
gdtda26e3b2004-01-05 17:20:59 +0000325 /*
326 * paranoia: sanity check name length. nlen does not include
327 * trailing zero, but IFNAMSIZ max length does.
ajsa3491982005-04-02 22:50:38 +0000328 *
329 * XXX Is this test correct? Should it be '>=' or '>'? And is it even
330 * necessary now that we are using if_lookup_by_name_len?
gdtda26e3b2004-01-05 17:20:59 +0000331 */
332 if (sdl->sdl_nlen >= IFNAMSIZ)
333 {
334 zlog_err ("ifm_read: illegal sdl_nlen %d\n", sdl->sdl_nlen);
335 return -1;
336 }
337
ajsa3491982005-04-02 22:50:38 +0000338 ifp = if_lookup_by_name_len (sdl->sdl_data, sdl->sdl_nlen);
paul3e95a072003-09-24 00:05:45 +0000339 }
paul718e3742002-12-13 20:15:29 +0000340
gdtda26e3b2004-01-05 17:20:59 +0000341 /*
ajsd2fc8892005-04-02 18:38:43 +0000342 * If ifp does not exist or has an invalid index (IFINDEX_INTERNAL), create or
gdtda26e3b2004-01-05 17:20:59 +0000343 * fill in an interface.
344 */
ajsd2fc8892005-04-02 18:38:43 +0000345 if ((ifp == NULL) || (ifp->ifindex == IFINDEX_INTERNAL))
paul718e3742002-12-13 20:15:29 +0000346 {
gdt4bfbea82004-01-06 01:13:05 +0000347 /*
348 * To create or fill in an interface, a sockaddr_dl (via
349 * RTA_IFP) is required.
350 */
351 if (sdl == NULL)
paul718e3742002-12-13 20:15:29 +0000352 {
gdt4bfbea82004-01-06 01:13:05 +0000353 zlog_warn ("Interface index %d (new) missing RTA_IFP sockaddr_dl\n",
paul718e3742002-12-13 20:15:29 +0000354 ifm->ifm_index);
355 return -1;
356 }
357
paul3e95a072003-09-24 00:05:45 +0000358 if (ifp == NULL)
gdt4bfbea82004-01-06 01:13:05 +0000359 /* Interface that zebra was not previously aware of, so create. */
paul3e95a072003-09-24 00:05:45 +0000360 ifp = if_create (sdl->sdl_data, sdl->sdl_nlen);
paul718e3742002-12-13 20:15:29 +0000361
gdt4bfbea82004-01-06 01:13:05 +0000362 /*
363 * Fill in newly created interface structure, or larval
ajsd2fc8892005-04-02 18:38:43 +0000364 * structure with ifindex IFINDEX_INTERNAL.
gdt4bfbea82004-01-06 01:13:05 +0000365 */
paul718e3742002-12-13 20:15:29 +0000366 ifp->ifindex = ifm->ifm_index;
367 ifp->flags = ifm->ifm_flags;
368#if defined(__bsdi__)
369 if_kvm_get_mtu (ifp);
370#else
371 if_get_mtu (ifp);
372#endif /* __bsdi__ */
373 if_get_metric (ifp);
374
gdt4bfbea82004-01-06 01:13:05 +0000375 /*
376 * XXX sockaddr_dl contents can be larger than the structure
377 * definition, so the user of the stored structure must be
378 * careful not to read off the end.
379 */
paul718e3742002-12-13 20:15:29 +0000380 memcpy (&ifp->sdl, sdl, sizeof (struct sockaddr_dl));
381
382 if_add_update (ifp);
383 }
384 else
gdtda26e3b2004-01-05 17:20:59 +0000385 /*
386 * Interface structure exists. Adjust stored flags from
387 * notification. If interface has up->down or down->up
388 * transition, call state change routines (to adjust routes,
389 * notify routing daemons, etc.). (Other flag changes are stored
390 * but apparently do not trigger action.)
391 */
paul718e3742002-12-13 20:15:29 +0000392 {
paul718e3742002-12-13 20:15:29 +0000393 if (if_is_up (ifp))
394 {
395 ifp->flags = ifm->ifm_flags;
396 if (! if_is_up (ifp))
paul6eb88272005-07-29 14:36:00 +0000397 {
398 if_down (ifp);
399#ifndef RTM_IFANNOUNCE
400 /* No RTM_IFANNOUNCE on this platform, so we can never
401 * distinguish between down and delete. We must presume
402 * it has been deleted.
403 * Eg, Solaris will not notify us of unplumb.
404 *
405 * XXX: Fixme - this should be runtime detected
406 * So that a binary compiled on a system with IFANNOUNCE
407 * will still behave correctly if run on a platform without
408 */
409 if_delete_update (ifp);
410#endif /* RTM_IFANNOUNCE */
411 }
paul718e3742002-12-13 20:15:29 +0000412 }
413 else
414 {
415 ifp->flags = ifm->ifm_flags;
416 if (if_is_up (ifp))
417 if_up (ifp);
418 }
419 }
420
421#ifdef HAVE_NET_RT_IFLIST
422 ifp->stats = ifm->ifm_data;
423#endif /* HAVE_NET_RT_IFLIST */
424
425 if (IS_ZEBRA_DEBUG_KERNEL)
ajsb6178002004-12-07 21:12:56 +0000426 zlog_debug ("interface %s index %d", ifp->name, ifp->ifindex);
paul718e3742002-12-13 20:15:29 +0000427
428 return 0;
429}
430
431/* Address read from struct ifa_msghdr. */
432void
433ifam_read_mesg (struct ifa_msghdr *ifm,
434 union sockunion *addr,
435 union sockunion *mask,
436 union sockunion *dest)
437{
438 caddr_t pnt, end;
439
440 pnt = (caddr_t)(ifm + 1);
441 end = ((caddr_t)ifm) + ifm->ifam_msglen;
442
paul718e3742002-12-13 20:15:29 +0000443 /* Be sure structure is cleared */
444 memset (mask, 0, sizeof (union sockunion));
445 memset (addr, 0, sizeof (union sockunion));
446 memset (dest, 0, sizeof (union sockunion));
447
448 /* We fetch each socket variable into sockunion. */
paul62debbb2005-06-14 14:07:07 +0000449 RTA_ADDR_GET (NULL, RTA_DST, ifm->ifam_addrs, pnt);
450 RTA_ADDR_GET (NULL, RTA_GATEWAY, ifm->ifam_addrs, pnt);
451 RTA_ATTR_GET (mask, RTA_NETMASK, ifm->ifam_addrs, pnt);
452 RTA_ADDR_GET (NULL, RTA_GENMASK, ifm->ifam_addrs, pnt);
453 RTA_ADDR_GET (NULL, RTA_IFP, ifm->ifam_addrs, pnt);
454 RTA_ADDR_GET (addr, RTA_IFA, ifm->ifam_addrs, pnt);
455 RTA_ADDR_GET (NULL, RTA_AUTHOR, ifm->ifam_addrs, pnt);
456 RTA_ADDR_GET (dest, RTA_BRD, ifm->ifam_addrs, pnt);
paul718e3742002-12-13 20:15:29 +0000457
458 /* Assert read up end point matches to end point */
459 if (pnt != end)
460 zlog_warn ("ifam_read() does't read all socket data");
461}
462
463/* Interface's address information get. */
464int
465ifam_read (struct ifa_msghdr *ifam)
466{
467 struct interface *ifp;
paul0752ef02005-11-03 12:35:21 +0000468 union sockunion addr, mask, brd;
paul718e3742002-12-13 20:15:29 +0000469
470 /* Check does this interface exist or not. */
471 ifp = if_lookup_by_index (ifam->ifam_index);
472 if (ifp == NULL)
473 {
474 zlog_warn ("no interface for index %d", ifam->ifam_index);
475 return -1;
476 }
477
478 /* Allocate and read address information. */
paul0752ef02005-11-03 12:35:21 +0000479 ifam_read_mesg (ifam, &addr, &mask, &brd);
paul718e3742002-12-13 20:15:29 +0000480
481 /* Check interface flag for implicit up of the interface. */
482 if_refresh (ifp);
483
484 /* Add connected address. */
485 switch (sockunion_family (&addr))
486 {
487 case AF_INET:
488 if (ifam->ifam_type == RTM_NEWADDR)
489 connected_add_ipv4 (ifp, 0, &addr.sin.sin_addr,
490 ip_masklen (mask.sin.sin_addr),
paul0752ef02005-11-03 12:35:21 +0000491 &brd.sin.sin_addr,
492 (isalias ? ifname : NULL) );
paul718e3742002-12-13 20:15:29 +0000493 else
494 connected_delete_ipv4 (ifp, 0, &addr.sin.sin_addr,
495 ip_masklen (mask.sin.sin_addr),
paul0752ef02005-11-03 12:35:21 +0000496 &brd.sin.sin_addr);
paul718e3742002-12-13 20:15:29 +0000497 break;
498#ifdef HAVE_IPV6
499 case AF_INET6:
500 /* Unset interface index from link-local address when IPv6 stack
501 is KAME. */
502 if (IN6_IS_ADDR_LINKLOCAL (&addr.sin6.sin6_addr))
503 SET_IN6_LINKLOCAL_IFINDEX (addr.sin6.sin6_addr, 0);
504
505 if (ifam->ifam_type == RTM_NEWADDR)
506 connected_add_ipv6 (ifp,
507 &addr.sin6.sin6_addr,
508 ip6_masklen (mask.sin6.sin6_addr),
paul0752ef02005-11-03 12:35:21 +0000509 &brd.sin6.sin6_addr,
510 (isalias ? ifname : NULL) );
paul718e3742002-12-13 20:15:29 +0000511 else
512 connected_delete_ipv6 (ifp,
513 &addr.sin6.sin6_addr,
514 ip6_masklen (mask.sin6.sin6_addr),
paul0752ef02005-11-03 12:35:21 +0000515 &brd.sin6.sin6_addr);
paul718e3742002-12-13 20:15:29 +0000516 break;
517#endif /* HAVE_IPV6 */
518 default:
519 /* Unsupported family silently ignore... */
520 break;
521 }
522 return 0;
523}
524
525/* Interface function for reading kernel routing table information. */
526int
527rtm_read_mesg (struct rt_msghdr *rtm,
528 union sockunion *dest,
529 union sockunion *mask,
530 union sockunion *gate)
531{
532 caddr_t pnt, end;
533
534 /* Pnt points out socket data start point. */
535 pnt = (caddr_t)(rtm + 1);
536 end = ((caddr_t)rtm) + rtm->rtm_msglen;
537
538 /* rt_msghdr version check. */
539 if (rtm->rtm_version != RTM_VERSION)
540 zlog (NULL, LOG_WARNING,
541 "Routing message version different %d should be %d."
542 "This may cause problem\n", rtm->rtm_version, RTM_VERSION);
paul62debbb2005-06-14 14:07:07 +0000543
paul718e3742002-12-13 20:15:29 +0000544 /* Be sure structure is cleared */
545 memset (dest, 0, sizeof (union sockunion));
546 memset (gate, 0, sizeof (union sockunion));
547 memset (mask, 0, sizeof (union sockunion));
548
549 /* We fetch each socket variable into sockunion. */
paul62debbb2005-06-14 14:07:07 +0000550 RTA_ADDR_GET (dest, RTA_DST, rtm->rtm_addrs, pnt);
551 RTA_ADDR_GET (gate, RTA_GATEWAY, rtm->rtm_addrs, pnt);
552 RTA_ATTR_GET (mask, RTA_NETMASK, rtm->rtm_addrs, pnt);
553 RTA_ADDR_GET (NULL, RTA_GENMASK, rtm->rtm_addrs, pnt);
554 RTA_ADDR_GET (NULL, RTA_IFP, rtm->rtm_addrs, pnt);
555 RTA_ADDR_GET (NULL, RTA_IFA, rtm->rtm_addrs, pnt);
556 RTA_ADDR_GET (NULL, RTA_AUTHOR, rtm->rtm_addrs, pnt);
557 RTA_ADDR_GET (NULL, RTA_BRD, rtm->rtm_addrs, pnt);
paul718e3742002-12-13 20:15:29 +0000558
559 /* If there is netmask information set it's family same as
560 destination family*/
561 if (rtm->rtm_addrs & RTA_NETMASK)
562 mask->sa.sa_family = dest->sa.sa_family;
563
564 /* Assert read up to the end of pointer. */
565 if (pnt != end)
566 zlog (NULL, LOG_WARNING, "rtm_read() does't read all socket data.");
567
568 return rtm->rtm_flags;
569}
570
571void
572rtm_read (struct rt_msghdr *rtm)
573{
574 int flags;
575 u_char zebra_flags;
576 union sockunion dest, mask, gate;
577
578 zebra_flags = 0;
579
580 /* Discard self send message. */
581 if (rtm->rtm_type != RTM_GET
582 && (rtm->rtm_pid == pid || rtm->rtm_pid == old_pid))
583 return;
584
585 /* Read destination and netmask and gateway from rtm message
586 structure. */
587 flags = rtm_read_mesg (rtm, &dest, &mask, &gate);
588
589#ifdef RTF_CLONED /*bsdi, netbsd 1.6*/
590 if (flags & RTF_CLONED)
591 return;
592#endif
593#ifdef RTF_WASCLONED /*freebsd*/
594 if (flags & RTF_WASCLONED)
595 return;
596#endif
597
598 if ((rtm->rtm_type == RTM_ADD) && ! (flags & RTF_UP))
599 return;
600
601 /* This is connected route. */
602 if (! (flags & RTF_GATEWAY))
603 return;
604
605 if (flags & RTF_PROTO1)
606 SET_FLAG (zebra_flags, ZEBRA_FLAG_SELFROUTE);
607
608 /* This is persistent route. */
609 if (flags & RTF_STATIC)
610 SET_FLAG (zebra_flags, ZEBRA_FLAG_STATIC);
611
hasso81dfcaa2003-05-25 19:21:25 +0000612 /* This is a reject or blackhole route */
613 if (flags & RTF_REJECT)
614 SET_FLAG (zebra_flags, ZEBRA_FLAG_REJECT);
615 if (flags & RTF_BLACKHOLE)
616 SET_FLAG (zebra_flags, ZEBRA_FLAG_BLACKHOLE);
617
paul718e3742002-12-13 20:15:29 +0000618 if (dest.sa.sa_family == AF_INET)
619 {
620 struct prefix_ipv4 p;
621
622 p.family = AF_INET;
623 p.prefix = dest.sin.sin_addr;
624 if (flags & RTF_HOST)
625 p.prefixlen = IPV4_MAX_PREFIXLEN;
626 else
627 p.prefixlen = ip_masklen (mask.sin.sin_addr);
paulca162182005-09-12 16:58:52 +0000628
629 /* Change, delete the old prefix, we have no further information
630 * to specify the route really
631 */
632 if (rtm->rtm_type == RTM_CHANGE)
633 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags, &p,
634 NULL, 0, 0);
635
636 if (rtm->rtm_type == RTM_GET
637 || rtm->rtm_type == RTM_ADD
638 || rtm->rtm_type == RTM_CHANGE)
paul718e3742002-12-13 20:15:29 +0000639 rib_add_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags,
640 &p, &gate.sin.sin_addr, 0, 0, 0, 0);
641 else
642 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags,
643 &p, &gate.sin.sin_addr, 0, 0);
644 }
645#ifdef HAVE_IPV6
646 if (dest.sa.sa_family == AF_INET6)
647 {
648 struct prefix_ipv6 p;
649 unsigned int ifindex = 0;
650
651 p.family = AF_INET6;
652 p.prefix = dest.sin6.sin6_addr;
653 if (flags & RTF_HOST)
654 p.prefixlen = IPV6_MAX_PREFIXLEN;
655 else
656 p.prefixlen = ip6_masklen (mask.sin6.sin6_addr);
657
658#ifdef KAME
659 if (IN6_IS_ADDR_LINKLOCAL (&gate.sin6.sin6_addr))
660 {
661 ifindex = IN6_LINKLOCAL_IFINDEX (gate.sin6.sin6_addr);
662 SET_IN6_LINKLOCAL_IFINDEX (gate.sin6.sin6_addr, 0);
663 }
664#endif /* KAME */
665
paulca162182005-09-12 16:58:52 +0000666 /* CHANGE: delete the old prefix, we have no further information
667 * to specify the route really
668 */
669 if (rtm->rtm_type == RTM_CHANGE)
670 rib_delete_ipv4 (ZEBRA_ROUTE_KERNEL, zebra_flags, &p,
671 NULL, 0, 0);
672
673 if (rtm->rtm_type == RTM_GET
674 || rtm->rtm_type == RTM_ADD
675 || rtm->rtm_type == RTM_CHANGE)
paul718e3742002-12-13 20:15:29 +0000676 rib_add_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags,
hassobe61c4e2005-08-27 06:05:47 +0000677 &p, &gate.sin6.sin6_addr, ifindex, 0, 0, 0);
paul718e3742002-12-13 20:15:29 +0000678 else
679 rib_delete_ipv6 (ZEBRA_ROUTE_KERNEL, zebra_flags,
680 &p, &gate.sin6.sin6_addr, ifindex, 0);
681 }
682#endif /* HAVE_IPV6 */
683}
684
685/* Interface function for the kernel routing table updates. Support
686 for RTM_CHANGE will be needed. */
687int
688rtm_write (int message,
689 union sockunion *dest,
690 union sockunion *mask,
691 union sockunion *gate,
692 unsigned int index,
693 int zebra_flags,
694 int metric)
695{
696 int ret;
697 caddr_t pnt;
698 struct interface *ifp;
699 struct sockaddr_in tmp_gate;
700#ifdef HAVE_IPV6
701 struct sockaddr_in6 tmp_gate6;
702#endif /* HAVE_IPV6 */
703
704 /* Sequencial number of routing message. */
705 static int msg_seq = 0;
706
707 /* Struct of rt_msghdr and buffer for storing socket's data. */
708 struct
709 {
710 struct rt_msghdr rtm;
711 char buf[512];
712 } msg;
713
714 memset (&tmp_gate, 0, sizeof (struct sockaddr_in));
715 tmp_gate.sin_family = AF_INET;
716#ifdef HAVE_SIN_LEN
717 tmp_gate.sin_len = sizeof (struct sockaddr_in);
718#endif /* HAVE_SIN_LEN */
719
720#ifdef HAVE_IPV6
721 memset (&tmp_gate6, 0, sizeof (struct sockaddr_in6));
722 tmp_gate6.sin6_family = AF_INET6;
723#ifdef SIN6_LEN
724 tmp_gate6.sin6_len = sizeof (struct sockaddr_in6);
725#endif /* SIN6_LEN */
726#endif /* HAVE_IPV6 */
727
728 if (routing_sock < 0)
729 return ZEBRA_ERR_EPERM;
730
731 /* Clear and set rt_msghdr values */
732 memset (&msg, 0, sizeof (struct rt_msghdr));
733 msg.rtm.rtm_version = RTM_VERSION;
734 msg.rtm.rtm_type = message;
735 msg.rtm.rtm_seq = msg_seq++;
736 msg.rtm.rtm_addrs = RTA_DST;
737 msg.rtm.rtm_addrs |= RTA_GATEWAY;
738 msg.rtm.rtm_flags = RTF_UP;
739 msg.rtm.rtm_index = index;
740
741 if (metric != 0)
742 {
743 msg.rtm.rtm_rmx.rmx_hopcount = metric;
744 msg.rtm.rtm_inits |= RTV_HOPCOUNT;
745 }
746
747 ifp = if_lookup_by_index (index);
748
749 if (gate && message == RTM_ADD)
750 msg.rtm.rtm_flags |= RTF_GATEWAY;
751
752 if (! gate && message == RTM_ADD && ifp &&
753 (ifp->flags & IFF_POINTOPOINT) == 0)
754 msg.rtm.rtm_flags |= RTF_CLONING;
755
756 /* If no protocol specific gateway is specified, use link
757 address for gateway. */
758 if (! gate)
759 {
760 if (!ifp)
761 {
762 zlog_warn ("no gateway found for interface index %d", index);
763 return -1;
764 }
765 gate = (union sockunion *) & ifp->sdl;
766 }
767
768 if (mask)
769 msg.rtm.rtm_addrs |= RTA_NETMASK;
770 else if (message == RTM_ADD)
771 msg.rtm.rtm_flags |= RTF_HOST;
772
773 /* Tagging route with flags */
774 msg.rtm.rtm_flags |= (RTF_PROTO1);
775
776 /* Additional flags. */
777 if (zebra_flags & ZEBRA_FLAG_BLACKHOLE)
778 msg.rtm.rtm_flags |= RTF_BLACKHOLE;
hasso81dfcaa2003-05-25 19:21:25 +0000779 if (zebra_flags & ZEBRA_FLAG_REJECT)
780 msg.rtm.rtm_flags |= RTF_REJECT;
781
paul718e3742002-12-13 20:15:29 +0000782
783#ifdef HAVE_SIN_LEN
784#define SOCKADDRSET(X,R) \
785 if (msg.rtm.rtm_addrs & (R)) \
786 { \
787 int len = ROUNDUP ((X)->sa.sa_len); \
788 memcpy (pnt, (caddr_t)(X), len); \
789 pnt += len; \
790 }
791#else
792#define SOCKADDRSET(X,R) \
793 if (msg.rtm.rtm_addrs & (R)) \
794 { \
795 int len = ROUNDUP (sizeof((X)->sa)); \
796 memcpy (pnt, (caddr_t)(X), len); \
797 pnt += len; \
798 }
799#endif /* HAVE_SIN_LEN */
800
801 pnt = (caddr_t) msg.buf;
802
803 /* Write each socket data into rtm message buffer */
804 SOCKADDRSET (dest, RTA_DST);
805 SOCKADDRSET (gate, RTA_GATEWAY);
806 SOCKADDRSET (mask, RTA_NETMASK);
807
808 msg.rtm.rtm_msglen = pnt - (caddr_t) &msg;
809
810 ret = write (routing_sock, &msg, msg.rtm.rtm_msglen);
811
812 if (ret != msg.rtm.rtm_msglen)
813 {
814 if (errno == EEXIST)
815 return ZEBRA_ERR_RTEXIST;
816 if (errno == ENETUNREACH)
817 return ZEBRA_ERR_RTUNREACH;
818
ajs6099b3b2004-11-20 02:06:59 +0000819 zlog_warn ("write : %s (%d)", safe_strerror (errno), errno);
paul718e3742002-12-13 20:15:29 +0000820 return -1;
821 }
822 return 0;
823}
824
825
826#include "thread.h"
827#include "zebra/zserv.h"
828
paul718e3742002-12-13 20:15:29 +0000829/* For debug purpose. */
ajsb6178002004-12-07 21:12:56 +0000830static void
paul718e3742002-12-13 20:15:29 +0000831rtmsg_debug (struct rt_msghdr *rtm)
832{
gdt6a250b02004-12-09 14:48:12 +0000833 const char *type = "Unknown";
paul718e3742002-12-13 20:15:29 +0000834 struct message *mes;
835
836 for (mes = rtm_type_str; mes->str; mes++)
837 if (mes->key == rtm->rtm_type)
838 {
839 type = mes->str;
840 break;
841 }
842
ajsb6178002004-12-07 21:12:56 +0000843 zlog_debug ("Kernel: Len: %d Type: %s", rtm->rtm_msglen, type);
paul718e3742002-12-13 20:15:29 +0000844 rtm_flag_dump (rtm->rtm_flags);
ajsb6178002004-12-07 21:12:56 +0000845 zlog_debug ("Kernel: message seq %d", rtm->rtm_seq);
846 zlog_debug ("Kernel: pid %d", rtm->rtm_pid);
paul718e3742002-12-13 20:15:29 +0000847}
848
849/* This is pretty gross, better suggestions welcome -- mhandler */
850#ifndef RTAX_MAX
851#ifdef RTA_NUMBITS
852#define RTAX_MAX RTA_NUMBITS
853#else
854#define RTAX_MAX 8
855#endif /* RTA_NUMBITS */
856#endif /* RTAX_MAX */
857
858/* Kernel routing table and interface updates via routing socket. */
859int
860kernel_read (struct thread *thread)
861{
862 int sock;
863 int nbytes;
864 struct rt_msghdr *rtm;
865
gdtdbee01f2004-01-06 00:36:51 +0000866 /*
867 * This must be big enough for any message the kernel might send.
gdtb27900b2004-01-08 15:44:29 +0000868 * Rather than determining how many sockaddrs of what size might be
869 * in each particular message, just use RTAX_MAX of sockaddr_storage
870 * for each. Note that the sockaddrs must be after each message
871 * definition, or rather after whichever happens to be the largest,
872 * since the buffer needs to be big enough for a message and the
873 * sockaddrs together.
gdtdbee01f2004-01-06 00:36:51 +0000874 */
paul718e3742002-12-13 20:15:29 +0000875 union
876 {
877 /* Routing information. */
878 struct
879 {
880 struct rt_msghdr rtm;
gdtb27900b2004-01-08 15:44:29 +0000881 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +0000882 } r;
883
884 /* Interface information. */
885 struct
886 {
887 struct if_msghdr ifm;
gdtb27900b2004-01-08 15:44:29 +0000888 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +0000889 } im;
890
891 /* Interface address information. */
892 struct
893 {
894 struct ifa_msghdr ifa;
gdtb27900b2004-01-08 15:44:29 +0000895 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +0000896 } ia;
897
898#ifdef RTM_IFANNOUNCE
899 /* Interface arrival/departure */
900 struct
901 {
902 struct if_announcemsghdr ifan;
gdtb27900b2004-01-08 15:44:29 +0000903 struct sockaddr_storage addr[RTAX_MAX];
paul718e3742002-12-13 20:15:29 +0000904 } ian;
905#endif /* RTM_IFANNOUNCE */
906
907 } buf;
908
909 /* Fetch routing socket. */
910 sock = THREAD_FD (thread);
911
912 nbytes= read (sock, &buf, sizeof buf);
913
914 if (nbytes <= 0)
915 {
916 if (nbytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN)
ajs6099b3b2004-11-20 02:06:59 +0000917 zlog_warn ("routing socket error: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000918 return 0;
919 }
920
paul9bcdb632003-07-08 08:09:45 +0000921 thread_add_read (zebrad.master, kernel_read, NULL, sock);
paul718e3742002-12-13 20:15:29 +0000922
hasso726f9b22003-05-25 21:04:54 +0000923 if (IS_ZEBRA_DEBUG_KERNEL)
924 rtmsg_debug (&buf.r.rtm);
paul718e3742002-12-13 20:15:29 +0000925
926 rtm = &buf.r.rtm;
927
gdtb27900b2004-01-08 15:44:29 +0000928 /*
929 * Ensure that we didn't drop any data, so that processing routines
930 * can assume they have the whole message.
931 */
gdtda26e3b2004-01-05 17:20:59 +0000932 if (rtm->rtm_msglen != nbytes)
933 {
934 zlog_warn ("kernel_read: rtm->rtm_msglen %d, nbytes %d, type %d\n",
935 rtm->rtm_msglen, nbytes, rtm->rtm_type);
936 return -1;
937 }
938
paul718e3742002-12-13 20:15:29 +0000939 switch (rtm->rtm_type)
940 {
941 case RTM_ADD:
942 case RTM_DELETE:
paulca162182005-09-12 16:58:52 +0000943 case RTM_CHANGE:
paul718e3742002-12-13 20:15:29 +0000944 rtm_read (rtm);
945 break;
946 case RTM_IFINFO:
947 ifm_read (&buf.im.ifm);
948 break;
949 case RTM_NEWADDR:
950 case RTM_DELADDR:
951 ifam_read (&buf.ia.ifa);
952 break;
953#ifdef RTM_IFANNOUNCE
954 case RTM_IFANNOUNCE:
955 ifan_read (&buf.ian.ifan);
956 break;
957#endif /* RTM_IFANNOUNCE */
958 default:
hasso726f9b22003-05-25 21:04:54 +0000959 if (IS_ZEBRA_DEBUG_KERNEL)
ajsb6178002004-12-07 21:12:56 +0000960 zlog_debug("Unprocessed RTM_type: %d", rtm->rtm_type);
paul718e3742002-12-13 20:15:29 +0000961 break;
962 }
963 return 0;
964}
965
966/* Make routing socket. */
967void
968routing_socket ()
969{
pauledd7c242003-06-04 13:59:38 +0000970 if ( zserv_privs.change (ZPRIVS_RAISE) )
971 zlog_err ("routing_socket: Can't raise privileges");
972
paul718e3742002-12-13 20:15:29 +0000973 routing_sock = socket (AF_ROUTE, SOCK_RAW, 0);
974
975 if (routing_sock < 0)
976 {
pauledd7c242003-06-04 13:59:38 +0000977 if ( zserv_privs.change (ZPRIVS_LOWER) )
978 zlog_err ("routing_socket: Can't lower privileges");
paul718e3742002-12-13 20:15:29 +0000979 zlog_warn ("Can't init kernel routing socket");
980 return;
981 }
982
paul865b8522005-01-05 08:30:35 +0000983 /* XXX: Socket should be NONBLOCK, however as we currently
984 * discard failed writes, this will lead to inconsistencies.
985 * For now, socket must be blocking.
986 */
987 /*if (fcntl (routing_sock, F_SETFL, O_NONBLOCK) < 0)
988 zlog_warn ("Can't set O_NONBLOCK to routing socket");*/
989
pauledd7c242003-06-04 13:59:38 +0000990 if ( zserv_privs.change (ZPRIVS_LOWER) )
991 zlog_err ("routing_socket: Can't lower privileges");
paul718e3742002-12-13 20:15:29 +0000992
993 /* kernel_read needs rewrite. */
paul9bcdb632003-07-08 08:09:45 +0000994 thread_add_read (zebrad.master, kernel_read, NULL, routing_sock);
paul718e3742002-12-13 20:15:29 +0000995}
996
997/* Exported interface function. This function simply calls
998 routing_socket (). */
999void
1000kernel_init ()
1001{
1002 routing_socket ();
1003}