]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_dplane.h
Merge pull request #13403 from anlancs/fix/zebra-missing-vrf-flag
[mirror_frr.git] / zebra / zebra_dplane.h
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
ea1c14f6
MS
2/*
3 * Zebra dataplane layer api interfaces.
4 * Copyright (c) 2018 Volta Networks, Inc.
ea1c14f6
MS
5 */
6
7#ifndef _ZEBRA_DPLANE_H
8#define _ZEBRA_DPLANE_H 1
9
7cdb1a84
MS
10#include "lib/zebra.h"
11#include "lib/prefix.h"
12#include "lib/nexthop.h"
13#include "lib/nexthop_group.h"
7597ac7b 14#include "lib/vlan.h"
7cdb1a84
MS
15#include "zebra/zebra_ns.h"
16#include "zebra/rib.h"
17#include "zebra/zserv.h"
0f461727 18#include "zebra/zebra_mpls.h"
f820d025 19#include "zebra/zebra_nhg.h"
ea1c14f6 20
51e94aa7
EDP
21#ifdef __cplusplus
22extern "C" {
23#endif
24
85a75f1e
MS
25/* Key netlink info from zebra ns */
26struct zebra_dplane_info {
27 ns_id_t ns_id;
28
29#if defined(HAVE_NETLINK)
d4000d7b 30 int sock;
3670f504 31 int seq;
85a75f1e
MS
32 bool is_cmd;
33#endif
34};
35
36/* Utility to fill in zns info from main zns struct */
37static inline void
38zebra_dplane_info_from_zns(struct zebra_dplane_info *zns_info,
39 const struct zebra_ns *zns, bool is_cmd)
40{
41 zns_info->ns_id = zns->ns_id;
42
43#if defined(HAVE_NETLINK)
44 zns_info->is_cmd = is_cmd;
45 if (is_cmd) {
d4000d7b 46 zns_info->sock = zns->netlink_cmd.sock;
3670f504 47 zns_info->seq = zns->netlink_cmd.seq;
85a75f1e 48 } else {
d4000d7b 49 zns_info->sock = zns->netlink.sock;
3670f504 50 zns_info->seq = zns->netlink.seq;
85a75f1e
MS
51 }
52#endif /* NETLINK */
53}
54
971bad84
MS
55/*
56 * Notify dplane when namespaces are enabled and disabled. The dplane
57 * needs to start and stop reading incoming events from the ns.
58 */
59void zebra_dplane_ns_enable(struct zebra_ns *zns, bool enabled);
60
ea1c14f6
MS
61/*
62 * Result codes used when returning status back to the main zebra context.
63 */
64
65/*
66 * Philosophy Note:
67 *
68 * Flags being SET/UNSET do not belong in the South Bound
69 * Interface. This Setting belongs at the calling level
70 * because we can and will have multiple different interfaces
71 * and we will have potentially multiple different
72 * modules/filters to call. As such Setting/Unsetting
73 * success failure should be handled by the caller.
74 */
75enum zebra_dplane_status {
76 ZEBRA_DPLANE_STATUS_NONE = 0,
77 ZEBRA_DPLANE_INSTALL_SUCCESS,
78 ZEBRA_DPLANE_INSTALL_FAILURE,
79 ZEBRA_DPLANE_DELETE_SUCCESS,
80 ZEBRA_DPLANE_DELETE_FAILURE,
81
82};
83
84enum zebra_dplane_result {
85 ZEBRA_DPLANE_REQUEST_QUEUED,
86 ZEBRA_DPLANE_REQUEST_SUCCESS,
87 ZEBRA_DPLANE_REQUEST_FAILURE,
88};
89
7cdb1a84
MS
90/*
91 * API between the zebra dataplane system and the main zebra processing
92 * context.
93 */
94
95/*
9d59df63 96 * Operations that the dataplane can process.
7cdb1a84 97 */
5709131c 98enum dplane_op_e {
7cdb1a84
MS
99 DPLANE_OP_NONE = 0,
100
101 /* Route update */
102 DPLANE_OP_ROUTE_INSTALL,
103 DPLANE_OP_ROUTE_UPDATE,
104 DPLANE_OP_ROUTE_DELETE,
54818e3b 105 DPLANE_OP_ROUTE_NOTIFY,
7cdb1a84 106
f820d025
SW
107 /* Nexthop update */
108 DPLANE_OP_NH_INSTALL,
109 DPLANE_OP_NH_UPDATE,
110 DPLANE_OP_NH_DELETE,
111
16c628de
MS
112 /* LSP update */
113 DPLANE_OP_LSP_INSTALL,
114 DPLANE_OP_LSP_UPDATE,
97d8d05a 115 DPLANE_OP_LSP_DELETE,
104e3ad9 116 DPLANE_OP_LSP_NOTIFY,
97d8d05a
MS
117
118 /* Pseudowire update */
119 DPLANE_OP_PW_INSTALL,
120 DPLANE_OP_PW_UNINSTALL,
cf363e1b
MS
121
122 /* System route notification */
123 DPLANE_OP_SYS_ROUTE_ADD,
124 DPLANE_OP_SYS_ROUTE_DELETE,
a4a4802a
MS
125
126 /* Interface address update */
127 DPLANE_OP_ADDR_INSTALL,
128 DPLANE_OP_ADDR_UNINSTALL,
7597ac7b
MS
129
130 /* MAC address update */
131 DPLANE_OP_MAC_INSTALL,
132 DPLANE_OP_MAC_DELETE,
f2412b2d
MS
133
134 /* EVPN neighbor updates */
135 DPLANE_OP_NEIGH_INSTALL,
931fa60c 136 DPLANE_OP_NEIGH_UPDATE,
f2412b2d 137 DPLANE_OP_NEIGH_DELETE,
0bbd4ff4
MS
138
139 /* EVPN VTEP updates */
140 DPLANE_OP_VTEP_ADD,
141 DPLANE_OP_VTEP_DELETE,
60d8d43b
JU
142
143 /* Policy based routing rule update */
144 DPLANE_OP_RULE_ADD,
145 DPLANE_OP_RULE_DELETE,
146 DPLANE_OP_RULE_UPDATE,
d68e74b4
JU
147
148 /* Link layer address discovery */
149 DPLANE_OP_NEIGH_DISCOVER,
c60522f7
AK
150
151 /* bridge port update */
152 DPLANE_OP_BR_PORT_UPDATE,
5162e000 153
ef524230 154 /* Policy based routing iptable update */
5162e000
PG
155 DPLANE_OP_IPTABLE_ADD,
156 DPLANE_OP_IPTABLE_DELETE,
ef524230
PG
157
158 /* Policy based routing ipset update */
159 DPLANE_OP_IPSET_ADD,
160 DPLANE_OP_IPSET_DELETE,
161 DPLANE_OP_IPSET_ENTRY_ADD,
162 DPLANE_OP_IPSET_ENTRY_DELETE,
0a27a2fe
PG
163
164 /* LINK LAYER IP address update */
165 DPLANE_OP_NEIGH_IP_INSTALL,
166 DPLANE_OP_NEIGH_IP_DELETE,
e18747a9
PG
167
168 DPLANE_OP_NEIGH_TABLE_UPDATE,
62b4b7e4 169 DPLANE_OP_GRE_SET,
9d59df63
MS
170
171 /* Incoming interface address events */
172 DPLANE_OP_INTF_ADDR_ADD,
173 DPLANE_OP_INTF_ADDR_DEL,
728f2017
MS
174
175 /* Incoming interface config events */
176 DPLANE_OP_INTF_NETCONFIG,
5d414138
SW
177
178 /* Interface update */
179 DPLANE_OP_INTF_INSTALL,
180 DPLANE_OP_INTF_UPDATE,
181 DPLANE_OP_INTF_DELETE,
449a30ed
SY
182
183 /* Traffic control */
c317d3f2
SY
184 DPLANE_OP_TC_QDISC_INSTALL,
185 DPLANE_OP_TC_QDISC_UNINSTALL,
186 DPLANE_OP_TC_CLASS_ADD,
187 DPLANE_OP_TC_CLASS_DELETE,
188 DPLANE_OP_TC_CLASS_UPDATE,
189 DPLANE_OP_TC_FILTER_ADD,
190 DPLANE_OP_TC_FILTER_DELETE,
191 DPLANE_OP_TC_FILTER_UPDATE
5709131c 192};
7cdb1a84 193
931fa60c
MS
194/*
195 * The vxlan/evpn neighbor management code needs some values to use
196 * when programming neighbor changes. Offer some platform-neutral values
197 * here for use within the dplane apis and plugins.
198 */
199
200/* Neighbor cache flags */
201#define DPLANE_NTF_EXT_LEARNED 0x01
202#define DPLANE_NTF_ROUTER 0x02
d68e74b4 203#define DPLANE_NTF_USE 0x04
931fa60c
MS
204
205/* Neighbor cache states */
206#define DPLANE_NUD_REACHABLE 0x01
207#define DPLANE_NUD_STALE 0x02
208#define DPLANE_NUD_NOARP 0x04
209#define DPLANE_NUD_PROBE 0x08
d68e74b4 210#define DPLANE_NUD_INCOMPLETE 0x10
0a27a2fe
PG
211#define DPLANE_NUD_PERMANENT 0x20
212#define DPLANE_NUD_FAILED 0x40
931fa60c 213
f188e68e
AK
214/* MAC update flags - dplane_mac_info.update_flags */
215#define DPLANE_MAC_REMOTE (1 << 0)
216#define DPLANE_MAC_WAS_STATIC (1 << 1)
217#define DPLANE_MAC_SET_STATIC (1 << 2)
218#define DPLANE_MAC_SET_INACTIVE (1 << 3)
219
220/* Neigh update flags - dplane_neigh_info.update_flags */
221#define DPLANE_NEIGH_REMOTE (1 << 0)
222#define DPLANE_NEIGH_WAS_STATIC (1 << 1)
223#define DPLANE_NEIGH_SET_STATIC (1 << 2)
224#define DPLANE_NEIGH_SET_INACTIVE (1 << 3)
0a27a2fe 225#define DPLANE_NEIGH_NO_EXTENSION (1 << 4)
f188e68e 226
c60522f7
AK
227#define DPLANE_BR_PORT_NON_DF (1 << 0)
228
728f2017
MS
229/* Definitions for the dplane 'netconf' apis, corresponding to the netlink
230 * NETCONF api.
231 * Sadly, netlink sends incremental updates, so its messages may contain
232 * just a single changed attribute, and not necessarily
233 * a complete snapshot of the attributes.
234 */
235enum dplane_netconf_status_e {
236 DPLANE_NETCONF_STATUS_UNKNOWN = 0,
237 DPLANE_NETCONF_STATUS_ENABLED,
238 DPLANE_NETCONF_STATUS_DISABLED
239};
240
241/* Some special ifindex values that may be part of the dplane netconf api. */
242#define DPLANE_NETCONF_IFINDEX_ALL -1
243#define DPLANE_NETCONF_IFINDEX_DEFAULT -2
244
cf363e1b
MS
245/* Enable system route notifications */
246void dplane_enable_sys_route_notifs(void);
247
7cdb1a84 248/*
25779064 249 * The dataplane context struct is used to exchange info between the main zebra
7cdb1a84
MS
250 * context and the dataplane module(s). If these are two independent pthreads,
251 * they cannot share existing global data structures safely.
252 */
7cdb1a84 253
ac96497c 254/* Define a list type for context blocks. The list is exposed/public,
7cdb1a84
MS
255 * but the internal linkage in the context struct is private, so there
256 * are accessor apis that support enqueue and dequeue.
257 */
ac96497c
MS
258
259PREDECL_DLIST(dplane_ctx_list);
7cdb1a84 260
5917df09 261/* Declare a type for (optional) extended interface info objects. */
ac96497c 262PREDECL_DLIST(dplane_intf_extra_list);
5917df09 263
593e4eb1
MS
264/* Allocate a context object */
265struct zebra_dplane_ctx *dplane_ctx_alloc(void);
266
f73a8467
MS
267/*
268 * Reset an allocated context object for re-use. All internal allocations are
269 * freed.
270 */
271void dplane_ctx_reset(struct zebra_dplane_ctx *ctx);
272
aa21da07
MS
273/*
274 * Allow zebra code to walk the queue of pending contexts, evaluate each one
275 * using a callback function. The caller can supply an optional void* arg also.
276 * If the function returns 'true', the context will be dequeued and freed
277 * without being processed.
278 */
279int dplane_clean_ctx_queue(bool (*context_cb)(struct zebra_dplane_ctx *ctx,
280 void *arg), void *val);
281
7cdb1a84
MS
282/* Return a dataplane results context block after use; the caller's pointer will
283 * be cleared.
284 */
25779064 285void dplane_ctx_fini(struct zebra_dplane_ctx **pctx);
7cdb1a84 286
14b0bc8e 287/* Enqueue a context block to caller's tailq. This exists so that the
7cdb1a84
MS
288 * context struct can remain opaque.
289 */
ac96497c 290void dplane_ctx_enqueue_tail(struct dplane_ctx_list_head *q,
25779064 291 const struct zebra_dplane_ctx *ctx);
7cdb1a84 292
c831033f
MS
293/* Append a list of context blocks to another list - again, just keeping
294 * the context struct opaque.
295 */
ac96497c
MS
296void dplane_ctx_list_append(struct dplane_ctx_list_head *to_list,
297 struct dplane_ctx_list_head *from_list);
c831033f 298
7cdb1a84 299/* Dequeue a context block from the head of caller's tailq */
ac96497c
MS
300struct zebra_dplane_ctx *dplane_ctx_dequeue(struct dplane_ctx_list_head *q);
301struct zebra_dplane_ctx *dplane_ctx_get_head(struct dplane_ctx_list_head *q);
302
303/* Init a list of contexts */
304void dplane_ctx_q_init(struct dplane_ctx_list_head *q);
7cdb1a84
MS
305
306/*
307 * Accessors for information from the context object
308 */
25779064
MS
309enum zebra_dplane_result dplane_ctx_get_status(
310 const struct zebra_dplane_ctx *ctx);
c831033f
MS
311void dplane_ctx_set_status(struct zebra_dplane_ctx *ctx,
312 enum zebra_dplane_result status);
f183e380 313const char *dplane_res2str(enum zebra_dplane_result res);
7cdb1a84 314
25779064 315enum dplane_op_e dplane_ctx_get_op(const struct zebra_dplane_ctx *ctx);
593e4eb1 316void dplane_ctx_set_op(struct zebra_dplane_ctx *ctx, enum dplane_op_e op);
5709131c 317const char *dplane_op2str(enum dplane_op_e op);
7cdb1a84 318
25779064 319const struct prefix *dplane_ctx_get_dest(const struct zebra_dplane_ctx *ctx);
593e4eb1
MS
320void dplane_ctx_set_dest(struct zebra_dplane_ctx *ctx,
321 const struct prefix *dest);
7c7ef4a8 322const char *dplane_ctx_get_ifname(const struct zebra_dplane_ctx *ctx);
fd563cc7 323void dplane_ctx_set_ifname(struct zebra_dplane_ctx *ctx, const char *ifname);
7c7ef4a8 324ifindex_t dplane_ctx_get_ifindex(const struct zebra_dplane_ctx *ctx);
971bad84 325void dplane_ctx_set_ifindex(struct zebra_dplane_ctx *ctx, ifindex_t ifindex);
7cdb1a84 326
c831033f
MS
327/* Retrieve last/current provider id */
328uint32_t dplane_ctx_get_provider(const struct zebra_dplane_ctx *ctx);
329
330/* Providers running before the kernel can control whether a kernel
331 * update should be done.
332 */
333void dplane_ctx_set_skip_kernel(struct zebra_dplane_ctx *ctx);
334bool dplane_ctx_is_skip_kernel(const struct zebra_dplane_ctx *ctx);
335
5709131c
MS
336/* Source prefix is a little special - use convention to return NULL
337 * to mean "no src prefix"
7cdb1a84 338 */
25779064 339const struct prefix *dplane_ctx_get_src(const struct zebra_dplane_ctx *ctx);
593e4eb1 340void dplane_ctx_set_src(struct zebra_dplane_ctx *ctx, const struct prefix *src);
25779064
MS
341
342bool dplane_ctx_is_update(const struct zebra_dplane_ctx *ctx);
343uint32_t dplane_ctx_get_seq(const struct zebra_dplane_ctx *ctx);
344uint32_t dplane_ctx_get_old_seq(const struct zebra_dplane_ctx *ctx);
593e4eb1 345void dplane_ctx_set_vrf(struct zebra_dplane_ctx *ctx, vrf_id_t vrf);
25779064 346vrf_id_t dplane_ctx_get_vrf(const struct zebra_dplane_ctx *ctx);
0f461727 347
971bad84
MS
348/* In some paths we have only a namespace id */
349void dplane_ctx_set_ns_id(struct zebra_dplane_ctx *ctx, ns_id_t nsid);
350ns_id_t dplane_ctx_get_ns_id(const struct zebra_dplane_ctx *ctx);
351
0024a559 352bool dplane_ctx_is_from_notif(const struct zebra_dplane_ctx *ctx);
9651af61
MS
353void dplane_ctx_set_notif_provider(struct zebra_dplane_ctx *ctx,
354 uint32_t id);
0024a559
MS
355uint32_t dplane_ctx_get_notif_provider(const struct zebra_dplane_ctx *ctx);
356
0f461727 357/* Accessors for route update information */
593e4eb1 358void dplane_ctx_set_type(struct zebra_dplane_ctx *ctx, int type);
25779064
MS
359int dplane_ctx_get_type(const struct zebra_dplane_ctx *ctx);
360int dplane_ctx_get_old_type(const struct zebra_dplane_ctx *ctx);
593e4eb1 361void dplane_ctx_set_afi(struct zebra_dplane_ctx *ctx, afi_t afi);
25779064 362afi_t dplane_ctx_get_afi(const struct zebra_dplane_ctx *ctx);
593e4eb1 363void dplane_ctx_set_safi(struct zebra_dplane_ctx *ctx, safi_t safi);
25779064 364safi_t dplane_ctx_get_safi(const struct zebra_dplane_ctx *ctx);
593e4eb1 365void dplane_ctx_set_table(struct zebra_dplane_ctx *ctx, uint32_t table);
25779064
MS
366uint32_t dplane_ctx_get_table(const struct zebra_dplane_ctx *ctx);
367route_tag_t dplane_ctx_get_tag(const struct zebra_dplane_ctx *ctx);
6a91ae98 368void dplane_ctx_set_tag(struct zebra_dplane_ctx *ctx, route_tag_t tag);
25779064
MS
369route_tag_t dplane_ctx_get_old_tag(const struct zebra_dplane_ctx *ctx);
370uint16_t dplane_ctx_get_instance(const struct zebra_dplane_ctx *ctx);
6a91ae98 371void dplane_ctx_set_instance(struct zebra_dplane_ctx *ctx, uint16_t instance);
25779064 372uint16_t dplane_ctx_get_old_instance(const struct zebra_dplane_ctx *ctx);
10388e99
DS
373uint32_t dplane_ctx_get_flags(const struct zebra_dplane_ctx *ctx);
374void dplane_ctx_set_flags(struct zebra_dplane_ctx *ctx, uint32_t flags);
25779064
MS
375uint32_t dplane_ctx_get_metric(const struct zebra_dplane_ctx *ctx);
376uint32_t dplane_ctx_get_old_metric(const struct zebra_dplane_ctx *ctx);
377uint32_t dplane_ctx_get_mtu(const struct zebra_dplane_ctx *ctx);
378uint32_t dplane_ctx_get_nh_mtu(const struct zebra_dplane_ctx *ctx);
379uint8_t dplane_ctx_get_distance(const struct zebra_dplane_ctx *ctx);
6a91ae98 380void dplane_ctx_set_distance(struct zebra_dplane_ctx *ctx, uint8_t distance);
25779064
MS
381uint8_t dplane_ctx_get_old_distance(const struct zebra_dplane_ctx *ctx);
382
449a30ed 383/* Accessors for traffic control context */
c317d3f2
SY
384int dplane_ctx_tc_qdisc_get_kind(const struct zebra_dplane_ctx *ctx);
385const char *
386dplane_ctx_tc_qdisc_get_kind_str(const struct zebra_dplane_ctx *ctx);
387
388uint32_t dplane_ctx_tc_class_get_handle(const struct zebra_dplane_ctx *ctx);
389int dplane_ctx_tc_class_get_kind(const struct zebra_dplane_ctx *ctx);
390const char *
391dplane_ctx_tc_class_get_kind_str(const struct zebra_dplane_ctx *ctx);
392uint64_t dplane_ctx_tc_class_get_rate(const struct zebra_dplane_ctx *ctx);
393uint64_t dplane_ctx_tc_class_get_ceil(const struct zebra_dplane_ctx *ctx);
394
395int dplane_ctx_tc_filter_get_kind(const struct zebra_dplane_ctx *ctx);
396const char *
397dplane_ctx_tc_filter_get_kind_str(const struct zebra_dplane_ctx *ctx);
398uint32_t dplane_ctx_tc_filter_get_priority(const struct zebra_dplane_ctx *ctx);
399uint32_t dplane_ctx_tc_filter_get_handle(const struct zebra_dplane_ctx *ctx);
400uint16_t dplane_ctx_tc_filter_get_minor(const struct zebra_dplane_ctx *ctx);
401uint16_t dplane_ctx_tc_filter_get_eth_proto(const struct zebra_dplane_ctx *ctx);
402uint32_t dplane_ctx_tc_filter_get_filter_bm(const struct zebra_dplane_ctx *ctx);
449a30ed 403const struct prefix *
c317d3f2
SY
404dplane_ctx_tc_filter_get_src_ip(const struct zebra_dplane_ctx *ctx);
405uint16_t
406dplane_ctx_tc_filter_get_src_port_min(const struct zebra_dplane_ctx *ctx);
407uint16_t
408dplane_ctx_tc_filter_get_src_port_max(const struct zebra_dplane_ctx *ctx);
449a30ed 409const struct prefix *
c317d3f2
SY
410dplane_ctx_tc_filter_get_dst_ip(const struct zebra_dplane_ctx *ctx);
411uint16_t
412dplane_ctx_tc_filter_get_dst_port_min(const struct zebra_dplane_ctx *ctx);
413uint16_t
414dplane_ctx_tc_filter_get_dst_port_max(const struct zebra_dplane_ctx *ctx);
415uint8_t dplane_ctx_tc_filter_get_ip_proto(const struct zebra_dplane_ctx *ctx);
416uint8_t dplane_ctx_tc_filter_get_dsfield(const struct zebra_dplane_ctx *ctx);
417uint8_t
418dplane_ctx_tc_filter_get_dsfield_mask(const struct zebra_dplane_ctx *ctx);
419uint32_t dplane_ctx_tc_filter_get_classid(const struct zebra_dplane_ctx *ctx);
449a30ed 420
593e4eb1 421void dplane_ctx_set_nexthops(struct zebra_dplane_ctx *ctx, struct nexthop *nh);
928f94a9
MS
422void dplane_ctx_set_backup_nhg(struct zebra_dplane_ctx *ctx,
423 const struct nexthop_group *nhg);
1d48702e
MS
424
425uint32_t dplane_ctx_get_nhg_id(const struct zebra_dplane_ctx *ctx);
25779064
MS
426const struct nexthop_group *dplane_ctx_get_ng(
427 const struct zebra_dplane_ctx *ctx);
428const struct nexthop_group *dplane_ctx_get_old_ng(
429 const struct zebra_dplane_ctx *ctx);
430
5917df09
MS
431/* Optional extra info about interfaces in nexthops - a plugin must enable
432 * this extra info.
433 */
434const struct dplane_intf_extra *
435dplane_ctx_get_intf_extra(const struct zebra_dplane_ctx *ctx);
436
437const struct dplane_intf_extra *
438dplane_ctx_intf_extra_next(const struct zebra_dplane_ctx *ctx,
439 const struct dplane_intf_extra *ptr);
440
441vrf_id_t dplane_intf_extra_get_vrfid(const struct dplane_intf_extra *ptr);
442uint32_t dplane_intf_extra_get_ifindex(const struct dplane_intf_extra *ptr);
443uint32_t dplane_intf_extra_get_flags(const struct dplane_intf_extra *ptr);
444uint32_t dplane_intf_extra_get_status(const struct dplane_intf_extra *ptr);
445
1d48702e
MS
446/* Backup nexthop information (list of nexthops) if present. */
447const struct nexthop_group *
448dplane_ctx_get_backup_ng(const struct zebra_dplane_ctx *ctx);
449const struct nexthop_group *
450dplane_ctx_get_old_backup_ng(const struct zebra_dplane_ctx *ctx);
451
f820d025 452/* Accessors for nexthop information */
0c8215cb 453uint32_t dplane_ctx_get_nhe_id(const struct zebra_dplane_ctx *ctx);
df3cef24 454uint32_t dplane_ctx_get_old_nhe_id(const struct zebra_dplane_ctx *ctx);
0c8215cb
SW
455afi_t dplane_ctx_get_nhe_afi(const struct zebra_dplane_ctx *ctx);
456vrf_id_t dplane_ctx_get_nhe_vrf_id(const struct zebra_dplane_ctx *ctx);
38e40db1 457int dplane_ctx_get_nhe_type(const struct zebra_dplane_ctx *ctx);
0c8215cb
SW
458const struct nexthop_group *
459dplane_ctx_get_nhe_ng(const struct zebra_dplane_ctx *ctx);
e22e8001
SW
460const struct nh_grp *
461dplane_ctx_get_nhe_nh_grp(const struct zebra_dplane_ctx *ctx);
462uint8_t dplane_ctx_get_nhe_nh_grp_count(const struct zebra_dplane_ctx *ctx);
f820d025 463
0f461727 464/* Accessors for LSP information */
65f264cf
MS
465
466/* Init the internal LSP data struct - necessary before adding to it.
467 * If 'lsp' is non-NULL, info will be copied from it to the internal
468 * context data area.
469 */
470int dplane_ctx_lsp_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
8f74a383 471 struct zebra_lsp *lsp);
65f264cf 472
0f461727 473mpls_label_t dplane_ctx_get_in_label(const struct zebra_dplane_ctx *ctx);
3ab54059
MS
474void dplane_ctx_set_in_label(struct zebra_dplane_ctx *ctx,
475 mpls_label_t label);
0f461727 476uint8_t dplane_ctx_get_addr_family(const struct zebra_dplane_ctx *ctx);
3ab54059
MS
477void dplane_ctx_set_addr_family(struct zebra_dplane_ctx *ctx,
478 uint8_t family);
0f461727 479uint32_t dplane_ctx_get_lsp_flags(const struct zebra_dplane_ctx *ctx);
3ab54059
MS
480void dplane_ctx_set_lsp_flags(struct zebra_dplane_ctx *ctx,
481 uint32_t flags);
ee70f629
MS
482const struct nhlfe_list_head *dplane_ctx_get_nhlfe_list(
483 const struct zebra_dplane_ctx *ctx);
cd4bb96f
MS
484const struct nhlfe_list_head *dplane_ctx_get_backup_nhlfe_list(
485 const struct zebra_dplane_ctx *ctx);
486
f2595bd5
DS
487struct zebra_nhlfe *dplane_ctx_add_nhlfe(struct zebra_dplane_ctx *ctx,
488 enum lsp_types_t lsp_type,
489 enum nexthop_types_t nh_type,
490 const union g_addr *gate,
491 ifindex_t ifindex, uint8_t num_labels,
492 mpls_label_t *out_labels);
493
494struct zebra_nhlfe *dplane_ctx_add_backup_nhlfe(
495 struct zebra_dplane_ctx *ctx, enum lsp_types_t lsp_type,
496 enum nexthop_types_t nh_type, const union g_addr *gate,
497 ifindex_t ifindex, uint8_t num_labels, mpls_label_t *out_labels);
498
499const struct zebra_nhlfe *
500dplane_ctx_get_best_nhlfe(const struct zebra_dplane_ctx *ctx);
501const struct zebra_nhlfe *
502dplane_ctx_set_best_nhlfe(struct zebra_dplane_ctx *ctx,
503 struct zebra_nhlfe *nhlfe);
0f461727
MS
504uint32_t dplane_ctx_get_lsp_num_ecmp(const struct zebra_dplane_ctx *ctx);
505
d613b8e1 506/* Accessors for pseudowire information */
d613b8e1
MS
507mpls_label_t dplane_ctx_get_pw_local_label(const struct zebra_dplane_ctx *ctx);
508mpls_label_t dplane_ctx_get_pw_remote_label(const struct zebra_dplane_ctx *ctx);
509int dplane_ctx_get_pw_type(const struct zebra_dplane_ctx *ctx);
510int dplane_ctx_get_pw_af(const struct zebra_dplane_ctx *ctx);
511uint32_t dplane_ctx_get_pw_flags(const struct zebra_dplane_ctx *ctx);
512int dplane_ctx_get_pw_status(const struct zebra_dplane_ctx *ctx);
fd563cc7 513void dplane_ctx_set_pw_status(struct zebra_dplane_ctx *ctx, int status);
16d69787 514const union g_addr *dplane_ctx_get_pw_dest(
d613b8e1
MS
515 const struct zebra_dplane_ctx *ctx);
516const union pw_protocol_fields *dplane_ctx_get_pw_proto(
517 const struct zebra_dplane_ctx *ctx);
09cd307c
MS
518const struct nexthop_group *dplane_ctx_get_pw_nhg(
519 const struct zebra_dplane_ctx *ctx);
072b487b
MS
520const struct nexthop_group *
521dplane_ctx_get_pw_primary_nhg(const struct zebra_dplane_ctx *ctx);
522const struct nexthop_group *
523dplane_ctx_get_pw_backup_nhg(const struct zebra_dplane_ctx *ctx);
d613b8e1 524
a4a4802a 525/* Accessors for interface information */
a4a4802a 526uint32_t dplane_ctx_get_intf_metric(const struct zebra_dplane_ctx *ctx);
971bad84 527void dplane_ctx_set_intf_metric(struct zebra_dplane_ctx *ctx, uint32_t metric);
ab465d24
SW
528uint32_t dplane_ctx_get_intf_pd_reason_val(const struct zebra_dplane_ctx *ctx);
529void dplane_ctx_set_intf_pd_reason_val(struct zebra_dplane_ctx *ctx, bool val);
5d414138 530bool dplane_ctx_intf_is_protodown(const struct zebra_dplane_ctx *ctx);
a4a4802a
MS
531/* Is interface addr p2p? */
532bool dplane_ctx_intf_is_connected(const struct zebra_dplane_ctx *ctx);
971bad84 533void dplane_ctx_intf_set_connected(struct zebra_dplane_ctx *ctx);
a4a4802a 534bool dplane_ctx_intf_is_secondary(const struct zebra_dplane_ctx *ctx);
971bad84 535void dplane_ctx_intf_set_secondary(struct zebra_dplane_ctx *ctx);
990b0d09 536bool dplane_ctx_intf_is_broadcast(const struct zebra_dplane_ctx *ctx);
971bad84 537void dplane_ctx_intf_set_broadcast(struct zebra_dplane_ctx *ctx);
a4a4802a
MS
538const struct prefix *dplane_ctx_get_intf_addr(
539 const struct zebra_dplane_ctx *ctx);
971bad84
MS
540void dplane_ctx_set_intf_addr(struct zebra_dplane_ctx *ctx,
541 const struct prefix *p);
a4a4802a
MS
542bool dplane_ctx_intf_has_dest(const struct zebra_dplane_ctx *ctx);
543const struct prefix *dplane_ctx_get_intf_dest(
544 const struct zebra_dplane_ctx *ctx);
971bad84
MS
545void dplane_ctx_set_intf_dest(struct zebra_dplane_ctx *ctx,
546 const struct prefix *p);
a4a4802a
MS
547bool dplane_ctx_intf_has_label(const struct zebra_dplane_ctx *ctx);
548const char *dplane_ctx_get_intf_label(const struct zebra_dplane_ctx *ctx);
971bad84 549void dplane_ctx_set_intf_label(struct zebra_dplane_ctx *ctx, const char *label);
a4a4802a 550
7597ac7b
MS
551/* Accessors for MAC information */
552vlanid_t dplane_ctx_mac_get_vlan(const struct zebra_dplane_ctx *ctx);
553bool dplane_ctx_mac_is_sticky(const struct zebra_dplane_ctx *ctx);
f188e68e 554uint32_t dplane_ctx_mac_get_update_flags(const struct zebra_dplane_ctx *ctx);
506efd37 555uint32_t dplane_ctx_mac_get_nhg_id(const struct zebra_dplane_ctx *ctx);
7597ac7b
MS
556const struct ethaddr *dplane_ctx_mac_get_addr(
557 const struct zebra_dplane_ctx *ctx);
b95ce8fa 558vni_t dplane_ctx_mac_get_vni(const struct zebra_dplane_ctx *ctx);
7597ac7b
MS
559const struct in_addr *dplane_ctx_mac_get_vtep_ip(
560 const struct zebra_dplane_ctx *ctx);
478566d6 561ifindex_t dplane_ctx_mac_get_br_ifindex(const struct zebra_dplane_ctx *ctx);
7597ac7b 562
931fa60c
MS
563/* Accessors for neighbor information */
564const struct ipaddr *dplane_ctx_neigh_get_ipaddr(
565 const struct zebra_dplane_ctx *ctx);
566const struct ethaddr *dplane_ctx_neigh_get_mac(
567 const struct zebra_dplane_ctx *ctx);
b95ce8fa 568vni_t dplane_ctx_neigh_get_vni(const struct zebra_dplane_ctx *ctx);
0a27a2fe
PG
569const struct ipaddr *
570dplane_ctx_neigh_get_link_ip(const struct zebra_dplane_ctx *ctx);
931fa60c
MS
571uint32_t dplane_ctx_neigh_get_flags(const struct zebra_dplane_ctx *ctx);
572uint16_t dplane_ctx_neigh_get_state(const struct zebra_dplane_ctx *ctx);
f188e68e 573uint32_t dplane_ctx_neigh_get_update_flags(const struct zebra_dplane_ctx *ctx);
931fa60c 574
60d8d43b
JU
575/* Accessors for policy based routing rule information */
576int dplane_ctx_rule_get_sock(const struct zebra_dplane_ctx *ctx);
577int dplane_ctx_rule_get_unique(const struct zebra_dplane_ctx *ctx);
578int dplane_ctx_rule_get_seq(const struct zebra_dplane_ctx *ctx);
58a1d249 579const char *dplane_ctx_rule_get_ifname(const struct zebra_dplane_ctx *ctx);
60d8d43b
JU
580uint32_t dplane_ctx_rule_get_priority(const struct zebra_dplane_ctx *ctx);
581uint32_t dplane_ctx_rule_get_old_priority(const struct zebra_dplane_ctx *ctx);
582uint32_t dplane_ctx_rule_get_table(const struct zebra_dplane_ctx *ctx);
583uint32_t dplane_ctx_rule_get_old_table(const struct zebra_dplane_ctx *ctx);
584uint32_t dplane_ctx_rule_get_filter_bm(const struct zebra_dplane_ctx *ctx);
585uint32_t dplane_ctx_rule_get_old_filter_bm(const struct zebra_dplane_ctx *ctx);
586uint32_t dplane_ctx_rule_get_fwmark(const struct zebra_dplane_ctx *ctx);
587uint32_t dplane_ctx_rule_get_old_fwmark(const struct zebra_dplane_ctx *ctx);
01f23aff
WC
588uint8_t dplane_ctx_rule_get_dsfield(const struct zebra_dplane_ctx *ctx);
589uint8_t dplane_ctx_rule_get_old_dsfield(const struct zebra_dplane_ctx *ctx);
8ccbc778
DS
590uint8_t dplane_ctx_rule_get_ipproto(const struct zebra_dplane_ctx *ctx);
591uint8_t dplane_ctx_rule_get_old_ipproto(const struct zebra_dplane_ctx *ctx);
9898473f
AK
592uint16_t dplane_ctx_rule_get_src_port(const struct zebra_dplane_ctx *ctx);
593uint16_t dplane_ctx_rule_get_old_src_port(const struct zebra_dplane_ctx *ctx);
594uint16_t dplane_ctx_rule_get_dst_port(const struct zebra_dplane_ctx *ctx);
595uint16_t dplane_ctx_rule_get_old_dst_port(const struct zebra_dplane_ctx *ctx);
60d8d43b
JU
596const struct prefix *
597dplane_ctx_rule_get_src_ip(const struct zebra_dplane_ctx *ctx);
598const struct prefix *
599dplane_ctx_rule_get_old_src_ip(const struct zebra_dplane_ctx *ctx);
600const struct prefix *
601dplane_ctx_rule_get_dst_ip(const struct zebra_dplane_ctx *ctx);
602const struct prefix *
603dplane_ctx_rule_get_old_dst_ip(const struct zebra_dplane_ctx *ctx);
9898473f
AK
604const struct ethaddr *
605dplane_ctx_rule_get_smac(const struct zebra_dplane_ctx *ctx);
606const struct ethaddr *
607dplane_ctx_rule_get_dmac(const struct zebra_dplane_ctx *ctx);
608int dplane_ctx_rule_get_out_ifindex(const struct zebra_dplane_ctx *ctx);
609intptr_t dplane_ctx_rule_get_dp_flow_ptr(const struct zebra_dplane_ctx *ctx);
610intptr_t
611dplane_ctx_rule_get_old_dp_flow_ptr(const struct zebra_dplane_ctx *ctx);
612void dplane_ctx_rule_set_dp_flow_ptr(struct zebra_dplane_ctx *ctx,
613 intptr_t dp_flow_ptr);
5162e000
PG
614/* Accessors for policy based routing iptable information */
615struct zebra_pbr_iptable;
8d78e148
DS
616void dplane_ctx_get_pbr_iptable(const struct zebra_dplane_ctx *ctx,
617 struct zebra_pbr_iptable *table);
ef524230 618struct zebra_pbr_ipset;
8249f96a
DS
619void dplane_ctx_get_pbr_ipset(const struct zebra_dplane_ctx *ctx,
620 struct zebra_pbr_ipset *ipset);
ef524230 621struct zebra_pbr_ipset_entry;
f284c132
DS
622void dplane_ctx_get_pbr_ipset_entry(const struct zebra_dplane_ctx *ctx,
623 struct zebra_pbr_ipset_entry *entry);
c60522f7
AK
624/* Accessors for bridge port information */
625uint32_t dplane_ctx_get_br_port_flags(const struct zebra_dplane_ctx *ctx);
626uint32_t
627dplane_ctx_get_br_port_sph_filter_cnt(const struct zebra_dplane_ctx *ctx);
628const struct in_addr *
629dplane_ctx_get_br_port_sph_filters(const struct zebra_dplane_ctx *ctx);
630uint32_t
631dplane_ctx_get_br_port_backup_nhg_id(const struct zebra_dplane_ctx *ctx);
632
e18747a9
PG
633/* Accessors for neighbor table information */
634uint8_t dplane_ctx_neightable_get_family(const struct zebra_dplane_ctx *ctx);
635uint32_t
636dplane_ctx_neightable_get_app_probes(const struct zebra_dplane_ctx *ctx);
637uint32_t
638dplane_ctx_neightable_get_mcast_probes(const struct zebra_dplane_ctx *ctx);
639uint32_t
640dplane_ctx_neightable_get_ucast_probes(const struct zebra_dplane_ctx *ctx);
641
62b4b7e4
PG
642/* Accessor for GRE set */
643uint32_t
644dplane_ctx_gre_get_link_ifindex(const struct zebra_dplane_ctx *ctx);
db51f0cd
PG
645unsigned int
646dplane_ctx_gre_get_mtu(const struct zebra_dplane_ctx *ctx);
e3d3fa06
PG
647const struct zebra_l2info_gre *
648dplane_ctx_gre_get_info(const struct zebra_dplane_ctx *ctx);
62b4b7e4 649
728f2017 650/* Interface netconf info */
728f2017
MS
651enum dplane_netconf_status_e
652dplane_ctx_get_netconf_mpls(const struct zebra_dplane_ctx *ctx);
653enum dplane_netconf_status_e
654dplane_ctx_get_netconf_mcast(const struct zebra_dplane_ctx *ctx);
3689905d
DS
655enum dplane_netconf_status_e
656dplane_ctx_get_netconf_linkdown(const struct zebra_dplane_ctx *ctx);
657
728f2017
MS
658void dplane_ctx_set_netconf_mpls(struct zebra_dplane_ctx *ctx,
659 enum dplane_netconf_status_e val);
660void dplane_ctx_set_netconf_mcast(struct zebra_dplane_ctx *ctx,
661 enum dplane_netconf_status_e val);
3689905d
DS
662void dplane_ctx_set_netconf_linkdown(struct zebra_dplane_ctx *ctx,
663 enum dplane_netconf_status_e val);
728f2017 664
d4000d7b 665/* Namespace fd info - esp. for netlink communication */
25779064
MS
666const struct zebra_dplane_info *dplane_ctx_get_ns(
667 const struct zebra_dplane_ctx *ctx);
d4000d7b 668int dplane_ctx_get_ns_sock(const struct zebra_dplane_ctx *ctx);
7cdb1a84 669
4dfd7a02
MS
670/* Indicates zebra shutdown/exit is in progress. Some operations may be
671 * simplified or skipped during shutdown processing.
672 */
673bool dplane_is_in_shutdown(void);
674
7cdb1a84
MS
675/*
676 * Enqueue route change operations for the dataplane.
677 */
655d681a
MS
678enum zebra_dplane_result dplane_route_add(struct route_node *rn,
679 struct route_entry *re);
7cdb1a84 680
655d681a
MS
681enum zebra_dplane_result dplane_route_update(struct route_node *rn,
682 struct route_entry *re,
683 struct route_entry *old_re);
7cdb1a84 684
655d681a
MS
685enum zebra_dplane_result dplane_route_delete(struct route_node *rn,
686 struct route_entry *re);
7cdb1a84 687
cf363e1b
MS
688/* Notify the dplane when system/connected routes change */
689enum zebra_dplane_result dplane_sys_route_add(struct route_node *rn,
690 struct route_entry *re);
691enum zebra_dplane_result dplane_sys_route_del(struct route_node *rn,
692 struct route_entry *re);
693
188a00e0
MS
694/* Update from an async notification, to bring other fibs up-to-date */
695enum zebra_dplane_result dplane_route_notif_update(
696 struct route_node *rn,
697 struct route_entry *re,
698 enum dplane_op_e op,
699 struct zebra_dplane_ctx *ctx);
700
c60522f7
AK
701/*
702 * Enqueue bridge port changes for the dataplane.
703 */
704enum zebra_dplane_result dplane_br_port_update(
705 const struct interface *ifp, bool non_df, uint32_t sph_filter_cnt,
706 const struct in_addr *sph_filters, uint32_t backup_nhg_id);
f820d025
SW
707
708/* Forward ref of nhg_hash_entry */
709struct nhg_hash_entry;
710/*
711 * Enqueue a nexthop change operation for the dataplane.
712 */
713enum zebra_dplane_result dplane_nexthop_add(struct nhg_hash_entry *nhe);
714enum zebra_dplane_result dplane_nexthop_update(struct nhg_hash_entry *nhe);
715enum zebra_dplane_result dplane_nexthop_delete(struct nhg_hash_entry *nhe);
716
16c628de
MS
717/*
718 * Enqueue LSP change operations for the dataplane.
719 */
8f74a383
DS
720enum zebra_dplane_result dplane_lsp_add(struct zebra_lsp *lsp);
721enum zebra_dplane_result dplane_lsp_update(struct zebra_lsp *lsp);
722enum zebra_dplane_result dplane_lsp_delete(struct zebra_lsp *lsp);
16c628de 723
188a00e0 724/* Update or un-install resulting from an async notification */
8f74a383 725enum zebra_dplane_result dplane_lsp_notif_update(struct zebra_lsp *lsp,
188a00e0
MS
726 enum dplane_op_e op,
727 struct zebra_dplane_ctx *ctx);
728
97d8d05a
MS
729/*
730 * Enqueue pseudowire operations for the dataplane.
731 */
732enum zebra_dplane_result dplane_pw_install(struct zebra_pw *pw);
733enum zebra_dplane_result dplane_pw_uninstall(struct zebra_pw *pw);
734
39ffa8e8
DS
735enum zebra_dplane_result
736dplane_intf_mpls_modify_state(const struct interface *ifp, const bool set);
a4a4802a
MS
737/*
738 * Enqueue interface address changes for the dataplane.
739 */
740enum zebra_dplane_result dplane_intf_addr_set(const struct interface *ifp,
741 const struct connected *ifc);
742enum zebra_dplane_result dplane_intf_addr_unset(const struct interface *ifp,
743 const struct connected *ifc);
744
5d414138
SW
745/*
746 * Enqueue interface link changes for the dataplane.
747 */
748enum zebra_dplane_result dplane_intf_add(const struct interface *ifp);
749enum zebra_dplane_result dplane_intf_update(const struct interface *ifp);
750enum zebra_dplane_result dplane_intf_delete(const struct interface *ifp);
751
449a30ed 752/*
c317d3f2 753 * Enqueue tc link changes for the dataplane.
449a30ed 754 */
c317d3f2
SY
755
756struct zebra_tc_qdisc;
757struct zebra_tc_class;
758struct zebra_tc_filter;
759enum zebra_dplane_result dplane_tc_qdisc_install(struct zebra_tc_qdisc *qdisc);
760enum zebra_dplane_result
761dplane_tc_qdisc_uninstall(struct zebra_tc_qdisc *qdisc);
762enum zebra_dplane_result dplane_tc_class_add(struct zebra_tc_class *class);
763enum zebra_dplane_result dplane_tc_class_delete(struct zebra_tc_class *class);
764enum zebra_dplane_result dplane_tc_class_update(struct zebra_tc_class *class);
765enum zebra_dplane_result dplane_tc_filter_add(struct zebra_tc_filter *filter);
766enum zebra_dplane_result
767dplane_tc_filter_delete(struct zebra_tc_filter *filter);
768enum zebra_dplane_result
769dplane_tc_filter_update(struct zebra_tc_filter *filter);
449a30ed 770
0a27a2fe
PG
771/*
772 * Link layer operations for the dataplane.
773 */
774enum zebra_dplane_result dplane_neigh_ip_update(enum dplane_op_e op,
775 const struct interface *ifp,
776 struct ipaddr *link_ip,
777 struct ipaddr *ip,
d603c077
PG
778 uint32_t ndm_state,
779 int protocol);
0a27a2fe 780
7597ac7b
MS
781/*
782 * Enqueue evpn mac operations for the dataplane.
783 */
b95ce8fa
SR
784enum zebra_dplane_result
785dplane_rem_mac_add(const struct interface *ifp,
786 const struct interface *bridge_ifp, vlanid_t vid,
787 const struct ethaddr *mac, vni_t vni, struct in_addr vtep_ip,
788 bool sticky, uint32_t nhg_id, bool was_static);
7597ac7b 789
f188e68e
AK
790enum zebra_dplane_result dplane_local_mac_add(const struct interface *ifp,
791 const struct interface *bridge_ifp,
792 vlanid_t vid,
793 const struct ethaddr *mac,
794 bool sticky,
795 uint32_t set_static,
796 uint32_t set_inactive);
797
00a7710c
AK
798enum zebra_dplane_result
799dplane_local_mac_del(const struct interface *ifp,
800 const struct interface *bridge_ifp, vlanid_t vid,
801 const struct ethaddr *mac);
802
f188e68e 803enum zebra_dplane_result dplane_rem_mac_del(const struct interface *ifp,
b95ce8fa
SR
804 const struct interface *bridge_ifp,
805 vlanid_t vid,
806 const struct ethaddr *mac,
807 vni_t vni, struct in_addr vtep_ip);
a4a4802a 808
f73a8467 809/* Helper api to init an empty or new context for a MAC update */
b95ce8fa
SR
810void dplane_mac_init(struct zebra_dplane_ctx *ctx, const struct interface *ifp,
811 const struct interface *br_ifp, vlanid_t vid,
812 const struct ethaddr *mac, vni_t vni,
813 struct in_addr vtep_ip, bool sticky, uint32_t nhg_id,
814 uint32_t update_flags);
f73a8467 815
f2412b2d
MS
816/*
817 * Enqueue evpn neighbor updates for the dataplane.
818 */
f188e68e
AK
819enum zebra_dplane_result dplane_rem_neigh_add(const struct interface *ifp,
820 const struct ipaddr *ip,
821 const struct ethaddr *mac,
822 uint32_t flags, bool was_static);
823enum zebra_dplane_result dplane_local_neigh_add(const struct interface *ifp,
f2412b2d
MS
824 const struct ipaddr *ip,
825 const struct ethaddr *mac,
f188e68e
AK
826 bool set_router, bool set_static,
827 bool set_inactive);
f188e68e 828enum zebra_dplane_result dplane_rem_neigh_delete(const struct interface *ifp,
931fa60c 829 const struct ipaddr *ip);
f2412b2d 830
0bbd4ff4
MS
831/*
832 * Enqueue evpn VTEP updates for the dataplane.
833 */
834enum zebra_dplane_result dplane_vtep_add(const struct interface *ifp,
835 const struct in_addr *ip,
836 vni_t vni);
837enum zebra_dplane_result dplane_vtep_delete(const struct interface *ifp,
838 const struct in_addr *ip,
839 vni_t vni);
840
d68e74b4
JU
841/*
842 * Enqueue a neighbour discovery request for the dataplane.
843 */
844enum zebra_dplane_result dplane_neigh_discover(const struct interface *ifp,
845 const struct ipaddr *ip);
846
e18747a9
PG
847/*
848 * Enqueue a neighbor table parameter set
849 */
850enum zebra_dplane_result dplane_neigh_table_update(const struct interface *ifp,
851 const uint8_t family,
852 const uint32_t app_probes,
853 const uint32_t ucast_probes,
854 const uint32_t mcast_probes);
855
62b4b7e4
PG
856/*
857 * Enqueue a GRE set
858 */
859enum zebra_dplane_result
db51f0cd 860dplane_gre_set(struct interface *ifp, struct interface *ifp_link,
e3d3fa06 861 unsigned int mtu, const struct zebra_l2info_gre *gre_info);
62b4b7e4 862
f62e5480
JU
863/* Forward ref of zebra_pbr_rule */
864struct zebra_pbr_rule;
865
866/*
867 * Enqueue policy based routing rule for the dataplane.
868 * It is possible that the user-defined sequence number and the one in the
869 * forwarding plane may not coincide, hence the API requires a separate
870 * rule priority - maps to preference/FRA_PRIORITY on Linux.
871 */
872enum zebra_dplane_result dplane_pbr_rule_add(struct zebra_pbr_rule *rule);
873enum zebra_dplane_result dplane_pbr_rule_delete(struct zebra_pbr_rule *rule);
874enum zebra_dplane_result
875dplane_pbr_rule_update(struct zebra_pbr_rule *old_rule,
876 struct zebra_pbr_rule *new_rule);
5162e000
PG
877/* iptable */
878enum zebra_dplane_result
879dplane_pbr_iptable_add(struct zebra_pbr_iptable *iptable);
880enum zebra_dplane_result
881dplane_pbr_iptable_delete(struct zebra_pbr_iptable *iptable);
f62e5480 882
ef524230
PG
883/* ipset */
884struct zebra_pbr_ipset;
885enum zebra_dplane_result dplane_pbr_ipset_add(struct zebra_pbr_ipset *ipset);
886enum zebra_dplane_result dplane_pbr_ipset_delete(struct zebra_pbr_ipset *ipset);
887
888/* ipset entry */
889struct zebra_pbr_ipset_entry;
890enum zebra_dplane_result
891dplane_pbr_ipset_entry_add(struct zebra_pbr_ipset_entry *ipset);
892enum zebra_dplane_result
893dplane_pbr_ipset_entry_delete(struct zebra_pbr_ipset_entry *ipset);
894
018e77bc
RZ
895/* Encode route information into data plane context. */
896int dplane_ctx_route_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
897 struct route_node *rn, struct route_entry *re);
0bbd4ff4 898
f935122e
DS
899int dplane_ctx_route_init_basic(struct zebra_dplane_ctx *ctx,
900 enum dplane_op_e op, struct route_entry *re,
901 const struct prefix *p,
a0e11736 902 const struct prefix_ipv6 *src_p, afi_t afi,
f935122e
DS
903 safi_t safi);
904
981ca597 905/* Encode next hop information into data plane context. */
a2072e71 906int dplane_ctx_nexthop_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
981ca597
RZ
907 struct nhg_hash_entry *nhe);
908
5d414138
SW
909/* Encode interface information into data plane context. */
910int dplane_ctx_intf_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op,
911 const struct interface *ifp);
912
449a30ed
SY
913/* Encode traffic control information into data plane context. */
914int dplane_ctx_tc_init(struct zebra_dplane_ctx *ctx, enum dplane_op_e op);
915
91f16812
MS
916/* Retrieve the limit on the number of pending, unprocessed updates. */
917uint32_t dplane_get_in_queue_limit(void);
918
919/* Configure limit on the number of pending, queued updates. If 'unset', reset
920 * to default value.
921 */
922void dplane_set_in_queue_limit(uint32_t limit, bool set);
923
924/* Retrieve the current queue depth of incoming, unprocessed updates */
925uint32_t dplane_get_in_queue_len(void);
926
1d11b21f
MS
927/*
928 * Vty/cli apis
929 */
930int dplane_show_helper(struct vty *vty, bool detailed);
931int dplane_show_provs_helper(struct vty *vty, bool detailed);
f26730e1 932int dplane_config_write_helper(struct vty *vty);
1d11b21f 933
1d11b21f 934/*
c831033f 935 * Dataplane providers: modules that process or consume dataplane events.
1d11b21f
MS
936 */
937
c831033f
MS
938struct zebra_dplane_provider;
939
fe2c53d4 940/* Support string name for a dataplane provider */
7cdb1a84
MS
941#define DPLANE_PROVIDER_NAMELEN 64
942
943/* Priority or ordering values for providers. The idea is that there may be
944 * some pre-processing, followed by an external or remote dataplane,
945 * followed by the kernel, followed by some post-processing step (such as
946 * the fpm output stream.)
947 */
c831033f 948enum dplane_provider_prio {
7cdb1a84
MS
949 DPLANE_PRIO_NONE = 0,
950 DPLANE_PRIO_PREPROCESS,
951 DPLANE_PRIO_PRE_KERNEL,
952 DPLANE_PRIO_KERNEL,
953 DPLANE_PRIO_POSTPROCESS,
b8e0423d 954 DPLANE_PRIO_LAST
5709131c 955};
7cdb1a84 956
c831033f
MS
957/* Flags values used during provider registration. */
958#define DPLANE_PROV_FLAGS_DEFAULT 0x0
959
960/* Provider will be spawning its own worker thread */
961#define DPLANE_PROV_FLAG_THREADED 0x1
7cdb1a84 962
c831033f 963/* Provider registration: ordering or priority value, callbacks, and optional
1ff8a248
MS
964 * opaque data value. If 'prov_p', return the newly-allocated provider object
965 * on success.
c831033f 966 */
4c206c8f
MS
967
968/* Providers offer an entry-point for incoming work, called in the context of
969 * the dataplane pthread. The dataplane pthread enqueues any new work to the
970 * provider's 'inbound' queue, then calls the callback. The dataplane
971 * then checks the provider's outbound queue for completed work.
972 */
973
1dd4ea8a
MS
974/*
975 * Providers can offer a 'start' callback; if present, the dataplane will
976 * call it when it is starting - when its pthread and event-scheduling
977 * thread_master are available.
978 */
979
980/* Providers can offer an entry-point for shutdown and cleanup. This is called
4c206c8f
MS
981 * with 'early' during shutdown, to indicate that the dataplane subsystem
982 * is allowing work to move through the providers and finish.
983 * When called without 'early', the provider should release
984 * all resources (if it has any allocated).
985 */
7cdb1a84 986int dplane_provider_register(const char *name,
c831033f
MS
987 enum dplane_provider_prio prio,
988 int flags,
1dd4ea8a 989 int (*start_fp)(struct zebra_dplane_provider *),
4c206c8f
MS
990 int (*fp)(struct zebra_dplane_provider *),
991 int (*fini_fp)(struct zebra_dplane_provider *,
992 bool early),
1ff8a248
MS
993 void *data,
994 struct zebra_dplane_provider **prov_p);
7cdb1a84 995
c831033f
MS
996/* Accessors for provider attributes */
997const char *dplane_provider_get_name(const struct zebra_dplane_provider *prov);
998uint32_t dplane_provider_get_id(const struct zebra_dplane_provider *prov);
999void *dplane_provider_get_data(const struct zebra_dplane_provider *prov);
1000bool dplane_provider_is_threaded(const struct zebra_dplane_provider *prov);
1001
ad6aad4d
MS
1002/* Lock/unlock a provider's mutex - iff the provider was registered with
1003 * the THREADED flag.
1004 */
1005void dplane_provider_lock(struct zebra_dplane_provider *prov);
1006void dplane_provider_unlock(struct zebra_dplane_provider *prov);
1007
1008/* Obtain thread_master for dataplane thread */
cd9d0537 1009struct event_loop *dplane_get_thread_master(void);
ad6aad4d
MS
1010
1011/* Providers should (generally) limit number of updates per work cycle */
c831033f
MS
1012int dplane_provider_get_work_limit(const struct zebra_dplane_provider *prov);
1013
1014/* Provider api to signal that work/events are available
1015 * for the dataplane pthread.
7cdb1a84 1016 */
c831033f
MS
1017int dplane_provider_work_ready(void);
1018
1019/* Dequeue, maintain associated counter and locking */
1020struct zebra_dplane_ctx *dplane_provider_dequeue_in_ctx(
1021 struct zebra_dplane_provider *prov);
1022
1023/* Dequeue work to a list, maintain counter and locking, return count */
1024int dplane_provider_dequeue_in_list(struct zebra_dplane_provider *prov,
ac96497c 1025 struct dplane_ctx_list_head *listp);
c831033f 1026
53706b4e
DE
1027/* Current completed work queue length */
1028uint32_t dplane_provider_out_ctx_queue_len(struct zebra_dplane_provider *prov);
1029
593e4eb1 1030/* Enqueue completed work, maintain associated counter and locking */
c831033f
MS
1031void dplane_provider_enqueue_out_ctx(struct zebra_dplane_provider *prov,
1032 struct zebra_dplane_ctx *ctx);
7cdb1a84 1033
593e4eb1
MS
1034/* Enqueue a context directly to zebra main. */
1035void dplane_provider_enqueue_to_zebra(struct zebra_dplane_ctx *ctx);
1036
5917df09
MS
1037/* Enable collection of extra info about interfaces in route updates;
1038 * this allows a provider/plugin to see some extra info in route update
1039 * context objects.
1040 */
1041void dplane_enable_intf_extra_info(void);
1042
7cdb1a84 1043/*
1d11b21f 1044 * Initialize the dataplane modules at zebra startup. This is currently called
4c206c8f
MS
1045 * by the rib module. Zebra registers a results callback with the dataplane.
1046 * The callback is called in the dataplane pthread context,
1047 * so the expectation is that the contexts are queued for the zebra
1048 * main pthread.
7cdb1a84 1049 */
ac96497c 1050void zebra_dplane_init(int (*)(struct dplane_ctx_list_head *));
7cdb1a84 1051
e5a60d82
MS
1052/*
1053 * Start the dataplane pthread. This step needs to be run later than the
1054 * 'init' step, in case zebra has fork-ed.
1055 */
1056void zebra_dplane_start(void);
1057
4dfd7a02
MS
1058/* Finalize/cleanup apis, one called early as shutdown is starting,
1059 * one called late at the end of zebra shutdown, and then one called
c831033f
MS
1060 * from the zebra main pthread to stop the dplane pthread and
1061 * free all resources.
4dfd7a02 1062 *
1d11b21f
MS
1063 * Zebra expects to try to clean up all vrfs and all routes during
1064 * shutdown, so the dplane must be available until very late.
1065 */
4dfd7a02 1066void zebra_dplane_pre_finish(void);
1d11b21f 1067void zebra_dplane_finish(void);
4dfd7a02 1068void zebra_dplane_shutdown(void);
1d11b21f 1069
45f0a10b
DS
1070/*
1071 * decision point for sending a routing update through the old
1072 * straight to zebra master pthread or through the dplane to
1073 * the master pthread for handling
1074 */
1075void dplane_rib_add_multipath(afi_t afi, safi_t safi, struct prefix *p,
1076 struct prefix_ipv6 *src_p, struct route_entry *re,
1077 struct nexthop_group *ng, int startup,
1078 struct zebra_dplane_ctx *ctx);
1079
51e94aa7
EDP
1080#ifdef __cplusplus
1081}
1082#endif
1083
ea1c14f6 1084#endif /* _ZEBRA_DPLANE_H */