FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
mfib_entry_src.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 __MFIB_ENTRY_SRC_H__
17 #define __MFIB_ENTRY_SRC_H__
18 
19 #include <vnet/mfib/mfib_entry.h>
20 
21 /**
22  * MFIB extensions to each path
23  */
24 typedef struct mfib_path_ext_t_
25 {
29 
30 /**
31  * Flags for the source data
32  */
34  /**
35  * Marker. Add new values after this one.
36  */
38  /**
39  * the source has been added to the entry
40  */
42  /**
43  * Marker. add new entries before this one.
44  */
47 
48 
49 #define MFIB_ENTRY_SRC_ATTRIBUTES { \
50  [MFIB_ENTRY_SRC_ATTRIBUTE_STALE] = "stale", \
51 }
52 
53 #define FOR_EACH_MFIB_SRC_ATTRIBUTE(_item) \
54  for (_item = MFIB_ENTRY_SRC_ATTRIBUTE_FIRST; \
55  _item <= MFIB_ENTRY_SRC_ATTRIBUTE_LAST; \
56  _item++)
57 
58 typedef enum mfib_entry_src_flag_t_ {
61 } __attribute__ ((packed)) mfib_entry_src_flags_t;
62 
63 extern u8 * format_mfib_entry_src_flags(u8 *s, va_list *args);
64 
65 /*
66  * Keep the size of the flags field to 2 bytes, so it
67  * can be placed next to the 2 bytes reference count
68  */
70  "FIB entry flags field size too big");
71 
72 /**
73  * The source of an MFIB entry
74  */
75 typedef struct mfib_entry_src_t_
76 {
77  /**
78  * Which source this is
79  */
81 
82  /**
83  * Route flags
84  */
86 
87  /**
88  * Source flags
89  */
91 
92  /**
93  * The reference count on the entry. this is a u32
94  * since there is no path-list sharing in mfib, so the number
95  * os children could be high.
96  */
98 
99  /**
100  * The path-list of forwarding interfaces
101  */
103 
104  /**
105  * RPF-ID
106  */
108 
109  /**
110  * Hash table of path extensions
111  */
113 
114  /**
115  * Covering entry (if needed)
116  */
117  struct {
120  };
121 
122  /**
123  * The hash table of all interfaces.
124  * This is forwarding time information derived from the paths
125  * and their extensions.
126  */
129 
130 /**
131  * signals from the sources to the caller
132  */
133 typedef enum mfib_src_res_t_
134 {
138 
139 /**
140  * A function provided by each source to be invoked when it is activated
141  */
142 typedef void (*mfib_entry_src_activiate_t) (mfib_entry_t*, mfib_entry_src_t*);
143 
144 /**
145  * A function provided by each source to be invoked when it is deactivated
146  */
147 typedef void (*mfib_entry_src_deactiviate_t) (mfib_entry_t*, mfib_entry_src_t*);
148 
149 /**
150  * A function provided by each source to be invoked when the cover changes
151  */
153 
154 /**
155  * A function provided by each source to be invoked when the cover is updated
156  */
158 
159 /**
160  * Virtual function table provided by each_source
161  */
162 typedef struct mfib_entry_src_vft_t_
163 {
169 
171 
172 extern void mfib_entry_src_deactivate(mfib_entry_t *mfib_entry,
173  mfib_entry_src_t *bsrc);
174 
175 extern void mfib_entry_src_activate(mfib_entry_t *mfib_entry,
176  mfib_entry_src_t *bsrc);
177 
178 extern mfib_src_res_t mfib_entry_src_cover_change(mfib_entry_t *mfib_entry,
179  mfib_entry_src_t *bsrc);
180 
181 extern mfib_src_res_t mfib_entry_src_cover_update(mfib_entry_t *mfib_entry,
182  mfib_entry_src_t *bsrc);
183 
184 extern mfib_entry_src_t* mfib_entry_get_best_src(const mfib_entry_t *mfib_entry);
185 
186 extern void mfib_entry_src_module_init(void);
187 extern void mfib_entry_src_rr_module_init(void);
188 
189 #endif
mfib_entry_src_cover_change_t mev_cover_change
mfib_entry_src_cover_update_t mev_cover_update
mfib_entry_src_attribute_t_
Flags for the source data.
enum mfib_entry_flags_t_ mfib_entry_flags_t
fib_node_index_t mfes_cover
struct mfib_entry_src_t_ mfib_entry_src_t
The source of an MFIB entry.
enum mfib_entry_src_flag_t_ mfib_entry_src_flags_t
u8 * format_mfib_entry_src_flags(u8 *s, va_list *args)
Definition: mfib_entry.c:106
mfib_src_res_t mfib_entry_src_cover_change(mfib_entry_t *mfib_entry, mfib_entry_src_t *bsrc)
u32 mfes_sibling
mfib_itf_t * mfes_itfs
The hash table of all interfaces.
unsigned char u8
Definition: types.h:56
enum mfib_source_t_ mfib_source_t
Possible [control plane] sources of MFIB entries.
mfib_entry_src_flags_t mfes_flags
Source flags.
The source of an MFIB entry.
mfib_entry_src_t * mfib_entry_get_best_src(const mfib_entry_t *mfib_entry)
Definition: mfib_entry.c:318
mfib_source_t mfes_src
Which source this is.
the source has been added to the entry
mfib_src_res_t mfib_entry_src_cover_update(mfib_entry_t *mfib_entry, mfib_entry_src_t *bsrc)
unsigned int u32
Definition: types.h:88
struct mfib_entry_src_vft_t_ mfib_entry_src_vft
Virtual function table provided by each_source.
mfib_src_res_t_
signals from the sources to the caller
void(* mfib_entry_src_deactiviate_t)(mfib_entry_t *, mfib_entry_src_t *)
A function provided by each source to be invoked when it is deactivated.
u32 mfes_ref_count
The reference count on the entry.
void mfib_entry_src_rr_module_init(void)
void mfib_entry_src_deactivate(mfib_entry_t *mfib_entry, mfib_entry_src_t *bsrc)
Marker.
fib_rpf_id_t mfes_rpf_id
RPF-ID.
void mfib_entry_src_activate(mfib_entry_t *mfib_entry, mfib_entry_src_t *bsrc)
mfib_entry_src_activiate_t mev_activate
void mfib_entry_src_module_init(void)
fib_node_index_t mfes_pl
The path-list of forwarding interfaces.
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
mfib_path_ext_t * mfes_exts
Hash table of path extensions.
enum mfib_src_res_t_ mfib_src_res_t
signals from the sources to the caller
u32 fib_rpf_id_t
An RPF-ID is numerical value that is used RPF validate.
Definition: fib_types.h:411
MFIB extensions to each path.
void(* mfib_entry_src_activiate_t)(mfib_entry_t *, mfib_entry_src_t *)
A function provided by each source to be invoked when it is activated.
mfib_itf_flags_t mfpe_flags
An interface associated with a particular MFIB entry.
Definition: mfib_itf.h:25
mfib_src_res_t(* mfib_entry_src_cover_change_t)(mfib_entry_t *, mfib_entry_src_t *)
A function provided by each source to be invoked when the cover changes.
mfib_entry_src_deactiviate_t mev_deactivate
void mfib_entry_src_register(mfib_source_t, const mfib_entry_src_vft *)
Marker.
fib_node_index_t mfpe_path
struct mfib_path_ext_t_ mfib_path_ext_t
MFIB extensions to each path.
Virtual function table provided by each_source.
enum mfib_itf_flags_t_ mfib_itf_flags_t
mfib_entry_flags_t mfes_route_flags
Route flags.
mfib_src_res_t(* mfib_entry_src_cover_update_t)(mfib_entry_t *, mfib_entry_src_t *)
A function provided by each source to be invoked when the cover is updated.
enum mfib_entry_src_attribute_t_ mfib_entry_src_attribute_t
Flags for the source data.
mfib_entry_src_flag_t_
STATIC_ASSERT(sizeof(mfib_entry_src_flags_t)<=2, "FIB entry flags field size too big")