blob: e20347a46f68cc83f1aafe95443593a2a9ab458b [file] [log] [blame]
Pavel Kotucekabea9662016-12-21 15:50:08 +01001/*
2 *------------------------------------------------------------------
3 * lisp_gpe_api.c - lisp_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/lisp-gpe/lisp_gpe.h>
Filip Tehlar5fae99c2017-01-18 12:57:37 +010026#include <vnet/lisp-gpe/lisp_gpe_adjacency.h>
27#include <vnet/lisp-gpe/lisp_gpe_tunnel.h>
Pavel Kotucekabea9662016-12-21 15:50:08 +010028#include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h>
29#include <vnet/lisp-gpe/lisp_gpe_tenant.h>
Florin Corasa4e63e52017-06-07 21:50:57 -070030#include <vnet/fib/fib_table.h>
Pavel Kotucekabea9662016-12-21 15:50:08 +010031#include <vnet/vnet_msg_enum.h>
Jakub Grajciar58db6e12020-01-30 13:26:43 +010032#include <vnet/ip/ip_types_api.h>
33#include <vnet/ethernet/ethernet_types_api.h>
34#include <vnet/lisp-gpe/lisp_types_api.h>
Pavel Kotucekabea9662016-12-21 15:50:08 +010035
Filip Tehlar82786c42017-02-20 15:20:37 +010036#define vl_api_gpe_locator_pair_t_endian vl_noop_handler
37#define vl_api_gpe_locator_pair_t_print vl_noop_handler
38#define vl_api_gpe_add_del_fwd_entry_t_endian vl_noop_handler
39#define vl_api_gpe_add_del_fwd_entry_t_print vl_noop_handler
Filip Tehlarc3af7bf2017-01-13 14:13:09 +010040
Pavel Kotucekabea9662016-12-21 15:50:08 +010041#define vl_typedefs /* define message structures */
42#include <vnet/vnet_all_api_h.h>
43#undef vl_typedefs
44
45#define vl_endianfun /* define message structures */
46#include <vnet/vnet_all_api_h.h>
47#undef vl_endianfun
48
49/* instantiate all the print functions we know about */
50#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
51#define vl_printfun
52#include <vnet/vnet_all_api_h.h>
53#undef vl_printfun
54
55#include <vlibapi/api_helper_macros.h>
56
Florin Corasa4e63e52017-06-07 21:50:57 -070057#define foreach_vpe_api_msg \
58_(GPE_ADD_DEL_FWD_ENTRY, gpe_add_del_fwd_entry) \
59_(GPE_FWD_ENTRIES_GET, gpe_fwd_entries_get) \
60_(GPE_FWD_ENTRY_PATH_DUMP, gpe_fwd_entry_path_dump) \
61_(GPE_ENABLE_DISABLE, gpe_enable_disable) \
62_(GPE_ADD_DEL_IFACE, gpe_add_del_iface) \
63_(GPE_FWD_ENTRY_VNIS_GET, gpe_fwd_entry_vnis_get) \
64_(GPE_SET_ENCAP_MODE, gpe_set_encap_mode) \
65_(GPE_GET_ENCAP_MODE, gpe_get_encap_mode) \
66_(GPE_ADD_DEL_NATIVE_FWD_RPATH, gpe_add_del_native_fwd_rpath) \
67_(GPE_NATIVE_FWD_RPATHS_GET, gpe_native_fwd_rpaths_get)
Pavel Kotucekabea9662016-12-21 15:50:08 +010068
69static locator_pair_t *
Filip Tehlar82786c42017-02-20 15:20:37 +010070unformat_gpe_loc_pairs (void *locs, u32 rloc_num)
Pavel Kotucekabea9662016-12-21 15:50:08 +010071{
72 u32 i;
Filip Tehlarc3af7bf2017-01-13 14:13:09 +010073 locator_pair_t *pairs = 0, pair, *p;
Filip Tehlar82786c42017-02-20 15:20:37 +010074 vl_api_gpe_locator_t *r;
Pavel Kotucekabea9662016-12-21 15:50:08 +010075
76 for (i = 0; i < rloc_num; i++)
77 {
78 /* local locator */
Filip Tehlar82786c42017-02-20 15:20:37 +010079 r = &((vl_api_gpe_locator_t *) locs)[i];
Dave Barachb7b92992018-10-17 10:38:51 -040080 clib_memset (&pair, 0, sizeof (pair));
Jakub Grajciar58db6e12020-01-30 13:26:43 +010081 ip_address_decode2 (&r->addr, &pair.lcl_loc);
Pavel Kotucekabea9662016-12-21 15:50:08 +010082
Pavel Kotucekabea9662016-12-21 15:50:08 +010083 pair.weight = r->weight;
Pavel Kotucekabea9662016-12-21 15:50:08 +010084 vec_add1 (pairs, pair);
85 }
Filip Tehlarc3af7bf2017-01-13 14:13:09 +010086
87 for (i = rloc_num; i < rloc_num * 2; i++)
88 {
89 /* remote locators */
Filip Tehlar82786c42017-02-20 15:20:37 +010090 r = &((vl_api_gpe_locator_t *) locs)[i];
Filip Tehlarc3af7bf2017-01-13 14:13:09 +010091 p = &pairs[i - rloc_num];
Jakub Grajciar58db6e12020-01-30 13:26:43 +010092 ip_address_decode2 (&r->addr, &p->rmt_loc);
Filip Tehlarc3af7bf2017-01-13 14:13:09 +010093 }
Pavel Kotucekabea9662016-12-21 15:50:08 +010094 return pairs;
95}
96
Pavel Kotucekabea9662016-12-21 15:50:08 +010097static void
Filip Tehlar82786c42017-02-20 15:20:37 +010098 gpe_fwd_entry_path_dump_t_net_to_host
99 (vl_api_gpe_fwd_entry_path_dump_t * mp)
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100100{
101 mp->fwd_entry_index = clib_net_to_host_u32 (mp->fwd_entry_index);
102}
103
104static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100105lisp_api_set_locator (vl_api_gpe_locator_t * loc,
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100106 const ip_address_t * addr, u8 weight)
107{
108 loc->weight = weight;
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100109 ip_address_encode2 (addr, &loc->addr);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100110}
111
112static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100113 vl_api_gpe_fwd_entry_path_dump_t_handler
114 (vl_api_gpe_fwd_entry_path_dump_t * mp)
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100115{
116 lisp_fwd_path_t *path;
Filip Tehlar82786c42017-02-20 15:20:37 +0100117 vl_api_gpe_fwd_entry_path_details_t *rmp = NULL;
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100118 lisp_gpe_main_t *lgm = &lisp_gpe_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800119 vl_api_registration_t *reg;
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100120 lisp_gpe_fwd_entry_t *lfe;
121
Filip Tehlar82786c42017-02-20 15:20:37 +0100122 gpe_fwd_entry_path_dump_t_net_to_host (mp);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100123
Florin Coras6c4dae22018-01-09 06:39:23 -0800124 reg = vl_api_client_index_to_registration (mp->client_index);
125 if (!reg)
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100126 return;
127
128 if (pool_is_free_index (lgm->lisp_fwd_entry_pool, mp->fwd_entry_index))
129 return;
130
131 lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, mp->fwd_entry_index);
132
133 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type)
134 return;
135
136 vec_foreach (path, lfe->paths)
137 {
138 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400139 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100140 const lisp_gpe_tunnel_t *lgt;
141
142 rmp->_vl_msg_id =
Filip Tehlar82786c42017-02-20 15:20:37 +0100143 clib_host_to_net_u16 (VL_API_GPE_FWD_ENTRY_PATH_DETAILS);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100144
145 const lisp_gpe_adjacency_t *ladj =
146 lisp_gpe_adjacency_get (path->lisp_adj);
147 lisp_api_set_locator (&rmp->rmt_loc, &ladj->remote_rloc, path->weight);
148 lgt = lisp_gpe_tunnel_get (ladj->tunnel_index);
149 lisp_api_set_locator (&rmp->lcl_loc, &lgt->key->lcl, path->weight);
150
151 rmp->context = mp->context;
Florin Coras6c4dae22018-01-09 06:39:23 -0800152 vl_api_send_msg (reg, (u8 *) rmp);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100153 }
154}
155
156static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100157gpe_fwd_entries_copy (vl_api_gpe_fwd_entry_t * dst,
158 lisp_api_gpe_fwd_entry_t * src)
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100159{
160 lisp_api_gpe_fwd_entry_t *e;
161 u32 i = 0;
162
163 vec_foreach (e, src)
164 {
Dave Barachb7b92992018-10-17 10:38:51 -0400165 clib_memset (&dst[i], 0, sizeof (*dst));
Filip Tehlar719aef42017-06-05 09:50:38 +0200166 dst[i].dp_table = e->dp_table;
167 dst[i].fwd_entry_index = e->fwd_entry_index;
168 dst[i].vni = e->vni;
169 dst[i].action = e->action;
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100170 switch (fid_addr_type (&e->leid))
171 {
172 case FID_ADDR_IP_PREF:
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100173 dst[i].leid.type = EID_TYPE_API_PREFIX;
174 dst[i].reid.type = EID_TYPE_API_PREFIX;
175 ip_prefix_encode2 (&fid_addr_ippref (&e->leid),
176 &dst[i].leid.address.prefix);
177 ip_prefix_encode2 (&fid_addr_ippref (&e->reid),
178 &dst[i].reid.address.prefix);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100179 break;
180 case FID_ADDR_MAC:
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100181 mac_address_encode ((mac_address_t *) fid_addr_mac (&e->leid),
182 dst[i].leid.address.mac);
183 mac_address_encode ((mac_address_t *) fid_addr_mac (&e->reid),
184 dst[i].reid.address.mac);
185 dst[i].leid.type = EID_TYPE_API_MAC;
186 dst[i].reid.type = EID_TYPE_API_MAC;
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100187 break;
188 default:
189 clib_warning ("unknown fid type %d!", fid_addr_type (&e->leid));
190 break;
191 }
192 i++;
193 }
194}
195
196static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100197gpe_fwd_entries_get_t_net_to_host (vl_api_gpe_fwd_entries_get_t * mp)
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100198{
199 mp->vni = clib_net_to_host_u32 (mp->vni);
200}
201
202static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100203gpe_entry_t_host_to_net (vl_api_gpe_fwd_entry_t * e)
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100204{
205 e->fwd_entry_index = clib_host_to_net_u32 (e->fwd_entry_index);
206 e->dp_table = clib_host_to_net_u32 (e->dp_table);
Filip Tehlar0eb874e2017-05-18 14:23:32 +0200207 e->vni = clib_host_to_net_u32 (e->vni);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100208}
209
210static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100211 gpe_fwd_entries_get_reply_t_host_to_net
212 (vl_api_gpe_fwd_entries_get_reply_t * mp)
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100213{
214 u32 i;
Filip Tehlar82786c42017-02-20 15:20:37 +0100215 vl_api_gpe_fwd_entry_t *e;
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100216
217 for (i = 0; i < mp->count; i++)
218 {
219 e = &mp->entries[i];
Filip Tehlar82786c42017-02-20 15:20:37 +0100220 gpe_entry_t_host_to_net (e);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100221 }
222 mp->count = clib_host_to_net_u32 (mp->count);
223}
224
225static void
Filip Tehlar0eb874e2017-05-18 14:23:32 +0200226vl_api_gpe_fwd_entry_vnis_get_t_handler (vl_api_gpe_fwd_entry_vnis_get_t * mp)
227{
228 vl_api_gpe_fwd_entry_vnis_get_reply_t *rmp = 0;
229 hash_pair_t *p;
230 u32 i = 0;
231 int rv = 0;
232
233 u32 *vnis = vnet_lisp_gpe_get_fwd_entry_vnis ();
234 u32 size = hash_elts (vnis) * sizeof (u32);
235
236 /* *INDENT-OFF* */
237 REPLY_MACRO4 (VL_API_GPE_FWD_ENTRY_VNIS_GET_REPLY, size,
238 {
239 rmp->count = clib_host_to_net_u32 (hash_elts (vnis));
240 hash_foreach_pair (p, vnis,
241 ({
242 rmp->vnis[i++] = clib_host_to_net_u32 (p->key);
243 }));
244 });
245 /* *INDENT-ON* */
246
247 hash_free (vnis);
248}
249
250static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100251vl_api_gpe_fwd_entries_get_t_handler (vl_api_gpe_fwd_entries_get_t * mp)
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100252{
253 lisp_api_gpe_fwd_entry_t *e;
Filip Tehlar82786c42017-02-20 15:20:37 +0100254 vl_api_gpe_fwd_entries_get_reply_t *rmp = 0;
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100255 u32 size = 0;
256 int rv = 0;
257
Filip Tehlar82786c42017-02-20 15:20:37 +0100258 gpe_fwd_entries_get_t_net_to_host (mp);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100259
260 e = vnet_lisp_gpe_fwd_entries_get_by_vni (mp->vni);
Filip Tehlar82786c42017-02-20 15:20:37 +0100261 size = vec_len (e) * sizeof (vl_api_gpe_fwd_entry_t);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100262
263 /* *INDENT-OFF* */
Filip Tehlar82786c42017-02-20 15:20:37 +0100264 REPLY_MACRO4 (VL_API_GPE_FWD_ENTRIES_GET_REPLY, size,
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100265 {
266 rmp->count = vec_len (e);
Filip Tehlar82786c42017-02-20 15:20:37 +0100267 gpe_fwd_entries_copy (rmp->entries, e);
268 gpe_fwd_entries_get_reply_t_host_to_net (rmp);
Filip Tehlar5fae99c2017-01-18 12:57:37 +0100269 });
270 /* *INDENT-ON* */
271
272 vec_free (e);
273}
274
275static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100276gpe_add_del_fwd_entry_t_net_to_host (vl_api_gpe_add_del_fwd_entry_t * mp)
Filip Tehlarc3af7bf2017-01-13 14:13:09 +0100277{
278 mp->vni = clib_net_to_host_u32 (mp->vni);
279 mp->dp_table = clib_net_to_host_u32 (mp->dp_table);
280 mp->loc_num = clib_net_to_host_u32 (mp->loc_num);
281}
282
283static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100284vl_api_gpe_add_del_fwd_entry_t_handler (vl_api_gpe_add_del_fwd_entry_t * mp)
Pavel Kotucekabea9662016-12-21 15:50:08 +0100285{
Filip Tehlar82786c42017-02-20 15:20:37 +0100286 vl_api_gpe_add_del_fwd_entry_reply_t *rmp;
Pavel Kotucekabea9662016-12-21 15:50:08 +0100287 vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
288 locator_pair_t *pairs = 0;
289 int rv = 0;
290
Filip Tehlar82786c42017-02-20 15:20:37 +0100291 gpe_add_del_fwd_entry_t_net_to_host (mp);
Dave Barachb7b92992018-10-17 10:38:51 -0400292 clib_memset (a, 0, sizeof (a[0]));
Pavel Kotucekabea9662016-12-21 15:50:08 +0100293
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100294 rv = unformat_lisp_eid_api (&a->rmt_eid, mp->vni, &mp->rmt_eid);
295 rv |= unformat_lisp_eid_api (&a->lcl_eid, mp->vni, &mp->lcl_eid);
Pavel Kotucekabea9662016-12-21 15:50:08 +0100296
Filip Tehlarc3af7bf2017-01-13 14:13:09 +0100297 if (mp->loc_num % 2 != 0)
298 {
299 rv = -1;
300 goto send_reply;
301 }
Filip Tehlar82786c42017-02-20 15:20:37 +0100302 pairs = unformat_gpe_loc_pairs (mp->locs, mp->loc_num / 2);
Pavel Kotucekabea9662016-12-21 15:50:08 +0100303
Filip Tehlar0eb874e2017-05-18 14:23:32 +0200304 if (rv)
Pavel Kotucekabea9662016-12-21 15:50:08 +0100305 goto send_reply;
306
307 a->is_add = mp->is_add;
308 a->locator_pairs = pairs;
309 a->dp_table = mp->dp_table;
310 a->vni = mp->vni;
311 a->action = mp->action;
Filip Tehlar0eb874e2017-05-18 14:23:32 +0200312 if (mp->loc_num == 0)
313 a->is_negative = 1;
Pavel Kotucekabea9662016-12-21 15:50:08 +0100314
315 rv = vnet_lisp_gpe_add_del_fwd_entry (a, 0);
316 vec_free (pairs);
317send_reply:
Filip Tehlar560274d2017-06-05 13:40:13 +0200318 /* *INDENT-OFF* */
319 REPLY_MACRO2 (VL_API_GPE_ADD_DEL_FWD_ENTRY_REPLY,
320 {
321 rmp->fwd_entry_index = clib_host_to_net_u32 (a->fwd_entry_index);
322 });
323 /* *INDENT-ON* */
Pavel Kotucekabea9662016-12-21 15:50:08 +0100324}
325
326static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100327vl_api_gpe_enable_disable_t_handler (vl_api_gpe_enable_disable_t * mp)
Pavel Kotucekabea9662016-12-21 15:50:08 +0100328{
Filip Tehlar82786c42017-02-20 15:20:37 +0100329 vl_api_gpe_enable_disable_reply_t *rmp;
Pavel Kotucekabea9662016-12-21 15:50:08 +0100330 int rv = 0;
331 vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a;
332
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100333 a->is_en = mp->is_enable;
Pavel Kotucekabea9662016-12-21 15:50:08 +0100334 vnet_lisp_gpe_enable_disable (a);
335
Filip Tehlar82786c42017-02-20 15:20:37 +0100336 REPLY_MACRO (VL_API_GPE_ENABLE_DISABLE_REPLY);
Pavel Kotucekabea9662016-12-21 15:50:08 +0100337}
338
339static void
Filip Tehlar82786c42017-02-20 15:20:37 +0100340vl_api_gpe_add_del_iface_t_handler (vl_api_gpe_add_del_iface_t * mp)
Pavel Kotucekabea9662016-12-21 15:50:08 +0100341{
Filip Tehlar82786c42017-02-20 15:20:37 +0100342 vl_api_gpe_add_del_iface_reply_t *rmp;
Pavel Kotucekabea9662016-12-21 15:50:08 +0100343 int rv = 0;
Florin Corasf53a8ad2017-06-15 15:07:32 -0700344 u32 vni, dp_table;
345
346 vni = clib_net_to_host_u32 (mp->vni);
347 dp_table = clib_net_to_host_u32 (mp->dp_table);
Pavel Kotucekabea9662016-12-21 15:50:08 +0100348
349 if (mp->is_l2)
350 {
351 if (mp->is_add)
352 {
Florin Corasf53a8ad2017-06-15 15:07:32 -0700353 if (~0 == lisp_gpe_tenant_l2_iface_add_or_lock (vni, dp_table))
Pavel Kotucekabea9662016-12-21 15:50:08 +0100354 rv = 1;
355 }
356 else
Florin Corasf53a8ad2017-06-15 15:07:32 -0700357 lisp_gpe_tenant_l2_iface_unlock (vni);
Pavel Kotucekabea9662016-12-21 15:50:08 +0100358 }
359 else
360 {
361 if (mp->is_add)
362 {
Filip Tehlar0a8840d2017-10-16 05:48:23 -0700363 if (~0 == lisp_gpe_tenant_l3_iface_add_or_lock (vni, dp_table, 1))
Pavel Kotucekabea9662016-12-21 15:50:08 +0100364 rv = 1;
365 }
366 else
Florin Corasf53a8ad2017-06-15 15:07:32 -0700367 lisp_gpe_tenant_l3_iface_unlock (vni);
Pavel Kotucekabea9662016-12-21 15:50:08 +0100368 }
369
Filip Tehlar82786c42017-02-20 15:20:37 +0100370 REPLY_MACRO (VL_API_GPE_ADD_DEL_IFACE_REPLY);
Pavel Kotucekabea9662016-12-21 15:50:08 +0100371}
372
Filip Tehlar3e7b56932017-02-21 18:28:34 +0100373static void
374vl_api_gpe_set_encap_mode_t_handler (vl_api_gpe_set_encap_mode_t * mp)
375{
376 vl_api_gpe_set_encap_mode_reply_t *rmp;
377 int rv = 0;
378
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100379 rv = vnet_gpe_set_encap_mode (mp->is_vxlan);
Filip Tehlar3e7b56932017-02-21 18:28:34 +0100380 REPLY_MACRO (VL_API_GPE_SET_ENCAP_MODE_REPLY);
381}
382
383static void
384vl_api_gpe_get_encap_mode_t_handler (vl_api_gpe_get_encap_mode_t * mp)
385{
386 vl_api_gpe_get_encap_mode_reply_t *rmp;
387 int rv = 0;
388
389 /* *INDENT-OFF* */
390 REPLY_MACRO2 (VL_API_GPE_GET_ENCAP_MODE_REPLY,
391 ({
392 rmp->encap_mode = vnet_gpe_get_encap_mode ();
393 }));
394 /* *INDENT-ON* */
395}
396
Florin Corasa4e63e52017-06-07 21:50:57 -0700397static void
398 vl_api_gpe_add_del_native_fwd_rpath_t_handler
399 (vl_api_gpe_add_del_native_fwd_rpath_t * mp)
400{
Filip Tehlarb4243aa2017-06-14 14:39:42 +0200401 vl_api_gpe_add_del_native_fwd_rpath_reply_t *rmp;
Florin Corasa4e63e52017-06-07 21:50:57 -0700402 vnet_gpe_native_fwd_rpath_args_t _a, *a = &_a;
403 int rv = 0;
404
Dave Barachb7b92992018-10-17 10:38:51 -0400405 clib_memset (a, 0, sizeof (a[0]));
Florin Corasa4e63e52017-06-07 21:50:57 -0700406
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100407 if (mp->nh_addr.af)
408 clib_memcpy (&a->rpath.frp_addr.ip6, mp->nh_addr.un.ip6,
409 sizeof (ip6_address_t));
Florin Corasa4e63e52017-06-07 21:50:57 -0700410 else
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100411 clib_memcpy (&a->rpath.frp_addr.ip4, mp->nh_addr.un.ip4,
412 sizeof (ip4_address_t));
Florin Corasa4e63e52017-06-07 21:50:57 -0700413
414 a->is_add = mp->is_add;
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100415 a->rpath.frp_proto = mp->nh_addr.af ? DPO_PROTO_IP6 : DPO_PROTO_IP4;
Neale Rannsda78f952017-05-24 09:15:43 -0700416 a->rpath.frp_fib_index =
417 fib_table_find (dpo_proto_to_fib (a->rpath.frp_proto),
418 clib_net_to_host_u32 (mp->table_id));
Filip Tehlarb4243aa2017-06-14 14:39:42 +0200419 if (~0 == a->rpath.frp_fib_index)
420 {
421 rv = VNET_API_ERROR_INVALID_VALUE;
422 goto done;
423 }
424
Florin Corasa4e63e52017-06-07 21:50:57 -0700425 a->rpath.frp_sw_if_index = clib_net_to_host_u32 (mp->nh_sw_if_index);
426 a->rpath.frp_weight = 1;
427
428 rv = vnet_gpe_add_del_native_fwd_rpath (a);
Filip Tehlarb4243aa2017-06-14 14:39:42 +0200429done:
Florin Corasa4e63e52017-06-07 21:50:57 -0700430 REPLY_MACRO (VL_API_GPE_ADD_DEL_NATIVE_FWD_RPATH_REPLY);
431}
432
433static void
434gpe_native_fwd_rpaths_copy (vl_api_gpe_native_fwd_rpath_t * dst,
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100435 fib_route_path_t * src)
Florin Corasa4e63e52017-06-07 21:50:57 -0700436{
437 fib_route_path_t *e;
Florin Corasb5c29f92017-06-15 15:44:14 -0700438 fib_table_t *table;
Florin Corasa4e63e52017-06-07 21:50:57 -0700439 u32 i = 0;
440
441 vec_foreach (e, src)
442 {
Dave Barachb7b92992018-10-17 10:38:51 -0400443 clib_memset (&dst[i], 0, sizeof (*dst));
Neale Rannsda78f952017-05-24 09:15:43 -0700444 table = fib_table_get (e->frp_fib_index, dpo_proto_to_fib (e->frp_proto));
Florin Corasb5c29f92017-06-15 15:44:14 -0700445 dst[i].fib_index = table->ft_table_id;
Florin Coras27b390e2017-06-09 10:22:22 -0700446 dst[i].nh_sw_if_index = e->frp_sw_if_index;
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100447 ip_address_encode (&e->frp_addr, IP46_TYPE_ANY, &dst[i].nh_addr);
Filip Tehlarb4243aa2017-06-14 14:39:42 +0200448 i++;
Florin Corasa4e63e52017-06-07 21:50:57 -0700449 }
450}
451
452static void
453gpe_native_fwd_rpath_t_host_to_net (vl_api_gpe_native_fwd_rpath_t * e)
454{
455 e->fib_index = clib_host_to_net_u32 (e->fib_index);
456 e->nh_sw_if_index = clib_host_to_net_u32 (e->nh_sw_if_index);
457}
458
459static void
460 gpe_native_fwd_rpaths_get_reply_t_host_to_net
461 (vl_api_gpe_native_fwd_rpaths_get_reply_t * mp)
462{
463 u32 i;
464 vl_api_gpe_native_fwd_rpath_t *e;
465
466 for (i = 0; i < mp->count; i++)
467 {
468 e = &mp->entries[i];
469 gpe_native_fwd_rpath_t_host_to_net (e);
470 }
471 mp->count = clib_host_to_net_u32 (mp->count);
472}
473
474static void
475vl_api_gpe_native_fwd_rpaths_get_t_handler (vl_api_gpe_native_fwd_rpaths_get_t
476 * mp)
477{
478 lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
479 vl_api_gpe_native_fwd_rpaths_get_reply_t *rmp;
480 u32 size = 0;
481 int rv = 0;
482
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100483 u8 rpath_index = mp->is_ip4 ? 1 : 0;
Filip Tehlarb4243aa2017-06-14 14:39:42 +0200484
485 size = vec_len (lgm->native_fwd_rpath[rpath_index])
Florin Corasa4e63e52017-06-07 21:50:57 -0700486 * sizeof (vl_api_gpe_native_fwd_rpath_t);
487
488 /* *INDENT-OFF* */
489 REPLY_MACRO4 (VL_API_GPE_NATIVE_FWD_RPATHS_GET_REPLY, size,
490 {
Filip Tehlarb4243aa2017-06-14 14:39:42 +0200491 rmp->count = vec_len (lgm->native_fwd_rpath[rpath_index]);
Florin Corasa4e63e52017-06-07 21:50:57 -0700492 gpe_native_fwd_rpaths_copy (rmp->entries,
Jakub Grajciar58db6e12020-01-30 13:26:43 +0100493 lgm->native_fwd_rpath[rpath_index]);
Florin Corasa4e63e52017-06-07 21:50:57 -0700494 gpe_native_fwd_rpaths_get_reply_t_host_to_net (rmp);
495 });
496 /* *INDENT-ON* */
497}
498
Pavel Kotucekabea9662016-12-21 15:50:08 +0100499/*
Filip Tehlar82786c42017-02-20 15:20:37 +0100500 * gpe_api_hookup
Pavel Kotucekabea9662016-12-21 15:50:08 +0100501 * Add vpe's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -0500502 * vlib has already mapped shared memory and
Pavel Kotucekabea9662016-12-21 15:50:08 +0100503 * added the client registration handlers.
504 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
505 */
506#define vl_msg_name_crc_list
507#include <vnet/vnet_all_api_h.h>
508#undef vl_msg_name_crc_list
509
510static void
511setup_message_id_table (api_main_t * am)
512{
513#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
514 foreach_vl_msg_name_crc_lisp_gpe;
515#undef _
516}
517
518static clib_error_t *
Filip Tehlar82786c42017-02-20 15:20:37 +0100519gpe_api_hookup (vlib_main_t * vm)
Pavel Kotucekabea9662016-12-21 15:50:08 +0100520{
Dave Barach39d69112019-11-27 11:42:13 -0500521 api_main_t *am = vlibapi_get_main ();
Pavel Kotucekabea9662016-12-21 15:50:08 +0100522
523#define _(N,n) \
524 vl_msg_api_set_handlers(VL_API_##N, #n, \
525 vl_api_##n##_t_handler, \
526 vl_noop_handler, \
527 vl_api_##n##_t_endian, \
528 vl_api_##n##_t_print, \
529 sizeof(vl_api_##n##_t), 1);
530 foreach_vpe_api_msg;
531#undef _
532
533 /*
534 * Set up the (msg_name, crc, message-id) table
535 */
536 setup_message_id_table (am);
537
538 return 0;
539}
540
Filip Tehlar82786c42017-02-20 15:20:37 +0100541VLIB_API_INIT_FUNCTION (gpe_api_hookup);
Pavel Kotucekabea9662016-12-21 15:50:08 +0100542
543/*
544 * fd.io coding-style-patch-verification: ON
545 *
546 * Local Variables:
547 * eval: (c-set-style "gnu")
548 * End:
549 */