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