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