FD.io VPP  v21.10.1-2-g0a485f517
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  */
ip6_uu_sw_if_index
vl_api_interface_index_t ip6_uu_sw_if_index
Definition: gbp.api:77
gbp_types.h
gpb_route_domain_t_::grd_fib_index
u32 grd_fib_index[FIB_PROTOCOL_IP_MAX]
Definition: gbp_route_domain.h:36
gbp_route_domain_delete
int gbp_route_domain_delete(u32 rd_id)
Definition: gbp_route_domain.c:256
gbp_route_domain_t
struct gpb_route_domain_t_ gbp_route_domain_t
A route Domain Representation.
gpb_route_domain_t_
A route Domain Representation.
Definition: gbp_route_domain.h:29
gpb_route_domain_t_::grd_id
u32 grd_id
Route-domain ID.
Definition: gbp_route_domain.h:34
gpb_route_domain_t_::grd_table_id
u32 grd_table_id[FIB_PROTOCOL_IP_MAX]
Definition: gbp_route_domain.h:37
gbp_route_domain_unlock
void gbp_route_domain_unlock(index_t grdi)
Definition: gbp_route_domain.c:208
FIB_PROTOCOL_IP_MAX
#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:57
mac_address.h
gbp_route_domain_get_rd_id
u32 gbp_route_domain_get_rd_id(index_t i)
Definition: gbp_route_domain.c:236
fib_types.h
gpb_route_domain_t_::grd_uu_sw_if_index
u32 grd_uu_sw_if_index[FIB_PROTOCOL_IP_MAX]
The interfaces on which to send packets to unnknown EPs.
Definition: gbp_route_domain.h:42
index_t
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:43
scope
vl_api_gbp_scope_t scope
Definition: gbp.api:78
gbp_route_domain_get
gbp_route_domain_t * gbp_route_domain_get(index_t i)
Definition: gbp_route_domain.c:72
gbp_route_domain_get_remote_mac
const mac_address_t * gbp_route_domain_get_remote_mac(void)
Definition: gbp_route_domain.c:282
gbp_route_domain_walk
void gbp_route_domain_walk(gbp_route_domain_cb_t bgpe, void *ctx)
Definition: gbp_route_domain.c:288
ip4_uu_sw_if_index
vl_api_interface_index_t ip4_uu_sw_if_index
Definition: gbp.api:76
gbp_route_domain_get_local_mac
const mac_address_t * gbp_route_domain_get_local_mac(void)
Definition: gbp_route_domain.c:276
rd_id
u32 rd_id
Definition: gbp.api:35
gbp_route_domain_get_scope
gbp_scope_t gbp_route_domain_get_scope(index_t i)
Definition: gbp_route_domain.c:246
gpb_route_domain_t_::grd_locks
u32 grd_locks
Definition: gbp_route_domain.h:49
u32
unsigned int u32
Definition: types.h:88
gbp_route_domain_find
index_t gbp_route_domain_find(u32 rd_id)
Definition: gbp_route_domain.c:87
gbp_route_domain_index
index_t gbp_route_domain_index(const gbp_route_domain_t *)
Definition: gbp_route_domain.c:66
ctx
long ctx[MAX_CONNS]
Definition: main.c:144
gbp_route_domain_add_and_lock
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)
Definition: gbp_route_domain.c:128
gpb_route_domain_t_::grd_scope
gbp_scope_t grd_scope
Definition: gbp_route_domain.h:35
ip6_table_id
u32 ip6_table_id
Definition: gbp.api:75
mac_address_t_
Definition: mac_address.h:21
gpb_route_domain_t_::grd_adj
u32 grd_adj[FIB_PROTOCOL_IP_MAX]
adjacencies on the UU interfaces.
Definition: gbp_route_domain.h:47
u8
unsigned char u8
Definition: types.h:56
format_gbp_route_domain
u8 * format_gbp_route_domain(u8 *s, va_list *args)
Definition: gbp_route_domain.c:374
i
int i
Definition: flowhash_template.h:376
ip4_table_id
u32 ip4_table_id
Definition: gbp.api:74
gbp_scope_t
u16 gbp_scope_t
Definition: gbp_types.h:24
gbp_route_domain_cb_t
int(* gbp_route_domain_cb_t)(gbp_route_domain_t *gb, void *ctx)
Definition: gbp_route_domain.h:68
gbp_route_domain_find_and_lock
index_t gbp_route_domain_find_and_lock(u32 rd_id)
Definition: gbp_route_domain.c:100