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