api: remove transport specific code from handlers
[vpp.git] / src / vnet / ipsec / ipsec_api.c
1 /*
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>
26
27 #include <vnet/vnet_msg_enum.h>
28
29 #if WITH_LIBSSL > 0
30 #include <vnet/ipsec/ipsec.h>
31 #include <vnet/ipsec/ikev2.h>
32 #endif /* IPSEC */
33
34 #define vl_typedefs             /* define message structures */
35 #include <vnet/vnet_all_api_h.h>
36 #undef vl_typedefs
37
38 #define vl_endianfun            /* define message structures */
39 #include <vnet/vnet_all_api_h.h>
40 #undef vl_endianfun
41
42 /* instantiate all the print functions we know about */
43 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
44 #define vl_printfun
45 #include <vnet/vnet_all_api_h.h>
46 #undef vl_printfun
47
48 #include <vlibapi/api_helper_macros.h>
49
50 #define foreach_vpe_api_msg                                             \
51 _(IPSEC_SPD_ADD_DEL, ipsec_spd_add_del)                                 \
52 _(IPSEC_INTERFACE_ADD_DEL_SPD, ipsec_interface_add_del_spd)             \
53 _(IPSEC_SPD_ADD_DEL_ENTRY, ipsec_spd_add_del_entry)                     \
54 _(IPSEC_SAD_ADD_DEL_ENTRY, ipsec_sad_add_del_entry)                     \
55 _(IPSEC_SA_SET_KEY, ipsec_sa_set_key)                                   \
56 _(IPSEC_SA_DUMP, ipsec_sa_dump)                                         \
57 _(IPSEC_SPD_DUMP, ipsec_spd_dump)                                       \
58 _(IPSEC_TUNNEL_IF_ADD_DEL, ipsec_tunnel_if_add_del)                     \
59 _(IPSEC_TUNNEL_IF_SET_KEY, ipsec_tunnel_if_set_key)                     \
60 _(IPSEC_TUNNEL_IF_SET_SA, ipsec_tunnel_if_set_sa)                       \
61 _(IKEV2_PROFILE_ADD_DEL, ikev2_profile_add_del)                         \
62 _(IKEV2_PROFILE_SET_AUTH, ikev2_profile_set_auth)                       \
63 _(IKEV2_PROFILE_SET_ID, ikev2_profile_set_id)                           \
64 _(IKEV2_PROFILE_SET_TS, ikev2_profile_set_ts)                           \
65 _(IKEV2_SET_LOCAL_KEY, ikev2_set_local_key)                             \
66 _(IKEV2_SET_RESPONDER, ikev2_set_responder)                             \
67 _(IKEV2_SET_IKE_TRANSFORMS, ikev2_set_ike_transforms)                   \
68 _(IKEV2_SET_ESP_TRANSFORMS, ikev2_set_esp_transforms)                   \
69 _(IKEV2_SET_SA_LIFETIME, ikev2_set_sa_lifetime)                         \
70 _(IKEV2_INITIATE_SA_INIT, ikev2_initiate_sa_init)                       \
71 _(IKEV2_INITIATE_DEL_IKE_SA, ikev2_initiate_del_ike_sa)                 \
72 _(IKEV2_INITIATE_DEL_CHILD_SA, ikev2_initiate_del_child_sa)             \
73 _(IKEV2_INITIATE_REKEY_CHILD_SA, ikev2_initiate_rekey_child_sa)
74
75 static void vl_api_ipsec_spd_add_del_t_handler
76   (vl_api_ipsec_spd_add_del_t * mp)
77 {
78 #if WITH_LIBSSL == 0
79   clib_warning ("unimplemented");
80 #else
81
82   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
83   vl_api_ipsec_spd_add_del_reply_t *rmp;
84   int rv;
85
86   rv = ipsec_add_del_spd (vm, ntohl (mp->spd_id), mp->is_add);
87
88   REPLY_MACRO (VL_API_IPSEC_SPD_ADD_DEL_REPLY);
89 #endif
90 }
91
92 static void vl_api_ipsec_interface_add_del_spd_t_handler
93   (vl_api_ipsec_interface_add_del_spd_t * mp)
94 {
95   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
96   vl_api_ipsec_interface_add_del_spd_reply_t *rmp;
97   int rv;
98   u32 sw_if_index __attribute__ ((unused));
99   u32 spd_id __attribute__ ((unused));
100
101   sw_if_index = ntohl (mp->sw_if_index);
102   spd_id = ntohl (mp->spd_id);
103
104   VALIDATE_SW_IF_INDEX (mp);
105
106 #if WITH_LIBSSL > 0
107   rv = ipsec_set_interface_spd (vm, sw_if_index, spd_id, mp->is_add);
108 #else
109   rv = VNET_API_ERROR_UNIMPLEMENTED;
110 #endif
111
112   BAD_SW_IF_INDEX_LABEL;
113
114   REPLY_MACRO (VL_API_IPSEC_INTERFACE_ADD_DEL_SPD_REPLY);
115 }
116
117 static void vl_api_ipsec_spd_add_del_entry_t_handler
118   (vl_api_ipsec_spd_add_del_entry_t * mp)
119 {
120   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
121   vl_api_ipsec_spd_add_del_entry_reply_t *rmp;
122   int rv;
123
124 #if WITH_LIBSSL > 0
125   ipsec_policy_t p;
126
127   memset (&p, 0, sizeof (p));
128
129   p.id = ntohl (mp->spd_id);
130   p.priority = ntohl (mp->priority);
131   p.is_outbound = mp->is_outbound;
132   p.is_ipv6 = mp->is_ipv6;
133
134   if (mp->is_ipv6 || mp->is_ip_any)
135     {
136       clib_memcpy (&p.raddr.start, mp->remote_address_start, 16);
137       clib_memcpy (&p.raddr.stop, mp->remote_address_stop, 16);
138       clib_memcpy (&p.laddr.start, mp->local_address_start, 16);
139       clib_memcpy (&p.laddr.stop, mp->local_address_stop, 16);
140     }
141   else
142     {
143       clib_memcpy (&p.raddr.start.ip4.data, mp->remote_address_start, 4);
144       clib_memcpy (&p.raddr.stop.ip4.data, mp->remote_address_stop, 4);
145       clib_memcpy (&p.laddr.start.ip4.data, mp->local_address_start, 4);
146       clib_memcpy (&p.laddr.stop.ip4.data, mp->local_address_stop, 4);
147     }
148   p.protocol = mp->protocol;
149   p.rport.start = ntohs (mp->remote_port_start);
150   p.rport.stop = ntohs (mp->remote_port_stop);
151   p.lport.start = ntohs (mp->local_port_start);
152   p.lport.stop = ntohs (mp->local_port_stop);
153   /* policy action resolve unsupported */
154   if (mp->policy == IPSEC_POLICY_ACTION_RESOLVE)
155     {
156       clib_warning ("unsupported action: 'resolve'");
157       rv = VNET_API_ERROR_UNIMPLEMENTED;
158       goto out;
159     }
160   p.policy = mp->policy;
161   p.sa_id = ntohl (mp->sa_id);
162
163   rv = ipsec_add_del_policy (vm, &p, mp->is_add);
164   if (rv)
165     goto out;
166
167   if (mp->is_ip_any)
168     {
169       p.is_ipv6 = 1;
170       rv = ipsec_add_del_policy (vm, &p, mp->is_add);
171     }
172 #else
173   rv = VNET_API_ERROR_UNIMPLEMENTED;
174   goto out;
175 #endif
176
177 out:
178   REPLY_MACRO (VL_API_IPSEC_SPD_ADD_DEL_ENTRY_REPLY);
179 }
180
181 static void vl_api_ipsec_sad_add_del_entry_t_handler
182   (vl_api_ipsec_sad_add_del_entry_t * mp)
183 {
184   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
185   vl_api_ipsec_sad_add_del_entry_reply_t *rmp;
186   int rv;
187 #if WITH_LIBSSL > 0
188   ipsec_main_t *im = &ipsec_main;
189   ipsec_sa_t sa;
190
191   memset (&sa, 0, sizeof (sa));
192
193   sa.id = ntohl (mp->sad_id);
194   sa.spi = ntohl (mp->spi);
195   sa.protocol = mp->protocol;
196   /* check for unsupported crypto-alg */
197   if (mp->crypto_algorithm < IPSEC_CRYPTO_ALG_AES_CBC_128 ||
198       mp->crypto_algorithm >= IPSEC_CRYPTO_N_ALG)
199     {
200       clib_warning ("unsupported crypto-alg: '%U'", format_ipsec_crypto_alg,
201                     mp->crypto_algorithm);
202       rv = VNET_API_ERROR_UNIMPLEMENTED;
203       goto out;
204     }
205   sa.crypto_alg = mp->crypto_algorithm;
206   sa.crypto_key_len = mp->crypto_key_length;
207   clib_memcpy (&sa.crypto_key, mp->crypto_key, sizeof (sa.crypto_key));
208   /* check for unsupported integ-alg */
209   if (mp->integrity_algorithm >= IPSEC_INTEG_N_ALG)
210     {
211       clib_warning ("unsupported integ-alg: '%U'", format_ipsec_integ_alg,
212                     mp->integrity_algorithm);
213       rv = VNET_API_ERROR_UNIMPLEMENTED;
214       goto out;
215     }
216
217   sa.integ_alg = mp->integrity_algorithm;
218   sa.integ_key_len = mp->integrity_key_length;
219   clib_memcpy (&sa.integ_key, mp->integrity_key, sizeof (sa.integ_key));
220   sa.use_esn = mp->use_extended_sequence_number;
221   sa.is_tunnel = mp->is_tunnel;
222   sa.is_tunnel_ip6 = mp->is_tunnel_ipv6;
223   if (sa.is_tunnel_ip6)
224     {
225       clib_memcpy (&sa.tunnel_src_addr, mp->tunnel_src_address, 16);
226       clib_memcpy (&sa.tunnel_dst_addr, mp->tunnel_dst_address, 16);
227     }
228   else
229     {
230       clib_memcpy (&sa.tunnel_src_addr.ip4.data, mp->tunnel_src_address, 4);
231       clib_memcpy (&sa.tunnel_dst_addr.ip4.data, mp->tunnel_dst_address, 4);
232     }
233   sa.use_anti_replay = mp->use_anti_replay;
234
235   ASSERT (im->cb.check_support_cb);
236   clib_error_t *err = im->cb.check_support_cb (&sa);
237   if (err)
238     {
239       clib_warning ("%s", err->what);
240       rv = VNET_API_ERROR_UNIMPLEMENTED;
241       goto out;
242     }
243
244   rv = ipsec_add_del_sa (vm, &sa, mp->is_add);
245 #else
246   rv = VNET_API_ERROR_UNIMPLEMENTED;
247   goto out;
248 #endif
249
250 out:
251   REPLY_MACRO (VL_API_IPSEC_SAD_ADD_DEL_ENTRY_REPLY);
252 }
253
254 static void
255 send_ipsec_spd_details (ipsec_policy_t * p, vl_api_registration_t * reg,
256                         u32 context)
257 {
258   vl_api_ipsec_spd_details_t *mp;
259
260   mp = vl_msg_api_alloc (sizeof (*mp));
261   memset (mp, 0, sizeof (*mp));
262   mp->_vl_msg_id = ntohs (VL_API_IPSEC_SPD_DETAILS);
263   mp->context = context;
264
265   mp->spd_id = htonl (p->id);
266   mp->priority = htonl (p->priority);
267   mp->is_outbound = p->is_outbound;
268   mp->is_ipv6 = p->is_ipv6;
269   if (p->is_ipv6)
270     {
271       memcpy (mp->local_start_addr, &p->laddr.start.ip6, 16);
272       memcpy (mp->local_stop_addr, &p->laddr.stop.ip6, 16);
273       memcpy (mp->remote_start_addr, &p->raddr.start.ip6, 16);
274       memcpy (mp->remote_stop_addr, &p->raddr.stop.ip6, 16);
275     }
276   else
277     {
278       memcpy (mp->local_start_addr, &p->laddr.start.ip4, 4);
279       memcpy (mp->local_stop_addr, &p->laddr.stop.ip4, 4);
280       memcpy (mp->remote_start_addr, &p->raddr.start.ip4, 4);
281       memcpy (mp->remote_stop_addr, &p->raddr.stop.ip4, 4);
282     }
283   mp->local_start_port = htons (p->lport.start);
284   mp->local_stop_port = htons (p->lport.stop);
285   mp->remote_start_port = htons (p->rport.start);
286   mp->remote_stop_port = htons (p->rport.stop);
287   mp->protocol = p->protocol;
288   mp->policy = p->policy;
289   mp->sa_id = htonl (p->sa_id);
290   mp->bytes = clib_host_to_net_u64 (p->counter.bytes);
291   mp->packets = clib_host_to_net_u64 (p->counter.packets);
292
293   vl_api_send_msg (reg, (u8 *) mp);
294 }
295
296 static void
297 vl_api_ipsec_spd_dump_t_handler (vl_api_ipsec_spd_dump_t * mp)
298 {
299   vl_api_registration_t *reg;
300   ipsec_main_t *im = &ipsec_main;
301   ipsec_policy_t *policy;
302   ipsec_spd_t *spd;
303   uword *p;
304   u32 spd_index;
305 #if WITH_LIBSSL > 0
306   reg = vl_api_client_index_to_registration (mp->client_index);
307   if (!reg)
308     return;
309
310   p = hash_get (im->spd_index_by_spd_id, ntohl (mp->spd_id));
311   if (!p)
312     return;
313
314   spd_index = p[0];
315   spd = pool_elt_at_index (im->spds, spd_index);
316
317   /* *INDENT-OFF* */
318   pool_foreach (policy, spd->policies,
319   ({
320     if (mp->sa_id == ~(0) || ntohl (mp->sa_id) == policy->sa_id)
321       send_ipsec_spd_details (policy, reg,
322                               mp->context);}
323     ));
324   /* *INDENT-ON* */
325 #else
326   clib_warning ("unimplemented");
327 #endif
328 }
329
330 static void
331 vl_api_ipsec_sa_set_key_t_handler (vl_api_ipsec_sa_set_key_t * mp)
332 {
333   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
334   vl_api_ipsec_sa_set_key_reply_t *rmp;
335   int rv;
336 #if WITH_LIBSSL > 0
337   ipsec_sa_t sa;
338   sa.id = ntohl (mp->sa_id);
339   sa.crypto_key_len = mp->crypto_key_length;
340   clib_memcpy (&sa.crypto_key, mp->crypto_key, sizeof (sa.crypto_key));
341   sa.integ_key_len = mp->integrity_key_length;
342   clib_memcpy (&sa.integ_key, mp->integrity_key, sizeof (sa.integ_key));
343
344   rv = ipsec_set_sa_key (vm, &sa);
345 #else
346   rv = VNET_API_ERROR_UNIMPLEMENTED;
347 #endif
348
349   REPLY_MACRO (VL_API_IPSEC_SA_SET_KEY_REPLY);
350 }
351
352 static void
353 vl_api_ipsec_tunnel_if_add_del_t_handler (vl_api_ipsec_tunnel_if_add_del_t *
354                                           mp)
355 {
356   vl_api_ipsec_tunnel_if_add_del_reply_t *rmp;
357   ipsec_main_t *im = &ipsec_main;
358   vnet_main_t *vnm = im->vnet_main;
359   u32 sw_if_index = ~0;
360   int rv;
361
362 #if WITH_LIBSSL > 0
363   ipsec_add_del_tunnel_args_t tun;
364
365   memset (&tun, 0, sizeof (ipsec_add_del_tunnel_args_t));
366
367   tun.is_add = mp->is_add;
368   tun.esn = mp->esn;
369   tun.anti_replay = mp->anti_replay;
370   tun.local_spi = ntohl (mp->local_spi);
371   tun.remote_spi = ntohl (mp->remote_spi);
372   tun.crypto_alg = mp->crypto_alg;
373   tun.local_crypto_key_len = mp->local_crypto_key_len;
374   tun.remote_crypto_key_len = mp->remote_crypto_key_len;
375   tun.integ_alg = mp->integ_alg;
376   tun.local_integ_key_len = mp->local_integ_key_len;
377   tun.remote_integ_key_len = mp->remote_integ_key_len;
378   memcpy (&tun.local_ip, mp->local_ip, 4);
379   memcpy (&tun.remote_ip, mp->remote_ip, 4);
380   memcpy (&tun.local_crypto_key, &mp->local_crypto_key,
381           mp->local_crypto_key_len);
382   memcpy (&tun.remote_crypto_key, &mp->remote_crypto_key,
383           mp->remote_crypto_key_len);
384   memcpy (&tun.local_integ_key, &mp->local_integ_key,
385           mp->local_integ_key_len);
386   memcpy (&tun.remote_integ_key, &mp->remote_integ_key,
387           mp->remote_integ_key_len);
388
389   rv = ipsec_add_del_tunnel_if_internal (vnm, &tun, &sw_if_index);
390
391 #else
392   rv = VNET_API_ERROR_UNIMPLEMENTED;
393 #endif
394
395   REPLY_MACRO2 (VL_API_IPSEC_TUNNEL_IF_ADD_DEL_REPLY, (
396                                                         {
397                                                         rmp->sw_if_index =
398                                                         htonl (sw_if_index);
399                                                         }));
400 }
401
402 static void
403 send_ipsec_sa_details (ipsec_sa_t * sa, vl_api_registration_t * reg,
404                        u32 context, u32 sw_if_index)
405 {
406   vl_api_ipsec_sa_details_t *mp;
407
408   mp = vl_msg_api_alloc (sizeof (*mp));
409   memset (mp, 0, sizeof (*mp));
410   mp->_vl_msg_id = ntohs (VL_API_IPSEC_SA_DETAILS);
411   mp->context = context;
412
413   mp->sa_id = htonl (sa->id);
414   mp->sw_if_index = htonl (sw_if_index);
415
416   mp->spi = htonl (sa->spi);
417   mp->protocol = sa->protocol;
418
419   mp->crypto_alg = sa->crypto_alg;
420   mp->crypto_key_len = sa->crypto_key_len;
421   memcpy (mp->crypto_key, sa->crypto_key, sa->crypto_key_len);
422
423   mp->integ_alg = sa->integ_alg;
424   mp->integ_key_len = sa->integ_key_len;
425   memcpy (mp->integ_key, sa->integ_key, sa->integ_key_len);
426
427   mp->use_esn = sa->use_esn;
428   mp->use_anti_replay = sa->use_anti_replay;
429
430   mp->is_tunnel = sa->is_tunnel;
431   mp->is_tunnel_ip6 = sa->is_tunnel_ip6;
432
433   if (sa->is_tunnel)
434     {
435       if (sa->is_tunnel_ip6)
436         {
437           memcpy (mp->tunnel_src_addr, &sa->tunnel_src_addr.ip6, 16);
438           memcpy (mp->tunnel_dst_addr, &sa->tunnel_dst_addr.ip6, 16);
439         }
440       else
441         {
442           memcpy (mp->tunnel_src_addr, &sa->tunnel_src_addr.ip4, 4);
443           memcpy (mp->tunnel_dst_addr, &sa->tunnel_dst_addr.ip4, 4);
444         }
445     }
446
447   mp->salt = clib_host_to_net_u32 (sa->salt);
448   mp->seq_outbound = clib_host_to_net_u64 (((u64) sa->seq));
449   mp->last_seq_inbound = clib_host_to_net_u64 (((u64) sa->last_seq));
450   if (sa->use_esn)
451     {
452       mp->seq_outbound |= (u64) (clib_host_to_net_u32 (sa->seq_hi));
453       mp->last_seq_inbound |= (u64) (clib_host_to_net_u32 (sa->last_seq_hi));
454     }
455   if (sa->use_anti_replay)
456     mp->replay_window = clib_host_to_net_u64 (sa->replay_window);
457   mp->total_data_size = clib_host_to_net_u64 (sa->total_data_size);
458
459   vl_api_send_msg (reg, (u8 *) mp);
460 }
461
462
463 static void
464 vl_api_ipsec_sa_dump_t_handler (vl_api_ipsec_sa_dump_t * mp)
465 {
466   vl_api_registration_t *reg;
467   ipsec_main_t *im = &ipsec_main;
468   vnet_main_t *vnm = im->vnet_main;
469   ipsec_sa_t *sa;
470   ipsec_tunnel_if_t *t;
471   u32 *sa_index_to_tun_if_index = 0;
472
473 #if WITH_LIBSSL > 0
474   reg = vl_api_client_index_to_registration (mp->client_index);
475   if (!reg || pool_elts (im->sad) == 0)
476     return;
477
478   vec_validate_init_empty (sa_index_to_tun_if_index, vec_len (im->sad) - 1,
479                            ~0);
480
481   /* *INDENT-OFF* */
482   pool_foreach (t, im->tunnel_interfaces,
483   ({
484     vnet_hw_interface_t *hi;
485     u32 sw_if_index = ~0;
486
487     hi = vnet_get_hw_interface (vnm, t->hw_if_index);
488     sw_if_index = hi->sw_if_index;
489     sa_index_to_tun_if_index[t->input_sa_index] = sw_if_index;
490     sa_index_to_tun_if_index[t->output_sa_index] = sw_if_index;
491   }));
492
493   pool_foreach (sa, im->sad,
494   ({
495     if (mp->sa_id == ~(0) || ntohl (mp->sa_id) == sa->id)
496       send_ipsec_sa_details (sa, reg, mp->context,
497                              sa_index_to_tun_if_index[sa - im->sad]);
498   }));
499   /* *INDENT-ON* */
500
501   vec_free (sa_index_to_tun_if_index);
502 #else
503   clib_warning ("unimplemented");
504 #endif
505 }
506
507
508 static void
509 vl_api_ipsec_tunnel_if_set_key_t_handler (vl_api_ipsec_tunnel_if_set_key_t *
510                                           mp)
511 {
512   vl_api_ipsec_tunnel_if_set_key_reply_t *rmp;
513   ipsec_main_t *im = &ipsec_main;
514   vnet_main_t *vnm = im->vnet_main;
515   vnet_sw_interface_t *sw;
516   u8 *key = 0;
517   int rv;
518
519 #if WITH_LIBSSL > 0
520   sw = vnet_get_sw_interface (vnm, ntohl (mp->sw_if_index));
521
522   switch (mp->key_type)
523     {
524     case IPSEC_IF_SET_KEY_TYPE_LOCAL_CRYPTO:
525     case IPSEC_IF_SET_KEY_TYPE_REMOTE_CRYPTO:
526       if (mp->alg < IPSEC_CRYPTO_ALG_AES_CBC_128 ||
527           mp->alg > IPSEC_CRYPTO_N_ALG)
528         {
529           rv = VNET_API_ERROR_UNIMPLEMENTED;
530           goto out;
531         }
532       break;
533     case IPSEC_IF_SET_KEY_TYPE_LOCAL_INTEG:
534     case IPSEC_IF_SET_KEY_TYPE_REMOTE_INTEG:
535       if (mp->alg > IPSEC_INTEG_N_ALG)
536         {
537           rv = VNET_API_ERROR_UNIMPLEMENTED;
538           goto out;
539         }
540       break;
541     case IPSEC_IF_SET_KEY_TYPE_NONE:
542     default:
543       rv = VNET_API_ERROR_UNIMPLEMENTED;
544       goto out;
545       break;
546     }
547
548   key = vec_new (u8, mp->key_len);
549   clib_memcpy (key, mp->key, mp->key_len);
550
551   rv = ipsec_set_interface_key (vnm, sw->hw_if_index, mp->key_type, mp->alg,
552                                 key);
553   vec_free (key);
554 #else
555   clib_warning ("unimplemented");
556 #endif
557
558 out:
559   REPLY_MACRO (VL_API_IPSEC_TUNNEL_IF_SET_KEY_REPLY);
560 }
561
562
563 static void
564 vl_api_ipsec_tunnel_if_set_sa_t_handler (vl_api_ipsec_tunnel_if_set_sa_t * mp)
565 {
566   vl_api_ipsec_tunnel_if_set_sa_reply_t *rmp;
567   ipsec_main_t *im = &ipsec_main;
568   vnet_main_t *vnm = im->vnet_main;
569   vnet_sw_interface_t *sw;
570   int rv;
571
572 #if WITH_LIBSSL > 0
573   sw = vnet_get_sw_interface (vnm, ntohl (mp->sw_if_index));
574
575   rv = ipsec_set_interface_sa (vnm, sw->hw_if_index, ntohl (mp->sa_id),
576                                mp->is_outbound);
577 #else
578   clib_warning ("unimplemented");
579 #endif
580
581   REPLY_MACRO (VL_API_IPSEC_TUNNEL_IF_SET_SA_REPLY);
582 }
583
584
585 static void
586 vl_api_ikev2_profile_add_del_t_handler (vl_api_ikev2_profile_add_del_t * mp)
587 {
588   vl_api_ikev2_profile_add_del_reply_t *rmp;
589   int rv = 0;
590
591 #if WITH_LIBSSL > 0
592   vlib_main_t *vm = vlib_get_main ();
593   clib_error_t *error;
594   u8 *tmp = format (0, "%s", mp->name);
595   error = ikev2_add_del_profile (vm, tmp, mp->is_add);
596   vec_free (tmp);
597   if (error)
598     rv = VNET_API_ERROR_UNSPECIFIED;
599 #else
600   rv = VNET_API_ERROR_UNIMPLEMENTED;
601 #endif
602
603   REPLY_MACRO (VL_API_IKEV2_PROFILE_ADD_DEL_REPLY);
604 }
605
606 static void
607   vl_api_ikev2_profile_set_auth_t_handler
608   (vl_api_ikev2_profile_set_auth_t * mp)
609 {
610   vl_api_ikev2_profile_set_auth_reply_t *rmp;
611   int rv = 0;
612
613 #if WITH_LIBSSL > 0
614   vlib_main_t *vm = vlib_get_main ();
615   clib_error_t *error;
616   u8 *tmp = format (0, "%s", mp->name);
617   u8 *data = vec_new (u8, mp->data_len);
618   clib_memcpy (data, mp->data, mp->data_len);
619   error = ikev2_set_profile_auth (vm, tmp, mp->auth_method, data, mp->is_hex);
620   vec_free (tmp);
621   vec_free (data);
622   if (error)
623     rv = VNET_API_ERROR_UNSPECIFIED;
624 #else
625   rv = VNET_API_ERROR_UNIMPLEMENTED;
626 #endif
627
628   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_AUTH_REPLY);
629 }
630
631 static void
632 vl_api_ikev2_profile_set_id_t_handler (vl_api_ikev2_profile_set_id_t * mp)
633 {
634   vl_api_ikev2_profile_add_del_reply_t *rmp;
635   int rv = 0;
636
637 #if WITH_LIBSSL > 0
638   vlib_main_t *vm = vlib_get_main ();
639   clib_error_t *error;
640   u8 *tmp = format (0, "%s", mp->name);
641   u8 *data = vec_new (u8, mp->data_len);
642   clib_memcpy (data, mp->data, mp->data_len);
643   error = ikev2_set_profile_id (vm, tmp, mp->id_type, data, mp->is_local);
644   vec_free (tmp);
645   vec_free (data);
646   if (error)
647     rv = VNET_API_ERROR_UNSPECIFIED;
648 #else
649   rv = VNET_API_ERROR_UNIMPLEMENTED;
650 #endif
651
652   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_ID_REPLY);
653 }
654
655 static void
656 vl_api_ikev2_profile_set_ts_t_handler (vl_api_ikev2_profile_set_ts_t * mp)
657 {
658   vl_api_ikev2_profile_set_ts_reply_t *rmp;
659   int rv = 0;
660
661 #if WITH_LIBSSL > 0
662   vlib_main_t *vm = vlib_get_main ();
663   clib_error_t *error;
664   u8 *tmp = format (0, "%s", mp->name);
665   error = ikev2_set_profile_ts (vm, tmp, mp->proto, mp->start_port,
666                                 mp->end_port, (ip4_address_t) mp->start_addr,
667                                 (ip4_address_t) mp->end_addr, mp->is_local);
668   vec_free (tmp);
669   if (error)
670     rv = VNET_API_ERROR_UNSPECIFIED;
671 #else
672   rv = VNET_API_ERROR_UNIMPLEMENTED;
673 #endif
674
675   REPLY_MACRO (VL_API_IKEV2_PROFILE_SET_TS_REPLY);
676 }
677
678 static void
679 vl_api_ikev2_set_local_key_t_handler (vl_api_ikev2_set_local_key_t * mp)
680 {
681   vl_api_ikev2_profile_set_ts_reply_t *rmp;
682   int rv = 0;
683
684 #if WITH_LIBSSL > 0
685   vlib_main_t *vm = vlib_get_main ();
686   clib_error_t *error;
687
688   error = ikev2_set_local_key (vm, mp->key_file);
689   if (error)
690     rv = VNET_API_ERROR_UNSPECIFIED;
691 #else
692   rv = VNET_API_ERROR_UNIMPLEMENTED;
693 #endif
694
695   REPLY_MACRO (VL_API_IKEV2_SET_LOCAL_KEY_REPLY);
696 }
697
698 static void
699 vl_api_ikev2_set_responder_t_handler (vl_api_ikev2_set_responder_t * mp)
700 {
701   vl_api_ikev2_set_responder_reply_t *rmp;
702   int rv = 0;
703
704 #if WITH_LIBSSL > 0
705   vlib_main_t *vm = vlib_get_main ();
706   clib_error_t *error;
707
708   u8 *tmp = format (0, "%s", mp->name);
709   ip4_address_t ip4;
710   clib_memcpy (&ip4, mp->address, sizeof (ip4));
711
712   error = ikev2_set_profile_responder (vm, tmp, mp->sw_if_index, ip4);
713   vec_free (tmp);
714   if (error)
715     rv = VNET_API_ERROR_UNSPECIFIED;
716 #else
717   rv = VNET_API_ERROR_UNIMPLEMENTED;
718 #endif
719
720   REPLY_MACRO (VL_API_IKEV2_SET_RESPONDER_REPLY);
721 }
722
723 static void
724 vl_api_ikev2_set_ike_transforms_t_handler (vl_api_ikev2_set_ike_transforms_t *
725                                            mp)
726 {
727   vl_api_ikev2_set_ike_transforms_reply_t *rmp;
728   int rv = 0;
729
730 #if WITH_LIBSSL > 0
731   vlib_main_t *vm = vlib_get_main ();
732   clib_error_t *error;
733
734   u8 *tmp = format (0, "%s", mp->name);
735
736   error =
737     ikev2_set_profile_ike_transforms (vm, tmp, mp->crypto_alg, mp->integ_alg,
738                                       mp->dh_group, mp->crypto_key_size);
739   vec_free (tmp);
740   if (error)
741     rv = VNET_API_ERROR_UNSPECIFIED;
742 #else
743   rv = VNET_API_ERROR_UNIMPLEMENTED;
744 #endif
745
746   REPLY_MACRO (VL_API_IKEV2_SET_IKE_TRANSFORMS_REPLY);
747 }
748
749 static void
750 vl_api_ikev2_set_esp_transforms_t_handler (vl_api_ikev2_set_esp_transforms_t *
751                                            mp)
752 {
753   vl_api_ikev2_set_esp_transforms_reply_t *rmp;
754   int rv = 0;
755
756 #if WITH_LIBSSL > 0
757   vlib_main_t *vm = vlib_get_main ();
758   clib_error_t *error;
759
760   u8 *tmp = format (0, "%s", mp->name);
761
762   error =
763     ikev2_set_profile_esp_transforms (vm, tmp, mp->crypto_alg, mp->integ_alg,
764                                       mp->dh_group, mp->crypto_key_size);
765   vec_free (tmp);
766   if (error)
767     rv = VNET_API_ERROR_UNSPECIFIED;
768 #else
769   rv = VNET_API_ERROR_UNIMPLEMENTED;
770 #endif
771
772   REPLY_MACRO (VL_API_IKEV2_SET_ESP_TRANSFORMS_REPLY);
773 }
774
775 static void
776 vl_api_ikev2_set_sa_lifetime_t_handler (vl_api_ikev2_set_sa_lifetime_t * mp)
777 {
778   vl_api_ikev2_set_sa_lifetime_reply_t *rmp;
779   int rv = 0;
780
781 #if WITH_LIBSSL > 0
782   vlib_main_t *vm = vlib_get_main ();
783   clib_error_t *error;
784
785   u8 *tmp = format (0, "%s", mp->name);
786
787   error =
788     ikev2_set_profile_sa_lifetime (vm, tmp, mp->lifetime, mp->lifetime_jitter,
789                                    mp->handover, mp->lifetime_maxdata);
790   vec_free (tmp);
791   if (error)
792     rv = VNET_API_ERROR_UNSPECIFIED;
793 #else
794   rv = VNET_API_ERROR_UNIMPLEMENTED;
795 #endif
796
797   REPLY_MACRO (VL_API_IKEV2_SET_SA_LIFETIME_REPLY);
798 }
799
800 static void
801 vl_api_ikev2_initiate_sa_init_t_handler (vl_api_ikev2_initiate_sa_init_t * mp)
802 {
803   vl_api_ikev2_initiate_sa_init_reply_t *rmp;
804   int rv = 0;
805
806 #if WITH_LIBSSL > 0
807   vlib_main_t *vm = vlib_get_main ();
808   clib_error_t *error;
809
810   u8 *tmp = format (0, "%s", mp->name);
811
812   error = ikev2_initiate_sa_init (vm, tmp);
813   vec_free (tmp);
814   if (error)
815     rv = VNET_API_ERROR_UNSPECIFIED;
816 #else
817   rv = VNET_API_ERROR_UNIMPLEMENTED;
818 #endif
819
820   REPLY_MACRO (VL_API_IKEV2_INITIATE_SA_INIT_REPLY);
821 }
822
823 static void
824 vl_api_ikev2_initiate_del_ike_sa_t_handler (vl_api_ikev2_initiate_del_ike_sa_t
825                                             * mp)
826 {
827   vl_api_ikev2_initiate_del_ike_sa_reply_t *rmp;
828   int rv = 0;
829
830 #if WITH_LIBSSL > 0
831   vlib_main_t *vm = vlib_get_main ();
832   clib_error_t *error;
833
834   error = ikev2_initiate_delete_ike_sa (vm, mp->ispi);
835   if (error)
836     rv = VNET_API_ERROR_UNSPECIFIED;
837 #else
838   rv = VNET_API_ERROR_UNIMPLEMENTED;
839 #endif
840
841   REPLY_MACRO (VL_API_IKEV2_INITIATE_DEL_IKE_SA_REPLY);
842 }
843
844 static void
845   vl_api_ikev2_initiate_del_child_sa_t_handler
846   (vl_api_ikev2_initiate_del_child_sa_t * mp)
847 {
848   vl_api_ikev2_initiate_del_child_sa_reply_t *rmp;
849   int rv = 0;
850
851 #if WITH_LIBSSL > 0
852   vlib_main_t *vm = vlib_get_main ();
853   clib_error_t *error;
854
855   error = ikev2_initiate_delete_child_sa (vm, mp->ispi);
856   if (error)
857     rv = VNET_API_ERROR_UNSPECIFIED;
858 #else
859   rv = VNET_API_ERROR_UNIMPLEMENTED;
860 #endif
861
862   REPLY_MACRO (VL_API_IKEV2_INITIATE_DEL_CHILD_SA_REPLY);
863 }
864
865 static void
866   vl_api_ikev2_initiate_rekey_child_sa_t_handler
867   (vl_api_ikev2_initiate_rekey_child_sa_t * mp)
868 {
869   vl_api_ikev2_initiate_rekey_child_sa_reply_t *rmp;
870   int rv = 0;
871
872 #if WITH_LIBSSL > 0
873   vlib_main_t *vm = vlib_get_main ();
874   clib_error_t *error;
875
876   error = ikev2_initiate_rekey_child_sa (vm, mp->ispi);
877   if (error)
878     rv = VNET_API_ERROR_UNSPECIFIED;
879 #else
880   rv = VNET_API_ERROR_UNIMPLEMENTED;
881 #endif
882
883   REPLY_MACRO (VL_API_IKEV2_INITIATE_REKEY_CHILD_SA_REPLY);
884 }
885
886 /*
887  * ipsec_api_hookup
888  * Add vpe's API message handlers to the table.
889  * vlib has alread mapped shared memory and
890  * added the client registration handlers.
891  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
892  */
893 #define vl_msg_name_crc_list
894 #include <vnet/vnet_all_api_h.h>
895 #undef vl_msg_name_crc_list
896
897 static void
898 setup_message_id_table (api_main_t * am)
899 {
900 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
901   foreach_vl_msg_name_crc_ipsec;
902 #undef _
903 }
904
905 static clib_error_t *
906 ipsec_api_hookup (vlib_main_t * vm)
907 {
908   api_main_t *am = &api_main;
909
910 #define _(N,n)                                                  \
911     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
912                            vl_api_##n##_t_handler,              \
913                            vl_noop_handler,                     \
914                            vl_api_##n##_t_endian,               \
915                            vl_api_##n##_t_print,                \
916                            sizeof(vl_api_##n##_t), 1);
917   foreach_vpe_api_msg;
918 #undef _
919
920   /*
921    * Set up the (msg_name, crc, message-id) table
922    */
923   setup_message_id_table (am);
924
925   return 0;
926 }
927
928 VLIB_API_INIT_FUNCTION (ipsec_api_hookup);
929
930 /*
931  * fd.io coding-style-patch-verification: ON
932  *
933  * Local Variables:
934  * eval: (c-set-style "gnu")
935  * End:
936  */