]> git.proxmox.com Git - mirror_frr.git/blame - zebra/kernel_socket.c
*: use frr_elevate_privs() (1/2: coccinelle)
[mirror_frr.git] / zebra / kernel_socket.c
CommitLineData
718e3744 1/* 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 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#include <zebra.h>
ddfeb486
DL
22
23#ifndef HAVE_NETLINK
24
8ccc7e80 25#include <net/if_types.h>
fe6c7157 26#ifdef __OpenBSD__
d3e2c74a
RW
27#include <netmpls/mpls.h>
28#endif
718e3744 29
30#include "if.h"
31#include "prefix.h"
32#include "sockunion.h"
33#include "connected.h"
34#include "memory.h"
4a1ab8e4 35#include "zebra_memory.h"
718e3744 36#include "ioctl.h"
37#include "log.h"
718e3744 38#include "table.h"
39#include "rib.h"
edd7c245 40#include "privs.h"
78104b9b 41#include "vrf.h"
174482ef 42#include "lib_errors.h"
718e3744 43
a37bd5e0 44#include "zebra/rt.h"
718e3744 45#include "zebra/interface.h"
46#include "zebra/zserv.h"
47#include "zebra/debug.h"
ec1a4283 48#include "zebra/kernel_socket.h"
8f7d9fc0 49#include "zebra/rib.h"
98c15db6 50#include "zebra/zebra_errors.h"
718e3744 51
edd7c245 52extern struct zebra_privs_t zserv_privs;
53
4bfbea8c 54/*
cfa0ed09
GT
55 * Historically, the BSD routing socket has aligned data following a
56 * struct sockaddr to sizeof(long), which was 4 bytes on some
57 * platforms, and 8 bytes on others. NetBSD 6 changed the routing
58 * socket to align to sizeof(uint64_t), which is 8 bytes. OS X
59 * appears to align to sizeof(int), which is 4 bytes.
4bfbea8c 60 *
cfa0ed09
GT
61 * Alignment of zero-sized sockaddrs is nonsensical, but historically
62 * BSD defines RT_ROUNDUP(0) to be the alignment interval (rather than
63 * 0). We follow this practice without questioning it, but it is a
64 * bug if quagga calls ROUNDUP with 0.
4bfbea8c 65 */
cfa0ed09
GT
66
67/*
68 * Because of these varying conventions, the only sane approach is for
69 * the <net/route.h> header to define some flavor of ROUNDUP macro.
70 */
e7f0e649
DL
71
72#if defined(SA_SIZE)
73/* SAROUNDUP is the only thing we need, and SA_SIZE provides that */
74#define SAROUNDUP(a) SA_SIZE(a)
75#else /* !SA_SIZE */
76
cfa0ed09
GT
77#if defined(RT_ROUNDUP)
78#define ROUNDUP(a) RT_ROUNDUP(a)
79#endif /* defined(RT_ROUNDUP) */
80
f7f9a982
DL
81#if defined(SUNOS_5)
82/* Solaris has struct sockaddr_in[6] definitions at 16 / 32 bytes size,
83 * so the whole concept doesn't really apply. */
84#define ROUNDUP(a) (a)
85#endif
86
cfa0ed09
GT
87/*
88 * If ROUNDUP has not yet been defined in terms of platform-provided
89 * defines, attempt to cope with heuristics.
90 */
91#if !defined(ROUNDUP)
92
93/*
adf580f7
DL
94 * If you're porting to a platform that changed RT_ROUNDUP but doesn't
95 * have it in its headers, this will break rather obviously and you'll
96 * have to fix it here.
cfa0ed09 97 */
cfa0ed09
GT
98
99/* OS X (Xcode as of 2014-12) is known not to define RT_ROUNDUP */
3b33de67 100#ifdef __APPLE__
cfa0ed09 101#define ROUNDUP_TYPE int
67320b26
GT
102#else
103#define ROUNDUP_TYPE long
3b33de67 104#endif
718e3744 105
d62a17ae 106#define ROUNDUP(a) \
107 ((a) > 0 ? (1 + (((a)-1) | (sizeof(ROUNDUP_TYPE) - 1))) \
108 : sizeof(ROUNDUP_TYPE))
cfa0ed09
GT
109
110#endif /* defined(ROUNDUP) */
111
4bfbea8c 112/*
113 * Given a pointer (sockaddr or void *), return the number of bytes
114 * taken up by the sockaddr and any padding needed for alignment.
115 */
6f0e3f6e 116#if defined(HAVE_STRUCT_SOCKADDR_SA_LEN)
4bfbea8c 117#define SAROUNDUP(X) ROUNDUP(((struct sockaddr *)(X))->sa_len)
56c1f7d8 118#else
4bfbea8c 119/*
120 * One would hope all fixed-size structure definitions are aligned,
121 * but round them up nonetheless.
122 */
d62a17ae 123#define SAROUNDUP(X) \
124 (((struct sockaddr *)(X))->sa_family == AF_INET \
125 ? ROUNDUP(sizeof(struct sockaddr_in)) \
126 : (((struct sockaddr *)(X))->sa_family == AF_INET6 \
127 ? ROUNDUP(sizeof(struct sockaddr_in6)) \
128 : (((struct sockaddr *)(X))->sa_family == AF_LINK \
129 ? ROUNDUP(sizeof(struct sockaddr_dl)) \
130 : sizeof(struct sockaddr))))
6f0e3f6e 131#endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
718e3744 132
e7f0e649
DL
133#endif /* !SA_SIZE */
134
a05df8fd
DV
135/*
136 * We use a call to an inline function to copy (PNT) to (DEST)
137 * 1. Calculating the length of the copy requires an #ifdef to determine
138 * if sa_len is a field and can't be used directly inside a #define
139 * 2. So the compiler doesn't complain when DEST is NULL, which is only true
140 * when we are skipping the copy and incrementing to the next SA
ec1a4283 141 */
d62a17ae 142static inline void rta_copy(union sockunion *dest, caddr_t src)
143{
144 int len;
145 if (!dest)
146 return;
a05df8fd 147#ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
d62a17ae 148 len = (((struct sockaddr *)src)->sa_len > sizeof(*dest))
149 ? sizeof(*dest)
150 : ((struct sockaddr *)src)->sa_len;
a05df8fd 151#else
d62a17ae 152 len = (SAROUNDUP(src) > sizeof(*dest)) ? sizeof(*dest) : SAROUNDUP(src);
a05df8fd 153#endif
d62a17ae 154 memcpy(dest, src, len);
a05df8fd
DV
155}
156
d62a17ae 157#define RTA_ADDR_GET(DEST, RTA, RTMADDRS, PNT) \
158 if ((RTMADDRS) & (RTA)) { \
159 int len = SAROUNDUP((PNT)); \
160 if (af_check(((struct sockaddr *)(PNT))->sa_family)) \
161 rta_copy((DEST), (PNT)); \
162 (PNT) += len; \
163 }
164#define RTA_ATTR_GET(DEST, RTA, RTMADDRS, PNT) \
165 if ((RTMADDRS) & (RTA)) { \
166 int len = SAROUNDUP((PNT)); \
167 rta_copy((DEST), (PNT)); \
168 (PNT) += len; \
169 }
170
171#define RTA_NAME_GET(DEST, RTA, RTMADDRS, PNT, LEN) \
172 if ((RTMADDRS) & (RTA)) { \
d7c0a89a 173 uint8_t *pdest = (uint8_t *)(DEST); \
d62a17ae 174 int len = SAROUNDUP((PNT)); \
175 struct sockaddr_dl *sdl = (struct sockaddr_dl *)(PNT); \
176 if (IS_ZEBRA_DEBUG_KERNEL) \
177 zlog_debug("%s: RTA_SDL_GET nlen %d, alen %d", \
178 __func__, sdl->sdl_nlen, sdl->sdl_alen); \
179 if (((DEST) != NULL) && (sdl->sdl_family == AF_LINK) \
180 && (sdl->sdl_nlen < IFNAMSIZ) && (sdl->sdl_nlen <= len)) { \
181 memcpy(pdest, sdl->sdl_data, sdl->sdl_nlen); \
182 pdest[sdl->sdl_nlen] = '\0'; \
183 (LEN) = sdl->sdl_nlen; \
184 } \
185 (PNT) += len; \
186 } else { \
187 (LEN) = 0; \
188 }
718e3744 189/* Routing socket message types. */
d62a17ae 190const struct message rtm_type_str[] = {{RTM_ADD, "RTM_ADD"},
191 {RTM_DELETE, "RTM_DELETE"},
192 {RTM_CHANGE, "RTM_CHANGE"},
193 {RTM_GET, "RTM_GET"},
194 {RTM_LOSING, "RTM_LOSING"},
195 {RTM_REDIRECT, "RTM_REDIRECT"},
196 {RTM_MISS, "RTM_MISS"},
197 {RTM_LOCK, "RTM_LOCK"},
9458b819 198#ifdef OLDADD
d62a17ae 199 {RTM_OLDADD, "RTM_OLDADD"},
9458b819
GT
200#endif /* RTM_OLDADD */
201#ifdef RTM_OLDDEL
d62a17ae 202 {RTM_OLDDEL, "RTM_OLDDEL"},
9458b819 203#endif /* RTM_OLDDEL */
d62a17ae 204 {RTM_RESOLVE, "RTM_RESOLVE"},
205 {RTM_NEWADDR, "RTM_NEWADDR"},
206 {RTM_DELADDR, "RTM_DELADDR"},
207 {RTM_IFINFO, "RTM_IFINFO"},
718e3744 208#ifdef RTM_OIFINFO
d62a17ae 209 {RTM_OIFINFO, "RTM_OIFINFO"},
718e3744 210#endif /* RTM_OIFINFO */
211#ifdef RTM_NEWMADDR
d62a17ae 212 {RTM_NEWMADDR, "RTM_NEWMADDR"},
718e3744 213#endif /* RTM_NEWMADDR */
214#ifdef RTM_DELMADDR
d62a17ae 215 {RTM_DELMADDR, "RTM_DELMADDR"},
718e3744 216#endif /* RTM_DELMADDR */
217#ifdef RTM_IFANNOUNCE
d62a17ae 218 {RTM_IFANNOUNCE, "RTM_IFANNOUNCE"},
718e3744 219#endif /* RTM_IFANNOUNCE */
d62a17ae 220 {0}};
221
222static const struct message rtm_flag_str[] = {{RTF_UP, "UP"},
223 {RTF_GATEWAY, "GATEWAY"},
224 {RTF_HOST, "HOST"},
225 {RTF_REJECT, "REJECT"},
226 {RTF_DYNAMIC, "DYNAMIC"},
227 {RTF_MODIFIED, "MODIFIED"},
228 {RTF_DONE, "DONE"},
718e3744 229#ifdef RTF_MASK
d62a17ae 230 {RTF_MASK, "MASK"},
718e3744 231#endif /* RTF_MASK */
e6f148e6 232#ifdef RTF_CLONING
d62a17ae 233 {RTF_CLONING, "CLONING"},
e6f148e6 234#endif /* RTF_CLONING */
23b1f400 235#ifdef RTF_XRESOLVE
d62a17ae 236 {RTF_XRESOLVE, "XRESOLVE"},
23b1f400 237#endif /* RTF_XRESOLVE */
c54632ec 238#ifdef RTF_LLINFO
d62a17ae 239 {RTF_LLINFO, "LLINFO"},
c54632ec 240#endif /* RTF_LLINFO */
d62a17ae 241 {RTF_STATIC, "STATIC"},
242 {RTF_BLACKHOLE, "BLACKHOLE"},
6fe70d1b 243#ifdef RTF_PRIVATE
d62a17ae 244 {RTF_PRIVATE, "PRIVATE"},
6fe70d1b 245#endif /* RTF_PRIVATE */
d62a17ae 246 {RTF_PROTO1, "PROTO1"},
247 {RTF_PROTO2, "PROTO2"},
718e3744 248#ifdef RTF_PRCLONING
d62a17ae 249 {RTF_PRCLONING, "PRCLONING"},
718e3744 250#endif /* RTF_PRCLONING */
251#ifdef RTF_WASCLONED
d62a17ae 252 {RTF_WASCLONED, "WASCLONED"},
718e3744 253#endif /* RTF_WASCLONED */
254#ifdef RTF_PROTO3
d62a17ae 255 {RTF_PROTO3, "PROTO3"},
718e3744 256#endif /* RTF_PROTO3 */
257#ifdef RTF_PINNED
d62a17ae 258 {RTF_PINNED, "PINNED"},
718e3744 259#endif /* RTF_PINNED */
260#ifdef RTF_LOCAL
d62a17ae 261 {RTF_LOCAL, "LOCAL"},
718e3744 262#endif /* RTF_LOCAL */
263#ifdef RTF_BROADCAST
d62a17ae 264 {RTF_BROADCAST, "BROADCAST"},
718e3744 265#endif /* RTF_BROADCAST */
266#ifdef RTF_MULTICAST
d62a17ae 267 {RTF_MULTICAST, "MULTICAST"},
718e3744 268#endif /* RTF_MULTICAST */
6fe70d1b 269#ifdef RTF_MULTIRT
d62a17ae 270 {RTF_MULTIRT, "MULTIRT"},
6fe70d1b 271#endif /* RTF_MULTIRT */
272#ifdef RTF_SETSRC
d62a17ae 273 {RTF_SETSRC, "SETSRC"},
6fe70d1b 274#endif /* RTF_SETSRC */
d62a17ae 275 {0}};
718e3744 276
277/* Kernel routing update socket. */
278int routing_sock = -1;
279
280/* Yes I'm checking ugly routing socket behavior. */
281/* #define DEBUG */
282
283/* Supported address family check. */
d62a17ae 284static inline int af_check(int family)
718e3744 285{
d62a17ae 286 if (family == AF_INET)
287 return 1;
288 if (family == AF_INET6)
289 return 1;
290 return 0;
718e3744 291}
6b0655a2 292
718e3744 293/* Dump routing table flag for debug purpose. */
d62a17ae 294static void rtm_flag_dump(int flag)
718e3744 295{
d62a17ae 296 const struct message *mes;
297 static char buf[BUFSIZ];
298
299 buf[0] = '\0';
300 for (mes = rtm_flag_str; mes->key != 0; mes++) {
301 if (mes->key & flag) {
302 strlcat(buf, mes->str, BUFSIZ);
303 strlcat(buf, " ", BUFSIZ);
304 }
718e3744 305 }
d62a17ae 306 zlog_debug("Kernel: %s", buf);
718e3744 307}
308
309#ifdef RTM_IFANNOUNCE
310/* Interface adding function */
d62a17ae 311static int ifan_read(struct if_announcemsghdr *ifan)
718e3744 312{
d62a17ae 313 struct interface *ifp;
314
315 ifp = if_lookup_by_index(ifan->ifan_index, VRF_DEFAULT);
316
317 if (ifp)
318 assert((ifp->ifindex == ifan->ifan_index)
319 || (ifp->ifindex == IFINDEX_INTERNAL));
320
9d303b37
DL
321 if ((ifp == NULL) || ((ifp->ifindex == IFINDEX_INTERNAL)
322 && (ifan->ifan_what == IFAN_ARRIVAL))) {
d62a17ae 323 if (IS_ZEBRA_DEBUG_KERNEL)
324 zlog_debug(
325 "%s: creating interface for ifindex %d, name %s",
326 __func__, ifan->ifan_index, ifan->ifan_name);
327
328 /* Create Interface */
bcc24579 329 ifp = if_get_by_name(ifan->ifan_name, VRF_DEFAULT, 0);
ff880b78 330 if_set_index(ifp, ifan->ifan_index);
d62a17ae 331
332 if_get_metric(ifp);
333 if_add_update(ifp);
334 } else if (ifp != NULL && ifan->ifan_what == IFAN_DEPARTURE)
335 if_delete_update(ifp);
336
337 if_get_flags(ifp);
338 if_get_mtu(ifp);
339 if_get_metric(ifp);
340
341 if (IS_ZEBRA_DEBUG_KERNEL)
342 zlog_debug("%s: interface %s index %d", __func__,
343 ifan->ifan_name, ifan->ifan_index);
344
345 return 0;
718e3744 346}
347#endif /* RTM_IFANNOUNCE */
348
9234b382 349#ifdef HAVE_BSD_IFI_LINK_STATE
c543a173 350/* BSD link detect translation */
d62a17ae 351static void bsd_linkdetect_translate(struct if_msghdr *ifm)
c543a173 352{
d62a17ae 353 if ((ifm->ifm_data.ifi_link_state >= LINK_STATE_UP)
354 || (ifm->ifm_data.ifi_link_state == LINK_STATE_UNKNOWN))
355 SET_FLAG(ifm->ifm_flags, IFF_RUNNING);
356 else
357 UNSET_FLAG(ifm->ifm_flags, IFF_RUNNING);
c543a173 358}
9234b382 359#endif /* HAVE_BSD_IFI_LINK_STATE */
c543a173 360
d62a17ae 361static enum zebra_link_type sdl_to_zebra_link_type(unsigned int sdlt)
8ccc7e80 362{
d62a17ae 363 switch (sdlt) {
364 case IFT_ETHER:
365 return ZEBRA_LLT_ETHER;
366 case IFT_X25:
367 return ZEBRA_LLT_X25;
368 case IFT_FDDI:
369 return ZEBRA_LLT_FDDI;
370 case IFT_PPP:
371 return ZEBRA_LLT_PPP;
372 case IFT_LOOP:
373 return ZEBRA_LLT_LOOPBACK;
374 case IFT_SLIP:
375 return ZEBRA_LLT_SLIP;
376 case IFT_ARCNET:
377 return ZEBRA_LLT_ARCNET;
378 case IFT_ATM:
379 return ZEBRA_LLT_ATM;
380 case IFT_LOCALTALK:
381 return ZEBRA_LLT_LOCALTLK;
382 case IFT_HIPPI:
383 return ZEBRA_LLT_HIPPI;
8ccc7e80 384#ifdef IFT_IEEE1394
d62a17ae 385 case IFT_IEEE1394:
386 return ZEBRA_LLT_IEEE1394;
8ccc7e80
TT
387#endif
388
d62a17ae 389 default:
390 return ZEBRA_LLT_UNKNOWN;
391 }
8ccc7e80
TT
392}
393
da26e3b6 394/*
395 * Handle struct if_msghdr obtained from reading routing socket or
396 * sysctl (from interface_list). There may or may not be sockaddrs
397 * present after the header.
398 */
d62a17ae 399int ifm_read(struct if_msghdr *ifm)
718e3744 400{
d62a17ae 401 struct interface *ifp = NULL;
402 struct sockaddr_dl *sdl;
403 char ifname[IFNAMSIZ];
404 short ifnlen = 0;
405 caddr_t cp;
406
407 /* terminate ifname at head (for strnlen) and tail (for safety) */
408 ifname[IFNAMSIZ - 1] = '\0';
409
410 /* paranoia: sanity check structure */
411 if (ifm->ifm_msglen < sizeof(struct if_msghdr)) {
af4c2728 412 flog_err(ZEBRA_ERR_NETLINK_LENGTH_ERROR,
43e52561
QY
413 "ifm_read: ifm->ifm_msglen %d too short\n",
414 ifm->ifm_msglen);
d62a17ae 415 return -1;
416 }
417
418 /*
419 * Check for a sockaddr_dl following the message. First, point to
420 * where a socakddr might be if one follows the message.
421 */
422 cp = (void *)(ifm + 1);
718e3744 423
4bfbea8c 424#ifdef SUNOS_5
d62a17ae 425 /*
426 * XXX This behavior should be narrowed to only the kernel versions
427 * for which the structures returned do not match the headers.
428 *
429 * if_msghdr_t on 64 bit kernels in Solaris 9 and earlier versions
430 * is 12 bytes larger than the 32 bit version.
431 */
432 if (((struct sockaddr *)cp)->sa_family == AF_UNSPEC)
433 cp = cp + 12;
4bfbea8c 434#endif
3e95a074 435
d62a17ae 436 RTA_ADDR_GET(NULL, RTA_DST, ifm->ifm_addrs, cp);
437 RTA_ADDR_GET(NULL, RTA_GATEWAY, ifm->ifm_addrs, cp);
438 RTA_ATTR_GET(NULL, RTA_NETMASK, ifm->ifm_addrs, cp);
439 RTA_ADDR_GET(NULL, RTA_GENMASK, ifm->ifm_addrs, cp);
440 sdl = (struct sockaddr_dl *)cp;
441 RTA_NAME_GET(ifname, RTA_IFP, ifm->ifm_addrs, cp, ifnlen);
442 RTA_ADDR_GET(NULL, RTA_IFA, ifm->ifm_addrs, cp);
443 RTA_ADDR_GET(NULL, RTA_AUTHOR, ifm->ifm_addrs, cp);
444 RTA_ADDR_GET(NULL, RTA_BRD, ifm->ifm_addrs, cp);
88ed8379
DL
445#ifdef RTA_LABEL
446 RTA_ATTR_GET(NULL, RTA_LABEL, ifm->ifm_addrs, cp);
447#endif
448#ifdef RTA_SRC
449 RTA_ADDR_GET(NULL, RTA_SRC, ifm->ifm_addrs, cp);
450#endif
d62a17ae 451
452 if (IS_ZEBRA_DEBUG_KERNEL)
453 zlog_debug("%s: sdl ifname %s", __func__,
454 (ifnlen ? ifname : "(nil)"));
455
456 /*
457 * Look up on ifindex first, because ifindices are the primary handle
458 * for
459 * interfaces across the user/kernel boundary, for most systems. (Some
460 * messages, such as up/down status changes on NetBSD, do not include a
461 * sockaddr_dl).
462 */
463 if ((ifp = if_lookup_by_index(ifm->ifm_index, VRF_DEFAULT)) != NULL) {
464 /* we have an ifp, verify that the name matches as some systems,
465 * eg Solaris, have a 1:many association of ifindex:ifname
466 * if they dont match, we dont have the correct ifp and should
467 * set it back to NULL to let next check do lookup by name
468 */
469 if (ifnlen && (strncmp(ifp->name, ifname, IFNAMSIZ) != 0)) {
470 if (IS_ZEBRA_DEBUG_KERNEL)
471 zlog_debug(
472 "%s: ifp name %s doesnt match sdl name %s",
473 __func__, ifp->name, ifname);
474 ifp = NULL;
475 }
da26e3b6 476 }
5c78b3d0 477
d62a17ae 478 /*
479 * If we dont have an ifp, try looking up by name. Particularly as some
480 * systems (Solaris) have a 1:many mapping of ifindex:ifname - the
481 * ifname
482 * is therefore our unique handle to that interface.
483 *
484 * Interfaces specified in the configuration file for which the ifindex
485 * has not been determined will have ifindex == IFINDEX_INTERNAL, and
486 * such
487 * interfaces are found by this search, and then their ifindex values
488 * can
489 * be filled in.
490 */
491 if ((ifp == NULL) && ifnlen)
492 ifp = if_lookup_by_name(ifname, VRF_DEFAULT);
493
494 /*
495 * If ifp still does not exist or has an invalid index
496 * (IFINDEX_INTERNAL),
497 * create or fill in an interface.
498 */
499 if ((ifp == NULL) || (ifp->ifindex == IFINDEX_INTERNAL)) {
500 /*
501 * To create or fill in an interface, a sockaddr_dl (via
502 * RTA_IFP) is required.
503 */
504 if (!ifnlen) {
505 zlog_warn("Interface index %d (new) missing ifname\n",
506 ifm->ifm_index);
507 return -1;
508 }
509
5c78b3d0 510#ifndef RTM_IFANNOUNCE
d62a17ae 511 /* Down->Down interface should be ignored here.
512 * See further comment below.
513 */
514 if (!CHECK_FLAG(ifm->ifm_flags, IFF_UP))
515 return 0;
5c78b3d0 516#endif /* !RTM_IFANNOUNCE */
d62a17ae 517
518 if (ifp == NULL) {
519 /* Interface that zebra was not previously aware of, so
520 * create. */
bcc24579 521 ifp = if_create(ifname, VRF_DEFAULT);
d62a17ae 522 if (IS_ZEBRA_DEBUG_KERNEL)
523 zlog_debug("%s: creating ifp for ifindex %d",
524 __func__, ifm->ifm_index);
525 }
526
527 if (IS_ZEBRA_DEBUG_KERNEL)
528 zlog_debug(
529 "%s: updated/created ifp, ifname %s, ifindex %d",
530 __func__, ifp->name, ifp->ifindex);
531 /*
532 * Fill in newly created interface structure, or larval
533 * structure with ifindex IFINDEX_INTERNAL.
534 */
ff880b78 535 if_set_index(ifp, ifm->ifm_index);
d62a17ae 536
9234b382 537#ifdef HAVE_BSD_IFI_LINK_STATE /* translate BSD kernel msg for link-state */
d62a17ae 538 bsd_linkdetect_translate(ifm);
9234b382 539#endif /* HAVE_BSD_IFI_LINK_STATE */
c543a173 540
d62a17ae 541 if_flags_update(ifp, ifm->ifm_flags);
718e3744 542#if defined(__bsdi__)
d62a17ae 543 if_kvm_get_mtu(ifp);
718e3744 544#else
d62a17ae 545 if_get_mtu(ifp);
718e3744 546#endif /* __bsdi__ */
d62a17ae 547 if_get_metric(ifp);
548
549 /*
550 * XXX sockaddr_dl contents can be larger than the structure
551 * definition. There are 2 big families here:
552 * - BSD has sdl_len + sdl_data[16] + overruns sdl_data
553 * we MUST use sdl_len here or we'll truncate data.
554 * - Solaris has no sdl_len, but sdl_data[244]
555 * presumably, it's not going to run past that, so sizeof()
556 * is fine here.
557 * a nonzero ifnlen from RTA_NAME_GET() means sdl is valid
558 */
559 ifp->ll_type = ZEBRA_LLT_UNKNOWN;
560 ifp->hw_addr_len = 0;
561 if (ifnlen) {
ca3ccd87 562#ifdef HAVE_STRUCT_SOCKADDR_DL_SDL_LEN
d62a17ae 563 memcpy(&((struct zebra_if *)ifp->info)->sdl, sdl,
564 sdl->sdl_len);
ca3ccd87 565#else
d62a17ae 566 memcpy(&((struct zebra_if *)ifp->info)->sdl, sdl,
567 sizeof(struct sockaddr_dl));
ca3ccd87 568#endif /* HAVE_STRUCT_SOCKADDR_DL_SDL_LEN */
8ccc7e80 569
d62a17ae 570 ifp->ll_type = sdl_to_zebra_link_type(sdl->sdl_type);
571 if (sdl->sdl_alen <= sizeof(ifp->hw_addr)) {
572 memcpy(ifp->hw_addr, LLADDR(sdl),
573 sdl->sdl_alen);
574 ifp->hw_addr_len = sdl->sdl_alen;
575 }
576 }
577
578 if_add_update(ifp);
579 } else
580 /*
581 * Interface structure exists. Adjust stored flags from
582 * notification. If interface has up->down or down->up
583 * transition, call state change routines (to adjust routes,
584 * notify routing daemons, etc.). (Other flag changes are stored
585 * but apparently do not trigger action.)
586 */
587 {
588 if (ifp->ifindex != ifm->ifm_index) {
589 zlog_warn(
590 "%s: index mismatch, ifname %s, ifp index %d, "
591 "ifm index %d",
592 __func__, ifp->name, ifp->ifindex,
593 ifm->ifm_index);
594 return -1;
595 }
596
9234b382 597#ifdef HAVE_BSD_IFI_LINK_STATE /* translate BSD kernel msg for link-state */
d62a17ae 598 bsd_linkdetect_translate(ifm);
9234b382 599#endif /* HAVE_BSD_IFI_LINK_STATE */
c543a173 600
d62a17ae 601 /* update flags and handle operative->inoperative transition, if
602 * any */
603 if_flags_update(ifp, ifm->ifm_flags);
604
6eb8827d 605#ifndef RTM_IFANNOUNCE
d62a17ae 606 if (!if_is_up(ifp)) {
607 /* No RTM_IFANNOUNCE on this platform, so we can never
608 * distinguish between ~IFF_UP and delete. We must
609 * presume
610 * it has been deleted.
611 * Eg, Solaris will not notify us of unplumb.
612 *
613 * XXX: Fixme - this should be runtime detected
614 * So that a binary compiled on a system with IFANNOUNCE
615 * will still behave correctly if run on a platform
616 * without
617 */
618 if_delete_update(ifp);
619 }
6eb8827d 620#endif /* RTM_IFANNOUNCE */
d62a17ae 621 if (if_is_up(ifp)) {
1ba27564 622#if defined(__bsdi__)
d62a17ae 623 if_kvm_get_mtu(ifp);
1ba27564 624#else
d62a17ae 625 if_get_mtu(ifp);
1ba27564 626#endif /* __bsdi__ */
d62a17ae 627 if_get_metric(ifp);
628 }
629 }
5c78b3d0 630
718e3744 631#ifdef HAVE_NET_RT_IFLIST
d62a17ae 632 ifp->stats = ifm->ifm_data;
718e3744 633#endif /* HAVE_NET_RT_IFLIST */
04427fcb 634 ifp->speed = ifm->ifm_data.ifi_baudrate / 1000000;
718e3744 635
d62a17ae 636 if (IS_ZEBRA_DEBUG_KERNEL)
637 zlog_debug("%s: interface %s index %d", __func__, ifp->name,
638 ifp->ifindex);
718e3744 639
d62a17ae 640 return 0;
718e3744 641}
6b0655a2 642
718e3744 643/* Address read from struct ifa_msghdr. */
d62a17ae 644static void ifam_read_mesg(struct ifa_msghdr *ifm, union sockunion *addr,
645 union sockunion *mask, union sockunion *brd,
646 char *ifname, short *ifnlen)
718e3744 647{
d62a17ae 648 caddr_t pnt, end;
649 union sockunion dst;
650 union sockunion gateway;
651
652 pnt = (caddr_t)(ifm + 1);
653 end = ((caddr_t)ifm) + ifm->ifam_msglen;
654
655 /* Be sure structure is cleared */
656 memset(mask, 0, sizeof(union sockunion));
657 memset(addr, 0, sizeof(union sockunion));
658 memset(brd, 0, sizeof(union sockunion));
659 memset(&dst, 0, sizeof(union sockunion));
660 memset(&gateway, 0, sizeof(union sockunion));
661
662 /* We fetch each socket variable into sockunion. */
663 RTA_ADDR_GET(&dst, RTA_DST, ifm->ifam_addrs, pnt);
664 RTA_ADDR_GET(&gateway, RTA_GATEWAY, ifm->ifam_addrs, pnt);
665 RTA_ATTR_GET(mask, RTA_NETMASK, ifm->ifam_addrs, pnt);
666 RTA_ADDR_GET(NULL, RTA_GENMASK, ifm->ifam_addrs, pnt);
667 RTA_NAME_GET(ifname, RTA_IFP, ifm->ifam_addrs, pnt, *ifnlen);
668 RTA_ADDR_GET(addr, RTA_IFA, ifm->ifam_addrs, pnt);
669 RTA_ADDR_GET(NULL, RTA_AUTHOR, ifm->ifam_addrs, pnt);
670 RTA_ADDR_GET(brd, RTA_BRD, ifm->ifam_addrs, pnt);
88ed8379
DL
671#ifdef RTA_LABEL
672 RTA_ATTR_GET(NULL, RTA_LABEL, ifm->ifam_addrs, pnt);
673#endif
674#ifdef RTA_SRC
675 RTA_ADDR_GET(NULL, RTA_SRC, ifm->ifam_addrs, pnt);
676#endif
d62a17ae 677
678 if (IS_ZEBRA_DEBUG_KERNEL) {
679 int family = sockunion_family(addr);
680 switch (family) {
681 case AF_INET:
682 case AF_INET6: {
683 char buf[4][INET6_ADDRSTRLEN];
684 zlog_debug(
685 "%s: ifindex %d, ifname %s, ifam_addrs 0x%x, "
686 "ifam_flags 0x%x, addr %s/%d broad %s dst %s "
687 "gateway %s",
688 __func__, ifm->ifam_index,
689 (ifnlen ? ifname : "(nil)"), ifm->ifam_addrs,
690 ifm->ifam_flags,
691 inet_ntop(family, &addr->sin.sin_addr, buf[0],
692 sizeof(buf[0])),
693 ip_masklen(mask->sin.sin_addr),
694 inet_ntop(family, &brd->sin.sin_addr, buf[1],
695 sizeof(buf[1])),
696 inet_ntop(family, &dst.sin.sin_addr, buf[2],
697 sizeof(buf[2])),
698 inet_ntop(family, &gateway.sin.sin_addr, buf[3],
699 sizeof(buf[3])));
700 } break;
701 default:
702 zlog_debug("%s: ifindex %d, ifname %s, ifam_addrs 0x%x",
703 __func__, ifm->ifam_index,
704 (ifnlen ? ifname : "(nil)"),
705 ifm->ifam_addrs);
706 break;
707 }
708 }
709
710 /* Assert read up end point matches to end point */
711 if (pnt != end)
712 zlog_warn("ifam_read() doesn't read all socket data");
718e3744 713}
714
715/* Interface's address information get. */
d62a17ae 716int ifam_read(struct ifa_msghdr *ifam)
718e3744 717{
d62a17ae 718 struct interface *ifp = NULL;
719 union sockunion addr, mask, brd;
720 char ifname[INTERFACE_NAMSIZ];
721 short ifnlen = 0;
722 char isalias = 0;
723 int flags = 0;
724
725 ifname[0] = ifname[INTERFACE_NAMSIZ - 1] = '\0';
726
727 /* Allocate and read address information. */
728 ifam_read_mesg(ifam, &addr, &mask, &brd, ifname, &ifnlen);
729
730 if ((ifp = if_lookup_by_index(ifam->ifam_index, VRF_DEFAULT)) == NULL) {
731 zlog_warn("%s: no interface for ifname %s, index %d", __func__,
732 ifname, ifam->ifam_index);
733 return -1;
734 }
735
736 if (ifnlen && strncmp(ifp->name, ifname, INTERFACE_NAMSIZ))
737 isalias = 1;
738
739 /* N.B. The info in ifa_msghdr does not tell us whether the RTA_BRD
740 field contains a broadcast address or a peer address, so we are
741 forced to
742 rely upon the interface type. */
743 if (if_is_pointopoint(ifp))
744 SET_FLAG(flags, ZEBRA_IFA_PEER);
7ab62c53 745
6502208c
PJ
746#if 0
747 /* it might seem cute to grab the interface metric here, however
748 * we're processing an address update message, and so some systems
749 * (e.g. FBSD) dont bother to fill in ifam_metric. Disabled, but left
750 * in deliberately, as comment.
751 */
d34b8991 752 ifp->metric = ifam->ifam_metric;
6502208c
PJ
753#endif
754
d62a17ae 755 /* Add connected address. */
756 switch (sockunion_family(&addr)) {
757 case AF_INET:
758 if (ifam->ifam_type == RTM_NEWADDR)
759 connected_add_ipv4(ifp, flags, &addr.sin.sin_addr,
760 ip_masklen(mask.sin.sin_addr),
761 &brd.sin.sin_addr,
762 (isalias ? ifname : NULL));
763 else
764 connected_delete_ipv4(ifp, flags, &addr.sin.sin_addr,
765 ip_masklen(mask.sin.sin_addr),
766 &brd.sin.sin_addr);
767 break;
768 case AF_INET6:
769 /* Unset interface index from link-local address when IPv6 stack
770 is KAME. */
771 if (IN6_IS_ADDR_LINKLOCAL(&addr.sin6.sin6_addr)) {
772 SET_IN6_LINKLOCAL_IFINDEX(addr.sin6.sin6_addr, 0);
773 }
774
775 if (ifam->ifam_type == RTM_NEWADDR)
776 connected_add_ipv6(ifp, flags, &addr.sin6.sin6_addr,
60c0687a 777 NULL,
d62a17ae 778 ip6_masklen(mask.sin6.sin6_addr),
d62a17ae 779 (isalias ? ifname : NULL));
780 else
60c0687a 781 connected_delete_ipv6(ifp, &addr.sin6.sin6_addr, NULL,
608105a7 782 ip6_masklen(mask.sin6.sin6_addr));
d62a17ae 783 break;
784 default:
785 /* Unsupported family silently ignore... */
786 break;
787 }
788
789 /* Check interface flag for implicit up of the interface. */
790 if_refresh(ifp);
5c78b3d0 791
792#ifdef SUNOS_5
d62a17ae 793 /* In addition to lacking IFANNOUNCE, on SUNOS IFF_UP is strange.
794 * See comments for SUNOS_5 in interface.c::if_flags_mangle.
795 *
796 * Here we take care of case where the real IFF_UP was previously
797 * unset (as kept in struct zebra_if.primary_state) and the mangled
798 * IFF_UP (ie IFF_UP set || listcount(connected) has now transitioned
799 * to unset due to the lost non-primary address having DELADDR'd.
800 *
801 * we must delete the interface, because in between here and next
802 * event for this interface-name the administrator could unplumb
803 * and replumb the interface.
804 */
805 if (!if_is_up(ifp))
806 if_delete_update(ifp);
5c78b3d0 807#endif /* SUNOS_5 */
d62a17ae 808
809 return 0;
718e3744 810}
6b0655a2 811
718e3744 812/* Interface function for reading kernel routing table information. */
d62a17ae 813static int rtm_read_mesg(struct rt_msghdr *rtm, union sockunion *dest,
814 union sockunion *mask, union sockunion *gate,
815 char *ifname, short *ifnlen)
718e3744 816{
d62a17ae 817 caddr_t pnt, end;
818
819 /* Pnt points out socket data start point. */
820 pnt = (caddr_t)(rtm + 1);
821 end = ((caddr_t)rtm) + rtm->rtm_msglen;
822
823 /* rt_msghdr version check. */
824 if (rtm->rtm_version != RTM_VERSION)
825 zlog_warn(
826 "Routing message version different %d should be %d."
827 "This may cause problem\n",
828 rtm->rtm_version, RTM_VERSION);
829
830 /* Be sure structure is cleared */
831 memset(dest, 0, sizeof(union sockunion));
832 memset(gate, 0, sizeof(union sockunion));
833 memset(mask, 0, sizeof(union sockunion));
834
835 /* We fetch each socket variable into sockunion. */
836 RTA_ADDR_GET(dest, RTA_DST, rtm->rtm_addrs, pnt);
837 RTA_ADDR_GET(gate, RTA_GATEWAY, rtm->rtm_addrs, pnt);
838 RTA_ATTR_GET(mask, RTA_NETMASK, rtm->rtm_addrs, pnt);
839 RTA_ADDR_GET(NULL, RTA_GENMASK, rtm->rtm_addrs, pnt);
840 RTA_NAME_GET(ifname, RTA_IFP, rtm->rtm_addrs, pnt, *ifnlen);
841 RTA_ADDR_GET(NULL, RTA_IFA, rtm->rtm_addrs, pnt);
842 RTA_ADDR_GET(NULL, RTA_AUTHOR, rtm->rtm_addrs, pnt);
843 RTA_ADDR_GET(NULL, RTA_BRD, rtm->rtm_addrs, pnt);
88ed8379
DL
844#ifdef RTA_LABEL
845#if 0
846 union sockunion label;
847 memset(&label, 0, sizeof(label));
848 RTA_ATTR_GET(&label, RTA_LABEL, rtm->rtm_addrs, pnt);
849#endif
850 RTA_ATTR_GET(NULL, RTA_LABEL, rtm->rtm_addrs, pnt);
851#endif
852#ifdef RTA_SRC
853 RTA_ADDR_GET(NULL, RTA_SRC, rtm->rtm_addrs, pnt);
854#endif
d62a17ae 855
856 /* If there is netmask information set it's family same as
857 destination family*/
858 if (rtm->rtm_addrs & RTA_NETMASK)
859 mask->sa.sa_family = dest->sa.sa_family;
860
861 /* Assert read up to the end of pointer. */
862 if (pnt != end)
863 zlog_warn("rtm_read() doesn't read all socket data.");
864
865 return rtm->rtm_flags;
718e3744 866}
867
d62a17ae 868void rtm_read(struct rt_msghdr *rtm)
718e3744 869{
d62a17ae 870 int flags;
d7c0a89a 871 uint8_t zebra_flags;
d62a17ae 872 union sockunion dest, mask, gate;
873 char ifname[INTERFACE_NAMSIZ + 1];
874 short ifnlen = 0;
fd36be7e 875 struct nexthop nh;
d62a17ae 876
877 zebra_flags = 0;
878
879 /* Read destination and netmask and gateway from rtm message
880 structure. */
881 flags = rtm_read_mesg(rtm, &dest, &mask, &gate, ifname, &ifnlen);
882 if (!(flags & RTF_DONE))
883 return;
884 if (IS_ZEBRA_DEBUG_KERNEL)
885 zlog_debug("%s: got rtm of type %d (%s)", __func__,
886 rtm->rtm_type,
887 lookup_msg(rtm_type_str, rtm->rtm_type, NULL));
888
889#ifdef RTF_CLONED /*bsdi, netbsd 1.6*/
890 if (flags & RTF_CLONED)
891 return;
718e3744 892#endif
d62a17ae 893#ifdef RTF_WASCLONED /*freebsd*/
894 if (flags & RTF_WASCLONED)
895 return;
718e3744 896#endif
897
d62a17ae 898 if ((rtm->rtm_type == RTM_ADD || rtm->rtm_type == RTM_CHANGE)
899 && !(flags & RTF_UP))
900 return;
901
902 /* This is connected route. */
903 if (!(flags & RTF_GATEWAY))
904 return;
905
906 if (flags & RTF_PROTO1)
907 SET_FLAG(zebra_flags, ZEBRA_FLAG_SELFROUTE);
908
909 /* This is persistent route. */
910 if (flags & RTF_STATIC)
911 SET_FLAG(zebra_flags, ZEBRA_FLAG_STATIC);
912
a8309422 913 memset(&nh, 0, sizeof(nh));
4a7371e9
DS
914
915 nh.vrf_id = VRF_DEFAULT;
d62a17ae 916 /* This is a reject or blackhole route */
a8309422
DL
917 if (flags & RTF_REJECT) {
918 nh.type = NEXTHOP_TYPE_BLACKHOLE;
919 nh.bh_type = BLACKHOLE_REJECT;
920 } else if (flags & RTF_BLACKHOLE) {
921 nh.type = NEXTHOP_TYPE_BLACKHOLE;
922 nh.bh_type = BLACKHOLE_NULL;
923 }
d62a17ae 924
925 if (dest.sa.sa_family == AF_INET) {
926 struct prefix p;
927
928 p.family = AF_INET;
929 p.u.prefix4 = dest.sin.sin_addr;
930 if (flags & RTF_HOST)
931 p.prefixlen = IPV4_MAX_PREFIXLEN;
932 else
933 p.prefixlen = ip_masklen(mask.sin.sin_addr);
934
935 /* Catch self originated messages and match them against our
936 * current RIB.
937 * At the same time, ignore unconfirmed messages, they should be
938 * tracked
939 * by rtm_write() and kernel_rtm_ipv4().
940 */
941 if (rtm->rtm_type != RTM_GET && rtm->rtm_pid == pid) {
942 char buf[PREFIX_STRLEN], gate_buf[INET_ADDRSTRLEN];
943 int ret;
944 if (!IS_ZEBRA_DEBUG_RIB)
945 return;
946 ret = rib_lookup_ipv4_route((struct prefix_ipv4 *)&p,
947 &gate, VRF_DEFAULT);
948 prefix2str(&p, buf, sizeof(buf));
949 switch (rtm->rtm_type) {
950 case RTM_ADD:
951 case RTM_GET:
952 case RTM_CHANGE:
953 /* The kernel notifies us about a new route in
954 FIB created by us.
955 Do we have a correspondent entry in our RIB?
956 */
957 switch (ret) {
958 case ZEBRA_RIB_NOTFOUND:
959 zlog_debug(
960 "%s: %s %s: desync: RR isn't yet in RIB, while already in FIB",
961 __func__,
962 lookup_msg(rtm_type_str,
963 rtm->rtm_type, NULL),
964 buf);
965 break;
966 case ZEBRA_RIB_FOUND_CONNECTED:
967 case ZEBRA_RIB_FOUND_NOGATE:
968 inet_ntop(AF_INET, &gate.sin.sin_addr,
969 gate_buf, INET_ADDRSTRLEN);
970 zlog_debug(
971 "%s: %s %s: desync: RR is in RIB, but gate differs (ours is %s)",
972 __func__,
973 lookup_msg(rtm_type_str,
974 rtm->rtm_type, NULL),
975 buf, gate_buf);
976 break;
977 case ZEBRA_RIB_FOUND_EXACT: /* RIB RR == FIB RR
9d303b37 978 */
d62a17ae 979 zlog_debug(
980 "%s: %s %s: done Ok", __func__,
981 lookup_msg(rtm_type_str,
982 rtm->rtm_type, NULL),
983 buf);
984 rib_lookup_and_dump(
985 (struct prefix_ipv4 *)&p,
986 VRF_DEFAULT);
987 return;
988 break;
989 }
990 break;
991 case RTM_DELETE:
992 /* The kernel notifies us about a route deleted
993 by us. Do we still
994 have it in the RIB? Do we have anything
995 instead? */
996 switch (ret) {
997 case ZEBRA_RIB_FOUND_EXACT:
998 zlog_debug(
999 "%s: %s %s: desync: RR is still in RIB, while already not in FIB",
1000 __func__,
1001 lookup_msg(rtm_type_str,
1002 rtm->rtm_type, NULL),
1003 buf);
1004 rib_lookup_and_dump(
1005 (struct prefix_ipv4 *)&p,
1006 VRF_DEFAULT);
1007 break;
1008 case ZEBRA_RIB_FOUND_CONNECTED:
1009 case ZEBRA_RIB_FOUND_NOGATE:
1010 zlog_debug(
1011 "%s: %s %s: desync: RR is still in RIB, plus gate differs",
1012 __func__,
1013 lookup_msg(rtm_type_str,
1014 rtm->rtm_type, NULL),
1015 buf);
1016 rib_lookup_and_dump(
1017 (struct prefix_ipv4 *)&p,
1018 VRF_DEFAULT);
1019 break;
1020 case ZEBRA_RIB_NOTFOUND: /* RIB RR == FIB RR */
1021 zlog_debug(
1022 "%s: %s %s: done Ok", __func__,
1023 lookup_msg(rtm_type_str,
1024 rtm->rtm_type, NULL),
1025 buf);
1026 rib_lookup_and_dump(
1027 (struct prefix_ipv4 *)&p,
1028 VRF_DEFAULT);
1029 return;
1030 break;
1031 }
1032 break;
1033 default:
1034 zlog_debug(
1035 "%s: %s: warning: loopback RTM of type %s received",
1036 __func__, buf,
1037 lookup_msg(rtm_type_str, rtm->rtm_type,
1038 NULL));
1039 }
1040 return;
1041 }
1042
1043 /* Change, delete the old prefix, we have no further information
1044 * to specify the route really
1045 */
1046 if (rtm->rtm_type == RTM_CHANGE)
1047 rib_delete(AFI_IP, SAFI_UNICAST, VRF_DEFAULT,
60466a63 1048 ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, NULL,
40ecd8e4 1049 NULL, 0, 0, 0, true);
fd36be7e 1050
a8309422
DL
1051 if (!nh.type) {
1052 nh.type = NEXTHOP_TYPE_IPV4;
1053 nh.gate.ipv4 = gate.sin.sin_addr;
1054 }
d62a17ae 1055
d62a17ae 1056 if (rtm->rtm_type == RTM_GET || rtm->rtm_type == RTM_ADD
1057 || rtm->rtm_type == RTM_CHANGE)
4a7371e9 1058 rib_add(AFI_IP, SAFI_UNICAST, VRF_DEFAULT,
d62a17ae 1059 ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, NULL,
4e40b6d6 1060 &nh, 0, 0, 0, 0, 0);
d62a17ae 1061 else
1062 rib_delete(AFI_IP, SAFI_UNICAST, VRF_DEFAULT,
1063 ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, NULL,
40ecd8e4 1064 &nh, 0, 0, 0, true);
d62a17ae 1065 }
1066 if (dest.sa.sa_family == AF_INET6) {
1067 /* One day we might have a debug section here like one in the
1068 * IPv4 case above. Just ignore own messages at the moment.
1069 */
1070 if (rtm->rtm_type != RTM_GET && rtm->rtm_pid == pid)
1071 return;
1072 struct prefix p;
1073 ifindex_t ifindex = 0;
1074
1075 p.family = AF_INET6;
1076 p.u.prefix6 = dest.sin6.sin6_addr;
1077 if (flags & RTF_HOST)
1078 p.prefixlen = IPV6_MAX_PREFIXLEN;
1079 else
1080 p.prefixlen = ip6_masklen(mask.sin6.sin6_addr);
718e3744 1081
1082#ifdef KAME
d62a17ae 1083 if (IN6_IS_ADDR_LINKLOCAL(&gate.sin6.sin6_addr)) {
1084 ifindex = IN6_LINKLOCAL_IFINDEX(gate.sin6.sin6_addr);
1085 SET_IN6_LINKLOCAL_IFINDEX(gate.sin6.sin6_addr, 0);
1086 }
718e3744 1087#endif /* KAME */
1088
d62a17ae 1089 /* CHANGE: delete the old prefix, we have no further information
1090 * to specify the route really
1091 */
1092 if (rtm->rtm_type == RTM_CHANGE)
1093 rib_delete(AFI_IP6, SAFI_UNICAST, VRF_DEFAULT,
60466a63 1094 ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, NULL,
40ecd8e4 1095 NULL, 0, 0, 0, true);
fd36be7e 1096
a8309422
DL
1097 if (!nh.type) {
1098 nh.type = ifindex ? NEXTHOP_TYPE_IPV6_IFINDEX
1099 : NEXTHOP_TYPE_IPV6;
1100 nh.gate.ipv6 = gate.sin6.sin6_addr;
1101 nh.ifindex = ifindex;
1102 }
d62a17ae 1103
d62a17ae 1104 if (rtm->rtm_type == RTM_GET || rtm->rtm_type == RTM_ADD
1105 || rtm->rtm_type == RTM_CHANGE)
4a7371e9 1106 rib_add(AFI_IP6, SAFI_UNICAST, VRF_DEFAULT,
d62a17ae 1107 ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, NULL,
4e40b6d6 1108 &nh, 0, 0, 0, 0, 0);
d62a17ae 1109 else
1110 rib_delete(AFI_IP6, SAFI_UNICAST, VRF_DEFAULT,
1111 ZEBRA_ROUTE_KERNEL, 0, zebra_flags, &p, NULL,
40ecd8e4 1112 &nh, 0, 0, 0, true);
d62a17ae 1113 }
718e3744 1114}
1115
1116/* Interface function for the kernel routing table updates. Support
6621ca86 1117 * for RTM_CHANGE will be needed.
1118 * Exported only for rt_socket.c
1119 */
d62a17ae 1120int rtm_write(int message, union sockunion *dest, union sockunion *mask,
1121 union sockunion *gate, union sockunion *mpls, unsigned int index,
a8309422 1122 enum blackhole_type bh_type, int metric)
718e3744 1123{
d62a17ae 1124 int ret;
1125 caddr_t pnt;
1126 struct interface *ifp;
1127
1128 /* Sequencial number of routing message. */
1129 static int msg_seq = 0;
1130
1131 /* Struct of rt_msghdr and buffer for storing socket's data. */
1132 struct {
1133 struct rt_msghdr rtm;
1134 char buf[512];
1135 } msg;
1136
1137 if (routing_sock < 0)
1138 return ZEBRA_ERR_EPERM;
1139
1140 /* Clear and set rt_msghdr values */
1141 memset(&msg, 0, sizeof(struct rt_msghdr));
1142 msg.rtm.rtm_version = RTM_VERSION;
1143 msg.rtm.rtm_type = message;
1144 msg.rtm.rtm_seq = msg_seq++;
1145 msg.rtm.rtm_addrs = RTA_DST;
1146 msg.rtm.rtm_addrs |= RTA_GATEWAY;
1147 msg.rtm.rtm_flags = RTF_UP;
fe6c7157 1148#ifdef __OpenBSD__
d62a17ae 1149 msg.rtm.rtm_flags |= RTF_MPATH;
1150 msg.rtm.rtm_fmask = RTF_MPLS;
d3e2c74a 1151#endif
d62a17ae 1152 msg.rtm.rtm_index = index;
718e3744 1153
d62a17ae 1154 if (metric != 0) {
1155 msg.rtm.rtm_rmx.rmx_hopcount = metric;
1156 msg.rtm.rtm_inits |= RTV_HOPCOUNT;
1157 }
718e3744 1158
d62a17ae 1159 ifp = if_lookup_by_index(index, VRF_DEFAULT);
718e3744 1160
d62a17ae 1161 if (gate && (message == RTM_ADD || message == RTM_CHANGE))
1162 msg.rtm.rtm_flags |= RTF_GATEWAY;
718e3744 1163
d62a17ae 1164/* When RTF_CLONING is unavailable on BSD, should we set some
1165 * other flag instead?
1166 */
e6f148e6 1167#ifdef RTF_CLONING
d62a17ae 1168 if (!gate && (message == RTM_ADD || message == RTM_CHANGE) && ifp
1169 && (ifp->flags & IFF_POINTOPOINT) == 0)
1170 msg.rtm.rtm_flags |= RTF_CLONING;
e6f148e6 1171#endif /* RTF_CLONING */
718e3744 1172
d62a17ae 1173 /* If no protocol specific gateway is specified, use link
1174 address for gateway. */
1175 if (!gate) {
1176 if (!ifp) {
1177 char dest_buf[INET_ADDRSTRLEN] = "NULL",
1178 mask_buf[INET_ADDRSTRLEN] = "255.255.255.255";
1179 if (dest)
1180 inet_ntop(AF_INET, &dest->sin.sin_addr,
1181 dest_buf, INET_ADDRSTRLEN);
1182 if (mask)
1183 inet_ntop(AF_INET, &mask->sin.sin_addr,
1184 mask_buf, INET_ADDRSTRLEN);
1185 zlog_warn(
1186 "%s: %s/%s: gate == NULL and no gateway found for ifindex %d",
1187 __func__, dest_buf, mask_buf, index);
1188 return -1;
1189 }
1190 gate = (union sockunion *)&((struct zebra_if *)ifp->info)->sdl;
1191 }
1192
1193 if (mask)
1194 msg.rtm.rtm_addrs |= RTA_NETMASK;
1195 else if (message == RTM_ADD || message == RTM_CHANGE)
1196 msg.rtm.rtm_flags |= RTF_HOST;
718e3744 1197
fe6c7157 1198#ifdef __OpenBSD__
d62a17ae 1199 if (mpls) {
1200 msg.rtm.rtm_addrs |= RTA_SRC;
1201 msg.rtm.rtm_flags |= RTF_MPLS;
1202
1203 if (mpls->smpls.smpls_label
70e98a7f 1204 != htonl(MPLS_LABEL_IMPLICIT_NULL << MPLS_LABEL_OFFSET))
d62a17ae 1205 msg.rtm.rtm_mpls = MPLS_OP_PUSH;
1206 }
d3e2c74a
RW
1207#endif
1208
d62a17ae 1209 /* Tagging route with flags */
1210 msg.rtm.rtm_flags |= (RTF_PROTO1);
718e3744 1211
a8309422
DL
1212 switch (bh_type) {
1213 case BLACKHOLE_UNSPEC:
1214 break;
1215 case BLACKHOLE_REJECT:
d62a17ae 1216 msg.rtm.rtm_flags |= RTF_REJECT;
a8309422
DL
1217 break;
1218 default:
1219 msg.rtm.rtm_flags |= RTF_BLACKHOLE;
1220 break;
1221 }
81dfcaa2 1222
718e3744 1223
d62a17ae 1224#define SOCKADDRSET(X, R) \
1225 if (msg.rtm.rtm_addrs & (R)) { \
1226 int len = SAROUNDUP(X); \
1227 memcpy(pnt, (caddr_t)(X), len); \
1228 pnt += len; \
1229 }
718e3744 1230
d62a17ae 1231 pnt = (caddr_t)msg.buf;
718e3744 1232
d62a17ae 1233 /* Write each socket data into rtm message buffer */
1234 SOCKADDRSET(dest, RTA_DST);
1235 SOCKADDRSET(gate, RTA_GATEWAY);
1236 SOCKADDRSET(mask, RTA_NETMASK);
fe6c7157 1237#ifdef __OpenBSD__
d62a17ae 1238 SOCKADDRSET(mpls, RTA_SRC);
d3e2c74a 1239#endif
718e3744 1240
d62a17ae 1241 msg.rtm.rtm_msglen = pnt - (caddr_t)&msg;
1242
1243 ret = write(routing_sock, &msg, msg.rtm.rtm_msglen);
1244
1245 if (ret != msg.rtm.rtm_msglen) {
1246 if (errno == EEXIST)
1247 return ZEBRA_ERR_RTEXIST;
1248 if (errno == ENETUNREACH)
1249 return ZEBRA_ERR_RTUNREACH;
1250 if (errno == ESRCH)
1251 return ZEBRA_ERR_RTNOEXIST;
1252
1253 zlog_warn("%s: write : %s (%d)", __func__, safe_strerror(errno),
1254 errno);
1255 return ZEBRA_ERR_KERNEL;
1256 }
1257 return ZEBRA_ERR_NOERROR;
718e3744 1258}
1259
6b0655a2 1260
718e3744 1261#include "thread.h"
1262#include "zebra/zserv.h"
1263
718e3744 1264/* For debug purpose. */
d62a17ae 1265static void rtmsg_debug(struct rt_msghdr *rtm)
718e3744 1266{
d62a17ae 1267 zlog_debug("Kernel: Len: %d Type: %s", rtm->rtm_msglen,
1268 lookup_msg(rtm_type_str, rtm->rtm_type, NULL));
1269 rtm_flag_dump(rtm->rtm_flags);
1270 zlog_debug("Kernel: message seq %d", rtm->rtm_seq);
1271 zlog_debug("Kernel: pid %lld, rtm_addrs 0x%x", (long long)rtm->rtm_pid,
1272 rtm->rtm_addrs);
718e3744 1273}
1274
1275/* This is pretty gross, better suggestions welcome -- mhandler */
1276#ifndef RTAX_MAX
1277#ifdef RTA_NUMBITS
1278#define RTAX_MAX RTA_NUMBITS
1279#else
1280#define RTAX_MAX 8
1281#endif /* RTA_NUMBITS */
1282#endif /* RTAX_MAX */
1283
1284/* Kernel routing table and interface updates via routing socket. */
d62a17ae 1285static int kernel_read(struct thread *thread)
718e3744 1286{
d62a17ae 1287 int sock;
1288 int nbytes;
1289 struct rt_msghdr *rtm;
1290
1291 /*
1292 * This must be big enough for any message the kernel might send.
1293 * Rather than determining how many sockaddrs of what size might be
1294 * in each particular message, just use RTAX_MAX of sockaddr_storage
1295 * for each. Note that the sockaddrs must be after each message
1296 * definition, or rather after whichever happens to be the largest,
1297 * since the buffer needs to be big enough for a message and the
1298 * sockaddrs together.
1299 */
1300 union {
1301 /* Routing information. */
1302 struct {
1303 struct rt_msghdr rtm;
1304 struct sockaddr_storage addr[RTAX_MAX];
1305 } r;
1306
1307 /* Interface information. */
1308 struct {
1309 struct if_msghdr ifm;
1310 struct sockaddr_storage addr[RTAX_MAX];
1311 } im;
1312
1313 /* Interface address information. */
1314 struct {
1315 struct ifa_msghdr ifa;
1316 struct sockaddr_storage addr[RTAX_MAX];
1317 } ia;
718e3744 1318
1319#ifdef RTM_IFANNOUNCE
d62a17ae 1320 /* Interface arrival/departure */
1321 struct {
1322 struct if_announcemsghdr ifan;
1323 struct sockaddr_storage addr[RTAX_MAX];
1324 } ian;
718e3744 1325#endif /* RTM_IFANNOUNCE */
1326
d62a17ae 1327 } buf;
718e3744 1328
d62a17ae 1329 /* Fetch routing socket. */
1330 sock = THREAD_FD(thread);
718e3744 1331
d62a17ae 1332 nbytes = read(sock, &buf, sizeof buf);
718e3744 1333
d62a17ae 1334 if (nbytes <= 0) {
1335 if (nbytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN)
1336 zlog_warn("routing socket error: %s",
1337 safe_strerror(errno));
1338 return 0;
1339 }
718e3744 1340
d62a17ae 1341 thread_add_read(zebrad.master, kernel_read, NULL, sock, NULL);
718e3744 1342
d62a17ae 1343 if (IS_ZEBRA_DEBUG_KERNEL)
1344 rtmsg_debug(&buf.r.rtm);
718e3744 1345
d62a17ae 1346 rtm = &buf.r.rtm;
718e3744 1347
d62a17ae 1348 /*
1349 * Ensure that we didn't drop any data, so that processing routines
1350 * can assume they have the whole message.
1351 */
1352 if (rtm->rtm_msglen != nbytes) {
1353 zlog_warn(
1354 "kernel_read: rtm->rtm_msglen %d, nbytes %d, type %d\n",
1355 rtm->rtm_msglen, nbytes, rtm->rtm_type);
1356 return -1;
1357 }
1358
1359 switch (rtm->rtm_type) {
1360 case RTM_ADD:
1361 case RTM_DELETE:
1362 case RTM_CHANGE:
1363 rtm_read(rtm);
1364 break;
1365 case RTM_IFINFO:
1366 ifm_read(&buf.im.ifm);
1367 break;
1368 case RTM_NEWADDR:
1369 case RTM_DELADDR:
1370 ifam_read(&buf.ia.ifa);
1371 break;
718e3744 1372#ifdef RTM_IFANNOUNCE
d62a17ae 1373 case RTM_IFANNOUNCE:
1374 ifan_read(&buf.ian.ifan);
1375 break;
718e3744 1376#endif /* RTM_IFANNOUNCE */
d62a17ae 1377 default:
1378 if (IS_ZEBRA_DEBUG_KERNEL)
1379 zlog_debug("Unprocessed RTM_type: %d", rtm->rtm_type);
1380 break;
1381 }
1382 return 0;
718e3744 1383}
1384
1385/* Make routing socket. */
d62a17ae 1386static void routing_socket(struct zebra_ns *zns)
718e3744 1387{
d62a17ae 1388 if (zserv_privs.change(ZPRIVS_RAISE))
af4c2728 1389 flog_err(LIB_ERR_PRIVILEGES,
174482ef 1390 "routing_socket: Can't raise privileges");
d62a17ae 1391
996c9314 1392 routing_sock =
898a23ca 1393 ns_socket(AF_ROUTE, SOCK_RAW, 0, zns->ns_id);
d62a17ae 1394
1395 if (routing_sock < 0) {
1396 if (zserv_privs.change(ZPRIVS_LOWER))
af4c2728 1397 flog_err(LIB_ERR_PRIVILEGES,
174482ef 1398 "routing_socket: Can't lower privileges");
d62a17ae 1399 zlog_warn("Can't init kernel routing socket");
1400 return;
1401 }
1402
1403 /* XXX: Socket should be NONBLOCK, however as we currently
1404 * discard failed writes, this will lead to inconsistencies.
1405 * For now, socket must be blocking.
1406 */
1407 /*if (fcntl (routing_sock, F_SETFL, O_NONBLOCK) < 0)
1408 zlog_warn ("Can't set O_NONBLOCK to routing socket");*/
1409
1410 if (zserv_privs.change(ZPRIVS_LOWER))
af4c2728 1411 flog_err(LIB_ERR_PRIVILEGES,
174482ef 1412 "routing_socket: Can't lower privileges");
d62a17ae 1413
1414 /* kernel_read needs rewrite. */
1415 thread_add_read(zebrad.master, kernel_read, NULL, routing_sock, NULL);
718e3744 1416}
1417
1418/* Exported interface function. This function simply calls
1419 routing_socket (). */
d62a17ae 1420void kernel_init(struct zebra_ns *zns)
8f7d9fc0 1421{
d62a17ae 1422 routing_socket(zns);
8f7d9fc0
FL
1423}
1424
d62a17ae 1425void kernel_terminate(struct zebra_ns *zns)
718e3744 1426{
d62a17ae 1427 return;
718e3744 1428}
ddfeb486
DL
1429
1430#endif /* !HAVE_NETLINK */