]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rt_netlink.c
zebra: dplane pseudowires including nexthop info
[mirror_frr.git] / zebra / rt_netlink.c
CommitLineData
718e3744 1/* Kernel routing table updates using netlink over GNU/Linux system.
2 * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#include <zebra.h>
ddfeb486
DL
22
23#ifdef HAVE_NETLINK
24
8ccc7e80 25#include <net/if_arp.h>
ba777396
RW
26#include <linux/lwtunnel.h>
27#include <linux/mpls_iptunnel.h>
28#include <linux/neighbour.h>
29#include <linux/rtnetlink.h>
718e3744 30
31/* Hack for GNU libc version 2. */
32#ifndef MSG_TRUNC
33#define MSG_TRUNC 0x20
34#endif /* MSG_TRUNC */
35
36#include "linklist.h"
37#include "if.h"
38#include "log.h"
39#include "prefix.h"
40#include "connected.h"
41#include "table.h"
26e2ae36 42#include "memory.h"
4a1ab8e4 43#include "zebra_memory.h"
718e3744 44#include "rib.h"
e04ab74d 45#include "thread.h"
edd7c245 46#include "privs.h"
fb018d25 47#include "nexthop.h"
78104b9b 48#include "vrf.h"
5e6a74d8 49#include "vty.h"
40c7bdb0 50#include "mpls.h"
13d60d35 51#include "vxlan.h"
718e3744 52
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,
930 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,
957 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,
993 struct nexthop *nexthop,
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
RW
1011 assert(nexthop);
1012 for (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,
1178 struct nexthop *nexthop,
1179 struct rtattr *rta,
1180 struct rtnexthop *rtnh,
1181 struct rtmsg *rtmsg,
1182 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
RW
1202 assert(nexthop);
1203 for (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,
1345 zebra_nhlfe_t *nhlfe,
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
d62a17ae 1361_netlink_mpls_build_multipath(const char *routedesc, zebra_nhlfe_t *nhlfe,
1362 struct rtattr *rta, struct rtnexthop *rtnh,
1363 struct rtmsg *rtmsg, 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;
1658 union g_addr *src1 = NULL;
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);
2853fed6 1968 if (!ifp || !ifp->info)
d62a17ae 1969 return 0;
1970
1971 /* The interface should be something we're interested in. */
1972 if (!IS_ZEBRA_IF_BRIDGE_SLAVE(ifp))
1973 return 0;
1974
1975 /* Drop "permanent" entries. */
1976 if (ndm->ndm_state & NUD_PERMANENT)
1977 return 0;
1978
1979 zif = (struct zebra_if *)ifp->info;
1980 if ((br_if = zif->brslave_info.br_if) == NULL) {
9df414fe
QY
1981 zlog_debug("%s family %s IF %s(%u) brIF %u - no bridge master",
1982 nl_msg_type_to_str(h->nlmsg_type),
1983 nl_family_to_str(ndm->ndm_family), ifp->name,
1984 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex);
d62a17ae 1985 return 0;
1986 }
1987
1988 /* Parse attributes and extract fields of interest. */
1989 memset(tb, 0, sizeof tb);
1990 netlink_parse_rtattr(tb, NDA_MAX, NDA_RTA(ndm), len);
1991
1992 if (!tb[NDA_LLADDR]) {
9df414fe
QY
1993 zlog_debug("%s family %s IF %s(%u) brIF %u - no LLADDR",
1994 nl_msg_type_to_str(h->nlmsg_type),
1995 nl_family_to_str(ndm->ndm_family), ifp->name,
1996 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex);
d62a17ae 1997 return 0;
1998 }
1999
ff8b7eb8 2000 if (RTA_PAYLOAD(tb[NDA_LLADDR]) != ETH_ALEN) {
9df414fe 2001 zlog_debug(
df0b13cf 2002 "%s family %s IF %s(%u) brIF %u - LLADDR is not MAC, len %lu",
d62a17ae 2003 nl_msg_type_to_str(h->nlmsg_type),
2004 nl_family_to_str(ndm->ndm_family), ifp->name,
2005 ndm->ndm_ifindex, zif->brslave_info.bridge_ifindex,
df0b13cf 2006 (unsigned long)RTA_PAYLOAD(tb[NDA_LLADDR]));
d62a17ae 2007 return 0;
2008 }
2009
ff8b7eb8 2010 memcpy(&mac, RTA_DATA(tb[NDA_LLADDR]), ETH_ALEN);
d62a17ae 2011
2012 if ((NDA_VLAN <= NDA_MAX) && tb[NDA_VLAN]) {
2013 vid_present = 1;
d7c0a89a 2014 vid = *(uint16_t *)RTA_DATA(tb[NDA_VLAN]);
d62a17ae 2015 sprintf(vid_buf, " VLAN %u", vid);
2016 }
2017
2018 if (tb[NDA_DST]) {
2019 /* TODO: Only IPv4 supported now. */
2020 dst_present = 1;
2021 vtep_ip.family = AF_INET;
2022 vtep_ip.prefixlen = IPV4_MAX_BITLEN;
2023 memcpy(&(vtep_ip.u.prefix4.s_addr), RTA_DATA(tb[NDA_DST]),
2024 IPV4_MAX_BYTELEN);
2025 sprintf(dst_buf, " dst %s", inet_ntoa(vtep_ip.u.prefix4));
2026 }
2027
a37f4598 2028 sticky = !!(ndm->ndm_state & NUD_NOARP);
d62a17ae 2029
2030 if (IS_ZEBRA_DEBUG_KERNEL)
2031 zlog_debug("Rx %s family %s IF %s(%u)%s %sMAC %s%s",
2032 nl_msg_type_to_str(h->nlmsg_type),
2033 nl_family_to_str(ndm->ndm_family), ifp->name,
2034 ndm->ndm_ifindex, vid_present ? vid_buf : "",
2035 sticky ? "sticky " : "",
2036 prefix_mac2str(&mac, buf, sizeof(buf)),
2037 dst_present ? dst_buf : "");
2038
2039 if (filter_vlan && vid != filter_vlan)
2040 return 0;
2041
2042 /* If add or update, do accordingly if learnt on a "local" interface; if
2043 * the notification is over VxLAN, this has to be related to
2044 * multi-homing,
2045 * so perform an implicit delete of any local entry (if it exists).
2046 */
2047 if (h->nlmsg_type == RTM_NEWNEIGH) {
2048 /* Drop "permanent" entries. */
2049 if (ndm->ndm_state & NUD_PERMANENT)
2050 return 0;
2051
2052 if (IS_ZEBRA_IF_VXLAN(ifp))
2053 return zebra_vxlan_check_del_local_mac(ifp, br_if, &mac,
2054 vid);
2055
2056 return zebra_vxlan_local_mac_add_update(ifp, br_if, &mac, vid,
2057 sticky);
2058 }
2059
2060 /* This is a delete notification.
2061 * 1. For a MAC over VxLan, check if it needs to be refreshed(readded)
2062 * 2. For a MAC over "local" interface, delete the mac
2063 * Note: We will get notifications from both bridge driver and VxLAN
2064 * driver.
2065 * Ignore the notification from VxLan driver as it is also generated
2066 * when mac moves from remote to local.
2067 */
2068 if (dst_present)
2069 return 0;
2070
2071 if (IS_ZEBRA_IF_VXLAN(ifp))
2072 return zebra_vxlan_check_readd_remote_mac(ifp, br_if, &mac,
2073 vid);
2074
2075 return zebra_vxlan_local_mac_del(ifp, br_if, &mac, vid);
2232a77c 2076}
2077
2414abd3 2078static int netlink_macfdb_table(struct nlmsghdr *h, ns_id_t ns_id, int startup)
2232a77c 2079{
d62a17ae 2080 int len;
2081 struct ndmsg *ndm;
2232a77c 2082
d62a17ae 2083 if (h->nlmsg_type != RTM_NEWNEIGH)
2084 return 0;
2232a77c 2085
d62a17ae 2086 /* Length validity. */
2087 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
2088 if (len < 0)
2089 return -1;
2232a77c 2090
d62a17ae 2091 /* We are interested only in AF_BRIDGE notifications. */
2092 ndm = NLMSG_DATA(h);
2093 if (ndm->ndm_family != AF_BRIDGE)
2094 return 0;
2232a77c 2095
2414abd3 2096 return netlink_macfdb_change(h, len, ns_id);
2232a77c 2097}
2098
2099/* Request for MAC FDB information from the kernel */
85a75f1e
MS
2100static int netlink_request_macs(struct nlsock *netlink_cmd, int family,
2101 int type, ifindex_t master_ifindex)
2232a77c 2102{
d62a17ae 2103 struct {
2104 struct nlmsghdr n;
2105 struct ifinfomsg ifm;
2106 char buf[256];
2107 } req;
2108
2109 /* Form the request, specifying filter (rtattr) if needed. */
2110 memset(&req, 0, sizeof(req));
2111 req.n.nlmsg_type = type;
718f9b0f 2112 req.n.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
d62a17ae 2113 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
2114 req.ifm.ifi_family = family;
2115 if (master_ifindex)
2116 addattr32(&req.n, sizeof(req), IFLA_MASTER, master_ifindex);
2117
85a75f1e 2118 return netlink_request(netlink_cmd, &req.n);
2232a77c 2119}
2120
2121/*
2122 * MAC forwarding database read using netlink interface. This is invoked
2123 * at startup.
2124 */
d62a17ae 2125int netlink_macfdb_read(struct zebra_ns *zns)
2232a77c 2126{
d62a17ae 2127 int ret;
85a75f1e
MS
2128 struct zebra_dplane_info dp_info;
2129
2130 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
d62a17ae 2131
2132 /* Get bridge FDB table. */
85a75f1e
MS
2133 ret = netlink_request_macs(&zns->netlink_cmd, AF_BRIDGE, RTM_GETNEIGH,
2134 0);
d62a17ae 2135 if (ret < 0)
2136 return ret;
2137 /* We are reading entire table. */
2138 filter_vlan = 0;
85a75f1e
MS
2139 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd,
2140 &dp_info, 0, 1);
d62a17ae 2141
2142 return ret;
2232a77c 2143}
2144
2145/*
2146 * MAC forwarding database read using netlink interface. This is for a
2147 * specific bridge and matching specific access VLAN (if VLAN-aware bridge).
2148 */
d62a17ae 2149int netlink_macfdb_read_for_bridge(struct zebra_ns *zns, struct interface *ifp,
2150 struct interface *br_if)
2232a77c 2151{
d62a17ae 2152 struct zebra_if *br_zif;
2153 struct zebra_if *zif;
2154 struct zebra_l2info_vxlan *vxl;
85a75f1e 2155 struct zebra_dplane_info dp_info;
d62a17ae 2156 int ret = 0;
2157
85a75f1e 2158 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
d62a17ae 2159
2160 /* Save VLAN we're filtering on, if needed. */
2161 br_zif = (struct zebra_if *)br_if->info;
2162 zif = (struct zebra_if *)ifp->info;
2163 vxl = &zif->l2info.vxl;
2164 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(br_zif))
2165 filter_vlan = vxl->access_vlan;
2166
2167 /* Get bridge FDB table for specific bridge - we do the VLAN filtering.
2168 */
85a75f1e 2169 ret = netlink_request_macs(&zns->netlink_cmd, AF_BRIDGE, RTM_GETNEIGH,
d62a17ae 2170 br_if->ifindex);
2171 if (ret < 0)
2172 return ret;
85a75f1e
MS
2173 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd,
2174 &dp_info, 0, 0);
d62a17ae 2175
2176 /* Reset VLAN filter. */
2177 filter_vlan = 0;
2178 return ret;
2232a77c 2179}
2180
67fb9374
CS
2181
2182/* Request for MAC FDB for a specific MAC address in VLAN from the kernel */
2183static int netlink_request_specific_mac_in_bridge(struct zebra_ns *zns,
2184 int family,
2185 int type,
2186 struct interface *br_if,
2187 struct ethaddr *mac,
2188 vlanid_t vid)
2189{
2190 struct {
2191 struct nlmsghdr n;
2192 struct ndmsg ndm;
2193 char buf[256];
2194 } req;
2195 struct zebra_if *br_zif;
2196 char buf[ETHER_ADDR_STRLEN];
2197
2198 memset(&req, 0, sizeof(req));
2199 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2200 req.n.nlmsg_type = type; /* RTM_GETNEIGH */
2201 req.n.nlmsg_flags = NLM_F_REQUEST;
2202 req.ndm.ndm_family = family; /* AF_BRIDGE */
2203 /* req.ndm.ndm_state = NUD_REACHABLE; */
2204
2205 addattr_l(&req.n, sizeof(req), NDA_LLADDR, mac, 6);
2206
2207 br_zif = (struct zebra_if *)br_if->info;
2208 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(br_zif) && vid > 0)
2209 addattr16(&req.n, sizeof(req), NDA_VLAN, vid);
2210
2211 addattr32(&req.n, sizeof(req), NDA_MASTER, br_if->ifindex);
2212
2213 if (IS_ZEBRA_DEBUG_KERNEL)
2214 zlog_debug("%s: Tx family %s IF %s(%u) MAC %s vid %u",
2215 __PRETTY_FUNCTION__,
2216 nl_family_to_str(req.ndm.ndm_family), br_if->name,
2217 br_if->ifindex,
2218 prefix_mac2str(mac, buf, sizeof(buf)), vid);
2219
2220 return netlink_request(&zns->netlink_cmd, &req.n);
2221}
2222
2223int netlink_macfdb_read_specific_mac(struct zebra_ns *zns,
2224 struct interface *br_if,
2225 struct ethaddr *mac, vlanid_t vid)
2226{
2227 int ret = 0;
2228 struct zebra_dplane_info dp_info;
2229
2230 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
2231
2232 /* Get bridge FDB table for specific bridge - we do the VLAN filtering.
2233 */
2234 ret = netlink_request_specific_mac_in_bridge(zns, AF_BRIDGE,
2235 RTM_GETNEIGH,
2236 br_if, mac, vid);
2237 if (ret < 0)
2238 return ret;
2239
2240 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd,
2241 &dp_info, 1, 0);
2242
2243 return ret;
2244}
d62a17ae 2245static int netlink_macfdb_update(struct interface *ifp, vlanid_t vid,
2246 struct ethaddr *mac, struct in_addr vtep_ip,
a37f4598 2247 int cmd, bool sticky)
2232a77c 2248{
5895d33f 2249 struct zebra_ns *zns;
d62a17ae 2250 struct {
2251 struct nlmsghdr n;
2252 struct ndmsg ndm;
2253 char buf[256];
2254 } req;
2255 int dst_alen;
2256 struct zebra_if *zif;
2257 struct interface *br_if;
2258 struct zebra_if *br_zif;
2259 char buf[ETHER_ADDR_STRLEN];
36590076 2260 int vid_present = 0;
d62a17ae 2261 char vid_buf[20];
2262 char dst_buf[30];
009f8ad5 2263 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(ifp->vrf_id);
d62a17ae 2264
009f8ad5 2265 zns = zvrf->zns;
d62a17ae 2266 zif = ifp->info;
2267 if ((br_if = zif->brslave_info.br_if) == NULL) {
9df414fe
QY
2268 zlog_debug("MAC %s on IF %s(%u) - no mapping to bridge",
2269 (cmd == RTM_NEWNEIGH) ? "add" : "del", ifp->name,
2270 ifp->ifindex);
d62a17ae 2271 return -1;
2272 }
2273
5605ecfc 2274 memset(&req, 0, sizeof(req));
d62a17ae 2275
2276 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2277 req.n.nlmsg_flags = NLM_F_REQUEST;
2278 if (cmd == RTM_NEWNEIGH)
2279 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_REPLACE);
2280 req.n.nlmsg_type = cmd;
2281 req.ndm.ndm_family = AF_BRIDGE;
2282 req.ndm.ndm_flags |= NTF_SELF | NTF_MASTER;
2283 req.ndm.ndm_state = NUD_REACHABLE;
2284
2285 if (sticky)
2286 req.ndm.ndm_state |= NUD_NOARP;
2287 else
2288 req.ndm.ndm_flags |= NTF_EXT_LEARNED;
2289
2290 addattr_l(&req.n, sizeof(req), NDA_LLADDR, mac, 6);
2291 req.ndm.ndm_ifindex = ifp->ifindex;
d63c1b18 2292 dst_alen = 4; // TODO: hardcoded
2293 addattr_l(&req.n, sizeof(req), NDA_DST, &vtep_ip, dst_alen);
d63c1b18 2294 sprintf(dst_buf, " dst %s", inet_ntoa(vtep_ip));
d62a17ae 2295 br_zif = (struct zebra_if *)br_if->info;
2296 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(br_zif) && vid > 0) {
2297 addattr16(&req.n, sizeof(req), NDA_VLAN, vid);
2298 vid_present = 1;
2299 sprintf(vid_buf, " VLAN %u", vid);
2300 }
2301 addattr32(&req.n, sizeof(req), NDA_MASTER, br_if->ifindex);
2302
2303 if (IS_ZEBRA_DEBUG_KERNEL)
2304 zlog_debug("Tx %s family %s IF %s(%u)%s %sMAC %s%s",
2305 nl_msg_type_to_str(cmd),
2306 nl_family_to_str(req.ndm.ndm_family), ifp->name,
2307 ifp->ifindex, vid_present ? vid_buf : "",
2308 sticky ? "sticky " : "",
36590076 2309 prefix_mac2str(mac, buf, sizeof(buf)), dst_buf);
d62a17ae 2310
2311 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
2312 0);
2232a77c 2313}
2314
f17b99ed
DS
2315/*
2316 * In the event the kernel deletes ipv4 link-local neighbor entries created for
2317 * 5549 support, re-install them.
2318 */
2319static void netlink_handle_5549(struct ndmsg *ndm, struct zebra_if *zif,
2320 struct interface *ifp, struct ipaddr *ip)
2321{
2322 if (ndm->ndm_family != AF_INET)
2323 return;
2324
2325 if (!zif->v6_2_v4_ll_neigh_entry)
2326 return;
2327
2328 if (ipv4_ll.s_addr != ip->ip._v4_addr.s_addr)
2329 return;
2330
2331 if_nbr_ipv6ll_to_ipv4ll_neigh_update(ifp, &zif->v6_2_v4_ll_addr6, true);
2332}
2333
d62a17ae 2334#define NUD_VALID \
2335 (NUD_PERMANENT | NUD_NOARP | NUD_REACHABLE | NUD_PROBE | NUD_STALE \
2336 | NUD_DELAY)
2232a77c 2337
2414abd3 2338static int netlink_ipneigh_change(struct nlmsghdr *h, int len, ns_id_t ns_id)
2232a77c 2339{
d62a17ae 2340 struct ndmsg *ndm;
2341 struct interface *ifp;
2342 struct zebra_if *zif;
d62a17ae 2343 struct rtattr *tb[NDA_MAX + 1];
2344 struct interface *link_if;
2345 struct ethaddr mac;
2346 struct ipaddr ip;
2347 char buf[ETHER_ADDR_STRLEN];
2348 char buf2[INET6_ADDRSTRLEN];
2349 int mac_present = 0;
a37f4598 2350 bool is_ext;
2351 bool is_router;
d62a17ae 2352
2353 ndm = NLMSG_DATA(h);
2354
2355 /* The interface should exist. */
5895d33f 2356 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
d62a17ae 2357 ndm->ndm_ifindex);
2853fed6 2358 if (!ifp || !ifp->info)
d62a17ae 2359 return 0;
2360
20089ae2
DS
2361 zif = (struct zebra_if *)ifp->info;
2362
2363 /* Parse attributes and extract fields of interest. */
2364 memset(tb, 0, sizeof tb);
2365 netlink_parse_rtattr(tb, NDA_MAX, NDA_RTA(ndm), len);
2366
2367 if (!tb[NDA_DST]) {
9df414fe
QY
2368 zlog_debug("%s family %s IF %s(%u) - no DST",
2369 nl_msg_type_to_str(h->nlmsg_type),
2370 nl_family_to_str(ndm->ndm_family), ifp->name,
2371 ndm->ndm_ifindex);
d62a17ae 2372 return 0;
20089ae2
DS
2373 }
2374
2375 memset(&ip, 0, sizeof(struct ipaddr));
2376 ip.ipa_type = (ndm->ndm_family == AF_INET) ? IPADDR_V4 : IPADDR_V6;
2377 memcpy(&ip.ip.addr, RTA_DATA(tb[NDA_DST]), RTA_PAYLOAD(tb[NDA_DST]));
2378
f17b99ed
DS
2379 /* if kernel deletes our rfc5549 neighbor entry, re-install it */
2380 if (h->nlmsg_type == RTM_DELNEIGH && (ndm->ndm_state & NUD_PERMANENT)) {
2381 netlink_handle_5549(ndm, zif, ifp, &ip);
20089ae2
DS
2382 return 0;
2383 }
d62a17ae 2384
f17b99ed
DS
2385 /* if kernel marks our rfc5549 neighbor entry invalid, re-install it */
2386 if (h->nlmsg_type == RTM_NEWNEIGH && !(ndm->ndm_state & NUD_VALID))
2387 netlink_handle_5549(ndm, zif, ifp, &ip);
2388
d62a17ae 2389 /* The neighbor is present on an SVI. From this, we locate the
2390 * underlying
2391 * bridge because we're only interested in neighbors on a VxLAN bridge.
2392 * The bridge is located based on the nature of the SVI:
2393 * (a) In the case of a VLAN-aware bridge, the SVI is a L3 VLAN
2394 * interface
2395 * and is linked to the bridge
2396 * (b) In the case of a VLAN-unaware bridge, the SVI is the bridge
2397 * inteface
2398 * itself
2399 */
2400 if (IS_ZEBRA_IF_VLAN(ifp)) {
5895d33f 2401 link_if = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
71349e03 2402 zif->link_ifindex);
d62a17ae 2403 if (!link_if)
2404 return 0;
2405 } else if (IS_ZEBRA_IF_BRIDGE(ifp))
2406 link_if = ifp;
2407 else
2408 return 0;
2409
d62a17ae 2410 memset(&mac, 0, sizeof(struct ethaddr));
d62a17ae 2411 if (h->nlmsg_type == RTM_NEWNEIGH) {
2412 if (tb[NDA_LLADDR]) {
ff8b7eb8 2413 if (RTA_PAYLOAD(tb[NDA_LLADDR]) != ETH_ALEN) {
9df414fe 2414 zlog_debug(
df0b13cf 2415 "%s family %s IF %s(%u) - LLADDR is not MAC, len %lu",
d62a17ae 2416 nl_msg_type_to_str(h->nlmsg_type),
2417 nl_family_to_str(ndm->ndm_family),
2418 ifp->name, ndm->ndm_ifindex,
996c9314
LB
2419 (unsigned long)RTA_PAYLOAD(
2420 tb[NDA_LLADDR]));
d62a17ae 2421 return 0;
2422 }
2423
2424 mac_present = 1;
ff8b7eb8 2425 memcpy(&mac, RTA_DATA(tb[NDA_LLADDR]), ETH_ALEN);
d62a17ae 2426 }
2427
a37f4598 2428 is_ext = !!(ndm->ndm_flags & NTF_EXT_LEARNED);
2429 is_router = !!(ndm->ndm_flags & NTF_ROUTER);
d62a17ae 2430
2431 if (IS_ZEBRA_DEBUG_KERNEL)
2432 zlog_debug(
2433 "Rx %s family %s IF %s(%u) IP %s MAC %s state 0x%x flags 0x%x",
2434 nl_msg_type_to_str(h->nlmsg_type),
2435 nl_family_to_str(ndm->ndm_family), ifp->name,
2436 ndm->ndm_ifindex,
2437 ipaddr2str(&ip, buf2, sizeof(buf2)),
2438 mac_present
2439 ? prefix_mac2str(&mac, buf, sizeof(buf))
2440 : "",
2441 ndm->ndm_state, ndm->ndm_flags);
2442
2443 /* If the neighbor state is valid for use, process as an add or
2444 * update
2445 * else process as a delete. Note that the delete handling may
2446 * result
2447 * in re-adding the neighbor if it is a valid "remote" neighbor.
2448 */
2449 if (ndm->ndm_state & NUD_VALID)
ee69da27 2450 return zebra_vxlan_handle_kernel_neigh_update(
d62a17ae 2451 ifp, link_if, &ip, &mac, ndm->ndm_state,
a37f4598 2452 is_ext, is_router);
d62a17ae 2453
ee69da27 2454 return zebra_vxlan_handle_kernel_neigh_del(ifp, link_if, &ip);
d62a17ae 2455 }
2456
2457 if (IS_ZEBRA_DEBUG_KERNEL)
2458 zlog_debug("Rx %s family %s IF %s(%u) IP %s",
2459 nl_msg_type_to_str(h->nlmsg_type),
2460 nl_family_to_str(ndm->ndm_family), ifp->name,
2461 ndm->ndm_ifindex,
2462 ipaddr2str(&ip, buf2, sizeof(buf2)));
2463
2464 /* Process the delete - it may result in re-adding the neighbor if it is
2465 * a valid "remote" neighbor.
2466 */
ee69da27 2467 return zebra_vxlan_handle_kernel_neigh_del(ifp, link_if, &ip);
2232a77c 2468}
2469
2414abd3 2470static int netlink_neigh_table(struct nlmsghdr *h, ns_id_t ns_id, int startup)
2232a77c 2471{
d62a17ae 2472 int len;
2473 struct ndmsg *ndm;
2232a77c 2474
d62a17ae 2475 if (h->nlmsg_type != RTM_NEWNEIGH)
2476 return 0;
2232a77c 2477
d62a17ae 2478 /* Length validity. */
2479 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
2480 if (len < 0)
2481 return -1;
2232a77c 2482
d62a17ae 2483 /* We are interested only in AF_INET or AF_INET6 notifications. */
2484 ndm = NLMSG_DATA(h);
2485 if (ndm->ndm_family != AF_INET && ndm->ndm_family != AF_INET6)
2486 return 0;
2232a77c 2487
2414abd3 2488 return netlink_neigh_change(h, len);
2232a77c 2489}
2490
2491/* Request for IP neighbor information from the kernel */
85a75f1e
MS
2492static int netlink_request_neigh(struct nlsock *netlink_cmd, int family,
2493 int type, ifindex_t ifindex)
2232a77c 2494{
d62a17ae 2495 struct {
2496 struct nlmsghdr n;
2497 struct ndmsg ndm;
2498 char buf[256];
2499 } req;
2500
2501 /* Form the request, specifying filter (rtattr) if needed. */
2502 memset(&req, 0, sizeof(req));
2503 req.n.nlmsg_type = type;
718f9b0f 2504 req.n.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
d62a17ae 2505 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2506 req.ndm.ndm_family = family;
2507 if (ifindex)
2508 addattr32(&req.n, sizeof(req), NDA_IFINDEX, ifindex);
2509
85a75f1e 2510 return netlink_request(netlink_cmd, &req.n);
2232a77c 2511}
2512
2513/*
2514 * IP Neighbor table read using netlink interface. This is invoked
2515 * at startup.
2516 */
d62a17ae 2517int netlink_neigh_read(struct zebra_ns *zns)
2232a77c 2518{
d62a17ae 2519 int ret;
85a75f1e
MS
2520 struct zebra_dplane_info dp_info;
2521
2522 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
2232a77c 2523
d62a17ae 2524 /* Get IP neighbor table. */
85a75f1e
MS
2525 ret = netlink_request_neigh(&zns->netlink_cmd, AF_UNSPEC, RTM_GETNEIGH,
2526 0);
d62a17ae 2527 if (ret < 0)
2528 return ret;
85a75f1e
MS
2529 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd,
2530 &dp_info, 0, 1);
2232a77c 2531
d62a17ae 2532 return ret;
2232a77c 2533}
2534
2535/*
2536 * IP Neighbor table read using netlink interface. This is for a specific
2537 * VLAN device.
2538 */
d62a17ae 2539int netlink_neigh_read_for_vlan(struct zebra_ns *zns, struct interface *vlan_if)
2232a77c 2540{
d62a17ae 2541 int ret = 0;
85a75f1e
MS
2542 struct zebra_dplane_info dp_info;
2543
2544 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
2232a77c 2545
85a75f1e 2546 ret = netlink_request_neigh(&zns->netlink_cmd, AF_UNSPEC, RTM_GETNEIGH,
d62a17ae 2547 vlan_if->ifindex);
2548 if (ret < 0)
2549 return ret;
85a75f1e
MS
2550 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd,
2551 &dp_info, 0, 0);
2232a77c 2552
d62a17ae 2553 return ret;
2232a77c 2554}
2555
67fb9374
CS
2556/*
2557 * Request for a specific IP in VLAN (SVI) device from IP Neighbor table,
2558 * read using netlink interface.
2559 */
2560static int netlink_request_specific_neigh_in_vlan(struct zebra_ns *zns,
2561 int type, struct ipaddr *ip,
2562 ifindex_t ifindex)
2563{
2564 struct {
2565 struct nlmsghdr n;
2566 struct ndmsg ndm;
2567 char buf[256];
2568 } req;
2569 int ipa_len;
2570
2571 /* Form the request, specifying filter (rtattr) if needed. */
2572 memset(&req, 0, sizeof(req));
2573 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2574 req.n.nlmsg_flags = NLM_F_REQUEST;
2575 req.n.nlmsg_type = type; /* RTM_GETNEIGH */
2576 req.ndm.ndm_ifindex = ifindex;
2577
2578 if (IS_IPADDR_V4(ip)) {
2579 ipa_len = IPV4_MAX_BYTELEN;
2580 req.ndm.ndm_family = AF_INET;
2581
2582 } else {
2583 ipa_len = IPV6_MAX_BYTELEN;
2584 req.ndm.ndm_family = AF_INET6;
2585 }
2586
2587 addattr_l(&req.n, sizeof(req), NDA_DST, &ip->ip.addr, ipa_len);
2588
2589 return netlink_request(&zns->netlink_cmd, &req.n);
2590}
2591
2592int netlink_neigh_read_specific_ip(struct ipaddr *ip,
2593 struct interface *vlan_if)
2594{
2595 int ret = 0;
2596 struct zebra_ns *zns;
2597 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(vlan_if->vrf_id);
2598 char buf[INET6_ADDRSTRLEN];
2599 struct zebra_dplane_info dp_info;
2600
2601 zns = zvrf->zns;
2602
2603 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
2604
2605 if (IS_ZEBRA_DEBUG_KERNEL)
2606 zlog_debug("%s: neigh request IF %s(%u) IP %s vrf_id %u",
2607 __PRETTY_FUNCTION__, vlan_if->name,
2608 vlan_if->ifindex,
2609 ipaddr2str(ip, buf, sizeof(buf)),
2610 vlan_if->vrf_id);
2611
2612 ret = netlink_request_specific_neigh_in_vlan(zns, RTM_GETNEIGH, ip,
2613 vlan_if->ifindex);
2614 if (ret < 0)
2615 return ret;
2616
2617 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd,
2618 &dp_info, 1, 0);
2619
2620 return ret;
2621}
2622
2414abd3 2623int netlink_neigh_change(struct nlmsghdr *h, ns_id_t ns_id)
2232a77c 2624{
d62a17ae 2625 int len;
2626 struct ndmsg *ndm;
2232a77c 2627
d62a17ae 2628 if (!(h->nlmsg_type == RTM_NEWNEIGH || h->nlmsg_type == RTM_DELNEIGH))
2629 return 0;
2232a77c 2630
d62a17ae 2631 /* Length validity. */
2632 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
9bdf8618
DS
2633 if (len < 0) {
2634 zlog_err("%s: Message received from netlink is of a broken size %d %zu",
2635 __PRETTY_FUNCTION__, h->nlmsg_len,
2636 (size_t)NLMSG_LENGTH(sizeof(struct ndmsg)));
d62a17ae 2637 return -1;
9bdf8618 2638 }
2232a77c 2639
d62a17ae 2640 /* Is this a notification for the MAC FDB or IP neighbor table? */
2641 ndm = NLMSG_DATA(h);
2642 if (ndm->ndm_family == AF_BRIDGE)
2414abd3 2643 return netlink_macfdb_change(h, len, ns_id);
2232a77c 2644
d62a17ae 2645 if (ndm->ndm_type != RTN_UNICAST)
2646 return 0;
2232a77c 2647
d62a17ae 2648 if (ndm->ndm_family == AF_INET || ndm->ndm_family == AF_INET6)
2414abd3 2649 return netlink_ipneigh_change(h, len, ns_id);
8a1b681c 2650 else {
9df414fe 2651 flog_warn(
e914ccbe 2652 EC_ZEBRA_UNKNOWN_FAMILY,
87b5d1b0
DS
2653 "Invalid address family: %u received from kernel neighbor change: %s",
2654 ndm->ndm_family, nl_msg_type_to_str(h->nlmsg_type));
8a1b681c
SW
2655 return 0;
2656 }
2232a77c 2657
d62a17ae 2658 return 0;
2232a77c 2659}
2660
d62a17ae 2661static int netlink_neigh_update2(struct interface *ifp, struct ipaddr *ip,
68e33151
CS
2662 struct ethaddr *mac, uint8_t flags,
2663 uint16_t state, int cmd)
2232a77c 2664{
d62a17ae 2665 struct {
2666 struct nlmsghdr n;
2667 struct ndmsg ndm;
2668 char buf[256];
2669 } req;
2670 int ipa_len;
2671
5895d33f 2672 struct zebra_ns *zns;
d62a17ae 2673 char buf[INET6_ADDRSTRLEN];
2674 char buf2[ETHER_ADDR_STRLEN];
009f8ad5 2675 struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(ifp->vrf_id);
d62a17ae 2676
009f8ad5 2677 zns = zvrf->zns;
5605ecfc 2678 memset(&req, 0, sizeof(req));
d62a17ae 2679
2680 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
2681 req.n.nlmsg_flags = NLM_F_REQUEST;
2682 if (cmd == RTM_NEWNEIGH)
2683 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_REPLACE);
2684 req.n.nlmsg_type = cmd; // RTM_NEWNEIGH or RTM_DELNEIGH
2685 req.ndm.ndm_family = IS_IPADDR_V4(ip) ? AF_INET : AF_INET6;
68e33151 2686 req.ndm.ndm_state = state;
d62a17ae 2687 req.ndm.ndm_ifindex = ifp->ifindex;
2688 req.ndm.ndm_type = RTN_UNICAST;
68e33151 2689 req.ndm.ndm_flags = flags;
d62a17ae 2690
2691 ipa_len = IS_IPADDR_V4(ip) ? IPV4_MAX_BYTELEN : IPV6_MAX_BYTELEN;
2692 addattr_l(&req.n, sizeof(req), NDA_DST, &ip->ip.addr, ipa_len);
2693 if (mac)
2694 addattr_l(&req.n, sizeof(req), NDA_LLADDR, mac, 6);
2695
2696 if (IS_ZEBRA_DEBUG_KERNEL)
6fe2b0e6 2697 zlog_debug("Tx %s family %s IF %s(%u) Neigh %s MAC %s flags 0x%x state 0x%x",
d62a17ae 2698 nl_msg_type_to_str(cmd),
2699 nl_family_to_str(req.ndm.ndm_family), ifp->name,
2700 ifp->ifindex, ipaddr2str(ip, buf, sizeof(buf)),
2701 mac ? prefix_mac2str(mac, buf2, sizeof(buf2))
6fe2b0e6 2702 : "null", flags, state);
d62a17ae 2703
2704 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
2705 0);
2232a77c 2706}
2707
d62a17ae 2708int kernel_add_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac,
a37f4598 2709 struct in_addr vtep_ip, bool sticky)
2232a77c 2710{
d63c1b18 2711 return netlink_macfdb_update(ifp, vid, mac, vtep_ip, RTM_NEWNEIGH,
d62a17ae 2712 sticky);
2232a77c 2713}
2714
d62a17ae 2715int kernel_del_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac,
d63c1b18 2716 struct in_addr vtep_ip)
2232a77c 2717{
d63c1b18 2718 return netlink_macfdb_update(ifp, vid, mac, vtep_ip, RTM_DELNEIGH, 0);
2232a77c 2719}
2720
d62a17ae 2721int kernel_add_neigh(struct interface *ifp, struct ipaddr *ip,
68e33151 2722 struct ethaddr *mac, uint8_t flags)
2232a77c 2723{
68e33151
CS
2724 return netlink_neigh_update2(ifp, ip, mac, flags,
2725 NUD_NOARP, RTM_NEWNEIGH);
2232a77c 2726}
2727
d62a17ae 2728int kernel_del_neigh(struct interface *ifp, struct ipaddr *ip)
2232a77c 2729{
68e33151 2730 return netlink_neigh_update2(ifp, ip, NULL, 0, 0, RTM_DELNEIGH);
2232a77c 2731}
2732
6fe2b0e6
CS
2733int kernel_upd_neigh(struct interface *ifp, struct ipaddr *ip,
2734 struct ethaddr *mac, uint8_t flags, uint16_t state)
2735{
2736 return netlink_neigh_update2(ifp, ip, mac, flags,
2737 state, RTM_NEWNEIGH);
2738}
2739
16c628de
MS
2740/*
2741 * MPLS label forwarding table change via netlink interface, using dataplane
2742 * context information.
2743 */
fc608372 2744int netlink_mpls_multipath(int cmd, struct zebra_dplane_ctx *ctx)
16c628de
MS
2745{
2746 mpls_lse_t lse;
2747 zebra_nhlfe_t *nhlfe;
2748 struct nexthop *nexthop = NULL;
2749 unsigned int nexthop_num;
2750 const char *routedesc;
2751 int route_type;
2752
2753 struct {
2754 struct nlmsghdr n;
2755 struct rtmsg r;
2756 char buf[NL_PKT_BUF_SIZE];
2757 } req;
2758
2759 memset(&req, 0, sizeof(req) - NL_PKT_BUF_SIZE);
2760
2761 /*
2762 * Count # nexthops so we can decide whether to use singlepath
2763 * or multipath case.
2764 */
2765 nexthop_num = 0;
2766 for (nhlfe = dplane_ctx_get_nhlfe(ctx); nhlfe; nhlfe = nhlfe->next) {
2767 nexthop = nhlfe->nexthop;
2768 if (!nexthop)
2769 continue;
2770 if (cmd == RTM_NEWROUTE) {
2771 /* Count all selected NHLFEs */
2772 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2773 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE))
2774 nexthop_num++;
2775 } else { /* DEL */
2776 /* Count all installed NHLFEs */
2777 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_INSTALLED)
2778 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB))
2779 nexthop_num++;
2780 }
2781 }
2782
2783 if ((nexthop_num == 0) ||
2784 (!dplane_ctx_get_best_nhlfe(ctx) && (cmd != RTM_DELROUTE)))
2785 return 0;
2786
2787 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
2788 req.n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
2789 req.n.nlmsg_type = cmd;
2790 req.n.nlmsg_pid = dplane_ctx_get_ns(ctx)->nls.snl.nl_pid;
2791
2792 req.r.rtm_family = AF_MPLS;
2793 req.r.rtm_table = RT_TABLE_MAIN;
2794 req.r.rtm_dst_len = MPLS_LABEL_LEN_BITS;
2795 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
2796 req.r.rtm_type = RTN_UNICAST;
2797
2798 if (cmd == RTM_NEWROUTE) {
2799 /* We do a replace to handle update. */
2800 req.n.nlmsg_flags |= NLM_F_REPLACE;
2801
2802 /* set the protocol value if installing */
2803 route_type = re_type_from_lsp_type(
2804 dplane_ctx_get_best_nhlfe(ctx)->type);
2805 req.r.rtm_protocol = zebra2proto(route_type);
2806 }
2807
2808 /* Fill destination */
2809 lse = mpls_lse_encode(dplane_ctx_get_in_label(ctx), 0, 0, 1);
2810 addattr_l(&req.n, sizeof(req), RTA_DST, &lse, sizeof(mpls_lse_t));
2811
2812 /* Fill nexthops (paths) based on single-path or multipath. The paths
2813 * chosen depend on the operation.
2814 */
fc608372 2815 if (nexthop_num == 1) {
16c628de
MS
2816 routedesc = "single-path";
2817 _netlink_mpls_debug(cmd, dplane_ctx_get_in_label(ctx),
2818 routedesc);
2819
2820 nexthop_num = 0;
2821 for (nhlfe = dplane_ctx_get_nhlfe(ctx);
2822 nhlfe; nhlfe = nhlfe->next) {
2823 nexthop = nhlfe->nexthop;
2824 if (!nexthop)
2825 continue;
2826
2827 if ((cmd == RTM_NEWROUTE
2828 && (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2829 && CHECK_FLAG(nexthop->flags,
2830 NEXTHOP_FLAG_ACTIVE)))
2831 || (cmd == RTM_DELROUTE
2832 && (CHECK_FLAG(nhlfe->flags,
2833 NHLFE_FLAG_INSTALLED)
2834 && CHECK_FLAG(nexthop->flags,
2835 NEXTHOP_FLAG_FIB)))) {
2836 /* Add the gateway */
2837 _netlink_mpls_build_singlepath(
2838 routedesc, nhlfe,
2839 &req.n, &req.r,
2840 sizeof(req), cmd);
2841
2842 nexthop_num++;
2843 break;
2844 }
2845 }
2846 } else { /* Multipath case */
2847 char buf[NL_PKT_BUF_SIZE];
2848 struct rtattr *rta = (void *)buf;
2849 struct rtnexthop *rtnh;
2850 union g_addr *src1 = NULL;
2851
2852 rta->rta_type = RTA_MULTIPATH;
2853 rta->rta_len = RTA_LENGTH(0);
2854 rtnh = RTA_DATA(rta);
2855
2856 routedesc = "multipath";
2857 _netlink_mpls_debug(cmd, dplane_ctx_get_in_label(ctx),
2858 routedesc);
2859
2860 nexthop_num = 0;
2861 for (nhlfe = dplane_ctx_get_nhlfe(ctx);
2862 nhlfe; nhlfe = nhlfe->next) {
2863 nexthop = nhlfe->nexthop;
2864 if (!nexthop)
2865 continue;
2866
16c628de
MS
2867 if ((cmd == RTM_NEWROUTE
2868 && (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
2869 && CHECK_FLAG(nexthop->flags,
2870 NEXTHOP_FLAG_ACTIVE)))
2871 || (cmd == RTM_DELROUTE
2872 && (CHECK_FLAG(nhlfe->flags,
2873 NHLFE_FLAG_INSTALLED)
2874 && CHECK_FLAG(nexthop->flags,
2875 NEXTHOP_FLAG_FIB)))) {
2876 nexthop_num++;
2877
2878 /* Build the multipath */
2879 _netlink_mpls_build_multipath(routedesc, nhlfe,
2880 rta, rtnh, &req.r,
2881 &src1);
2882 rtnh = RTNH_NEXT(rtnh);
2883 }
2884 }
2885
2886 /* Add the multipath */
2887 if (rta->rta_len > RTA_LENGTH(0))
2888 addattr_l(&req.n, NL_PKT_BUF_SIZE, RTA_MULTIPATH,
2889 RTA_DATA(rta), RTA_PAYLOAD(rta));
2890 }
2891
2892 /* Talk to netlink socket. */
2893 return netlink_talk_info(netlink_talk_filter, &req.n,
2894 dplane_ctx_get_ns(ctx), 0);
2895}
ddfeb486 2896#endif /* HAVE_NETLINK */