blob: 48f08f42e337ed9acc51e6751eedc0791868260b [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * esp_decrypt.c : IPSec ESP decrypt node
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
22#include <vnet/ipsec/ipsec.h>
23#include <vnet/ipsec/esp.h>
Neale Ranns918c1612019-02-21 23:34:59 -080024#include <vnet/ipsec/ipsec_io.h>
Neale Rannsc87b66c2019-02-07 07:26:12 -080025#include <vnet/ipsec/ipsec_tun.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
Ed Warnickecb9cada2015-12-08 15:45:58 -070027#define foreach_esp_decrypt_next \
28_(DROP, "error-drop") \
Kingwel Xie561d1ca2019-03-05 22:56:17 -050029_(IP4_INPUT, "ip4-input-no-checksum") \
Neale Rannsc87b66c2019-02-07 07:26:12 -080030_(IP6_INPUT, "ip6-input")
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
32#define _(v, s) ESP_DECRYPT_NEXT_##v,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070033typedef enum
34{
Ed Warnickecb9cada2015-12-08 15:45:58 -070035 foreach_esp_decrypt_next
36#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070037 ESP_DECRYPT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070038} esp_decrypt_next_t;
39
40
Damjan Marionb4fff3a2019-03-25 15:54:40 +010041#define foreach_esp_decrypt_error \
42 _(RX_PKTS, "ESP pkts received") \
43 _(DECRYPTION_FAILED, "ESP decryption failed") \
44 _(INTEG_ERROR, "Integrity check failed") \
45 _(CRYPTO_ENGINE_ERROR, "crypto engine error (packet dropped)") \
46 _(REPLAY, "SA replayed packet") \
Damjan Mariona829b132019-04-24 23:39:16 +020047 _(RUNT, "undersized packet") \
Damjan Marionb4fff3a2019-03-25 15:54:40 +010048 _(CHAINED_BUFFER, "chained buffers (packet dropped)") \
49 _(OVERSIZED_HEADER, "buffer with oversized header (dropped)") \
50 _(NO_TAIL_SPACE, "no enough buffer tail space (dropped)")
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
52
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070053typedef enum
54{
Ed Warnickecb9cada2015-12-08 15:45:58 -070055#define _(sym,str) ESP_DECRYPT_ERROR_##sym,
56 foreach_esp_decrypt_error
57#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070058 ESP_DECRYPT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070059} esp_decrypt_error_t;
60
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070061static char *esp_decrypt_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070062#define _(sym,string) string,
63 foreach_esp_decrypt_error
64#undef _
65};
66
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070067typedef struct
68{
Damjan Marionb4fff3a2019-03-25 15:54:40 +010069 u32 seq;
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 ipsec_crypto_alg_t crypto_alg;
71 ipsec_integ_alg_t integ_alg;
72} esp_decrypt_trace_t;
73
74/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070075static u8 *
76format_esp_decrypt_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070077{
78 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
79 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070080 esp_decrypt_trace_t *t = va_arg (*args, esp_decrypt_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
Damjan Marionb4fff3a2019-03-25 15:54:40 +010082 s = format (s, "esp: crypto %U integrity %U seq %u",
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070083 format_ipsec_crypto_alg, t->crypto_alg,
Damjan Marionb4fff3a2019-03-25 15:54:40 +010084 format_ipsec_integ_alg, t->integ_alg, t->seq);
Ed Warnickecb9cada2015-12-08 15:45:58 -070085 return s;
86}
87
Damjan Marionb4fff3a2019-03-25 15:54:40 +010088typedef struct
Ed Warnickecb9cada2015-12-08 15:45:58 -070089{
Damjan Marionb4fff3a2019-03-25 15:54:40 +010090 union
91 {
92 struct
93 {
94 u8 icv_sz;
95 u8 iv_sz;
Neale Rannsc87b66c2019-02-07 07:26:12 -080096 ipsec_sa_flags_t flags;
Damjan Marionb4fff3a2019-03-25 15:54:40 +010097 u32 sa_index;
98 };
99 u64 sa_data;
100 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100102 i16 current_data;
103 i16 current_length;
104 u16 hdr_sz;
105} esp_decrypt_packet_data_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100107STATIC_ASSERT_SIZEOF (esp_decrypt_packet_data_t, 2 * sizeof (u64));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100109#define ESP_ENCRYPT_PD_F_FD_TRANSPORT (1 << 2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200111always_inline uword
112esp_decrypt_inline (vlib_main_t * vm,
113 vlib_node_runtime_t * node, vlib_frame_t * from_frame,
Neale Rannsc87b66c2019-02-07 07:26:12 -0800114 int is_ip6, int is_tun)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116 ipsec_main_t *im = &ipsec_main;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100117 u32 thread_index = vm->thread_index;
118 u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
119 u16 len;
120 ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, thread_index);
Damjan Marionc98275f2019-03-06 14:05:01 +0100121 u32 *from = vlib_frame_vector_args (from_frame);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100122 u32 n, n_left = from_frame->n_vectors;
123 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Damjan Marionc98275f2019-03-06 14:05:01 +0100124 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100125 esp_decrypt_packet_data_t pkt_data[VLIB_FRAME_SIZE], *pd = pkt_data;
126 esp_decrypt_packet_data_t cpd = { };
127 u32 current_sa_index = ~0, current_sa_bytes = 0, current_sa_pkts = 0;
128 const u8 esp_sz = sizeof (esp_header_t);
129 ipsec_sa_t *sa0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100131 vlib_get_buffers (vm, from, b, n_left);
132 vec_reset_length (ptd->crypto_ops);
133 vec_reset_length (ptd->integ_ops);
134 clib_memset_u16 (nexts, -1, n_left);
135
136 while (n_left > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700137 {
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100138 u8 *payload;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100140 if (n_left > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700141 {
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100142 u8 *p;
143 vlib_prefetch_buffer_header (b[2], LOAD);
144 p = vlib_buffer_get_current (b[1]);
145 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
146 p -= CLIB_CACHE_LINE_BYTES;
147 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
148 }
149
150 if (vlib_buffer_chain_linearize (vm, b[0]) != 1)
151 {
152 b[0]->error = node->errors[ESP_DECRYPT_ERROR_CHAINED_BUFFER];
Damjan Marion1f4e1cb2019-03-28 19:19:31 +0100153 next[0] = ESP_DECRYPT_NEXT_DROP;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100154 goto next;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700155 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100156
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100157 if (vnet_buffer (b[0])->ipsec.sad_index != current_sa_index)
Damjan Marionc98275f2019-03-06 14:05:01 +0100158 {
Damjan Marion867dfdd2019-06-05 15:42:54 +0200159 if (current_sa_pkts)
160 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
161 current_sa_index,
162 current_sa_pkts,
163 current_sa_bytes);
164 current_sa_bytes = current_sa_pkts = 0;
165
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100166 current_sa_index = vnet_buffer (b[0])->ipsec.sad_index;
167 sa0 = pool_elt_at_index (im->sad, current_sa_index);
Damjan Marion7c22ff72019-04-04 12:25:44 +0200168 cpd.icv_sz = sa0->integ_icv_size;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100169 cpd.iv_sz = sa0->crypto_iv_size;
170 cpd.flags = sa0->flags;
171 cpd.sa_index = current_sa_index;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100172 }
173
174 /* store packet data for next round for easier prefetch */
175 pd->sa_data = cpd.sa_data;
176 pd->current_data = b[0]->current_data;
177 pd->current_length = b[0]->current_length;
178 pd->hdr_sz = pd->current_data - vnet_buffer (b[0])->l3_hdr_offset;
179 payload = b[0]->data + pd->current_data;
180
181 /* we need 4 extra bytes for HMAC calculation when ESN are used */
Neale Ranns49e7ef62019-04-10 17:24:29 +0000182 if (ipsec_sa_is_set_USE_ESN (sa0) && pd->icv_sz &&
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100183 (pd->current_data + pd->current_length + 4 > buffer_data_size))
184 {
185 b[0]->error = node->errors[ESP_DECRYPT_ERROR_NO_TAIL_SPACE];
186 next[0] = ESP_DECRYPT_NEXT_DROP;
187 goto next;
188 }
189
190 /* anti-reply check */
191 if (ipsec_sa_anti_replay_check (sa0, &((esp_header_t *) payload)->seq))
192 {
193 b[0]->error = node->errors[ESP_DECRYPT_ERROR_REPLAY];
194 next[0] = ESP_DECRYPT_NEXT_DROP;
195 goto next;
196 }
197
Damjan Mariona829b132019-04-24 23:39:16 +0200198 if (pd->current_length < cpd.icv_sz + esp_sz + cpd.iv_sz)
199 {
200 b[0]->error = node->errors[ESP_DECRYPT_ERROR_RUNT];
201 next[0] = ESP_DECRYPT_NEXT_DROP;
202 goto next;
203 }
204
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100205 len = pd->current_length - cpd.icv_sz;
206 current_sa_pkts += 1;
207 current_sa_bytes += pd->current_length;
208
Neale Ranns47feb112019-04-11 15:14:07 +0000209 if (PREDICT_TRUE (sa0->integ_op_id != VNET_CRYPTO_OP_NONE))
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100210 {
211 vnet_crypto_op_t *op;
212 vec_add2_aligned (ptd->integ_ops, op, 1, CLIB_CACHE_LINE_BYTES);
213
Damjan Marion060bfb92019-03-29 13:47:54 +0100214 vnet_crypto_op_init (op, sa0->integ_op_id);
Damjan Mariond1bed682019-04-24 15:20:35 +0200215 op->key_index = sa0->integ_key_index;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100216 op->src = payload;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100217 op->flags = VNET_CRYPTO_OP_FLAG_HMAC_CHECK;
218 op->user_data = b - bufs;
Damjan Marion060bfb92019-03-29 13:47:54 +0100219 op->digest = payload + len;
220 op->digest_len = cpd.icv_sz;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100221 op->len = len;
Neale Ranns49e7ef62019-04-10 17:24:29 +0000222 if (ipsec_sa_is_set_USE_ESN (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100223 {
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100224 /* shift ICV for 4 bytes to insert ESN */
225 u8 tmp[ESP_MAX_ICV_SIZE], sz = sizeof (sa0->seq_hi);
226 clib_memcpy_fast (tmp, payload + len, ESP_MAX_ICV_SIZE);
227 clib_memcpy_fast (payload + len, &sa0->seq_hi, sz);
228 clib_memcpy_fast (payload + len + sz, tmp, ESP_MAX_ICV_SIZE);
229 op->len += sz;
Neale Ranns49e7ef62019-04-10 17:24:29 +0000230 op->digest += sz;
Damjan Marionc98275f2019-03-06 14:05:01 +0100231 }
232 }
233
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100234 payload += esp_sz;
235 len -= esp_sz;
Damjan Marionc98275f2019-03-06 14:05:01 +0100236
Damjan Marion060bfb92019-03-29 13:47:54 +0100237 if (sa0->crypto_enc_op_id != VNET_CRYPTO_OP_NONE)
Damjan Marionc98275f2019-03-06 14:05:01 +0100238 {
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100239 vnet_crypto_op_t *op;
240 vec_add2_aligned (ptd->crypto_ops, op, 1, CLIB_CACHE_LINE_BYTES);
Damjan Marion060bfb92019-03-29 13:47:54 +0100241 vnet_crypto_op_init (op, sa0->crypto_dec_op_id);
Damjan Mariond1bed682019-04-24 15:20:35 +0200242 op->key_index = sa0->crypto_key_index;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100243 op->iv = payload;
Neale Ranns47feb112019-04-11 15:14:07 +0000244
245 if (ipsec_sa_is_set_IS_AEAD (sa0))
246 {
247 esp_header_t *esp0;
248 esp_aead_t *aad;
249 u8 *scratch;
Neale Ranns47feb112019-04-11 15:14:07 +0000250
251 /*
252 * construct the AAD and the nonce (Salt || IV) in a scratch
253 * space in front of the IP header.
254 */
255 scratch = payload - esp_sz;
256 esp0 = (esp_header_t *) (scratch);
257
258 scratch -= (sizeof (*aad) + pd->hdr_sz);
259 op->aad = scratch;
260
261 esp_aad_fill (op, esp0, sa0);
262
263 /*
264 * we don't need to refer to the ESP header anymore so we
265 * can overwrite it with the salt and use the IV where it is
266 * to form the nonce = (Salt + IV)
267 */
Neale Ranns47feb112019-04-11 15:14:07 +0000268 op->iv -= sizeof (sa0->salt);
Neale Ranns80f6fd52019-04-16 02:41:34 +0000269 clib_memcpy_fast (op->iv, &sa0->salt, sizeof (sa0->salt));
Neale Ranns47feb112019-04-11 15:14:07 +0000270
271 op->tag = payload + len;
272 op->tag_len = 16;
273 }
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100274 op->src = op->dst = payload += cpd.iv_sz;
Neale Ranns0a0c7ee2019-04-13 15:30:21 +0000275 op->len = len - cpd.iv_sz;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100276 op->user_data = b - bufs;
Damjan Marionc98275f2019-03-06 14:05:01 +0100277 }
278
279 /* next */
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100280 next:
281 n_left -= 1;
Damjan Marionc98275f2019-03-06 14:05:01 +0100282 next += 1;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100283 pd += 1;
284 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100286
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100287 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
288 current_sa_index, current_sa_pkts,
289 current_sa_bytes);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200290
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100291 if ((n = vec_len (ptd->integ_ops)))
292 {
293 vnet_crypto_op_t *op = ptd->integ_ops;
294 n -= vnet_crypto_process_ops (vm, op, n);
295 while (n)
296 {
297 ASSERT (op - ptd->integ_ops < vec_len (ptd->integ_ops));
298 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
299 {
300 u32 err, bi = op->user_data;
301 if (op->status == VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC)
302 err = ESP_DECRYPT_ERROR_INTEG_ERROR;
303 else
304 err = ESP_DECRYPT_ERROR_CRYPTO_ENGINE_ERROR;
305 bufs[bi]->error = node->errors[err];
306 nexts[bi] = ESP_DECRYPT_NEXT_DROP;
307 n--;
308 }
309 op++;
310 }
311 }
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100312 if ((n = vec_len (ptd->crypto_ops)))
313 {
314 vnet_crypto_op_t *op = ptd->crypto_ops;
315 n -= vnet_crypto_process_ops (vm, op, n);
316 while (n)
317 {
318 ASSERT (op - ptd->crypto_ops < vec_len (ptd->crypto_ops));
319 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
320 {
Neale Ranns92e93842019-04-08 07:36:50 +0000321 u32 err, bi;
322
323 bi = op->user_data;
324
325 if (op->status == VNET_CRYPTO_OP_STATUS_FAIL_BAD_HMAC)
Neale Ranns21ada3b2019-04-11 08:18:34 +0000326 err = ESP_DECRYPT_ERROR_DECRYPTION_FAILED;
Neale Ranns92e93842019-04-08 07:36:50 +0000327 else
328 err = ESP_DECRYPT_ERROR_CRYPTO_ENGINE_ERROR;
329
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100330 bufs[bi]->error = node->errors[err];
331 nexts[bi] = ESP_DECRYPT_NEXT_DROP;
332 n--;
333 }
334 op++;
335 }
336 }
337
338 /* Post decryption ronud - adjust packet data start and length and next
339 node */
340
341 n_left = from_frame->n_vectors;
342 next = nexts;
343 pd = pkt_data;
344 b = bufs;
345
346 while (n_left)
347 {
348 const u8 tun_flags = IPSEC_SA_FLAG_IS_TUNNEL |
349 IPSEC_SA_FLAG_IS_TUNNEL_V6;
350
351 if (n_left >= 2)
352 {
353 void *data = b[1]->data + pd[1].current_data;
354
355 /* buffer metadata */
356 vlib_prefetch_buffer_header (b[1], LOAD);
357
358 /* esp_footer_t */
359 CLIB_PREFETCH (data + pd[1].current_length - pd[1].icv_sz - 2,
360 CLIB_CACHE_LINE_BYTES, LOAD);
361
362 /* packet headers */
363 CLIB_PREFETCH (data - CLIB_CACHE_LINE_BYTES,
364 CLIB_CACHE_LINE_BYTES * 2, LOAD);
365 }
366
367 if (next[0] < ESP_DECRYPT_N_NEXT)
368 goto trace;
369
370 sa0 = vec_elt_at_index (im->sad, pd->sa_index);
371 u8 *payload = b[0]->data + pd->current_data;
372
Neale Ranns3fb65be2019-05-14 07:01:01 -0700373 ipsec_sa_anti_replay_advance (sa0, ((esp_header_t *) payload)->seq);
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100374
375 esp_footer_t *f = (esp_footer_t *) (b[0]->data + pd->current_data +
376 pd->current_length - sizeof (*f) -
377 pd->icv_sz);
378 u16 adv = pd->iv_sz + esp_sz;
379 u16 tail = sizeof (esp_footer_t) + f->pad_length + pd->icv_sz;
380
Neale Rannsc87b66c2019-02-07 07:26:12 -0800381 if ((pd->flags & tun_flags) == 0 && !is_tun) /* transport mode */
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100382 {
383 u8 udp_sz = (is_ip6 == 0 && pd->flags & IPSEC_SA_FLAG_UDP_ENCAP) ?
384 sizeof (udp_header_t) : 0;
385 u16 ip_hdr_sz = pd->hdr_sz - udp_sz;
386 u8 *old_ip = b[0]->data + pd->current_data - ip_hdr_sz - udp_sz;
387 u8 *ip = old_ip + adv + udp_sz;
388
389 if (is_ip6 && ip_hdr_sz > 64)
390 memmove (ip, old_ip, ip_hdr_sz);
391 else
392 clib_memcpy_le64 (ip, old_ip, ip_hdr_sz);
393
394 b[0]->current_data = pd->current_data + adv - ip_hdr_sz;
395 b[0]->current_length = pd->current_length + ip_hdr_sz - tail - adv;
396
397 if (is_ip6)
398 {
399 ip6_header_t *ip6 = (ip6_header_t *) ip;
400 u16 len = clib_net_to_host_u16 (ip6->payload_length);
401 len -= adv + tail;
402 ip6->payload_length = clib_host_to_net_u16 (len);
403 ip6->protocol = f->next_header;
404 next[0] = ESP_DECRYPT_NEXT_IP6_INPUT;
405 }
406 else
407 {
408 ip4_header_t *ip4 = (ip4_header_t *) ip;
409 ip_csum_t sum = ip4->checksum;
410 u16 len = clib_net_to_host_u16 (ip4->length);
411 len = clib_host_to_net_u16 (len - adv - tail - udp_sz);
412 sum = ip_csum_update (sum, ip4->protocol, f->next_header,
413 ip4_header_t, protocol);
414 sum = ip_csum_update (sum, ip4->length, len,
415 ip4_header_t, length);
416 ip4->checksum = ip_csum_fold (sum);
417 ip4->protocol = f->next_header;
418 ip4->length = len;
419 next[0] = ESP_DECRYPT_NEXT_IP4_INPUT;
420 }
421 }
422 else
423 {
424 if (PREDICT_TRUE (f->next_header == IP_PROTOCOL_IP_IN_IP))
425 {
426 next[0] = ESP_DECRYPT_NEXT_IP4_INPUT;
427 b[0]->current_data = pd->current_data + adv;
Matthew G Smith2a2e5932019-05-22 13:34:08 -0500428 b[0]->current_length = pd->current_length - adv - tail;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100429 }
430 else if (f->next_header == IP_PROTOCOL_IPV6)
431 {
432 next[0] = ESP_DECRYPT_NEXT_IP6_INPUT;
433 b[0]->current_data = pd->current_data + adv;
Matthew G Smith2a2e5932019-05-22 13:34:08 -0500434 b[0]->current_length = pd->current_length - adv - tail;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100435 }
436 else
437 {
438 next[0] = ESP_DECRYPT_NEXT_DROP;
439 b[0]->error = node->errors[ESP_DECRYPT_ERROR_DECRYPTION_FAILED];
Neale Rannsc87b66c2019-02-07 07:26:12 -0800440 goto trace;
441 }
442 if (is_tun)
443 {
444 if (ipsec_sa_is_set_IS_PROTECT (sa0))
445 {
446 /*
447 * Check that the reveal IP header matches that
448 * of the tunnel we are protecting
449 */
450 const ipsec_tun_protect_t *itp;
451
452 itp =
453 ipsec_tun_protect_get (vnet_buffer (b[0])->
454 ipsec.protect_index);
455 if (PREDICT_TRUE (f->next_header == IP_PROTOCOL_IP_IN_IP))
456 {
457 const ip4_header_t *ip4;
458
459 ip4 = vlib_buffer_get_current (b[0]);
460
461 if (!ip46_address_is_equal_v4 (&itp->itp_tun.src,
462 &ip4->dst_address) ||
463 !ip46_address_is_equal_v4 (&itp->itp_tun.dst,
464 &ip4->src_address))
465 next[0] = ESP_DECRYPT_NEXT_DROP;
466
467 }
468 else if (f->next_header == IP_PROTOCOL_IPV6)
469 {
470 const ip6_header_t *ip6;
471
472 ip6 = vlib_buffer_get_current (b[0]);
473
474 if (!ip46_address_is_equal_v6 (&itp->itp_tun.src,
475 &ip6->dst_address) ||
476 !ip46_address_is_equal_v6 (&itp->itp_tun.dst,
477 &ip6->src_address))
478 next[0] = ESP_DECRYPT_NEXT_DROP;
479 }
480 }
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100481 }
482 }
483
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100484 trace:
485 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
486 {
487 esp_decrypt_trace_t *tr;
488 u8 *payload = b[0]->data + pd->current_data;
489 tr = vlib_add_trace (vm, node, b[0], sizeof (*tr));
490 sa0 = pool_elt_at_index (im->sad,
491 vnet_buffer (b[0])->ipsec.sad_index);
492 tr->crypto_alg = sa0->crypto_alg;
493 tr->integ_alg = sa0->integ_alg;
494 tr->seq = clib_host_to_net_u32 (((esp_header_t *) payload)->seq);
495 }
496
497 /* next */
498 n_left -= 1;
499 next += 1;
500 pd += 1;
501 b += 1;
502 }
503
504 n_left = from_frame->n_vectors;
505 vlib_node_increment_counter (vm, node->node_index,
506 ESP_DECRYPT_ERROR_RX_PKTS, n_left);
507
508 vlib_buffer_enqueue_to_next (vm, node, from, nexts, n_left);
509
510 b = bufs;
511 return n_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512}
513
Klement Sekerab8f35442018-10-29 13:38:19 +0100514VLIB_NODE_FN (esp4_decrypt_node) (vlib_main_t * vm,
515 vlib_node_runtime_t * node,
516 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200517{
Neale Rannsc87b66c2019-02-07 07:26:12 -0800518 return esp_decrypt_inline (vm, node, from_frame, 0, 0);
519}
520
521VLIB_NODE_FN (esp4_decrypt_tun_node) (vlib_main_t * vm,
522 vlib_node_runtime_t * node,
523 vlib_frame_t * from_frame)
524{
525 return esp_decrypt_inline (vm, node, from_frame, 0, 1);
526}
527
528VLIB_NODE_FN (esp6_decrypt_node) (vlib_main_t * vm,
529 vlib_node_runtime_t * node,
530 vlib_frame_t * from_frame)
531{
532 return esp_decrypt_inline (vm, node, from_frame, 1, 0);
533}
534
535VLIB_NODE_FN (esp6_decrypt_tun_node) (vlib_main_t * vm,
536 vlib_node_runtime_t * node,
537 vlib_frame_t * from_frame)
538{
539 return esp_decrypt_inline (vm, node, from_frame, 1, 1);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200540}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700542/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200543VLIB_REGISTER_NODE (esp4_decrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200544 .name = "esp4-decrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545 .vector_size = sizeof (u32),
546 .format_trace = format_esp_decrypt_trace,
547 .type = VLIB_NODE_TYPE_INTERNAL,
548
549 .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
550 .error_strings = esp_decrypt_error_strings,
551
552 .n_next_nodes = ESP_DECRYPT_N_NEXT,
553 .next_nodes = {
554#define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
555 foreach_esp_decrypt_next
556#undef _
557 },
558};
559
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200560VLIB_REGISTER_NODE (esp6_decrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200561 .name = "esp6-decrypt",
562 .vector_size = sizeof (u32),
563 .format_trace = format_esp_decrypt_trace,
564 .type = VLIB_NODE_TYPE_INTERNAL,
565
566 .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
567 .error_strings = esp_decrypt_error_strings,
568
569 .n_next_nodes = ESP_DECRYPT_N_NEXT,
570 .next_nodes = {
571#define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
572 foreach_esp_decrypt_next
573#undef _
574 },
575};
Neale Rannsc87b66c2019-02-07 07:26:12 -0800576
577VLIB_REGISTER_NODE (esp4_decrypt_tun_node) = {
578 .name = "esp4-decrypt-tun",
579 .vector_size = sizeof (u32),
580 .format_trace = format_esp_decrypt_trace,
581 .type = VLIB_NODE_TYPE_INTERNAL,
582
583 .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
584 .error_strings = esp_decrypt_error_strings,
585
586 .n_next_nodes = ESP_DECRYPT_N_NEXT,
587 .next_nodes = {
588#define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
589 foreach_esp_decrypt_next
590#undef _
591 },
592};
593
594VLIB_REGISTER_NODE (esp6_decrypt_tun_node) = {
595 .name = "esp6-decrypt-tun",
596 .vector_size = sizeof (u32),
597 .format_trace = format_esp_decrypt_trace,
598 .type = VLIB_NODE_TYPE_INTERNAL,
599
600 .n_errors = ARRAY_LEN(esp_decrypt_error_strings),
601 .error_strings = esp_decrypt_error_strings,
602
603 .n_next_nodes = ESP_DECRYPT_N_NEXT,
604 .next_nodes = {
605#define _(s,n) [ESP_DECRYPT_NEXT_##s] = n,
606 foreach_esp_decrypt_next
607#undef _
608 },
609};
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200610/* *INDENT-ON* */
611
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700612/*
613 * fd.io coding-style-patch-verification: ON
614 *
615 * Local Variables:
616 * eval: (c-set-style "gnu")
617 * End:
618 */