]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rt_netlink.c
zebra: Cleanup debugs and add a bit more info
[mirror_frr.git] / zebra / rt_netlink.c
CommitLineData
718e3744 1/* Kernel routing table updates using netlink over GNU/Linux system.
2 * Copyright (C) 1997, 98, 99 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#ifdef HAVE_NETLINK
24
8ccc7e80 25#include <net/if_arp.h>
ba777396
RW
26#include <linux/lwtunnel.h>
27#include <linux/mpls_iptunnel.h>
28#include <linux/neighbour.h>
29#include <linux/rtnetlink.h>
718e3744 30
31/* Hack for GNU libc version 2. */
32#ifndef MSG_TRUNC
33#define MSG_TRUNC 0x20
34#endif /* MSG_TRUNC */
35
36#include "linklist.h"
37#include "if.h"
38#include "log.h"
39#include "prefix.h"
40#include "connected.h"
41#include "table.h"
26e2ae36 42#include "memory.h"
4a1ab8e4 43#include "zebra_memory.h"
718e3744 44#include "rib.h"
e04ab74d 45#include "thread.h"
edd7c245 46#include "privs.h"
fb018d25 47#include "nexthop.h"
78104b9b 48#include "vrf.h"
5e6a74d8 49#include "vty.h"
40c7bdb0 50#include "mpls.h"
13d60d35 51#include "vxlan.h"
718e3744 52
53#include "zebra/zserv.h"
fe18ee2d 54#include "zebra/zebra_ns.h"
7c551956 55#include "zebra/zebra_vrf.h"
6621ca86 56#include "zebra/rt.h"
718e3744 57#include "zebra/redistribute.h"
58#include "zebra/interface.h"
59#include "zebra/debug.h"
12f6fb97 60#include "zebra/rtadv.h"
567b877d 61#include "zebra/zebra_ptm.h"
40c7bdb0 62#include "zebra/zebra_mpls.h"
1fdc9eae 63#include "zebra/kernel_netlink.h"
64#include "zebra/rt_netlink.h"
e3be0432 65#include "zebra/zebra_mroute.h"
2232a77c 66#include "zebra/zebra_vxlan.h"
e3be0432 67
40c7bdb0 68#ifndef AF_MPLS
69#define AF_MPLS 28
70#endif
71
2232a77c 72static vlanid_t filter_vlan = 0;
73
d62a17ae 74struct gw_family_t {
d7c0a89a
QY
75 uint16_t filler;
76 uint16_t family;
d62a17ae 77 union g_addr gate;
40c7bdb0 78};
79
8755598a
DS
80char ipv4_ll_buf[16] = "169.254.0.1";
81struct in_addr ipv4_ll;
82
83/*
84 * The ipv4_ll data structure is used for all 5549
85 * additions to the kernel. Let's figure out the
86 * correct value one time instead for every
87 * install/remove of a 5549 type route
88 */
d62a17ae 89void rt_netlink_init(void)
8755598a 90{
d62a17ae 91 inet_pton(AF_INET, ipv4_ll_buf, &ipv4_ll);
8755598a
DS
92}
93
23b1f334
DD
94static inline int is_selfroute(int proto)
95{
d62a17ae 96 if ((proto == RTPROT_BGP) || (proto == RTPROT_OSPF)
97 || (proto == RTPROT_STATIC) || (proto == RTPROT_ZEBRA)
98 || (proto == RTPROT_ISIS) || (proto == RTPROT_RIPNG)
99 || (proto == RTPROT_NHRP) || (proto == RTPROT_EIGRP)
915902cb 100 || (proto == RTPROT_LDP) || (proto == RTPROT_BABEL)
8a71d93d 101 || (proto == RTPROT_RIP) || (proto == RTPROT_SHARP)) {
d62a17ae 102 return 1;
103 }
104
105 return 0;
23b1f334
DD
106}
107
915902cb 108static inline int zebra2proto(int proto)
23b1f334 109{
d62a17ae 110 switch (proto) {
111 case ZEBRA_ROUTE_BABEL:
112 proto = RTPROT_BABEL;
113 break;
114 case ZEBRA_ROUTE_BGP:
115 proto = RTPROT_BGP;
116 break;
117 case ZEBRA_ROUTE_OSPF:
118 case ZEBRA_ROUTE_OSPF6:
119 proto = RTPROT_OSPF;
120 break;
121 case ZEBRA_ROUTE_STATIC:
122 proto = RTPROT_STATIC;
123 break;
124 case ZEBRA_ROUTE_ISIS:
125 proto = RTPROT_ISIS;
126 break;
127 case ZEBRA_ROUTE_RIP:
128 proto = RTPROT_RIP;
129 break;
130 case ZEBRA_ROUTE_RIPNG:
131 proto = RTPROT_RIPNG;
132 break;
133 case ZEBRA_ROUTE_NHRP:
134 proto = RTPROT_NHRP;
135 break;
136 case ZEBRA_ROUTE_EIGRP:
137 proto = RTPROT_EIGRP;
138 break;
139 case ZEBRA_ROUTE_LDP:
140 proto = RTPROT_LDP;
141 break;
8a71d93d
DS
142 case ZEBRA_ROUTE_SHARP:
143 proto = RTPROT_SHARP;
144 break;
d62a17ae 145 default:
146 proto = RTPROT_ZEBRA;
147 break;
148 }
149
150 return proto;
23b1f334
DD
151}
152
915902cb
DS
153static inline int proto2zebra(int proto, int family)
154{
155 switch (proto) {
156 case RTPROT_BABEL:
157 proto = ZEBRA_ROUTE_BABEL;
158 break;
159 case RTPROT_BGP:
160 proto = ZEBRA_ROUTE_BGP;
161 break;
162 case RTPROT_OSPF:
996c9314
LB
163 proto = (family == AFI_IP) ? ZEBRA_ROUTE_OSPF
164 : ZEBRA_ROUTE_OSPF6;
915902cb
DS
165 break;
166 case RTPROT_ISIS:
167 proto = ZEBRA_ROUTE_ISIS;
168 break;
169 case RTPROT_RIP:
170 proto = ZEBRA_ROUTE_RIP;
171 break;
172 case RTPROT_RIPNG:
173 proto = ZEBRA_ROUTE_RIPNG;
174 break;
175 case RTPROT_NHRP:
176 proto = ZEBRA_ROUTE_NHRP;
177 break;
178 case RTPROT_EIGRP:
179 proto = ZEBRA_ROUTE_EIGRP;
180 break;
181 case RTPROT_LDP:
182 proto = ZEBRA_ROUTE_LDP;
183 break;
184 case RTPROT_STATIC:
185 proto = ZEBRA_ROUTE_STATIC;
186 break;
187 default:
188 proto = ZEBRA_ROUTE_KERNEL;
189 break;
190 }
191 return proto;
192}
193
12f6fb97
DS
194/*
195Pending: create an efficient table_id (in a tree/hash) based lookup)
196 */
d7c0a89a 197static vrf_id_t vrf_lookup_by_table(uint32_t table_id, ns_id_t ns_id)
12f6fb97 198{
d62a17ae 199 struct vrf *vrf;
200 struct zebra_vrf *zvrf;
12f6fb97 201
a2addae8 202 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
78dd30b2
PG
203 zvrf = vrf->info;
204 if (zvrf == NULL)
d62a17ae 205 continue;
78dd30b2
PG
206 /* case vrf with netns : match the netnsid */
207 if (vrf_is_backend_netns()) {
208 if (ns_id == zvrf_id(zvrf))
209 return zvrf_id(zvrf);
210 } else {
211 /* VRF is VRF_BACKEND_VRF_LITE */
212 if (zvrf->table_id != table_id)
213 continue;
214 return zvrf_id(zvrf);
215 }
d62a17ae 216 }
12f6fb97 217
d62a17ae 218 return VRF_DEFAULT;
12f6fb97
DS
219}
220
718e3744 221/* Looking up routing table by netlink interface. */
d62a17ae 222static int netlink_route_change_read_unicast(struct sockaddr_nl *snl,
223 struct nlmsghdr *h, ns_id_t ns_id,
224 int startup)
718e3744 225{
d62a17ae 226 int len;
227 struct rtmsg *rtm;
228 struct rtattr *tb[RTA_MAX + 1];
d7c0a89a 229 uint8_t flags = 0;
d62a17ae 230 struct prefix p;
792fa92e 231 struct prefix_ipv6 src_p = {};
78dd30b2 232 vrf_id_t vrf_id;
d62a17ae 233
234 char anyaddr[16] = {0};
235
915902cb 236 int proto = ZEBRA_ROUTE_KERNEL;
d62a17ae 237 int index = 0;
238 int table;
239 int metric = 0;
d7c0a89a 240 uint32_t mtu = 0;
25715c7e 241 uint8_t distance = 0;
4e40b6d6 242 route_tag_t tag = 0;
d62a17ae 243
244 void *dest = NULL;
245 void *gate = NULL;
246 void *prefsrc = NULL; /* IPv4 preferred source host address */
247 void *src = NULL; /* IPv6 srcdest source prefix */
e655a03c 248 enum blackhole_type bh_type = BLACKHOLE_UNSPEC;
d62a17ae 249
250 rtm = NLMSG_DATA(h);
251
252 if (startup && h->nlmsg_type != RTM_NEWROUTE)
253 return 0;
e655a03c
DL
254 switch (rtm->rtm_type) {
255 case RTN_UNICAST:
256 break;
257 case RTN_BLACKHOLE:
258 bh_type = BLACKHOLE_NULL;
259 break;
260 case RTN_UNREACHABLE:
261 bh_type = BLACKHOLE_REJECT;
262 break;
263 case RTN_PROHIBIT:
264 bh_type = BLACKHOLE_ADMINPROHIB;
265 break;
266 default:
d62a17ae 267 return 0;
e655a03c 268 }
d62a17ae 269
270 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct rtmsg));
271 if (len < 0)
272 return -1;
273
274 memset(tb, 0, sizeof tb);
275 netlink_parse_rtattr(tb, RTA_MAX, RTM_RTA(rtm), len);
276
277 if (rtm->rtm_flags & RTM_F_CLONED)
278 return 0;
279 if (rtm->rtm_protocol == RTPROT_REDIRECT)
280 return 0;
281 if (rtm->rtm_protocol == RTPROT_KERNEL)
282 return 0;
283
284 if (!startup && is_selfroute(rtm->rtm_protocol)
285 && h->nlmsg_type == RTM_NEWROUTE)
286 return 0;
287
288 /* We don't care about change notifications for the MPLS table. */
289 /* TODO: Revisit this. */
290 if (rtm->rtm_family == AF_MPLS)
291 return 0;
292
293 /* Table corresponding to route. */
294 if (tb[RTA_TABLE])
295 table = *(int *)RTA_DATA(tb[RTA_TABLE]);
296 else
297 table = rtm->rtm_table;
298
299 /* Map to VRF */
78dd30b2 300 vrf_id = vrf_lookup_by_table(table, ns_id);
d62a17ae 301 if (vrf_id == VRF_DEFAULT) {
302 if (!is_zebra_valid_kernel_table(table)
303 && !is_zebra_main_routing_table(table))
304 return 0;
305 }
306
307 /* Route which inserted by Zebra. */
915902cb 308 if (is_selfroute(rtm->rtm_protocol)) {
d62a17ae 309 flags |= ZEBRA_FLAG_SELFROUTE;
915902cb
DS
310 proto = proto2zebra(rtm->rtm_protocol, rtm->rtm_family);
311 }
d62a17ae 312 if (tb[RTA_OIF])
313 index = *(int *)RTA_DATA(tb[RTA_OIF]);
314
315 if (tb[RTA_DST])
316 dest = RTA_DATA(tb[RTA_DST]);
317 else
318 dest = anyaddr;
319
320 if (tb[RTA_SRC])
321 src = RTA_DATA(tb[RTA_SRC]);
322 else
323 src = anyaddr;
324
325 if (tb[RTA_PREFSRC])
326 prefsrc = RTA_DATA(tb[RTA_PREFSRC]);
327
328 if (tb[RTA_GATEWAY])
329 gate = RTA_DATA(tb[RTA_GATEWAY]);
330
f19435a8
DS
331 if (tb[RTA_PRIORITY])
332 metric = *(int *)RTA_DATA(tb[RTA_PRIORITY]);
d62a17ae 333
4e40b6d6
KK
334#if defined(SUPPORT_REALMS)
335 if (tb[RTA_FLOW])
336 tag = *(uint32_t *)RTA_DATA(tb[RTA_FLOW]);
337#endif
338
f19435a8
DS
339 if (tb[RTA_METRICS]) {
340 struct rtattr *mxrta[RTAX_MAX + 1];
d62a17ae 341
f19435a8 342 memset(mxrta, 0, sizeof mxrta);
996c9314 343 netlink_parse_rtattr(mxrta, RTAX_MAX, RTA_DATA(tb[RTA_METRICS]),
f19435a8 344 RTA_PAYLOAD(tb[RTA_METRICS]));
d62a17ae 345
f19435a8 346 if (mxrta[RTAX_MTU])
d7c0a89a 347 mtu = *(uint32_t *)RTA_DATA(mxrta[RTAX_MTU]);
d62a17ae 348 }
349
350 if (rtm->rtm_family == AF_INET) {
351 p.family = AF_INET;
352 memcpy(&p.u.prefix4, dest, 4);
353 p.prefixlen = rtm->rtm_dst_len;
354
355 src_p.prefixlen =
356 0; // Forces debug below to not display anything
357 } else if (rtm->rtm_family == AF_INET6) {
358 p.family = AF_INET6;
359 memcpy(&p.u.prefix6, dest, 16);
360 p.prefixlen = rtm->rtm_dst_len;
361
362 src_p.family = AF_INET6;
363 memcpy(&src_p.prefix, src, 16);
364 src_p.prefixlen = rtm->rtm_src_len;
365 }
366
367 if (rtm->rtm_src_len != 0) {
368 char buf[PREFIX_STRLEN];
369 zlog_warn(
370 "unsupported IPv[4|6] sourcedest route (dest %s vrf %u)",
371 prefix2str(&p, buf, sizeof(buf)), vrf_id);
372 return 0;
373 }
374
25715c7e
DS
375 /*
376 * For ZEBRA_ROUTE_KERNEL types:
377 *
378 * The metric/priority of the route received from the kernel
379 * is a 32 bit number. We are going to interpret the high
380 * order byte as the Admin Distance and the low order 3 bytes
381 * as the metric.
382 *
383 * This will allow us to do two things:
384 * 1) Allow the creation of kernel routes that can be
385 * overridden by zebra.
386 * 2) Allow the old behavior for 'most' kernel route types
387 * if a user enters 'ip route ...' v4 routes get a metric
388 * of 0 and v6 routes get a metric of 1024. Both of these
389 * values will end up with a admin distance of 0, which
390 * will cause them to win for the purposes of zebra.
391 */
392 if (proto == ZEBRA_ROUTE_KERNEL) {
393 distance = (metric >> 24) & 0xFF;
996c9314 394 metric = (metric & 0x00FFFFFF);
25715c7e
DS
395 }
396
d62a17ae 397 if (IS_ZEBRA_DEBUG_KERNEL) {
398 char buf[PREFIX_STRLEN];
399 char buf2[PREFIX_STRLEN];
45df4e96 400 zlog_debug("%s %s%s%s vrf %u(%u) metric: %d Admin Distance: %d",
996c9314
LB
401 nl_msg_type_to_str(h->nlmsg_type),
402 prefix2str(&p, buf, sizeof(buf)),
403 src_p.prefixlen ? " from " : "",
404 src_p.prefixlen
405 ? prefix2str(&src_p, buf2, sizeof(buf2))
406 : "",
45df4e96 407 vrf_id, table, metric, distance);
d62a17ae 408 }
409
410 afi_t afi = AFI_IP;
411 if (rtm->rtm_family == AF_INET6)
412 afi = AFI_IP6;
413
414 if (h->nlmsg_type == RTM_NEWROUTE) {
8795f904
DS
415 struct interface *ifp;
416 vrf_id_t nh_vrf_id = vrf_id;
417
fd36be7e
DL
418 if (!tb[RTA_MULTIPATH]) {
419 struct nexthop nh;
420 size_t sz = (afi == AFI_IP) ? 4 : 16;
421
422 memset(&nh, 0, sizeof(nh));
af760ec1
DS
423
424 if (bh_type == BLACKHOLE_UNSPEC) {
425 if (index && !gate)
426 nh.type = NEXTHOP_TYPE_IFINDEX;
427 else if (index && gate)
996c9314
LB
428 nh.type =
429 (afi == AFI_IP)
430 ? NEXTHOP_TYPE_IPV4_IFINDEX
431 : NEXTHOP_TYPE_IPV6_IFINDEX;
af760ec1 432 else if (!index && gate)
1dca2eaa
RW
433 nh.type = (afi == AFI_IP)
434 ? NEXTHOP_TYPE_IPV4
435 : NEXTHOP_TYPE_IPV6;
af760ec1
DS
436 else {
437 nh.type = NEXTHOP_TYPE_BLACKHOLE;
438 nh.bh_type = bh_type;
439 }
440 } else {
fd36be7e 441 nh.type = NEXTHOP_TYPE_BLACKHOLE;
e655a03c
DL
442 nh.bh_type = bh_type;
443 }
fd36be7e
DL
444 nh.ifindex = index;
445 if (prefsrc)
446 memcpy(&nh.src, prefsrc, sz);
447 if (gate)
448 memcpy(&nh.gate, gate, sz);
915902cb 449
8795f904 450 if (index) {
996c9314 451 ifp = if_lookup_by_index(index, VRF_UNKNOWN);
8795f904
DS
452 if (ifp)
453 nh_vrf_id = ifp->vrf_id;
454 }
4a7371e9 455 nh.vrf_id = nh_vrf_id;
8795f904 456
4a7371e9
DS
457 rib_add(afi, SAFI_UNICAST, vrf_id, proto, 0, flags, &p,
458 NULL, &nh, table, metric, mtu, distance, tag);
fd36be7e 459 } else {
d62a17ae 460 /* This is a multipath route */
461
462 struct route_entry *re;
463 struct rtnexthop *rtnh =
464 (struct rtnexthop *)RTA_DATA(tb[RTA_MULTIPATH]);
465
466 len = RTA_PAYLOAD(tb[RTA_MULTIPATH]);
467
468 re = XCALLOC(MTYPE_RE, sizeof(struct route_entry));
915902cb 469 re->type = proto;
25715c7e 470 re->distance = distance;
d62a17ae 471 re->flags = flags;
472 re->metric = metric;
473 re->mtu = mtu;
474 re->vrf_id = vrf_id;
475 re->table = table;
476 re->nexthop_num = 0;
477 re->uptime = time(NULL);
4e40b6d6 478 re->tag = tag;
d62a17ae 479
480 for (;;) {
4a7371e9 481 vrf_id_t nh_vrf_id;
d62a17ae 482 if (len < (int)sizeof(*rtnh)
483 || rtnh->rtnh_len > len)
484 break;
485
486 index = rtnh->rtnh_ifindex;
8795f904
DS
487 if (index) {
488 /*
489 * Yes we are looking this up
490 * for every nexthop and just
491 * using the last one looked
492 * up right now
493 */
494 ifp = if_lookup_by_index(index,
495 VRF_UNKNOWN);
496 if (ifp)
4a7371e9
DS
497 nh_vrf_id = ifp->vrf_id;
498 else {
499 zlog_warn(
500 "%s: Unknown interface %u specified, defaulting to VRF_DEFAULT",
501 __PRETTY_FUNCTION__,
502 index);
503 nh_vrf_id = VRF_DEFAULT;
504 }
505 } else
506 nh_vrf_id = vrf_id;
507
d62a17ae 508 gate = 0;
509 if (rtnh->rtnh_len > sizeof(*rtnh)) {
510 memset(tb, 0, sizeof(tb));
511 netlink_parse_rtattr(
512 tb, RTA_MAX, RTNH_DATA(rtnh),
513 rtnh->rtnh_len - sizeof(*rtnh));
514 if (tb[RTA_GATEWAY])
515 gate = RTA_DATA(
516 tb[RTA_GATEWAY]);
517 }
518
519 if (gate) {
520 if (rtm->rtm_family == AF_INET) {
521 if (index)
522 route_entry_nexthop_ipv4_ifindex_add(
523 re, gate,
4a7371e9
DS
524 prefsrc, index,
525 nh_vrf_id);
d62a17ae 526 else
527 route_entry_nexthop_ipv4_add(
528 re, gate,
4a7371e9
DS
529 prefsrc,
530 nh_vrf_id);
d62a17ae 531 } else if (rtm->rtm_family
532 == AF_INET6) {
533 if (index)
534 route_entry_nexthop_ipv6_ifindex_add(
4a7371e9
DS
535 re, gate, index,
536 nh_vrf_id);
d62a17ae 537 else
538 route_entry_nexthop_ipv6_add(
4a7371e9
DS
539 re, gate,
540 nh_vrf_id);
d62a17ae 541 }
542 } else
4a7371e9
DS
543 route_entry_nexthop_ifindex_add(
544 re, index, nh_vrf_id);
d62a17ae 545
546 len -= NLMSG_ALIGN(rtnh->rtnh_len);
547 rtnh = RTNH_NEXT(rtnh);
548 }
549
550 zserv_nexthop_num_warn(__func__,
551 (const struct prefix *)&p,
552 re->nexthop_num);
553 if (re->nexthop_num == 0)
554 XFREE(MTYPE_RE, re);
555 else
996c9314
LB
556 rib_add_multipath(afi, SAFI_UNICAST, &p, NULL,
557 re);
d62a17ae 558 }
559 } else {
fd36be7e
DL
560 if (!tb[RTA_MULTIPATH]) {
561 struct nexthop nh;
562 size_t sz = (afi == AFI_IP) ? 4 : 16;
563
564 memset(&nh, 0, sizeof(nh));
8ba5bd58
RW
565 if (bh_type == BLACKHOLE_UNSPEC) {
566 if (index && !gate)
567 nh.type = NEXTHOP_TYPE_IFINDEX;
568 else if (index && gate)
569 nh.type =
570 (afi == AFI_IP)
571 ? NEXTHOP_TYPE_IPV4_IFINDEX
572 : NEXTHOP_TYPE_IPV6_IFINDEX;
573 else if (!index && gate)
574 nh.type = (afi == AFI_IP)
575 ? NEXTHOP_TYPE_IPV4
60466a63 576 : NEXTHOP_TYPE_IPV6;
8ba5bd58
RW
577 else {
578 nh.type = NEXTHOP_TYPE_BLACKHOLE;
579 nh.bh_type = BLACKHOLE_UNSPEC;
580 }
581 } else {
fd36be7e 582 nh.type = NEXTHOP_TYPE_BLACKHOLE;
8ba5bd58
RW
583 nh.bh_type = bh_type;
584 }
fd36be7e
DL
585 nh.ifindex = index;
586 if (gate)
587 memcpy(&nh.gate, gate, sz);
996c9314
LB
588 rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0, flags,
589 &p, NULL, &nh, table, metric, true, NULL);
fd36be7e
DL
590 } else {
591 /* XXX: need to compare the entire list of nexthops
592 * here for NLM_F_APPEND stupidity */
996c9314
LB
593 rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0, flags,
594 &p, NULL, NULL, table, metric, true, NULL);
d62a17ae 595 }
596 }
597
598 return 0;
718e3744 599}
600
e3be0432
DS
601static struct mcast_route_data *mroute = NULL;
602
d62a17ae 603static int netlink_route_change_read_multicast(struct sockaddr_nl *snl,
604 struct nlmsghdr *h,
605 ns_id_t ns_id, int startup)
565fdc75 606{
d62a17ae 607 int len;
608 struct rtmsg *rtm;
609 struct rtattr *tb[RTA_MAX + 1];
610 struct mcast_route_data *m;
611 struct mcast_route_data mr;
612 int iif = 0;
613 int count;
614 int oif[256];
615 int oif_count = 0;
616 char sbuf[40];
617 char gbuf[40];
618 char oif_list[256] = "\0";
78dd30b2 619 vrf_id_t vrf;
43b5cc5e 620 int table;
d62a17ae 621
622 if (mroute)
623 m = mroute;
624 else {
625 memset(&mr, 0, sizeof(mr));
626 m = &mr;
627 }
628
629 rtm = NLMSG_DATA(h);
630
631 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct rtmsg));
632
633 memset(tb, 0, sizeof tb);
634 netlink_parse_rtattr(tb, RTA_MAX, RTM_RTA(rtm), len);
90d82769 635
43b5cc5e
DS
636 if (tb[RTA_TABLE])
637 table = *(int *)RTA_DATA(tb[RTA_TABLE]);
638 else
639 table = rtm->rtm_table;
640
78dd30b2 641 vrf = vrf_lookup_by_table(table, ns_id);
43b5cc5e 642
d62a17ae 643 if (tb[RTA_IIF])
644 iif = *(int *)RTA_DATA(tb[RTA_IIF]);
645
646 if (tb[RTA_SRC])
bd8b9272 647 m->sg.src = *(struct in_addr *)RTA_DATA(tb[RTA_SRC]);
d62a17ae 648
649 if (tb[RTA_DST])
bd8b9272 650 m->sg.grp = *(struct in_addr *)RTA_DATA(tb[RTA_DST]);
d62a17ae 651
652 if ((RTA_EXPIRES <= RTA_MAX) && tb[RTA_EXPIRES])
653 m->lastused = *(unsigned long long *)RTA_DATA(tb[RTA_EXPIRES]);
654
655 if (tb[RTA_MULTIPATH]) {
656 struct rtnexthop *rtnh =
657 (struct rtnexthop *)RTA_DATA(tb[RTA_MULTIPATH]);
658
659 len = RTA_PAYLOAD(tb[RTA_MULTIPATH]);
660 for (;;) {
661 if (len < (int)sizeof(*rtnh) || rtnh->rtnh_len > len)
662 break;
663
664 oif[oif_count] = rtnh->rtnh_ifindex;
665 oif_count++;
666
667 len -= NLMSG_ALIGN(rtnh->rtnh_len);
668 rtnh = RTNH_NEXT(rtnh);
669 }
670 }
671
672 if (IS_ZEBRA_DEBUG_KERNEL) {
673 struct interface *ifp;
0af35d90
RW
674 strlcpy(sbuf, inet_ntoa(m->sg.src), sizeof(sbuf));
675 strlcpy(gbuf, inet_ntoa(m->sg.grp), sizeof(gbuf));
d62a17ae 676 for (count = 0; count < oif_count; count++) {
677 ifp = if_lookup_by_index(oif[count], vrf);
678 char temp[256];
679
680 sprintf(temp, "%s ", ifp->name);
681 strcat(oif_list, temp);
682 }
43b5cc5e 683 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(vrf);
d62a17ae 684 ifp = if_lookup_by_index(iif, vrf);
43b5cc5e
DS
685 zlog_debug(
686 "MCAST VRF: %s(%d) %s (%s,%s) IIF: %s OIF: %s jiffies: %lld",
687 zvrf->vrf->name, vrf, nl_msg_type_to_str(h->nlmsg_type),
688 sbuf, gbuf, ifp->name, oif_list, m->lastused);
90d82769 689 }
d62a17ae 690 return 0;
565fdc75
DS
691}
692
d62a17ae 693int netlink_route_change(struct sockaddr_nl *snl, struct nlmsghdr *h,
694 ns_id_t ns_id, int startup)
565fdc75 695{
d62a17ae 696 int len;
d62a17ae 697 struct rtmsg *rtm;
698
699 rtm = NLMSG_DATA(h);
700
701 if (!(h->nlmsg_type == RTM_NEWROUTE || h->nlmsg_type == RTM_DELROUTE)) {
702 /* If this is not route add/delete message print warning. */
78dd30b2 703 zlog_warn("Kernel message: %d NS %u\n", h->nlmsg_type, ns_id);
d62a17ae 704 return 0;
705 }
706
707 /* Connected route. */
708 if (IS_ZEBRA_DEBUG_KERNEL)
78dd30b2 709 zlog_debug("%s %s %s proto %s NS %u",
d62a17ae 710 nl_msg_type_to_str(h->nlmsg_type),
711 nl_family_to_str(rtm->rtm_family),
712 nl_rttype_to_str(rtm->rtm_type),
78dd30b2 713 nl_rtproto_to_str(rtm->rtm_protocol), ns_id);
d62a17ae 714
715 /* We don't care about change notifications for the MPLS table. */
716 /* TODO: Revisit this. */
717 if (rtm->rtm_family == AF_MPLS)
718 return 0;
719
720 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct rtmsg));
721 if (len < 0)
722 return -1;
723
e655a03c 724 if (rtm->rtm_type == RTN_MULTICAST)
d62a17ae 725 netlink_route_change_read_multicast(snl, h, ns_id, startup);
e655a03c
DL
726 else
727 netlink_route_change_read_unicast(snl, h, ns_id, startup);
d62a17ae 728 return 0;
565fdc75
DS
729}
730
289602d7 731/* Request for specific route information from the kernel */
d62a17ae 732static int netlink_request_route(struct zebra_ns *zns, int family, int type)
289602d7 733{
d62a17ae 734 struct {
735 struct nlmsghdr n;
736 struct rtmsg rtm;
737 } req;
738
739 /* Form the request, specifying filter (rtattr) if needed. */
740 memset(&req, 0, sizeof(req));
741 req.n.nlmsg_type = type;
742 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
743 req.rtm.rtm_family = family;
744
745 return netlink_request(&zns->netlink_cmd, &req.n);
289602d7 746}
747
718e3744 748/* Routing table read function using netlink interface. Only called
749 bootstrap time. */
d62a17ae 750int netlink_route_read(struct zebra_ns *zns)
718e3744 751{
d62a17ae 752 int ret;
753
754 /* Get IPv4 routing table. */
755 ret = netlink_request_route(zns, AF_INET, RTM_GETROUTE);
756 if (ret < 0)
757 return ret;
758 ret = netlink_parse_info(netlink_route_change_read_unicast,
759 &zns->netlink_cmd, zns, 0, 1);
760 if (ret < 0)
761 return ret;
762
763 /* Get IPv6 routing table. */
764 ret = netlink_request_route(zns, AF_INET6, RTM_GETROUTE);
765 if (ret < 0)
766 return ret;
767 ret = netlink_parse_info(netlink_route_change_read_unicast,
768 &zns->netlink_cmd, zns, 0, 1);
769 if (ret < 0)
770 return ret;
771
772 return 0;
718e3744 773}
774
d7c0a89a
QY
775static void _netlink_route_nl_add_gateway_info(uint8_t route_family,
776 uint8_t gw_family,
d62a17ae 777 struct nlmsghdr *nlmsg,
778 size_t req_size, int bytelen,
779 struct nexthop *nexthop)
40c7bdb0 780{
d62a17ae 781 if (route_family == AF_MPLS) {
782 struct gw_family_t gw_fam;
783
784 gw_fam.family = gw_family;
785 if (gw_family == AF_INET)
786 memcpy(&gw_fam.gate.ipv4, &nexthop->gate.ipv4, bytelen);
787 else
788 memcpy(&gw_fam.gate.ipv6, &nexthop->gate.ipv6, bytelen);
789 addattr_l(nlmsg, req_size, RTA_VIA, &gw_fam.family,
790 bytelen + 2);
791 } else {
792 if (gw_family == AF_INET)
793 addattr_l(nlmsg, req_size, RTA_GATEWAY,
794 &nexthop->gate.ipv4, bytelen);
795 else
796 addattr_l(nlmsg, req_size, RTA_GATEWAY,
797 &nexthop->gate.ipv6, bytelen);
798 }
40c7bdb0 799}
800
d7c0a89a
QY
801static void _netlink_route_rta_add_gateway_info(uint8_t route_family,
802 uint8_t gw_family,
d62a17ae 803 struct rtattr *rta,
804 struct rtnexthop *rtnh,
805 size_t req_size, int bytelen,
806 struct nexthop *nexthop)
40c7bdb0 807{
d62a17ae 808 if (route_family == AF_MPLS) {
809 struct gw_family_t gw_fam;
810
811 gw_fam.family = gw_family;
812 if (gw_family == AF_INET)
813 memcpy(&gw_fam.gate.ipv4, &nexthop->gate.ipv4, bytelen);
814 else
815 memcpy(&gw_fam.gate.ipv6, &nexthop->gate.ipv6, bytelen);
816 rta_addattr_l(rta, req_size, RTA_VIA, &gw_fam.family,
817 bytelen + 2);
818 rtnh->rtnh_len += RTA_LENGTH(bytelen + 2);
819 } else {
820 if (gw_family == AF_INET)
821 rta_addattr_l(rta, req_size, RTA_GATEWAY,
822 &nexthop->gate.ipv4, bytelen);
823 else
824 rta_addattr_l(rta, req_size, RTA_GATEWAY,
825 &nexthop->gate.ipv6, bytelen);
826 rtnh->rtnh_len += sizeof(struct rtattr) + bytelen;
827 }
40c7bdb0 828}
829
fa713d9e
CF
830/* This function takes a nexthop as argument and adds
831 * the appropriate netlink attributes to an existing
832 * netlink message.
833 *
834 * @param routedesc: Human readable description of route type
835 * (direct/recursive, single-/multipath)
836 * @param bytelen: Length of addresses in bytes.
837 * @param nexthop: Nexthop information
838 * @param nlmsg: nlmsghdr structure to fill in.
839 * @param req_size: The size allocated for the message.
840 */
d62a17ae 841static void _netlink_route_build_singlepath(const char *routedesc, int bytelen,
842 struct nexthop *nexthop,
843 struct nlmsghdr *nlmsg,
844 struct rtmsg *rtmsg,
845 size_t req_size, int cmd)
fa713d9e 846{
8ecdb26e 847 struct mpls_label_stack *nh_label;
d62a17ae 848 mpls_lse_t out_lse[MPLS_MAX_LABELS];
fa712963 849 int num_labels = 0;
9a62e84b 850 char label_buf[256];
d62a17ae 851
852 /*
853 * label_buf is *only* currently used within debugging.
854 * As such when we assign it we are guarding it inside
855 * a debug test. If you want to change this make sure
856 * you fix this assumption
857 */
858 label_buf[0] = '\0';
d62a17ae 859
fa712963
RW
860 assert(nexthop);
861 for (struct nexthop *nh = nexthop; nh; nh = nh->rparent) {
d62a17ae 862 char label_buf1[20];
863
fa712963
RW
864 nh_label = nh->nh_label;
865 if (!nh_label || !nh_label->num_labels)
866 continue;
867
868 for (int i = 0; i < nh_label->num_labels; i++) {
869 if (nh_label->label[i] == MPLS_LABEL_IMPLICIT_NULL)
870 continue;
871
872 if (IS_ZEBRA_DEBUG_KERNEL) {
873 if (!num_labels)
874 sprintf(label_buf, "label %u",
875 nh_label->label[i]);
876 else {
877 sprintf(label_buf1, "/%u",
878 nh_label->label[i]);
879 strlcat(label_buf, label_buf1,
880 sizeof(label_buf));
d62a17ae 881 }
d62a17ae 882 }
fa712963
RW
883
884 out_lse[num_labels] =
885 mpls_lse_encode(nh_label->label[i], 0, 0, 0);
886 num_labels++;
d62a17ae 887 }
fa712963
RW
888 }
889
890 if (num_labels) {
891 /* Set the BoS bit */
892 out_lse[num_labels - 1] |= htonl(1 << MPLS_LS_S_SHIFT);
893
894 if (rtmsg->rtm_family == AF_MPLS)
895 addattr_l(nlmsg, req_size, RTA_NEWDST, &out_lse,
896 num_labels * sizeof(mpls_lse_t));
897 else {
898 struct rtattr *nest;
d7c0a89a 899 uint16_t encap = LWTUNNEL_ENCAP_MPLS;
fa712963
RW
900
901 addattr_l(nlmsg, req_size, RTA_ENCAP_TYPE, &encap,
d7c0a89a 902 sizeof(uint16_t));
fa712963
RW
903 nest = addattr_nest(nlmsg, req_size, RTA_ENCAP);
904 addattr_l(nlmsg, req_size, MPLS_IPTUNNEL_DST, &out_lse,
905 num_labels * sizeof(mpls_lse_t));
906 addattr_nest_end(nlmsg, nest);
66d42727 907 }
0aabccc0 908 }
fa713d9e 909
d62a17ae 910 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK))
911 rtmsg->rtm_flags |= RTNH_F_ONLINK;
912
913 if (rtmsg->rtm_family == AF_INET
914 && (nexthop->type == NEXTHOP_TYPE_IPV6
915 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX)) {
916 rtmsg->rtm_flags |= RTNH_F_ONLINK;
917 addattr_l(nlmsg, req_size, RTA_GATEWAY, &ipv4_ll, 4);
918 addattr32(nlmsg, req_size, RTA_OIF, nexthop->ifindex);
919
920 if (nexthop->rmap_src.ipv4.s_addr && (cmd == RTM_NEWROUTE))
921 addattr_l(nlmsg, req_size, RTA_PREFSRC,
922 &nexthop->rmap_src.ipv4, bytelen);
923 else if (nexthop->src.ipv4.s_addr && (cmd == RTM_NEWROUTE))
924 addattr_l(nlmsg, req_size, RTA_PREFSRC,
925 &nexthop->src.ipv4, bytelen);
926
927 if (IS_ZEBRA_DEBUG_KERNEL)
928 zlog_debug(
929 " 5549: _netlink_route_build_singlepath() (%s): "
7556c3fd 930 "nexthop via %s %s if %u(%u)",
d62a17ae 931 routedesc, ipv4_ll_buf, label_buf,
7556c3fd 932 nexthop->ifindex, nexthop->vrf_id);
d62a17ae 933 return;
0aabccc0
DD
934 }
935
d62a17ae 936 if (nexthop->type == NEXTHOP_TYPE_IPV4
937 || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
938 /* Send deletes to the kernel without specifying the next-hop */
939 if (cmd != RTM_DELROUTE)
940 _netlink_route_nl_add_gateway_info(
941 rtmsg->rtm_family, AF_INET, nlmsg, req_size,
942 bytelen, nexthop);
943
944 if (cmd == RTM_NEWROUTE) {
945 if (nexthop->rmap_src.ipv4.s_addr)
946 addattr_l(nlmsg, req_size, RTA_PREFSRC,
947 &nexthop->rmap_src.ipv4, bytelen);
948 else if (nexthop->src.ipv4.s_addr)
949 addattr_l(nlmsg, req_size, RTA_PREFSRC,
950 &nexthop->src.ipv4, bytelen);
951 }
952
953 if (IS_ZEBRA_DEBUG_KERNEL)
954 zlog_debug(
955 "netlink_route_multipath() (%s): "
7556c3fd 956 "nexthop via %s %s if %u(%u)",
d62a17ae 957 routedesc, inet_ntoa(nexthop->gate.ipv4),
7556c3fd 958 label_buf, nexthop->ifindex, nexthop->vrf_id);
0aabccc0 959 }
fa713d9e 960
d62a17ae 961 if (nexthop->type == NEXTHOP_TYPE_IPV6
962 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
963 _netlink_route_nl_add_gateway_info(rtmsg->rtm_family, AF_INET6,
964 nlmsg, req_size, bytelen,
965 nexthop);
966
967 if (cmd == RTM_NEWROUTE) {
968 if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->rmap_src.ipv6))
969 addattr_l(nlmsg, req_size, RTA_PREFSRC,
970 &nexthop->rmap_src.ipv6, bytelen);
971 else if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->src.ipv6))
972 addattr_l(nlmsg, req_size, RTA_PREFSRC,
973 &nexthop->src.ipv6, bytelen);
974 }
fa713d9e 975
d62a17ae 976 if (IS_ZEBRA_DEBUG_KERNEL)
977 zlog_debug(
978 "netlink_route_multipath() (%s): "
7556c3fd 979 "nexthop via %s %s if %u(%u)",
d62a17ae 980 routedesc, inet6_ntoa(nexthop->gate.ipv6),
7556c3fd 981 label_buf, nexthop->ifindex, nexthop->vrf_id);
d62a17ae 982 }
5e210522
DS
983
984 /*
985 * We have the ifindex so we should always send it
986 * This is especially useful if we are doing route
987 * leaking.
988 */
989 if (nexthop->type != NEXTHOP_TYPE_BLACKHOLE)
d62a17ae 990 addattr32(nlmsg, req_size, RTA_OIF, nexthop->ifindex);
991
5e210522
DS
992 if (nexthop->type == NEXTHOP_TYPE_IFINDEX
993 || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
d62a17ae 994 if (cmd == RTM_NEWROUTE) {
995 if (nexthop->rmap_src.ipv4.s_addr)
996 addattr_l(nlmsg, req_size, RTA_PREFSRC,
997 &nexthop->rmap_src.ipv4, bytelen);
998 else if (nexthop->src.ipv4.s_addr)
999 addattr_l(nlmsg, req_size, RTA_PREFSRC,
1000 &nexthop->src.ipv4, bytelen);
1001 }
fa713d9e 1002
d62a17ae 1003 if (IS_ZEBRA_DEBUG_KERNEL)
1004 zlog_debug(
1005 "netlink_route_multipath() (%s): "
7556c3fd
DS
1006 "nexthop via if %u(%u)",
1007 routedesc, nexthop->ifindex, nexthop->vrf_id);
0aabccc0
DD
1008 }
1009
d62a17ae 1010 if (nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
d62a17ae 1011 if (cmd == RTM_NEWROUTE) {
1012 if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->rmap_src.ipv6))
1013 addattr_l(nlmsg, req_size, RTA_PREFSRC,
1014 &nexthop->rmap_src.ipv6, bytelen);
1015 else if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->src.ipv6))
1016 addattr_l(nlmsg, req_size, RTA_PREFSRC,
1017 &nexthop->src.ipv6, bytelen);
1018 }
1019
1020 if (IS_ZEBRA_DEBUG_KERNEL)
1021 zlog_debug(
1022 "netlink_route_multipath() (%s): "
7556c3fd
DS
1023 "nexthop via if %u(%u)",
1024 routedesc, nexthop->ifindex, nexthop->vrf_id);
d62a17ae 1025 }
fa713d9e
CF
1026}
1027
1028/* This function takes a nexthop as argument and
1029 * appends to the given rtattr/rtnexthop pair the
1030 * representation of the nexthop. If the nexthop
1031 * defines a preferred source, the src parameter
1032 * will be modified to point to that src, otherwise
1033 * it will be kept unmodified.
1034 *
1035 * @param routedesc: Human readable description of route type
1036 * (direct/recursive, single-/multipath)
1037 * @param bytelen: Length of addresses in bytes.
1038 * @param nexthop: Nexthop information
1039 * @param rta: rtnetlink attribute structure
1040 * @param rtnh: pointer to an rtnetlink nexthop structure
1041 * @param src: pointer pointing to a location where
1042 * the prefsrc should be stored.
1043 */
d62a17ae 1044static void _netlink_route_build_multipath(const char *routedesc, int bytelen,
1045 struct nexthop *nexthop,
1046 struct rtattr *rta,
1047 struct rtnexthop *rtnh,
1048 struct rtmsg *rtmsg,
1049 union g_addr **src)
fa713d9e 1050{
8ecdb26e 1051 struct mpls_label_stack *nh_label;
d62a17ae 1052 mpls_lse_t out_lse[MPLS_MAX_LABELS];
fa712963 1053 int num_labels = 0;
9a62e84b 1054 char label_buf[256];
d62a17ae 1055
1056 rtnh->rtnh_len = sizeof(*rtnh);
1057 rtnh->rtnh_flags = 0;
1058 rtnh->rtnh_hops = 0;
1059 rta->rta_len += rtnh->rtnh_len;
1060
1061 /*
1062 * label_buf is *only* currently used within debugging.
1063 * As such when we assign it we are guarding it inside
1064 * a debug test. If you want to change this make sure
1065 * you fix this assumption
1066 */
1067 label_buf[0] = '\0';
d62a17ae 1068
fa712963
RW
1069 assert(nexthop);
1070 for (struct nexthop *nh = nexthop; nh; nh = nh->rparent) {
d62a17ae 1071 char label_buf1[20];
1072
fa712963
RW
1073 nh_label = nh->nh_label;
1074 if (!nh_label || !nh_label->num_labels)
1075 continue;
1076
1077 for (int i = 0; i < nh_label->num_labels; i++) {
1078 if (nh_label->label[i] == MPLS_LABEL_IMPLICIT_NULL)
1079 continue;
1080
1081 if (IS_ZEBRA_DEBUG_KERNEL) {
1082 if (!num_labels)
1083 sprintf(label_buf, "label %u",
1084 nh_label->label[i]);
1085 else {
1086 sprintf(label_buf1, "/%u",
1087 nh_label->label[i]);
1088 strlcat(label_buf, label_buf1,
1089 sizeof(label_buf));
d62a17ae 1090 }
d62a17ae 1091 }
fa712963
RW
1092
1093 out_lse[num_labels] =
1094 mpls_lse_encode(nh_label->label[i], 0, 0, 0);
1095 num_labels++;
d62a17ae 1096 }
fa712963
RW
1097 }
1098
1099 if (num_labels) {
1100 /* Set the BoS bit */
1101 out_lse[num_labels - 1] |= htonl(1 << MPLS_LS_S_SHIFT);
1102
1103 if (rtmsg->rtm_family == AF_MPLS) {
1104 rta_addattr_l(rta, NL_PKT_BUF_SIZE, RTA_NEWDST,
1105 &out_lse,
1106 num_labels * sizeof(mpls_lse_t));
1107 rtnh->rtnh_len +=
1108 RTA_LENGTH(num_labels * sizeof(mpls_lse_t));
1109 } else {
1110 struct rtattr *nest;
d7c0a89a 1111 uint16_t encap = LWTUNNEL_ENCAP_MPLS;
fa712963
RW
1112 int len = rta->rta_len;
1113
1114 rta_addattr_l(rta, NL_PKT_BUF_SIZE, RTA_ENCAP_TYPE,
d7c0a89a 1115 &encap, sizeof(uint16_t));
fa712963
RW
1116 nest = rta_nest(rta, NL_PKT_BUF_SIZE, RTA_ENCAP);
1117 rta_addattr_l(rta, NL_PKT_BUF_SIZE, MPLS_IPTUNNEL_DST,
1118 &out_lse,
1119 num_labels * sizeof(mpls_lse_t));
1120 rta_nest_end(rta, nest);
1121 rtnh->rtnh_len += rta->rta_len - len;
66d42727 1122 }
d62a17ae 1123 }
1124
1125 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK))
1126 rtnh->rtnh_flags |= RTNH_F_ONLINK;
1127
1128 if (rtmsg->rtm_family == AF_INET
1129 && (nexthop->type == NEXTHOP_TYPE_IPV6
1130 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX)) {
1131 bytelen = 4;
1132 rtnh->rtnh_flags |= RTNH_F_ONLINK;
1133 rta_addattr_l(rta, NL_PKT_BUF_SIZE, RTA_GATEWAY, &ipv4_ll,
1134 bytelen);
1135 rtnh->rtnh_len += sizeof(struct rtattr) + bytelen;
1136 rtnh->rtnh_ifindex = nexthop->ifindex;
1137
1138 if (nexthop->rmap_src.ipv4.s_addr)
1139 *src = &nexthop->rmap_src;
1140 else if (nexthop->src.ipv4.s_addr)
1141 *src = &nexthop->src;
1142
1143 if (IS_ZEBRA_DEBUG_KERNEL)
1144 zlog_debug(
1145 " 5549: netlink_route_build_multipath() (%s): "
1146 "nexthop via %s %s if %u",
1147 routedesc, ipv4_ll_buf, label_buf,
1148 nexthop->ifindex);
1149 return;
1150 }
1151
1152 if (nexthop->type == NEXTHOP_TYPE_IPV4
1153 || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
1154 _netlink_route_rta_add_gateway_info(rtmsg->rtm_family, AF_INET,
1155 rta, rtnh, NL_PKT_BUF_SIZE,
1156 bytelen, nexthop);
1157 if (nexthop->rmap_src.ipv4.s_addr)
1158 *src = &nexthop->rmap_src;
1159 else if (nexthop->src.ipv4.s_addr)
1160 *src = &nexthop->src;
1161
1162 if (IS_ZEBRA_DEBUG_KERNEL)
1163 zlog_debug(
1164 "netlink_route_multipath() (%s): "
1165 "nexthop via %s %s if %u",
1166 routedesc, inet_ntoa(nexthop->gate.ipv4),
1167 label_buf, nexthop->ifindex);
1168 }
1169 if (nexthop->type == NEXTHOP_TYPE_IPV6
1170 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
1171 _netlink_route_rta_add_gateway_info(rtmsg->rtm_family, AF_INET6,
1172 rta, rtnh, NL_PKT_BUF_SIZE,
1173 bytelen, nexthop);
1174
1175 if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->rmap_src.ipv6))
1176 *src = &nexthop->rmap_src;
1177 else if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->src.ipv6))
1178 *src = &nexthop->src;
1179
1180 if (IS_ZEBRA_DEBUG_KERNEL)
1181 zlog_debug(
1182 "netlink_route_multipath() (%s): "
1183 "nexthop via %s %s if %u",
1184 routedesc, inet6_ntoa(nexthop->gate.ipv6),
1185 label_buf, nexthop->ifindex);
1186 }
5e210522
DS
1187
1188 /*
1189 * We have figured out the ifindex so we should always send it
1190 * This is especially useful if we are doing route
1191 * leaking.
1192 */
1193 if (nexthop->type != NEXTHOP_TYPE_BLACKHOLE)
1194 rtnh->rtnh_ifindex = nexthop->ifindex;
1195
d62a17ae 1196 /* ifindex */
1197 if (nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX
1198 || nexthop->type == NEXTHOP_TYPE_IFINDEX) {
d62a17ae 1199 if (nexthop->rmap_src.ipv4.s_addr)
1200 *src = &nexthop->rmap_src;
1201 else if (nexthop->src.ipv4.s_addr)
1202 *src = &nexthop->src;
1203
1204 if (IS_ZEBRA_DEBUG_KERNEL)
1205 zlog_debug(
1206 "netlink_route_multipath() (%s): "
1207 "nexthop via if %u",
1208 routedesc, nexthop->ifindex);
1209 } else if (nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
d62a17ae 1210 if (IS_ZEBRA_DEBUG_KERNEL)
1211 zlog_debug(
1212 "netlink_route_multipath() (%s): "
1213 "nexthop via if %u",
1214 routedesc, nexthop->ifindex);
1215 } else {
1216 rtnh->rtnh_ifindex = 0;
1217 }
fa713d9e
CF
1218}
1219
d62a17ae 1220static inline void _netlink_mpls_build_singlepath(const char *routedesc,
1221 zebra_nhlfe_t *nhlfe,
1222 struct nlmsghdr *nlmsg,
1223 struct rtmsg *rtmsg,
1224 size_t req_size, int cmd)
40c7bdb0 1225{
d62a17ae 1226 int bytelen;
d7c0a89a 1227 uint8_t family;
40c7bdb0 1228
d62a17ae 1229 family = NHLFE_FAMILY(nhlfe);
1230 bytelen = (family == AF_INET ? 4 : 16);
1231 _netlink_route_build_singlepath(routedesc, bytelen, nhlfe->nexthop,
1232 nlmsg, rtmsg, req_size, cmd);
40c7bdb0 1233}
1234
1235
1236static inline void
d62a17ae 1237_netlink_mpls_build_multipath(const char *routedesc, zebra_nhlfe_t *nhlfe,
1238 struct rtattr *rta, struct rtnexthop *rtnh,
1239 struct rtmsg *rtmsg, union g_addr **src)
40c7bdb0 1240{
d62a17ae 1241 int bytelen;
d7c0a89a 1242 uint8_t family;
40c7bdb0 1243
d62a17ae 1244 family = NHLFE_FAMILY(nhlfe);
1245 bytelen = (family == AF_INET ? 4 : 16);
1246 _netlink_route_build_multipath(routedesc, bytelen, nhlfe->nexthop, rta,
1247 rtnh, rtmsg, src);
40c7bdb0 1248}
1249
1250
fa713d9e
CF
1251/* Log debug information for netlink_route_multipath
1252 * if debug logging is enabled.
1253 *
1254 * @param cmd: Netlink command which is to be processed
1255 * @param p: Prefix for which the change is due
fa713d9e 1256 * @param family: Address family which the change concerns
45df4e96
DS
1257 * @param zvrf: The vrf we are in
1258 * @param tableid: The table we are working on
fa713d9e 1259 */
d62a17ae 1260static void _netlink_route_debug(int cmd, struct prefix *p,
7556c3fd
DS
1261 int family, struct zebra_vrf *zvrf,
1262 uint32_t tableid)
fa713d9e 1263{
d62a17ae 1264 if (IS_ZEBRA_DEBUG_KERNEL) {
1265 char buf[PREFIX_STRLEN];
1266 zlog_debug(
45df4e96
DS
1267 "netlink_route_multipath(): %s %s vrf %u(%u)",
1268 nl_msg_type_to_str(cmd),
1269 prefix2str(p, buf, sizeof(buf)),
1270 zvrf_id(zvrf), tableid);
d62a17ae 1271 }
1272}
1273
d7c0a89a 1274static void _netlink_mpls_debug(int cmd, uint32_t label, const char *routedesc)
40c7bdb0 1275{
d62a17ae 1276 if (IS_ZEBRA_DEBUG_KERNEL)
1277 zlog_debug("netlink_mpls_multipath() (%s): %s %u/20", routedesc,
1278 nl_msg_type_to_str(cmd), label);
fa713d9e
CF
1279}
1280
d62a17ae 1281static int netlink_neigh_update(int cmd, int ifindex, uint32_t addr, char *lla,
5895d33f 1282 int llalen, ns_id_t ns_id)
5c610faf 1283{
d62a17ae 1284 struct {
1285 struct nlmsghdr n;
1286 struct ndmsg ndm;
1287 char buf[256];
1288 } req;
5c610faf 1289
5895d33f 1290 struct zebra_ns *zns = zebra_ns_lookup(ns_id);
8f7d9fc0 1291
d62a17ae 1292 memset(&req.n, 0, sizeof(req.n));
1293 memset(&req.ndm, 0, sizeof(req.ndm));
5c610faf 1294
d62a17ae 1295 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
1296 req.n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
1297 req.n.nlmsg_type = cmd; // RTM_NEWNEIGH or RTM_DELNEIGH
1298 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
a55ba23f 1299
d62a17ae 1300 req.ndm.ndm_family = AF_INET;
1301 req.ndm.ndm_state = NUD_PERMANENT;
1302 req.ndm.ndm_ifindex = ifindex;
1303 req.ndm.ndm_type = RTN_UNICAST;
5c610faf 1304
d62a17ae 1305 addattr_l(&req.n, sizeof(req), NDA_DST, &addr, 4);
1306 addattr_l(&req.n, sizeof(req), NDA_LLADDR, lla, llalen);
5c610faf 1307
d62a17ae 1308 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
1309 0);
5c610faf
DS
1310}
1311
718e3744 1312/* Routing table change via netlink interface. */
6ae24471 1313/* Update flag indicates whether this is a "replace" or not. */
d62a17ae 1314static int netlink_route_multipath(int cmd, struct prefix *p,
1315 struct prefix *src_p, struct route_entry *re,
1316 int update)
718e3744 1317{
d62a17ae 1318 int bytelen;
1319 struct sockaddr_nl snl;
1320 struct nexthop *nexthop = NULL;
1321 unsigned int nexthop_num;
a8309422 1322 int discard = 0;
d62a17ae 1323 int family = PREFIX_FAMILY(p);
1324 const char *routedesc;
1325 int setsrc = 0;
1326 union g_addr src;
1327
1328 struct {
1329 struct nlmsghdr n;
1330 struct rtmsg r;
1331 char buf[NL_PKT_BUF_SIZE];
1332 } req;
1333
9a76375f 1334 struct zebra_ns *zns;
d62a17ae 1335 struct zebra_vrf *zvrf = vrf_info_lookup(re->vrf_id);
1336
009f8ad5 1337 zns = zvrf->zns;
d62a17ae 1338 memset(&req, 0, sizeof req - NL_PKT_BUF_SIZE);
1339
1340 bytelen = (family == AF_INET ? 4 : 16);
1341
1342 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
1343 req.n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
1344 if ((cmd == RTM_NEWROUTE) && update)
1345 req.n.nlmsg_flags |= NLM_F_REPLACE;
1346 req.n.nlmsg_type = cmd;
1347 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
1348
1349 req.r.rtm_family = family;
1350 req.r.rtm_dst_len = p->prefixlen;
1351 req.r.rtm_src_len = src_p ? src_p->prefixlen : 0;
915902cb 1352 req.r.rtm_protocol = zebra2proto(re->type);
d62a17ae 1353 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
a8309422 1354 req.r.rtm_type = RTN_UNICAST;
d62a17ae 1355
d62a17ae 1356 addattr_l(&req.n, sizeof req, RTA_DST, &p->u.prefix, bytelen);
1357 if (src_p)
1358 addattr_l(&req.n, sizeof req, RTA_SRC, &src_p->u.prefix,
1359 bytelen);
1360
1361 /* Metric. */
1362 /* Hardcode the metric for all routes coming from zebra. Metric isn't
1363 * used
1364 * either by the kernel or by zebra. Its purely for calculating best
1365 * path(s)
1366 * by the routing protocol and for communicating with protocol peers.
1367 */
1368 addattr32(&req.n, sizeof req, RTA_PRIORITY, NL_DEFAULT_ROUTE_METRIC);
4e40b6d6
KK
1369#if defined(SUPPORT_REALMS)
1370 if (re->tag > 0 && re->tag <= 255)
1371 addattr32(&req.n, sizeof req, RTA_FLOW, re->tag);
1372#endif
d62a17ae 1373 /* Table corresponding to this route. */
1374 if (re->table < 256)
1375 req.r.rtm_table = re->table;
1376 else {
1377 req.r.rtm_table = RT_TABLE_UNSPEC;
1378 addattr32(&req.n, sizeof req, RTA_TABLE, re->table);
0aabccc0 1379 }
718e3744 1380
45df4e96
DS
1381 _netlink_route_debug(cmd, p, family, zvrf, re->table);
1382
a8309422
DL
1383 if (discard)
1384 goto skip;
1385
d62a17ae 1386 if (re->mtu || re->nexthop_mtu) {
1387 char buf[NL_PKT_BUF_SIZE];
1388 struct rtattr *rta = (void *)buf;
d7c0a89a 1389 uint32_t mtu = re->mtu;
d62a17ae 1390 if (!mtu || (re->nexthop_mtu && re->nexthop_mtu < mtu))
1391 mtu = re->nexthop_mtu;
1392 rta->rta_type = RTA_METRICS;
1393 rta->rta_len = RTA_LENGTH(0);
1394 rta_addattr_l(rta, NL_PKT_BUF_SIZE, RTAX_MTU, &mtu, sizeof mtu);
1395 addattr_l(&req.n, NL_PKT_BUF_SIZE, RTA_METRICS, RTA_DATA(rta),
1396 RTA_PAYLOAD(rta));
1397 }
1398
d62a17ae 1399 /* Count overall nexthops so we can decide whether to use singlepath
1400 * or multipath case. */
1401 nexthop_num = 0;
7ee30f28 1402 for (ALL_NEXTHOPS(re->ng, nexthop)) {
d62a17ae 1403 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE))
1404 continue;
996c9314 1405 if (cmd == RTM_NEWROUTE && !NEXTHOP_IS_ACTIVE(nexthop->flags))
d62a17ae 1406 continue;
1407 if (cmd == RTM_DELROUTE
1408 && !CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB))
1409 continue;
1410
1411 nexthop_num++;
1412 }
1413
1414 /* Singlepath case. */
1415 if (nexthop_num == 1 || multipath_num == 1) {
1416 nexthop_num = 0;
7ee30f28 1417 for (ALL_NEXTHOPS(re->ng, nexthop)) {
1f1d24a8
DS
1418 /*
1419 * So we want to cover 2 types of blackhole
1420 * routes here:
1421 * 1) A normal blackhole route( ala from a static
1422 * install.
1423 * 2) A recursively resolved blackhole route
1424 */
1425 if (nexthop->type == NEXTHOP_TYPE_BLACKHOLE) {
1426 switch (nexthop->bh_type) {
1427 case BLACKHOLE_ADMINPROHIB:
1428 req.r.rtm_type = RTN_PROHIBIT;
1429 break;
1430 case BLACKHOLE_REJECT:
1431 req.r.rtm_type = RTN_UNREACHABLE;
1432 break;
1433 default:
1434 req.r.rtm_type = RTN_BLACKHOLE;
1435 break;
1436 }
1437 goto skip;
1438 }
d62a17ae 1439 if (CHECK_FLAG(nexthop->flags,
1440 NEXTHOP_FLAG_RECURSIVE)) {
1441 if (!setsrc) {
1442 if (family == AF_INET) {
1443 if (nexthop->rmap_src.ipv4
1444 .s_addr
1445 != 0) {
1446 src.ipv4 =
1447 nexthop->rmap_src
1448 .ipv4;
1449 setsrc = 1;
1450 } else if (nexthop->src.ipv4
1451 .s_addr
1452 != 0) {
1453 src.ipv4 =
1454 nexthop->src
1455 .ipv4;
1456 setsrc = 1;
1457 }
1458 } else if (family == AF_INET6) {
1459 if (!IN6_IS_ADDR_UNSPECIFIED(
1460 &nexthop->rmap_src
1461 .ipv6)) {
1462 src.ipv6 =
1463 nexthop->rmap_src
1464 .ipv6;
1465 setsrc = 1;
1466 } else if (
1467 !IN6_IS_ADDR_UNSPECIFIED(
1468 &nexthop->src
1469 .ipv6)) {
1470 src.ipv6 =
1471 nexthop->src
1472 .ipv6;
1473 setsrc = 1;
1474 }
1475 }
1476 }
1477 continue;
1478 }
1479
1480 if ((cmd == RTM_NEWROUTE
25b9cb0c 1481 && NEXTHOP_IS_ACTIVE(nexthop->flags))
d62a17ae 1482 || (cmd == RTM_DELROUTE
1483 && CHECK_FLAG(nexthop->flags,
1484 NEXTHOP_FLAG_FIB))) {
1485 routedesc = nexthop->rparent
8b1450b9
RW
1486 ? "recursive, single-path"
1487 : "single-path";
d62a17ae 1488
d62a17ae 1489 _netlink_route_build_singlepath(
1490 routedesc, bytelen, nexthop, &req.n,
1491 &req.r, sizeof req, cmd);
1492 nexthop_num++;
1493 break;
1494 }
1495 }
1496 if (setsrc && (cmd == RTM_NEWROUTE)) {
1497 if (family == AF_INET)
1498 addattr_l(&req.n, sizeof req, RTA_PREFSRC,
1499 &src.ipv4, bytelen);
1500 else if (family == AF_INET6)
1501 addattr_l(&req.n, sizeof req, RTA_PREFSRC,
1502 &src.ipv6, bytelen);
1503 }
1504 } else {
1505 char buf[NL_PKT_BUF_SIZE];
1506 struct rtattr *rta = (void *)buf;
1507 struct rtnexthop *rtnh;
1508 union g_addr *src1 = NULL;
1509
1510 rta->rta_type = RTA_MULTIPATH;
1511 rta->rta_len = RTA_LENGTH(0);
1512 rtnh = RTA_DATA(rta);
1513
1514 nexthop_num = 0;
7ee30f28 1515 for (ALL_NEXTHOPS(re->ng, nexthop)) {
d62a17ae 1516 if (nexthop_num >= multipath_num)
1517 break;
1518
1519 if (CHECK_FLAG(nexthop->flags,
1520 NEXTHOP_FLAG_RECURSIVE)) {
1521 /* This only works for IPv4 now */
1522 if (!setsrc) {
1523 if (family == AF_INET) {
1524 if (nexthop->rmap_src.ipv4
1525 .s_addr
1526 != 0) {
1527 src.ipv4 =
1528 nexthop->rmap_src
1529 .ipv4;
1530 setsrc = 1;
1531 } else if (nexthop->src.ipv4
1532 .s_addr
1533 != 0) {
1534 src.ipv4 =
1535 nexthop->src
1536 .ipv4;
1537 setsrc = 1;
1538 }
1539 } else if (family == AF_INET6) {
1540 if (!IN6_IS_ADDR_UNSPECIFIED(
1541 &nexthop->rmap_src
1542 .ipv6)) {
1543 src.ipv6 =
1544 nexthop->rmap_src
1545 .ipv6;
1546 setsrc = 1;
1547 } else if (
1548 !IN6_IS_ADDR_UNSPECIFIED(
1549 &nexthop->src
1550 .ipv6)) {
1551 src.ipv6 =
1552 nexthop->src
1553 .ipv6;
1554 setsrc = 1;
1555 }
1556 }
1557 }
1558 continue;
1559 }
1560
1561 if ((cmd == RTM_NEWROUTE
25b9cb0c 1562 && NEXTHOP_IS_ACTIVE(nexthop->flags))
d62a17ae 1563 || (cmd == RTM_DELROUTE
1564 && CHECK_FLAG(nexthop->flags,
1565 NEXTHOP_FLAG_FIB))) {
1566 routedesc = nexthop->rparent
8b1450b9
RW
1567 ? "recursive, multipath"
1568 : "multipath";
d62a17ae 1569 nexthop_num++;
1570
d62a17ae 1571 _netlink_route_build_multipath(
1572 routedesc, bytelen, nexthop, rta, rtnh,
1573 &req.r, &src1);
1574 rtnh = RTNH_NEXT(rtnh);
1575
1576 if (!setsrc && src1) {
1577 if (family == AF_INET)
1578 src.ipv4 = src1->ipv4;
1579 else if (family == AF_INET6)
1580 src.ipv6 = src1->ipv6;
1581
1582 setsrc = 1;
1583 }
1584 }
1585 }
1586 if (setsrc && (cmd == RTM_NEWROUTE)) {
1587 if (family == AF_INET)
1588 addattr_l(&req.n, sizeof req, RTA_PREFSRC,
1589 &src.ipv4, bytelen);
1590 else if (family == AF_INET6)
1591 addattr_l(&req.n, sizeof req, RTA_PREFSRC,
1592 &src.ipv6, bytelen);
1593 if (IS_ZEBRA_DEBUG_KERNEL)
1594 zlog_debug("Setting source");
1595 }
1596
1597 if (rta->rta_len > RTA_LENGTH(0))
1598 addattr_l(&req.n, NL_PKT_BUF_SIZE, RTA_MULTIPATH,
1599 RTA_DATA(rta), RTA_PAYLOAD(rta));
1600 }
718e3744 1601
d62a17ae 1602 /* If there is no useful nexthop then return. */
1603 if (nexthop_num == 0) {
1604 if (IS_ZEBRA_DEBUG_KERNEL)
1605 zlog_debug(
1606 "netlink_route_multipath(): No useful nexthop.");
1607 return 0;
1608 }
718e3744 1609
7021c425 1610skip:
718e3744 1611
d62a17ae 1612 /* Destination netlink address. */
1613 memset(&snl, 0, sizeof snl);
1614 snl.nl_family = AF_NETLINK;
718e3744 1615
d62a17ae 1616 /* Talk to netlink socket. */
1617 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
1618 0);
718e3744 1619}
1620
43b5cc5e 1621int kernel_get_ipmr_sg_stats(struct zebra_vrf *zvrf, void *in)
e3be0432 1622{
d62a17ae 1623 int suc = 0;
1624 struct mcast_route_data *mr = (struct mcast_route_data *)in;
bd8b9272
DS
1625 struct {
1626 struct nlmsghdr n;
1627 struct ndmsg ndm;
1628 char buf[256];
1629 } req;
e3be0432 1630
d62a17ae 1631 mroute = mr;
5895d33f 1632 struct zebra_ns *zns;
bd8b9272 1633
009f8ad5 1634 zns = zvrf->zns;
bd8b9272
DS
1635 memset(&req.n, 0, sizeof(req.n));
1636 memset(&req.ndm, 0, sizeof(req.ndm));
1637
1638 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
1639 req.n.nlmsg_flags = NLM_F_REQUEST;
1640 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
1641
1642 req.ndm.ndm_family = RTNL_FAMILY_IPMR;
1643 req.n.nlmsg_type = RTM_GETROUTE;
1644
1645 addattr_l(&req.n, sizeof(req), RTA_IIF, &mroute->ifindex, 4);
1646 addattr_l(&req.n, sizeof(req), RTA_OIF, &mroute->ifindex, 4);
1647 addattr_l(&req.n, sizeof(req), RTA_SRC, &mroute->sg.src.s_addr, 4);
1648 addattr_l(&req.n, sizeof(req), RTA_DST, &mroute->sg.grp.s_addr, 4);
1649 addattr_l(&req.n, sizeof(req), RTA_TABLE, &zvrf->table_id, 4);
e3be0432 1650
bd8b9272
DS
1651 suc = netlink_talk(netlink_route_change_read_multicast, &req.n,
1652 &zns->netlink_cmd, zns, 0);
e3be0432 1653
bd8b9272 1654 mroute = NULL;
d62a17ae 1655 return suc;
e3be0432
DS
1656}
1657
7d974ba3
DS
1658void kernel_route_rib(struct route_node *rn, struct prefix *p,
1659 struct prefix *src_p, struct route_entry *old,
1660 struct route_entry *new)
718e3744 1661{
0c555cc6
DS
1662 int ret = 0;
1663
0af35d90
RW
1664 assert(old || new);
1665
0c555cc6
DS
1666 if (new) {
1667 if (p->family == AF_INET)
1668 ret = netlink_route_multipath(RTM_NEWROUTE, p, src_p,
1669 new, (old) ? 1 : 0);
1670 else {
1671 /*
1672 * So v6 route replace semantics are not in
1673 * the kernel at this point as I understand it.
1674 * So let's do a delete than an add.
1675 * In the future once v6 route replace semantics
1676 * are in we can figure out what to do here to
1677 * allow working with old and new kernels.
1678 *
1679 * I'm also intentionally ignoring the failure case
1680 * of the route delete. If that happens yeah we're
1681 * screwed.
1682 */
1683 if (old)
996c9314
LB
1684 netlink_route_multipath(RTM_DELROUTE, p, src_p,
1685 old, 0);
1686 ret = netlink_route_multipath(RTM_NEWROUTE, p, src_p,
1687 new, 0);
0c555cc6 1688 }
7d974ba3 1689 kernel_route_rib_pass_fail(rn, p, new,
996c9314
LB
1690 (!ret) ? SOUTHBOUND_INSTALL_SUCCESS
1691 : SOUTHBOUND_INSTALL_FAILURE);
0c555cc6
DS
1692 return;
1693 }
718e3744 1694
0c555cc6
DS
1695 if (old) {
1696 ret = netlink_route_multipath(RTM_DELROUTE, p, src_p, old, 0);
e7fcb843 1697
7d974ba3 1698 kernel_route_rib_pass_fail(rn, p, old,
996c9314
LB
1699 (!ret) ? SOUTHBOUND_DELETE_SUCCESS
1700 : SOUTHBOUND_DELETE_FAILURE);
0c555cc6 1701 }
718e3744 1702}
1703
d62a17ae 1704int kernel_neigh_update(int add, int ifindex, uint32_t addr, char *lla,
5895d33f 1705 int llalen, ns_id_t ns_id)
6b8a5694 1706{
d62a17ae 1707 return netlink_neigh_update(add ? RTM_NEWNEIGH : RTM_DELNEIGH, ifindex,
5895d33f 1708 addr, lla, llalen, ns_id);
6b8a5694 1709}
718e3744 1710
13d60d35 1711/*
1712 * Add remote VTEP to the flood list for this VxLAN interface (VNI). This
1713 * is done by adding an FDB entry with a MAC of 00:00:00:00:00:00.
1714 */
d62a17ae 1715static int netlink_vxlan_flood_list_update(struct interface *ifp,
1716 struct in_addr *vtep_ip, int cmd)
13d60d35 1717{
5895d33f 1718 struct zebra_ns *zns;
d62a17ae 1719 struct {
1720 struct nlmsghdr n;
1721 struct ndmsg ndm;
1722 char buf[256];
1723 } req;
d7c0a89a 1724 uint8_t dst_mac[6] = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0};
009f8ad5 1725 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(ifp->vrf_id);
d62a17ae 1726
009f8ad5 1727 zns = zvrf->zns;
d62a17ae 1728 memset(&req.n, 0, sizeof(req.n));
1729 memset(&req.ndm, 0, sizeof(req.ndm));
1730
1731 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
1732 req.n.nlmsg_flags = NLM_F_REQUEST;
1733 if (cmd == RTM_NEWNEIGH)
1734 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_APPEND);
1735 req.n.nlmsg_type = cmd;
1736 req.ndm.ndm_family = PF_BRIDGE;
1737 req.ndm.ndm_state = NUD_NOARP | NUD_PERMANENT;
1738 req.ndm.ndm_flags |= NTF_SELF; // Handle by "self", not "master"
1739
1740
1741 addattr_l(&req.n, sizeof(req), NDA_LLADDR, &dst_mac, 6);
1742 req.ndm.ndm_ifindex = ifp->ifindex;
1743 addattr_l(&req.n, sizeof(req), NDA_DST, &vtep_ip->s_addr, 4);
1744
1745 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
1746 0);
13d60d35 1747}
1748
1749/*
d62a17ae 1750 * Add remote VTEP for this VxLAN interface (VNI). In Linux, this involves
1751 * adding
13d60d35 1752 * a "flood" MAC FDB entry.
1753 */
d62a17ae 1754int kernel_add_vtep(vni_t vni, struct interface *ifp, struct in_addr *vtep_ip)
13d60d35 1755{
d62a17ae 1756 if (IS_ZEBRA_DEBUG_VXLAN)
1757 zlog_debug("Install %s into flood list for VNI %u intf %s(%u)",
1758 inet_ntoa(*vtep_ip), vni, ifp->name, ifp->ifindex);
13d60d35 1759
d62a17ae 1760 return netlink_vxlan_flood_list_update(ifp, vtep_ip, RTM_NEWNEIGH);
13d60d35 1761}
1762
1763/*
1764 * Remove remote VTEP for this VxLAN interface (VNI). In Linux, this involves
1765 * deleting the "flood" MAC FDB entry.
1766 */
d62a17ae 1767int kernel_del_vtep(vni_t vni, struct interface *ifp, struct in_addr *vtep_ip)
13d60d35 1768{
d62a17ae 1769 if (IS_ZEBRA_DEBUG_VXLAN)
1770 zlog_debug(
1771 "Uninstall %s from flood list for VNI %u intf %s(%u)",
1772 inet_ntoa(*vtep_ip), vni, ifp->name, ifp->ifindex);
13d60d35 1773
d62a17ae 1774 return netlink_vxlan_flood_list_update(ifp, vtep_ip, RTM_DELNEIGH);
13d60d35 1775}
1776
2232a77c 1777#ifndef NDA_RTA
d62a17ae 1778#define NDA_RTA(r) \
1779 ((struct rtattr *)(((char *)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
2232a77c 1780#endif
1781
d62a17ae 1782static int netlink_macfdb_change(struct sockaddr_nl *snl, struct nlmsghdr *h,
5895d33f 1783 int len, ns_id_t ns_id)
2232a77c 1784{
d62a17ae 1785 struct ndmsg *ndm;
1786 struct interface *ifp;
1787 struct zebra_if *zif;
d62a17ae 1788 struct rtattr *tb[NDA_MAX + 1];
1789 struct interface *br_if;
1790 struct ethaddr mac;
1791 vlanid_t vid = 0;
1792 struct prefix vtep_ip;
1793 int vid_present = 0, dst_present = 0;
1794 char buf[ETHER_ADDR_STRLEN];
1795 char vid_buf[20];
1796 char dst_buf[30];
d7c0a89a 1797 uint8_t sticky = 0;
d62a17ae 1798
1799 ndm = NLMSG_DATA(h);
1800
2853fed6 1801 /* We only process macfdb notifications if EVPN is enabled */
1802 if (!is_evpn_enabled())
1803 return 0;
1804
d62a17ae 1805 /* The interface should exist. */
5895d33f 1806 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
d62a17ae 1807 ndm->ndm_ifindex);
2853fed6 1808 if (!ifp || !ifp->info)
d62a17ae 1809 return 0;
1810
1811 /* The interface should be something we're interested in. */
1812 if (!IS_ZEBRA_IF_BRIDGE_SLAVE(ifp))
1813 return 0;
1814
1815 /* Drop "permanent" entries. */
1816 if (ndm->ndm_state & NUD_PERMANENT)
1817 return 0;
1818
1819 zif = (struct zebra_if *)ifp->info;
1820 if ((br_if = zif->brslave_info.br_if) == NULL) {
1821 zlog_warn("%s family %s IF %s(%u) brIF %u - no bridge master",
1822 nl_msg_type_to_str(h->nlmsg_type),
1823 nl_family_to_str(ndm->ndm_family), ifp->name,
1824 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex);
1825 return 0;
1826 }
1827
1828 /* Parse attributes and extract fields of interest. */
1829 memset(tb, 0, sizeof tb);
1830 netlink_parse_rtattr(tb, NDA_MAX, NDA_RTA(ndm), len);
1831
1832 if (!tb[NDA_LLADDR]) {
1833 zlog_warn("%s family %s IF %s(%u) brIF %u - no LLADDR",
1834 nl_msg_type_to_str(h->nlmsg_type),
1835 nl_family_to_str(ndm->ndm_family), ifp->name,
1836 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex);
1837 return 0;
1838 }
1839
ff8b7eb8 1840 if (RTA_PAYLOAD(tb[NDA_LLADDR]) != ETH_ALEN) {
d62a17ae 1841 zlog_warn(
df0b13cf 1842 "%s family %s IF %s(%u) brIF %u - LLADDR is not MAC, len %lu",
d62a17ae 1843 nl_msg_type_to_str(h->nlmsg_type),
1844 nl_family_to_str(ndm->ndm_family), ifp->name,
1845 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex,
df0b13cf 1846 (unsigned long)RTA_PAYLOAD(tb[NDA_LLADDR]));
d62a17ae 1847 return 0;
1848 }
1849
ff8b7eb8 1850 memcpy(&mac, RTA_DATA(tb[NDA_LLADDR]), ETH_ALEN);
d62a17ae 1851
1852 if ((NDA_VLAN <= NDA_MAX) && tb[NDA_VLAN]) {
1853 vid_present = 1;
d7c0a89a 1854 vid = *(uint16_t *)RTA_DATA(tb[NDA_VLAN]);
d62a17ae 1855 sprintf(vid_buf, " VLAN %u", vid);
1856 }
1857
1858 if (tb[NDA_DST]) {
1859 /* TODO: Only IPv4 supported now. */
1860 dst_present = 1;
1861 vtep_ip.family = AF_INET;
1862 vtep_ip.prefixlen = IPV4_MAX_BITLEN;
1863 memcpy(&(vtep_ip.u.prefix4.s_addr), RTA_DATA(tb[NDA_DST]),
1864 IPV4_MAX_BYTELEN);
1865 sprintf(dst_buf, " dst %s", inet_ntoa(vtep_ip.u.prefix4));
1866 }
1867
1868 sticky = (ndm->ndm_state & NUD_NOARP) ? 1 : 0;
1869
1870 if (IS_ZEBRA_DEBUG_KERNEL)
1871 zlog_debug("Rx %s family %s IF %s(%u)%s %sMAC %s%s",
1872 nl_msg_type_to_str(h->nlmsg_type),
1873 nl_family_to_str(ndm->ndm_family), ifp->name,
1874 ndm->ndm_ifindex, vid_present ? vid_buf : "",
1875 sticky ? "sticky " : "",
1876 prefix_mac2str(&mac, buf, sizeof(buf)),
1877 dst_present ? dst_buf : "");
1878
1879 if (filter_vlan && vid != filter_vlan)
1880 return 0;
1881
1882 /* If add or update, do accordingly if learnt on a "local" interface; if
1883 * the notification is over VxLAN, this has to be related to
1884 * multi-homing,
1885 * so perform an implicit delete of any local entry (if it exists).
1886 */
1887 if (h->nlmsg_type == RTM_NEWNEIGH) {
1888 /* Drop "permanent" entries. */
1889 if (ndm->ndm_state & NUD_PERMANENT)
1890 return 0;
1891
1892 if (IS_ZEBRA_IF_VXLAN(ifp))
1893 return zebra_vxlan_check_del_local_mac(ifp, br_if, &mac,
1894 vid);
1895
1896 return zebra_vxlan_local_mac_add_update(ifp, br_if, &mac, vid,
1897 sticky);
1898 }
1899
1900 /* This is a delete notification.
1901 * 1. For a MAC over VxLan, check if it needs to be refreshed(readded)
1902 * 2. For a MAC over "local" interface, delete the mac
1903 * Note: We will get notifications from both bridge driver and VxLAN
1904 * driver.
1905 * Ignore the notification from VxLan driver as it is also generated
1906 * when mac moves from remote to local.
1907 */
1908 if (dst_present)
1909 return 0;
1910
1911 if (IS_ZEBRA_IF_VXLAN(ifp))
1912 return zebra_vxlan_check_readd_remote_mac(ifp, br_if, &mac,
1913 vid);
1914
1915 return zebra_vxlan_local_mac_del(ifp, br_if, &mac, vid);
2232a77c 1916}
1917
d62a17ae 1918static int netlink_macfdb_table(struct sockaddr_nl *snl, struct nlmsghdr *h,
1919 ns_id_t ns_id, int startup)
2232a77c 1920{
d62a17ae 1921 int len;
1922 struct ndmsg *ndm;
2232a77c 1923
d62a17ae 1924 if (h->nlmsg_type != RTM_NEWNEIGH)
1925 return 0;
2232a77c 1926
d62a17ae 1927 /* Length validity. */
1928 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
1929 if (len < 0)
1930 return -1;
2232a77c 1931
d62a17ae 1932 /* We are interested only in AF_BRIDGE notifications. */
1933 ndm = NLMSG_DATA(h);
1934 if (ndm->ndm_family != AF_BRIDGE)
1935 return 0;
2232a77c 1936
5895d33f 1937 return netlink_macfdb_change(snl, h, len, ns_id);
2232a77c 1938}
1939
1940/* Request for MAC FDB information from the kernel */
d62a17ae 1941static int netlink_request_macs(struct zebra_ns *zns, int family, int type,
1942 ifindex_t master_ifindex)
2232a77c 1943{
d62a17ae 1944 struct {
1945 struct nlmsghdr n;
1946 struct ifinfomsg ifm;
1947 char buf[256];
1948 } req;
1949
1950 /* Form the request, specifying filter (rtattr) if needed. */
1951 memset(&req, 0, sizeof(req));
1952 req.n.nlmsg_type = type;
1953 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
1954 req.ifm.ifi_family = family;
1955 if (master_ifindex)
1956 addattr32(&req.n, sizeof(req), IFLA_MASTER, master_ifindex);
1957
1958 return netlink_request(&zns->netlink_cmd, &req.n);
2232a77c 1959}
1960
1961/*
1962 * MAC forwarding database read using netlink interface. This is invoked
1963 * at startup.
1964 */
d62a17ae 1965int netlink_macfdb_read(struct zebra_ns *zns)
2232a77c 1966{
d62a17ae 1967 int ret;
1968
1969 /* Get bridge FDB table. */
1970 ret = netlink_request_macs(zns, AF_BRIDGE, RTM_GETNEIGH, 0);
1971 if (ret < 0)
1972 return ret;
1973 /* We are reading entire table. */
1974 filter_vlan = 0;
1975 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd, zns,
1976 0, 1);
1977
1978 return ret;
2232a77c 1979}
1980
1981/*
1982 * MAC forwarding database read using netlink interface. This is for a
1983 * specific bridge and matching specific access VLAN (if VLAN-aware bridge).
1984 */
d62a17ae 1985int netlink_macfdb_read_for_bridge(struct zebra_ns *zns, struct interface *ifp,
1986 struct interface *br_if)
2232a77c 1987{
d62a17ae 1988 struct zebra_if *br_zif;
1989 struct zebra_if *zif;
1990 struct zebra_l2info_vxlan *vxl;
1991 int ret = 0;
1992
1993
1994 /* Save VLAN we're filtering on, if needed. */
1995 br_zif = (struct zebra_if *)br_if->info;
1996 zif = (struct zebra_if *)ifp->info;
1997 vxl = &zif->l2info.vxl;
1998 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(br_zif))
1999 filter_vlan = vxl->access_vlan;
2000
2001 /* Get bridge FDB table for specific bridge - we do the VLAN filtering.
2002 */
2003 ret = netlink_request_macs(zns, AF_BRIDGE, RTM_GETNEIGH,
2004 br_if->ifindex);
2005 if (ret < 0)
2006 return ret;
2007 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd, zns,
2008 0, 0);
2009
2010 /* Reset VLAN filter. */
2011 filter_vlan = 0;
2012 return ret;
2232a77c 2013}
2014
d62a17ae 2015static int netlink_macfdb_update(struct interface *ifp, vlanid_t vid,
2016 struct ethaddr *mac, struct in_addr vtep_ip,
d7c0a89a 2017 int local, int cmd, uint8_t sticky)
2232a77c 2018{
5895d33f 2019 struct zebra_ns *zns;
d62a17ae 2020 struct {
2021 struct nlmsghdr n;
2022 struct ndmsg ndm;
2023 char buf[256];
2024 } req;
2025 int dst_alen;
2026 struct zebra_if *zif;
2027 struct interface *br_if;
2028 struct zebra_if *br_zif;
2029 char buf[ETHER_ADDR_STRLEN];
2030 int vid_present = 0, dst_present = 0;
2031 char vid_buf[20];
2032 char dst_buf[30];
009f8ad5 2033 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(ifp->vrf_id);
d62a17ae 2034
009f8ad5 2035 zns = zvrf->zns;
d62a17ae 2036 zif = ifp->info;
2037 if ((br_if = zif->brslave_info.br_if) == NULL) {
2038 zlog_warn("MAC %s on IF %s(%u) - no mapping to bridge",
2039 (cmd == RTM_NEWNEIGH) ? "add" : "del", ifp->name,
2040 ifp->ifindex);
2041 return -1;
2042 }
2043
2044 memset(&req.n, 0, sizeof(req.n));
2045 memset(&req.ndm, 0, sizeof(req.ndm));
2046
2047 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2048 req.n.nlmsg_flags = NLM_F_REQUEST;
2049 if (cmd == RTM_NEWNEIGH)
2050 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_REPLACE);
2051 req.n.nlmsg_type = cmd;
2052 req.ndm.ndm_family = AF_BRIDGE;
2053 req.ndm.ndm_flags |= NTF_SELF | NTF_MASTER;
2054 req.ndm.ndm_state = NUD_REACHABLE;
2055
2056 if (sticky)
2057 req.ndm.ndm_state |= NUD_NOARP;
2058 else
2059 req.ndm.ndm_flags |= NTF_EXT_LEARNED;
2060
2061 addattr_l(&req.n, sizeof(req), NDA_LLADDR, mac, 6);
2062 req.ndm.ndm_ifindex = ifp->ifindex;
2063 if (!local) {
2064 dst_alen = 4; // TODO: hardcoded
2065 addattr_l(&req.n, sizeof(req), NDA_DST, &vtep_ip, dst_alen);
2066 dst_present = 1;
2067 sprintf(dst_buf, " dst %s", inet_ntoa(vtep_ip));
2068 }
2069 br_zif = (struct zebra_if *)br_if->info;
2070 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(br_zif) && vid > 0) {
2071 addattr16(&req.n, sizeof(req), NDA_VLAN, vid);
2072 vid_present = 1;
2073 sprintf(vid_buf, " VLAN %u", vid);
2074 }
2075 addattr32(&req.n, sizeof(req), NDA_MASTER, br_if->ifindex);
2076
2077 if (IS_ZEBRA_DEBUG_KERNEL)
2078 zlog_debug("Tx %s family %s IF %s(%u)%s %sMAC %s%s",
2079 nl_msg_type_to_str(cmd),
2080 nl_family_to_str(req.ndm.ndm_family), ifp->name,
2081 ifp->ifindex, vid_present ? vid_buf : "",
2082 sticky ? "sticky " : "",
2083 prefix_mac2str(mac, buf, sizeof(buf)),
2084 dst_present ? dst_buf : "");
2085
2086 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
2087 0);
2232a77c 2088}
2089
d62a17ae 2090#define NUD_VALID \
2091 (NUD_PERMANENT | NUD_NOARP | NUD_REACHABLE | NUD_PROBE | NUD_STALE \
2092 | NUD_DELAY)
2232a77c 2093
d62a17ae 2094static int netlink_ipneigh_change(struct sockaddr_nl *snl, struct nlmsghdr *h,
5895d33f 2095 int len, ns_id_t ns_id)
2232a77c 2096{
d62a17ae 2097 struct ndmsg *ndm;
2098 struct interface *ifp;
2099 struct zebra_if *zif;
d62a17ae 2100 struct rtattr *tb[NDA_MAX + 1];
2101 struct interface *link_if;
2102 struct ethaddr mac;
2103 struct ipaddr ip;
2104 char buf[ETHER_ADDR_STRLEN];
2105 char buf2[INET6_ADDRSTRLEN];
2106 int mac_present = 0;
d7c0a89a 2107 uint8_t ext_learned;
d62a17ae 2108
2109 ndm = NLMSG_DATA(h);
2110
2853fed6 2111 /* We only process neigh notifications if EVPN is enabled */
2112 if (!is_evpn_enabled())
2113 return 0;
2114
d62a17ae 2115 /* The interface should exist. */
5895d33f 2116 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
d62a17ae 2117 ndm->ndm_ifindex);
2853fed6 2118 if (!ifp || !ifp->info)
d62a17ae 2119 return 0;
2120
2121 /* Drop "permanent" entries. */
2122 if (ndm->ndm_state & NUD_PERMANENT)
2123 return 0;
2124
2125 zif = (struct zebra_if *)ifp->info;
2126 /* The neighbor is present on an SVI. From this, we locate the
2127 * underlying
2128 * bridge because we're only interested in neighbors on a VxLAN bridge.
2129 * The bridge is located based on the nature of the SVI:
2130 * (a) In the case of a VLAN-aware bridge, the SVI is a L3 VLAN
2131 * interface
2132 * and is linked to the bridge
2133 * (b) In the case of a VLAN-unaware bridge, the SVI is the bridge
2134 * inteface
2135 * itself
2136 */
2137 if (IS_ZEBRA_IF_VLAN(ifp)) {
5895d33f 2138 link_if = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
71349e03 2139 zif->link_ifindex);
d62a17ae 2140 if (!link_if)
2141 return 0;
2142 } else if (IS_ZEBRA_IF_BRIDGE(ifp))
2143 link_if = ifp;
2144 else
2145 return 0;
2146
2147 /* Parse attributes and extract fields of interest. */
2148 memset(tb, 0, sizeof tb);
2149 netlink_parse_rtattr(tb, NDA_MAX, NDA_RTA(ndm), len);
2150
2151 if (!tb[NDA_DST]) {
2152 zlog_warn("%s family %s IF %s(%u) - no DST",
2153 nl_msg_type_to_str(h->nlmsg_type),
2154 nl_family_to_str(ndm->ndm_family), ifp->name,
2155 ndm->ndm_ifindex);
2156 return 0;
2157 }
2158 memset(&mac, 0, sizeof(struct ethaddr));
2159 memset(&ip, 0, sizeof(struct ipaddr));
2160 ip.ipa_type = (ndm->ndm_family == AF_INET) ? IPADDR_V4 : IPADDR_V6;
2161 memcpy(&ip.ip.addr, RTA_DATA(tb[NDA_DST]), RTA_PAYLOAD(tb[NDA_DST]));
2162
2163 if (h->nlmsg_type == RTM_NEWNEIGH) {
2164 if (tb[NDA_LLADDR]) {
ff8b7eb8 2165 if (RTA_PAYLOAD(tb[NDA_LLADDR]) != ETH_ALEN) {
d62a17ae 2166 zlog_warn(
df0b13cf 2167 "%s family %s IF %s(%u) - LLADDR is not MAC, len %lu",
d62a17ae 2168 nl_msg_type_to_str(h->nlmsg_type),
2169 nl_family_to_str(ndm->ndm_family),
2170 ifp->name, ndm->ndm_ifindex,
996c9314
LB
2171 (unsigned long)RTA_PAYLOAD(
2172 tb[NDA_LLADDR]));
d62a17ae 2173 return 0;
2174 }
2175
2176 mac_present = 1;
ff8b7eb8 2177 memcpy(&mac, RTA_DATA(tb[NDA_LLADDR]), ETH_ALEN);
d62a17ae 2178 }
2179
2180 ext_learned = (ndm->ndm_flags & NTF_EXT_LEARNED) ? 1 : 0;
2181
2182 if (IS_ZEBRA_DEBUG_KERNEL)
2183 zlog_debug(
2184 "Rx %s family %s IF %s(%u) IP %s MAC %s state 0x%x flags 0x%x",
2185 nl_msg_type_to_str(h->nlmsg_type),
2186 nl_family_to_str(ndm->ndm_family), ifp->name,
2187 ndm->ndm_ifindex,
2188 ipaddr2str(&ip, buf2, sizeof(buf2)),
2189 mac_present
2190 ? prefix_mac2str(&mac, buf, sizeof(buf))
2191 : "",
2192 ndm->ndm_state, ndm->ndm_flags);
2193
2194 /* If the neighbor state is valid for use, process as an add or
2195 * update
2196 * else process as a delete. Note that the delete handling may
2197 * result
2198 * in re-adding the neighbor if it is a valid "remote" neighbor.
2199 */
2200 if (ndm->ndm_state & NUD_VALID)
2201 return zebra_vxlan_local_neigh_add_update(
2202 ifp, link_if, &ip, &mac, ndm->ndm_state,
2203 ext_learned);
2204
2205 return zebra_vxlan_local_neigh_del(ifp, link_if, &ip);
2206 }
2207
2208 if (IS_ZEBRA_DEBUG_KERNEL)
2209 zlog_debug("Rx %s family %s IF %s(%u) IP %s",
2210 nl_msg_type_to_str(h->nlmsg_type),
2211 nl_family_to_str(ndm->ndm_family), ifp->name,
2212 ndm->ndm_ifindex,
2213 ipaddr2str(&ip, buf2, sizeof(buf2)));
2214
2215 /* Process the delete - it may result in re-adding the neighbor if it is
2216 * a valid "remote" neighbor.
2217 */
2218 return zebra_vxlan_local_neigh_del(ifp, link_if, &ip);
2232a77c 2219}
2220
d62a17ae 2221static int netlink_neigh_table(struct sockaddr_nl *snl, struct nlmsghdr *h,
2222 ns_id_t ns_id, int startup)
2232a77c 2223{
d62a17ae 2224 int len;
2225 struct ndmsg *ndm;
2232a77c 2226
d62a17ae 2227 if (h->nlmsg_type != RTM_NEWNEIGH)
2228 return 0;
2232a77c 2229
d62a17ae 2230 /* Length validity. */
2231 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
2232 if (len < 0)
2233 return -1;
2232a77c 2234
d62a17ae 2235 /* We are interested only in AF_INET or AF_INET6 notifications. */
2236 ndm = NLMSG_DATA(h);
2237 if (ndm->ndm_family != AF_INET && ndm->ndm_family != AF_INET6)
2238 return 0;
2232a77c 2239
d62a17ae 2240 return netlink_neigh_change(snl, h, len);
2232a77c 2241}
2242
2243/* Request for IP neighbor information from the kernel */
d62a17ae 2244static int netlink_request_neigh(struct zebra_ns *zns, int family, int type,
2245 ifindex_t ifindex)
2232a77c 2246{
d62a17ae 2247 struct {
2248 struct nlmsghdr n;
2249 struct ndmsg ndm;
2250 char buf[256];
2251 } req;
2252
2253 /* Form the request, specifying filter (rtattr) if needed. */
2254 memset(&req, 0, sizeof(req));
2255 req.n.nlmsg_type = type;
2256 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2257 req.ndm.ndm_family = family;
2258 if (ifindex)
2259 addattr32(&req.n, sizeof(req), NDA_IFINDEX, ifindex);
2260
2261 return netlink_request(&zns->netlink_cmd, &req.n);
2232a77c 2262}
2263
2264/*
2265 * IP Neighbor table read using netlink interface. This is invoked
2266 * at startup.
2267 */
d62a17ae 2268int netlink_neigh_read(struct zebra_ns *zns)
2232a77c 2269{
d62a17ae 2270 int ret;
2232a77c 2271
d62a17ae 2272 /* Get IP neighbor table. */
2273 ret = netlink_request_neigh(zns, AF_UNSPEC, RTM_GETNEIGH, 0);
2274 if (ret < 0)
2275 return ret;
2276 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd, zns, 0,
2277 1);
2232a77c 2278
d62a17ae 2279 return ret;
2232a77c 2280}
2281
2282/*
2283 * IP Neighbor table read using netlink interface. This is for a specific
2284 * VLAN device.
2285 */
d62a17ae 2286int netlink_neigh_read_for_vlan(struct zebra_ns *zns, struct interface *vlan_if)
2232a77c 2287{
d62a17ae 2288 int ret = 0;
2232a77c 2289
d62a17ae 2290 ret = netlink_request_neigh(zns, AF_UNSPEC, RTM_GETNEIGH,
2291 vlan_if->ifindex);
2292 if (ret < 0)
2293 return ret;
2294 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd, zns, 0,
2295 0);
2232a77c 2296
d62a17ae 2297 return ret;
2232a77c 2298}
2299
d62a17ae 2300int netlink_neigh_change(struct sockaddr_nl *snl, struct nlmsghdr *h,
2301 ns_id_t ns_id)
2232a77c 2302{
d62a17ae 2303 int len;
2304 struct ndmsg *ndm;
2232a77c 2305
d62a17ae 2306 if (!(h->nlmsg_type == RTM_NEWNEIGH || h->nlmsg_type == RTM_DELNEIGH))
2307 return 0;
2232a77c 2308
d62a17ae 2309 /* Length validity. */
2310 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
2311 if (len < 0)
2312 return -1;
2232a77c 2313
d62a17ae 2314 /* Is this a notification for the MAC FDB or IP neighbor table? */
2315 ndm = NLMSG_DATA(h);
2316 if (ndm->ndm_family == AF_BRIDGE)
5895d33f 2317 return netlink_macfdb_change(snl, h, len, ns_id);
2232a77c 2318
d62a17ae 2319 if (ndm->ndm_type != RTN_UNICAST)
2320 return 0;
2232a77c 2321
d62a17ae 2322 if (ndm->ndm_family == AF_INET || ndm->ndm_family == AF_INET6)
5895d33f 2323 return netlink_ipneigh_change(snl, h, len, ns_id);
2232a77c 2324
d62a17ae 2325 return 0;
2232a77c 2326}
2327
d62a17ae 2328static int netlink_neigh_update2(struct interface *ifp, struct ipaddr *ip,
d7c0a89a 2329 struct ethaddr *mac, uint32_t flags, int cmd)
2232a77c 2330{
d62a17ae 2331 struct {
2332 struct nlmsghdr n;
2333 struct ndmsg ndm;
2334 char buf[256];
2335 } req;
2336 int ipa_len;
2337
5895d33f 2338 struct zebra_ns *zns;
d62a17ae 2339 char buf[INET6_ADDRSTRLEN];
2340 char buf2[ETHER_ADDR_STRLEN];
009f8ad5 2341 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(ifp->vrf_id);
d62a17ae 2342
009f8ad5 2343 zns = zvrf->zns;
d62a17ae 2344 memset(&req.n, 0, sizeof(req.n));
2345 memset(&req.ndm, 0, sizeof(req.ndm));
2346
2347 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2348 req.n.nlmsg_flags = NLM_F_REQUEST;
2349 if (cmd == RTM_NEWNEIGH)
2350 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_REPLACE);
2351 req.n.nlmsg_type = cmd; // RTM_NEWNEIGH or RTM_DELNEIGH
2352 req.ndm.ndm_family = IS_IPADDR_V4(ip) ? AF_INET : AF_INET6;
2353 req.ndm.ndm_state = flags;
2354 req.ndm.ndm_ifindex = ifp->ifindex;
2355 req.ndm.ndm_type = RTN_UNICAST;
2356 req.ndm.ndm_flags = NTF_EXT_LEARNED;
2357
2358
2359 ipa_len = IS_IPADDR_V4(ip) ? IPV4_MAX_BYTELEN : IPV6_MAX_BYTELEN;
2360 addattr_l(&req.n, sizeof(req), NDA_DST, &ip->ip.addr, ipa_len);
2361 if (mac)
2362 addattr_l(&req.n, sizeof(req), NDA_LLADDR, mac, 6);
2363
2364 if (IS_ZEBRA_DEBUG_KERNEL)
2365 zlog_debug("Tx %s family %s IF %s(%u) Neigh %s MAC %s",
2366 nl_msg_type_to_str(cmd),
2367 nl_family_to_str(req.ndm.ndm_family), ifp->name,
2368 ifp->ifindex, ipaddr2str(ip, buf, sizeof(buf)),
2369 mac ? prefix_mac2str(mac, buf2, sizeof(buf2))
2370 : "null");
2371
2372 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
2373 0);
2232a77c 2374}
2375
d62a17ae 2376int kernel_add_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac,
d7c0a89a 2377 struct in_addr vtep_ip, uint8_t sticky)
2232a77c 2378{
d62a17ae 2379 return netlink_macfdb_update(ifp, vid, mac, vtep_ip, 0, RTM_NEWNEIGH,
2380 sticky);
2232a77c 2381}
2382
d62a17ae 2383int kernel_del_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac,
2384 struct in_addr vtep_ip, int local)
2232a77c 2385{
d62a17ae 2386 return netlink_macfdb_update(ifp, vid, mac, vtep_ip, local,
2387 RTM_DELNEIGH, 0);
2232a77c 2388}
2389
d62a17ae 2390int kernel_add_neigh(struct interface *ifp, struct ipaddr *ip,
2391 struct ethaddr *mac)
2232a77c 2392{
d62a17ae 2393 return netlink_neigh_update2(ifp, ip, mac, NUD_REACHABLE, RTM_NEWNEIGH);
2232a77c 2394}
2395
d62a17ae 2396int kernel_del_neigh(struct interface *ifp, struct ipaddr *ip)
2232a77c 2397{
d62a17ae 2398 return netlink_neigh_update2(ifp, ip, NULL, 0, RTM_DELNEIGH);
2232a77c 2399}
2400
40c7bdb0 2401/*
2402 * MPLS label forwarding table change via netlink interface.
2403 */
d62a17ae 2404int netlink_mpls_multipath(int cmd, zebra_lsp_t *lsp)
40c7bdb0 2405{
d62a17ae 2406 mpls_lse_t lse;
2407 zebra_nhlfe_t *nhlfe;
2408 struct nexthop *nexthop = NULL;
2409 unsigned int nexthop_num;
2410 const char *routedesc;
2411 struct zebra_ns *zns = zebra_ns_lookup(NS_DEFAULT);
805444ce 2412 int route_type;
d62a17ae 2413
2414 struct {
2415 struct nlmsghdr n;
2416 struct rtmsg r;
2417 char buf[NL_PKT_BUF_SIZE];
2418 } req;
2419
2420 memset(&req, 0, sizeof req - NL_PKT_BUF_SIZE);
2421
d62a17ae 2422 /*
2423 * Count # nexthops so we can decide whether to use singlepath
2424 * or multipath case.
2425 */
2426 nexthop_num = 0;
2427 for (nhlfe = lsp->nhlfe_list; nhlfe; nhlfe = nhlfe->next) {
2428 nexthop = nhlfe->nexthop;
2429 if (!nexthop)
2430 continue;
2431 if (cmd == RTM_NEWROUTE) {
2432 /* Count all selected NHLFEs */
2433 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2434 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE))
2435 nexthop_num++;
2436 } else /* DEL */
2437 {
2438 /* Count all installed NHLFEs */
2439 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_INSTALLED)
2440 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB))
2441 nexthop_num++;
2442 }
2443 }
2444
8dc8a4b6 2445 if ((nexthop_num == 0) || (!lsp->best_nhlfe && (cmd != RTM_DELROUTE)))
d62a17ae 2446 return 0;
2447
2448 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
2449 req.n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
2450 req.n.nlmsg_type = cmd;
2451 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
2452
2453 req.r.rtm_family = AF_MPLS;
2454 req.r.rtm_table = RT_TABLE_MAIN;
2455 req.r.rtm_dst_len = MPLS_LABEL_LEN_BITS;
d62a17ae 2456 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
2457 req.r.rtm_type = RTN_UNICAST;
2458
8dc8a4b6 2459 if (cmd == RTM_NEWROUTE) {
d62a17ae 2460 /* We do a replace to handle update. */
2461 req.n.nlmsg_flags |= NLM_F_REPLACE;
2462
8dc8a4b6
DS
2463 /* set the protocol value if installing */
2464 route_type = re_type_from_lsp_type(lsp->best_nhlfe->type);
2465 req.r.rtm_protocol = zebra2proto(route_type);
2466 }
2467
d62a17ae 2468 /* Fill destination */
2469 lse = mpls_lse_encode(lsp->ile.in_label, 0, 0, 1);
2470 addattr_l(&req.n, sizeof req, RTA_DST, &lse, sizeof(mpls_lse_t));
2471
2472 /* Fill nexthops (paths) based on single-path or multipath. The paths
2473 * chosen depend on the operation.
2474 */
2475 if (nexthop_num == 1 || multipath_num == 1) {
8b1450b9 2476 routedesc = "single-path";
d62a17ae 2477 _netlink_mpls_debug(cmd, lsp->ile.in_label, routedesc);
2478
2479 nexthop_num = 0;
2480 for (nhlfe = lsp->nhlfe_list; nhlfe; nhlfe = nhlfe->next) {
2481 nexthop = nhlfe->nexthop;
2482 if (!nexthop)
2483 continue;
2484
2485 if ((cmd == RTM_NEWROUTE
2486 && (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2487 && CHECK_FLAG(nexthop->flags,
2488 NEXTHOP_FLAG_ACTIVE)))
2489 || (cmd == RTM_DELROUTE
2490 && (CHECK_FLAG(nhlfe->flags,
2491 NHLFE_FLAG_INSTALLED)
2492 && CHECK_FLAG(nexthop->flags,
2493 NEXTHOP_FLAG_FIB)))) {
2494 /* Add the gateway */
2495 _netlink_mpls_build_singlepath(routedesc, nhlfe,
2496 &req.n, &req.r,
2497 sizeof req, cmd);
d62a17ae 2498 nexthop_num++;
2499 break;
2500 }
2501 }
2502 } else /* Multipath case */
2503 {
2504 char buf[NL_PKT_BUF_SIZE];
2505 struct rtattr *rta = (void *)buf;
2506 struct rtnexthop *rtnh;
2507 union g_addr *src1 = NULL;
2508
2509 rta->rta_type = RTA_MULTIPATH;
2510 rta->rta_len = RTA_LENGTH(0);
2511 rtnh = RTA_DATA(rta);
2512
8b1450b9 2513 routedesc = "multipath";
d62a17ae 2514 _netlink_mpls_debug(cmd, lsp->ile.in_label, routedesc);
2515
2516 nexthop_num = 0;
2517 for (nhlfe = lsp->nhlfe_list; nhlfe; nhlfe = nhlfe->next) {
2518 nexthop = nhlfe->nexthop;
2519 if (!nexthop)
2520 continue;
2521
2522 if (nexthop_num >= multipath_num)
2523 break;
2524
2525 if ((cmd == RTM_NEWROUTE
2526 && (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2527 && CHECK_FLAG(nexthop->flags,
2528 NEXTHOP_FLAG_ACTIVE)))
2529 || (cmd == RTM_DELROUTE
2530 && (CHECK_FLAG(nhlfe->flags,
2531 NHLFE_FLAG_INSTALLED)
2532 && CHECK_FLAG(nexthop->flags,
2533 NEXTHOP_FLAG_FIB)))) {
2534 nexthop_num++;
2535
2536 /* Build the multipath */
2537 _netlink_mpls_build_multipath(routedesc, nhlfe,
2538 rta, rtnh, &req.r,
2539 &src1);
2540 rtnh = RTNH_NEXT(rtnh);
d62a17ae 2541 }
2542 }
2543
2544 /* Add the multipath */
2545 if (rta->rta_len > RTA_LENGTH(0))
2546 addattr_l(&req.n, NL_PKT_BUF_SIZE, RTA_MULTIPATH,
2547 RTA_DATA(rta), RTA_PAYLOAD(rta));
2548 }
2549
2550 /* Talk to netlink socket. */
2551 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
2552 0);
40c7bdb0 2553}
ddfeb486 2554#endif /* HAVE_NETLINK */