blob: 4b325e08b5ffc51f9b955dd2998d4b39ae20e59a [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
23#include <vnet/ipsec/ipsec.h>
24#include <vnet/ipsec/esp.h>
25
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080026ipsec_proto_main_t ipsec_proto_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
28#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
42#define foreach_esp_encrypt_error \
43 _(RX_PKTS, "ESP pkts received") \
44 _(NO_BUFFER, "No buffer (packet dropped)") \
45 _(DECRYPTION_FAILED, "ESP encryption failed") \
46 _(SEQ_CYCLED, "sequence number cycled")
47
48
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;
Klement Sekera4b089f22018-04-17 18:04:57 +020068 u8 udp_encap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070069 ipsec_crypto_alg_t crypto_alg;
70 ipsec_integ_alg_t integ_alg;
71} esp_encrypt_trace_t;
72
73/* packet trace format function */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070074static u8 *
75format_esp_encrypt_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070076{
77 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
78 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070079 esp_encrypt_trace_t *t = va_arg (*args, esp_encrypt_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
Neale Ranns8d7c5022019-02-06 01:41:05 -080081 s = format (s, "esp: sa-index %d spi %u seq %u crypto %U integrity %U%s",
82 t->sa_index, t->spi, t->seq,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070083 format_ipsec_crypto_alg, t->crypto_alg,
Klement Sekera4b089f22018-04-17 18:04:57 +020084 format_ipsec_integ_alg, t->integ_alg,
85 t->udp_encap ? " udp-encap-enabled" : "");
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 return s;
87}
88
89always_inline void
Damjan Marion067cd622018-07-11 12:47:43 +020090esp_encrypt_cbc (vlib_main_t * vm, ipsec_crypto_alg_t alg,
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -080091 u8 * in, u8 * out, size_t in_len, u8 * key, u8 * iv)
Ed Warnickecb9cada2015-12-08 15:45:58 -070092{
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080093 ipsec_proto_main_t *em = &ipsec_proto_main;
Damjan Marion067cd622018-07-11 12:47:43 +020094 u32 thread_index = vm->thread_index;
Marco Varlesef616d102017-11-09 15:16:20 +010095#if OPENSSL_VERSION_NUMBER >= 0x10100000L
96 EVP_CIPHER_CTX *ctx = em->per_thread_data[thread_index].encrypt_ctx;
97#else
Damjan Marion586afd72017-04-05 19:18:20 +020098 EVP_CIPHER_CTX *ctx = &(em->per_thread_data[thread_index].encrypt_ctx);
Marco Varlesef616d102017-11-09 15:16:20 +010099#endif
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700100 const EVP_CIPHER *cipher = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101 int out_len;
102
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700103 ASSERT (alg < IPSEC_CRYPTO_N_ALG);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800105 if (PREDICT_FALSE
106 (em->ipsec_proto_main_crypto_algs[alg].type == IPSEC_CRYPTO_ALG_NONE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107 return;
108
Damjan Marion586afd72017-04-05 19:18:20 +0200109 if (PREDICT_FALSE
110 (alg != em->per_thread_data[thread_index].last_encrypt_alg))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700111 {
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800112 cipher = em->ipsec_proto_main_crypto_algs[alg].type;
Damjan Marion586afd72017-04-05 19:18:20 +0200113 em->per_thread_data[thread_index].last_encrypt_alg = alg;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700114 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700116 EVP_EncryptInit_ex (ctx, cipher, NULL, key, iv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700118 EVP_EncryptUpdate (ctx, out, &out_len, in, in_len);
119 EVP_EncryptFinal_ex (ctx, out + out_len, &out_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120}
121
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200122always_inline uword
123esp_encrypt_inline (vlib_main_t * vm,
124 vlib_node_runtime_t * node, vlib_frame_t * from_frame,
125 int is_ip6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126{
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700127 u32 n_left_from, *from, *to_next = 0, next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 from = vlib_frame_vector_args (from_frame);
129 n_left_from = from_frame->n_vectors;
130 ipsec_main_t *im = &ipsec_main;
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800131 ipsec_proto_main_t *em = &ipsec_proto_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700132 u32 *recycle = 0;
Damjan Marion067cd622018-07-11 12:47:43 +0200133 u32 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700135 ipsec_alloc_empty_buffers (vm, im);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Damjan Marion586afd72017-04-05 19:18:20 +0200137 u32 *empty_buffers = im->empty_buffers[thread_index];
Matus Fabian141977f2016-07-04 05:36:52 -0700138
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700139 if (PREDICT_FALSE (vec_len (empty_buffers) < n_left_from))
140 {
Klement Sekera2e02ba02018-11-30 14:37:03 +0100141 vlib_node_increment_counter (vm, node->node_index,
142 ESP_ENCRYPT_ERROR_NO_BUFFER, n_left_from);
Klement Sekera35a5ee12018-11-12 14:42:00 +0100143 clib_warning ("not enough empty buffers. discarding frame");
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700144 goto free_buffers_and_exit;
145 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
147 next_index = node->cached_next_index;
148
149 while (n_left_from > 0)
150 {
151 u32 n_left_to_next;
152
153 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
154
155 while (n_left_from > 0 && n_left_to_next > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700156 {
157 u32 i_bi0, o_bi0, next0;
158 vlib_buffer_t *i_b0, *o_b0 = 0;
159 u32 sa_index0;
160 ipsec_sa_t *sa0;
Klement Sekera4b089f22018-04-17 18:04:57 +0200161 ip4_and_esp_header_t *oh0 = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700162 ip6_and_esp_header_t *ih6_0, *oh6_0 = 0;
Klement Sekera4b089f22018-04-17 18:04:57 +0200163 ip4_and_udp_and_esp_header_t *iuh0, *ouh0 = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700164 uword last_empty_buffer;
165 esp_header_t *o_esp0;
166 esp_footer_t *f0;
Klement Sekera4b089f22018-04-17 18:04:57 +0200167 u8 ip_udp_hdr_size;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700168 u8 next_hdr_type;
169 u32 ip_proto = 0;
170 u8 transport_mode = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700172 i_bi0 = from[0];
173 from += 1;
174 n_left_from -= 1;
175 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700177 next0 = ESP_ENCRYPT_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700179 i_b0 = vlib_get_buffer (vm, i_bi0);
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100180 sa_index0 = vnet_buffer (i_b0)->ipsec.sad_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700181 sa0 = pool_elt_at_index (im->sad, sa_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700183 if (PREDICT_FALSE (esp_seq_advance (sa0)))
184 {
185 clib_warning ("sequence number counter has cycled SPI %u",
186 sa0->spi);
Klement Sekera2e02ba02018-11-30 14:37:03 +0100187 vlib_node_increment_counter (vm, node->node_index,
188 ESP_ENCRYPT_ERROR_SEQ_CYCLED, 1);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700189 //TODO: rekey SA
190 o_bi0 = i_bi0;
Sergio Gonzalez Monroy73c01102016-09-06 14:06:06 +0100191 to_next[0] = o_bi0;
192 to_next += 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700193 goto trace;
194 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000196 sa0->total_data_size += i_b0->current_length;
197
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700198 /* grab free buffer */
199 last_empty_buffer = vec_len (empty_buffers) - 1;
200 o_bi0 = empty_buffers[last_empty_buffer];
201 o_b0 = vlib_get_buffer (vm, o_bi0);
202 o_b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;
203 o_b0->current_data = sizeof (ethernet_header_t);
Klement Sekera4b089f22018-04-17 18:04:57 +0200204 iuh0 = vlib_buffer_get_current (i_b0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700205 vlib_prefetch_buffer_with_index (vm,
206 empty_buffers[last_empty_buffer -
207 1], STORE);
208 _vec_len (empty_buffers) = last_empty_buffer;
209 to_next[0] = o_bi0;
210 to_next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700212 /* add old buffer to the recycle list */
213 vec_add1 (recycle, i_bi0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200215 if (is_ip6)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700216 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700217 ih6_0 = vlib_buffer_get_current (i_b0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700218 next_hdr_type = IP_PROTOCOL_IPV6;
219 oh6_0 = vlib_buffer_get_current (o_b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700221 oh6_0->ip6.ip_version_traffic_class_and_flow_label =
222 ih6_0->ip6.ip_version_traffic_class_and_flow_label;
223 oh6_0->ip6.protocol = IP_PROTOCOL_IPSEC_ESP;
Klement Sekera4b089f22018-04-17 18:04:57 +0200224 ip_udp_hdr_size = sizeof (ip6_header_t);
225 o_esp0 = vlib_buffer_get_current (o_b0) + ip_udp_hdr_size;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700226 oh6_0->ip6.hop_limit = 254;
227 oh6_0->ip6.src_address.as_u64[0] =
228 ih6_0->ip6.src_address.as_u64[0];
229 oh6_0->ip6.src_address.as_u64[1] =
230 ih6_0->ip6.src_address.as_u64[1];
231 oh6_0->ip6.dst_address.as_u64[0] =
232 ih6_0->ip6.dst_address.as_u64[0];
233 oh6_0->ip6.dst_address.as_u64[1] =
234 ih6_0->ip6.dst_address.as_u64[1];
Klement Sekera4b089f22018-04-17 18:04:57 +0200235 o_esp0->spi = clib_net_to_host_u32 (sa0->spi);
236 o_esp0->seq = clib_net_to_host_u32 (sa0->seq);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700237 ip_proto = ih6_0->ip6.protocol;
Matus Fabian694265d2016-08-10 01:55:36 -0700238
Sergio Gonzalez Monroy1b6f9022016-12-12 10:37:49 +0000239 next0 = ESP_ENCRYPT_NEXT_IP6_LOOKUP;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700240 }
241 else
242 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700243 next_hdr_type = IP_PROTOCOL_IP_IN_IP;
244 oh0 = vlib_buffer_get_current (o_b0);
Klement Sekera4b089f22018-04-17 18:04:57 +0200245 ouh0 = vlib_buffer_get_current (o_b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700247 oh0->ip4.ip_version_and_header_length = 0x45;
Klement Sekera4b089f22018-04-17 18:04:57 +0200248 oh0->ip4.tos = iuh0->ip4.tos;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700249 oh0->ip4.fragment_id = 0;
250 oh0->ip4.flags_and_fragment_offset = 0;
251 oh0->ip4.ttl = 254;
Klement Sekera4b089f22018-04-17 18:04:57 +0200252 if (sa0->udp_encap)
253 {
254 ouh0->udp.src_port =
255 clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
256 ouh0->udp.dst_port =
257 clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
258 ouh0->udp.checksum = 0;
259 ouh0->ip4.protocol = IP_PROTOCOL_UDP;
260 ip_udp_hdr_size =
261 sizeof (udp_header_t) + sizeof (ip4_header_t);
262 }
263 else
264 {
265 oh0->ip4.protocol = IP_PROTOCOL_IPSEC_ESP;
266 ip_udp_hdr_size = sizeof (ip4_header_t);
267 }
268 o_esp0 = vlib_buffer_get_current (o_b0) + ip_udp_hdr_size;
269 oh0->ip4.src_address.as_u32 = iuh0->ip4.src_address.as_u32;
270 oh0->ip4.dst_address.as_u32 = iuh0->ip4.dst_address.as_u32;
271 o_esp0->spi = clib_net_to_host_u32 (sa0->spi);
272 o_esp0->seq = clib_net_to_host_u32 (sa0->seq);
273 ip_proto = iuh0->ip4.protocol;
Matus Fabian694265d2016-08-10 01:55:36 -0700274
Sergio Gonzalez Monroy1b6f9022016-12-12 10:37:49 +0000275 next0 = ESP_ENCRYPT_NEXT_IP4_LOOKUP;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700276 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200278 if (PREDICT_TRUE (!is_ip6 && sa0->is_tunnel && !sa0->is_tunnel_ip6))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700279 {
280 oh0->ip4.src_address.as_u32 = sa0->tunnel_src_addr.ip4.as_u32;
281 oh0->ip4.dst_address.as_u32 = sa0->tunnel_dst_addr.ip4.as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
Neale Ranns8d7c5022019-02-06 01:41:05 -0800283 next0 = sa0->dpo[IPSEC_PROTOCOL_ESP].dpoi_next_node;
284 vnet_buffer (o_b0)->ip.adj_index[VLIB_TX] =
285 sa0->dpo[IPSEC_PROTOCOL_ESP].dpoi_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700286 }
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200287 else if (is_ip6 && sa0->is_tunnel && sa0->is_tunnel_ip6)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700288 {
289 oh6_0->ip6.src_address.as_u64[0] =
290 sa0->tunnel_src_addr.ip6.as_u64[0];
291 oh6_0->ip6.src_address.as_u64[1] =
292 sa0->tunnel_src_addr.ip6.as_u64[1];
293 oh6_0->ip6.dst_address.as_u64[0] =
294 sa0->tunnel_dst_addr.ip6.as_u64[0];
295 oh6_0->ip6.dst_address.as_u64[1] =
296 sa0->tunnel_dst_addr.ip6.as_u64[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
Neale Ranns8d7c5022019-02-06 01:41:05 -0800298 next0 = sa0->dpo[IPSEC_PROTOCOL_ESP].dpoi_next_node;
299 vnet_buffer (o_b0)->ip.adj_index[VLIB_TX] =
300 sa0->dpo[IPSEC_PROTOCOL_ESP].dpoi_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700301 }
302 else
303 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700304 next_hdr_type = ip_proto;
Matus Fabian694265d2016-08-10 01:55:36 -0700305 if (vnet_buffer (i_b0)->sw_if_index[VLIB_TX] != ~0)
306 {
307 transport_mode = 1;
308 ethernet_header_t *ieh0, *oeh0;
Matus Fabianfe9473f2016-09-21 05:13:01 -0700309 ieh0 =
310 (ethernet_header_t *) ((u8 *)
311 vlib_buffer_get_current (i_b0) -
312 sizeof (ethernet_header_t));
Matus Fabian694265d2016-08-10 01:55:36 -0700313 oeh0 = (ethernet_header_t *) o_b0->data;
Dave Barach178cf492018-11-13 16:34:13 -0500314 clib_memcpy_fast (oeh0, ieh0, sizeof (ethernet_header_t));
Matus Fabian694265d2016-08-10 01:55:36 -0700315 next0 = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Matus Fabian694265d2016-08-10 01:55:36 -0700316 vnet_buffer (o_b0)->sw_if_index[VLIB_TX] =
317 vnet_buffer (i_b0)->sw_if_index[VLIB_TX];
Matus Fabian694265d2016-08-10 01:55:36 -0700318 }
jackiechen1985240f69a2018-12-11 04:13:22 +0800319
320 if (is_ip6)
321 {
322 vlib_buffer_advance (i_b0, sizeof (ip6_header_t));
323 }
324 else
325 {
326 vlib_buffer_advance (i_b0, sizeof (ip4_header_t));
327 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700328 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700330 ASSERT (sa0->crypto_alg < IPSEC_CRYPTO_N_ALG);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700332 if (PREDICT_TRUE (sa0->crypto_alg != IPSEC_CRYPTO_ALG_NONE))
333 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800335 const int BLOCK_SIZE =
336 em->ipsec_proto_main_crypto_algs[sa0->crypto_alg].block_size;
337 const int IV_SIZE =
338 em->ipsec_proto_main_crypto_algs[sa0->crypto_alg].iv_size;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700339 int blocks = 1 + (i_b0->current_length + 1) / BLOCK_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700341 /* pad packet in input buffer */
342 u8 pad_bytes = BLOCK_SIZE * blocks - 2 - i_b0->current_length;
343 u8 i;
344 u8 *padding =
345 vlib_buffer_get_current (i_b0) + i_b0->current_length;
346 i_b0->current_length = BLOCK_SIZE * blocks;
347 for (i = 0; i < pad_bytes; ++i)
348 {
349 padding[i] = i + 1;
350 }
351 f0 = vlib_buffer_get_current (i_b0) + i_b0->current_length - 2;
352 f0->pad_length = pad_bytes;
353 f0->next_header = next_hdr_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354
Klement Sekera4b089f22018-04-17 18:04:57 +0200355 o_b0->current_length = ip_udp_hdr_size + sizeof (esp_header_t) +
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700356 BLOCK_SIZE * blocks + IV_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700358 vnet_buffer (o_b0)->sw_if_index[VLIB_RX] =
359 vnet_buffer (i_b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800361 u8 iv[em->
362 ipsec_proto_main_crypto_algs[sa0->crypto_alg].iv_size];
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700363 RAND_bytes (iv, sizeof (iv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364
Dave Barach178cf492018-11-13 16:34:13 -0500365 clib_memcpy_fast ((u8 *) vlib_buffer_get_current (o_b0) +
366 ip_udp_hdr_size + sizeof (esp_header_t), iv,
367 em->ipsec_proto_main_crypto_algs[sa0->
368 crypto_alg].iv_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Damjan Marion067cd622018-07-11 12:47:43 +0200370 esp_encrypt_cbc (vm, sa0->crypto_alg,
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800371 (u8 *) vlib_buffer_get_current (i_b0),
372 (u8 *) vlib_buffer_get_current (o_b0) +
Klement Sekera4b089f22018-04-17 18:04:57 +0200373 ip_udp_hdr_size + sizeof (esp_header_t) +
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800374 IV_SIZE, BLOCK_SIZE * blocks,
Neale Ranns8d7c5022019-02-06 01:41:05 -0800375 sa0->crypto_key.data, iv);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700376 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
Neale Ranns8d7c5022019-02-06 01:41:05 -0800378 o_b0->current_length +=
379 hmac_calc (sa0->integ_alg, sa0->integ_key.data,
380 sa0->integ_key.len, (u8 *) o_esp0,
381 o_b0->current_length - ip_udp_hdr_size,
382 vlib_buffer_get_current (o_b0) + o_b0->current_length,
383 sa0->use_esn, sa0->seq_hi);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
385
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200386 if (is_ip6)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700387 {
388 oh6_0->ip6.payload_length =
389 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, o_b0) -
390 sizeof (ip6_header_t));
391 }
392 else
393 {
394 oh0->ip4.length =
395 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, o_b0));
396 oh0->ip4.checksum = ip4_header_checksum (&oh0->ip4);
Klement Sekera4b089f22018-04-17 18:04:57 +0200397 if (sa0->udp_encap)
398 {
399 ouh0->udp.length =
Klement Sekera64526222018-06-15 12:44:16 +0200400 clib_host_to_net_u16 (clib_net_to_host_u16
401 (oh0->ip4.length) -
Klement Sekera4b089f22018-04-17 18:04:57 +0200402 ip4_header_bytes (&oh0->ip4));
403 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700404 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700406 if (transport_mode)
407 vlib_buffer_reset (o_b0);
Matus Fabianefc33302016-07-11 07:08:55 -0700408
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700409 trace:
410 if (PREDICT_FALSE (i_b0->flags & VLIB_BUFFER_IS_TRACED))
411 {
412 if (o_b0)
413 {
414 o_b0->flags |= VLIB_BUFFER_IS_TRACED;
415 o_b0->trace_index = i_b0->trace_index;
Damjan Marion3f54b182016-08-16 11:27:02 +0200416 esp_encrypt_trace_t *tr =
417 vlib_add_trace (vm, node, o_b0, sizeof (*tr));
Neale Ranns8d7c5022019-02-06 01:41:05 -0800418 tr->sa_index = sa_index0;
Damjan Marion3f54b182016-08-16 11:27:02 +0200419 tr->spi = sa0->spi;
420 tr->seq = sa0->seq - 1;
Klement Sekera4b089f22018-04-17 18:04:57 +0200421 tr->udp_encap = sa0->udp_encap;
Damjan Marion3f54b182016-08-16 11:27:02 +0200422 tr->crypto_alg = sa0->crypto_alg;
423 tr->integ_alg = sa0->integ_alg;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700424 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700425 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700427 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
428 to_next, n_left_to_next, o_bi0,
429 next0);
430 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
432 }
Klement Sekera2e02ba02018-11-30 14:37:03 +0100433 vlib_node_increment_counter (vm, node->node_index,
434 ESP_ENCRYPT_ERROR_RX_PKTS,
435 from_frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436
437free_buffers_and_exit:
Damjan Marion3f54b182016-08-16 11:27:02 +0200438 if (recycle)
439 vlib_buffer_free (vm, recycle, vec_len (recycle));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700440 vec_free (recycle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441 return from_frame->n_vectors;
442}
443
Klement Sekerab8f35442018-10-29 13:38:19 +0100444VLIB_NODE_FN (esp4_encrypt_node) (vlib_main_t * vm,
445 vlib_node_runtime_t * node,
446 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200447{
448 return esp_encrypt_inline (vm, node, from_frame, 0 /* is_ip6 */ );
449}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700451/* *INDENT-OFF* */
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200452VLIB_REGISTER_NODE (esp4_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200453 .name = "esp4-encrypt",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454 .vector_size = sizeof (u32),
455 .format_trace = format_esp_encrypt_trace,
456 .type = VLIB_NODE_TYPE_INTERNAL,
457
458 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
459 .error_strings = esp_encrypt_error_strings,
460
461 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
462 .next_nodes = {
463#define _(s,n) [ESP_ENCRYPT_NEXT_##s] = n,
464 foreach_esp_encrypt_next
465#undef _
466 },
467};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700468/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469
Klement Sekerab8f35442018-10-29 13:38:19 +0100470VLIB_NODE_FN (esp6_encrypt_node) (vlib_main_t * vm,
471 vlib_node_runtime_t * node,
472 vlib_frame_t * from_frame)
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200473{
474 return esp_encrypt_inline (vm, node, from_frame, 1 /* is_ip6 */ );
475}
476
477/* *INDENT-OFF* */
478VLIB_REGISTER_NODE (esp6_encrypt_node) = {
Klement Sekerabe5a5dd2018-10-09 16:05:48 +0200479 .name = "esp6-encrypt",
480 .vector_size = sizeof (u32),
481 .format_trace = format_esp_encrypt_trace,
482 .type = VLIB_NODE_TYPE_INTERNAL,
483
484 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
485 .error_strings = esp_encrypt_error_strings,
486
487 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
488 .next_nodes = {
489#define _(s,n) [ESP_ENCRYPT_NEXT_##s] = n,
490 foreach_esp_encrypt_next
491#undef _
492 },
493};
494/* *INDENT-ON* */
495
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700496/*
497 * fd.io coding-style-patch-verification: ON
498 *
499 * Local Variables:
500 * eval: (c-set-style "gnu")
501 * End:
502 */