]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_dplane.c
Merge pull request #13437 from raja-rajasekar/raja-rajasekar/show_cmd_fix
[mirror_frr.git] / zebra / zebra_dplane.c
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
ea1c14f6
MS
2/*
3 * Zebra dataplane layer.
4 * Copyright (c) 2018 Volta Networks, Inc.
ea1c14f6
MS
5 */
6
2618a52e
DL
7#ifdef HAVE_CONFIG_H
8#include "config.h"
9#endif
10
18c37974 11#include "lib/libfrr.h"
1d11b21f
MS
12#include "lib/debug.h"
13#include "lib/frratomic.h"
7cdb1a84 14#include "lib/frr_pthread.h"
1d11b21f 15#include "lib/memory.h"
1d11b21f 16#include "lib/zebra.h"
cd787a8a 17#include "zebra/netconf_netlink.h"
3801e764 18#include "zebra/zebra_router.h"
7cdb1a84 19#include "zebra/zebra_dplane.h"
f2a0ba3a 20#include "zebra/zebra_vxlan_private.h"
ee70f629 21#include "zebra/zebra_mpls.h"
7cdb1a84
MS
22#include "zebra/rt.h"
23#include "zebra/debug.h"
f62e5480 24#include "zebra/zebra_pbr.h"
9898473f 25#include "zebra/zebra_neigh.h"
c317d3f2 26#include "zebra/zebra_tc.h"
c60522f7 27#include "printfrr.h"
7cdb1a84 28
d166308b 29/* Memory types */
bf8d3d6a
DL
30DEFINE_MTYPE_STATIC(ZEBRA, DP_CTX, "Zebra DPlane Ctx");
31DEFINE_MTYPE_STATIC(ZEBRA, DP_INTF, "Zebra DPlane Intf");
32DEFINE_MTYPE_STATIC(ZEBRA, DP_PROV, "Zebra DPlane Provider");
33DEFINE_MTYPE_STATIC(ZEBRA, DP_NETFILTER, "Zebra Netfilter Internal Object");
d166308b 34DEFINE_MTYPE_STATIC(ZEBRA, DP_NS, "DPlane NSes");
7cdb1a84
MS
35
36#ifndef AOK
37# define AOK 0
38#endif
39
5917df09
MS
40/* Control for collection of extra interface info with route updates; a plugin
41 * can enable the extra info via a dplane api.
42 */
43static bool dplane_collect_extra_intf_info;
44
e5a60d82
MS
45/* Enable test dataplane provider */
46/*#define DPLANE_TEST_PROVIDER 1 */
47
91f16812
MS
48/* Default value for max queued incoming updates */
49const uint32_t DPLANE_DEFAULT_MAX_QUEUED = 200;
50
c831033f
MS
51/* Default value for new work per cycle */
52const uint32_t DPLANE_DEFAULT_NEW_WORK = 100;
53
7cdb1a84
MS
54/* Validation check macro for context blocks */
55/* #define DPLANE_DEBUG 1 */
56
57#ifdef DPLANE_DEBUG
58
25779064
MS
59# define DPLANE_CTX_VALID(p) \
60 assert((p) != NULL)
7cdb1a84
MS
61
62#else
63
5709131c 64# define DPLANE_CTX_VALID(p)
7cdb1a84
MS
65
66#endif /* DPLANE_DEBUG */
67
0c8215cb
SW
68/*
69 * Nexthop information captured for nexthop/nexthop group updates
70 */
71struct dplane_nexthop_info {
72 uint32_t id;
df3cef24 73 uint32_t old_id;
0c8215cb
SW
74 afi_t afi;
75 vrf_id_t vrf_id;
38e40db1 76 int type;
0c8215cb
SW
77
78 struct nexthop_group ng;
e22e8001
SW
79 struct nh_grp nh_grp[MULTIPATH_NUM];
80 uint8_t nh_grp_count;
0c8215cb
SW
81};
82
5917df09
MS
83/*
84 * Optional extra info about interfaces used in route updates' nexthops.
85 */
86struct dplane_intf_extra {
87 vrf_id_t vrf_id;
88 uint32_t ifindex;
89 uint32_t flags;
90 uint32_t status;
91
ac96497c 92 struct dplane_intf_extra_list_item dlink;
5917df09
MS
93};
94
7cdb1a84 95/*
0f461727 96 * Route information captured for route updates.
7cdb1a84 97 */
0f461727 98struct dplane_route_info {
7cdb1a84
MS
99
100 /* Dest and (optional) source prefixes */
101 struct prefix zd_dest;
102 struct prefix zd_src;
103
0f461727
MS
104 afi_t zd_afi;
105 safi_t zd_safi;
7cdb1a84
MS
106
107 int zd_type;
108 int zd_old_type;
109
7cdb1a84
MS
110 route_tag_t zd_tag;
111 route_tag_t zd_old_tag;
112 uint32_t zd_metric;
01ce7cba 113 uint32_t zd_old_metric;
0f461727 114
7cdb1a84
MS
115 uint16_t zd_instance;
116 uint16_t zd_old_instance;
117
118 uint8_t zd_distance;
119 uint8_t zd_old_distance;
120
121 uint32_t zd_mtu;
122 uint32_t zd_nexthop_mtu;
123
10388e99
DS
124 uint32_t zd_flags;
125
0c8215cb
SW
126 /* Nexthop hash entry info */
127 struct dplane_nexthop_info nhe;
f820d025 128
7cdb1a84 129 /* Nexthops */
1d48702e 130 uint32_t zd_nhg_id;
7cdb1a84
MS
131 struct nexthop_group zd_ng;
132
1d48702e
MS
133 /* Backup nexthops (if present) */
134 struct nexthop_group backup_ng;
135
4dfd7a02 136 /* "Previous" nexthops, used only in route updates without netlink */
01ce7cba 137 struct nexthop_group zd_old_ng;
1d48702e 138 struct nexthop_group old_backup_ng;
01ce7cba 139
5917df09 140 /* Optional list of extra interface info */
ac96497c 141 struct dplane_intf_extra_list_head intf_extra_list;
0f461727
MS
142};
143
d613b8e1
MS
144/*
145 * Pseudowire info for the dataplane
146 */
147struct dplane_pw_info {
d613b8e1
MS
148 int type;
149 int af;
150 int status;
151 uint32_t flags;
072b487b 152 uint32_t nhg_id;
16d69787 153 union g_addr dest;
d613b8e1
MS
154 mpls_label_t local_label;
155 mpls_label_t remote_label;
156
072b487b
MS
157 /* Nexthops that are valid and installed */
158 struct nexthop_group fib_nhg;
159
160 /* Primary and backup nexthop sets, copied from the resolving route. */
161 struct nexthop_group primary_nhg;
162 struct nexthop_group backup_nhg;
16d69787 163
d613b8e1
MS
164 union pw_protocol_fields fields;
165};
166
c60522f7
AK
167/*
168 * Bridge port info for the dataplane
169 */
170struct dplane_br_port_info {
171 uint32_t sph_filter_cnt;
172 struct in_addr sph_filters[ES_VTEP_MAX_CNT];
173 /* DPLANE_BR_PORT_XXX - see zebra_dplane.h*/
174 uint32_t flags;
175 uint32_t backup_nhg_id;
176};
177
a4a4802a
MS
178/*
179 * Interface/prefix info for the dataplane
180 */
181struct dplane_intf_info {
182
a4a4802a
MS
183 uint32_t metric;
184 uint32_t flags;
5d414138
SW
185
186 bool protodown;
ab465d24 187 bool pd_reason_val;
a4a4802a
MS
188
189#define DPLANE_INTF_CONNECTED (1 << 0) /* Connected peer, p2p */
190#define DPLANE_INTF_SECONDARY (1 << 1)
64168803 191#define DPLANE_INTF_BROADCAST (1 << 2)
0f3af738 192#define DPLANE_INTF_HAS_DEST DPLANE_INTF_CONNECTED
64168803 193#define DPLANE_INTF_HAS_LABEL (1 << 4)
a4a4802a
MS
194
195 /* Interface address/prefix */
196 struct prefix prefix;
197
198 /* Dest address, for p2p, or broadcast prefix */
199 struct prefix dest_prefix;
200
201 char *label;
202 char label_buf[32];
203};
204
7597ac7b 205/*
0bbd4ff4 206 * EVPN MAC address info for the dataplane.
7597ac7b
MS
207 */
208struct dplane_mac_info {
209 vlanid_t vid;
478566d6 210 ifindex_t br_ifindex;
7597ac7b 211 struct ethaddr mac;
b95ce8fa 212 vni_t vni;
7597ac7b
MS
213 struct in_addr vtep_ip;
214 bool is_sticky;
506efd37 215 uint32_t nhg_id;
f188e68e 216 uint32_t update_flags;
7597ac7b
MS
217};
218
931fa60c 219/*
d68e74b4 220 * Neighbor info for the dataplane
931fa60c
MS
221 */
222struct dplane_neigh_info {
223 struct ipaddr ip_addr;
0a27a2fe
PG
224 union {
225 struct ethaddr mac;
226 struct ipaddr ip_addr;
227 } link;
b95ce8fa 228 vni_t vni;
931fa60c
MS
229 uint32_t flags;
230 uint16_t state;
f188e68e 231 uint32_t update_flags;
931fa60c
MS
232};
233
e18747a9
PG
234/*
235 * Neighbor Table
236 */
237struct dplane_neigh_table {
238 uint8_t family;
239 uint32_t app_probes;
240 uint32_t ucast_probes;
241 uint32_t mcast_probes;
242};
243
60d8d43b
JU
244/*
245 * Policy based routing rule info for the dataplane
246 */
247struct dplane_ctx_rule {
248 uint32_t priority;
249
250 /* The route table pointed by this rule */
251 uint32_t table;
252
253 /* Filter criteria */
254 uint32_t filter_bm;
255 uint32_t fwmark;
01f23aff 256 uint8_t dsfield;
60d8d43b
JU
257 struct prefix src_ip;
258 struct prefix dst_ip;
8ccbc778 259 uint8_t ip_proto;
9898473f
AK
260 uint16_t src_port;
261 uint16_t dst_port;
d70a31a3
EB
262
263 uint8_t action_pcp;
264 uint16_t action_vlan_id;
265 uint16_t action_vlan_flags;
266
267 uint32_t action_queue_id;
268
58a1d249 269 char ifname[INTERFACE_NAMSIZ + 1];
9898473f
AK
270 struct ethaddr smac;
271 struct ethaddr dmac;
272 int out_ifindex;
273 intptr_t dp_flow_ptr;
60d8d43b
JU
274};
275
276struct dplane_rule_info {
277 /*
278 * Originating zclient sock fd, so we can know who to send
279 * back to.
280 */
281 int sock;
282
283 int unique;
284 int seq;
285
286 struct dplane_ctx_rule new;
287 struct dplane_ctx_rule old;
288};
289
62b4b7e4
PG
290struct dplane_gre_ctx {
291 uint32_t link_ifindex;
db51f0cd 292 unsigned int mtu;
e3d3fa06 293 struct zebra_l2info_gre info;
62b4b7e4 294};
728f2017
MS
295
296
297/*
298 * Network interface configuration info - aligned with netlink's NETCONF
299 * info. The flags values are public, in the dplane.h file...
300 */
301struct dplane_netconf_info {
728f2017
MS
302 enum dplane_netconf_status_e mpls_val;
303 enum dplane_netconf_status_e mcast_val;
3689905d 304 enum dplane_netconf_status_e linkdown_val;
728f2017
MS
305};
306
c317d3f2
SY
307struct dplane_tc_qdisc_info {
308 enum tc_qdisc_kind kind;
309 const char *kind_str;
310};
311
312struct dplane_tc_class_info {
313 uint32_t handle;
314 enum tc_qdisc_kind kind;
315 const char *kind_str;
449a30ed
SY
316 uint64_t rate;
317 uint64_t ceil;
c317d3f2 318};
449a30ed 319
c317d3f2
SY
320struct dplane_tc_filter_info {
321 uint32_t handle;
322 uint16_t priority;
323 enum tc_filter_kind kind;
324 const char *kind_str;
449a30ed 325 uint32_t filter_bm;
c317d3f2
SY
326 uint16_t eth_proto;
327 uint8_t ip_proto;
449a30ed
SY
328 struct prefix src_ip;
329 struct prefix dst_ip;
c317d3f2
SY
330 uint16_t src_port_min;
331 uint16_t src_port_max;
332 uint16_t dst_port_min;
333 uint16_t dst_port_max;
334 uint8_t dsfield;
335 uint8_t dsfield_mask;
336 uint32_t classid;
449a30ed
SY
337};
338
0f461727
MS
339/*
340 * The context block used to exchange info about route updates across
341 * the boundary between the zebra main context (and pthread) and the
342 * dataplane layer (and pthread).
343 */
344struct zebra_dplane_ctx {
345
346 /* Operation code */
347 enum dplane_op_e zd_op;
348
349 /* Status on return */
350 enum zebra_dplane_result zd_status;
351
352 /* Dplane provider id */
353 uint32_t zd_provider;
354
355 /* Flags - used by providers, e.g. */
356 int zd_flags;
357
358 bool zd_is_update;
359
360 uint32_t zd_seq;
361 uint32_t zd_old_seq;
362
0024a559
MS
363 /* Some updates may be generated by notifications: allow the
364 * plugin to notice and ignore results from its own notifications.
365 */
366 uint32_t zd_notif_provider;
367
0f461727
MS
368 /* TODO -- internal/sub-operation status? */
369 enum zebra_dplane_result zd_remote_status;
370 enum zebra_dplane_result zd_kernel_status;
371
372 vrf_id_t zd_vrf_id;
373 uint32_t zd_table_id;
374
7c7ef4a8
MS
375 char zd_ifname[INTERFACE_NAMSIZ];
376 ifindex_t zd_ifindex;
377
a4a4802a 378 /* Support info for different kinds of updates */
0f461727
MS
379 union {
380 struct dplane_route_info rinfo;
8f74a383 381 struct zebra_lsp lsp;
d613b8e1 382 struct dplane_pw_info pw;
c60522f7 383 struct dplane_br_port_info br_port;
a4a4802a 384 struct dplane_intf_info intf;
7597ac7b 385 struct dplane_mac_info macinfo;
931fa60c 386 struct dplane_neigh_info neigh;
60d8d43b 387 struct dplane_rule_info rule;
c317d3f2
SY
388 struct dplane_tc_qdisc_info tc_qdisc;
389 struct dplane_tc_class_info tc_class;
390 struct dplane_tc_filter_info tc_filter;
5162e000 391 struct zebra_pbr_iptable iptable;
ef524230 392 struct zebra_pbr_ipset ipset;
8f065cd3 393 struct {
ef524230
PG
394 struct zebra_pbr_ipset_entry entry;
395 struct zebra_pbr_ipset_info info;
396 } ipset_entry;
e18747a9 397 struct dplane_neigh_table neightable;
62b4b7e4 398 struct dplane_gre_ctx gre;
728f2017 399 struct dplane_netconf_info netconf;
0f461727
MS
400 } u;
401
402 /* Namespace info, used especially for netlink kernel communication */
403 struct zebra_dplane_info zd_ns_info;
404
7cdb1a84 405 /* Embedded list linkage */
ac96497c 406 struct dplane_ctx_list_item zd_entries;
7cdb1a84
MS
407};
408
c831033f
MS
409/* Flag that can be set by a pre-kernel provider as a signal that an update
410 * should bypass the kernel.
411 */
412#define DPLANE_CTX_FLAG_NO_KERNEL 0x01
413
ac96497c
MS
414/* List types declared now that the structs involved are defined. */
415DECLARE_DLIST(dplane_ctx_list, struct zebra_dplane_ctx, zd_entries);
416DECLARE_DLIST(dplane_intf_extra_list, struct dplane_intf_extra, dlink);
417
418/* List for dplane plugins/providers */
419PREDECL_DLIST(dplane_prov_list);
c831033f 420
7cdb1a84
MS
421/*
422 * Registration block for one dataplane provider.
423 */
25779064 424struct zebra_dplane_provider {
7cdb1a84
MS
425 /* Name */
426 char dp_name[DPLANE_PROVIDER_NAMELEN + 1];
427
428 /* Priority, for ordering among providers */
429 uint8_t dp_priority;
430
431 /* Id value */
432 uint32_t dp_id;
433
c831033f
MS
434 /* Mutex */
435 pthread_mutex_t dp_mutex;
436
437 /* Plugin-provided extra data */
438 void *dp_data;
439
440 /* Flags */
441 int dp_flags;
442
1dd4ea8a
MS
443 int (*dp_start)(struct zebra_dplane_provider *prov);
444
4c206c8f 445 int (*dp_fp)(struct zebra_dplane_provider *prov);
7cdb1a84 446
4c206c8f 447 int (*dp_fini)(struct zebra_dplane_provider *prov, bool early_p);
18c37974 448
0545c373 449 _Atomic uint32_t dp_in_counter;
c9d17fe8 450 _Atomic uint32_t dp_in_queued;
c831033f
MS
451 _Atomic uint32_t dp_in_max;
452 _Atomic uint32_t dp_out_counter;
c9d17fe8 453 _Atomic uint32_t dp_out_queued;
c831033f 454 _Atomic uint32_t dp_out_max;
0545c373 455 _Atomic uint32_t dp_error_counter;
1d11b21f 456
c831033f 457 /* Queue of contexts inbound to the provider */
ac96497c 458 struct dplane_ctx_list_head dp_ctx_in_list;
c831033f
MS
459
460 /* Queue of completed contexts outbound from the provider back
461 * towards the dataplane module.
462 */
ac96497c 463 struct dplane_ctx_list_head dp_ctx_out_list;
7cdb1a84 464
c831033f 465 /* Embedded list linkage for provider objects */
ac96497c 466 struct dplane_prov_list_item dp_link;
7cdb1a84
MS
467};
468
ac96497c
MS
469/* Declare list of providers/plugins */
470DECLARE_DLIST(dplane_prov_list, struct zebra_dplane_provider, dp_link);
471
d166308b
MS
472/* Declare types for list of zns info objects */
473PREDECL_DLIST(zns_info_list);
474
475struct dplane_zns_info {
476 struct zebra_dplane_info info;
477
cd787a8a 478 /* Request data from the OS */
e6685141 479 struct event *t_request;
cd787a8a 480
d166308b 481 /* Read event */
e6685141 482 struct event *t_read;
d166308b
MS
483
484 /* List linkage */
485 struct zns_info_list_item link;
486};
487
7cdb1a84
MS
488/*
489 * Globals
490 */
25779064 491static struct zebra_dplane_globals {
7cdb1a84
MS
492 /* Mutex to control access to dataplane components */
493 pthread_mutex_t dg_mutex;
494
495 /* Results callback registered by zebra 'core' */
ac96497c 496 int (*dg_results_cb)(struct dplane_ctx_list_head *ctxlist);
7cdb1a84 497
4dfd7a02
MS
498 /* Sentinel for beginning of shutdown */
499 volatile bool dg_is_shutdown;
500
501 /* Sentinel for end of shutdown */
1d11b21f
MS
502 volatile bool dg_run;
503
3fe4ccc4 504 /* Update context queue inbound to the dataplane */
ac96497c 505 struct dplane_ctx_list_head dg_update_list;
7cdb1a84
MS
506
507 /* Ordered list of providers */
ac96497c 508 struct dplane_prov_list_head dg_providers;
7cdb1a84 509
d166308b
MS
510 /* List of info about each zns */
511 struct zns_info_list_head dg_zns_list;
512
1d11b21f 513 /* Counter used to assign internal ids to providers */
b8e0423d
MS
514 uint32_t dg_provider_id;
515
91f16812
MS
516 /* Limit number of pending, unprocessed updates */
517 _Atomic uint32_t dg_max_queued_updates;
518
cf363e1b
MS
519 /* Control whether system route notifications should be produced. */
520 bool dg_sys_route_notifs;
521
c831033f
MS
522 /* Limit number of new updates dequeued at once, to pace an
523 * incoming burst.
524 */
525 uint32_t dg_updates_per_cycle;
526
0545c373 527 _Atomic uint32_t dg_routes_in;
1d11b21f 528 _Atomic uint32_t dg_routes_queued;
4dfd7a02 529 _Atomic uint32_t dg_routes_queued_max;
0545c373 530 _Atomic uint32_t dg_route_errors;
16c628de
MS
531 _Atomic uint32_t dg_other_errors;
532
f820d025
SW
533 _Atomic uint32_t dg_nexthops_in;
534 _Atomic uint32_t dg_nexthop_errors;
535
16c628de 536 _Atomic uint32_t dg_lsps_in;
16c628de
MS
537 _Atomic uint32_t dg_lsp_errors;
538
97d8d05a
MS
539 _Atomic uint32_t dg_pws_in;
540 _Atomic uint32_t dg_pw_errors;
541
c60522f7
AK
542 _Atomic uint32_t dg_br_port_in;
543 _Atomic uint32_t dg_br_port_errors;
544
64168803
MS
545 _Atomic uint32_t dg_intf_addrs_in;
546 _Atomic uint32_t dg_intf_addr_errors;
39ffa8e8
DS
547 _Atomic uint32_t dg_intf_changes;
548 _Atomic uint32_t dg_intf_changes_errors;
64168803 549
7597ac7b
MS
550 _Atomic uint32_t dg_macs_in;
551 _Atomic uint32_t dg_mac_errors;
552
931fa60c
MS
553 _Atomic uint32_t dg_neighs_in;
554 _Atomic uint32_t dg_neigh_errors;
555
60d8d43b
JU
556 _Atomic uint32_t dg_rules_in;
557 _Atomic uint32_t dg_rule_errors;
558
c831033f 559 _Atomic uint32_t dg_update_yields;
1d11b21f 560
5162e000
PG
561 _Atomic uint32_t dg_iptable_in;
562 _Atomic uint32_t dg_iptable_errors;
ef524230
PG
563
564 _Atomic uint32_t dg_ipset_in;
565 _Atomic uint32_t dg_ipset_errors;
566 _Atomic uint32_t dg_ipset_entry_in;
567 _Atomic uint32_t dg_ipset_entry_errors;
568
e18747a9
PG
569 _Atomic uint32_t dg_neightable_in;
570 _Atomic uint32_t dg_neightable_errors;
571
62b4b7e4
PG
572 _Atomic uint32_t dg_gre_set_in;
573 _Atomic uint32_t dg_gre_set_errors;
574
5d414138
SW
575 _Atomic uint32_t dg_intfs_in;
576 _Atomic uint32_t dg_intf_errors;
577
449a30ed
SY
578 _Atomic uint32_t dg_tcs_in;
579 _Atomic uint32_t dg_tcs_errors;
580
d8c16a95
MS
581 /* Dataplane pthread */
582 struct frr_pthread *dg_pthread;
583
7cdb1a84 584 /* Event-delivery context 'master' for the dplane */
cd9d0537 585 struct event_loop *dg_master;
7cdb1a84
MS
586
587 /* Event/'thread' pointer for queued updates */
e6685141 588 struct event *dg_t_update;
7cdb1a84 589
4dfd7a02 590 /* Event pointer for pending shutdown check loop */
e6685141 591 struct event *dg_t_shutdown_check;
4dfd7a02 592
25779064 593} zdplane_info;
7cdb1a84 594
d166308b
MS
595/* Instantiate zns list type */
596DECLARE_DLIST(zns_info_list, struct dplane_zns_info, link);
597
7cdb1a84 598/*
c831033f 599 * Lock and unlock for interactions with the zebra 'core' pthread
7cdb1a84 600 */
25779064 601#define DPLANE_LOCK() pthread_mutex_lock(&zdplane_info.dg_mutex)
25779064 602#define DPLANE_UNLOCK() pthread_mutex_unlock(&zdplane_info.dg_mutex)
7cdb1a84 603
c831033f
MS
604
605/*
606 * Lock and unlock for individual providers
607 */
608#define DPLANE_PROV_LOCK(p) pthread_mutex_lock(&((p)->dp_mutex))
609#define DPLANE_PROV_UNLOCK(p) pthread_mutex_unlock(&((p)->dp_mutex))
610
7cdb1a84 611/* Prototypes */
e6685141 612static void dplane_thread_loop(struct event *event);
8f74a383 613static enum zebra_dplane_result lsp_update_internal(struct zebra_lsp *lsp,
16c628de 614 enum dplane_op_e op);
97d8d05a
MS
615static enum zebra_dplane_result pw_update_internal(struct zebra_pw *pw,
616 enum dplane_op_e op);
64168803
MS
617static enum zebra_dplane_result intf_addr_update_internal(
618 const struct interface *ifp, const struct connected *ifc,
619 enum dplane_op_e op);
b95ce8fa
SR
620static enum zebra_dplane_result
621mac_update_common(enum dplane_op_e op, const struct interface *ifp,
622 const struct interface *br_ifp, vlanid_t vid,
623 const struct ethaddr *mac, vni_t vni, struct in_addr vtep_ip,
624 bool sticky, uint32_t nhg_id, uint32_t update_flags);
0a27a2fe
PG
625static enum zebra_dplane_result
626neigh_update_internal(enum dplane_op_e op, const struct interface *ifp,
627 const void *link, int link_family,
0e44c00d
SW
628 const struct ipaddr *ip, vni_t vni, uint32_t flags,
629 uint16_t state, uint32_t update_flags, int protocol);
7cdb1a84
MS
630
631/*
632 * Public APIs
633 */
634
ad6aad4d 635/* Obtain thread_master for dataplane thread */
cd9d0537 636struct event_loop *dplane_get_thread_master(void)
ad6aad4d
MS
637{
638 return zdplane_info.dg_master;
639}
640
7cdb1a84 641/*
b8e0423d 642 * Allocate a dataplane update context
7cdb1a84 643 */
593e4eb1 644struct zebra_dplane_ctx *dplane_ctx_alloc(void)
7cdb1a84 645{
25779064 646 struct zebra_dplane_ctx *p;
7cdb1a84 647
b8e0423d
MS
648 /* TODO -- just alloc'ing memory, but would like to maintain
649 * a pool
650 */
25779064 651 p = XCALLOC(MTYPE_DP_CTX, sizeof(struct zebra_dplane_ctx));
7cdb1a84 652
5709131c 653 return p;
7cdb1a84
MS
654}
655
cf363e1b
MS
656/* Enable system route notifications */
657void dplane_enable_sys_route_notifs(void)
658{
659 zdplane_info.dg_sys_route_notifs = true;
660}
661
7cdb1a84 662/*
f73a8467 663 * Clean up dependent/internal allocations inside a context object
7cdb1a84 664 */
f73a8467 665static void dplane_ctx_free_internal(struct zebra_dplane_ctx *ctx)
7cdb1a84 666{
ac96497c 667 struct dplane_intf_extra *if_extra;
5917df09 668
f73a8467
MS
669 /*
670 * Some internal allocations may need to be freed, depending on
16c628de
MS
671 * the type of info captured in the ctx.
672 */
f73a8467 673 switch (ctx->zd_op) {
16c628de
MS
674 case DPLANE_OP_ROUTE_INSTALL:
675 case DPLANE_OP_ROUTE_UPDATE:
676 case DPLANE_OP_ROUTE_DELETE:
cf363e1b
MS
677 case DPLANE_OP_SYS_ROUTE_ADD:
678 case DPLANE_OP_SYS_ROUTE_DELETE:
54818e3b 679 case DPLANE_OP_ROUTE_NOTIFY:
b8e0423d 680
16c628de 681 /* Free allocated nexthops */
f73a8467 682 if (ctx->u.rinfo.zd_ng.nexthop) {
7cdb1a84 683 /* This deals with recursive nexthops too */
f73a8467 684 nexthops_free(ctx->u.rinfo.zd_ng.nexthop);
16c628de 685
f73a8467 686 ctx->u.rinfo.zd_ng.nexthop = NULL;
7cdb1a84
MS
687 }
688
1d48702e 689 /* Free backup info also (if present) */
f73a8467 690 if (ctx->u.rinfo.backup_ng.nexthop) {
1d48702e 691 /* This deals with recursive nexthops too */
f73a8467 692 nexthops_free(ctx->u.rinfo.backup_ng.nexthop);
1d48702e 693
f73a8467 694 ctx->u.rinfo.backup_ng.nexthop = NULL;
1d48702e
MS
695 }
696
f73a8467 697 if (ctx->u.rinfo.zd_old_ng.nexthop) {
4dfd7a02 698 /* This deals with recursive nexthops too */
f73a8467 699 nexthops_free(ctx->u.rinfo.zd_old_ng.nexthop);
16c628de 700
f73a8467 701 ctx->u.rinfo.zd_old_ng.nexthop = NULL;
16c628de
MS
702 }
703
f73a8467 704 if (ctx->u.rinfo.old_backup_ng.nexthop) {
1d48702e 705 /* This deals with recursive nexthops too */
f73a8467 706 nexthops_free(ctx->u.rinfo.old_backup_ng.nexthop);
1d48702e 707
f73a8467 708 ctx->u.rinfo.old_backup_ng.nexthop = NULL;
1d48702e
MS
709 }
710
5917df09 711 /* Optional extra interface info */
ac96497c
MS
712 while ((if_extra = dplane_intf_extra_list_pop(
713 &ctx->u.rinfo.intf_extra_list)))
5917df09 714 XFREE(MTYPE_DP_INTF, if_extra);
5917df09 715
16c628de
MS
716 break;
717
f820d025
SW
718 case DPLANE_OP_NH_INSTALL:
719 case DPLANE_OP_NH_UPDATE:
720 case DPLANE_OP_NH_DELETE: {
f73a8467 721 if (ctx->u.rinfo.nhe.ng.nexthop) {
0c8215cb 722 /* This deals with recursive nexthops too */
f73a8467 723 nexthops_free(ctx->u.rinfo.nhe.ng.nexthop);
0c8215cb 724
f73a8467 725 ctx->u.rinfo.nhe.ng.nexthop = NULL;
0c8215cb 726 }
f820d025
SW
727 break;
728 }
729
16c628de
MS
730 case DPLANE_OP_LSP_INSTALL:
731 case DPLANE_OP_LSP_UPDATE:
732 case DPLANE_OP_LSP_DELETE:
104e3ad9 733 case DPLANE_OP_LSP_NOTIFY:
16c628de 734 {
f2595bd5 735 struct zebra_nhlfe *nhlfe;
16c628de 736
cd4bb96f
MS
737 /* Unlink and free allocated NHLFEs */
738 frr_each_safe(nhlfe_list, &ctx->u.lsp.nhlfe_list, nhlfe) {
739 nhlfe_list_del(&ctx->u.lsp.nhlfe_list, nhlfe);
740 zebra_mpls_nhlfe_free(nhlfe);
741 }
742
743 /* Unlink and free allocated backup NHLFEs, if present */
744 frr_each_safe(nhlfe_list,
745 &(ctx->u.lsp.backup_nhlfe_list), nhlfe) {
746 nhlfe_list_del(&ctx->u.lsp.backup_nhlfe_list,
747 nhlfe);
748 zebra_mpls_nhlfe_free(nhlfe);
749 }
01ce7cba 750
cd4bb96f 751 /* Clear pointers in lsp struct, in case we're caching
16c628de
MS
752 * free context structs.
753 */
ee70f629 754 nhlfe_list_init(&ctx->u.lsp.nhlfe_list);
f73a8467 755 ctx->u.lsp.best_nhlfe = NULL;
cd4bb96f 756 nhlfe_list_init(&ctx->u.lsp.backup_nhlfe_list);
16c628de
MS
757
758 break;
759 }
760
97d8d05a
MS
761 case DPLANE_OP_PW_INSTALL:
762 case DPLANE_OP_PW_UNINSTALL:
16d69787 763 /* Free allocated nexthops */
072b487b 764 if (ctx->u.pw.fib_nhg.nexthop) {
16d69787 765 /* This deals with recursive nexthops too */
072b487b
MS
766 nexthops_free(ctx->u.pw.fib_nhg.nexthop);
767
768 ctx->u.pw.fib_nhg.nexthop = NULL;
769 }
770 if (ctx->u.pw.primary_nhg.nexthop) {
771 nexthops_free(ctx->u.pw.primary_nhg.nexthop);
16d69787 772
072b487b
MS
773 ctx->u.pw.primary_nhg.nexthop = NULL;
774 }
775 if (ctx->u.pw.backup_nhg.nexthop) {
776 nexthops_free(ctx->u.pw.backup_nhg.nexthop);
777
778 ctx->u.pw.backup_nhg.nexthop = NULL;
16d69787
MS
779 }
780 break;
781
a4a4802a
MS
782 case DPLANE_OP_ADDR_INSTALL:
783 case DPLANE_OP_ADDR_UNINSTALL:
9d59df63
MS
784 case DPLANE_OP_INTF_ADDR_ADD:
785 case DPLANE_OP_INTF_ADDR_DEL:
64168803 786 /* Maybe free label string, if allocated */
f73a8467
MS
787 if (ctx->u.intf.label != NULL &&
788 ctx->u.intf.label != ctx->u.intf.label_buf) {
b6b6e59c 789 XFREE(MTYPE_DP_CTX, ctx->u.intf.label);
f73a8467 790 ctx->u.intf.label = NULL;
64168803
MS
791 }
792 break;
793
7597ac7b
MS
794 case DPLANE_OP_MAC_INSTALL:
795 case DPLANE_OP_MAC_DELETE:
f2412b2d 796 case DPLANE_OP_NEIGH_INSTALL:
931fa60c 797 case DPLANE_OP_NEIGH_UPDATE:
f2412b2d 798 case DPLANE_OP_NEIGH_DELETE:
0bbd4ff4
MS
799 case DPLANE_OP_VTEP_ADD:
800 case DPLANE_OP_VTEP_DELETE:
60d8d43b
JU
801 case DPLANE_OP_RULE_ADD:
802 case DPLANE_OP_RULE_DELETE:
803 case DPLANE_OP_RULE_UPDATE:
d68e74b4 804 case DPLANE_OP_NEIGH_DISCOVER:
c60522f7 805 case DPLANE_OP_BR_PORT_UPDATE:
0a27a2fe
PG
806 case DPLANE_OP_NEIGH_IP_INSTALL:
807 case DPLANE_OP_NEIGH_IP_DELETE:
16c628de 808 case DPLANE_OP_NONE:
ef524230
PG
809 case DPLANE_OP_IPSET_ADD:
810 case DPLANE_OP_IPSET_DELETE:
5d414138
SW
811 case DPLANE_OP_INTF_INSTALL:
812 case DPLANE_OP_INTF_UPDATE:
813 case DPLANE_OP_INTF_DELETE:
c317d3f2
SY
814 case DPLANE_OP_TC_QDISC_INSTALL:
815 case DPLANE_OP_TC_QDISC_UNINSTALL:
816 case DPLANE_OP_TC_CLASS_ADD:
817 case DPLANE_OP_TC_CLASS_DELETE:
818 case DPLANE_OP_TC_CLASS_UPDATE:
819 case DPLANE_OP_TC_FILTER_ADD:
820 case DPLANE_OP_TC_FILTER_DELETE:
821 case DPLANE_OP_TC_FILTER_UPDATE:
16c628de 822 break;
5162e000 823
ef524230
PG
824 case DPLANE_OP_IPSET_ENTRY_ADD:
825 case DPLANE_OP_IPSET_ENTRY_DELETE:
826 break;
e18747a9
PG
827 case DPLANE_OP_NEIGH_TABLE_UPDATE:
828 break;
5162e000
PG
829 case DPLANE_OP_IPTABLE_ADD:
830 case DPLANE_OP_IPTABLE_DELETE:
1cc38067 831 if (ctx->u.iptable.interface_name_list)
5162e000 832 list_delete(&ctx->u.iptable.interface_name_list);
62b4b7e4
PG
833 break;
834 case DPLANE_OP_GRE_SET:
728f2017 835 case DPLANE_OP_INTF_NETCONFIG:
62b4b7e4 836 break;
7cdb1a84 837 }
f73a8467
MS
838}
839
840/*
841 * Free a dataplane results context.
842 */
843static void dplane_ctx_free(struct zebra_dplane_ctx **pctx)
844{
845 if (pctx == NULL)
846 return;
847
848 DPLANE_CTX_VALID(*pctx);
849
850 /* TODO -- just freeing memory, but would like to maintain
851 * a pool
852 */
853
854 /* Some internal allocations may need to be freed, depending on
855 * the type of info captured in the ctx.
856 */
857 dplane_ctx_free_internal(*pctx);
16c628de
MS
858
859 XFREE(MTYPE_DP_CTX, *pctx);
7cdb1a84
MS
860}
861
f73a8467
MS
862/*
863 * Reset an allocated context object for re-use. All internal allocations are
864 * freed and the context is memset.
865 */
866void dplane_ctx_reset(struct zebra_dplane_ctx *ctx)
867{
868 dplane_ctx_free_internal(ctx);
869 memset(ctx, 0, sizeof(*ctx));
870}
871
7cdb1a84
MS
872/*
873 * Return a context block to the dplane module after processing
874 */
25779064 875void dplane_ctx_fini(struct zebra_dplane_ctx **pctx)
7cdb1a84 876{
14b0bc8e 877 /* TODO -- maintain pool; for now, just free */
7cdb1a84
MS
878 dplane_ctx_free(pctx);
879}
880
ac96497c
MS
881/* Init a list of contexts */
882void dplane_ctx_q_init(struct dplane_ctx_list_head *q)
883{
884 dplane_ctx_list_init(q);
885}
886
7cdb1a84 887/* Enqueue a context block */
ac96497c 888void dplane_ctx_enqueue_tail(struct dplane_ctx_list_head *list,
25779064 889 const struct zebra_dplane_ctx *ctx)
7cdb1a84 890{
ac96497c 891 dplane_ctx_list_add_tail(list, (struct zebra_dplane_ctx *)ctx);
7cdb1a84
MS
892}
893
14b0bc8e 894/* Append a list of context blocks to another list */
ac96497c
MS
895void dplane_ctx_list_append(struct dplane_ctx_list_head *to_list,
896 struct dplane_ctx_list_head *from_list)
14b0bc8e 897{
ac96497c 898 struct zebra_dplane_ctx *ctx;
14b0bc8e 899
ac96497c
MS
900 while ((ctx = dplane_ctx_list_pop(from_list)) != NULL)
901 dplane_ctx_list_add_tail(to_list, ctx);
14b0bc8e
MS
902}
903
ac96497c 904struct zebra_dplane_ctx *dplane_ctx_get_head(struct dplane_ctx_list_head *q)
c8453cd7 905{
ac96497c 906 struct zebra_dplane_ctx *ctx = dplane_ctx_list_first(q);
c8453cd7
DS
907
908 return ctx;
909}
910
7cdb1a84 911/* Dequeue a context block from the head of a list */
ac96497c 912struct zebra_dplane_ctx *dplane_ctx_dequeue(struct dplane_ctx_list_head *q)
7cdb1a84 913{
ac96497c 914 struct zebra_dplane_ctx *ctx = dplane_ctx_list_pop(q);
7cdb1a84 915
68b375e0 916 return ctx;
7cdb1a84
MS
917}
918
919/*
920 * Accessors for information from the context object
921 */
25779064
MS
922enum zebra_dplane_result dplane_ctx_get_status(
923 const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
924{
925 DPLANE_CTX_VALID(ctx);
926
5709131c 927 return ctx->zd_status;
7cdb1a84
MS
928}
929
c831033f
MS
930void dplane_ctx_set_status(struct zebra_dplane_ctx *ctx,
931 enum zebra_dplane_result status)
932{
933 DPLANE_CTX_VALID(ctx);
934
935 ctx->zd_status = status;
936}
937
938/* Retrieve last/current provider id */
939uint32_t dplane_ctx_get_provider(const struct zebra_dplane_ctx *ctx)
940{
941 DPLANE_CTX_VALID(ctx);
942 return ctx->zd_provider;
943}
944
945/* Providers run before the kernel can control whether a kernel
946 * update should be done.
947 */
948void dplane_ctx_set_skip_kernel(struct zebra_dplane_ctx *ctx)
949{
950 DPLANE_CTX_VALID(ctx);
951
952 SET_FLAG(ctx->zd_flags, DPLANE_CTX_FLAG_NO_KERNEL);
953}
954
955bool dplane_ctx_is_skip_kernel(const struct zebra_dplane_ctx *ctx)
956{
957 DPLANE_CTX_VALID(ctx);
958
959 return CHECK_FLAG(ctx->zd_flags, DPLANE_CTX_FLAG_NO_KERNEL);
960}
961
593e4eb1
MS
962void dplane_ctx_set_op(struct zebra_dplane_ctx *ctx, enum dplane_op_e op)
963{
964 DPLANE_CTX_VALID(ctx);
965 ctx->zd_op = op;
966}
967
25779064 968enum dplane_op_e dplane_ctx_get_op(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
969{
970 DPLANE_CTX_VALID(ctx);
971
5709131c 972 return ctx->zd_op;
7cdb1a84
MS
973}
974
5709131c 975const char *dplane_op2str(enum dplane_op_e op)
7cdb1a84
MS
976{
977 const char *ret = "UNKNOWN";
978
5709131c 979 switch (op) {
7cdb1a84
MS
980 case DPLANE_OP_NONE:
981 ret = "NONE";
982 break;
983
984 /* Route update */
985 case DPLANE_OP_ROUTE_INSTALL:
986 ret = "ROUTE_INSTALL";
987 break;
988 case DPLANE_OP_ROUTE_UPDATE:
989 ret = "ROUTE_UPDATE";
990 break;
991 case DPLANE_OP_ROUTE_DELETE:
992 ret = "ROUTE_DELETE";
993 break;
54818e3b
MS
994 case DPLANE_OP_ROUTE_NOTIFY:
995 ret = "ROUTE_NOTIFY";
996 break;
7cdb1a84 997
f820d025
SW
998 /* Nexthop update */
999 case DPLANE_OP_NH_INSTALL:
1000 ret = "NH_INSTALL";
1001 break;
1002 case DPLANE_OP_NH_UPDATE:
1003 ret = "NH_UPDATE";
1004 break;
1005 case DPLANE_OP_NH_DELETE:
1006 ret = "NH_DELETE";
1007 break;
1008
16c628de
MS
1009 case DPLANE_OP_LSP_INSTALL:
1010 ret = "LSP_INSTALL";
1011 break;
1012 case DPLANE_OP_LSP_UPDATE:
1013 ret = "LSP_UPDATE";
1014 break;
1015 case DPLANE_OP_LSP_DELETE:
1016 ret = "LSP_DELETE";
1017 break;
104e3ad9
MS
1018 case DPLANE_OP_LSP_NOTIFY:
1019 ret = "LSP_NOTIFY";
1020 break;
16c628de 1021
97d8d05a
MS
1022 case DPLANE_OP_PW_INSTALL:
1023 ret = "PW_INSTALL";
1024 break;
1025 case DPLANE_OP_PW_UNINSTALL:
1026 ret = "PW_UNINSTALL";
1027 break;
1028
cf363e1b
MS
1029 case DPLANE_OP_SYS_ROUTE_ADD:
1030 ret = "SYS_ROUTE_ADD";
1031 break;
1032 case DPLANE_OP_SYS_ROUTE_DELETE:
1033 ret = "SYS_ROUTE_DEL";
1034 break;
a4a4802a 1035
c60522f7
AK
1036 case DPLANE_OP_BR_PORT_UPDATE:
1037 ret = "BR_PORT_UPDATE";
1038 break;
1039
a4a4802a
MS
1040 case DPLANE_OP_ADDR_INSTALL:
1041 ret = "ADDR_INSTALL";
1042 break;
1043 case DPLANE_OP_ADDR_UNINSTALL:
1044 ret = "ADDR_UNINSTALL";
1045 break;
1046
7597ac7b
MS
1047 case DPLANE_OP_MAC_INSTALL:
1048 ret = "MAC_INSTALL";
1049 break;
1050 case DPLANE_OP_MAC_DELETE:
1051 ret = "MAC_DELETE";
1052 break;
f2412b2d
MS
1053
1054 case DPLANE_OP_NEIGH_INSTALL:
1055 ret = "NEIGH_INSTALL";
1056 break;
931fa60c
MS
1057 case DPLANE_OP_NEIGH_UPDATE:
1058 ret = "NEIGH_UPDATE";
1059 break;
f2412b2d
MS
1060 case DPLANE_OP_NEIGH_DELETE:
1061 ret = "NEIGH_DELETE";
1062 break;
0bbd4ff4
MS
1063 case DPLANE_OP_VTEP_ADD:
1064 ret = "VTEP_ADD";
1065 break;
1066 case DPLANE_OP_VTEP_DELETE:
1067 ret = "VTEP_DELETE";
1068 break;
60d8d43b
JU
1069
1070 case DPLANE_OP_RULE_ADD:
1071 ret = "RULE_ADD";
1072 break;
1073 case DPLANE_OP_RULE_DELETE:
1074 ret = "RULE_DELETE";
1075 break;
1076 case DPLANE_OP_RULE_UPDATE:
1077 ret = "RULE_UPDATE";
1078 break;
d68e74b4
JU
1079
1080 case DPLANE_OP_NEIGH_DISCOVER:
1081 ret = "NEIGH_DISCOVER";
1082 break;
5162e000
PG
1083
1084 case DPLANE_OP_IPTABLE_ADD:
1085 ret = "IPTABLE_ADD";
1086 break;
1087 case DPLANE_OP_IPTABLE_DELETE:
1088 ret = "IPTABLE_DELETE";
1089 break;
ef524230
PG
1090 case DPLANE_OP_IPSET_ADD:
1091 ret = "IPSET_ADD";
1092 break;
1093 case DPLANE_OP_IPSET_DELETE:
1094 ret = "IPSET_DELETE";
1095 break;
1096 case DPLANE_OP_IPSET_ENTRY_ADD:
1097 ret = "IPSET_ENTRY_ADD";
1098 break;
1099 case DPLANE_OP_IPSET_ENTRY_DELETE:
1100 ret = "IPSET_ENTRY_DELETE";
1101 break;
0a27a2fe
PG
1102 case DPLANE_OP_NEIGH_IP_INSTALL:
1103 ret = "NEIGH_IP_INSTALL";
1104 break;
1105 case DPLANE_OP_NEIGH_IP_DELETE:
1106 ret = "NEIGH_IP_DELETE";
1107 break;
e18747a9
PG
1108 case DPLANE_OP_NEIGH_TABLE_UPDATE:
1109 ret = "NEIGH_TABLE_UPDATE";
1110 break;
62b4b7e4
PG
1111
1112 case DPLANE_OP_GRE_SET:
1113 ret = "GRE_SET";
1114 break;
9d59df63
MS
1115
1116 case DPLANE_OP_INTF_ADDR_ADD:
1117 return "INTF_ADDR_ADD";
1118
1119 case DPLANE_OP_INTF_ADDR_DEL:
1120 return "INTF_ADDR_DEL";
728f2017
MS
1121
1122 case DPLANE_OP_INTF_NETCONFIG:
1123 return "INTF_NETCONFIG";
5d414138
SW
1124
1125 case DPLANE_OP_INTF_INSTALL:
1126 ret = "INTF_INSTALL";
1127 break;
1128 case DPLANE_OP_INTF_UPDATE:
1129 ret = "INTF_UPDATE";
1130 break;
1131 case DPLANE_OP_INTF_DELETE:
1132 ret = "INTF_DELETE";
1133 break;
449a30ed 1134
c317d3f2
SY
1135 case DPLANE_OP_TC_QDISC_INSTALL:
1136 ret = "TC_QDISC_INSTALL";
1137 break;
1138 case DPLANE_OP_TC_QDISC_UNINSTALL:
1139 ret = "TC_QDISC_UNINSTALL";
1140 break;
1141 case DPLANE_OP_TC_CLASS_ADD:
1142 ret = "TC_CLASS_ADD";
1143 break;
1144 case DPLANE_OP_TC_CLASS_DELETE:
1145 ret = "TC_CLASS_DELETE";
1146 break;
1147 case DPLANE_OP_TC_CLASS_UPDATE:
1148 ret = "TC_CLASS_UPDATE";
1149 break;
1150 case DPLANE_OP_TC_FILTER_ADD:
1151 ret = "TC_FILTER_ADD";
449a30ed 1152 break;
c317d3f2
SY
1153 case DPLANE_OP_TC_FILTER_DELETE:
1154 ret = "TC_FILTER_DELETE";
449a30ed 1155 break;
c317d3f2
SY
1156 case DPLANE_OP_TC_FILTER_UPDATE:
1157 ret = "TC__FILTER_UPDATE";
449a30ed 1158 break;
5b94ec50 1159 }
7cdb1a84 1160
5709131c 1161 return ret;
7cdb1a84
MS
1162}
1163
f183e380
MS
1164const char *dplane_res2str(enum zebra_dplane_result res)
1165{
1166 const char *ret = "<Unknown>";
1167
1168 switch (res) {
1169 case ZEBRA_DPLANE_REQUEST_FAILURE:
1170 ret = "FAILURE";
1171 break;
1172 case ZEBRA_DPLANE_REQUEST_QUEUED:
1173 ret = "QUEUED";
1174 break;
1175 case ZEBRA_DPLANE_REQUEST_SUCCESS:
1176 ret = "SUCCESS";
1177 break;
5b94ec50 1178 }
f183e380
MS
1179
1180 return ret;
1181}
1182
593e4eb1
MS
1183void dplane_ctx_set_dest(struct zebra_dplane_ctx *ctx,
1184 const struct prefix *dest)
1185{
1186 DPLANE_CTX_VALID(ctx);
1187
1188 prefix_copy(&(ctx->u.rinfo.zd_dest), dest);
1189}
1190
25779064 1191const struct prefix *dplane_ctx_get_dest(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1192{
1193 DPLANE_CTX_VALID(ctx);
1194
0f461727 1195 return &(ctx->u.rinfo.zd_dest);
7cdb1a84
MS
1196}
1197
593e4eb1
MS
1198void dplane_ctx_set_src(struct zebra_dplane_ctx *ctx, const struct prefix *src)
1199{
1200 DPLANE_CTX_VALID(ctx);
1201
1202 if (src)
1203 prefix_copy(&(ctx->u.rinfo.zd_src), src);
1204 else
1205 memset(&(ctx->u.rinfo.zd_src), 0, sizeof(struct prefix));
1206}
1207
5709131c 1208/* Source prefix is a little special - return NULL for "no src prefix" */
25779064 1209const struct prefix *dplane_ctx_get_src(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1210{
1211 DPLANE_CTX_VALID(ctx);
1212
0f461727
MS
1213 if (ctx->u.rinfo.zd_src.prefixlen == 0 &&
1214 IN6_IS_ADDR_UNSPECIFIED(&(ctx->u.rinfo.zd_src.u.prefix6))) {
5709131c 1215 return NULL;
7cdb1a84 1216 } else {
0f461727 1217 return &(ctx->u.rinfo.zd_src);
7cdb1a84
MS
1218 }
1219}
1220
25779064 1221bool dplane_ctx_is_update(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1222{
1223 DPLANE_CTX_VALID(ctx);
1224
5709131c 1225 return ctx->zd_is_update;
7cdb1a84
MS
1226}
1227
25779064 1228uint32_t dplane_ctx_get_seq(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1229{
1230 DPLANE_CTX_VALID(ctx);
1231
5709131c 1232 return ctx->zd_seq;
7cdb1a84
MS
1233}
1234
25779064 1235uint32_t dplane_ctx_get_old_seq(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1236{
1237 DPLANE_CTX_VALID(ctx);
1238
5709131c 1239 return ctx->zd_old_seq;
7cdb1a84
MS
1240}
1241
593e4eb1
MS
1242void dplane_ctx_set_vrf(struct zebra_dplane_ctx *ctx, vrf_id_t vrf)
1243{
1244 DPLANE_CTX_VALID(ctx);
1245
1246 ctx->zd_vrf_id = vrf;
1247}
1248
25779064 1249vrf_id_t dplane_ctx_get_vrf(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1250{
1251 DPLANE_CTX_VALID(ctx);
1252
5709131c 1253 return ctx->zd_vrf_id;
7cdb1a84
MS
1254}
1255
971bad84
MS
1256/* In some paths we have only a namespace id */
1257void dplane_ctx_set_ns_id(struct zebra_dplane_ctx *ctx, ns_id_t nsid)
1258{
1259 DPLANE_CTX_VALID(ctx);
1260
1261 ctx->zd_ns_info.ns_id = nsid;
1262}
1263
1264ns_id_t dplane_ctx_get_ns_id(const struct zebra_dplane_ctx *ctx)
1265{
1266 DPLANE_CTX_VALID(ctx);
1267
1268 return ctx->zd_ns_info.ns_id;
1269}
1270
0024a559
MS
1271bool dplane_ctx_is_from_notif(const struct zebra_dplane_ctx *ctx)
1272{
1273 DPLANE_CTX_VALID(ctx);
1274
1275 return (ctx->zd_notif_provider != 0);
1276}
1277
1278uint32_t dplane_ctx_get_notif_provider(const struct zebra_dplane_ctx *ctx)
1279{
1280 DPLANE_CTX_VALID(ctx);
1281
1282 return ctx->zd_notif_provider;
1283}
1284
9651af61
MS
1285void dplane_ctx_set_notif_provider(struct zebra_dplane_ctx *ctx,
1286 uint32_t id)
1287{
1288 DPLANE_CTX_VALID(ctx);
1289
1290 ctx->zd_notif_provider = id;
1291}
fd563cc7 1292
7c7ef4a8
MS
1293const char *dplane_ctx_get_ifname(const struct zebra_dplane_ctx *ctx)
1294{
1295 DPLANE_CTX_VALID(ctx);
1296
1297 return ctx->zd_ifname;
1298}
1299
fd563cc7
KS
1300void dplane_ctx_set_ifname(struct zebra_dplane_ctx *ctx, const char *ifname)
1301{
1302 DPLANE_CTX_VALID(ctx);
1303
1304 if (!ifname)
1305 return;
1306
1307 strlcpy(ctx->zd_ifname, ifname, sizeof(ctx->zd_ifname));
1308}
1309
7c7ef4a8
MS
1310ifindex_t dplane_ctx_get_ifindex(const struct zebra_dplane_ctx *ctx)
1311{
1312 DPLANE_CTX_VALID(ctx);
1313
1314 return ctx->zd_ifindex;
1315}
9651af61 1316
971bad84
MS
1317void dplane_ctx_set_ifindex(struct zebra_dplane_ctx *ctx, ifindex_t ifindex)
1318{
1319 DPLANE_CTX_VALID(ctx);
1320
1321 ctx->zd_ifindex = ifindex;
1322}
1323
593e4eb1
MS
1324void dplane_ctx_set_type(struct zebra_dplane_ctx *ctx, int type)
1325{
1326 DPLANE_CTX_VALID(ctx);
1327
1328 ctx->u.rinfo.zd_type = type;
1329}
1330
25779064 1331int dplane_ctx_get_type(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1332{
1333 DPLANE_CTX_VALID(ctx);
1334
0f461727 1335 return ctx->u.rinfo.zd_type;
7cdb1a84
MS
1336}
1337
25779064 1338int dplane_ctx_get_old_type(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1339{
1340 DPLANE_CTX_VALID(ctx);
1341
0f461727 1342 return ctx->u.rinfo.zd_old_type;
7cdb1a84
MS
1343}
1344
593e4eb1
MS
1345void dplane_ctx_set_afi(struct zebra_dplane_ctx *ctx, afi_t afi)
1346{
1347 DPLANE_CTX_VALID(ctx);
1348
1349 ctx->u.rinfo.zd_afi = afi;
1350}
1351
25779064 1352afi_t dplane_ctx_get_afi(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1353{
1354 DPLANE_CTX_VALID(ctx);
1355
0f461727 1356 return ctx->u.rinfo.zd_afi;
7cdb1a84
MS
1357}
1358
593e4eb1
MS
1359void dplane_ctx_set_safi(struct zebra_dplane_ctx *ctx, safi_t safi)
1360{
1361 DPLANE_CTX_VALID(ctx);
1362
1363 ctx->u.rinfo.zd_safi = safi;
1364}
1365
25779064 1366safi_t dplane_ctx_get_safi(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1367{
1368 DPLANE_CTX_VALID(ctx);
1369
0f461727 1370 return ctx->u.rinfo.zd_safi;
7cdb1a84
MS
1371}
1372
593e4eb1
MS
1373void dplane_ctx_set_table(struct zebra_dplane_ctx *ctx, uint32_t table)
1374{
1375 DPLANE_CTX_VALID(ctx);
1376
1377 ctx->zd_table_id = table;
1378}
1379
25779064 1380uint32_t dplane_ctx_get_table(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1381{
1382 DPLANE_CTX_VALID(ctx);
1383
5709131c 1384 return ctx->zd_table_id;
7cdb1a84
MS
1385}
1386
25779064 1387route_tag_t dplane_ctx_get_tag(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1388{
1389 DPLANE_CTX_VALID(ctx);
1390
0f461727 1391 return ctx->u.rinfo.zd_tag;
7cdb1a84
MS
1392}
1393
6a91ae98
MS
1394void dplane_ctx_set_tag(struct zebra_dplane_ctx *ctx, route_tag_t tag)
1395{
1396 DPLANE_CTX_VALID(ctx);
1397
1398 ctx->u.rinfo.zd_tag = tag;
1399}
1400
25779064 1401route_tag_t dplane_ctx_get_old_tag(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1402{
1403 DPLANE_CTX_VALID(ctx);
1404
0f461727 1405 return ctx->u.rinfo.zd_old_tag;
7cdb1a84
MS
1406}
1407
25779064 1408uint16_t dplane_ctx_get_instance(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1409{
1410 DPLANE_CTX_VALID(ctx);
1411
0f461727 1412 return ctx->u.rinfo.zd_instance;
7cdb1a84
MS
1413}
1414
6a91ae98
MS
1415void dplane_ctx_set_instance(struct zebra_dplane_ctx *ctx, uint16_t instance)
1416{
1417 DPLANE_CTX_VALID(ctx);
1418
1419 ctx->u.rinfo.zd_instance = instance;
1420}
1421
25779064 1422uint16_t dplane_ctx_get_old_instance(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1423{
1424 DPLANE_CTX_VALID(ctx);
1425
0f461727 1426 return ctx->u.rinfo.zd_old_instance;
7cdb1a84
MS
1427}
1428
10388e99
DS
1429uint32_t dplane_ctx_get_flags(const struct zebra_dplane_ctx *ctx)
1430{
1431 DPLANE_CTX_VALID(ctx);
1432
1433 return ctx->u.rinfo.zd_flags;
1434}
1435
1436void dplane_ctx_set_flags(struct zebra_dplane_ctx *ctx, uint32_t flags)
1437{
1438 DPLANE_CTX_VALID(ctx);
1439
1440 ctx->u.rinfo.zd_flags = flags;
1441}
1442
25779064 1443uint32_t dplane_ctx_get_metric(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1444{
1445 DPLANE_CTX_VALID(ctx);
1446
0f461727 1447 return ctx->u.rinfo.zd_metric;
7cdb1a84
MS
1448}
1449
25779064 1450uint32_t dplane_ctx_get_old_metric(const struct zebra_dplane_ctx *ctx)
01ce7cba
MS
1451{
1452 DPLANE_CTX_VALID(ctx);
1453
0f461727 1454 return ctx->u.rinfo.zd_old_metric;
01ce7cba
MS
1455}
1456
25779064 1457uint32_t dplane_ctx_get_mtu(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1458{
1459 DPLANE_CTX_VALID(ctx);
1460
0f461727 1461 return ctx->u.rinfo.zd_mtu;
7cdb1a84
MS
1462}
1463
25779064 1464uint32_t dplane_ctx_get_nh_mtu(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1465{
1466 DPLANE_CTX_VALID(ctx);
1467
0f461727 1468 return ctx->u.rinfo.zd_nexthop_mtu;
7cdb1a84
MS
1469}
1470
25779064 1471uint8_t dplane_ctx_get_distance(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1472{
1473 DPLANE_CTX_VALID(ctx);
1474
0f461727 1475 return ctx->u.rinfo.zd_distance;
7cdb1a84
MS
1476}
1477
6a91ae98
MS
1478void dplane_ctx_set_distance(struct zebra_dplane_ctx *ctx, uint8_t distance)
1479{
1480 DPLANE_CTX_VALID(ctx);
1481
1482 ctx->u.rinfo.zd_distance = distance;
1483}
1484
25779064 1485uint8_t dplane_ctx_get_old_distance(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1486{
1487 DPLANE_CTX_VALID(ctx);
1488
0f461727 1489 return ctx->u.rinfo.zd_old_distance;
7cdb1a84
MS
1490}
1491
c317d3f2
SY
1492int dplane_ctx_tc_qdisc_get_kind(const struct zebra_dplane_ctx *ctx)
1493{
1494 DPLANE_CTX_VALID(ctx);
1495
1496 return ctx->u.tc_qdisc.kind;
1497}
1498
1499const char *dplane_ctx_tc_qdisc_get_kind_str(const struct zebra_dplane_ctx *ctx)
1500{
1501 DPLANE_CTX_VALID(ctx);
1502
1503 return ctx->u.tc_qdisc.kind_str;
1504}
1505
1506uint32_t dplane_ctx_tc_class_get_handle(const struct zebra_dplane_ctx *ctx)
1507{
1508 DPLANE_CTX_VALID(ctx);
1509
1510 return ctx->u.tc_class.handle;
1511}
1512
1513int dplane_ctx_tc_class_get_kind(const struct zebra_dplane_ctx *ctx)
1514{
1515 DPLANE_CTX_VALID(ctx);
1516
1517 return ctx->u.tc_class.kind;
1518}
1519
1520const char *dplane_ctx_tc_class_get_kind_str(const struct zebra_dplane_ctx *ctx)
1521{
1522 DPLANE_CTX_VALID(ctx);
1523
1524 return ctx->u.tc_class.kind_str;
1525}
1526
1527uint64_t dplane_ctx_tc_class_get_rate(const struct zebra_dplane_ctx *ctx)
1528{
1529 DPLANE_CTX_VALID(ctx);
1530
1531 return ctx->u.tc_class.rate;
1532}
1533
1534uint64_t dplane_ctx_tc_class_get_ceil(const struct zebra_dplane_ctx *ctx)
1535{
1536 DPLANE_CTX_VALID(ctx);
1537
1538 return ctx->u.tc_class.ceil;
1539}
1540
1541int dplane_ctx_tc_filter_get_kind(const struct zebra_dplane_ctx *ctx)
1542{
1543 DPLANE_CTX_VALID(ctx);
1544
1545 return ctx->u.tc_filter.kind;
1546}
1547
1548const char *
1549dplane_ctx_tc_filter_get_kind_str(const struct zebra_dplane_ctx *ctx)
1550{
1551 DPLANE_CTX_VALID(ctx);
1552
1553 return ctx->u.tc_filter.kind_str;
1554}
1555
1556uint32_t dplane_ctx_tc_filter_get_priority(const struct zebra_dplane_ctx *ctx)
1557{
1558 DPLANE_CTX_VALID(ctx);
1559
1560 return ctx->u.tc_filter.priority;
1561}
1562
1563uint32_t dplane_ctx_tc_filter_get_handle(const struct zebra_dplane_ctx *ctx)
449a30ed
SY
1564{
1565 DPLANE_CTX_VALID(ctx);
1566
c317d3f2 1567 return ctx->u.tc_filter.handle;
449a30ed
SY
1568}
1569
c317d3f2 1570uint16_t dplane_ctx_tc_filter_get_eth_proto(const struct zebra_dplane_ctx *ctx)
449a30ed
SY
1571{
1572 DPLANE_CTX_VALID(ctx);
1573
c317d3f2 1574 return ctx->u.tc_filter.eth_proto;
449a30ed
SY
1575}
1576
c317d3f2 1577uint32_t dplane_ctx_tc_filter_get_filter_bm(const struct zebra_dplane_ctx *ctx)
449a30ed
SY
1578{
1579 DPLANE_CTX_VALID(ctx);
1580
c317d3f2 1581 return ctx->u.tc_filter.filter_bm;
449a30ed
SY
1582}
1583
1584const struct prefix *
c317d3f2
SY
1585dplane_ctx_tc_filter_get_src_ip(const struct zebra_dplane_ctx *ctx)
1586{
1587 DPLANE_CTX_VALID(ctx);
1588
1589 return &ctx->u.tc_filter.src_ip;
1590}
1591
1592uint16_t
1593dplane_ctx_tc_filter_get_src_port_min(const struct zebra_dplane_ctx *ctx)
1594{
1595 DPLANE_CTX_VALID(ctx);
1596
1597 return ctx->u.tc_filter.src_port_min;
1598}
1599
1600
1601uint16_t
1602dplane_ctx_tc_filter_get_src_port_max(const struct zebra_dplane_ctx *ctx)
449a30ed
SY
1603{
1604 DPLANE_CTX_VALID(ctx);
1605
c317d3f2 1606 return ctx->u.tc_filter.src_port_max;
449a30ed
SY
1607}
1608
1609const struct prefix *
c317d3f2
SY
1610dplane_ctx_tc_filter_get_dst_ip(const struct zebra_dplane_ctx *ctx)
1611{
1612 DPLANE_CTX_VALID(ctx);
1613
1614 return &ctx->u.tc_filter.dst_ip;
1615}
1616
1617uint16_t
1618dplane_ctx_tc_filter_get_dst_port_min(const struct zebra_dplane_ctx *ctx)
449a30ed
SY
1619{
1620 DPLANE_CTX_VALID(ctx);
1621
c317d3f2 1622 return ctx->u.tc_filter.dst_port_min;
449a30ed
SY
1623}
1624
c317d3f2
SY
1625
1626uint16_t
1627dplane_ctx_tc_filter_get_dst_port_max(const struct zebra_dplane_ctx *ctx)
449a30ed
SY
1628{
1629 DPLANE_CTX_VALID(ctx);
1630
c317d3f2
SY
1631 return ctx->u.tc_filter.dst_port_max;
1632}
1633
1634uint8_t dplane_ctx_tc_filter_get_ip_proto(const struct zebra_dplane_ctx *ctx)
1635{
1636 DPLANE_CTX_VALID(ctx);
1637
1638 return ctx->u.tc_filter.ip_proto;
1639}
1640
1641uint8_t dplane_ctx_tc_filter_get_dsfield(const struct zebra_dplane_ctx *ctx)
1642{
1643 DPLANE_CTX_VALID(ctx);
1644
1645 return ctx->u.tc_filter.dsfield;
1646}
1647
1648uint8_t
1649dplane_ctx_tc_filter_get_dsfield_mask(const struct zebra_dplane_ctx *ctx)
1650{
1651 DPLANE_CTX_VALID(ctx);
1652
1653 return ctx->u.tc_filter.dsfield_mask;
1654}
1655
1656uint32_t dplane_ctx_tc_filter_get_classid(const struct zebra_dplane_ctx *ctx)
1657{
1658 DPLANE_CTX_VALID(ctx);
1659
1660 return ctx->u.tc_filter.classid;
449a30ed
SY
1661}
1662
e1f3a8eb
MS
1663/*
1664 * Set the nexthops associated with a context: note that processing code
1665 * may well expect that nexthops are in canonical (sorted) order, so we
1666 * will enforce that here.
1667 */
593e4eb1
MS
1668void dplane_ctx_set_nexthops(struct zebra_dplane_ctx *ctx, struct nexthop *nh)
1669{
1670 DPLANE_CTX_VALID(ctx);
1671
1672 if (ctx->u.rinfo.zd_ng.nexthop) {
1673 nexthops_free(ctx->u.rinfo.zd_ng.nexthop);
1674 ctx->u.rinfo.zd_ng.nexthop = NULL;
1675 }
e1f3a8eb 1676 nexthop_group_copy_nh_sorted(&(ctx->u.rinfo.zd_ng), nh);
593e4eb1
MS
1677}
1678
928f94a9
MS
1679/*
1680 * Set the list of backup nexthops; their ordering is preserved (they're not
1681 * re-sorted.)
1682 */
1683void dplane_ctx_set_backup_nhg(struct zebra_dplane_ctx *ctx,
1684 const struct nexthop_group *nhg)
1685{
1686 struct nexthop *nh, *last_nh, *nexthop;
1687
1688 DPLANE_CTX_VALID(ctx);
1689
1690 if (ctx->u.rinfo.backup_ng.nexthop) {
1691 nexthops_free(ctx->u.rinfo.backup_ng.nexthop);
1692 ctx->u.rinfo.backup_ng.nexthop = NULL;
1693 }
1694
1695 last_nh = NULL;
1696
1697 /* Be careful to preserve the order of the backup list */
1698 for (nh = nhg->nexthop; nh; nh = nh->next) {
1699 nexthop = nexthop_dup(nh, NULL);
1700
1701 if (last_nh)
1702 NEXTHOP_APPEND(last_nh, nexthop);
1703 else
1704 ctx->u.rinfo.backup_ng.nexthop = nexthop;
1705
1706 last_nh = nexthop;
1707 }
1708}
1709
1d48702e
MS
1710uint32_t dplane_ctx_get_nhg_id(const struct zebra_dplane_ctx *ctx)
1711{
1712 DPLANE_CTX_VALID(ctx);
1713 return ctx->u.rinfo.zd_nhg_id;
1714}
1715
25779064
MS
1716const struct nexthop_group *dplane_ctx_get_ng(
1717 const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1718{
1719 DPLANE_CTX_VALID(ctx);
1720
0f461727 1721 return &(ctx->u.rinfo.zd_ng);
7cdb1a84
MS
1722}
1723
1d48702e
MS
1724const struct nexthop_group *
1725dplane_ctx_get_backup_ng(const struct zebra_dplane_ctx *ctx)
1726{
1727 DPLANE_CTX_VALID(ctx);
1728
1729 return &(ctx->u.rinfo.backup_ng);
1730}
1731
1732const struct nexthop_group *
1733dplane_ctx_get_old_ng(const struct zebra_dplane_ctx *ctx)
01ce7cba
MS
1734{
1735 DPLANE_CTX_VALID(ctx);
1736
0f461727 1737 return &(ctx->u.rinfo.zd_old_ng);
01ce7cba
MS
1738}
1739
1d48702e
MS
1740const struct nexthop_group *
1741dplane_ctx_get_old_backup_ng(const struct zebra_dplane_ctx *ctx)
1742{
1743 DPLANE_CTX_VALID(ctx);
1744
1745 return &(ctx->u.rinfo.old_backup_ng);
1746}
1747
25779064
MS
1748const struct zebra_dplane_info *dplane_ctx_get_ns(
1749 const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1750{
1751 DPLANE_CTX_VALID(ctx);
1752
5709131c 1753 return &(ctx->zd_ns_info);
7cdb1a84
MS
1754}
1755
d4000d7b
DS
1756int dplane_ctx_get_ns_sock(const struct zebra_dplane_ctx *ctx)
1757{
1758 DPLANE_CTX_VALID(ctx);
1759
2cf7651f 1760#ifdef HAVE_NETLINK
d4000d7b 1761 return ctx->zd_ns_info.sock;
2cf7651f
DS
1762#else
1763 return -1;
1764#endif
d4000d7b
DS
1765}
1766
f820d025 1767/* Accessors for nexthop information */
0c8215cb
SW
1768uint32_t dplane_ctx_get_nhe_id(const struct zebra_dplane_ctx *ctx)
1769{
1770 DPLANE_CTX_VALID(ctx);
1771 return ctx->u.rinfo.nhe.id;
1772}
1773
df3cef24
DS
1774uint32_t dplane_ctx_get_old_nhe_id(const struct zebra_dplane_ctx *ctx)
1775{
1776 DPLANE_CTX_VALID(ctx);
1777 return ctx->u.rinfo.nhe.old_id;
1778}
1779
0c8215cb
SW
1780afi_t dplane_ctx_get_nhe_afi(const struct zebra_dplane_ctx *ctx)
1781{
1782 DPLANE_CTX_VALID(ctx);
1783 return ctx->u.rinfo.nhe.afi;
1784}
1785
1786vrf_id_t dplane_ctx_get_nhe_vrf_id(const struct zebra_dplane_ctx *ctx)
f820d025
SW
1787{
1788 DPLANE_CTX_VALID(ctx);
0c8215cb
SW
1789 return ctx->u.rinfo.nhe.vrf_id;
1790}
1791
38e40db1 1792int dplane_ctx_get_nhe_type(const struct zebra_dplane_ctx *ctx)
0c8215cb
SW
1793{
1794 DPLANE_CTX_VALID(ctx);
38e40db1 1795 return ctx->u.rinfo.nhe.type;
0c8215cb
SW
1796}
1797
1798const struct nexthop_group *
1799dplane_ctx_get_nhe_ng(const struct zebra_dplane_ctx *ctx)
1800{
1801 DPLANE_CTX_VALID(ctx);
1802 return &(ctx->u.rinfo.nhe.ng);
1803}
1804
e22e8001
SW
1805const struct nh_grp *
1806dplane_ctx_get_nhe_nh_grp(const struct zebra_dplane_ctx *ctx)
0c8215cb
SW
1807{
1808 DPLANE_CTX_VALID(ctx);
e22e8001 1809 return ctx->u.rinfo.nhe.nh_grp;
0c8215cb
SW
1810}
1811
e22e8001 1812uint8_t dplane_ctx_get_nhe_nh_grp_count(const struct zebra_dplane_ctx *ctx)
0c8215cb
SW
1813{
1814 DPLANE_CTX_VALID(ctx);
e22e8001 1815 return ctx->u.rinfo.nhe.nh_grp_count;
f820d025
SW
1816}
1817
0f461727
MS
1818/* Accessors for LSP information */
1819
1820mpls_label_t dplane_ctx_get_in_label(const struct zebra_dplane_ctx *ctx)
1821{
1822 DPLANE_CTX_VALID(ctx);
1823
1824 return ctx->u.lsp.ile.in_label;
1825}
1826
3ab54059
MS
1827void dplane_ctx_set_in_label(struct zebra_dplane_ctx *ctx, mpls_label_t label)
1828{
1829 DPLANE_CTX_VALID(ctx);
1830
1831 ctx->u.lsp.ile.in_label = label;
1832}
1833
0f461727
MS
1834uint8_t dplane_ctx_get_addr_family(const struct zebra_dplane_ctx *ctx)
1835{
1836 DPLANE_CTX_VALID(ctx);
1837
1838 return ctx->u.lsp.addr_family;
1839}
1840
3ab54059
MS
1841void dplane_ctx_set_addr_family(struct zebra_dplane_ctx *ctx,
1842 uint8_t family)
1843{
1844 DPLANE_CTX_VALID(ctx);
1845
1846 ctx->u.lsp.addr_family = family;
1847}
1848
0f461727
MS
1849uint32_t dplane_ctx_get_lsp_flags(const struct zebra_dplane_ctx *ctx)
1850{
1851 DPLANE_CTX_VALID(ctx);
1852
1853 return ctx->u.lsp.flags;
1854}
1855
3ab54059
MS
1856void dplane_ctx_set_lsp_flags(struct zebra_dplane_ctx *ctx,
1857 uint32_t flags)
1858{
1859 DPLANE_CTX_VALID(ctx);
1860
1861 ctx->u.lsp.flags = flags;
1862}
1863
ee70f629
MS
1864const struct nhlfe_list_head *dplane_ctx_get_nhlfe_list(
1865 const struct zebra_dplane_ctx *ctx)
0f461727
MS
1866{
1867 DPLANE_CTX_VALID(ctx);
ee70f629 1868 return &(ctx->u.lsp.nhlfe_list);
0f461727
MS
1869}
1870
cd4bb96f
MS
1871const struct nhlfe_list_head *dplane_ctx_get_backup_nhlfe_list(
1872 const struct zebra_dplane_ctx *ctx)
1873{
1874 DPLANE_CTX_VALID(ctx);
1875 return &(ctx->u.lsp.backup_nhlfe_list);
1876}
1877
f2595bd5
DS
1878struct zebra_nhlfe *dplane_ctx_add_nhlfe(struct zebra_dplane_ctx *ctx,
1879 enum lsp_types_t lsp_type,
1880 enum nexthop_types_t nh_type,
1881 const union g_addr *gate,
1882 ifindex_t ifindex, uint8_t num_labels,
1883 mpls_label_t *out_labels)
3ab54059 1884{
f2595bd5 1885 struct zebra_nhlfe *nhlfe;
3ab54059
MS
1886
1887 DPLANE_CTX_VALID(ctx);
1888
1889 nhlfe = zebra_mpls_lsp_add_nhlfe(&(ctx->u.lsp),
1890 lsp_type, nh_type, gate,
5065db0a 1891 ifindex, num_labels, out_labels);
3ab54059
MS
1892
1893 return nhlfe;
1894}
1895
f2595bd5
DS
1896struct zebra_nhlfe *dplane_ctx_add_backup_nhlfe(
1897 struct zebra_dplane_ctx *ctx, enum lsp_types_t lsp_type,
1898 enum nexthop_types_t nh_type, const union g_addr *gate,
1899 ifindex_t ifindex, uint8_t num_labels, mpls_label_t *out_labels)
cd4bb96f 1900{
f2595bd5 1901 struct zebra_nhlfe *nhlfe;
cd4bb96f
MS
1902
1903 DPLANE_CTX_VALID(ctx);
1904
1905 nhlfe = zebra_mpls_lsp_add_backup_nhlfe(&(ctx->u.lsp),
1906 lsp_type, nh_type, gate,
1907 ifindex, num_labels,
1908 out_labels);
1909
1910 return nhlfe;
1911}
1912
f2595bd5 1913const struct zebra_nhlfe *
81793ac1 1914dplane_ctx_get_best_nhlfe(const struct zebra_dplane_ctx *ctx)
0f461727
MS
1915{
1916 DPLANE_CTX_VALID(ctx);
1917
1918 return ctx->u.lsp.best_nhlfe;
1919}
1920
f2595bd5 1921const struct zebra_nhlfe *
3ab54059 1922dplane_ctx_set_best_nhlfe(struct zebra_dplane_ctx *ctx,
f2595bd5 1923 struct zebra_nhlfe *nhlfe)
3ab54059
MS
1924{
1925 DPLANE_CTX_VALID(ctx);
1926
1927 ctx->u.lsp.best_nhlfe = nhlfe;
1928 return ctx->u.lsp.best_nhlfe;
1929}
1930
0f461727
MS
1931uint32_t dplane_ctx_get_lsp_num_ecmp(const struct zebra_dplane_ctx *ctx)
1932{
1933 DPLANE_CTX_VALID(ctx);
1934
1935 return ctx->u.lsp.num_ecmp;
1936}
1937
d613b8e1
MS
1938mpls_label_t dplane_ctx_get_pw_local_label(const struct zebra_dplane_ctx *ctx)
1939{
1940 DPLANE_CTX_VALID(ctx);
1941
1942 return ctx->u.pw.local_label;
1943}
1944
1945mpls_label_t dplane_ctx_get_pw_remote_label(const struct zebra_dplane_ctx *ctx)
1946{
1947 DPLANE_CTX_VALID(ctx);
1948
1949 return ctx->u.pw.remote_label;
1950}
1951
1952int dplane_ctx_get_pw_type(const struct zebra_dplane_ctx *ctx)
1953{
1954 DPLANE_CTX_VALID(ctx);
1955
1956 return ctx->u.pw.type;
1957}
1958
1959int dplane_ctx_get_pw_af(const struct zebra_dplane_ctx *ctx)
1960{
1961 DPLANE_CTX_VALID(ctx);
1962
1963 return ctx->u.pw.af;
1964}
1965
1966uint32_t dplane_ctx_get_pw_flags(const struct zebra_dplane_ctx *ctx)
1967{
1968 DPLANE_CTX_VALID(ctx);
1969
1970 return ctx->u.pw.flags;
1971}
1972
1973int dplane_ctx_get_pw_status(const struct zebra_dplane_ctx *ctx)
1974{
1975 DPLANE_CTX_VALID(ctx);
1976
1977 return ctx->u.pw.status;
1978}
1979
fd563cc7
KS
1980void dplane_ctx_set_pw_status(struct zebra_dplane_ctx *ctx, int status)
1981{
1982 DPLANE_CTX_VALID(ctx);
1983
1984 ctx->u.pw.status = status;
1985}
1986
16d69787 1987const union g_addr *dplane_ctx_get_pw_dest(
d613b8e1
MS
1988 const struct zebra_dplane_ctx *ctx)
1989{
1990 DPLANE_CTX_VALID(ctx);
1991
16d69787 1992 return &(ctx->u.pw.dest);
d613b8e1
MS
1993}
1994
1995const union pw_protocol_fields *dplane_ctx_get_pw_proto(
1996 const struct zebra_dplane_ctx *ctx)
1997{
1998 DPLANE_CTX_VALID(ctx);
1999
2000 return &(ctx->u.pw.fields);
2001}
2002
09cd307c
MS
2003const struct nexthop_group *
2004dplane_ctx_get_pw_nhg(const struct zebra_dplane_ctx *ctx)
2005{
2006 DPLANE_CTX_VALID(ctx);
2007
072b487b
MS
2008 return &(ctx->u.pw.fib_nhg);
2009}
2010
2011const struct nexthop_group *
2012dplane_ctx_get_pw_primary_nhg(const struct zebra_dplane_ctx *ctx)
2013{
2014 DPLANE_CTX_VALID(ctx);
2015
2016 return &(ctx->u.pw.primary_nhg);
2017}
2018
2019const struct nexthop_group *
2020dplane_ctx_get_pw_backup_nhg(const struct zebra_dplane_ctx *ctx)
2021{
2022 DPLANE_CTX_VALID(ctx);
2023
2024 return &(ctx->u.pw.backup_nhg);
09cd307c
MS
2025}
2026
a4a4802a 2027/* Accessors for interface information */
a4a4802a
MS
2028uint32_t dplane_ctx_get_intf_metric(const struct zebra_dplane_ctx *ctx)
2029{
2030 DPLANE_CTX_VALID(ctx);
2031
2032 return ctx->u.intf.metric;
2033}
2034
971bad84
MS
2035void dplane_ctx_set_intf_metric(struct zebra_dplane_ctx *ctx, uint32_t metric)
2036{
2037 DPLANE_CTX_VALID(ctx);
2038
2039 ctx->u.intf.metric = metric;
2040}
2041
ab465d24 2042uint32_t dplane_ctx_get_intf_pd_reason_val(const struct zebra_dplane_ctx *ctx)
5d414138
SW
2043{
2044 DPLANE_CTX_VALID(ctx);
2045
ab465d24 2046 return ctx->u.intf.pd_reason_val;
5d414138
SW
2047}
2048
ab465d24 2049void dplane_ctx_set_intf_pd_reason_val(struct zebra_dplane_ctx *ctx, bool val)
5d414138
SW
2050{
2051 DPLANE_CTX_VALID(ctx);
2052
ab465d24 2053 ctx->u.intf.pd_reason_val = val;
5d414138
SW
2054}
2055
2056bool dplane_ctx_intf_is_protodown(const struct zebra_dplane_ctx *ctx)
2057{
2058 DPLANE_CTX_VALID(ctx);
2059
2060 return ctx->u.intf.protodown;
2061}
2062
a4a4802a
MS
2063/* Is interface addr p2p? */
2064bool dplane_ctx_intf_is_connected(const struct zebra_dplane_ctx *ctx)
2065{
2066 DPLANE_CTX_VALID(ctx);
2067
2068 return (ctx->u.intf.flags & DPLANE_INTF_CONNECTED);
2069}
2070
2071bool dplane_ctx_intf_is_secondary(const struct zebra_dplane_ctx *ctx)
2072{
2073 DPLANE_CTX_VALID(ctx);
2074
2075 return (ctx->u.intf.flags & DPLANE_INTF_SECONDARY);
2076}
2077
64168803
MS
2078bool dplane_ctx_intf_is_broadcast(const struct zebra_dplane_ctx *ctx)
2079{
2080 DPLANE_CTX_VALID(ctx);
2081
2082 return (ctx->u.intf.flags & DPLANE_INTF_BROADCAST);
2083}
2084
971bad84
MS
2085void dplane_ctx_intf_set_connected(struct zebra_dplane_ctx *ctx)
2086{
2087 DPLANE_CTX_VALID(ctx);
2088
2089 ctx->u.intf.flags |= DPLANE_INTF_CONNECTED;
2090}
2091
2092void dplane_ctx_intf_set_secondary(struct zebra_dplane_ctx *ctx)
2093{
2094 DPLANE_CTX_VALID(ctx);
2095
2096 ctx->u.intf.flags |= DPLANE_INTF_SECONDARY;
2097}
2098
2099void dplane_ctx_intf_set_broadcast(struct zebra_dplane_ctx *ctx)
2100{
2101 DPLANE_CTX_VALID(ctx);
2102
2103 ctx->u.intf.flags |= DPLANE_INTF_BROADCAST;
2104}
2105
a4a4802a
MS
2106const struct prefix *dplane_ctx_get_intf_addr(
2107 const struct zebra_dplane_ctx *ctx)
2108{
2109 DPLANE_CTX_VALID(ctx);
2110
2111 return &(ctx->u.intf.prefix);
2112}
2113
971bad84
MS
2114void dplane_ctx_set_intf_addr(struct zebra_dplane_ctx *ctx,
2115 const struct prefix *p)
2116{
2117 DPLANE_CTX_VALID(ctx);
2118
2119 prefix_copy(&(ctx->u.intf.prefix), p);
2120}
2121
a4a4802a
MS
2122bool dplane_ctx_intf_has_dest(const struct zebra_dplane_ctx *ctx)
2123{
2124 DPLANE_CTX_VALID(ctx);
2125
2126 return (ctx->u.intf.flags & DPLANE_INTF_HAS_DEST);
2127}
2128
2129const struct prefix *dplane_ctx_get_intf_dest(
2130 const struct zebra_dplane_ctx *ctx)
2131{
2132 DPLANE_CTX_VALID(ctx);
2133
971bad84
MS
2134 return &(ctx->u.intf.dest_prefix);
2135}
2136
2137void dplane_ctx_set_intf_dest(struct zebra_dplane_ctx *ctx,
2138 const struct prefix *p)
2139{
2140 DPLANE_CTX_VALID(ctx);
2141
2142 prefix_copy(&(ctx->u.intf.dest_prefix), p);
a4a4802a
MS
2143}
2144
2145bool dplane_ctx_intf_has_label(const struct zebra_dplane_ctx *ctx)
2146{
2147 DPLANE_CTX_VALID(ctx);
2148
2149 return (ctx->u.intf.flags & DPLANE_INTF_HAS_LABEL);
2150}
2151
2152const char *dplane_ctx_get_intf_label(const struct zebra_dplane_ctx *ctx)
2153{
2154 DPLANE_CTX_VALID(ctx);
2155
2156 return ctx->u.intf.label;
2157}
2158
971bad84
MS
2159void dplane_ctx_set_intf_label(struct zebra_dplane_ctx *ctx, const char *label)
2160{
2161 size_t len;
2162
2163 DPLANE_CTX_VALID(ctx);
2164
2165 if (ctx->u.intf.label && ctx->u.intf.label != ctx->u.intf.label_buf)
b6b6e59c 2166 XFREE(MTYPE_DP_CTX, ctx->u.intf.label);
971bad84
MS
2167
2168 ctx->u.intf.label = NULL;
2169
2170 if (label) {
2171 ctx->u.intf.flags |= DPLANE_INTF_HAS_LABEL;
2172
2173 /* Use embedded buffer if it's adequate; else allocate. */
2174 len = strlen(label);
2175
2176 if (len < sizeof(ctx->u.intf.label_buf)) {
2177 strlcpy(ctx->u.intf.label_buf, label,
2178 sizeof(ctx->u.intf.label_buf));
2179 ctx->u.intf.label = ctx->u.intf.label_buf;
2180 } else {
b6b6e59c 2181 ctx->u.intf.label = XSTRDUP(MTYPE_DP_CTX, label);
971bad84
MS
2182 }
2183 } else {
2184 ctx->u.intf.flags &= ~DPLANE_INTF_HAS_LABEL;
2185 }
2186}
2187
7597ac7b
MS
2188/* Accessors for MAC information */
2189vlanid_t dplane_ctx_mac_get_vlan(const struct zebra_dplane_ctx *ctx)
2190{
2191 DPLANE_CTX_VALID(ctx);
2192 return ctx->u.macinfo.vid;
2193}
2194
2195bool dplane_ctx_mac_is_sticky(const struct zebra_dplane_ctx *ctx)
2196{
2197 DPLANE_CTX_VALID(ctx);
2198 return ctx->u.macinfo.is_sticky;
2199}
2200
506efd37
AK
2201uint32_t dplane_ctx_mac_get_nhg_id(const struct zebra_dplane_ctx *ctx)
2202{
2203 DPLANE_CTX_VALID(ctx);
2204 return ctx->u.macinfo.nhg_id;
2205}
2206
f188e68e
AK
2207uint32_t dplane_ctx_mac_get_update_flags(const struct zebra_dplane_ctx *ctx)
2208{
2209 DPLANE_CTX_VALID(ctx);
2210 return ctx->u.macinfo.update_flags;
2211}
2212
7597ac7b
MS
2213const struct ethaddr *dplane_ctx_mac_get_addr(
2214 const struct zebra_dplane_ctx *ctx)
2215{
2216 DPLANE_CTX_VALID(ctx);
2217 return &(ctx->u.macinfo.mac);
2218}
2219
b95ce8fa
SR
2220vni_t dplane_ctx_mac_get_vni(const struct zebra_dplane_ctx *ctx)
2221{
2222 DPLANE_CTX_VALID(ctx);
2223 return ctx->u.macinfo.vni;
2224}
2225
7597ac7b
MS
2226const struct in_addr *dplane_ctx_mac_get_vtep_ip(
2227 const struct zebra_dplane_ctx *ctx)
2228{
2229 DPLANE_CTX_VALID(ctx);
2230 return &(ctx->u.macinfo.vtep_ip);
2231}
2232
478566d6
MS
2233ifindex_t dplane_ctx_mac_get_br_ifindex(const struct zebra_dplane_ctx *ctx)
2234{
2235 DPLANE_CTX_VALID(ctx);
2236 return ctx->u.macinfo.br_ifindex;
2237}
2238
931fa60c
MS
2239/* Accessors for neighbor information */
2240const struct ipaddr *dplane_ctx_neigh_get_ipaddr(
2241 const struct zebra_dplane_ctx *ctx)
2242{
2243 DPLANE_CTX_VALID(ctx);
2244 return &(ctx->u.neigh.ip_addr);
2245}
2246
0a27a2fe
PG
2247const struct ipaddr *
2248dplane_ctx_neigh_get_link_ip(const struct zebra_dplane_ctx *ctx)
2249{
2250 DPLANE_CTX_VALID(ctx);
2251 return &(ctx->u.neigh.link.ip_addr);
2252}
2253
931fa60c
MS
2254const struct ethaddr *dplane_ctx_neigh_get_mac(
2255 const struct zebra_dplane_ctx *ctx)
2256{
2257 DPLANE_CTX_VALID(ctx);
0a27a2fe 2258 return &(ctx->u.neigh.link.mac);
931fa60c
MS
2259}
2260
b95ce8fa
SR
2261vni_t dplane_ctx_neigh_get_vni(const struct zebra_dplane_ctx *ctx)
2262{
2263 DPLANE_CTX_VALID(ctx);
2264 return ctx->u.neigh.vni;
2265}
2266
931fa60c
MS
2267uint32_t dplane_ctx_neigh_get_flags(const struct zebra_dplane_ctx *ctx)
2268{
2269 DPLANE_CTX_VALID(ctx);
2270 return ctx->u.neigh.flags;
2271}
2272
2273uint16_t dplane_ctx_neigh_get_state(const struct zebra_dplane_ctx *ctx)
2274{
2275 DPLANE_CTX_VALID(ctx);
2276 return ctx->u.neigh.state;
2277}
2278
f188e68e
AK
2279uint32_t dplane_ctx_neigh_get_update_flags(const struct zebra_dplane_ctx *ctx)
2280{
2281 DPLANE_CTX_VALID(ctx);
2282 return ctx->u.neigh.update_flags;
2283}
2284
62b4b7e4
PG
2285/* Accessor for GRE set */
2286uint32_t
2287dplane_ctx_gre_get_link_ifindex(const struct zebra_dplane_ctx *ctx)
2288{
2289 DPLANE_CTX_VALID(ctx);
2290
2291 return ctx->u.gre.link_ifindex;
2292}
2293
db51f0cd
PG
2294unsigned int
2295dplane_ctx_gre_get_mtu(const struct zebra_dplane_ctx *ctx)
2296{
2297 DPLANE_CTX_VALID(ctx);
2298
2299 return ctx->u.gre.mtu;
2300}
2301
e3d3fa06
PG
2302const struct zebra_l2info_gre *
2303dplane_ctx_gre_get_info(const struct zebra_dplane_ctx *ctx)
2304{
2305 DPLANE_CTX_VALID(ctx);
2306
2307 return &ctx->u.gre.info;
2308}
2309
60d8d43b
JU
2310/* Accessors for PBR rule information */
2311int dplane_ctx_rule_get_sock(const struct zebra_dplane_ctx *ctx)
2312{
2313 DPLANE_CTX_VALID(ctx);
2314
2315 return ctx->u.rule.sock;
2316}
2317
58a1d249
DS
2318const char *dplane_ctx_rule_get_ifname(const struct zebra_dplane_ctx *ctx)
2319{
2320 DPLANE_CTX_VALID(ctx);
2321
2322 return ctx->u.rule.new.ifname;
2323}
2324
60d8d43b
JU
2325int dplane_ctx_rule_get_unique(const struct zebra_dplane_ctx *ctx)
2326{
2327 DPLANE_CTX_VALID(ctx);
2328
2329 return ctx->u.rule.unique;
2330}
2331
2332int dplane_ctx_rule_get_seq(const struct zebra_dplane_ctx *ctx)
2333{
2334 DPLANE_CTX_VALID(ctx);
2335
2336 return ctx->u.rule.seq;
2337}
2338
2339uint32_t dplane_ctx_rule_get_priority(const struct zebra_dplane_ctx *ctx)
2340{
2341 DPLANE_CTX_VALID(ctx);
2342
2343 return ctx->u.rule.new.priority;
2344}
2345
2346uint32_t dplane_ctx_rule_get_old_priority(const struct zebra_dplane_ctx *ctx)
2347{
2348 DPLANE_CTX_VALID(ctx);
2349
2350 return ctx->u.rule.old.priority;
2351}
2352
2353uint32_t dplane_ctx_rule_get_table(const struct zebra_dplane_ctx *ctx)
2354{
2355 DPLANE_CTX_VALID(ctx);
2356
2357 return ctx->u.rule.new.table;
2358}
2359
2360uint32_t dplane_ctx_rule_get_old_table(const struct zebra_dplane_ctx *ctx)
2361{
2362 DPLANE_CTX_VALID(ctx);
2363
2364 return ctx->u.rule.old.table;
2365}
2366
2367uint32_t dplane_ctx_rule_get_filter_bm(const struct zebra_dplane_ctx *ctx)
2368{
2369 DPLANE_CTX_VALID(ctx);
2370
2371 return ctx->u.rule.new.filter_bm;
2372}
2373
2374uint32_t dplane_ctx_rule_get_old_filter_bm(const struct zebra_dplane_ctx *ctx)
2375{
2376 DPLANE_CTX_VALID(ctx);
2377
2378 return ctx->u.rule.old.filter_bm;
2379}
2380
2381uint32_t dplane_ctx_rule_get_fwmark(const struct zebra_dplane_ctx *ctx)
2382{
2383 DPLANE_CTX_VALID(ctx);
2384
2385 return ctx->u.rule.new.fwmark;
2386}
2387
2388uint32_t dplane_ctx_rule_get_old_fwmark(const struct zebra_dplane_ctx *ctx)
2389{
2390 DPLANE_CTX_VALID(ctx);
2391
2392 return ctx->u.rule.old.fwmark;
2393}
2394
8ccbc778
DS
2395uint8_t dplane_ctx_rule_get_ipproto(const struct zebra_dplane_ctx *ctx)
2396{
2397 DPLANE_CTX_VALID(ctx);
2398
2399 return ctx->u.rule.new.ip_proto;
2400}
2401
2402uint8_t dplane_ctx_rule_get_old_ipproto(const struct zebra_dplane_ctx *ctx)
2403{
2404 DPLANE_CTX_VALID(ctx);
2405
2406 return ctx->u.rule.old.ip_proto;
2407}
2408
9898473f
AK
2409uint16_t dplane_ctx_rule_get_src_port(const struct zebra_dplane_ctx *ctx)
2410{
2411 DPLANE_CTX_VALID(ctx);
2412
2413 return ctx->u.rule.new.src_port;
2414}
2415
2416uint16_t dplane_ctx_rule_get_old_src_port(const struct zebra_dplane_ctx *ctx)
2417{
2418 DPLANE_CTX_VALID(ctx);
2419
2420 return ctx->u.rule.old.src_port;
2421}
2422
2423uint16_t dplane_ctx_rule_get_dst_port(const struct zebra_dplane_ctx *ctx)
2424{
2425 DPLANE_CTX_VALID(ctx);
2426
2427 return ctx->u.rule.new.dst_port;
2428}
2429
2430uint16_t dplane_ctx_rule_get_old_dst_port(const struct zebra_dplane_ctx *ctx)
2431{
2432 DPLANE_CTX_VALID(ctx);
2433
2434 return ctx->u.rule.old.dst_port;
2435}
2436
01f23aff
WC
2437uint8_t dplane_ctx_rule_get_dsfield(const struct zebra_dplane_ctx *ctx)
2438{
2439 DPLANE_CTX_VALID(ctx);
2440
2441 return ctx->u.rule.new.dsfield;
2442}
2443
2444uint8_t dplane_ctx_rule_get_old_dsfield(const struct zebra_dplane_ctx *ctx)
2445{
2446 DPLANE_CTX_VALID(ctx);
2447
2448 return ctx->u.rule.old.dsfield;
2449}
2450
60d8d43b
JU
2451const struct prefix *
2452dplane_ctx_rule_get_src_ip(const struct zebra_dplane_ctx *ctx)
2453{
2454 DPLANE_CTX_VALID(ctx);
2455
2456 return &(ctx->u.rule.new.src_ip);
2457}
2458
2459const struct prefix *
2460dplane_ctx_rule_get_old_src_ip(const struct zebra_dplane_ctx *ctx)
2461{
2462 DPLANE_CTX_VALID(ctx);
2463
2464 return &(ctx->u.rule.old.src_ip);
2465}
2466
2467const struct prefix *
2468dplane_ctx_rule_get_dst_ip(const struct zebra_dplane_ctx *ctx)
2469{
2470 DPLANE_CTX_VALID(ctx);
2471
2472 return &(ctx->u.rule.new.dst_ip);
2473}
2474
2475const struct prefix *
2476dplane_ctx_rule_get_old_dst_ip(const struct zebra_dplane_ctx *ctx)
2477{
2478 DPLANE_CTX_VALID(ctx);
2479
2480 return &(ctx->u.rule.old.dst_ip);
2481}
2482
c60522f7
AK
2483uint32_t dplane_ctx_get_br_port_flags(const struct zebra_dplane_ctx *ctx)
2484{
2485 DPLANE_CTX_VALID(ctx);
2486
2487 return ctx->u.br_port.flags;
2488}
2489
2490uint32_t
2491dplane_ctx_get_br_port_sph_filter_cnt(const struct zebra_dplane_ctx *ctx)
2492{
2493 DPLANE_CTX_VALID(ctx);
2494
2495 return ctx->u.br_port.sph_filter_cnt;
2496}
2497
2498const struct in_addr *
2499dplane_ctx_get_br_port_sph_filters(const struct zebra_dplane_ctx *ctx)
2500{
2501 DPLANE_CTX_VALID(ctx);
2502
2503 return ctx->u.br_port.sph_filters;
2504}
2505
2506uint32_t
2507dplane_ctx_get_br_port_backup_nhg_id(const struct zebra_dplane_ctx *ctx)
2508{
2509 DPLANE_CTX_VALID(ctx);
2510
2511 return ctx->u.br_port.backup_nhg_id;
2512}
2513
5162e000 2514/* Accessors for PBR iptable information */
8d78e148
DS
2515void dplane_ctx_get_pbr_iptable(const struct zebra_dplane_ctx *ctx,
2516 struct zebra_pbr_iptable *table)
5162e000
PG
2517{
2518 DPLANE_CTX_VALID(ctx);
2519
2520 memcpy(table, &ctx->u.iptable, sizeof(struct zebra_pbr_iptable));
5162e000
PG
2521}
2522
8249f96a 2523void dplane_ctx_get_pbr_ipset(const struct zebra_dplane_ctx *ctx,
ef524230
PG
2524 struct zebra_pbr_ipset *ipset)
2525{
2526 DPLANE_CTX_VALID(ctx);
2527
8249f96a
DS
2528 assert(ipset);
2529
ef524230
PG
2530 if (ctx->zd_op == DPLANE_OP_IPSET_ENTRY_ADD ||
2531 ctx->zd_op == DPLANE_OP_IPSET_ENTRY_DELETE) {
2532 memset(ipset, 0, sizeof(struct zebra_pbr_ipset));
2533 ipset->type = ctx->u.ipset_entry.info.type;
85b02353 2534 ipset->family = ctx->u.ipset_entry.info.family;
ef524230
PG
2535 memcpy(&ipset->ipset_name, &ctx->u.ipset_entry.info.ipset_name,
2536 ZEBRA_IPSET_NAME_SIZE);
2537 } else
2538 memcpy(ipset, &ctx->u.ipset, sizeof(struct zebra_pbr_ipset));
ef524230
PG
2539}
2540
f284c132 2541void dplane_ctx_get_pbr_ipset_entry(const struct zebra_dplane_ctx *ctx,
ef524230
PG
2542 struct zebra_pbr_ipset_entry *entry)
2543{
2544 DPLANE_CTX_VALID(ctx);
2545
f284c132
DS
2546 assert(entry);
2547
ef524230 2548 memcpy(entry, &ctx->u.ipset_entry.entry, sizeof(struct zebra_pbr_ipset_entry));
ef524230
PG
2549}
2550
9898473f
AK
2551const struct ethaddr *
2552dplane_ctx_rule_get_smac(const struct zebra_dplane_ctx *ctx)
2553{
2554 DPLANE_CTX_VALID(ctx);
2555
2556 return &(ctx->u.rule.new.smac);
2557}
2558
2559const struct ethaddr *
2560dplane_ctx_rule_get_dmac(const struct zebra_dplane_ctx *ctx)
2561{
2562 DPLANE_CTX_VALID(ctx);
2563
2564 return &(ctx->u.rule.new.dmac);
2565}
2566
2567int dplane_ctx_rule_get_out_ifindex(const struct zebra_dplane_ctx *ctx)
2568{
2569 DPLANE_CTX_VALID(ctx);
2570
2571 return ctx->u.rule.new.out_ifindex;
2572}
2573
2574intptr_t dplane_ctx_rule_get_old_dp_flow_ptr(const struct zebra_dplane_ctx *ctx)
2575{
2576 DPLANE_CTX_VALID(ctx);
2577
2578 return ctx->u.rule.old.dp_flow_ptr;
2579}
2580
2581intptr_t dplane_ctx_rule_get_dp_flow_ptr(const struct zebra_dplane_ctx *ctx)
2582{
2583 DPLANE_CTX_VALID(ctx);
2584
2585 return ctx->u.rule.new.dp_flow_ptr;
2586}
2587
2588void dplane_ctx_rule_set_dp_flow_ptr(struct zebra_dplane_ctx *ctx,
2589 intptr_t dp_flow_ptr)
2590{
2591 DPLANE_CTX_VALID(ctx);
2592
2593 ctx->u.rule.new.dp_flow_ptr = dp_flow_ptr;
2594}
2595
7cdb1a84
MS
2596/*
2597 * End of dplane context accessors
2598 */
2599
5917df09
MS
2600/* Optional extra info about interfaces in nexthops - a plugin must enable
2601 * this extra info.
2602 */
2603const struct dplane_intf_extra *
2604dplane_ctx_get_intf_extra(const struct zebra_dplane_ctx *ctx)
2605{
ac96497c
MS
2606 return dplane_intf_extra_list_const_first(
2607 &ctx->u.rinfo.intf_extra_list);
5917df09
MS
2608}
2609
2610const struct dplane_intf_extra *
2611dplane_ctx_intf_extra_next(const struct zebra_dplane_ctx *ctx,
2612 const struct dplane_intf_extra *ptr)
2613{
ac96497c
MS
2614 return dplane_intf_extra_list_const_next(&ctx->u.rinfo.intf_extra_list,
2615 ptr);
5917df09
MS
2616}
2617
2618vrf_id_t dplane_intf_extra_get_vrfid(const struct dplane_intf_extra *ptr)
2619{
2620 return ptr->vrf_id;
2621}
2622
2623uint32_t dplane_intf_extra_get_ifindex(const struct dplane_intf_extra *ptr)
2624{
2625 return ptr->ifindex;
2626}
2627
2628uint32_t dplane_intf_extra_get_flags(const struct dplane_intf_extra *ptr)
2629{
2630 return ptr->flags;
2631}
2632
2633uint32_t dplane_intf_extra_get_status(const struct dplane_intf_extra *ptr)
2634{
2635 return ptr->status;
2636}
2637
728f2017
MS
2638/*
2639 * End of interface extra info accessors
2640 */
2641
e18747a9
PG
2642uint8_t dplane_ctx_neightable_get_family(const struct zebra_dplane_ctx *ctx)
2643{
2644 DPLANE_CTX_VALID(ctx);
2645
2646 return ctx->u.neightable.family;
2647}
2648
2649uint32_t
2650dplane_ctx_neightable_get_app_probes(const struct zebra_dplane_ctx *ctx)
2651{
2652 DPLANE_CTX_VALID(ctx);
2653
2654 return ctx->u.neightable.app_probes;
2655}
2656
2657uint32_t
2658dplane_ctx_neightable_get_ucast_probes(const struct zebra_dplane_ctx *ctx)
2659{
2660 DPLANE_CTX_VALID(ctx);
2661
2662 return ctx->u.neightable.ucast_probes;
2663}
2664
2665uint32_t
2666dplane_ctx_neightable_get_mcast_probes(const struct zebra_dplane_ctx *ctx)
2667{
2668 DPLANE_CTX_VALID(ctx);
2669
2670 return ctx->u.neightable.mcast_probes;
2671}
2672
728f2017
MS
2673enum dplane_netconf_status_e
2674dplane_ctx_get_netconf_mpls(const struct zebra_dplane_ctx *ctx)
2675{
2676 DPLANE_CTX_VALID(ctx);
2677
2678 return ctx->u.netconf.mpls_val;
2679}
2680
2681enum dplane_netconf_status_e
2682dplane_ctx_get_netconf_mcast(const struct zebra_dplane_ctx *ctx)
2683{
2684 DPLANE_CTX_VALID(ctx);
2685
2686 return ctx->u.netconf.mcast_val;
2687}
2688
3689905d
DS
2689enum dplane_netconf_status_e
2690dplane_ctx_get_netconf_linkdown(const struct zebra_dplane_ctx *ctx)
2691{
2692 DPLANE_CTX_VALID(ctx);
2693
2694 return ctx->u.netconf.linkdown_val;
2695}
2696
728f2017
MS
2697void dplane_ctx_set_netconf_mpls(struct zebra_dplane_ctx *ctx,
2698 enum dplane_netconf_status_e val)
2699{
2700 DPLANE_CTX_VALID(ctx);
2701
2702 ctx->u.netconf.mpls_val = val;
2703}
2704
2705void dplane_ctx_set_netconf_mcast(struct zebra_dplane_ctx *ctx,
2706 enum dplane_netconf_status_e val)
2707{
2708 DPLANE_CTX_VALID(ctx);
2709
2710 ctx->u.netconf.mcast_val = val;
2711}
c831033f 2712
3689905d
DS
2713void dplane_ctx_set_netconf_linkdown(struct zebra_dplane_ctx *ctx,
2714 enum dplane_netconf_status_e val)
2715{
2716 DPLANE_CTX_VALID(ctx);
2717
2718 ctx->u.netconf.linkdown_val = val;
2719}
2720
2721
91f16812
MS
2722/*
2723 * Retrieve the limit on the number of pending, unprocessed updates.
2724 */
2725uint32_t dplane_get_in_queue_limit(void)
2726{
2727 return atomic_load_explicit(&zdplane_info.dg_max_queued_updates,
2728 memory_order_relaxed);
2729}
2730
2731/*
2732 * Configure limit on the number of pending, queued updates.
2733 */
2734void dplane_set_in_queue_limit(uint32_t limit, bool set)
2735{
2736 /* Reset to default on 'unset' */
2737 if (!set)
2738 limit = DPLANE_DEFAULT_MAX_QUEUED;
2739
2740 atomic_store_explicit(&zdplane_info.dg_max_queued_updates, limit,
2741 memory_order_relaxed);
2742}
2743
2744/*
2745 * Retrieve the current queue depth of incoming, unprocessed updates
2746 */
2747uint32_t dplane_get_in_queue_len(void)
2748{
2749 return atomic_load_explicit(&zdplane_info.dg_routes_queued,
2750 memory_order_seq_cst);
2751}
2752
cd787a8a
MS
2753/*
2754 * Internal helper that copies information from a zebra ns object; this is
2755 * called in the zebra main pthread context as part of dplane ctx init.
2756 */
2757static void ctx_info_from_zns(struct zebra_dplane_info *ns_info,
2758 struct zebra_ns *zns)
2759{
2760 ns_info->ns_id = zns->ns_id;
2761
2762#if defined(HAVE_NETLINK)
2763 ns_info->is_cmd = true;
2764 ns_info->sock = zns->netlink_dplane_out.sock;
2765 ns_info->seq = zns->netlink_dplane_out.seq;
2766#endif /* NETLINK */
2767}
2768
16c628de
MS
2769/*
2770 * Common dataplane context init with zebra namespace info.
2771 */
2772static int dplane_ctx_ns_init(struct zebra_dplane_ctx *ctx,
2773 struct zebra_ns *zns,
2774 bool is_update)
2775{
cd787a8a 2776 ctx_info_from_zns(&(ctx->zd_ns_info), zns); /* */
16c628de 2777
e3ee55d4
DS
2778 ctx->zd_is_update = is_update;
2779
16c628de
MS
2780#if defined(HAVE_NETLINK)
2781 /* Increment message counter after copying to context struct - may need
2782 * two messages in some 'update' cases.
2783 */
2784 if (is_update)
80dcc388 2785 zns->netlink_dplane_out.seq += 2;
16c628de 2786 else
80dcc388 2787 zns->netlink_dplane_out.seq++;
16c628de
MS
2788#endif /* HAVE_NETLINK */
2789
2790 return AOK;
2791}
2792
f935122e
DS
2793int dplane_ctx_route_init_basic(struct zebra_dplane_ctx *ctx,
2794 enum dplane_op_e op, struct route_entry *re,
2795 const struct prefix *p,
a0e11736 2796 const struct prefix_ipv6 *src_p, afi_t afi,
f935122e 2797 safi_t safi)
7cdb1a84
MS
2798{
2799 int ret = EINVAL;
7cdb1a84 2800
f935122e 2801 if (!ctx || !re)
c7f0429e 2802 return ret;
7cdb1a84 2803
ac96497c 2804 dplane_intf_extra_list_init(&ctx->u.rinfo.intf_extra_list);
5917df09 2805
7cdb1a84 2806 ctx->zd_op = op;
14b0bc8e 2807 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
7cdb1a84 2808
0f461727
MS
2809 ctx->u.rinfo.zd_type = re->type;
2810 ctx->u.rinfo.zd_old_type = re->type;
7cdb1a84 2811
0f461727 2812 prefix_copy(&(ctx->u.rinfo.zd_dest), p);
7cdb1a84 2813
5709131c 2814 if (src_p)
0f461727 2815 prefix_copy(&(ctx->u.rinfo.zd_src), src_p);
5709131c 2816 else
0f461727 2817 memset(&(ctx->u.rinfo.zd_src), 0, sizeof(ctx->u.rinfo.zd_src));
7cdb1a84
MS
2818
2819 ctx->zd_table_id = re->table;
2820
10388e99 2821 ctx->u.rinfo.zd_flags = re->flags;
0f461727
MS
2822 ctx->u.rinfo.zd_metric = re->metric;
2823 ctx->u.rinfo.zd_old_metric = re->metric;
7cdb1a84 2824 ctx->zd_vrf_id = re->vrf_id;
0f461727
MS
2825 ctx->u.rinfo.zd_mtu = re->mtu;
2826 ctx->u.rinfo.zd_nexthop_mtu = re->nexthop_mtu;
2827 ctx->u.rinfo.zd_instance = re->instance;
2828 ctx->u.rinfo.zd_tag = re->tag;
2829 ctx->u.rinfo.zd_old_tag = re->tag;
2830 ctx->u.rinfo.zd_distance = re->distance;
7cdb1a84 2831
f935122e
DS
2832 ctx->u.rinfo.zd_afi = afi;
2833 ctx->u.rinfo.zd_safi = safi;
2834
2835 return AOK;
2836}
2837
2838/*
2839 * Initialize a context block for a route update from zebra data structs.
2840 */
2841int dplane_ctx_route_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
2842 struct route_node *rn, struct route_entry *re)
2843{
2844 int ret = EINVAL;
2845 const struct route_table *table = NULL;
2846 const struct rib_table_info *info;
a0e11736
DS
2847 const struct prefix *p;
2848 const struct prefix_ipv6 *src_p;
f935122e
DS
2849 struct zebra_ns *zns;
2850 struct zebra_vrf *zvrf;
2851 struct nexthop *nexthop;
2852 struct zebra_l3vni *zl3vni;
2853 const struct interface *ifp;
2854 struct dplane_intf_extra *if_extra;
2855
2856 if (!ctx || !rn || !re)
2857 return ret;
2858
2859 /*
2860 * Let's grab the data from the route_node
2861 * so that we can call a helper function
2862 */
2863
2864 /* Prefixes: dest, and optional source */
a0e11736 2865 srcdest_rnode_prefixes(rn, &p, (const struct prefix **)&src_p);
7cdb1a84
MS
2866 table = srcdest_rnode_table(rn);
2867 info = table->info;
2868
f935122e
DS
2869 if (dplane_ctx_route_init_basic(ctx, op, re, p, src_p, info->afi,
2870 info->safi) != AOK)
2871 return ret;
7cdb1a84 2872
7cdb1a84 2873 /* Copy nexthops; recursive info is included too */
0eb97b86 2874 copy_nexthops(&(ctx->u.rinfo.zd_ng.nexthop),
c415d895 2875 re->nhe->nhg.nexthop, NULL);
1d48702e
MS
2876 ctx->u.rinfo.zd_nhg_id = re->nhe->id;
2877
2878 /* Copy backup nexthop info, if present */
2879 if (re->nhe->backup_info && re->nhe->backup_info->nhe) {
2880 copy_nexthops(&(ctx->u.rinfo.backup_ng.nexthop),
2881 re->nhe->backup_info->nhe->nhg.nexthop, NULL);
2882 }
7cdb1a84 2883
f2a0ba3a
RZ
2884 /*
2885 * Ensure that the dplane nexthops' flags are clear and copy
2886 * encapsulation information.
2887 */
2888 for (ALL_NEXTHOPS(ctx->u.rinfo.zd_ng, nexthop)) {
f183e380 2889 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
f183e380 2890
5917df09
MS
2891 /* Optionally capture extra interface info while we're in the
2892 * main zebra pthread - a plugin has to ask for this info.
2893 */
2894 if (dplane_collect_extra_intf_info) {
2895 ifp = if_lookup_by_index(nexthop->ifindex,
2896 nexthop->vrf_id);
2897
2898 if (ifp) {
2899 if_extra = XCALLOC(
2900 MTYPE_DP_INTF,
2901 sizeof(struct dplane_intf_extra));
2902 if_extra->vrf_id = nexthop->vrf_id;
2903 if_extra->ifindex = nexthop->ifindex;
2904 if_extra->flags = ifp->flags;
2905 if_extra->status = ifp->status;
2906
ac96497c
MS
2907 dplane_intf_extra_list_add_tail(
2908 &ctx->u.rinfo.intf_extra_list,
2909 if_extra);
5917df09
MS
2910 }
2911 }
b364e87d
MS
2912
2913 /* Check for available evpn encapsulations. */
5609e70f 2914 if (!CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_EVPN))
b364e87d
MS
2915 continue;
2916
2917 zl3vni = zl3vni_from_vrf(nexthop->vrf_id);
2918 if (zl3vni && is_l3vni_oper_up(zl3vni)) {
2919 nexthop->nh_encap_type = NET_VXLAN;
2920 nexthop->nh_encap.vni = zl3vni->vni;
2921 }
f2a0ba3a
RZ
2922 }
2923
cf363e1b
MS
2924 /* Don't need some info when capturing a system notification */
2925 if (op == DPLANE_OP_SYS_ROUTE_ADD ||
2926 op == DPLANE_OP_SYS_ROUTE_DELETE) {
c7f0429e 2927 return AOK;
cf363e1b
MS
2928 }
2929
2930 /* Extract ns info - can't use pointers to 'core' structs */
2931 zvrf = vrf_info_lookup(re->vrf_id);
2932 zns = zvrf->zns;
2933 dplane_ctx_ns_init(ctx, zns, (op == DPLANE_OP_ROUTE_UPDATE));
2934
6df59152 2935#ifdef HAVE_NETLINK
f924db49 2936 {
1d48702e 2937 struct nhg_hash_entry *nhe = zebra_nhg_resolve(re->nhe);
6df59152 2938
ae9bfa06 2939 ctx->u.rinfo.nhe.id = nhe->id;
df3cef24 2940 ctx->u.rinfo.nhe.old_id = 0;
6df59152 2941 /*
ae9bfa06
SW
2942 * Check if the nhe is installed/queued before doing anything
2943 * with this route.
08c51a38
SW
2944 *
2945 * If its a delete we only use the prefix anyway, so this only
2946 * matters for INSTALL/UPDATE.
6df59152 2947 */
c7f0429e
DS
2948 if (zebra_nhg_kernel_nexthops_enabled() &&
2949 (((op == DPLANE_OP_ROUTE_INSTALL) ||
2950 (op == DPLANE_OP_ROUTE_UPDATE)) &&
2951 !CHECK_FLAG(nhe->flags, NEXTHOP_GROUP_INSTALLED) &&
2952 !CHECK_FLAG(nhe->flags, NEXTHOP_GROUP_QUEUED)))
2953 return ENOENT;
002930f7
MS
2954
2955 re->nhe_installed_id = nhe->id;
98cda54a 2956 }
6df59152 2957#endif /* HAVE_NETLINK */
de3f5488 2958
7cdb1a84
MS
2959 /* Trying out the sequence number idea, so we can try to detect
2960 * when a result is stale.
2961 */
1485bbe7 2962 re->dplane_sequence = zebra_router_get_next_sequence();
7cdb1a84
MS
2963 ctx->zd_seq = re->dplane_sequence;
2964
c7f0429e 2965 return AOK;
7cdb1a84
MS
2966}
2967
c317d3f2
SY
2968static int dplane_ctx_tc_qdisc_init(struct zebra_dplane_ctx *ctx,
2969 enum dplane_op_e op,
2970 const struct zebra_tc_qdisc *qdisc)
449a30ed
SY
2971{
2972 int ret = EINVAL;
2973
449a30ed
SY
2974 struct zebra_ns *zns = NULL;
2975
2976 ctx->zd_op = op;
2977 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
c317d3f2
SY
2978 ctx->zd_ifindex = qdisc->qdisc.ifindex;
2979 ctx->u.tc_qdisc.kind = qdisc->qdisc.kind;
2980 ctx->u.tc_qdisc.kind_str = tc_qdisc_kind2str(qdisc->qdisc.kind);
449a30ed
SY
2981
2982 /* TODO: init traffic control qdisc */
ec195c66 2983 zns = zebra_ns_lookup(NS_DEFAULT);
449a30ed
SY
2984
2985 dplane_ctx_ns_init(ctx, zns, true);
2986
2987 ret = AOK;
2988
2989 return ret;
2990}
2991
c317d3f2
SY
2992static int dplane_ctx_tc_class_init(struct zebra_dplane_ctx *ctx,
2993 enum dplane_op_e op,
2994 struct zebra_tc_class *class)
2995{
2996 int ret = EINVAL;
2997
2998 struct zebra_ns *zns = NULL;
2999
3000 ctx->zd_op = op;
3001 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3002 ctx->zd_ifindex = class->class.ifindex;
3003
3004 ctx->u.tc_class.handle = class->class.handle;
3005 ctx->u.tc_class.kind = class->class.kind;
3006 ctx->u.tc_class.kind_str = tc_qdisc_kind2str(class->class.kind);
3007 ctx->u.tc_class.rate = class->class.u.htb.rate;
3008 ctx->u.tc_class.ceil = class->class.u.htb.ceil;
3009
3010 zns = zebra_ns_lookup(NS_DEFAULT);
3011
3012 dplane_ctx_ns_init(ctx, zns, true);
3013
3014 ret = AOK;
3015
3016 return ret;
3017}
3018
3019static int dplane_ctx_tc_filter_init(struct zebra_dplane_ctx *ctx,
3020 enum dplane_op_e op,
3021 struct zebra_tc_filter *filter)
3022{
3023 int ret = EINVAL;
3024
3025 struct zebra_ns *zns = NULL;
3026
3027 ctx->zd_op = op;
3028 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3029 ctx->zd_ifindex = filter->filter.ifindex;
3030
3031 ctx->u.tc_filter.eth_proto = filter->filter.protocol;
3032 ctx->u.tc_filter.ip_proto = filter->filter.u.flower.ip_proto;
3033
3034 ctx->u.tc_filter.kind = filter->filter.kind;
3035 ctx->u.tc_filter.kind_str = tc_filter_kind2str(filter->filter.kind);
3036
3037 ctx->u.tc_filter.filter_bm = filter->filter.u.flower.filter_bm;
3038 prefix_copy(&ctx->u.tc_filter.src_ip, &filter->filter.u.flower.src_ip);
3039 ctx->u.tc_filter.src_port_min = filter->filter.u.flower.src_port_min;
3040 ctx->u.tc_filter.src_port_max = filter->filter.u.flower.src_port_max;
3041 prefix_copy(&ctx->u.tc_filter.dst_ip, &filter->filter.u.flower.dst_ip);
3042 ctx->u.tc_filter.dst_port_min = filter->filter.u.flower.dst_port_min;
3043 ctx->u.tc_filter.dst_port_max = filter->filter.u.flower.dst_port_max;
3044 ctx->u.tc_filter.dsfield = filter->filter.u.flower.dsfield;
3045 ctx->u.tc_filter.dsfield_mask = filter->filter.u.flower.dsfield_mask;
3046 ctx->u.tc_filter.classid = filter->filter.u.flower.classid;
3047
3048 ctx->u.tc_filter.priority = filter->filter.priority;
3049 ctx->u.tc_filter.handle = filter->filter.handle;
3050
3051 zns = zebra_ns_lookup(NS_DEFAULT);
3052
3053 dplane_ctx_ns_init(ctx, zns, true);
3054
3055 ret = AOK;
3056
3057 return ret;
3058}
3059
f820d025
SW
3060/**
3061 * dplane_ctx_nexthop_init() - Initialize a context block for a nexthop update
3062 *
3063 * @ctx: Dataplane context to init
3064 * @op: Operation being performed
3065 * @nhe: Nexthop group hash entry
3066 *
3067 * Return: Result status
3068 */
a2072e71 3069int dplane_ctx_nexthop_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
981ca597 3070 struct nhg_hash_entry *nhe)
f820d025 3071{
a7df21c4 3072 struct zebra_vrf *zvrf = NULL;
8e401b25 3073 struct zebra_ns *zns = NULL;
f820d025
SW
3074 int ret = EINVAL;
3075
3076 if (!ctx || !nhe)
c7f0429e 3077 return ret;
f820d025
SW
3078
3079 ctx->zd_op = op;
3080 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3081
3082 /* Copy over nhe info */
0c8215cb
SW
3083 ctx->u.rinfo.nhe.id = nhe->id;
3084 ctx->u.rinfo.nhe.afi = nhe->afi;
3085 ctx->u.rinfo.nhe.vrf_id = nhe->vrf_id;
38e40db1 3086 ctx->u.rinfo.nhe.type = nhe->type;
0c8215cb 3087
c415d895 3088 nexthop_group_copy(&(ctx->u.rinfo.nhe.ng), &(nhe->nhg));
0c8215cb 3089
c415d895 3090 /* If this is a group, convert it to a grp array of ids */
98cda54a
SW
3091 if (!zebra_nhg_depends_is_empty(nhe)
3092 && !CHECK_FLAG(nhe->flags, NEXTHOP_GROUP_RECURSIVE))
8dbc800f
SW
3093 ctx->u.rinfo.nhe.nh_grp_count = zebra_nhg_nhe2grp(
3094 ctx->u.rinfo.nhe.nh_grp, nhe, MULTIPATH_NUM);
f820d025 3095
a7df21c4
SW
3096 zvrf = vrf_info_lookup(nhe->vrf_id);
3097
3098 /*
3099 * Fallback to default namespace if the vrf got ripped out from under
3100 * us.
3101 */
3102 zns = zvrf ? zvrf->zns : zebra_ns_lookup(NS_DEFAULT);
1909e63a 3103
2d3c57e6
SW
3104 /*
3105 * TODO: Might not need to mark this as an update, since
3106 * it probably won't require two messages
3107 */
1909e63a
SW
3108 dplane_ctx_ns_init(ctx, zns, (op == DPLANE_OP_NH_UPDATE));
3109
f820d025
SW
3110 ret = AOK;
3111
f820d025
SW
3112 return ret;
3113}
3114
5d414138 3115/**
3819e4ce 3116 * dplane_ctx_intf_init() - Initialize a context block for a interface update
5d414138
SW
3117 *
3118 * @ctx: Dataplane context to init
3119 * @op: Operation being performed
3120 * @ifp: Interface
3121 *
3122 * Return: Result status
3123 */
3124int dplane_ctx_intf_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
3125 const struct interface *ifp)
3126{
b1da028e
SW
3127 struct zebra_ns *zns;
3128 struct zebra_if *zif;
5d414138 3129 int ret = EINVAL;
71ef5cbb 3130 bool set_pdown, unset_pdown;
5d414138
SW
3131
3132 if (!ctx || !ifp)
c7f0429e 3133 return ret;
5d414138
SW
3134
3135 ctx->zd_op = op;
3136 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3137 ctx->zd_vrf_id = ifp->vrf->vrf_id;
3138
3139 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
3140 ctx->zd_ifindex = ifp->ifindex;
3141
3142 zns = zebra_ns_lookup(ifp->vrf->vrf_id);
3143 dplane_ctx_ns_init(ctx, zns, false);
3144
3145
3146 /* Copy over ifp info */
3147 ctx->u.intf.metric = ifp->metric;
3148 ctx->u.intf.flags = ifp->flags;
3149
3150 /* Copy over extra zebra info, if available */
3151 zif = (struct zebra_if *)ifp->info;
3152
3153 if (zif) {
71ef5cbb
SW
3154 set_pdown = !!(zif->flags & ZIF_FLAG_SET_PROTODOWN);
3155 unset_pdown = !!(zif->flags & ZIF_FLAG_UNSET_PROTODOWN);
3156
ab465d24
SW
3157 if (zif->protodown_rc &&
3158 ZEBRA_IF_IS_PROTODOWN_ONLY_EXTERNAL(zif) == false)
3159 ctx->u.intf.pd_reason_val = true;
71ef5cbb
SW
3160
3161 /*
3162 * See if we have new protodown state to set, otherwise keep
3163 * current state
3164 */
3165 if (set_pdown)
3166 ctx->u.intf.protodown = true;
3167 else if (unset_pdown)
3168 ctx->u.intf.protodown = false;
3169 else
d89b3008 3170 ctx->u.intf.protodown = !!ZEBRA_IF_IS_PROTODOWN(zif);
5d414138
SW
3171 }
3172
3173 dplane_ctx_ns_init(ctx, zns, (op == DPLANE_OP_INTF_UPDATE));
3174 ctx->zd_is_update = (op == DPLANE_OP_INTF_UPDATE);
3175
3176 ret = AOK;
3177
5d414138
SW
3178 return ret;
3179}
3180
16c628de
MS
3181/*
3182 * Capture information for an LSP update in a dplane context.
3183 */
65f264cf 3184int dplane_ctx_lsp_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
8f74a383 3185 struct zebra_lsp *lsp)
16c628de
MS
3186{
3187 int ret = AOK;
f2595bd5 3188 struct zebra_nhlfe *nhlfe, *new_nhlfe;
16c628de 3189
16c628de
MS
3190 ctx->zd_op = op;
3191 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3192
3193 /* Capture namespace info */
3194 dplane_ctx_ns_init(ctx, zebra_ns_lookup(NS_DEFAULT),
3195 (op == DPLANE_OP_LSP_UPDATE));
3196
3197 memset(&ctx->u.lsp, 0, sizeof(ctx->u.lsp));
3198
ee70f629 3199 nhlfe_list_init(&(ctx->u.lsp.nhlfe_list));
cd4bb96f 3200 nhlfe_list_init(&(ctx->u.lsp.backup_nhlfe_list));
65f264cf
MS
3201
3202 /* This may be called to create/init a dplane context, not necessarily
3203 * to copy an lsp object.
3204 */
c7f0429e
DS
3205 if (lsp == NULL)
3206 return ret;
65f264cf
MS
3207
3208 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3209 zlog_debug("init dplane ctx %s: in-label %u ecmp# %d",
3210 dplane_op2str(op), lsp->ile.in_label,
3211 lsp->num_ecmp);
3212
16c628de
MS
3213 ctx->u.lsp.ile = lsp->ile;
3214 ctx->u.lsp.addr_family = lsp->addr_family;
3215 ctx->u.lsp.num_ecmp = lsp->num_ecmp;
3216 ctx->u.lsp.flags = lsp->flags;
3217
3218 /* Copy source LSP's nhlfes, and capture 'best' nhlfe */
ee70f629 3219 frr_each(nhlfe_list, &lsp->nhlfe_list, nhlfe) {
16c628de
MS
3220 /* Not sure if this is meaningful... */
3221 if (nhlfe->nexthop == NULL)
3222 continue;
3223
cd4bb96f
MS
3224 new_nhlfe = zebra_mpls_lsp_add_nh(&(ctx->u.lsp), nhlfe->type,
3225 nhlfe->nexthop);
16c628de
MS
3226 if (new_nhlfe == NULL || new_nhlfe->nexthop == NULL) {
3227 ret = ENOMEM;
3228 break;
3229 }
3230
3c0e1622 3231 /* Need to copy flags and backup info too */
16c628de
MS
3232 new_nhlfe->flags = nhlfe->flags;
3233 new_nhlfe->nexthop->flags = nhlfe->nexthop->flags;
3234
3c0e1622
MS
3235 if (CHECK_FLAG(new_nhlfe->nexthop->flags,
3236 NEXTHOP_FLAG_HAS_BACKUP)) {
3237 new_nhlfe->nexthop->backup_num =
3238 nhlfe->nexthop->backup_num;
3239 memcpy(new_nhlfe->nexthop->backup_idx,
3240 nhlfe->nexthop->backup_idx,
3241 new_nhlfe->nexthop->backup_num);
3242 }
3243
16c628de
MS
3244 if (nhlfe == lsp->best_nhlfe)
3245 ctx->u.lsp.best_nhlfe = new_nhlfe;
3246 }
3247
cd4bb96f 3248 if (ret != AOK)
c7f0429e 3249 return ret;
cd4bb96f
MS
3250
3251 /* Capture backup nhlfes/nexthops */
3252 frr_each(nhlfe_list, &lsp->backup_nhlfe_list, nhlfe) {
3253 /* Not sure if this is meaningful... */
3254 if (nhlfe->nexthop == NULL)
3255 continue;
3256
3257 new_nhlfe = zebra_mpls_lsp_add_backup_nh(&(ctx->u.lsp),
3258 nhlfe->type,
3259 nhlfe->nexthop);
3260 if (new_nhlfe == NULL || new_nhlfe->nexthop == NULL) {
3261 ret = ENOMEM;
3262 break;
3263 }
3264
3265 /* Need to copy flags too */
3266 new_nhlfe->flags = nhlfe->flags;
3267 new_nhlfe->nexthop->flags = nhlfe->nexthop->flags;
3268 }
3269
16c628de
MS
3270 return ret;
3271}
3272
97d8d05a
MS
3273/*
3274 * Capture information for an LSP update in a dplane context.
3275 */
3276static int dplane_ctx_pw_init(struct zebra_dplane_ctx *ctx,
3277 enum dplane_op_e op,
3278 struct zebra_pw *pw)
3279{
072b487b 3280 int ret = EINVAL;
09cd307c
MS
3281 struct prefix p;
3282 afi_t afi;
3283 struct route_table *table;
3284 struct route_node *rn;
3285 struct route_entry *re;
0024ea8e 3286 const struct nexthop_group *nhg;
072b487b 3287 struct nexthop *nh, *newnh, *last_nh;
09cd307c 3288
97d8d05a
MS
3289 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3290 zlog_debug("init dplane ctx %s: pw '%s', loc %u, rem %u",
3291 dplane_op2str(op), pw->ifname, pw->local_label,
3292 pw->remote_label);
3293
3294 ctx->zd_op = op;
3295 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3296
3297 /* Capture namespace info: no netlink support as of 12/18,
3298 * but just in case...
3299 */
3300 dplane_ctx_ns_init(ctx, zebra_ns_lookup(NS_DEFAULT), false);
3301
3302 memset(&ctx->u.pw, 0, sizeof(ctx->u.pw));
3303
3304 /* This name appears to be c-string, so we use string copy. */
7c7ef4a8 3305 strlcpy(ctx->zd_ifname, pw->ifname, sizeof(ctx->zd_ifname));
16d69787 3306
9bd9717b 3307 ctx->zd_vrf_id = pw->vrf_id;
7c7ef4a8 3308 ctx->zd_ifindex = pw->ifindex;
97d8d05a
MS
3309 ctx->u.pw.type = pw->type;
3310 ctx->u.pw.af = pw->af;
3311 ctx->u.pw.local_label = pw->local_label;
3312 ctx->u.pw.remote_label = pw->remote_label;
3313 ctx->u.pw.flags = pw->flags;
3314
16d69787 3315 ctx->u.pw.dest = pw->nexthop;
97d8d05a
MS
3316
3317 ctx->u.pw.fields = pw->data;
3318
09cd307c
MS
3319 /* Capture nexthop info for the pw destination. We need to look
3320 * up and use zebra datastructs, but we're running in the zebra
3321 * pthread here so that should be ok.
3322 */
3323 memcpy(&p.u, &pw->nexthop, sizeof(pw->nexthop));
3324 p.family = pw->af;
936fbaef 3325 p.prefixlen = ((pw->af == AF_INET) ? IPV4_MAX_BITLEN : IPV6_MAX_BITLEN);
09cd307c
MS
3326
3327 afi = (pw->af == AF_INET) ? AFI_IP : AFI_IP6;
3328 table = zebra_vrf_table(afi, SAFI_UNICAST, pw->vrf_id);
072b487b 3329 if (table == NULL)
c7f0429e 3330 return ret;
072b487b
MS
3331
3332 rn = route_node_match(table, &p);
3333 if (rn == NULL)
c7f0429e 3334 return ret;
072b487b
MS
3335
3336 re = NULL;
3337 RNODE_FOREACH_RE(rn, re) {
3338 if (CHECK_FLAG(re->flags, ZEBRA_FLAG_SELECTED))
3339 break;
3340 }
3341
3342 if (re) {
3343 /* We'll capture a 'fib' list of nexthops that meet our
3344 * criteria: installed, and labelled.
3345 */
3346 nhg = rib_get_fib_nhg(re);
3347 last_nh = NULL;
3348
3349 if (nhg && nhg->nexthop) {
3350 for (ALL_NEXTHOPS_PTR(nhg, nh)) {
3351 if (!CHECK_FLAG(nh->flags, NEXTHOP_FLAG_ACTIVE)
3352 || CHECK_FLAG(nh->flags,
3353 NEXTHOP_FLAG_RECURSIVE)
3354 || nh->nh_label == NULL)
3355 continue;
3356
3357 newnh = nexthop_dup(nh, NULL);
3358
3359 if (last_nh)
3360 NEXTHOP_APPEND(last_nh, newnh);
3361 else
3362 ctx->u.pw.fib_nhg.nexthop = newnh;
3363 last_nh = newnh;
09cd307c 3364 }
072b487b 3365 }
09cd307c 3366
072b487b
MS
3367 /* Include any installed backup nexthops also. */
3368 nhg = rib_get_fib_backup_nhg(re);
3369 if (nhg && nhg->nexthop) {
3370 for (ALL_NEXTHOPS_PTR(nhg, nh)) {
3371 if (!CHECK_FLAG(nh->flags, NEXTHOP_FLAG_ACTIVE)
3372 || CHECK_FLAG(nh->flags,
3373 NEXTHOP_FLAG_RECURSIVE)
3374 || nh->nh_label == NULL)
3375 continue;
3376
3377 newnh = nexthop_dup(nh, NULL);
3378
3379 if (last_nh)
3380 NEXTHOP_APPEND(last_nh, newnh);
3381 else
3382 ctx->u.pw.fib_nhg.nexthop = newnh;
3383 last_nh = newnh;
0024ea8e 3384 }
072b487b
MS
3385 }
3386
3387 /* Copy primary nexthops; recursive info is included too */
3388 assert(re->nhe != NULL); /* SA warning */
3389 copy_nexthops(&(ctx->u.pw.primary_nhg.nexthop),
3390 re->nhe->nhg.nexthop, NULL);
3391 ctx->u.pw.nhg_id = re->nhe->id;
3392
3393 /* Copy backup nexthop info, if present */
3394 if (re->nhe->backup_info && re->nhe->backup_info->nhe) {
3395 copy_nexthops(&(ctx->u.pw.backup_nhg.nexthop),
3396 re->nhe->backup_info->nhe->nhg.nexthop,
3397 NULL);
09cd307c
MS
3398 }
3399 }
072b487b 3400 route_unlock_node(rn);
09cd307c 3401
c7f0429e 3402 return AOK;
97d8d05a
MS
3403}
3404
f62e5480
JU
3405/**
3406 * dplane_ctx_rule_init_single() - Initialize a dataplane representation of a
3407 * PBR rule.
3408 *
3409 * @dplane_rule: Dataplane internal representation of a rule
3410 * @rule: PBR rule
3411 */
3412static void dplane_ctx_rule_init_single(struct dplane_ctx_rule *dplane_rule,
3413 struct zebra_pbr_rule *rule)
3414{
9898473f
AK
3415 struct zebra_neigh_ent *n;
3416
f62e5480
JU
3417 dplane_rule->priority = rule->rule.priority;
3418 dplane_rule->table = rule->rule.action.table;
3419
3420 dplane_rule->filter_bm = rule->rule.filter.filter_bm;
3421 dplane_rule->fwmark = rule->rule.filter.fwmark;
01f23aff 3422 dplane_rule->dsfield = rule->rule.filter.dsfield;
8ccbc778 3423 dplane_rule->ip_proto = rule->rule.filter.ip_proto;
9898473f
AK
3424 dplane_rule->src_port = rule->rule.filter.src_port;
3425 dplane_rule->dst_port = rule->rule.filter.dst_port;
f62e5480
JU
3426 prefix_copy(&(dplane_rule->dst_ip), &rule->rule.filter.dst_ip);
3427 prefix_copy(&(dplane_rule->src_ip), &rule->rule.filter.src_ip);
d70a31a3
EB
3428
3429 dplane_rule->action_pcp = rule->rule.action.pcp;
3430 dplane_rule->action_vlan_flags = rule->rule.action.vlan_flags;
3431 dplane_rule->action_vlan_id = rule->rule.action.vlan_id;
3432 dplane_rule->action_queue_id = rule->rule.action.queue_id;
3433
58a1d249 3434 strlcpy(dplane_rule->ifname, rule->ifname, INTERFACE_NAMSIZ);
9898473f
AK
3435 dplane_rule->dp_flow_ptr = rule->action.dp_flow_ptr;
3436 n = rule->action.neigh;
3437 if (n && (n->flags & ZEBRA_NEIGH_ENT_ACTIVE)) {
3438 struct interface *ifp = if_lookup_by_index_per_ns(
3439 zebra_ns_lookup(NS_DEFAULT), n->ifindex);
3440 if (ifp) {
3441 dplane_rule->out_ifindex = n->ifindex;
3442 memcpy(&dplane_rule->dmac, &n->mac, ETH_ALEN);
3443 memcpy(&dplane_rule->smac, ifp->hw_addr, ETH_ALEN);
3444 } else {
3445 dplane_rule->out_ifindex = 0;
3446 }
3447 }
f62e5480
JU
3448}
3449
3450/**
3451 * dplane_ctx_rule_init() - Initialize a context block for a PBR rule update.
3452 *
3453 * @ctx: Dataplane context to init
3454 * @op: Operation being performed
3455 * @new_rule: PBR rule
3456 *
3457 * Return: Result status
3458 */
3459static int dplane_ctx_rule_init(struct zebra_dplane_ctx *ctx,
3460 enum dplane_op_e op,
3461 struct zebra_pbr_rule *new_rule,
3462 struct zebra_pbr_rule *old_rule)
3463{
2dbe669b 3464 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
f62e5480 3465 zlog_debug(
2dbe669b 3466 "init dplane ctx %s: IF %s Prio %u Fwmark %u Src %pFX Dst %pFX Table %u",
f62e5480 3467 dplane_op2str(op), new_rule->ifname,
58a1d249 3468 new_rule->rule.priority, new_rule->rule.filter.fwmark,
2dbe669b
DA
3469 &new_rule->rule.filter.src_ip,
3470 &new_rule->rule.filter.dst_ip,
f62e5480 3471 new_rule->rule.action.table);
f62e5480
JU
3472
3473 ctx->zd_op = op;
3474 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3475
3476 dplane_ctx_ns_init(ctx, zebra_ns_lookup(NS_DEFAULT),
3477 op == DPLANE_OP_RULE_UPDATE);
3478
3479 ctx->zd_vrf_id = new_rule->vrf_id;
bc86b347 3480 strlcpy(ctx->zd_ifname, new_rule->ifname, sizeof(ctx->zd_ifname));
f62e5480
JU
3481
3482 ctx->u.rule.sock = new_rule->sock;
3483 ctx->u.rule.unique = new_rule->rule.unique;
3484 ctx->u.rule.seq = new_rule->rule.seq;
3485
3486 dplane_ctx_rule_init_single(&ctx->u.rule.new, new_rule);
9898473f 3487 if (op == DPLANE_OP_RULE_UPDATE) {
f62e5480 3488 dplane_ctx_rule_init_single(&ctx->u.rule.old, old_rule);
9898473f
AK
3489 /* clear the dp_flow_ptr in the old_rule - it is about to be
3490 * deleted
3491 */
3492 old_rule->action.dp_flow_ptr = (intptr_t)NULL;
3493 }
f62e5480
JU
3494
3495 return AOK;
3496}
3497
1cc38067
DS
3498static void zebra_dplane_interface_name_list_deletion(void *data)
3499{
3500 XFREE(MTYPE_DP_NETFILTER, data);
3501}
3502
5162e000
PG
3503/**
3504 * dplane_ctx_iptable_init() - Initialize a context block for a PBR iptable
3505 * update.
3506 *
3507 * @ctx: Dataplane context to init
3508 * @op: Operation being performed
3509 * @new_rule: PBR iptable
3510 *
3511 * Return: Result status
3512 */
3513static int dplane_ctx_iptable_init(struct zebra_dplane_ctx *ctx,
3514 enum dplane_op_e op,
3515 struct zebra_pbr_iptable *iptable)
3516{
3517 char *ifname;
3518 struct listnode *node;
3519
3520 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
3521 zlog_debug(
3522 "init dplane ctx %s: Unique %u Fwmark %u Family %s Action %s",
3523 dplane_op2str(op), iptable->unique, iptable->fwmark,
3524 family2str(iptable->family),
3525 iptable->action == ZEBRA_IPTABLES_DROP ? "Drop"
3526 : "Forward");
3527 }
3528
3529 ctx->zd_op = op;
3530 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3531
3532 dplane_ctx_ns_init(ctx, zebra_ns_lookup(NS_DEFAULT), false);
5162e000
PG
3533
3534 ctx->zd_vrf_id = iptable->vrf_id;
3535 memcpy(&ctx->u.iptable, iptable, sizeof(struct zebra_pbr_iptable));
5162e000
PG
3536 if (iptable->nb_interface > 0) {
3537 ctx->u.iptable.interface_name_list = list_new();
1cc38067
DS
3538 ctx->u.iptable.interface_name_list->del =
3539 zebra_dplane_interface_name_list_deletion;
5162e000
PG
3540 for (ALL_LIST_ELEMENTS_RO(iptable->interface_name_list, node,
3541 ifname)) {
3542 listnode_add(ctx->u.iptable.interface_name_list,
ef524230 3543 XSTRDUP(MTYPE_DP_NETFILTER, ifname));
5162e000
PG
3544 }
3545 }
3546 return AOK;
3547}
3548
ef524230
PG
3549/**
3550 * dplane_ctx_ipset_init() - Initialize a context block for a PBR ipset update.
3551 *
3552 * @ctx: Dataplane context to init
3553 * @op: Operation being performed
3554 * @new_rule: PBR ipset
3555 *
3556 * Return: Result status
3557 */
3558static int dplane_ctx_ipset_init(struct zebra_dplane_ctx *ctx,
3559 enum dplane_op_e op,
3560 struct zebra_pbr_ipset *ipset)
3561{
3562 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
3563 zlog_debug("init dplane ctx %s: %s Unique %u Family %s Type %s",
3564 dplane_op2str(op), ipset->ipset_name, ipset->unique,
3565 family2str(ipset->family),
3566 zebra_pbr_ipset_type2str(ipset->type));
3567 }
3568
3569 ctx->zd_op = op;
3570 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3571
3572 dplane_ctx_ns_init(ctx, zebra_ns_lookup(NS_DEFAULT), false);
ef524230
PG
3573
3574 ctx->zd_vrf_id = ipset->vrf_id;
3575
3576 memcpy(&ctx->u.ipset, ipset, sizeof(struct zebra_pbr_ipset));
3577 return AOK;
3578}
3579
3580/**
3581 * dplane_ctx_ipset_entry_init() - Initialize a context block for a PBR ipset
3582 * update.
3583 *
3584 * @ctx: Dataplane context to init
3585 * @op: Operation being performed
3586 * @new_rule: PBR ipset
3587 *
3588 * Return: Result status
3589 */
3590static int
3591dplane_ctx_ipset_entry_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
3592 struct zebra_pbr_ipset_entry *ipset_entry)
3593{
3594 struct zebra_pbr_ipset *ipset;
3595
3596 ipset = ipset_entry->backpointer;
3597 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
3598 zlog_debug("init dplane ctx %s: %s Unique %u filter %u",
3599 dplane_op2str(op), ipset->ipset_name,
3600 ipset_entry->unique, ipset_entry->filter_bm);
3601 }
3602
3603 ctx->zd_op = op;
3604 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
3605
3606 dplane_ctx_ns_init(ctx, zebra_ns_lookup(NS_DEFAULT), false);
ef524230
PG
3607
3608 ctx->zd_vrf_id = ipset->vrf_id;
3609
3610 memcpy(&ctx->u.ipset_entry.entry, ipset_entry,
3611 sizeof(struct zebra_pbr_ipset_entry));
3612 ctx->u.ipset_entry.entry.backpointer = NULL;
3613 ctx->u.ipset_entry.info.type = ipset->type;
85b02353 3614 ctx->u.ipset_entry.info.family = ipset->family;
ef524230
PG
3615 memcpy(&ctx->u.ipset_entry.info.ipset_name, &ipset->ipset_name,
3616 ZEBRA_IPSET_NAME_SIZE);
3617
3618 return AOK;
3619}
3620
3621
7cdb1a84 3622/*
3fe4ccc4 3623 * Enqueue a new update,
16c628de 3624 * and ensure an event is active for the dataplane pthread.
7cdb1a84 3625 */
3fe4ccc4 3626static int dplane_update_enqueue(struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
3627{
3628 int ret = EINVAL;
91f16812 3629 uint32_t high, curr;
7cdb1a84 3630
16c628de 3631 /* Enqueue for processing by the dataplane pthread */
7cdb1a84
MS
3632 DPLANE_LOCK();
3633 {
ac96497c 3634 dplane_ctx_list_add_tail(&zdplane_info.dg_update_list, ctx);
7cdb1a84
MS
3635 }
3636 DPLANE_UNLOCK();
3637
e3d9208a 3638 curr = atomic_fetch_add_explicit(
e07e9549 3639 &(zdplane_info.dg_routes_queued),
e07e9549 3640 1, memory_order_seq_cst);
91f16812 3641
e3d9208a
MS
3642 curr++; /* We got the pre-incremented value */
3643
91f16812
MS
3644 /* Maybe update high-water counter also */
3645 high = atomic_load_explicit(&zdplane_info.dg_routes_queued_max,
3646 memory_order_seq_cst);
3647 while (high < curr) {
3648 if (atomic_compare_exchange_weak_explicit(
3649 &zdplane_info.dg_routes_queued_max,
3650 &high, curr,
3651 memory_order_seq_cst,
3652 memory_order_seq_cst))
3653 break;
3654 }
3655
7cdb1a84 3656 /* Ensure that an event for the dataplane thread is active */
c831033f 3657 ret = dplane_provider_work_ready();
7cdb1a84 3658
5709131c 3659 return ret;
7cdb1a84
MS
3660}
3661
7cdb1a84
MS
3662/*
3663 * Utility that prepares a route update and enqueues it for processing
3664 */
655d681a
MS
3665static enum zebra_dplane_result
3666dplane_route_update_internal(struct route_node *rn,
3667 struct route_entry *re,
3668 struct route_entry *old_re,
5709131c 3669 enum dplane_op_e op)
7cdb1a84 3670{
655d681a 3671 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
7cdb1a84 3672 int ret = EINVAL;
25779064 3673 struct zebra_dplane_ctx *ctx = NULL;
7cdb1a84
MS
3674
3675 /* Obtain context block */
3676 ctx = dplane_ctx_alloc();
7cdb1a84
MS
3677
3678 /* Init context with info from zebra data structs */
3679 ret = dplane_ctx_route_init(ctx, op, rn, re);
3680 if (ret == AOK) {
3681 /* Capture some extra info for update case
3682 * where there's a different 'old' route.
3683 */
b8e0423d
MS
3684 if ((op == DPLANE_OP_ROUTE_UPDATE) &&
3685 old_re && (old_re != re)) {
7cdb1a84 3686
1485bbe7
DS
3687 old_re->dplane_sequence =
3688 zebra_router_get_next_sequence();
7cdb1a84
MS
3689 ctx->zd_old_seq = old_re->dplane_sequence;
3690
0f461727
MS
3691 ctx->u.rinfo.zd_old_tag = old_re->tag;
3692 ctx->u.rinfo.zd_old_type = old_re->type;
3693 ctx->u.rinfo.zd_old_instance = old_re->instance;
3694 ctx->u.rinfo.zd_old_distance = old_re->distance;
3695 ctx->u.rinfo.zd_old_metric = old_re->metric;
df3cef24 3696 ctx->u.rinfo.nhe.old_id = old_re->nhe->id;
01ce7cba
MS
3697
3698#ifndef HAVE_NETLINK
f183e380
MS
3699 /* For bsd, capture previous re's nexthops too, sigh.
3700 * We'll need these to do per-nexthop deletes.
3701 */
0f461727 3702 copy_nexthops(&(ctx->u.rinfo.zd_old_ng.nexthop),
c415d895 3703 old_re->nhe->nhg.nexthop, NULL);
1d48702e
MS
3704
3705 if (zebra_nhg_get_backup_nhg(old_re->nhe) != NULL) {
3706 struct nexthop_group *nhg;
3707 struct nexthop **nh;
3708
3709 nhg = zebra_nhg_get_backup_nhg(old_re->nhe);
3710 nh = &(ctx->u.rinfo.old_backup_ng.nexthop);
3711
3712 if (nhg->nexthop)
3713 copy_nexthops(nh, nhg->nexthop, NULL);
3714 }
01ce7cba 3715#endif /* !HAVE_NETLINK */
7cdb1a84
MS
3716 }
3717
df3cef24
DS
3718 /*
3719 * If the old and new context type, and nexthop group id
3720 * are the same there is no need to send down a route replace
3721 * as that we know we have sent a nexthop group replace
3722 * or an upper level protocol has sent us the exact
3723 * same route again.
3724 */
3725 if ((dplane_ctx_get_type(ctx) == dplane_ctx_get_old_type(ctx))
3726 && (dplane_ctx_get_nhe_id(ctx)
3d3a9dc8
SW
3727 == dplane_ctx_get_old_nhe_id(ctx))
3728 && (dplane_ctx_get_nhe_id(ctx) >= ZEBRA_NHG_PROTO_LOWER)) {
27805e74
DS
3729 struct nexthop *nexthop;
3730
df3cef24
DS
3731 if (IS_ZEBRA_DEBUG_DPLANE)
3732 zlog_debug(
3733 "%s: Ignoring Route exactly the same",
3734 __func__);
3735
27805e74
DS
3736 for (ALL_NEXTHOPS_PTR(dplane_ctx_get_ng(ctx),
3737 nexthop)) {
3738 if (CHECK_FLAG(nexthop->flags,
3739 NEXTHOP_FLAG_RECURSIVE))
3740 continue;
3741
3742 if (CHECK_FLAG(nexthop->flags,
3743 NEXTHOP_FLAG_ACTIVE))
3744 SET_FLAG(nexthop->flags,
3745 NEXTHOP_FLAG_FIB);
3746 }
3747
e25a0b13
PJD
3748 if ((op == DPLANE_OP_ROUTE_UPDATE) && old_re && re &&
3749 (old_re != re) &&
3750 !CHECK_FLAG(re->status, ROUTE_ENTRY_INSTALLED))
3751 SET_FLAG(re->status, ROUTE_ENTRY_INSTALLED);
3752
841f77ff 3753 dplane_ctx_free(&ctx);
df3cef24
DS
3754 return ZEBRA_DPLANE_REQUEST_SUCCESS;
3755 }
3756
7cdb1a84 3757 /* Enqueue context for processing */
3fe4ccc4 3758 ret = dplane_update_enqueue(ctx);
7cdb1a84
MS
3759 }
3760
91f16812 3761 /* Update counter */
25779064 3762 atomic_fetch_add_explicit(&zdplane_info.dg_routes_in, 1,
1d11b21f
MS
3763 memory_order_relaxed);
3764
91f16812 3765 if (ret == AOK)
655d681a 3766 result = ZEBRA_DPLANE_REQUEST_QUEUED;
16c628de 3767 else {
b96f64f7
DS
3768 atomic_fetch_add_explicit(&zdplane_info.dg_route_errors, 1,
3769 memory_order_relaxed);
16c628de
MS
3770 if (ctx)
3771 dplane_ctx_free(&ctx);
1d11b21f 3772 }
7cdb1a84 3773
5709131c 3774 return result;
7cdb1a84
MS
3775}
3776
c317d3f2
SY
3777static enum zebra_dplane_result
3778tc_qdisc_update_internal(enum dplane_op_e op,
3779 const struct zebra_tc_qdisc *qdisc)
449a30ed
SY
3780{
3781 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
366eb2d0 3782 int ret;
449a30ed
SY
3783 struct zebra_dplane_ctx *ctx = NULL;
3784
3785 /* Obtain context block */
3786 ctx = dplane_ctx_alloc();
3787
449a30ed 3788 /* Init context with info from zebra data structs */
c317d3f2 3789 ret = dplane_ctx_tc_qdisc_init(ctx, op, qdisc);
449a30ed
SY
3790
3791 if (ret == AOK)
3792 ret = dplane_update_enqueue(ctx);
3793
449a30ed
SY
3794 /* Update counter */
3795 atomic_fetch_add_explicit(&zdplane_info.dg_tcs_in, 1,
3796 memory_order_relaxed);
3797 if (ret == AOK) {
3798 result = ZEBRA_DPLANE_REQUEST_QUEUED;
3799 } else {
3800 atomic_fetch_add_explicit(&zdplane_info.dg_tcs_errors, 1,
3801 memory_order_relaxed);
3802 if (ctx)
3803 dplane_ctx_free(&ctx);
3804 }
3805
3806 return result;
3807}
3808
c317d3f2
SY
3809static enum zebra_dplane_result
3810tc_class_update_internal(enum dplane_op_e op, struct zebra_tc_class *class)
449a30ed 3811{
c317d3f2
SY
3812 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
3813 int ret;
3814 struct zebra_dplane_ctx *ctx = NULL;
3815
3816 /* Obtain context block */
3817 ctx = dplane_ctx_alloc();
3818
c317d3f2
SY
3819 /* Init context with info from zebra data structs */
3820 ret = dplane_ctx_tc_class_init(ctx, op, class);
3821
3822 if (ret == AOK)
3823 ret = dplane_update_enqueue(ctx);
3824
c317d3f2
SY
3825 /* Update counter */
3826 atomic_fetch_add_explicit(&zdplane_info.dg_tcs_in, 1,
3827 memory_order_relaxed);
3828 if (ret == AOK) {
3829 result = ZEBRA_DPLANE_REQUEST_QUEUED;
3830 } else {
3831 atomic_fetch_add_explicit(&zdplane_info.dg_tcs_errors, 1,
3832 memory_order_relaxed);
3833 if (ctx)
3834 dplane_ctx_free(&ctx);
3835 }
3836
3837 return result;
3838}
3839
3840static enum zebra_dplane_result
3841tc_filter_update_internal(enum dplane_op_e op, struct zebra_tc_filter *filter)
3842{
3843 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
3844 int ret;
3845 struct zebra_dplane_ctx *ctx = NULL;
3846
3847 /* Obtain context block */
3848 ctx = dplane_ctx_alloc();
3849
c317d3f2
SY
3850 /* Init context with info from zebra data structs */
3851 ret = dplane_ctx_tc_filter_init(ctx, op, filter);
3852
3853 if (ret == AOK)
3854 ret = dplane_update_enqueue(ctx);
3855
c317d3f2
SY
3856 /* Update counter */
3857 atomic_fetch_add_explicit(&zdplane_info.dg_tcs_in, 1,
3858 memory_order_relaxed);
3859 if (ret == AOK) {
3860 result = ZEBRA_DPLANE_REQUEST_QUEUED;
3861 } else {
3862 atomic_fetch_add_explicit(&zdplane_info.dg_tcs_errors, 1,
3863 memory_order_relaxed);
3864 if (ctx)
3865 dplane_ctx_free(&ctx);
3866 }
3867
3868 return result;
3869}
3870
3871enum zebra_dplane_result dplane_tc_qdisc_install(struct zebra_tc_qdisc *qdisc)
3872{
3873 return tc_qdisc_update_internal(DPLANE_OP_TC_QDISC_INSTALL, qdisc);
3874}
3875
3876enum zebra_dplane_result dplane_tc_qdisc_uninstall(struct zebra_tc_qdisc *qdisc)
3877{
3878 return tc_qdisc_update_internal(DPLANE_OP_TC_QDISC_UNINSTALL, qdisc);
3879}
3880
3881enum zebra_dplane_result dplane_tc_class_add(struct zebra_tc_class *class)
3882{
3883 return tc_class_update_internal(DPLANE_OP_TC_CLASS_ADD, class);
3884}
3885
3886enum zebra_dplane_result dplane_tc_class_delete(struct zebra_tc_class *class)
3887{
3888 return tc_class_update_internal(DPLANE_OP_TC_CLASS_DELETE, class);
3889}
3890
3891enum zebra_dplane_result dplane_tc_class_update(struct zebra_tc_class *class)
3892{
3893 return tc_class_update_internal(DPLANE_OP_TC_CLASS_UPDATE, class);
3894}
3895
3896enum zebra_dplane_result dplane_tc_filter_add(struct zebra_tc_filter *filter)
3897{
3898 return tc_filter_update_internal(DPLANE_OP_TC_FILTER_ADD, filter);
3899}
3900
3901enum zebra_dplane_result dplane_tc_filter_delete(struct zebra_tc_filter *filter)
3902{
3903 return tc_filter_update_internal(DPLANE_OP_TC_FILTER_DELETE, filter);
3904}
3905
3906enum zebra_dplane_result dplane_tc_filter_update(struct zebra_tc_filter *filter)
3907{
3908 return tc_filter_update_internal(DPLANE_OP_TC_FILTER_UPDATE, filter);
449a30ed
SY
3909}
3910
f820d025
SW
3911/**
3912 * dplane_nexthop_update_internal() - Helper for enqueuing nexthop changes
3913 *
3914 * @nhe: Nexthop group hash entry where the change occured
3915 * @op: The operation to be enqued
3916 *
3917 * Return: Result of the change
3918 */
3919static enum zebra_dplane_result
3920dplane_nexthop_update_internal(struct nhg_hash_entry *nhe, enum dplane_op_e op)
3921{
3922 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
50a38e23 3923 int ret;
f820d025
SW
3924 struct zebra_dplane_ctx *ctx = NULL;
3925
3926 /* Obtain context block */
3927 ctx = dplane_ctx_alloc();
f820d025
SW
3928
3929 ret = dplane_ctx_nexthop_init(ctx, op, nhe);
2d3c57e6 3930 if (ret == AOK)
f820d025 3931 ret = dplane_update_enqueue(ctx);
2d3c57e6 3932
f820d025
SW
3933 /* Update counter */
3934 atomic_fetch_add_explicit(&zdplane_info.dg_nexthops_in, 1,
3935 memory_order_relaxed);
3936
3937 if (ret == AOK)
3938 result = ZEBRA_DPLANE_REQUEST_QUEUED;
3939 else {
81505946
SW
3940 atomic_fetch_add_explicit(&zdplane_info.dg_nexthop_errors, 1,
3941 memory_order_relaxed);
f820d025
SW
3942 if (ctx)
3943 dplane_ctx_free(&ctx);
3944 }
3945
3946 return result;
3947}
3948
7cdb1a84
MS
3949/*
3950 * Enqueue a route 'add' for the dataplane.
3951 */
655d681a
MS
3952enum zebra_dplane_result dplane_route_add(struct route_node *rn,
3953 struct route_entry *re)
7cdb1a84 3954{
655d681a 3955 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
7cdb1a84 3956
5709131c 3957 if (rn == NULL || re == NULL)
c7f0429e 3958 return ret;
7cdb1a84
MS
3959
3960 ret = dplane_route_update_internal(rn, re, NULL,
3961 DPLANE_OP_ROUTE_INSTALL);
3962
5709131c 3963 return ret;
7cdb1a84
MS
3964}
3965
3966/*
3967 * Enqueue a route update for the dataplane.
3968 */
655d681a
MS
3969enum zebra_dplane_result dplane_route_update(struct route_node *rn,
3970 struct route_entry *re,
3971 struct route_entry *old_re)
7cdb1a84 3972{
655d681a 3973 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
7cdb1a84 3974
5709131c 3975 if (rn == NULL || re == NULL)
c7f0429e 3976 return ret;
7cdb1a84
MS
3977
3978 ret = dplane_route_update_internal(rn, re, old_re,
3979 DPLANE_OP_ROUTE_UPDATE);
c7f0429e 3980
5709131c 3981 return ret;
7cdb1a84
MS
3982}
3983
3984/*
3985 * Enqueue a route removal for the dataplane.
3986 */
655d681a
MS
3987enum zebra_dplane_result dplane_route_delete(struct route_node *rn,
3988 struct route_entry *re)
7cdb1a84 3989{
655d681a 3990 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
7cdb1a84 3991
5709131c 3992 if (rn == NULL || re == NULL)
c7f0429e 3993 return ret;
7cdb1a84
MS
3994
3995 ret = dplane_route_update_internal(rn, re, NULL,
3996 DPLANE_OP_ROUTE_DELETE);
3997
5709131c 3998 return ret;
7cdb1a84
MS
3999}
4000
cf363e1b
MS
4001/*
4002 * Notify the dplane when system/connected routes change.
4003 */
4004enum zebra_dplane_result dplane_sys_route_add(struct route_node *rn,
4005 struct route_entry *re)
4006{
4007 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
4008
4009 /* Ignore this event unless a provider plugin has requested it. */
c7f0429e
DS
4010 if (!zdplane_info.dg_sys_route_notifs)
4011 return ZEBRA_DPLANE_REQUEST_SUCCESS;
4012
cf363e1b
MS
4013
4014 if (rn == NULL || re == NULL)
c7f0429e 4015 return ret;
cf363e1b
MS
4016
4017 ret = dplane_route_update_internal(rn, re, NULL,
4018 DPLANE_OP_SYS_ROUTE_ADD);
4019
cf363e1b
MS
4020 return ret;
4021}
4022
4023/*
4024 * Notify the dplane when system/connected routes are deleted.
4025 */
4026enum zebra_dplane_result dplane_sys_route_del(struct route_node *rn,
4027 struct route_entry *re)
4028{
4029 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
4030
4031 /* Ignore this event unless a provider plugin has requested it. */
c7f0429e
DS
4032 if (!zdplane_info.dg_sys_route_notifs)
4033 return ZEBRA_DPLANE_REQUEST_SUCCESS;
cf363e1b
MS
4034
4035 if (rn == NULL || re == NULL)
c7f0429e 4036 return ret;
cf363e1b
MS
4037
4038 ret = dplane_route_update_internal(rn, re, NULL,
4039 DPLANE_OP_SYS_ROUTE_DELETE);
4040
cf363e1b
MS
4041 return ret;
4042}
4043
188a00e0
MS
4044/*
4045 * Update from an async notification, to bring other fibs up-to-date.
4046 */
4047enum zebra_dplane_result
4048dplane_route_notif_update(struct route_node *rn,
4049 struct route_entry *re,
4050 enum dplane_op_e op,
4051 struct zebra_dplane_ctx *ctx)
4052{
54d321aa
MS
4053 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4054 int ret = EINVAL;
188a00e0
MS
4055 struct zebra_dplane_ctx *new_ctx = NULL;
4056 struct nexthop *nexthop;
3c0e1622 4057 struct nexthop_group *nhg;
188a00e0
MS
4058
4059 if (rn == NULL || re == NULL)
4060 goto done;
4061
4062 new_ctx = dplane_ctx_alloc();
188a00e0
MS
4063
4064 /* Init context with info from zebra data structs */
4065 dplane_ctx_route_init(new_ctx, op, rn, re);
4066
4067 /* For add/update, need to adjust the nexthops so that we match
4068 * the notification state, which may not be the route-entry/RIB
4069 * state.
4070 */
4071 if (op == DPLANE_OP_ROUTE_UPDATE ||
4072 op == DPLANE_OP_ROUTE_INSTALL) {
4073
4074 nexthops_free(new_ctx->u.rinfo.zd_ng.nexthop);
4075 new_ctx->u.rinfo.zd_ng.nexthop = NULL;
4076
3c0e1622
MS
4077 nhg = rib_get_fib_nhg(re);
4078 if (nhg && nhg->nexthop)
4079 copy_nexthops(&(new_ctx->u.rinfo.zd_ng.nexthop),
4080 nhg->nexthop, NULL);
188a00e0 4081
3c0e1622
MS
4082 /* Check for installed backup nexthops also */
4083 nhg = rib_get_fib_backup_nhg(re);
4084 if (nhg && nhg->nexthop) {
00a9b150 4085 copy_nexthops(&(new_ctx->u.rinfo.zd_ng.nexthop),
3c0e1622 4086 nhg->nexthop, NULL);
00a9b150 4087 }
188a00e0
MS
4088
4089 for (ALL_NEXTHOPS(new_ctx->u.rinfo.zd_ng, nexthop))
4090 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
4091
4092 }
4093
4094 /* Capture info about the source of the notification, in 'ctx' */
4095 dplane_ctx_set_notif_provider(new_ctx,
4096 dplane_ctx_get_notif_provider(ctx));
4097
54d321aa 4098 ret = dplane_update_enqueue(new_ctx);
188a00e0
MS
4099
4100done:
54d321aa
MS
4101 if (ret == AOK)
4102 result = ZEBRA_DPLANE_REQUEST_QUEUED;
dd3b6cb5
MS
4103 else if (new_ctx)
4104 dplane_ctx_free(&new_ctx);
54d321aa
MS
4105
4106 return result;
188a00e0
MS
4107}
4108
f820d025
SW
4109/*
4110 * Enqueue a nexthop add for the dataplane.
4111 */
4112enum zebra_dplane_result dplane_nexthop_add(struct nhg_hash_entry *nhe)
4113{
4114 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
4115
4116 if (nhe)
4117 ret = dplane_nexthop_update_internal(nhe, DPLANE_OP_NH_INSTALL);
4118 return ret;
4119}
4120
4121/*
4122 * Enqueue a nexthop update for the dataplane.
81505946
SW
4123 *
4124 * Might not need this func since zebra's nexthop objects should be immutable?
f820d025
SW
4125 */
4126enum zebra_dplane_result dplane_nexthop_update(struct nhg_hash_entry *nhe)
4127{
4128 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
4129
4130 if (nhe)
4131 ret = dplane_nexthop_update_internal(nhe, DPLANE_OP_NH_UPDATE);
4132 return ret;
4133}
4134
4135/*
4136 * Enqueue a nexthop removal for the dataplane.
4137 */
4138enum zebra_dplane_result dplane_nexthop_delete(struct nhg_hash_entry *nhe)
4139{
4140 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
4141
4142 if (nhe)
4143 ret = dplane_nexthop_update_internal(nhe, DPLANE_OP_NH_DELETE);
4144
4145 return ret;
4146}
4147
16c628de
MS
4148/*
4149 * Enqueue LSP add for the dataplane.
4150 */
8f74a383 4151enum zebra_dplane_result dplane_lsp_add(struct zebra_lsp *lsp)
16c628de
MS
4152{
4153 enum zebra_dplane_result ret =
4154 lsp_update_internal(lsp, DPLANE_OP_LSP_INSTALL);
4155
4156 return ret;
4157}
4158
4159/*
4160 * Enqueue LSP update for the dataplane.
4161 */
8f74a383 4162enum zebra_dplane_result dplane_lsp_update(struct zebra_lsp *lsp)
16c628de
MS
4163{
4164 enum zebra_dplane_result ret =
4165 lsp_update_internal(lsp, DPLANE_OP_LSP_UPDATE);
4166
4167 return ret;
4168}
4169
4170/*
4171 * Enqueue LSP delete for the dataplane.
4172 */
8f74a383 4173enum zebra_dplane_result dplane_lsp_delete(struct zebra_lsp *lsp)
16c628de
MS
4174{
4175 enum zebra_dplane_result ret =
4176 lsp_update_internal(lsp, DPLANE_OP_LSP_DELETE);
4177
4178 return ret;
4179}
4180
188a00e0
MS
4181/* Update or un-install resulting from an async notification */
4182enum zebra_dplane_result
8f74a383 4183dplane_lsp_notif_update(struct zebra_lsp *lsp, enum dplane_op_e op,
188a00e0
MS
4184 struct zebra_dplane_ctx *notif_ctx)
4185{
4186 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
50a38e23 4187 int ret;
188a00e0 4188 struct zebra_dplane_ctx *ctx = NULL;
00a9b150 4189 struct nhlfe_list_head *head;
f2595bd5 4190 struct zebra_nhlfe *nhlfe, *new_nhlfe;
188a00e0
MS
4191
4192 /* Obtain context block */
4193 ctx = dplane_ctx_alloc();
188a00e0 4194
00a9b150 4195 /* Copy info from zebra LSP */
188a00e0
MS
4196 ret = dplane_ctx_lsp_init(ctx, op, lsp);
4197 if (ret != AOK)
4198 goto done;
4199
00a9b150
MS
4200 /* Add any installed backup nhlfes */
4201 head = &(ctx->u.lsp.backup_nhlfe_list);
4202 frr_each(nhlfe_list, head, nhlfe) {
4203
4204 if (CHECK_FLAG(nhlfe->flags, NHLFE_FLAG_INSTALLED) &&
4205 CHECK_FLAG(nhlfe->nexthop->flags, NEXTHOP_FLAG_FIB)) {
4206 new_nhlfe = zebra_mpls_lsp_add_nh(&(ctx->u.lsp),
4207 nhlfe->type,
4208 nhlfe->nexthop);
4209
4210 /* Need to copy flags too */
4211 new_nhlfe->flags = nhlfe->flags;
4212 new_nhlfe->nexthop->flags = nhlfe->nexthop->flags;
4213 }
4214 }
4215
188a00e0
MS
4216 /* Capture info about the source of the notification */
4217 dplane_ctx_set_notif_provider(
4218 ctx,
4219 dplane_ctx_get_notif_provider(notif_ctx));
4220
3fe4ccc4 4221 ret = dplane_update_enqueue(ctx);
188a00e0
MS
4222
4223done:
4224 /* Update counter */
4225 atomic_fetch_add_explicit(&zdplane_info.dg_lsps_in, 1,
4226 memory_order_relaxed);
4227
4228 if (ret == AOK)
4229 result = ZEBRA_DPLANE_REQUEST_QUEUED;
4230 else {
4231 atomic_fetch_add_explicit(&zdplane_info.dg_lsp_errors, 1,
4232 memory_order_relaxed);
4233 if (ctx)
4234 dplane_ctx_free(&ctx);
4235 }
4236 return result;
4237}
4238
97d8d05a
MS
4239/*
4240 * Enqueue pseudowire install for the dataplane.
4241 */
4242enum zebra_dplane_result dplane_pw_install(struct zebra_pw *pw)
4243{
4244 return pw_update_internal(pw, DPLANE_OP_PW_INSTALL);
4245}
4246
4247/*
4248 * Enqueue pseudowire un-install for the dataplane.
4249 */
4250enum zebra_dplane_result dplane_pw_uninstall(struct zebra_pw *pw)
4251{
4252 return pw_update_internal(pw, DPLANE_OP_PW_UNINSTALL);
4253}
4254
16c628de
MS
4255/*
4256 * Common internal LSP update utility
4257 */
8f74a383 4258static enum zebra_dplane_result lsp_update_internal(struct zebra_lsp *lsp,
16c628de
MS
4259 enum dplane_op_e op)
4260{
4261 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4262 int ret = EINVAL;
4263 struct zebra_dplane_ctx *ctx = NULL;
4264
4265 /* Obtain context block */
4266 ctx = dplane_ctx_alloc();
16c628de
MS
4267
4268 ret = dplane_ctx_lsp_init(ctx, op, lsp);
4269 if (ret != AOK)
4270 goto done;
4271
3fe4ccc4 4272 ret = dplane_update_enqueue(ctx);
16c628de
MS
4273
4274done:
4275 /* Update counter */
4276 atomic_fetch_add_explicit(&zdplane_info.dg_lsps_in, 1,
4277 memory_order_relaxed);
4278
4279 if (ret == AOK)
4280 result = ZEBRA_DPLANE_REQUEST_QUEUED;
4281 else {
4282 atomic_fetch_add_explicit(&zdplane_info.dg_lsp_errors, 1,
4283 memory_order_relaxed);
d8e479a3 4284 dplane_ctx_free(&ctx);
16c628de
MS
4285 }
4286
4287 return result;
4288}
4289
97d8d05a
MS
4290/*
4291 * Internal, common handler for pseudowire updates.
4292 */
4293static enum zebra_dplane_result pw_update_internal(struct zebra_pw *pw,
4294 enum dplane_op_e op)
4295{
4296 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4297 int ret;
4298 struct zebra_dplane_ctx *ctx = NULL;
4299
4300 ctx = dplane_ctx_alloc();
97d8d05a
MS
4301
4302 ret = dplane_ctx_pw_init(ctx, op, pw);
4303 if (ret != AOK)
4304 goto done;
4305
3fe4ccc4 4306 ret = dplane_update_enqueue(ctx);
97d8d05a
MS
4307
4308done:
4309 /* Update counter */
4310 atomic_fetch_add_explicit(&zdplane_info.dg_pws_in, 1,
4311 memory_order_relaxed);
4312
4313 if (ret == AOK)
4314 result = ZEBRA_DPLANE_REQUEST_QUEUED;
4315 else {
4316 atomic_fetch_add_explicit(&zdplane_info.dg_pw_errors, 1,
4317 memory_order_relaxed);
d8e479a3 4318 dplane_ctx_free(&ctx);
97d8d05a
MS
4319 }
4320
4321 return result;
4322}
4323
c60522f7
AK
4324/*
4325 * Enqueue access br_port update.
4326 */
4327enum zebra_dplane_result
4328dplane_br_port_update(const struct interface *ifp, bool non_df,
4329 uint32_t sph_filter_cnt,
4330 const struct in_addr *sph_filters, uint32_t backup_nhg_id)
4331{
4332 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4333 uint32_t flags = 0;
4334 int ret;
4335 struct zebra_dplane_ctx *ctx = NULL;
4336 struct zebra_ns *zns;
4337 enum dplane_op_e op = DPLANE_OP_BR_PORT_UPDATE;
4338
4339 if (non_df)
4340 flags |= DPLANE_BR_PORT_NON_DF;
4341
28e80a03 4342 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL || IS_ZEBRA_DEBUG_EVPN_MH_ES) {
c60522f7
AK
4343 uint32_t i;
4344 char vtep_str[ES_VTEP_LIST_STR_SZ];
4345
4346 vtep_str[0] = '\0';
4347 for (i = 0; i < sph_filter_cnt; ++i) {
4348 snprintfrr(vtep_str + strlen(vtep_str),
4349 sizeof(vtep_str) - strlen(vtep_str), "%pI4 ",
4350 &sph_filters[i]);
4351 }
4352 zlog_debug(
4353 "init br_port ctx %s: ifp %s, flags 0x%x backup_nhg 0x%x sph %s",
4354 dplane_op2str(op), ifp->name, flags, backup_nhg_id,
4355 vtep_str);
4356 }
4357
4358 ctx = dplane_ctx_alloc();
4359
4360 ctx->zd_op = op;
4361 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
096f7609 4362 ctx->zd_vrf_id = ifp->vrf->vrf_id;
c60522f7 4363
096f7609 4364 zns = zebra_ns_lookup(ifp->vrf->vrf_id);
c60522f7
AK
4365 dplane_ctx_ns_init(ctx, zns, false);
4366
4367 ctx->zd_ifindex = ifp->ifindex;
4368 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
4369
4370 /* Init the br-port-specific data area */
4371 memset(&ctx->u.br_port, 0, sizeof(ctx->u.br_port));
4372
4373 ctx->u.br_port.flags = flags;
4374 ctx->u.br_port.backup_nhg_id = backup_nhg_id;
4375 ctx->u.br_port.sph_filter_cnt = sph_filter_cnt;
4376 memcpy(ctx->u.br_port.sph_filters, sph_filters,
4377 sizeof(ctx->u.br_port.sph_filters[0]) * sph_filter_cnt);
4378
4379 /* Enqueue for processing on the dplane pthread */
4380 ret = dplane_update_enqueue(ctx);
4381
4382 /* Increment counter */
4383 atomic_fetch_add_explicit(&zdplane_info.dg_br_port_in, 1,
4384 memory_order_relaxed);
4385
4386 if (ret == AOK) {
4387 result = ZEBRA_DPLANE_REQUEST_QUEUED;
4388 } else {
4389 /* Error counter */
4390 atomic_fetch_add_explicit(&zdplane_info.dg_br_port_errors, 1,
4391 memory_order_relaxed);
4392 dplane_ctx_free(&ctx);
4393 }
4394
4395 return result;
4396}
4397
39ffa8e8
DS
4398enum zebra_dplane_result
4399dplane_intf_mpls_modify_state(const struct interface *ifp, bool set)
4400{
4401 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4402 struct zebra_dplane_ctx *ctx;
4403 struct zebra_ns *zns;
4404 int ret = EINVAL;
4405
4406 ctx = dplane_ctx_alloc();
4407 ctx->zd_op = DPLANE_OP_INTF_NETCONFIG;
4408 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
4409 ctx->zd_vrf_id = ifp->vrf->vrf_id;
4410 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
4411
4412 zns = zebra_ns_lookup(ifp->vrf->vrf_id);
4413 dplane_ctx_ns_init(ctx, zns, false);
4414
4415 ctx->zd_ifindex = ifp->ifindex;
4416 if (set)
4417 dplane_ctx_set_netconf_mpls(ctx, DPLANE_NETCONF_STATUS_ENABLED);
4418 else
4419 dplane_ctx_set_netconf_mpls(ctx,
4420 DPLANE_NETCONF_STATUS_DISABLED);
4421 /* Increment counter */
4422 atomic_fetch_add_explicit(&zdplane_info.dg_intf_changes, 1,
4423 memory_order_relaxed);
4424
4425 ret = dplane_update_enqueue(ctx);
4426
4427 if (ret == AOK)
4428 result = ZEBRA_DPLANE_REQUEST_QUEUED;
4429 else {
4430 /* Error counter */
4431 atomic_fetch_add_explicit(&zdplane_info.dg_intf_changes_errors,
4432 1, memory_order_relaxed);
4433 dplane_ctx_free(&ctx);
4434 }
4435
4436 return result;
4437}
4438
a4a4802a
MS
4439/*
4440 * Enqueue interface address add for the dataplane.
4441 */
4442enum zebra_dplane_result dplane_intf_addr_set(const struct interface *ifp,
4443 const struct connected *ifc)
4444{
64168803
MS
4445#if !defined(HAVE_NETLINK) && defined(HAVE_STRUCT_IFALIASREQ)
4446 /* Extra checks for this OS path. */
4447
4448 /* Don't configure PtP addresses on broadcast ifs or reverse */
4449 if (!(ifp->flags & IFF_POINTOPOINT) != !CONNECTED_PEER(ifc)) {
4450 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_DPLANE)
4451 zlog_debug("Failed to set intf addr: mismatch p2p and connected");
4452
4453 return ZEBRA_DPLANE_REQUEST_FAILURE;
4454 }
64168803
MS
4455#endif
4456
4457 return intf_addr_update_internal(ifp, ifc, DPLANE_OP_ADDR_INSTALL);
a4a4802a
MS
4458}
4459
4460/*
4461 * Enqueue interface address remove/uninstall for the dataplane.
4462 */
4463enum zebra_dplane_result dplane_intf_addr_unset(const struct interface *ifp,
4464 const struct connected *ifc)
4465{
64168803
MS
4466 return intf_addr_update_internal(ifp, ifc, DPLANE_OP_ADDR_UNINSTALL);
4467}
4468
4469static enum zebra_dplane_result intf_addr_update_internal(
4470 const struct interface *ifp, const struct connected *ifc,
4471 enum dplane_op_e op)
4472{
4473 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4474 int ret = EINVAL;
4475 struct zebra_dplane_ctx *ctx = NULL;
4476 struct zebra_ns *zns;
4477
2dbe669b
DA
4478 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
4479 zlog_debug("init intf ctx %s: idx %d, addr %u:%pFX",
096f7609 4480 dplane_op2str(op), ifp->ifindex, ifp->vrf->vrf_id,
2dbe669b 4481 ifc->address);
64168803
MS
4482
4483 ctx = dplane_ctx_alloc();
64168803
MS
4484
4485 ctx->zd_op = op;
4486 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
096f7609 4487 ctx->zd_vrf_id = ifp->vrf->vrf_id;
64168803 4488
096f7609 4489 zns = zebra_ns_lookup(ifp->vrf->vrf_id);
64168803
MS
4490 dplane_ctx_ns_init(ctx, zns, false);
4491
4492 /* Init the interface-addr-specific area */
4493 memset(&ctx->u.intf, 0, sizeof(ctx->u.intf));
4494
7c7ef4a8
MS
4495 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
4496 ctx->zd_ifindex = ifp->ifindex;
64168803
MS
4497 ctx->u.intf.prefix = *(ifc->address);
4498
4499 if (if_is_broadcast(ifp))
4500 ctx->u.intf.flags |= DPLANE_INTF_BROADCAST;
4501
4502 if (CONNECTED_PEER(ifc)) {
4503 ctx->u.intf.dest_prefix = *(ifc->destination);
4504 ctx->u.intf.flags |=
4505 (DPLANE_INTF_CONNECTED | DPLANE_INTF_HAS_DEST);
64168803
MS
4506 }
4507
4508 if (CHECK_FLAG(ifc->flags, ZEBRA_IFA_SECONDARY))
4509 ctx->u.intf.flags |= DPLANE_INTF_SECONDARY;
4510
4511 if (ifc->label) {
4512 size_t len;
4513
4514 ctx->u.intf.flags |= DPLANE_INTF_HAS_LABEL;
4515
4516 /* Use embedded buffer if it's adequate; else allocate. */
4517 len = strlen(ifc->label);
4518
4519 if (len < sizeof(ctx->u.intf.label_buf)) {
b7b7bf31 4520 strlcpy(ctx->u.intf.label_buf, ifc->label,
64168803
MS
4521 sizeof(ctx->u.intf.label_buf));
4522 ctx->u.intf.label = ctx->u.intf.label_buf;
4523 } else {
b6b6e59c 4524 ctx->u.intf.label = XSTRDUP(MTYPE_DP_CTX, ifc->label);
64168803
MS
4525 }
4526 }
4527
3fe4ccc4 4528 ret = dplane_update_enqueue(ctx);
64168803 4529
64168803
MS
4530 /* Increment counter */
4531 atomic_fetch_add_explicit(&zdplane_info.dg_intf_addrs_in, 1,
4532 memory_order_relaxed);
4533
4534 if (ret == AOK)
4535 result = ZEBRA_DPLANE_REQUEST_QUEUED;
4536 else {
4537 /* Error counter */
4538 atomic_fetch_add_explicit(&zdplane_info.dg_intf_addr_errors,
4539 1, memory_order_relaxed);
d8e479a3 4540 dplane_ctx_free(&ctx);
64168803
MS
4541 }
4542
4543 return result;
a4a4802a
MS
4544}
4545
5d414138
SW
4546/**
4547 * dplane_intf_update_internal() - Helper for enqueuing interface changes
4548 *
4549 * @ifp: Interface where the change occured
4550 * @op: The operation to be enqued
4551 *
4552 * Return: Result of the change
4553 */
4554static enum zebra_dplane_result
4555dplane_intf_update_internal(const struct interface *ifp, enum dplane_op_e op)
4556{
4557 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
50a38e23 4558 int ret;
5d414138
SW
4559 struct zebra_dplane_ctx *ctx = NULL;
4560
4561 /* Obtain context block */
4562 ctx = dplane_ctx_alloc();
5d414138
SW
4563
4564 ret = dplane_ctx_intf_init(ctx, op, ifp);
4565 if (ret == AOK)
4566 ret = dplane_update_enqueue(ctx);
4567
5d414138
SW
4568 /* Update counter */
4569 atomic_fetch_add_explicit(&zdplane_info.dg_intfs_in, 1,
4570 memory_order_relaxed);
4571
4572 if (ret == AOK)
4573 result = ZEBRA_DPLANE_REQUEST_QUEUED;
4574 else {
4575 atomic_fetch_add_explicit(&zdplane_info.dg_intf_errors, 1,
4576 memory_order_relaxed);
4577 if (ctx)
4578 dplane_ctx_free(&ctx);
4579 }
4580
4581 return result;
4582}
4583
4584/*
4585 * Enqueue a interface add for the dataplane.
4586 */
4587enum zebra_dplane_result dplane_intf_add(const struct interface *ifp)
4588{
4589 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
4590
4591 if (ifp)
4592 ret = dplane_intf_update_internal(ifp, DPLANE_OP_INTF_INSTALL);
4593 return ret;
4594}
4595
4596/*
4597 * Enqueue a interface update for the dataplane.
4598 */
4599enum zebra_dplane_result dplane_intf_update(const struct interface *ifp)
4600{
4601 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
4602
4603 if (ifp)
4604 ret = dplane_intf_update_internal(ifp, DPLANE_OP_INTF_UPDATE);
4605 return ret;
4606}
4607
4608/*
4609 * Enqueue a interface delete for the dataplane.
4610 */
4611enum zebra_dplane_result dplane_intf_delete(const struct interface *ifp)
4612{
4613 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
4614
4615 if (ifp)
4616 ret = dplane_intf_update_internal(ifp, DPLANE_OP_INTF_DELETE);
4617 return ret;
4618}
4619
7597ac7b
MS
4620/*
4621 * Enqueue vxlan/evpn mac add (or update).
4622 */
b95ce8fa
SR
4623enum zebra_dplane_result
4624dplane_rem_mac_add(const struct interface *ifp,
4625 const struct interface *bridge_ifp, vlanid_t vid,
4626 const struct ethaddr *mac, vni_t vni, struct in_addr vtep_ip,
4627 bool sticky, uint32_t nhg_id, bool was_static)
7597ac7b
MS
4628{
4629 enum zebra_dplane_result result;
f188e68e
AK
4630 uint32_t update_flags = 0;
4631
4632 update_flags |= DPLANE_MAC_REMOTE;
4633 if (was_static)
4634 update_flags |= DPLANE_MAC_WAS_STATIC;
7597ac7b
MS
4635
4636 /* Use common helper api */
b95ce8fa
SR
4637 result = mac_update_common(DPLANE_OP_MAC_INSTALL, ifp, bridge_ifp, vid,
4638 mac, vni, vtep_ip, sticky, nhg_id,
4639 update_flags);
7597ac7b
MS
4640 return result;
4641}
4642
4643/*
4644 * Enqueue vxlan/evpn mac delete.
4645 */
f188e68e 4646enum zebra_dplane_result dplane_rem_mac_del(const struct interface *ifp,
b95ce8fa
SR
4647 const struct interface *bridge_ifp,
4648 vlanid_t vid,
4649 const struct ethaddr *mac,
4650 vni_t vni, struct in_addr vtep_ip)
7597ac7b
MS
4651{
4652 enum zebra_dplane_result result;
f188e68e
AK
4653 uint32_t update_flags = 0;
4654
4655 update_flags |= DPLANE_MAC_REMOTE;
7597ac7b
MS
4656
4657 /* Use common helper api */
b95ce8fa
SR
4658 result = mac_update_common(DPLANE_OP_MAC_DELETE, ifp, bridge_ifp, vid,
4659 mac, vni, vtep_ip, false, 0, update_flags);
f188e68e
AK
4660 return result;
4661}
4662
0a27a2fe
PG
4663/*
4664 * API to configure link local with either MAC address or IP information
4665 */
4666enum zebra_dplane_result dplane_neigh_ip_update(enum dplane_op_e op,
4667 const struct interface *ifp,
4668 struct ipaddr *link_ip,
4669 struct ipaddr *ip,
d603c077 4670 uint32_t ndm_state, int protocol)
0a27a2fe
PG
4671{
4672 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4673 uint16_t state = 0;
4674 uint32_t update_flags;
4675
80ff3f05
MS
4676 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
4677 zlog_debug("%s: init link ctx %s: ifp %s, link_ip %pIA ip %pIA",
4678 __func__, dplane_op2str(op), ifp->name, link_ip, ip);
0a27a2fe 4679
d603c077
PG
4680 if (ndm_state == ZEBRA_NEIGH_STATE_REACHABLE)
4681 state = DPLANE_NUD_REACHABLE;
4682 else if (ndm_state == ZEBRA_NEIGH_STATE_FAILED)
0a27a2fe
PG
4683 state = DPLANE_NUD_FAILED;
4684
4685 update_flags = DPLANE_NEIGH_NO_EXTENSION;
4686
4687 result = neigh_update_internal(op, ifp, (const void *)link_ip,
0e44c00d 4688 ipaddr_family(link_ip), ip, 0, 0, state,
0a27a2fe
PG
4689 update_flags, protocol);
4690
4691 return result;
4692}
4693
f188e68e
AK
4694/*
4695 * Enqueue local mac add (or update).
4696 */
4697enum zebra_dplane_result dplane_local_mac_add(const struct interface *ifp,
4698 const struct interface *bridge_ifp,
4699 vlanid_t vid,
4700 const struct ethaddr *mac,
4701 bool sticky,
4702 uint32_t set_static,
4703 uint32_t set_inactive)
4704{
4705 enum zebra_dplane_result result;
4706 uint32_t update_flags = 0;
4707 struct in_addr vtep_ip;
4708
4709 if (set_static)
4710 update_flags |= DPLANE_MAC_SET_STATIC;
4711
4712 if (set_inactive)
4713 update_flags |= DPLANE_MAC_SET_INACTIVE;
4714
4715 vtep_ip.s_addr = 0;
4716
4717 /* Use common helper api */
b95ce8fa
SR
4718 result = mac_update_common(DPLANE_OP_MAC_INSTALL, ifp, bridge_ifp, vid,
4719 mac, 0, vtep_ip, sticky, 0, update_flags);
7597ac7b
MS
4720 return result;
4721}
4722
00a7710c
AK
4723/*
4724 * Enqueue local mac del
4725 */
4726enum zebra_dplane_result
4727dplane_local_mac_del(const struct interface *ifp,
4728 const struct interface *bridge_ifp, vlanid_t vid,
4729 const struct ethaddr *mac)
4730{
4731 enum zebra_dplane_result result;
4732 struct in_addr vtep_ip;
4733
4734 vtep_ip.s_addr = 0;
4735
4736 /* Use common helper api */
4737 result = mac_update_common(DPLANE_OP_MAC_DELETE, ifp, bridge_ifp, vid,
b95ce8fa 4738 mac, 0, vtep_ip, false, 0, 0);
00a7710c
AK
4739 return result;
4740}
7597ac7b 4741/*
f73a8467
MS
4742 * Public api to init an empty context - either newly-allocated or
4743 * reset/cleared - for a MAC update.
7597ac7b 4744 */
b95ce8fa
SR
4745void dplane_mac_init(struct zebra_dplane_ctx *ctx, const struct interface *ifp,
4746 const struct interface *br_ifp, vlanid_t vid,
4747 const struct ethaddr *mac, vni_t vni,
4748 struct in_addr vtep_ip, bool sticky, uint32_t nhg_id,
f188e68e 4749 uint32_t update_flags)
7597ac7b 4750{
7597ac7b
MS
4751 struct zebra_ns *zns;
4752
7597ac7b 4753 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
096f7609 4754 ctx->zd_vrf_id = ifp->vrf->vrf_id;
7597ac7b 4755
096f7609 4756 zns = zebra_ns_lookup(ifp->vrf->vrf_id);
7597ac7b
MS
4757 dplane_ctx_ns_init(ctx, zns, false);
4758
4759 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
4760 ctx->zd_ifindex = ifp->ifindex;
4761
4762 /* Init the mac-specific data area */
4763 memset(&ctx->u.macinfo, 0, sizeof(ctx->u.macinfo));
4764
478566d6 4765 ctx->u.macinfo.br_ifindex = br_ifp->ifindex;
7597ac7b
MS
4766 ctx->u.macinfo.vtep_ip = vtep_ip;
4767 ctx->u.macinfo.mac = *mac;
b95ce8fa 4768 ctx->u.macinfo.vni = vni;
7597ac7b
MS
4769 ctx->u.macinfo.vid = vid;
4770 ctx->u.macinfo.is_sticky = sticky;
506efd37 4771 ctx->u.macinfo.nhg_id = nhg_id;
f188e68e 4772 ctx->u.macinfo.update_flags = update_flags;
f73a8467
MS
4773}
4774
4775/*
4776 * Common helper api for MAC address/vxlan updates
4777 */
4778static enum zebra_dplane_result
b95ce8fa
SR
4779mac_update_common(enum dplane_op_e op, const struct interface *ifp,
4780 const struct interface *br_ifp, vlanid_t vid,
4781 const struct ethaddr *mac, vni_t vni, struct in_addr vtep_ip,
4782 bool sticky, uint32_t nhg_id, uint32_t update_flags)
f73a8467
MS
4783{
4784 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4785 int ret;
4786 struct zebra_dplane_ctx *ctx = NULL;
4787
ef7b8be4
DL
4788 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
4789 zlog_debug("init mac ctx %s: mac %pEA, ifp %s, vtep %pI4",
4790 dplane_op2str(op), mac, ifp->name, &vtep_ip);
f73a8467
MS
4791
4792 ctx = dplane_ctx_alloc();
4793 ctx->zd_op = op;
4794
4795 /* Common init for the ctx */
b95ce8fa 4796 dplane_mac_init(ctx, ifp, br_ifp, vid, mac, vni, vtep_ip, sticky,
f188e68e 4797 nhg_id, update_flags);
7597ac7b
MS
4798
4799 /* Enqueue for processing on the dplane pthread */
4800 ret = dplane_update_enqueue(ctx);
4801
4802 /* Increment counter */
4803 atomic_fetch_add_explicit(&zdplane_info.dg_macs_in, 1,
4804 memory_order_relaxed);
4805
4806 if (ret == AOK)
4807 result = ZEBRA_DPLANE_REQUEST_QUEUED;
4808 else {
4809 /* Error counter */
4810 atomic_fetch_add_explicit(&zdplane_info.dg_mac_errors, 1,
4811 memory_order_relaxed);
4812 dplane_ctx_free(&ctx);
4813 }
4814
4815 return result;
4816}
4817
931fa60c
MS
4818/*
4819 * Enqueue evpn neighbor add for the dataplane.
4820 */
f188e68e 4821enum zebra_dplane_result dplane_rem_neigh_add(const struct interface *ifp,
931fa60c
MS
4822 const struct ipaddr *ip,
4823 const struct ethaddr *mac,
f188e68e 4824 uint32_t flags, bool was_static)
931fa60c
MS
4825{
4826 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
f188e68e
AK
4827 uint32_t update_flags = 0;
4828
4829 update_flags |= DPLANE_NEIGH_REMOTE;
4830
4831 if (was_static)
4832 update_flags |= DPLANE_NEIGH_WAS_STATIC;
931fa60c 4833
0a27a2fe
PG
4834 result = neigh_update_internal(
4835 DPLANE_OP_NEIGH_INSTALL, ifp, (const void *)mac, AF_ETHERNET,
0e44c00d 4836 ip, 0, flags, DPLANE_NUD_NOARP, update_flags, 0);
f188e68e
AK
4837
4838 return result;
4839}
4840
4841/*
4842 * Enqueue local neighbor add for the dataplane.
4843 */
4844enum zebra_dplane_result dplane_local_neigh_add(const struct interface *ifp,
931fa60c
MS
4845 const struct ipaddr *ip,
4846 const struct ethaddr *mac,
f188e68e
AK
4847 bool set_router, bool set_static,
4848 bool set_inactive)
931fa60c
MS
4849{
4850 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
f188e68e
AK
4851 uint32_t update_flags = 0;
4852 uint32_t ntf = 0;
4853 uint16_t state;
4854
4855 if (set_static)
4856 update_flags |= DPLANE_NEIGH_SET_STATIC;
4857
4858 if (set_inactive) {
4859 update_flags |= DPLANE_NEIGH_SET_INACTIVE;
4860 state = DPLANE_NUD_STALE;
4861 } else {
4862 state = DPLANE_NUD_REACHABLE;
4863 }
4864
4865 if (set_router)
4866 ntf |= DPLANE_NTF_ROUTER;
931fa60c 4867
0a27a2fe 4868 result = neigh_update_internal(DPLANE_OP_NEIGH_INSTALL, ifp,
0e44c00d
SW
4869 (const void *)mac, AF_ETHERNET, ip, 0,
4870 ntf, state, update_flags, 0);
931fa60c
MS
4871
4872 return result;
4873}
4874
931fa60c
MS
4875/*
4876 * Enqueue evpn neighbor delete for the dataplane.
4877 */
f188e68e 4878enum zebra_dplane_result dplane_rem_neigh_delete(const struct interface *ifp,
931fa60c
MS
4879 const struct ipaddr *ip)
4880{
0bbd4ff4 4881 enum zebra_dplane_result result;
f188e68e
AK
4882 uint32_t update_flags = 0;
4883
4884 update_flags |= DPLANE_NEIGH_REMOTE;
931fa60c 4885
0a27a2fe 4886 result = neigh_update_internal(DPLANE_OP_NEIGH_DELETE, ifp, NULL,
0e44c00d
SW
4887 AF_ETHERNET, ip, 0, 0, 0, update_flags,
4888 0);
931fa60c
MS
4889
4890 return result;
4891}
4892
0bbd4ff4
MS
4893/*
4894 * Enqueue evpn VTEP add for the dataplane.
4895 */
4896enum zebra_dplane_result dplane_vtep_add(const struct interface *ifp,
4897 const struct in_addr *ip,
4898 vni_t vni)
4899{
4900 enum zebra_dplane_result result;
4901 struct ethaddr mac = { {0, 0, 0, 0, 0, 0} };
4902 struct ipaddr addr;
4903
4904 if (IS_ZEBRA_DEBUG_VXLAN)
9bcef951
MS
4905 zlog_debug("Install %pI4 into flood list for VNI %u intf %s(%u)",
4906 ip, vni, ifp->name, ifp->ifindex);
0bbd4ff4
MS
4907
4908 SET_IPADDR_V4(&addr);
4909 addr.ipaddr_v4 = *ip;
4910
0a27a2fe 4911 result = neigh_update_internal(DPLANE_OP_VTEP_ADD, ifp, &mac,
0e44c00d 4912 AF_ETHERNET, &addr, vni, 0, 0, 0, 0);
0bbd4ff4
MS
4913
4914 return result;
4915}
4916
4917/*
4918 * Enqueue evpn VTEP add for the dataplane.
4919 */
4920enum zebra_dplane_result dplane_vtep_delete(const struct interface *ifp,
4921 const struct in_addr *ip,
4922 vni_t vni)
4923{
4924 enum zebra_dplane_result result;
4925 struct ethaddr mac = { {0, 0, 0, 0, 0, 0} };
4926 struct ipaddr addr;
4927
4928 if (IS_ZEBRA_DEBUG_VXLAN)
4929 zlog_debug(
9bcef951
MS
4930 "Uninstall %pI4 from flood list for VNI %u intf %s(%u)",
4931 ip, vni, ifp->name, ifp->ifindex);
0bbd4ff4
MS
4932
4933 SET_IPADDR_V4(&addr);
4934 addr.ipaddr_v4 = *ip;
4935
0a27a2fe
PG
4936 result = neigh_update_internal(DPLANE_OP_VTEP_DELETE, ifp,
4937 (const void *)&mac, AF_ETHERNET, &addr,
0e44c00d 4938 vni, 0, 0, 0, 0);
0bbd4ff4
MS
4939
4940 return result;
4941}
4942
d68e74b4
JU
4943enum zebra_dplane_result dplane_neigh_discover(const struct interface *ifp,
4944 const struct ipaddr *ip)
4945{
4946 enum zebra_dplane_result result;
4947
0a27a2fe 4948 result = neigh_update_internal(DPLANE_OP_NEIGH_DISCOVER, ifp, NULL,
0e44c00d 4949 AF_ETHERNET, ip, 0, DPLANE_NTF_USE,
88217099 4950 DPLANE_NUD_INCOMPLETE, 0, 0);
d68e74b4
JU
4951
4952 return result;
4953}
4954
e18747a9
PG
4955enum zebra_dplane_result dplane_neigh_table_update(const struct interface *ifp,
4956 const uint8_t family,
4957 const uint32_t app_probes,
4958 const uint32_t ucast_probes,
4959 const uint32_t mcast_probes)
4960{
4961 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
4962 int ret;
4963 struct zebra_dplane_ctx *ctx = NULL;
4964 struct zebra_ns *zns;
4965 enum dplane_op_e op = DPLANE_OP_NEIGH_TABLE_UPDATE;
4966
4967 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
4968 zlog_debug("set neigh ctx %s: ifp %s, family %s",
4969 dplane_op2str(op), ifp->name, family2str(family));
4970 }
4971
4972 ctx = dplane_ctx_alloc();
4973
4974 ctx->zd_op = op;
4975 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
096f7609 4976 ctx->zd_vrf_id = ifp->vrf->vrf_id;
e18747a9 4977
096f7609 4978 zns = zebra_ns_lookup(ifp->vrf->vrf_id);
e18747a9
PG
4979 dplane_ctx_ns_init(ctx, zns, false);
4980
4981 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
4982 ctx->zd_ifindex = ifp->ifindex;
4983
4984 /* Init the neighbor-specific data area */
4985 memset(&ctx->u.neightable, 0, sizeof(ctx->u.neightable));
4986
4987 ctx->u.neightable.family = family;
4988 ctx->u.neightable.app_probes = app_probes;
4989 ctx->u.neightable.ucast_probes = ucast_probes;
4990 ctx->u.neightable.mcast_probes = mcast_probes;
4991
4992 /* Enqueue for processing on the dplane pthread */
4993 ret = dplane_update_enqueue(ctx);
4994
4995 /* Increment counter */
4996 atomic_fetch_add_explicit(&zdplane_info.dg_neightable_in, 1,
4997 memory_order_relaxed);
4998
4999 if (ret == AOK)
5000 result = ZEBRA_DPLANE_REQUEST_QUEUED;
5001 else {
5002 /* Error counter */
5003 atomic_fetch_add_explicit(&zdplane_info.dg_neightable_errors, 1,
5004 memory_order_relaxed);
5005 dplane_ctx_free(&ctx);
5006 }
5007
5008 return result;
5009}
5010
931fa60c 5011/*
d68e74b4 5012 * Common helper api for neighbor updates
931fa60c
MS
5013 */
5014static enum zebra_dplane_result
0a27a2fe
PG
5015neigh_update_internal(enum dplane_op_e op, const struct interface *ifp,
5016 const void *link, const int link_family,
0e44c00d
SW
5017 const struct ipaddr *ip, vni_t vni, uint32_t flags,
5018 uint16_t state, uint32_t update_flags, int protocol)
931fa60c
MS
5019{
5020 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
5021 int ret;
5022 struct zebra_dplane_ctx *ctx = NULL;
5023 struct zebra_ns *zns;
0a27a2fe
PG
5024 const struct ethaddr *mac = NULL;
5025 const struct ipaddr *link_ip = NULL;
931fa60c 5026
0a27a2fe
PG
5027 if (link_family == AF_ETHERNET)
5028 mac = (const struct ethaddr *)link;
5029 else
5030 link_ip = (const struct ipaddr *)link;
5031
5032 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
5033 char buf1[PREFIX_STRLEN];
5034
5035 buf1[0] = '\0';
5036 if (link_family == AF_ETHERNET)
5037 prefix_mac2str(mac, buf1, sizeof(buf1));
5038 else
5039 ipaddr2str(link_ip, buf1, sizeof(buf1));
5040 zlog_debug("init neigh ctx %s: ifp %s, %s %s, ip %pIA",
5041 dplane_op2str(op), ifp->name,
64a29a00 5042 link_family == AF_ETHERNET ? "mac" : "link", buf1,
5043 ip);
0a27a2fe 5044 }
931fa60c
MS
5045
5046 ctx = dplane_ctx_alloc();
5047
5048 ctx->zd_op = op;
5049 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
096f7609 5050 ctx->zd_vrf_id = ifp->vrf->vrf_id;
0a27a2fe 5051 dplane_ctx_set_type(ctx, protocol);
931fa60c 5052
096f7609 5053 zns = zebra_ns_lookup(ifp->vrf->vrf_id);
931fa60c
MS
5054 dplane_ctx_ns_init(ctx, zns, false);
5055
5056 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
5057 ctx->zd_ifindex = ifp->ifindex;
5058
5059 /* Init the neighbor-specific data area */
5060 memset(&ctx->u.neigh, 0, sizeof(ctx->u.neigh));
5061
5062 ctx->u.neigh.ip_addr = *ip;
5063 if (mac)
0a27a2fe
PG
5064 ctx->u.neigh.link.mac = *mac;
5065 else if (link_ip)
5066 ctx->u.neigh.link.ip_addr = *link_ip;
5067
931fa60c 5068 ctx->u.neigh.flags = flags;
0e44c00d 5069 ctx->u.neigh.vni = vni;
931fa60c 5070 ctx->u.neigh.state = state;
f188e68e 5071 ctx->u.neigh.update_flags = update_flags;
931fa60c
MS
5072
5073 /* Enqueue for processing on the dplane pthread */
5074 ret = dplane_update_enqueue(ctx);
5075
5076 /* Increment counter */
5077 atomic_fetch_add_explicit(&zdplane_info.dg_neighs_in, 1,
5078 memory_order_relaxed);
5079
5080 if (ret == AOK)
5081 result = ZEBRA_DPLANE_REQUEST_QUEUED;
5082 else {
5083 /* Error counter */
5084 atomic_fetch_add_explicit(&zdplane_info.dg_neigh_errors, 1,
5085 memory_order_relaxed);
5086 dplane_ctx_free(&ctx);
5087 }
5088
5089 return result;
5090}
5091
f62e5480
JU
5092/*
5093 * Common helper api for PBR rule updates
5094 */
5095static enum zebra_dplane_result
5096rule_update_internal(enum dplane_op_e op, struct zebra_pbr_rule *new_rule,
5097 struct zebra_pbr_rule *old_rule)
5098{
5099 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
5100 struct zebra_dplane_ctx *ctx;
5101 int ret;
5102
5103 ctx = dplane_ctx_alloc();
5104
5105 ret = dplane_ctx_rule_init(ctx, op, new_rule, old_rule);
5106 if (ret != AOK)
5107 goto done;
5108
5109 ret = dplane_update_enqueue(ctx);
5110
5111done:
5112 atomic_fetch_add_explicit(&zdplane_info.dg_rules_in, 1,
5113 memory_order_relaxed);
5114
5115 if (ret == AOK)
5116 result = ZEBRA_DPLANE_REQUEST_QUEUED;
5117 else {
5118 atomic_fetch_add_explicit(&zdplane_info.dg_rule_errors, 1,
5119 memory_order_relaxed);
5120 dplane_ctx_free(&ctx);
5121 }
5122
5123 return result;
5124}
5125
5126enum zebra_dplane_result dplane_pbr_rule_add(struct zebra_pbr_rule *rule)
5127{
5128 return rule_update_internal(DPLANE_OP_RULE_ADD, rule, NULL);
5129}
5130
5131enum zebra_dplane_result dplane_pbr_rule_delete(struct zebra_pbr_rule *rule)
5132{
5133 return rule_update_internal(DPLANE_OP_RULE_DELETE, rule, NULL);
5134}
5135
5136enum zebra_dplane_result dplane_pbr_rule_update(struct zebra_pbr_rule *old_rule,
5137 struct zebra_pbr_rule *new_rule)
5138{
5139 return rule_update_internal(DPLANE_OP_RULE_UPDATE, new_rule, old_rule);
5140}
5162e000
PG
5141/*
5142 * Common helper api for iptable updates
5143 */
5144static enum zebra_dplane_result
5145iptable_update_internal(enum dplane_op_e op, struct zebra_pbr_iptable *iptable)
5146{
5147 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
5148 struct zebra_dplane_ctx *ctx;
5149 int ret;
5150
c9250e28
PG
5151 if ((op == DPLANE_OP_IPTABLE_ADD &&
5152 CHECK_FLAG(iptable->internal_flags, IPTABLE_INSTALL_QUEUED)) ||
5153 (op == DPLANE_OP_IPTABLE_DELETE &&
5154 CHECK_FLAG(iptable->internal_flags, IPTABLE_UNINSTALL_QUEUED))) {
5155 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
5156 zlog_debug(
5157 "update dplane ctx %s: iptable %s already in progress",
5158 dplane_op2str(op), iptable->ipset_name);
5159 return result;
5160 }
5161
5162e000
PG
5162 ctx = dplane_ctx_alloc();
5163
5164 ret = dplane_ctx_iptable_init(ctx, op, iptable);
5165 if (ret != AOK)
5166 goto done;
5167
5168 ret = dplane_update_enqueue(ctx);
5169
5170done:
5171 atomic_fetch_add_explicit(&zdplane_info.dg_iptable_in, 1,
5172 memory_order_relaxed);
5173
c9250e28 5174 if (ret == AOK) {
5162e000 5175 result = ZEBRA_DPLANE_REQUEST_QUEUED;
c9250e28
PG
5176 if (op == DPLANE_OP_IPTABLE_ADD)
5177 SET_FLAG(iptable->internal_flags,
5178 IPTABLE_INSTALL_QUEUED);
5179 else
5180 SET_FLAG(iptable->internal_flags,
5181 IPTABLE_UNINSTALL_QUEUED);
5182 } else {
5162e000
PG
5183 atomic_fetch_add_explicit(&zdplane_info.dg_iptable_errors, 1,
5184 memory_order_relaxed);
5185 dplane_ctx_free(&ctx);
5186 }
5162e000
PG
5187 return result;
5188}
5189
5190enum zebra_dplane_result
5191dplane_pbr_iptable_add(struct zebra_pbr_iptable *iptable)
5192{
5193 return iptable_update_internal(DPLANE_OP_IPTABLE_ADD, iptable);
5194}
5195
5196enum zebra_dplane_result
5197dplane_pbr_iptable_delete(struct zebra_pbr_iptable *iptable)
5198{
5199 return iptable_update_internal(DPLANE_OP_IPTABLE_DELETE, iptable);
5200}
f62e5480 5201
ef524230
PG
5202/*
5203 * Common helper api for ipset updates
5204 */
5205static enum zebra_dplane_result
5206ipset_update_internal(enum dplane_op_e op, struct zebra_pbr_ipset *ipset)
5207{
5208 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
5209 struct zebra_dplane_ctx *ctx;
5210 int ret;
5211
5212 ctx = dplane_ctx_alloc();
5213
5214 ret = dplane_ctx_ipset_init(ctx, op, ipset);
5215 if (ret != AOK)
5216 goto done;
5217
5218 ret = dplane_update_enqueue(ctx);
5219
5220done:
5221 atomic_fetch_add_explicit(&zdplane_info.dg_ipset_in, 1,
5222 memory_order_relaxed);
5223
5224 if (ret == AOK)
5225 result = ZEBRA_DPLANE_REQUEST_QUEUED;
5226 else {
5227 atomic_fetch_add_explicit(&zdplane_info.dg_ipset_errors, 1,
5228 memory_order_relaxed);
5229 dplane_ctx_free(&ctx);
5230 }
5231
5232 return result;
5233}
5234
5235enum zebra_dplane_result dplane_pbr_ipset_add(struct zebra_pbr_ipset *ipset)
5236{
5237 return ipset_update_internal(DPLANE_OP_IPSET_ADD, ipset);
5238}
5239
5240enum zebra_dplane_result dplane_pbr_ipset_delete(struct zebra_pbr_ipset *ipset)
5241{
5242 return ipset_update_internal(DPLANE_OP_IPSET_DELETE, ipset);
5243}
5244
5245/*
5246 * Common helper api for ipset updates
5247 */
5248static enum zebra_dplane_result
5249ipset_entry_update_internal(enum dplane_op_e op,
5250 struct zebra_pbr_ipset_entry *ipset_entry)
5251{
5252 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
5253 struct zebra_dplane_ctx *ctx;
5254 int ret;
5255
5256 ctx = dplane_ctx_alloc();
5257
5258 ret = dplane_ctx_ipset_entry_init(ctx, op, ipset_entry);
5259 if (ret != AOK)
5260 goto done;
5261
5262 ret = dplane_update_enqueue(ctx);
5263
5264done:
5265 atomic_fetch_add_explicit(&zdplane_info.dg_ipset_entry_in, 1,
5266 memory_order_relaxed);
5267
5268 if (ret == AOK)
5269 result = ZEBRA_DPLANE_REQUEST_QUEUED;
5270 else {
5271 atomic_fetch_add_explicit(&zdplane_info.dg_ipset_entry_errors,
5272 1, memory_order_relaxed);
5273 dplane_ctx_free(&ctx);
5274 }
5275
5276 return result;
5277}
5278
5279enum zebra_dplane_result
5280dplane_pbr_ipset_entry_add(struct zebra_pbr_ipset_entry *ipset)
5281{
5282 return ipset_entry_update_internal(DPLANE_OP_IPSET_ENTRY_ADD, ipset);
5283}
5284
5285enum zebra_dplane_result
5286dplane_pbr_ipset_entry_delete(struct zebra_pbr_ipset_entry *ipset)
5287{
5288 return ipset_entry_update_internal(DPLANE_OP_IPSET_ENTRY_DELETE, ipset);
5289}
5290
62b4b7e4
PG
5291/*
5292 * Common helper api for GRE set
5293 */
5294enum zebra_dplane_result
e3d3fa06
PG
5295dplane_gre_set(struct interface *ifp, struct interface *ifp_link,
5296 unsigned int mtu, const struct zebra_l2info_gre *gre_info)
62b4b7e4
PG
5297{
5298 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
5299 struct zebra_dplane_ctx *ctx;
5300 enum dplane_op_e op = DPLANE_OP_GRE_SET;
5301 int ret;
5302 struct zebra_ns *zns;
5303
5304 ctx = dplane_ctx_alloc();
5305
3e7b3ed1
DS
5306 if (!ifp) {
5307 ret = EINVAL;
5308 goto done;
5309 }
62b4b7e4
PG
5310
5311 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
5312 zlog_debug("init dplane ctx %s: if %s link %s%s",
5313 dplane_op2str(op), ifp->name,
5314 ifp_link ? "set" : "unset", ifp_link ?
5315 ifp_link->name : "");
5316 }
5317
5318 ctx->zd_op = op;
5319 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
096f7609 5320 zns = zebra_ns_lookup(ifp->vrf->vrf_id);
3e7b3ed1
DS
5321 if (!zns) {
5322 ret = EINVAL;
5323 goto done;
5324 }
5325
62b4b7e4
PG
5326 dplane_ctx_ns_init(ctx, zns, false);
5327
5328 dplane_ctx_set_ifname(ctx, ifp->name);
096f7609 5329 ctx->zd_vrf_id = ifp->vrf->vrf_id;
62b4b7e4
PG
5330 ctx->zd_ifindex = ifp->ifindex;
5331 if (ifp_link)
5332 ctx->u.gre.link_ifindex = ifp_link->ifindex;
5333 else
5334 ctx->u.gre.link_ifindex = 0;
e3d3fa06
PG
5335 if (gre_info)
5336 memcpy(&ctx->u.gre.info, gre_info, sizeof(ctx->u.gre.info));
db51f0cd
PG
5337 ctx->u.gre.mtu = mtu;
5338
62b4b7e4
PG
5339 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
5340
5341 /* Enqueue context for processing */
5342 ret = dplane_update_enqueue(ctx);
5343
3e7b3ed1 5344done:
62b4b7e4
PG
5345 /* Update counter */
5346 atomic_fetch_add_explicit(&zdplane_info.dg_gre_set_in, 1,
5347 memory_order_relaxed);
5348
5349 if (ret == AOK)
5350 result = ZEBRA_DPLANE_REQUEST_QUEUED;
5351 else {
5352 atomic_fetch_add_explicit(
5353 &zdplane_info.dg_gre_set_errors, 1,
5354 memory_order_relaxed);
6f99cfcd 5355 dplane_ctx_free(&ctx);
62b4b7e4
PG
5356 result = ZEBRA_DPLANE_REQUEST_FAILURE;
5357 }
5358 return result;
5359}
5360
1d11b21f
MS
5361/*
5362 * Handler for 'show dplane'
5363 */
5364int dplane_show_helper(struct vty *vty, bool detailed)
5365{
16c628de
MS
5366 uint64_t queued, queue_max, limit, errs, incoming, yields,
5367 other_errs;
1d11b21f 5368
4dfd7a02 5369 /* Using atomics because counters are being changed in different
c831033f 5370 * pthread contexts.
4dfd7a02 5371 */
25779064 5372 incoming = atomic_load_explicit(&zdplane_info.dg_routes_in,
1d11b21f 5373 memory_order_relaxed);
91f16812
MS
5374 limit = atomic_load_explicit(&zdplane_info.dg_max_queued_updates,
5375 memory_order_relaxed);
25779064 5376 queued = atomic_load_explicit(&zdplane_info.dg_routes_queued,
1d11b21f 5377 memory_order_relaxed);
25779064 5378 queue_max = atomic_load_explicit(&zdplane_info.dg_routes_queued_max,
4dfd7a02 5379 memory_order_relaxed);
25779064 5380 errs = atomic_load_explicit(&zdplane_info.dg_route_errors,
1d11b21f 5381 memory_order_relaxed);
c831033f
MS
5382 yields = atomic_load_explicit(&zdplane_info.dg_update_yields,
5383 memory_order_relaxed);
16c628de
MS
5384 other_errs = atomic_load_explicit(&zdplane_info.dg_other_errors,
5385 memory_order_relaxed);
1d11b21f 5386
c831033f
MS
5387 vty_out(vty, "Zebra dataplane:\nRoute updates: %"PRIu64"\n",
5388 incoming);
1d11b21f 5389 vty_out(vty, "Route update errors: %"PRIu64"\n", errs);
16c628de 5390 vty_out(vty, "Other errors : %"PRIu64"\n", other_errs);
91f16812 5391 vty_out(vty, "Route update queue limit: %"PRIu64"\n", limit);
1d11b21f 5392 vty_out(vty, "Route update queue depth: %"PRIu64"\n", queued);
4dfd7a02 5393 vty_out(vty, "Route update queue max: %"PRIu64"\n", queue_max);
4280d91c
MS
5394 vty_out(vty, "Dplane update yields: %"PRIu64"\n", yields);
5395
5396 incoming = atomic_load_explicit(&zdplane_info.dg_lsps_in,
5397 memory_order_relaxed);
5398 errs = atomic_load_explicit(&zdplane_info.dg_lsp_errors,
5399 memory_order_relaxed);
5400 vty_out(vty, "LSP updates: %"PRIu64"\n", incoming);
5401 vty_out(vty, "LSP update errors: %"PRIu64"\n", errs);
5402
5403 incoming = atomic_load_explicit(&zdplane_info.dg_pws_in,
5404 memory_order_relaxed);
5405 errs = atomic_load_explicit(&zdplane_info.dg_pw_errors,
5406 memory_order_relaxed);
5407 vty_out(vty, "PW updates: %"PRIu64"\n", incoming);
5408 vty_out(vty, "PW update errors: %"PRIu64"\n", errs);
5409
5410 incoming = atomic_load_explicit(&zdplane_info.dg_intf_addrs_in,
5411 memory_order_relaxed);
5412 errs = atomic_load_explicit(&zdplane_info.dg_intf_addr_errors,
5413 memory_order_relaxed);
5414 vty_out(vty, "Intf addr updates: %"PRIu64"\n", incoming);
5415 vty_out(vty, "Intf addr errors: %"PRIu64"\n", errs);
5416
39ffa8e8
DS
5417 incoming = atomic_load_explicit(&zdplane_info.dg_intf_changes,
5418 memory_order_relaxed);
5419 errs = atomic_load_explicit(&zdplane_info.dg_intf_changes_errors,
5420 memory_order_relaxed);
5421 vty_out(vty, "Intf change updates: %" PRIu64 "\n", incoming);
5422 vty_out(vty, "Intf change errors: %" PRIu64 "\n", errs);
5423
4280d91c
MS
5424 incoming = atomic_load_explicit(&zdplane_info.dg_macs_in,
5425 memory_order_relaxed);
5426 errs = atomic_load_explicit(&zdplane_info.dg_mac_errors,
5427 memory_order_relaxed);
5428 vty_out(vty, "EVPN MAC updates: %"PRIu64"\n", incoming);
5429 vty_out(vty, "EVPN MAC errors: %"PRIu64"\n", errs);
1d11b21f 5430
931fa60c
MS
5431 incoming = atomic_load_explicit(&zdplane_info.dg_neighs_in,
5432 memory_order_relaxed);
5433 errs = atomic_load_explicit(&zdplane_info.dg_neigh_errors,
5434 memory_order_relaxed);
5435 vty_out(vty, "EVPN neigh updates: %"PRIu64"\n", incoming);
5436 vty_out(vty, "EVPN neigh errors: %"PRIu64"\n", errs);
5437
60d8d43b
JU
5438 incoming = atomic_load_explicit(&zdplane_info.dg_rules_in,
5439 memory_order_relaxed);
5440 errs = atomic_load_explicit(&zdplane_info.dg_rule_errors,
5441 memory_order_relaxed);
5442 vty_out(vty, "Rule updates: %" PRIu64 "\n", incoming);
5443 vty_out(vty, "Rule errors: %" PRIu64 "\n", errs);
5444
c60522f7
AK
5445 incoming = atomic_load_explicit(&zdplane_info.dg_br_port_in,
5446 memory_order_relaxed);
5447 errs = atomic_load_explicit(&zdplane_info.dg_br_port_errors,
5448 memory_order_relaxed);
5449 vty_out(vty, "Bridge port updates: %" PRIu64 "\n", incoming);
5450 vty_out(vty, "Bridge port errors: %" PRIu64 "\n", errs);
5451
5162e000
PG
5452 incoming = atomic_load_explicit(&zdplane_info.dg_iptable_in,
5453 memory_order_relaxed);
5454 errs = atomic_load_explicit(&zdplane_info.dg_iptable_errors,
5455 memory_order_relaxed);
5456 vty_out(vty, "IPtable updates: %" PRIu64 "\n", incoming);
5457 vty_out(vty, "IPtable errors: %" PRIu64 "\n", errs);
ef524230
PG
5458 incoming = atomic_load_explicit(&zdplane_info.dg_ipset_in,
5459 memory_order_relaxed);
5460 errs = atomic_load_explicit(&zdplane_info.dg_ipset_errors,
5461 memory_order_relaxed);
5462 vty_out(vty, "IPset updates: %" PRIu64 "\n", incoming);
5463 vty_out(vty, "IPset errors: %" PRIu64 "\n", errs);
5464 incoming = atomic_load_explicit(&zdplane_info.dg_ipset_entry_in,
5465 memory_order_relaxed);
5466 errs = atomic_load_explicit(&zdplane_info.dg_ipset_entry_errors,
5467 memory_order_relaxed);
5468 vty_out(vty, "IPset entry updates: %" PRIu64 "\n", incoming);
5469 vty_out(vty, "IPset entry errors: %" PRIu64 "\n", errs);
e18747a9
PG
5470
5471 incoming = atomic_load_explicit(&zdplane_info.dg_neightable_in,
5472 memory_order_relaxed);
5473 errs = atomic_load_explicit(&zdplane_info.dg_neightable_errors,
5474 memory_order_relaxed);
5475 vty_out(vty, "Neighbor Table updates: %"PRIu64"\n", incoming);
5476 vty_out(vty, "Neighbor Table errors: %"PRIu64"\n", errs);
62b4b7e4
PG
5477
5478 incoming = atomic_load_explicit(&zdplane_info.dg_gre_set_in,
5479 memory_order_relaxed);
5480 errs = atomic_load_explicit(&zdplane_info.dg_gre_set_errors,
5481 memory_order_relaxed);
5482 vty_out(vty, "GRE set updates: %"PRIu64"\n", incoming);
5483 vty_out(vty, "GRE set errors: %"PRIu64"\n", errs);
1d11b21f
MS
5484 return CMD_SUCCESS;
5485}
5486
5487/*
5488 * Handler for 'show dplane providers'
5489 */
5490int dplane_show_provs_helper(struct vty *vty, bool detailed)
5491{
c831033f 5492 struct zebra_dplane_provider *prov;
a88a7c8d 5493 uint64_t in, in_q, in_max, out, out_q, out_max;
c831033f
MS
5494
5495 vty_out(vty, "Zebra dataplane providers:\n");
5496
5497 DPLANE_LOCK();
ac96497c 5498 prov = dplane_prov_list_first(&zdplane_info.dg_providers);
c831033f
MS
5499 DPLANE_UNLOCK();
5500
5501 /* Show counters, useful info from each registered provider */
5502 while (prov) {
5503
5504 in = atomic_load_explicit(&prov->dp_in_counter,
5505 memory_order_relaxed);
a88a7c8d
MS
5506 in_q = atomic_load_explicit(&prov->dp_in_queued,
5507 memory_order_relaxed);
c831033f
MS
5508 in_max = atomic_load_explicit(&prov->dp_in_max,
5509 memory_order_relaxed);
5510 out = atomic_load_explicit(&prov->dp_out_counter,
5511 memory_order_relaxed);
a88a7c8d
MS
5512 out_q = atomic_load_explicit(&prov->dp_out_queued,
5513 memory_order_relaxed);
c831033f
MS
5514 out_max = atomic_load_explicit(&prov->dp_out_max,
5515 memory_order_relaxed);
5516
a88a7c8d
MS
5517 vty_out(vty, "%s (%u): in: %"PRIu64", q: %"PRIu64", q_max: %"PRIu64", out: %"PRIu64", q: %"PRIu64", q_max: %"PRIu64"\n",
5518 prov->dp_name, prov->dp_id, in, in_q, in_max,
5519 out, out_q, out_max);
c831033f 5520
ac96497c 5521 prov = dplane_prov_list_next(&zdplane_info.dg_providers, prov);
c831033f 5522 }
1d11b21f
MS
5523
5524 return CMD_SUCCESS;
5525}
5526
f26730e1
MS
5527/*
5528 * Helper for 'show run' etc.
5529 */
5530int dplane_config_write_helper(struct vty *vty)
5531{
5532 if (zdplane_info.dg_max_queued_updates != DPLANE_DEFAULT_MAX_QUEUED)
5533 vty_out(vty, "zebra dplane limit %u\n",
5534 zdplane_info.dg_max_queued_updates);
5535
5536 return 0;
5537}
5538
b8e0423d
MS
5539/*
5540 * Provider registration
5541 */
5542int dplane_provider_register(const char *name,
c831033f
MS
5543 enum dplane_provider_prio prio,
5544 int flags,
1dd4ea8a 5545 int (*start_fp)(struct zebra_dplane_provider *),
4c206c8f
MS
5546 int (*fp)(struct zebra_dplane_provider *),
5547 int (*fini_fp)(struct zebra_dplane_provider *,
5548 bool early),
1ff8a248
MS
5549 void *data,
5550 struct zebra_dplane_provider **prov_p)
b8e0423d
MS
5551{
5552 int ret = 0;
6fb51ccb 5553 struct zebra_dplane_provider *p = NULL, *last;
b8e0423d
MS
5554
5555 /* Validate */
5556 if (fp == NULL) {
5557 ret = EINVAL;
5558 goto done;
5559 }
5560
5561 if (prio <= DPLANE_PRIO_NONE ||
1bcea841 5562 prio > DPLANE_PRIO_LAST) {
b8e0423d
MS
5563 ret = EINVAL;
5564 goto done;
5565 }
5566
5567 /* Allocate and init new provider struct */
25779064 5568 p = XCALLOC(MTYPE_DP_PROV, sizeof(struct zebra_dplane_provider));
b8e0423d 5569
c831033f 5570 pthread_mutex_init(&(p->dp_mutex), NULL);
ac96497c
MS
5571 dplane_ctx_list_init(&p->dp_ctx_in_list);
5572 dplane_ctx_list_init(&p->dp_ctx_out_list);
b8e0423d 5573
932dbb4d 5574 p->dp_flags = flags;
b8e0423d
MS
5575 p->dp_priority = prio;
5576 p->dp_fp = fp;
1dd4ea8a 5577 p->dp_start = start_fp;
18c37974 5578 p->dp_fini = fini_fp;
c831033f 5579 p->dp_data = data;
18c37974 5580
c831033f 5581 /* Lock - the dplane pthread may be running */
18c37974 5582 DPLANE_LOCK();
b8e0423d 5583
25779064 5584 p->dp_id = ++zdplane_info.dg_provider_id;
b8e0423d 5585
c831033f
MS
5586 if (name)
5587 strlcpy(p->dp_name, name, DPLANE_PROVIDER_NAMELEN);
5588 else
5589 snprintf(p->dp_name, DPLANE_PROVIDER_NAMELEN,
5590 "provider-%u", p->dp_id);
5591
b8e0423d 5592 /* Insert into list ordered by priority */
ac96497c 5593 frr_each (dplane_prov_list, &zdplane_info.dg_providers, last) {
5709131c 5594 if (last->dp_priority > p->dp_priority)
b8e0423d 5595 break;
b8e0423d
MS
5596 }
5597
5709131c 5598 if (last)
ac96497c 5599 dplane_prov_list_add_after(&zdplane_info.dg_providers, last, p);
5709131c 5600 else
ac96497c 5601 dplane_prov_list_add_tail(&zdplane_info.dg_providers, p);
b8e0423d 5602
18c37974
MS
5603 /* And unlock */
5604 DPLANE_UNLOCK();
5605
c831033f
MS
5606 if (IS_ZEBRA_DEBUG_DPLANE)
5607 zlog_debug("dplane: registered new provider '%s' (%u), prio %d",
5608 p->dp_name, p->dp_id, p->dp_priority);
5609
b8e0423d 5610done:
1ff8a248
MS
5611 if (prov_p)
5612 *prov_p = p;
5613
5709131c 5614 return ret;
b8e0423d
MS
5615}
5616
c831033f
MS
5617/* Accessors for provider attributes */
5618const char *dplane_provider_get_name(const struct zebra_dplane_provider *prov)
5619{
5620 return prov->dp_name;
5621}
5622
5623uint32_t dplane_provider_get_id(const struct zebra_dplane_provider *prov)
5624{
5625 return prov->dp_id;
5626}
5627
5628void *dplane_provider_get_data(const struct zebra_dplane_provider *prov)
5629{
5630 return prov->dp_data;
5631}
5632
5633int dplane_provider_get_work_limit(const struct zebra_dplane_provider *prov)
5634{
5635 return zdplane_info.dg_updates_per_cycle;
5636}
5637
ad6aad4d
MS
5638/* Lock/unlock a provider's mutex - iff the provider was registered with
5639 * the THREADED flag.
5640 */
5641void dplane_provider_lock(struct zebra_dplane_provider *prov)
5642{
5643 if (dplane_provider_is_threaded(prov))
5644 DPLANE_PROV_LOCK(prov);
5645}
5646
5647void dplane_provider_unlock(struct zebra_dplane_provider *prov)
5648{
5649 if (dplane_provider_is_threaded(prov))
5650 DPLANE_PROV_UNLOCK(prov);
5651}
5652
c831033f
MS
5653/*
5654 * Dequeue and maintain associated counter
5655 */
5656struct zebra_dplane_ctx *dplane_provider_dequeue_in_ctx(
5657 struct zebra_dplane_provider *prov)
5658{
5659 struct zebra_dplane_ctx *ctx = NULL;
5660
ad6aad4d 5661 dplane_provider_lock(prov);
c831033f 5662
ac96497c 5663 ctx = dplane_ctx_list_pop(&(prov->dp_ctx_in_list));
c831033f 5664 if (ctx) {
c9d17fe8
MS
5665 atomic_fetch_sub_explicit(&prov->dp_in_queued, 1,
5666 memory_order_relaxed);
c831033f
MS
5667 }
5668
ad6aad4d 5669 dplane_provider_unlock(prov);
c831033f
MS
5670
5671 return ctx;
5672}
5673
5674/*
5675 * Dequeue work to a list, return count
5676 */
5677int dplane_provider_dequeue_in_list(struct zebra_dplane_provider *prov,
ac96497c 5678 struct dplane_ctx_list_head *listp)
c831033f
MS
5679{
5680 int limit, ret;
5681 struct zebra_dplane_ctx *ctx;
5682
5683 limit = zdplane_info.dg_updates_per_cycle;
5684
ad6aad4d 5685 dplane_provider_lock(prov);
c831033f
MS
5686
5687 for (ret = 0; ret < limit; ret++) {
ac96497c
MS
5688 ctx = dplane_ctx_list_pop(&(prov->dp_ctx_in_list));
5689 if (ctx)
5690 dplane_ctx_list_add_tail(listp, ctx);
5691 else
c831033f 5692 break;
c831033f
MS
5693 }
5694
c9d17fe8
MS
5695 if (ret > 0)
5696 atomic_fetch_sub_explicit(&prov->dp_in_queued, ret,
5697 memory_order_relaxed);
5698
ad6aad4d 5699 dplane_provider_unlock(prov);
c831033f
MS
5700
5701 return ret;
5702}
5703
53706b4e
DE
5704uint32_t dplane_provider_out_ctx_queue_len(struct zebra_dplane_provider *prov)
5705{
5706 return atomic_load_explicit(&(prov->dp_out_counter),
5707 memory_order_relaxed);
5708}
5709
c831033f
MS
5710/*
5711 * Enqueue and maintain associated counter
5712 */
5713void dplane_provider_enqueue_out_ctx(struct zebra_dplane_provider *prov,
5714 struct zebra_dplane_ctx *ctx)
5715{
a88a7c8d
MS
5716 uint64_t curr, high;
5717
ad6aad4d 5718 dplane_provider_lock(prov);
c831033f 5719
ac96497c 5720 dplane_ctx_list_add_tail(&(prov->dp_ctx_out_list), ctx);
c831033f 5721
a88a7c8d
MS
5722 /* Maintain out-queue counters */
5723 atomic_fetch_add_explicit(&(prov->dp_out_queued), 1,
5724 memory_order_relaxed);
5725 curr = atomic_load_explicit(&prov->dp_out_queued,
5726 memory_order_relaxed);
5727 high = atomic_load_explicit(&prov->dp_out_max,
5728 memory_order_relaxed);
5729 if (curr > high)
5730 atomic_store_explicit(&prov->dp_out_max, curr,
5731 memory_order_relaxed);
5732
ad6aad4d 5733 dplane_provider_unlock(prov);
c831033f
MS
5734
5735 atomic_fetch_add_explicit(&(prov->dp_out_counter), 1,
5736 memory_order_relaxed);
5737}
5738
62b8bb7a
MS
5739/*
5740 * Accessor for provider object
5741 */
c831033f
MS
5742bool dplane_provider_is_threaded(const struct zebra_dplane_provider *prov)
5743{
5744 return (prov->dp_flags & DPLANE_PROV_FLAG_THREADED);
5745}
5746
d166308b
MS
5747#ifdef HAVE_NETLINK
5748/*
5749 * Callback when an OS (netlink) incoming event read is ready. This runs
5750 * in the dplane pthread.
5751 */
e6685141 5752static void dplane_incoming_read(struct event *event)
d166308b 5753{
e16d030c 5754 struct dplane_zns_info *zi = EVENT_ARG(event);
d166308b
MS
5755
5756 kernel_dplane_read(&zi->info);
5757
5758 /* Re-start read task */
907a2395
DS
5759 event_add_read(zdplane_info.dg_master, dplane_incoming_read, zi,
5760 zi->info.sock, &zi->t_read);
d166308b 5761}
cd787a8a
MS
5762
5763/*
5764 * Callback in the dataplane pthread that requests info from the OS and
5765 * initiates netlink reads.
5766 */
e6685141 5767static void dplane_incoming_request(struct event *event)
cd787a8a 5768{
e16d030c 5769 struct dplane_zns_info *zi = EVENT_ARG(event);
cd787a8a
MS
5770
5771 /* Start read task */
907a2395
DS
5772 event_add_read(zdplane_info.dg_master, dplane_incoming_read, zi,
5773 zi->info.sock, &zi->t_read);
cd787a8a
MS
5774
5775 /* Send requests */
5776 netlink_request_netconf(zi->info.sock);
5777}
5778
5779/*
5780 * Initiate requests for existing info from the OS. This is called by the
5781 * main pthread, but we want all activity on the dplane netlink socket to
5782 * take place on the dplane pthread, so we schedule an event to accomplish
5783 * that.
5784 */
5785static void dplane_kernel_info_request(struct dplane_zns_info *zi)
5786{
5787 /* If we happen to encounter an enabled zns before the dplane
5788 * pthread is running, we'll initiate this later on.
5789 */
5790 if (zdplane_info.dg_master)
907a2395
DS
5791 event_add_event(zdplane_info.dg_master, dplane_incoming_request,
5792 zi, 0, &zi->t_request);
cd787a8a
MS
5793}
5794
d166308b
MS
5795#endif /* HAVE_NETLINK */
5796
5797/*
5798 * Notify dplane when namespaces are enabled and disabled. The dplane
5799 * needs to start and stop reading incoming events from the zns. In the
5800 * common case where vrfs are _not_ namespaces, there will only be one
5801 * of these.
5802 *
5803 * This is called in the main pthread.
5804 */
5805void zebra_dplane_ns_enable(struct zebra_ns *zns, bool enabled)
5806{
5807 struct dplane_zns_info *zi;
5808
5809 if (IS_ZEBRA_DEBUG_DPLANE)
5810 zlog_debug("%s: %s for nsid %u", __func__,
5811 (enabled ? "ENABLED" : "DISABLED"), zns->ns_id);
5812
5813 /* Search for an existing zns info entry */
5814 frr_each (zns_info_list, &zdplane_info.dg_zns_list, zi) {
5815 if (zi->info.ns_id == zns->ns_id)
5816 break;
5817 }
5818
5819 if (enabled) {
5820 /* Create a new entry if necessary; start reading. */
5821 if (zi == NULL) {
5822 zi = XCALLOC(MTYPE_DP_NS, sizeof(*zi));
5823
5824 zi->info.ns_id = zns->ns_id;
5825
5826 zns_info_list_add_tail(&zdplane_info.dg_zns_list, zi);
5827
5828 if (IS_ZEBRA_DEBUG_DPLANE)
5829 zlog_debug("%s: nsid %u, new zi %p", __func__,
5830 zns->ns_id, zi);
5831 }
5832
5833 /* Make sure we're up-to-date with the zns object */
5834#if defined(HAVE_NETLINK)
5835 zi->info.is_cmd = false;
d4000d7b 5836 zi->info.sock = zns->netlink_dplane_in.sock;
d166308b 5837
cd787a8a
MS
5838 /* Initiate requests for existing info from the OS, and
5839 * begin reading from the netlink socket.
5840 */
5841 dplane_kernel_info_request(zi);
d166308b
MS
5842#endif
5843 } else if (zi) {
5844 if (IS_ZEBRA_DEBUG_DPLANE)
5845 zlog_debug("%s: nsid %u, deleting zi %p", __func__,
5846 zns->ns_id, zi);
5847
5848 /* Stop reading, free memory */
5849 zns_info_list_del(&zdplane_info.dg_zns_list, zi);
5850
cd787a8a
MS
5851 /* Stop any outstanding tasks */
5852 if (zdplane_info.dg_master) {
332beb64
DS
5853 event_cancel_async(zdplane_info.dg_master,
5854 &zi->t_request, NULL);
cd787a8a 5855
332beb64
DS
5856 event_cancel_async(zdplane_info.dg_master, &zi->t_read,
5857 NULL);
cd787a8a 5858 }
d166308b
MS
5859
5860 XFREE(MTYPE_DP_NS, zi);
5861 }
5862}
5863
c831033f
MS
5864/*
5865 * Provider api to signal that work/events are available
5866 * for the dataplane pthread.
5867 */
5868int dplane_provider_work_ready(void)
5869{
e5a60d82
MS
5870 /* Note that during zebra startup, we may be offered work before
5871 * the dataplane pthread (and thread-master) are ready. We want to
5872 * enqueue the work, but the event-scheduling machinery may not be
5873 * available.
5874 */
5875 if (zdplane_info.dg_run) {
907a2395
DS
5876 event_add_event(zdplane_info.dg_master, dplane_thread_loop,
5877 NULL, 0, &zdplane_info.dg_t_update);
e5a60d82 5878 }
c831033f
MS
5879
5880 return AOK;
5881}
5882
593e4eb1
MS
5883/*
5884 * Enqueue a context directly to zebra main.
5885 */
5886void dplane_provider_enqueue_to_zebra(struct zebra_dplane_ctx *ctx)
5887{
ac96497c 5888 struct dplane_ctx_list_head temp_list;
593e4eb1
MS
5889
5890 /* Zebra's api takes a list, so we need to use a temporary list */
ac96497c 5891 dplane_ctx_list_init(&temp_list);
593e4eb1 5892
ac96497c 5893 dplane_ctx_list_add_tail(&temp_list, ctx);
593e4eb1
MS
5894 (zdplane_info.dg_results_cb)(&temp_list);
5895}
5896
7cdb1a84 5897/*
c831033f 5898 * Kernel dataplane provider
7cdb1a84 5899 */
c831033f 5900
fef24b03 5901static void kernel_dplane_log_detail(struct zebra_dplane_ctx *ctx)
c10a646d 5902{
fef24b03 5903 char buf[PREFIX_STRLEN];
c10a646d 5904
fef24b03 5905 switch (dplane_ctx_get_op(ctx)) {
16c628de 5906
fef24b03
JU
5907 case DPLANE_OP_ROUTE_INSTALL:
5908 case DPLANE_OP_ROUTE_UPDATE:
5909 case DPLANE_OP_ROUTE_DELETE:
2dbe669b
DA
5910 zlog_debug("%u:%pFX Dplane route update ctx %p op %s",
5911 dplane_ctx_get_vrf(ctx), dplane_ctx_get_dest(ctx),
5912 ctx, dplane_op2str(dplane_ctx_get_op(ctx)));
fef24b03 5913 break;
64168803 5914
fef24b03
JU
5915 case DPLANE_OP_NH_INSTALL:
5916 case DPLANE_OP_NH_UPDATE:
5917 case DPLANE_OP_NH_DELETE:
f820d025 5918 zlog_debug("ID (%u) Dplane nexthop update ctx %p op %s",
0c8215cb 5919 dplane_ctx_get_nhe_id(ctx), ctx,
f820d025 5920 dplane_op2str(dplane_ctx_get_op(ctx)));
fef24b03 5921 break;
f820d025 5922
fef24b03
JU
5923 case DPLANE_OP_LSP_INSTALL:
5924 case DPLANE_OP_LSP_UPDATE:
5925 case DPLANE_OP_LSP_DELETE:
5926 break;
f820d025 5927
fef24b03
JU
5928 case DPLANE_OP_PW_INSTALL:
5929 case DPLANE_OP_PW_UNINSTALL:
5930 zlog_debug("Dplane pw %s: op %s af %d loc: %u rem: %u",
5931 dplane_ctx_get_ifname(ctx),
5932 dplane_op2str(ctx->zd_op), dplane_ctx_get_pw_af(ctx),
5933 dplane_ctx_get_pw_local_label(ctx),
5934 dplane_ctx_get_pw_remote_label(ctx));
5935 break;
5936
5937 case DPLANE_OP_ADDR_INSTALL:
5938 case DPLANE_OP_ADDR_UNINSTALL:
2dbe669b 5939 zlog_debug("Dplane intf %s, idx %u, addr %pFX",
fef24b03 5940 dplane_op2str(dplane_ctx_get_op(ctx)),
2dbe669b
DA
5941 dplane_ctx_get_ifindex(ctx),
5942 dplane_ctx_get_intf_addr(ctx));
fef24b03 5943 break;
036d93c0 5944
fef24b03
JU
5945 case DPLANE_OP_MAC_INSTALL:
5946 case DPLANE_OP_MAC_DELETE:
036d93c0
MS
5947 prefix_mac2str(dplane_ctx_mac_get_addr(ctx), buf,
5948 sizeof(buf));
5949
5950 zlog_debug("Dplane %s, mac %s, ifindex %u",
5951 dplane_op2str(dplane_ctx_get_op(ctx)),
5952 buf, dplane_ctx_get_ifindex(ctx));
fef24b03 5953 break;
931fa60c 5954
fef24b03
JU
5955 case DPLANE_OP_NEIGH_INSTALL:
5956 case DPLANE_OP_NEIGH_UPDATE:
5957 case DPLANE_OP_NEIGH_DELETE:
5958 case DPLANE_OP_VTEP_ADD:
5959 case DPLANE_OP_VTEP_DELETE:
d68e74b4 5960 case DPLANE_OP_NEIGH_DISCOVER:
0a27a2fe
PG
5961 case DPLANE_OP_NEIGH_IP_INSTALL:
5962 case DPLANE_OP_NEIGH_IP_DELETE:
931fa60c
MS
5963 ipaddr2str(dplane_ctx_neigh_get_ipaddr(ctx), buf,
5964 sizeof(buf));
5965
5966 zlog_debug("Dplane %s, ip %s, ifindex %u",
5967 dplane_op2str(dplane_ctx_get_op(ctx)),
5968 buf, dplane_ctx_get_ifindex(ctx));
fef24b03 5969 break;
931fa60c 5970
fef24b03
JU
5971 case DPLANE_OP_RULE_ADD:
5972 case DPLANE_OP_RULE_DELETE:
5973 case DPLANE_OP_RULE_UPDATE:
f62e5480
JU
5974 zlog_debug("Dplane rule update op %s, if %s(%u), ctx %p",
5975 dplane_op2str(dplane_ctx_get_op(ctx)),
5976 dplane_ctx_get_ifname(ctx),
5977 dplane_ctx_get_ifindex(ctx), ctx);
fef24b03 5978 break;
f62e5480 5979
fef24b03
JU
5980 case DPLANE_OP_SYS_ROUTE_ADD:
5981 case DPLANE_OP_SYS_ROUTE_DELETE:
5982 case DPLANE_OP_ROUTE_NOTIFY:
5983 case DPLANE_OP_LSP_NOTIFY:
c60522f7 5984 case DPLANE_OP_BR_PORT_UPDATE:
fef24b03
JU
5985
5986 case DPLANE_OP_NONE:
5987 break;
5162e000
PG
5988
5989 case DPLANE_OP_IPTABLE_ADD:
5990 case DPLANE_OP_IPTABLE_DELETE: {
5991 struct zebra_pbr_iptable ipt;
5992
8d78e148
DS
5993 dplane_ctx_get_pbr_iptable(ctx, &ipt);
5994 zlog_debug("Dplane iptable update op %s, unique(%u), ctx %p",
5995 dplane_op2str(dplane_ctx_get_op(ctx)), ipt.unique,
5996 ctx);
5162e000 5997 } break;
ef524230
PG
5998 case DPLANE_OP_IPSET_ADD:
5999 case DPLANE_OP_IPSET_DELETE: {
6000 struct zebra_pbr_ipset ipset;
6001
8249f96a
DS
6002 dplane_ctx_get_pbr_ipset(ctx, &ipset);
6003 zlog_debug("Dplane ipset update op %s, unique(%u), ctx %p",
6004 dplane_op2str(dplane_ctx_get_op(ctx)), ipset.unique,
6005 ctx);
ef524230
PG
6006 } break;
6007 case DPLANE_OP_IPSET_ENTRY_ADD:
6008 case DPLANE_OP_IPSET_ENTRY_DELETE: {
6009 struct zebra_pbr_ipset_entry ipent;
6010
f284c132
DS
6011 dplane_ctx_get_pbr_ipset_entry(ctx, &ipent);
6012 zlog_debug(
6013 "Dplane ipset entry update op %s, unique(%u), ctx %p",
6014 dplane_op2str(dplane_ctx_get_op(ctx)), ipent.unique,
6015 ctx);
ef524230 6016 } break;
e18747a9
PG
6017 case DPLANE_OP_NEIGH_TABLE_UPDATE:
6018 zlog_debug("Dplane neigh table op %s, ifp %s, family %s",
6019 dplane_op2str(dplane_ctx_get_op(ctx)),
6020 dplane_ctx_get_ifname(ctx),
6021 family2str(dplane_ctx_neightable_get_family(ctx)));
6022 break;
62b4b7e4
PG
6023 case DPLANE_OP_GRE_SET:
6024 zlog_debug("Dplane gre set op %s, ifp %s, link %u",
6025 dplane_op2str(dplane_ctx_get_op(ctx)),
6026 dplane_ctx_get_ifname(ctx),
6027 ctx->u.gre.link_ifindex);
6028 break;
9d59df63
MS
6029
6030 case DPLANE_OP_INTF_ADDR_ADD:
6031 case DPLANE_OP_INTF_ADDR_DEL:
6032 zlog_debug("Dplane incoming op %s, intf %s, addr %pFX",
6033 dplane_op2str(dplane_ctx_get_op(ctx)),
6034 dplane_ctx_get_ifname(ctx),
6035 dplane_ctx_get_intf_addr(ctx));
6036 break;
728f2017
MS
6037
6038 case DPLANE_OP_INTF_NETCONFIG:
6039 zlog_debug("%s: ifindex %d, mpls %d, mcast %d",
6040 dplane_op2str(dplane_ctx_get_op(ctx)),
2b9dc841 6041 dplane_ctx_get_ifindex(ctx),
728f2017
MS
6042 dplane_ctx_get_netconf_mpls(ctx),
6043 dplane_ctx_get_netconf_mcast(ctx));
6044 break;
5d414138
SW
6045
6046 case DPLANE_OP_INTF_INSTALL:
6047 case DPLANE_OP_INTF_UPDATE:
6048 case DPLANE_OP_INTF_DELETE:
6049 zlog_debug("Dplane intf %s, idx %u, protodown %d",
6050 dplane_op2str(dplane_ctx_get_op(ctx)),
6051 dplane_ctx_get_ifindex(ctx),
6052 dplane_ctx_intf_is_protodown(ctx));
6053 break;
449a30ed
SY
6054
6055 /* TODO: more detailed log */
c317d3f2
SY
6056 case DPLANE_OP_TC_QDISC_INSTALL:
6057 case DPLANE_OP_TC_QDISC_UNINSTALL:
6058 zlog_debug("Dplane tc qdisc ifidx %u",
6059 dplane_ctx_get_ifindex(ctx));
6060 break;
6061 case DPLANE_OP_TC_CLASS_ADD:
6062 case DPLANE_OP_TC_CLASS_DELETE:
6063 case DPLANE_OP_TC_CLASS_UPDATE:
6064 break;
6065 case DPLANE_OP_TC_FILTER_ADD:
6066 case DPLANE_OP_TC_FILTER_DELETE:
6067 case DPLANE_OP_TC_FILTER_UPDATE:
449a30ed 6068 break;
fef24b03 6069 }
2f74a82a 6070}
f62e5480 6071
fef24b03 6072static void kernel_dplane_handle_result(struct zebra_dplane_ctx *ctx)
2f74a82a 6073{
fef24b03
JU
6074 enum zebra_dplane_result res = dplane_ctx_get_status(ctx);
6075
2f74a82a
JU
6076 switch (dplane_ctx_get_op(ctx)) {
6077
6078 case DPLANE_OP_ROUTE_INSTALL:
6079 case DPLANE_OP_ROUTE_UPDATE:
6080 case DPLANE_OP_ROUTE_DELETE:
6081 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6082 atomic_fetch_add_explicit(&zdplane_info.dg_route_errors,
6083 1, memory_order_relaxed);
fef24b03
JU
6084
6085 if ((dplane_ctx_get_op(ctx) != DPLANE_OP_ROUTE_DELETE)
6086 && (res == ZEBRA_DPLANE_REQUEST_SUCCESS)) {
6087 struct nexthop *nexthop;
6088
6089 /* Update installed nexthops to signal which have been
6090 * installed.
6091 */
6092 for (ALL_NEXTHOPS_PTR(dplane_ctx_get_ng(ctx),
6093 nexthop)) {
6094 if (CHECK_FLAG(nexthop->flags,
6095 NEXTHOP_FLAG_RECURSIVE))
6096 continue;
6097
6098 if (CHECK_FLAG(nexthop->flags,
6099 NEXTHOP_FLAG_ACTIVE)) {
6100 SET_FLAG(nexthop->flags,
6101 NEXTHOP_FLAG_FIB);
6102 }
6103 }
6104 }
2f74a82a
JU
6105 break;
6106
6107 case DPLANE_OP_NH_INSTALL:
6108 case DPLANE_OP_NH_UPDATE:
6109 case DPLANE_OP_NH_DELETE:
6110 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6111 atomic_fetch_add_explicit(
6112 &zdplane_info.dg_nexthop_errors, 1,
6113 memory_order_relaxed);
6114 break;
6115
6116 case DPLANE_OP_LSP_INSTALL:
6117 case DPLANE_OP_LSP_UPDATE:
6118 case DPLANE_OP_LSP_DELETE:
6119 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6120 atomic_fetch_add_explicit(&zdplane_info.dg_lsp_errors,
6121 1, memory_order_relaxed);
6122 break;
6123
6124 case DPLANE_OP_PW_INSTALL:
6125 case DPLANE_OP_PW_UNINSTALL:
6126 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6127 atomic_fetch_add_explicit(&zdplane_info.dg_pw_errors, 1,
6128 memory_order_relaxed);
6129 break;
f62e5480 6130
2f74a82a
JU
6131 case DPLANE_OP_ADDR_INSTALL:
6132 case DPLANE_OP_ADDR_UNINSTALL:
6133 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6134 atomic_fetch_add_explicit(
6135 &zdplane_info.dg_intf_addr_errors, 1,
6136 memory_order_relaxed);
6137 break;
6138
6139 case DPLANE_OP_MAC_INSTALL:
6140 case DPLANE_OP_MAC_DELETE:
6141 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6142 atomic_fetch_add_explicit(&zdplane_info.dg_mac_errors,
6143 1, memory_order_relaxed);
6144 break;
6145
6146 case DPLANE_OP_NEIGH_INSTALL:
6147 case DPLANE_OP_NEIGH_UPDATE:
6148 case DPLANE_OP_NEIGH_DELETE:
6149 case DPLANE_OP_VTEP_ADD:
6150 case DPLANE_OP_VTEP_DELETE:
d68e74b4 6151 case DPLANE_OP_NEIGH_DISCOVER:
0a27a2fe
PG
6152 case DPLANE_OP_NEIGH_IP_INSTALL:
6153 case DPLANE_OP_NEIGH_IP_DELETE:
2f74a82a
JU
6154 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6155 atomic_fetch_add_explicit(&zdplane_info.dg_neigh_errors,
6156 1, memory_order_relaxed);
6157 break;
6158
6159 case DPLANE_OP_RULE_ADD:
6160 case DPLANE_OP_RULE_DELETE:
6161 case DPLANE_OP_RULE_UPDATE:
6162 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6163 atomic_fetch_add_explicit(&zdplane_info.dg_rule_errors,
6164 1, memory_order_relaxed);
6165 break;
6166
5162e000
PG
6167 case DPLANE_OP_IPTABLE_ADD:
6168 case DPLANE_OP_IPTABLE_DELETE:
6169 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6170 atomic_fetch_add_explicit(
6171 &zdplane_info.dg_iptable_errors, 1,
6172 memory_order_relaxed);
6173 break;
6174
ef524230
PG
6175 case DPLANE_OP_IPSET_ADD:
6176 case DPLANE_OP_IPSET_DELETE:
6177 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6178 atomic_fetch_add_explicit(&zdplane_info.dg_ipset_errors,
6179 1, memory_order_relaxed);
6180 break;
6181
6182 case DPLANE_OP_IPSET_ENTRY_ADD:
6183 case DPLANE_OP_IPSET_ENTRY_DELETE:
6184 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6185 atomic_fetch_add_explicit(
6186 &zdplane_info.dg_ipset_entry_errors, 1,
6187 memory_order_relaxed);
6188 break;
6189
e18747a9
PG
6190 case DPLANE_OP_NEIGH_TABLE_UPDATE:
6191 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6192 atomic_fetch_add_explicit(
6193 &zdplane_info.dg_neightable_errors, 1,
6194 memory_order_relaxed);
6195 break;
6196
62b4b7e4
PG
6197 case DPLANE_OP_GRE_SET:
6198 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6199 atomic_fetch_add_explicit(
6200 &zdplane_info.dg_gre_set_errors, 1,
6201 memory_order_relaxed);
6202 break;
5d414138
SW
6203
6204 case DPLANE_OP_INTF_INSTALL:
6205 case DPLANE_OP_INTF_UPDATE:
6206 case DPLANE_OP_INTF_DELETE:
6207 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6208 atomic_fetch_add_explicit(&zdplane_info.dg_intf_errors,
6209 1, memory_order_relaxed);
6210 break;
6211
c317d3f2
SY
6212 case DPLANE_OP_TC_QDISC_INSTALL:
6213 case DPLANE_OP_TC_QDISC_UNINSTALL:
6214 case DPLANE_OP_TC_CLASS_ADD:
6215 case DPLANE_OP_TC_CLASS_DELETE:
6216 case DPLANE_OP_TC_CLASS_UPDATE:
6217 case DPLANE_OP_TC_FILTER_ADD:
6218 case DPLANE_OP_TC_FILTER_DELETE:
6219 case DPLANE_OP_TC_FILTER_UPDATE:
449a30ed
SY
6220 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6221 atomic_fetch_add_explicit(&zdplane_info.dg_tcs_errors,
6222 1, memory_order_relaxed);
6223 break;
6224
2f74a82a
JU
6225 /* Ignore 'notifications' - no-op */
6226 case DPLANE_OP_SYS_ROUTE_ADD:
6227 case DPLANE_OP_SYS_ROUTE_DELETE:
6228 case DPLANE_OP_ROUTE_NOTIFY:
6229 case DPLANE_OP_LSP_NOTIFY:
c60522f7 6230 case DPLANE_OP_BR_PORT_UPDATE:
fef24b03
JU
6231 break;
6232
9d59df63
MS
6233 /* TODO -- error counters for incoming events? */
6234 case DPLANE_OP_INTF_ADDR_ADD:
6235 case DPLANE_OP_INTF_ADDR_DEL:
728f2017 6236 case DPLANE_OP_INTF_NETCONFIG:
9d59df63
MS
6237 break;
6238
2f74a82a 6239 case DPLANE_OP_NONE:
fef24b03
JU
6240 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
6241 atomic_fetch_add_explicit(&zdplane_info.dg_other_errors,
6242 1, memory_order_relaxed);
2f74a82a
JU
6243 break;
6244 }
f62e5480
JU
6245}
6246
5162e000
PG
6247static void kernel_dplane_process_iptable(struct zebra_dplane_provider *prov,
6248 struct zebra_dplane_ctx *ctx)
6249{
6250 zebra_pbr_process_iptable(ctx);
6251 dplane_provider_enqueue_out_ctx(prov, ctx);
6252}
6253
ef524230
PG
6254static void kernel_dplane_process_ipset(struct zebra_dplane_provider *prov,
6255 struct zebra_dplane_ctx *ctx)
6256{
6257 zebra_pbr_process_ipset(ctx);
6258 dplane_provider_enqueue_out_ctx(prov, ctx);
6259}
6260
6261static void
6262kernel_dplane_process_ipset_entry(struct zebra_dplane_provider *prov,
6263 struct zebra_dplane_ctx *ctx)
6264{
6265 zebra_pbr_process_ipset_entry(ctx);
6266 dplane_provider_enqueue_out_ctx(prov, ctx);
6267}
6268
45f0a10b
DS
6269void dplane_rib_add_multipath(afi_t afi, safi_t safi, struct prefix *p,
6270 struct prefix_ipv6 *src_p, struct route_entry *re,
6271 struct nexthop_group *ng, int startup,
6272 struct zebra_dplane_ctx *ctx)
6273{
6274 if (!ctx)
6275 rib_add_multipath(afi, safi, p, src_p, re, ng, startup);
6276 else {
a0e11736
DS
6277 dplane_ctx_route_init_basic(ctx, dplane_ctx_get_op(ctx), re, p,
6278 src_p, afi, safi);
6279 dplane_provider_enqueue_to_zebra(ctx);
45f0a10b
DS
6280 }
6281}
6282
fef24b03
JU
6283/*
6284 * Kernel provider callback
6285 */
6286static int kernel_dplane_process_func(struct zebra_dplane_provider *prov)
6287{
ac96497c
MS
6288 struct zebra_dplane_ctx *ctx;
6289 struct dplane_ctx_list_head work_list;
fef24b03
JU
6290 int counter, limit;
6291
ac96497c 6292 dplane_ctx_list_init(&work_list);
fef24b03
JU
6293
6294 limit = dplane_provider_get_work_limit(prov);
6295
6296 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6297 zlog_debug("dplane provider '%s': processing",
6298 dplane_provider_get_name(prov));
6299
6300 for (counter = 0; counter < limit; counter++) {
6301 ctx = dplane_provider_dequeue_in_ctx(prov);
6302 if (ctx == NULL)
6303 break;
fef24b03
JU
6304 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6305 kernel_dplane_log_detail(ctx);
2f74a82a 6306
ef524230
PG
6307 if ((dplane_ctx_get_op(ctx) == DPLANE_OP_IPTABLE_ADD
6308 || dplane_ctx_get_op(ctx) == DPLANE_OP_IPTABLE_DELETE))
5162e000 6309 kernel_dplane_process_iptable(prov, ctx);
ef524230
PG
6310 else if ((dplane_ctx_get_op(ctx) == DPLANE_OP_IPSET_ADD
6311 || dplane_ctx_get_op(ctx) == DPLANE_OP_IPSET_DELETE))
6312 kernel_dplane_process_ipset(prov, ctx);
6313 else if ((dplane_ctx_get_op(ctx) == DPLANE_OP_IPSET_ENTRY_ADD
6314 || dplane_ctx_get_op(ctx)
6315 == DPLANE_OP_IPSET_ENTRY_DELETE))
6316 kernel_dplane_process_ipset_entry(prov, ctx);
5162e000 6317 else
ac96497c 6318 dplane_ctx_list_add_tail(&work_list, ctx);
2f74a82a 6319 }
c831033f 6320
18f60fe9 6321 kernel_update_multi(&work_list);
fef24b03 6322
ac96497c 6323 while ((ctx = dplane_ctx_list_pop(&work_list)) != NULL) {
fef24b03
JU
6324 kernel_dplane_handle_result(ctx);
6325
c831033f
MS
6326 dplane_provider_enqueue_out_ctx(prov, ctx);
6327 }
6328
6329 /* Ensure that we'll run the work loop again if there's still
6330 * more work to do.
6331 */
6332 if (counter >= limit) {
6333 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6334 zlog_debug("dplane provider '%s' reached max updates %d",
6335 dplane_provider_get_name(prov), counter);
6336
6337 atomic_fetch_add_explicit(&zdplane_info.dg_update_yields,
6338 1, memory_order_relaxed);
6339
6340 dplane_provider_work_ready();
6341 }
6342
6343 return 0;
6344}
6345
1e20238a 6346#ifdef DPLANE_TEST_PROVIDER
e5a60d82 6347
c831033f
MS
6348/*
6349 * Test dataplane provider plugin
6350 */
6351
6352/*
6353 * Test provider process callback
6354 */
6355static int test_dplane_process_func(struct zebra_dplane_provider *prov)
6356{
6357 struct zebra_dplane_ctx *ctx;
6358 int counter, limit;
6359
6360 /* Just moving from 'in' queue to 'out' queue */
6361
6362 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6363 zlog_debug("dplane provider '%s': processing",
6364 dplane_provider_get_name(prov));
6365
6366 limit = dplane_provider_get_work_limit(prov);
6367
6368 for (counter = 0; counter < limit; counter++) {
c831033f
MS
6369 ctx = dplane_provider_dequeue_in_ctx(prov);
6370 if (ctx == NULL)
6371 break;
6372
cf363e1b
MS
6373 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6374 zlog_debug("dplane provider '%s': op %s",
6375 dplane_provider_get_name(prov),
6376 dplane_op2str(dplane_ctx_get_op(ctx)));
6377
c831033f
MS
6378 dplane_ctx_set_status(ctx, ZEBRA_DPLANE_REQUEST_SUCCESS);
6379
6380 dplane_provider_enqueue_out_ctx(prov, ctx);
6381 }
6382
c9d17fe8
MS
6383 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6384 zlog_debug("dplane provider '%s': processed %d",
6385 dplane_provider_get_name(prov), counter);
6386
c831033f
MS
6387 /* Ensure that we'll run the work loop again if there's still
6388 * more work to do.
6389 */
6390 if (counter >= limit)
6391 dplane_provider_work_ready();
6392
6393 return 0;
6394}
6395
6396/*
6397 * Test provider shutdown/fini callback
6398 */
6399static int test_dplane_shutdown_func(struct zebra_dplane_provider *prov,
6400 bool early)
6401{
6402 if (IS_ZEBRA_DEBUG_DPLANE)
6403 zlog_debug("dplane provider '%s': %sshutdown",
6404 dplane_provider_get_name(prov),
6405 early ? "early " : "");
6406
6407 return 0;
6408}
e5a60d82 6409#endif /* DPLANE_TEST_PROVIDER */
c831033f
MS
6410
6411/*
6412 * Register default kernel provider
6413 */
6414static void dplane_provider_init(void)
6415{
6416 int ret;
6417
6418 ret = dplane_provider_register("Kernel",
6419 DPLANE_PRIO_KERNEL,
1dd4ea8a 6420 DPLANE_PROV_FLAGS_DEFAULT, NULL,
c831033f
MS
6421 kernel_dplane_process_func,
6422 NULL,
1ff8a248 6423 NULL, NULL);
c831033f
MS
6424
6425 if (ret != AOK)
6426 zlog_err("Unable to register kernel dplane provider: %d",
6427 ret);
6428
1e20238a 6429#ifdef DPLANE_TEST_PROVIDER
e5a60d82 6430 /* Optional test provider ... */
c831033f
MS
6431 ret = dplane_provider_register("Test",
6432 DPLANE_PRIO_PRE_KERNEL,
1dd4ea8a 6433 DPLANE_PROV_FLAGS_DEFAULT, NULL,
c831033f
MS
6434 test_dplane_process_func,
6435 test_dplane_shutdown_func,
1ff8a248 6436 NULL /* data */, NULL);
c831033f
MS
6437
6438 if (ret != AOK)
6439 zlog_err("Unable to register test dplane provider: %d",
6440 ret);
e5a60d82 6441#endif /* DPLANE_TEST_PROVIDER */
7cdb1a84
MS
6442}
6443
aa21da07
MS
6444/*
6445 * Allow zebra code to walk the queue of pending contexts, evaluate each one
6446 * using a callback function. If the function returns 'true', the context
6447 * will be dequeued and freed without being processed.
6448 */
6449int dplane_clean_ctx_queue(bool (*context_cb)(struct zebra_dplane_ctx *ctx,
6450 void *arg), void *val)
6451{
ac96497c
MS
6452 struct zebra_dplane_ctx *ctx;
6453 struct dplane_ctx_list_head work_list;
aa21da07 6454
ac96497c 6455 dplane_ctx_list_init(&work_list);
aa21da07
MS
6456
6457 if (context_cb == NULL)
c7f0429e 6458 return AOK;
aa21da07
MS
6459
6460 /* Walk the pending context queue under the dplane lock. */
6461 DPLANE_LOCK();
6462
ac96497c 6463 frr_each_safe (dplane_ctx_list, &zdplane_info.dg_update_list, ctx) {
aa21da07 6464 if (context_cb(ctx, val)) {
ac96497c
MS
6465 dplane_ctx_list_del(&zdplane_info.dg_update_list, ctx);
6466 dplane_ctx_list_add_tail(&work_list, ctx);
aa21da07
MS
6467 }
6468 }
6469
6470 DPLANE_UNLOCK();
6471
6472 /* Now free any contexts selected by the caller, without holding
6473 * the lock.
6474 */
ac96497c 6475 while ((ctx = dplane_ctx_list_pop(&work_list)) != NULL)
aa21da07 6476 dplane_ctx_fini(&ctx);
aa21da07 6477
c7f0429e 6478 return AOK;
aa21da07
MS
6479}
6480
4dfd7a02
MS
6481/* Indicates zebra shutdown/exit is in progress. Some operations may be
6482 * simplified or skipped during shutdown processing.
6483 */
6484bool dplane_is_in_shutdown(void)
6485{
25779064 6486 return zdplane_info.dg_is_shutdown;
4dfd7a02
MS
6487}
6488
5917df09
MS
6489/*
6490 * Enable collection of extra info about interfaces in route updates.
6491 */
6492void dplane_enable_intf_extra_info(void)
6493{
6494 dplane_collect_extra_intf_info = true;
6495}
6496
4dfd7a02
MS
6497/*
6498 * Early or pre-shutdown, de-init notification api. This runs pretty
6499 * early during zebra shutdown, as a signal to stop new work and prepare
6500 * for updates generated by shutdown/cleanup activity, as zebra tries to
6501 * remove everything it's responsible for.
c9d17fe8 6502 * NB: This runs in the main zebra pthread context.
4dfd7a02
MS
6503 */
6504void zebra_dplane_pre_finish(void)
6505{
3c0e1622 6506 struct zebra_dplane_provider *prov;
6ba8db21 6507
4dfd7a02 6508 if (IS_ZEBRA_DEBUG_DPLANE)
3c0e1622 6509 zlog_debug("Zebra dataplane pre-finish called");
4dfd7a02 6510
25779064 6511 zdplane_info.dg_is_shutdown = true;
4dfd7a02 6512
6ba8db21 6513 /* Notify provider(s) of pending shutdown. */
ac96497c 6514 frr_each (dplane_prov_list, &zdplane_info.dg_providers, prov) {
3c0e1622 6515 if (prov->dp_fini == NULL)
6ba8db21
RZ
6516 continue;
6517
3c0e1622 6518 prov->dp_fini(prov, true /* early */);
6ba8db21 6519 }
4dfd7a02
MS
6520}
6521
6522/*
6523 * Utility to determine whether work remains enqueued within the dplane;
6524 * used during system shutdown processing.
6525 */
6526static bool dplane_work_pending(void)
6527{
c9d17fe8 6528 bool ret = false;
25779064 6529 struct zebra_dplane_ctx *ctx;
c9d17fe8 6530 struct zebra_dplane_provider *prov;
4dfd7a02 6531
c831033f
MS
6532 /* TODO -- just checking incoming/pending work for now, must check
6533 * providers
6534 */
4dfd7a02
MS
6535 DPLANE_LOCK();
6536 {
ac96497c
MS
6537 ctx = dplane_ctx_list_first(&zdplane_info.dg_update_list);
6538 prov = dplane_prov_list_first(&zdplane_info.dg_providers);
4dfd7a02
MS
6539 }
6540 DPLANE_UNLOCK();
6541
c7f0429e
DS
6542 if (ctx != NULL)
6543 return true;
c9d17fe8
MS
6544
6545 while (prov) {
6546
ad6aad4d 6547 dplane_provider_lock(prov);
c9d17fe8 6548
ac96497c 6549 ctx = dplane_ctx_list_first(&(prov->dp_ctx_in_list));
c9d17fe8 6550 if (ctx == NULL)
ac96497c 6551 ctx = dplane_ctx_list_first(&(prov->dp_ctx_out_list));
c9d17fe8 6552
ad6aad4d 6553 dplane_provider_unlock(prov);
c9d17fe8
MS
6554
6555 if (ctx != NULL)
6556 break;
6557
ac96497c 6558 prov = dplane_prov_list_next(&zdplane_info.dg_providers, prov);
c9d17fe8
MS
6559 }
6560
6561 if (ctx != NULL)
6562 ret = true;
6563
c9d17fe8 6564 return ret;
4dfd7a02
MS
6565}
6566
6567/*
6568 * Shutdown-time intermediate callback, used to determine when all pending
6569 * in-flight updates are done. If there's still work to do, reschedules itself.
6570 * If all work is done, schedules an event to the main zebra thread for
6571 * final zebra shutdown.
6572 * This runs in the dplane pthread context.
6573 */
e6685141 6574static void dplane_check_shutdown_status(struct event *event)
4dfd7a02 6575{
d166308b
MS
6576 struct dplane_zns_info *zi;
6577
4dfd7a02
MS
6578 if (IS_ZEBRA_DEBUG_DPLANE)
6579 zlog_debug("Zebra dataplane shutdown status check called");
6580
d166308b
MS
6581 /* Remove any zns info entries as we stop the dplane pthread. */
6582 frr_each_safe (zns_info_list, &zdplane_info.dg_zns_list, zi) {
6583 zns_info_list_del(&zdplane_info.dg_zns_list, zi);
6584
cd787a8a 6585 if (zdplane_info.dg_master) {
e16d030c
DS
6586 EVENT_OFF(zi->t_read);
6587 EVENT_OFF(zi->t_request);
cd787a8a 6588 }
d166308b
MS
6589
6590 XFREE(MTYPE_DP_NS, zi);
6591 }
6592
4dfd7a02
MS
6593 if (dplane_work_pending()) {
6594 /* Reschedule dplane check on a short timer */
907a2395
DS
6595 event_add_timer_msec(zdplane_info.dg_master,
6596 dplane_check_shutdown_status, NULL, 100,
6597 &zdplane_info.dg_t_shutdown_check);
4dfd7a02
MS
6598
6599 /* TODO - give up and stop waiting after a short time? */
6600
6601 } else {
6602 /* We appear to be done - schedule a final callback event
6603 * for the zebra main pthread.
6604 */
907a2395 6605 event_add_event(zrouter.master, zebra_finalize, NULL, 0, NULL);
4dfd7a02 6606 }
4dfd7a02
MS
6607}
6608
18c37974 6609/*
1d11b21f 6610 * Shutdown, de-init api. This runs pretty late during shutdown,
4dfd7a02
MS
6611 * after zebra has tried to free/remove/uninstall all routes during shutdown.
6612 * At this point, dplane work may still remain to be done, so we can't just
6613 * blindly terminate. If there's still work to do, we'll periodically check
6614 * and when done, we'll enqueue a task to the zebra main thread for final
6615 * termination processing.
6616 *
1d11b21f 6617 * NB: This runs in the main zebra thread context.
18c37974 6618 */
1d11b21f 6619void zebra_dplane_finish(void)
18c37974 6620{
4dfd7a02
MS
6621 if (IS_ZEBRA_DEBUG_DPLANE)
6622 zlog_debug("Zebra dataplane fini called");
6623
907a2395
DS
6624 event_add_event(zdplane_info.dg_master, dplane_check_shutdown_status,
6625 NULL, 0, &zdplane_info.dg_t_shutdown_check);
4dfd7a02
MS
6626}
6627
c831033f
MS
6628/*
6629 * Main dataplane pthread event loop. The thread takes new incoming work
6630 * and offers it to the first provider. It then iterates through the
6631 * providers, taking complete work from each one and offering it
6632 * to the next in order. At each step, a limited number of updates are
6633 * processed during a cycle in order to provide some fairness.
14b0bc8e
MS
6634 *
6635 * This loop through the providers is only run once, so that the dataplane
6636 * pthread can look for other pending work - such as i/o work on behalf of
6637 * providers.
c831033f 6638 */
e6685141 6639static void dplane_thread_loop(struct event *event)
c831033f 6640{
ac96497c
MS
6641 struct dplane_ctx_list_head work_list;
6642 struct dplane_ctx_list_head error_list;
c831033f 6643 struct zebra_dplane_provider *prov;
ac96497c 6644 struct zebra_dplane_ctx *ctx;
c831033f 6645 int limit, counter, error_counter;
c9d17fe8 6646 uint64_t curr, high;
f1595ce4 6647 bool reschedule = false;
c831033f
MS
6648
6649 /* Capture work limit per cycle */
6650 limit = zdplane_info.dg_updates_per_cycle;
6651
14b0bc8e 6652 /* Init temporary lists used to move contexts among providers */
ac96497c
MS
6653 dplane_ctx_list_init(&work_list);
6654 dplane_ctx_list_init(&error_list);
6655
14b0bc8e 6656 error_counter = 0;
c831033f
MS
6657
6658 /* Check for zebra shutdown */
6659 if (!zdplane_info.dg_run)
cc9f21da 6660 return;
c831033f
MS
6661
6662 /* Dequeue some incoming work from zebra (if any) onto the temporary
6663 * working list.
6664 */
6665 DPLANE_LOCK();
6666
6667 /* Locate initial registered provider */
ac96497c 6668 prov = dplane_prov_list_first(&zdplane_info.dg_providers);
c831033f 6669
14b0bc8e 6670 /* Move new work from incoming list to temp list */
c831033f 6671 for (counter = 0; counter < limit; counter++) {
ac96497c 6672 ctx = dplane_ctx_list_pop(&zdplane_info.dg_update_list);
c831033f 6673 if (ctx) {
c831033f
MS
6674 ctx->zd_provider = prov->dp_id;
6675
ac96497c 6676 dplane_ctx_list_add_tail(&work_list, ctx);
c831033f
MS
6677 } else {
6678 break;
6679 }
6680 }
6681
6682 DPLANE_UNLOCK();
6683
14b0bc8e
MS
6684 atomic_fetch_sub_explicit(&zdplane_info.dg_routes_queued, counter,
6685 memory_order_relaxed);
6686
c831033f
MS
6687 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6688 zlog_debug("dplane: incoming new work counter: %d", counter);
6689
6690 /* Iterate through the registered providers, offering new incoming
6691 * work. If the provider has outgoing work in its queue, take that
6692 * work for the next provider
6693 */
6694 while (prov) {
6695
14b0bc8e
MS
6696 /* At each iteration, the temporary work list has 'counter'
6697 * items.
6698 */
c831033f
MS
6699 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6700 zlog_debug("dplane enqueues %d new work to provider '%s'",
6701 counter, dplane_provider_get_name(prov));
6702
6703 /* Capture current provider id in each context; check for
6704 * error status.
6705 */
ac96497c 6706 frr_each_safe (dplane_ctx_list, &work_list, ctx) {
c831033f
MS
6707 if (dplane_ctx_get_status(ctx) ==
6708 ZEBRA_DPLANE_REQUEST_SUCCESS) {
6709 ctx->zd_provider = prov->dp_id;
6710 } else {
6711 /*
6712 * TODO -- improve error-handling: recirc
6713 * errors backwards so that providers can
6714 * 'undo' their work (if they want to)
6715 */
6716
6717 /* Move to error list; will be returned
6718 * zebra main.
6719 */
ac96497c
MS
6720 dplane_ctx_list_del(&work_list, ctx);
6721 dplane_ctx_list_add_tail(&error_list, ctx);
c831033f
MS
6722 error_counter++;
6723 }
6724 }
6725
6726 /* Enqueue new work to the provider */
ad6aad4d 6727 dplane_provider_lock(prov);
c831033f 6728
ac96497c
MS
6729 while ((ctx = dplane_ctx_list_pop(&work_list)) != NULL)
6730 dplane_ctx_list_add_tail(&(prov->dp_ctx_in_list), ctx);
c831033f 6731
c9d17fe8
MS
6732 atomic_fetch_add_explicit(&prov->dp_in_counter, counter,
6733 memory_order_relaxed);
6734 atomic_fetch_add_explicit(&prov->dp_in_queued, counter,
6735 memory_order_relaxed);
6736 curr = atomic_load_explicit(&prov->dp_in_queued,
6737 memory_order_relaxed);
6738 high = atomic_load_explicit(&prov->dp_in_max,
6739 memory_order_relaxed);
6740 if (curr > high)
6741 atomic_store_explicit(&prov->dp_in_max, curr,
c831033f
MS
6742 memory_order_relaxed);
6743
ad6aad4d 6744 dplane_provider_unlock(prov);
c831033f 6745
14b0bc8e
MS
6746 /* Reset the temp list (though the 'concat' may have done this
6747 * already), and the counter
6748 */
ac96497c 6749 dplane_ctx_list_init(&work_list);
c831033f
MS
6750 counter = 0;
6751
14b0bc8e
MS
6752 /* Call into the provider code. Note that this is
6753 * unconditional: we offer to do work even if we don't enqueue
6754 * any _new_ work.
6755 */
c831033f
MS
6756 (*prov->dp_fp)(prov);
6757
6758 /* Check for zebra shutdown */
6759 if (!zdplane_info.dg_run)
6760 break;
6761
6762 /* Dequeue completed work from the provider */
ad6aad4d 6763 dplane_provider_lock(prov);
c831033f
MS
6764
6765 while (counter < limit) {
ac96497c 6766 ctx = dplane_ctx_list_pop(&(prov->dp_ctx_out_list));
c831033f 6767 if (ctx) {
ac96497c 6768 dplane_ctx_list_add_tail(&work_list, ctx);
c831033f
MS
6769 counter++;
6770 } else
6771 break;
6772 }
6773
ad6aad4d 6774 dplane_provider_unlock(prov);
c831033f 6775
f1595ce4
DE
6776 if (counter >= limit)
6777 reschedule = true;
6778
c831033f
MS
6779 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
6780 zlog_debug("dplane dequeues %d completed work from provider %s",
6781 counter, dplane_provider_get_name(prov));
6782
6783 /* Locate next provider */
ac96497c 6784 prov = dplane_prov_list_next(&zdplane_info.dg_providers, prov);
c831033f
MS
6785 }
6786
f1595ce4
DE
6787 /*
6788 * We hit the work limit while processing at least one provider's
6789 * output queue - ensure we come back and finish it.
6790 */
6791 if (reschedule)
6792 dplane_provider_work_ready();
6793
c831033f 6794 /* After all providers have been serviced, enqueue any completed
14b0bc8e 6795 * work and any errors back to zebra so it can process the results.
c831033f 6796 */
c831033f 6797 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
14b0bc8e
MS
6798 zlog_debug("dplane has %d completed, %d errors, for zebra main",
6799 counter, error_counter);
c831033f
MS
6800
6801 /*
4c206c8f 6802 * Hand lists through the api to zebra main,
c831033f
MS
6803 * to reduce the number of lock/unlock cycles
6804 */
14b0bc8e 6805
4c206c8f
MS
6806 /* Call through to zebra main */
6807 (zdplane_info.dg_results_cb)(&error_list);
14b0bc8e 6808
ac96497c 6809 dplane_ctx_list_init(&error_list);
14b0bc8e 6810
4c206c8f
MS
6811 /* Call through to zebra main */
6812 (zdplane_info.dg_results_cb)(&work_list);
c831033f 6813
ac96497c 6814 dplane_ctx_list_init(&work_list);
c831033f
MS
6815}
6816
4dfd7a02
MS
6817/*
6818 * Final phase of shutdown, after all work enqueued to dplane has been
6819 * processed. This is called from the zebra main pthread context.
6820 */
6821void zebra_dplane_shutdown(void)
6822{
6ba8db21
RZ
6823 struct zebra_dplane_provider *dp;
6824
4dfd7a02
MS
6825 if (IS_ZEBRA_DEBUG_DPLANE)
6826 zlog_debug("Zebra dataplane shutdown called");
1d11b21f
MS
6827
6828 /* Stop dplane thread, if it's running */
6829
25779064 6830 zdplane_info.dg_run = false;
1d11b21f 6831
d8c16a95
MS
6832 frr_pthread_stop(zdplane_info.dg_pthread, NULL);
6833
6834 /* Destroy pthread */
6835 frr_pthread_destroy(zdplane_info.dg_pthread);
6836 zdplane_info.dg_pthread = NULL;
6837 zdplane_info.dg_master = NULL;
4dfd7a02 6838
3c0e1622
MS
6839 /* Notify provider(s) of final shutdown.
6840 * Note that this call is in the main pthread, so providers must
6841 * be prepared for that.
6842 */
ac96497c 6843 frr_each (dplane_prov_list, &zdplane_info.dg_providers, dp) {
6ba8db21
RZ
6844 if (dp->dp_fini == NULL)
6845 continue;
6846
6847 dp->dp_fini(dp, false);
6848 }
c831033f
MS
6849
6850 /* TODO -- Clean-up provider objects */
6851
6852 /* TODO -- Clean queue(s), free memory */
6853}
6854
6855/*
6856 * Initialize the dataplane module during startup, internal/private version
6857 */
2561d12e 6858static void zebra_dplane_init_internal(void)
c831033f
MS
6859{
6860 memset(&zdplane_info, 0, sizeof(zdplane_info));
6861
6862 pthread_mutex_init(&zdplane_info.dg_mutex, NULL);
1d11b21f 6863
ac96497c
MS
6864 dplane_prov_list_init(&zdplane_info.dg_providers);
6865
6866 dplane_ctx_list_init(&zdplane_info.dg_update_list);
d166308b 6867 zns_info_list_init(&zdplane_info.dg_zns_list);
1d11b21f 6868
c831033f
MS
6869 zdplane_info.dg_updates_per_cycle = DPLANE_DEFAULT_NEW_WORK;
6870
6871 zdplane_info.dg_max_queued_updates = DPLANE_DEFAULT_MAX_QUEUED;
6872
6873 /* Register default kernel 'provider' during init */
6874 dplane_provider_init();
e5a60d82 6875}
c831033f 6876
e5a60d82
MS
6877/*
6878 * Start the dataplane pthread. This step needs to be run later than the
6879 * 'init' step, in case zebra has fork-ed.
6880 */
6881void zebra_dplane_start(void)
6882{
d166308b 6883 struct dplane_zns_info *zi;
1dd4ea8a 6884 struct zebra_dplane_provider *prov;
c831033f
MS
6885 struct frr_pthread_attr pattr = {
6886 .start = frr_pthread_attr_default.start,
6887 .stop = frr_pthread_attr_default.stop
6888 };
6889
1dd4ea8a
MS
6890 /* Start dataplane pthread */
6891
c831033f 6892 zdplane_info.dg_pthread = frr_pthread_new(&pattr, "Zebra dplane thread",
0eca319c 6893 "zebra_dplane");
c831033f
MS
6894
6895 zdplane_info.dg_master = zdplane_info.dg_pthread->master;
6896
e5a60d82
MS
6897 zdplane_info.dg_run = true;
6898
c831033f 6899 /* Enqueue an initial event for the dataplane pthread */
907a2395
DS
6900 event_add_event(zdplane_info.dg_master, dplane_thread_loop, NULL, 0,
6901 &zdplane_info.dg_t_update);
c831033f 6902
cd787a8a 6903 /* Enqueue requests and reads if necessary */
d166308b
MS
6904 frr_each (zns_info_list, &zdplane_info.dg_zns_list, zi) {
6905#if defined(HAVE_NETLINK)
907a2395
DS
6906 event_add_read(zdplane_info.dg_master, dplane_incoming_read, zi,
6907 zi->info.sock, &zi->t_read);
cd787a8a 6908 dplane_kernel_info_request(zi);
d166308b
MS
6909#endif
6910 }
6911
1dd4ea8a
MS
6912 /* Call start callbacks for registered providers */
6913
6914 DPLANE_LOCK();
ac96497c 6915 prov = dplane_prov_list_first(&zdplane_info.dg_providers);
1dd4ea8a
MS
6916 DPLANE_UNLOCK();
6917
6918 while (prov) {
6919
6920 if (prov->dp_start)
6921 (prov->dp_start)(prov);
6922
6923 /* Locate next provider */
ac96497c 6924 prov = dplane_prov_list_next(&zdplane_info.dg_providers, prov);
1dd4ea8a
MS
6925 }
6926
c831033f 6927 frr_pthread_run(zdplane_info.dg_pthread, NULL);
18c37974
MS
6928}
6929
7cdb1a84 6930/*
b8e0423d 6931 * Initialize the dataplane module at startup; called by zebra rib_init()
7cdb1a84 6932 */
ac96497c 6933void zebra_dplane_init(int (*results_fp)(struct dplane_ctx_list_head *))
7cdb1a84 6934{
2561d12e 6935 zebra_dplane_init_internal();
4c206c8f 6936 zdplane_info.dg_results_cb = results_fp;
7cdb1a84 6937}