blob: 711ee66f4fd0f6d9a9cd829589bfa474e7b876d9 [file] [log] [blame]
Pavel Kotucek296b2012016-12-19 14:47:09 +01001/*
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>
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080025#include <vnet/feature/feature.h>
Pavel Kotucek296b2012016-12-19 14:47:09 +010026#include <vnet/vxlan-gpe/vxlan_gpe.h>
27#include <vnet/fib/fib_table.h>
28
Jakub Grajciar1c2002a2020-01-31 10:45:30 +010029#include <vnet/ip/ip_types_api.h>
30
Pavel Kotucek296b2012016-12-19 14:47:09 +010031#include <vnet/vnet_msg_enum.h>
32
33#define vl_typedefs /* define message structures */
34#include <vnet/vnet_all_api_h.h>
35#undef vl_typedefs
36
37#define vl_endianfun /* define message structures */
38#include <vnet/vnet_all_api_h.h>
39#undef vl_endianfun
40
41/* instantiate all the print functions we know about */
42#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
43#define vl_printfun
44#include <vnet/vnet_all_api_h.h>
45#undef vl_printfun
46
47#include <vlibapi/api_helper_macros.h>
48
49#define foreach_vpe_api_msg \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080050_(SW_INTERFACE_SET_VXLAN_GPE_BYPASS, sw_interface_set_vxlan_gpe_bypass) \
Pavel Kotucek296b2012016-12-19 14:47:09 +010051_(VXLAN_GPE_ADD_DEL_TUNNEL, vxlan_gpe_add_del_tunnel) \
Hongjun Ni04ffd0ad2017-06-23 00:18:40 +080052_(VXLAN_GPE_TUNNEL_DUMP, vxlan_gpe_tunnel_dump)
Pavel Kotucek296b2012016-12-19 14:47:09 +010053
54static void
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080055 vl_api_sw_interface_set_vxlan_gpe_bypass_t_handler
56 (vl_api_sw_interface_set_vxlan_gpe_bypass_t * mp)
57{
58 vl_api_sw_interface_set_vxlan_gpe_bypass_reply_t *rmp;
59 int rv = 0;
60 u32 sw_if_index = ntohl (mp->sw_if_index);
61
62 VALIDATE_SW_IF_INDEX (mp);
63
64 vnet_int_vxlan_gpe_bypass_mode (sw_if_index, mp->is_ipv6, mp->enable);
65 BAD_SW_IF_INDEX_LABEL;
66
67 REPLY_MACRO (VL_API_SW_INTERFACE_SET_VXLAN_GPE_BYPASS_REPLY);
68}
69
70static void
Pavel Kotucek296b2012016-12-19 14:47:09 +010071 vl_api_vxlan_gpe_add_del_tunnel_t_handler
72 (vl_api_vxlan_gpe_add_del_tunnel_t * mp)
73{
74 vl_api_vxlan_gpe_add_del_tunnel_reply_t *rmp;
75 int rv = 0;
76 vnet_vxlan_gpe_add_del_tunnel_args_t _a, *a = &_a;
77 u32 encap_fib_index, decap_fib_index;
78 u8 protocol;
79 uword *p;
80 ip4_main_t *im = &ip4_main;
81 u32 sw_if_index = ~0;
82
Pavel Kotucek296b2012016-12-19 14:47:09 +010083 p = hash_get (im->fib_index_by_table_id, ntohl (mp->encap_vrf_id));
84 if (!p)
85 {
86 rv = VNET_API_ERROR_NO_SUCH_FIB;
87 goto out;
88 }
89 encap_fib_index = p[0];
90
91 protocol = mp->protocol;
92
93 /* Interpret decap_vrf_id as an opaque if sending to other-than-ip4-input */
94 if (protocol == VXLAN_GPE_INPUT_NEXT_IP4_INPUT)
95 {
96 p = hash_get (im->fib_index_by_table_id, ntohl (mp->decap_vrf_id));
97 if (!p)
98 {
99 rv = VNET_API_ERROR_NO_SUCH_INNER_FIB;
100 goto out;
101 }
102 decap_fib_index = p[0];
103 }
104 else
105 {
106 decap_fib_index = ntohl (mp->decap_vrf_id);
107 }
108
Jakub Grajciar1c2002a2020-01-31 10:45:30 +0100109
110 clib_memset (a, 0, sizeof (*a));
111
112 a->is_add = mp->is_add;
113 ip_address_decode (&mp->local, &a->local);
114 ip_address_decode (&mp->remote, &a->remote);
115
Pavel Kotucek296b2012016-12-19 14:47:09 +0100116 /* Check src & dst are different */
Jakub Grajciar1c2002a2020-01-31 10:45:30 +0100117 if (ip46_address_is_equal (&a->local, &a->remote))
Pavel Kotucek296b2012016-12-19 14:47:09 +0100118 {
119 rv = VNET_API_ERROR_SAME_SRC_DST;
120 goto out;
121 }
Pavel Kotucek296b2012016-12-19 14:47:09 +0100122
Jakub Grajciar1c2002a2020-01-31 10:45:30 +0100123 a->is_ip6 = !ip46_address_is_ip4 (&a->local);
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800124 a->mcast_sw_if_index = ntohl (mp->mcast_sw_if_index);
Pavel Kotucek296b2012016-12-19 14:47:09 +0100125 a->encap_fib_index = encap_fib_index;
126 a->decap_fib_index = decap_fib_index;
127 a->protocol = protocol;
128 a->vni = ntohl (mp->vni);
129 rv = vnet_vxlan_gpe_add_del_tunnel (a, &sw_if_index);
130
131out:
132 /* *INDENT-OFF* */
133 REPLY_MACRO2(VL_API_VXLAN_GPE_ADD_DEL_TUNNEL_REPLY,
134 ({
135 rmp->sw_if_index = ntohl (sw_if_index);
136 }));
137 /* *INDENT-ON* */
138}
139
140static void send_vxlan_gpe_tunnel_details
Florin Coras6c4dae22018-01-09 06:39:23 -0800141 (vxlan_gpe_tunnel_t * t, vl_api_registration_t * reg, u32 context)
Pavel Kotucek296b2012016-12-19 14:47:09 +0100142{
143 vl_api_vxlan_gpe_tunnel_details_t *rmp;
144 ip4_main_t *im4 = &ip4_main;
145 ip6_main_t *im6 = &ip6_main;
146 u8 is_ipv6 = !(t->flags & VXLAN_GPE_TUNNEL_IS_IPV4);
147
148 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400149 clib_memset (rmp, 0, sizeof (*rmp));
Pavel Kotucek296b2012016-12-19 14:47:09 +0100150 rmp->_vl_msg_id = ntohs (VL_API_VXLAN_GPE_TUNNEL_DETAILS);
Jakub Grajciar1c2002a2020-01-31 10:45:30 +0100151
152 ip_address_encode (&t->local, is_ipv6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4,
153 &rmp->local);
154 ip_address_encode (&t->remote, is_ipv6 ? IP46_TYPE_IP6 : IP46_TYPE_IP4,
155 &rmp->remote);
156
157 if (ip46_address_is_ip4 (&t->local))
Pavel Kotucek296b2012016-12-19 14:47:09 +0100158 {
Jakub Grajciar1c2002a2020-01-31 10:45:30 +0100159 rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id);
160 rmp->decap_vrf_id = htonl (im4->fibs[t->decap_fib_index].ft_table_id);
Pavel Kotucek296b2012016-12-19 14:47:09 +0100161 }
162 else
163 {
Jakub Grajciar1c2002a2020-01-31 10:45:30 +0100164 rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id);
165 rmp->decap_vrf_id = htonl (im6->fibs[t->decap_fib_index].ft_table_id);
Pavel Kotucek296b2012016-12-19 14:47:09 +0100166 }
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800167 rmp->mcast_sw_if_index = htonl (t->mcast_sw_if_index);
Pavel Kotucek296b2012016-12-19 14:47:09 +0100168 rmp->vni = htonl (t->vni);
169 rmp->protocol = t->protocol;
170 rmp->sw_if_index = htonl (t->sw_if_index);
Pavel Kotucek296b2012016-12-19 14:47:09 +0100171 rmp->context = context;
172
Florin Coras6c4dae22018-01-09 06:39:23 -0800173 vl_api_send_msg (reg, (u8 *) rmp);
Pavel Kotucek296b2012016-12-19 14:47:09 +0100174}
175
176static void vl_api_vxlan_gpe_tunnel_dump_t_handler
177 (vl_api_vxlan_gpe_tunnel_dump_t * mp)
178{
Florin Coras6c4dae22018-01-09 06:39:23 -0800179 vl_api_registration_t *reg;
Pavel Kotucek296b2012016-12-19 14:47:09 +0100180 vxlan_gpe_main_t *vgm = &vxlan_gpe_main;
181 vxlan_gpe_tunnel_t *t;
182 u32 sw_if_index;
183
Florin Coras6c4dae22018-01-09 06:39:23 -0800184 reg = vl_api_client_index_to_registration (mp->client_index);
185 if (!reg)
186 return;
Pavel Kotucek296b2012016-12-19 14:47:09 +0100187
188 sw_if_index = ntohl (mp->sw_if_index);
189
190 if (~0 == sw_if_index)
191 {
192 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100193 pool_foreach (t, vgm->tunnels)
194 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800195 send_vxlan_gpe_tunnel_details(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100196 }
Pavel Kotucek296b2012016-12-19 14:47:09 +0100197 /* *INDENT-ON* */
198 }
199 else
200 {
201 if ((sw_if_index >= vec_len (vgm->tunnel_index_by_sw_if_index)) ||
202 (~0 == vgm->tunnel_index_by_sw_if_index[sw_if_index]))
203 {
204 return;
205 }
206 t = &vgm->tunnels[vgm->tunnel_index_by_sw_if_index[sw_if_index]];
Florin Coras6c4dae22018-01-09 06:39:23 -0800207 send_vxlan_gpe_tunnel_details (t, reg, mp->context);
Pavel Kotucek296b2012016-12-19 14:47:09 +0100208 }
209}
210
211
212/*
213 * vpe_api_hookup
214 * Add vpe's API message handlers to the table.
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700215 * vlib has already mapped shared memory and
Pavel Kotucek296b2012016-12-19 14:47:09 +0100216 * added the client registration handlers.
217 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
218 */
219#define vl_msg_name_crc_list
220#include <vnet/vnet_all_api_h.h>
221#undef vl_msg_name_crc_list
222
223static void
224setup_message_id_table (api_main_t * am)
225{
226#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
Gabriel Ganneda8b9a82017-01-03 14:07:19 +0100227 foreach_vl_msg_name_crc_vxlan_gpe;
Pavel Kotucek296b2012016-12-19 14:47:09 +0100228#undef _
229}
230
231static clib_error_t *
232vxlan_gpe_api_hookup (vlib_main_t * vm)
233{
Dave Barach39d69112019-11-27 11:42:13 -0500234 api_main_t *am = vlibapi_get_main ();
Pavel Kotucek296b2012016-12-19 14:47:09 +0100235
236#define _(N,n) \
237 vl_msg_api_set_handlers(VL_API_##N, #n, \
238 vl_api_##n##_t_handler, \
239 vl_noop_handler, \
240 vl_api_##n##_t_endian, \
241 vl_api_##n##_t_print, \
242 sizeof(vl_api_##n##_t), 1);
243 foreach_vpe_api_msg;
244#undef _
245
Hongjun Ni04ffd0ad2017-06-23 00:18:40 +0800246 am->api_trace_cfg[VL_API_VXLAN_GPE_ADD_DEL_TUNNEL].size +=
247 17 * sizeof (u32);
248
Pavel Kotucek296b2012016-12-19 14:47:09 +0100249 /*
250 * Set up the (msg_name, crc, message-id) table
251 */
252 setup_message_id_table (am);
253
254 return 0;
255}
256
257VLIB_API_INIT_FUNCTION (vxlan_gpe_api_hookup);
258
259/*
260 * fd.io coding-style-patch-verification: ON
261 *
262 * Local Variables:
263 * eval: (c-set-style "gnu")
264 * End:
265 */