blob: bd7ebe45186511d046a08db8186448e098036745 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * decap.c : IPSec tunnel support
3 *
4 * Copyright (c) 2015 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vnet/vnet.h>
19#include <vnet/api_errno.h>
20#include <vnet/ip/ip.h>
21#include <vnet/interface.h>
Neale Ranns8d7c5022019-02-06 01:41:05 -080022#include <vnet/fib/fib_table.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
24#include <vnet/ipsec/ipsec.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080025#include <vnet/ipsec/ipsec_tun.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
27u8 *
28format_ipsec_policy_action (u8 * s, va_list * args)
29{
30 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070031 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070032
33 switch (i)
34 {
35#define _(v,f,str) case IPSEC_POLICY_ACTION_##f: t = str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070036 foreach_ipsec_policy_action
Ed Warnickecb9cada2015-12-08 15:45:58 -070037#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070038 default:
39 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -070040 }
41 s = format (s, "%s", t);
42 return s;
43}
44
Neale Ranns9f231d42019-03-19 10:06:00 +000045u8 *
46format_ipsec_policy_type (u8 * s, va_list * args)
47{
48 u32 i = va_arg (*args, u32);
49 char *t = 0;
50
51 switch (i)
52 {
53#define _(f,str) case IPSEC_SPD_POLICY_##f: t = str; break;
54 foreach_ipsec_spd_policy_type
55#undef _
56 default:
57 s = format (s, "unknown");
58 }
59 s = format (s, "%s", t);
60 return s;
61}
62
Ed Warnickecb9cada2015-12-08 15:45:58 -070063uword
64unformat_ipsec_policy_action (unformat_input_t * input, va_list * args)
65{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070066 u32 *r = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070068 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070069#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_POLICY_ACTION_##f;
70 foreach_ipsec_policy_action
71#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070072 else
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 return 0;
74 return 1;
75}
76
77u8 *
78format_ipsec_crypto_alg (u8 * s, va_list * args)
79{
80 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070081 u8 *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
83 switch (i)
84 {
85#define _(v,f,str) case IPSEC_CRYPTO_ALG_##f: t = (u8 *) str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070086 foreach_ipsec_crypto_alg
Ed Warnickecb9cada2015-12-08 15:45:58 -070087#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070088 default:
89 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -070090 }
91 s = format (s, "%s", t);
92 return s;
93}
94
95uword
96unformat_ipsec_crypto_alg (unformat_input_t * input, va_list * args)
97{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070098 u32 *r = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700100 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_CRYPTO_ALG_##f;
102 foreach_ipsec_crypto_alg
103#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700104 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105 return 0;
106 return 1;
107}
108
109u8 *
110format_ipsec_integ_alg (u8 * s, va_list * args)
111{
112 u32 i = va_arg (*args, u32);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700113 u8 *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114
115 switch (i)
116 {
117#define _(v,f,str) case IPSEC_INTEG_ALG_##f: t = (u8 *) str; break;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700118 foreach_ipsec_integ_alg
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700120 default:
121 s = format (s, "unknown");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 }
123 s = format (s, "%s", t);
124 return s;
125}
126
127uword
128unformat_ipsec_integ_alg (unformat_input_t * input, va_list * args)
129{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700130 u32 *r = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700132 if (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133#define _(v,f,s) else if (unformat (input, s)) *r = IPSEC_INTEG_ALG_##f;
134 foreach_ipsec_integ_alg
135#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700136 else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137 return 0;
138 return 1;
139}
140
141u8 *
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700142format_ipsec_replay_window (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143{
144 u64 w = va_arg (*args, u64);
145 u8 i;
146
147 for (i = 0; i < 64; i++)
148 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700149 s = format (s, "%u", w & (1ULL << i) ? 1 : 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 }
151
152 return s;
153}
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700154
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800155u8 *
156format_ipsec_policy (u8 * s, va_list * args)
157{
158 u32 pi = va_arg (*args, u32);
Guillaume Solignac5f08ab62019-05-20 15:58:46 +0200159 ip46_type_t ip_type = IP46_TYPE_IP4;
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800160 ipsec_main_t *im = &ipsec_main;
161 ipsec_policy_t *p;
162 vlib_counter_t counts;
163
164 p = pool_elt_at_index (im->policies, pi);
165
Neale Ranns9f231d42019-03-19 10:06:00 +0000166 s = format (s, " [%d] priority %d action %U type %U protocol ",
167 pi, p->priority,
168 format_ipsec_policy_action, p->policy,
169 format_ipsec_policy_type, p->type);
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800170 if (p->protocol)
171 {
172 s = format (s, "%U", format_ip_protocol, p->protocol);
173 }
174 else
175 {
176 s = format (s, "any");
177 }
178 if (p->policy == IPSEC_POLICY_ACTION_PROTECT)
179 {
180 s = format (s, " sa %u", p->sa_id);
181 }
Guillaume Solignac5f08ab62019-05-20 15:58:46 +0200182 if (p->is_ipv6)
183 {
184 ip_type = IP46_TYPE_IP6;
185 }
Neale Ranns231c4692019-03-18 17:11:28 +0000186
187 s = format (s, "\n local addr range %U - %U port range %u - %u",
Guillaume Solignac5f08ab62019-05-20 15:58:46 +0200188 format_ip46_address, &p->laddr.start, ip_type,
189 format_ip46_address, &p->laddr.stop, ip_type,
Neale Rannsa4d24312019-07-10 13:46:21 +0000190 p->lport.start, p->lport.stop);
Neale Ranns231c4692019-03-18 17:11:28 +0000191 s = format (s, "\n remote addr range %U - %U port range %u - %u",
Guillaume Solignac5f08ab62019-05-20 15:58:46 +0200192 format_ip46_address, &p->raddr.start, ip_type,
193 format_ip46_address, &p->raddr.stop, ip_type,
Neale Rannsa4d24312019-07-10 13:46:21 +0000194 p->rport.start, p->rport.stop);
Neale Ranns231c4692019-03-18 17:11:28 +0000195
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800196 vlib_get_combined_counter (&ipsec_spd_policy_counters, pi, &counts);
197 s = format (s, "\n packets %u bytes %u", counts.packets, counts.bytes);
198
199 return (s);
200}
201
202u8 *
203format_ipsec_spd (u8 * s, va_list * args)
204{
205 u32 si = va_arg (*args, u32);
206 ipsec_main_t *im = &ipsec_main;
207 ipsec_spd_t *spd;
208 u32 *i;
209
Neale Rannsb294f102019-04-03 13:17:50 +0000210 if (pool_is_free_index (im->spds, si))
211 {
212 s = format (s, "No such SPD index: %d", si);
213 goto done;
214 }
215
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800216 spd = pool_elt_at_index (im->spds, si);
217
218 s = format (s, "spd %u", spd->id);
219
220#define _(v, n) \
221 s = format (s, "\n %s:", n); \
222 vec_foreach(i, spd->policies[IPSEC_SPD_POLICY_##v]) \
223 { \
224 s = format (s, "\n %U", format_ipsec_policy, *i); \
225 }
226 foreach_ipsec_spd_policy_type;
227#undef _
228
Neale Rannsb294f102019-04-03 13:17:50 +0000229done:
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800230 return (s);
231}
232
Neale Ranns8d7c5022019-02-06 01:41:05 -0800233u8 *
234format_ipsec_key (u8 * s, va_list * args)
235{
236 ipsec_key_t *key = va_arg (*args, ipsec_key_t *);
237
238 return (format (s, "%U", format_hex_bytes, key->data, key->len));
239}
240
241uword
242unformat_ipsec_key (unformat_input_t * input, va_list * args)
243{
244 ipsec_key_t *key = va_arg (*args, ipsec_key_t *);
245 u8 *data;
246
247 if (unformat (input, "%U", unformat_hex_string, &data))
248 {
249 ipsec_mk_key (key, data, vec_len (data));
250 vec_free (data);
251 }
252 else
253 return 0;
254 return 1;
255}
256
257u8 *
Neale Rannse524d452019-02-19 15:22:46 +0000258format_ipsec_sa_flags (u8 * s, va_list * args)
259{
260 ipsec_sa_flags_t flags = va_arg (*args, int);
261
Neale Ranns41afb332019-07-16 06:19:35 -0700262#define _(v, f, str) if (flags & IPSEC_SA_FLAG_##f) s = format(s, "%s ", str);
Neale Rannse524d452019-02-19 15:22:46 +0000263 foreach_ipsec_sa_flags
264#undef _
265 return (s);
266}
267
268u8 *
Neale Ranns8d7c5022019-02-06 01:41:05 -0800269format_ipsec_sa (u8 * s, va_list * args)
270{
271 u32 sai = va_arg (*args, u32);
Neale Rannsb294f102019-04-03 13:17:50 +0000272 ipsec_format_flags_t flags = va_arg (*args, ipsec_format_flags_t);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800273 ipsec_main_t *im = &ipsec_main;
Neale Rannseba31ec2019-02-17 18:04:27 +0000274 vlib_counter_t counts;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800275 u32 tx_table_id;
276 ipsec_sa_t *sa;
277
Neale Rannsb294f102019-04-03 13:17:50 +0000278 if (pool_is_free_index (im->sad, sai))
279 {
280 s = format (s, "No such SA index: %d", sai);
281 goto done;
282 }
283
Neale Ranns8d7c5022019-02-06 01:41:05 -0800284 sa = pool_elt_at_index (im->sad, sai);
285
Neale Ranns41afb332019-07-16 06:19:35 -0700286 s = format (s, "[%d] sa %u (0x%x) spi %u (0x%08x) protocol:%s flags:[%U]",
Neale Ranns495d7ff2019-07-12 09:15:26 +0000287 sai, sa->id, sa->id, sa->spi, sa->spi,
Neale Rannse524d452019-02-19 15:22:46 +0000288 sa->protocol ? "esp" : "ah", format_ipsec_sa_flags, sa->flags);
Neale Rannsb294f102019-04-03 13:17:50 +0000289
290 if (!(flags & IPSEC_FORMAT_DETAIL))
291 goto done;
292
Neale Ranns495d7ff2019-07-12 09:15:26 +0000293 s = format (s, "\n locks %d", sa->node.fn_locks);
Neale Ranns80f6fd52019-04-16 02:41:34 +0000294 s = format (s, "\n salt 0x%x", clib_net_to_host_u32 (sa->salt));
Neale Ranns00a44202019-03-21 16:36:28 +0000295 s = format (s, "\n seq %u seq-hi %u", sa->seq, sa->seq_hi);
296 s = format (s, "\n last-seq %u last-seq-hi %u window %U",
Neale Ranns8d7c5022019-02-06 01:41:05 -0800297 sa->last_seq, sa->last_seq_hi,
298 format_ipsec_replay_window, sa->replay_window);
Neale Rannsb64cd2c2019-04-16 16:21:57 -0700299 s = format (s, "\n crypto alg %U",
300 format_ipsec_crypto_alg, sa->crypto_alg);
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400301 if (sa->crypto_alg && (flags & IPSEC_FORMAT_INSECURE))
Neale Rannsb64cd2c2019-04-16 16:21:57 -0700302 s = format (s, " key %U", format_ipsec_key, &sa->crypto_key);
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400303 else
304 s = format (s, " key [redacted]");
Neale Rannsb64cd2c2019-04-16 16:21:57 -0700305 s = format (s, "\n integrity alg %U",
306 format_ipsec_integ_alg, sa->integ_alg);
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400307 if (sa->integ_alg && (flags & IPSEC_FORMAT_INSECURE))
Neale Rannsb64cd2c2019-04-16 16:21:57 -0700308 s = format (s, " key %U", format_ipsec_key, &sa->integ_key);
Christian E. Hopps01d61e72019-09-27 14:43:22 -0400309 else
310 s = format (s, " key [redacted]");
Neale Ranns80f6fd52019-04-16 02:41:34 +0000311
Neale Rannseba31ec2019-02-17 18:04:27 +0000312 vlib_get_combined_counter (&ipsec_sa_counters, sai, &counts);
313 s = format (s, "\n packets %u bytes %u", counts.packets, counts.bytes);
Neale Ranns8d7c5022019-02-06 01:41:05 -0800314
Damjan Mariond709cbc2019-03-26 13:16:42 +0100315 if (ipsec_sa_is_set_IS_TUNNEL (sa))
Neale Ranns8d7c5022019-02-06 01:41:05 -0800316 {
317 tx_table_id = fib_table_get_table_id (sa->tx_fib_index,
318 FIB_PROTOCOL_IP4);
319 s = format (s, "\n table-ID %d tunnel src %U dst %U",
320 tx_table_id,
321 format_ip46_address, &sa->tunnel_src_addr, IP46_TYPE_ANY,
322 format_ip46_address, &sa->tunnel_dst_addr, IP46_TYPE_ANY);
Neale Ranns2b5ba952019-04-02 10:15:40 +0000323 if (!ipsec_sa_is_set_IS_INBOUND (sa))
324 {
325 s =
326 format (s, "\n resovle via fib-entry: %d",
327 sa->fib_entry_index);
328 s = format (s, "\n stacked on:");
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000329 s = format (s, "\n %U", format_dpo_id, &sa->dpo, 6);
Neale Ranns2b5ba952019-04-02 10:15:40 +0000330 }
Neale Ranns8d7c5022019-02-06 01:41:05 -0800331 }
332
Neale Rannsb294f102019-04-03 13:17:50 +0000333done:
334 return (s);
335}
336
337u8 *
338format_ipsec_tunnel (u8 * s, va_list * args)
339{
340 ipsec_main_t *im = &ipsec_main;
341 u32 ti = va_arg (*args, u32);
Neale Rannsb294f102019-04-03 13:17:50 +0000342 ipsec_tunnel_if_t *t;
343
344 if (pool_is_free_index (im->tunnel_interfaces, ti))
345 {
346 s = format (s, "No such tunnel index: %d", ti);
347 goto done;
348 }
349
350 t = pool_elt_at_index (im->tunnel_interfaces, ti);
351
352 if (t->hw_if_index == ~0)
353 goto done;
354
BenoƮt Gannee7a527f2019-04-29 16:31:24 +0200355 s =
356 format (s, "%U\n", format_vnet_hw_if_index_name, im->vnet_main,
357 t->hw_if_index);
Neale Rannsb294f102019-04-03 13:17:50 +0000358
359 s = format (s, " out-bound sa: ");
360 s = format (s, "%U\n", format_ipsec_sa, t->output_sa_index,
361 IPSEC_FORMAT_BRIEF);
362
363 s = format (s, " in-bound sa: ");
364 s = format (s, "%U\n", format_ipsec_sa, t->input_sa_index,
365 IPSEC_FORMAT_BRIEF);
366
367done:
Neale Ranns8d7c5022019-02-06 01:41:05 -0800368 return (s);
369}
370
Neale Rannsc87b66c2019-02-07 07:26:12 -0800371u8 *
372format_ipsec_tun_protect (u8 * s, va_list * args)
373{
374 u32 itpi = va_arg (*args, u32);
375 ipsec_tun_protect_t *itp;
376 u32 sai;
377
378 if (pool_is_free_index (ipsec_protect_pool, itpi))
379 {
380 s = format (s, "No such tunnel index: %d", itpi);
381 goto done;
382 }
383
384 itp = pool_elt_at_index (ipsec_protect_pool, itpi);
385
386 s = format (s, "%U", format_vnet_sw_if_index_name,
387 vnet_get_main (), itp->itp_sw_if_index);
388 s = format (s, "\n output-sa:");
389 s =
390 format (s, "\n %U", format_ipsec_sa, itp->itp_out_sa,
391 IPSEC_FORMAT_BRIEF);
392
393 s = format (s, "\n input-sa:");
394 /* *INDENT-OFF* */
395 FOR_EACH_IPSEC_PROTECT_INPUT_SAI(itp, sai,
396 ({
397 s = format (s, "\n %U", format_ipsec_sa, sai, IPSEC_FORMAT_BRIEF);
398 }));
399 /* *INDENT-ON* */
400
401done:
402 return (s);
403}
404
Neale Ranns41afb332019-07-16 06:19:35 -0700405u8 *
406format_ipsec4_tunnel_key (u8 * s, va_list * args)
407{
408 ipsec4_tunnel_key_t *key = va_arg (*args, ipsec4_tunnel_key_t *);
409
410 s = format (s, "remote:%U spi:%u (0x%08x)",
411 format_ip4_address, &key->remote_ip,
412 clib_net_to_host_u32 (key->spi),
413 clib_net_to_host_u32 (key->spi));
414
415 return (s);
416}
417
418u8 *
419format_ipsec6_tunnel_key (u8 * s, va_list * args)
420{
421 ipsec6_tunnel_key_t *key = va_arg (*args, ipsec6_tunnel_key_t *);
422
423 s = format (s, "remote:%U spi:%u (0x%08x)",
424 format_ip6_address, &key->remote_ip,
425 clib_net_to_host_u32 (key->spi),
426 clib_net_to_host_u32 (key->spi));
427
428 return (s);
429}
430
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700431/*
432 * fd.io coding-style-patch-verification: ON
433 *
434 * Local Variables:
435 * eval: (c-set-style "gnu")
436 * End:
437 */