dpdk: Add support for Mellanox ConnectX-4 devices
[vpp.git] / vnet / vnet / fib / fib_entry.h
1 /*
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_H__
17 #define __FIB_ENTRY_H__
18
19 #include <vnet/fib/fib_node.h>
20 #include <vnet/fib/fib_entry_delegate.h>
21 #include <vnet/adj/adj.h>
22 #include <vnet/ip/ip.h>
23 #include <vnet/dpo/dpo.h>
24
25 /**
26  * The different sources that can create a route.
27  * The sources are defined here the thier relative priority order.
28  * The lower the value the higher the priority
29  */
30 typedef enum fib_source_t_ {
31     /**
32      * Marker. Add new values after this one.
33      */
34     FIB_SOURCE_FIRST,
35     /**
36      * Special sources. These are for entries that are added to all
37      * FIBs by default, and should never be over-ridden (hence they
38      * are the highest priority)
39      */
40     FIB_SOURCE_SPECIAL = FIB_SOURCE_FIRST,
41     /**
42      * Classify. A route that links directly to a classify adj
43      */
44     FIB_SOURCE_CLASSIFY,
45     /**
46      * Route added as a result of interface configuration.
47      * this will also come from the API/CLI, but the distinction is
48      * that is from confiiguration on an interface, not a 'ip route' command
49      */
50     FIB_SOURCE_INTERFACE,
51     /**
52      * A high priority source a plugin can use
53      */
54     FIB_SOURCE_PLUGIN_HI,
55     /**
56      * From the control plane API
57      */
58     FIB_SOURCE_API,
59     /**
60      * From the CLI.
61      */
62     FIB_SOURCE_CLI,
63     /**
64      * LISP
65      */
66     FIB_SOURCE_LISP,
67     /**
68      * SRv6
69      */
70     FIB_SOURCE_SR,
71     /**
72      * IPv[46] Mapping
73      */
74     FIB_SOURCE_MAP,
75     /**
76      * SIXRD
77      */
78     FIB_SOURCE_SIXRD,
79     /**
80      * DHCP
81      */
82     FIB_SOURCE_DHCP,
83     /**
84      * Adjacency source.
85      * routes created as a result of ARP/ND entries. This is lower priority
86      * then the API/CLI. This is on purpose. trust me.
87      */
88     FIB_SOURCE_ADJ,
89     /**
90      * MPLS label. The prefix has been assigned a local label. This source
91      * never provides forwarding information, instead it acts as a place-holder
92      * so the association of label to prefix can be maintained
93      */
94     FIB_SOURCE_MPLS,
95     /**
96      * Attached Export source.
97      * routes created as a result of attahced export. routes thus sourced
98      * will be present in the export tables
99      */
100     FIB_SOURCE_AE,
101     /**
102      * Recursive resolution source.
103      * Used to install an entry that is the resolution traget of another.
104      */
105     FIB_SOURCE_RR,
106     /**
107      * uRPF bypass/exemption.
108      * Used to install an entry that is exempt from the loose uRPF check
109      */
110     FIB_SOURCE_URPF_EXEMPT,
111     /**
112      * The default route source.
113      * The default route is always added to the FIB table (like the
114      * special sources) but we need to be able to over-ride it with
115      * 'ip route' sources when provided
116      */
117     FIB_SOURCE_DEFAULT_ROUTE,
118     /**
119      * Marker. add new entries before this one.
120      */
121     FIB_SOURCE_LAST = FIB_SOURCE_DEFAULT_ROUTE,
122 } __attribute__ ((packed)) fib_source_t;
123
124 STATIC_ASSERT (sizeof(fib_source_t) == 1,
125                "FIB too many sources");
126
127 /**
128  * The maximum number of sources
129  */
130 #define FIB_SOURCE_MAX (FIB_SOURCE_LAST+1)
131
132 #define FIB_SOURCES {                                   \
133     [FIB_SOURCE_SPECIAL] = "special",                   \
134     [FIB_SOURCE_INTERFACE] = "interface",               \
135     [FIB_SOURCE_API] = "API",                           \
136     [FIB_SOURCE_CLI] = "CLI",                           \
137     [FIB_SOURCE_ADJ] = "adjacency",                     \
138     [FIB_SOURCE_MAP] = "MAP",                           \
139     [FIB_SOURCE_SR] = "SR",                             \
140     [FIB_SOURCE_SIXRD] = "SixRD",                       \
141     [FIB_SOURCE_LISP] = "LISP",                         \
142     [FIB_SOURCE_CLASSIFY] = "classify",                 \
143     [FIB_SOURCE_DHCP] = "DHCP",                         \
144     [FIB_SOURCE_RR] = "recursive-resolution",           \
145     [FIB_SOURCE_AE] = "attached_export",                \
146     [FIB_SOURCE_MPLS] = "mpls",                         \
147     [FIB_SOURCE_URPF_EXEMPT] = "urpf-exempt",           \
148     [FIB_SOURCE_DEFAULT_ROUTE] = "default-route",       \
149 }
150
151 #define FOR_EACH_FIB_SOURCE(_item) \
152     for (_item = FIB_SOURCE_FIRST; _item < FIB_SOURCE_MAX; _item++)
153
154 /**
155  * The different sources that can create a route.
156  * The sources are defined here the thier relative priority order.
157  * The lower the value the higher the priority
158  */
159 typedef enum fib_entry_attribute_t_ {
160     /**
161      * Marker. Add new values after this one.
162      */
163     FIB_ENTRY_ATTRIBUTE_FIRST,
164     /**
165      * Connected. The prefix is configured on an interface.
166      */
167     FIB_ENTRY_ATTRIBUTE_CONNECTED = FIB_ENTRY_ATTRIBUTE_FIRST,
168     /**
169      * Attached. The prefix is attached to an interface.
170      */
171     FIB_ENTRY_ATTRIBUTE_ATTACHED,
172     /**
173      * The route is an explicit drop.
174      */
175     FIB_ENTRY_ATTRIBUTE_DROP,
176     /**
177      * The route is exclusive. The client creating the route is
178      * providing an exclusive adjacency.
179      */
180     FIB_ENTRY_ATTRIBUTE_EXCLUSIVE,
181     /**
182      * The route is attached cross tables and thus imports covered
183      * prefixes from the other table.
184      */
185     FIB_ENTRY_ATTRIBUTE_IMPORT,
186     /**
187      * The prefix/address is local to this device
188      */
189     FIB_ENTRY_ATTRIBUTE_LOCAL,
190     /**
191      * Marker. add new entries before this one.
192      */
193     FIB_ENTRY_ATTRIBUTE_LAST = FIB_ENTRY_ATTRIBUTE_LOCAL,
194 } fib_entry_attribute_t;
195
196 /**
197  * The maximum number of sources
198  */
199 #define FIB_ENTRY_ATTRIBUTE_MAX (FIB_ENTRY_ATTRIBUTE_LAST+1)
200
201 #define FIB_ENTRY_ATTRIBUTES {                          \
202     [FIB_ENTRY_ATTRIBUTE_CONNECTED] = "connected",      \
203     [FIB_ENTRY_ATTRIBUTE_ATTACHED]  = "attached",       \
204     [FIB_ENTRY_ATTRIBUTE_IMPORT]    = "import",         \
205     [FIB_ENTRY_ATTRIBUTE_DROP]      = "drop",           \
206     [FIB_ENTRY_ATTRIBUTE_EXCLUSIVE] = "exclusive",      \
207     [FIB_ENTRY_ATTRIBUTE_LOCAL]     = "local",          \
208 }
209
210 #define FOR_EACH_FIB_ATTRIBUTE(_item)                   \
211     for (_item = FIB_ENTRY_ATTRIBUTE_FIRST;             \
212          _item < FIB_ENTRY_ATTRIBUTE_MAX;               \
213          _item++)
214
215 typedef enum fib_entry_flag_t_ {
216     FIB_ENTRY_FLAG_NONE      = 0,
217     FIB_ENTRY_FLAG_CONNECTED = (1 << FIB_ENTRY_ATTRIBUTE_CONNECTED),
218     FIB_ENTRY_FLAG_ATTACHED  = (1 << FIB_ENTRY_ATTRIBUTE_ATTACHED),
219     FIB_ENTRY_FLAG_DROP      = (1 << FIB_ENTRY_ATTRIBUTE_DROP),
220     FIB_ENTRY_FLAG_EXCLUSIVE = (1 << FIB_ENTRY_ATTRIBUTE_EXCLUSIVE),
221     FIB_ENTRY_FLAG_LOCAL     = (1 << FIB_ENTRY_ATTRIBUTE_LOCAL),
222     FIB_ENTRY_FLAG_IMPORT    = (1 << FIB_ENTRY_ATTRIBUTE_IMPORT),
223 } fib_entry_flag_t;
224
225 /**
226  * Flags for the source data
227  */
228 typedef enum fib_entry_src_attribute_t_ {
229     /**
230      * Marker. Add new values after this one.
231      */
232     FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
233     /**
234      * the source has been added to the entry
235      */
236     FIB_ENTRY_SRC_ATTRIBUTE_ADDED = FIB_ENTRY_SRC_ATTRIBUTE_FIRST,
237     /**
238      * the source is active/best
239      */
240     FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE,
241     /**
242      * Marker. add new entries before this one.
243      */
244     FIB_ENTRY_SRC_ATTRIBUTE_LAST = FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE,
245 } fib_entry_src_attribute_t;
246
247 #define FIB_ENTRY_SRC_ATTRIBUTE_MAX (FIB_ENTRY_SRC_ATTRIBUTE_LAST+1)
248
249 #define FIB_ENTRY_SRC_ATTRIBUTES {               \
250     [FIB_ENTRY_SRC_ATTRIBUTE_ADDED]  = "added",  \
251     [FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE] = "active", \
252 }
253
254 typedef enum fib_entry_src_flag_t_ {
255     FIB_ENTRY_SRC_FLAG_NONE   = 0,
256     FIB_ENTRY_SRC_FLAG_ADDED  = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ADDED),
257     FIB_ENTRY_SRC_FLAG_ACTIVE = (1 << FIB_ENTRY_SRC_ATTRIBUTE_ACTIVE),
258 } __attribute__ ((packed)) fib_entry_src_flag_t;
259
260 /*
261  * Keep the size of the flags field to 2 bytes, so it
262  * can be placed next to the 2 bytes reference count
263  */
264 STATIC_ASSERT (sizeof(fib_entry_src_flag_t) <= 2,
265                "FIB entry flags field size too big");
266
267 /**
268  * Information related to the source of a FIB entry
269  */
270 typedef struct fib_entry_src_t_ {
271     /**
272      * A vector of path extensions
273      */
274     struct fib_path_ext_t_ *fes_path_exts;
275
276     /**
277      * The path-list created by the source
278      */
279     fib_node_index_t fes_pl;
280     /**
281      * Which source this info block is for
282      */
283     fib_source_t fes_src;
284     /**
285      * Flags on the source
286      */
287     fib_entry_src_flag_t fes_flags;
288
289     /**
290      * 1 bytes ref count. This is not the number of users of the Entry
291      * (which is itself not large, due to path-list sharing), but the number
292      * of times a given source has been added. Which is even fewer
293      */
294     u8 fes_ref_count;
295
296     /**
297      * Flags the source contributes to the entry
298      */
299     fib_entry_flag_t fes_entry_flags;
300     
301     /**
302      * Source specific info
303      */
304     union {
305         struct {
306             /**
307              * the index of the FIB entry that is the covering entry
308              */
309             fib_node_index_t fesr_cover;
310             /**
311              * This source's index in the cover's list
312              */
313             u32 fesr_sibling;
314         } rr;
315         struct {
316             /**
317              * the index of the FIB entry that is the covering entry
318              */
319             fib_node_index_t fesa_cover;
320             /**
321              * This source's index in the cover's list
322              */
323             u32 fesa_sibling;
324         } adj;
325         struct {
326             /**
327              * the index of the FIB entry that is the covering entry
328              */
329             fib_node_index_t fesi_cover;
330             /**
331              * This source's index in the cover's list
332              */
333             u32 fesi_sibling;
334         } interface;
335         struct {
336             /**
337              * This MPLS local label associated with the prefix.
338              */
339             mpls_label_t fesm_label;
340
341             /**
342              * the indicies of the LFIB entries created
343              */
344             fib_node_index_t fesm_lfes[2];
345         } mpls;
346         struct {
347             /**
348              * The source FIB index.
349              */
350             fib_node_index_t fesl_fib_index;
351         } lisp;
352     };
353 } fib_entry_src_t;
354
355 /**
356  * An entry in a FIB table.
357  *
358  * This entry represents a route added to the FIB that is stored
359  * in one of the FIB tables.
360  */
361 typedef struct fib_entry_t_ {
362     /**
363      * Base class. The entry's node representation in the graph.
364      */
365     fib_node_t fe_node;
366     /**
367      * The prefix of the route. this is const just to be sure.
368      * It is the entry's key/identity and so should never change.
369      */
370     const fib_prefix_t fe_prefix;
371     /**
372      * The index of the FIB table this entry is in
373      */
374     u32 fe_fib_index;
375     /**
376      * The load-balance used for forwarding.
377      *
378      * We don't share the EOS and non-EOS even in case when they could be
379      * because:
380      *   - complexity & reliability v. memory
381      *       determining the conditions where sharing is possible is non-trivial.
382      *   - separate LBs means we can get the EOS bit right in the MPLS label DPO
383      *     and so save a few clock cycles in the DP imposition node since we can
384      *     paint the header straight on without the need to check the packet
385      *     type to derive the EOS bit value.
386      */
387     dpo_id_t fe_lb; // [FIB_FORW_CHAIN_MPLS_NUM];
388     /**
389      * Vector of source infos.
390      * Most entries will only have 1 source. So we optimise for memory usage,
391      * which is preferable since we have many entries.
392      */
393     fib_entry_src_t *fe_srcs;
394     /**
395      * the path-list for which this entry is a child. This is also the path-list
396      * that is contributing forwarding for this entry.
397      */
398     fib_node_index_t fe_parent;
399     /**
400      * index of this entry in the parent's child list.
401      * This is set when this entry is added as a child, but can also
402      * be changed by the parent as it manages its list.
403      */
404     u32 fe_sibling;
405
406     /**
407      * A vector of delegates.
408      */
409     fib_entry_delegate_t *fe_delegates;
410 } fib_entry_t;
411
412 #define FOR_EACH_FIB_ENTRY_FLAG(_item) \
413     for (_item = FIB_ENTRY_FLAG_FIRST; _item < FIB_ENTRY_FLAG_MAX; _item++)
414
415 #define FIB_ENTRY_FORMAT_BRIEF   (0x0)
416 #define FIB_ENTRY_FORMAT_DETAIL  (0x1)
417 #define FIB_ENTRY_FORMAT_DETAIL2 (0x2)
418
419 extern u8 *format_fib_entry (u8 * s, va_list * args);
420
421 extern fib_node_index_t fib_entry_create_special(u32 fib_index,
422                                                  const fib_prefix_t *prefix,
423                                                  fib_source_t source,
424                                                  fib_entry_flag_t flags,
425                                                  const dpo_id_t *dpo);
426
427 extern fib_node_index_t fib_entry_create (u32 fib_index,
428                                           const fib_prefix_t *prefix,
429                                           fib_source_t source,
430                                           fib_entry_flag_t flags,
431                                           const fib_route_path_t *paths);
432 extern void fib_entry_update (fib_node_index_t fib_entry_index,
433                               fib_source_t source,
434                               fib_entry_flag_t flags,
435                               const fib_route_path_t *paths);
436
437 extern void fib_entry_path_add(fib_node_index_t fib_entry_index,
438                                fib_source_t source,
439                                fib_entry_flag_t flags,
440                                const fib_route_path_t *rpath);
441 extern void fib_entry_special_add(fib_node_index_t fib_entry_index,
442                                   fib_source_t source,
443                                   fib_entry_flag_t flags,
444                                   const dpo_id_t *dpo);
445 extern void fib_entry_special_update(fib_node_index_t fib_entry_index,
446                                      fib_source_t source,
447                                      fib_entry_flag_t flags,
448                                      const dpo_id_t *dpo);
449 extern fib_entry_src_flag_t fib_entry_special_remove(fib_node_index_t fib_entry_index,
450                                                      fib_source_t source);
451
452 extern fib_entry_src_flag_t fib_entry_path_remove(fib_node_index_t fib_entry_index,
453                                                   fib_source_t source,
454                                                   const fib_route_path_t *rpath);
455 extern fib_entry_src_flag_t fib_entry_delete(fib_node_index_t fib_entry_index,
456                                              fib_source_t source);
457
458 extern void fib_entry_contribute_urpf(fib_node_index_t path_index,
459                                       index_t urpf);
460 extern void fib_entry_contribute_forwarding(
461     fib_node_index_t fib_entry_index,
462     fib_forward_chain_type_t type,
463     dpo_id_t *dpo);
464 extern const dpo_id_t * fib_entry_contribute_ip_forwarding(
465     fib_node_index_t fib_entry_index);
466 extern adj_index_t fib_entry_get_adj_for_source(
467     fib_node_index_t fib_entry_index,
468     fib_source_t source);
469 extern const int fib_entry_get_dpo_for_source (
470     fib_node_index_t fib_entry_index,
471     fib_source_t source,
472     dpo_id_t *dpo);
473
474 extern adj_index_t fib_entry_get_adj(fib_node_index_t fib_entry_index);
475
476 extern int fib_entry_cmp_for_sort(void *i1, void *i2);
477
478 extern void fib_entry_cover_changed(fib_node_index_t fib_entry);
479 extern void fib_entry_cover_updated(fib_node_index_t fib_entry);
480 extern int fib_entry_recursive_loop_detect(fib_node_index_t entry_index,
481                                            fib_node_index_t **entry_indicies);
482
483 extern void fib_entry_lock(fib_node_index_t fib_entry_index);
484 extern void fib_entry_unlock(fib_node_index_t fib_entry_index);
485
486 extern u32 fib_entry_child_add(fib_node_index_t fib_entry_index,
487                                fib_node_type_t type,
488                                fib_node_index_t child_index);
489 extern void fib_entry_child_remove(fib_node_index_t fib_entry_index,
490                                    u32 sibling_index);
491 extern u32 fib_entry_get_resolving_interface(fib_node_index_t fib_entry_index);
492 extern u32 fib_entry_get_resolving_interface_for_source(
493     fib_node_index_t fib_entry_index,
494     fib_source_t source);
495
496 extern void fib_entry_encode(fib_node_index_t fib_entry_index,
497                              fib_route_path_encode_t **api_rpaths);
498 extern void fib_entry_get_prefix(fib_node_index_t fib_entry_index,
499                                  fib_prefix_t *pfx);
500 extern u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index);
501 extern void fib_entry_set_source_data(fib_node_index_t fib_entry_index,
502                                       fib_source_t source,
503                                       const void *data);
504 extern const void* fib_entry_get_source_data(fib_node_index_t fib_entry_index,
505                                              fib_source_t source);
506
507 extern fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index);
508 extern fib_entry_flag_t fib_entry_get_flags_for_source(
509     fib_node_index_t fib_entry_index,
510     fib_source_t source);
511 extern fib_source_t fib_entry_get_best_source(fib_node_index_t fib_entry_index);
512 extern int fib_entry_is_sourced(fib_node_index_t fib_entry_index,
513                                 fib_source_t source);
514
515 extern fib_node_index_t fib_entry_get_path_list(fib_node_index_t fib_entry_index);
516
517 extern void fib_entry_module_init(void);
518
519 /*
520  * unsafe... beware the raw pointer.
521  */
522 extern fib_node_index_t fib_entry_get_index(const fib_entry_t * fib_entry);
523 extern fib_entry_t * fib_entry_get(fib_node_index_t fib_entry_index);
524
525 /*
526  * for testing purposes.
527  */
528 extern u32 fib_entry_pool_size(void);
529
530 #endif