blob: 35c43936a1f83d308639bfd95220a1818a0c1b4d [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef __FIB_ENTRY_SRC_H__
17#define __FIB_ENTRY_SRC_H__
18
19#include "fib_entry.h"
20#include "fib_path_list.h"
21#include "fib_internal.h"
22
23/**
24 * Debug macro
25 */
26#ifdef FIB_DEBUG
27#define FIB_ENTRY_DBG(_e, _fmt, _args...) \
28{ \
29 u8*__tmp = NULL; \
30 __tmp = format(__tmp, "e:[%d:%U", \
31 fib_entry_get_index(_e), \
32 format_ip46_address, \
33 &_e->fe_prefix.fp_addr, \
34 IP46_TYPE_ANY); \
35 __tmp = format(__tmp, "/%d]:", \
36 _e->fe_prefix.fp_len); \
37 __tmp = format(__tmp, _fmt, ##_args); \
38 clib_warning("%s", __tmp); \
39 vec_free(__tmp); \
40}
41#else
42#define FIB_ENTRY_DBG(_e, _fmt, _args...)
43#endif
44
45/**
46 * Source initialisation Function
47 */
48typedef void (*fib_entry_src_init_t)(fib_entry_src_t *src);
49
50/**
51 * Source deinitialisation Function
52 */
53typedef void (*fib_entry_src_deinit_t)(fib_entry_src_t *src);
54
55/**
56 * Source activation. Called when the source is the new best source on the entry.
57 * Return non-zero if the entry can now install, 0 otherwise
58 */
59typedef int (*fib_entry_src_activate_t)(fib_entry_src_t *src,
60 const fib_entry_t *fib_entry);
61
62/**
63 * Source Deactivate.
64 * Called when the source is no longer best source on the entry
65 */
66typedef void (*fib_entry_src_deactivate_t)(fib_entry_src_t *src,
67 const fib_entry_t *fib_entry);
68
69/**
70 * Source Add.
71 * Called when the source is added to the entry
72 */
73typedef void (*fib_entry_src_add_t)(fib_entry_src_t *src,
74 const fib_entry_t *entry,
75 fib_entry_flag_t flags,
Neale Rannsda78f952017-05-24 09:15:43 -070076 dpo_proto_t proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010077 const dpo_id_t *dpo);
78
79/**
80 * Source Remove.
81 */
82typedef void (*fib_entry_src_remove_t)(fib_entry_src_t *src);
83
84/**
85 * Result from a cover update/change
86 */
87typedef struct fib_entry_src_cover_res_t_ {
88 u16 install;
89 fib_node_bw_reason_flag_t bw_reason;
90} fib_entry_src_cover_res_t;
91
92/**
93 * Cover changed. the source should re-evaluate its cover.
94 */
95typedef fib_entry_src_cover_res_t (*fib_entry_src_cover_change_t)(
96 fib_entry_src_t *src,
97 const fib_entry_t *fib_entry);
98
99/**
100 * Cover updated. The cover the source has, has updated (i.e. its forwarding)
101 * the source may need to re-evaluate.
102 */
103typedef fib_entry_src_cover_res_t (*fib_entry_src_cover_update_t)(
104 fib_entry_src_t *src,
105 const fib_entry_t *fib_entry);
106
107/**
108 * Forwarding updated. Notification that the forwarding information for the
109 * entry has been updated. This notification is sent to all sources, not just
110 * the active best.
111 */
112typedef void (*fib_entry_src_fwd_update_t)(fib_entry_src_t *src,
113 const fib_entry_t *fib_entry,
114 fib_source_t best_source);
115
116/**
117 * Installed. Notification that the source is now installed as
118 * the entry's forwarding source.
119 */
120typedef void (*fib_entry_src_installed_t)(fib_entry_src_t *src,
121 const fib_entry_t *fib_entry);
122
123/**
124 * format.
125 */
126typedef u8* (*fib_entry_src_format_t)(fib_entry_src_t *src,
127 u8* s);
128
129/**
130 * Source path add
131 * the source is adding a new path
132 */
133typedef void (*fib_entry_src_path_add_t)(fib_entry_src_t *src,
134 const fib_entry_t *fib_entry,
135 fib_path_list_flags_t pl_flags,
136 const fib_route_path_t *path);
137
138/**
139 * Source path remove
140 * the source is remoinvg a path
141 */
142typedef void (*fib_entry_src_path_remove_t)(fib_entry_src_t *src,
143 fib_path_list_flags_t pl_flags,
144 const fib_route_path_t *path);
145
146/**
147 * Source path replace/swap
148 * the source is providing a new set of paths
149 */
150typedef void (*fib_entry_src_path_swap_t)(fib_entry_src_t *src,
151 const fib_entry_t *fib_entry,
152 fib_path_list_flags_t pl_flags,
153 const fib_route_path_t *path);
154
155/**
156 * Set source specific opaque data
157 */
158typedef void (*fib_entry_src_set_data_t)(fib_entry_src_t *src,
159 const fib_entry_t *fib_entry,
160 const void *data);
161
162/**
163 * Get source specific opaque data
164 */
165typedef const void* (*fib_entry_src_get_data_t)(fib_entry_src_t *src,
166 const fib_entry_t *fib_entry);
167
168/**
169 * Virtual function table each FIB entry source will register
170 */
171typedef struct fib_entry_src_vft_t_ {
172 fib_entry_src_init_t fesv_init;
173 fib_entry_src_deinit_t fesv_deinit;
174 fib_entry_src_activate_t fesv_activate;
175 fib_entry_src_deactivate_t fesv_deactivate;
176 fib_entry_src_add_t fesv_add;
177 fib_entry_src_remove_t fesv_remove;
178 fib_entry_src_path_swap_t fesv_path_swap;
179 fib_entry_src_path_add_t fesv_path_add;
180 fib_entry_src_path_remove_t fesv_path_remove;
181 fib_entry_src_cover_change_t fesv_cover_change;
182 fib_entry_src_cover_update_t fesv_cover_update;
183 fib_entry_src_format_t fesv_format;
184 fib_entry_src_installed_t fesv_installed;
185 fib_entry_src_fwd_update_t fesv_fwd_update;
186 fib_entry_src_get_data_t fesv_get_data;
187 fib_entry_src_set_data_t fesv_set_data;
188} fib_entry_src_vft_t;
189
190#define FOR_EACH_SRC_ADDED(_entry, _src, _source, action) \
191{ \
192 vec_foreach(_src, _entry->fe_srcs) \
193 { \
194 if (_src->fes_flags & FIB_ENTRY_SRC_FLAG_ADDED) { \
195 _source = _src->fes_src; \
196 do { \
197 action; \
198 } while(0); \
199 } \
200 } \
201}
202
203extern u8* fib_entry_src_format(fib_entry_t *entry,
204 fib_source_t source,
205 u8* s);
206
207extern void fib_entry_src_register(fib_source_t source,
208 const fib_entry_src_vft_t *vft);
209
210extern void fib_entry_src_action_init(fib_entry_t *entry,
211 fib_source_t source);
212
213extern void fib_entry_src_action_deinit(fib_entry_t *fib_entry,
214 fib_source_t source);
215
216extern fib_entry_src_cover_res_t fib_entry_src_action_cover_change(
217 fib_entry_t *entry,
218 fib_source_t source);
219
220extern fib_entry_src_cover_res_t fib_entry_src_action_cover_update(
221 fib_entry_t *fib_entry,
222 fib_source_t source);
223
224extern void fib_entry_src_action_activate(fib_entry_t *fib_entry,
225 fib_source_t source);
226
227extern void fib_entry_src_action_deactivate(fib_entry_t *fib_entry,
228 fib_source_t source);
229extern void fib_entry_src_action_reactivate(fib_entry_t *fib_entry,
230 fib_source_t source);
231
232extern fib_entry_t* fib_entry_src_action_add(fib_entry_t *fib_entry,
233 fib_source_t source,
234 fib_entry_flag_t flags,
235 const dpo_id_t *dpo);
Neale Ranns948e00f2016-10-20 13:39:34 +0100236extern fib_entry_t* fib_entry_src_action_update(fib_entry_t *fib_entry,
237 fib_source_t source,
238 fib_entry_flag_t flags,
239 const dpo_id_t *dpo);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100240
241extern fib_entry_src_flag_t fib_entry_src_action_remove(fib_entry_t *fib_entry,
242 fib_source_t source);
243
244extern void fib_entry_src_action_install(fib_entry_t *fib_entry,
245 fib_source_t source);
246
247extern void fib_entry_src_action_uninstall(fib_entry_t *fib_entry);
248
249extern fib_entry_t* fib_entry_src_action_path_add(fib_entry_t *fib_entry,
250 fib_source_t source,
251 fib_entry_flag_t flags,
252 const fib_route_path_t *path);
253
254extern fib_entry_t* fib_entry_src_action_path_swap(fib_entry_t *fib_entry,
255 fib_source_t source,
256 fib_entry_flag_t flags,
257 const fib_route_path_t *path);
258
259extern fib_entry_src_flag_t fib_entry_src_action_path_remove(fib_entry_t *fib_entry,
260 fib_source_t source,
261 const fib_route_path_t *path);
262
263extern void fib_entry_src_action_installed(const fib_entry_t *fib_entry,
264 fib_source_t source);
265
266extern fib_forward_chain_type_t fib_entry_get_default_chain_type(
267 const fib_entry_t *fib_entry);
268extern fib_entry_flag_t fib_entry_get_flags_i(const fib_entry_t *fib_entry);
269extern fib_path_list_flags_t fib_entry_src_flags_2_path_list_flags(
270 fib_entry_flag_t eflags);
271
Neale Rannsad422ed2016-11-02 14:20:04 +0000272extern fib_forward_chain_type_t fib_entry_chain_type_fixup(const fib_entry_t *entry,
273 fib_forward_chain_type_t fct);
274
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100275extern void fib_entry_src_mk_lb (fib_entry_t *fib_entry,
276 const fib_entry_src_t *esrc,
277 fib_forward_chain_type_t fct,
278 dpo_id_t *dpo_lb);
279
Neale Rannsda78f952017-05-24 09:15:43 -0700280extern fib_protocol_t fib_entry_get_proto(const fib_entry_t * fib_entry);
281extern dpo_proto_t fib_entry_get_dpo_proto(const fib_entry_t * fib_entry);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100282
283/*
284 * Per-source registration. declared here so we save a separate .h file for each
285 */
286extern void fib_entry_src_default_register(void);
287extern void fib_entry_src_rr_register(void);
288extern void fib_entry_src_interface_register(void);
289extern void fib_entry_src_default_route_register(void);
290extern void fib_entry_src_special_register(void);
291extern void fib_entry_src_api_register(void);
292extern void fib_entry_src_adj_register(void);
293extern void fib_entry_src_mpls_register(void);
294extern void fib_entry_src_lisp_register(void);
295
296extern void fib_entry_src_module_init(void);
297
298#endif