FD.io VPP  v19.01.1-17-ge106252
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  */
37 
38  /**
39  * The RD's VNI interface on which packets from unkown endpoints
40  * arrive
41  */
43 
44  /**
45  * The interfaces on which to send packets to unnknown EPs
46  */
48 
49  /**
50  * adjacencies on the UU interfaces.
51  */
53 
56 
62 extern void gbp_route_domain_unlock (index_t grdi);
66 
67 extern int gbp_route_domain_delete (u32 rd_id);
70 
71 typedef int (*gbp_route_domain_cb_t) (gbp_route_domain_t * gb, void *ctx);
72 extern void gbp_route_domain_walk (gbp_route_domain_cb_t bgpe, void *ctx);
73 
76 
77 extern u8 *format_gbp_route_domain (u8 * s, va_list * args);
78 
79 #endif
80 
81 /*
82  * fd.io coding-style-patch-verification: ON
83  *
84  * Local Variables:
85  * eval: (c-set-style "gnu")
86  * End:
87  */
u32 grd_table_id[FIB_PROTOCOL_IP_MAX]
int gbp_route_domain_delete(u32 rd_id)
u32 grd_vni_sw_if_index
The RD&#39;s VNI interface on which packets from unkown endpoints arrive.
u32 ip6_table_id
Definition: gbp.api:63
u8 * format_gbp_route_domain(u8 *s, va_list *args)
u32 ip6_uu_sw_if_index
Definition: gbp.api:65
#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
int i
u32 rd_id
Definition: gbp.api:261
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
index_t gbp_route_domain_index(const gbp_route_domain_t *)
const mac_address_t * gbp_route_domain_get_remote_mac(void)
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)
u32 ip4_table_id
Definition: gbp.api:62
u32 grd_fib_index[FIB_PROTOCOL_IP_MAX]
const mac_address_t * gbp_route_domain_get_local_mac(void)
u32 ip4_uu_sw_if_index
Definition: gbp.api:64
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.
int gbp_route_domain_add_and_lock(u32 rd_id, u32 ip4_table_id, u32 ip6_table_id, u32 ip4_uu_sw_if_index, u32 ip6_uu_sw_if_index)