]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rt_netlink.c
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / zebra / rt_netlink.c
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
718e3744 2/* Kernel routing table updates using netlink over GNU/Linux system.
3 * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
718e3744 4 */
5
6#include <zebra.h>
ddfeb486
DL
7
8#ifdef HAVE_NETLINK
9
8689b25a
HS
10/* The following definition is to workaround an issue in the Linux kernel
11 * header files with redefinition of 'struct in6_addr' in both
12 * netinet/in.h and linux/in6.h.
13 * Reference - https://sourceware.org/ml/libc-alpha/2013-01/msg00599.html
14 */
15#define _LINUX_IN6_H
16
8ccc7e80 17#include <net/if_arp.h>
ba777396
RW
18#include <linux/lwtunnel.h>
19#include <linux/mpls_iptunnel.h>
8689b25a
HS
20#include <linux/seg6_iptunnel.h>
21#include <linux/seg6_local.h>
ba777396
RW
22#include <linux/neighbour.h>
23#include <linux/rtnetlink.h>
d9f5b2f5 24#include <linux/nexthop.h>
718e3744 25
26/* Hack for GNU libc version 2. */
27#ifndef MSG_TRUNC
28#define MSG_TRUNC 0x20
29#endif /* MSG_TRUNC */
30
31#include "linklist.h"
32#include "if.h"
33#include "log.h"
34#include "prefix.h"
8689b25a
HS
35#include "plist.h"
36#include "plist_int.h"
718e3744 37#include "connected.h"
38#include "table.h"
26e2ae36 39#include "memory.h"
718e3744 40#include "rib.h"
e04ab74d 41#include "thread.h"
edd7c245 42#include "privs.h"
fb018d25 43#include "nexthop.h"
78104b9b 44#include "vrf.h"
5e6a74d8 45#include "vty.h"
40c7bdb0 46#include "mpls.h"
13d60d35 47#include "vxlan.h"
8d03bc50 48#include "printfrr.h"
718e3744 49
bf094f69 50#include "zebra/zapi_msg.h"
fe18ee2d 51#include "zebra/zebra_ns.h"
7c551956 52#include "zebra/zebra_vrf.h"
6621ca86 53#include "zebra/rt.h"
718e3744 54#include "zebra/redistribute.h"
55#include "zebra/interface.h"
56#include "zebra/debug.h"
12f6fb97 57#include "zebra/rtadv.h"
567b877d 58#include "zebra/zebra_ptm.h"
40c7bdb0 59#include "zebra/zebra_mpls.h"
1fdc9eae 60#include "zebra/kernel_netlink.h"
61#include "zebra/rt_netlink.h"
d9f5b2f5 62#include "zebra/zebra_nhg.h"
e3be0432 63#include "zebra/zebra_mroute.h"
2232a77c 64#include "zebra/zebra_vxlan.h"
364fed6b 65#include "zebra/zebra_errors.h"
506efd37 66#include "zebra/zebra_evpn_mh.h"
1d80c209 67#include "zebra/zebra_trace.h"
4cf4fad1 68#include "zebra/zebra_neigh.h"
e3be0432 69
40c7bdb0 70#ifndef AF_MPLS
71#define AF_MPLS 28
72#endif
73
d87ed8d7
AK
74/* Re-defining as I am unable to include <linux/if_bridge.h> which has the
75 * UAPI for MAC sync. */
76#ifndef _UAPI_LINUX_IF_BRIDGE_H
4bcdb608 77#define BR_SPH_LIST_SIZE 10
d87ed8d7
AK
78#endif
79
2232a77c 80static vlanid_t filter_vlan = 0;
81
7c99d51b
MS
82/* We capture whether the current kernel supports nexthop ids; by
83 * default, we'll use them if possible. There's also a configuration
84 * available to _disable_ use of kernel nexthops.
85 */
fec211ad 86static bool supports_nh;
81505946 87
d62a17ae 88struct gw_family_t {
d7c0a89a
QY
89 uint16_t filler;
90 uint16_t family;
d62a17ae 91 union g_addr gate;
40c7bdb0 92};
93
2b64873d
DL
94static const char ipv4_ll_buf[16] = "169.254.0.1";
95static struct in_addr ipv4_ll;
8755598a 96
002e5c43
SW
97/* Is this a ipv4 over ipv6 route? */
98static bool is_route_v4_over_v6(unsigned char rtm_family,
99 enum nexthop_types_t nexthop_type)
100{
101 if (rtm_family == AF_INET
102 && (nexthop_type == NEXTHOP_TYPE_IPV6
103 || nexthop_type == NEXTHOP_TYPE_IPV6_IFINDEX))
104 return true;
105
106 return false;
107}
108
7c99d51b
MS
109/* Helper to control use of kernel-level nexthop ids */
110static bool kernel_nexthops_supported(void)
111{
d982012a
SW
112 return (supports_nh && !vrf_is_backend_netns()
113 && zebra_nhg_kernel_nexthops_enabled());
7c99d51b
MS
114}
115
6c67f41f
SW
116/*
117 * Some people may only want to use NHGs created by protos and not
118 * implicitly created by Zebra. This check accounts for that.
119 */
120static bool proto_nexthops_only(void)
121{
122 return zebra_nhg_proto_nexthops_only();
123}
124
125/* Is this a proto created NHG? */
126static bool is_proto_nhg(uint32_t id, int type)
127{
128 /* If type is available, use it as the source of truth */
129 if (type) {
130 if (type != ZEBRA_ROUTE_NHG)
131 return true;
132 return false;
133 }
134
54c89c93 135 if (id >= ZEBRA_NHG_PROTO_LOWER)
6c67f41f
SW
136 return true;
137
138 return false;
139}
140
784d88aa
SR
141/* Is vni mcast group */
142static bool is_mac_vni_mcast_group(struct ethaddr *mac, vni_t vni,
143 struct in_addr grp_addr)
144{
145 if (!vni)
146 return false;
147
148 if (!is_zero_mac(mac))
149 return false;
150
151 if (!IN_MULTICAST(ntohl(grp_addr.s_addr)))
152 return false;
153
154 return true;
155}
156
8755598a
DS
157/*
158 * The ipv4_ll data structure is used for all 5549
159 * additions to the kernel. Let's figure out the
160 * correct value one time instead for every
161 * install/remove of a 5549 type route
162 */
d62a17ae 163void rt_netlink_init(void)
8755598a 164{
d62a17ae 165 inet_pton(AF_INET, ipv4_ll_buf, &ipv4_ll);
8755598a
DS
166}
167
931fa60c
MS
168/*
169 * Mapping from dataplane neighbor flags to netlink flags
170 */
171static uint8_t neigh_flags_to_netlink(uint8_t dplane_flags)
172{
173 uint8_t flags = 0;
174
175 if (dplane_flags & DPLANE_NTF_EXT_LEARNED)
176 flags |= NTF_EXT_LEARNED;
177 if (dplane_flags & DPLANE_NTF_ROUTER)
178 flags |= NTF_ROUTER;
d68e74b4
JU
179 if (dplane_flags & DPLANE_NTF_USE)
180 flags |= NTF_USE;
931fa60c
MS
181
182 return flags;
183}
184
185/*
186 * Mapping from dataplane neighbor state to netlink state
187 */
188static uint16_t neigh_state_to_netlink(uint16_t dplane_state)
189{
190 uint16_t state = 0;
191
192 if (dplane_state & DPLANE_NUD_REACHABLE)
193 state |= NUD_REACHABLE;
194 if (dplane_state & DPLANE_NUD_STALE)
195 state |= NUD_STALE;
196 if (dplane_state & DPLANE_NUD_NOARP)
197 state |= NUD_NOARP;
198 if (dplane_state & DPLANE_NUD_PROBE)
199 state |= NUD_PROBE;
d68e74b4
JU
200 if (dplane_state & DPLANE_NUD_INCOMPLETE)
201 state |= NUD_INCOMPLETE;
0a27a2fe
PG
202 if (dplane_state & DPLANE_NUD_PERMANENT)
203 state |= NUD_PERMANENT;
204 if (dplane_state & DPLANE_NUD_FAILED)
205 state |= NUD_FAILED;
931fa60c
MS
206
207 return state;
208}
209
210
6a6d11a3 211static inline bool is_selfroute(int proto)
23b1f334 212{
d62a17ae 213 if ((proto == RTPROT_BGP) || (proto == RTPROT_OSPF)
d4d71f11 214 || (proto == RTPROT_ZSTATIC) || (proto == RTPROT_ZEBRA)
d62a17ae 215 || (proto == RTPROT_ISIS) || (proto == RTPROT_RIPNG)
216 || (proto == RTPROT_NHRP) || (proto == RTPROT_EIGRP)
915902cb 217 || (proto == RTPROT_LDP) || (proto == RTPROT_BABEL)
0761368a 218 || (proto == RTPROT_RIP) || (proto == RTPROT_SHARP)
31f937fb
SM
219 || (proto == RTPROT_PBR) || (proto == RTPROT_OPENFABRIC)
220 || (proto == RTPROT_SRTE)) {
6a6d11a3 221 return true;
d62a17ae 222 }
223
6a6d11a3 224 return false;
23b1f334
DD
225}
226
4a563f27 227int zebra2proto(int proto)
23b1f334 228{
d62a17ae 229 switch (proto) {
230 case ZEBRA_ROUTE_BABEL:
231 proto = RTPROT_BABEL;
232 break;
233 case ZEBRA_ROUTE_BGP:
234 proto = RTPROT_BGP;
235 break;
236 case ZEBRA_ROUTE_OSPF:
237 case ZEBRA_ROUTE_OSPF6:
238 proto = RTPROT_OSPF;
239 break;
240 case ZEBRA_ROUTE_STATIC:
d4d71f11 241 proto = RTPROT_ZSTATIC;
d62a17ae 242 break;
243 case ZEBRA_ROUTE_ISIS:
244 proto = RTPROT_ISIS;
245 break;
246 case ZEBRA_ROUTE_RIP:
247 proto = RTPROT_RIP;
248 break;
249 case ZEBRA_ROUTE_RIPNG:
250 proto = RTPROT_RIPNG;
251 break;
252 case ZEBRA_ROUTE_NHRP:
253 proto = RTPROT_NHRP;
254 break;
255 case ZEBRA_ROUTE_EIGRP:
256 proto = RTPROT_EIGRP;
257 break;
258 case ZEBRA_ROUTE_LDP:
259 proto = RTPROT_LDP;
260 break;
8a71d93d
DS
261 case ZEBRA_ROUTE_SHARP:
262 proto = RTPROT_SHARP;
263 break;
0761368a
DS
264 case ZEBRA_ROUTE_PBR:
265 proto = RTPROT_PBR;
266 break;
da82f6b4
CF
267 case ZEBRA_ROUTE_OPENFABRIC:
268 proto = RTPROT_OPENFABRIC;
269 break;
31f937fb
SM
270 case ZEBRA_ROUTE_SRTE:
271 proto = RTPROT_SRTE;
272 break;
a56ec5c0 273 case ZEBRA_ROUTE_TABLE:
38e40db1 274 case ZEBRA_ROUTE_NHG:
a56ec5c0
DS
275 proto = RTPROT_ZEBRA;
276 break;
911d4d48
DE
277 case ZEBRA_ROUTE_CONNECT:
278 case ZEBRA_ROUTE_KERNEL:
279 proto = RTPROT_KERNEL;
280 break;
d62a17ae 281 default:
0761368a
DS
282 /*
283 * When a user adds a new protocol this will show up
284 * to let them know to do something about it. This
285 * is intentionally a warn because we should see
286 * this as part of development of a new protocol
287 */
9df414fe
QY
288 zlog_debug(
289 "%s: Please add this protocol(%d) to proper rt_netlink.c handling",
15569c58 290 __func__, proto);
d62a17ae 291 proto = RTPROT_ZEBRA;
292 break;
293 }
294
295 return proto;
23b1f334
DD
296}
297
38e40db1 298static inline int proto2zebra(int proto, int family, bool is_nexthop)
915902cb
DS
299{
300 switch (proto) {
301 case RTPROT_BABEL:
302 proto = ZEBRA_ROUTE_BABEL;
303 break;
304 case RTPROT_BGP:
305 proto = ZEBRA_ROUTE_BGP;
306 break;
307 case RTPROT_OSPF:
d6816f68
DS
308 proto = (family == AF_INET) ? ZEBRA_ROUTE_OSPF
309 : ZEBRA_ROUTE_OSPF6;
915902cb
DS
310 break;
311 case RTPROT_ISIS:
312 proto = ZEBRA_ROUTE_ISIS;
313 break;
314 case RTPROT_RIP:
315 proto = ZEBRA_ROUTE_RIP;
316 break;
317 case RTPROT_RIPNG:
318 proto = ZEBRA_ROUTE_RIPNG;
319 break;
320 case RTPROT_NHRP:
321 proto = ZEBRA_ROUTE_NHRP;
322 break;
323 case RTPROT_EIGRP:
324 proto = ZEBRA_ROUTE_EIGRP;
325 break;
326 case RTPROT_LDP:
327 proto = ZEBRA_ROUTE_LDP;
328 break;
329 case RTPROT_STATIC:
d4d71f11 330 case RTPROT_ZSTATIC:
915902cb
DS
331 proto = ZEBRA_ROUTE_STATIC;
332 break;
0761368a
DS
333 case RTPROT_SHARP:
334 proto = ZEBRA_ROUTE_SHARP;
335 break;
336 case RTPROT_PBR:
337 proto = ZEBRA_ROUTE_PBR;
338 break;
da82f6b4
CF
339 case RTPROT_OPENFABRIC:
340 proto = ZEBRA_ROUTE_OPENFABRIC;
341 break;
31f937fb
SM
342 case RTPROT_SRTE:
343 proto = ZEBRA_ROUTE_SRTE;
344 break;
b09388f0
DS
345 case RTPROT_UNSPEC:
346 case RTPROT_REDIRECT:
347 case RTPROT_KERNEL:
348 case RTPROT_BOOT:
349 case RTPROT_GATED:
350 case RTPROT_RA:
351 case RTPROT_MRT:
352 case RTPROT_BIRD:
353 case RTPROT_DNROUTED:
354 case RTPROT_XORP:
355 case RTPROT_NTK:
356 case RTPROT_MROUTED:
357 case RTPROT_KEEPALIVED:
358 case RTPROT_OPENR:
359 proto = ZEBRA_ROUTE_KERNEL;
360 break;
38e40db1
SW
361 case RTPROT_ZEBRA:
362 if (is_nexthop) {
363 proto = ZEBRA_ROUTE_NHG;
364 break;
365 }
366 /* Intentional fall thru */
915902cb 367 default:
0761368a
DS
368 /*
369 * When a user adds a new protocol this will show up
370 * to let them know to do something about it. This
371 * is intentionally a warn because we should see
372 * this as part of development of a new protocol
373 */
9df414fe
QY
374 zlog_debug(
375 "%s: Please add this protocol(%d) to proper rt_netlink.c handling",
15569c58 376 __func__, proto);
915902cb
DS
377 proto = ZEBRA_ROUTE_KERNEL;
378 break;
379 }
380 return proto;
381}
382
12f6fb97
DS
383/*
384Pending: create an efficient table_id (in a tree/hash) based lookup)
385 */
9d866c07 386vrf_id_t vrf_lookup_by_table(uint32_t table_id, ns_id_t ns_id)
12f6fb97 387{
d62a17ae 388 struct vrf *vrf;
389 struct zebra_vrf *zvrf;
12f6fb97 390
a2addae8 391 RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
78dd30b2
PG
392 zvrf = vrf->info;
393 if (zvrf == NULL)
d62a17ae 394 continue;
78dd30b2
PG
395 /* case vrf with netns : match the netnsid */
396 if (vrf_is_backend_netns()) {
397 if (ns_id == zvrf_id(zvrf))
398 return zvrf_id(zvrf);
399 } else {
400 /* VRF is VRF_BACKEND_VRF_LITE */
401 if (zvrf->table_id != table_id)
402 continue;
403 return zvrf_id(zvrf);
404 }
d62a17ae 405 }
12f6fb97 406
d62a17ae 407 return VRF_DEFAULT;
12f6fb97
DS
408}
409
87da6a60
SW
410/**
411 * @parse_encap_mpls() - Parses encapsulated mpls attributes
412 * @tb: Pointer to rtattr to look for nested items in.
413 * @labels: Pointer to store labels in.
414 *
415 * Return: Number of mpls labels found.
416 */
417static int parse_encap_mpls(struct rtattr *tb, mpls_label_t *labels)
418{
419 struct rtattr *tb_encap[MPLS_IPTUNNEL_MAX + 1] = {0};
420 mpls_lse_t *lses = NULL;
421 int num_labels = 0;
422 uint32_t ttl = 0;
423 uint32_t bos = 0;
424 uint32_t exp = 0;
425 mpls_label_t label = 0;
426
427 netlink_parse_rtattr_nested(tb_encap, MPLS_IPTUNNEL_MAX, tb);
428 lses = (mpls_lse_t *)RTA_DATA(tb_encap[MPLS_IPTUNNEL_DST]);
429 while (!bos && num_labels < MPLS_MAX_LABELS) {
430 mpls_lse_decode(lses[num_labels], &label, &ttl, &exp, &bos);
431 labels[num_labels++] = label;
432 }
433
434 return num_labels;
435}
436
d49e6c4a
HS
437static enum seg6local_action_t
438parse_encap_seg6local(struct rtattr *tb,
439 struct seg6local_context *ctx)
440{
ce39ca16 441 struct rtattr *tb_encap[SEG6_LOCAL_MAX + 1] = {};
d49e6c4a
HS
442 enum seg6local_action_t act = ZEBRA_SEG6_LOCAL_ACTION_UNSPEC;
443
ce39ca16 444 netlink_parse_rtattr_nested(tb_encap, SEG6_LOCAL_MAX, tb);
d49e6c4a
HS
445
446 if (tb_encap[SEG6_LOCAL_ACTION])
447 act = *(uint32_t *)RTA_DATA(tb_encap[SEG6_LOCAL_ACTION]);
448
449 if (tb_encap[SEG6_LOCAL_NH4])
450 ctx->nh4 = *(struct in_addr *)RTA_DATA(
451 tb_encap[SEG6_LOCAL_NH4]);
452
453 if (tb_encap[SEG6_LOCAL_NH6])
454 ctx->nh6 = *(struct in6_addr *)RTA_DATA(
455 tb_encap[SEG6_LOCAL_NH6]);
456
457 if (tb_encap[SEG6_LOCAL_TABLE])
458 ctx->table = *(uint32_t *)RTA_DATA(tb_encap[SEG6_LOCAL_TABLE]);
459
7eab60a7
RS
460 if (tb_encap[SEG6_LOCAL_VRFTABLE])
461 ctx->table =
462 *(uint32_t *)RTA_DATA(tb_encap[SEG6_LOCAL_VRFTABLE]);
463
d49e6c4a
HS
464 return act;
465}
466
f16de90b
HS
467static int parse_encap_seg6(struct rtattr *tb, struct in6_addr *segs)
468{
ce39ca16 469 struct rtattr *tb_encap[SEG6_IPTUNNEL_MAX + 1] = {};
f16de90b
HS
470 struct seg6_iptunnel_encap *ipt = NULL;
471 struct in6_addr *segments = NULL;
472
ce39ca16 473 netlink_parse_rtattr_nested(tb_encap, SEG6_IPTUNNEL_MAX, tb);
f16de90b
HS
474
475 /*
476 * TODO: It's not support multiple SID list.
477 */
478 if (tb_encap[SEG6_IPTUNNEL_SRH]) {
479 ipt = (struct seg6_iptunnel_encap *)
480 RTA_DATA(tb_encap[SEG6_IPTUNNEL_SRH]);
481 segments = ipt->srh[0].segments;
482 *segs = segments[0];
483 return 1;
484 }
485
486 return 0;
487}
488
489
77a44d94
SW
490static struct nexthop
491parse_nexthop_unicast(ns_id_t ns_id, struct rtmsg *rtm, struct rtattr **tb,
492 enum blackhole_type bh_type, int index, void *prefsrc,
20822f9d 493 void *gate, afi_t afi, vrf_id_t vrf_id)
77a44d94
SW
494{
495 struct interface *ifp = NULL;
496 struct nexthop nh = {0};
497 mpls_label_t labels[MPLS_MAX_LABELS] = {0};
498 int num_labels = 0;
b9596f13 499 enum seg6local_action_t seg6l_act = ZEBRA_SEG6_LOCAL_ACTION_UNSPEC;
1bda3e62
HS
500 struct seg6local_context seg6l_ctx = {};
501 struct in6_addr seg6_segs = {};
f16de90b 502 int num_segs = 0;
77a44d94 503
20822f9d 504 vrf_id_t nh_vrf_id = vrf_id;
77a44d94
SW
505 size_t sz = (afi == AFI_IP) ? 4 : 16;
506
507 if (bh_type == BLACKHOLE_UNSPEC) {
508 if (index && !gate)
509 nh.type = NEXTHOP_TYPE_IFINDEX;
510 else if (index && gate)
511 nh.type = (afi == AFI_IP) ? NEXTHOP_TYPE_IPV4_IFINDEX
512 : NEXTHOP_TYPE_IPV6_IFINDEX;
513 else if (!index && gate)
514 nh.type = (afi == AFI_IP) ? NEXTHOP_TYPE_IPV4
515 : NEXTHOP_TYPE_IPV6;
516 else {
517 nh.type = NEXTHOP_TYPE_BLACKHOLE;
518 nh.bh_type = bh_type;
519 }
520 } else {
521 nh.type = NEXTHOP_TYPE_BLACKHOLE;
522 nh.bh_type = bh_type;
523 }
524 nh.ifindex = index;
525 if (prefsrc)
526 memcpy(&nh.src, prefsrc, sz);
527 if (gate)
528 memcpy(&nh.gate, gate, sz);
529
530 if (index) {
531 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id), index);
532 if (ifp)
096f7609 533 nh_vrf_id = ifp->vrf->vrf_id;
77a44d94
SW
534 }
535 nh.vrf_id = nh_vrf_id;
536
537 if (tb[RTA_ENCAP] && tb[RTA_ENCAP_TYPE]
538 && *(uint16_t *)RTA_DATA(tb[RTA_ENCAP_TYPE])
539 == LWTUNNEL_ENCAP_MPLS) {
540 num_labels = parse_encap_mpls(tb[RTA_ENCAP], labels);
541 }
d49e6c4a
HS
542 if (tb[RTA_ENCAP] && tb[RTA_ENCAP_TYPE]
543 && *(uint16_t *)RTA_DATA(tb[RTA_ENCAP_TYPE])
544 == LWTUNNEL_ENCAP_SEG6_LOCAL) {
545 seg6l_act = parse_encap_seg6local(tb[RTA_ENCAP], &seg6l_ctx);
546 }
f16de90b
HS
547 if (tb[RTA_ENCAP] && tb[RTA_ENCAP_TYPE]
548 && *(uint16_t *)RTA_DATA(tb[RTA_ENCAP_TYPE])
549 == LWTUNNEL_ENCAP_SEG6) {
550 num_segs = parse_encap_seg6(tb[RTA_ENCAP], &seg6_segs);
551 }
77a44d94
SW
552
553 if (rtm->rtm_flags & RTNH_F_ONLINK)
554 SET_FLAG(nh.flags, NEXTHOP_FLAG_ONLINK);
555
c704cb44
DS
556 if (rtm->rtm_flags & RTNH_F_LINKDOWN)
557 SET_FLAG(nh.flags, NEXTHOP_FLAG_LINKDOWN);
558
77a44d94
SW
559 if (num_labels)
560 nexthop_add_labels(&nh, ZEBRA_LSP_STATIC, num_labels, labels);
561
d49e6c4a 562 if (seg6l_act != ZEBRA_SEG6_LOCAL_ACTION_UNSPEC)
eab0f8f0 563 nexthop_add_srv6_seg6local(&nh, seg6l_act, &seg6l_ctx);
d49e6c4a 564
f16de90b 565 if (num_segs)
eab0f8f0 566 nexthop_add_srv6_seg6(&nh, &seg6_segs);
f16de90b 567
77a44d94
SW
568 return nh;
569}
570
20822f9d 571static uint8_t parse_multipath_nexthops_unicast(ns_id_t ns_id,
0eb97b86 572 struct nexthop_group *ng,
20822f9d
SW
573 struct rtmsg *rtm,
574 struct rtnexthop *rtnh,
575 struct rtattr **tb,
576 void *prefsrc, vrf_id_t vrf_id)
577{
578 void *gate = NULL;
579 struct interface *ifp = NULL;
580 int index = 0;
581 /* MPLS labels */
582 mpls_label_t labels[MPLS_MAX_LABELS] = {0};
583 int num_labels = 0;
b9596f13 584 enum seg6local_action_t seg6l_act = ZEBRA_SEG6_LOCAL_ACTION_UNSPEC;
1bda3e62
HS
585 struct seg6local_context seg6l_ctx = {};
586 struct in6_addr seg6_segs = {};
f16de90b 587 int num_segs = 0;
20822f9d
SW
588 struct rtattr *rtnh_tb[RTA_MAX + 1] = {};
589
590 int len = RTA_PAYLOAD(tb[RTA_MULTIPATH]);
591 vrf_id_t nh_vrf_id = vrf_id;
592
20822f9d
SW
593 for (;;) {
594 struct nexthop *nh = NULL;
595
596 if (len < (int)sizeof(*rtnh) || rtnh->rtnh_len > len)
597 break;
598
599 index = rtnh->rtnh_ifindex;
600 if (index) {
601 /*
602 * Yes we are looking this up
603 * for every nexthop and just
604 * using the last one looked
605 * up right now
606 */
607 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
608 index);
609 if (ifp)
096f7609 610 nh_vrf_id = ifp->vrf->vrf_id;
20822f9d
SW
611 else {
612 flog_warn(
613 EC_ZEBRA_UNKNOWN_INTERFACE,
614 "%s: Unknown interface %u specified, defaulting to VRF_DEFAULT",
15569c58 615 __func__, index);
20822f9d
SW
616 nh_vrf_id = VRF_DEFAULT;
617 }
618 } else
619 nh_vrf_id = vrf_id;
620
621 if (rtnh->rtnh_len > sizeof(*rtnh)) {
20822f9d
SW
622 netlink_parse_rtattr(rtnh_tb, RTA_MAX, RTNH_DATA(rtnh),
623 rtnh->rtnh_len - sizeof(*rtnh));
624 if (rtnh_tb[RTA_GATEWAY])
625 gate = RTA_DATA(rtnh_tb[RTA_GATEWAY]);
626 if (rtnh_tb[RTA_ENCAP] && rtnh_tb[RTA_ENCAP_TYPE]
627 && *(uint16_t *)RTA_DATA(rtnh_tb[RTA_ENCAP_TYPE])
628 == LWTUNNEL_ENCAP_MPLS) {
629 num_labels = parse_encap_mpls(
630 rtnh_tb[RTA_ENCAP], labels);
631 }
d49e6c4a
HS
632 if (rtnh_tb[RTA_ENCAP] && rtnh_tb[RTA_ENCAP_TYPE]
633 && *(uint16_t *)RTA_DATA(rtnh_tb[RTA_ENCAP_TYPE])
634 == LWTUNNEL_ENCAP_SEG6_LOCAL) {
635 seg6l_act = parse_encap_seg6local(
636 rtnh_tb[RTA_ENCAP], &seg6l_ctx);
637 }
f16de90b
HS
638 if (rtnh_tb[RTA_ENCAP] && rtnh_tb[RTA_ENCAP_TYPE]
639 && *(uint16_t *)RTA_DATA(rtnh_tb[RTA_ENCAP_TYPE])
640 == LWTUNNEL_ENCAP_SEG6) {
641 num_segs = parse_encap_seg6(rtnh_tb[RTA_ENCAP],
642 &seg6_segs);
643 }
20822f9d
SW
644 }
645
f3354e16
SW
646 if (gate && rtm->rtm_family == AF_INET) {
647 if (index)
0eb97b86
MS
648 nh = nexthop_from_ipv4_ifindex(
649 gate, prefsrc, index, nh_vrf_id);
f3354e16 650 else
0eb97b86
MS
651 nh = nexthop_from_ipv4(gate, prefsrc,
652 nh_vrf_id);
f3354e16
SW
653 } else if (gate && rtm->rtm_family == AF_INET6) {
654 if (index)
0eb97b86
MS
655 nh = nexthop_from_ipv6_ifindex(
656 gate, index, nh_vrf_id);
f3354e16 657 else
0eb97b86 658 nh = nexthop_from_ipv6(gate, nh_vrf_id);
20822f9d 659 } else
0eb97b86 660 nh = nexthop_from_ifindex(index, nh_vrf_id);
20822f9d
SW
661
662 if (nh) {
df7fb580
DS
663 nh->weight = rtnh->rtnh_hops + 1;
664
20822f9d
SW
665 if (num_labels)
666 nexthop_add_labels(nh, ZEBRA_LSP_STATIC,
667 num_labels, labels);
668
d49e6c4a 669 if (seg6l_act != ZEBRA_SEG6_LOCAL_ACTION_UNSPEC)
eab0f8f0
HS
670 nexthop_add_srv6_seg6local(nh, seg6l_act,
671 &seg6l_ctx);
d49e6c4a 672
f16de90b 673 if (num_segs)
eab0f8f0 674 nexthop_add_srv6_seg6(nh, &seg6_segs);
f16de90b 675
20822f9d
SW
676 if (rtnh->rtnh_flags & RTNH_F_ONLINK)
677 SET_FLAG(nh->flags, NEXTHOP_FLAG_ONLINK);
0eb97b86
MS
678
679 /* Add to temporary list */
680 nexthop_group_add_sorted(ng, nh);
20822f9d
SW
681 }
682
683 if (rtnh->rtnh_len == 0)
684 break;
685
686 len -= NLMSG_ALIGN(rtnh->rtnh_len);
687 rtnh = RTNH_NEXT(rtnh);
688 }
689
0eb97b86 690 uint8_t nhop_num = nexthop_group_nexthop_num(ng);
20822f9d
SW
691
692 return nhop_num;
693}
694
718e3744 695/* Looking up routing table by netlink interface. */
45f0a10b
DS
696int netlink_route_change_read_unicast_internal(struct nlmsghdr *h,
697 ns_id_t ns_id, int startup,
698 struct zebra_dplane_ctx *ctx)
718e3744 699{
d62a17ae 700 int len;
701 struct rtmsg *rtm;
702 struct rtattr *tb[RTA_MAX + 1];
acde7f6b 703 uint32_t flags = 0;
d62a17ae 704 struct prefix p;
792fa92e 705 struct prefix_ipv6 src_p = {};
78dd30b2 706 vrf_id_t vrf_id;
6a6d11a3 707 bool selfroute;
d62a17ae 708
709 char anyaddr[16] = {0};
710
915902cb 711 int proto = ZEBRA_ROUTE_KERNEL;
d62a17ae 712 int index = 0;
713 int table;
714 int metric = 0;
d7c0a89a 715 uint32_t mtu = 0;
25715c7e 716 uint8_t distance = 0;
4e40b6d6 717 route_tag_t tag = 0;
fcc89a9c 718 uint32_t nhe_id = 0;
d62a17ae 719
720 void *dest = NULL;
721 void *gate = NULL;
722 void *prefsrc = NULL; /* IPv4 preferred source host address */
723 void *src = NULL; /* IPv6 srcdest source prefix */
e655a03c 724 enum blackhole_type bh_type = BLACKHOLE_UNSPEC;
d62a17ae 725
3cee2135
DS
726 frrtrace(3, frr_zebra, netlink_route_change_read_unicast, h, ns_id,
727 startup);
728
d62a17ae 729 rtm = NLMSG_DATA(h);
730
731 if (startup && h->nlmsg_type != RTM_NEWROUTE)
732 return 0;
e655a03c
DL
733 switch (rtm->rtm_type) {
734 case RTN_UNICAST:
735 break;
736 case RTN_BLACKHOLE:
737 bh_type = BLACKHOLE_NULL;
738 break;
739 case RTN_UNREACHABLE:
740 bh_type = BLACKHOLE_REJECT;
741 break;
742 case RTN_PROHIBIT:
743 bh_type = BLACKHOLE_ADMINPROHIB;
744 break;
745 default:
8c8f250b
DS
746 if (IS_ZEBRA_DEBUG_KERNEL)
747 zlog_debug("Route rtm_type: %s(%d) intentionally ignoring",
748 nl_rttype_to_str(rtm->rtm_type),
749 rtm->rtm_type);
d62a17ae 750 return 0;
e655a03c 751 }
d62a17ae 752
753 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct rtmsg));
9bdf8618 754 if (len < 0) {
15569c58
DA
755 zlog_err(
756 "%s: Message received from netlink is of a broken size %d %zu",
757 __func__, h->nlmsg_len,
758 (size_t)NLMSG_LENGTH(sizeof(struct rtmsg)));
d62a17ae 759 return -1;
9bdf8618 760 }
d62a17ae 761
d62a17ae 762 netlink_parse_rtattr(tb, RTA_MAX, RTM_RTA(rtm), len);
763
764 if (rtm->rtm_flags & RTM_F_CLONED)
765 return 0;
766 if (rtm->rtm_protocol == RTPROT_REDIRECT)
767 return 0;
768 if (rtm->rtm_protocol == RTPROT_KERNEL)
769 return 0;
770
6a6d11a3
NN
771 selfroute = is_selfroute(rtm->rtm_protocol);
772
45f0a10b
DS
773 if (!startup && selfroute && h->nlmsg_type == RTM_NEWROUTE &&
774 !zrouter.asic_offloaded && !ctx) {
6ab5222f
DS
775 if (IS_ZEBRA_DEBUG_KERNEL)
776 zlog_debug("Route type: %d Received that we think we have originated, ignoring",
777 rtm->rtm_protocol);
d62a17ae 778 return 0;
6ab5222f 779 }
d62a17ae 780
781 /* We don't care about change notifications for the MPLS table. */
782 /* TODO: Revisit this. */
783 if (rtm->rtm_family == AF_MPLS)
784 return 0;
785
786 /* Table corresponding to route. */
787 if (tb[RTA_TABLE])
788 table = *(int *)RTA_DATA(tb[RTA_TABLE]);
789 else
790 table = rtm->rtm_table;
791
792 /* Map to VRF */
78dd30b2 793 vrf_id = vrf_lookup_by_table(table, ns_id);
d62a17ae 794 if (vrf_id == VRF_DEFAULT) {
795 if (!is_zebra_valid_kernel_table(table)
796 && !is_zebra_main_routing_table(table))
797 return 0;
798 }
799
5a3cf853
DS
800 if (rtm->rtm_flags & RTM_F_TRAP)
801 flags |= ZEBRA_FLAG_TRAPPED;
802 if (rtm->rtm_flags & RTM_F_OFFLOAD)
803 flags |= ZEBRA_FLAG_OFFLOADED;
0d32fbee
DS
804 if (rtm->rtm_flags & RTM_F_OFFLOAD_FAILED)
805 flags |= ZEBRA_FLAG_OFFLOAD_FAILED;
5a3cf853 806
a048d523
DS
807 if (h->nlmsg_flags & NLM_F_APPEND)
808 flags |= ZEBRA_FLAG_OUTOFSYNC;
809
d62a17ae 810 /* Route which inserted by Zebra. */
6a6d11a3 811 if (selfroute) {
d62a17ae 812 flags |= ZEBRA_FLAG_SELFROUTE;
38e40db1 813 proto = proto2zebra(rtm->rtm_protocol, rtm->rtm_family, false);
915902cb 814 }
d62a17ae 815 if (tb[RTA_OIF])
816 index = *(int *)RTA_DATA(tb[RTA_OIF]);
817
818 if (tb[RTA_DST])
819 dest = RTA_DATA(tb[RTA_DST]);
820 else
821 dest = anyaddr;
822
823 if (tb[RTA_SRC])
824 src = RTA_DATA(tb[RTA_SRC]);
825 else
826 src = anyaddr;
827
828 if (tb[RTA_PREFSRC])
829 prefsrc = RTA_DATA(tb[RTA_PREFSRC]);
830
831 if (tb[RTA_GATEWAY])
832 gate = RTA_DATA(tb[RTA_GATEWAY]);
833
fcc89a9c
SW
834 if (tb[RTA_NH_ID])
835 nhe_id = *(uint32_t *)RTA_DATA(tb[RTA_NH_ID]);
836
f19435a8
DS
837 if (tb[RTA_PRIORITY])
838 metric = *(int *)RTA_DATA(tb[RTA_PRIORITY]);
d62a17ae 839
4e40b6d6
KK
840#if defined(SUPPORT_REALMS)
841 if (tb[RTA_FLOW])
842 tag = *(uint32_t *)RTA_DATA(tb[RTA_FLOW]);
843#endif
844
f19435a8
DS
845 if (tb[RTA_METRICS]) {
846 struct rtattr *mxrta[RTAX_MAX + 1];
d62a17ae 847
996c9314 848 netlink_parse_rtattr(mxrta, RTAX_MAX, RTA_DATA(tb[RTA_METRICS]),
f19435a8 849 RTA_PAYLOAD(tb[RTA_METRICS]));
d62a17ae 850
f19435a8 851 if (mxrta[RTAX_MTU])
d7c0a89a 852 mtu = *(uint32_t *)RTA_DATA(mxrta[RTAX_MTU]);
d62a17ae 853 }
854
855 if (rtm->rtm_family == AF_INET) {
856 p.family = AF_INET;
930571d2 857 if (rtm->rtm_dst_len > IPV4_MAX_BITLEN) {
e17d9b2d 858 zlog_err(
75829703 859 "Invalid destination prefix length: %u received from kernel route change",
930571d2 860 rtm->rtm_dst_len);
e17d9b2d 861 return -1;
930571d2 862 }
d62a17ae 863 memcpy(&p.u.prefix4, dest, 4);
864 p.prefixlen = rtm->rtm_dst_len;
865
1f610a1f 866 if (rtm->rtm_src_len != 0) {
9df414fe 867 flog_warn(
e914ccbe 868 EC_ZEBRA_UNSUPPORTED_V4_SRCDEST,
2dbe669b
DA
869 "unsupported IPv4 sourcedest route (dest %pFX vrf %u)",
870 &p, vrf_id);
1f610a1f
CF
871 return 0;
872 }
930571d2 873
1f610a1f
CF
874 /* Force debug below to not display anything for source */
875 src_p.prefixlen = 0;
d62a17ae 876 } else if (rtm->rtm_family == AF_INET6) {
877 p.family = AF_INET6;
930571d2 878 if (rtm->rtm_dst_len > IPV6_MAX_BITLEN) {
e17d9b2d 879 zlog_err(
75829703 880 "Invalid destination prefix length: %u received from kernel route change",
930571d2 881 rtm->rtm_dst_len);
e17d9b2d 882 return -1;
930571d2 883 }
d62a17ae 884 memcpy(&p.u.prefix6, dest, 16);
885 p.prefixlen = rtm->rtm_dst_len;
886
887 src_p.family = AF_INET6;
930571d2 888 if (rtm->rtm_src_len > IPV6_MAX_BITLEN) {
e17d9b2d 889 zlog_err(
75829703 890 "Invalid source prefix length: %u received from kernel route change",
930571d2 891 rtm->rtm_src_len);
e17d9b2d 892 return -1;
930571d2 893 }
d62a17ae 894 memcpy(&src_p.prefix, src, 16);
895 src_p.prefixlen = rtm->rtm_src_len;
deb28338
MS
896 } else {
897 /* We only handle the AFs we handle... */
898 if (IS_ZEBRA_DEBUG_KERNEL)
899 zlog_debug("%s: unknown address-family %u", __func__,
900 rtm->rtm_family);
901 return 0;
d62a17ae 902 }
903
25715c7e
DS
904 /*
905 * For ZEBRA_ROUTE_KERNEL types:
906 *
907 * The metric/priority of the route received from the kernel
908 * is a 32 bit number. We are going to interpret the high
909 * order byte as the Admin Distance and the low order 3 bytes
910 * as the metric.
911 *
912 * This will allow us to do two things:
913 * 1) Allow the creation of kernel routes that can be
914 * overridden by zebra.
915 * 2) Allow the old behavior for 'most' kernel route types
916 * if a user enters 'ip route ...' v4 routes get a metric
917 * of 0 and v6 routes get a metric of 1024. Both of these
918 * values will end up with a admin distance of 0, which
919 * will cause them to win for the purposes of zebra.
920 */
921 if (proto == ZEBRA_ROUTE_KERNEL) {
922 distance = (metric >> 24) & 0xFF;
996c9314 923 metric = (metric & 0x00FFFFFF);
25715c7e
DS
924 }
925
d62a17ae 926 if (IS_ZEBRA_DEBUG_KERNEL) {
d62a17ae 927 char buf2[PREFIX_STRLEN];
2dbe669b 928
bd47f3a3 929 zlog_debug(
2dbe669b
DA
930 "%s %pFX%s%s vrf %s(%u) table_id: %u metric: %d Admin Distance: %d",
931 nl_msg_type_to_str(h->nlmsg_type), &p,
bd47f3a3
JU
932 src_p.prefixlen ? " from " : "",
933 src_p.prefixlen ? prefix2str(&src_p, buf2, sizeof(buf2))
934 : "",
935 vrf_id_to_name(vrf_id), vrf_id, table, metric,
936 distance);
d62a17ae 937 }
938
939 afi_t afi = AFI_IP;
940 if (rtm->rtm_family == AF_INET6)
941 afi = AFI_IP6;
942
943 if (h->nlmsg_type == RTM_NEWROUTE) {
07fd1f7e
DS
944 struct route_entry *re;
945 struct nexthop_group *ng = NULL;
946
947 re = zebra_rib_route_entry_new(vrf_id, proto, 0, flags, nhe_id,
948 table, metric, mtu, distance,
949 tag);
950 if (!nhe_id)
951 ng = nexthop_group_new();
8795f904 952
fd36be7e 953 if (!tb[RTA_MULTIPATH]) {
07fd1f7e 954 struct nexthop *nexthop, nh;
8795f904 955
77a44d94
SW
956 if (!nhe_id) {
957 nh = parse_nexthop_unicast(
958 ns_id, rtm, tb, bh_type, index, prefsrc,
20822f9d 959 gate, afi, vrf_id);
07fd1f7e
DS
960
961 nexthop = nexthop_new();
962 *nexthop = nh;
963 nexthop_group_add_sorted(ng, nexthop);
87da6a60 964 }
fd36be7e 965 } else {
d62a17ae 966 /* This is a multipath route */
d62a17ae 967 struct rtnexthop *rtnh =
968 (struct rtnexthop *)RTA_DATA(tb[RTA_MULTIPATH]);
d62a17ae 969
20822f9d 970 if (!nhe_id) {
0eb97b86
MS
971 uint8_t nhop_num;
972
973 /* Use temporary list of nexthops; parse
974 * message payload's nexthops.
975 */
0eb97b86 976 nhop_num =
20822f9d 977 parse_multipath_nexthops_unicast(
0eb97b86 978 ns_id, ng, rtm, rtnh, tb,
20822f9d
SW
979 prefsrc, vrf_id);
980
981 zserv_nexthop_num_warn(
982 __func__, (const struct prefix *)&p,
983 nhop_num);
0eb97b86
MS
984
985 if (nhop_num == 0) {
986 nexthop_group_delete(&ng);
987 ng = NULL;
988 }
d62a17ae 989 }
07fd1f7e 990 }
478c62e2 991 if (nhe_id || ng) {
45f0a10b
DS
992 dplane_rib_add_multipath(afi, SAFI_UNICAST, &p, &src_p,
993 re, ng, startup, ctx);
478c62e2
DS
994 if (ng)
995 nexthop_group_delete(&ng);
996 } else {
07fd1f7e
DS
997 /*
998 * I really don't see how this is possible
999 * but since we are testing for it let's
1000 * let the end user know why the route
1001 * that was just received was swallowed
1002 * up and forgotten
1003 */
1004 zlog_err(
1005 "%s: %pFX multipath RTM_NEWROUTE has a invalid nexthop group from the kernel",
1006 __func__, &p);
1007 XFREE(MTYPE_RE, re);
d62a17ae 1008 }
1009 } else {
45f0a10b
DS
1010 if (ctx) {
1011 zlog_err(
1012 "%s: %pFX RTM_DELROUTE received but received a context as well",
1013 __func__, &p);
1014 return 0;
1015 }
1016
bc541126
SW
1017 if (nhe_id) {
1018 rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0, flags,
1019 &p, &src_p, NULL, nhe_id, table, metric,
3ceae22b 1020 distance, true);
bc541126
SW
1021 } else {
1022 if (!tb[RTA_MULTIPATH]) {
1023 struct nexthop nh;
760f39dc
HS
1024
1025 nh = parse_nexthop_unicast(
1026 ns_id, rtm, tb, bh_type, index, prefsrc,
1027 gate, afi, vrf_id);
bc541126
SW
1028 rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0,
1029 flags, &p, &src_p, &nh, 0, table,
3ceae22b 1030 metric, distance, true);
8ba5bd58 1031 } else {
bc541126
SW
1032 /* XXX: need to compare the entire list of
1033 * nexthops here for NLM_F_APPEND stupidity */
1034 rib_delete(afi, SAFI_UNICAST, vrf_id, proto, 0,
1035 flags, &p, &src_p, NULL, 0, table,
3ceae22b 1036 metric, distance, true);
8ba5bd58 1037 }
d62a17ae 1038 }
1039 }
1040
45f0a10b
DS
1041 return 1;
1042}
1043
1044static int netlink_route_change_read_unicast(struct nlmsghdr *h, ns_id_t ns_id,
1045 int startup)
1046{
1047 return netlink_route_change_read_unicast_internal(h, ns_id, startup,
1048 NULL);
718e3744 1049}
1050
e3be0432
DS
1051static struct mcast_route_data *mroute = NULL;
1052
2414abd3 1053static int netlink_route_change_read_multicast(struct nlmsghdr *h,
d62a17ae 1054 ns_id_t ns_id, int startup)
565fdc75 1055{
d62a17ae 1056 int len;
1057 struct rtmsg *rtm;
1058 struct rtattr *tb[RTA_MAX + 1];
1059 struct mcast_route_data *m;
d62a17ae 1060 int iif = 0;
1061 int count;
1062 int oif[256];
1063 int oif_count = 0;
d62a17ae 1064 char oif_list[256] = "\0";
78dd30b2 1065 vrf_id_t vrf;
43b5cc5e 1066 int table;
d62a17ae 1067
afeb8524
DL
1068 assert(mroute);
1069 m = mroute;
d62a17ae 1070
1071 rtm = NLMSG_DATA(h);
1072
1073 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct rtmsg));
1074
d62a17ae 1075 netlink_parse_rtattr(tb, RTA_MAX, RTM_RTA(rtm), len);
90d82769 1076
43b5cc5e
DS
1077 if (tb[RTA_TABLE])
1078 table = *(int *)RTA_DATA(tb[RTA_TABLE]);
1079 else
1080 table = rtm->rtm_table;
1081
78dd30b2 1082 vrf = vrf_lookup_by_table(table, ns_id);
43b5cc5e 1083
d62a17ae 1084 if (tb[RTA_IIF])
1085 iif = *(int *)RTA_DATA(tb[RTA_IIF]);
1086
4d3b4b18
MR
1087 if (tb[RTA_SRC]) {
1088 if (rtm->rtm_family == RTNL_FAMILY_IPMR)
1089 m->src.ipaddr_v4 =
1090 *(struct in_addr *)RTA_DATA(tb[RTA_SRC]);
1091 else
1092 m->src.ipaddr_v6 =
1093 *(struct in6_addr *)RTA_DATA(tb[RTA_SRC]);
1094 }
d62a17ae 1095
4d3b4b18
MR
1096 if (tb[RTA_DST]) {
1097 if (rtm->rtm_family == RTNL_FAMILY_IPMR)
1098 m->grp.ipaddr_v4 =
1099 *(struct in_addr *)RTA_DATA(tb[RTA_DST]);
1100 else
1101 m->grp.ipaddr_v6 =
1102 *(struct in6_addr *)RTA_DATA(tb[RTA_DST]);
1103 }
d62a17ae 1104
62819462 1105 if (tb[RTA_EXPIRES])
d62a17ae 1106 m->lastused = *(unsigned long long *)RTA_DATA(tb[RTA_EXPIRES]);
1107
1108 if (tb[RTA_MULTIPATH]) {
1109 struct rtnexthop *rtnh =
1110 (struct rtnexthop *)RTA_DATA(tb[RTA_MULTIPATH]);
1111
1112 len = RTA_PAYLOAD(tb[RTA_MULTIPATH]);
1113 for (;;) {
1114 if (len < (int)sizeof(*rtnh) || rtnh->rtnh_len > len)
1115 break;
1116
1117 oif[oif_count] = rtnh->rtnh_ifindex;
1118 oif_count++;
1119
3c04071d
SW
1120 if (rtnh->rtnh_len == 0)
1121 break;
1122
d62a17ae 1123 len -= NLMSG_ALIGN(rtnh->rtnh_len);
1124 rtnh = RTNH_NEXT(rtnh);
1125 }
1126 }
1127
4d3b4b18
MR
1128 if (rtm->rtm_family == RTNL_FAMILY_IPMR) {
1129 SET_IPADDR_V4(&m->src);
1130 SET_IPADDR_V4(&m->grp);
1131 } else if (rtm->rtm_family == RTNL_FAMILY_IP6MR) {
1132 SET_IPADDR_V6(&m->src);
1133 SET_IPADDR_V6(&m->grp);
1134 } else {
1135 zlog_warn("%s: Invalid rtm_family received", __func__);
1136 return 0;
1137 }
1138
d62a17ae 1139 if (IS_ZEBRA_DEBUG_KERNEL) {
822c9af2
SW
1140 struct interface *ifp = NULL;
1141 struct zebra_vrf *zvrf = NULL;
1142
d62a17ae 1143 for (count = 0; count < oif_count; count++) {
1144 ifp = if_lookup_by_index(oif[count], vrf);
1145 char temp[256];
1146
772270f3
QY
1147 snprintf(temp, sizeof(temp), "%s(%d) ",
1148 ifp ? ifp->name : "Unknown", oif[count]);
eab4a5c2 1149 strlcat(oif_list, temp, sizeof(oif_list));
d62a17ae 1150 }
822c9af2 1151 zvrf = zebra_vrf_lookup_by_id(vrf);
d62a17ae 1152 ifp = if_lookup_by_index(iif, vrf);
822c9af2 1153 zlog_debug(
4d3b4b18 1154 "MCAST VRF: %s(%d) %s (%pIA,%pIA) IIF: %s(%d) OIF: %s jiffies: %lld",
bd47f3a3 1155 zvrf_name(zvrf), vrf, nl_msg_type_to_str(h->nlmsg_type),
4d3b4b18
MR
1156 &m->src, &m->grp, ifp ? ifp->name : "Unknown", iif,
1157 oif_list, m->lastused);
90d82769 1158 }
d62a17ae 1159 return 0;
565fdc75
DS
1160}
1161
2414abd3 1162int netlink_route_change(struct nlmsghdr *h, ns_id_t ns_id, int startup)
565fdc75 1163{
d62a17ae 1164 int len;
d62a17ae 1165 struct rtmsg *rtm;
1166
1167 rtm = NLMSG_DATA(h);
1168
1169 if (!(h->nlmsg_type == RTM_NEWROUTE || h->nlmsg_type == RTM_DELROUTE)) {
1170 /* If this is not route add/delete message print warning. */
9165c5f5 1171 zlog_debug("Kernel message: %s NS %u",
87b5d1b0 1172 nl_msg_type_to_str(h->nlmsg_type), ns_id);
d62a17ae 1173 return 0;
1174 }
1175
afeb8524
DL
1176 switch (rtm->rtm_family) {
1177 case AF_INET:
1178 case AF_INET6:
1179 break;
1180
1181 case RTNL_FAMILY_IPMR:
1182 case RTNL_FAMILY_IP6MR:
1183 /* notifications on IPMR are irrelevant to zebra, we only care
1184 * about responses to RTM_GETROUTE requests we sent.
1185 */
1186 return 0;
1187
1188 default:
9df414fe 1189 flog_warn(
e914ccbe 1190 EC_ZEBRA_UNKNOWN_FAMILY,
87b5d1b0
DS
1191 "Invalid address family: %u received from kernel route change: %s",
1192 rtm->rtm_family, nl_msg_type_to_str(h->nlmsg_type));
8a1b681c
SW
1193 return 0;
1194 }
1195
d62a17ae 1196 /* Connected route. */
1197 if (IS_ZEBRA_DEBUG_KERNEL)
78dd30b2 1198 zlog_debug("%s %s %s proto %s NS %u",
d62a17ae 1199 nl_msg_type_to_str(h->nlmsg_type),
1200 nl_family_to_str(rtm->rtm_family),
1201 nl_rttype_to_str(rtm->rtm_type),
78dd30b2 1202 nl_rtproto_to_str(rtm->rtm_protocol), ns_id);
d62a17ae 1203
d62a17ae 1204
1205 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct rtmsg));
9bdf8618 1206 if (len < 0) {
15569c58
DA
1207 zlog_err(
1208 "%s: Message received from netlink is of a broken size: %d %zu",
1209 __func__, h->nlmsg_len,
1210 (size_t)NLMSG_LENGTH(sizeof(struct rtmsg)));
d62a17ae 1211 return -1;
9bdf8618 1212 }
d62a17ae 1213
afeb8524
DL
1214 /* these are "magic" kernel-managed *unicast* routes used for
1215 * outputting locally generated multicast traffic (which uses unicast
1216 * handling on Linux because ~reasons~.
1217 */
e655a03c 1218 if (rtm->rtm_type == RTN_MULTICAST)
afeb8524
DL
1219 return 0;
1220
1221 netlink_route_change_read_unicast(h, ns_id, startup);
d62a17ae 1222 return 0;
565fdc75
DS
1223}
1224
289602d7 1225/* Request for specific route information from the kernel */
d62a17ae 1226static int netlink_request_route(struct zebra_ns *zns, int family, int type)
289602d7 1227{
d62a17ae 1228 struct {
1229 struct nlmsghdr n;
1230 struct rtmsg rtm;
1231 } req;
1232
1233 /* Form the request, specifying filter (rtattr) if needed. */
1234 memset(&req, 0, sizeof(req));
1235 req.n.nlmsg_type = type;
718f9b0f 1236 req.n.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
d62a17ae 1237 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
1238 req.rtm.rtm_family = family;
1239
fd3f8e52 1240 return netlink_request(&zns->netlink_cmd, &req);
289602d7 1241}
1242
718e3744 1243/* Routing table read function using netlink interface. Only called
1244 bootstrap time. */
d62a17ae 1245int netlink_route_read(struct zebra_ns *zns)
718e3744 1246{
d62a17ae 1247 int ret;
85a75f1e
MS
1248 struct zebra_dplane_info dp_info;
1249
1250 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
d62a17ae 1251
1252 /* Get IPv4 routing table. */
1253 ret = netlink_request_route(zns, AF_INET, RTM_GETROUTE);
1254 if (ret < 0)
1255 return ret;
1256 ret = netlink_parse_info(netlink_route_change_read_unicast,
9bfadae8 1257 &zns->netlink_cmd, &dp_info, 0, true);
d62a17ae 1258 if (ret < 0)
1259 return ret;
1260
1261 /* Get IPv6 routing table. */
1262 ret = netlink_request_route(zns, AF_INET6, RTM_GETROUTE);
1263 if (ret < 0)
1264 return ret;
1265 ret = netlink_parse_info(netlink_route_change_read_unicast,
9bfadae8 1266 &zns->netlink_cmd, &dp_info, 0, true);
d62a17ae 1267 if (ret < 0)
1268 return ret;
1269
1270 return 0;
718e3744 1271}
1272
0be6e7d7
JU
1273/*
1274 * The function returns true if the gateway info could be added
1275 * to the message, otherwise false is returned.
1276 */
1277static bool _netlink_route_add_gateway_info(uint8_t route_family,
312a6bee
JU
1278 uint8_t gw_family,
1279 struct nlmsghdr *nlmsg,
1280 size_t req_size, int bytelen,
1281 const struct nexthop *nexthop)
40c7bdb0 1282{
d62a17ae 1283 if (route_family == AF_MPLS) {
1284 struct gw_family_t gw_fam;
1285
1286 gw_fam.family = gw_family;
1287 if (gw_family == AF_INET)
1288 memcpy(&gw_fam.gate.ipv4, &nexthop->gate.ipv4, bytelen);
1289 else
1290 memcpy(&gw_fam.gate.ipv6, &nexthop->gate.ipv6, bytelen);
0be6e7d7
JU
1291 if (!nl_attr_put(nlmsg, req_size, RTA_VIA, &gw_fam.family,
1292 bytelen + 2))
1293 return false;
d62a17ae 1294 } else {
92d6f769
K
1295 if (!(nexthop->rparent
1296 && IS_MAPPED_IPV6(&nexthop->rparent->gate.ipv6))) {
1297 if (gw_family == AF_INET) {
1298 if (!nl_attr_put(nlmsg, req_size, RTA_GATEWAY,
1299 &nexthop->gate.ipv4, bytelen))
1300 return false;
1301 } else {
1302 if (!nl_attr_put(nlmsg, req_size, RTA_GATEWAY,
1303 &nexthop->gate.ipv6, bytelen))
1304 return false;
1305 }
0be6e7d7 1306 }
d62a17ae 1307 }
0be6e7d7
JU
1308
1309 return true;
40c7bdb0 1310}
1311
b7537db6 1312static int build_label_stack(struct mpls_label_stack *nh_label,
5fa6bfff 1313 enum lsp_types_t nh_label_type,
b7537db6
SW
1314 mpls_lse_t *out_lse, char *label_buf,
1315 size_t label_buf_size)
1316{
1317 char label_buf1[20];
1318 int num_labels = 0;
1319
1320 for (int i = 0; nh_label && i < nh_label->num_labels; i++) {
0bbad9d1
SW
1321 if (nh_label_type != ZEBRA_LSP_EVPN &&
1322 nh_label->label[i] == MPLS_LABEL_IMPLICIT_NULL)
b7537db6
SW
1323 continue;
1324
1325 if (IS_ZEBRA_DEBUG_KERNEL) {
1326 if (!num_labels)
7533cad7
QY
1327 snprintf(label_buf, label_buf_size, "label %u",
1328 nh_label->label[i]);
b7537db6 1329 else {
772270f3
QY
1330 snprintf(label_buf1, sizeof(label_buf1), "/%u",
1331 nh_label->label[i]);
b7537db6
SW
1332 strlcat(label_buf, label_buf1, label_buf_size);
1333 }
1334 }
1335
5fa6bfff
SW
1336 if (nh_label_type == ZEBRA_LSP_EVPN)
1337 out_lse[num_labels] = label2vni(&nh_label->label[i]);
1338 else
1339 out_lse[num_labels] =
1340 mpls_lse_encode(nh_label->label[i], 0, 0, 0);
b7537db6
SW
1341 num_labels++;
1342 }
1343
1344 return num_labels;
1345}
1346
e611f5da
SW
1347static bool _netlink_nexthop_encode_dvni_label(const struct nexthop *nexthop,
1348 struct nlmsghdr *nlmsg,
1349 mpls_lse_t *out_lse,
1350 size_t buflen, char *label_buf)
1351{
1352 struct in_addr ipv4;
1353
1354 if (!nl_attr_put64(nlmsg, buflen, LWTUNNEL_IP_ID,
1355 htonll((uint64_t)out_lse[0])))
1356 return false;
1357
1358 if (nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
1359 if (!nl_attr_put(nlmsg, buflen, LWTUNNEL_IP_DST,
1360 &nexthop->gate.ipv4, 4))
1361 return false;
1362
1363 } else if (nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
1364 if (IS_MAPPED_IPV6(&nexthop->gate.ipv6)) {
1365 ipv4_mapped_ipv6_to_ipv4(&nexthop->gate.ipv6, &ipv4);
1366 if (!nl_attr_put(nlmsg, buflen, LWTUNNEL_IP_DST, &ipv4,
1367 4))
1368 return false;
1369
1370 } else {
1371 if (!nl_attr_put(nlmsg, buflen, LWTUNNEL_IP_DST,
1372 &nexthop->gate.ipv6, 16))
1373 return false;
1374 }
1375 } else {
1376 if (IS_ZEBRA_DEBUG_KERNEL)
1377 zlog_debug(
1378 "%s: nexthop %pNHv %s must NEXTHOP_TYPE_IPV*_IFINDEX to be vxlan encapped",
1379 __func__, nexthop, label_buf);
1380
1381 return false;
1382 }
1383
1384 return true;
1385}
1386
5fa6bfff 1387static bool _netlink_route_encode_label_info(const struct nexthop *nexthop,
a757997c
JU
1388 struct nlmsghdr *nlmsg,
1389 size_t buflen, struct rtmsg *rtmsg,
1390 char *label_buf,
1391 size_t label_buf_size)
fa713d9e 1392{
d62a17ae 1393 mpls_lse_t out_lse[MPLS_MAX_LABELS];
a757997c 1394 int num_labels;
5fa6bfff
SW
1395 struct rtattr *nest;
1396 struct mpls_label_stack *nh_label;
1397 enum lsp_types_t nh_label_type;
1398
1399 nh_label = nexthop->nh_label;
1400 nh_label_type = nexthop->nh_label_type;
bd47f3a3 1401
d62a17ae 1402 /*
1403 * label_buf is *only* currently used within debugging.
1404 * As such when we assign it we are guarding it inside
1405 * a debug test. If you want to change this make sure
1406 * you fix this assumption
1407 */
1408 label_buf[0] = '\0';
d62a17ae 1409
5fa6bfff
SW
1410 num_labels = build_label_stack(nh_label, nh_label_type, out_lse,
1411 label_buf, label_buf_size);
1412
1413 if (num_labels && nh_label_type == ZEBRA_LSP_EVPN) {
5fa6bfff
SW
1414 if (!nl_attr_put16(nlmsg, buflen, RTA_ENCAP_TYPE,
1415 LWTUNNEL_ENCAP_IP))
1416 return false;
1417
1418 nest = nl_attr_nest(nlmsg, buflen, RTA_ENCAP);
1419 if (!nest)
1420 return false;
1421
e611f5da
SW
1422 if (_netlink_nexthop_encode_dvni_label(nexthop, nlmsg, out_lse,
1423 buflen,
1424 label_buf) == false)
5fa6bfff
SW
1425 return false;
1426
5fa6bfff
SW
1427 nl_attr_nest_end(nlmsg, nest);
1428
1429 } else if (num_labels) {
fa712963
RW
1430 /* Set the BoS bit */
1431 out_lse[num_labels - 1] |= htonl(1 << MPLS_LS_S_SHIFT);
1432
0be6e7d7 1433 if (rtmsg->rtm_family == AF_MPLS) {
a757997c 1434 if (!nl_attr_put(nlmsg, buflen, RTA_NEWDST, &out_lse,
0be6e7d7
JU
1435 num_labels * sizeof(mpls_lse_t)))
1436 return false;
1437 } else {
a757997c
JU
1438 if (!nl_attr_put16(nlmsg, buflen, RTA_ENCAP_TYPE,
1439 LWTUNNEL_ENCAP_MPLS))
0be6e7d7
JU
1440 return false;
1441
a757997c 1442 nest = nl_attr_nest(nlmsg, buflen, RTA_ENCAP);
0be6e7d7
JU
1443 if (!nest)
1444 return false;
1445
a757997c 1446 if (!nl_attr_put(nlmsg, buflen, MPLS_IPTUNNEL_DST,
0be6e7d7
JU
1447 &out_lse,
1448 num_labels * sizeof(mpls_lse_t)))
1449 return false;
312a6bee 1450 nl_attr_nest_end(nlmsg, nest);
66d42727 1451 }
0aabccc0 1452 }
fa713d9e 1453
a757997c
JU
1454 return true;
1455}
1456
1457static bool _netlink_route_encode_nexthop_src(const struct nexthop *nexthop,
1458 int family,
1459 struct nlmsghdr *nlmsg,
1460 size_t buflen, int bytelen)
1461{
1462 if (family == AF_INET) {
1463 if (nexthop->rmap_src.ipv4.s_addr != INADDR_ANY) {
1464 if (!nl_attr_put(nlmsg, buflen, RTA_PREFSRC,
1465 &nexthop->rmap_src.ipv4, bytelen))
1466 return false;
1467 } else if (nexthop->src.ipv4.s_addr != INADDR_ANY) {
1468 if (!nl_attr_put(nlmsg, buflen, RTA_PREFSRC,
1469 &nexthop->src.ipv4, bytelen))
1470 return false;
1471 }
1472 } else if (family == AF_INET6) {
1473 if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->rmap_src.ipv6)) {
1474 if (!nl_attr_put(nlmsg, buflen, RTA_PREFSRC,
1475 &nexthop->rmap_src.ipv6, bytelen))
1476 return false;
1477 } else if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->src.ipv6)) {
1478 if (!nl_attr_put(nlmsg, buflen, RTA_PREFSRC,
1479 &nexthop->src.ipv6, bytelen))
1480 return false;
1481 }
1482 }
1483
1484 return true;
1485}
1486
f463eac7
HS
1487static ssize_t fill_seg6ipt_encap(char *buffer, size_t buflen,
1488 const struct in6_addr *seg)
76fb7ae4
HS
1489{
1490 struct seg6_iptunnel_encap *ipt;
1491 struct ipv6_sr_hdr *srh;
1492 const size_t srhlen = 24;
4df9d859 1493
f463eac7
HS
1494 /*
1495 * Caution: Support only SINGLE-SID, not MULTI-SID
1496 * This function only supports the case where segs represents
1497 * a single SID. If you want to extend the SRv6 functionality,
1498 * you should improve the Boundary Check.
1499 * Ex. In case of set a SID-List include multiple-SIDs as an
1500 * argument of the Transit Behavior, we must support variable
1501 * boundary check for buflen.
1502 */
1503 if (buflen < (sizeof(struct seg6_iptunnel_encap) +
1504 sizeof(struct ipv6_sr_hdr) + 16))
1505 return -1;
1506
76fb7ae4
HS
1507 memset(buffer, 0, buflen);
1508
1509 ipt = (struct seg6_iptunnel_encap *)buffer;
1510 ipt->mode = SEG6_IPTUN_MODE_ENCAP;
1511 srh = ipt->srh;
1512 srh->hdrlen = (srhlen >> 3) - 1;
1513 srh->type = 4;
1514 srh->segments_left = 0;
1515 srh->first_segment = 0;
1516 memcpy(&srh->segments[0], seg, sizeof(struct in6_addr));
1517
1518 return srhlen + 4;
1519}
1520
a757997c
JU
1521/* This function takes a nexthop as argument and adds
1522 * the appropriate netlink attributes to an existing
1523 * netlink message.
1524 *
1525 * @param routedesc: Human readable description of route type
1526 * (direct/recursive, single-/multipath)
1527 * @param bytelen: Length of addresses in bytes.
1528 * @param nexthop: Nexthop information
1529 * @param nlmsg: nlmsghdr structure to fill in.
1530 * @param req_size: The size allocated for the message.
1531 *
1532 * The function returns true if the nexthop could be added
1533 * to the message, otherwise false is returned.
1534 */
1535static bool _netlink_route_build_singlepath(const struct prefix *p,
1536 const char *routedesc, int bytelen,
1537 const struct nexthop *nexthop,
1538 struct nlmsghdr *nlmsg,
1539 struct rtmsg *rtmsg,
1540 size_t req_size, int cmd)
1541{
1542
1543 char label_buf[256];
1544 struct vrf *vrf;
1545 char addrstr[INET6_ADDRSTRLEN];
1546
1547 assert(nexthop);
1548
1549 vrf = vrf_lookup_by_id(nexthop->vrf_id);
1550
5fa6bfff
SW
1551 if (!_netlink_route_encode_label_info(nexthop, nlmsg, req_size, rtmsg,
1552 label_buf, sizeof(label_buf)))
a757997c
JU
1553 return false;
1554
eab0f8f0
HS
1555 if (nexthop->nh_srv6) {
1556 if (nexthop->nh_srv6->seg6local_action !=
1557 ZEBRA_SEG6_LOCAL_ACTION_UNSPEC) {
1558 struct rtattr *nest;
1559 const struct seg6local_context *ctx;
52026569 1560
eab0f8f0
HS
1561 ctx = &nexthop->nh_srv6->seg6local_ctx;
1562 if (!nl_attr_put16(nlmsg, req_size, RTA_ENCAP_TYPE,
1563 LWTUNNEL_ENCAP_SEG6_LOCAL))
52026569 1564 return false;
eab0f8f0
HS
1565
1566 nest = nl_attr_nest(nlmsg, req_size, RTA_ENCAP);
1567 if (!nest)
52026569 1568 return false;
eab0f8f0
HS
1569
1570 switch (nexthop->nh_srv6->seg6local_action) {
1571 case ZEBRA_SEG6_LOCAL_ACTION_END:
1572 if (!nl_attr_put32(nlmsg, req_size,
1573 SEG6_LOCAL_ACTION,
1574 SEG6_LOCAL_ACTION_END))
1575 return false;
1576 break;
1577 case ZEBRA_SEG6_LOCAL_ACTION_END_X:
1578 if (!nl_attr_put32(nlmsg, req_size,
1579 SEG6_LOCAL_ACTION,
1580 SEG6_LOCAL_ACTION_END_X))
1581 return false;
1582 if (!nl_attr_put(nlmsg, req_size,
1583 SEG6_LOCAL_NH6, &ctx->nh6,
1584 sizeof(struct in6_addr)))
1585 return false;
1586 break;
1587 case ZEBRA_SEG6_LOCAL_ACTION_END_T:
1588 if (!nl_attr_put32(nlmsg, req_size,
1589 SEG6_LOCAL_ACTION,
1590 SEG6_LOCAL_ACTION_END_T))
1591 return false;
1592 if (!nl_attr_put32(nlmsg, req_size,
1593 SEG6_LOCAL_TABLE,
1594 ctx->table))
1595 return false;
1596 break;
1597 case ZEBRA_SEG6_LOCAL_ACTION_END_DX4:
1598 if (!nl_attr_put32(nlmsg, req_size,
1599 SEG6_LOCAL_ACTION,
1600 SEG6_LOCAL_ACTION_END_DX4))
1601 return false;
1602 if (!nl_attr_put(nlmsg, req_size,
1603 SEG6_LOCAL_NH4, &ctx->nh4,
1604 sizeof(struct in_addr)))
1605 return false;
1606 break;
1607 case ZEBRA_SEG6_LOCAL_ACTION_END_DT6:
1608 if (!nl_attr_put32(nlmsg, req_size,
1609 SEG6_LOCAL_ACTION,
1610 SEG6_LOCAL_ACTION_END_DT6))
1611 return false;
1612 if (!nl_attr_put32(nlmsg, req_size,
1613 SEG6_LOCAL_TABLE,
1614 ctx->table))
1615 return false;
1616 break;
7eab60a7
RS
1617 case ZEBRA_SEG6_LOCAL_ACTION_END_DT4:
1618 if (!nl_attr_put32(nlmsg, req_size,
1619 SEG6_LOCAL_ACTION,
1620 SEG6_LOCAL_ACTION_END_DT4))
1621 return false;
1622 if (!nl_attr_put32(nlmsg, req_size,
1623 SEG6_LOCAL_VRFTABLE,
1624 ctx->table))
1625 return false;
1626 break;
8bea07e4
CS
1627 case ZEBRA_SEG6_LOCAL_ACTION_END_DT46:
1628 if (!nl_attr_put32(nlmsg, req_size,
1629 SEG6_LOCAL_ACTION,
1630 SEG6_LOCAL_ACTION_END_DT46))
1631 return false;
1632 if (!nl_attr_put32(nlmsg, req_size,
1633 SEG6_LOCAL_VRFTABLE,
1634 ctx->table))
1635 return false;
1636 break;
a98701f0
DS
1637 case ZEBRA_SEG6_LOCAL_ACTION_END_DX2:
1638 case ZEBRA_SEG6_LOCAL_ACTION_END_DX6:
1639 case ZEBRA_SEG6_LOCAL_ACTION_END_B6:
1640 case ZEBRA_SEG6_LOCAL_ACTION_END_B6_ENCAP:
1641 case ZEBRA_SEG6_LOCAL_ACTION_END_BM:
1642 case ZEBRA_SEG6_LOCAL_ACTION_END_S:
1643 case ZEBRA_SEG6_LOCAL_ACTION_END_AS:
1644 case ZEBRA_SEG6_LOCAL_ACTION_END_AM:
1645 case ZEBRA_SEG6_LOCAL_ACTION_END_BPF:
1646 case ZEBRA_SEG6_LOCAL_ACTION_UNSPEC:
eab0f8f0
HS
1647 zlog_err("%s: unsupport seg6local behaviour action=%u",
1648 __func__,
1649 nexthop->nh_srv6->seg6local_action);
0a543b79 1650 return false;
eab0f8f0
HS
1651 }
1652 nl_attr_nest_end(nlmsg, nest);
1653 }
1654
1655 if (!sid_zero(&nexthop->nh_srv6->seg6_segs)) {
1656 char tun_buf[4096];
1657 ssize_t tun_len;
1658 struct rtattr *nest;
1659
1660 if (!nl_attr_put16(nlmsg, req_size, RTA_ENCAP_TYPE,
1661 LWTUNNEL_ENCAP_SEG6))
52026569 1662 return false;
eab0f8f0
HS
1663 nest = nl_attr_nest(nlmsg, req_size, RTA_ENCAP);
1664 if (!nest)
52026569 1665 return false;
eab0f8f0
HS
1666 tun_len = fill_seg6ipt_encap(tun_buf, sizeof(tun_buf),
1667 &nexthop->nh_srv6->seg6_segs);
1668 if (tun_len < 0)
52026569 1669 return false;
eab0f8f0
HS
1670 if (!nl_attr_put(nlmsg, req_size, SEG6_IPTUNNEL_SRH,
1671 tun_buf, tun_len))
52026569 1672 return false;
eab0f8f0 1673 nl_attr_nest_end(nlmsg, nest);
8689b25a 1674 }
76fb7ae4
HS
1675 }
1676
d62a17ae 1677 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK))
1678 rtmsg->rtm_flags |= RTNH_F_ONLINK;
1679
002e5c43 1680 if (is_route_v4_over_v6(rtmsg->rtm_family, nexthop->type)) {
d62a17ae 1681 rtmsg->rtm_flags |= RTNH_F_ONLINK;
0be6e7d7
JU
1682 if (!nl_attr_put(nlmsg, req_size, RTA_GATEWAY, &ipv4_ll, 4))
1683 return false;
1684 if (!nl_attr_put32(nlmsg, req_size, RTA_OIF, nexthop->ifindex))
1685 return false;
d62a17ae 1686
a757997c
JU
1687 if (cmd == RTM_NEWROUTE) {
1688 if (!_netlink_route_encode_nexthop_src(
1689 nexthop, AF_INET, nlmsg, req_size, bytelen))
0be6e7d7
JU
1690 return false;
1691 }
d62a17ae 1692
1693 if (IS_ZEBRA_DEBUG_KERNEL)
9266b315
RZ
1694 zlog_debug("%s: 5549 (%s): %pFX nexthop via %s %s if %u vrf %s(%u)",
1695 __func__, routedesc, p, ipv4_ll_buf,
1696 label_buf, nexthop->ifindex,
1697 VRF_LOGNAME(vrf), nexthop->vrf_id);
0be6e7d7 1698 return true;
0aabccc0
DD
1699 }
1700
d62a17ae 1701 if (nexthop->type == NEXTHOP_TYPE_IPV4
1702 || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
1703 /* Send deletes to the kernel without specifying the next-hop */
0be6e7d7
JU
1704 if (cmd != RTM_DELROUTE) {
1705 if (!_netlink_route_add_gateway_info(
1706 rtmsg->rtm_family, AF_INET, nlmsg, req_size,
1707 bytelen, nexthop))
1708 return false;
1709 }
d62a17ae 1710
1711 if (cmd == RTM_NEWROUTE) {
a757997c
JU
1712 if (!_netlink_route_encode_nexthop_src(
1713 nexthop, AF_INET, nlmsg, req_size, bytelen))
1714 return false;
d62a17ae 1715 }
1716
9266b315
RZ
1717 if (IS_ZEBRA_DEBUG_KERNEL) {
1718 inet_ntop(AF_INET, &nexthop->gate.ipv4, addrstr,
1719 sizeof(addrstr));
1720 zlog_debug("%s: (%s): %pFX nexthop via %s %s if %u vrf %s(%u)",
1721 __func__, routedesc, p, addrstr, label_buf,
1722 nexthop->ifindex, VRF_LOGNAME(vrf),
1723 nexthop->vrf_id);
1724 }
0aabccc0 1725 }
fa713d9e 1726
d62a17ae 1727 if (nexthop->type == NEXTHOP_TYPE_IPV6
1728 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
0be6e7d7
JU
1729 if (!_netlink_route_add_gateway_info(rtmsg->rtm_family,
1730 AF_INET6, nlmsg, req_size,
1731 bytelen, nexthop))
1732 return false;
d62a17ae 1733
1734 if (cmd == RTM_NEWROUTE) {
a757997c
JU
1735 if (!_netlink_route_encode_nexthop_src(
1736 nexthop, AF_INET6, nlmsg, req_size,
1737 bytelen))
1738 return false;
d62a17ae 1739 }
fa713d9e 1740
9266b315
RZ
1741 if (IS_ZEBRA_DEBUG_KERNEL) {
1742 inet_ntop(AF_INET6, &nexthop->gate.ipv6, addrstr,
1743 sizeof(addrstr));
1744 zlog_debug("%s: (%s): %pFX nexthop via %s %s if %u vrf %s(%u)",
1745 __func__, routedesc, p, addrstr, label_buf,
1746 nexthop->ifindex, VRF_LOGNAME(vrf),
1747 nexthop->vrf_id);
1748 }
d62a17ae 1749 }
5e210522
DS
1750
1751 /*
1752 * We have the ifindex so we should always send it
1753 * This is especially useful if we are doing route
1754 * leaking.
1755 */
0be6e7d7
JU
1756 if (nexthop->type != NEXTHOP_TYPE_BLACKHOLE) {
1757 if (!nl_attr_put32(nlmsg, req_size, RTA_OIF, nexthop->ifindex))
1758 return false;
1759 }
d62a17ae 1760
275565fb 1761 if (nexthop->type == NEXTHOP_TYPE_IFINDEX) {
d62a17ae 1762 if (cmd == RTM_NEWROUTE) {
a757997c
JU
1763 if (!_netlink_route_encode_nexthop_src(
1764 nexthop, AF_INET, nlmsg, req_size, bytelen))
1765 return false;
d62a17ae 1766 }
fa713d9e 1767
d62a17ae 1768 if (IS_ZEBRA_DEBUG_KERNEL)
9266b315
RZ
1769 zlog_debug("%s: (%s): %pFX nexthop via if %u vrf %s(%u)",
1770 __func__, routedesc, p, nexthop->ifindex,
1771 VRF_LOGNAME(vrf), nexthop->vrf_id);
0aabccc0 1772 }
0be6e7d7
JU
1773
1774 return true;
fa713d9e
CF
1775}
1776
63eaefa8
R
1777/* This function appends tag value as rtnl flow attribute
1778 * to the given netlink msg only if value is less than 256.
1779 * Used only if SUPPORT_REALMS enabled.
1780 *
1781 * @param nlmsg: nlmsghdr structure to fill in.
1782 * @param maxlen: The size allocated for the message.
1783 * @param tag: The route tag.
1784 *
1785 * The function returns true if the flow attribute could
1786 * be added to the message, otherwise false is returned.
1787 */
1788static inline bool _netlink_set_tag(struct nlmsghdr *n, unsigned int maxlen,
1789 route_tag_t tag)
1790{
1791 if (tag > 0 && tag <= 255) {
1792 if (!nl_attr_put32(n, maxlen, RTA_FLOW, tag))
1793 return false;
1794 }
1795 return true;
1796}
1797
fa713d9e 1798/* This function takes a nexthop as argument and
312a6bee 1799 * appends to the given netlink msg. If the nexthop
fa713d9e
CF
1800 * defines a preferred source, the src parameter
1801 * will be modified to point to that src, otherwise
1802 * it will be kept unmodified.
1803 *
1804 * @param routedesc: Human readable description of route type
1805 * (direct/recursive, single-/multipath)
1806 * @param bytelen: Length of addresses in bytes.
1807 * @param nexthop: Nexthop information
312a6bee
JU
1808 * @param nlmsg: nlmsghdr structure to fill in.
1809 * @param req_size: The size allocated for the message.
fa713d9e
CF
1810 * @param src: pointer pointing to a location where
1811 * the prefsrc should be stored.
0be6e7d7
JU
1812 *
1813 * The function returns true if the nexthop could be added
1814 * to the message, otherwise false is returned.
fa713d9e 1815 */
63eaefa8
R
1816static bool _netlink_route_build_multipath(
1817 const struct prefix *p, const char *routedesc, int bytelen,
1818 const struct nexthop *nexthop, struct nlmsghdr *nlmsg, size_t req_size,
1819 struct rtmsg *rtmsg, const union g_addr **src, route_tag_t tag)
fa713d9e 1820{
9a62e84b 1821 char label_buf[256];
bd47f3a3 1822 struct vrf *vrf;
312a6bee 1823 struct rtnexthop *rtnh;
d62a17ae 1824
312a6bee 1825 rtnh = nl_attr_rtnh(nlmsg, req_size);
0be6e7d7
JU
1826 if (rtnh == NULL)
1827 return false;
d62a17ae 1828
b7537db6
SW
1829 assert(nexthop);
1830
bd47f3a3
JU
1831 vrf = vrf_lookup_by_id(nexthop->vrf_id);
1832
5fa6bfff
SW
1833 if (!_netlink_route_encode_label_info(nexthop, nlmsg, req_size, rtmsg,
1834 label_buf, sizeof(label_buf)))
a757997c 1835 return false;
d62a17ae 1836
1837 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK))
1838 rtnh->rtnh_flags |= RTNH_F_ONLINK;
1839
002e5c43 1840 if (is_route_v4_over_v6(rtmsg->rtm_family, nexthop->type)) {
d62a17ae 1841 rtnh->rtnh_flags |= RTNH_F_ONLINK;
a757997c 1842 if (!nl_attr_put(nlmsg, req_size, RTA_GATEWAY, &ipv4_ll, 4))
0be6e7d7 1843 return false;
d62a17ae 1844 rtnh->rtnh_ifindex = nexthop->ifindex;
8d27e1aa 1845 if (nexthop->weight)
1846 rtnh->rtnh_hops = nexthop->weight - 1;
d62a17ae 1847
975a328e 1848 if (nexthop->rmap_src.ipv4.s_addr != INADDR_ANY)
d62a17ae 1849 *src = &nexthop->rmap_src;
975a328e 1850 else if (nexthop->src.ipv4.s_addr != INADDR_ANY)
d62a17ae 1851 *src = &nexthop->src;
1852
1853 if (IS_ZEBRA_DEBUG_KERNEL)
1854 zlog_debug(
9266b315
RZ
1855 "%s: 5549 (%s): %pFX nexthop via %s %s if %u vrf %s(%u)",
1856 __func__, routedesc, p, ipv4_ll_buf, label_buf,
bd47f3a3
JU
1857 nexthop->ifindex, VRF_LOGNAME(vrf),
1858 nexthop->vrf_id);
312a6bee 1859 nl_attr_rtnh_end(nlmsg, rtnh);
0be6e7d7 1860 return true;
d62a17ae 1861 }
1862
1863 if (nexthop->type == NEXTHOP_TYPE_IPV4
1864 || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
0be6e7d7
JU
1865 if (!_netlink_route_add_gateway_info(rtmsg->rtm_family, AF_INET,
1866 nlmsg, req_size, bytelen,
1867 nexthop))
1868 return false;
1869
975a328e 1870 if (nexthop->rmap_src.ipv4.s_addr != INADDR_ANY)
d62a17ae 1871 *src = &nexthop->rmap_src;
975a328e 1872 else if (nexthop->src.ipv4.s_addr != INADDR_ANY)
d62a17ae 1873 *src = &nexthop->src;
1874
a50404aa
RZ
1875 if (IS_ZEBRA_DEBUG_KERNEL)
1876 zlog_debug("%s: (%s): %pFX nexthop via %pI4 %s if %u vrf %s(%u)",
1877 __func__, routedesc, p, &nexthop->gate.ipv4,
1878 label_buf, nexthop->ifindex,
1879 VRF_LOGNAME(vrf), nexthop->vrf_id);
d62a17ae 1880 }
1881 if (nexthop->type == NEXTHOP_TYPE_IPV6
1882 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
0be6e7d7
JU
1883 if (!_netlink_route_add_gateway_info(rtmsg->rtm_family,
1884 AF_INET6, nlmsg, req_size,
1885 bytelen, nexthop))
1886 return false;
d62a17ae 1887
1888 if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->rmap_src.ipv6))
1889 *src = &nexthop->rmap_src;
1890 else if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->src.ipv6))
1891 *src = &nexthop->src;
1892
a50404aa
RZ
1893 if (IS_ZEBRA_DEBUG_KERNEL)
1894 zlog_debug("%s: (%s): %pFX nexthop via %pI6 %s if %u vrf %s(%u)",
1895 __func__, routedesc, p, &nexthop->gate.ipv6,
1896 label_buf, nexthop->ifindex,
1897 VRF_LOGNAME(vrf), nexthop->vrf_id);
d62a17ae 1898 }
5e210522
DS
1899
1900 /*
1901 * We have figured out the ifindex so we should always send it
1902 * This is especially useful if we are doing route
1903 * leaking.
1904 */
1905 if (nexthop->type != NEXTHOP_TYPE_BLACKHOLE)
1906 rtnh->rtnh_ifindex = nexthop->ifindex;
1907
d62a17ae 1908 /* ifindex */
275565fb 1909 if (nexthop->type == NEXTHOP_TYPE_IFINDEX) {
975a328e 1910 if (nexthop->rmap_src.ipv4.s_addr != INADDR_ANY)
d62a17ae 1911 *src = &nexthop->rmap_src;
975a328e 1912 else if (nexthop->src.ipv4.s_addr != INADDR_ANY)
d62a17ae 1913 *src = &nexthop->src;
1914
1915 if (IS_ZEBRA_DEBUG_KERNEL)
9266b315
RZ
1916 zlog_debug("%s: (%s): %pFX nexthop via if %u vrf %s(%u)",
1917 __func__, routedesc, p, nexthop->ifindex,
1918 VRF_LOGNAME(vrf), nexthop->vrf_id);
d62a17ae 1919 }
df7fb580
DS
1920
1921 if (nexthop->weight)
1922 rtnh->rtnh_hops = nexthop->weight - 1;
0be6e7d7 1923
63eaefa8
R
1924 if (!_netlink_set_tag(nlmsg, req_size, tag))
1925 return false;
1926
312a6bee 1927 nl_attr_rtnh_end(nlmsg, rtnh);
0be6e7d7 1928 return true;
fa713d9e
CF
1929}
1930
f2595bd5
DS
1931static inline bool
1932_netlink_mpls_build_singlepath(const struct prefix *p, const char *routedesc,
1933 const struct zebra_nhlfe *nhlfe,
1934 struct nlmsghdr *nlmsg, struct rtmsg *rtmsg,
1935 size_t req_size, int cmd)
40c7bdb0 1936{
d62a17ae 1937 int bytelen;
d7c0a89a 1938 uint8_t family;
40c7bdb0 1939
d62a17ae 1940 family = NHLFE_FAMILY(nhlfe);
1941 bytelen = (family == AF_INET ? 4 : 16);
0be6e7d7
JU
1942 return _netlink_route_build_singlepath(p, routedesc, bytelen,
1943 nhlfe->nexthop, nlmsg, rtmsg,
1944 req_size, cmd);
40c7bdb0 1945}
1946
1947
0be6e7d7 1948static inline bool
9a0132a5 1949_netlink_mpls_build_multipath(const struct prefix *p, const char *routedesc,
f2595bd5 1950 const struct zebra_nhlfe *nhlfe,
312a6bee
JU
1951 struct nlmsghdr *nlmsg, size_t req_size,
1952 struct rtmsg *rtmsg, const union g_addr **src)
40c7bdb0 1953{
d62a17ae 1954 int bytelen;
d7c0a89a 1955 uint8_t family;
40c7bdb0 1956
d62a17ae 1957 family = NHLFE_FAMILY(nhlfe);
1958 bytelen = (family == AF_INET ? 4 : 16);
0be6e7d7
JU
1959 return _netlink_route_build_multipath(p, routedesc, bytelen,
1960 nhlfe->nexthop, nlmsg, req_size,
63eaefa8 1961 rtmsg, src, 0);
40c7bdb0 1962}
1963
d7c0a89a 1964static void _netlink_mpls_debug(int cmd, uint32_t label, const char *routedesc)
40c7bdb0 1965{
d62a17ae 1966 if (IS_ZEBRA_DEBUG_KERNEL)
0be6e7d7
JU
1967 zlog_debug("netlink_mpls_multipath_msg_encode() (%s): %s %u/20",
1968 routedesc, nl_msg_type_to_str(cmd), label);
fa713d9e
CF
1969}
1970
05657ec2
PG
1971static int netlink_neigh_update(int cmd, int ifindex, void *addr, char *lla,
1972 int llalen, ns_id_t ns_id, uint8_t family,
1973 bool permanent, uint8_t protocol)
5c610faf 1974{
d62a17ae 1975 struct {
1976 struct nlmsghdr n;
1977 struct ndmsg ndm;
1978 char buf[256];
1979 } req;
5c610faf 1980
5895d33f 1981 struct zebra_ns *zns = zebra_ns_lookup(ns_id);
8f7d9fc0 1982
5605ecfc 1983 memset(&req, 0, sizeof(req));
5c610faf 1984
d62a17ae 1985 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
1986 req.n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
1987 req.n.nlmsg_type = cmd; // RTM_NEWNEIGH or RTM_DELNEIGH
1988 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
a55ba23f 1989
05657ec2 1990 req.ndm.ndm_family = family;
d62a17ae 1991 req.ndm.ndm_ifindex = ifindex;
1992 req.ndm.ndm_type = RTN_UNICAST;
05657ec2
PG
1993 if (cmd == RTM_NEWNEIGH) {
1994 if (!permanent)
1995 req.ndm.ndm_state = NUD_REACHABLE;
1996 else
1997 req.ndm.ndm_state = NUD_PERMANENT;
1998 } else
1999 req.ndm.ndm_state = NUD_FAILED;
5c610faf 2000
312a6bee
JU
2001 nl_attr_put(&req.n, sizeof(req), NDA_PROTOCOL, &protocol,
2002 sizeof(protocol));
05657ec2 2003 req.ndm.ndm_type = RTN_UNICAST;
df948efc
PG
2004 nl_attr_put(&req.n, sizeof(req), NDA_DST, addr,
2005 family2addrsize(family));
05657ec2
PG
2006 if (lla)
2007 nl_attr_put(&req.n, sizeof(req), NDA_LLADDR, lla, llalen);
5c610faf 2008
d62a17ae 2009 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
9bfadae8 2010 false);
5c610faf
DS
2011}
2012
762288f5
SW
2013static bool nexthop_set_src(const struct nexthop *nexthop, int family,
2014 union g_addr *src)
2015{
2016 if (family == AF_INET) {
2017 if (nexthop->rmap_src.ipv4.s_addr != INADDR_ANY) {
2018 src->ipv4 = nexthop->rmap_src.ipv4;
2019 return true;
2020 } else if (nexthop->src.ipv4.s_addr != INADDR_ANY) {
2021 src->ipv4 = nexthop->src.ipv4;
2022 return true;
2023 }
2024 } else if (family == AF_INET6) {
2025 if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->rmap_src.ipv6)) {
2026 src->ipv6 = nexthop->rmap_src.ipv6;
2027 return true;
2028 } else if (!IN6_IS_ADDR_UNSPECIFIED(&nexthop->src.ipv6)) {
2029 src->ipv6 = nexthop->src.ipv6;
2030 return true;
2031 }
2032 }
2033
2034 return false;
2035}
2036
0be6e7d7
JU
2037/*
2038 * The function returns true if the attribute could be added
2039 * to the message, otherwise false is returned.
2040 */
2041static int netlink_route_nexthop_encap(struct nlmsghdr *n, size_t nlen,
2042 struct nexthop *nh)
f2a0ba3a
RZ
2043{
2044 struct rtattr *nest;
2045
2046 switch (nh->nh_encap_type) {
2047 case NET_VXLAN:
a757997c 2048 if (!nl_attr_put16(n, nlen, RTA_ENCAP_TYPE, nh->nh_encap_type))
0be6e7d7 2049 return false;
f2a0ba3a 2050
312a6bee 2051 nest = nl_attr_nest(n, nlen, RTA_ENCAP);
0be6e7d7
JU
2052 if (!nest)
2053 return false;
2054
2055 if (!nl_attr_put32(n, nlen, 0 /* VXLAN_VNI */,
2056 nh->nh_encap.vni))
2057 return false;
312a6bee 2058 nl_attr_nest_end(n, nest);
f2a0ba3a
RZ
2059 break;
2060 }
0be6e7d7
JU
2061
2062 return true;
f2a0ba3a
RZ
2063}
2064
7cdb1a84
MS
2065/*
2066 * Routing table change via netlink interface, using a dataplane context object
0be6e7d7
JU
2067 *
2068 * Returns -1 on failure, 0 when the msg doesn't fit entirely in the buffer
2069 * otherwise the number of bytes written to buf.
7cdb1a84 2070 */
0be6e7d7
JU
2071ssize_t netlink_route_multipath_msg_encode(int cmd,
2072 struct zebra_dplane_ctx *ctx,
2073 uint8_t *data, size_t datalen,
2074 bool fpm, bool force_nhg)
7cdb1a84
MS
2075{
2076 int bytelen;
7cdb1a84
MS
2077 struct nexthop *nexthop = NULL;
2078 unsigned int nexthop_num;
7cdb1a84 2079 const char *routedesc;
762288f5 2080 bool setsrc = false;
7cdb1a84
MS
2081 union g_addr src;
2082 const struct prefix *p, *src_p;
2083 uint32_t table_id;
d4000d7b 2084 struct nlsock *nl;
63eaefa8 2085 route_tag_t tag = 0;
7cdb1a84
MS
2086
2087 struct {
2088 struct nlmsghdr n;
2089 struct rtmsg r;
e57a3fab
RZ
2090 char buf[];
2091 } *req = (void *)data;
7cdb1a84
MS
2092
2093 p = dplane_ctx_get_dest(ctx);
2094 src_p = dplane_ctx_get_src(ctx);
2095
0be6e7d7
JU
2096 if (datalen < sizeof(*req))
2097 return 0;
2098
d4000d7b
DS
2099 nl = kernel_netlink_nlsock_lookup(dplane_ctx_get_ns_sock(ctx));
2100
e57a3fab 2101 memset(req, 0, sizeof(*req));
7cdb1a84 2102
b9c87515 2103 bytelen = (p->family == AF_INET ? 4 : 16);
7cdb1a84 2104
e57a3fab
RZ
2105 req->n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
2106 req->n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
7cdb1a84 2107
334734a8
DS
2108 if ((cmd == RTM_NEWROUTE) &&
2109 ((p->family == AF_INET) || v6_rr_semantics))
e57a3fab 2110 req->n.nlmsg_flags |= NLM_F_REPLACE;
7cdb1a84 2111
e57a3fab 2112 req->n.nlmsg_type = cmd;
7cdb1a84 2113
d4000d7b 2114 req->n.nlmsg_pid = nl->snl.nl_pid;
7cdb1a84 2115
b9c87515 2116 req->r.rtm_family = p->family;
e57a3fab
RZ
2117 req->r.rtm_dst_len = p->prefixlen;
2118 req->r.rtm_src_len = src_p ? src_p->prefixlen : 0;
2119 req->r.rtm_scope = RT_SCOPE_UNIVERSE;
7cdb1a84 2120
5709131c 2121 if (cmd == RTM_DELROUTE)
e57a3fab 2122 req->r.rtm_protocol = zebra2proto(dplane_ctx_get_old_type(ctx));
5709131c 2123 else
e57a3fab 2124 req->r.rtm_protocol = zebra2proto(dplane_ctx_get_type(ctx));
7cdb1a84
MS
2125
2126 /*
2127 * blackhole routes are not RTN_UNICAST, they are
2128 * RTN_ BLACKHOLE|UNREACHABLE|PROHIBIT
2129 * so setting this value as a RTN_UNICAST would
2130 * cause the route lookup of just the prefix
2131 * to fail. So no need to specify this for
2132 * the RTM_DELROUTE case
2133 */
2134 if (cmd != RTM_DELROUTE)
e57a3fab 2135 req->r.rtm_type = RTN_UNICAST;
7cdb1a84 2136
0be6e7d7
JU
2137 if (!nl_attr_put(&req->n, datalen, RTA_DST, &p->u.prefix, bytelen))
2138 return 0;
2139 if (src_p) {
2140 if (!nl_attr_put(&req->n, datalen, RTA_SRC, &src_p->u.prefix,
2141 bytelen))
2142 return 0;
2143 }
7cdb1a84
MS
2144
2145 /* Metric. */
2146 /* Hardcode the metric for all routes coming from zebra. Metric isn't
2147 * used
2148 * either by the kernel or by zebra. Its purely for calculating best
2149 * path(s)
2150 * by the routing protocol and for communicating with protocol peers.
2151 */
0be6e7d7 2152 if (!nl_attr_put32(&req->n, datalen, RTA_PRIORITY,
68ff69fa 2153 ROUTE_INSTALLATION_METRIC))
0be6e7d7 2154 return 0;
7cdb1a84
MS
2155
2156#if defined(SUPPORT_REALMS)
63eaefa8
R
2157 if (cmd == RTM_DELROUTE)
2158 tag = dplane_ctx_get_old_tag(ctx);
2159 else
2160 tag = dplane_ctx_get_tag(ctx);
7cdb1a84 2161#endif
63eaefa8 2162
7cdb1a84
MS
2163 /* Table corresponding to this route. */
2164 table_id = dplane_ctx_get_table(ctx);
2165 if (table_id < 256)
e57a3fab 2166 req->r.rtm_table = table_id;
7cdb1a84 2167 else {
e57a3fab 2168 req->r.rtm_table = RT_TABLE_UNSPEC;
0be6e7d7
JU
2169 if (!nl_attr_put32(&req->n, datalen, RTA_TABLE, table_id))
2170 return 0;
7cdb1a84
MS
2171 }
2172
9266b315
RZ
2173 if (IS_ZEBRA_DEBUG_KERNEL)
2174 zlog_debug(
2175 "%s: %s %pFX vrf %u(%u)", __func__,
2176 nl_msg_type_to_str(cmd), p, dplane_ctx_get_vrf(ctx),
2177 table_id);
7cdb1a84
MS
2178
2179 /*
2180 * If we are not updating the route and we have received
2181 * a route delete, then all we need to fill in is the
2182 * prefix information to tell the kernel to schwack
2183 * it.
2184 */
63eaefa8
R
2185 if (cmd == RTM_DELROUTE) {
2186 if (!_netlink_set_tag(&req->n, datalen, tag))
2187 return 0;
0be6e7d7 2188 return NLMSG_ALIGN(req->n.nlmsg_len);
63eaefa8 2189 }
7cdb1a84
MS
2190
2191 if (dplane_ctx_get_mtu(ctx) || dplane_ctx_get_nh_mtu(ctx)) {
312a6bee 2192 struct rtattr *nest;
7cdb1a84
MS
2193 uint32_t mtu = dplane_ctx_get_mtu(ctx);
2194 uint32_t nexthop_mtu = dplane_ctx_get_nh_mtu(ctx);
5709131c 2195
7cdb1a84
MS
2196 if (!mtu || (nexthop_mtu && nexthop_mtu < mtu))
2197 mtu = nexthop_mtu;
312a6bee
JU
2198
2199 nest = nl_attr_nest(&req->n, datalen, RTA_METRICS);
0be6e7d7
JU
2200 if (nest == NULL)
2201 return 0;
2202
2203 if (!nl_attr_put(&req->n, datalen, RTAX_MTU, &mtu, sizeof(mtu)))
2204 return 0;
312a6bee 2205 nl_attr_nest_end(&req->n, nest);
7cdb1a84
MS
2206 }
2207
4be03ff4
IR
2208 /*
2209 * Always install blackhole routes without using nexthops, because of
2210 * the following kernel problems:
2211 * 1. Kernel nexthops don't suport unreachable/prohibit route types.
2212 * 2. Blackhole kernel nexthops are deleted when loopback is down.
2213 */
2214 nexthop = dplane_ctx_get_ng(ctx)->nexthop;
2215 if (nexthop) {
2216 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE))
2217 nexthop = nexthop->resolved;
2218
2219 if (nexthop->type == NEXTHOP_TYPE_BLACKHOLE) {
2220 switch (nexthop->bh_type) {
2221 case BLACKHOLE_ADMINPROHIB:
2222 req->r.rtm_type = RTN_PROHIBIT;
2223 break;
2224 case BLACKHOLE_REJECT:
2225 req->r.rtm_type = RTN_UNREACHABLE;
2226 break;
a98701f0
DS
2227 case BLACKHOLE_UNSPEC:
2228 case BLACKHOLE_NULL:
4be03ff4
IR
2229 req->r.rtm_type = RTN_BLACKHOLE;
2230 break;
2231 }
2232 return NLMSG_ALIGN(req->n.nlmsg_len);
2233 }
2234 }
2235
6c67f41f
SW
2236 if ((!fpm && kernel_nexthops_supported()
2237 && (!proto_nexthops_only()
2238 || is_proto_nhg(dplane_ctx_get_nhe_id(ctx), 0)))
2239 || (fpm && force_nhg)) {
d8bfd8dc 2240 /* Kernel supports nexthop objects */
9a0132a5 2241 if (IS_ZEBRA_DEBUG_KERNEL)
0be6e7d7
JU
2242 zlog_debug("%s: %pFX nhg_id is %u", __func__, p,
2243 dplane_ctx_get_nhe_id(ctx));
e57a3fab 2244
0be6e7d7
JU
2245 if (!nl_attr_put32(&req->n, datalen, RTA_NH_ID,
2246 dplane_ctx_get_nhe_id(ctx)))
2247 return 0;
d8bfd8dc
SW
2248
2249 /* Have to determine src still */
2250 for (ALL_NEXTHOPS_PTR(dplane_ctx_get_ng(ctx), nexthop)) {
2251 if (setsrc)
2252 break;
2253
e57a3fab 2254 setsrc = nexthop_set_src(nexthop, p->family, &src);
d8bfd8dc
SW
2255 }
2256
2257 if (setsrc) {
0be6e7d7
JU
2258 if (p->family == AF_INET) {
2259 if (!nl_attr_put(&req->n, datalen, RTA_PREFSRC,
2260 &src.ipv4, bytelen))
2261 return 0;
2262 } else if (p->family == AF_INET6) {
2263 if (!nl_attr_put(&req->n, datalen, RTA_PREFSRC,
2264 &src.ipv6, bytelen))
2265 return 0;
2266 }
d8bfd8dc 2267 }
f78fe8f3 2268
0be6e7d7 2269 return NLMSG_ALIGN(req->n.nlmsg_len);
de3f5488
SW
2270 }
2271
7cdb1a84 2272 /* Count overall nexthops so we can decide whether to use singlepath
5709131c
MS
2273 * or multipath case.
2274 */
7cdb1a84
MS
2275 nexthop_num = 0;
2276 for (ALL_NEXTHOPS_PTR(dplane_ctx_get_ng(ctx), nexthop)) {
2277 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE))
2278 continue;
b9c87515 2279 if (!NEXTHOP_IS_ACTIVE(nexthop->flags))
7cdb1a84
MS
2280 continue;
2281
2282 nexthop_num++;
2283 }
2284
2285 /* Singlepath case. */
220f0f42 2286 if (nexthop_num == 1) {
7cdb1a84
MS
2287 nexthop_num = 0;
2288 for (ALL_NEXTHOPS_PTR(dplane_ctx_get_ng(ctx), nexthop)) {
7cdb1a84
MS
2289 if (CHECK_FLAG(nexthop->flags,
2290 NEXTHOP_FLAG_RECURSIVE)) {
5709131c
MS
2291
2292 if (setsrc)
2293 continue;
2294
b9c87515
RZ
2295 setsrc = nexthop_set_src(nexthop, p->family,
2296 &src);
f183e380 2297 continue;
7cdb1a84
MS
2298 }
2299
b9c87515 2300 if (NEXTHOP_IS_ACTIVE(nexthop->flags)) {
7cdb1a84
MS
2301 routedesc = nexthop->rparent
2302 ? "recursive, single-path"
2303 : "single-path";
2304
63eaefa8
R
2305 if (!_netlink_set_tag(&req->n, datalen, tag))
2306 return 0;
2307
0be6e7d7
JU
2308 if (!_netlink_route_build_singlepath(
2309 p, routedesc, bytelen, nexthop,
2310 &req->n, &req->r, datalen, cmd))
2311 return 0;
7cdb1a84
MS
2312 nexthop_num++;
2313 break;
2314 }
f2a0ba3a
RZ
2315
2316 /*
2317 * Add encapsulation information when installing via
2318 * FPM.
2319 */
0be6e7d7
JU
2320 if (fpm) {
2321 if (!netlink_route_nexthop_encap(
2322 &req->n, datalen, nexthop))
2323 return 0;
2324 }
7cdb1a84 2325 }
f2a0ba3a 2326
13e0321a 2327 if (setsrc) {
0be6e7d7
JU
2328 if (p->family == AF_INET) {
2329 if (!nl_attr_put(&req->n, datalen, RTA_PREFSRC,
2330 &src.ipv4, bytelen))
2331 return 0;
2332 } else if (p->family == AF_INET6) {
2333 if (!nl_attr_put(&req->n, datalen, RTA_PREFSRC,
2334 &src.ipv6, bytelen))
2335 return 0;
2336 }
7cdb1a84
MS
2337 }
2338 } else { /* Multipath case */
312a6bee 2339 struct rtattr *nest;
81793ac1 2340 const union g_addr *src1 = NULL;
7cdb1a84 2341
312a6bee 2342 nest = nl_attr_nest(&req->n, datalen, RTA_MULTIPATH);
0be6e7d7
JU
2343 if (nest == NULL)
2344 return 0;
7cdb1a84
MS
2345
2346 nexthop_num = 0;
2347 for (ALL_NEXTHOPS_PTR(dplane_ctx_get_ng(ctx), nexthop)) {
7cdb1a84
MS
2348 if (CHECK_FLAG(nexthop->flags,
2349 NEXTHOP_FLAG_RECURSIVE)) {
2350 /* This only works for IPv4 now */
5709131c
MS
2351 if (setsrc)
2352 continue;
2353
b9c87515
RZ
2354 setsrc = nexthop_set_src(nexthop, p->family,
2355 &src);
78e54ded 2356 continue;
7cdb1a84
MS
2357 }
2358
b9c87515 2359 if (NEXTHOP_IS_ACTIVE(nexthop->flags)) {
7cdb1a84
MS
2360 routedesc = nexthop->rparent
2361 ? "recursive, multipath"
2362 : "multipath";
2363 nexthop_num++;
2364
0be6e7d7
JU
2365 if (!_netlink_route_build_multipath(
2366 p, routedesc, bytelen, nexthop,
63eaefa8
R
2367 &req->n, datalen, &req->r, &src1,
2368 tag))
0be6e7d7 2369 return 0;
7cdb1a84
MS
2370
2371 if (!setsrc && src1) {
b9c87515 2372 if (p->family == AF_INET)
7cdb1a84 2373 src.ipv4 = src1->ipv4;
b9c87515 2374 else if (p->family == AF_INET6)
7cdb1a84
MS
2375 src.ipv6 = src1->ipv6;
2376
2377 setsrc = 1;
2378 }
2379 }
312a6bee 2380 }
0be6e7d7 2381
312a6bee
JU
2382 nl_attr_nest_end(&req->n, nest);
2383
2384 /*
2385 * Add encapsulation information when installing via
2386 * FPM.
2387 */
2388 if (fpm) {
2389 for (ALL_NEXTHOPS_PTR(dplane_ctx_get_ng(ctx),
2390 nexthop)) {
2391 if (CHECK_FLAG(nexthop->flags,
2392 NEXTHOP_FLAG_RECURSIVE))
2393 continue;
0be6e7d7
JU
2394 if (!netlink_route_nexthop_encap(
2395 &req->n, datalen, nexthop))
2396 return 0;
312a6bee 2397 }
7cdb1a84 2398 }
f2a0ba3a 2399
312a6bee 2400
13e0321a 2401 if (setsrc) {
0be6e7d7
JU
2402 if (p->family == AF_INET) {
2403 if (!nl_attr_put(&req->n, datalen, RTA_PREFSRC,
2404 &src.ipv4, bytelen))
2405 return 0;
2406 } else if (p->family == AF_INET6) {
2407 if (!nl_attr_put(&req->n, datalen, RTA_PREFSRC,
2408 &src.ipv6, bytelen))
2409 return 0;
2410 }
7cdb1a84
MS
2411 if (IS_ZEBRA_DEBUG_KERNEL)
2412 zlog_debug("Setting source");
2413 }
7cdb1a84
MS
2414 }
2415
2416 /* If there is no useful nexthop then return. */
2417 if (nexthop_num == 0) {
2418 if (IS_ZEBRA_DEBUG_KERNEL)
9266b315 2419 zlog_debug("%s: No useful nexthop.", __func__);
7cdb1a84
MS
2420 }
2421
312a6bee 2422 return NLMSG_ALIGN(req->n.nlmsg_len);
7cdb1a84
MS
2423}
2424
43b5cc5e 2425int kernel_get_ipmr_sg_stats(struct zebra_vrf *zvrf, void *in)
e3be0432 2426{
5523c156 2427 uint32_t actual_table;
d62a17ae 2428 int suc = 0;
2429 struct mcast_route_data *mr = (struct mcast_route_data *)in;
bd8b9272
DS
2430 struct {
2431 struct nlmsghdr n;
31071fe3 2432 struct rtmsg rtm;
bd8b9272
DS
2433 char buf[256];
2434 } req;
e3be0432 2435
d62a17ae 2436 mroute = mr;
5895d33f 2437 struct zebra_ns *zns;
bd8b9272 2438
009f8ad5 2439 zns = zvrf->zns;
5605ecfc 2440 memset(&req, 0, sizeof(req));
bd8b9272 2441
31071fe3 2442 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
bd8b9272
DS
2443 req.n.nlmsg_flags = NLM_F_REQUEST;
2444 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
2445
bd8b9272
DS
2446 req.n.nlmsg_type = RTM_GETROUTE;
2447
4d3b4b18 2448 if (mroute->family == AF_INET) {
31071fe3 2449 req.rtm.rtm_family = RTNL_FAMILY_IPMR;
e1cd4bb1
DL
2450 req.rtm.rtm_dst_len = IPV4_MAX_BITLEN;
2451 req.rtm.rtm_src_len = IPV4_MAX_BITLEN;
2452
4d3b4b18
MR
2453 nl_attr_put(&req.n, sizeof(req), RTA_SRC,
2454 &mroute->src.ipaddr_v4,
2455 sizeof(mroute->src.ipaddr_v4));
2456 nl_attr_put(&req.n, sizeof(req), RTA_DST,
2457 &mroute->grp.ipaddr_v4,
2458 sizeof(mroute->grp.ipaddr_v4));
2459 } else {
31071fe3 2460 req.rtm.rtm_family = RTNL_FAMILY_IP6MR;
e1cd4bb1
DL
2461 req.rtm.rtm_dst_len = IPV6_MAX_BITLEN;
2462 req.rtm.rtm_src_len = IPV6_MAX_BITLEN;
2463
4d3b4b18
MR
2464 nl_attr_put(&req.n, sizeof(req), RTA_SRC,
2465 &mroute->src.ipaddr_v6,
2466 sizeof(mroute->src.ipaddr_v6));
2467 nl_attr_put(&req.n, sizeof(req), RTA_DST,
2468 &mroute->grp.ipaddr_v6,
2469 sizeof(mroute->grp.ipaddr_v6));
2470 }
2471
5523c156
DS
2472 /*
2473 * What?
2474 *
2475 * So during the namespace cleanup we started storing
2476 * the zvrf table_id for the default table as RT_TABLE_MAIN
2477 * which is what the normal routing table for ip routing is.
2478 * This change caused this to break our lookups of sg data
2479 * because prior to this change the zvrf->table_id was 0
2480 * and when the pim multicast kernel code saw a 0,
2481 * it was auto-translated to RT_TABLE_DEFAULT. But since
2482 * we are now passing in RT_TABLE_MAIN there is no auto-translation
2483 * and the kernel goes screw you and the delicious cookies you
2484 * are trying to give me. So now we have this little hack.
2485 */
e1cd4bb1
DL
2486 if (mroute->family == AF_INET)
2487 actual_table = (zvrf->table_id == RT_TABLE_MAIN)
2488 ? RT_TABLE_DEFAULT
2489 : zvrf->table_id;
2490 else
2491 actual_table = zvrf->table_id;
2492
a757997c 2493 nl_attr_put32(&req.n, sizeof(req), RTA_TABLE, actual_table);
e3be0432 2494
bd8b9272 2495 suc = netlink_talk(netlink_route_change_read_multicast, &req.n,
9bfadae8 2496 &zns->netlink_cmd, zns, false);
e3be0432 2497
bd8b9272 2498 mroute = NULL;
d62a17ae 2499 return suc;
e3be0432
DS
2500}
2501
8d03bc50
SW
2502/* Char length to debug ID with */
2503#define ID_LENGTH 10
2504
0be6e7d7 2505static bool _netlink_nexthop_build_group(struct nlmsghdr *n, size_t req_size,
8d03bc50 2506 uint32_t id,
e22e8001 2507 const struct nh_grp *z_grp,
569e1411
DS
2508 const uint8_t count, bool resilient,
2509 const struct nhg_resilience *nhgr)
565ce0d3 2510{
565ce0d3 2511 struct nexthop_grp grp[count];
8d03bc50
SW
2512 /* Need space for max group size, "/", and null term */
2513 char buf[(MULTIPATH_NUM * (ID_LENGTH + 1)) + 1];
2514 char buf1[ID_LENGTH + 2];
2515
2516 buf[0] = '\0';
565ce0d3
SW
2517
2518 memset(grp, 0, sizeof(grp));
2519
2520 if (count) {
0c8215cb 2521 for (int i = 0; i < count; i++) {
e22e8001 2522 grp[i].id = z_grp[i].id;
df7fb580 2523 grp[i].weight = z_grp[i].weight - 1;
8d03bc50
SW
2524
2525 if (IS_ZEBRA_DEBUG_KERNEL) {
2526 if (i == 0)
2527 snprintf(buf, sizeof(buf1), "group %u",
2528 grp[i].id);
2529 else {
2530 snprintf(buf1, sizeof(buf1), "/%u",
2531 grp[i].id);
2532 strlcat(buf, buf1, sizeof(buf));
2533 }
2534 }
565ce0d3 2535 }
0be6e7d7
JU
2536 if (!nl_attr_put(n, req_size, NHA_GROUP, grp,
2537 count * sizeof(*grp)))
2538 return false;
569e1411
DS
2539
2540 if (resilient) {
2541 struct rtattr *nest;
2542
2543 nest = nl_attr_nest(n, req_size, NHA_RES_GROUP);
2544
2545 nl_attr_put16(n, req_size, NHA_RES_GROUP_BUCKETS,
2546 nhgr->buckets);
2547 nl_attr_put32(n, req_size, NHA_RES_GROUP_IDLE_TIMER,
2548 nhgr->idle_timer * 1000);
2549 nl_attr_put32(n, req_size,
2550 NHA_RES_GROUP_UNBALANCED_TIMER,
2551 nhgr->unbalanced_timer * 1000);
2552 nl_attr_nest_end(n, nest);
2553
2554 nl_attr_put16(n, req_size, NHA_GROUP_TYPE,
2555 NEXTHOP_GRP_TYPE_RES);
2556 }
565ce0d3 2557 }
8d03bc50
SW
2558
2559 if (IS_ZEBRA_DEBUG_KERNEL)
2560 zlog_debug("%s: ID (%u): %s", __func__, id, buf);
0be6e7d7
JU
2561
2562 return true;
565ce0d3
SW
2563}
2564
f820d025 2565/**
e9a1cd93 2566 * Next hop packet encoding helper function.
f820d025 2567 *
e9a1cd93
RZ
2568 * \param[in] cmd netlink command.
2569 * \param[in] ctx dataplane context (information snapshot).
2570 * \param[out] buf buffer to hold the packet.
2571 * \param[in] buflen amount of buffer bytes.
f820d025 2572 *
0be6e7d7
JU
2573 * \returns -1 on failure, 0 when the msg doesn't fit entirely in the buffer
2574 * otherwise the number of bytes written to buf.
f820d025 2575 */
0be6e7d7
JU
2576ssize_t netlink_nexthop_msg_encode(uint16_t cmd,
2577 const struct zebra_dplane_ctx *ctx,
45c12994 2578 void *buf, size_t buflen, bool fpm)
f820d025 2579{
f820d025
SW
2580 struct {
2581 struct nlmsghdr n;
2582 struct nhmsg nhm;
e9a1cd93
RZ
2583 char buf[];
2584 } *req = buf;
f820d025 2585
8d03bc50
SW
2586 mpls_lse_t out_lse[MPLS_MAX_LABELS];
2587 char label_buf[256];
2588 int num_labels = 0;
72938edf
SW
2589 uint32_t id = dplane_ctx_get_nhe_id(ctx);
2590 int type = dplane_ctx_get_nhe_type(ctx);
bdd085a8
MS
2591 struct rtattr *nest;
2592 uint16_t encap;
d4000d7b
DS
2593 struct nlsock *nl =
2594 kernel_netlink_nlsock_lookup(dplane_ctx_get_ns_sock(ctx));
72938edf
SW
2595
2596 if (!id) {
2597 flog_err(
2598 EC_ZEBRA_NHG_FIB_UPDATE,
2599 "Failed trying to update a nexthop group in the kernel that does not have an ID");
2600 return -1;
2601 }
81505946 2602
6c67f41f
SW
2603 /*
2604 * Nothing to do if the kernel doesn't support nexthop objects or
45c12994
YH
2605 * we dont want to install this type of NHG, but FPM may possible to
2606 * handle this.
6c67f41f 2607 */
45c12994 2608 if (!fpm && !kernel_nexthops_supported()) {
72938edf
SW
2609 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_NHG)
2610 zlog_debug(
2611 "%s: nhg_id %u (%s): kernel nexthops not supported, ignoring",
2612 __func__, id, zebra_route_string(type));
6c67f41f 2613 return 0;
72938edf
SW
2614 }
2615
2616 if (proto_nexthops_only() && !is_proto_nhg(id, type)) {
2617 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_NHG)
2618 zlog_debug(
2619 "%s: nhg_id %u (%s): proto-based nexthops only, ignoring",
2620 __func__, id, zebra_route_string(type));
2621 return 0;
2622 }
6c67f41f 2623
8d03bc50
SW
2624 label_buf[0] = '\0';
2625
0be6e7d7
JU
2626 if (buflen < sizeof(*req))
2627 return 0;
2628
2629 memset(req, 0, sizeof(*req));
f820d025 2630
e9a1cd93
RZ
2631 req->n.nlmsg_len = NLMSG_LENGTH(sizeof(struct nhmsg));
2632 req->n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
9a1588c4
SW
2633
2634 if (cmd == RTM_NEWNEXTHOP)
e9a1cd93 2635 req->n.nlmsg_flags |= NLM_F_REPLACE;
9a1588c4 2636
e9a1cd93 2637 req->n.nlmsg_type = cmd;
d4000d7b 2638 req->n.nlmsg_pid = nl->snl.nl_pid;
f820d025 2639
e9a1cd93 2640 req->nhm.nh_family = AF_UNSPEC;
fec211ad 2641 /* TODO: Scope? */
f820d025 2642
0be6e7d7
JU
2643 if (!nl_attr_put32(&req->n, buflen, NHA_ID, id))
2644 return 0;
f820d025
SW
2645
2646 if (cmd == RTM_NEWNEXTHOP) {
bf1626a6
MS
2647 /*
2648 * We distinguish between a "group", which is a collection
2649 * of ids, and a singleton nexthop with an id. The
2650 * group is installed as an id that just refers to a list of
2651 * other ids.
2652 */
0be6e7d7 2653 if (dplane_ctx_get_nhe_nh_grp_count(ctx)) {
569e1411
DS
2654 const struct nexthop_group *nhg;
2655 const struct nhg_resilience *nhgr;
2656
2657 nhg = dplane_ctx_get_nhe_ng(ctx);
2658 nhgr = &nhg->nhgr;
d52c949b 2659 if (!_netlink_nexthop_build_group(
0be6e7d7
JU
2660 &req->n, buflen, id,
2661 dplane_ctx_get_nhe_nh_grp(ctx),
569e1411
DS
2662 dplane_ctx_get_nhe_nh_grp_count(ctx),
2663 !!nhgr->buckets, nhgr))
0be6e7d7
JU
2664 return 0;
2665 } else {
0c8215cb
SW
2666 const struct nexthop *nh =
2667 dplane_ctx_get_nhe_ng(ctx)->nexthop;
2668 afi_t afi = dplane_ctx_get_nhe_afi(ctx);
e8b0e420 2669
0c8215cb 2670 if (afi == AFI_IP)
e9a1cd93 2671 req->nhm.nh_family = AF_INET;
0c8215cb 2672 else if (afi == AFI_IP6)
e9a1cd93 2673 req->nhm.nh_family = AF_INET6;
f820d025 2674
565ce0d3 2675 switch (nh->type) {
a6e6a6d8 2676 case NEXTHOP_TYPE_IPV4:
565ce0d3 2677 case NEXTHOP_TYPE_IPV4_IFINDEX:
0be6e7d7
JU
2678 if (!nl_attr_put(&req->n, buflen, NHA_GATEWAY,
2679 &nh->gate.ipv4,
2680 IPV4_MAX_BYTELEN))
2681 return 0;
565ce0d3 2682 break;
a6e6a6d8 2683 case NEXTHOP_TYPE_IPV6:
565ce0d3 2684 case NEXTHOP_TYPE_IPV6_IFINDEX:
0be6e7d7
JU
2685 if (!nl_attr_put(&req->n, buflen, NHA_GATEWAY,
2686 &nh->gate.ipv6,
2687 IPV6_MAX_BYTELEN))
2688 return 0;
565ce0d3
SW
2689 break;
2690 case NEXTHOP_TYPE_BLACKHOLE:
0be6e7d7
JU
2691 if (!nl_attr_put(&req->n, buflen, NHA_BLACKHOLE,
2692 NULL, 0))
2693 return 0;
8d03bc50
SW
2694 /* Blackhole shouldn't have anymore attributes
2695 */
2696 goto nexthop_done;
565ce0d3
SW
2697 case NEXTHOP_TYPE_IFINDEX:
2698 /* Don't need anymore info for this */
2699 break;
a6e6a6d8
SW
2700 }
2701
2702 if (!nh->ifindex) {
565ce0d3
SW
2703 flog_err(
2704 EC_ZEBRA_NHG_FIB_UPDATE,
2705 "Context received for kernel nexthop update without an interface");
2706 return -1;
565ce0d3
SW
2707 }
2708
0be6e7d7
JU
2709 if (!nl_attr_put32(&req->n, buflen, NHA_OIF,
2710 nh->ifindex))
2711 return 0;
8d03bc50 2712
62d2ecb2 2713 if (CHECK_FLAG(nh->flags, NEXTHOP_FLAG_ONLINK))
e9a1cd93 2714 req->nhm.nh_flags |= RTNH_F_ONLINK;
62d2ecb2 2715
5fa6bfff
SW
2716 num_labels = build_label_stack(
2717 nh->nh_label, nh->nh_label_type, out_lse,
2718 label_buf, sizeof(label_buf));
8d03bc50 2719
e611f5da
SW
2720 if (num_labels && nh->nh_label_type == ZEBRA_LSP_EVPN) {
2721 if (!nl_attr_put16(&req->n, buflen,
2722 NHA_ENCAP_TYPE,
2723 LWTUNNEL_ENCAP_IP))
2724 return 0;
2725
2726 nest = nl_attr_nest(&req->n, buflen, NHA_ENCAP);
2727 if (!nest)
2728 return 0;
2729
2730 if (_netlink_nexthop_encode_dvni_label(
2731 nh, &req->n, out_lse, buflen,
2732 label_buf) == false)
2733 return 0;
2734
2735 nl_attr_nest_end(&req->n, nest);
2736
2737 } else if (num_labels) {
8d03bc50
SW
2738 /* Set the BoS bit */
2739 out_lse[num_labels - 1] |=
2740 htonl(1 << MPLS_LS_S_SHIFT);
2741
2742 /*
2743 * TODO: MPLS unsupported for now in kernel.
2744 */
e9a1cd93 2745 if (req->nhm.nh_family == AF_MPLS)
8d03bc50 2746 goto nexthop_done;
bdd085a8
MS
2747
2748 encap = LWTUNNEL_ENCAP_MPLS;
2749 if (!nl_attr_put16(&req->n, buflen,
2750 NHA_ENCAP_TYPE, encap))
2751 return 0;
2752 nest = nl_attr_nest(&req->n, buflen, NHA_ENCAP);
2753 if (!nest)
2754 return 0;
2755 if (!nl_attr_put(
2756 &req->n, buflen, MPLS_IPTUNNEL_DST,
2757 &out_lse,
2758 num_labels * sizeof(mpls_lse_t)))
2759 return 0;
2760
2761 nl_attr_nest_end(&req->n, nest);
8d03bc50
SW
2762 }
2763
eab0f8f0
HS
2764 if (nh->nh_srv6) {
2765 if (nh->nh_srv6->seg6local_action !=
2766 ZEBRA_SEG6_LOCAL_ACTION_UNSPEC) {
2767 uint32_t action;
2768 uint16_t encap;
2769 struct rtattr *nest;
2770 const struct seg6local_context *ctx;
2771
2772 req->nhm.nh_family = AF_INET6;
2773 action = nh->nh_srv6->seg6local_action;
2774 ctx = &nh->nh_srv6->seg6local_ctx;
2775 encap = LWTUNNEL_ENCAP_SEG6_LOCAL;
2776 if (!nl_attr_put(&req->n, buflen,
2777 NHA_ENCAP_TYPE,
2778 &encap,
2779 sizeof(uint16_t)))
2780 return 0;
8689b25a 2781
eab0f8f0
HS
2782 nest = nl_attr_nest(&req->n, buflen,
2783 NHA_ENCAP | NLA_F_NESTED);
2784 if (!nest)
2785 return 0;
52026569 2786
eab0f8f0
HS
2787 switch (action) {
2788 case SEG6_LOCAL_ACTION_END:
2789 if (!nl_attr_put32(
2790 &req->n, buflen,
52026569
HS
2791 SEG6_LOCAL_ACTION,
2792 SEG6_LOCAL_ACTION_END))
eab0f8f0
HS
2793 return 0;
2794 break;
2795 case SEG6_LOCAL_ACTION_END_X:
2796 if (!nl_attr_put32(
2797 &req->n, buflen,
52026569
HS
2798 SEG6_LOCAL_ACTION,
2799 SEG6_LOCAL_ACTION_END_X))
eab0f8f0
HS
2800 return 0;
2801 if (!nl_attr_put(
2802 &req->n, buflen,
8689b25a 2803 SEG6_LOCAL_NH6, &ctx->nh6,
52026569 2804 sizeof(struct in6_addr)))
eab0f8f0
HS
2805 return 0;
2806 break;
2807 case SEG6_LOCAL_ACTION_END_T:
2808 if (!nl_attr_put32(
2809 &req->n, buflen,
52026569
HS
2810 SEG6_LOCAL_ACTION,
2811 SEG6_LOCAL_ACTION_END_T))
eab0f8f0
HS
2812 return 0;
2813 if (!nl_attr_put32(
2814 &req->n, buflen,
52026569
HS
2815 SEG6_LOCAL_TABLE,
2816 ctx->table))
eab0f8f0
HS
2817 return 0;
2818 break;
2819 case SEG6_LOCAL_ACTION_END_DX4:
2820 if (!nl_attr_put32(
2821 &req->n, buflen,
52026569
HS
2822 SEG6_LOCAL_ACTION,
2823 SEG6_LOCAL_ACTION_END_DX4))
eab0f8f0
HS
2824 return 0;
2825 if (!nl_attr_put(
2826 &req->n, buflen,
8689b25a 2827 SEG6_LOCAL_NH4, &ctx->nh4,
52026569 2828 sizeof(struct in_addr)))
eab0f8f0
HS
2829 return 0;
2830 break;
2831 case SEG6_LOCAL_ACTION_END_DT6:
2832 if (!nl_attr_put32(
2833 &req->n, buflen,
52026569
HS
2834 SEG6_LOCAL_ACTION,
2835 SEG6_LOCAL_ACTION_END_DT6))
eab0f8f0
HS
2836 return 0;
2837 if (!nl_attr_put32(
2838 &req->n, buflen,
52026569
HS
2839 SEG6_LOCAL_TABLE,
2840 ctx->table))
eab0f8f0
HS
2841 return 0;
2842 break;
7eab60a7
RS
2843 case SEG6_LOCAL_ACTION_END_DT4:
2844 if (!nl_attr_put32(
2845 &req->n, buflen,
2846 SEG6_LOCAL_ACTION,
2847 SEG6_LOCAL_ACTION_END_DT4))
2848 return 0;
2849 if (!nl_attr_put32(
2850 &req->n, buflen,
2851 SEG6_LOCAL_VRFTABLE,
2852 ctx->table))
2853 return 0;
2854 break;
8bea07e4
CS
2855 case SEG6_LOCAL_ACTION_END_DT46:
2856 if (!nl_attr_put32(
2857 &req->n, buflen,
2858 SEG6_LOCAL_ACTION,
2859 SEG6_LOCAL_ACTION_END_DT46))
2860 return 0;
2861 if (!nl_attr_put32(
2862 &req->n, buflen,
2863 SEG6_LOCAL_VRFTABLE,
2864 ctx->table))
2865 return 0;
2866 break;
eab0f8f0
HS
2867 default:
2868 zlog_err("%s: unsupport seg6local behaviour action=%u",
2869 __func__, action);
0a543b79 2870 return 0;
eab0f8f0
HS
2871 }
2872 nl_attr_nest_end(&req->n, nest);
8689b25a 2873 }
8689b25a 2874
eab0f8f0
HS
2875 if (!sid_zero(&nh->nh_srv6->seg6_segs)) {
2876 char tun_buf[4096];
2877 ssize_t tun_len;
2878 struct rtattr *nest;
76fb7ae4 2879
eab0f8f0
HS
2880 if (!nl_attr_put16(&req->n, buflen,
2881 NHA_ENCAP_TYPE,
2882 LWTUNNEL_ENCAP_SEG6))
2883 return 0;
2884 nest = nl_attr_nest(&req->n, buflen,
2885 NHA_ENCAP | NLA_F_NESTED);
2886 if (!nest)
2887 return 0;
2888 tun_len = fill_seg6ipt_encap(tun_buf,
2889 sizeof(tun_buf),
2890 &nh->nh_srv6->seg6_segs);
2891 if (tun_len < 0)
2892 return 0;
2893 if (!nl_attr_put(&req->n, buflen,
2894 SEG6_IPTUNNEL_SRH,
2895 tun_buf, tun_len))
2896 return 0;
2897 nl_attr_nest_end(&req->n, nest);
2898 }
76fb7ae4
HS
2899 }
2900
bf1626a6
MS
2901nexthop_done:
2902
2903 if (IS_ZEBRA_DEBUG_KERNEL)
2c77ddee
DS
2904 zlog_debug("%s: ID (%u): %pNHv(%d) vrf %s(%u) %s ",
2905 __func__, id, nh, nh->ifindex,
bd47f3a3
JU
2906 vrf_id_to_name(nh->vrf_id),
2907 nh->vrf_id, label_buf);
bdd085a8 2908 }
f820d025 2909
bdd085a8 2910 req->nhm.nh_protocol = zebra2proto(type);
f820d025 2911
f820d025
SW
2912 } else if (cmd != RTM_DELNEXTHOP) {
2913 flog_err(
2914 EC_ZEBRA_NHG_FIB_UPDATE,
2915 "Nexthop group kernel update command (%d) does not exist",
2916 cmd);
2917 return -1;
2918 }
2919
9266b315
RZ
2920 if (IS_ZEBRA_DEBUG_KERNEL)
2921 zlog_debug("%s: %s, id=%u", __func__, nl_msg_type_to_str(cmd),
2922 id);
f820d025 2923
e9a1cd93 2924 return NLMSG_ALIGN(req->n.nlmsg_len);
f820d025
SW
2925}
2926
67e3369e
JU
2927static ssize_t netlink_nexthop_msg_encoder(struct zebra_dplane_ctx *ctx,
2928 void *buf, size_t buflen)
f820d025 2929{
bf1626a6 2930 enum dplane_op_e op;
98cda54a 2931 int cmd = 0;
f820d025 2932
bf1626a6
MS
2933 op = dplane_ctx_get_op(ctx);
2934 if (op == DPLANE_OP_NH_INSTALL || op == DPLANE_OP_NH_UPDATE)
f820d025 2935 cmd = RTM_NEWNEXTHOP;
bf1626a6
MS
2936 else if (op == DPLANE_OP_NH_DELETE)
2937 cmd = RTM_DELNEXTHOP;
2938 else {
2939 flog_err(EC_ZEBRA_NHG_FIB_UPDATE,
2940 "Context received for kernel nexthop update with incorrect OP code (%u)",
2941 op);
67e3369e 2942 return -1;
f820d025
SW
2943 }
2944
45c12994 2945 return netlink_nexthop_msg_encode(cmd, ctx, buf, buflen, false);
67e3369e
JU
2946}
2947
67e3369e
JU
2948enum netlink_msg_status
2949netlink_put_nexthop_update_msg(struct nl_batch *bth,
2950 struct zebra_dplane_ctx *ctx)
2951{
e9a1cd93
RZ
2952 /* Nothing to do if the kernel doesn't support nexthop objects */
2953 if (!kernel_nexthops_supported())
67e3369e 2954 return FRR_NETLINK_SUCCESS;
e9a1cd93 2955
67e3369e
JU
2956 return netlink_batch_add_msg(bth, ctx, netlink_nexthop_msg_encoder,
2957 false);
2958}
f820d025 2959
67e3369e
JU
2960static ssize_t netlink_newroute_msg_encoder(struct zebra_dplane_ctx *ctx,
2961 void *buf, size_t buflen)
2962{
2963 return netlink_route_multipath_msg_encode(RTM_NEWROUTE, ctx, buf,
2964 buflen, false, false);
f820d025
SW
2965}
2966
67e3369e
JU
2967static ssize_t netlink_delroute_msg_encoder(struct zebra_dplane_ctx *ctx,
2968 void *buf, size_t buflen)
2969{
2970 return netlink_route_multipath_msg_encode(RTM_DELROUTE, ctx, buf,
2971 buflen, false, false);
2972}
2973
2974enum netlink_msg_status
2975netlink_put_route_update_msg(struct nl_batch *bth, struct zebra_dplane_ctx *ctx)
7cdb1a84 2976{
67e3369e 2977 int cmd;
7cdb1a84
MS
2978 const struct prefix *p = dplane_ctx_get_dest(ctx);
2979
2980 if (dplane_ctx_get_op(ctx) == DPLANE_OP_ROUTE_DELETE) {
2981 cmd = RTM_DELROUTE;
2982 } else if (dplane_ctx_get_op(ctx) == DPLANE_OP_ROUTE_INSTALL) {
2983 cmd = RTM_NEWROUTE;
2984 } else if (dplane_ctx_get_op(ctx) == DPLANE_OP_ROUTE_UPDATE) {
2985
2986 if (p->family == AF_INET || v6_rr_semantics) {
2987 /* Single 'replace' operation */
fe5f21af
DS
2988
2989 /*
2990 * With route replace semantics in place
2991 * for v4 routes and the new route is a system
2992 * route we do not install anything.
2993 * The problem here is that the new system
2994 * route should cause us to withdraw from
2995 * the kernel the old non-system route
2996 */
67e3369e
JU
2997 if (RSYSTEM_ROUTE(dplane_ctx_get_type(ctx))
2998 && !RSYSTEM_ROUTE(dplane_ctx_get_old_type(ctx)))
6b390b3c 2999 return netlink_batch_add_msg(
67e3369e
JU
3000 bth, ctx, netlink_delroute_msg_encoder,
3001 true);
7cdb1a84
MS
3002 } else {
3003 /*
3004 * So v6 route replace semantics are not in
3005 * the kernel at this point as I understand it.
3006 * so let's do a delete then an add.
3007 * In the future once v6 route replace semantics
3008 * are in we can figure out what to do here to
3009 * allow working with old and new kernels.
3010 *
3011 * I'm also intentionally ignoring the failure case
3012 * of the route delete. If that happens yeah we're
3013 * screwed.
3014 */
67e3369e
JU
3015 if (!RSYSTEM_ROUTE(dplane_ctx_get_old_type(ctx)))
3016 netlink_batch_add_msg(
3017 bth, ctx, netlink_delroute_msg_encoder,
3018 true);
7cdb1a84
MS
3019 }
3020
67e3369e
JU
3021 cmd = RTM_NEWROUTE;
3022 } else
3023 return FRR_NETLINK_ERROR;
7cdb1a84 3024
67e3369e
JU
3025 if (RSYSTEM_ROUTE(dplane_ctx_get_type(ctx)))
3026 return FRR_NETLINK_SUCCESS;
0be6e7d7 3027
67e3369e
JU
3028 return netlink_batch_add_msg(bth, ctx,
3029 cmd == RTM_NEWROUTE
3030 ? netlink_newroute_msg_encoder
3031 : netlink_delroute_msg_encoder,
3032 false);
3033}
7cdb1a84 3034
d9f5b2f5
SW
3035/**
3036 * netlink_nexthop_process_nh() - Parse the gatway/if info from a new nexthop
3037 *
3038 * @tb: Netlink RTA data
3039 * @family: Address family in the nhmsg
8c0a24c1 3040 * @ifp: Interface connected - this should be NULL, we fill it in
d9f5b2f5
SW
3041 * @ns_id: Namspace id
3042 *
3043 * Return: New nexthop
3044 */
e22e8001
SW
3045static struct nexthop netlink_nexthop_process_nh(struct rtattr **tb,
3046 unsigned char family,
3047 struct interface **ifp,
3048 ns_id_t ns_id)
d9f5b2f5 3049{
e22e8001 3050 struct nexthop nh = {};
d9f5b2f5 3051 void *gate = NULL;
8e401b25 3052 enum nexthop_types_t type = 0;
e22e8001
SW
3053 int if_index = 0;
3054 size_t sz = 0;
7134ba70 3055 struct interface *ifp_lookup;
d9f5b2f5
SW
3056
3057 if_index = *(int *)RTA_DATA(tb[NHA_OIF]);
3058
8e401b25 3059
d9f5b2f5
SW
3060 if (tb[NHA_GATEWAY]) {
3061 switch (family) {
3062 case AF_INET:
8e401b25 3063 type = NEXTHOP_TYPE_IPV4_IFINDEX;
d9f5b2f5
SW
3064 sz = 4;
3065 break;
3066 case AF_INET6:
8e401b25 3067 type = NEXTHOP_TYPE_IPV6_IFINDEX;
d9f5b2f5
SW
3068 sz = 16;
3069 break;
3070 default:
3071 flog_warn(
3072 EC_ZEBRA_BAD_NHG_MESSAGE,
c4239c05 3073 "Nexthop gateway with bad address family (%d) received from kernel",
d9f5b2f5 3074 family);
e22e8001 3075 return nh;
d9f5b2f5
SW
3076 }
3077 gate = RTA_DATA(tb[NHA_GATEWAY]);
e22e8001 3078 } else
8e401b25 3079 type = NEXTHOP_TYPE_IFINDEX;
d9f5b2f5 3080
8e401b25 3081 if (type)
e22e8001 3082 nh.type = type;
8e401b25
SW
3083
3084 if (gate)
e22e8001 3085 memcpy(&(nh.gate), gate, sz);
8e401b25
SW
3086
3087 if (if_index)
e22e8001 3088 nh.ifindex = if_index;
8e401b25 3089
7134ba70
DS
3090 ifp_lookup =
3091 if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id), nh.ifindex);
3092
e22e8001 3093 if (ifp)
7134ba70
DS
3094 *ifp = ifp_lookup;
3095 if (ifp_lookup)
096f7609 3096 nh.vrf_id = ifp_lookup->vrf->vrf_id;
e22e8001 3097 else {
d9f5b2f5
SW
3098 flog_warn(
3099 EC_ZEBRA_UNKNOWN_INTERFACE,
3100 "%s: Unknown nexthop interface %u received, defaulting to VRF_DEFAULT",
15569c58 3101 __func__, nh.ifindex);
d9f5b2f5 3102
e22e8001 3103 nh.vrf_id = VRF_DEFAULT;
d9f5b2f5
SW
3104 }
3105
3106 if (tb[NHA_ENCAP] && tb[NHA_ENCAP_TYPE]) {
3107 uint16_t encap_type = *(uint16_t *)RTA_DATA(tb[NHA_ENCAP_TYPE]);
3108 int num_labels = 0;
6e728764 3109
d9f5b2f5
SW
3110 mpls_label_t labels[MPLS_MAX_LABELS] = {0};
3111
e22e8001 3112 if (encap_type == LWTUNNEL_ENCAP_MPLS)
d9f5b2f5 3113 num_labels = parse_encap_mpls(tb[NHA_ENCAP], labels);
d9f5b2f5 3114
e22e8001
SW
3115 if (num_labels)
3116 nexthop_add_labels(&nh, ZEBRA_LSP_STATIC, num_labels,
d9f5b2f5 3117 labels);
d9f5b2f5
SW
3118 }
3119
3120 return nh;
3121}
3122
85f5e761 3123static int netlink_nexthop_process_group(struct rtattr **tb,
569e1411
DS
3124 struct nh_grp *z_grp, int z_grp_size,
3125 struct nhg_resilience *nhgr)
d9f5b2f5 3126{
e22e8001
SW
3127 uint8_t count = 0;
3128 /* linux/nexthop.h group struct */
d9f5b2f5
SW
3129 struct nexthop_grp *n_grp = NULL;
3130
85f5e761 3131 n_grp = (struct nexthop_grp *)RTA_DATA(tb[NHA_GROUP]);
d9f5b2f5
SW
3132 count = (RTA_PAYLOAD(tb[NHA_GROUP]) / sizeof(*n_grp));
3133
3134 if (!count || (count * sizeof(*n_grp)) != RTA_PAYLOAD(tb[NHA_GROUP])) {
3135 flog_warn(EC_ZEBRA_BAD_NHG_MESSAGE,
3136 "Invalid nexthop group received from the kernel");
85f5e761 3137 return count;
d9f5b2f5
SW
3138 }
3139
5a935f79 3140 for (int i = 0; ((i < count) && (i < z_grp_size)); i++) {
e22e8001 3141 z_grp[i].id = n_grp[i].id;
df7fb580 3142 z_grp[i].weight = n_grp[i].weight + 1;
85f5e761 3143 }
569e1411
DS
3144
3145 memset(nhgr, 0, sizeof(*nhgr));
3146 if (tb[NHA_RES_GROUP]) {
3147 struct rtattr *tbn[NHA_RES_GROUP_MAX + 1];
3148 struct rtattr *rta;
3149 struct rtattr *res_group = tb[NHA_RES_GROUP];
3150
3151 netlink_parse_rtattr_nested(tbn, NHA_RES_GROUP_MAX, res_group);
3152
3153 if (tbn[NHA_RES_GROUP_BUCKETS]) {
3154 rta = tbn[NHA_RES_GROUP_BUCKETS];
3155 nhgr->buckets = *(uint16_t *)RTA_DATA(rta);
3156 }
3157
3158 if (tbn[NHA_RES_GROUP_IDLE_TIMER]) {
3159 rta = tbn[NHA_RES_GROUP_IDLE_TIMER];
3160 nhgr->idle_timer = *(uint32_t *)RTA_DATA(rta);
3161 }
3162
3163 if (tbn[NHA_RES_GROUP_UNBALANCED_TIMER]) {
3164 rta = tbn[NHA_RES_GROUP_UNBALANCED_TIMER];
3165 nhgr->unbalanced_timer = *(uint32_t *)RTA_DATA(rta);
3166 }
3167
3168 if (tbn[NHA_RES_GROUP_UNBALANCED_TIME]) {
3169 rta = tbn[NHA_RES_GROUP_UNBALANCED_TIME];
3170 nhgr->unbalanced_time = *(uint64_t *)RTA_DATA(rta);
3171 }
3172 }
3173
d9f5b2f5
SW
3174 return count;
3175}
3176
3177/**
3178 * netlink_nexthop_change() - Read in change about nexthops from the kernel
3179 *
3180 * @h: Netlink message header
3181 * @ns_id: Namspace id
3182 * @startup: Are we reading under startup conditions?
3183 *
3184 * Return: Result status
3185 */
3186int netlink_nexthop_change(struct nlmsghdr *h, ns_id_t ns_id, int startup)
3187{
3188 int len;
3189 /* nexthop group id */
3190 uint32_t id;
3191 unsigned char family;
38e40db1 3192 int type;
e8b0e420 3193 afi_t afi = AFI_UNSPEC;
946de1b9 3194 vrf_id_t vrf_id = VRF_DEFAULT;
8c0a24c1 3195 struct interface *ifp = NULL;
d9f5b2f5 3196 struct nhmsg *nhm = NULL;
e22e8001
SW
3197 struct nexthop nh = {};
3198 struct nh_grp grp[MULTIPATH_NUM] = {};
85f5e761 3199 /* Count of nexthops in group array */
e22e8001 3200 uint8_t grp_count = 0;
e22e8001 3201 struct rtattr *tb[NHA_MAX + 1] = {};
d9f5b2f5 3202
1d80c209
DS
3203 frrtrace(3, frr_zebra, netlink_nexthop_change, h, ns_id, startup);
3204
d9f5b2f5
SW
3205 nhm = NLMSG_DATA(h);
3206
88cafda7
DS
3207 if (ns_id)
3208 vrf_id = ns_id;
3209
d9f5b2f5
SW
3210 if (startup && h->nlmsg_type != RTM_NEWNEXTHOP)
3211 return 0;
3212
3213 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct nhmsg));
3214 if (len < 0) {
3215 zlog_warn(
3216 "%s: Message received from netlink is of a broken size %d %zu",
15569c58 3217 __func__, h->nlmsg_len,
d9f5b2f5
SW
3218 (size_t)NLMSG_LENGTH(sizeof(struct nhmsg)));
3219 return -1;
3220 }
3221
6e1e2e8d
DS
3222 netlink_parse_rtattr_flags(tb, NHA_MAX, RTM_NHA(nhm), len,
3223 NLA_F_NESTED);
d9f5b2f5
SW
3224
3225
3226 if (!tb[NHA_ID]) {
3227 flog_warn(
3228 EC_ZEBRA_BAD_NHG_MESSAGE,
3229 "Nexthop group without an ID received from the kernel");
3230 return -1;
3231 }
3232
3233 /* We use the ID key'd nhg table for kernel updates */
3234 id = *((uint32_t *)RTA_DATA(tb[NHA_ID]));
d9f5b2f5 3235
506efd37
AK
3236 if (zebra_evpn_mh_is_fdb_nh(id)) {
3237 /* If this is a L2 NH just ignore it */
3238 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_EVPN_MH_NH) {
3239 zlog_debug("Ignore kernel update (%u) for fdb-nh 0x%x",
3240 h->nlmsg_type, id);
3241 }
3242 return 0;
3243 }
3244
e8b0e420 3245 family = nhm->nh_family;
e8b0e420
SW
3246 afi = family2afi(family);
3247
38e40db1
SW
3248 type = proto2zebra(nhm->nh_protocol, 0, true);
3249
fdee485a
SW
3250 if (IS_ZEBRA_DEBUG_KERNEL)
3251 zlog_debug("%s ID (%u) %s NS %u",
3252 nl_msg_type_to_str(h->nlmsg_type), id,
3253 nl_family_to_str(family), ns_id);
3254
3255
d9f5b2f5 3256 if (h->nlmsg_type == RTM_NEWNEXTHOP) {
569e1411
DS
3257 struct nhg_resilience nhgr = {};
3258
d9f5b2f5
SW
3259 if (tb[NHA_GROUP]) {
3260 /**
3261 * If this is a group message its only going to have
3262 * an array of nexthop IDs associated with it
3263 */
5a935f79 3264 grp_count = netlink_nexthop_process_group(
569e1411 3265 tb, grp, array_size(grp), &nhgr);
85f5e761
SW
3266 } else {
3267 if (tb[NHA_BLACKHOLE]) {
3268 /**
3269 * This nexthop is just for blackhole-ing
3270 * traffic, it should not have an OIF, GATEWAY,
3271 * or ENCAP
3272 */
e22e8001
SW
3273 nh.type = NEXTHOP_TYPE_BLACKHOLE;
3274 nh.bh_type = BLACKHOLE_UNSPEC;
3275 } else if (tb[NHA_OIF])
85f5e761
SW
3276 /**
3277 * This is a true new nexthop, so we need
3278 * to parse the gateway and device info
3279 */
3280 nh = netlink_nexthop_process_nh(tb, family,
3281 &ifp, ns_id);
e22e8001
SW
3282 else {
3283
8e401b25
SW
3284 flog_warn(
3285 EC_ZEBRA_BAD_NHG_MESSAGE,
3286 "Invalid Nexthop message received from the kernel with ID (%u)",
3287 id);
3288 return -1;
3289 }
e22e8001
SW
3290 SET_FLAG(nh.flags, NEXTHOP_FLAG_ACTIVE);
3291 if (nhm->nh_flags & RTNH_F_ONLINK)
3292 SET_FLAG(nh.flags, NEXTHOP_FLAG_ONLINK);
3293 vrf_id = nh.vrf_id;
d9f5b2f5
SW
3294 }
3295
38e40db1 3296 if (zebra_nhg_kernel_find(id, &nh, grp, grp_count, vrf_id, afi,
569e1411 3297 type, startup, &nhgr))
e22e8001 3298 return -1;
8e401b25 3299
9a1588c4 3300 } else if (h->nlmsg_type == RTM_DELNEXTHOP)
88cafda7 3301 zebra_nhg_kernel_del(id, vrf_id);
d9f5b2f5 3302
d9f5b2f5
SW
3303 return 0;
3304}
3305
3306/**
3307 * netlink_request_nexthop() - Request nextop information from the kernel
3308 * @zns: Zebra namespace
3309 * @family: AF_* netlink family
3310 * @type: RTM_* route type
3311 *
3312 * Return: Result status
3313 */
3314static int netlink_request_nexthop(struct zebra_ns *zns, int family, int type)
3315{
3316 struct {
3317 struct nlmsghdr n;
3318 struct nhmsg nhm;
3319 } req;
3320
3321 /* Form the request, specifying filter (rtattr) if needed. */
3322 memset(&req, 0, sizeof(req));
3323 req.n.nlmsg_type = type;
3324 req.n.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
3325 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct nhmsg));
3326 req.nhm.nh_family = family;
3327
fd3f8e52 3328 return netlink_request(&zns->netlink_cmd, &req);
d9f5b2f5
SW
3329}
3330
7d5bb02b 3331
d9f5b2f5
SW
3332/**
3333 * netlink_nexthop_read() - Nexthop read function using netlink interface
3334 *
3335 * @zns: Zebra name space
3336 *
3337 * Return: Result status
3338 * Only called at bootstrap time.
3339 */
3340int netlink_nexthop_read(struct zebra_ns *zns)
3341{
3342 int ret;
3343 struct zebra_dplane_info dp_info;
3344
3345 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
3346
3347 /* Get nexthop objects */
3348 ret = netlink_request_nexthop(zns, AF_UNSPEC, RTM_GETNEXTHOP);
3349 if (ret < 0)
3350 return ret;
3351 ret = netlink_parse_info(netlink_nexthop_change, &zns->netlink_cmd,
9bfadae8 3352 &dp_info, 0, true);
81505946
SW
3353
3354 if (!ret)
3355 /* If we succesfully read in nexthop objects,
3356 * this kernel must support them.
3357 */
3358 supports_nh = true;
7c99d51b
MS
3359 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_NHG)
3360 zlog_debug("Nexthop objects %ssupported on this kernel",
3361 supports_nh ? "" : "not ");
090ee856
DS
3362
3363 zebra_router_set_supports_nhgs(supports_nh);
81505946 3364
60e0eaee 3365 return ret;
d9f5b2f5
SW
3366}
3367
3368
05657ec2
PG
3369int kernel_neigh_update(int add, int ifindex, void *addr, char *lla, int llalen,
3370 ns_id_t ns_id, uint8_t family, bool permanent)
6b8a5694 3371{
d62a17ae 3372 return netlink_neigh_update(add ? RTM_NEWNEIGH : RTM_DELNEIGH, ifindex,
05657ec2
PG
3373 addr, lla, llalen, ns_id, family, permanent,
3374 RTPROT_ZEBRA);
6b8a5694 3375}
718e3744 3376
340845e2 3377/**
0be6e7d7
JU
3378 * netlink_neigh_update_msg_encode() - Common helper api for encoding
3379 * evpn neighbor update as netlink messages using dataplane context object.
bbd4285b 3380 * Here, a neighbor refers to a bridge forwarding database entry for
3381 * either unicast forwarding or head-end replication or an IP neighbor
3382 * entry.
340845e2
JU
3383 * @ctx: Dataplane context
3384 * @cmd: Netlink command (RTM_NEWNEIGH or RTM_DELNEIGH)
0a27a2fe
PG
3385 * @lla: A pointer to neighbor cache link layer address
3386 * @llalen: Length of the pointer to neighbor cache link layer
3387 * address
340845e2 3388 * @ip: A neighbor cache n/w layer destination address
bbd4285b 3389 * In the case of bridge FDB, this represnts the remote
3390 * VTEP IP.
340845e2
JU
3391 * @replace_obj: Whether NEW request should replace existing object or
3392 * add to the end of the list
3393 * @family: AF_* netlink family
3394 * @type: RTN_* route type
3395 * @flags: NTF_* flags
3396 * @state: NUD_* states
d4d4ec1c
RZ
3397 * @data: data buffer pointer
3398 * @datalen: total amount of data buffer space
0a27a2fe 3399 * @protocol: protocol information
340845e2 3400 *
0be6e7d7
JU
3401 * Return: 0 when the msg doesn't fit entirely in the buffer
3402 * otherwise the number of bytes written to buf.
13d60d35 3403 */
0be6e7d7 3404static ssize_t netlink_neigh_update_msg_encode(
0a27a2fe
PG
3405 const struct zebra_dplane_ctx *ctx, int cmd, const void *lla,
3406 int llalen, const struct ipaddr *ip, bool replace_obj, uint8_t family,
3407 uint8_t type, uint8_t flags, uint16_t state, uint32_t nhg_id, bool nfy,
ccd187cd 3408 uint8_t nfy_flags, bool ext, uint32_t ext_flags, void *data,
0a27a2fe 3409 size_t datalen, uint8_t protocol)
13d60d35 3410{
d62a17ae 3411 struct {
3412 struct nlmsghdr n;
3413 struct ndmsg ndm;
d4d4ec1c
RZ
3414 char buf[];
3415 } *req = data;
340845e2
JU
3416 int ipa_len;
3417 enum dplane_op_e op;
d62a17ae 3418
0be6e7d7
JU
3419 if (datalen < sizeof(*req))
3420 return 0;
45c80fbd 3421 memset(req, 0, sizeof(*req));
d62a17ae 3422
340845e2
JU
3423 op = dplane_ctx_get_op(ctx);
3424
d4d4ec1c
RZ
3425 req->n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
3426 req->n.nlmsg_flags = NLM_F_REQUEST;
d62a17ae 3427 if (cmd == RTM_NEWNEIGH)
d4d4ec1c 3428 req->n.nlmsg_flags |=
340845e2
JU
3429 NLM_F_CREATE
3430 | (replace_obj ? NLM_F_REPLACE : NLM_F_APPEND);
d4d4ec1c
RZ
3431 req->n.nlmsg_type = cmd;
3432 req->ndm.ndm_family = family;
3433 req->ndm.ndm_type = type;
3434 req->ndm.ndm_state = state;
3435 req->ndm.ndm_flags = flags;
3436 req->ndm.ndm_ifindex = dplane_ctx_get_ifindex(ctx);
d62a17ae 3437
45c80fbd 3438 if (!nl_attr_put(&req->n, datalen, NDA_PROTOCOL, &protocol,
0be6e7d7
JU
3439 sizeof(protocol)))
3440 return 0;
3441
0a27a2fe
PG
3442 if (lla) {
3443 if (!nl_attr_put(&req->n, datalen, NDA_LLADDR, lla, llalen))
0be6e7d7
JU
3444 return 0;
3445 }
13d60d35 3446
f188e68e 3447 if (nfy) {
4bcdb608
NA
3448 struct rtattr *nest;
3449
3450 nest = nl_attr_nest(&req->n, datalen,
3451 NDA_FDB_EXT_ATTRS | NLA_F_NESTED);
3452 if (!nest)
3453 return 0;
3454
3455 if (!nl_attr_put(&req->n, datalen, NFEA_ACTIVITY_NOTIFY,
3456 &nfy_flags, sizeof(nfy_flags)))
f188e68e 3457 return 0;
4bcdb608
NA
3458 if (!nl_attr_put(&req->n, datalen, NFEA_DONT_REFRESH, NULL, 0))
3459 return 0;
3460
3461 nl_attr_nest_end(&req->n, nest);
f188e68e 3462 }
506efd37 3463
4bcdb608 3464
ccd187cd
AK
3465 if (ext) {
3466 if (!nl_attr_put(&req->n, datalen, NDA_EXT_FLAGS, &ext_flags,
3467 sizeof(ext_flags)))
3468 return 0;
3469 }
3470
80e19eb7
AK
3471 if (nhg_id) {
3472 if (!nl_attr_put32(&req->n, datalen, NDA_NH_ID, nhg_id))
3473 return 0;
3474 } else {
3475 ipa_len =
3476 IS_IPADDR_V4(ip) ? IPV4_MAX_BYTELEN : IPV6_MAX_BYTELEN;
3477 if (!nl_attr_put(&req->n, datalen, NDA_DST, &ip->ip.addr,
3478 ipa_len))
3479 return 0;
3480 }
340845e2
JU
3481
3482 if (op == DPLANE_OP_MAC_INSTALL || op == DPLANE_OP_MAC_DELETE) {
3483 vlanid_t vid = dplane_ctx_mac_get_vlan(ctx);
b95ce8fa 3484 vni_t vni = dplane_ctx_mac_get_vni(ctx);
13d60d35 3485
0be6e7d7
JU
3486 if (vid > 0) {
3487 if (!nl_attr_put16(&req->n, datalen, NDA_VLAN, vid))
3488 return 0;
3489 }
13d60d35 3490
b95ce8fa
SR
3491 if (vni > 0) {
3492 if (!nl_attr_put32(&req->n, datalen, NDA_SRC_VNI, vni))
3493 return 0;
3494 }
3495
0be6e7d7
JU
3496 if (!nl_attr_put32(&req->n, datalen, NDA_MASTER,
3497 dplane_ctx_mac_get_br_ifindex(ctx)))
3498 return 0;
340845e2 3499 }
13d60d35 3500
b95ce8fa
SR
3501 if (op == DPLANE_OP_VTEP_ADD || op == DPLANE_OP_VTEP_DELETE) {
3502 vni_t vni = dplane_ctx_neigh_get_vni(ctx);
3503
3504 if (vni > 0) {
3505 if (!nl_attr_put32(&req->n, datalen, NDA_SRC_VNI, vni))
3506 return 0;
3507 }
3508 }
3509
d4d4ec1c 3510 return NLMSG_ALIGN(req->n.nlmsg_len);
13d60d35 3511}
3512
340845e2
JU
3513/*
3514 * Add remote VTEP to the flood list for this VxLAN interface (VNI). This
3515 * is done by adding an FDB entry with a MAC of 00:00:00:00:00:00.
3516 */
67e3369e
JU
3517static ssize_t
3518netlink_vxlan_flood_update_ctx(const struct zebra_dplane_ctx *ctx, int cmd,
3519 void *buf, size_t buflen)
340845e2
JU
3520{
3521 struct ethaddr dst_mac = {.octet = {0}};
88217099
PG
3522 int proto = RTPROT_ZEBRA;
3523
3524 if (dplane_ctx_get_type(ctx) != 0)
3525 proto = zebra2proto(dplane_ctx_get_type(ctx));
d4d4ec1c 3526
67e3369e 3527 return netlink_neigh_update_msg_encode(
0a27a2fe
PG
3528 ctx, cmd, (const void *)&dst_mac, ETH_ALEN,
3529 dplane_ctx_neigh_get_ipaddr(ctx), false, PF_BRIDGE, 0, NTF_SELF,
3530 (NUD_NOARP | NUD_PERMANENT), 0 /*nhg*/, false /*nfy*/,
3531 0 /*nfy_flags*/, false /*ext*/, 0 /*ext_flags*/, buf, buflen,
88217099 3532 proto);
340845e2
JU
3533}
3534
2232a77c 3535#ifndef NDA_RTA
d62a17ae 3536#define NDA_RTA(r) \
3537 ((struct rtattr *)(((char *)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
2232a77c 3538#endif
3539
2414abd3 3540static int netlink_macfdb_change(struct nlmsghdr *h, int len, ns_id_t ns_id)
2232a77c 3541{
d62a17ae 3542 struct ndmsg *ndm;
3543 struct interface *ifp;
3544 struct zebra_if *zif;
d62a17ae 3545 struct rtattr *tb[NDA_MAX + 1];
3546 struct interface *br_if;
3547 struct ethaddr mac;
3548 vlanid_t vid = 0;
4b3f26f4 3549 struct in_addr vtep_ip;
d62a17ae 3550 int vid_present = 0, dst_present = 0;
d62a17ae 3551 char vid_buf[20];
3552 char dst_buf[30];
a37f4598 3553 bool sticky;
f188e68e
AK
3554 bool local_inactive = false;
3555 bool dp_static = false;
784d88aa 3556 vni_t vni = 0;
f188e68e 3557 uint32_t nhg_id = 0;
784d88aa 3558 bool vni_mcast_grp = false;
d62a17ae 3559
3560 ndm = NLMSG_DATA(h);
3561
2853fed6 3562 /* We only process macfdb notifications if EVPN is enabled */
3563 if (!is_evpn_enabled())
3564 return 0;
3565
4b3f26f4 3566 /* Parse attributes and extract fields of interest. Do basic
3567 * validation of the fields.
3568 */
4bcdb608
NA
3569 netlink_parse_rtattr_flags(tb, NDA_MAX, NDA_RTA(ndm), len,
3570 NLA_F_NESTED);
d62a17ae 3571
3572 if (!tb[NDA_LLADDR]) {
28bd0652 3573 if (IS_ZEBRA_DEBUG_KERNEL)
4b3f26f4 3574 zlog_debug("%s AF_BRIDGE IF %u - no LLADDR",
28bd0652 3575 nl_msg_type_to_str(h->nlmsg_type),
4b3f26f4 3576 ndm->ndm_ifindex);
d62a17ae 3577 return 0;
3578 }
3579
ff8b7eb8 3580 if (RTA_PAYLOAD(tb[NDA_LLADDR]) != ETH_ALEN) {
28bd0652
DS
3581 if (IS_ZEBRA_DEBUG_KERNEL)
3582 zlog_debug(
4b3f26f4 3583 "%s AF_BRIDGE IF %u - LLADDR is not MAC, len %lu",
3584 nl_msg_type_to_str(h->nlmsg_type), ndm->ndm_ifindex,
28bd0652 3585 (unsigned long)RTA_PAYLOAD(tb[NDA_LLADDR]));
d62a17ae 3586 return 0;
3587 }
3588
ff8b7eb8 3589 memcpy(&mac, RTA_DATA(tb[NDA_LLADDR]), ETH_ALEN);
d62a17ae 3590
2be18df4 3591 if (tb[NDA_VLAN]) {
d62a17ae 3592 vid_present = 1;
d7c0a89a 3593 vid = *(uint16_t *)RTA_DATA(tb[NDA_VLAN]);
772270f3 3594 snprintf(vid_buf, sizeof(vid_buf), " VLAN %u", vid);
d62a17ae 3595 }
3596
3597 if (tb[NDA_DST]) {
3598 /* TODO: Only IPv4 supported now. */
3599 dst_present = 1;
4b3f26f4 3600 memcpy(&vtep_ip.s_addr, RTA_DATA(tb[NDA_DST]),
d62a17ae 3601 IPV4_MAX_BYTELEN);
9bcef951
MS
3602 snprintfrr(dst_buf, sizeof(dst_buf), " dst %pI4",
3603 &vtep_ip);
e8a392d9
SR
3604 } else
3605 memset(&vtep_ip, 0, sizeof(vtep_ip));
d62a17ae 3606
f188e68e
AK
3607 if (tb[NDA_NH_ID])
3608 nhg_id = *(uint32_t *)RTA_DATA(tb[NDA_NH_ID]);
3609
3610 if (ndm->ndm_state & NUD_STALE)
3611 local_inactive = true;
3612
4bcdb608
NA
3613 if (tb[NDA_FDB_EXT_ATTRS]) {
3614 struct rtattr *attr = tb[NDA_FDB_EXT_ATTRS];
3615 struct rtattr *nfea_tb[NFEA_MAX + 1] = {0};
3616
3617 netlink_parse_rtattr_nested(nfea_tb, NFEA_MAX, attr);
3618 if (nfea_tb[NFEA_ACTIVITY_NOTIFY]) {
3619 uint8_t nfy_flags;
f188e68e 3620
4bcdb608
NA
3621 nfy_flags = *(uint8_t *)RTA_DATA(
3622 nfea_tb[NFEA_ACTIVITY_NOTIFY]);
3623 if (nfy_flags & FDB_NOTIFY_BIT)
3624 dp_static = true;
3625 if (nfy_flags & FDB_NOTIFY_INACTIVE_BIT)
3626 local_inactive = true;
3627 }
f188e68e
AK
3628 }
3629
784d88aa
SR
3630 if (tb[NDA_SRC_VNI])
3631 vni = *(vni_t *)RTA_DATA(tb[NDA_SRC_VNI]);
3632
d62a17ae 3633 if (IS_ZEBRA_DEBUG_KERNEL)
784d88aa
SR
3634 zlog_debug(
3635 "Rx %s AF_BRIDGE IF %u%s st 0x%x fl 0x%x MAC %pEA%s nhg %d vni %d",
3636 nl_msg_type_to_str(h->nlmsg_type), ndm->ndm_ifindex,
3637 vid_present ? vid_buf : "", ndm->ndm_state,
3638 ndm->ndm_flags, &mac, dst_present ? dst_buf : "",
3639 nhg_id, vni);
d62a17ae 3640
4b3f26f4 3641 /* The interface should exist. */
3642 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
3643 ndm->ndm_ifindex);
3644 if (!ifp || !ifp->info)
3645 return 0;
3646
3647 /* The interface should be something we're interested in. */
3648 if (!IS_ZEBRA_IF_BRIDGE_SLAVE(ifp))
3649 return 0;
3650
3651 zif = (struct zebra_if *)ifp->info;
3652 if ((br_if = zif->brslave_info.br_if) == NULL) {
3653 if (IS_ZEBRA_DEBUG_KERNEL)
3654 zlog_debug(
3655 "%s AF_BRIDGE IF %s(%u) brIF %u - no bridge master",
3656 nl_msg_type_to_str(h->nlmsg_type), ifp->name,
3657 ndm->ndm_ifindex,
3658 zif->brslave_info.bridge_ifindex);
3659 return 0;
3660 }
3661
784d88aa
SR
3662 /* For per vni device, vni comes from device itself */
3663 if (IS_ZEBRA_IF_VXLAN(ifp) && IS_ZEBRA_VXLAN_IF_VNI(zif)) {
3664 struct zebra_vxlan_vni *vnip;
9464e5b8 3665
784d88aa
SR
3666 vnip = zebra_vxlan_if_vni_find(zif, 0);
3667 vni = vnip->vni;
3668 }
3669
f188e68e 3670 sticky = !!(ndm->ndm_flags & NTF_STICKY);
4b3f26f4 3671
28bd0652
DS
3672 if (filter_vlan && vid != filter_vlan) {
3673 if (IS_ZEBRA_DEBUG_KERNEL)
d6951e5e 3674 zlog_debug(" Filtered due to filter vlan: %d",
28bd0652 3675 filter_vlan);
d62a17ae 3676 return 0;
28bd0652 3677 }
d62a17ae 3678
784d88aa
SR
3679 /*
3680 * Check if this is a mcast group update (svd case)
3681 */
3682 vni_mcast_grp = is_mac_vni_mcast_group(&mac, vni, vtep_ip);
3683
d62a17ae 3684 /* If add or update, do accordingly if learnt on a "local" interface; if
3685 * the notification is over VxLAN, this has to be related to
3686 * multi-homing,
3687 * so perform an implicit delete of any local entry (if it exists).
3688 */
3689 if (h->nlmsg_type == RTM_NEWNEIGH) {
4b3f26f4 3690 /* Drop "permanent" entries. */
784d88aa 3691 if (!vni_mcast_grp && (ndm->ndm_state & NUD_PERMANENT)) {
4b3f26f4 3692 if (IS_ZEBRA_DEBUG_KERNEL)
d6951e5e
DL
3693 zlog_debug(
3694 " Dropping entry because of NUD_PERMANENT");
3695 return 0;
4b3f26f4 3696 }
3697
784d88aa
SR
3698 if (IS_ZEBRA_IF_VXLAN(ifp)) {
3699 if (!dst_present)
3700 return 0;
3701
3702 if (vni_mcast_grp)
e41db240 3703 return zebra_vxlan_if_vni_mcast_group_add_update(
131a9a2e 3704 ifp, vni, &vtep_ip);
784d88aa 3705
131a9a2e
SR
3706 return zebra_vxlan_dp_network_mac_add(
3707 ifp, br_if, &mac, vid, vni, nhg_id, sticky,
3708 !!(ndm->ndm_flags & NTF_EXT_LEARNED));
784d88aa 3709 }
d62a17ae 3710
3711 return zebra_vxlan_local_mac_add_update(ifp, br_if, &mac, vid,
f188e68e 3712 sticky, local_inactive, dp_static);
d62a17ae 3713 }
3714
3715 /* This is a delete notification.
4b3f26f4 3716 * Ignore the notification with IP dest as it may just signify that the
3717 * MAC has moved from remote to local. The exception is the special
3718 * all-zeros MAC that represents the BUM flooding entry; we may have
3719 * to readd it. Otherwise,
d62a17ae 3720 * 1. For a MAC over VxLan, check if it needs to be refreshed(readded)
3721 * 2. For a MAC over "local" interface, delete the mac
3722 * Note: We will get notifications from both bridge driver and VxLAN
3723 * driver.
d62a17ae 3724 */
f188e68e
AK
3725 if (nhg_id)
3726 return 0;
3727
28bd0652 3728 if (dst_present) {
784d88aa 3729 if (vni_mcast_grp)
e41db240 3730 return zebra_vxlan_if_vni_mcast_group_del(ifp, vni,
3731 &vtep_ip);
784d88aa 3732
bc3421f0 3733 if (is_zero_mac(&mac) && vni)
131a9a2e 3734 return zebra_vxlan_check_readd_vtep(ifp, vni, vtep_ip);
4b3f26f4 3735
d62a17ae 3736 return 0;
28bd0652 3737 }
d62a17ae 3738
3739 if (IS_ZEBRA_IF_VXLAN(ifp))
784d88aa 3740 return 0;
d62a17ae 3741
3742 return zebra_vxlan_local_mac_del(ifp, br_if, &mac, vid);
2232a77c 3743}
3744
2414abd3 3745static int netlink_macfdb_table(struct nlmsghdr *h, ns_id_t ns_id, int startup)
2232a77c 3746{
d62a17ae 3747 int len;
3748 struct ndmsg *ndm;
2232a77c 3749
d62a17ae 3750 if (h->nlmsg_type != RTM_NEWNEIGH)
3751 return 0;
2232a77c 3752
d62a17ae 3753 /* Length validity. */
3754 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
3755 if (len < 0)
3756 return -1;
2232a77c 3757
d62a17ae 3758 /* We are interested only in AF_BRIDGE notifications. */
3759 ndm = NLMSG_DATA(h);
3760 if (ndm->ndm_family != AF_BRIDGE)
3761 return 0;
2232a77c 3762
2414abd3 3763 return netlink_macfdb_change(h, len, ns_id);
2232a77c 3764}
3765
3766/* Request for MAC FDB information from the kernel */
85a75f1e
MS
3767static int netlink_request_macs(struct nlsock *netlink_cmd, int family,
3768 int type, ifindex_t master_ifindex)
2232a77c 3769{
d62a17ae 3770 struct {
3771 struct nlmsghdr n;
3772 struct ifinfomsg ifm;
3773 char buf[256];
3774 } req;
3775
3776 /* Form the request, specifying filter (rtattr) if needed. */
3777 memset(&req, 0, sizeof(req));
3778 req.n.nlmsg_type = type;
718f9b0f 3779 req.n.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
d62a17ae 3780 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
3781 req.ifm.ifi_family = family;
3782 if (master_ifindex)
312a6bee 3783 nl_attr_put32(&req.n, sizeof(req), IFLA_MASTER, master_ifindex);
d62a17ae 3784
fd3f8e52 3785 return netlink_request(netlink_cmd, &req);
2232a77c 3786}
3787
3788/*
3789 * MAC forwarding database read using netlink interface. This is invoked
3790 * at startup.
3791 */
d62a17ae 3792int netlink_macfdb_read(struct zebra_ns *zns)
2232a77c 3793{
d62a17ae 3794 int ret;
85a75f1e
MS
3795 struct zebra_dplane_info dp_info;
3796
3797 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
d62a17ae 3798
3799 /* Get bridge FDB table. */
85a75f1e
MS
3800 ret = netlink_request_macs(&zns->netlink_cmd, AF_BRIDGE, RTM_GETNEIGH,
3801 0);
d62a17ae 3802 if (ret < 0)
3803 return ret;
3804 /* We are reading entire table. */
3805 filter_vlan = 0;
85a75f1e 3806 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd,
9bfadae8 3807 &dp_info, 0, true);
d62a17ae 3808
3809 return ret;
2232a77c 3810}
3811
3812/*
3813 * MAC forwarding database read using netlink interface. This is for a
3814 * specific bridge and matching specific access VLAN (if VLAN-aware bridge).
3815 */
d62a17ae 3816int netlink_macfdb_read_for_bridge(struct zebra_ns *zns, struct interface *ifp,
784d88aa 3817 struct interface *br_if, vlanid_t vid)
2232a77c 3818{
d62a17ae 3819 struct zebra_if *br_zif;
85a75f1e 3820 struct zebra_dplane_info dp_info;
d62a17ae 3821 int ret = 0;
3822
85a75f1e 3823 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
d62a17ae 3824
3825 /* Save VLAN we're filtering on, if needed. */
3826 br_zif = (struct zebra_if *)br_if->info;
d62a17ae 3827 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(br_zif))
784d88aa 3828 filter_vlan = vid;
d62a17ae 3829
3830 /* Get bridge FDB table for specific bridge - we do the VLAN filtering.
3831 */
85a75f1e 3832 ret = netlink_request_macs(&zns->netlink_cmd, AF_BRIDGE, RTM_GETNEIGH,
d62a17ae 3833 br_if->ifindex);
3834 if (ret < 0)
3835 return ret;
85a75f1e 3836 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd,
9bfadae8 3837 &dp_info, 0, false);
d62a17ae 3838
3839 /* Reset VLAN filter. */
3840 filter_vlan = 0;
3841 return ret;
2232a77c 3842}
3843
67fb9374
CS
3844
3845/* Request for MAC FDB for a specific MAC address in VLAN from the kernel */
9464e5b8
SR
3846static int netlink_request_specific_mac(struct zebra_ns *zns, int family,
3847 int type, struct interface *ifp,
3848 const struct ethaddr *mac, vlanid_t vid,
3849 vni_t vni, uint8_t flags)
67fb9374
CS
3850{
3851 struct {
3852 struct nlmsghdr n;
3853 struct ndmsg ndm;
3854 char buf[256];
3855 } req;
9464e5b8 3856 struct zebra_if *zif;
67fb9374
CS
3857
3858 memset(&req, 0, sizeof(req));
3859 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
3860 req.n.nlmsg_type = type; /* RTM_GETNEIGH */
3861 req.n.nlmsg_flags = NLM_F_REQUEST;
3862 req.ndm.ndm_family = family; /* AF_BRIDGE */
9464e5b8 3863 req.ndm.ndm_flags = flags;
67fb9374
CS
3864 /* req.ndm.ndm_state = NUD_REACHABLE; */
3865
312a6bee 3866 nl_attr_put(&req.n, sizeof(req), NDA_LLADDR, mac, 6);
67fb9374 3867
9464e5b8
SR
3868 zif = (struct zebra_if *)ifp->info;
3869 /* Is this a read on a VXLAN interface? */
3870 if (IS_ZEBRA_IF_VXLAN(ifp)) {
3871 nl_attr_put32(&req.n, sizeof(req), NDA_VNI, vni);
3872 /* TBD: Why is ifindex not filled in the non-vxlan case? */
3873 req.ndm.ndm_ifindex = ifp->ifindex;
3874 } else {
3875 if (IS_ZEBRA_IF_BRIDGE_VLAN_AWARE(zif) && vid > 0)
3876 nl_attr_put16(&req.n, sizeof(req), NDA_VLAN, vid);
3877 nl_attr_put32(&req.n, sizeof(req), NDA_MASTER, ifp->ifindex);
3878 }
67fb9374
CS
3879
3880 if (IS_ZEBRA_DEBUG_KERNEL)
9464e5b8
SR
3881 zlog_debug("Tx %s %s IF %s(%u) MAC %pEA vid %u vni %u",
3882 nl_msg_type_to_str(type),
3883 nl_family_to_str(req.ndm.ndm_family), ifp->name,
3884 ifp->ifindex, mac, vid, vni);
67fb9374 3885
fd3f8e52 3886 return netlink_request(&zns->netlink_cmd, &req);
67fb9374
CS
3887}
3888
3889int netlink_macfdb_read_specific_mac(struct zebra_ns *zns,
3890 struct interface *br_if,
1a3bd37f 3891 const struct ethaddr *mac, vlanid_t vid)
67fb9374
CS
3892{
3893 int ret = 0;
3894 struct zebra_dplane_info dp_info;
3895
3896 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
3897
3898 /* Get bridge FDB table for specific bridge - we do the VLAN filtering.
3899 */
9464e5b8
SR
3900 ret = netlink_request_specific_mac(zns, AF_BRIDGE, RTM_GETNEIGH, br_if,
3901 mac, vid, 0, 0);
3902 if (ret < 0)
3903 return ret;
3904
3905 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd,
3906 &dp_info, 1, 0);
3907
3908 return ret;
3909}
3910
3911int netlink_macfdb_read_mcast_for_vni(struct zebra_ns *zns,
3912 struct interface *ifp, vni_t vni)
3913{
3914 struct zebra_if *zif;
0bbad9d1 3915 struct ethaddr mac = {.octet = {0}};
9464e5b8
SR
3916 struct zebra_dplane_info dp_info;
3917 int ret = 0;
3918
3919 zif = ifp->info;
3920 if (IS_ZEBRA_VXLAN_IF_VNI(zif))
3921 return 0;
3922
3923 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
3924
3925 /* Get specific FDB entry for BUM handling, if any */
3926 ret = netlink_request_specific_mac(zns, AF_BRIDGE, RTM_GETNEIGH, ifp,
3927 &mac, 0, vni, NTF_SELF);
67fb9374
CS
3928 if (ret < 0)
3929 return ret;
3930
3931 ret = netlink_parse_info(netlink_macfdb_table, &zns->netlink_cmd,
9bfadae8 3932 &dp_info, 1, false);
67fb9374
CS
3933
3934 return ret;
3935}
036d93c0
MS
3936
3937/*
3938 * Netlink-specific handler for MAC updates using dataplane context object.
3939 */
67e3369e
JU
3940ssize_t netlink_macfdb_update_ctx(struct zebra_dplane_ctx *ctx, void *data,
3941 size_t datalen)
2232a77c 3942{
340845e2 3943 struct ipaddr vtep_ip;
036d93c0 3944 vlanid_t vid;
d4d4ec1c
RZ
3945 ssize_t total;
3946 int cmd;
340845e2
JU
3947 uint8_t flags;
3948 uint16_t state;
506efd37 3949 uint32_t nhg_id;
f188e68e
AK
3950 uint32_t update_flags;
3951 bool nfy = false;
3952 uint8_t nfy_flags = 0;
88217099
PG
3953 int proto = RTPROT_ZEBRA;
3954
3955 if (dplane_ctx_get_type(ctx) != 0)
3956 proto = zebra2proto(dplane_ctx_get_type(ctx));
d4d4ec1c
RZ
3957
3958 cmd = dplane_ctx_get_op(ctx) == DPLANE_OP_MAC_INSTALL
3959 ? RTM_NEWNEIGH : RTM_DELNEIGH;
036d93c0 3960
f188e68e 3961 flags = NTF_MASTER;
340845e2 3962 state = NUD_REACHABLE;
d62a17ae 3963
f188e68e
AK
3964 update_flags = dplane_ctx_mac_get_update_flags(ctx);
3965 if (update_flags & DPLANE_MAC_REMOTE) {
3966 flags |= NTF_SELF;
60e372e9
AK
3967 if (dplane_ctx_mac_is_sticky(ctx)) {
3968 /* NUD_NOARP prevents the entry from expiring */
3969 state |= NUD_NOARP;
3970 /* sticky the entry from moving */
f188e68e 3971 flags |= NTF_STICKY;
60e372e9 3972 } else {
f188e68e 3973 flags |= NTF_EXT_LEARNED;
60e372e9 3974 }
f188e68e
AK
3975 /* if it was static-local previously we need to clear the
3976 * notify flags on replace with remote
3977 */
3978 if (update_flags & DPLANE_MAC_WAS_STATIC)
3979 nfy = true;
3980 } else {
3981 /* local mac */
3982 if (update_flags & DPLANE_MAC_SET_STATIC) {
4bcdb608 3983 nfy_flags |= FDB_NOTIFY_BIT;
f188e68e
AK
3984 state |= NUD_NOARP;
3985 }
3986
3987 if (update_flags & DPLANE_MAC_SET_INACTIVE)
4bcdb608 3988 nfy_flags |= FDB_NOTIFY_INACTIVE_BIT;
f188e68e
AK
3989
3990 nfy = true;
3991 }
478566d6 3992
506efd37 3993 nhg_id = dplane_ctx_mac_get_nhg_id(ctx);
340845e2
JU
3994 vtep_ip.ipaddr_v4 = *(dplane_ctx_mac_get_vtep_ip(ctx));
3995 SET_IPADDR_V4(&vtep_ip);
d62a17ae 3996
036d93c0 3997 if (IS_ZEBRA_DEBUG_KERNEL) {
478566d6 3998 char vid_buf[20];
506efd37 3999 const struct ethaddr *mac = dplane_ctx_mac_get_addr(ctx);
478566d6 4000
340845e2
JU
4001 vid = dplane_ctx_mac_get_vlan(ctx);
4002 if (vid > 0)
478566d6
MS
4003 snprintf(vid_buf, sizeof(vid_buf), " VLAN %u", vid);
4004 else
4005 vid_buf[0] = '\0';
036d93c0 4006
ccd187cd 4007 zlog_debug(
ef7b8be4 4008 "Tx %s family %s IF %s(%u)%s %sMAC %pEA dst %pIA nhg %u%s%s%s%s%s",
ccd187cd
AK
4009 nl_msg_type_to_str(cmd), nl_family_to_str(AF_BRIDGE),
4010 dplane_ctx_get_ifname(ctx), dplane_ctx_get_ifindex(ctx),
4011 vid_buf, dplane_ctx_mac_is_sticky(ctx) ? "sticky " : "",
ef7b8be4 4012 mac, &vtep_ip, nhg_id,
ccd187cd
AK
4013 (update_flags & DPLANE_MAC_REMOTE) ? " rem" : "",
4014 (update_flags & DPLANE_MAC_WAS_STATIC) ? " clr_sync"
4015 : "",
4016 (update_flags & DPLANE_MAC_SET_STATIC) ? " static" : "",
4017 (update_flags & DPLANE_MAC_SET_INACTIVE) ? " inactive"
4018 : "",
4019 nfy ? " nfy" : "");
036d93c0 4020 }
d62a17ae 4021
0be6e7d7 4022 total = netlink_neigh_update_msg_encode(
0a27a2fe
PG
4023 ctx, cmd, (const void *)dplane_ctx_mac_get_addr(ctx), ETH_ALEN,
4024 &vtep_ip, true, AF_BRIDGE, 0, flags, state, nhg_id, nfy,
4025 nfy_flags, false /*ext*/, 0 /*ext_flags*/, data, datalen,
88217099 4026 proto);
d4d4ec1c
RZ
4027
4028 return total;
2232a77c 4029}
4030
f17b99ed
DS
4031/*
4032 * In the event the kernel deletes ipv4 link-local neighbor entries created for
4033 * 5549 support, re-install them.
4034 */
4035static void netlink_handle_5549(struct ndmsg *ndm, struct zebra_if *zif,
9b036974
DS
4036 struct interface *ifp, struct ipaddr *ip,
4037 bool handle_failed)
f17b99ed
DS
4038{
4039 if (ndm->ndm_family != AF_INET)
4040 return;
4041
4042 if (!zif->v6_2_v4_ll_neigh_entry)
4043 return;
4044
4045 if (ipv4_ll.s_addr != ip->ip._v4_addr.s_addr)
4046 return;
4047
9b036974
DS
4048 if (handle_failed && ndm->ndm_state & NUD_FAILED) {
4049 zlog_info("Neighbor Entry for %s has entered a failed state, not reinstalling",
4050 ifp->name);
4051 return;
4052 }
4053
f17b99ed
DS
4054 if_nbr_ipv6ll_to_ipv4ll_neigh_update(ifp, &zif->v6_2_v4_ll_addr6, true);
4055}
4056
d62a17ae 4057#define NUD_VALID \
4058 (NUD_PERMANENT | NUD_NOARP | NUD_REACHABLE | NUD_PROBE | NUD_STALE \
4059 | NUD_DELAY)
f188e68e
AK
4060#define NUD_LOCAL_ACTIVE \
4061 (NUD_PERMANENT | NUD_NOARP | NUD_REACHABLE)
2232a77c 4062
80f6b5fa
PG
4063static int netlink_nbr_entry_state_to_zclient(int nbr_state)
4064{
4065 /* an exact match is done between
4066 * - netlink neighbor state values: NDM_XXX (see in linux/neighbour.h)
4067 * - zclient neighbor state values: ZEBRA_NEIGH_STATE_XXX
4068 * (see in lib/zclient.h)
4069 */
4070 return nbr_state;
4071}
2414abd3 4072static int netlink_ipneigh_change(struct nlmsghdr *h, int len, ns_id_t ns_id)
2232a77c 4073{
d62a17ae 4074 struct ndmsg *ndm;
4075 struct interface *ifp;
4076 struct zebra_if *zif;
d62a17ae 4077 struct rtattr *tb[NDA_MAX + 1];
4078 struct interface *link_if;
4079 struct ethaddr mac;
4080 struct ipaddr ip;
4081 char buf[ETHER_ADDR_STRLEN];
d62a17ae 4082 int mac_present = 0;
a37f4598 4083 bool is_ext;
4084 bool is_router;
f188e68e 4085 bool local_inactive;
7c0e4dc6
AK
4086 uint32_t ext_flags = 0;
4087 bool dp_static = false;
7723e8d3
PG
4088 int l2_len = 0;
4089 int cmd;
d62a17ae 4090
4091 ndm = NLMSG_DATA(h);
4092
4093 /* The interface should exist. */
5895d33f 4094 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
d62a17ae 4095 ndm->ndm_ifindex);
2853fed6 4096 if (!ifp || !ifp->info)
d62a17ae 4097 return 0;
4098
20089ae2
DS
4099 zif = (struct zebra_if *)ifp->info;
4100
4101 /* Parse attributes and extract fields of interest. */
20089ae2
DS
4102 netlink_parse_rtattr(tb, NDA_MAX, NDA_RTA(ndm), len);
4103
4104 if (!tb[NDA_DST]) {
bd47f3a3 4105 zlog_debug("%s family %s IF %s(%u) vrf %s(%u) - no DST",
9df414fe
QY
4106 nl_msg_type_to_str(h->nlmsg_type),
4107 nl_family_to_str(ndm->ndm_family), ifp->name,
096f7609 4108 ndm->ndm_ifindex, ifp->vrf->name, ifp->vrf->vrf_id);
d62a17ae 4109 return 0;
20089ae2
DS
4110 }
4111
6006b807 4112 memset(&ip, 0, sizeof(ip));
20089ae2
DS
4113 ip.ipa_type = (ndm->ndm_family == AF_INET) ? IPADDR_V4 : IPADDR_V6;
4114 memcpy(&ip.ip.addr, RTA_DATA(tb[NDA_DST]), RTA_PAYLOAD(tb[NDA_DST]));
4115
f17b99ed
DS
4116 /* if kernel deletes our rfc5549 neighbor entry, re-install it */
4117 if (h->nlmsg_type == RTM_DELNEIGH && (ndm->ndm_state & NUD_PERMANENT)) {
9b036974 4118 netlink_handle_5549(ndm, zif, ifp, &ip, false);
28bd0652
DS
4119 if (IS_ZEBRA_DEBUG_KERNEL)
4120 zlog_debug(
1d5453d6 4121 " Neighbor Entry Received is a 5549 entry, finished");
20089ae2
DS
4122 return 0;
4123 }
d62a17ae 4124
f17b99ed 4125 /* if kernel marks our rfc5549 neighbor entry invalid, re-install it */
9b036974
DS
4126 if (h->nlmsg_type == RTM_NEWNEIGH && !(ndm->ndm_state & NUD_VALID))
4127 netlink_handle_5549(ndm, zif, ifp, &ip, true);
f17b99ed 4128
7723e8d3
PG
4129 /* we send link layer information to client:
4130 * - nlmsg_type = RTM_DELNEIGH|NEWNEIGH|GETNEIGH
4131 * - struct ipaddr ( for DEL and GET)
4132 * - struct ethaddr mac; (for NEW)
4133 */
4134 if (h->nlmsg_type == RTM_NEWNEIGH)
4135 cmd = ZEBRA_NHRP_NEIGH_ADDED;
4136 else if (h->nlmsg_type == RTM_GETNEIGH)
4137 cmd = ZEBRA_NHRP_NEIGH_GET;
4138 else if (h->nlmsg_type == RTM_DELNEIGH)
4139 cmd = ZEBRA_NHRP_NEIGH_REMOVED;
4140 else {
4141 zlog_debug("%s(): unknown nlmsg type %u", __func__,
4142 h->nlmsg_type);
4143 return 0;
4144 }
4145 if (tb[NDA_LLADDR]) {
4146 /* copy LLADDR information */
4147 l2_len = RTA_PAYLOAD(tb[NDA_LLADDR]);
7723e8d3 4148 }
d603c077
PG
4149 if (l2_len == IPV4_MAX_BYTELEN || l2_len == 0) {
4150 union sockunion link_layer_ipv4;
4151
4152 if (l2_len) {
4153 sockunion_family(&link_layer_ipv4) = AF_INET;
4154 memcpy((void *)sockunion_get_addr(&link_layer_ipv4),
b7c21fad 4155 RTA_DATA(tb[NDA_LLADDR]), l2_len);
d603c077
PG
4156 } else
4157 sockunion_family(&link_layer_ipv4) = AF_UNSPEC;
80f6b5fa
PG
4158 zsend_nhrp_neighbor_notify(
4159 cmd, ifp, &ip,
4160 netlink_nbr_entry_state_to_zclient(ndm->ndm_state),
4161 &link_layer_ipv4);
d603c077 4162 }
7723e8d3
PG
4163
4164 if (h->nlmsg_type == RTM_GETNEIGH)
4165 return 0;
4166
d62a17ae 4167 /* The neighbor is present on an SVI. From this, we locate the
4168 * underlying
4169 * bridge because we're only interested in neighbors on a VxLAN bridge.
4170 * The bridge is located based on the nature of the SVI:
4171 * (a) In the case of a VLAN-aware bridge, the SVI is a L3 VLAN
4172 * interface
4173 * and is linked to the bridge
4174 * (b) In the case of a VLAN-unaware bridge, the SVI is the bridge
3819e4ce 4175 * interface
d62a17ae 4176 * itself
4177 */
4178 if (IS_ZEBRA_IF_VLAN(ifp)) {
5895d33f 4179 link_if = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id),
71349e03 4180 zif->link_ifindex);
d62a17ae 4181 if (!link_if)
4182 return 0;
4183 } else if (IS_ZEBRA_IF_BRIDGE(ifp))
4184 link_if = ifp;
28bd0652 4185 else {
4cf4fad1 4186 link_if = NULL;
28bd0652
DS
4187 if (IS_ZEBRA_DEBUG_KERNEL)
4188 zlog_debug(
1d5453d6 4189 " Neighbor Entry received is not on a VLAN or a BRIDGE, ignoring");
28bd0652 4190 }
d62a17ae 4191
6006b807 4192 memset(&mac, 0, sizeof(mac));
d62a17ae 4193 if (h->nlmsg_type == RTM_NEWNEIGH) {
4194 if (tb[NDA_LLADDR]) {
ff8b7eb8 4195 if (RTA_PAYLOAD(tb[NDA_LLADDR]) != ETH_ALEN) {
28bd0652
DS
4196 if (IS_ZEBRA_DEBUG_KERNEL)
4197 zlog_debug(
bd47f3a3 4198 "%s family %s IF %s(%u) vrf %s(%u) - LLADDR is not MAC, len %lu",
28bd0652
DS
4199 nl_msg_type_to_str(
4200 h->nlmsg_type),
4201 nl_family_to_str(
4202 ndm->ndm_family),
4203 ifp->name, ndm->ndm_ifindex,
096f7609
IR
4204 ifp->vrf->name,
4205 ifp->vrf->vrf_id,
28bd0652
DS
4206 (unsigned long)RTA_PAYLOAD(
4207 tb[NDA_LLADDR]));
d62a17ae 4208 return 0;
4209 }
4210
4211 mac_present = 1;
ff8b7eb8 4212 memcpy(&mac, RTA_DATA(tb[NDA_LLADDR]), ETH_ALEN);
d62a17ae 4213 }
4214
a37f4598 4215 is_ext = !!(ndm->ndm_flags & NTF_EXT_LEARNED);
4216 is_router = !!(ndm->ndm_flags & NTF_ROUTER);
d62a17ae 4217
7c0e4dc6
AK
4218 if (tb[NDA_EXT_FLAGS]) {
4219 ext_flags = *(uint32_t *)RTA_DATA(tb[NDA_EXT_FLAGS]);
4220 if (ext_flags & NTF_E_MH_PEER_SYNC)
4221 dp_static = true;
4222 }
4223
d62a17ae 4224 if (IS_ZEBRA_DEBUG_KERNEL)
4225 zlog_debug(
ef7b8be4 4226 "Rx %s family %s IF %s(%u) vrf %s(%u) IP %pIA MAC %s state 0x%x flags 0x%x ext_flags 0x%x",
d62a17ae 4227 nl_msg_type_to_str(h->nlmsg_type),
4228 nl_family_to_str(ndm->ndm_family), ifp->name,
096f7609
IR
4229 ndm->ndm_ifindex, ifp->vrf->name,
4230 ifp->vrf->vrf_id, &ip,
d62a17ae 4231 mac_present
4232 ? prefix_mac2str(&mac, buf, sizeof(buf))
4233 : "",
7c0e4dc6 4234 ndm->ndm_state, ndm->ndm_flags, ext_flags);
d62a17ae 4235
4236 /* If the neighbor state is valid for use, process as an add or
4237 * update
4238 * else process as a delete. Note that the delete handling may
4239 * result
4240 * in re-adding the neighbor if it is a valid "remote" neighbor.
4241 */
f188e68e 4242 if (ndm->ndm_state & NUD_VALID) {
c7bfd085
AK
4243 if (zebra_evpn_mh_do_adv_reachable_neigh_only())
4244 local_inactive =
4245 !(ndm->ndm_state & NUD_LOCAL_ACTIVE);
4246 else
4247 /* If EVPN-MH is not enabled we treat STALE
4248 * neighbors as locally-active and advertise
4249 * them
4250 */
4251 local_inactive = false;
f188e68e 4252
4cf4fad1
AK
4253 /* Add local neighbors to the l3 interface database */
4254 if (is_ext)
4255 zebra_neigh_del(ifp, &ip);
4256 else
4257 zebra_neigh_add(ifp, &ip, &mac);
4258
4259 if (link_if)
4260 zebra_vxlan_handle_kernel_neigh_update(
4261 ifp, link_if, &ip, &mac, ndm->ndm_state,
4262 is_ext, is_router, local_inactive,
4263 dp_static);
4264 return 0;
f188e68e 4265 }
d62a17ae 4266
4cf4fad1
AK
4267
4268 zebra_neigh_del(ifp, &ip);
4269 if (link_if)
4270 zebra_vxlan_handle_kernel_neigh_del(ifp, link_if, &ip);
4271 return 0;
d62a17ae 4272 }
4273
4274 if (IS_ZEBRA_DEBUG_KERNEL)
ef7b8be4 4275 zlog_debug("Rx %s family %s IF %s(%u) vrf %s(%u) IP %pIA",
d62a17ae 4276 nl_msg_type_to_str(h->nlmsg_type),
4277 nl_family_to_str(ndm->ndm_family), ifp->name,
096f7609 4278 ndm->ndm_ifindex, ifp->vrf->name, ifp->vrf->vrf_id,
ef7b8be4 4279 &ip);
d62a17ae 4280
4281 /* Process the delete - it may result in re-adding the neighbor if it is
4282 * a valid "remote" neighbor.
4283 */
4cf4fad1
AK
4284 zebra_neigh_del(ifp, &ip);
4285 if (link_if)
4286 zebra_vxlan_handle_kernel_neigh_del(ifp, link_if, &ip);
4287
4288 return 0;
2232a77c 4289}
4290
2414abd3 4291static int netlink_neigh_table(struct nlmsghdr *h, ns_id_t ns_id, int startup)
2232a77c 4292{
d62a17ae 4293 int len;
4294 struct ndmsg *ndm;
2232a77c 4295
d62a17ae 4296 if (h->nlmsg_type != RTM_NEWNEIGH)
4297 return 0;
2232a77c 4298
d62a17ae 4299 /* Length validity. */
4300 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
4301 if (len < 0)
4302 return -1;
2232a77c 4303
d62a17ae 4304 /* We are interested only in AF_INET or AF_INET6 notifications. */
4305 ndm = NLMSG_DATA(h);
4306 if (ndm->ndm_family != AF_INET && ndm->ndm_family != AF_INET6)
4307 return 0;
2232a77c 4308
2414abd3 4309 return netlink_neigh_change(h, len);
2232a77c 4310}
4311
4312/* Request for IP neighbor information from the kernel */
85a75f1e
MS
4313static int netlink_request_neigh(struct nlsock *netlink_cmd, int family,
4314 int type, ifindex_t ifindex)
2232a77c 4315{
d62a17ae 4316 struct {
4317 struct nlmsghdr n;
4318 struct ndmsg ndm;
4319 char buf[256];
4320 } req;
4321
4322 /* Form the request, specifying filter (rtattr) if needed. */
4323 memset(&req, 0, sizeof(req));
4324 req.n.nlmsg_type = type;
718f9b0f 4325 req.n.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
d62a17ae 4326 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
4327 req.ndm.ndm_family = family;
4328 if (ifindex)
312a6bee 4329 nl_attr_put32(&req.n, sizeof(req), NDA_IFINDEX, ifindex);
d62a17ae 4330
fd3f8e52 4331 return netlink_request(netlink_cmd, &req);
2232a77c 4332}
4333
4334/*
4335 * IP Neighbor table read using netlink interface. This is invoked
4336 * at startup.
4337 */
d62a17ae 4338int netlink_neigh_read(struct zebra_ns *zns)
2232a77c 4339{
d62a17ae 4340 int ret;
85a75f1e
MS
4341 struct zebra_dplane_info dp_info;
4342
4343 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
2232a77c 4344
d62a17ae 4345 /* Get IP neighbor table. */
85a75f1e
MS
4346 ret = netlink_request_neigh(&zns->netlink_cmd, AF_UNSPEC, RTM_GETNEIGH,
4347 0);
d62a17ae 4348 if (ret < 0)
4349 return ret;
85a75f1e 4350 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd,
9bfadae8 4351 &dp_info, 0, true);
2232a77c 4352
d62a17ae 4353 return ret;
2232a77c 4354}
4355
4356/*
4357 * IP Neighbor table read using netlink interface. This is for a specific
4358 * VLAN device.
4359 */
d62a17ae 4360int netlink_neigh_read_for_vlan(struct zebra_ns *zns, struct interface *vlan_if)
2232a77c 4361{
d62a17ae 4362 int ret = 0;
85a75f1e
MS
4363 struct zebra_dplane_info dp_info;
4364
4365 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
2232a77c 4366
85a75f1e 4367 ret = netlink_request_neigh(&zns->netlink_cmd, AF_UNSPEC, RTM_GETNEIGH,
d62a17ae 4368 vlan_if->ifindex);
4369 if (ret < 0)
4370 return ret;
85a75f1e 4371 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd,
9bfadae8 4372 &dp_info, 0, false);
2232a77c 4373
d62a17ae 4374 return ret;
2232a77c 4375}
4376
67fb9374
CS
4377/*
4378 * Request for a specific IP in VLAN (SVI) device from IP Neighbor table,
4379 * read using netlink interface.
4380 */
4381static int netlink_request_specific_neigh_in_vlan(struct zebra_ns *zns,
1a3bd37f
MS
4382 int type,
4383 const struct ipaddr *ip,
67fb9374
CS
4384 ifindex_t ifindex)
4385{
4386 struct {
4387 struct nlmsghdr n;
4388 struct ndmsg ndm;
4389 char buf[256];
4390 } req;
4391 int ipa_len;
4392
4393 /* Form the request, specifying filter (rtattr) if needed. */
4394 memset(&req, 0, sizeof(req));
4395 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndmsg));
4396 req.n.nlmsg_flags = NLM_F_REQUEST;
4397 req.n.nlmsg_type = type; /* RTM_GETNEIGH */
4398 req.ndm.ndm_ifindex = ifindex;
4399
4400 if (IS_IPADDR_V4(ip)) {
4401 ipa_len = IPV4_MAX_BYTELEN;
4402 req.ndm.ndm_family = AF_INET;
4403
4404 } else {
4405 ipa_len = IPV6_MAX_BYTELEN;
4406 req.ndm.ndm_family = AF_INET6;
4407 }
4408
312a6bee 4409 nl_attr_put(&req.n, sizeof(req), NDA_DST, &ip->ip.addr, ipa_len);
67fb9374 4410
ef7b8be4
DL
4411 if (IS_ZEBRA_DEBUG_KERNEL)
4412 zlog_debug("%s: Tx %s family %s IF %u IP %pIA flags 0x%x",
7c26c121 4413 __func__, nl_msg_type_to_str(type),
ef7b8be4
DL
4414 nl_family_to_str(req.ndm.ndm_family), ifindex, ip,
4415 req.n.nlmsg_flags);
7c26c121 4416
fd3f8e52 4417 return netlink_request(&zns->netlink_cmd, &req);
67fb9374
CS
4418}
4419
1a3bd37f
MS
4420int netlink_neigh_read_specific_ip(const struct ipaddr *ip,
4421 struct interface *vlan_if)
67fb9374
CS
4422{
4423 int ret = 0;
4424 struct zebra_ns *zns;
096f7609 4425 struct zebra_vrf *zvrf = vlan_if->vrf->info;
67fb9374
CS
4426 struct zebra_dplane_info dp_info;
4427
4428 zns = zvrf->zns;
4429
4430 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
4431
4432 if (IS_ZEBRA_DEBUG_KERNEL)
ef7b8be4
DL
4433 zlog_debug("%s: neigh request IF %s(%u) IP %pIA vrf %s(%u)",
4434 __func__, vlan_if->name, vlan_if->ifindex, ip,
096f7609 4435 vlan_if->vrf->name, vlan_if->vrf->vrf_id);
67fb9374
CS
4436
4437 ret = netlink_request_specific_neigh_in_vlan(zns, RTM_GETNEIGH, ip,
4438 vlan_if->ifindex);
4439 if (ret < 0)
4440 return ret;
4441
4442 ret = netlink_parse_info(netlink_neigh_table, &zns->netlink_cmd,
9bfadae8 4443 &dp_info, 1, false);
67fb9374
CS
4444
4445 return ret;
4446}
4447
2414abd3 4448int netlink_neigh_change(struct nlmsghdr *h, ns_id_t ns_id)
2232a77c 4449{
d62a17ae 4450 int len;
4451 struct ndmsg *ndm;
2232a77c 4452
7723e8d3
PG
4453 if (!(h->nlmsg_type == RTM_NEWNEIGH || h->nlmsg_type == RTM_DELNEIGH
4454 || h->nlmsg_type == RTM_GETNEIGH))
d62a17ae 4455 return 0;
2232a77c 4456
d62a17ae 4457 /* Length validity. */
4458 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ndmsg));
9bdf8618 4459 if (len < 0) {
15569c58
DA
4460 zlog_err(
4461 "%s: Message received from netlink is of a broken size %d %zu",
4462 __func__, h->nlmsg_len,
4463 (size_t)NLMSG_LENGTH(sizeof(struct ndmsg)));
d62a17ae 4464 return -1;
9bdf8618 4465 }
2232a77c 4466
d62a17ae 4467 /* Is this a notification for the MAC FDB or IP neighbor table? */
4468 ndm = NLMSG_DATA(h);
4469 if (ndm->ndm_family == AF_BRIDGE)
2414abd3 4470 return netlink_macfdb_change(h, len, ns_id);
2232a77c 4471
d62a17ae 4472 if (ndm->ndm_type != RTN_UNICAST)
4473 return 0;
2232a77c 4474
d62a17ae 4475 if (ndm->ndm_family == AF_INET || ndm->ndm_family == AF_INET6)
2414abd3 4476 return netlink_ipneigh_change(h, len, ns_id);
8a1b681c 4477 else {
9df414fe 4478 flog_warn(
e914ccbe 4479 EC_ZEBRA_UNKNOWN_FAMILY,
87b5d1b0
DS
4480 "Invalid address family: %u received from kernel neighbor change: %s",
4481 ndm->ndm_family, nl_msg_type_to_str(h->nlmsg_type));
8a1b681c
SW
4482 return 0;
4483 }
2232a77c 4484
d62a17ae 4485 return 0;
2232a77c 4486}
4487
931fa60c
MS
4488/*
4489 * Utility neighbor-update function, using info from dplane context.
4490 */
67e3369e
JU
4491static ssize_t netlink_neigh_update_ctx(const struct zebra_dplane_ctx *ctx,
4492 int cmd, void *buf, size_t buflen)
2232a77c 4493{
931fa60c 4494 const struct ipaddr *ip;
0a27a2fe
PG
4495 const struct ethaddr *mac = NULL;
4496 const struct ipaddr *link_ip = NULL;
4497 const void *link_ptr = NULL;
4498 char buf2[ETHER_ADDR_STRLEN];
4499
4500 int llalen;
931fa60c
MS
4501 uint8_t flags;
4502 uint16_t state;
340845e2 4503 uint8_t family;
ccd187cd
AK
4504 uint32_t update_flags;
4505 uint32_t ext_flags = 0;
4506 bool ext = false;
88217099
PG
4507 int proto = RTPROT_ZEBRA;
4508
4509 if (dplane_ctx_get_type(ctx) != 0)
4510 proto = zebra2proto(dplane_ctx_get_type(ctx));
d62a17ae 4511
931fa60c 4512 ip = dplane_ctx_neigh_get_ipaddr(ctx);
931fa60c 4513
0a27a2fe
PG
4514 if (dplane_ctx_get_op(ctx) == DPLANE_OP_NEIGH_IP_INSTALL
4515 || dplane_ctx_get_op(ctx) == DPLANE_OP_NEIGH_IP_DELETE) {
4516 link_ip = dplane_ctx_neigh_get_link_ip(ctx);
4517 llalen = IPADDRSZ(link_ip);
4518 link_ptr = (const void *)&(link_ip->ip.addr);
4519 ipaddr2str(link_ip, buf2, sizeof(buf2));
4520 } else {
4521 mac = dplane_ctx_neigh_get_mac(ctx);
4522 llalen = ETH_ALEN;
4523 link_ptr = (const void *)mac;
4524 if (is_zero_mac(mac))
4525 mac = NULL;
4526 if (mac)
4527 prefix_mac2str(mac, buf2, sizeof(buf2));
4528 else
4529 snprintf(buf2, sizeof(buf2), "null");
4530 }
ccd187cd 4531 update_flags = dplane_ctx_neigh_get_update_flags(ctx);
931fa60c
MS
4532 flags = neigh_flags_to_netlink(dplane_ctx_neigh_get_flags(ctx));
4533 state = neigh_state_to_netlink(dplane_ctx_neigh_get_state(ctx));
4534
340845e2 4535 family = IS_IPADDR_V4(ip) ? AF_INET : AF_INET6;
d62a17ae 4536
ccd187cd
AK
4537 if (update_flags & DPLANE_NEIGH_REMOTE) {
4538 flags |= NTF_EXT_LEARNED;
4539 /* if it was static-local previously we need to clear the
4540 * ext flags on replace with remote
4541 */
4542 if (update_flags & DPLANE_NEIGH_WAS_STATIC)
4543 ext = true;
0a27a2fe 4544 } else if (!(update_flags & DPLANE_NEIGH_NO_EXTENSION)) {
ccd187cd
AK
4545 ext = true;
4546 /* local neigh */
4547 if (update_flags & DPLANE_NEIGH_SET_STATIC)
4548 ext_flags |= NTF_E_MH_PEER_SYNC;
ccd187cd 4549 }
ef7b8be4 4550 if (IS_ZEBRA_DEBUG_KERNEL)
340845e2 4551 zlog_debug(
0a27a2fe 4552 "Tx %s family %s IF %s(%u) Neigh %pIA %s %s flags 0x%x state 0x%x %sext_flags 0x%x",
340845e2
JU
4553 nl_msg_type_to_str(cmd), nl_family_to_str(family),
4554 dplane_ctx_get_ifname(ctx), dplane_ctx_get_ifindex(ctx),
64a29a00 4555 ip, link_ip ? "Link" : "MAC", buf2, flags, state,
0a27a2fe 4556 ext ? "ext " : "", ext_flags);
d62a17ae 4557
18f60fe9 4558 return netlink_neigh_update_msg_encode(
0a27a2fe
PG
4559 ctx, cmd, link_ptr, llalen, ip, true, family, RTN_UNICAST,
4560 flags, state, 0 /*nhg*/, false /*nfy*/, 0 /*nfy_flags*/, ext,
88217099 4561 ext_flags, buf, buflen, proto);
2232a77c 4562}
4563
e18747a9
PG
4564static int netlink_neigh_table_update_ctx(const struct zebra_dplane_ctx *ctx,
4565 void *data, size_t datalen)
4566{
4567 struct {
4568 struct nlmsghdr n;
4569 struct ndtmsg ndtm;
4570 char buf[];
4571 } *req = data;
4572 struct rtattr *nest;
4573 uint8_t family;
4574 ifindex_t idx;
4575 uint32_t val;
4576
4577 if (datalen < sizeof(*req))
4578 return 0;
4579 memset(req, 0, sizeof(*req));
4580 family = dplane_ctx_neightable_get_family(ctx);
4581 idx = dplane_ctx_get_ifindex(ctx);
4582
4583 req->n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ndtmsg));
4584 req->n.nlmsg_flags = NLM_F_REQUEST | NLM_F_REPLACE;
4585 req->n.nlmsg_type = RTM_SETNEIGHTBL;
4586 req->ndtm.ndtm_family = family;
4587
4588 nl_attr_put(&req->n, datalen, NDTA_NAME,
4589 family == AF_INET ? "arp_cache" : "ndisc_cache", 10);
4590 nest = nl_attr_nest(&req->n, datalen, NDTA_PARMS);
4591 if (nest == NULL)
4592 return 0;
4593 if (!nl_attr_put(&req->n, datalen, NDTPA_IFINDEX, &idx, sizeof(idx)))
4594 return 0;
4595 val = dplane_ctx_neightable_get_app_probes(ctx);
4596 if (!nl_attr_put(&req->n, datalen, NDTPA_APP_PROBES, &val, sizeof(val)))
4597 return 0;
4598 val = dplane_ctx_neightable_get_mcast_probes(ctx);
4599 if (!nl_attr_put(&req->n, datalen, NDTPA_MCAST_PROBES, &val,
4600 sizeof(val)))
4601 return 0;
4602 val = dplane_ctx_neightable_get_ucast_probes(ctx);
4603 if (!nl_attr_put(&req->n, datalen, NDTPA_UCAST_PROBES, &val,
4604 sizeof(val)))
4605 return 0;
4606 nl_attr_nest_end(&req->n, nest);
4607
4608 return NLMSG_ALIGN(req->n.nlmsg_len);
4609}
4610
67e3369e
JU
4611static ssize_t netlink_neigh_msg_encoder(struct zebra_dplane_ctx *ctx,
4612 void *buf, size_t buflen)
2232a77c 4613{
a98701f0 4614 ssize_t ret = 0;
2232a77c 4615
931fa60c
MS
4616 switch (dplane_ctx_get_op(ctx)) {
4617 case DPLANE_OP_NEIGH_INSTALL:
4618 case DPLANE_OP_NEIGH_UPDATE:
d68e74b4 4619 case DPLANE_OP_NEIGH_DISCOVER:
0a27a2fe 4620 case DPLANE_OP_NEIGH_IP_INSTALL:
67e3369e 4621 ret = netlink_neigh_update_ctx(ctx, RTM_NEWNEIGH, buf, buflen);
931fa60c
MS
4622 break;
4623 case DPLANE_OP_NEIGH_DELETE:
0a27a2fe 4624 case DPLANE_OP_NEIGH_IP_DELETE:
67e3369e 4625 ret = netlink_neigh_update_ctx(ctx, RTM_DELNEIGH, buf, buflen);
931fa60c 4626 break;
0bbd4ff4 4627 case DPLANE_OP_VTEP_ADD:
67e3369e
JU
4628 ret = netlink_vxlan_flood_update_ctx(ctx, RTM_NEWNEIGH, buf,
4629 buflen);
0bbd4ff4
MS
4630 break;
4631 case DPLANE_OP_VTEP_DELETE:
67e3369e
JU
4632 ret = netlink_vxlan_flood_update_ctx(ctx, RTM_DELNEIGH, buf,
4633 buflen);
0bbd4ff4 4634 break;
e18747a9
PG
4635 case DPLANE_OP_NEIGH_TABLE_UPDATE:
4636 ret = netlink_neigh_table_update_ctx(ctx, buf, buflen);
4637 break;
a98701f0
DS
4638 case DPLANE_OP_ROUTE_INSTALL:
4639 case DPLANE_OP_ROUTE_UPDATE:
4640 case DPLANE_OP_ROUTE_DELETE:
4641 case DPLANE_OP_ROUTE_NOTIFY:
4642 case DPLANE_OP_NH_INSTALL:
4643 case DPLANE_OP_NH_UPDATE:
4644 case DPLANE_OP_NH_DELETE:
4645 case DPLANE_OP_LSP_INSTALL:
4646 case DPLANE_OP_LSP_UPDATE:
4647 case DPLANE_OP_LSP_DELETE:
4648 case DPLANE_OP_LSP_NOTIFY:
4649 case DPLANE_OP_PW_INSTALL:
4650 case DPLANE_OP_PW_UNINSTALL:
4651 case DPLANE_OP_SYS_ROUTE_ADD:
4652 case DPLANE_OP_SYS_ROUTE_DELETE:
4653 case DPLANE_OP_ADDR_INSTALL:
4654 case DPLANE_OP_ADDR_UNINSTALL:
4655 case DPLANE_OP_MAC_INSTALL:
4656 case DPLANE_OP_MAC_DELETE:
4657 case DPLANE_OP_RULE_ADD:
4658 case DPLANE_OP_RULE_DELETE:
4659 case DPLANE_OP_RULE_UPDATE:
4660 case DPLANE_OP_BR_PORT_UPDATE:
4661 case DPLANE_OP_IPTABLE_ADD:
4662 case DPLANE_OP_IPTABLE_DELETE:
4663 case DPLANE_OP_IPSET_ADD:
4664 case DPLANE_OP_IPSET_DELETE:
4665 case DPLANE_OP_IPSET_ENTRY_ADD:
4666 case DPLANE_OP_IPSET_ENTRY_DELETE:
4667 case DPLANE_OP_GRE_SET:
4668 case DPLANE_OP_INTF_ADDR_ADD:
4669 case DPLANE_OP_INTF_ADDR_DEL:
4670 case DPLANE_OP_INTF_NETCONFIG:
4671 case DPLANE_OP_INTF_INSTALL:
4672 case DPLANE_OP_INTF_UPDATE:
4673 case DPLANE_OP_INTF_DELETE:
4674 case DPLANE_OP_TC_QDISC_INSTALL:
4675 case DPLANE_OP_TC_QDISC_UNINSTALL:
4676 case DPLANE_OP_TC_CLASS_ADD:
4677 case DPLANE_OP_TC_CLASS_DELETE:
4678 case DPLANE_OP_TC_CLASS_UPDATE:
4679 case DPLANE_OP_TC_FILTER_ADD:
4680 case DPLANE_OP_TC_FILTER_DELETE:
4681 case DPLANE_OP_TC_FILTER_UPDATE:
4682 case DPLANE_OP_NONE:
67e3369e 4683 ret = -1;
931fa60c 4684 }
2232a77c 4685
67e3369e
JU
4686 return ret;
4687}
4688
4689/*
4690 * Update MAC, using dataplane context object.
4691 */
4692
67e3369e
JU
4693enum netlink_msg_status netlink_put_mac_update_msg(struct nl_batch *bth,
4694 struct zebra_dplane_ctx *ctx)
4695{
4696 return netlink_batch_add_msg(bth, ctx, netlink_macfdb_update_ctx,
4697 false);
4698}
4699
67e3369e
JU
4700enum netlink_msg_status
4701netlink_put_neigh_update_msg(struct nl_batch *bth, struct zebra_dplane_ctx *ctx)
4702{
4703 return netlink_batch_add_msg(bth, ctx, netlink_neigh_msg_encoder,
4704 false);
6fe2b0e6
CS
4705}
4706
16c628de
MS
4707/*
4708 * MPLS label forwarding table change via netlink interface, using dataplane
4709 * context information.
4710 */
0be6e7d7
JU
4711ssize_t netlink_mpls_multipath_msg_encode(int cmd, struct zebra_dplane_ctx *ctx,
4712 void *buf, size_t buflen)
16c628de
MS
4713{
4714 mpls_lse_t lse;
ee70f629 4715 const struct nhlfe_list_head *head;
f2595bd5 4716 const struct zebra_nhlfe *nhlfe;
16c628de
MS
4717 struct nexthop *nexthop = NULL;
4718 unsigned int nexthop_num;
4719 const char *routedesc;
4720 int route_type;
9a0132a5 4721 struct prefix p = {0};
d4000d7b
DS
4722 struct nlsock *nl =
4723 kernel_netlink_nlsock_lookup(dplane_ctx_get_ns_sock(ctx));
16c628de
MS
4724
4725 struct {
4726 struct nlmsghdr n;
4727 struct rtmsg r;
0be6e7d7
JU
4728 char buf[0];
4729 } *req = buf;
4730
4731 if (buflen < sizeof(*req))
4732 return 0;
16c628de 4733
0be6e7d7 4734 memset(req, 0, sizeof(*req));
16c628de
MS
4735
4736 /*
4737 * Count # nexthops so we can decide whether to use singlepath
4738 * or multipath case.
4739 */
4740 nexthop_num = 0;
ee70f629
MS
4741 head = dplane_ctx_get_nhlfe_list(ctx);
4742 frr_each(nhlfe_list_const, head, nhlfe) {
16c628de
MS
4743 nexthop = nhlfe->nexthop;
4744 if (!nexthop)
4745 continue;
4746 if (cmd == RTM_NEWROUTE) {
4747 /* Count all selected NHLFEs */
4748 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
4749 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE))
4750 nexthop_num++;
4751 } else { /* DEL */
4752 /* Count all installed NHLFEs */
4753 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_INSTALLED)
4754 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB))
4755 nexthop_num++;
4756 }
4757 }
4758
4759 if ((nexthop_num == 0) ||
4760 (!dplane_ctx_get_best_nhlfe(ctx) && (cmd != RTM_DELROUTE)))
4761 return 0;
4762
0be6e7d7
JU
4763 req->n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
4764 req->n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
4765 req->n.nlmsg_type = cmd;
d4000d7b 4766 req->n.nlmsg_pid = nl->snl.nl_pid;
16c628de 4767
0be6e7d7
JU
4768 req->r.rtm_family = AF_MPLS;
4769 req->r.rtm_table = RT_TABLE_MAIN;
4770 req->r.rtm_dst_len = MPLS_LABEL_LEN_BITS;
4771 req->r.rtm_scope = RT_SCOPE_UNIVERSE;
4772 req->r.rtm_type = RTN_UNICAST;
16c628de
MS
4773
4774 if (cmd == RTM_NEWROUTE) {
4775 /* We do a replace to handle update. */
0be6e7d7 4776 req->n.nlmsg_flags |= NLM_F_REPLACE;
16c628de
MS
4777
4778 /* set the protocol value if installing */
4779 route_type = re_type_from_lsp_type(
4780 dplane_ctx_get_best_nhlfe(ctx)->type);
0be6e7d7 4781 req->r.rtm_protocol = zebra2proto(route_type);
16c628de
MS
4782 }
4783
4784 /* Fill destination */
4785 lse = mpls_lse_encode(dplane_ctx_get_in_label(ctx), 0, 0, 1);
0be6e7d7
JU
4786 if (!nl_attr_put(&req->n, buflen, RTA_DST, &lse, sizeof(mpls_lse_t)))
4787 return 0;
16c628de
MS
4788
4789 /* Fill nexthops (paths) based on single-path or multipath. The paths
4790 * chosen depend on the operation.
4791 */
fc608372 4792 if (nexthop_num == 1) {
16c628de
MS
4793 routedesc = "single-path";
4794 _netlink_mpls_debug(cmd, dplane_ctx_get_in_label(ctx),
4795 routedesc);
4796
4797 nexthop_num = 0;
ee70f629 4798 frr_each(nhlfe_list_const, head, nhlfe) {
16c628de
MS
4799 nexthop = nhlfe->nexthop;
4800 if (!nexthop)
4801 continue;
4802
4803 if ((cmd == RTM_NEWROUTE
4804 && (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
4805 && CHECK_FLAG(nexthop->flags,
4806 NEXTHOP_FLAG_ACTIVE)))
4807 || (cmd == RTM_DELROUTE
4808 && (CHECK_FLAG(nhlfe->flags,
4809 NHLFE_FLAG_INSTALLED)
4810 && CHECK_FLAG(nexthop->flags,
4811 NEXTHOP_FLAG_FIB)))) {
4812 /* Add the gateway */
0be6e7d7
JU
4813 if (!_netlink_mpls_build_singlepath(
4814 &p, routedesc, nhlfe, &req->n,
4815 &req->r, buflen, cmd))
4816 return false;
16c628de
MS
4817
4818 nexthop_num++;
4819 break;
4820 }
4821 }
4822 } else { /* Multipath case */
312a6bee 4823 struct rtattr *nest;
81793ac1 4824 const union g_addr *src1 = NULL;
16c628de 4825
0be6e7d7
JU
4826 nest = nl_attr_nest(&req->n, buflen, RTA_MULTIPATH);
4827 if (!nest)
4828 return 0;
16c628de
MS
4829
4830 routedesc = "multipath";
4831 _netlink_mpls_debug(cmd, dplane_ctx_get_in_label(ctx),
4832 routedesc);
4833
4834 nexthop_num = 0;
ee70f629 4835 frr_each(nhlfe_list_const, head, nhlfe) {
16c628de
MS
4836 nexthop = nhlfe->nexthop;
4837 if (!nexthop)
4838 continue;
4839
16c628de
MS
4840 if ((cmd == RTM_NEWROUTE
4841 && (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_SELECTED)
4842 && CHECK_FLAG(nexthop->flags,
4843 NEXTHOP_FLAG_ACTIVE)))
4844 || (cmd == RTM_DELROUTE
4845 && (CHECK_FLAG(nhlfe->flags,
4846 NHLFE_FLAG_INSTALLED)
4847 && CHECK_FLAG(nexthop->flags,
4848 NEXTHOP_FLAG_FIB)))) {
4849 nexthop_num++;
4850
4851 /* Build the multipath */
0be6e7d7
JU
4852 if (!_netlink_mpls_build_multipath(
4853 &p, routedesc, nhlfe, &req->n,
4854 buflen, &req->r, &src1))
4855 return 0;
16c628de
MS
4856 }
4857 }
4858
4859 /* Add the multipath */
0be6e7d7 4860 nl_attr_nest_end(&req->n, nest);
16c628de
MS
4861 }
4862
0be6e7d7 4863 return NLMSG_ALIGN(req->n.nlmsg_len);
16c628de 4864}
506efd37
AK
4865
4866/****************************************************************************
4867* This code was developed in a branch that didn't have dplane APIs for
4868* MAC updates. Hence the use of the legacy style. It will be moved to
4869* the new dplane style pre-merge to master. XXX
4870*/
4871static int netlink_fdb_nh_update(uint32_t nh_id, struct in_addr vtep_ip)
4872{
4873 struct {
4874 struct nlmsghdr n;
4875 struct nhmsg nhm;
4876 char buf[256];
4877 } req;
4878 int cmd = RTM_NEWNEXTHOP;
4879 struct zebra_vrf *zvrf;
4880 struct zebra_ns *zns;
4881
4882 zvrf = zebra_vrf_get_evpn();
506efd37
AK
4883 zns = zvrf->zns;
4884
4885 memset(&req, 0, sizeof(req));
4886
4887 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct nhmsg));
4888 req.n.nlmsg_flags = NLM_F_REQUEST;
4889 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_REPLACE);
4890 req.n.nlmsg_type = cmd;
4891 req.nhm.nh_family = AF_INET;
4892
4893 if (!nl_attr_put32(&req.n, sizeof(req), NHA_ID, nh_id))
4894 return -1;
4895 if (!nl_attr_put(&req.n, sizeof(req), NHA_FDB, NULL, 0))
4896 return -1;
4897 if (!nl_attr_put(&req.n, sizeof(req), NHA_GATEWAY,
4898 &vtep_ip, IPV4_MAX_BYTELEN))
4899 return -1;
4900
4901 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_EVPN_MH_NH) {
9bcef951
MS
4902 zlog_debug("Tx %s fdb-nh 0x%x %pI4",
4903 nl_msg_type_to_str(cmd), nh_id, &vtep_ip);
506efd37
AK
4904 }
4905
4906 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
9bfadae8 4907 false);
506efd37
AK
4908}
4909
4910static int netlink_fdb_nh_del(uint32_t nh_id)
4911{
4912 struct {
4913 struct nlmsghdr n;
4914 struct nhmsg nhm;
4915 char buf[256];
4916 } req;
4917 int cmd = RTM_DELNEXTHOP;
4918 struct zebra_vrf *zvrf;
4919 struct zebra_ns *zns;
4920
4921 zvrf = zebra_vrf_get_evpn();
506efd37
AK
4922 zns = zvrf->zns;
4923
4924 memset(&req, 0, sizeof(req));
4925
4926 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct nhmsg));
4927 req.n.nlmsg_flags = NLM_F_REQUEST;
4928 req.n.nlmsg_type = cmd;
4929 req.nhm.nh_family = AF_UNSPEC;
4930
4931 if (!nl_attr_put32(&req.n, sizeof(req), NHA_ID, nh_id))
4932 return -1;
4933
4934 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_EVPN_MH_NH) {
4935 zlog_debug("Tx %s fdb-nh 0x%x",
4936 nl_msg_type_to_str(cmd), nh_id);
4937 }
4938
4939 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
9bfadae8 4940 false);
506efd37
AK
4941}
4942
4943static int netlink_fdb_nhg_update(uint32_t nhg_id, uint32_t nh_cnt,
4944 struct nh_grp *nh_ids)
4945{
4946 struct {
4947 struct nlmsghdr n;
4948 struct nhmsg nhm;
4949 char buf[256];
4950 } req;
4951 int cmd = RTM_NEWNEXTHOP;
4952 struct zebra_vrf *zvrf;
4953 struct zebra_ns *zns;
4954 struct nexthop_grp grp[nh_cnt];
4955 uint32_t i;
4956
4957 zvrf = zebra_vrf_get_evpn();
506efd37
AK
4958 zns = zvrf->zns;
4959
4960 memset(&req, 0, sizeof(req));
4961
4962 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct nhmsg));
4963 req.n.nlmsg_flags = NLM_F_REQUEST;
4964 req.n.nlmsg_flags |= (NLM_F_CREATE | NLM_F_REPLACE);
4965 req.n.nlmsg_type = cmd;
4966 req.nhm.nh_family = AF_UNSPEC;
4967
4968 if (!nl_attr_put32(&req.n, sizeof(req), NHA_ID, nhg_id))
4969 return -1;
4970 if (!nl_attr_put(&req.n, sizeof(req), NHA_FDB, NULL, 0))
4971 return -1;
4972 memset(&grp, 0, sizeof(grp));
4973 for (i = 0; i < nh_cnt; ++i) {
4974 grp[i].id = nh_ids[i].id;
4975 grp[i].weight = nh_ids[i].weight;
4976 }
4977 if (!nl_attr_put(&req.n, sizeof(req), NHA_GROUP,
4978 grp, nh_cnt * sizeof(struct nexthop_grp)))
4979 return -1;
4980
4981
4982 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_EVPN_MH_NH) {
4983 char vtep_str[ES_VTEP_LIST_STR_SZ];
9e0c2fd1 4984 char nh_buf[16];
506efd37
AK
4985
4986 vtep_str[0] = '\0';
4987 for (i = 0; i < nh_cnt; ++i) {
9e0c2fd1 4988 snprintf(nh_buf, sizeof(nh_buf), "%u ",
506efd37 4989 grp[i].id);
9e0c2fd1 4990 strlcat(vtep_str, nh_buf, sizeof(vtep_str));
506efd37
AK
4991 }
4992
4993 zlog_debug("Tx %s fdb-nhg 0x%x %s",
4994 nl_msg_type_to_str(cmd), nhg_id, vtep_str);
4995 }
4996
4997 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
9bfadae8 4998 false);
506efd37
AK
4999}
5000
5001static int netlink_fdb_nhg_del(uint32_t nhg_id)
5002{
5003 return netlink_fdb_nh_del(nhg_id);
5004}
5005
5006int kernel_upd_mac_nh(uint32_t nh_id, struct in_addr vtep_ip)
5007{
5008 return netlink_fdb_nh_update(nh_id, vtep_ip);
5009}
5010
5011int kernel_del_mac_nh(uint32_t nh_id)
5012{
5013 return netlink_fdb_nh_del(nh_id);
5014}
5015
5016int kernel_upd_mac_nhg(uint32_t nhg_id, uint32_t nh_cnt,
5017 struct nh_grp *nh_ids)
5018{
5019 return netlink_fdb_nhg_update(nhg_id, nh_cnt, nh_ids);
5020}
5021
5022int kernel_del_mac_nhg(uint32_t nhg_id)
5023{
5024 return netlink_fdb_nhg_del(nhg_id);
5025}
5026
ddfeb486 5027#endif /* HAVE_NETLINK */