blob: 186e122793dd5edce837549da91a43d40b5e166c [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * esp_encrypt.c : IPSec ESP encrypt 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>
Klement Sekera4b089f22018-04-17 18:04:57 +020021#include <vnet/udp/udp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022
Damjan Marion91f17dc2019-03-18 18:59:25 +010023#include <vnet/crypto/crypto.h>
24
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#include <vnet/ipsec/ipsec.h>
26#include <vnet/ipsec/esp.h>
27
Ed Warnickecb9cada2015-12-08 15:45:58 -070028#define foreach_esp_encrypt_next \
29_(DROP, "error-drop") \
Sergio Gonzalez Monroy1b6f9022016-12-12 10:37:49 +000030_(IP4_LOOKUP, "ip4-lookup") \
31_(IP6_LOOKUP, "ip6-lookup") \
Ed Warnickecb9cada2015-12-08 15:45:58 -070032_(INTERFACE_OUTPUT, "interface-output")
33
34#define _(v, s) ESP_ENCRYPT_NEXT_##v,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070035typedef enum
36{
Ed Warnickecb9cada2015-12-08 15:45:58 -070037 foreach_esp_encrypt_next
38#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070039 ESP_ENCRYPT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070040} esp_encrypt_next_t;
41
Damjan Marionc59b9a22019-03-19 15:38:40 +010042#define foreach_esp_encrypt_error \
43 _(RX_PKTS, "ESP pkts received") \
44 _(SEQ_CYCLED, "sequence number cycled (packet dropped)") \
45 _(CRYPTO_ENGINE_ERROR, "crypto engine error (packet dropped)") \
46 _(CHAINED_BUFFER, "chained buffers (packet dropped)") \
47 _(NO_TRAILER_SPACE, "no trailer space (packet dropped)")
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070049typedef enum
50{
Ed Warnickecb9cada2015-12-08 15:45:58 -070051#define _(sym,str) ESP_ENCRYPT_ERROR_##sym,
52 foreach_esp_encrypt_error
53#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070054 ESP_ENCRYPT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070055} esp_encrypt_error_t;
56
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070057static char *esp_encrypt_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070058#define _(sym,string) string,
59 foreach_esp_encrypt_error
60#undef _
61};
62
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070063typedef struct
64{
Neale Ranns8d7c5022019-02-06 01:41:05 -080065 u32 sa_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 u32 spi;
67 u32 seq;
Neale Ranns6afaae12019-07-17 15:07:14 +000068 u32 sa_seq_hi;
Klement Sekera4b089f22018-04-17 18:04:57 +020069 u8 udp_encap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 ipsec_crypto_alg_t crypto_alg;
71 ipsec_integ_alg_t integ_alg;
72} esp_encrypt_trace_t;
73
74/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070075static u8 *
76format_esp_encrypt_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_encrypt_trace_t *t = va_arg (*args, esp_encrypt_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020082 s =
83 format (s,
Neale Ranns6afaae12019-07-17 15:07:14 +000084 "esp: sa-index %d spi %u (0x%08x) seq %u sa-seq-hi %u crypto %U integrity %U%s",
85 t->sa_index, t->spi, t->spi, t->seq, t->sa_seq_hi,
86 format_ipsec_crypto_alg,
Guillaume Solignac8f818cc2019-05-15 12:02:33 +020087 t->crypto_alg, format_ipsec_integ_alg, t->integ_alg,
88 t->udp_encap ? " udp-encap-enabled" : "");
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 return s;
90}
91
Damjan Marionc59b9a22019-03-19 15:38:40 +010092/* pad packet in input buffer */
93static_always_inline u8 *
Filip Tehlar8cdb1a02019-11-18 22:21:37 +000094esp_add_footer_and_icv (vlib_buffer_t * b, u8 block_size, u8 icv_sz,
95 u16 * next, vlib_node_runtime_t * node,
96 u16 buffer_data_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -070097{
Damjan Marionc59b9a22019-03-19 15:38:40 +010098 static const u8 pad_data[ESP_MAX_BLOCK_SIZE] = {
99 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
100 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x00, 0x00,
101 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
Damjan Marionc59b9a22019-03-19 15:38:40 +0100103 u16 min_length = b->current_length + sizeof (esp_footer_t);
104 u16 new_length = round_pow2 (min_length, block_size);
105 u8 pad_bytes = new_length - min_length;
106 esp_footer_t *f = (esp_footer_t *) (vlib_buffer_get_current (b) +
107 new_length - sizeof (esp_footer_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000109 if (b->current_data + new_length + icv_sz > buffer_data_size)
110 {
111 b->error = node->errors[ESP_ENCRYPT_ERROR_NO_TRAILER_SPACE];
112 next[0] = ESP_ENCRYPT_NEXT_DROP;
113 return 0;
114 }
115
Damjan Marionc59b9a22019-03-19 15:38:40 +0100116 if (pad_bytes)
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000117 clib_memcpy_fast ((u8 *) f - pad_bytes, pad_data, pad_bytes);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100118
119 f->pad_length = pad_bytes;
120 b->current_length = new_length + icv_sz;
121 return &f->next_header;
122}
123
124static_always_inline void
125esp_update_ip4_hdr (ip4_header_t * ip4, u16 len, int is_transport, int is_udp)
126{
Neale Ranns1b582b82019-04-18 19:49:13 -0700127 ip_csum_t sum;
128 u16 old_len;
129
130 len = clib_net_to_host_u16 (len);
131 old_len = ip4->length;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100132
133 if (is_transport)
134 {
135 u8 prot = is_udp ? IP_PROTOCOL_UDP : IP_PROTOCOL_IPSEC_ESP;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100136
Neale Ranns1b582b82019-04-18 19:49:13 -0700137 sum = ip_csum_update (ip4->checksum, ip4->protocol,
138 prot, ip4_header_t, protocol);
139 ip4->protocol = prot;
140
141 sum = ip_csum_update (sum, old_len, len, ip4_header_t, length);
142 }
143 else
144 sum = ip_csum_update (ip4->checksum, old_len, len, ip4_header_t, length);
145
146 ip4->length = len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100147 ip4->checksum = ip_csum_fold (sum);
148}
149
150static_always_inline void
151esp_fill_udp_hdr (ipsec_sa_t * sa, udp_header_t * udp, u16 len)
152{
153 clib_memcpy_fast (udp, &sa->udp_hdr, sizeof (udp_header_t));
154 udp->length = clib_net_to_host_u16 (len);
155}
156
157static_always_inline u8
158ext_hdr_is_pre_esp (u8 nexthdr)
159{
160#ifdef CLIB_HAVE_VEC128
161 static const u8x16 ext_hdr_types = {
162 IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS,
163 IP_PROTOCOL_IPV6_ROUTE,
164 IP_PROTOCOL_IPV6_FRAGMENTATION,
165 };
166
167 return !u8x16_is_all_zero (ext_hdr_types == u8x16_splat (nexthdr));
168#else
169 return ((nexthdr ^ IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS) |
170 (nexthdr ^ IP_PROTOCOL_IPV6_ROUTE) |
171 (nexthdr ^ IP_PROTOCOL_IPV6_FRAGMENTATION) != 0);
172#endif
173}
174
175static_always_inline u8
176esp_get_ip6_hdr_len (ip6_header_t * ip6)
177{
178 /* this code assumes that HbH, route and frag headers will be before
179 others, if that is not the case, they will end up encrypted */
180
181 u8 len = sizeof (ip6_header_t);
182 ip6_ext_header_t *p;
183
184 /* if next packet doesn't have ext header */
185 if (ext_hdr_is_pre_esp (ip6->protocol) == 0)
186 return len;
187
188 p = (void *) (ip6 + 1);
189 len += ip6_ext_header_len (p);
190
191 while (ext_hdr_is_pre_esp (p->next_hdr))
192 {
193 len += ip6_ext_header_len (p);
194 p = ip6_ext_next_header (p);
195 }
196
197 return len;
198}
199
Damjan Marionc59b9a22019-03-19 15:38:40 +0100200static_always_inline void
201esp_process_ops (vlib_main_t * vm, vlib_node_runtime_t * node,
202 vnet_crypto_op_t * ops, vlib_buffer_t * b[], u16 * nexts)
203{
204 u32 n_fail, n_ops = vec_len (ops);
205 vnet_crypto_op_t *op = ops;
206
207 if (n_ops == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 return;
209
Damjan Marionc59b9a22019-03-19 15:38:40 +0100210 n_fail = n_ops - vnet_crypto_process_ops (vm, op, n_ops);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
Damjan Marionc59b9a22019-03-19 15:38:40 +0100212 while (n_fail)
213 {
214 ASSERT (op - ops < n_ops);
215
216 if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED)
217 {
218 u32 bi = op->user_data;
219 b[bi]->error = node->errors[ESP_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR];
220 nexts[bi] = ESP_ENCRYPT_NEXT_DROP;
221 n_fail--;
222 }
223 op++;
224 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225}
226
Damjan Mariond97918e2019-04-25 18:28:31 +0200227typedef struct
228{
229 u32 salt;
230 u64 iv;
231} __clib_packed esp_gcm_nonce_t;
232
233STATIC_ASSERT_SIZEOF (esp_gcm_nonce_t, 12);
234
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200235always_inline uword
Damjan Marionc59b9a22019-03-19 15:38:40 +0100236esp_encrypt_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Neale Ranns25edf142019-03-22 08:12:48 +0000237 vlib_frame_t * frame, int is_ip6, int is_tun)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 ipsec_main_t *im = &ipsec_main;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100240 ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, vm->thread_index);
241 u32 *from = vlib_frame_vector_args (frame);
242 u32 n_left = frame->n_vectors;
243 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Damjan Marionc98275f2019-03-06 14:05:01 +0100244 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
Damjan Mariond97918e2019-04-25 18:28:31 +0200245 esp_gcm_nonce_t nonces[VLIB_FRAME_SIZE], *nonce = nonces;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100246 u32 thread_index = vm->thread_index;
247 u16 buffer_data_size = vlib_buffer_get_default_data_size (vm);
248 u32 current_sa_index = ~0, current_sa_packets = 0;
249 u32 current_sa_bytes = 0, spi = 0;
250 u8 block_sz = 0, iv_sz = 0, icv_sz = 0;
251 ipsec_sa_t *sa0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
Damjan Marionc59b9a22019-03-19 15:38:40 +0100253 vlib_get_buffers (vm, from, b, n_left);
254 vec_reset_length (ptd->crypto_ops);
255 vec_reset_length (ptd->integ_ops);
256
257 while (n_left > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700258 {
Zhiyong Yang1cff6432019-04-30 05:33:53 -0400259 u32 sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100260 dpo_id_t *dpo;
261 esp_header_t *esp;
262 u8 *payload, *next_hdr_ptr;
263 u16 payload_len;
264 u32 hdr_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265
Damjan Marionc59b9a22019-03-19 15:38:40 +0100266 if (n_left > 2)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700267 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100268 u8 *p;
269 vlib_prefetch_buffer_header (b[2], LOAD);
270 p = vlib_buffer_get_current (b[1]);
271 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
272 p -= CLIB_CACHE_LINE_BYTES;
273 CLIB_PREFETCH (p, CLIB_CACHE_LINE_BYTES, LOAD);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700274 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
Neale Ranns25edf142019-03-22 08:12:48 +0000276 if (is_tun)
277 {
278 /* we are on a ipsec tunnel's feature arc */
279 u32 next0;
280 sa_index0 = *(u32 *) vnet_feature_next_with_data (&next0, b[0],
281 sizeof
282 (sa_index0));
283 next[0] = next0;
284 }
285 else
286 sa_index0 = vnet_buffer (b[0])->ipsec.sad_index;
287
288 if (sa_index0 != current_sa_index)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100289 {
Damjan Marion21f265f2019-06-05 15:45:50 +0200290 if (current_sa_packets)
291 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
292 current_sa_index,
293 current_sa_packets,
294 current_sa_bytes);
295 current_sa_packets = current_sa_bytes = 0;
296
Damjan Marionc59b9a22019-03-19 15:38:40 +0100297 sa0 = pool_elt_at_index (im->sad, sa_index0);
298 current_sa_index = sa_index0;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100299 spi = clib_net_to_host_u32 (sa0->spi);
300 block_sz = sa0->crypto_block_size;
Damjan Marion7c22ff72019-04-04 12:25:44 +0200301 icv_sz = sa0->integ_icv_size;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100302 iv_sz = sa0->crypto_iv_size;
303 }
304
305 if (vlib_buffer_chain_linearize (vm, b[0]) != 1)
306 {
307 b[0]->error = node->errors[ESP_ENCRYPT_ERROR_CHAINED_BUFFER];
308 next[0] = ESP_ENCRYPT_NEXT_DROP;
309 goto trace;
310 }
311
312 if (PREDICT_FALSE (esp_seq_advance (sa0)))
313 {
314 b[0]->error = node->errors[ESP_ENCRYPT_ERROR_SEQ_CYCLED];
315 next[0] = ESP_ENCRYPT_NEXT_DROP;
316 goto trace;
317 }
318
319 /* space for IV */
320 hdr_len = iv_sz;
321
Damjan Mariond709cbc2019-03-26 13:16:42 +0100322 if (ipsec_sa_is_set_IS_TUNNEL (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100323 {
324 payload = vlib_buffer_get_current (b[0]);
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000325 next_hdr_ptr = esp_add_footer_and_icv (b[0], block_sz, icv_sz,
326 next, node,
327 buffer_data_size);
328 if (!next_hdr_ptr)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100329 goto trace;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000330 payload_len = b[0]->current_length;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100331
332 /* ESP header */
333 hdr_len += sizeof (*esp);
334 esp = (esp_header_t *) (payload - hdr_len);
335
336 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100337 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100338 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100339 hdr_len += sizeof (udp_header_t);
340 esp_fill_udp_hdr (sa0, (udp_header_t *) (payload - hdr_len),
341 payload_len + hdr_len);
342 }
343
344 /* IP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100345 if (ipsec_sa_is_set_IS_TUNNEL_V6 (sa0))
Damjan Marionc59b9a22019-03-19 15:38:40 +0100346 {
347 ip6_header_t *ip6;
348 u16 len = sizeof (ip6_header_t);
349 hdr_len += len;
350 ip6 = (ip6_header_t *) (payload - hdr_len);
351 clib_memcpy_fast (ip6, &sa0->ip6_hdr, len);
Neale Ranns987aea82019-03-27 13:40:35 +0000352 *next_hdr_ptr = (is_ip6 ?
353 IP_PROTOCOL_IPV6 : IP_PROTOCOL_IP_IN_IP);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100354 len = payload_len + hdr_len - len;
355 ip6->payload_length = clib_net_to_host_u16 (len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100356 }
357 else
358 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100359 ip4_header_t *ip4;
360 u16 len = sizeof (ip4_header_t);
361 hdr_len += len;
362 ip4 = (ip4_header_t *) (payload - hdr_len);
363 clib_memcpy_fast (ip4, &sa0->ip4_hdr, len);
Neale Ranns987aea82019-03-27 13:40:35 +0000364 *next_hdr_ptr = (is_ip6 ?
365 IP_PROTOCOL_IPV6 : IP_PROTOCOL_IP_IN_IP);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100366 len = payload_len + hdr_len;
367 esp_update_ip4_hdr (ip4, len, /* is_transport */ 0, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100368 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100369
Neale Ranns72f2a3a2019-06-17 15:43:38 +0000370 dpo = &sa0->dpo;
Neale Ranns25edf142019-03-22 08:12:48 +0000371 if (!is_tun)
372 {
373 next[0] = dpo->dpoi_next_node;
374 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpo->dpoi_index;
375 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100376 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100377 else /* transport mode */
Damjan Marionc98275f2019-03-06 14:05:01 +0100378 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100379 u8 *l2_hdr, l2_len, *ip_hdr, ip_len;
380 udp_header_t *udp = 0;
381 u8 *old_ip_hdr = vlib_buffer_get_current (b[0]);
Damjan Marionc98275f2019-03-06 14:05:01 +0100382
Damjan Marionc59b9a22019-03-19 15:38:40 +0100383 ip_len = is_ip6 ?
384 esp_get_ip6_hdr_len ((ip6_header_t *) old_ip_hdr) :
385 ip4_header_bytes ((ip4_header_t *) old_ip_hdr);
Damjan Marionc98275f2019-03-06 14:05:01 +0100386
Damjan Marionc59b9a22019-03-19 15:38:40 +0100387 vlib_buffer_advance (b[0], ip_len);
388 payload = vlib_buffer_get_current (b[0]);
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000389 next_hdr_ptr = esp_add_footer_and_icv (b[0], block_sz, icv_sz,
390 next, node,
391 buffer_data_size);
392 if (!next_hdr_ptr)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100393 goto trace;
Filip Tehlar8cdb1a02019-11-18 22:21:37 +0000394 payload_len = b[0]->current_length;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100395
396 /* ESP header */
397 hdr_len += sizeof (*esp);
398 esp = (esp_header_t *) (payload - hdr_len);
399
400 /* optional UDP header */
Damjan Mariond709cbc2019-03-26 13:16:42 +0100401 if (ipsec_sa_is_set_UDP_ENCAP (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100402 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100403 hdr_len += sizeof (udp_header_t);
404 udp = (udp_header_t *) (payload - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100405 }
406
Damjan Marionc59b9a22019-03-19 15:38:40 +0100407 /* IP header */
408 hdr_len += ip_len;
409 ip_hdr = payload - hdr_len;
410
411 /* L2 header */
Neale Rannsc87b66c2019-02-07 07:26:12 -0800412 if (!is_tun)
413 {
414 l2_len = vnet_buffer (b[0])->ip.save_rewrite_length;
415 hdr_len += l2_len;
416 l2_hdr = payload - hdr_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100417
Neale Rannsc87b66c2019-02-07 07:26:12 -0800418 /* copy l2 and ip header */
419 clib_memcpy_le32 (l2_hdr, old_ip_hdr - l2_len, l2_len);
420 }
421 else
422 l2_len = 0;
423
Damjan Marionc59b9a22019-03-19 15:38:40 +0100424 clib_memcpy_le64 (ip_hdr, old_ip_hdr, ip_len);
425
Damjan Marionc98275f2019-03-06 14:05:01 +0100426 if (is_ip6)
Damjan Marionc59b9a22019-03-19 15:38:40 +0100427 {
428 ip6_header_t *ip6 = (ip6_header_t *) (ip_hdr);
429 *next_hdr_ptr = ip6->protocol;
430 ip6->protocol = IP_PROTOCOL_IPSEC_ESP;
Neale Rannsd207fd72019-04-18 17:18:12 -0700431 ip6->payload_length =
432 clib_host_to_net_u16 (payload_len + hdr_len - l2_len -
433 ip_len);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100434 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100435 else
Damjan Marionc98275f2019-03-06 14:05:01 +0100436 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100437 u16 len;
438 ip4_header_t *ip4 = (ip4_header_t *) (ip_hdr);
439 *next_hdr_ptr = ip4->protocol;
Neale Ranns1b582b82019-04-18 19:49:13 -0700440 len = payload_len + hdr_len - l2_len;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100441 if (udp)
442 {
443 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1, 1);
444 esp_fill_udp_hdr (sa0, udp, len - ip_len);
445 }
446 else
447 esp_update_ip4_hdr (ip4, len, /* is_transport */ 1, 0);
Damjan Marionc98275f2019-03-06 14:05:01 +0100448 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100449
Neale Rannsc87b66c2019-02-07 07:26:12 -0800450 if (!is_tun)
451 next[0] = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Damjan Marionc98275f2019-03-06 14:05:01 +0100452 }
453
Damjan Marionc59b9a22019-03-19 15:38:40 +0100454 esp->spi = spi;
455 esp->seq = clib_net_to_host_u32 (sa0->seq);
Damjan Marionc98275f2019-03-06 14:05:01 +0100456
Damjan Marion060bfb92019-03-29 13:47:54 +0100457 if (sa0->crypto_enc_op_id)
Damjan Marionc98275f2019-03-06 14:05:01 +0100458 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100459 vnet_crypto_op_t *op;
460 vec_add2_aligned (ptd->crypto_ops, op, 1, CLIB_CACHE_LINE_BYTES);
Damjan Marion060bfb92019-03-29 13:47:54 +0100461 vnet_crypto_op_init (op, sa0->crypto_enc_op_id);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100462 op->src = op->dst = payload;
Damjan Mariond1bed682019-04-24 15:20:35 +0200463 op->key_index = sa0->crypto_key_index;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100464 op->len = payload_len - icv_sz;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100465 op->user_data = b - bufs;
Neale Ranns47feb112019-04-11 15:14:07 +0000466
467 if (ipsec_sa_is_set_IS_AEAD (sa0))
468 {
469 /*
470 * construct the AAD in a scratch space in front
471 * of the IP header.
472 */
473 op->aad = payload - hdr_len - sizeof (esp_aead_t);
474
475 esp_aad_fill (op, esp, sa0);
476
477 op->tag = payload + op->len;
478 op->tag_len = 16;
Damjan Mariond97918e2019-04-25 18:28:31 +0200479
480 u64 *iv = (u64 *) (payload - iv_sz);
481 nonce->salt = sa0->salt;
482 nonce->iv = *iv = clib_host_to_net_u64 (sa0->gcm_iv_counter++);
483 op->iv = (u8 *) nonce;
484 nonce++;
485 }
486 else
487 {
488 op->iv = payload - iv_sz;
489 op->flags = VNET_CRYPTO_OP_FLAG_INIT_IV;
Neale Ranns47feb112019-04-11 15:14:07 +0000490 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100491 }
Damjan Marionc59b9a22019-03-19 15:38:40 +0100492
Damjan Marion060bfb92019-03-29 13:47:54 +0100493 if (sa0->integ_op_id)
Damjan Marionc98275f2019-03-06 14:05:01 +0100494 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100495 vnet_crypto_op_t *op;
496 vec_add2_aligned (ptd->integ_ops, op, 1, CLIB_CACHE_LINE_BYTES);
Damjan Marion060bfb92019-03-29 13:47:54 +0100497 vnet_crypto_op_init (op, sa0->integ_op_id);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100498 op->src = payload - iv_sz - sizeof (esp_header_t);
Damjan Marion060bfb92019-03-29 13:47:54 +0100499 op->digest = payload + payload_len - icv_sz;
Damjan Mariond1bed682019-04-24 15:20:35 +0200500 op->key_index = sa0->integ_key_index;
Damjan Marion060bfb92019-03-29 13:47:54 +0100501 op->digest_len = icv_sz;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100502 op->len = payload_len - icv_sz + iv_sz + sizeof (esp_header_t);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100503 op->user_data = b - bufs;
Damjan Marion1e3aa5e2019-03-28 10:58:59 +0100504 if (ipsec_sa_is_set_USE_ESN (sa0))
Damjan Marionc98275f2019-03-06 14:05:01 +0100505 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100506 u32 seq_hi = clib_net_to_host_u32 (sa0->seq_hi);
Neale Ranns49e7ef62019-04-10 17:24:29 +0000507 clib_memcpy_fast (op->digest, &seq_hi, sizeof (seq_hi));
Damjan Marionc59b9a22019-03-19 15:38:40 +0100508 op->len += sizeof (seq_hi);
Damjan Marionc98275f2019-03-06 14:05:01 +0100509 }
510 }
511
Damjan Marionc59b9a22019-03-19 15:38:40 +0100512 vlib_buffer_advance (b[0], 0LL - hdr_len);
Damjan Marionc98275f2019-03-06 14:05:01 +0100513
Damjan Marionc59b9a22019-03-19 15:38:40 +0100514 current_sa_packets += 1;
515 current_sa_bytes += payload_len;
516
517 trace:
518 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Damjan Marionc98275f2019-03-06 14:05:01 +0100519 {
Damjan Marionc59b9a22019-03-19 15:38:40 +0100520 esp_encrypt_trace_t *tr = vlib_add_trace (vm, node, b[0],
521 sizeof (*tr));
522 tr->sa_index = sa_index0;
523 tr->spi = sa0->spi;
Neale Ranns6afaae12019-07-17 15:07:14 +0000524 tr->seq = sa0->seq;
525 tr->sa_seq_hi = sa0->seq_hi;
Damjan Mariond709cbc2019-03-26 13:16:42 +0100526 tr->udp_encap = ipsec_sa_is_set_UDP_ENCAP (sa0);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100527 tr->crypto_alg = sa0->crypto_alg;
528 tr->integ_alg = sa0->integ_alg;
Damjan Marionc98275f2019-03-06 14:05:01 +0100529 }
Damjan Marionc98275f2019-03-06 14:05:01 +0100530 /* next */
Damjan Marionc59b9a22019-03-19 15:38:40 +0100531 n_left -= 1;
Damjan Marionc98275f2019-03-06 14:05:01 +0100532 next += 1;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100533 b += 1;
Damjan Marionc98275f2019-03-06 14:05:01 +0100534 }
535
Damjan Marionc59b9a22019-03-19 15:38:40 +0100536 vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
537 current_sa_index, current_sa_packets,
538 current_sa_bytes);
Damjan Marionc59b9a22019-03-19 15:38:40 +0100539 esp_process_ops (vm, node, ptd->crypto_ops, bufs, nexts);
540 esp_process_ops (vm, node, ptd->integ_ops, bufs, nexts);
541
542 vlib_node_increment_counter (vm, node->node_index,
543 ESP_ENCRYPT_ERROR_RX_PKTS, frame->n_vectors);
544
545 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
546 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547}
548
Klement Sekerab8f35442018-10-29 13:38:19 +0100549VLIB_NODE_FN (esp4_encrypt_node) (vlib_main_t * vm,
550 vlib_node_runtime_t * node,
551 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200552{
Neale Ranns25edf142019-03-22 08:12:48 +0000553 return esp_encrypt_inline (vm, node, from_frame, 0 /* is_ip6 */ , 0);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200554}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700556/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200557VLIB_REGISTER_NODE (esp4_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200558 .name = "esp4-encrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559 .vector_size = sizeof (u32),
560 .format_trace = format_esp_encrypt_trace,
561 .type = VLIB_NODE_TYPE_INTERNAL,
562
563 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
564 .error_strings = esp_encrypt_error_strings,
565
566 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
567 .next_nodes = {
568#define _(s,n) [ESP_ENCRYPT_NEXT_##s] = n,
569 foreach_esp_encrypt_next
570#undef _
571 },
572};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700573/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574
Klement Sekerab8f35442018-10-29 13:38:19 +0100575VLIB_NODE_FN (esp6_encrypt_node) (vlib_main_t * vm,
576 vlib_node_runtime_t * node,
577 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200578{
Neale Ranns25edf142019-03-22 08:12:48 +0000579 return esp_encrypt_inline (vm, node, from_frame, 1 /* is_ip6 */ , 0);
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200580}
581
582/* *INDENT-OFF* */
583VLIB_REGISTER_NODE (esp6_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200584 .name = "esp6-encrypt",
585 .vector_size = sizeof (u32),
586 .format_trace = format_esp_encrypt_trace,
587 .type = VLIB_NODE_TYPE_INTERNAL,
588
589 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
590 .error_strings = esp_encrypt_error_strings,
591
592 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
593 .next_nodes = {
594#define _(s,n) [ESP_ENCRYPT_NEXT_##s] = n,
595 foreach_esp_encrypt_next
596#undef _
597 },
598};
599/* *INDENT-ON* */
600
Neale Ranns25edf142019-03-22 08:12:48 +0000601VLIB_NODE_FN (esp4_encrypt_tun_node) (vlib_main_t * vm,
602 vlib_node_runtime_t * node,
603 vlib_frame_t * from_frame)
604{
605 return esp_encrypt_inline (vm, node, from_frame, 0 /* is_ip6 */ , 1);
606}
607
608/* *INDENT-OFF* */
609VLIB_REGISTER_NODE (esp4_encrypt_tun_node) = {
610 .name = "esp4-encrypt-tun",
611 .vector_size = sizeof (u32),
612 .format_trace = format_esp_encrypt_trace,
613 .type = VLIB_NODE_TYPE_INTERNAL,
614
615 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
616 .error_strings = esp_encrypt_error_strings,
Neale Rannsd7603d92019-03-28 08:56:10 +0000617
618 .n_next_nodes = 1,
619 .next_nodes = {
620 [ESP_ENCRYPT_NEXT_DROP] = "ip4-drop",
621 },
Neale Ranns25edf142019-03-22 08:12:48 +0000622};
623
624VNET_FEATURE_INIT (esp4_encrypt_tun_feat_node, static) =
625{
626 .arc_name = "ip4-output",
627 .node_name = "esp4-encrypt-tun",
Neale Rannsea5bb772019-04-02 05:43:34 -0700628 .runs_before = VNET_FEATURES ("adj-midchain-tx"),
Neale Ranns25edf142019-03-22 08:12:48 +0000629};
Neale Rannsc87b66c2019-02-07 07:26:12 -0800630
Neale Rannsb3259832019-09-27 13:32:02 +0000631VNET_FEATURE_INIT (esp6o4_encrypt_tun_feat_node, static) =
632{
633 .arc_name = "ip6-output",
634 .node_name = "esp4-encrypt-tun",
635 .runs_before = VNET_FEATURES ("adj-midchain-tx"),
636};
637
Neale Rannsc87b66c2019-02-07 07:26:12 -0800638VNET_FEATURE_INIT (esp4_ethernet_encrypt_tun_feat_node, static) =
639{
640 .arc_name = "ethernet-output",
641 .node_name = "esp4-encrypt-tun",
642 .runs_before = VNET_FEATURES ("adj-midchain-tx", "adj-midchain-tx-no-count"),
643};
Neale Ranns25edf142019-03-22 08:12:48 +0000644/* *INDENT-ON* */
645
646VLIB_NODE_FN (esp6_encrypt_tun_node) (vlib_main_t * vm,
647 vlib_node_runtime_t * node,
648 vlib_frame_t * from_frame)
649{
650 return esp_encrypt_inline (vm, node, from_frame, 1 /* is_ip6 */ , 1);
651}
652
653/* *INDENT-OFF* */
654VLIB_REGISTER_NODE (esp6_encrypt_tun_node) = {
655 .name = "esp6-encrypt-tun",
656 .vector_size = sizeof (u32),
657 .format_trace = format_esp_encrypt_trace,
658 .type = VLIB_NODE_TYPE_INTERNAL,
659
660 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
661 .error_strings = esp_encrypt_error_strings,
Neale Rannsd7603d92019-03-28 08:56:10 +0000662
663 .n_next_nodes = 1,
664 .next_nodes = {
665 [ESP_ENCRYPT_NEXT_DROP] = "ip6-drop",
666 },
Neale Ranns25edf142019-03-22 08:12:48 +0000667};
668
669VNET_FEATURE_INIT (esp6_encrypt_tun_feat_node, static) =
670{
671 .arc_name = "ip6-output",
672 .node_name = "esp6-encrypt-tun",
Neale Rannsea5bb772019-04-02 05:43:34 -0700673 .runs_before = VNET_FEATURES ("adj-midchain-tx"),
Neale Ranns25edf142019-03-22 08:12:48 +0000674};
Neale Rannsb3259832019-09-27 13:32:02 +0000675
676VNET_FEATURE_INIT (esp4o6_encrypt_tun_feat_node, static) =
677{
678 .arc_name = "ip4-output",
679 .node_name = "esp6-encrypt-tun",
680 .runs_before = VNET_FEATURES ("adj-midchain-tx"),
681};
682
Neale Ranns25edf142019-03-22 08:12:48 +0000683/* *INDENT-ON* */
684
Matthew Smith401aedf2019-07-08 14:45:04 -0500685typedef struct
686{
687 u32 sa_index;
688} esp_no_crypto_trace_t;
689
690static u8 *
691format_esp_no_crypto_trace (u8 * s, va_list * args)
692{
693 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
694 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
695 esp_no_crypto_trace_t *t = va_arg (*args, esp_no_crypto_trace_t *);
696
697 s = format (s, "esp-no-crypto: sa-index %u", t->sa_index);
698
699 return s;
700}
701
702enum
703{
704 ESP_NO_CRYPTO_NEXT_DROP,
705 ESP_NO_CRYPTO_N_NEXT,
706};
707
708enum
709{
710 ESP_NO_CRYPTO_ERROR_RX_PKTS,
711};
712
713static char *esp_no_crypto_error_strings[] = {
714 "Outbound ESP packets received",
715};
716
717always_inline uword
718esp_no_crypto_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
719 vlib_frame_t * frame)
720{
721 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
722 u16 nexts[VLIB_FRAME_SIZE], *next = nexts;
723 u32 *from = vlib_frame_vector_args (frame);
724 u32 n_left = frame->n_vectors;
725
726 vlib_get_buffers (vm, from, b, n_left);
727
728 while (n_left > 0)
729 {
730 u32 next0;
731 u32 sa_index0;
732
733 /* packets are always going to be dropped, but get the sa_index */
734 sa_index0 = *(u32 *) vnet_feature_next_with_data (&next0, b[0],
735 sizeof (sa_index0));
736
737 next[0] = ESP_NO_CRYPTO_NEXT_DROP;
738
739 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
740 {
741 esp_no_crypto_trace_t *tr = vlib_add_trace (vm, node, b[0],
742 sizeof (*tr));
743 tr->sa_index = sa_index0;
744 }
745
746 n_left -= 1;
747 next += 1;
748 b += 1;
749 }
750
751 vlib_node_increment_counter (vm, node->node_index,
752 ESP_NO_CRYPTO_ERROR_RX_PKTS, frame->n_vectors);
753
754 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
755
756 return frame->n_vectors;
757}
758
759VLIB_NODE_FN (esp4_no_crypto_tun_node) (vlib_main_t * vm,
760 vlib_node_runtime_t * node,
761 vlib_frame_t * from_frame)
762{
763 return esp_no_crypto_inline (vm, node, from_frame);
764}
765
766/* *INDENT-OFF* */
767VLIB_REGISTER_NODE (esp4_no_crypto_tun_node) =
768{
769 .name = "esp4-no-crypto",
770 .vector_size = sizeof (u32),
771 .format_trace = format_esp_no_crypto_trace,
772 .n_errors = ARRAY_LEN(esp_no_crypto_error_strings),
773 .error_strings = esp_no_crypto_error_strings,
774 .n_next_nodes = ESP_NO_CRYPTO_N_NEXT,
775 .next_nodes = {
776 [ESP_NO_CRYPTO_NEXT_DROP] = "ip4-drop",
777 },
778};
779
780VNET_FEATURE_INIT (esp4_no_crypto_tun_feat_node, static) =
781{
782 .arc_name = "ip4-output",
783 .node_name = "esp4-no-crypto",
784 .runs_before = VNET_FEATURES ("adj-midchain-tx"),
785};
786
787VLIB_NODE_FN (esp6_no_crypto_tun_node) (vlib_main_t * vm,
788 vlib_node_runtime_t * node,
789 vlib_frame_t * from_frame)
790{
791 return esp_no_crypto_inline (vm, node, from_frame);
792}
793
794/* *INDENT-OFF* */
795VLIB_REGISTER_NODE (esp6_no_crypto_tun_node) =
796{
797 .name = "esp6-no-crypto",
798 .vector_size = sizeof (u32),
799 .format_trace = format_esp_no_crypto_trace,
800 .n_errors = ARRAY_LEN(esp_no_crypto_error_strings),
801 .error_strings = esp_no_crypto_error_strings,
802 .n_next_nodes = ESP_NO_CRYPTO_N_NEXT,
803 .next_nodes = {
804 [ESP_NO_CRYPTO_NEXT_DROP] = "ip6-drop",
805 },
806};
807
808VNET_FEATURE_INIT (esp6_no_crypto_tun_feat_node, static) =
809{
810 .arc_name = "ip6-output",
811 .node_name = "esp6-no-crypto",
812 .runs_before = VNET_FEATURES ("adj-midchain-tx"),
813};
814/* *INDENT-ON* */
815
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700816/*
817 * fd.io coding-style-patch-verification: ON
818 *
819 * Local Variables:
820 * eval: (c-set-style "gnu")
821 * End:
822 */