]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_dplane.h
Merge pull request #3772 from pguibert6WIND/vrf_backend_unknown
[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"
214fc2bd 27#include "lib/queue.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"
ea1c14f6 32
85a75f1e
MS
33/* Key netlink info from zebra ns */
34struct zebra_dplane_info {
35 ns_id_t ns_id;
36
37#if defined(HAVE_NETLINK)
7cdb1a84 38 struct nlsock nls;
85a75f1e
MS
39 bool is_cmd;
40#endif
41};
42
43/* Utility to fill in zns info from main zns struct */
44static inline void
45zebra_dplane_info_from_zns(struct zebra_dplane_info *zns_info,
46 const struct zebra_ns *zns, bool is_cmd)
47{
48 zns_info->ns_id = zns->ns_id;
49
50#if defined(HAVE_NETLINK)
51 zns_info->is_cmd = is_cmd;
52 if (is_cmd) {
7cdb1a84 53 zns_info->nls = zns->netlink_cmd;
85a75f1e 54 } else {
7cdb1a84 55 zns_info->nls = zns->netlink;
85a75f1e
MS
56 }
57#endif /* NETLINK */
58}
59
ea1c14f6
MS
60/*
61 * Result codes used when returning status back to the main zebra context.
62 */
63
64/*
65 * Philosophy Note:
66 *
67 * Flags being SET/UNSET do not belong in the South Bound
68 * Interface. This Setting belongs at the calling level
69 * because we can and will have multiple different interfaces
70 * and we will have potentially multiple different
71 * modules/filters to call. As such Setting/Unsetting
72 * success failure should be handled by the caller.
73 */
74enum zebra_dplane_status {
75 ZEBRA_DPLANE_STATUS_NONE = 0,
76 ZEBRA_DPLANE_INSTALL_SUCCESS,
77 ZEBRA_DPLANE_INSTALL_FAILURE,
78 ZEBRA_DPLANE_DELETE_SUCCESS,
79 ZEBRA_DPLANE_DELETE_FAILURE,
80
81};
82
83enum zebra_dplane_result {
84 ZEBRA_DPLANE_REQUEST_QUEUED,
85 ZEBRA_DPLANE_REQUEST_SUCCESS,
86 ZEBRA_DPLANE_REQUEST_FAILURE,
87};
88
7cdb1a84
MS
89/*
90 * API between the zebra dataplane system and the main zebra processing
91 * context.
92 */
93
94/*
95 * Enqueue a route install or update for the dataplane.
96 */
5709131c 97enum dplane_op_e {
7cdb1a84
MS
98 DPLANE_OP_NONE = 0,
99
100 /* Route update */
101 DPLANE_OP_ROUTE_INSTALL,
102 DPLANE_OP_ROUTE_UPDATE,
103 DPLANE_OP_ROUTE_DELETE,
104
16c628de
MS
105 /* LSP update */
106 DPLANE_OP_LSP_INSTALL,
107 DPLANE_OP_LSP_UPDATE,
97d8d05a
MS
108 DPLANE_OP_LSP_DELETE,
109
110 /* Pseudowire update */
111 DPLANE_OP_PW_INSTALL,
112 DPLANE_OP_PW_UNINSTALL,
5709131c 113};
7cdb1a84 114
7cdb1a84 115/*
25779064 116 * The dataplane context struct is used to exchange info between the main zebra
7cdb1a84
MS
117 * context and the dataplane module(s). If these are two independent pthreads,
118 * they cannot share existing global data structures safely.
119 */
7cdb1a84
MS
120
121/* Define a tailq list type for context blocks. The list is exposed/public,
122 * but the internal linkage in the context struct is private, so there
123 * are accessor apis that support enqueue and dequeue.
124 */
25779064 125TAILQ_HEAD(dplane_ctx_q, zebra_dplane_ctx);
7cdb1a84 126
7cdb1a84
MS
127/* Return a dataplane results context block after use; the caller's pointer will
128 * be cleared.
129 */
25779064 130void dplane_ctx_fini(struct zebra_dplane_ctx **pctx);
7cdb1a84 131
14b0bc8e 132/* Enqueue a context block to caller's tailq. This exists so that the
7cdb1a84
MS
133 * context struct can remain opaque.
134 */
25779064
MS
135void dplane_ctx_enqueue_tail(struct dplane_ctx_q *q,
136 const struct zebra_dplane_ctx *ctx);
7cdb1a84 137
c831033f
MS
138/* Append a list of context blocks to another list - again, just keeping
139 * the context struct opaque.
140 */
141void dplane_ctx_list_append(struct dplane_ctx_q *to_list,
142 struct dplane_ctx_q *from_list);
143
7cdb1a84 144/* Dequeue a context block from the head of caller's tailq */
68b375e0 145struct zebra_dplane_ctx *dplane_ctx_dequeue(struct dplane_ctx_q *q);
7cdb1a84
MS
146
147/*
148 * Accessors for information from the context object
149 */
25779064
MS
150enum zebra_dplane_result dplane_ctx_get_status(
151 const struct zebra_dplane_ctx *ctx);
c831033f
MS
152void dplane_ctx_set_status(struct zebra_dplane_ctx *ctx,
153 enum zebra_dplane_result status);
f183e380 154const char *dplane_res2str(enum zebra_dplane_result res);
7cdb1a84 155
25779064 156enum dplane_op_e dplane_ctx_get_op(const struct zebra_dplane_ctx *ctx);
5709131c 157const char *dplane_op2str(enum dplane_op_e op);
7cdb1a84 158
25779064 159const struct prefix *dplane_ctx_get_dest(const struct zebra_dplane_ctx *ctx);
7cdb1a84 160
c831033f
MS
161/* Retrieve last/current provider id */
162uint32_t dplane_ctx_get_provider(const struct zebra_dplane_ctx *ctx);
163
164/* Providers running before the kernel can control whether a kernel
165 * update should be done.
166 */
167void dplane_ctx_set_skip_kernel(struct zebra_dplane_ctx *ctx);
168bool dplane_ctx_is_skip_kernel(const struct zebra_dplane_ctx *ctx);
169
5709131c
MS
170/* Source prefix is a little special - use convention to return NULL
171 * to mean "no src prefix"
7cdb1a84 172 */
25779064
MS
173const struct prefix *dplane_ctx_get_src(const struct zebra_dplane_ctx *ctx);
174
175bool dplane_ctx_is_update(const struct zebra_dplane_ctx *ctx);
176uint32_t dplane_ctx_get_seq(const struct zebra_dplane_ctx *ctx);
177uint32_t dplane_ctx_get_old_seq(const struct zebra_dplane_ctx *ctx);
178vrf_id_t dplane_ctx_get_vrf(const struct zebra_dplane_ctx *ctx);
0f461727
MS
179
180/* Accessors for route update information */
25779064
MS
181int dplane_ctx_get_type(const struct zebra_dplane_ctx *ctx);
182int dplane_ctx_get_old_type(const struct zebra_dplane_ctx *ctx);
183afi_t dplane_ctx_get_afi(const struct zebra_dplane_ctx *ctx);
184safi_t dplane_ctx_get_safi(const struct zebra_dplane_ctx *ctx);
185uint32_t dplane_ctx_get_table(const struct zebra_dplane_ctx *ctx);
186route_tag_t dplane_ctx_get_tag(const struct zebra_dplane_ctx *ctx);
187route_tag_t dplane_ctx_get_old_tag(const struct zebra_dplane_ctx *ctx);
188uint16_t dplane_ctx_get_instance(const struct zebra_dplane_ctx *ctx);
189uint16_t dplane_ctx_get_old_instance(const struct zebra_dplane_ctx *ctx);
190uint32_t dplane_ctx_get_metric(const struct zebra_dplane_ctx *ctx);
191uint32_t dplane_ctx_get_old_metric(const struct zebra_dplane_ctx *ctx);
192uint32_t dplane_ctx_get_mtu(const struct zebra_dplane_ctx *ctx);
193uint32_t dplane_ctx_get_nh_mtu(const struct zebra_dplane_ctx *ctx);
194uint8_t dplane_ctx_get_distance(const struct zebra_dplane_ctx *ctx);
195uint8_t dplane_ctx_get_old_distance(const struct zebra_dplane_ctx *ctx);
196
197const struct nexthop_group *dplane_ctx_get_ng(
198 const struct zebra_dplane_ctx *ctx);
199const struct nexthop_group *dplane_ctx_get_old_ng(
200 const struct zebra_dplane_ctx *ctx);
201
0f461727
MS
202/* Accessors for LSP information */
203mpls_label_t dplane_ctx_get_in_label(const struct zebra_dplane_ctx *ctx);
204uint8_t dplane_ctx_get_addr_family(const struct zebra_dplane_ctx *ctx);
205uint32_t dplane_ctx_get_lsp_flags(const struct zebra_dplane_ctx *ctx);
81793ac1
MS
206const zebra_nhlfe_t *dplane_ctx_get_nhlfe(const struct zebra_dplane_ctx *ctx);
207const zebra_nhlfe_t *dplane_ctx_get_best_nhlfe(
208 const struct zebra_dplane_ctx *ctx);
0f461727
MS
209uint32_t dplane_ctx_get_lsp_num_ecmp(const struct zebra_dplane_ctx *ctx);
210
d613b8e1
MS
211/* Accessors for pseudowire information */
212const char *dplane_ctx_get_pw_ifname(const struct zebra_dplane_ctx *ctx);
213mpls_label_t dplane_ctx_get_pw_local_label(const struct zebra_dplane_ctx *ctx);
214mpls_label_t dplane_ctx_get_pw_remote_label(const struct zebra_dplane_ctx *ctx);
215int dplane_ctx_get_pw_type(const struct zebra_dplane_ctx *ctx);
216int dplane_ctx_get_pw_af(const struct zebra_dplane_ctx *ctx);
217uint32_t dplane_ctx_get_pw_flags(const struct zebra_dplane_ctx *ctx);
218int dplane_ctx_get_pw_status(const struct zebra_dplane_ctx *ctx);
16d69787 219const union g_addr *dplane_ctx_get_pw_dest(
d613b8e1
MS
220 const struct zebra_dplane_ctx *ctx);
221const union pw_protocol_fields *dplane_ctx_get_pw_proto(
222 const struct zebra_dplane_ctx *ctx);
09cd307c
MS
223const struct nexthop_group *dplane_ctx_get_pw_nhg(
224 const struct zebra_dplane_ctx *ctx);
d613b8e1 225
0f461727 226/* Namespace info - esp. for netlink communication */
25779064
MS
227const struct zebra_dplane_info *dplane_ctx_get_ns(
228 const struct zebra_dplane_ctx *ctx);
7cdb1a84 229
4dfd7a02
MS
230/* Indicates zebra shutdown/exit is in progress. Some operations may be
231 * simplified or skipped during shutdown processing.
232 */
233bool dplane_is_in_shutdown(void);
234
7cdb1a84
MS
235/*
236 * Enqueue route change operations for the dataplane.
237 */
655d681a
MS
238enum zebra_dplane_result dplane_route_add(struct route_node *rn,
239 struct route_entry *re);
7cdb1a84 240
655d681a
MS
241enum zebra_dplane_result dplane_route_update(struct route_node *rn,
242 struct route_entry *re,
243 struct route_entry *old_re);
7cdb1a84 244
655d681a
MS
245enum zebra_dplane_result dplane_route_delete(struct route_node *rn,
246 struct route_entry *re);
7cdb1a84 247
16c628de
MS
248/*
249 * Enqueue LSP change operations for the dataplane.
250 */
251enum zebra_dplane_result dplane_lsp_add(zebra_lsp_t *lsp);
252enum zebra_dplane_result dplane_lsp_update(zebra_lsp_t *lsp);
253enum zebra_dplane_result dplane_lsp_delete(zebra_lsp_t *lsp);
254
97d8d05a
MS
255/*
256 * Enqueue pseudowire operations for the dataplane.
257 */
258enum zebra_dplane_result dplane_pw_install(struct zebra_pw *pw);
259enum zebra_dplane_result dplane_pw_uninstall(struct zebra_pw *pw);
260
91f16812
MS
261/* Retrieve the limit on the number of pending, unprocessed updates. */
262uint32_t dplane_get_in_queue_limit(void);
263
264/* Configure limit on the number of pending, queued updates. If 'unset', reset
265 * to default value.
266 */
267void dplane_set_in_queue_limit(uint32_t limit, bool set);
268
269/* Retrieve the current queue depth of incoming, unprocessed updates */
270uint32_t dplane_get_in_queue_len(void);
271
1d11b21f
MS
272/*
273 * Vty/cli apis
274 */
275int dplane_show_helper(struct vty *vty, bool detailed);
276int dplane_show_provs_helper(struct vty *vty, bool detailed);
277
278
279/*
c831033f 280 * Dataplane providers: modules that process or consume dataplane events.
1d11b21f
MS
281 */
282
c831033f
MS
283struct zebra_dplane_provider;
284
fe2c53d4 285/* Support string name for a dataplane provider */
7cdb1a84
MS
286#define DPLANE_PROVIDER_NAMELEN 64
287
288/* Priority or ordering values for providers. The idea is that there may be
289 * some pre-processing, followed by an external or remote dataplane,
290 * followed by the kernel, followed by some post-processing step (such as
291 * the fpm output stream.)
292 */
c831033f 293enum dplane_provider_prio {
7cdb1a84
MS
294 DPLANE_PRIO_NONE = 0,
295 DPLANE_PRIO_PREPROCESS,
296 DPLANE_PRIO_PRE_KERNEL,
297 DPLANE_PRIO_KERNEL,
298 DPLANE_PRIO_POSTPROCESS,
b8e0423d 299 DPLANE_PRIO_LAST
5709131c 300};
7cdb1a84 301
c831033f
MS
302/* Flags values used during provider registration. */
303#define DPLANE_PROV_FLAGS_DEFAULT 0x0
304
305/* Provider will be spawning its own worker thread */
306#define DPLANE_PROV_FLAG_THREADED 0x1
7cdb1a84 307
18c37974 308
c831033f 309/* Provider registration: ordering or priority value, callbacks, and optional
1ff8a248
MS
310 * opaque data value. If 'prov_p', return the newly-allocated provider object
311 * on success.
c831033f 312 */
4c206c8f
MS
313
314/* Providers offer an entry-point for incoming work, called in the context of
315 * the dataplane pthread. The dataplane pthread enqueues any new work to the
316 * provider's 'inbound' queue, then calls the callback. The dataplane
317 * then checks the provider's outbound queue for completed work.
318 */
319
320/* Providers offer an entry-point for shutdown and cleanup. This is called
321 * with 'early' during shutdown, to indicate that the dataplane subsystem
322 * is allowing work to move through the providers and finish.
323 * When called without 'early', the provider should release
324 * all resources (if it has any allocated).
325 */
7cdb1a84 326int dplane_provider_register(const char *name,
c831033f
MS
327 enum dplane_provider_prio prio,
328 int flags,
4c206c8f
MS
329 int (*fp)(struct zebra_dplane_provider *),
330 int (*fini_fp)(struct zebra_dplane_provider *,
331 bool early),
1ff8a248
MS
332 void *data,
333 struct zebra_dplane_provider **prov_p);
7cdb1a84 334
c831033f
MS
335/* Accessors for provider attributes */
336const char *dplane_provider_get_name(const struct zebra_dplane_provider *prov);
337uint32_t dplane_provider_get_id(const struct zebra_dplane_provider *prov);
338void *dplane_provider_get_data(const struct zebra_dplane_provider *prov);
339bool dplane_provider_is_threaded(const struct zebra_dplane_provider *prov);
340
ad6aad4d
MS
341/* Lock/unlock a provider's mutex - iff the provider was registered with
342 * the THREADED flag.
343 */
344void dplane_provider_lock(struct zebra_dplane_provider *prov);
345void dplane_provider_unlock(struct zebra_dplane_provider *prov);
346
347/* Obtain thread_master for dataplane thread */
348struct thread_master *dplane_get_thread_master(void);
349
350/* Providers should (generally) limit number of updates per work cycle */
c831033f
MS
351int dplane_provider_get_work_limit(const struct zebra_dplane_provider *prov);
352
353/* Provider api to signal that work/events are available
354 * for the dataplane pthread.
7cdb1a84 355 */
c831033f
MS
356int dplane_provider_work_ready(void);
357
358/* Dequeue, maintain associated counter and locking */
359struct zebra_dplane_ctx *dplane_provider_dequeue_in_ctx(
360 struct zebra_dplane_provider *prov);
361
362/* Dequeue work to a list, maintain counter and locking, return count */
363int dplane_provider_dequeue_in_list(struct zebra_dplane_provider *prov,
364 struct dplane_ctx_q *listp);
365
366/* Enqueue, maintain associated counter and locking */
367void dplane_provider_enqueue_out_ctx(struct zebra_dplane_provider *prov,
368 struct zebra_dplane_ctx *ctx);
7cdb1a84 369
7cdb1a84 370/*
1d11b21f 371 * Initialize the dataplane modules at zebra startup. This is currently called
4c206c8f
MS
372 * by the rib module. Zebra registers a results callback with the dataplane.
373 * The callback is called in the dataplane pthread context,
374 * so the expectation is that the contexts are queued for the zebra
375 * main pthread.
7cdb1a84 376 */
4c206c8f 377void zebra_dplane_init(int (*) (struct dplane_ctx_q *));
7cdb1a84 378
e5a60d82
MS
379/*
380 * Start the dataplane pthread. This step needs to be run later than the
381 * 'init' step, in case zebra has fork-ed.
382 */
383void zebra_dplane_start(void);
384
4dfd7a02
MS
385/* Finalize/cleanup apis, one called early as shutdown is starting,
386 * one called late at the end of zebra shutdown, and then one called
c831033f
MS
387 * from the zebra main pthread to stop the dplane pthread and
388 * free all resources.
4dfd7a02 389 *
1d11b21f
MS
390 * Zebra expects to try to clean up all vrfs and all routes during
391 * shutdown, so the dplane must be available until very late.
392 */
4dfd7a02 393void zebra_dplane_pre_finish(void);
1d11b21f 394void zebra_dplane_finish(void);
4dfd7a02 395void zebra_dplane_shutdown(void);
1d11b21f 396
ea1c14f6 397#endif /* _ZEBRA_DPLANE_H */