]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_dplane.c
lib: Add common handler for nexthop_group_equal*()
[mirror_frr.git] / zebra / zebra_dplane.c
CommitLineData
ea1c14f6
MS
1/*
2 * Zebra dataplane layer.
3 * Copyright (c) 2018 Volta Networks, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
2618a52e
DL
20#ifdef HAVE_CONFIG_H
21#include "config.h"
22#endif
23
18c37974 24#include "lib/libfrr.h"
1d11b21f
MS
25#include "lib/debug.h"
26#include "lib/frratomic.h"
7cdb1a84 27#include "lib/frr_pthread.h"
1d11b21f 28#include "lib/memory.h"
7cdb1a84 29#include "lib/queue.h"
1d11b21f 30#include "lib/zebra.h"
1485bbe7 31#include "zebra/zebra_router.h"
7cdb1a84 32#include "zebra/zebra_memory.h"
3801e764 33#include "zebra/zebra_router.h"
7cdb1a84
MS
34#include "zebra/zebra_dplane.h"
35#include "zebra/rt.h"
36#include "zebra/debug.h"
37
38/* Memory type for context blocks */
c1344b54
DL
39DEFINE_MTYPE_STATIC(ZEBRA, DP_CTX, "Zebra DPlane Ctx")
40DEFINE_MTYPE_STATIC(ZEBRA, DP_PROV, "Zebra DPlane Provider")
7cdb1a84
MS
41
42#ifndef AOK
43# define AOK 0
44#endif
45
e5a60d82
MS
46/* Enable test dataplane provider */
47/*#define DPLANE_TEST_PROVIDER 1 */
48
91f16812
MS
49/* Default value for max queued incoming updates */
50const uint32_t DPLANE_DEFAULT_MAX_QUEUED = 200;
51
c831033f
MS
52/* Default value for new work per cycle */
53const uint32_t DPLANE_DEFAULT_NEW_WORK = 100;
54
7cdb1a84
MS
55/* Validation check macro for context blocks */
56/* #define DPLANE_DEBUG 1 */
57
58#ifdef DPLANE_DEBUG
59
25779064
MS
60# define DPLANE_CTX_VALID(p) \
61 assert((p) != NULL)
7cdb1a84
MS
62
63#else
64
5709131c 65# define DPLANE_CTX_VALID(p)
7cdb1a84
MS
66
67#endif /* DPLANE_DEBUG */
68
0c8215cb
SW
69/*
70 * Nexthop information captured for nexthop/nexthop group updates
71 */
72struct dplane_nexthop_info {
73 uint32_t id;
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
7cdb1a84 83/*
0f461727 84 * Route information captured for route updates.
7cdb1a84 85 */
0f461727 86struct dplane_route_info {
7cdb1a84
MS
87
88 /* Dest and (optional) source prefixes */
89 struct prefix zd_dest;
90 struct prefix zd_src;
91
0f461727
MS
92 afi_t zd_afi;
93 safi_t zd_safi;
7cdb1a84
MS
94
95 int zd_type;
96 int zd_old_type;
97
7cdb1a84
MS
98 route_tag_t zd_tag;
99 route_tag_t zd_old_tag;
100 uint32_t zd_metric;
01ce7cba 101 uint32_t zd_old_metric;
0f461727 102
7cdb1a84
MS
103 uint16_t zd_instance;
104 uint16_t zd_old_instance;
105
106 uint8_t zd_distance;
107 uint8_t zd_old_distance;
108
109 uint32_t zd_mtu;
110 uint32_t zd_nexthop_mtu;
111
0c8215cb
SW
112 /* Nexthop hash entry info */
113 struct dplane_nexthop_info nhe;
f820d025 114
7cdb1a84
MS
115 /* Nexthops */
116 struct nexthop_group zd_ng;
117
4dfd7a02 118 /* "Previous" nexthops, used only in route updates without netlink */
01ce7cba
MS
119 struct nexthop_group zd_old_ng;
120
b8e0423d
MS
121 /* TODO -- use fixed array of nexthops, to avoid mallocs? */
122
0f461727
MS
123};
124
d613b8e1
MS
125/*
126 * Pseudowire info for the dataplane
127 */
128struct dplane_pw_info {
d613b8e1
MS
129 int type;
130 int af;
131 int status;
132 uint32_t flags;
16d69787 133 union g_addr dest;
d613b8e1
MS
134 mpls_label_t local_label;
135 mpls_label_t remote_label;
136
16d69787
MS
137 /* Nexthops */
138 struct nexthop_group nhg;
139
d613b8e1
MS
140 union pw_protocol_fields fields;
141};
142
a4a4802a
MS
143/*
144 * Interface/prefix info for the dataplane
145 */
146struct dplane_intf_info {
147
a4a4802a
MS
148 uint32_t metric;
149 uint32_t flags;
150
151#define DPLANE_INTF_CONNECTED (1 << 0) /* Connected peer, p2p */
152#define DPLANE_INTF_SECONDARY (1 << 1)
64168803 153#define DPLANE_INTF_BROADCAST (1 << 2)
0f3af738 154#define DPLANE_INTF_HAS_DEST DPLANE_INTF_CONNECTED
64168803 155#define DPLANE_INTF_HAS_LABEL (1 << 4)
a4a4802a
MS
156
157 /* Interface address/prefix */
158 struct prefix prefix;
159
160 /* Dest address, for p2p, or broadcast prefix */
161 struct prefix dest_prefix;
162
163 char *label;
164 char label_buf[32];
165};
166
7597ac7b 167/*
0bbd4ff4 168 * EVPN MAC address info for the dataplane.
7597ac7b
MS
169 */
170struct dplane_mac_info {
171 vlanid_t vid;
478566d6 172 ifindex_t br_ifindex;
7597ac7b
MS
173 struct ethaddr mac;
174 struct in_addr vtep_ip;
175 bool is_sticky;
176
177};
178
931fa60c
MS
179/*
180 * EVPN neighbor info for the dataplane
181 */
182struct dplane_neigh_info {
183 struct ipaddr ip_addr;
184 struct ethaddr mac;
185 uint32_t flags;
186 uint16_t state;
187};
188
0f461727
MS
189/*
190 * The context block used to exchange info about route updates across
191 * the boundary between the zebra main context (and pthread) and the
192 * dataplane layer (and pthread).
193 */
194struct zebra_dplane_ctx {
195
196 /* Operation code */
197 enum dplane_op_e zd_op;
198
199 /* Status on return */
200 enum zebra_dplane_result zd_status;
201
202 /* Dplane provider id */
203 uint32_t zd_provider;
204
205 /* Flags - used by providers, e.g. */
206 int zd_flags;
207
208 bool zd_is_update;
209
210 uint32_t zd_seq;
211 uint32_t zd_old_seq;
212
0024a559
MS
213 /* Some updates may be generated by notifications: allow the
214 * plugin to notice and ignore results from its own notifications.
215 */
216 uint32_t zd_notif_provider;
217
0f461727
MS
218 /* TODO -- internal/sub-operation status? */
219 enum zebra_dplane_result zd_remote_status;
220 enum zebra_dplane_result zd_kernel_status;
221
222 vrf_id_t zd_vrf_id;
223 uint32_t zd_table_id;
224
7c7ef4a8
MS
225 char zd_ifname[INTERFACE_NAMSIZ];
226 ifindex_t zd_ifindex;
227
a4a4802a 228 /* Support info for different kinds of updates */
0f461727
MS
229 union {
230 struct dplane_route_info rinfo;
231 zebra_lsp_t lsp;
d613b8e1 232 struct dplane_pw_info pw;
a4a4802a 233 struct dplane_intf_info intf;
7597ac7b 234 struct dplane_mac_info macinfo;
931fa60c 235 struct dplane_neigh_info neigh;
0f461727
MS
236 } u;
237
238 /* Namespace info, used especially for netlink kernel communication */
239 struct zebra_dplane_info zd_ns_info;
240
7cdb1a84 241 /* Embedded list linkage */
25779064 242 TAILQ_ENTRY(zebra_dplane_ctx) zd_q_entries;
7cdb1a84
MS
243};
244
c831033f
MS
245/* Flag that can be set by a pre-kernel provider as a signal that an update
246 * should bypass the kernel.
247 */
248#define DPLANE_CTX_FLAG_NO_KERNEL 0x01
249
250
7cdb1a84
MS
251/*
252 * Registration block for one dataplane provider.
253 */
25779064 254struct zebra_dplane_provider {
7cdb1a84
MS
255 /* Name */
256 char dp_name[DPLANE_PROVIDER_NAMELEN + 1];
257
258 /* Priority, for ordering among providers */
259 uint8_t dp_priority;
260
261 /* Id value */
262 uint32_t dp_id;
263
c831033f
MS
264 /* Mutex */
265 pthread_mutex_t dp_mutex;
266
267 /* Plugin-provided extra data */
268 void *dp_data;
269
270 /* Flags */
271 int dp_flags;
272
1dd4ea8a
MS
273 int (*dp_start)(struct zebra_dplane_provider *prov);
274
4c206c8f 275 int (*dp_fp)(struct zebra_dplane_provider *prov);
7cdb1a84 276
4c206c8f 277 int (*dp_fini)(struct zebra_dplane_provider *prov, bool early_p);
18c37974 278
0545c373 279 _Atomic uint32_t dp_in_counter;
c9d17fe8 280 _Atomic uint32_t dp_in_queued;
c831033f
MS
281 _Atomic uint32_t dp_in_max;
282 _Atomic uint32_t dp_out_counter;
c9d17fe8 283 _Atomic uint32_t dp_out_queued;
c831033f 284 _Atomic uint32_t dp_out_max;
0545c373 285 _Atomic uint32_t dp_error_counter;
1d11b21f 286
c831033f
MS
287 /* Queue of contexts inbound to the provider */
288 struct dplane_ctx_q dp_ctx_in_q;
289
290 /* Queue of completed contexts outbound from the provider back
291 * towards the dataplane module.
292 */
293 struct dplane_ctx_q dp_ctx_out_q;
7cdb1a84 294
c831033f
MS
295 /* Embedded list linkage for provider objects */
296 TAILQ_ENTRY(zebra_dplane_provider) dp_prov_link;
7cdb1a84
MS
297};
298
299/*
300 * Globals
301 */
25779064 302static struct zebra_dplane_globals {
7cdb1a84
MS
303 /* Mutex to control access to dataplane components */
304 pthread_mutex_t dg_mutex;
305
306 /* Results callback registered by zebra 'core' */
4c206c8f 307 int (*dg_results_cb)(struct dplane_ctx_q *ctxlist);
7cdb1a84 308
4dfd7a02
MS
309 /* Sentinel for beginning of shutdown */
310 volatile bool dg_is_shutdown;
311
312 /* Sentinel for end of shutdown */
1d11b21f
MS
313 volatile bool dg_run;
314
3fe4ccc4
MS
315 /* Update context queue inbound to the dataplane */
316 TAILQ_HEAD(zdg_ctx_q, zebra_dplane_ctx) dg_update_ctx_q;
7cdb1a84
MS
317
318 /* Ordered list of providers */
25779064 319 TAILQ_HEAD(zdg_prov_q, zebra_dplane_provider) dg_providers_q;
7cdb1a84 320
1d11b21f 321 /* Counter used to assign internal ids to providers */
b8e0423d
MS
322 uint32_t dg_provider_id;
323
91f16812
MS
324 /* Limit number of pending, unprocessed updates */
325 _Atomic uint32_t dg_max_queued_updates;
326
cf363e1b
MS
327 /* Control whether system route notifications should be produced. */
328 bool dg_sys_route_notifs;
329
c831033f
MS
330 /* Limit number of new updates dequeued at once, to pace an
331 * incoming burst.
332 */
333 uint32_t dg_updates_per_cycle;
334
0545c373 335 _Atomic uint32_t dg_routes_in;
1d11b21f 336 _Atomic uint32_t dg_routes_queued;
4dfd7a02 337 _Atomic uint32_t dg_routes_queued_max;
0545c373 338 _Atomic uint32_t dg_route_errors;
16c628de
MS
339 _Atomic uint32_t dg_other_errors;
340
f820d025
SW
341 _Atomic uint32_t dg_nexthops_in;
342 _Atomic uint32_t dg_nexthop_errors;
343
16c628de 344 _Atomic uint32_t dg_lsps_in;
16c628de
MS
345 _Atomic uint32_t dg_lsp_errors;
346
97d8d05a
MS
347 _Atomic uint32_t dg_pws_in;
348 _Atomic uint32_t dg_pw_errors;
349
64168803
MS
350 _Atomic uint32_t dg_intf_addrs_in;
351 _Atomic uint32_t dg_intf_addr_errors;
352
7597ac7b
MS
353 _Atomic uint32_t dg_macs_in;
354 _Atomic uint32_t dg_mac_errors;
355
931fa60c
MS
356 _Atomic uint32_t dg_neighs_in;
357 _Atomic uint32_t dg_neigh_errors;
358
c831033f 359 _Atomic uint32_t dg_update_yields;
1d11b21f 360
d8c16a95
MS
361 /* Dataplane pthread */
362 struct frr_pthread *dg_pthread;
363
7cdb1a84
MS
364 /* Event-delivery context 'master' for the dplane */
365 struct thread_master *dg_master;
366
367 /* Event/'thread' pointer for queued updates */
368 struct thread *dg_t_update;
369
4dfd7a02
MS
370 /* Event pointer for pending shutdown check loop */
371 struct thread *dg_t_shutdown_check;
372
25779064 373} zdplane_info;
7cdb1a84
MS
374
375/*
c831033f 376 * Lock and unlock for interactions with the zebra 'core' pthread
7cdb1a84 377 */
25779064 378#define DPLANE_LOCK() pthread_mutex_lock(&zdplane_info.dg_mutex)
25779064 379#define DPLANE_UNLOCK() pthread_mutex_unlock(&zdplane_info.dg_mutex)
7cdb1a84 380
c831033f
MS
381
382/*
383 * Lock and unlock for individual providers
384 */
385#define DPLANE_PROV_LOCK(p) pthread_mutex_lock(&((p)->dp_mutex))
386#define DPLANE_PROV_UNLOCK(p) pthread_mutex_unlock(&((p)->dp_mutex))
387
7cdb1a84 388/* Prototypes */
c831033f 389static int dplane_thread_loop(struct thread *event);
62b8bb7a
MS
390static void dplane_info_from_zns(struct zebra_dplane_info *ns_info,
391 struct zebra_ns *zns);
16c628de
MS
392static enum zebra_dplane_result lsp_update_internal(zebra_lsp_t *lsp,
393 enum dplane_op_e op);
97d8d05a
MS
394static enum zebra_dplane_result pw_update_internal(struct zebra_pw *pw,
395 enum dplane_op_e op);
64168803
MS
396static enum zebra_dplane_result intf_addr_update_internal(
397 const struct interface *ifp, const struct connected *ifc,
398 enum dplane_op_e op);
7597ac7b
MS
399static enum zebra_dplane_result mac_update_internal(
400 enum dplane_op_e op, const struct interface *ifp,
478566d6 401 const struct interface *br_ifp,
7597ac7b
MS
402 vlanid_t vid, const struct ethaddr *mac,
403 struct in_addr vtep_ip, bool sticky);
931fa60c
MS
404static enum zebra_dplane_result neigh_update_internal(
405 enum dplane_op_e op,
406 const struct interface *ifp,
407 const struct ethaddr *mac,
408 const struct ipaddr *ip,
409 uint32_t flags, uint16_t state);
7cdb1a84
MS
410
411/*
412 * Public APIs
413 */
414
ad6aad4d
MS
415/* Obtain thread_master for dataplane thread */
416struct thread_master *dplane_get_thread_master(void)
417{
418 return zdplane_info.dg_master;
419}
420
7cdb1a84 421/*
b8e0423d 422 * Allocate a dataplane update context
7cdb1a84 423 */
593e4eb1 424struct zebra_dplane_ctx *dplane_ctx_alloc(void)
7cdb1a84 425{
25779064 426 struct zebra_dplane_ctx *p;
7cdb1a84 427
b8e0423d
MS
428 /* TODO -- just alloc'ing memory, but would like to maintain
429 * a pool
430 */
25779064 431 p = XCALLOC(MTYPE_DP_CTX, sizeof(struct zebra_dplane_ctx));
7cdb1a84 432
5709131c 433 return p;
7cdb1a84
MS
434}
435
cf363e1b
MS
436/* Enable system route notifications */
437void dplane_enable_sys_route_notifs(void)
438{
439 zdplane_info.dg_sys_route_notifs = true;
440}
441
7cdb1a84 442/*
b8e0423d 443 * Free a dataplane results context.
7cdb1a84 444 */
25779064 445static void dplane_ctx_free(struct zebra_dplane_ctx **pctx)
7cdb1a84 446{
16c628de
MS
447 if (pctx == NULL)
448 return;
7cdb1a84 449
16c628de
MS
450 DPLANE_CTX_VALID(*pctx);
451
452 /* TODO -- just freeing memory, but would like to maintain
453 * a pool
454 */
455
456 /* Some internal allocations may need to be freed, depending on
457 * the type of info captured in the ctx.
458 */
459 switch ((*pctx)->zd_op) {
460 case DPLANE_OP_ROUTE_INSTALL:
461 case DPLANE_OP_ROUTE_UPDATE:
462 case DPLANE_OP_ROUTE_DELETE:
cf363e1b
MS
463 case DPLANE_OP_SYS_ROUTE_ADD:
464 case DPLANE_OP_SYS_ROUTE_DELETE:
54818e3b 465 case DPLANE_OP_ROUTE_NOTIFY:
b8e0423d 466
16c628de 467 /* Free allocated nexthops */
0f461727 468 if ((*pctx)->u.rinfo.zd_ng.nexthop) {
7cdb1a84 469 /* This deals with recursive nexthops too */
0f461727 470 nexthops_free((*pctx)->u.rinfo.zd_ng.nexthop);
16c628de
MS
471
472 (*pctx)->u.rinfo.zd_ng.nexthop = NULL;
7cdb1a84
MS
473 }
474
0f461727 475 if ((*pctx)->u.rinfo.zd_old_ng.nexthop) {
4dfd7a02 476 /* This deals with recursive nexthops too */
0f461727 477 nexthops_free((*pctx)->u.rinfo.zd_old_ng.nexthop);
16c628de
MS
478
479 (*pctx)->u.rinfo.zd_old_ng.nexthop = NULL;
480 }
481
482 break;
483
f820d025
SW
484 case DPLANE_OP_NH_INSTALL:
485 case DPLANE_OP_NH_UPDATE:
486 case DPLANE_OP_NH_DELETE: {
0c8215cb
SW
487 if ((*pctx)->u.rinfo.nhe.ng.nexthop) {
488 /* This deals with recursive nexthops too */
489 nexthops_free((*pctx)->u.rinfo.nhe.ng.nexthop);
490
491 (*pctx)->u.rinfo.nhe.ng.nexthop = NULL;
492 }
f820d025
SW
493 break;
494 }
495
16c628de
MS
496 case DPLANE_OP_LSP_INSTALL:
497 case DPLANE_OP_LSP_UPDATE:
498 case DPLANE_OP_LSP_DELETE:
104e3ad9 499 case DPLANE_OP_LSP_NOTIFY:
16c628de
MS
500 {
501 zebra_nhlfe_t *nhlfe, *next;
502
503 /* Free allocated NHLFEs */
504 for (nhlfe = (*pctx)->u.lsp.nhlfe_list; nhlfe; nhlfe = next) {
505 next = nhlfe->next;
506
507 zebra_mpls_nhlfe_del(nhlfe);
01ce7cba
MS
508 }
509
16c628de
MS
510 /* Clear pointers in lsp struct, in case we're cacheing
511 * free context structs.
512 */
513 (*pctx)->u.lsp.nhlfe_list = NULL;
514 (*pctx)->u.lsp.best_nhlfe = NULL;
515
516 break;
517 }
518
97d8d05a
MS
519 case DPLANE_OP_PW_INSTALL:
520 case DPLANE_OP_PW_UNINSTALL:
16d69787
MS
521 /* Free allocated nexthops */
522 if ((*pctx)->u.pw.nhg.nexthop) {
523 /* This deals with recursive nexthops too */
524 nexthops_free((*pctx)->u.pw.nhg.nexthop);
525
526 (*pctx)->u.pw.nhg.nexthop = NULL;
527 }
528 break;
529
a4a4802a
MS
530 case DPLANE_OP_ADDR_INSTALL:
531 case DPLANE_OP_ADDR_UNINSTALL:
64168803
MS
532 /* Maybe free label string, if allocated */
533 if ((*pctx)->u.intf.label != NULL &&
534 (*pctx)->u.intf.label != (*pctx)->u.intf.label_buf) {
535 free((*pctx)->u.intf.label);
536 (*pctx)->u.intf.label = NULL;
537 }
538 break;
539
7597ac7b
MS
540 case DPLANE_OP_MAC_INSTALL:
541 case DPLANE_OP_MAC_DELETE:
f2412b2d 542 case DPLANE_OP_NEIGH_INSTALL:
931fa60c 543 case DPLANE_OP_NEIGH_UPDATE:
f2412b2d 544 case DPLANE_OP_NEIGH_DELETE:
0bbd4ff4
MS
545 case DPLANE_OP_VTEP_ADD:
546 case DPLANE_OP_VTEP_DELETE:
16c628de
MS
547 case DPLANE_OP_NONE:
548 break;
7cdb1a84 549 }
16c628de
MS
550
551 XFREE(MTYPE_DP_CTX, *pctx);
552 *pctx = NULL;
7cdb1a84
MS
553}
554
555/*
556 * Return a context block to the dplane module after processing
557 */
25779064 558void dplane_ctx_fini(struct zebra_dplane_ctx **pctx)
7cdb1a84 559{
14b0bc8e 560 /* TODO -- maintain pool; for now, just free */
7cdb1a84
MS
561 dplane_ctx_free(pctx);
562}
563
564/* Enqueue a context block */
25779064
MS
565void dplane_ctx_enqueue_tail(struct dplane_ctx_q *q,
566 const struct zebra_dplane_ctx *ctx)
7cdb1a84 567{
25779064 568 TAILQ_INSERT_TAIL(q, (struct zebra_dplane_ctx *)ctx, zd_q_entries);
7cdb1a84
MS
569}
570
14b0bc8e
MS
571/* Append a list of context blocks to another list */
572void dplane_ctx_list_append(struct dplane_ctx_q *to_list,
573 struct dplane_ctx_q *from_list)
574{
575 if (TAILQ_FIRST(from_list)) {
576 TAILQ_CONCAT(to_list, from_list, zd_q_entries);
577
578 /* And clear 'from' list */
579 TAILQ_INIT(from_list);
580 }
581}
582
7cdb1a84 583/* Dequeue a context block from the head of a list */
68b375e0 584struct zebra_dplane_ctx *dplane_ctx_dequeue(struct dplane_ctx_q *q)
7cdb1a84 585{
25779064 586 struct zebra_dplane_ctx *ctx = TAILQ_FIRST(q);
5709131c
MS
587
588 if (ctx)
7cdb1a84 589 TAILQ_REMOVE(q, ctx, zd_q_entries);
7cdb1a84 590
68b375e0 591 return ctx;
7cdb1a84
MS
592}
593
594/*
595 * Accessors for information from the context object
596 */
25779064
MS
597enum zebra_dplane_result dplane_ctx_get_status(
598 const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
599{
600 DPLANE_CTX_VALID(ctx);
601
5709131c 602 return ctx->zd_status;
7cdb1a84
MS
603}
604
c831033f
MS
605void dplane_ctx_set_status(struct zebra_dplane_ctx *ctx,
606 enum zebra_dplane_result status)
607{
608 DPLANE_CTX_VALID(ctx);
609
610 ctx->zd_status = status;
611}
612
613/* Retrieve last/current provider id */
614uint32_t dplane_ctx_get_provider(const struct zebra_dplane_ctx *ctx)
615{
616 DPLANE_CTX_VALID(ctx);
617 return ctx->zd_provider;
618}
619
620/* Providers run before the kernel can control whether a kernel
621 * update should be done.
622 */
623void dplane_ctx_set_skip_kernel(struct zebra_dplane_ctx *ctx)
624{
625 DPLANE_CTX_VALID(ctx);
626
627 SET_FLAG(ctx->zd_flags, DPLANE_CTX_FLAG_NO_KERNEL);
628}
629
630bool dplane_ctx_is_skip_kernel(const struct zebra_dplane_ctx *ctx)
631{
632 DPLANE_CTX_VALID(ctx);
633
634 return CHECK_FLAG(ctx->zd_flags, DPLANE_CTX_FLAG_NO_KERNEL);
635}
636
593e4eb1
MS
637void dplane_ctx_set_op(struct zebra_dplane_ctx *ctx, enum dplane_op_e op)
638{
639 DPLANE_CTX_VALID(ctx);
640 ctx->zd_op = op;
641}
642
25779064 643enum dplane_op_e dplane_ctx_get_op(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
644{
645 DPLANE_CTX_VALID(ctx);
646
5709131c 647 return ctx->zd_op;
7cdb1a84
MS
648}
649
5709131c 650const char *dplane_op2str(enum dplane_op_e op)
7cdb1a84
MS
651{
652 const char *ret = "UNKNOWN";
653
5709131c 654 switch (op) {
7cdb1a84
MS
655 case DPLANE_OP_NONE:
656 ret = "NONE";
657 break;
658
659 /* Route update */
660 case DPLANE_OP_ROUTE_INSTALL:
661 ret = "ROUTE_INSTALL";
662 break;
663 case DPLANE_OP_ROUTE_UPDATE:
664 ret = "ROUTE_UPDATE";
665 break;
666 case DPLANE_OP_ROUTE_DELETE:
667 ret = "ROUTE_DELETE";
668 break;
54818e3b
MS
669 case DPLANE_OP_ROUTE_NOTIFY:
670 ret = "ROUTE_NOTIFY";
671 break;
7cdb1a84 672
f820d025
SW
673 /* Nexthop update */
674 case DPLANE_OP_NH_INSTALL:
675 ret = "NH_INSTALL";
676 break;
677 case DPLANE_OP_NH_UPDATE:
678 ret = "NH_UPDATE";
679 break;
680 case DPLANE_OP_NH_DELETE:
681 ret = "NH_DELETE";
682 break;
683
16c628de
MS
684 case DPLANE_OP_LSP_INSTALL:
685 ret = "LSP_INSTALL";
686 break;
687 case DPLANE_OP_LSP_UPDATE:
688 ret = "LSP_UPDATE";
689 break;
690 case DPLANE_OP_LSP_DELETE:
691 ret = "LSP_DELETE";
692 break;
104e3ad9
MS
693 case DPLANE_OP_LSP_NOTIFY:
694 ret = "LSP_NOTIFY";
695 break;
16c628de 696
97d8d05a
MS
697 case DPLANE_OP_PW_INSTALL:
698 ret = "PW_INSTALL";
699 break;
700 case DPLANE_OP_PW_UNINSTALL:
701 ret = "PW_UNINSTALL";
702 break;
703
cf363e1b
MS
704 case DPLANE_OP_SYS_ROUTE_ADD:
705 ret = "SYS_ROUTE_ADD";
706 break;
707 case DPLANE_OP_SYS_ROUTE_DELETE:
708 ret = "SYS_ROUTE_DEL";
709 break;
a4a4802a
MS
710
711 case DPLANE_OP_ADDR_INSTALL:
712 ret = "ADDR_INSTALL";
713 break;
714 case DPLANE_OP_ADDR_UNINSTALL:
715 ret = "ADDR_UNINSTALL";
716 break;
717
7597ac7b
MS
718 case DPLANE_OP_MAC_INSTALL:
719 ret = "MAC_INSTALL";
720 break;
721 case DPLANE_OP_MAC_DELETE:
722 ret = "MAC_DELETE";
723 break;
f2412b2d
MS
724
725 case DPLANE_OP_NEIGH_INSTALL:
726 ret = "NEIGH_INSTALL";
727 break;
931fa60c
MS
728 case DPLANE_OP_NEIGH_UPDATE:
729 ret = "NEIGH_UPDATE";
730 break;
f2412b2d
MS
731 case DPLANE_OP_NEIGH_DELETE:
732 ret = "NEIGH_DELETE";
733 break;
0bbd4ff4
MS
734 case DPLANE_OP_VTEP_ADD:
735 ret = "VTEP_ADD";
736 break;
737 case DPLANE_OP_VTEP_DELETE:
738 ret = "VTEP_DELETE";
739 break;
5b94ec50 740 }
7cdb1a84 741
5709131c 742 return ret;
7cdb1a84
MS
743}
744
f183e380
MS
745const char *dplane_res2str(enum zebra_dplane_result res)
746{
747 const char *ret = "<Unknown>";
748
749 switch (res) {
750 case ZEBRA_DPLANE_REQUEST_FAILURE:
751 ret = "FAILURE";
752 break;
753 case ZEBRA_DPLANE_REQUEST_QUEUED:
754 ret = "QUEUED";
755 break;
756 case ZEBRA_DPLANE_REQUEST_SUCCESS:
757 ret = "SUCCESS";
758 break;
5b94ec50 759 }
f183e380
MS
760
761 return ret;
762}
763
593e4eb1
MS
764void dplane_ctx_set_dest(struct zebra_dplane_ctx *ctx,
765 const struct prefix *dest)
766{
767 DPLANE_CTX_VALID(ctx);
768
769 prefix_copy(&(ctx->u.rinfo.zd_dest), dest);
770}
771
25779064 772const struct prefix *dplane_ctx_get_dest(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
773{
774 DPLANE_CTX_VALID(ctx);
775
0f461727 776 return &(ctx->u.rinfo.zd_dest);
7cdb1a84
MS
777}
778
593e4eb1
MS
779void dplane_ctx_set_src(struct zebra_dplane_ctx *ctx, const struct prefix *src)
780{
781 DPLANE_CTX_VALID(ctx);
782
783 if (src)
784 prefix_copy(&(ctx->u.rinfo.zd_src), src);
785 else
786 memset(&(ctx->u.rinfo.zd_src), 0, sizeof(struct prefix));
787}
788
5709131c 789/* Source prefix is a little special - return NULL for "no src prefix" */
25779064 790const struct prefix *dplane_ctx_get_src(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
791{
792 DPLANE_CTX_VALID(ctx);
793
0f461727
MS
794 if (ctx->u.rinfo.zd_src.prefixlen == 0 &&
795 IN6_IS_ADDR_UNSPECIFIED(&(ctx->u.rinfo.zd_src.u.prefix6))) {
5709131c 796 return NULL;
7cdb1a84 797 } else {
0f461727 798 return &(ctx->u.rinfo.zd_src);
7cdb1a84
MS
799 }
800}
801
25779064 802bool dplane_ctx_is_update(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
803{
804 DPLANE_CTX_VALID(ctx);
805
5709131c 806 return ctx->zd_is_update;
7cdb1a84
MS
807}
808
25779064 809uint32_t dplane_ctx_get_seq(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
810{
811 DPLANE_CTX_VALID(ctx);
812
5709131c 813 return ctx->zd_seq;
7cdb1a84
MS
814}
815
25779064 816uint32_t dplane_ctx_get_old_seq(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
817{
818 DPLANE_CTX_VALID(ctx);
819
5709131c 820 return ctx->zd_old_seq;
7cdb1a84
MS
821}
822
593e4eb1
MS
823void dplane_ctx_set_vrf(struct zebra_dplane_ctx *ctx, vrf_id_t vrf)
824{
825 DPLANE_CTX_VALID(ctx);
826
827 ctx->zd_vrf_id = vrf;
828}
829
25779064 830vrf_id_t dplane_ctx_get_vrf(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
831{
832 DPLANE_CTX_VALID(ctx);
833
5709131c 834 return ctx->zd_vrf_id;
7cdb1a84
MS
835}
836
0024a559
MS
837bool dplane_ctx_is_from_notif(const struct zebra_dplane_ctx *ctx)
838{
839 DPLANE_CTX_VALID(ctx);
840
841 return (ctx->zd_notif_provider != 0);
842}
843
844uint32_t dplane_ctx_get_notif_provider(const struct zebra_dplane_ctx *ctx)
845{
846 DPLANE_CTX_VALID(ctx);
847
848 return ctx->zd_notif_provider;
849}
850
9651af61
MS
851void dplane_ctx_set_notif_provider(struct zebra_dplane_ctx *ctx,
852 uint32_t id)
853{
854 DPLANE_CTX_VALID(ctx);
855
856 ctx->zd_notif_provider = id;
857}
7c7ef4a8
MS
858const char *dplane_ctx_get_ifname(const struct zebra_dplane_ctx *ctx)
859{
860 DPLANE_CTX_VALID(ctx);
861
862 return ctx->zd_ifname;
863}
864
865ifindex_t dplane_ctx_get_ifindex(const struct zebra_dplane_ctx *ctx)
866{
867 DPLANE_CTX_VALID(ctx);
868
869 return ctx->zd_ifindex;
870}
9651af61 871
593e4eb1
MS
872void dplane_ctx_set_type(struct zebra_dplane_ctx *ctx, int type)
873{
874 DPLANE_CTX_VALID(ctx);
875
876 ctx->u.rinfo.zd_type = type;
877}
878
25779064 879int dplane_ctx_get_type(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
880{
881 DPLANE_CTX_VALID(ctx);
882
0f461727 883 return ctx->u.rinfo.zd_type;
7cdb1a84
MS
884}
885
25779064 886int dplane_ctx_get_old_type(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
887{
888 DPLANE_CTX_VALID(ctx);
889
0f461727 890 return ctx->u.rinfo.zd_old_type;
7cdb1a84
MS
891}
892
593e4eb1
MS
893void dplane_ctx_set_afi(struct zebra_dplane_ctx *ctx, afi_t afi)
894{
895 DPLANE_CTX_VALID(ctx);
896
897 ctx->u.rinfo.zd_afi = afi;
898}
899
25779064 900afi_t dplane_ctx_get_afi(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
901{
902 DPLANE_CTX_VALID(ctx);
903
0f461727 904 return ctx->u.rinfo.zd_afi;
7cdb1a84
MS
905}
906
593e4eb1
MS
907void dplane_ctx_set_safi(struct zebra_dplane_ctx *ctx, safi_t safi)
908{
909 DPLANE_CTX_VALID(ctx);
910
911 ctx->u.rinfo.zd_safi = safi;
912}
913
25779064 914safi_t dplane_ctx_get_safi(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
915{
916 DPLANE_CTX_VALID(ctx);
917
0f461727 918 return ctx->u.rinfo.zd_safi;
7cdb1a84
MS
919}
920
593e4eb1
MS
921void dplane_ctx_set_table(struct zebra_dplane_ctx *ctx, uint32_t table)
922{
923 DPLANE_CTX_VALID(ctx);
924
925 ctx->zd_table_id = table;
926}
927
25779064 928uint32_t dplane_ctx_get_table(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
929{
930 DPLANE_CTX_VALID(ctx);
931
5709131c 932 return ctx->zd_table_id;
7cdb1a84
MS
933}
934
25779064 935route_tag_t dplane_ctx_get_tag(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
936{
937 DPLANE_CTX_VALID(ctx);
938
0f461727 939 return ctx->u.rinfo.zd_tag;
7cdb1a84
MS
940}
941
6a91ae98
MS
942void dplane_ctx_set_tag(struct zebra_dplane_ctx *ctx, route_tag_t tag)
943{
944 DPLANE_CTX_VALID(ctx);
945
946 ctx->u.rinfo.zd_tag = tag;
947}
948
25779064 949route_tag_t dplane_ctx_get_old_tag(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
950{
951 DPLANE_CTX_VALID(ctx);
952
0f461727 953 return ctx->u.rinfo.zd_old_tag;
7cdb1a84
MS
954}
955
25779064 956uint16_t dplane_ctx_get_instance(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
957{
958 DPLANE_CTX_VALID(ctx);
959
0f461727 960 return ctx->u.rinfo.zd_instance;
7cdb1a84
MS
961}
962
6a91ae98
MS
963void dplane_ctx_set_instance(struct zebra_dplane_ctx *ctx, uint16_t instance)
964{
965 DPLANE_CTX_VALID(ctx);
966
967 ctx->u.rinfo.zd_instance = instance;
968}
969
25779064 970uint16_t dplane_ctx_get_old_instance(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
971{
972 DPLANE_CTX_VALID(ctx);
973
0f461727 974 return ctx->u.rinfo.zd_old_instance;
7cdb1a84
MS
975}
976
25779064 977uint32_t dplane_ctx_get_metric(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
978{
979 DPLANE_CTX_VALID(ctx);
980
0f461727 981 return ctx->u.rinfo.zd_metric;
7cdb1a84
MS
982}
983
25779064 984uint32_t dplane_ctx_get_old_metric(const struct zebra_dplane_ctx *ctx)
01ce7cba
MS
985{
986 DPLANE_CTX_VALID(ctx);
987
0f461727 988 return ctx->u.rinfo.zd_old_metric;
01ce7cba
MS
989}
990
25779064 991uint32_t dplane_ctx_get_mtu(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
992{
993 DPLANE_CTX_VALID(ctx);
994
0f461727 995 return ctx->u.rinfo.zd_mtu;
7cdb1a84
MS
996}
997
25779064 998uint32_t dplane_ctx_get_nh_mtu(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
999{
1000 DPLANE_CTX_VALID(ctx);
1001
0f461727 1002 return ctx->u.rinfo.zd_nexthop_mtu;
7cdb1a84
MS
1003}
1004
25779064 1005uint8_t dplane_ctx_get_distance(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1006{
1007 DPLANE_CTX_VALID(ctx);
1008
0f461727 1009 return ctx->u.rinfo.zd_distance;
7cdb1a84
MS
1010}
1011
6a91ae98
MS
1012void dplane_ctx_set_distance(struct zebra_dplane_ctx *ctx, uint8_t distance)
1013{
1014 DPLANE_CTX_VALID(ctx);
1015
1016 ctx->u.rinfo.zd_distance = distance;
1017}
1018
25779064 1019uint8_t dplane_ctx_get_old_distance(const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1020{
1021 DPLANE_CTX_VALID(ctx);
1022
0f461727 1023 return ctx->u.rinfo.zd_old_distance;
7cdb1a84
MS
1024}
1025
593e4eb1
MS
1026void dplane_ctx_set_nexthops(struct zebra_dplane_ctx *ctx, struct nexthop *nh)
1027{
1028 DPLANE_CTX_VALID(ctx);
1029
1030 if (ctx->u.rinfo.zd_ng.nexthop) {
1031 nexthops_free(ctx->u.rinfo.zd_ng.nexthop);
1032 ctx->u.rinfo.zd_ng.nexthop = NULL;
1033 }
1034 copy_nexthops(&(ctx->u.rinfo.zd_ng.nexthop), nh, NULL);
1035}
1036
25779064
MS
1037const struct nexthop_group *dplane_ctx_get_ng(
1038 const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1039{
1040 DPLANE_CTX_VALID(ctx);
1041
0f461727 1042 return &(ctx->u.rinfo.zd_ng);
7cdb1a84
MS
1043}
1044
25779064
MS
1045const struct nexthop_group *dplane_ctx_get_old_ng(
1046 const struct zebra_dplane_ctx *ctx)
01ce7cba
MS
1047{
1048 DPLANE_CTX_VALID(ctx);
1049
0f461727 1050 return &(ctx->u.rinfo.zd_old_ng);
01ce7cba
MS
1051}
1052
25779064
MS
1053const struct zebra_dplane_info *dplane_ctx_get_ns(
1054 const struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1055{
1056 DPLANE_CTX_VALID(ctx);
1057
5709131c 1058 return &(ctx->zd_ns_info);
7cdb1a84
MS
1059}
1060
f820d025 1061/* Accessors for nexthop information */
0c8215cb
SW
1062uint32_t dplane_ctx_get_nhe_id(const struct zebra_dplane_ctx *ctx)
1063{
1064 DPLANE_CTX_VALID(ctx);
1065 return ctx->u.rinfo.nhe.id;
1066}
1067
1068afi_t dplane_ctx_get_nhe_afi(const struct zebra_dplane_ctx *ctx)
1069{
1070 DPLANE_CTX_VALID(ctx);
1071 return ctx->u.rinfo.nhe.afi;
1072}
1073
1074vrf_id_t dplane_ctx_get_nhe_vrf_id(const struct zebra_dplane_ctx *ctx)
f820d025
SW
1075{
1076 DPLANE_CTX_VALID(ctx);
0c8215cb
SW
1077 return ctx->u.rinfo.nhe.vrf_id;
1078}
1079
38e40db1 1080int dplane_ctx_get_nhe_type(const struct zebra_dplane_ctx *ctx)
0c8215cb
SW
1081{
1082 DPLANE_CTX_VALID(ctx);
38e40db1 1083 return ctx->u.rinfo.nhe.type;
0c8215cb
SW
1084}
1085
1086const struct nexthop_group *
1087dplane_ctx_get_nhe_ng(const struct zebra_dplane_ctx *ctx)
1088{
1089 DPLANE_CTX_VALID(ctx);
1090 return &(ctx->u.rinfo.nhe.ng);
1091}
1092
e22e8001
SW
1093const struct nh_grp *
1094dplane_ctx_get_nhe_nh_grp(const struct zebra_dplane_ctx *ctx)
0c8215cb
SW
1095{
1096 DPLANE_CTX_VALID(ctx);
e22e8001 1097 return ctx->u.rinfo.nhe.nh_grp;
0c8215cb
SW
1098}
1099
e22e8001 1100uint8_t dplane_ctx_get_nhe_nh_grp_count(const struct zebra_dplane_ctx *ctx)
0c8215cb
SW
1101{
1102 DPLANE_CTX_VALID(ctx);
e22e8001 1103 return ctx->u.rinfo.nhe.nh_grp_count;
f820d025
SW
1104}
1105
0f461727
MS
1106/* Accessors for LSP information */
1107
1108mpls_label_t dplane_ctx_get_in_label(const struct zebra_dplane_ctx *ctx)
1109{
1110 DPLANE_CTX_VALID(ctx);
1111
1112 return ctx->u.lsp.ile.in_label;
1113}
1114
3ab54059
MS
1115void dplane_ctx_set_in_label(struct zebra_dplane_ctx *ctx, mpls_label_t label)
1116{
1117 DPLANE_CTX_VALID(ctx);
1118
1119 ctx->u.lsp.ile.in_label = label;
1120}
1121
0f461727
MS
1122uint8_t dplane_ctx_get_addr_family(const struct zebra_dplane_ctx *ctx)
1123{
1124 DPLANE_CTX_VALID(ctx);
1125
1126 return ctx->u.lsp.addr_family;
1127}
1128
3ab54059
MS
1129void dplane_ctx_set_addr_family(struct zebra_dplane_ctx *ctx,
1130 uint8_t family)
1131{
1132 DPLANE_CTX_VALID(ctx);
1133
1134 ctx->u.lsp.addr_family = family;
1135}
1136
0f461727
MS
1137uint32_t dplane_ctx_get_lsp_flags(const struct zebra_dplane_ctx *ctx)
1138{
1139 DPLANE_CTX_VALID(ctx);
1140
1141 return ctx->u.lsp.flags;
1142}
1143
3ab54059
MS
1144void dplane_ctx_set_lsp_flags(struct zebra_dplane_ctx *ctx,
1145 uint32_t flags)
1146{
1147 DPLANE_CTX_VALID(ctx);
1148
1149 ctx->u.lsp.flags = flags;
1150}
1151
81793ac1 1152const zebra_nhlfe_t *dplane_ctx_get_nhlfe(const struct zebra_dplane_ctx *ctx)
0f461727
MS
1153{
1154 DPLANE_CTX_VALID(ctx);
1155
1156 return ctx->u.lsp.nhlfe_list;
1157}
1158
3ab54059
MS
1159zebra_nhlfe_t *dplane_ctx_add_nhlfe(struct zebra_dplane_ctx *ctx,
1160 enum lsp_types_t lsp_type,
1161 enum nexthop_types_t nh_type,
1162 union g_addr *gate,
1163 ifindex_t ifindex,
1164 mpls_label_t out_label)
1165{
1166 zebra_nhlfe_t *nhlfe;
1167
1168 DPLANE_CTX_VALID(ctx);
1169
1170 nhlfe = zebra_mpls_lsp_add_nhlfe(&(ctx->u.lsp),
1171 lsp_type, nh_type, gate,
1172 ifindex, out_label);
1173
1174 return nhlfe;
1175}
1176
81793ac1
MS
1177const zebra_nhlfe_t *
1178dplane_ctx_get_best_nhlfe(const struct zebra_dplane_ctx *ctx)
0f461727
MS
1179{
1180 DPLANE_CTX_VALID(ctx);
1181
1182 return ctx->u.lsp.best_nhlfe;
1183}
1184
3ab54059
MS
1185const zebra_nhlfe_t *
1186dplane_ctx_set_best_nhlfe(struct zebra_dplane_ctx *ctx,
1187 zebra_nhlfe_t *nhlfe)
1188{
1189 DPLANE_CTX_VALID(ctx);
1190
1191 ctx->u.lsp.best_nhlfe = nhlfe;
1192 return ctx->u.lsp.best_nhlfe;
1193}
1194
0f461727
MS
1195uint32_t dplane_ctx_get_lsp_num_ecmp(const struct zebra_dplane_ctx *ctx)
1196{
1197 DPLANE_CTX_VALID(ctx);
1198
1199 return ctx->u.lsp.num_ecmp;
1200}
1201
d613b8e1
MS
1202mpls_label_t dplane_ctx_get_pw_local_label(const struct zebra_dplane_ctx *ctx)
1203{
1204 DPLANE_CTX_VALID(ctx);
1205
1206 return ctx->u.pw.local_label;
1207}
1208
1209mpls_label_t dplane_ctx_get_pw_remote_label(const struct zebra_dplane_ctx *ctx)
1210{
1211 DPLANE_CTX_VALID(ctx);
1212
1213 return ctx->u.pw.remote_label;
1214}
1215
1216int dplane_ctx_get_pw_type(const struct zebra_dplane_ctx *ctx)
1217{
1218 DPLANE_CTX_VALID(ctx);
1219
1220 return ctx->u.pw.type;
1221}
1222
1223int dplane_ctx_get_pw_af(const struct zebra_dplane_ctx *ctx)
1224{
1225 DPLANE_CTX_VALID(ctx);
1226
1227 return ctx->u.pw.af;
1228}
1229
1230uint32_t dplane_ctx_get_pw_flags(const struct zebra_dplane_ctx *ctx)
1231{
1232 DPLANE_CTX_VALID(ctx);
1233
1234 return ctx->u.pw.flags;
1235}
1236
1237int dplane_ctx_get_pw_status(const struct zebra_dplane_ctx *ctx)
1238{
1239 DPLANE_CTX_VALID(ctx);
1240
1241 return ctx->u.pw.status;
1242}
1243
16d69787 1244const union g_addr *dplane_ctx_get_pw_dest(
d613b8e1
MS
1245 const struct zebra_dplane_ctx *ctx)
1246{
1247 DPLANE_CTX_VALID(ctx);
1248
16d69787 1249 return &(ctx->u.pw.dest);
d613b8e1
MS
1250}
1251
1252const union pw_protocol_fields *dplane_ctx_get_pw_proto(
1253 const struct zebra_dplane_ctx *ctx)
1254{
1255 DPLANE_CTX_VALID(ctx);
1256
1257 return &(ctx->u.pw.fields);
1258}
1259
09cd307c
MS
1260const struct nexthop_group *
1261dplane_ctx_get_pw_nhg(const struct zebra_dplane_ctx *ctx)
1262{
1263 DPLANE_CTX_VALID(ctx);
1264
1265 return &(ctx->u.pw.nhg);
1266}
1267
a4a4802a 1268/* Accessors for interface information */
a4a4802a
MS
1269uint32_t dplane_ctx_get_intf_metric(const struct zebra_dplane_ctx *ctx)
1270{
1271 DPLANE_CTX_VALID(ctx);
1272
1273 return ctx->u.intf.metric;
1274}
1275
1276/* Is interface addr p2p? */
1277bool dplane_ctx_intf_is_connected(const struct zebra_dplane_ctx *ctx)
1278{
1279 DPLANE_CTX_VALID(ctx);
1280
1281 return (ctx->u.intf.flags & DPLANE_INTF_CONNECTED);
1282}
1283
1284bool dplane_ctx_intf_is_secondary(const struct zebra_dplane_ctx *ctx)
1285{
1286 DPLANE_CTX_VALID(ctx);
1287
1288 return (ctx->u.intf.flags & DPLANE_INTF_SECONDARY);
1289}
1290
64168803
MS
1291bool dplane_ctx_intf_is_broadcast(const struct zebra_dplane_ctx *ctx)
1292{
1293 DPLANE_CTX_VALID(ctx);
1294
1295 return (ctx->u.intf.flags & DPLANE_INTF_BROADCAST);
1296}
1297
a4a4802a
MS
1298const struct prefix *dplane_ctx_get_intf_addr(
1299 const struct zebra_dplane_ctx *ctx)
1300{
1301 DPLANE_CTX_VALID(ctx);
1302
1303 return &(ctx->u.intf.prefix);
1304}
1305
1306bool dplane_ctx_intf_has_dest(const struct zebra_dplane_ctx *ctx)
1307{
1308 DPLANE_CTX_VALID(ctx);
1309
1310 return (ctx->u.intf.flags & DPLANE_INTF_HAS_DEST);
1311}
1312
1313const struct prefix *dplane_ctx_get_intf_dest(
1314 const struct zebra_dplane_ctx *ctx)
1315{
1316 DPLANE_CTX_VALID(ctx);
1317
1318 if (ctx->u.intf.flags & DPLANE_INTF_HAS_DEST)
1319 return &(ctx->u.intf.dest_prefix);
1320 else
1321 return NULL;
1322}
1323
1324bool dplane_ctx_intf_has_label(const struct zebra_dplane_ctx *ctx)
1325{
1326 DPLANE_CTX_VALID(ctx);
1327
1328 return (ctx->u.intf.flags & DPLANE_INTF_HAS_LABEL);
1329}
1330
1331const char *dplane_ctx_get_intf_label(const struct zebra_dplane_ctx *ctx)
1332{
1333 DPLANE_CTX_VALID(ctx);
1334
1335 return ctx->u.intf.label;
1336}
1337
7597ac7b
MS
1338/* Accessors for MAC information */
1339vlanid_t dplane_ctx_mac_get_vlan(const struct zebra_dplane_ctx *ctx)
1340{
1341 DPLANE_CTX_VALID(ctx);
1342 return ctx->u.macinfo.vid;
1343}
1344
1345bool dplane_ctx_mac_is_sticky(const struct zebra_dplane_ctx *ctx)
1346{
1347 DPLANE_CTX_VALID(ctx);
1348 return ctx->u.macinfo.is_sticky;
1349}
1350
1351const struct ethaddr *dplane_ctx_mac_get_addr(
1352 const struct zebra_dplane_ctx *ctx)
1353{
1354 DPLANE_CTX_VALID(ctx);
1355 return &(ctx->u.macinfo.mac);
1356}
1357
1358const struct in_addr *dplane_ctx_mac_get_vtep_ip(
1359 const struct zebra_dplane_ctx *ctx)
1360{
1361 DPLANE_CTX_VALID(ctx);
1362 return &(ctx->u.macinfo.vtep_ip);
1363}
1364
478566d6
MS
1365ifindex_t dplane_ctx_mac_get_br_ifindex(const struct zebra_dplane_ctx *ctx)
1366{
1367 DPLANE_CTX_VALID(ctx);
1368 return ctx->u.macinfo.br_ifindex;
1369}
1370
931fa60c
MS
1371/* Accessors for neighbor information */
1372const struct ipaddr *dplane_ctx_neigh_get_ipaddr(
1373 const struct zebra_dplane_ctx *ctx)
1374{
1375 DPLANE_CTX_VALID(ctx);
1376 return &(ctx->u.neigh.ip_addr);
1377}
1378
1379const struct ethaddr *dplane_ctx_neigh_get_mac(
1380 const struct zebra_dplane_ctx *ctx)
1381{
1382 DPLANE_CTX_VALID(ctx);
1383 return &(ctx->u.neigh.mac);
1384}
1385
1386uint32_t dplane_ctx_neigh_get_flags(const struct zebra_dplane_ctx *ctx)
1387{
1388 DPLANE_CTX_VALID(ctx);
1389 return ctx->u.neigh.flags;
1390}
1391
1392uint16_t dplane_ctx_neigh_get_state(const struct zebra_dplane_ctx *ctx)
1393{
1394 DPLANE_CTX_VALID(ctx);
1395 return ctx->u.neigh.state;
1396}
1397
7cdb1a84
MS
1398/*
1399 * End of dplane context accessors
1400 */
1401
c831033f 1402
91f16812
MS
1403/*
1404 * Retrieve the limit on the number of pending, unprocessed updates.
1405 */
1406uint32_t dplane_get_in_queue_limit(void)
1407{
1408 return atomic_load_explicit(&zdplane_info.dg_max_queued_updates,
1409 memory_order_relaxed);
1410}
1411
1412/*
1413 * Configure limit on the number of pending, queued updates.
1414 */
1415void dplane_set_in_queue_limit(uint32_t limit, bool set)
1416{
1417 /* Reset to default on 'unset' */
1418 if (!set)
1419 limit = DPLANE_DEFAULT_MAX_QUEUED;
1420
1421 atomic_store_explicit(&zdplane_info.dg_max_queued_updates, limit,
1422 memory_order_relaxed);
1423}
1424
1425/*
1426 * Retrieve the current queue depth of incoming, unprocessed updates
1427 */
1428uint32_t dplane_get_in_queue_len(void)
1429{
1430 return atomic_load_explicit(&zdplane_info.dg_routes_queued,
1431 memory_order_seq_cst);
1432}
1433
16c628de
MS
1434/*
1435 * Common dataplane context init with zebra namespace info.
1436 */
1437static int dplane_ctx_ns_init(struct zebra_dplane_ctx *ctx,
1438 struct zebra_ns *zns,
1439 bool is_update)
1440{
1441 dplane_info_from_zns(&(ctx->zd_ns_info), zns);
1442
1443#if defined(HAVE_NETLINK)
1444 /* Increment message counter after copying to context struct - may need
1445 * two messages in some 'update' cases.
1446 */
1447 if (is_update)
1448 zns->netlink_dplane.seq += 2;
1449 else
1450 zns->netlink_dplane.seq++;
1451#endif /* HAVE_NETLINK */
1452
1453 return AOK;
1454}
1455
7cdb1a84
MS
1456/*
1457 * Initialize a context block for a route update from zebra data structs.
1458 */
25779064 1459static int dplane_ctx_route_init(struct zebra_dplane_ctx *ctx,
5709131c 1460 enum dplane_op_e op,
7cdb1a84
MS
1461 struct route_node *rn,
1462 struct route_entry *re)
1463{
1464 int ret = EINVAL;
1465 const struct route_table *table = NULL;
1466 const rib_table_info_t *info;
1467 const struct prefix *p, *src_p;
1468 struct zebra_ns *zns;
1469 struct zebra_vrf *zvrf;
f183e380 1470 struct nexthop *nexthop;
7cdb1a84 1471
5709131c 1472 if (!ctx || !rn || !re)
7cdb1a84 1473 goto done;
7cdb1a84
MS
1474
1475 ctx->zd_op = op;
14b0bc8e 1476 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
7cdb1a84 1477
0f461727
MS
1478 ctx->u.rinfo.zd_type = re->type;
1479 ctx->u.rinfo.zd_old_type = re->type;
7cdb1a84
MS
1480
1481 /* Prefixes: dest, and optional source */
1482 srcdest_rnode_prefixes(rn, &p, &src_p);
1483
0f461727 1484 prefix_copy(&(ctx->u.rinfo.zd_dest), p);
7cdb1a84 1485
5709131c 1486 if (src_p)
0f461727 1487 prefix_copy(&(ctx->u.rinfo.zd_src), src_p);
5709131c 1488 else
0f461727 1489 memset(&(ctx->u.rinfo.zd_src), 0, sizeof(ctx->u.rinfo.zd_src));
7cdb1a84
MS
1490
1491 ctx->zd_table_id = re->table;
1492
0f461727
MS
1493 ctx->u.rinfo.zd_metric = re->metric;
1494 ctx->u.rinfo.zd_old_metric = re->metric;
7cdb1a84 1495 ctx->zd_vrf_id = re->vrf_id;
0f461727
MS
1496 ctx->u.rinfo.zd_mtu = re->mtu;
1497 ctx->u.rinfo.zd_nexthop_mtu = re->nexthop_mtu;
1498 ctx->u.rinfo.zd_instance = re->instance;
1499 ctx->u.rinfo.zd_tag = re->tag;
1500 ctx->u.rinfo.zd_old_tag = re->tag;
1501 ctx->u.rinfo.zd_distance = re->distance;
7cdb1a84
MS
1502
1503 table = srcdest_rnode_table(rn);
1504 info = table->info;
1505
0f461727
MS
1506 ctx->u.rinfo.zd_afi = info->afi;
1507 ctx->u.rinfo.zd_safi = info->safi;
7cdb1a84 1508
7cdb1a84 1509 /* Copy nexthops; recursive info is included too */
6b468511 1510 copy_nexthops(&(ctx->u.rinfo.zd_ng.nexthop), re->ng->nexthop, NULL);
7cdb1a84 1511
14b0bc8e 1512 /* Ensure that the dplane's nexthops flags are clear. */
0f461727 1513 for (ALL_NEXTHOPS(ctx->u.rinfo.zd_ng, nexthop))
f183e380 1514 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
f183e380 1515
cf363e1b
MS
1516 /* Don't need some info when capturing a system notification */
1517 if (op == DPLANE_OP_SYS_ROUTE_ADD ||
1518 op == DPLANE_OP_SYS_ROUTE_DELETE) {
1519 ret = AOK;
1520 goto done;
1521 }
1522
1523 /* Extract ns info - can't use pointers to 'core' structs */
1524 zvrf = vrf_info_lookup(re->vrf_id);
1525 zns = zvrf->zns;
1526 dplane_ctx_ns_init(ctx, zns, (op == DPLANE_OP_ROUTE_UPDATE));
1527
6df59152 1528#ifdef HAVE_NETLINK
81505946 1529 if (re->nhe_id) {
ae9bfa06
SW
1530 struct nhg_hash_entry *nhe =
1531 zebra_nhg_resolve(zebra_nhg_lookup_id(re->nhe_id));
6df59152 1532
ae9bfa06 1533 ctx->u.rinfo.nhe.id = nhe->id;
6df59152 1534 /*
ae9bfa06
SW
1535 * Check if the nhe is installed/queued before doing anything
1536 * with this route.
08c51a38
SW
1537 *
1538 * If its a delete we only use the prefix anyway, so this only
1539 * matters for INSTALL/UPDATE.
6df59152 1540 */
08c51a38
SW
1541 if (((op == DPLANE_OP_ROUTE_INSTALL)
1542 || (op == DPLANE_OP_ROUTE_UPDATE))
1543 && !CHECK_FLAG(nhe->flags, NEXTHOP_GROUP_INSTALLED)
ae9bfa06 1544 && !CHECK_FLAG(nhe->flags, NEXTHOP_GROUP_QUEUED)) {
6df59152
SW
1545 ret = ENOENT;
1546 goto done;
1547 }
98cda54a 1548 }
6df59152 1549#endif /* HAVE_NETLINK */
de3f5488 1550
7cdb1a84
MS
1551 /* Trying out the sequence number idea, so we can try to detect
1552 * when a result is stale.
1553 */
1485bbe7 1554 re->dplane_sequence = zebra_router_get_next_sequence();
7cdb1a84
MS
1555 ctx->zd_seq = re->dplane_sequence;
1556
1557 ret = AOK;
1558
1559done:
1560 return ret;
1561}
1562
f820d025
SW
1563/**
1564 * dplane_ctx_nexthop_init() - Initialize a context block for a nexthop update
1565 *
1566 * @ctx: Dataplane context to init
1567 * @op: Operation being performed
1568 * @nhe: Nexthop group hash entry
1569 *
1570 * Return: Result status
1571 */
1572static int dplane_ctx_nexthop_init(struct zebra_dplane_ctx *ctx,
1573 enum dplane_op_e op,
1574 struct nhg_hash_entry *nhe)
1575{
8e401b25 1576 struct zebra_ns *zns = NULL;
1909e63a 1577
f820d025
SW
1578 int ret = EINVAL;
1579
1580 if (!ctx || !nhe)
1581 goto done;
1582
1583 ctx->zd_op = op;
1584 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
1585
1586 /* Copy over nhe info */
0c8215cb
SW
1587 ctx->u.rinfo.nhe.id = nhe->id;
1588 ctx->u.rinfo.nhe.afi = nhe->afi;
1589 ctx->u.rinfo.nhe.vrf_id = nhe->vrf_id;
38e40db1 1590 ctx->u.rinfo.nhe.type = nhe->type;
0c8215cb
SW
1591
1592 nexthop_group_copy(&(ctx->u.rinfo.nhe.ng), nhe->nhg);
1593
98cda54a
SW
1594 /* If its a group, convert it to a grp array of ids */
1595 if (!zebra_nhg_depends_is_empty(nhe)
1596 && !CHECK_FLAG(nhe->flags, NEXTHOP_GROUP_RECURSIVE))
8dbc800f
SW
1597 ctx->u.rinfo.nhe.nh_grp_count = zebra_nhg_nhe2grp(
1598 ctx->u.rinfo.nhe.nh_grp, nhe, MULTIPATH_NUM);
f820d025 1599
8e401b25 1600 zns = ((struct zebra_vrf *)vrf_info_lookup(nhe->vrf_id))->zns;
1909e63a 1601
2d3c57e6
SW
1602 /*
1603 * TODO: Might not need to mark this as an update, since
1604 * it probably won't require two messages
1605 */
1909e63a
SW
1606 dplane_ctx_ns_init(ctx, zns, (op == DPLANE_OP_NH_UPDATE));
1607
f820d025
SW
1608 ret = AOK;
1609
1610done:
1611 return ret;
1612}
1613
16c628de
MS
1614/*
1615 * Capture information for an LSP update in a dplane context.
1616 */
1617static int dplane_ctx_lsp_init(struct zebra_dplane_ctx *ctx,
1618 enum dplane_op_e op,
1619 zebra_lsp_t *lsp)
1620{
1621 int ret = AOK;
1622 zebra_nhlfe_t *nhlfe, *new_nhlfe;
1623
1624 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
1625 zlog_debug("init dplane ctx %s: in-label %u ecmp# %d",
1626 dplane_op2str(op), lsp->ile.in_label,
1627 lsp->num_ecmp);
1628
1629 ctx->zd_op = op;
1630 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
1631
1632 /* Capture namespace info */
1633 dplane_ctx_ns_init(ctx, zebra_ns_lookup(NS_DEFAULT),
1634 (op == DPLANE_OP_LSP_UPDATE));
1635
1636 memset(&ctx->u.lsp, 0, sizeof(ctx->u.lsp));
1637
1638 ctx->u.lsp.ile = lsp->ile;
1639 ctx->u.lsp.addr_family = lsp->addr_family;
1640 ctx->u.lsp.num_ecmp = lsp->num_ecmp;
1641 ctx->u.lsp.flags = lsp->flags;
1642
1643 /* Copy source LSP's nhlfes, and capture 'best' nhlfe */
1644 for (nhlfe = lsp->nhlfe_list; nhlfe; nhlfe = nhlfe->next) {
1645 /* Not sure if this is meaningful... */
1646 if (nhlfe->nexthop == NULL)
1647 continue;
1648
1649 new_nhlfe =
1650 zebra_mpls_lsp_add_nhlfe(
1651 &(ctx->u.lsp),
1652 nhlfe->type,
1653 nhlfe->nexthop->type,
1654 &(nhlfe->nexthop->gate),
1655 nhlfe->nexthop->ifindex,
1656 nhlfe->nexthop->nh_label->label[0]);
1657
1658 if (new_nhlfe == NULL || new_nhlfe->nexthop == NULL) {
1659 ret = ENOMEM;
1660 break;
1661 }
1662
1663 /* Need to copy flags too */
1664 new_nhlfe->flags = nhlfe->flags;
1665 new_nhlfe->nexthop->flags = nhlfe->nexthop->flags;
1666
1667 if (nhlfe == lsp->best_nhlfe)
1668 ctx->u.lsp.best_nhlfe = new_nhlfe;
1669 }
1670
1671 /* On error the ctx will be cleaned-up, so we don't need to
1672 * deal with any allocated nhlfe or nexthop structs here.
1673 */
1674
1675 return ret;
1676}
1677
97d8d05a
MS
1678/*
1679 * Capture information for an LSP update in a dplane context.
1680 */
1681static int dplane_ctx_pw_init(struct zebra_dplane_ctx *ctx,
1682 enum dplane_op_e op,
1683 struct zebra_pw *pw)
1684{
09cd307c
MS
1685 struct prefix p;
1686 afi_t afi;
1687 struct route_table *table;
1688 struct route_node *rn;
1689 struct route_entry *re;
1690
97d8d05a
MS
1691 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
1692 zlog_debug("init dplane ctx %s: pw '%s', loc %u, rem %u",
1693 dplane_op2str(op), pw->ifname, pw->local_label,
1694 pw->remote_label);
1695
1696 ctx->zd_op = op;
1697 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
1698
1699 /* Capture namespace info: no netlink support as of 12/18,
1700 * but just in case...
1701 */
1702 dplane_ctx_ns_init(ctx, zebra_ns_lookup(NS_DEFAULT), false);
1703
1704 memset(&ctx->u.pw, 0, sizeof(ctx->u.pw));
1705
1706 /* This name appears to be c-string, so we use string copy. */
7c7ef4a8 1707 strlcpy(ctx->zd_ifname, pw->ifname, sizeof(ctx->zd_ifname));
16d69787 1708
9bd9717b 1709 ctx->zd_vrf_id = pw->vrf_id;
7c7ef4a8 1710 ctx->zd_ifindex = pw->ifindex;
97d8d05a
MS
1711 ctx->u.pw.type = pw->type;
1712 ctx->u.pw.af = pw->af;
1713 ctx->u.pw.local_label = pw->local_label;
1714 ctx->u.pw.remote_label = pw->remote_label;
1715 ctx->u.pw.flags = pw->flags;
1716
16d69787 1717 ctx->u.pw.dest = pw->nexthop;
97d8d05a
MS
1718
1719 ctx->u.pw.fields = pw->data;
1720
09cd307c
MS
1721 /* Capture nexthop info for the pw destination. We need to look
1722 * up and use zebra datastructs, but we're running in the zebra
1723 * pthread here so that should be ok.
1724 */
1725 memcpy(&p.u, &pw->nexthop, sizeof(pw->nexthop));
1726 p.family = pw->af;
1727 p.prefixlen = ((pw->af == AF_INET) ?
1728 IPV4_MAX_PREFIXLEN : IPV6_MAX_PREFIXLEN);
1729
1730 afi = (pw->af == AF_INET) ? AFI_IP : AFI_IP6;
1731 table = zebra_vrf_table(afi, SAFI_UNICAST, pw->vrf_id);
1732 if (table) {
1733 rn = route_node_match(table, &p);
1734 if (rn) {
1735 RNODE_FOREACH_RE(rn, re) {
1736 if (CHECK_FLAG(re->flags, ZEBRA_FLAG_SELECTED))
1737 break;
1738 }
1739
1740 if (re)
1741 copy_nexthops(&(ctx->u.pw.nhg.nexthop),
6b468511 1742 re->ng->nexthop, NULL);
09cd307c
MS
1743
1744 route_unlock_node(rn);
1745 }
1746 }
1747
9f2d0354 1748 return AOK;
97d8d05a
MS
1749}
1750
7cdb1a84 1751/*
3fe4ccc4 1752 * Enqueue a new update,
16c628de 1753 * and ensure an event is active for the dataplane pthread.
7cdb1a84 1754 */
3fe4ccc4 1755static int dplane_update_enqueue(struct zebra_dplane_ctx *ctx)
7cdb1a84
MS
1756{
1757 int ret = EINVAL;
91f16812 1758 uint32_t high, curr;
7cdb1a84 1759
16c628de 1760 /* Enqueue for processing by the dataplane pthread */
7cdb1a84
MS
1761 DPLANE_LOCK();
1762 {
3fe4ccc4 1763 TAILQ_INSERT_TAIL(&zdplane_info.dg_update_ctx_q, ctx,
25779064 1764 zd_q_entries);
7cdb1a84
MS
1765 }
1766 DPLANE_UNLOCK();
1767
e07e9549
MS
1768 curr = atomic_add_fetch_explicit(
1769#ifdef __clang__
1770 /* TODO -- issue with the clang atomic/intrinsics currently;
1771 * casting away the 'Atomic'-ness of the variable works.
1772 */
1773 (uint32_t *)&(zdplane_info.dg_routes_queued),
1774#else
1775 &(zdplane_info.dg_routes_queued),
1776#endif
1777 1, memory_order_seq_cst);
91f16812
MS
1778
1779 /* Maybe update high-water counter also */
1780 high = atomic_load_explicit(&zdplane_info.dg_routes_queued_max,
1781 memory_order_seq_cst);
1782 while (high < curr) {
1783 if (atomic_compare_exchange_weak_explicit(
1784 &zdplane_info.dg_routes_queued_max,
1785 &high, curr,
1786 memory_order_seq_cst,
1787 memory_order_seq_cst))
1788 break;
1789 }
1790
7cdb1a84 1791 /* Ensure that an event for the dataplane thread is active */
c831033f 1792 ret = dplane_provider_work_ready();
7cdb1a84 1793
5709131c 1794 return ret;
7cdb1a84
MS
1795}
1796
7cdb1a84
MS
1797/*
1798 * Utility that prepares a route update and enqueues it for processing
1799 */
655d681a
MS
1800static enum zebra_dplane_result
1801dplane_route_update_internal(struct route_node *rn,
1802 struct route_entry *re,
1803 struct route_entry *old_re,
5709131c 1804 enum dplane_op_e op)
7cdb1a84 1805{
655d681a 1806 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
7cdb1a84 1807 int ret = EINVAL;
25779064 1808 struct zebra_dplane_ctx *ctx = NULL;
7cdb1a84
MS
1809
1810 /* Obtain context block */
1811 ctx = dplane_ctx_alloc();
7cdb1a84
MS
1812
1813 /* Init context with info from zebra data structs */
1814 ret = dplane_ctx_route_init(ctx, op, rn, re);
1815 if (ret == AOK) {
1816 /* Capture some extra info for update case
1817 * where there's a different 'old' route.
1818 */
b8e0423d
MS
1819 if ((op == DPLANE_OP_ROUTE_UPDATE) &&
1820 old_re && (old_re != re)) {
7cdb1a84
MS
1821 ctx->zd_is_update = true;
1822
1485bbe7
DS
1823 old_re->dplane_sequence =
1824 zebra_router_get_next_sequence();
7cdb1a84
MS
1825 ctx->zd_old_seq = old_re->dplane_sequence;
1826
0f461727
MS
1827 ctx->u.rinfo.zd_old_tag = old_re->tag;
1828 ctx->u.rinfo.zd_old_type = old_re->type;
1829 ctx->u.rinfo.zd_old_instance = old_re->instance;
1830 ctx->u.rinfo.zd_old_distance = old_re->distance;
1831 ctx->u.rinfo.zd_old_metric = old_re->metric;
01ce7cba
MS
1832
1833#ifndef HAVE_NETLINK
f183e380
MS
1834 /* For bsd, capture previous re's nexthops too, sigh.
1835 * We'll need these to do per-nexthop deletes.
1836 */
0f461727 1837 copy_nexthops(&(ctx->u.rinfo.zd_old_ng.nexthop),
62b045d6 1838 old_re->ng->nexthop, NULL);
01ce7cba 1839#endif /* !HAVE_NETLINK */
7cdb1a84
MS
1840 }
1841
1842 /* Enqueue context for processing */
3fe4ccc4 1843 ret = dplane_update_enqueue(ctx);
7cdb1a84
MS
1844 }
1845
91f16812 1846 /* Update counter */
25779064 1847 atomic_fetch_add_explicit(&zdplane_info.dg_routes_in, 1,
1d11b21f
MS
1848 memory_order_relaxed);
1849
91f16812 1850 if (ret == AOK)
655d681a 1851 result = ZEBRA_DPLANE_REQUEST_QUEUED;
16c628de 1852 else {
6df59152
SW
1853 if (ret == ENOENT)
1854 result = ZEBRA_DPLANE_REQUEST_SUCCESS;
1855 else
1856 atomic_fetch_add_explicit(&zdplane_info.dg_route_errors,
1857 1, memory_order_relaxed);
16c628de
MS
1858 if (ctx)
1859 dplane_ctx_free(&ctx);
1d11b21f 1860 }
7cdb1a84 1861
5709131c 1862 return result;
7cdb1a84
MS
1863}
1864
f820d025
SW
1865/**
1866 * dplane_nexthop_update_internal() - Helper for enqueuing nexthop changes
1867 *
1868 * @nhe: Nexthop group hash entry where the change occured
1869 * @op: The operation to be enqued
1870 *
1871 * Return: Result of the change
1872 */
1873static enum zebra_dplane_result
1874dplane_nexthop_update_internal(struct nhg_hash_entry *nhe, enum dplane_op_e op)
1875{
1876 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
1877 int ret = EINVAL;
1878 struct zebra_dplane_ctx *ctx = NULL;
1879
1880 /* Obtain context block */
1881 ctx = dplane_ctx_alloc();
1882 if (!ctx) {
1883 ret = ENOMEM;
1884 goto done;
1885 }
1886
1887 ret = dplane_ctx_nexthop_init(ctx, op, nhe);
2d3c57e6 1888 if (ret == AOK)
f820d025 1889 ret = dplane_update_enqueue(ctx);
2d3c57e6 1890
f820d025
SW
1891done:
1892 /* Update counter */
1893 atomic_fetch_add_explicit(&zdplane_info.dg_nexthops_in, 1,
1894 memory_order_relaxed);
1895
1896 if (ret == AOK)
1897 result = ZEBRA_DPLANE_REQUEST_QUEUED;
1898 else {
81505946
SW
1899 atomic_fetch_add_explicit(&zdplane_info.dg_nexthop_errors, 1,
1900 memory_order_relaxed);
f820d025
SW
1901 if (ctx)
1902 dplane_ctx_free(&ctx);
1903 }
1904
1905 return result;
1906}
1907
7cdb1a84
MS
1908/*
1909 * Enqueue a route 'add' for the dataplane.
1910 */
655d681a
MS
1911enum zebra_dplane_result dplane_route_add(struct route_node *rn,
1912 struct route_entry *re)
7cdb1a84 1913{
655d681a 1914 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
7cdb1a84 1915
5709131c 1916 if (rn == NULL || re == NULL)
7cdb1a84 1917 goto done;
7cdb1a84
MS
1918
1919 ret = dplane_route_update_internal(rn, re, NULL,
1920 DPLANE_OP_ROUTE_INSTALL);
1921
1922done:
5709131c 1923 return ret;
7cdb1a84
MS
1924}
1925
1926/*
1927 * Enqueue a route update for the dataplane.
1928 */
655d681a
MS
1929enum zebra_dplane_result dplane_route_update(struct route_node *rn,
1930 struct route_entry *re,
1931 struct route_entry *old_re)
7cdb1a84 1932{
655d681a 1933 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
7cdb1a84 1934
5709131c 1935 if (rn == NULL || re == NULL)
7cdb1a84 1936 goto done;
7cdb1a84
MS
1937
1938 ret = dplane_route_update_internal(rn, re, old_re,
1939 DPLANE_OP_ROUTE_UPDATE);
7cdb1a84 1940done:
5709131c 1941 return ret;
7cdb1a84
MS
1942}
1943
1944/*
1945 * Enqueue a route removal for the dataplane.
1946 */
655d681a
MS
1947enum zebra_dplane_result dplane_route_delete(struct route_node *rn,
1948 struct route_entry *re)
7cdb1a84 1949{
655d681a 1950 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
7cdb1a84 1951
5709131c 1952 if (rn == NULL || re == NULL)
7cdb1a84 1953 goto done;
7cdb1a84
MS
1954
1955 ret = dplane_route_update_internal(rn, re, NULL,
1956 DPLANE_OP_ROUTE_DELETE);
1957
1958done:
5709131c 1959 return ret;
7cdb1a84
MS
1960}
1961
cf363e1b
MS
1962/*
1963 * Notify the dplane when system/connected routes change.
1964 */
1965enum zebra_dplane_result dplane_sys_route_add(struct route_node *rn,
1966 struct route_entry *re)
1967{
1968 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
1969
1970 /* Ignore this event unless a provider plugin has requested it. */
1971 if (!zdplane_info.dg_sys_route_notifs) {
1972 ret = ZEBRA_DPLANE_REQUEST_SUCCESS;
1973 goto done;
1974 }
1975
1976 if (rn == NULL || re == NULL)
1977 goto done;
1978
1979 ret = dplane_route_update_internal(rn, re, NULL,
1980 DPLANE_OP_SYS_ROUTE_ADD);
1981
1982done:
1983 return ret;
1984}
1985
1986/*
1987 * Notify the dplane when system/connected routes are deleted.
1988 */
1989enum zebra_dplane_result dplane_sys_route_del(struct route_node *rn,
1990 struct route_entry *re)
1991{
1992 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
1993
1994 /* Ignore this event unless a provider plugin has requested it. */
1995 if (!zdplane_info.dg_sys_route_notifs) {
1996 ret = ZEBRA_DPLANE_REQUEST_SUCCESS;
1997 goto done;
1998 }
1999
2000 if (rn == NULL || re == NULL)
2001 goto done;
2002
2003 ret = dplane_route_update_internal(rn, re, NULL,
2004 DPLANE_OP_SYS_ROUTE_DELETE);
2005
2006done:
2007 return ret;
2008}
2009
188a00e0
MS
2010/*
2011 * Update from an async notification, to bring other fibs up-to-date.
2012 */
2013enum zebra_dplane_result
2014dplane_route_notif_update(struct route_node *rn,
2015 struct route_entry *re,
2016 enum dplane_op_e op,
2017 struct zebra_dplane_ctx *ctx)
2018{
2019 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
2020 struct zebra_dplane_ctx *new_ctx = NULL;
2021 struct nexthop *nexthop;
2022
2023 if (rn == NULL || re == NULL)
2024 goto done;
2025
2026 new_ctx = dplane_ctx_alloc();
2027 if (new_ctx == NULL)
2028 goto done;
2029
2030 /* Init context with info from zebra data structs */
2031 dplane_ctx_route_init(new_ctx, op, rn, re);
2032
2033 /* For add/update, need to adjust the nexthops so that we match
2034 * the notification state, which may not be the route-entry/RIB
2035 * state.
2036 */
2037 if (op == DPLANE_OP_ROUTE_UPDATE ||
2038 op == DPLANE_OP_ROUTE_INSTALL) {
2039
2040 nexthops_free(new_ctx->u.rinfo.zd_ng.nexthop);
2041 new_ctx->u.rinfo.zd_ng.nexthop = NULL;
2042
2043 copy_nexthops(&(new_ctx->u.rinfo.zd_ng.nexthop),
2044 (rib_active_nhg(re))->nexthop, NULL);
2045
2046 for (ALL_NEXTHOPS(new_ctx->u.rinfo.zd_ng, nexthop))
2047 UNSET_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB);
2048
2049 }
2050
2051 /* Capture info about the source of the notification, in 'ctx' */
2052 dplane_ctx_set_notif_provider(new_ctx,
2053 dplane_ctx_get_notif_provider(ctx));
2054
3fe4ccc4 2055 dplane_update_enqueue(new_ctx);
188a00e0
MS
2056
2057 ret = ZEBRA_DPLANE_REQUEST_QUEUED;
2058
2059done:
2060 return ret;
2061}
2062
f820d025
SW
2063/*
2064 * Enqueue a nexthop add for the dataplane.
2065 */
2066enum zebra_dplane_result dplane_nexthop_add(struct nhg_hash_entry *nhe)
2067{
2068 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
2069
2070 if (nhe)
2071 ret = dplane_nexthop_update_internal(nhe, DPLANE_OP_NH_INSTALL);
2072 return ret;
2073}
2074
2075/*
2076 * Enqueue a nexthop update for the dataplane.
81505946
SW
2077 *
2078 * Might not need this func since zebra's nexthop objects should be immutable?
f820d025
SW
2079 */
2080enum zebra_dplane_result dplane_nexthop_update(struct nhg_hash_entry *nhe)
2081{
2082 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
2083
2084 if (nhe)
2085 ret = dplane_nexthop_update_internal(nhe, DPLANE_OP_NH_UPDATE);
2086 return ret;
2087}
2088
2089/*
2090 * Enqueue a nexthop removal for the dataplane.
2091 */
2092enum zebra_dplane_result dplane_nexthop_delete(struct nhg_hash_entry *nhe)
2093{
2094 enum zebra_dplane_result ret = ZEBRA_DPLANE_REQUEST_FAILURE;
2095
2096 if (nhe)
2097 ret = dplane_nexthop_update_internal(nhe, DPLANE_OP_NH_DELETE);
2098
2099 return ret;
2100}
2101
16c628de
MS
2102/*
2103 * Enqueue LSP add for the dataplane.
2104 */
2105enum zebra_dplane_result dplane_lsp_add(zebra_lsp_t *lsp)
2106{
2107 enum zebra_dplane_result ret =
2108 lsp_update_internal(lsp, DPLANE_OP_LSP_INSTALL);
2109
2110 return ret;
2111}
2112
2113/*
2114 * Enqueue LSP update for the dataplane.
2115 */
2116enum zebra_dplane_result dplane_lsp_update(zebra_lsp_t *lsp)
2117{
2118 enum zebra_dplane_result ret =
2119 lsp_update_internal(lsp, DPLANE_OP_LSP_UPDATE);
2120
2121 return ret;
2122}
2123
2124/*
2125 * Enqueue LSP delete for the dataplane.
2126 */
2127enum zebra_dplane_result dplane_lsp_delete(zebra_lsp_t *lsp)
2128{
2129 enum zebra_dplane_result ret =
2130 lsp_update_internal(lsp, DPLANE_OP_LSP_DELETE);
2131
2132 return ret;
2133}
2134
188a00e0
MS
2135/* Update or un-install resulting from an async notification */
2136enum zebra_dplane_result
2137dplane_lsp_notif_update(zebra_lsp_t *lsp,
2138 enum dplane_op_e op,
2139 struct zebra_dplane_ctx *notif_ctx)
2140{
2141 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
2142 int ret = EINVAL;
2143 struct zebra_dplane_ctx *ctx = NULL;
2144
2145 /* Obtain context block */
2146 ctx = dplane_ctx_alloc();
2147 if (ctx == NULL) {
2148 ret = ENOMEM;
2149 goto done;
2150 }
2151
2152 ret = dplane_ctx_lsp_init(ctx, op, lsp);
2153 if (ret != AOK)
2154 goto done;
2155
2156 /* Capture info about the source of the notification */
2157 dplane_ctx_set_notif_provider(
2158 ctx,
2159 dplane_ctx_get_notif_provider(notif_ctx));
2160
3fe4ccc4 2161 ret = dplane_update_enqueue(ctx);
188a00e0
MS
2162
2163done:
2164 /* Update counter */
2165 atomic_fetch_add_explicit(&zdplane_info.dg_lsps_in, 1,
2166 memory_order_relaxed);
2167
2168 if (ret == AOK)
2169 result = ZEBRA_DPLANE_REQUEST_QUEUED;
2170 else {
2171 atomic_fetch_add_explicit(&zdplane_info.dg_lsp_errors, 1,
2172 memory_order_relaxed);
2173 if (ctx)
2174 dplane_ctx_free(&ctx);
2175 }
2176 return result;
2177}
2178
97d8d05a
MS
2179/*
2180 * Enqueue pseudowire install for the dataplane.
2181 */
2182enum zebra_dplane_result dplane_pw_install(struct zebra_pw *pw)
2183{
2184 return pw_update_internal(pw, DPLANE_OP_PW_INSTALL);
2185}
2186
2187/*
2188 * Enqueue pseudowire un-install for the dataplane.
2189 */
2190enum zebra_dplane_result dplane_pw_uninstall(struct zebra_pw *pw)
2191{
2192 return pw_update_internal(pw, DPLANE_OP_PW_UNINSTALL);
2193}
2194
16c628de
MS
2195/*
2196 * Common internal LSP update utility
2197 */
2198static enum zebra_dplane_result lsp_update_internal(zebra_lsp_t *lsp,
2199 enum dplane_op_e op)
2200{
2201 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
2202 int ret = EINVAL;
2203 struct zebra_dplane_ctx *ctx = NULL;
2204
2205 /* Obtain context block */
2206 ctx = dplane_ctx_alloc();
16c628de
MS
2207
2208 ret = dplane_ctx_lsp_init(ctx, op, lsp);
2209 if (ret != AOK)
2210 goto done;
2211
3fe4ccc4 2212 ret = dplane_update_enqueue(ctx);
16c628de
MS
2213
2214done:
2215 /* Update counter */
2216 atomic_fetch_add_explicit(&zdplane_info.dg_lsps_in, 1,
2217 memory_order_relaxed);
2218
2219 if (ret == AOK)
2220 result = ZEBRA_DPLANE_REQUEST_QUEUED;
2221 else {
2222 atomic_fetch_add_explicit(&zdplane_info.dg_lsp_errors, 1,
2223 memory_order_relaxed);
d8e479a3 2224 dplane_ctx_free(&ctx);
16c628de
MS
2225 }
2226
2227 return result;
2228}
2229
97d8d05a
MS
2230/*
2231 * Internal, common handler for pseudowire updates.
2232 */
2233static enum zebra_dplane_result pw_update_internal(struct zebra_pw *pw,
2234 enum dplane_op_e op)
2235{
2236 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
2237 int ret;
2238 struct zebra_dplane_ctx *ctx = NULL;
2239
2240 ctx = dplane_ctx_alloc();
97d8d05a
MS
2241
2242 ret = dplane_ctx_pw_init(ctx, op, pw);
2243 if (ret != AOK)
2244 goto done;
2245
3fe4ccc4 2246 ret = dplane_update_enqueue(ctx);
97d8d05a
MS
2247
2248done:
2249 /* Update counter */
2250 atomic_fetch_add_explicit(&zdplane_info.dg_pws_in, 1,
2251 memory_order_relaxed);
2252
2253 if (ret == AOK)
2254 result = ZEBRA_DPLANE_REQUEST_QUEUED;
2255 else {
2256 atomic_fetch_add_explicit(&zdplane_info.dg_pw_errors, 1,
2257 memory_order_relaxed);
d8e479a3 2258 dplane_ctx_free(&ctx);
97d8d05a
MS
2259 }
2260
2261 return result;
2262}
2263
a4a4802a
MS
2264/*
2265 * Enqueue interface address add for the dataplane.
2266 */
2267enum zebra_dplane_result dplane_intf_addr_set(const struct interface *ifp,
2268 const struct connected *ifc)
2269{
64168803
MS
2270#if !defined(HAVE_NETLINK) && defined(HAVE_STRUCT_IFALIASREQ)
2271 /* Extra checks for this OS path. */
2272
2273 /* Don't configure PtP addresses on broadcast ifs or reverse */
2274 if (!(ifp->flags & IFF_POINTOPOINT) != !CONNECTED_PEER(ifc)) {
2275 if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_DPLANE)
2276 zlog_debug("Failed to set intf addr: mismatch p2p and connected");
2277
2278 return ZEBRA_DPLANE_REQUEST_FAILURE;
2279 }
2280
2281 /* Ensure that no existing installed v4 route conflicts with
2282 * the new interface prefix. This check must be done in the
2283 * zebra pthread context, and any route delete (if needed)
2284 * is enqueued before the interface address programming attempt.
2285 */
2286 if (ifc->address->family == AF_INET) {
2287 struct prefix_ipv4 *p;
2288
2289 p = (struct prefix_ipv4 *)ifc->address;
a36898e7 2290 rib_lookup_and_pushup(p, ifp->vrf_id);
64168803
MS
2291 }
2292#endif
2293
2294 return intf_addr_update_internal(ifp, ifc, DPLANE_OP_ADDR_INSTALL);
a4a4802a
MS
2295}
2296
2297/*
2298 * Enqueue interface address remove/uninstall for the dataplane.
2299 */
2300enum zebra_dplane_result dplane_intf_addr_unset(const struct interface *ifp,
2301 const struct connected *ifc)
2302{
64168803
MS
2303 return intf_addr_update_internal(ifp, ifc, DPLANE_OP_ADDR_UNINSTALL);
2304}
2305
2306static enum zebra_dplane_result intf_addr_update_internal(
2307 const struct interface *ifp, const struct connected *ifc,
2308 enum dplane_op_e op)
2309{
2310 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
2311 int ret = EINVAL;
2312 struct zebra_dplane_ctx *ctx = NULL;
2313 struct zebra_ns *zns;
2314
2315 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
2316 char addr_str[PREFIX_STRLEN];
2317
2318 prefix2str(ifc->address, addr_str, sizeof(addr_str));
2319
2320 zlog_debug("init intf ctx %s: idx %d, addr %u:%s",
a36898e7 2321 dplane_op2str(op), ifp->ifindex, ifp->vrf_id,
64168803
MS
2322 addr_str);
2323 }
2324
2325 ctx = dplane_ctx_alloc();
64168803
MS
2326
2327 ctx->zd_op = op;
2328 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
a36898e7 2329 ctx->zd_vrf_id = ifp->vrf_id;
64168803 2330
a36898e7 2331 zns = zebra_ns_lookup(ifp->vrf_id);
64168803
MS
2332 dplane_ctx_ns_init(ctx, zns, false);
2333
2334 /* Init the interface-addr-specific area */
2335 memset(&ctx->u.intf, 0, sizeof(ctx->u.intf));
2336
7c7ef4a8
MS
2337 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
2338 ctx->zd_ifindex = ifp->ifindex;
64168803
MS
2339 ctx->u.intf.prefix = *(ifc->address);
2340
2341 if (if_is_broadcast(ifp))
2342 ctx->u.intf.flags |= DPLANE_INTF_BROADCAST;
2343
2344 if (CONNECTED_PEER(ifc)) {
2345 ctx->u.intf.dest_prefix = *(ifc->destination);
2346 ctx->u.intf.flags |=
2347 (DPLANE_INTF_CONNECTED | DPLANE_INTF_HAS_DEST);
64168803
MS
2348 }
2349
2350 if (CHECK_FLAG(ifc->flags, ZEBRA_IFA_SECONDARY))
2351 ctx->u.intf.flags |= DPLANE_INTF_SECONDARY;
2352
2353 if (ifc->label) {
2354 size_t len;
2355
2356 ctx->u.intf.flags |= DPLANE_INTF_HAS_LABEL;
2357
2358 /* Use embedded buffer if it's adequate; else allocate. */
2359 len = strlen(ifc->label);
2360
2361 if (len < sizeof(ctx->u.intf.label_buf)) {
b7b7bf31 2362 strlcpy(ctx->u.intf.label_buf, ifc->label,
64168803
MS
2363 sizeof(ctx->u.intf.label_buf));
2364 ctx->u.intf.label = ctx->u.intf.label_buf;
2365 } else {
2366 ctx->u.intf.label = strdup(ifc->label);
2367 }
2368 }
2369
3fe4ccc4 2370 ret = dplane_update_enqueue(ctx);
64168803 2371
64168803
MS
2372 /* Increment counter */
2373 atomic_fetch_add_explicit(&zdplane_info.dg_intf_addrs_in, 1,
2374 memory_order_relaxed);
2375
2376 if (ret == AOK)
2377 result = ZEBRA_DPLANE_REQUEST_QUEUED;
2378 else {
2379 /* Error counter */
2380 atomic_fetch_add_explicit(&zdplane_info.dg_intf_addr_errors,
2381 1, memory_order_relaxed);
d8e479a3 2382 dplane_ctx_free(&ctx);
64168803
MS
2383 }
2384
2385 return result;
a4a4802a
MS
2386}
2387
7597ac7b
MS
2388/*
2389 * Enqueue vxlan/evpn mac add (or update).
2390 */
2391enum zebra_dplane_result dplane_mac_add(const struct interface *ifp,
478566d6 2392 const struct interface *bridge_ifp,
7597ac7b
MS
2393 vlanid_t vid,
2394 const struct ethaddr *mac,
2395 struct in_addr vtep_ip,
2396 bool sticky)
2397{
2398 enum zebra_dplane_result result;
2399
2400 /* Use common helper api */
478566d6
MS
2401 result = mac_update_internal(DPLANE_OP_MAC_INSTALL, ifp, bridge_ifp,
2402 vid, mac, vtep_ip, sticky);
7597ac7b
MS
2403 return result;
2404}
2405
2406/*
2407 * Enqueue vxlan/evpn mac delete.
2408 */
2409enum zebra_dplane_result dplane_mac_del(const struct interface *ifp,
478566d6 2410 const struct interface *bridge_ifp,
7597ac7b
MS
2411 vlanid_t vid,
2412 const struct ethaddr *mac,
2413 struct in_addr vtep_ip)
2414{
2415 enum zebra_dplane_result result;
2416
2417 /* Use common helper api */
478566d6
MS
2418 result = mac_update_internal(DPLANE_OP_MAC_DELETE, ifp, bridge_ifp,
2419 vid, mac, vtep_ip, false);
7597ac7b
MS
2420 return result;
2421}
2422
2423/*
2424 * Common helper api for MAC address/vxlan updates
2425 */
2426static enum zebra_dplane_result
2427mac_update_internal(enum dplane_op_e op,
2428 const struct interface *ifp,
478566d6 2429 const struct interface *br_ifp,
7597ac7b
MS
2430 vlanid_t vid,
2431 const struct ethaddr *mac,
2432 struct in_addr vtep_ip,
2433 bool sticky)
2434{
2435 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
2436 int ret;
2437 struct zebra_dplane_ctx *ctx = NULL;
2438 struct zebra_ns *zns;
2439
036d93c0
MS
2440 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
2441 char buf1[ETHER_ADDR_STRLEN], buf2[PREFIX_STRLEN];
2442
2443 zlog_debug("init mac ctx %s: mac %s, ifp %s, vtep %s",
2444 dplane_op2str(op),
2445 prefix_mac2str(mac, buf1, sizeof(buf1)),
2446 ifp->name,
2447 inet_ntop(AF_INET, &vtep_ip, buf2, sizeof(buf2)));
2448 }
2449
7597ac7b
MS
2450 ctx = dplane_ctx_alloc();
2451
2452 ctx->zd_op = op;
2453 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
2454 ctx->zd_vrf_id = ifp->vrf_id;
2455
2456 zns = zebra_ns_lookup(ifp->vrf_id);
2457 dplane_ctx_ns_init(ctx, zns, false);
2458
2459 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
2460 ctx->zd_ifindex = ifp->ifindex;
2461
2462 /* Init the mac-specific data area */
2463 memset(&ctx->u.macinfo, 0, sizeof(ctx->u.macinfo));
2464
478566d6 2465 ctx->u.macinfo.br_ifindex = br_ifp->ifindex;
7597ac7b
MS
2466 ctx->u.macinfo.vtep_ip = vtep_ip;
2467 ctx->u.macinfo.mac = *mac;
2468 ctx->u.macinfo.vid = vid;
2469 ctx->u.macinfo.is_sticky = sticky;
2470
2471 /* Enqueue for processing on the dplane pthread */
2472 ret = dplane_update_enqueue(ctx);
2473
2474 /* Increment counter */
2475 atomic_fetch_add_explicit(&zdplane_info.dg_macs_in, 1,
2476 memory_order_relaxed);
2477
2478 if (ret == AOK)
2479 result = ZEBRA_DPLANE_REQUEST_QUEUED;
2480 else {
2481 /* Error counter */
2482 atomic_fetch_add_explicit(&zdplane_info.dg_mac_errors, 1,
2483 memory_order_relaxed);
2484 dplane_ctx_free(&ctx);
2485 }
2486
2487 return result;
2488}
2489
931fa60c
MS
2490/*
2491 * Enqueue evpn neighbor add for the dataplane.
2492 */
2493enum zebra_dplane_result dplane_neigh_add(const struct interface *ifp,
2494 const struct ipaddr *ip,
2495 const struct ethaddr *mac,
2496 uint32_t flags)
2497{
2498 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
2499
2500 result = neigh_update_internal(DPLANE_OP_NEIGH_INSTALL,
2501 ifp, mac, ip, flags, 0);
2502
2503 return result;
2504}
2505
2506/*
2507 * Enqueue evpn neighbor update for the dataplane.
2508 */
2509enum zebra_dplane_result dplane_neigh_update(const struct interface *ifp,
2510 const struct ipaddr *ip,
2511 const struct ethaddr *mac)
2512{
0bbd4ff4 2513 enum zebra_dplane_result result;
931fa60c
MS
2514
2515 result = neigh_update_internal(DPLANE_OP_NEIGH_UPDATE,
2516 ifp, mac, ip, 0, DPLANE_NUD_PROBE);
2517
2518 return result;
2519}
2520
2521/*
2522 * Enqueue evpn neighbor delete for the dataplane.
2523 */
2524enum zebra_dplane_result dplane_neigh_delete(const struct interface *ifp,
2525 const struct ipaddr *ip)
2526{
0bbd4ff4 2527 enum zebra_dplane_result result;
931fa60c
MS
2528
2529 result = neigh_update_internal(DPLANE_OP_NEIGH_DELETE,
2530 ifp, NULL, ip, 0, 0);
2531
2532 return result;
2533}
2534
0bbd4ff4
MS
2535/*
2536 * Enqueue evpn VTEP add for the dataplane.
2537 */
2538enum zebra_dplane_result dplane_vtep_add(const struct interface *ifp,
2539 const struct in_addr *ip,
2540 vni_t vni)
2541{
2542 enum zebra_dplane_result result;
2543 struct ethaddr mac = { {0, 0, 0, 0, 0, 0} };
2544 struct ipaddr addr;
2545
2546 if (IS_ZEBRA_DEBUG_VXLAN)
2547 zlog_debug("Install %s into flood list for VNI %u intf %s(%u)",
2548 inet_ntoa(*ip), vni, ifp->name, ifp->ifindex);
2549
2550 SET_IPADDR_V4(&addr);
2551 addr.ipaddr_v4 = *ip;
2552
2553 result = neigh_update_internal(DPLANE_OP_VTEP_ADD,
2554 ifp, &mac, &addr, 0, 0);
2555
2556 return result;
2557}
2558
2559/*
2560 * Enqueue evpn VTEP add for the dataplane.
2561 */
2562enum zebra_dplane_result dplane_vtep_delete(const struct interface *ifp,
2563 const struct in_addr *ip,
2564 vni_t vni)
2565{
2566 enum zebra_dplane_result result;
2567 struct ethaddr mac = { {0, 0, 0, 0, 0, 0} };
2568 struct ipaddr addr;
2569
2570 if (IS_ZEBRA_DEBUG_VXLAN)
2571 zlog_debug(
2572 "Uninstall %s from flood list for VNI %u intf %s(%u)",
2573 inet_ntoa(*ip), vni, ifp->name, ifp->ifindex);
2574
2575 SET_IPADDR_V4(&addr);
2576 addr.ipaddr_v4 = *ip;
2577
2578 result = neigh_update_internal(DPLANE_OP_VTEP_DELETE,
2579 ifp, &mac, &addr, 0, 0);
2580
2581 return result;
2582}
2583
931fa60c
MS
2584/*
2585 * Common helper api for evpn neighbor updates
2586 */
2587static enum zebra_dplane_result
2588neigh_update_internal(enum dplane_op_e op,
2589 const struct interface *ifp,
2590 const struct ethaddr *mac,
2591 const struct ipaddr *ip,
2592 uint32_t flags, uint16_t state)
2593{
2594 enum zebra_dplane_result result = ZEBRA_DPLANE_REQUEST_FAILURE;
2595 int ret;
2596 struct zebra_dplane_ctx *ctx = NULL;
2597 struct zebra_ns *zns;
2598
2599 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
2600 char buf1[ETHER_ADDR_STRLEN], buf2[PREFIX_STRLEN];
2601
2602 zlog_debug("init neigh ctx %s: ifp %s, mac %s, ip %s",
2603 dplane_op2str(op),
2604 prefix_mac2str(mac, buf1, sizeof(buf1)),
2605 ifp->name,
2606 ipaddr2str(ip, buf2, sizeof(buf2)));
2607 }
2608
2609 ctx = dplane_ctx_alloc();
2610
2611 ctx->zd_op = op;
2612 ctx->zd_status = ZEBRA_DPLANE_REQUEST_SUCCESS;
2613 ctx->zd_vrf_id = ifp->vrf_id;
2614
2615 zns = zebra_ns_lookup(ifp->vrf_id);
2616 dplane_ctx_ns_init(ctx, zns, false);
2617
2618 strlcpy(ctx->zd_ifname, ifp->name, sizeof(ctx->zd_ifname));
2619 ctx->zd_ifindex = ifp->ifindex;
2620
2621 /* Init the neighbor-specific data area */
2622 memset(&ctx->u.neigh, 0, sizeof(ctx->u.neigh));
2623
2624 ctx->u.neigh.ip_addr = *ip;
2625 if (mac)
2626 ctx->u.neigh.mac = *mac;
2627 ctx->u.neigh.flags = flags;
2628 ctx->u.neigh.state = state;
2629
2630 /* Enqueue for processing on the dplane pthread */
2631 ret = dplane_update_enqueue(ctx);
2632
2633 /* Increment counter */
2634 atomic_fetch_add_explicit(&zdplane_info.dg_neighs_in, 1,
2635 memory_order_relaxed);
2636
2637 if (ret == AOK)
2638 result = ZEBRA_DPLANE_REQUEST_QUEUED;
2639 else {
2640 /* Error counter */
2641 atomic_fetch_add_explicit(&zdplane_info.dg_neigh_errors, 1,
2642 memory_order_relaxed);
2643 dplane_ctx_free(&ctx);
2644 }
2645
2646 return result;
2647}
2648
1d11b21f
MS
2649/*
2650 * Handler for 'show dplane'
2651 */
2652int dplane_show_helper(struct vty *vty, bool detailed)
2653{
16c628de
MS
2654 uint64_t queued, queue_max, limit, errs, incoming, yields,
2655 other_errs;
1d11b21f 2656
4dfd7a02 2657 /* Using atomics because counters are being changed in different
c831033f 2658 * pthread contexts.
4dfd7a02 2659 */
25779064 2660 incoming = atomic_load_explicit(&zdplane_info.dg_routes_in,
1d11b21f 2661 memory_order_relaxed);
91f16812
MS
2662 limit = atomic_load_explicit(&zdplane_info.dg_max_queued_updates,
2663 memory_order_relaxed);
25779064 2664 queued = atomic_load_explicit(&zdplane_info.dg_routes_queued,
1d11b21f 2665 memory_order_relaxed);
25779064 2666 queue_max = atomic_load_explicit(&zdplane_info.dg_routes_queued_max,
4dfd7a02 2667 memory_order_relaxed);
25779064 2668 errs = atomic_load_explicit(&zdplane_info.dg_route_errors,
1d11b21f 2669 memory_order_relaxed);
c831033f
MS
2670 yields = atomic_load_explicit(&zdplane_info.dg_update_yields,
2671 memory_order_relaxed);
16c628de
MS
2672 other_errs = atomic_load_explicit(&zdplane_info.dg_other_errors,
2673 memory_order_relaxed);
1d11b21f 2674
c831033f
MS
2675 vty_out(vty, "Zebra dataplane:\nRoute updates: %"PRIu64"\n",
2676 incoming);
1d11b21f 2677 vty_out(vty, "Route update errors: %"PRIu64"\n", errs);
16c628de 2678 vty_out(vty, "Other errors : %"PRIu64"\n", other_errs);
91f16812 2679 vty_out(vty, "Route update queue limit: %"PRIu64"\n", limit);
1d11b21f 2680 vty_out(vty, "Route update queue depth: %"PRIu64"\n", queued);
4dfd7a02 2681 vty_out(vty, "Route update queue max: %"PRIu64"\n", queue_max);
4280d91c
MS
2682 vty_out(vty, "Dplane update yields: %"PRIu64"\n", yields);
2683
2684 incoming = atomic_load_explicit(&zdplane_info.dg_lsps_in,
2685 memory_order_relaxed);
2686 errs = atomic_load_explicit(&zdplane_info.dg_lsp_errors,
2687 memory_order_relaxed);
2688 vty_out(vty, "LSP updates: %"PRIu64"\n", incoming);
2689 vty_out(vty, "LSP update errors: %"PRIu64"\n", errs);
2690
2691 incoming = atomic_load_explicit(&zdplane_info.dg_pws_in,
2692 memory_order_relaxed);
2693 errs = atomic_load_explicit(&zdplane_info.dg_pw_errors,
2694 memory_order_relaxed);
2695 vty_out(vty, "PW updates: %"PRIu64"\n", incoming);
2696 vty_out(vty, "PW update errors: %"PRIu64"\n", errs);
2697
2698 incoming = atomic_load_explicit(&zdplane_info.dg_intf_addrs_in,
2699 memory_order_relaxed);
2700 errs = atomic_load_explicit(&zdplane_info.dg_intf_addr_errors,
2701 memory_order_relaxed);
2702 vty_out(vty, "Intf addr updates: %"PRIu64"\n", incoming);
2703 vty_out(vty, "Intf addr errors: %"PRIu64"\n", errs);
2704
2705 incoming = atomic_load_explicit(&zdplane_info.dg_macs_in,
2706 memory_order_relaxed);
2707 errs = atomic_load_explicit(&zdplane_info.dg_mac_errors,
2708 memory_order_relaxed);
2709 vty_out(vty, "EVPN MAC updates: %"PRIu64"\n", incoming);
2710 vty_out(vty, "EVPN MAC errors: %"PRIu64"\n", errs);
1d11b21f 2711
931fa60c
MS
2712 incoming = atomic_load_explicit(&zdplane_info.dg_neighs_in,
2713 memory_order_relaxed);
2714 errs = atomic_load_explicit(&zdplane_info.dg_neigh_errors,
2715 memory_order_relaxed);
2716 vty_out(vty, "EVPN neigh updates: %"PRIu64"\n", incoming);
2717 vty_out(vty, "EVPN neigh errors: %"PRIu64"\n", errs);
2718
1d11b21f
MS
2719 return CMD_SUCCESS;
2720}
2721
2722/*
2723 * Handler for 'show dplane providers'
2724 */
2725int dplane_show_provs_helper(struct vty *vty, bool detailed)
2726{
c831033f
MS
2727 struct zebra_dplane_provider *prov;
2728 uint64_t in, in_max, out, out_max;
2729
2730 vty_out(vty, "Zebra dataplane providers:\n");
2731
2732 DPLANE_LOCK();
2733 prov = TAILQ_FIRST(&zdplane_info.dg_providers_q);
2734 DPLANE_UNLOCK();
2735
2736 /* Show counters, useful info from each registered provider */
2737 while (prov) {
2738
2739 in = atomic_load_explicit(&prov->dp_in_counter,
2740 memory_order_relaxed);
2741 in_max = atomic_load_explicit(&prov->dp_in_max,
2742 memory_order_relaxed);
2743 out = atomic_load_explicit(&prov->dp_out_counter,
2744 memory_order_relaxed);
2745 out_max = atomic_load_explicit(&prov->dp_out_max,
2746 memory_order_relaxed);
2747
c9d17fe8
MS
2748 vty_out(vty, "%s (%u): in: %"PRIu64", q_max: %"PRIu64", "
2749 "out: %"PRIu64", q_max: %"PRIu64"\n",
c831033f
MS
2750 prov->dp_name, prov->dp_id, in, in_max, out, out_max);
2751
2752 DPLANE_LOCK();
2753 prov = TAILQ_NEXT(prov, dp_prov_link);
2754 DPLANE_UNLOCK();
2755 }
1d11b21f
MS
2756
2757 return CMD_SUCCESS;
2758}
2759
f26730e1
MS
2760/*
2761 * Helper for 'show run' etc.
2762 */
2763int dplane_config_write_helper(struct vty *vty)
2764{
2765 if (zdplane_info.dg_max_queued_updates != DPLANE_DEFAULT_MAX_QUEUED)
2766 vty_out(vty, "zebra dplane limit %u\n",
2767 zdplane_info.dg_max_queued_updates);
2768
2769 return 0;
2770}
2771
b8e0423d
MS
2772/*
2773 * Provider registration
2774 */
2775int dplane_provider_register(const char *name,
c831033f
MS
2776 enum dplane_provider_prio prio,
2777 int flags,
1dd4ea8a 2778 int (*start_fp)(struct zebra_dplane_provider *),
4c206c8f
MS
2779 int (*fp)(struct zebra_dplane_provider *),
2780 int (*fini_fp)(struct zebra_dplane_provider *,
2781 bool early),
1ff8a248
MS
2782 void *data,
2783 struct zebra_dplane_provider **prov_p)
b8e0423d
MS
2784{
2785 int ret = 0;
6fb51ccb 2786 struct zebra_dplane_provider *p = NULL, *last;
b8e0423d
MS
2787
2788 /* Validate */
2789 if (fp == NULL) {
2790 ret = EINVAL;
2791 goto done;
2792 }
2793
2794 if (prio <= DPLANE_PRIO_NONE ||
1bcea841 2795 prio > DPLANE_PRIO_LAST) {
b8e0423d
MS
2796 ret = EINVAL;
2797 goto done;
2798 }
2799
2800 /* Allocate and init new provider struct */
25779064 2801 p = XCALLOC(MTYPE_DP_PROV, sizeof(struct zebra_dplane_provider));
b8e0423d 2802
c831033f
MS
2803 pthread_mutex_init(&(p->dp_mutex), NULL);
2804 TAILQ_INIT(&(p->dp_ctx_in_q));
2805 TAILQ_INIT(&(p->dp_ctx_out_q));
b8e0423d
MS
2806
2807 p->dp_priority = prio;
2808 p->dp_fp = fp;
1dd4ea8a 2809 p->dp_start = start_fp;
18c37974 2810 p->dp_fini = fini_fp;
c831033f 2811 p->dp_data = data;
18c37974 2812
c831033f 2813 /* Lock - the dplane pthread may be running */
18c37974 2814 DPLANE_LOCK();
b8e0423d 2815
25779064 2816 p->dp_id = ++zdplane_info.dg_provider_id;
b8e0423d 2817
c831033f
MS
2818 if (name)
2819 strlcpy(p->dp_name, name, DPLANE_PROVIDER_NAMELEN);
2820 else
2821 snprintf(p->dp_name, DPLANE_PROVIDER_NAMELEN,
2822 "provider-%u", p->dp_id);
2823
b8e0423d 2824 /* Insert into list ordered by priority */
c831033f 2825 TAILQ_FOREACH(last, &zdplane_info.dg_providers_q, dp_prov_link) {
5709131c 2826 if (last->dp_priority > p->dp_priority)
b8e0423d 2827 break;
b8e0423d
MS
2828 }
2829
5709131c 2830 if (last)
c831033f 2831 TAILQ_INSERT_BEFORE(last, p, dp_prov_link);
5709131c 2832 else
25779064 2833 TAILQ_INSERT_TAIL(&zdplane_info.dg_providers_q, p,
c831033f 2834 dp_prov_link);
b8e0423d 2835
18c37974
MS
2836 /* And unlock */
2837 DPLANE_UNLOCK();
2838
c831033f
MS
2839 if (IS_ZEBRA_DEBUG_DPLANE)
2840 zlog_debug("dplane: registered new provider '%s' (%u), prio %d",
2841 p->dp_name, p->dp_id, p->dp_priority);
2842
b8e0423d 2843done:
1ff8a248
MS
2844 if (prov_p)
2845 *prov_p = p;
2846
5709131c 2847 return ret;
b8e0423d
MS
2848}
2849
c831033f
MS
2850/* Accessors for provider attributes */
2851const char *dplane_provider_get_name(const struct zebra_dplane_provider *prov)
2852{
2853 return prov->dp_name;
2854}
2855
2856uint32_t dplane_provider_get_id(const struct zebra_dplane_provider *prov)
2857{
2858 return prov->dp_id;
2859}
2860
2861void *dplane_provider_get_data(const struct zebra_dplane_provider *prov)
2862{
2863 return prov->dp_data;
2864}
2865
2866int dplane_provider_get_work_limit(const struct zebra_dplane_provider *prov)
2867{
2868 return zdplane_info.dg_updates_per_cycle;
2869}
2870
ad6aad4d
MS
2871/* Lock/unlock a provider's mutex - iff the provider was registered with
2872 * the THREADED flag.
2873 */
2874void dplane_provider_lock(struct zebra_dplane_provider *prov)
2875{
2876 if (dplane_provider_is_threaded(prov))
2877 DPLANE_PROV_LOCK(prov);
2878}
2879
2880void dplane_provider_unlock(struct zebra_dplane_provider *prov)
2881{
2882 if (dplane_provider_is_threaded(prov))
2883 DPLANE_PROV_UNLOCK(prov);
2884}
2885
c831033f
MS
2886/*
2887 * Dequeue and maintain associated counter
2888 */
2889struct zebra_dplane_ctx *dplane_provider_dequeue_in_ctx(
2890 struct zebra_dplane_provider *prov)
2891{
2892 struct zebra_dplane_ctx *ctx = NULL;
2893
ad6aad4d 2894 dplane_provider_lock(prov);
c831033f
MS
2895
2896 ctx = TAILQ_FIRST(&(prov->dp_ctx_in_q));
2897 if (ctx) {
2898 TAILQ_REMOVE(&(prov->dp_ctx_in_q), ctx, zd_q_entries);
c9d17fe8
MS
2899
2900 atomic_fetch_sub_explicit(&prov->dp_in_queued, 1,
2901 memory_order_relaxed);
c831033f
MS
2902 }
2903
ad6aad4d 2904 dplane_provider_unlock(prov);
c831033f
MS
2905
2906 return ctx;
2907}
2908
2909/*
2910 * Dequeue work to a list, return count
2911 */
2912int dplane_provider_dequeue_in_list(struct zebra_dplane_provider *prov,
2913 struct dplane_ctx_q *listp)
2914{
2915 int limit, ret;
2916 struct zebra_dplane_ctx *ctx;
2917
2918 limit = zdplane_info.dg_updates_per_cycle;
2919
ad6aad4d 2920 dplane_provider_lock(prov);
c831033f
MS
2921
2922 for (ret = 0; ret < limit; ret++) {
2923 ctx = TAILQ_FIRST(&(prov->dp_ctx_in_q));
2924 if (ctx) {
2925 TAILQ_REMOVE(&(prov->dp_ctx_in_q), ctx, zd_q_entries);
2926
2927 TAILQ_INSERT_TAIL(listp, ctx, zd_q_entries);
2928 } else {
2929 break;
2930 }
2931 }
2932
c9d17fe8
MS
2933 if (ret > 0)
2934 atomic_fetch_sub_explicit(&prov->dp_in_queued, ret,
2935 memory_order_relaxed);
2936
ad6aad4d 2937 dplane_provider_unlock(prov);
c831033f
MS
2938
2939 return ret;
2940}
2941
2942/*
2943 * Enqueue and maintain associated counter
2944 */
2945void dplane_provider_enqueue_out_ctx(struct zebra_dplane_provider *prov,
2946 struct zebra_dplane_ctx *ctx)
2947{
ad6aad4d 2948 dplane_provider_lock(prov);
c831033f
MS
2949
2950 TAILQ_INSERT_TAIL(&(prov->dp_ctx_out_q), ctx,
2951 zd_q_entries);
2952
ad6aad4d 2953 dplane_provider_unlock(prov);
c831033f
MS
2954
2955 atomic_fetch_add_explicit(&(prov->dp_out_counter), 1,
2956 memory_order_relaxed);
2957}
2958
62b8bb7a
MS
2959/*
2960 * Accessor for provider object
2961 */
c831033f
MS
2962bool dplane_provider_is_threaded(const struct zebra_dplane_provider *prov)
2963{
2964 return (prov->dp_flags & DPLANE_PROV_FLAG_THREADED);
2965}
2966
62b8bb7a
MS
2967/*
2968 * Internal helper that copies information from a zebra ns object; this is
2969 * called in the zebra main pthread context as part of dplane ctx init.
2970 */
2971static void dplane_info_from_zns(struct zebra_dplane_info *ns_info,
2972 struct zebra_ns *zns)
2973{
2974 ns_info->ns_id = zns->ns_id;
2975
2976#if defined(HAVE_NETLINK)
2977 ns_info->is_cmd = true;
2978 ns_info->nls = zns->netlink_dplane;
2979#endif /* NETLINK */
2980}
2981
c831033f
MS
2982/*
2983 * Provider api to signal that work/events are available
2984 * for the dataplane pthread.
2985 */
2986int dplane_provider_work_ready(void)
2987{
e5a60d82
MS
2988 /* Note that during zebra startup, we may be offered work before
2989 * the dataplane pthread (and thread-master) are ready. We want to
2990 * enqueue the work, but the event-scheduling machinery may not be
2991 * available.
2992 */
2993 if (zdplane_info.dg_run) {
2994 thread_add_event(zdplane_info.dg_master,
2995 dplane_thread_loop, NULL, 0,
2996 &zdplane_info.dg_t_update);
2997 }
c831033f
MS
2998
2999 return AOK;
3000}
3001
593e4eb1
MS
3002/*
3003 * Enqueue a context directly to zebra main.
3004 */
3005void dplane_provider_enqueue_to_zebra(struct zebra_dplane_ctx *ctx)
3006{
3007 struct dplane_ctx_q temp_list;
3008
3009 /* Zebra's api takes a list, so we need to use a temporary list */
3010 TAILQ_INIT(&temp_list);
3011
3012 TAILQ_INSERT_TAIL(&temp_list, ctx, zd_q_entries);
3013 (zdplane_info.dg_results_cb)(&temp_list);
3014}
3015
7cdb1a84 3016/*
c831033f 3017 * Kernel dataplane provider
7cdb1a84 3018 */
c831033f 3019
16c628de
MS
3020/*
3021 * Handler for kernel LSP updates
3022 */
3023static enum zebra_dplane_result
3024kernel_dplane_lsp_update(struct zebra_dplane_ctx *ctx)
3025{
3026 enum zebra_dplane_result res;
3027
3028 /* Call into the synchronous kernel-facing code here */
3029 res = kernel_lsp_update(ctx);
3030
3031 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
3032 atomic_fetch_add_explicit(
3033 &zdplane_info.dg_lsp_errors, 1,
3034 memory_order_relaxed);
3035
3036 return res;
3037}
3038
c10a646d
MS
3039/*
3040 * Handler for kernel pseudowire updates
3041 */
3042static enum zebra_dplane_result
3043kernel_dplane_pw_update(struct zebra_dplane_ctx *ctx)
3044{
3045 enum zebra_dplane_result res;
3046
3047 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3048 zlog_debug("Dplane pw %s: op %s af %d loc: %u rem: %u",
7c7ef4a8 3049 dplane_ctx_get_ifname(ctx),
c10a646d
MS
3050 dplane_op2str(ctx->zd_op),
3051 dplane_ctx_get_pw_af(ctx),
3052 dplane_ctx_get_pw_local_label(ctx),
3053 dplane_ctx_get_pw_remote_label(ctx));
3054
3055 res = kernel_pw_update(ctx);
3056
3057 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
3058 atomic_fetch_add_explicit(
3059 &zdplane_info.dg_pw_errors, 1,
3060 memory_order_relaxed);
3061
3062 return res;
3063}
3064
16c628de
MS
3065/*
3066 * Handler for kernel route updates
3067 */
3068static enum zebra_dplane_result
3069kernel_dplane_route_update(struct zebra_dplane_ctx *ctx)
3070{
3071 enum zebra_dplane_result res;
3072
3073 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
3074 char dest_str[PREFIX_STRLEN];
3075
3076 prefix2str(dplane_ctx_get_dest(ctx),
3077 dest_str, sizeof(dest_str));
3078
3079 zlog_debug("%u:%s Dplane route update ctx %p op %s",
3080 dplane_ctx_get_vrf(ctx), dest_str,
3081 ctx, dplane_op2str(dplane_ctx_get_op(ctx)));
3082 }
3083
3084 /* Call into the synchronous kernel-facing code here */
3085 res = kernel_route_update(ctx);
3086
3087 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
3088 atomic_fetch_add_explicit(
3089 &zdplane_info.dg_route_errors, 1,
3090 memory_order_relaxed);
3091
3092 return res;
3093}
3094
64168803
MS
3095/*
3096 * Handler for kernel-facing interface address updates
3097 */
3098static enum zebra_dplane_result
3099kernel_dplane_address_update(struct zebra_dplane_ctx *ctx)
3100{
3101 enum zebra_dplane_result res;
3102
64168803
MS
3103 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
3104 char dest_str[PREFIX_STRLEN];
3105
3106 prefix2str(dplane_ctx_get_intf_addr(ctx), dest_str,
3107 sizeof(dest_str));
3108
3109 zlog_debug("Dplane intf %s, idx %u, addr %s",
3110 dplane_op2str(dplane_ctx_get_op(ctx)),
3111 dplane_ctx_get_ifindex(ctx), dest_str);
3112 }
3113
3114 res = kernel_address_update_ctx(ctx);
3115
3116 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
3117 atomic_fetch_add_explicit(&zdplane_info.dg_intf_addr_errors,
3118 1, memory_order_relaxed);
3119
3120 return res;
3121}
3122
f820d025
SW
3123/**
3124 * kernel_dplane_nexthop_update() - Handler for kernel nexthop updates
3125 *
3126 * @ctx: Dataplane context
3127 *
3128 * Return: Dataplane result flag
3129 */
3130static enum zebra_dplane_result
3131kernel_dplane_nexthop_update(struct zebra_dplane_ctx *ctx)
3132{
3133 enum zebra_dplane_result res;
3134
3135 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
3136 zlog_debug("ID (%u) Dplane nexthop update ctx %p op %s",
0c8215cb 3137 dplane_ctx_get_nhe_id(ctx), ctx,
f820d025
SW
3138 dplane_op2str(dplane_ctx_get_op(ctx)));
3139 }
3140
3141 res = kernel_nexthop_update(ctx);
3142
3143 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
3144 atomic_fetch_add_explicit(&zdplane_info.dg_nexthop_errors, 1,
3145 memory_order_relaxed);
3146
3147 return res;
3148}
3149
036d93c0 3150/*
931fa60c 3151 * Handler for kernel-facing EVPN MAC address updates
036d93c0
MS
3152 */
3153static enum zebra_dplane_result
3154kernel_dplane_mac_update(struct zebra_dplane_ctx *ctx)
3155{
3156 enum zebra_dplane_result res;
3157
3158 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
3159 char buf[ETHER_ADDR_STRLEN];
3160
3161 prefix_mac2str(dplane_ctx_mac_get_addr(ctx), buf,
3162 sizeof(buf));
3163
3164 zlog_debug("Dplane %s, mac %s, ifindex %u",
3165 dplane_op2str(dplane_ctx_get_op(ctx)),
3166 buf, dplane_ctx_get_ifindex(ctx));
3167 }
3168
3169 res = kernel_mac_update_ctx(ctx);
3170
3171 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
3172 atomic_fetch_add_explicit(&zdplane_info.dg_mac_errors,
3173 1, memory_order_relaxed);
3174
3175 return res;
3176}
3177
931fa60c
MS
3178/*
3179 * Handler for kernel-facing EVPN neighbor updates
3180 */
3181static enum zebra_dplane_result
3182kernel_dplane_neigh_update(struct zebra_dplane_ctx *ctx)
3183{
3184 enum zebra_dplane_result res;
3185
3186 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL) {
3187 char buf[PREFIX_STRLEN];
3188
3189 ipaddr2str(dplane_ctx_neigh_get_ipaddr(ctx), buf,
3190 sizeof(buf));
3191
3192 zlog_debug("Dplane %s, ip %s, ifindex %u",
3193 dplane_op2str(dplane_ctx_get_op(ctx)),
3194 buf, dplane_ctx_get_ifindex(ctx));
3195 }
3196
3197 res = kernel_neigh_update_ctx(ctx);
3198
3199 if (res != ZEBRA_DPLANE_REQUEST_SUCCESS)
3200 atomic_fetch_add_explicit(&zdplane_info.dg_neigh_errors,
3201 1, memory_order_relaxed);
3202
3203 return res;
3204}
3205
c831033f
MS
3206/*
3207 * Kernel provider callback
3208 */
3209static int kernel_dplane_process_func(struct zebra_dplane_provider *prov)
7cdb1a84 3210{
c831033f
MS
3211 enum zebra_dplane_result res;
3212 struct zebra_dplane_ctx *ctx;
3213 int counter, limit;
7cdb1a84 3214
c831033f 3215 limit = dplane_provider_get_work_limit(prov);
7cdb1a84 3216
c831033f
MS
3217 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3218 zlog_debug("dplane provider '%s': processing",
3219 dplane_provider_get_name(prov));
7cdb1a84 3220
c831033f 3221 for (counter = 0; counter < limit; counter++) {
91f16812 3222
c831033f
MS
3223 ctx = dplane_provider_dequeue_in_ctx(prov);
3224 if (ctx == NULL)
3225 break;
d8c16a95 3226
9677961e
MS
3227 /* A previous provider plugin may have asked to skip the
3228 * kernel update.
3229 */
3230 if (dplane_ctx_is_skip_kernel(ctx)) {
3231 res = ZEBRA_DPLANE_REQUEST_SUCCESS;
3232 goto skip_one;
3233 }
3234
16c628de
MS
3235 /* Dispatch to appropriate kernel-facing apis */
3236 switch (dplane_ctx_get_op(ctx)) {
1d11b21f 3237
16c628de
MS
3238 case DPLANE_OP_ROUTE_INSTALL:
3239 case DPLANE_OP_ROUTE_UPDATE:
3240 case DPLANE_OP_ROUTE_DELETE:
3241 res = kernel_dplane_route_update(ctx);
3242 break;
d8c16a95 3243
f820d025
SW
3244 case DPLANE_OP_NH_INSTALL:
3245 case DPLANE_OP_NH_UPDATE:
3246 case DPLANE_OP_NH_DELETE:
3247 res = kernel_dplane_nexthop_update(ctx);
3248 break;
3249
16c628de
MS
3250 case DPLANE_OP_LSP_INSTALL:
3251 case DPLANE_OP_LSP_UPDATE:
3252 case DPLANE_OP_LSP_DELETE:
3253 res = kernel_dplane_lsp_update(ctx);
3254 break;
d8c16a95 3255
c10a646d
MS
3256 case DPLANE_OP_PW_INSTALL:
3257 case DPLANE_OP_PW_UNINSTALL:
3258 res = kernel_dplane_pw_update(ctx);
3259 break;
3260
64168803
MS
3261 case DPLANE_OP_ADDR_INSTALL:
3262 case DPLANE_OP_ADDR_UNINSTALL:
3263 res = kernel_dplane_address_update(ctx);
3264 break;
3265
036d93c0
MS
3266 case DPLANE_OP_MAC_INSTALL:
3267 case DPLANE_OP_MAC_DELETE:
3268 res = kernel_dplane_mac_update(ctx);
3269 break;
3270
931fa60c
MS
3271 case DPLANE_OP_NEIGH_INSTALL:
3272 case DPLANE_OP_NEIGH_UPDATE:
3273 case DPLANE_OP_NEIGH_DELETE:
0bbd4ff4
MS
3274 case DPLANE_OP_VTEP_ADD:
3275 case DPLANE_OP_VTEP_DELETE:
931fa60c
MS
3276 res = kernel_dplane_neigh_update(ctx);
3277 break;
3278
104e3ad9 3279 /* Ignore 'notifications' - no-op */
cf363e1b
MS
3280 case DPLANE_OP_SYS_ROUTE_ADD:
3281 case DPLANE_OP_SYS_ROUTE_DELETE:
54818e3b 3282 case DPLANE_OP_ROUTE_NOTIFY:
104e3ad9 3283 case DPLANE_OP_LSP_NOTIFY:
cf363e1b
MS
3284 res = ZEBRA_DPLANE_REQUEST_SUCCESS;
3285 break;
3286
16c628de 3287 default:
c831033f 3288 atomic_fetch_add_explicit(
16c628de 3289 &zdplane_info.dg_other_errors, 1,
c831033f 3290 memory_order_relaxed);
d8c16a95 3291
16c628de
MS
3292 res = ZEBRA_DPLANE_REQUEST_FAILURE;
3293 break;
3294 }
3295
9677961e 3296skip_one:
c831033f
MS
3297 dplane_ctx_set_status(ctx, res);
3298
3299 dplane_provider_enqueue_out_ctx(prov, ctx);
3300 }
3301
3302 /* Ensure that we'll run the work loop again if there's still
3303 * more work to do.
3304 */
3305 if (counter >= limit) {
3306 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3307 zlog_debug("dplane provider '%s' reached max updates %d",
3308 dplane_provider_get_name(prov), counter);
3309
3310 atomic_fetch_add_explicit(&zdplane_info.dg_update_yields,
3311 1, memory_order_relaxed);
3312
3313 dplane_provider_work_ready();
3314 }
3315
3316 return 0;
3317}
3318
e5a60d82
MS
3319#if DPLANE_TEST_PROVIDER
3320
c831033f
MS
3321/*
3322 * Test dataplane provider plugin
3323 */
3324
3325/*
3326 * Test provider process callback
3327 */
3328static int test_dplane_process_func(struct zebra_dplane_provider *prov)
3329{
3330 struct zebra_dplane_ctx *ctx;
3331 int counter, limit;
3332
3333 /* Just moving from 'in' queue to 'out' queue */
3334
3335 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3336 zlog_debug("dplane provider '%s': processing",
3337 dplane_provider_get_name(prov));
3338
3339 limit = dplane_provider_get_work_limit(prov);
3340
3341 for (counter = 0; counter < limit; counter++) {
3342
3343 ctx = dplane_provider_dequeue_in_ctx(prov);
3344 if (ctx == NULL)
3345 break;
3346
cf363e1b
MS
3347 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3348 zlog_debug("dplane provider '%s': op %s",
3349 dplane_provider_get_name(prov),
3350 dplane_op2str(dplane_ctx_get_op(ctx)));
3351
c831033f
MS
3352 dplane_ctx_set_status(ctx, ZEBRA_DPLANE_REQUEST_SUCCESS);
3353
3354 dplane_provider_enqueue_out_ctx(prov, ctx);
3355 }
3356
c9d17fe8
MS
3357 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3358 zlog_debug("dplane provider '%s': processed %d",
3359 dplane_provider_get_name(prov), counter);
3360
c831033f
MS
3361 /* Ensure that we'll run the work loop again if there's still
3362 * more work to do.
3363 */
3364 if (counter >= limit)
3365 dplane_provider_work_ready();
3366
3367 return 0;
3368}
3369
3370/*
3371 * Test provider shutdown/fini callback
3372 */
3373static int test_dplane_shutdown_func(struct zebra_dplane_provider *prov,
3374 bool early)
3375{
3376 if (IS_ZEBRA_DEBUG_DPLANE)
3377 zlog_debug("dplane provider '%s': %sshutdown",
3378 dplane_provider_get_name(prov),
3379 early ? "early " : "");
3380
3381 return 0;
3382}
e5a60d82 3383#endif /* DPLANE_TEST_PROVIDER */
c831033f
MS
3384
3385/*
3386 * Register default kernel provider
3387 */
3388static void dplane_provider_init(void)
3389{
3390 int ret;
3391
3392 ret = dplane_provider_register("Kernel",
3393 DPLANE_PRIO_KERNEL,
1dd4ea8a 3394 DPLANE_PROV_FLAGS_DEFAULT, NULL,
c831033f
MS
3395 kernel_dplane_process_func,
3396 NULL,
1ff8a248 3397 NULL, NULL);
c831033f
MS
3398
3399 if (ret != AOK)
3400 zlog_err("Unable to register kernel dplane provider: %d",
3401 ret);
3402
e5a60d82
MS
3403#if DPLANE_TEST_PROVIDER
3404 /* Optional test provider ... */
c831033f
MS
3405 ret = dplane_provider_register("Test",
3406 DPLANE_PRIO_PRE_KERNEL,
1dd4ea8a 3407 DPLANE_PROV_FLAGS_DEFAULT, NULL,
c831033f
MS
3408 test_dplane_process_func,
3409 test_dplane_shutdown_func,
1ff8a248 3410 NULL /* data */, NULL);
c831033f
MS
3411
3412 if (ret != AOK)
3413 zlog_err("Unable to register test dplane provider: %d",
3414 ret);
e5a60d82 3415#endif /* DPLANE_TEST_PROVIDER */
7cdb1a84
MS
3416}
3417
4dfd7a02
MS
3418/* Indicates zebra shutdown/exit is in progress. Some operations may be
3419 * simplified or skipped during shutdown processing.
3420 */
3421bool dplane_is_in_shutdown(void)
3422{
25779064 3423 return zdplane_info.dg_is_shutdown;
4dfd7a02
MS
3424}
3425
3426/*
3427 * Early or pre-shutdown, de-init notification api. This runs pretty
3428 * early during zebra shutdown, as a signal to stop new work and prepare
3429 * for updates generated by shutdown/cleanup activity, as zebra tries to
3430 * remove everything it's responsible for.
c9d17fe8 3431 * NB: This runs in the main zebra pthread context.
4dfd7a02
MS
3432 */
3433void zebra_dplane_pre_finish(void)
3434{
3435 if (IS_ZEBRA_DEBUG_DPLANE)
3436 zlog_debug("Zebra dataplane pre-fini called");
3437
25779064 3438 zdplane_info.dg_is_shutdown = true;
4dfd7a02 3439
c9d17fe8 3440 /* TODO -- Notify provider(s) of pending shutdown */
4dfd7a02
MS
3441}
3442
3443/*
3444 * Utility to determine whether work remains enqueued within the dplane;
3445 * used during system shutdown processing.
3446 */
3447static bool dplane_work_pending(void)
3448{
c9d17fe8 3449 bool ret = false;
25779064 3450 struct zebra_dplane_ctx *ctx;
c9d17fe8 3451 struct zebra_dplane_provider *prov;
4dfd7a02 3452
c831033f
MS
3453 /* TODO -- just checking incoming/pending work for now, must check
3454 * providers
3455 */
4dfd7a02
MS
3456 DPLANE_LOCK();
3457 {
3fe4ccc4 3458 ctx = TAILQ_FIRST(&zdplane_info.dg_update_ctx_q);
c9d17fe8 3459 prov = TAILQ_FIRST(&zdplane_info.dg_providers_q);
4dfd7a02
MS
3460 }
3461 DPLANE_UNLOCK();
3462
c9d17fe8
MS
3463 if (ctx != NULL) {
3464 ret = true;
3465 goto done;
3466 }
3467
3468 while (prov) {
3469
ad6aad4d 3470 dplane_provider_lock(prov);
c9d17fe8
MS
3471
3472 ctx = TAILQ_FIRST(&(prov->dp_ctx_in_q));
3473 if (ctx == NULL)
3474 ctx = TAILQ_FIRST(&(prov->dp_ctx_out_q));
3475
ad6aad4d 3476 dplane_provider_unlock(prov);
c9d17fe8
MS
3477
3478 if (ctx != NULL)
3479 break;
3480
3481 DPLANE_LOCK();
3482 prov = TAILQ_NEXT(prov, dp_prov_link);
3483 DPLANE_UNLOCK();
3484 }
3485
3486 if (ctx != NULL)
3487 ret = true;
3488
3489done:
3490 return ret;
4dfd7a02
MS
3491}
3492
3493/*
3494 * Shutdown-time intermediate callback, used to determine when all pending
3495 * in-flight updates are done. If there's still work to do, reschedules itself.
3496 * If all work is done, schedules an event to the main zebra thread for
3497 * final zebra shutdown.
3498 * This runs in the dplane pthread context.
3499 */
3500static int dplane_check_shutdown_status(struct thread *event)
3501{
3502 if (IS_ZEBRA_DEBUG_DPLANE)
3503 zlog_debug("Zebra dataplane shutdown status check called");
3504
3505 if (dplane_work_pending()) {
3506 /* Reschedule dplane check on a short timer */
25779064 3507 thread_add_timer_msec(zdplane_info.dg_master,
4dfd7a02
MS
3508 dplane_check_shutdown_status,
3509 NULL, 100,
25779064 3510 &zdplane_info.dg_t_shutdown_check);
4dfd7a02
MS
3511
3512 /* TODO - give up and stop waiting after a short time? */
3513
3514 } else {
3515 /* We appear to be done - schedule a final callback event
3516 * for the zebra main pthread.
3517 */
3801e764 3518 thread_add_event(zrouter.master, zebra_finalize, NULL, 0, NULL);
4dfd7a02
MS
3519 }
3520
3521 return 0;
3522}
3523
18c37974 3524/*
1d11b21f 3525 * Shutdown, de-init api. This runs pretty late during shutdown,
4dfd7a02
MS
3526 * after zebra has tried to free/remove/uninstall all routes during shutdown.
3527 * At this point, dplane work may still remain to be done, so we can't just
3528 * blindly terminate. If there's still work to do, we'll periodically check
3529 * and when done, we'll enqueue a task to the zebra main thread for final
3530 * termination processing.
3531 *
1d11b21f 3532 * NB: This runs in the main zebra thread context.
18c37974 3533 */
1d11b21f 3534void zebra_dplane_finish(void)
18c37974 3535{
4dfd7a02
MS
3536 if (IS_ZEBRA_DEBUG_DPLANE)
3537 zlog_debug("Zebra dataplane fini called");
3538
25779064 3539 thread_add_event(zdplane_info.dg_master,
4dfd7a02 3540 dplane_check_shutdown_status, NULL, 0,
25779064 3541 &zdplane_info.dg_t_shutdown_check);
4dfd7a02
MS
3542}
3543
c831033f
MS
3544/*
3545 * Main dataplane pthread event loop. The thread takes new incoming work
3546 * and offers it to the first provider. It then iterates through the
3547 * providers, taking complete work from each one and offering it
3548 * to the next in order. At each step, a limited number of updates are
3549 * processed during a cycle in order to provide some fairness.
14b0bc8e
MS
3550 *
3551 * This loop through the providers is only run once, so that the dataplane
3552 * pthread can look for other pending work - such as i/o work on behalf of
3553 * providers.
c831033f
MS
3554 */
3555static int dplane_thread_loop(struct thread *event)
3556{
3557 struct dplane_ctx_q work_list;
3558 struct dplane_ctx_q error_list;
3559 struct zebra_dplane_provider *prov;
3560 struct zebra_dplane_ctx *ctx, *tctx;
3561 int limit, counter, error_counter;
c9d17fe8 3562 uint64_t curr, high;
c831033f
MS
3563
3564 /* Capture work limit per cycle */
3565 limit = zdplane_info.dg_updates_per_cycle;
3566
14b0bc8e 3567 /* Init temporary lists used to move contexts among providers */
c831033f 3568 TAILQ_INIT(&work_list);
14b0bc8e
MS
3569 TAILQ_INIT(&error_list);
3570 error_counter = 0;
c831033f
MS
3571
3572 /* Check for zebra shutdown */
3573 if (!zdplane_info.dg_run)
3574 goto done;
3575
3576 /* Dequeue some incoming work from zebra (if any) onto the temporary
3577 * working list.
3578 */
3579 DPLANE_LOCK();
3580
3581 /* Locate initial registered provider */
3582 prov = TAILQ_FIRST(&zdplane_info.dg_providers_q);
3583
14b0bc8e 3584 /* Move new work from incoming list to temp list */
c831033f 3585 for (counter = 0; counter < limit; counter++) {
3fe4ccc4 3586 ctx = TAILQ_FIRST(&zdplane_info.dg_update_ctx_q);
c831033f 3587 if (ctx) {
3fe4ccc4 3588 TAILQ_REMOVE(&zdplane_info.dg_update_ctx_q, ctx,
c831033f
MS
3589 zd_q_entries);
3590
c831033f
MS
3591 ctx->zd_provider = prov->dp_id;
3592
3593 TAILQ_INSERT_TAIL(&work_list, ctx, zd_q_entries);
3594 } else {
3595 break;
3596 }
3597 }
3598
3599 DPLANE_UNLOCK();
3600
14b0bc8e
MS
3601 atomic_fetch_sub_explicit(&zdplane_info.dg_routes_queued, counter,
3602 memory_order_relaxed);
3603
c831033f
MS
3604 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3605 zlog_debug("dplane: incoming new work counter: %d", counter);
3606
3607 /* Iterate through the registered providers, offering new incoming
3608 * work. If the provider has outgoing work in its queue, take that
3609 * work for the next provider
3610 */
3611 while (prov) {
3612
14b0bc8e
MS
3613 /* At each iteration, the temporary work list has 'counter'
3614 * items.
3615 */
c831033f
MS
3616 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3617 zlog_debug("dplane enqueues %d new work to provider '%s'",
3618 counter, dplane_provider_get_name(prov));
3619
3620 /* Capture current provider id in each context; check for
3621 * error status.
3622 */
3623 TAILQ_FOREACH_SAFE(ctx, &work_list, zd_q_entries, tctx) {
3624 if (dplane_ctx_get_status(ctx) ==
3625 ZEBRA_DPLANE_REQUEST_SUCCESS) {
3626 ctx->zd_provider = prov->dp_id;
3627 } else {
3628 /*
3629 * TODO -- improve error-handling: recirc
3630 * errors backwards so that providers can
3631 * 'undo' their work (if they want to)
3632 */
3633
3634 /* Move to error list; will be returned
3635 * zebra main.
3636 */
3637 TAILQ_REMOVE(&work_list, ctx, zd_q_entries);
3638 TAILQ_INSERT_TAIL(&error_list,
3639 ctx, zd_q_entries);
3640 error_counter++;
3641 }
3642 }
3643
3644 /* Enqueue new work to the provider */
ad6aad4d 3645 dplane_provider_lock(prov);
c831033f
MS
3646
3647 if (TAILQ_FIRST(&work_list))
3648 TAILQ_CONCAT(&(prov->dp_ctx_in_q), &work_list,
3649 zd_q_entries);
3650
c9d17fe8
MS
3651 atomic_fetch_add_explicit(&prov->dp_in_counter, counter,
3652 memory_order_relaxed);
3653 atomic_fetch_add_explicit(&prov->dp_in_queued, counter,
3654 memory_order_relaxed);
3655 curr = atomic_load_explicit(&prov->dp_in_queued,
3656 memory_order_relaxed);
3657 high = atomic_load_explicit(&prov->dp_in_max,
3658 memory_order_relaxed);
3659 if (curr > high)
3660 atomic_store_explicit(&prov->dp_in_max, curr,
c831033f
MS
3661 memory_order_relaxed);
3662
ad6aad4d 3663 dplane_provider_unlock(prov);
c831033f 3664
14b0bc8e
MS
3665 /* Reset the temp list (though the 'concat' may have done this
3666 * already), and the counter
3667 */
c831033f
MS
3668 TAILQ_INIT(&work_list);
3669 counter = 0;
3670
14b0bc8e
MS
3671 /* Call into the provider code. Note that this is
3672 * unconditional: we offer to do work even if we don't enqueue
3673 * any _new_ work.
3674 */
c831033f
MS
3675 (*prov->dp_fp)(prov);
3676
3677 /* Check for zebra shutdown */
3678 if (!zdplane_info.dg_run)
3679 break;
3680
3681 /* Dequeue completed work from the provider */
ad6aad4d 3682 dplane_provider_lock(prov);
c831033f
MS
3683
3684 while (counter < limit) {
3685 ctx = TAILQ_FIRST(&(prov->dp_ctx_out_q));
3686 if (ctx) {
3687 TAILQ_REMOVE(&(prov->dp_ctx_out_q), ctx,
3688 zd_q_entries);
3689
3690 TAILQ_INSERT_TAIL(&work_list,
3691 ctx, zd_q_entries);
3692 counter++;
3693 } else
3694 break;
3695 }
3696
ad6aad4d 3697 dplane_provider_unlock(prov);
c831033f
MS
3698
3699 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
3700 zlog_debug("dplane dequeues %d completed work from provider %s",
3701 counter, dplane_provider_get_name(prov));
3702
3703 /* Locate next provider */
3704 DPLANE_LOCK();
3705 prov = TAILQ_NEXT(prov, dp_prov_link);
3706 DPLANE_UNLOCK();
c831033f
MS
3707 }
3708
3709 /* After all providers have been serviced, enqueue any completed
14b0bc8e 3710 * work and any errors back to zebra so it can process the results.
c831033f 3711 */
c831033f 3712 if (IS_ZEBRA_DEBUG_DPLANE_DETAIL)
14b0bc8e
MS
3713 zlog_debug("dplane has %d completed, %d errors, for zebra main",
3714 counter, error_counter);
c831033f
MS
3715
3716 /*
4c206c8f 3717 * Hand lists through the api to zebra main,
c831033f
MS
3718 * to reduce the number of lock/unlock cycles
3719 */
14b0bc8e 3720
4c206c8f
MS
3721 /* Call through to zebra main */
3722 (zdplane_info.dg_results_cb)(&error_list);
14b0bc8e 3723
4c206c8f 3724 TAILQ_INIT(&error_list);
14b0bc8e 3725
4c206c8f
MS
3726 /* Call through to zebra main */
3727 (zdplane_info.dg_results_cb)(&work_list);
c831033f 3728
4c206c8f 3729 TAILQ_INIT(&work_list);
c831033f
MS
3730
3731done:
3732 return 0;
3733}
3734
4dfd7a02
MS
3735/*
3736 * Final phase of shutdown, after all work enqueued to dplane has been
3737 * processed. This is called from the zebra main pthread context.
3738 */
3739void zebra_dplane_shutdown(void)
3740{
3741 if (IS_ZEBRA_DEBUG_DPLANE)
3742 zlog_debug("Zebra dataplane shutdown called");
1d11b21f
MS
3743
3744 /* Stop dplane thread, if it's running */
3745
25779064 3746 zdplane_info.dg_run = false;
1d11b21f 3747
25779064 3748 THREAD_OFF(zdplane_info.dg_t_update);
1d11b21f 3749
d8c16a95
MS
3750 frr_pthread_stop(zdplane_info.dg_pthread, NULL);
3751
3752 /* Destroy pthread */
3753 frr_pthread_destroy(zdplane_info.dg_pthread);
3754 zdplane_info.dg_pthread = NULL;
3755 zdplane_info.dg_master = NULL;
4dfd7a02 3756
c831033f
MS
3757 /* TODO -- Notify provider(s) of final shutdown */
3758
3759 /* TODO -- Clean-up provider objects */
3760
3761 /* TODO -- Clean queue(s), free memory */
3762}
3763
3764/*
3765 * Initialize the dataplane module during startup, internal/private version
3766 */
2561d12e 3767static void zebra_dplane_init_internal(void)
c831033f
MS
3768{
3769 memset(&zdplane_info, 0, sizeof(zdplane_info));
3770
3771 pthread_mutex_init(&zdplane_info.dg_mutex, NULL);
1d11b21f 3772
3fe4ccc4 3773 TAILQ_INIT(&zdplane_info.dg_update_ctx_q);
c831033f 3774 TAILQ_INIT(&zdplane_info.dg_providers_q);
1d11b21f 3775
c831033f
MS
3776 zdplane_info.dg_updates_per_cycle = DPLANE_DEFAULT_NEW_WORK;
3777
3778 zdplane_info.dg_max_queued_updates = DPLANE_DEFAULT_MAX_QUEUED;
3779
3780 /* Register default kernel 'provider' during init */
3781 dplane_provider_init();
e5a60d82 3782}
c831033f 3783
e5a60d82
MS
3784/*
3785 * Start the dataplane pthread. This step needs to be run later than the
3786 * 'init' step, in case zebra has fork-ed.
3787 */
3788void zebra_dplane_start(void)
3789{
1dd4ea8a 3790 struct zebra_dplane_provider *prov;
c831033f
MS
3791 struct frr_pthread_attr pattr = {
3792 .start = frr_pthread_attr_default.start,
3793 .stop = frr_pthread_attr_default.stop
3794 };
3795
1dd4ea8a
MS
3796 /* Start dataplane pthread */
3797
c831033f 3798 zdplane_info.dg_pthread = frr_pthread_new(&pattr, "Zebra dplane thread",
0eca319c 3799 "zebra_dplane");
c831033f
MS
3800
3801 zdplane_info.dg_master = zdplane_info.dg_pthread->master;
3802
e5a60d82
MS
3803 zdplane_info.dg_run = true;
3804
c831033f
MS
3805 /* Enqueue an initial event for the dataplane pthread */
3806 thread_add_event(zdplane_info.dg_master, dplane_thread_loop, NULL, 0,
3807 &zdplane_info.dg_t_update);
3808
1dd4ea8a
MS
3809 /* Call start callbacks for registered providers */
3810
3811 DPLANE_LOCK();
3812 prov = TAILQ_FIRST(&zdplane_info.dg_providers_q);
3813 DPLANE_UNLOCK();
3814
3815 while (prov) {
3816
3817 if (prov->dp_start)
3818 (prov->dp_start)(prov);
3819
3820 /* Locate next provider */
3821 DPLANE_LOCK();
3822 prov = TAILQ_NEXT(prov, dp_prov_link);
3823 DPLANE_UNLOCK();
3824 }
3825
c831033f 3826 frr_pthread_run(zdplane_info.dg_pthread, NULL);
18c37974
MS
3827}
3828
7cdb1a84 3829/*
b8e0423d 3830 * Initialize the dataplane module at startup; called by zebra rib_init()
7cdb1a84 3831 */
4c206c8f 3832void zebra_dplane_init(int (*results_fp)(struct dplane_ctx_q *))
7cdb1a84 3833{
2561d12e 3834 zebra_dplane_init_internal();
4c206c8f 3835 zdplane_info.dg_results_cb = results_fp;
7cdb1a84 3836}