FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
vxlan_gpe_api.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * vxlan_gpe_api.c - vxlan_gpe api
4  *
5  * Copyright (c) 2016 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19 
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22 
23 #include <vnet/interface.h>
24 #include <vnet/api_errno.h>
25 #include <vnet/feature/feature.h>
27 #include <vnet/fib/fib_table.h>
28 #include <vnet/format_fns.h>
29 
30 #include <vnet/ip/ip_types_api.h>
31 #include <vnet/vxlan-gpe/vxlan_gpe.api_enum.h>
32 #include <vnet/vxlan-gpe/vxlan_gpe.api_types.h>
33 
34 #define REPLY_MSG_ID_BASE msg_id_base
36 
38 
39 static void
42 {
43  vl_api_sw_interface_set_vxlan_gpe_bypass_reply_t *rmp;
44  int rv = 0;
45  u32 sw_if_index = ntohl (mp->sw_if_index);
46 
48 
51 
52  REPLY_MACRO (VL_API_SW_INTERFACE_SET_VXLAN_GPE_BYPASS_REPLY);
53 }
54 
55 static void
58 {
60  int rv = 0;
62  u32 encap_fib_index, decap_fib_index;
63  u8 protocol;
64  uword *p;
66  u32 sw_if_index = ~0;
67 
68  p = hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id));
69  if (!p)
70  {
71  rv = VNET_API_ERROR_NO_SUCH_FIB;
72  goto out;
73  }
74  encap_fib_index = p[0];
75 
76  protocol = mp->protocol;
77 
78  /* Interpret decap_vrf_id as an opaque if sending to other-than-ip4-input */
79  if (protocol == VXLAN_GPE_INPUT_NEXT_IP4_INPUT)
80  {
81  p = hash_get (im->fib_index_by_table_id, ntohl (mp->decap_vrf_id));
82  if (!p)
83  {
84  rv = VNET_API_ERROR_NO_SUCH_INNER_FIB;
85  goto out;
86  }
87  decap_fib_index = p[0];
88  }
89  else
90  {
91  decap_fib_index = ntohl (mp->decap_vrf_id);
92  }
93 
94 
95  clib_memset (a, 0, sizeof (*a));
96 
97  a->is_add = mp->is_add;
98  ip_address_decode (&mp->local, &a->local);
99  ip_address_decode (&mp->remote, &a->remote);
100 
101  /* Check src & dst are different */
102  if (ip46_address_is_equal (&a->local, &a->remote))
103  {
104  rv = VNET_API_ERROR_SAME_SRC_DST;
105  goto out;
106  }
107 
108  a->is_ip6 = !ip46_address_is_ip4 (&a->local);
109  a->mcast_sw_if_index = ntohl (mp->mcast_sw_if_index);
110  a->encap_fib_index = encap_fib_index;
111  a->decap_fib_index = decap_fib_index;
112  a->protocol = protocol;
113  a->vni = ntohl (mp->vni);
115 
116 out:
117  /* *INDENT-OFF* */
118  REPLY_MACRO2(VL_API_VXLAN_GPE_ADD_DEL_TUNNEL_REPLY,
119  ({
120  rmp->sw_if_index = ntohl (sw_if_index);
121  }));
122  /* *INDENT-ON* */
123 }
124 
127 {
129  ip4_main_t *im4 = &ip4_main;
130  ip6_main_t *im6 = &ip6_main;
132 
133  rmp = vl_msg_api_alloc (sizeof (*rmp));
134  clib_memset (rmp, 0, sizeof (*rmp));
135  rmp->_vl_msg_id =
136  ntohs (REPLY_MSG_ID_BASE + VL_API_VXLAN_GPE_TUNNEL_DETAILS);
137 
139  &rmp->local);
141  &rmp->remote);
142 
143  if (ip46_address_is_ip4 (&t->local))
144  {
145  rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id);
146  rmp->decap_vrf_id = htonl (im4->fibs[t->decap_fib_index].ft_table_id);
147  }
148  else
149  {
150  rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id);
151  rmp->decap_vrf_id = htonl (im6->fibs[t->decap_fib_index].ft_table_id);
152  }
153  rmp->mcast_sw_if_index = htonl (t->mcast_sw_if_index);
154  rmp->vni = htonl (t->vni);
155  rmp->protocol = t->protocol;
156  rmp->sw_if_index = htonl (t->sw_if_index);
157  rmp->context = context;
158 
159  vl_api_send_msg (reg, (u8 *) rmp);
160 }
161 
164 {
169 
171  if (!reg)
172  return;
173 
174  sw_if_index = ntohl (mp->sw_if_index);
175 
176  if (~0 == sw_if_index)
177  {
178  /* *INDENT-OFF* */
179  pool_foreach (t, vgm->tunnels)
180  {
182  }
183  /* *INDENT-ON* */
184  }
185  else
186  {
189  {
190  return;
191  }
194  }
195 }
196 
197 #include <vxlan-gpe/vxlan_gpe.api.c>
198 
199 static clib_error_t *
201 {
203 
204  am->api_trace_cfg[VL_API_VXLAN_GPE_ADD_DEL_TUNNEL].size +=
205  17 * sizeof (u32);
206 
207  /*
208  * Set up the (msg_name, crc, message-id) table
209  */
211 
212  return 0;
213 }
214 
216 
217 /*
218  * fd.io coding-style-patch-verification: ON
219  *
220  * Local Variables:
221  * eval: (c-set-style "gnu")
222  * End:
223  */
vl_api_vxlan_gpe_tunnel_details_t::context
u32 context
Definition: vxlan_gpe.api:51
vxlan_gpe_tunnel_t::decap_fib_index
u32 decap_fib_index
FIB indices - inner IP packet lookup here.
Definition: vxlan_gpe.h:127
vl_api_vxlan_gpe_tunnel_details_t::mcast_sw_if_index
vl_api_interface_index_t mcast_sw_if_index
Definition: vxlan_gpe.api:57
im
vnet_interface_main_t * im
Definition: interface_output.c:415
VALIDATE_SW_IF_INDEX
#define VALIDATE_SW_IF_INDEX(mp)
Definition: api_helper_macros.h:281
vl_api_client_index_to_registration
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:79
api.h
REPLY_MSG_ID_BASE
#define REPLY_MSG_ID_BASE
Definition: vxlan_gpe_api.c:34
vxlan_gpe_tunnel_t::mcast_sw_if_index
u32 mcast_sw_if_index
Definition: vxlan_gpe.h:122
ntohs
#define ntohs(x)
Definition: af_xdp.bpf.c:29
vl_api_vxlan_gpe_tunnel_details_t
Definition: vxlan_gpe.api:49
vl_api_vxlan_gpe_add_del_tunnel_t::is_add
bool is_add[default=true]
Definition: vxlan_gpe.api:32
is_ipv6
bool is_ipv6
Definition: dhcp.api:202
REPLY_MACRO2
#define REPLY_MACRO2(t, body)
Definition: api_helper_macros.h:65
vl_api_vxlan_gpe_tunnel_details_t::local
vl_api_address_t local
Definition: vxlan_gpe.api:53
vxlan_gpe_api_hookup
static clib_error_t * vxlan_gpe_api_hookup(vlib_main_t *vm)
Definition: vxlan_gpe_api.c:200
ip4_main
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1104
vl_api_send_msg
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Definition: api.h:35
vl_api_vxlan_gpe_add_del_tunnel_t::decap_vrf_id
u32 decap_vrf_id
Definition: vxlan_gpe.api:29
vl_api_vxlan_gpe_add_del_tunnel_t::protocol
vl_api_ip_proto_t protocol
Definition: vxlan_gpe.api:30
ip46_address_is_ip4
static u8 ip46_address_is_ip4(const ip46_address_t *ip46)
Definition: ip46_address.h:55
VLIB_API_INIT_FUNCTION
VLIB_API_INIT_FUNCTION(vxlan_gpe_api_hookup)
IP46_TYPE_IP4
@ IP46_TYPE_IP4
Definition: ip46_address.h:26
fib_table.h
u16
unsigned short u16
Definition: types.h:57
vl_api_vxlan_gpe_tunnel_details_t::protocol
vl_api_ip_proto_t protocol
Definition: vxlan_gpe.api:56
vxlan_gpe_main_t
Struct for VXLAN GPE node state.
Definition: vxlan_gpe.h:197
am
app_main_t * am
Definition: application.c:489
vl_api_vxlan_gpe_tunnel_dump_t::client_index
u32 client_index
Definition: vxlan_gpe.api:44
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
vxlan_gpe_tunnel_t::protocol
u8 protocol
encapsulated protocol
Definition: vxlan_gpe.h:112
vxlan_gpe_tunnel_t::encap_fib_index
u32 encap_fib_index
FIB indices - tunnel partner lookup here.
Definition: vxlan_gpe.h:125
vxlan_gpe.h
VXLAN GPE definitions.
msg_id_base
static u16 msg_id_base
Definition: vxlan_gpe_api.c:37
ip_address_decode
ip46_type_t ip_address_decode(const vl_api_address_t *in, ip46_address_t *out)
Decode/Encode for struct/union types.
Definition: ip_types_api.c:172
vl_api_vxlan_gpe_tunnel_details_t::remote
vl_api_address_t remote
Definition: vxlan_gpe.api:54
pool_foreach
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
vxlan_gpe_tunnel_t::vni
u32 vni
VXLAN GPE VNI in HOST byte order, shifted left 8 bits.
Definition: vxlan_gpe.h:130
vl_api_vxlan_gpe_add_del_tunnel_t::mcast_sw_if_index
vl_api_interface_index_t mcast_sw_if_index
Definition: vxlan_gpe.api:27
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
ip46_address_is_equal
static u8 ip46_address_is_equal(const ip46_address_t *ip46_1, const ip46_address_t *ip46_2)
Definition: ip46_address.h:93
VXLAN_GPE_TUNNEL_IS_IPV4
#define VXLAN_GPE_TUNNEL_IS_IPV4
Flags for vxlan_gpe_tunnel_t.
Definition: vxlan_gpe.h:169
feature.h
vxlan_gpe_main
vxlan_gpe_main_t vxlan_gpe_main
Definition: vxlan_gpe.c:47
vl_api_vxlan_gpe_add_del_tunnel_t
Definition: vxlan_gpe.api:21
vl_api_vxlan_gpe_tunnel_details_t::sw_if_index
vl_api_interface_index_t sw_if_index
Definition: vxlan_gpe.api:52
fib_table_t_::ft_table_id
u32 ft_table_id
Table ID (hash key) for this FIB.
Definition: fib_table.h:92
vl_api_vxlan_gpe_add_del_tunnel_t::local
vl_api_address_t local
Definition: vxlan_gpe.api:25
vl_api_registration_
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
REPLY_MACRO
#define REPLY_MACRO(t)
Definition: api_helper_macros.h:30
hash_get
#define hash_get(h, key)
Definition: hash.h:249
setup_message_id_table
static void setup_message_id_table(api_main_t *am)
Definition: sr_mpls_api.c:174
vxlan_gpe_tunnel_t::local
ip46_address_t local
tunnel local address
Definition: vxlan_gpe.h:117
uword
u64 uword
Definition: types.h:112
vl_api_vxlan_gpe_tunnel_details_t::encap_vrf_id
u32 encap_vrf_id
Definition: vxlan_gpe.api:58
vlibapi_get_main
static api_main_t * vlibapi_get_main(void)
Definition: api_common.h:390
interface.h
vl_api_sw_interface_set_vxlan_gpe_bypass_t::is_ipv6
bool is_ipv6
Definition: vxlan_gpe.api:75
vxlan_gpe_tunnel_t
Struct for VXLAN GPE tunnel.
Definition: vxlan_gpe.h:103
vnet_vxlan_gpe_add_del_tunnel_args_t
Struct for VXLAN GPE add/del args.
Definition: vxlan_gpe.h:241
ip6_main_t::fibs
struct fib_table_t_ * fibs
Definition: ip6.h:115
vl_api_sw_interface_set_vxlan_gpe_bypass_t
Interface set vxlan-gpe-bypass request.
Definition: vxlan_gpe.api:70
vxlan_gpe_main_t::tunnels
vxlan_gpe_tunnel_t * tunnels
vector of encap tunnel instances
Definition: vxlan_gpe.h:200
vl_api_vxlan_gpe_tunnel_details_t::vni
u32 vni
Definition: vxlan_gpe.api:55
IP46_TYPE_IP6
@ IP46_TYPE_IP6
Definition: ip46_address.h:27
BAD_SW_IF_INDEX_LABEL
#define BAD_SW_IF_INDEX_LABEL
Definition: api_helper_macros.h:289
vnet_int_vxlan_gpe_bypass_mode
void vnet_int_vxlan_gpe_bypass_mode(u32 sw_if_index, u8 is_ip6, u8 is_enable)
Definition: vxlan_gpe.c:1027
vl_api_vxlan_gpe_add_del_tunnel_t::encap_vrf_id
u32 encap_vrf_id
Definition: vxlan_gpe.api:28
ip6_main
ip6_main_t ip6_main
Definition: ip6_forward.c:2785
api_main_t
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:228
vl_api_sw_interface_set_vxlan_gpe_bypass_t::sw_if_index
vl_api_interface_index_t sw_if_index
Definition: vxlan_gpe.api:74
vl_api_vxlan_gpe_add_del_tunnel_t_handler
static void vl_api_vxlan_gpe_add_del_tunnel_t_handler(vl_api_vxlan_gpe_add_del_tunnel_t *mp)
Definition: vxlan_gpe_api.c:57
vl_api_vxlan_gpe_tunnel_details_t::decap_vrf_id
u32 decap_vrf_id
Definition: vxlan_gpe.api:59
vl_api_vxlan_gpe_tunnel_dump_t_handler
static void vl_api_vxlan_gpe_tunnel_dump_t_handler(vl_api_vxlan_gpe_tunnel_dump_t *mp)
Definition: vxlan_gpe_api.c:163
format_fns.h
vxlan_gpe_tunnel_t::sw_if_index
u32 sw_if_index
vnet intfc sw_if_index
Definition: vxlan_gpe.h:135
u32
unsigned int u32
Definition: types.h:88
vxlan_gpe_tunnel_t::remote
ip46_address_t remote
tunnel remote address
Definition: vxlan_gpe.h:119
vl_api_vxlan_gpe_add_del_tunnel_t::vni
u32 vni
Definition: vxlan_gpe.api:31
protocol
vl_api_ip_proto_t protocol
Definition: lb_types.api:72
vl_api_vxlan_gpe_tunnel_dump_t::sw_if_index
vl_api_interface_index_t sw_if_index
Definition: vxlan_gpe.api:46
ip4_main_t::fibs
struct fib_table_t_ * fibs
Vector of FIBs.
Definition: ip4.h:112
api_helper_macros.h
ip6_main_t
Definition: ip6.h:110
vl_api_vxlan_gpe_add_del_tunnel_reply_t::sw_if_index
vl_api_interface_index_t sw_if_index
Definition: vxlan_gpe.api:39
vl_api_vxlan_gpe_add_del_tunnel_reply_t
Definition: vxlan_gpe.api:35
send_vxlan_gpe_tunnel_details
static void send_vxlan_gpe_tunnel_details(vxlan_gpe_tunnel_t *t, vl_api_registration_t *reg, u32 context)
Definition: vxlan_gpe_api.c:126
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
ip_address_encode
void ip_address_encode(const ip46_address_t *in, ip46_type_t type, vl_api_address_t *out)
Definition: ip_types_api.c:206
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
vl_api_vxlan_gpe_tunnel_dump_t
Definition: vxlan_gpe.api:42
a
a
Definition: bitmap.h:525
vl_api_sw_interface_set_vxlan_gpe_bypass_t_handler
static void vl_api_sw_interface_set_vxlan_gpe_bypass_t_handler(vl_api_sw_interface_set_vxlan_gpe_bypass_t *mp)
Definition: vxlan_gpe_api.c:41
vxlan_gpe_main_t::tunnel_index_by_sw_if_index
u32 * tunnel_index_by_sw_if_index
Mapping from sw_if_index to tunnel index.
Definition: vxlan_gpe.h:216
context
u32 context
Definition: ip.api:852
vl_api_sw_interface_set_vxlan_gpe_bypass_t::enable
bool enable[default=true]
Definition: vxlan_gpe.api:76
rv
int __clib_unused rv
Definition: application.c:491
vxlan_gpe_tunnel_t::flags
u32 flags
flags
Definition: vxlan_gpe.h:138
vnet.h
api_errno.h
ip4_main_t
IPv4 main type.
Definition: ip4.h:107
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
ip_types_api.h
vnet_vxlan_gpe_add_del_tunnel
int vnet_vxlan_gpe_add_del_tunnel(vnet_vxlan_gpe_add_del_tunnel_args_t *a, u32 *sw_if_indexp)
Add or Del a VXLAN GPE tunnel.
Definition: vxlan_gpe.c:442
vl_api_vxlan_gpe_add_del_tunnel_t::remote
vl_api_address_t remote
Definition: vxlan_gpe.api:26
vl_api_vxlan_gpe_tunnel_dump_t::context
u32 context
Definition: vxlan_gpe.api:45
vl_msg_api_alloc
void * vl_msg_api_alloc(int nbytes)
Definition: memory_shared.c:199