FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
gbp_route_domain.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 __GBP_ROUTE_DOMAIN_H__
17 #define __GBP_ROUTE_DOMAIN_H__
18 
19 #include <plugins/gbp/gbp_types.h>
20 
21 #include <vnet/fib/fib_types.h>
23 
24 /**
25  * A route Domain Representation.
26  * This is a standard route-domain plus all the attributes it must
27  * have to supprt the GBP model.
28  */
29 typedef struct gpb_route_domain_t_
30 {
31  /**
32  * Route-domain ID
33  */
38 
39  /**
40  * The interfaces on which to send packets to unnknown EPs
41  */
43 
44  /**
45  * adjacencies on the UU interfaces.
46  */
48 
51 
58 extern void gbp_route_domain_unlock (index_t grdi);
62 
63 extern int gbp_route_domain_delete (u32 rd_id);
67 
68 typedef int (*gbp_route_domain_cb_t) (gbp_route_domain_t * gb, void *ctx);
69 extern void gbp_route_domain_walk (gbp_route_domain_cb_t bgpe, void *ctx);
70 
73 
74 extern u8 *format_gbp_route_domain (u8 * s, va_list * args);
75 
76 #endif
77 
78 /*
79  * fd.io coding-style-patch-verification: ON
80  *
81  * Local Variables:
82  * eval: (c-set-style "gnu")
83  * End:
84  */
u32 grd_table_id[FIB_PROTOCOL_IP_MAX]
int gbp_route_domain_delete(u32 rd_id)
u32 ip6_table_id
Definition: gbp.api:71
u8 * format_gbp_route_domain(u8 *s, va_list *args)
#define FIB_PROTOCOL_IP_MAX
Definition outside of enum so it does not need to be included in non-defaulted switch statements...
Definition: fib_types.h:58
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
u32 rd_id
Definition: gbp.api:35
struct gpb_route_domain_t_ gbp_route_domain_t
A route Domain Representation.
index_t gbp_route_domain_find_and_lock(u32 rd_id)
u32 grd_adj[FIB_PROTOCOL_IP_MAX]
adjacencies on the UU interfaces.
unsigned char u8
Definition: types.h:56
vl_api_interface_index_t ip4_uu_sw_if_index
Definition: gbp.api:72
index_t gbp_route_domain_index(const gbp_route_domain_t *)
const mac_address_t * gbp_route_domain_get_remote_mac(void)
u16 gbp_scope_t
Definition: gbp_types.h:24
index_t gbp_route_domain_find(u32 rd_id)
unsigned int u32
Definition: types.h:88
void gbp_route_domain_unlock(index_t grdi)
long ctx[MAX_CONNS]
Definition: main.c:144
gbp_route_domain_t * gbp_route_domain_get(index_t i)
u32 grd_uu_sw_if_index[FIB_PROTOCOL_IP_MAX]
The interfaces on which to send packets to unnknown EPs.
u32 gbp_route_domain_get_rd_id(index_t i)
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
u32 ip4_table_id
Definition: gbp.api:70
u32 grd_fib_index[FIB_PROTOCOL_IP_MAX]
const mac_address_t * gbp_route_domain_get_local_mac(void)
vl_api_interface_index_t ip6_uu_sw_if_index
Definition: gbp.api:73
int(* gbp_route_domain_cb_t)(gbp_route_domain_t *gb, void *ctx)
A route Domain Representation.
void gbp_route_domain_walk(gbp_route_domain_cb_t bgpe, void *ctx)
u32 grd_id
Route-domain ID.
gbp_scope_t gbp_route_domain_get_scope(index_t i)
int gbp_route_domain_add_and_lock(u32 rd_id, gbp_scope_t scope, u32 ip4_table_id, u32 ip6_table_id, u32 ip4_uu_sw_if_index, u32 ip6_uu_sw_if_index)
vl_api_gbp_scope_t scope
Definition: gbp.api:74