blob: cf3f7fe9670d34eb8d8c63b72bf135c61781fd35 [file] [log] [blame]
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001/*
2 *------------------------------------------------------------------
3 * vxlan_gbp_api.c - vxlan gbp api
4 *
5 * Copyright (c) 2018 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>
26#include <vnet/vxlan-gbp/vxlan_gbp.h>
27#include <vnet/fib/fib_table.h>
Neale Ranns79a05f52018-09-11 07:39:43 -070028#include <vnet/ip/ip_types_api.h>
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020029
30#include <vnet/vnet_msg_enum.h>
31
32#define vl_typedefs /* define message structures */
33#include <vnet/vnet_all_api_h.h>
34#undef vl_typedefs
35
36#define vl_endianfun /* define message structures */
37#include <vnet/vnet_all_api_h.h>
38#undef vl_endianfun
39
40/* instantiate all the print functions we know about */
41#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
42#define vl_printfun
43#include <vnet/vnet_all_api_h.h>
44#undef vl_printfun
45
46#include <vlibapi/api_helper_macros.h>
47
48#define foreach_vpe_api_msg \
49_(SW_INTERFACE_SET_VXLAN_GBP_BYPASS, sw_interface_set_vxlan_gbp_bypass) \
Neale Ranns79a05f52018-09-11 07:39:43 -070050_(VXLAN_GBP_TUNNEL_ADD_DEL, vxlan_gbp_tunnel_add_del) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020051_(VXLAN_GBP_TUNNEL_DUMP, vxlan_gbp_tunnel_dump)
52
53static void
54 vl_api_sw_interface_set_vxlan_gbp_bypass_t_handler
55 (vl_api_sw_interface_set_vxlan_gbp_bypass_t * mp)
56{
57 vl_api_sw_interface_set_vxlan_gbp_bypass_reply_t *rmp;
58 int rv = 0;
59 u32 sw_if_index = ntohl (mp->sw_if_index);
60
61 VALIDATE_SW_IF_INDEX (mp);
62
63 vnet_int_vxlan_gbp_bypass_mode (sw_if_index, mp->is_ipv6, mp->enable);
64 BAD_SW_IF_INDEX_LABEL;
65
66 REPLY_MACRO (VL_API_SW_INTERFACE_SET_VXLAN_GBP_BYPASS_REPLY);
67}
68
Neale Ranns79a05f52018-09-11 07:39:43 -070069static void vl_api_vxlan_gbp_tunnel_add_del_t_handler
70 (vl_api_vxlan_gbp_tunnel_add_del_t * mp)
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020071{
Neale Ranns79a05f52018-09-11 07:39:43 -070072 vl_api_vxlan_gbp_tunnel_add_del_reply_t *rmp;
73 ip46_address_t src, dst;
74 ip46_type_t itype;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020075 int rv = 0;
76 u32 fib_index;
77
Neale Ranns79a05f52018-09-11 07:39:43 -070078 itype = ip_address_decode (&mp->tunnel.src, &src);
79 itype = ip_address_decode (&mp->tunnel.dst, &dst);
80
81 fib_index = fib_table_find (fib_proto_from_ip46 (itype),
82 ntohl (mp->tunnel.encap_table_id));
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020083 if (fib_index == ~0)
84 {
85 rv = VNET_API_ERROR_NO_SUCH_FIB;
86 goto out;
87 }
88
Neale Ranns79a05f52018-09-11 07:39:43 -070089 vnet_vxlan_gbp_tunnel_add_del_args_t a = {
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020090 .is_add = mp->is_add,
Neale Ranns79a05f52018-09-11 07:39:43 -070091 .is_ip6 = (itype == IP46_TYPE_IP6),
92 .instance = ntohl (mp->tunnel.instance),
93 .mcast_sw_if_index = ntohl (mp->tunnel.mcast_sw_if_index),
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020094 .encap_fib_index = fib_index,
Neale Ranns79a05f52018-09-11 07:39:43 -070095 .decap_next_index = ntohl (mp->tunnel.decap_next_index),
96 .vni = ntohl (mp->tunnel.vni),
97 .dst = dst,
98 .src = src,
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020099 };
100
101 /* Check src & dst are different */
102 if (ip46_address_cmp (&a.dst, &a.src) == 0)
103 {
104 rv = VNET_API_ERROR_SAME_SRC_DST;
105 goto out;
106 }
107 if (ip46_address_is_multicast (&a.dst) &&
108 !vnet_sw_if_index_is_api_valid (a.mcast_sw_if_index))
109 {
110 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
111 goto out;
112 }
113
114 u32 sw_if_index = ~0;
Neale Ranns79a05f52018-09-11 07:39:43 -0700115 rv = vnet_vxlan_gbp_tunnel_add_del (&a, &sw_if_index);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200116
117out:
118 /* *INDENT-OFF* */
Neale Ranns79a05f52018-09-11 07:39:43 -0700119 REPLY_MACRO2(VL_API_VXLAN_GBP_TUNNEL_ADD_DEL_REPLY,
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200120 ({
121 rmp->sw_if_index = ntohl (sw_if_index);
122 }));
123 /* *INDENT-ON* */
124}
125
126static void send_vxlan_gbp_tunnel_details
127 (vxlan_gbp_tunnel_t * t, vl_api_registration_t * reg, u32 context)
128{
129 vl_api_vxlan_gbp_tunnel_details_t *rmp;
Neale Ranns79a05f52018-09-11 07:39:43 -0700130 ip46_type_t itype = (ip46_address_is_ip4 (&t->dst) ?
131 IP46_TYPE_IP4 : IP46_TYPE_IP6);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200132
133 rmp = vl_msg_api_alloc (sizeof (*rmp));
134 memset (rmp, 0, sizeof (*rmp));
135 rmp->_vl_msg_id = ntohs (VL_API_VXLAN_GBP_TUNNEL_DETAILS);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200136
Neale Ranns79a05f52018-09-11 07:39:43 -0700137 ip_address_encode (&t->src, itype, &rmp->tunnel.src);
138 ip_address_encode (&t->dst, itype, &rmp->tunnel.dst);
139 rmp->tunnel.encap_table_id =
140 fib_table_get_table_id (t->encap_fib_index, fib_proto_from_ip46 (itype));
141
142 rmp->tunnel.instance = htonl (t->user_instance);
143 rmp->tunnel.mcast_sw_if_index = htonl (t->mcast_sw_if_index);
144 rmp->tunnel.vni = htonl (t->vni);
145 rmp->tunnel.decap_next_index = htonl (t->decap_next_index);
146 rmp->tunnel.sw_if_index = htonl (t->sw_if_index);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200147 rmp->context = context;
148
149 vl_api_send_msg (reg, (u8 *) rmp);
150}
151
152static void vl_api_vxlan_gbp_tunnel_dump_t_handler
153 (vl_api_vxlan_gbp_tunnel_dump_t * mp)
154{
155 vl_api_registration_t *reg;
156 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
157 vxlan_gbp_tunnel_t *t;
158 u32 sw_if_index;
159
160 reg = vl_api_client_index_to_registration (mp->client_index);
161 if (!reg)
162 return;
163
164 sw_if_index = ntohl (mp->sw_if_index);
165
166 if (~0 == sw_if_index)
167 {
168 /* *INDENT-OFF* */
169 pool_foreach (t, vxm->tunnels,
170 ({
171 send_vxlan_gbp_tunnel_details(t, reg, mp->context);
172 }));
173 /* *INDENT-ON* */
174 }
175 else
176 {
177 if ((sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) ||
178 (~0 == vxm->tunnel_index_by_sw_if_index[sw_if_index]))
179 {
180 return;
181 }
182 t = &vxm->tunnels[vxm->tunnel_index_by_sw_if_index[sw_if_index]];
183 send_vxlan_gbp_tunnel_details (t, reg, mp->context);
184 }
185}
186
187/*
188 * vpe_api_hookup
189 * Add vpe's API message handlers to the table.
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700190 * vlib has already mapped shared memory and
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200191 * added the client registration handlers.
192 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
193 */
194#define vl_msg_name_crc_list
195#include <vnet/vnet_all_api_h.h>
196#undef vl_msg_name_crc_list
197
198static void
199setup_message_id_table (api_main_t * am)
200{
201#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
202 foreach_vl_msg_name_crc_vxlan_gbp;
203#undef _
204}
205
206static clib_error_t *
207vxlan_gbp_api_hookup (vlib_main_t * vm)
208{
209 api_main_t *am = &api_main;
210
211#define _(N,n) \
212 vl_msg_api_set_handlers(VL_API_##N, #n, \
213 vl_api_##n##_t_handler, \
214 vl_noop_handler, \
215 vl_api_##n##_t_endian, \
216 vl_api_##n##_t_print, \
217 sizeof(vl_api_##n##_t), 1);
218 foreach_vpe_api_msg;
219#undef _
220
221 /*
222 * Set up the (msg_name, crc, message-id) table
223 */
224 setup_message_id_table (am);
225
226 return 0;
227}
228
229VLIB_API_INIT_FUNCTION (vxlan_gbp_api_hookup);
230
231/*
232 * fd.io coding-style-patch-verification: ON
233 *
234 * Local Variables:
235 * eval: (c-set-style "gnu")
236 * End:
237 */