blob: 0d6c33bfda6e0a859e7191701a6a1021a03882a0 [file] [log] [blame]
Pavel Kotucek1099b0d2016-12-20 08:13:14 +01001/*
2 *------------------------------------------------------------------
3 * gre_api.c - gre 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
26#include <vnet/gre/gre.h>
27#include <vnet/fib/fib_table.h>
Neale Ranns5a8844b2019-04-16 07:15:35 +000028#include <vnet/ip/ip_types_api.h>
Pavel Kotucek1099b0d2016-12-20 08:13:14 +010029
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 \
Neale Ranns5a8844b2019-04-16 07:15:35 +000049_(GRE_TUNNEL_ADD_DEL, gre_tunnel_add_del) \
Pavel Kotucek1099b0d2016-12-20 08:13:14 +010050_(GRE_TUNNEL_DUMP, gre_tunnel_dump)
51
Neale Ranns5a8844b2019-04-16 07:15:35 +000052static int
53gre_tunnel_type_decode (vl_api_gre_tunnel_type_t in, gre_tunnel_type_t * out)
Pavel Kotucek1099b0d2016-12-20 08:13:14 +010054{
Neale Ranns5a8844b2019-04-16 07:15:35 +000055 in = clib_net_to_host_u32 (in);
Pavel Kotucek1099b0d2016-12-20 08:13:14 +010056
Neale Ranns5a8844b2019-04-16 07:15:35 +000057 switch (in)
58 {
59 case GRE_API_TUNNEL_TYPE_L3:
60 *out = GRE_TUNNEL_TYPE_L3;
61 return (0);
62 case GRE_API_TUNNEL_TYPE_TEB:
63 *out = GRE_TUNNEL_TYPE_TEB;
64 return (0);
65 case GRE_API_TUNNEL_TYPE_ERSPAN:
66 *out = GRE_TUNNEL_TYPE_ERSPAN;
67 return (0);
68 }
69
70 return (VNET_API_ERROR_INVALID_VALUE);
71}
72
73static vl_api_gre_tunnel_type_t
74gre_tunnel_type_encode (gre_tunnel_type_t in)
75{
76 vl_api_gre_tunnel_type_t out = GRE_API_TUNNEL_TYPE_L3;
77
78 switch (in)
79 {
80 case GRE_TUNNEL_TYPE_L3:
81 out = GRE_API_TUNNEL_TYPE_L3;
82 break;
83 case GRE_TUNNEL_TYPE_TEB:
84 out = GRE_API_TUNNEL_TYPE_TEB;
85 break;
86 case GRE_TUNNEL_TYPE_ERSPAN:
87 out = GRE_API_TUNNEL_TYPE_ERSPAN;
88 break;
89 }
90
91 out = clib_net_to_host_u32 (out);
92
93 return (out);
94}
95
96static void vl_api_gre_tunnel_add_del_t_handler
97 (vl_api_gre_tunnel_add_del_t * mp)
98{
99 vnet_gre_tunnel_add_del_args_t _a = { }, *a = &_a;
100 vl_api_gre_tunnel_add_del_reply_t *rmp;
101 u32 sw_if_index = ~0;
102 ip46_type_t itype[2];
103 int rv = 0;
104
105 itype[0] = ip_address_decode (&mp->tunnel.src, &a->src);
106 itype[1] = ip_address_decode (&mp->tunnel.dst, &a->dst);
107
108 if (itype[0] != itype[1])
109 {
110 rv = VNET_API_ERROR_INVALID_PROTOCOL;
111 goto out;
112 }
113
114 if (ip46_address_is_equal (&a->src, &a->dst))
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100115 {
116 rv = VNET_API_ERROR_SAME_SRC_DST;
117 goto out;
118 }
Neale Ranns5a8844b2019-04-16 07:15:35 +0000119
120 rv = gre_tunnel_type_decode (mp->tunnel.type, &a->type);
121
122 if (rv)
123 goto out;
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100124
125 a->is_add = mp->is_add;
Neale Ranns5a8844b2019-04-16 07:15:35 +0000126 a->is_ipv6 = (itype[0] == IP46_TYPE_IP6);
127 a->instance = ntohl (mp->tunnel.instance);
128 a->session_id = ntohs (mp->tunnel.session_id);
129 a->outer_fib_id = ntohl (mp->tunnel.outer_fib_id);
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100130
Neale Ranns5a8844b2019-04-16 07:15:35 +0000131 rv = vnet_gre_tunnel_add_del (a, &sw_if_index);
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100132
133out:
134 /* *INDENT-OFF* */
Neale Ranns5a8844b2019-04-16 07:15:35 +0000135 REPLY_MACRO2(VL_API_GRE_TUNNEL_ADD_DEL_REPLY,
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100136 ({
137 rmp->sw_if_index = ntohl (sw_if_index);
138 }));
139 /* *INDENT-ON* */
140}
141
142static void send_gre_tunnel_details
Florin Coras6c4dae22018-01-09 06:39:23 -0800143 (gre_tunnel_t * t, vl_api_registration_t * reg, u32 context)
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100144{
145 vl_api_gre_tunnel_details_t *rmp;
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100146
147 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400148 clib_memset (rmp, 0, sizeof (*rmp));
John Loa43ccae2018-02-13 17:15:23 -0500149 rmp->_vl_msg_id = htons (VL_API_GRE_TUNNEL_DETAILS);
Neale Ranns5a8844b2019-04-16 07:15:35 +0000150
151 ip_address_encode (&t->tunnel_src, IP46_TYPE_ANY, &rmp->tunnel.src);
152 ip_address_encode (&t->tunnel_dst.fp_addr, IP46_TYPE_ANY, &rmp->tunnel.dst);
153
154 rmp->tunnel.outer_fib_id =
155 htonl (fib_table_get_table_id
156 (t->outer_fib_index, t->tunnel_dst.fp_proto));
157
158 rmp->tunnel.type = gre_tunnel_type_encode (t->type);
159 rmp->tunnel.instance = htonl (t->user_instance);
160 rmp->tunnel.sw_if_index = htonl (t->sw_if_index);
161 rmp->tunnel.session_id = htons (t->session_id);
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100162 rmp->context = context;
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100163
Florin Coras6c4dae22018-01-09 06:39:23 -0800164 vl_api_send_msg (reg, (u8 *) rmp);
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100165}
166
167static void
168vl_api_gre_tunnel_dump_t_handler (vl_api_gre_tunnel_dump_t * mp)
169{
Florin Coras6c4dae22018-01-09 06:39:23 -0800170 vl_api_registration_t *reg;
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100171 gre_main_t *gm = &gre_main;
172 gre_tunnel_t *t;
173 u32 sw_if_index;
174
Florin Coras6c4dae22018-01-09 06:39:23 -0800175 reg = vl_api_client_index_to_registration (mp->client_index);
176 if (!reg)
177 return;
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100178
179 sw_if_index = ntohl (mp->sw_if_index);
180
181 if (~0 == sw_if_index)
182 {
183 /* *INDENT-OFF* */
184 pool_foreach (t, gm->tunnels,
185 ({
Florin Coras6c4dae22018-01-09 06:39:23 -0800186 send_gre_tunnel_details(t, reg, mp->context);
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100187 }));
188 /* *INDENT-ON* */
189 }
190 else
191 {
192 if ((sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index)) ||
193 (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
194 {
195 return;
196 }
197 t = &gm->tunnels[gm->tunnel_index_by_sw_if_index[sw_if_index]];
Florin Coras6c4dae22018-01-09 06:39:23 -0800198 send_gre_tunnel_details (t, reg, mp->context);
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100199 }
200}
201
202/*
203 * gre_api_hookup
204 * Add vpe's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -0500205 * vlib has already mapped shared memory and
Pavel Kotucek1099b0d2016-12-20 08:13:14 +0100206 * added the client registration handlers.
207 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
208 */
209#define vl_msg_name_crc_list
210#include <vnet/vnet_all_api_h.h>
211#undef vl_msg_name_crc_list
212
213static void
214setup_message_id_table (api_main_t * am)
215{
216#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
217 foreach_vl_msg_name_crc_gre;
218#undef _
219}
220
221static clib_error_t *
222gre_api_hookup (vlib_main_t * vm)
223{
224 api_main_t *am = &api_main;
225
226#define _(N,n) \
227 vl_msg_api_set_handlers(VL_API_##N, #n, \
228 vl_api_##n##_t_handler, \
229 vl_noop_handler, \
230 vl_api_##n##_t_endian, \
231 vl_api_##n##_t_print, \
232 sizeof(vl_api_##n##_t), 1);
233 foreach_vpe_api_msg;
234#undef _
235
236 /*
237 * Set up the (msg_name, crc, message-id) table
238 */
239 setup_message_id_table (am);
240
241 return 0;
242}
243
244VLIB_API_INIT_FUNCTION (gre_api_hookup);
245
246/*
247 * fd.io coding-style-patch-verification: ON
248 *
249 * Local Variables:
250 * eval: (c-set-style "gnu")
251 * End:
252 */