]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rt_netlink.c
lib: Isolate nexthop_group functions to nexthop_group.c
[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 {
75 u_int16_t filler;
76 u_int16_t family;
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 */
78dd30b2 197static vrf_id_t vrf_lookup_by_table(u_int32_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];
229 u_char flags = 0;
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;
240 u_int32_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
DS
346 if (mxrta[RTAX_MTU])
347 mtu = *(u_int32_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];
996c9314
LB
400 zlog_debug("%s %s%s%s vrf %u metric: %d Admin Distance: %d",
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 : "",
407 vrf_id, 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
d62a17ae 775static void _netlink_route_nl_add_gateway_info(u_char route_family,
776 u_char gw_family,
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
d62a17ae 801static void _netlink_route_rta_add_gateway_info(u_char route_family,
802 u_char gw_family,
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;
899 u_int16_t encap = LWTUNNEL_ENCAP_MPLS;
900
901 addattr_l(nlmsg, req_size, RTA_ENCAP_TYPE, &encap,
902 sizeof(u_int16_t));
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): "
930 "nexthop via %s %s if %u",
931 routedesc, ipv4_ll_buf, label_buf,
932 nexthop->ifindex);
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): "
956 "nexthop via %s %s if %u",
957 routedesc, inet_ntoa(nexthop->gate.ipv4),
958 label_buf, nexthop->ifindex);
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): "
979 "nexthop via %s %s if %u",
980 routedesc, inet6_ntoa(nexthop->gate.ipv6),
981 label_buf, nexthop->ifindex);
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): "
1006 "nexthop via if %u",
1007 routedesc, nexthop->ifindex);
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): "
1023 "nexthop via if %u",
1024 routedesc, nexthop->ifindex);
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;
1111 u_int16_t encap = LWTUNNEL_ENCAP_MPLS;
1112 int len = rta->rta_len;
1113
1114 rta_addattr_l(rta, NL_PKT_BUF_SIZE, RTA_ENCAP_TYPE,
1115 &encap, sizeof(u_int16_t));
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;
1227 u_char 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;
1242 u_char 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
1256 * @param nexthop: Nexthop which is currently processed
1257 * @param routedesc: Semantic annotation for nexthop
1258 * (recursive, multipath, etc.)
1259 * @param family: Address family which the change concerns
1260 */
d62a17ae 1261static void _netlink_route_debug(int cmd, struct prefix *p,
1262 struct nexthop *nexthop, const char *routedesc,
1263 int family, struct zebra_vrf *zvrf)
fa713d9e 1264{
d62a17ae 1265 if (IS_ZEBRA_DEBUG_KERNEL) {
1266 char buf[PREFIX_STRLEN];
1267 zlog_debug(
1268 "netlink_route_multipath() (%s): %s %s vrf %u type %s",
1269 routedesc, nl_msg_type_to_str(cmd),
1270 prefix2str(p, buf, sizeof(buf)), zvrf_id(zvrf),
1271 (nexthop) ? nexthop_type_to_str(nexthop->type) : "UNK");
1272 }
1273}
1274
1275static void _netlink_mpls_debug(int cmd, u_int32_t label, const char *routedesc)
40c7bdb0 1276{
d62a17ae 1277 if (IS_ZEBRA_DEBUG_KERNEL)
1278 zlog_debug("netlink_mpls_multipath() (%s): %s %u/20", routedesc,
1279 nl_msg_type_to_str(cmd), label);
fa713d9e
CF
1280}
1281
d62a17ae 1282static int netlink_neigh_update(int cmd, int ifindex, uint32_t addr, char *lla,
5895d33f 1283 int llalen, ns_id_t ns_id)
5c610faf 1284{
d62a17ae 1285 struct {
1286 struct nlmsghdr n;
1287 struct ndmsg ndm;
1288 char buf[256];
1289 } req;
5c610faf 1290
5895d33f 1291 struct zebra_ns *zns = zebra_ns_lookup(ns_id);
8f7d9fc0 1292
d62a17ae 1293 memset(&req.n, 0, sizeof(req.n));
1294 memset(&req.ndm, 0, sizeof(req.ndm));
5c610faf 1295
d62a17ae 1296 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
1297 req.n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
1298 req.n.nlmsg_type = cmd; // RTM_NEWNEIGH or RTM_DELNEIGH
1299 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
a55ba23f 1300
d62a17ae 1301 req.ndm.ndm_family = AF_INET;
1302 req.ndm.ndm_state = NUD_PERMANENT;
1303 req.ndm.ndm_ifindex = ifindex;
1304 req.ndm.ndm_type = RTN_UNICAST;
5c610faf 1305
d62a17ae 1306 addattr_l(&req.n, sizeof(req), NDA_DST, &addr, 4);
1307 addattr_l(&req.n, sizeof(req), NDA_LLADDR, lla, llalen);
5c610faf 1308
d62a17ae 1309 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
1310 0);
5c610faf
DS
1311}
1312
718e3744 1313/* Routing table change via netlink interface. */
6ae24471 1314/* Update flag indicates whether this is a "replace" or not. */
d62a17ae 1315static int netlink_route_multipath(int cmd, struct prefix *p,
1316 struct prefix *src_p, struct route_entry *re,
1317 int update)
718e3744 1318{
d62a17ae 1319 int bytelen;
1320 struct sockaddr_nl snl;
1321 struct nexthop *nexthop = NULL;
1322 unsigned int nexthop_num;
a8309422 1323 int discard = 0;
d62a17ae 1324 int family = PREFIX_FAMILY(p);
1325 const char *routedesc;
1326 int setsrc = 0;
1327 union g_addr src;
1328
1329 struct {
1330 struct nlmsghdr n;
1331 struct rtmsg r;
1332 char buf[NL_PKT_BUF_SIZE];
1333 } req;
1334
9a76375f 1335 struct zebra_ns *zns;
d62a17ae 1336 struct zebra_vrf *zvrf = vrf_info_lookup(re->vrf_id);
1337
009f8ad5 1338 zns = zvrf->zns;
d62a17ae 1339 memset(&req, 0, sizeof req - NL_PKT_BUF_SIZE);
1340
1341 bytelen = (family == AF_INET ? 4 : 16);
1342
1343 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
1344 req.n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
1345 if ((cmd == RTM_NEWROUTE) && update)
1346 req.n.nlmsg_flags |= NLM_F_REPLACE;
1347 req.n.nlmsg_type = cmd;
1348 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
1349
1350 req.r.rtm_family = family;
1351 req.r.rtm_dst_len = p->prefixlen;
1352 req.r.rtm_src_len = src_p ? src_p->prefixlen : 0;
915902cb 1353 req.r.rtm_protocol = zebra2proto(re->type);
d62a17ae 1354 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
a8309422 1355 req.r.rtm_type = RTN_UNICAST;
d62a17ae 1356
d62a17ae 1357 addattr_l(&req.n, sizeof req, RTA_DST, &p->u.prefix, bytelen);
1358 if (src_p)
1359 addattr_l(&req.n, sizeof req, RTA_SRC, &src_p->u.prefix,
1360 bytelen);
1361
1362 /* Metric. */
1363 /* Hardcode the metric for all routes coming from zebra. Metric isn't
1364 * used
1365 * either by the kernel or by zebra. Its purely for calculating best
1366 * path(s)
1367 * by the routing protocol and for communicating with protocol peers.
1368 */
1369 addattr32(&req.n, sizeof req, RTA_PRIORITY, NL_DEFAULT_ROUTE_METRIC);
4e40b6d6
KK
1370#if defined(SUPPORT_REALMS)
1371 if (re->tag > 0 && re->tag <= 255)
1372 addattr32(&req.n, sizeof req, RTA_FLOW, re->tag);
1373#endif
d62a17ae 1374 /* Table corresponding to this route. */
1375 if (re->table < 256)
1376 req.r.rtm_table = re->table;
1377 else {
1378 req.r.rtm_table = RT_TABLE_UNSPEC;
1379 addattr32(&req.n, sizeof req, RTA_TABLE, re->table);
0aabccc0 1380 }
718e3744 1381
a8309422
DL
1382 if (discard)
1383 goto skip;
1384
d62a17ae 1385 if (re->mtu || re->nexthop_mtu) {
1386 char buf[NL_PKT_BUF_SIZE];
1387 struct rtattr *rta = (void *)buf;
1388 u_int32_t mtu = re->mtu;
1389 if (!mtu || (re->nexthop_mtu && re->nexthop_mtu < mtu))
1390 mtu = re->nexthop_mtu;
1391 rta->rta_type = RTA_METRICS;
1392 rta->rta_len = RTA_LENGTH(0);
1393 rta_addattr_l(rta, NL_PKT_BUF_SIZE, RTAX_MTU, &mtu, sizeof mtu);
1394 addattr_l(&req.n, NL_PKT_BUF_SIZE, RTA_METRICS, RTA_DATA(rta),
1395 RTA_PAYLOAD(rta));
1396 }
1397
d62a17ae 1398 /* Count overall nexthops so we can decide whether to use singlepath
1399 * or multipath case. */
1400 nexthop_num = 0;
7ee30f28 1401 for (ALL_NEXTHOPS(re->ng, nexthop)) {
d62a17ae 1402 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE))
1403 continue;
996c9314 1404 if (cmd == RTM_NEWROUTE && !NEXTHOP_IS_ACTIVE(nexthop->flags))
d62a17ae 1405 continue;
1406 if (cmd == RTM_DELROUTE
1407 && !CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB))
1408 continue;
1409
1410 nexthop_num++;
1411 }
1412
1413 /* Singlepath case. */
1414 if (nexthop_num == 1 || multipath_num == 1) {
1415 nexthop_num = 0;
7ee30f28 1416 for (ALL_NEXTHOPS(re->ng, nexthop)) {
1f1d24a8
DS
1417 /*
1418 * So we want to cover 2 types of blackhole
1419 * routes here:
1420 * 1) A normal blackhole route( ala from a static
1421 * install.
1422 * 2) A recursively resolved blackhole route
1423 */
1424 if (nexthop->type == NEXTHOP_TYPE_BLACKHOLE) {
1425 switch (nexthop->bh_type) {
1426 case BLACKHOLE_ADMINPROHIB:
1427 req.r.rtm_type = RTN_PROHIBIT;
1428 break;
1429 case BLACKHOLE_REJECT:
1430 req.r.rtm_type = RTN_UNREACHABLE;
1431 break;
1432 default:
1433 req.r.rtm_type = RTN_BLACKHOLE;
1434 break;
1435 }
1436 goto skip;
1437 }
d62a17ae 1438 if (CHECK_FLAG(nexthop->flags,
1439 NEXTHOP_FLAG_RECURSIVE)) {
1440 if (!setsrc) {
1441 if (family == AF_INET) {
1442 if (nexthop->rmap_src.ipv4
1443 .s_addr
1444 != 0) {
1445 src.ipv4 =
1446 nexthop->rmap_src
1447 .ipv4;
1448 setsrc = 1;
1449 } else if (nexthop->src.ipv4
1450 .s_addr
1451 != 0) {
1452 src.ipv4 =
1453 nexthop->src
1454 .ipv4;
1455 setsrc = 1;
1456 }
1457 } else if (family == AF_INET6) {
1458 if (!IN6_IS_ADDR_UNSPECIFIED(
1459 &nexthop->rmap_src
1460 .ipv6)) {
1461 src.ipv6 =
1462 nexthop->rmap_src
1463 .ipv6;
1464 setsrc = 1;
1465 } else if (
1466 !IN6_IS_ADDR_UNSPECIFIED(
1467 &nexthop->src
1468 .ipv6)) {
1469 src.ipv6 =
1470 nexthop->src
1471 .ipv6;
1472 setsrc = 1;
1473 }
1474 }
1475 }
1476 continue;
1477 }
1478
1479 if ((cmd == RTM_NEWROUTE
25b9cb0c 1480 && NEXTHOP_IS_ACTIVE(nexthop->flags))
d62a17ae 1481 || (cmd == RTM_DELROUTE
1482 && CHECK_FLAG(nexthop->flags,
1483 NEXTHOP_FLAG_FIB))) {
1484 routedesc = nexthop->rparent
8b1450b9
RW
1485 ? "recursive, single-path"
1486 : "single-path";
d62a17ae 1487
1488 _netlink_route_debug(cmd, p, nexthop, routedesc,
1489 family, zvrf);
1490 _netlink_route_build_singlepath(
1491 routedesc, bytelen, nexthop, &req.n,
1492 &req.r, sizeof req, cmd);
1493 nexthop_num++;
1494 break;
1495 }
1496 }
1497 if (setsrc && (cmd == RTM_NEWROUTE)) {
1498 if (family == AF_INET)
1499 addattr_l(&req.n, sizeof req, RTA_PREFSRC,
1500 &src.ipv4, bytelen);
1501 else if (family == AF_INET6)
1502 addattr_l(&req.n, sizeof req, RTA_PREFSRC,
1503 &src.ipv6, bytelen);
1504 }
1505 } else {
1506 char buf[NL_PKT_BUF_SIZE];
1507 struct rtattr *rta = (void *)buf;
1508 struct rtnexthop *rtnh;
1509 union g_addr *src1 = NULL;
1510
1511 rta->rta_type = RTA_MULTIPATH;
1512 rta->rta_len = RTA_LENGTH(0);
1513 rtnh = RTA_DATA(rta);
1514
1515 nexthop_num = 0;
7ee30f28 1516 for (ALL_NEXTHOPS(re->ng, nexthop)) {
d62a17ae 1517 if (nexthop_num >= multipath_num)
1518 break;
1519
1520 if (CHECK_FLAG(nexthop->flags,
1521 NEXTHOP_FLAG_RECURSIVE)) {
1522 /* This only works for IPv4 now */
1523 if (!setsrc) {
1524 if (family == AF_INET) {
1525 if (nexthop->rmap_src.ipv4
1526 .s_addr
1527 != 0) {
1528 src.ipv4 =
1529 nexthop->rmap_src
1530 .ipv4;
1531 setsrc = 1;
1532 } else if (nexthop->src.ipv4
1533 .s_addr
1534 != 0) {
1535 src.ipv4 =
1536 nexthop->src
1537 .ipv4;
1538 setsrc = 1;
1539 }
1540 } else if (family == AF_INET6) {
1541 if (!IN6_IS_ADDR_UNSPECIFIED(
1542 &nexthop->rmap_src
1543 .ipv6)) {
1544 src.ipv6 =
1545 nexthop->rmap_src
1546 .ipv6;
1547 setsrc = 1;
1548 } else if (
1549 !IN6_IS_ADDR_UNSPECIFIED(
1550 &nexthop->src
1551 .ipv6)) {
1552 src.ipv6 =
1553 nexthop->src
1554 .ipv6;
1555 setsrc = 1;
1556 }
1557 }
1558 }
1559 continue;
1560 }
1561
1562 if ((cmd == RTM_NEWROUTE
25b9cb0c 1563 && NEXTHOP_IS_ACTIVE(nexthop->flags))
d62a17ae 1564 || (cmd == RTM_DELROUTE
1565 && CHECK_FLAG(nexthop->flags,
1566 NEXTHOP_FLAG_FIB))) {
1567 routedesc = nexthop->rparent
8b1450b9
RW
1568 ? "recursive, multipath"
1569 : "multipath";
d62a17ae 1570 nexthop_num++;
1571
1572 _netlink_route_debug(cmd, p, nexthop, routedesc,
1573 family, zvrf);
1574 _netlink_route_build_multipath(
1575 routedesc, bytelen, nexthop, rta, rtnh,
1576 &req.r, &src1);
1577 rtnh = RTNH_NEXT(rtnh);
1578
1579 if (!setsrc && src1) {
1580 if (family == AF_INET)
1581 src.ipv4 = src1->ipv4;
1582 else if (family == AF_INET6)
1583 src.ipv6 = src1->ipv6;
1584
1585 setsrc = 1;
1586 }
1587 }
1588 }
1589 if (setsrc && (cmd == RTM_NEWROUTE)) {
1590 if (family == AF_INET)
1591 addattr_l(&req.n, sizeof req, RTA_PREFSRC,
1592 &src.ipv4, bytelen);
1593 else if (family == AF_INET6)
1594 addattr_l(&req.n, sizeof req, RTA_PREFSRC,
1595 &src.ipv6, bytelen);
1596 if (IS_ZEBRA_DEBUG_KERNEL)
1597 zlog_debug("Setting source");
1598 }
1599
1600 if (rta->rta_len > RTA_LENGTH(0))
1601 addattr_l(&req.n, NL_PKT_BUF_SIZE, RTA_MULTIPATH,
1602 RTA_DATA(rta), RTA_PAYLOAD(rta));
1603 }
718e3744 1604
d62a17ae 1605 /* If there is no useful nexthop then return. */
1606 if (nexthop_num == 0) {
1607 if (IS_ZEBRA_DEBUG_KERNEL)
1608 zlog_debug(
1609 "netlink_route_multipath(): No useful nexthop.");
1610 return 0;
1611 }
718e3744 1612
7021c425 1613skip:
718e3744 1614
d62a17ae 1615 /* Destination netlink address. */
1616 memset(&snl, 0, sizeof snl);
1617 snl.nl_family = AF_NETLINK;
718e3744 1618
d62a17ae 1619 /* Talk to netlink socket. */
1620 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
1621 0);
718e3744 1622}
1623
43b5cc5e 1624int kernel_get_ipmr_sg_stats(struct zebra_vrf *zvrf, void *in)
e3be0432 1625{
d62a17ae 1626 int suc = 0;
1627 struct mcast_route_data *mr = (struct mcast_route_data *)in;
bd8b9272
DS
1628 struct {
1629 struct nlmsghdr n;
1630 struct ndmsg ndm;
1631 char buf[256];
1632 } req;
e3be0432 1633
d62a17ae 1634 mroute = mr;
5895d33f 1635 struct zebra_ns *zns;
bd8b9272 1636
009f8ad5 1637 zns = zvrf->zns;
bd8b9272
DS
1638 memset(&req.n, 0, sizeof(req.n));
1639 memset(&req.ndm, 0, sizeof(req.ndm));
1640
1641 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
1642 req.n.nlmsg_flags = NLM_F_REQUEST;
1643 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
1644
1645 req.ndm.ndm_family = RTNL_FAMILY_IPMR;
1646 req.n.nlmsg_type = RTM_GETROUTE;
1647
1648 addattr_l(&req.n, sizeof(req), RTA_IIF, &mroute->ifindex, 4);
1649 addattr_l(&req.n, sizeof(req), RTA_OIF, &mroute->ifindex, 4);
1650 addattr_l(&req.n, sizeof(req), RTA_SRC, &mroute->sg.src.s_addr, 4);
1651 addattr_l(&req.n, sizeof(req), RTA_DST, &mroute->sg.grp.s_addr, 4);
1652 addattr_l(&req.n, sizeof(req), RTA_TABLE, &zvrf->table_id, 4);
e3be0432 1653
bd8b9272
DS
1654 suc = netlink_talk(netlink_route_change_read_multicast, &req.n,
1655 &zns->netlink_cmd, zns, 0);
e3be0432 1656
bd8b9272 1657 mroute = NULL;
d62a17ae 1658 return suc;
e3be0432
DS
1659}
1660
7d974ba3
DS
1661void kernel_route_rib(struct route_node *rn, struct prefix *p,
1662 struct prefix *src_p, struct route_entry *old,
1663 struct route_entry *new)
718e3744 1664{
0c555cc6
DS
1665 int ret = 0;
1666
0af35d90
RW
1667 assert(old || new);
1668
0c555cc6
DS
1669 if (new) {
1670 if (p->family == AF_INET)
1671 ret = netlink_route_multipath(RTM_NEWROUTE, p, src_p,
1672 new, (old) ? 1 : 0);
1673 else {
1674 /*
1675 * So v6 route replace semantics are not in
1676 * the kernel at this point as I understand it.
1677 * So let's do a delete than an add.
1678 * In the future once v6 route replace semantics
1679 * are in we can figure out what to do here to
1680 * allow working with old and new kernels.
1681 *
1682 * I'm also intentionally ignoring the failure case
1683 * of the route delete. If that happens yeah we're
1684 * screwed.
1685 */
1686 if (old)
996c9314
LB
1687 netlink_route_multipath(RTM_DELROUTE, p, src_p,
1688 old, 0);
1689 ret = netlink_route_multipath(RTM_NEWROUTE, p, src_p,
1690 new, 0);
0c555cc6 1691 }
7d974ba3 1692 kernel_route_rib_pass_fail(rn, p, new,
996c9314
LB
1693 (!ret) ? SOUTHBOUND_INSTALL_SUCCESS
1694 : SOUTHBOUND_INSTALL_FAILURE);
0c555cc6
DS
1695 return;
1696 }
718e3744 1697
0c555cc6
DS
1698 if (old) {
1699 ret = netlink_route_multipath(RTM_DELROUTE, p, src_p, old, 0);
e7fcb843 1700
7d974ba3 1701 kernel_route_rib_pass_fail(rn, p, old,
996c9314
LB
1702 (!ret) ? SOUTHBOUND_DELETE_SUCCESS
1703 : SOUTHBOUND_DELETE_FAILURE);
0c555cc6 1704 }
718e3744 1705}
1706
d62a17ae 1707int kernel_neigh_update(int add, int ifindex, uint32_t addr, char *lla,
5895d33f 1708 int llalen, ns_id_t ns_id)
6b8a5694 1709{
d62a17ae 1710 return netlink_neigh_update(add ? RTM_NEWNEIGH : RTM_DELNEIGH, ifindex,
5895d33f 1711 addr, lla, llalen, ns_id);
6b8a5694 1712}
718e3744 1713
13d60d35 1714/*
1715 * Add remote VTEP to the flood list for this VxLAN interface (VNI). This
1716 * is done by adding an FDB entry with a MAC of 00:00:00:00:00:00.
1717 */
d62a17ae 1718static int netlink_vxlan_flood_list_update(struct interface *ifp,
1719 struct in_addr *vtep_ip, int cmd)
13d60d35 1720{
5895d33f 1721 struct zebra_ns *zns;
d62a17ae 1722 struct {
1723 struct nlmsghdr n;
1724 struct ndmsg ndm;
1725 char buf[256];
1726 } req;
1727 u_char dst_mac[6] = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0};
009f8ad5 1728 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(ifp->vrf_id);
d62a17ae 1729
009f8ad5 1730 zns = zvrf->zns;
d62a17ae 1731 memset(&req.n, 0, sizeof(req.n));
1732 memset(&req.ndm, 0, sizeof(req.ndm));
1733
1734 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
1735 req.n.nlmsg_flags = NLM_F_REQUEST;
1736 if (cmd == RTM_NEWNEIGH)
1737 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_APPEND);
1738 req.n.nlmsg_type = cmd;
1739 req.ndm.ndm_family = PF_BRIDGE;
1740 req.ndm.ndm_state = NUD_NOARP | NUD_PERMANENT;
1741 req.ndm.ndm_flags |= NTF_SELF; // Handle by "self", not "master"
1742
1743
1744 addattr_l(&req.n, sizeof(req), NDA_LLADDR, &dst_mac, 6);
1745 req.ndm.ndm_ifindex = ifp->ifindex;
1746 addattr_l(&req.n, sizeof(req), NDA_DST, &vtep_ip->s_addr, 4);
1747
1748 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
1749 0);
13d60d35 1750}
1751
1752/*
d62a17ae 1753 * Add remote VTEP for this VxLAN interface (VNI). In Linux, this involves
1754 * adding
13d60d35 1755 * a "flood" MAC FDB entry.
1756 */
d62a17ae 1757int kernel_add_vtep(vni_t vni, struct interface *ifp, struct in_addr *vtep_ip)
13d60d35 1758{
d62a17ae 1759 if (IS_ZEBRA_DEBUG_VXLAN)
1760 zlog_debug("Install %s into flood list for VNI %u intf %s(%u)",
1761 inet_ntoa(*vtep_ip), vni, ifp->name, ifp->ifindex);
13d60d35 1762
d62a17ae 1763 return netlink_vxlan_flood_list_update(ifp, vtep_ip, RTM_NEWNEIGH);
13d60d35 1764}
1765
1766/*
1767 * Remove remote VTEP for this VxLAN interface (VNI). In Linux, this involves
1768 * deleting the "flood" MAC FDB entry.
1769 */
d62a17ae 1770int kernel_del_vtep(vni_t vni, struct interface *ifp, struct in_addr *vtep_ip)
13d60d35 1771{
d62a17ae 1772 if (IS_ZEBRA_DEBUG_VXLAN)
1773 zlog_debug(
1774 "Uninstall %s from flood list for VNI %u intf %s(%u)",
1775 inet_ntoa(*vtep_ip), vni, ifp->name, ifp->ifindex);
13d60d35 1776
d62a17ae 1777 return netlink_vxlan_flood_list_update(ifp, vtep_ip, RTM_DELNEIGH);
13d60d35 1778}
1779
2232a77c 1780#ifndef NDA_RTA
d62a17ae 1781#define NDA_RTA(r) \
1782 ((struct rtattr *)(((char *)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
2232a77c 1783#endif
1784
d62a17ae 1785static int netlink_macfdb_change(struct sockaddr_nl *snl, struct nlmsghdr *h,
5895d33f 1786 int len, ns_id_t ns_id)
2232a77c 1787{
d62a17ae 1788 struct ndmsg *ndm;
1789 struct interface *ifp;
1790 struct zebra_if *zif;
d62a17ae 1791 struct rtattr *tb[NDA_MAX + 1];
1792 struct interface *br_if;
1793 struct ethaddr mac;
1794 vlanid_t vid = 0;
1795 struct prefix vtep_ip;
1796 int vid_present = 0, dst_present = 0;
1797 char buf[ETHER_ADDR_STRLEN];
1798 char vid_buf[20];
1799 char dst_buf[30];
1800 u_char sticky = 0;
1801
1802 ndm = NLMSG_DATA(h);
1803
2853fed6 1804 /* We only process macfdb notifications if EVPN is enabled */
1805 if (!is_evpn_enabled())
1806 return 0;
1807
d62a17ae 1808 /* The interface should exist. */
5895d33f 1809 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
d62a17ae 1810 ndm->ndm_ifindex);
2853fed6 1811 if (!ifp || !ifp->info)
d62a17ae 1812 return 0;
1813
1814 /* The interface should be something we're interested in. */
1815 if (!IS_ZEBRA_IF_BRIDGE_SLAVE(ifp))
1816 return 0;
1817
1818 /* Drop "permanent" entries. */
1819 if (ndm->ndm_state & NUD_PERMANENT)
1820 return 0;
1821
1822 zif = (struct zebra_if *)ifp->info;
1823 if ((br_if = zif->brslave_info.br_if) == NULL) {
1824 zlog_warn("%s family %s IF %s(%u) brIF %u - no bridge master",
1825 nl_msg_type_to_str(h->nlmsg_type),
1826 nl_family_to_str(ndm->ndm_family), ifp->name,
1827 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex);
1828 return 0;
1829 }
1830
1831 /* Parse attributes and extract fields of interest. */
1832 memset(tb, 0, sizeof tb);
1833 netlink_parse_rtattr(tb, NDA_MAX, NDA_RTA(ndm), len);
1834
1835 if (!tb[NDA_LLADDR]) {
1836 zlog_warn("%s family %s IF %s(%u) brIF %u - no LLADDR",
1837 nl_msg_type_to_str(h->nlmsg_type),
1838 nl_family_to_str(ndm->ndm_family), ifp->name,
1839 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex);
1840 return 0;
1841 }
1842
ff8b7eb8 1843 if (RTA_PAYLOAD(tb[NDA_LLADDR]) != ETH_ALEN) {
d62a17ae 1844 zlog_warn(
df0b13cf 1845 "%s family %s IF %s(%u) brIF %u - LLADDR is not MAC, len %lu",
d62a17ae 1846 nl_msg_type_to_str(h->nlmsg_type),
1847 nl_family_to_str(ndm->ndm_family), ifp->name,
1848 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex,
df0b13cf 1849 (unsigned long)RTA_PAYLOAD(tb[NDA_LLADDR]));
d62a17ae 1850 return 0;
1851 }
1852
ff8b7eb8 1853 memcpy(&mac, RTA_DATA(tb[NDA_LLADDR]), ETH_ALEN);
d62a17ae 1854
1855 if ((NDA_VLAN <= NDA_MAX) && tb[NDA_VLAN]) {
1856 vid_present = 1;
1857 vid = *(u_int16_t *)RTA_DATA(tb[NDA_VLAN]);
1858 sprintf(vid_buf, " VLAN %u", vid);
1859 }
1860
1861 if (tb[NDA_DST]) {
1862 /* TODO: Only IPv4 supported now. */
1863 dst_present = 1;
1864 vtep_ip.family = AF_INET;
1865 vtep_ip.prefixlen = IPV4_MAX_BITLEN;
1866 memcpy(&(vtep_ip.u.prefix4.s_addr), RTA_DATA(tb[NDA_DST]),
1867 IPV4_MAX_BYTELEN);
1868 sprintf(dst_buf, " dst %s", inet_ntoa(vtep_ip.u.prefix4));
1869 }
1870
1871 sticky = (ndm->ndm_state & NUD_NOARP) ? 1 : 0;
1872
1873 if (IS_ZEBRA_DEBUG_KERNEL)
1874 zlog_debug("Rx %s family %s IF %s(%u)%s %sMAC %s%s",
1875 nl_msg_type_to_str(h->nlmsg_type),
1876 nl_family_to_str(ndm->ndm_family), ifp->name,
1877 ndm->ndm_ifindex, vid_present ? vid_buf : "",
1878 sticky ? "sticky " : "",
1879 prefix_mac2str(&mac, buf, sizeof(buf)),
1880 dst_present ? dst_buf : "");
1881
1882 if (filter_vlan && vid != filter_vlan)
1883 return 0;
1884
1885 /* If add or update, do accordingly if learnt on a "local" interface; if
1886 * the notification is over VxLAN, this has to be related to
1887 * multi-homing,
1888 * so perform an implicit delete of any local entry (if it exists).
1889 */
1890 if (h->nlmsg_type == RTM_NEWNEIGH) {
1891 /* Drop "permanent" entries. */
1892 if (ndm->ndm_state & NUD_PERMANENT)
1893 return 0;
1894
1895 if (IS_ZEBRA_IF_VXLAN(ifp))
1896 return zebra_vxlan_check_del_local_mac(ifp, br_if, &mac,
1897 vid);
1898
1899 return zebra_vxlan_local_mac_add_update(ifp, br_if, &mac, vid,
1900 sticky);
1901 }
1902
1903 /* This is a delete notification.
1904 * 1. For a MAC over VxLan, check if it needs to be refreshed(readded)
1905 * 2. For a MAC over "local" interface, delete the mac
1906 * Note: We will get notifications from both bridge driver and VxLAN
1907 * driver.
1908 * Ignore the notification from VxLan driver as it is also generated
1909 * when mac moves from remote to local.
1910 */
1911 if (dst_present)
1912 return 0;
1913
1914 if (IS_ZEBRA_IF_VXLAN(ifp))
1915 return zebra_vxlan_check_readd_remote_mac(ifp, br_if, &mac,
1916 vid);
1917
1918 return zebra_vxlan_local_mac_del(ifp, br_if, &mac, vid);
2232a77c 1919}
1920
d62a17ae 1921static int netlink_macfdb_table(struct sockaddr_nl *snl, struct nlmsghdr *h,
1922 ns_id_t ns_id, int startup)
2232a77c 1923{
d62a17ae 1924 int len;
1925 struct ndmsg *ndm;
2232a77c 1926
d62a17ae 1927 if (h->nlmsg_type != RTM_NEWNEIGH)
1928 return 0;
2232a77c 1929
d62a17ae 1930 /* Length validity. */
1931 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
1932 if (len < 0)
1933 return -1;
2232a77c 1934
d62a17ae 1935 /* We are interested only in AF_BRIDGE notifications. */
1936 ndm = NLMSG_DATA(h);
1937 if (ndm->ndm_family != AF_BRIDGE)
1938 return 0;
2232a77c 1939
5895d33f 1940 return netlink_macfdb_change(snl, h, len, ns_id);
2232a77c 1941}
1942
1943/* Request for MAC FDB information from the kernel */
d62a17ae 1944static int netlink_request_macs(struct zebra_ns *zns, int family, int type,
1945 ifindex_t master_ifindex)
2232a77c 1946{
d62a17ae 1947 struct {
1948 struct nlmsghdr n;
1949 struct ifinfomsg ifm;
1950 char buf[256];
1951 } req;
1952
1953 /* Form the request, specifying filter (rtattr) if needed. */
1954 memset(&req, 0, sizeof(req));
1955 req.n.nlmsg_type = type;
1956 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
1957 req.ifm.ifi_family = family;
1958 if (master_ifindex)
1959 addattr32(&req.n, sizeof(req), IFLA_MASTER, master_ifindex);
1960
1961 return netlink_request(&zns->netlink_cmd, &req.n);
2232a77c 1962}
1963
1964/*
1965 * MAC forwarding database read using netlink interface. This is invoked
1966 * at startup.
1967 */
d62a17ae 1968int netlink_macfdb_read(struct zebra_ns *zns)
2232a77c 1969{
d62a17ae 1970 int ret;
1971
1972 /* Get bridge FDB table. */
1973 ret = netlink_request_macs(zns, AF_BRIDGE, RTM_GETNEIGH, 0);
1974 if (ret < 0)
1975 return ret;
1976 /* We are reading entire table. */
1977 filter_vlan = 0;
1978 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd, zns,
1979 0, 1);
1980
1981 return ret;
2232a77c 1982}
1983
1984/*
1985 * MAC forwarding database read using netlink interface. This is for a
1986 * specific bridge and matching specific access VLAN (if VLAN-aware bridge).
1987 */
d62a17ae 1988int netlink_macfdb_read_for_bridge(struct zebra_ns *zns, struct interface *ifp,
1989 struct interface *br_if)
2232a77c 1990{
d62a17ae 1991 struct zebra_if *br_zif;
1992 struct zebra_if *zif;
1993 struct zebra_l2info_vxlan *vxl;
1994 int ret = 0;
1995
1996
1997 /* Save VLAN we're filtering on, if needed. */
1998 br_zif = (struct zebra_if *)br_if->info;
1999 zif = (struct zebra_if *)ifp->info;
2000 vxl = &zif->l2info.vxl;
2001 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(br_zif))
2002 filter_vlan = vxl->access_vlan;
2003
2004 /* Get bridge FDB table for specific bridge - we do the VLAN filtering.
2005 */
2006 ret = netlink_request_macs(zns, AF_BRIDGE, RTM_GETNEIGH,
2007 br_if->ifindex);
2008 if (ret < 0)
2009 return ret;
2010 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd, zns,
2011 0, 0);
2012
2013 /* Reset VLAN filter. */
2014 filter_vlan = 0;
2015 return ret;
2232a77c 2016}
2017
d62a17ae 2018static int netlink_macfdb_update(struct interface *ifp, vlanid_t vid,
2019 struct ethaddr *mac, struct in_addr vtep_ip,
2020 int local, int cmd, u_char sticky)
2232a77c 2021{
5895d33f 2022 struct zebra_ns *zns;
d62a17ae 2023 struct {
2024 struct nlmsghdr n;
2025 struct ndmsg ndm;
2026 char buf[256];
2027 } req;
2028 int dst_alen;
2029 struct zebra_if *zif;
2030 struct interface *br_if;
2031 struct zebra_if *br_zif;
2032 char buf[ETHER_ADDR_STRLEN];
2033 int vid_present = 0, dst_present = 0;
2034 char vid_buf[20];
2035 char dst_buf[30];
009f8ad5 2036 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(ifp->vrf_id);
d62a17ae 2037
009f8ad5 2038 zns = zvrf->zns;
d62a17ae 2039 zif = ifp->info;
2040 if ((br_if = zif->brslave_info.br_if) == NULL) {
2041 zlog_warn("MAC %s on IF %s(%u) - no mapping to bridge",
2042 (cmd == RTM_NEWNEIGH) ? "add" : "del", ifp->name,
2043 ifp->ifindex);
2044 return -1;
2045 }
2046
2047 memset(&req.n, 0, sizeof(req.n));
2048 memset(&req.ndm, 0, sizeof(req.ndm));
2049
2050 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2051 req.n.nlmsg_flags = NLM_F_REQUEST;
2052 if (cmd == RTM_NEWNEIGH)
2053 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_REPLACE);
2054 req.n.nlmsg_type = cmd;
2055 req.ndm.ndm_family = AF_BRIDGE;
2056 req.ndm.ndm_flags |= NTF_SELF | NTF_MASTER;
2057 req.ndm.ndm_state = NUD_REACHABLE;
2058
2059 if (sticky)
2060 req.ndm.ndm_state |= NUD_NOARP;
2061 else
2062 req.ndm.ndm_flags |= NTF_EXT_LEARNED;
2063
2064 addattr_l(&req.n, sizeof(req), NDA_LLADDR, mac, 6);
2065 req.ndm.ndm_ifindex = ifp->ifindex;
2066 if (!local) {
2067 dst_alen = 4; // TODO: hardcoded
2068 addattr_l(&req.n, sizeof(req), NDA_DST, &vtep_ip, dst_alen);
2069 dst_present = 1;
2070 sprintf(dst_buf, " dst %s", inet_ntoa(vtep_ip));
2071 }
2072 br_zif = (struct zebra_if *)br_if->info;
2073 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(br_zif) && vid > 0) {
2074 addattr16(&req.n, sizeof(req), NDA_VLAN, vid);
2075 vid_present = 1;
2076 sprintf(vid_buf, " VLAN %u", vid);
2077 }
2078 addattr32(&req.n, sizeof(req), NDA_MASTER, br_if->ifindex);
2079
2080 if (IS_ZEBRA_DEBUG_KERNEL)
2081 zlog_debug("Tx %s family %s IF %s(%u)%s %sMAC %s%s",
2082 nl_msg_type_to_str(cmd),
2083 nl_family_to_str(req.ndm.ndm_family), ifp->name,
2084 ifp->ifindex, vid_present ? vid_buf : "",
2085 sticky ? "sticky " : "",
2086 prefix_mac2str(mac, buf, sizeof(buf)),
2087 dst_present ? dst_buf : "");
2088
2089 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
2090 0);
2232a77c 2091}
2092
d62a17ae 2093#define NUD_VALID \
2094 (NUD_PERMANENT | NUD_NOARP | NUD_REACHABLE | NUD_PROBE | NUD_STALE \
2095 | NUD_DELAY)
2232a77c 2096
d62a17ae 2097static int netlink_ipneigh_change(struct sockaddr_nl *snl, struct nlmsghdr *h,
5895d33f 2098 int len, ns_id_t ns_id)
2232a77c 2099{
d62a17ae 2100 struct ndmsg *ndm;
2101 struct interface *ifp;
2102 struct zebra_if *zif;
d62a17ae 2103 struct rtattr *tb[NDA_MAX + 1];
2104 struct interface *link_if;
2105 struct ethaddr mac;
2106 struct ipaddr ip;
2107 char buf[ETHER_ADDR_STRLEN];
2108 char buf2[INET6_ADDRSTRLEN];
2109 int mac_present = 0;
2110 u_char ext_learned;
2111
2112 ndm = NLMSG_DATA(h);
2113
2853fed6 2114 /* We only process neigh notifications if EVPN is enabled */
2115 if (!is_evpn_enabled())
2116 return 0;
2117
d62a17ae 2118 /* The interface should exist. */
5895d33f 2119 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
d62a17ae 2120 ndm->ndm_ifindex);
2853fed6 2121 if (!ifp || !ifp->info)
d62a17ae 2122 return 0;
2123
2124 /* Drop "permanent" entries. */
2125 if (ndm->ndm_state & NUD_PERMANENT)
2126 return 0;
2127
2128 zif = (struct zebra_if *)ifp->info;
2129 /* The neighbor is present on an SVI. From this, we locate the
2130 * underlying
2131 * bridge because we're only interested in neighbors on a VxLAN bridge.
2132 * The bridge is located based on the nature of the SVI:
2133 * (a) In the case of a VLAN-aware bridge, the SVI is a L3 VLAN
2134 * interface
2135 * and is linked to the bridge
2136 * (b) In the case of a VLAN-unaware bridge, the SVI is the bridge
2137 * inteface
2138 * itself
2139 */
2140 if (IS_ZEBRA_IF_VLAN(ifp)) {
5895d33f 2141 link_if = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
71349e03 2142 zif->link_ifindex);
d62a17ae 2143 if (!link_if)
2144 return 0;
2145 } else if (IS_ZEBRA_IF_BRIDGE(ifp))
2146 link_if = ifp;
2147 else
2148 return 0;
2149
2150 /* Parse attributes and extract fields of interest. */
2151 memset(tb, 0, sizeof tb);
2152 netlink_parse_rtattr(tb, NDA_MAX, NDA_RTA(ndm), len);
2153
2154 if (!tb[NDA_DST]) {
2155 zlog_warn("%s family %s IF %s(%u) - no DST",
2156 nl_msg_type_to_str(h->nlmsg_type),
2157 nl_family_to_str(ndm->ndm_family), ifp->name,
2158 ndm->ndm_ifindex);
2159 return 0;
2160 }
2161 memset(&mac, 0, sizeof(struct ethaddr));
2162 memset(&ip, 0, sizeof(struct ipaddr));
2163 ip.ipa_type = (ndm->ndm_family == AF_INET) ? IPADDR_V4 : IPADDR_V6;
2164 memcpy(&ip.ip.addr, RTA_DATA(tb[NDA_DST]), RTA_PAYLOAD(tb[NDA_DST]));
2165
2166 if (h->nlmsg_type == RTM_NEWNEIGH) {
2167 if (tb[NDA_LLADDR]) {
ff8b7eb8 2168 if (RTA_PAYLOAD(tb[NDA_LLADDR]) != ETH_ALEN) {
d62a17ae 2169 zlog_warn(
df0b13cf 2170 "%s family %s IF %s(%u) - LLADDR is not MAC, len %lu",
d62a17ae 2171 nl_msg_type_to_str(h->nlmsg_type),
2172 nl_family_to_str(ndm->ndm_family),
2173 ifp->name, ndm->ndm_ifindex,
996c9314
LB
2174 (unsigned long)RTA_PAYLOAD(
2175 tb[NDA_LLADDR]));
d62a17ae 2176 return 0;
2177 }
2178
2179 mac_present = 1;
ff8b7eb8 2180 memcpy(&mac, RTA_DATA(tb[NDA_LLADDR]), ETH_ALEN);
d62a17ae 2181 }
2182
2183 ext_learned = (ndm->ndm_flags & NTF_EXT_LEARNED) ? 1 : 0;
2184
2185 if (IS_ZEBRA_DEBUG_KERNEL)
2186 zlog_debug(
2187 "Rx %s family %s IF %s(%u) IP %s MAC %s state 0x%x flags 0x%x",
2188 nl_msg_type_to_str(h->nlmsg_type),
2189 nl_family_to_str(ndm->ndm_family), ifp->name,
2190 ndm->ndm_ifindex,
2191 ipaddr2str(&ip, buf2, sizeof(buf2)),
2192 mac_present
2193 ? prefix_mac2str(&mac, buf, sizeof(buf))
2194 : "",
2195 ndm->ndm_state, ndm->ndm_flags);
2196
2197 /* If the neighbor state is valid for use, process as an add or
2198 * update
2199 * else process as a delete. Note that the delete handling may
2200 * result
2201 * in re-adding the neighbor if it is a valid "remote" neighbor.
2202 */
2203 if (ndm->ndm_state & NUD_VALID)
2204 return zebra_vxlan_local_neigh_add_update(
2205 ifp, link_if, &ip, &mac, ndm->ndm_state,
2206 ext_learned);
2207
2208 return zebra_vxlan_local_neigh_del(ifp, link_if, &ip);
2209 }
2210
2211 if (IS_ZEBRA_DEBUG_KERNEL)
2212 zlog_debug("Rx %s family %s IF %s(%u) IP %s",
2213 nl_msg_type_to_str(h->nlmsg_type),
2214 nl_family_to_str(ndm->ndm_family), ifp->name,
2215 ndm->ndm_ifindex,
2216 ipaddr2str(&ip, buf2, sizeof(buf2)));
2217
2218 /* Process the delete - it may result in re-adding the neighbor if it is
2219 * a valid "remote" neighbor.
2220 */
2221 return zebra_vxlan_local_neigh_del(ifp, link_if, &ip);
2232a77c 2222}
2223
d62a17ae 2224static int netlink_neigh_table(struct sockaddr_nl *snl, struct nlmsghdr *h,
2225 ns_id_t ns_id, int startup)
2232a77c 2226{
d62a17ae 2227 int len;
2228 struct ndmsg *ndm;
2232a77c 2229
d62a17ae 2230 if (h->nlmsg_type != RTM_NEWNEIGH)
2231 return 0;
2232a77c 2232
d62a17ae 2233 /* Length validity. */
2234 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
2235 if (len < 0)
2236 return -1;
2232a77c 2237
d62a17ae 2238 /* We are interested only in AF_INET or AF_INET6 notifications. */
2239 ndm = NLMSG_DATA(h);
2240 if (ndm->ndm_family != AF_INET && ndm->ndm_family != AF_INET6)
2241 return 0;
2232a77c 2242
d62a17ae 2243 return netlink_neigh_change(snl, h, len);
2232a77c 2244}
2245
2246/* Request for IP neighbor information from the kernel */
d62a17ae 2247static int netlink_request_neigh(struct zebra_ns *zns, int family, int type,
2248 ifindex_t ifindex)
2232a77c 2249{
d62a17ae 2250 struct {
2251 struct nlmsghdr n;
2252 struct ndmsg ndm;
2253 char buf[256];
2254 } req;
2255
2256 /* Form the request, specifying filter (rtattr) if needed. */
2257 memset(&req, 0, sizeof(req));
2258 req.n.nlmsg_type = type;
2259 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2260 req.ndm.ndm_family = family;
2261 if (ifindex)
2262 addattr32(&req.n, sizeof(req), NDA_IFINDEX, ifindex);
2263
2264 return netlink_request(&zns->netlink_cmd, &req.n);
2232a77c 2265}
2266
2267/*
2268 * IP Neighbor table read using netlink interface. This is invoked
2269 * at startup.
2270 */
d62a17ae 2271int netlink_neigh_read(struct zebra_ns *zns)
2232a77c 2272{
d62a17ae 2273 int ret;
2232a77c 2274
d62a17ae 2275 /* Get IP neighbor table. */
2276 ret = netlink_request_neigh(zns, AF_UNSPEC, RTM_GETNEIGH, 0);
2277 if (ret < 0)
2278 return ret;
2279 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd, zns, 0,
2280 1);
2232a77c 2281
d62a17ae 2282 return ret;
2232a77c 2283}
2284
2285/*
2286 * IP Neighbor table read using netlink interface. This is for a specific
2287 * VLAN device.
2288 */
d62a17ae 2289int netlink_neigh_read_for_vlan(struct zebra_ns *zns, struct interface *vlan_if)
2232a77c 2290{
d62a17ae 2291 int ret = 0;
2232a77c 2292
d62a17ae 2293 ret = netlink_request_neigh(zns, AF_UNSPEC, RTM_GETNEIGH,
2294 vlan_if->ifindex);
2295 if (ret < 0)
2296 return ret;
2297 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd, zns, 0,
2298 0);
2232a77c 2299
d62a17ae 2300 return ret;
2232a77c 2301}
2302
d62a17ae 2303int netlink_neigh_change(struct sockaddr_nl *snl, struct nlmsghdr *h,
2304 ns_id_t ns_id)
2232a77c 2305{
d62a17ae 2306 int len;
2307 struct ndmsg *ndm;
2232a77c 2308
d62a17ae 2309 if (!(h->nlmsg_type == RTM_NEWNEIGH || h->nlmsg_type == RTM_DELNEIGH))
2310 return 0;
2232a77c 2311
d62a17ae 2312 /* Length validity. */
2313 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
2314 if (len < 0)
2315 return -1;
2232a77c 2316
d62a17ae 2317 /* Is this a notification for the MAC FDB or IP neighbor table? */
2318 ndm = NLMSG_DATA(h);
2319 if (ndm->ndm_family == AF_BRIDGE)
5895d33f 2320 return netlink_macfdb_change(snl, h, len, ns_id);
2232a77c 2321
d62a17ae 2322 if (ndm->ndm_type != RTN_UNICAST)
2323 return 0;
2232a77c 2324
d62a17ae 2325 if (ndm->ndm_family == AF_INET || ndm->ndm_family == AF_INET6)
5895d33f 2326 return netlink_ipneigh_change(snl, h, len, ns_id);
2232a77c 2327
d62a17ae 2328 return 0;
2232a77c 2329}
2330
d62a17ae 2331static int netlink_neigh_update2(struct interface *ifp, struct ipaddr *ip,
2332 struct ethaddr *mac, u_int32_t flags, int cmd)
2232a77c 2333{
d62a17ae 2334 struct {
2335 struct nlmsghdr n;
2336 struct ndmsg ndm;
2337 char buf[256];
2338 } req;
2339 int ipa_len;
2340
5895d33f 2341 struct zebra_ns *zns;
d62a17ae 2342 char buf[INET6_ADDRSTRLEN];
2343 char buf2[ETHER_ADDR_STRLEN];
009f8ad5 2344 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(ifp->vrf_id);
d62a17ae 2345
009f8ad5 2346 zns = zvrf->zns;
d62a17ae 2347 memset(&req.n, 0, sizeof(req.n));
2348 memset(&req.ndm, 0, sizeof(req.ndm));
2349
2350 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2351 req.n.nlmsg_flags = NLM_F_REQUEST;
2352 if (cmd == RTM_NEWNEIGH)
2353 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_REPLACE);
2354 req.n.nlmsg_type = cmd; // RTM_NEWNEIGH or RTM_DELNEIGH
2355 req.ndm.ndm_family = IS_IPADDR_V4(ip) ? AF_INET : AF_INET6;
2356 req.ndm.ndm_state = flags;
2357 req.ndm.ndm_ifindex = ifp->ifindex;
2358 req.ndm.ndm_type = RTN_UNICAST;
2359 req.ndm.ndm_flags = NTF_EXT_LEARNED;
2360
2361
2362 ipa_len = IS_IPADDR_V4(ip) ? IPV4_MAX_BYTELEN : IPV6_MAX_BYTELEN;
2363 addattr_l(&req.n, sizeof(req), NDA_DST, &ip->ip.addr, ipa_len);
2364 if (mac)
2365 addattr_l(&req.n, sizeof(req), NDA_LLADDR, mac, 6);
2366
2367 if (IS_ZEBRA_DEBUG_KERNEL)
2368 zlog_debug("Tx %s family %s IF %s(%u) Neigh %s MAC %s",
2369 nl_msg_type_to_str(cmd),
2370 nl_family_to_str(req.ndm.ndm_family), ifp->name,
2371 ifp->ifindex, ipaddr2str(ip, buf, sizeof(buf)),
2372 mac ? prefix_mac2str(mac, buf2, sizeof(buf2))
2373 : "null");
2374
2375 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
2376 0);
2232a77c 2377}
2378
d62a17ae 2379int kernel_add_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac,
2380 struct in_addr vtep_ip, u_char sticky)
2232a77c 2381{
d62a17ae 2382 return netlink_macfdb_update(ifp, vid, mac, vtep_ip, 0, RTM_NEWNEIGH,
2383 sticky);
2232a77c 2384}
2385
d62a17ae 2386int kernel_del_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac,
2387 struct in_addr vtep_ip, int local)
2232a77c 2388{
d62a17ae 2389 return netlink_macfdb_update(ifp, vid, mac, vtep_ip, local,
2390 RTM_DELNEIGH, 0);
2232a77c 2391}
2392
d62a17ae 2393int kernel_add_neigh(struct interface *ifp, struct ipaddr *ip,
2394 struct ethaddr *mac)
2232a77c 2395{
d62a17ae 2396 return netlink_neigh_update2(ifp, ip, mac, NUD_REACHABLE, RTM_NEWNEIGH);
2232a77c 2397}
2398
d62a17ae 2399int kernel_del_neigh(struct interface *ifp, struct ipaddr *ip)
2232a77c 2400{
d62a17ae 2401 return netlink_neigh_update2(ifp, ip, NULL, 0, RTM_DELNEIGH);
2232a77c 2402}
2403
40c7bdb0 2404/*
2405 * MPLS label forwarding table change via netlink interface.
2406 */
d62a17ae 2407int netlink_mpls_multipath(int cmd, zebra_lsp_t *lsp)
40c7bdb0 2408{
d62a17ae 2409 mpls_lse_t lse;
2410 zebra_nhlfe_t *nhlfe;
2411 struct nexthop *nexthop = NULL;
2412 unsigned int nexthop_num;
2413 const char *routedesc;
2414 struct zebra_ns *zns = zebra_ns_lookup(NS_DEFAULT);
805444ce 2415 int route_type;
d62a17ae 2416
2417 struct {
2418 struct nlmsghdr n;
2419 struct rtmsg r;
2420 char buf[NL_PKT_BUF_SIZE];
2421 } req;
2422
2423 memset(&req, 0, sizeof req - NL_PKT_BUF_SIZE);
2424
d62a17ae 2425 /*
2426 * Count # nexthops so we can decide whether to use singlepath
2427 * or multipath case.
2428 */
2429 nexthop_num = 0;
2430 for (nhlfe = lsp->nhlfe_list; nhlfe; nhlfe = nhlfe->next) {
2431 nexthop = nhlfe->nexthop;
2432 if (!nexthop)
2433 continue;
2434 if (cmd == RTM_NEWROUTE) {
2435 /* Count all selected NHLFEs */
2436 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2437 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE))
2438 nexthop_num++;
2439 } else /* DEL */
2440 {
2441 /* Count all installed NHLFEs */
2442 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_INSTALLED)
2443 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB))
2444 nexthop_num++;
2445 }
2446 }
2447
8dc8a4b6 2448 if ((nexthop_num == 0) || (!lsp->best_nhlfe && (cmd != RTM_DELROUTE)))
d62a17ae 2449 return 0;
2450
2451 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
2452 req.n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
2453 req.n.nlmsg_type = cmd;
2454 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
2455
2456 req.r.rtm_family = AF_MPLS;
2457 req.r.rtm_table = RT_TABLE_MAIN;
2458 req.r.rtm_dst_len = MPLS_LABEL_LEN_BITS;
d62a17ae 2459 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
2460 req.r.rtm_type = RTN_UNICAST;
2461
8dc8a4b6 2462 if (cmd == RTM_NEWROUTE) {
d62a17ae 2463 /* We do a replace to handle update. */
2464 req.n.nlmsg_flags |= NLM_F_REPLACE;
2465
8dc8a4b6
DS
2466 /* set the protocol value if installing */
2467 route_type = re_type_from_lsp_type(lsp->best_nhlfe->type);
2468 req.r.rtm_protocol = zebra2proto(route_type);
2469 }
2470
d62a17ae 2471 /* Fill destination */
2472 lse = mpls_lse_encode(lsp->ile.in_label, 0, 0, 1);
2473 addattr_l(&req.n, sizeof req, RTA_DST, &lse, sizeof(mpls_lse_t));
2474
2475 /* Fill nexthops (paths) based on single-path or multipath. The paths
2476 * chosen depend on the operation.
2477 */
2478 if (nexthop_num == 1 || multipath_num == 1) {
8b1450b9 2479 routedesc = "single-path";
d62a17ae 2480 _netlink_mpls_debug(cmd, lsp->ile.in_label, routedesc);
2481
2482 nexthop_num = 0;
2483 for (nhlfe = lsp->nhlfe_list; nhlfe; nhlfe = nhlfe->next) {
2484 nexthop = nhlfe->nexthop;
2485 if (!nexthop)
2486 continue;
2487
2488 if ((cmd == RTM_NEWROUTE
2489 && (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2490 && CHECK_FLAG(nexthop->flags,
2491 NEXTHOP_FLAG_ACTIVE)))
2492 || (cmd == RTM_DELROUTE
2493 && (CHECK_FLAG(nhlfe->flags,
2494 NHLFE_FLAG_INSTALLED)
2495 && CHECK_FLAG(nexthop->flags,
2496 NEXTHOP_FLAG_FIB)))) {
2497 /* Add the gateway */
2498 _netlink_mpls_build_singlepath(routedesc, nhlfe,
2499 &req.n, &req.r,
2500 sizeof req, cmd);
d62a17ae 2501 nexthop_num++;
2502 break;
2503 }
2504 }
2505 } else /* Multipath case */
2506 {
2507 char buf[NL_PKT_BUF_SIZE];
2508 struct rtattr *rta = (void *)buf;
2509 struct rtnexthop *rtnh;
2510 union g_addr *src1 = NULL;
2511
2512 rta->rta_type = RTA_MULTIPATH;
2513 rta->rta_len = RTA_LENGTH(0);
2514 rtnh = RTA_DATA(rta);
2515
8b1450b9 2516 routedesc = "multipath";
d62a17ae 2517 _netlink_mpls_debug(cmd, lsp->ile.in_label, routedesc);
2518
2519 nexthop_num = 0;
2520 for (nhlfe = lsp->nhlfe_list; nhlfe; nhlfe = nhlfe->next) {
2521 nexthop = nhlfe->nexthop;
2522 if (!nexthop)
2523 continue;
2524
2525 if (nexthop_num >= multipath_num)
2526 break;
2527
2528 if ((cmd == RTM_NEWROUTE
2529 && (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2530 && CHECK_FLAG(nexthop->flags,
2531 NEXTHOP_FLAG_ACTIVE)))
2532 || (cmd == RTM_DELROUTE
2533 && (CHECK_FLAG(nhlfe->flags,
2534 NHLFE_FLAG_INSTALLED)
2535 && CHECK_FLAG(nexthop->flags,
2536 NEXTHOP_FLAG_FIB)))) {
2537 nexthop_num++;
2538
2539 /* Build the multipath */
2540 _netlink_mpls_build_multipath(routedesc, nhlfe,
2541 rta, rtnh, &req.r,
2542 &src1);
2543 rtnh = RTNH_NEXT(rtnh);
d62a17ae 2544 }
2545 }
2546
2547 /* Add the multipath */
2548 if (rta->rta_len > RTA_LENGTH(0))
2549 addattr_l(&req.n, NL_PKT_BUF_SIZE, RTA_MULTIPATH,
2550 RTA_DATA(rta), RTA_PAYLOAD(rta));
2551 }
2552
2553 /* Talk to netlink socket. */
2554 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
2555 0);
40c7bdb0 2556}
ddfeb486 2557#endif /* HAVE_NETLINK */