ipsec: provide stat index in sa details
[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 #include <vnet/ip/ip_types_api.h>
27 #include <vnet/ipsec/ipsec_types_api.h>
28 #include <vnet/fib/fib.h>
29 #include <vnet/ipip/ipip.h>
30
31 #include <vnet/vnet_msg_enum.h>
32
33 #if WITH_LIBSSL > 0
34 #include <vnet/ipsec/ipsec.h>
35 #include <vnet/ipsec/ipsec_tun.h>
36 #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
54 #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)     \
57 _(IPSEC_SPD_ENTRY_ADD_DEL, ipsec_spd_entry_add_del)             \
58 _(IPSEC_SAD_ENTRY_ADD_DEL, ipsec_sad_entry_add_del)             \
59 _(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)             \
64 _(IPSEC_TUNNEL_IF_SET_SA, ipsec_tunnel_if_set_sa)               \
65 _(IPSEC_SELECT_BACKEND, ipsec_select_backend)                   \
66 _(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)
70
71 static void
72 vl_api_ipsec_spd_add_del_t_handler (vl_api_ipsec_spd_add_del_t * mp)
73 {
74 #if WITH_LIBSSL == 0
75   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
82   rv = ipsec_add_del_spd (vm, ntohl (mp->spd_id), mp->is_add);
83
84   REPLY_MACRO (VL_API_IPSEC_SPD_ADD_DEL_REPLY);
85 #endif
86 }
87
88 static 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
102 #if WITH_LIBSSL > 0
103   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
113 static 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;
119   ip_address_t nh;
120   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
131   ip_address_decode2 (&mp->tunnel.nh, &nh);
132
133   rv = ipsec_tun_protect_update (sw_if_index, &nh,
134                                  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
144 static 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;
149   ip_address_t nh;
150   u32 sw_if_index;
151   int rv;
152
153   sw_if_index = ntohl (mp->sw_if_index);
154
155   VALIDATE_SW_IF_INDEX (mp);
156
157 #if WITH_LIBSSL > 0
158   ip_address_decode2 (&mp->nh, &nh);
159   rv = ipsec_tun_protect_del (sw_if_index, &nh);
160 #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
169 typedef struct ipsec_dump_walk_ctx_t_
170 {
171   vl_api_registration_t *reg;
172   u32 context;
173 } ipsec_dump_walk_ctx_t;
174
175 static walk_rc_t
176 send_ipsec_tunnel_protect_details (index_t itpi, void *arg)
177 {
178   ipsec_dump_walk_ctx_t *ctx = arg;
179   vl_api_ipsec_tunnel_protect_details_t *mp;
180   ipsec_tun_protect_t *itp;
181   u32 ii = 0;
182   ipsec_sa_t *sa;
183
184   itp = ipsec_tun_protect_get (itpi);
185
186   mp = vl_msg_api_alloc (sizeof (*mp) + (sizeof (u32) * itp->itp_n_sa_in));
187   clib_memset (mp, 0, sizeof (*mp));
188   mp->_vl_msg_id = ntohs (VL_API_IPSEC_TUNNEL_PROTECT_DETAILS);
189   mp->context = ctx->context;
190
191   mp->tun.sw_if_index = htonl (itp->itp_sw_if_index);
192   ip_address_encode2 (itp->itp_key, &mp->tun.nh);
193
194   sa = ipsec_sa_get (itp->itp_out_sa);
195   mp->tun.sa_out = htonl (sa->id);
196   mp->tun.n_sa_in = itp->itp_n_sa_in;
197   /* *INDENT-OFF* */
198   FOR_EACH_IPSEC_PROTECT_INPUT_SA(itp, sa,
199   ({
200     mp->tun.sa_in[ii++] = htonl (sa->id);
201   }));
202   /* *INDENT-ON* */
203
204   vl_api_send_msg (ctx->reg, (u8 *) mp);
205
206   return (WALK_CONTINUE);
207 }
208
209 static void
210 vl_api_ipsec_tunnel_protect_dump_t_handler (vl_api_ipsec_tunnel_protect_dump_t
211                                             * mp)
212 {
213   vl_api_registration_t *reg;
214   u32 sw_if_index;
215
216 #if WITH_LIBSSL > 0
217   reg = vl_api_client_index_to_registration (mp->client_index);
218   if (!reg)
219     return;
220
221   ipsec_dump_walk_ctx_t ctx = {
222     .reg = reg,
223     .context = mp->context,
224   };
225
226   sw_if_index = ntohl (mp->sw_if_index);
227
228   if (~0 == sw_if_index)
229     {
230       ipsec_tun_protect_walk (send_ipsec_tunnel_protect_details, &ctx);
231     }
232   else
233     {
234       ipsec_tun_protect_walk_itf (sw_if_index,
235                                   send_ipsec_tunnel_protect_details, &ctx);
236     }
237 #else
238   clib_warning ("unimplemented");
239 #endif
240 }
241
242 static int
243 ipsec_spd_action_decode (vl_api_ipsec_spd_action_t in,
244                          ipsec_policy_action_t * out)
245 {
246   in = clib_net_to_host_u32 (in);
247
248   switch (in)
249     {
250 #define _(v,f,s) case IPSEC_API_SPD_ACTION_##f: \
251       *out = IPSEC_POLICY_ACTION_##f;              \
252       return (0);
253       foreach_ipsec_policy_action
254 #undef _
255     }
256   return (VNET_API_ERROR_UNIMPLEMENTED);
257 }
258
259 static void vl_api_ipsec_spd_entry_add_del_t_handler
260   (vl_api_ipsec_spd_entry_add_del_t * mp)
261 {
262   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
263   vl_api_ipsec_spd_entry_add_del_reply_t *rmp;
264   ip46_type_t itype;
265   u32 stat_index;
266   int rv;
267
268   stat_index = ~0;
269
270 #if WITH_LIBSSL > 0
271   ipsec_policy_t p;
272
273   clib_memset (&p, 0, sizeof (p));
274
275   p.id = ntohl (mp->entry.spd_id);
276   p.priority = ntohl (mp->entry.priority);
277
278   itype = ip_address_decode (&mp->entry.remote_address_start, &p.raddr.start);
279   ip_address_decode (&mp->entry.remote_address_stop, &p.raddr.stop);
280   ip_address_decode (&mp->entry.local_address_start, &p.laddr.start);
281   ip_address_decode (&mp->entry.local_address_stop, &p.laddr.stop);
282
283   p.is_ipv6 = (itype == IP46_TYPE_IP6);
284
285   p.protocol = mp->entry.protocol;
286   p.rport.start = ntohs (mp->entry.remote_port_start);
287   p.rport.stop = ntohs (mp->entry.remote_port_stop);
288   p.lport.start = ntohs (mp->entry.local_port_start);
289   p.lport.stop = ntohs (mp->entry.local_port_stop);
290
291   rv = ipsec_spd_action_decode (mp->entry.policy, &p.policy);
292
293   if (rv)
294     goto out;
295
296   /* policy action resolve unsupported */
297   if (p.policy == IPSEC_POLICY_ACTION_RESOLVE)
298     {
299       clib_warning ("unsupported action: 'resolve'");
300       rv = VNET_API_ERROR_UNIMPLEMENTED;
301       goto out;
302     }
303   p.sa_id = ntohl (mp->entry.sa_id);
304   rv =
305     ipsec_policy_mk_type (mp->entry.is_outbound, p.is_ipv6, p.policy,
306                           &p.type);
307   if (rv)
308     goto out;
309
310   rv = ipsec_add_del_policy (vm, &p, mp->is_add, &stat_index);
311   if (rv)
312     goto out;
313
314 #else
315   rv = VNET_API_ERROR_UNIMPLEMENTED;
316   goto out;
317 #endif
318
319 out:
320   /* *INDENT-OFF* */
321   REPLY_MACRO2 (VL_API_IPSEC_SPD_ENTRY_ADD_DEL_REPLY,
322   ({
323     rmp->stat_index = ntohl(stat_index);
324   }));
325   /* *INDENT-ON* */
326 }
327
328 static void vl_api_ipsec_sad_entry_add_del_t_handler
329   (vl_api_ipsec_sad_entry_add_del_t * mp)
330 {
331   vlib_main_t *vm __attribute__ ((unused)) = vlib_get_main ();
332   vl_api_ipsec_sad_entry_add_del_reply_t *rmp;
333   ip46_address_t tun_src = { }, tun_dst =
334   {
335   };
336   ipsec_key_t crypto_key, integ_key;
337   ipsec_crypto_alg_t crypto_alg;
338   ipsec_integ_alg_t integ_alg;
339   ipsec_protocol_t proto;
340   ipsec_sa_flags_t flags;
341   u32 id, spi, sa_index = ~0;
342   int rv;
343
344 #if WITH_LIBSSL > 0
345
346   id = ntohl (mp->entry.sad_id);
347   spi = ntohl (mp->entry.spi);
348
349   rv = ipsec_proto_decode (mp->entry.protocol, &proto);
350
351   if (rv)
352     goto out;
353
354   rv = ipsec_crypto_algo_decode (mp->entry.crypto_algorithm, &crypto_alg);
355
356   if (rv)
357     goto out;
358
359   rv = ipsec_integ_algo_decode (mp->entry.integrity_algorithm, &integ_alg);
360
361   if (rv)
362     goto out;
363
364   ipsec_key_decode (&mp->entry.crypto_key, &crypto_key);
365   ipsec_key_decode (&mp->entry.integrity_key, &integ_key);
366
367   flags = ipsec_sa_flags_decode (mp->entry.flags);
368
369   ip_address_decode (&mp->entry.tunnel_src, &tun_src);
370   ip_address_decode (&mp->entry.tunnel_dst, &tun_dst);
371
372   if (mp->is_add)
373     rv = ipsec_sa_add_and_lock (id, spi, proto,
374                                 crypto_alg, &crypto_key,
375                                 integ_alg, &integ_key, flags,
376                                 0, mp->entry.salt, &tun_src, &tun_dst,
377                                 &sa_index, IPSEC_UDP_PORT_NONE);
378   else
379     rv = ipsec_sa_unlock_id (id);
380
381 #else
382   rv = VNET_API_ERROR_UNIMPLEMENTED;
383 #endif
384
385 out:
386   /* *INDENT-OFF* */
387   REPLY_MACRO2 (VL_API_IPSEC_SAD_ENTRY_ADD_DEL_REPLY,
388   {
389     rmp->stat_index = htonl (sa_index);
390   });
391   /* *INDENT-ON* */
392 }
393
394 static void
395 send_ipsec_spds_details (ipsec_spd_t * spd, vl_api_registration_t * reg,
396                          u32 context)
397 {
398   vl_api_ipsec_spds_details_t *mp;
399   u32 n_policies = 0;
400
401   mp = vl_msg_api_alloc (sizeof (*mp));
402   clib_memset (mp, 0, sizeof (*mp));
403   mp->_vl_msg_id = ntohs (VL_API_IPSEC_SPDS_DETAILS);
404   mp->context = context;
405
406   mp->spd_id = htonl (spd->id);
407 #define _(s, n) n_policies += vec_len (spd->policies[IPSEC_SPD_POLICY_##s]);
408   foreach_ipsec_spd_policy_type
409 #undef _
410     mp->npolicies = htonl (n_policies);
411
412   vl_api_send_msg (reg, (u8 *) mp);
413 }
414
415 static void
416 vl_api_ipsec_spds_dump_t_handler (vl_api_ipsec_spds_dump_t * mp)
417 {
418   vl_api_registration_t *reg;
419   ipsec_main_t *im = &ipsec_main;
420   ipsec_spd_t *spd;
421 #if WITH_LIBSSL > 0
422   reg = vl_api_client_index_to_registration (mp->client_index);
423   if (!reg)
424     return;
425
426   /* *INDENT-OFF* */
427   pool_foreach (spd, im->spds, ({
428     send_ipsec_spds_details (spd, reg, mp->context);
429   }));
430   /* *INDENT-ON* */
431 #else
432   clib_warning ("unimplemented");
433 #endif
434 }
435
436 vl_api_ipsec_spd_action_t
437 ipsec_spd_action_encode (ipsec_policy_action_t in)
438 {
439   vl_api_ipsec_spd_action_t out = IPSEC_API_SPD_ACTION_BYPASS;
440
441   switch (in)
442     {
443 #define _(v,f,s) case IPSEC_POLICY_ACTION_##f: \
444       out = IPSEC_API_SPD_ACTION_##f;          \
445       break;
446       foreach_ipsec_policy_action
447 #undef _
448     }
449   return (clib_host_to_net_u32 (out));
450 }
451
452 static void
453 send_ipsec_spd_details (ipsec_policy_t * p, vl_api_registration_t * reg,
454                         u32 context)
455 {
456   vl_api_ipsec_spd_details_t *mp;
457
458   mp = vl_msg_api_alloc (sizeof (*mp));
459   clib_memset (mp, 0, sizeof (*mp));
460   mp->_vl_msg_id = ntohs (VL_API_IPSEC_SPD_DETAILS);
461   mp->context = context;
462
463   mp->entry.spd_id = htonl (p->id);
464   mp->entry.priority = htonl (p->priority);
465   mp->entry.is_outbound = ((p->type == IPSEC_SPD_POLICY_IP6_OUTBOUND) ||
466                            (p->type == IPSEC_SPD_POLICY_IP4_OUTBOUND));
467
468   ip_address_encode (&p->laddr.start, IP46_TYPE_ANY,
469                      &mp->entry.local_address_start);
470   ip_address_encode (&p->laddr.stop, IP46_TYPE_ANY,
471                      &mp->entry.local_address_stop);
472   ip_address_encode (&p->raddr.start, IP46_TYPE_ANY,
473                      &mp->entry.remote_address_start);
474   ip_address_encode (&p->raddr.stop, IP46_TYPE_ANY,
475                      &mp->entry.remote_address_stop);
476   mp->entry.local_port_start = htons (p->lport.start);
477   mp->entry.local_port_stop = htons (p->lport.stop);
478   mp->entry.remote_port_start = htons (p->rport.start);
479   mp->entry.remote_port_stop = htons (p->rport.stop);
480   mp->entry.protocol = p->protocol;
481   mp->entry.policy = ipsec_spd_action_encode (p->policy);
482   mp->entry.sa_id = htonl (p->sa_id);
483
484   vl_api_send_msg (reg, (u8 *) mp);
485 }
486
487 static void
488 vl_api_ipsec_spd_dump_t_handler (vl_api_ipsec_spd_dump_t * mp)
489 {
490   vl_api_registration_t *reg;
491   ipsec_main_t *im = &ipsec_main;
492   ipsec_spd_policy_type_t ptype;
493   ipsec_policy_t *policy;
494   ipsec_spd_t *spd;
495   uword *p;
496   u32 spd_index, *ii;
497 #if WITH_LIBSSL > 0
498   reg = vl_api_client_index_to_registration (mp->client_index);
499   if (!reg)
500     return;
501
502   p = hash_get (im->spd_index_by_spd_id, ntohl (mp->spd_id));
503   if (!p)
504     return;
505
506   spd_index = p[0];
507   spd = pool_elt_at_index (im->spds, spd_index);
508
509   /* *INDENT-OFF* */
510   FOR_EACH_IPSEC_SPD_POLICY_TYPE(ptype) {
511     vec_foreach(ii, spd->policies[ptype])
512       {
513         policy = pool_elt_at_index(im->policies, *ii);
514
515         if (mp->sa_id == ~(0) || ntohl (mp->sa_id) == policy->sa_id)
516           send_ipsec_spd_details (policy, reg, mp->context);
517       }
518   }
519   /* *INDENT-ON* */
520 #else
521   clib_warning ("unimplemented");
522 #endif
523 }
524
525 static void
526 send_ipsec_spd_interface_details (vl_api_registration_t * reg, u32 spd_index,
527                                   u32 sw_if_index, u32 context)
528 {
529   vl_api_ipsec_spd_interface_details_t *mp;
530
531   mp = vl_msg_api_alloc (sizeof (*mp));
532   clib_memset (mp, 0, sizeof (*mp));
533   mp->_vl_msg_id = ntohs (VL_API_IPSEC_SPD_INTERFACE_DETAILS);
534   mp->context = context;
535
536   mp->spd_index = htonl (spd_index);
537   mp->sw_if_index = htonl (sw_if_index);
538
539   vl_api_send_msg (reg, (u8 *) mp);
540 }
541
542 static void
543 vl_api_ipsec_spd_interface_dump_t_handler (vl_api_ipsec_spd_interface_dump_t *
544                                            mp)
545 {
546   ipsec_main_t *im = &ipsec_main;
547   vl_api_registration_t *reg;
548   u32 k, v, spd_index;
549
550 #if WITH_LIBSSL > 0
551   reg = vl_api_client_index_to_registration (mp->client_index);
552   if (!reg)
553     return;
554
555   if (mp->spd_index_valid)
556     {
557       spd_index = ntohl (mp->spd_index);
558       /* *INDENT-OFF* */
559       hash_foreach(k, v, im->spd_index_by_sw_if_index, ({
560         if (v == spd_index)
561           send_ipsec_spd_interface_details(reg, v, k, mp->context);
562       }));
563       /* *INDENT-ON* */
564     }
565   else
566     {
567       /* *INDENT-OFF* */
568       hash_foreach(k, v, im->spd_index_by_sw_if_index, ({
569         send_ipsec_spd_interface_details(reg, v, k, mp->context);
570       }));
571       /* *INDENT-ON* */
572     }
573
574 #else
575   clib_warning ("unimplemented");
576 #endif
577 }
578
579 static u32
580 ipsec_tun_mk_input_sa_id (u32 ti)
581 {
582   return (0x80000000 | ti);
583 }
584
585 static u32
586 ipsec_tun_mk_output_sa_id (u32 ti)
587 {
588   return (0xc0000000 | ti);
589 }
590
591 static void
592 vl_api_ipsec_tunnel_if_add_del_t_handler (vl_api_ipsec_tunnel_if_add_del_t *
593                                           mp)
594 {
595   vl_api_ipsec_tunnel_if_add_del_reply_t *rmp;
596   u32 sw_if_index = ~0;
597   int rv;
598
599 #if WITH_LIBSSL > 0
600   ip46_address_t local_ip = ip46_address_initializer;
601   ip46_address_t remote_ip = ip46_address_initializer;
602   ipsec_key_t crypto_key, integ_key;
603   ipsec_sa_flags_t flags;
604   ip46_type_t local_ip_type, remote_ip_type;
605   ipip_transport_t transport;
606   u32 fib_index;
607
608   local_ip_type = ip_address_decode (&mp->local_ip, &local_ip);
609   remote_ip_type = ip_address_decode (&mp->remote_ip, &remote_ip);
610   transport = (IP46_TYPE_IP6 == local_ip_type ?
611                IPIP_TRANSPORT_IP6 : IPIP_TRANSPORT_IP4);
612
613   if (local_ip_type != remote_ip_type)
614     {
615       rv = VNET_API_ERROR_INVALID_VALUE;
616       goto done;
617     }
618
619   flags = IPSEC_SA_FLAG_NONE;
620
621   if (mp->udp_encap)
622     flags |= IPSEC_SA_FLAG_UDP_ENCAP;
623   if (mp->esn)
624     flags |= IPSEC_SA_FLAG_USE_ESN;
625   if (mp->anti_replay)
626     flags |= IPSEC_SA_FLAG_USE_ANTI_REPLAY;
627
628   ipsec_mk_key (&crypto_key, mp->remote_crypto_key,
629                 mp->remote_crypto_key_len);
630   ipsec_mk_key (&integ_key, mp->remote_integ_key, mp->remote_integ_key_len);
631   ipsec_mk_key (&crypto_key, mp->local_crypto_key, mp->local_crypto_key_len);
632   ipsec_mk_key (&integ_key, mp->local_integ_key, mp->local_integ_key_len);
633
634   fib_index =
635     fib_table_find (fib_proto_from_ip46 (local_ip_type),
636                     ntohl (mp->tx_table_id));
637
638   if (~0 == fib_index)
639     {
640       rv = VNET_API_ERROR_NO_SUCH_FIB;
641       goto done;
642     }
643
644   if (mp->is_add)
645     {
646       // remote = input, local = output
647       /* create an ip-ip tunnel, then the two SA, then bind them */
648       rv = ipip_add_tunnel (transport,
649                             (mp->renumber ? ntohl (mp->show_instance) : ~0),
650                             &local_ip,
651                             &remote_ip, fib_index,
652                             TUNNEL_ENCAP_DECAP_FLAG_NONE, IP_DSCP_CS0,
653                             TUNNEL_MODE_P2P, &sw_if_index);
654
655       if (rv)
656         goto done;
657
658       rv = ipsec_sa_add_and_lock (ipsec_tun_mk_input_sa_id (sw_if_index),
659                                   ntohl (mp->remote_spi),
660                                   IPSEC_PROTOCOL_ESP,
661                                   mp->crypto_alg,
662                                   &crypto_key,
663                                   mp->integ_alg,
664                                   &integ_key,
665                                   (flags | IPSEC_SA_FLAG_IS_INBOUND),
666                                   ntohl (mp->tx_table_id),
667                                   mp->salt, &remote_ip, &local_ip, NULL,
668                                   IPSEC_UDP_PORT_NONE);
669
670       if (rv)
671         goto done;
672
673       rv = ipsec_sa_add_and_lock (ipsec_tun_mk_output_sa_id (sw_if_index),
674                                   ntohl (mp->local_spi),
675                                   IPSEC_PROTOCOL_ESP,
676                                   mp->crypto_alg,
677                                   &crypto_key,
678                                   mp->integ_alg,
679                                   &integ_key,
680                                   flags,
681                                   ntohl (mp->tx_table_id),
682                                   mp->salt, &local_ip, &remote_ip, NULL,
683                                   IPSEC_UDP_PORT_NONE);
684
685       if (rv)
686         goto done;
687
688       rv = ipsec_tun_protect_update_one (sw_if_index, NULL,
689                                          ipsec_tun_mk_output_sa_id
690                                          (sw_if_index),
691                                          ipsec_tun_mk_input_sa_id
692                                          (sw_if_index));
693       if (rv)
694         goto done;
695
696       /* the SAs are locked as a result of being used for proection,
697        * they cannot be removed from the API, since they cannot be refered
698        * to by the API. unlock them now, so that if the tunnel is rekeyed
699        * they-ll disapper
700        */
701       ipsec_sa_unlock_id (ipsec_tun_mk_input_sa_id (sw_if_index));
702       ipsec_sa_unlock_id (ipsec_tun_mk_output_sa_id (sw_if_index));
703     }
704   else
705     {
706       /* *INDENT-OFF* */
707       ipip_tunnel_key_t key = {
708         .transport = transport,
709         .fib_index = fib_index,
710         .src = local_ip,
711         .dst = remote_ip
712       };
713       /* *INDENT-ON* */
714
715       ipip_tunnel_t *t = ipip_tunnel_db_find (&key);
716
717       if (NULL != t)
718         {
719           rv = ipsec_tun_protect_del (t->sw_if_index, NULL);
720           ipip_del_tunnel (t->sw_if_index);
721         }
722       else
723         rv = VNET_API_ERROR_NO_SUCH_ENTRY;
724     }
725
726 #else
727   rv = VNET_API_ERROR_UNIMPLEMENTED;
728 #endif
729 done:
730   /* *INDENT-OFF* */
731   REPLY_MACRO2 (VL_API_IPSEC_TUNNEL_IF_ADD_DEL_REPLY,
732   ({
733     rmp->sw_if_index = htonl (sw_if_index);
734   }));
735   /* *INDENT-ON* */
736 }
737
738 typedef struct ipsec_sa_dump_match_ctx_t_
739 {
740   index_t sai;
741   u32 sw_if_index;
742 } ipsec_sa_dump_match_ctx_t;
743
744 static walk_rc_t
745 ipsec_sa_dump_match_sa (index_t itpi, void *arg)
746 {
747   ipsec_sa_dump_match_ctx_t *ctx = arg;
748   ipsec_tun_protect_t *itp;
749   index_t sai;
750
751   itp = ipsec_tun_protect_get (itpi);
752
753   if (itp->itp_out_sa == ctx->sai)
754     {
755       ctx->sw_if_index = itp->itp_sw_if_index;
756       return (WALK_STOP);
757     }
758   /* *INDENT-OFF* */
759   FOR_EACH_IPSEC_PROTECT_INPUT_SAI (itp, sai,
760   ({
761     if (sai == ctx->sai)
762       {
763         ctx->sw_if_index = itp->itp_sw_if_index;
764         return (WALK_STOP);
765       }
766   }));
767   /* *INDENT-OFF* */
768
769   return (WALK_CONTINUE);
770 }
771
772 static walk_rc_t
773 send_ipsec_sa_details (ipsec_sa_t * sa, void *arg)
774 {
775   ipsec_dump_walk_ctx_t *ctx = arg;
776   vl_api_ipsec_sa_details_t *mp;
777   ipsec_main_t *im = &ipsec_main;
778
779   mp = vl_msg_api_alloc (sizeof (*mp));
780   clib_memset (mp, 0, sizeof (*mp));
781   mp->_vl_msg_id = ntohs (VL_API_IPSEC_SA_DETAILS);
782   mp->context = ctx->context;
783
784   mp->entry.sad_id = htonl (sa->id);
785   mp->entry.spi = htonl (sa->spi);
786   mp->entry.protocol = ipsec_proto_encode (sa->protocol);
787   mp->entry.tx_table_id =
788     htonl (fib_table_get_table_id (sa->tx_fib_index, FIB_PROTOCOL_IP4));
789
790   mp->entry.crypto_algorithm = ipsec_crypto_algo_encode (sa->crypto_alg);
791   ipsec_key_encode (&sa->crypto_key, &mp->entry.crypto_key);
792
793   mp->entry.integrity_algorithm = ipsec_integ_algo_encode (sa->integ_alg);
794   ipsec_key_encode (&sa->integ_key, &mp->entry.integrity_key);
795
796   mp->entry.flags = ipsec_sad_flags_encode (sa);
797   mp->entry.salt = clib_host_to_net_u32 (sa->salt);
798
799   if (ipsec_sa_is_set_IS_PROTECT (sa))
800     {
801       ipsec_sa_dump_match_ctx_t ctx = {
802         .sai = sa - im->sad,
803         .sw_if_index = ~0,
804       };
805       ipsec_tun_protect_walk (ipsec_sa_dump_match_sa, &ctx);
806
807       mp->sw_if_index = htonl (ctx.sw_if_index);
808     }
809   else
810     mp->sw_if_index = ~0;
811
812   if (ipsec_sa_is_set_IS_TUNNEL (sa))
813     {
814       ip_address_encode (&sa->tunnel_src_addr, IP46_TYPE_ANY,
815                          &mp->entry.tunnel_src);
816       ip_address_encode (&sa->tunnel_dst_addr, IP46_TYPE_ANY,
817                          &mp->entry.tunnel_dst);
818     }
819
820   mp->seq_outbound = clib_host_to_net_u64 (((u64) sa->seq));
821   mp->last_seq_inbound = clib_host_to_net_u64 (((u64) sa->last_seq));
822   if (ipsec_sa_is_set_USE_ESN (sa))
823     {
824       mp->seq_outbound |= (u64) (clib_host_to_net_u32 (sa->seq_hi));
825       mp->last_seq_inbound |= (u64) (clib_host_to_net_u32 (sa->last_seq_hi));
826     }
827   if (ipsec_sa_is_set_USE_ANTI_REPLAY (sa))
828     mp->replay_window = clib_host_to_net_u64 (sa->replay_window);
829
830   mp->stat_index = clib_host_to_net_u32 (sa->stat_index);
831
832   vl_api_send_msg (ctx->reg, (u8 *) mp);
833
834   return (WALK_CONTINUE);
835 }
836
837 static void
838 vl_api_ipsec_sa_dump_t_handler (vl_api_ipsec_sa_dump_t * mp)
839 {
840   vl_api_registration_t *reg;
841
842 #if WITH_LIBSSL > 0
843   reg = vl_api_client_index_to_registration (mp->client_index);
844   if (!reg)
845     return;
846
847   ipsec_dump_walk_ctx_t ctx = {
848     .reg = reg,
849     .context = mp->context,
850   };
851
852   ipsec_sa_walk (send_ipsec_sa_details, &ctx);
853
854 #else
855   clib_warning ("unimplemented");
856 #endif
857 }
858
859 static void
860 vl_api_ipsec_tunnel_if_set_sa_t_handler (vl_api_ipsec_tunnel_if_set_sa_t * mp)
861 {
862   vl_api_ipsec_tunnel_if_set_sa_reply_t *rmp;
863   int rv;
864
865 #if WITH_LIBSSL > 0
866   VALIDATE_SW_IF_INDEX(mp);
867
868   if (mp->is_outbound)
869     rv = ipsec_tun_protect_update_out (ntohl (mp->sw_if_index), NULL,
870                                        ntohl (mp->sa_id));
871   else
872     rv = ipsec_tun_protect_update_in (ntohl (mp->sw_if_index), NULL,
873                                        ntohl (mp->sa_id));
874
875 #else
876   clib_warning ("unimplemented");
877 #endif
878
879   BAD_SW_IF_INDEX_LABEL;
880
881   REPLY_MACRO (VL_API_IPSEC_TUNNEL_IF_SET_SA_REPLY);
882 }
883
884 static void
885 vl_api_ipsec_backend_dump_t_handler (vl_api_ipsec_backend_dump_t * mp)
886 {
887   vl_api_registration_t *rp;
888   ipsec_main_t *im = &ipsec_main;
889   u32 context = mp->context;
890
891   rp = vl_api_client_index_to_registration (mp->client_index);
892
893   if (rp == 0)
894     {
895       clib_warning ("Client %d AWOL", mp->client_index);
896       return;
897     }
898
899   ipsec_ah_backend_t *ab;
900   ipsec_esp_backend_t *eb;
901   /* *INDENT-OFF* */
902   pool_foreach (ab, im->ah_backends, {
903     vl_api_ipsec_backend_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
904     clib_memset (mp, 0, sizeof (*mp));
905     mp->_vl_msg_id = ntohs (VL_API_IPSEC_BACKEND_DETAILS);
906     mp->context = context;
907     snprintf ((char *)mp->name, sizeof (mp->name), "%.*s", vec_len (ab->name),
908               ab->name);
909     mp->protocol = ntohl (IPSEC_API_PROTO_AH);
910     mp->index = ab - im->ah_backends;
911     mp->active = mp->index == im->ah_current_backend ? 1 : 0;
912     vl_api_send_msg (rp, (u8 *)mp);
913   });
914   pool_foreach (eb, im->esp_backends, {
915     vl_api_ipsec_backend_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
916     clib_memset (mp, 0, sizeof (*mp));
917     mp->_vl_msg_id = ntohs (VL_API_IPSEC_BACKEND_DETAILS);
918     mp->context = context;
919     snprintf ((char *)mp->name, sizeof (mp->name), "%.*s", vec_len (eb->name),
920               eb->name);
921     mp->protocol = ntohl (IPSEC_API_PROTO_ESP);
922     mp->index = eb - im->esp_backends;
923     mp->active = mp->index == im->esp_current_backend ? 1 : 0;
924     vl_api_send_msg (rp, (u8 *)mp);
925   });
926   /* *INDENT-ON* */
927 }
928
929 static void
930 vl_api_ipsec_select_backend_t_handler (vl_api_ipsec_select_backend_t * mp)
931 {
932   ipsec_main_t *im = &ipsec_main;
933   vl_api_ipsec_select_backend_reply_t *rmp;
934   ipsec_protocol_t protocol;
935   int rv = 0;
936   if (pool_elts (im->sad) > 0)
937     {
938       rv = VNET_API_ERROR_INSTANCE_IN_USE;
939       goto done;
940     }
941
942   rv = ipsec_proto_decode (mp->protocol, &protocol);
943
944   if (rv)
945     goto done;
946
947 #if WITH_LIBSSL > 0
948   switch (protocol)
949     {
950     case IPSEC_PROTOCOL_ESP:
951       rv = ipsec_select_esp_backend (im, mp->index);
952       break;
953     case IPSEC_PROTOCOL_AH:
954       rv = ipsec_select_ah_backend (im, mp->index);
955       break;
956     default:
957       rv = VNET_API_ERROR_INVALID_PROTOCOL;
958       break;
959     }
960 #else
961   clib_warning ("unimplemented");       /* FIXME */
962 #endif
963 done:
964   REPLY_MACRO (VL_API_IPSEC_SELECT_BACKEND_REPLY);
965 }
966
967 /*
968  * ipsec_api_hookup
969  * Add vpe's API message handlers to the table.
970  * vlib has already mapped shared memory and
971  * added the client registration handlers.
972  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
973  */
974 #define vl_msg_name_crc_list
975 #include <vnet/vnet_all_api_h.h>
976 #undef vl_msg_name_crc_list
977
978 static void
979 setup_message_id_table (api_main_t * am)
980 {
981 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
982   foreach_vl_msg_name_crc_ipsec;
983 #undef _
984 }
985
986 static clib_error_t *
987 ipsec_api_hookup (vlib_main_t * vm)
988 {
989   api_main_t *am = vlibapi_get_main ();
990
991 #define _(N,n)                                                  \
992     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
993                            vl_api_##n##_t_handler,              \
994                            vl_noop_handler,                     \
995                            vl_api_##n##_t_endian,               \
996                            vl_api_##n##_t_print,                \
997                            sizeof(vl_api_##n##_t), 1);
998   foreach_vpe_api_msg;
999 #undef _
1000
1001   /*
1002    * Adding and deleting SAs is MP safe since when they are added/delete
1003    * no traffic is using them
1004    */
1005   am->is_mp_safe[VL_API_IPSEC_SAD_ENTRY_ADD_DEL] = 1;
1006   am->is_mp_safe[VL_API_IPSEC_SAD_ENTRY_ADD_DEL_REPLY] = 1;
1007
1008   /*
1009    * Set up the (msg_name, crc, message-id) table
1010    */
1011   setup_message_id_table (am);
1012
1013   return 0;
1014 }
1015
1016 VLIB_API_INIT_FUNCTION (ipsec_api_hookup);
1017
1018 /*
1019  * fd.io coding-style-patch-verification: ON
1020  *
1021  * Local Variables:
1022  * eval: (c-set-style "gnu")
1023  * End:
1024  */