blob: c7ce3ef83d5251751c505d666a29ec4c87d833ce [file] [log] [blame]
Pavel Kotucek9c7ef032016-12-21 07:46:45 +01001/*
2 *------------------------------------------------------------------
3 * ipsec_api.c - ipsec 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/ip/ip.h>
Neale Ranns17dcec02019-01-09 21:22:20 -080026#include <vnet/ip/ip_types_api.h>
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +053027#include <vnet/ipsec/ipsec_types_api.h>
Pierre Pfister4c422f92018-12-10 11:19:08 +010028#include <vnet/fib/fib.h>
Neale Ranns12989b52019-09-26 16:20:19 +000029#include <vnet/ipip/ipip.h>
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010030
31#include <vnet/vnet_msg_enum.h>
32
Damjan Mariona9a951f2017-01-16 22:06:10 +010033#if WITH_LIBSSL > 0
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010034#include <vnet/ipsec/ipsec.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080035#include <vnet/ipsec/ipsec_tun.h>
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010036#endif /* IPSEC */
37
38#define vl_typedefs /* define message structures */
39#include <vnet/vnet_all_api_h.h>
40#undef vl_typedefs
41
42#define vl_endianfun /* define message structures */
43#include <vnet/vnet_all_api_h.h>
44#undef vl_endianfun
45
46/* instantiate all the print functions we know about */
47#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
48#define vl_printfun
49#include <vnet/vnet_all_api_h.h>
50#undef vl_printfun
51
52#include <vlibapi/api_helper_macros.h>
53
Klement Sekerab4d30532018-11-08 13:00:02 +010054#define foreach_vpe_api_msg \
55_(IPSEC_SPD_ADD_DEL, ipsec_spd_add_del) \
56_(IPSEC_INTERFACE_ADD_DEL_SPD, ipsec_interface_add_del_spd) \
Neale Ranns17dcec02019-01-09 21:22:20 -080057_(IPSEC_SPD_ENTRY_ADD_DEL, ipsec_spd_entry_add_del) \
58_(IPSEC_SAD_ENTRY_ADD_DEL, ipsec_sad_entry_add_del) \
Klement Sekerab4d30532018-11-08 13:00:02 +010059_(IPSEC_SA_DUMP, ipsec_sa_dump) \
60_(IPSEC_SPDS_DUMP, ipsec_spds_dump) \
61_(IPSEC_SPD_DUMP, ipsec_spd_dump) \
62_(IPSEC_SPD_INTERFACE_DUMP, ipsec_spd_interface_dump) \
63_(IPSEC_TUNNEL_IF_ADD_DEL, ipsec_tunnel_if_add_del) \
Klement Sekerab4d30532018-11-08 13:00:02 +010064_(IPSEC_TUNNEL_IF_SET_SA, ipsec_tunnel_if_set_sa) \
Klement Sekerab4d30532018-11-08 13:00:02 +010065_(IPSEC_SELECT_BACKEND, ipsec_select_backend) \
Neale Rannsc87b66c2019-02-07 07:26:12 -080066_(IPSEC_BACKEND_DUMP, ipsec_backend_dump) \
67_(IPSEC_TUNNEL_PROTECT_UPDATE, ipsec_tunnel_protect_update) \
68_(IPSEC_TUNNEL_PROTECT_DEL, ipsec_tunnel_protect_del) \
69_(IPSEC_TUNNEL_PROTECT_DUMP, ipsec_tunnel_protect_dump)
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010070
Klement Sekerab4d30532018-11-08 13:00:02 +010071static void
72vl_api_ipsec_spd_add_del_t_handler (vl_api_ipsec_spd_add_del_t * mp)
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010073{
Damjan Mariona9a951f2017-01-16 22:06:10 +010074#if WITH_LIBSSL == 0
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010075 clib_warning ("unimplemented");
76#else
77
78 vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
79 vl_api_ipsec_spd_add_del_reply_t *rmp;
80 int rv;
81
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010082 rv = ipsec_add_del_spd (vm, ntohl (mp->spd_id), mp->is_add);
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010083
84 REPLY_MACRO (VL_API_IPSEC_SPD_ADD_DEL_REPLY);
85#endif
86}
87
88static void vl_api_ipsec_interface_add_del_spd_t_handler
89 (vl_api_ipsec_interface_add_del_spd_t * mp)
90{
91 vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
92 vl_api_ipsec_interface_add_del_spd_reply_t *rmp;
93 int rv;
94 u32 sw_if_index __attribute__ ((unused));
95 u32 spd_id __attribute__ ((unused));
96
97 sw_if_index = ntohl (mp->sw_if_index);
98 spd_id = ntohl (mp->spd_id);
99
100 VALIDATE_SW_IF_INDEX (mp);
101
Damjan Mariona9a951f2017-01-16 22:06:10 +0100102#if WITH_LIBSSL > 0
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100103 rv = ipsec_set_interface_spd (vm, sw_if_index, spd_id, mp->is_add);
104#else
105 rv = VNET_API_ERROR_UNIMPLEMENTED;
106#endif
107
108 BAD_SW_IF_INDEX_LABEL;
109
110 REPLY_MACRO (VL_API_IPSEC_INTERFACE_ADD_DEL_SPD_REPLY);
111}
112
Neale Rannsc87b66c2019-02-07 07:26:12 -0800113static void vl_api_ipsec_tunnel_protect_update_t_handler
114 (vl_api_ipsec_tunnel_protect_update_t * mp)
115{
116 vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
117 vl_api_ipsec_tunnel_protect_update_reply_t *rmp;
118 u32 sw_if_index, ii, *sa_ins = NULL;
Neale Ranns28287212019-12-16 00:53:11 +0000119 ip_address_t nh;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800120 int rv;
121
122 sw_if_index = ntohl (mp->tunnel.sw_if_index);
123
124 VALIDATE_SW_IF_INDEX (&(mp->tunnel));
125
126#if WITH_LIBSSL > 0
127
128 for (ii = 0; ii < mp->tunnel.n_sa_in; ii++)
129 vec_add1 (sa_ins, ntohl (mp->tunnel.sa_in[ii]));
130
Neale Ranns28287212019-12-16 00:53:11 +0000131 ip_address_decode2 (&mp->tunnel.nh, &nh);
132
133 rv = ipsec_tun_protect_update (sw_if_index, &nh,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800134 ntohl (mp->tunnel.sa_out), sa_ins);
135#else
136 rv = VNET_API_ERROR_UNIMPLEMENTED;
137#endif
138
139 BAD_SW_IF_INDEX_LABEL;
140
141 REPLY_MACRO (VL_API_IPSEC_TUNNEL_PROTECT_UPDATE_REPLY);
142}
143
144static void vl_api_ipsec_tunnel_protect_del_t_handler
145 (vl_api_ipsec_tunnel_protect_del_t * mp)
146{
147 vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
148 vl_api_ipsec_tunnel_protect_del_reply_t *rmp;
Neale Ranns28287212019-12-16 00:53:11 +0000149 ip_address_t nh;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800150 u32 sw_if_index;
Neale Ranns28287212019-12-16 00:53:11 +0000151 int rv;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800152
153 sw_if_index = ntohl (mp->sw_if_index);
154
155 VALIDATE_SW_IF_INDEX (mp);
156
157#if WITH_LIBSSL > 0
Neale Ranns28287212019-12-16 00:53:11 +0000158 ip_address_decode2 (&mp->nh, &nh);
159 rv = ipsec_tun_protect_del (sw_if_index, &nh);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800160#else
161 rv = VNET_API_ERROR_UNIMPLEMENTED;
162#endif
163
164 BAD_SW_IF_INDEX_LABEL;
165
166 REPLY_MACRO (VL_API_IPSEC_TUNNEL_PROTECT_DEL_REPLY);
167}
168
Neale Ranns12989b52019-09-26 16:20:19 +0000169typedef struct ipsec_dump_walk_ctx_t_
Neale Rannsc87b66c2019-02-07 07:26:12 -0800170{
171 vl_api_registration_t *reg;
172 u32 context;
Neale Ranns12989b52019-09-26 16:20:19 +0000173} ipsec_dump_walk_ctx_t;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800174
175static walk_rc_t
176send_ipsec_tunnel_protect_details (index_t itpi, void *arg)
177{
Neale Ranns12989b52019-09-26 16:20:19 +0000178 ipsec_dump_walk_ctx_t *ctx = arg;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800179 vl_api_ipsec_tunnel_protect_details_t *mp;
180 ipsec_tun_protect_t *itp;
181 u32 sai, ii = 0;
182
183 itp = ipsec_tun_protect_get (itpi);
184
Neale Rannsc87b66c2019-02-07 07:26:12 -0800185 mp = vl_msg_api_alloc (sizeof (*mp) + (sizeof (u32) * itp->itp_n_sa_in));
186 clib_memset (mp, 0, sizeof (*mp));
187 mp->_vl_msg_id = ntohs (VL_API_IPSEC_TUNNEL_PROTECT_DETAILS);
188 mp->context = ctx->context;
189
190 mp->tun.sw_if_index = htonl (itp->itp_sw_if_index);
Neale Ranns28287212019-12-16 00:53:11 +0000191 ip_address_encode2 (itp->itp_key, &mp->tun.nh);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800192
193 mp->tun.sa_out = htonl (itp->itp_out_sa);
194 mp->tun.n_sa_in = itp->itp_n_sa_in;
195 /* *INDENT-OFF* */
196 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
197 ({
198 mp->tun.sa_in[ii++] = htonl (sai);
199 }));
200 /* *INDENT-ON* */
201
202 vl_api_send_msg (ctx->reg, (u8 *) mp);
203
204 return (WALK_CONTINUE);
205}
206
207static void
208vl_api_ipsec_tunnel_protect_dump_t_handler (vl_api_ipsec_tunnel_protect_dump_t
209 * mp)
210{
211 vl_api_registration_t *reg;
212 u32 sw_if_index;
213
214#if WITH_LIBSSL > 0
215 reg = vl_api_client_index_to_registration (mp->client_index);
216 if (!reg)
217 return;
218
Neale Ranns12989b52019-09-26 16:20:19 +0000219 ipsec_dump_walk_ctx_t ctx = {
Neale Rannsc87b66c2019-02-07 07:26:12 -0800220 .reg = reg,
221 .context = mp->context,
222 };
223
224 sw_if_index = ntohl (mp->sw_if_index);
225
226 if (~0 == sw_if_index)
227 {
228 ipsec_tun_protect_walk (send_ipsec_tunnel_protect_details, &ctx);
229 }
230 else
231 {
Neale Ranns28287212019-12-16 00:53:11 +0000232 ipsec_tun_protect_walk_itf (sw_if_index,
233 send_ipsec_tunnel_protect_details, &ctx);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800234 }
235#else
236 clib_warning ("unimplemented");
237#endif
238}
239
Neale Ranns17dcec02019-01-09 21:22:20 -0800240static int
241ipsec_spd_action_decode (vl_api_ipsec_spd_action_t in,
242 ipsec_policy_action_t * out)
243{
244 in = clib_net_to_host_u32 (in);
245
246 switch (in)
247 {
248#define _(v,f,s) case IPSEC_API_SPD_ACTION_##f: \
249 *out = IPSEC_POLICY_ACTION_##f; \
250 return (0);
251 foreach_ipsec_policy_action
252#undef _
253 }
254 return (VNET_API_ERROR_UNIMPLEMENTED);
255}
256
257static void vl_api_ipsec_spd_entry_add_del_t_handler
258 (vl_api_ipsec_spd_entry_add_del_t * mp)
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100259{
260 vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
Neale Ranns17dcec02019-01-09 21:22:20 -0800261 vl_api_ipsec_spd_entry_add_del_reply_t *rmp;
262 ip46_type_t itype;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800263 u32 stat_index;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100264 int rv;
265
Neale Ranns8c2dd1b2019-02-19 08:27:34 -0800266 stat_index = ~0;
267
Damjan Mariona9a951f2017-01-16 22:06:10 +0100268#if WITH_LIBSSL > 0
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100269 ipsec_policy_t p;
270
Dave Barachb7b92992018-10-17 10:38:51 -0400271 clib_memset (&p, 0, sizeof (p));
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100272
Neale Ranns17dcec02019-01-09 21:22:20 -0800273 p.id = ntohl (mp->entry.spd_id);
274 p.priority = ntohl (mp->entry.priority);
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100275
Neale Ranns17dcec02019-01-09 21:22:20 -0800276 itype = ip_address_decode (&mp->entry.remote_address_start, &p.raddr.start);
277 ip_address_decode (&mp->entry.remote_address_stop, &p.raddr.stop);
278 ip_address_decode (&mp->entry.local_address_start, &p.laddr.start);
279 ip_address_decode (&mp->entry.local_address_stop, &p.laddr.stop);
280
281 p.is_ipv6 = (itype == IP46_TYPE_IP6);
282
283 p.protocol = mp->entry.protocol;
Neale Rannsa4d24312019-07-10 13:46:21 +0000284 p.rport.start = ntohs (mp->entry.remote_port_start);
285 p.rport.stop = ntohs (mp->entry.remote_port_stop);
286 p.lport.start = ntohs (mp->entry.local_port_start);
287 p.lport.stop = ntohs (mp->entry.local_port_stop);
Neale Ranns17dcec02019-01-09 21:22:20 -0800288
289 rv = ipsec_spd_action_decode (mp->entry.policy, &p.policy);
290
291 if (rv)
292 goto out;
293
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100294 /* policy action resolve unsupported */
Neale Ranns17dcec02019-01-09 21:22:20 -0800295 if (p.policy == IPSEC_POLICY_ACTION_RESOLVE)
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100296 {
297 clib_warning ("unsupported action: 'resolve'");
298 rv = VNET_API_ERROR_UNIMPLEMENTED;
299 goto out;
300 }
Neale Ranns17dcec02019-01-09 21:22:20 -0800301 p.sa_id = ntohl (mp->entry.sa_id);
Neale Ranns9f231d42019-03-19 10:06:00 +0000302 rv =
303 ipsec_policy_mk_type (mp->entry.is_outbound, p.is_ipv6, p.policy,
304 &p.type);
305 if (rv)
306 goto out;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100307
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800308 rv = ipsec_add_del_policy (vm, &p, mp->is_add, &stat_index);
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100309 if (rv)
310 goto out;
311
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100312#else
313 rv = VNET_API_ERROR_UNIMPLEMENTED;
314 goto out;
315#endif
316
317out:
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800318 /* *INDENT-OFF* */
319 REPLY_MACRO2 (VL_API_IPSEC_SPD_ENTRY_ADD_DEL_REPLY,
320 ({
321 rmp->stat_index = ntohl(stat_index);
322 }));
323 /* *INDENT-ON* */
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100324}
325
Neale Ranns17dcec02019-01-09 21:22:20 -0800326static void vl_api_ipsec_sad_entry_add_del_t_handler
327 (vl_api_ipsec_sad_entry_add_del_t * mp)
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100328{
329 vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
Neale Ranns17dcec02019-01-09 21:22:20 -0800330 vl_api_ipsec_sad_entry_add_del_reply_t *rmp;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800331 ip46_address_t tun_src = { }, tun_dst =
332 {
333 };
334 ipsec_key_t crypto_key, integ_key;
335 ipsec_crypto_alg_t crypto_alg;
336 ipsec_integ_alg_t integ_alg;
337 ipsec_protocol_t proto;
338 ipsec_sa_flags_t flags;
Dave Baracha5160d72019-03-13 15:29:15 -0400339 u32 id, spi, sa_index = ~0;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100340 int rv;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800341
Damjan Mariona9a951f2017-01-16 22:06:10 +0100342#if WITH_LIBSSL > 0
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100343
Neale Ranns8d7c5022019-02-06 01:41:05 -0800344 id = ntohl (mp->entry.sad_id);
345 spi = ntohl (mp->entry.spi);
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100346
Neale Ranns8d7c5022019-02-06 01:41:05 -0800347 rv = ipsec_proto_decode (mp->entry.protocol, &proto);
Neale Ranns17dcec02019-01-09 21:22:20 -0800348
349 if (rv)
350 goto out;
351
Neale Ranns8d7c5022019-02-06 01:41:05 -0800352 rv = ipsec_crypto_algo_decode (mp->entry.crypto_algorithm, &crypto_alg);
Neale Ranns17dcec02019-01-09 21:22:20 -0800353
354 if (rv)
355 goto out;
356
Neale Ranns8d7c5022019-02-06 01:41:05 -0800357 rv = ipsec_integ_algo_decode (mp->entry.integrity_algorithm, &integ_alg);
Neale Ranns17dcec02019-01-09 21:22:20 -0800358
359 if (rv)
360 goto out;
361
Neale Ranns8d7c5022019-02-06 01:41:05 -0800362 ipsec_key_decode (&mp->entry.crypto_key, &crypto_key);
363 ipsec_key_decode (&mp->entry.integrity_key, &integ_key);
Neale Ranns17dcec02019-01-09 21:22:20 -0800364
Neale Ranns8d7c5022019-02-06 01:41:05 -0800365 flags = ipsec_sa_flags_decode (mp->entry.flags);
Neale Ranns17dcec02019-01-09 21:22:20 -0800366
Neale Ranns8d7c5022019-02-06 01:41:05 -0800367 ip_address_decode (&mp->entry.tunnel_src, &tun_src);
368 ip_address_decode (&mp->entry.tunnel_dst, &tun_dst);
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100369
Neale Ranns8d7c5022019-02-06 01:41:05 -0800370 if (mp->is_add)
Neale Ranns495d7ff2019-07-12 09:15:26 +0000371 rv = ipsec_sa_add_and_lock (id, spi, proto,
372 crypto_alg, &crypto_key,
373 integ_alg, &integ_key, flags,
374 0, mp->entry.salt, &tun_src, &tun_dst,
375 &sa_index);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800376 else
Neale Ranns495d7ff2019-07-12 09:15:26 +0000377 rv = ipsec_sa_unlock_id (id);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800378
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100379#else
380 rv = VNET_API_ERROR_UNIMPLEMENTED;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100381#endif
382
383out:
Neale Rannseba31ec2019-02-17 18:04:27 +0000384 /* *INDENT-OFF* */
385 REPLY_MACRO2 (VL_API_IPSEC_SAD_ENTRY_ADD_DEL_REPLY,
386 {
387 rmp->stat_index = htonl (sa_index);
388 });
389 /* *INDENT-ON* */
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100390}
391
392static void
Matus Fabiana9a0b2c2018-10-02 01:13:25 -0700393send_ipsec_spds_details (ipsec_spd_t * spd, vl_api_registration_t * reg,
394 u32 context)
395{
396 vl_api_ipsec_spds_details_t *mp;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800397 u32 n_policies = 0;
Matus Fabiana9a0b2c2018-10-02 01:13:25 -0700398
399 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400400 clib_memset (mp, 0, sizeof (*mp));
Matus Fabiana9a0b2c2018-10-02 01:13:25 -0700401 mp->_vl_msg_id = ntohs (VL_API_IPSEC_SPDS_DETAILS);
402 mp->context = context;
403
404 mp->spd_id = htonl (spd->id);
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800405#define _(s, n) n_policies += vec_len (spd->policies[IPSEC_SPD_POLICY_##s]);
406 foreach_ipsec_spd_policy_type
407#undef _
408 mp->npolicies = htonl (n_policies);
Matus Fabiana9a0b2c2018-10-02 01:13:25 -0700409
410 vl_api_send_msg (reg, (u8 *) mp);
411}
412
413static void
414vl_api_ipsec_spds_dump_t_handler (vl_api_ipsec_spds_dump_t * mp)
415{
416 vl_api_registration_t *reg;
417 ipsec_main_t *im = &ipsec_main;
418 ipsec_spd_t *spd;
419#if WITH_LIBSSL > 0
420 reg = vl_api_client_index_to_registration (mp->client_index);
421 if (!reg)
422 return;
423
424 /* *INDENT-OFF* */
425 pool_foreach (spd, im->spds, ({
426 send_ipsec_spds_details (spd, reg, mp->context);
427 }));
428 /* *INDENT-ON* */
429#else
430 clib_warning ("unimplemented");
431#endif
432}
433
Neale Ranns17dcec02019-01-09 21:22:20 -0800434vl_api_ipsec_spd_action_t
435ipsec_spd_action_encode (ipsec_policy_action_t in)
436{
437 vl_api_ipsec_spd_action_t out = IPSEC_API_SPD_ACTION_BYPASS;
438
439 switch (in)
440 {
441#define _(v,f,s) case IPSEC_POLICY_ACTION_##f: \
442 out = IPSEC_API_SPD_ACTION_##f; \
443 break;
444 foreach_ipsec_policy_action
445#undef _
446 }
447 return (clib_host_to_net_u32 (out));
448}
449
Matus Fabiana9a0b2c2018-10-02 01:13:25 -0700450static void
Florin Coras6c4dae22018-01-09 06:39:23 -0800451send_ipsec_spd_details (ipsec_policy_t * p, vl_api_registration_t * reg,
452 u32 context)
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100453{
454 vl_api_ipsec_spd_details_t *mp;
455
456 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400457 clib_memset (mp, 0, sizeof (*mp));
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100458 mp->_vl_msg_id = ntohs (VL_API_IPSEC_SPD_DETAILS);
459 mp->context = context;
460
Neale Ranns17dcec02019-01-09 21:22:20 -0800461 mp->entry.spd_id = htonl (p->id);
462 mp->entry.priority = htonl (p->priority);
Neale Ranns9f231d42019-03-19 10:06:00 +0000463 mp->entry.is_outbound = ((p->type == IPSEC_SPD_POLICY_IP6_OUTBOUND) ||
464 (p->type == IPSEC_SPD_POLICY_IP4_OUTBOUND));
Neale Ranns17dcec02019-01-09 21:22:20 -0800465
466 ip_address_encode (&p->laddr.start, IP46_TYPE_ANY,
467 &mp->entry.local_address_start);
468 ip_address_encode (&p->laddr.stop, IP46_TYPE_ANY,
469 &mp->entry.local_address_stop);
470 ip_address_encode (&p->raddr.start, IP46_TYPE_ANY,
471 &mp->entry.remote_address_start);
472 ip_address_encode (&p->raddr.stop, IP46_TYPE_ANY,
473 &mp->entry.remote_address_stop);
Neale Rannsa4d24312019-07-10 13:46:21 +0000474 mp->entry.local_port_start = htons (p->lport.start);
475 mp->entry.local_port_stop = htons (p->lport.stop);
476 mp->entry.remote_port_start = htons (p->rport.start);
477 mp->entry.remote_port_stop = htons (p->rport.stop);
Neale Ranns17dcec02019-01-09 21:22:20 -0800478 mp->entry.protocol = p->protocol;
479 mp->entry.policy = ipsec_spd_action_encode (p->policy);
480 mp->entry.sa_id = htonl (p->sa_id);
481
Florin Coras6c4dae22018-01-09 06:39:23 -0800482 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100483}
484
485static void
486vl_api_ipsec_spd_dump_t_handler (vl_api_ipsec_spd_dump_t * mp)
487{
Florin Coras6c4dae22018-01-09 06:39:23 -0800488 vl_api_registration_t *reg;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100489 ipsec_main_t *im = &ipsec_main;
Neale Ranns9f231d42019-03-19 10:06:00 +0000490 ipsec_spd_policy_type_t ptype;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100491 ipsec_policy_t *policy;
492 ipsec_spd_t *spd;
493 uword *p;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800494 u32 spd_index, *ii;
Damjan Mariona9a951f2017-01-16 22:06:10 +0100495#if WITH_LIBSSL > 0
Florin Coras6c4dae22018-01-09 06:39:23 -0800496 reg = vl_api_client_index_to_registration (mp->client_index);
497 if (!reg)
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100498 return;
499
500 p = hash_get (im->spd_index_by_spd_id, ntohl (mp->spd_id));
501 if (!p)
502 return;
503
504 spd_index = p[0];
505 spd = pool_elt_at_index (im->spds, spd_index);
506
507 /* *INDENT-OFF* */
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800508 FOR_EACH_IPSEC_SPD_POLICY_TYPE(ptype) {
509 vec_foreach(ii, spd->policies[ptype])
510 {
511 policy = pool_elt_at_index(im->policies, *ii);
512
513 if (mp->sa_id == ~(0) || ntohl (mp->sa_id) == policy->sa_id)
514 send_ipsec_spd_details (policy, reg, mp->context);
515 }
516 }
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100517 /* *INDENT-ON* */
518#else
519 clib_warning ("unimplemented");
520#endif
521}
522
523static void
Filip Varga871bca92018-11-02 13:51:44 +0100524send_ipsec_spd_interface_details (vl_api_registration_t * reg, u32 spd_index,
525 u32 sw_if_index, u32 context)
526{
527 vl_api_ipsec_spd_interface_details_t *mp;
528
529 mp = vl_msg_api_alloc (sizeof (*mp));
530 clib_memset (mp, 0, sizeof (*mp));
531 mp->_vl_msg_id = ntohs (VL_API_IPSEC_SPD_INTERFACE_DETAILS);
532 mp->context = context;
533
534 mp->spd_index = htonl (spd_index);
535 mp->sw_if_index = htonl (sw_if_index);
536
537 vl_api_send_msg (reg, (u8 *) mp);
538}
539
540static void
541vl_api_ipsec_spd_interface_dump_t_handler (vl_api_ipsec_spd_interface_dump_t *
542 mp)
543{
544 ipsec_main_t *im = &ipsec_main;
545 vl_api_registration_t *reg;
546 u32 k, v, spd_index;
547
548#if WITH_LIBSSL > 0
549 reg = vl_api_client_index_to_registration (mp->client_index);
550 if (!reg)
551 return;
552
553 if (mp->spd_index_valid)
554 {
555 spd_index = ntohl (mp->spd_index);
556 /* *INDENT-OFF* */
557 hash_foreach(k, v, im->spd_index_by_sw_if_index, ({
558 if (v == spd_index)
559 send_ipsec_spd_interface_details(reg, v, k, mp->context);
560 }));
561 /* *INDENT-ON* */
562 }
563 else
564 {
565 /* *INDENT-OFF* */
566 hash_foreach(k, v, im->spd_index_by_sw_if_index, ({
567 send_ipsec_spd_interface_details(reg, v, k, mp->context);
568 }));
569 /* *INDENT-ON* */
570 }
571
572#else
573 clib_warning ("unimplemented");
574#endif
575}
576
Neale Ranns12989b52019-09-26 16:20:19 +0000577static u32
578ipsec_tun_mk_input_sa_id (u32 ti)
579{
580 return (0x80000000 | ti);
581}
582
583static u32
584ipsec_tun_mk_output_sa_id (u32 ti)
585{
586 return (0xc0000000 | ti);
587}
588
Filip Varga871bca92018-11-02 13:51:44 +0100589static void
Matthew Smithb0972cb2017-05-02 16:20:41 -0500590vl_api_ipsec_tunnel_if_add_del_t_handler (vl_api_ipsec_tunnel_if_add_del_t *
591 mp)
592{
593 vl_api_ipsec_tunnel_if_add_del_reply_t *rmp;
Matthew Smithe04d09d2017-05-14 21:47:18 -0500594 u32 sw_if_index = ~0;
Matthew Smithb0972cb2017-05-02 16:20:41 -0500595 int rv;
596
597#if WITH_LIBSSL > 0
Neale Ranns12989b52019-09-26 16:20:19 +0000598 ip46_address_t local_ip = ip46_address_initializer;
599 ip46_address_t remote_ip = ip46_address_initializer;
600 ipsec_key_t crypto_key, integ_key;
601 ipsec_sa_flags_t flags;
602 ip46_type_t local_ip_type, remote_ip_type;
603 ipip_transport_t transport;
604 u32 fib_index;
Matthew Smithb0972cb2017-05-02 16:20:41 -0500605
Neale Ranns12989b52019-09-26 16:20:19 +0000606 local_ip_type = ip_address_decode (&mp->local_ip, &local_ip);
607 remote_ip_type = ip_address_decode (&mp->remote_ip, &remote_ip);
608 transport = (IP46_TYPE_IP6 == local_ip_type ?
609 IPIP_TRANSPORT_IP6 : IPIP_TRANSPORT_IP4);
Matthew Smithb0972cb2017-05-02 16:20:41 -0500610
Neale Ranns12989b52019-09-26 16:20:19 +0000611 if (local_ip_type != remote_ip_type)
612 {
613 rv = VNET_API_ERROR_INVALID_VALUE;
614 goto done;
615 }
Matthew Smithb0972cb2017-05-02 16:20:41 -0500616
Neale Ranns12989b52019-09-26 16:20:19 +0000617 flags = IPSEC_SA_FLAG_NONE;
618
619 if (mp->udp_encap)
620 flags |= IPSEC_SA_FLAG_UDP_ENCAP;
621 if (mp->esn)
622 flags |= IPSEC_SA_FLAG_USE_ESN;
623 if (mp->anti_replay)
624 flags |= IPSEC_SA_FLAG_USE_ANTI_REPLAY;
625
626 ipsec_mk_key (&crypto_key, mp->remote_crypto_key,
627 mp->remote_crypto_key_len);
628 ipsec_mk_key (&integ_key, mp->remote_integ_key, mp->remote_integ_key_len);
629 ipsec_mk_key (&crypto_key, mp->local_crypto_key, mp->local_crypto_key_len);
630 ipsec_mk_key (&integ_key, mp->local_integ_key, mp->local_integ_key_len);
631
632 fib_index =
633 fib_table_find (fib_proto_from_ip46 (local_ip_type),
634 ntohl (mp->tx_table_id));
635
636 if (~0 == fib_index)
637 {
638 rv = VNET_API_ERROR_NO_SUCH_FIB;
639 goto done;
640 }
641
642 if (mp->is_add)
643 {
644 // remote = input, local = output
645 /* create an ip-ip tunnel, then the two SA, then bind them */
646 rv = ipip_add_tunnel (transport,
Neale Rannsa548d132019-11-20 08:34:58 +0000647 (mp->renumber ? ntohl (mp->show_instance) : ~0),
Neale Ranns12989b52019-09-26 16:20:19 +0000648 &local_ip,
Neale Ranns95346962019-11-25 13:04:44 +0000649 &remote_ip, fib_index,
Neale Ranns59ff9182019-12-29 23:55:18 +0000650 TUNNEL_ENCAP_DECAP_FLAG_NONE, IP_DSCP_CS0,
Neale Ranns14053c92019-12-29 23:55:18 +0000651 TUNNEL_MODE_P2P, &sw_if_index);
Neale Ranns12989b52019-09-26 16:20:19 +0000652
653 if (rv)
654 goto done;
655
656 rv = ipsec_sa_add_and_lock (ipsec_tun_mk_input_sa_id (sw_if_index),
657 ntohl (mp->remote_spi),
658 IPSEC_PROTOCOL_ESP,
659 mp->crypto_alg,
660 &crypto_key,
661 mp->integ_alg,
662 &integ_key,
663 (flags | IPSEC_SA_FLAG_IS_INBOUND),
664 ntohl (mp->tx_table_id),
665 mp->salt, &remote_ip, &local_ip, NULL);
666
667 if (rv)
668 goto done;
669
670 rv = ipsec_sa_add_and_lock (ipsec_tun_mk_output_sa_id (sw_if_index),
671 ntohl (mp->local_spi),
672 IPSEC_PROTOCOL_ESP,
673 mp->crypto_alg,
674 &crypto_key,
675 mp->integ_alg,
676 &integ_key,
677 flags,
678 ntohl (mp->tx_table_id),
679 mp->salt, &local_ip, &remote_ip, NULL);
680
681 if (rv)
682 goto done;
683
Neale Ranns28287212019-12-16 00:53:11 +0000684 rv = ipsec_tun_protect_update_one (sw_if_index, NULL,
Neale Ranns12989b52019-09-26 16:20:19 +0000685 ipsec_tun_mk_output_sa_id
686 (sw_if_index),
687 ipsec_tun_mk_input_sa_id
688 (sw_if_index));
689 if (rv)
690 goto done;
691
692 /* the SAs are locked as a result of being used for proection,
693 * they cannot be removed from the API, since they cannot be refered
694 * to by the API. unlock them now, so that if the tunnel is rekeyed
695 * they-ll disapper
696 */
697 ipsec_sa_unlock_id (ipsec_tun_mk_input_sa_id (sw_if_index));
698 ipsec_sa_unlock_id (ipsec_tun_mk_output_sa_id (sw_if_index));
699 }
700 else
701 {
Neale Rannsd14fccd2019-11-15 15:03:27 +0000702 /* *INDENT-OFF* */
Neale Ranns12989b52019-09-26 16:20:19 +0000703 ipip_tunnel_key_t key = {
704 .transport = transport,
705 .fib_index = fib_index,
706 .src = local_ip,
707 .dst = remote_ip
708 };
Neale Rannsd14fccd2019-11-15 15:03:27 +0000709 /* *INDENT-ON* */
710
Neale Ranns12989b52019-09-26 16:20:19 +0000711 ipip_tunnel_t *t = ipip_tunnel_db_find (&key);
712
Neale Rannsd14fccd2019-11-15 15:03:27 +0000713 if (NULL != t)
714 {
Neale Ranns28287212019-12-16 00:53:11 +0000715 rv = ipsec_tun_protect_del (t->sw_if_index, NULL);
Neale Rannsd14fccd2019-11-15 15:03:27 +0000716 ipip_del_tunnel (t->sw_if_index);
717 }
718 else
719 rv = VNET_API_ERROR_NO_SUCH_ENTRY;
Neale Ranns12989b52019-09-26 16:20:19 +0000720 }
Matthew Smithb0972cb2017-05-02 16:20:41 -0500721
722#else
723 rv = VNET_API_ERROR_UNIMPLEMENTED;
724#endif
Neale Ranns12989b52019-09-26 16:20:19 +0000725done:
Neale Ranns8d7c5022019-02-06 01:41:05 -0800726 /* *INDENT-OFF* */
727 REPLY_MACRO2 (VL_API_IPSEC_TUNNEL_IF_ADD_DEL_REPLY,
728 ({
729 rmp->sw_if_index = htonl (sw_if_index);
730 }));
731 /* *INDENT-ON* */
Matthew Smithb0972cb2017-05-02 16:20:41 -0500732}
733
Neale Ranns12989b52019-09-26 16:20:19 +0000734typedef struct ipsec_sa_dump_match_ctx_t_
Matthew Smith28029532017-09-26 13:33:44 -0500735{
Neale Ranns12989b52019-09-26 16:20:19 +0000736 index_t sai;
737 u32 sw_if_index;
738} ipsec_sa_dump_match_ctx_t;
739
740static walk_rc_t
741ipsec_sa_dump_match_sa (index_t itpi, void *arg)
742{
743 ipsec_sa_dump_match_ctx_t *ctx = arg;
744 ipsec_tun_protect_t *itp;
745 index_t sai;
746
747 itp = ipsec_tun_protect_get (itpi);
748
749 if (itp->itp_out_sa == ctx->sai)
750 {
751 ctx->sw_if_index = itp->itp_sw_if_index;
752 return (WALK_STOP);
753 }
754 /* *INDENT-OFF* */
755 FOR_EACH_IPSEC_PROTECT_INPUT_SAI (itp, sai,
756 ({
757 if (sai == ctx->sai)
758 {
759 ctx->sw_if_index = itp->itp_sw_if_index;
760 return (WALK_STOP);
761 }
762 }));
763 /* *INDENT-OFF* */
764
765 return (WALK_CONTINUE);
766}
767
768static walk_rc_t
769send_ipsec_sa_details (ipsec_sa_t * sa, void *arg)
770{
771 ipsec_dump_walk_ctx_t *ctx = arg;
Matthew Smith28029532017-09-26 13:33:44 -0500772 vl_api_ipsec_sa_details_t *mp;
Neale Ranns12989b52019-09-26 16:20:19 +0000773 ipsec_main_t *im = &ipsec_main;
Matthew Smith28029532017-09-26 13:33:44 -0500774
775 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400776 clib_memset (mp, 0, sizeof (*mp));
Matthew Smith28029532017-09-26 13:33:44 -0500777 mp->_vl_msg_id = ntohs (VL_API_IPSEC_SA_DETAILS);
Neale Ranns12989b52019-09-26 16:20:19 +0000778 mp->context = ctx->context;
Matthew Smith28029532017-09-26 13:33:44 -0500779
Neale Ranns8d7c5022019-02-06 01:41:05 -0800780 mp->entry.sad_id = htonl (sa->id);
781 mp->entry.spi = htonl (sa->spi);
782 mp->entry.protocol = ipsec_proto_encode (sa->protocol);
783 mp->entry.tx_table_id =
784 htonl (fib_table_get_table_id (sa->tx_fib_index, FIB_PROTOCOL_IP4));
Matthew Smith28029532017-09-26 13:33:44 -0500785
Neale Ranns8d7c5022019-02-06 01:41:05 -0800786 mp->entry.crypto_algorithm = ipsec_crypto_algo_encode (sa->crypto_alg);
787 ipsec_key_encode (&sa->crypto_key, &mp->entry.crypto_key);
Matthew Smith28029532017-09-26 13:33:44 -0500788
Neale Ranns8d7c5022019-02-06 01:41:05 -0800789 mp->entry.integrity_algorithm = ipsec_integ_algo_encode (sa->integ_alg);
790 ipsec_key_encode (&sa->integ_key, &mp->entry.integrity_key);
Matthew Smith28029532017-09-26 13:33:44 -0500791
Neale Ranns8d7c5022019-02-06 01:41:05 -0800792 mp->entry.flags = ipsec_sad_flags_encode (sa);
Neale Ranns12989b52019-09-26 16:20:19 +0000793 mp->entry.salt = clib_host_to_net_u32 (sa->salt);
794
795 if (ipsec_sa_is_set_IS_PROTECT (sa))
796 {
797 ipsec_sa_dump_match_ctx_t ctx = {
798 .sai = sa - im->sad,
799 .sw_if_index = ~0,
800 };
801 ipsec_tun_protect_walk (ipsec_sa_dump_match_sa, &ctx);
802
803 mp->sw_if_index = htonl (ctx.sw_if_index);
804 }
805 else
806 mp->sw_if_index = ~0;
Matthew Smith28029532017-09-26 13:33:44 -0500807
Damjan Mariond709cbc2019-03-26 13:16:42 +0100808 if (ipsec_sa_is_set_IS_TUNNEL (sa))
Matthew Smith28029532017-09-26 13:33:44 -0500809 {
Neale Ranns8d7c5022019-02-06 01:41:05 -0800810 ip_address_encode (&sa->tunnel_src_addr, IP46_TYPE_ANY,
811 &mp->entry.tunnel_src);
812 ip_address_encode (&sa->tunnel_dst_addr, IP46_TYPE_ANY,
813 &mp->entry.tunnel_dst);
Matthew Smith28029532017-09-26 13:33:44 -0500814 }
815
Matthew Smith28029532017-09-26 13:33:44 -0500816 mp->seq_outbound = clib_host_to_net_u64 (((u64) sa->seq));
817 mp->last_seq_inbound = clib_host_to_net_u64 (((u64) sa->last_seq));
Damjan Marion1e3aa5e2019-03-28 10:58:59 +0100818 if (ipsec_sa_is_set_USE_ESN (sa))
Matthew Smith28029532017-09-26 13:33:44 -0500819 {
820 mp->seq_outbound |= (u64) (clib_host_to_net_u32 (sa->seq_hi));
821 mp->last_seq_inbound |= (u64) (clib_host_to_net_u32 (sa->last_seq_hi));
822 }
Damjan Mariond709cbc2019-03-26 13:16:42 +0100823 if (ipsec_sa_is_set_USE_ANTI_REPLAY (sa))
Matthew Smith28029532017-09-26 13:33:44 -0500824 mp->replay_window = clib_host_to_net_u64 (sa->replay_window);
Pierre Pfister4c422f92018-12-10 11:19:08 +0100825
Neale Ranns12989b52019-09-26 16:20:19 +0000826 vl_api_send_msg (ctx->reg, (u8 *) mp);
Matthew Smith28029532017-09-26 13:33:44 -0500827
Neale Ranns12989b52019-09-26 16:20:19 +0000828 return (WALK_CONTINUE);
829}
Matthew Smith28029532017-09-26 13:33:44 -0500830
831static void
832vl_api_ipsec_sa_dump_t_handler (vl_api_ipsec_sa_dump_t * mp)
833{
Florin Coras6c4dae22018-01-09 06:39:23 -0800834 vl_api_registration_t *reg;
Matthew Smith28029532017-09-26 13:33:44 -0500835
836#if WITH_LIBSSL > 0
Florin Coras6c4dae22018-01-09 06:39:23 -0800837 reg = vl_api_client_index_to_registration (mp->client_index);
Neale Ranns12989b52019-09-26 16:20:19 +0000838 if (!reg)
Matthew Smith28029532017-09-26 13:33:44 -0500839 return;
840
Neale Ranns12989b52019-09-26 16:20:19 +0000841 ipsec_dump_walk_ctx_t ctx = {
842 .reg = reg,
843 .context = mp->context,
844 };
Matthew Smith28029532017-09-26 13:33:44 -0500845
Neale Ranns12989b52019-09-26 16:20:19 +0000846 ipsec_sa_walk (send_ipsec_sa_details, &ctx);
Matthew Smith28029532017-09-26 13:33:44 -0500847
Matthew Smith28029532017-09-26 13:33:44 -0500848#else
849 clib_warning ("unimplemented");
850#endif
851}
852
Matthew Smith75d85602017-10-05 19:03:05 -0500853static void
Matthew Smithca514fd2017-10-12 12:06:59 -0500854vl_api_ipsec_tunnel_if_set_sa_t_handler (vl_api_ipsec_tunnel_if_set_sa_t * mp)
855{
856 vl_api_ipsec_tunnel_if_set_sa_reply_t *rmp;
Matthew Smithca514fd2017-10-12 12:06:59 -0500857 int rv;
858
859#if WITH_LIBSSL > 0
Neale Ranns12989b52019-09-26 16:20:19 +0000860 VALIDATE_SW_IF_INDEX(mp);
Matthew Smithca514fd2017-10-12 12:06:59 -0500861
Neale Ranns12989b52019-09-26 16:20:19 +0000862 if (mp->is_outbound)
Neale Ranns28287212019-12-16 00:53:11 +0000863 rv = ipsec_tun_protect_update_out (ntohl (mp->sw_if_index), NULL,
Neale Ranns12989b52019-09-26 16:20:19 +0000864 ntohl (mp->sa_id));
865 else
Neale Ranns28287212019-12-16 00:53:11 +0000866 rv = ipsec_tun_protect_update_in (ntohl (mp->sw_if_index), NULL,
Neale Ranns12989b52019-09-26 16:20:19 +0000867 ntohl (mp->sa_id));
868
Matthew Smithca514fd2017-10-12 12:06:59 -0500869#else
870 clib_warning ("unimplemented");
871#endif
872
Neale Ranns12989b52019-09-26 16:20:19 +0000873 BAD_SW_IF_INDEX_LABEL;
874
Matthew Smithca514fd2017-10-12 12:06:59 -0500875 REPLY_MACRO (VL_API_IPSEC_TUNNEL_IF_SET_SA_REPLY);
876}
877
Klement Sekerab4d30532018-11-08 13:00:02 +0100878static void
879vl_api_ipsec_backend_dump_t_handler (vl_api_ipsec_backend_dump_t * mp)
880{
881 vl_api_registration_t *rp;
882 ipsec_main_t *im = &ipsec_main;
883 u32 context = mp->context;
884
885 rp = vl_api_client_index_to_registration (mp->client_index);
886
887 if (rp == 0)
888 {
889 clib_warning ("Client %d AWOL", mp->client_index);
890 return;
891 }
892
893 ipsec_ah_backend_t *ab;
894 ipsec_esp_backend_t *eb;
895 /* *INDENT-OFF* */
896 pool_foreach (ab, im->ah_backends, {
897 vl_api_ipsec_backend_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
898 clib_memset (mp, 0, sizeof (*mp));
899 mp->_vl_msg_id = ntohs (VL_API_IPSEC_BACKEND_DETAILS);
900 mp->context = context;
901 snprintf ((char *)mp->name, sizeof (mp->name), "%.*s", vec_len (ab->name),
902 ab->name);
Neale Ranns17dcec02019-01-09 21:22:20 -0800903 mp->protocol = ntohl (IPSEC_API_PROTO_AH);
Klement Sekerab4d30532018-11-08 13:00:02 +0100904 mp->index = ab - im->ah_backends;
905 mp->active = mp->index == im->ah_current_backend ? 1 : 0;
906 vl_api_send_msg (rp, (u8 *)mp);
907 });
908 pool_foreach (eb, im->esp_backends, {
909 vl_api_ipsec_backend_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
910 clib_memset (mp, 0, sizeof (*mp));
911 mp->_vl_msg_id = ntohs (VL_API_IPSEC_BACKEND_DETAILS);
912 mp->context = context;
913 snprintf ((char *)mp->name, sizeof (mp->name), "%.*s", vec_len (eb->name),
914 eb->name);
Neale Ranns17dcec02019-01-09 21:22:20 -0800915 mp->protocol = ntohl (IPSEC_API_PROTO_ESP);
Klement Sekerab4d30532018-11-08 13:00:02 +0100916 mp->index = eb - im->esp_backends;
917 mp->active = mp->index == im->esp_current_backend ? 1 : 0;
918 vl_api_send_msg (rp, (u8 *)mp);
919 });
920 /* *INDENT-ON* */
921}
922
923static void
924vl_api_ipsec_select_backend_t_handler (vl_api_ipsec_select_backend_t * mp)
925{
926 ipsec_main_t *im = &ipsec_main;
927 vl_api_ipsec_select_backend_reply_t *rmp;
Neale Ranns17dcec02019-01-09 21:22:20 -0800928 ipsec_protocol_t protocol;
Klement Sekerab4d30532018-11-08 13:00:02 +0100929 int rv = 0;
930 if (pool_elts (im->sad) > 0)
931 {
932 rv = VNET_API_ERROR_INSTANCE_IN_USE;
933 goto done;
934 }
Neale Ranns17dcec02019-01-09 21:22:20 -0800935
936 rv = ipsec_proto_decode (mp->protocol, &protocol);
937
938 if (rv)
939 goto done;
940
Klement Sekerab4d30532018-11-08 13:00:02 +0100941#if WITH_LIBSSL > 0
Neale Ranns17dcec02019-01-09 21:22:20 -0800942 switch (protocol)
Klement Sekerab4d30532018-11-08 13:00:02 +0100943 {
944 case IPSEC_PROTOCOL_ESP:
Neale Rannse8915fc2019-04-23 20:57:55 -0400945 rv = ipsec_select_esp_backend (im, mp->index);
Klement Sekerab4d30532018-11-08 13:00:02 +0100946 break;
947 case IPSEC_PROTOCOL_AH:
Neale Rannse8915fc2019-04-23 20:57:55 -0400948 rv = ipsec_select_ah_backend (im, mp->index);
Klement Sekerab4d30532018-11-08 13:00:02 +0100949 break;
950 default:
Neale Rannse8915fc2019-04-23 20:57:55 -0400951 rv = VNET_API_ERROR_INVALID_PROTOCOL;
Klement Sekerab4d30532018-11-08 13:00:02 +0100952 break;
953 }
954#else
955 clib_warning ("unimplemented"); /* FIXME */
956#endif
957done:
958 REPLY_MACRO (VL_API_IPSEC_SELECT_BACKEND_REPLY);
959}
960
Neale Ranns7c44d782019-02-25 10:28:29 +0000961/*
962 * ipsec_api_hookup
963 * Add vpe's API message handlers to the table.
964 * vlib has already mapped shared memory and
965 * added the client registration handlers.
966 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
967 */
968#define vl_msg_name_crc_list
969#include <vnet/vnet_all_api_h.h>
970#undef vl_msg_name_crc_list
971
972static void
973setup_message_id_table (api_main_t * am)
974{
975#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
976 foreach_vl_msg_name_crc_ipsec;
977#undef _
978}
979
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100980static clib_error_t *
981ipsec_api_hookup (vlib_main_t * vm)
982{
Dave Barach39d69112019-11-27 11:42:13 -0500983 api_main_t *am = vlibapi_get_main ();
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100984
985#define _(N,n) \
986 vl_msg_api_set_handlers(VL_API_##N, #n, \
987 vl_api_##n##_t_handler, \
988 vl_noop_handler, \
989 vl_api_##n##_t_endian, \
990 vl_api_##n##_t_print, \
991 sizeof(vl_api_##n##_t), 1);
992 foreach_vpe_api_msg;
993#undef _
994
995 /*
Neale Rannsc87b66c2019-02-07 07:26:12 -0800996 * Adding and deleting SAs is MP safe since when they are added/delete
997 * no traffic is using them
998 */
999 am->is_mp_safe[VL_API_IPSEC_SAD_ENTRY_ADD_DEL] = 1;
1000 am->is_mp_safe[VL_API_IPSEC_SAD_ENTRY_ADD_DEL_REPLY] = 1;
1001
1002 /*
Pavel Kotucek9c7ef032016-12-21 07:46:45 +01001003 * Set up the (msg_name, crc, message-id) table
1004 */
1005 setup_message_id_table (am);
1006
1007 return 0;
1008}
1009
1010VLIB_API_INIT_FUNCTION (ipsec_api_hookup);
1011
1012/*
1013 * fd.io coding-style-patch-verification: ON
1014 *
1015 * Local Variables:
1016 * eval: (c-set-style "gnu")
1017 * End:
1018 */