blob: 0ce5e54aaeb2ef2fd1f8c5e42b2fa69246ae336c [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
63vlib_node_registration_t esp_encrypt_node;
64
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070065typedef struct
66{
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 u32 spi;
68 u32 seq;
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
Klement Sekera4b089f22018-04-17 18:04:57 +020082 s = format (s, "esp: spi %u seq %u crypto %U integrity %U%s",
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070083 t->spi, t->seq,
84 format_ipsec_crypto_alg, t->crypto_alg,
Klement Sekera4b089f22018-04-17 18:04:57 +020085 format_ipsec_integ_alg, t->integ_alg,
86 t->udp_encap ? " udp-encap-enabled" : "");
Ed Warnickecb9cada2015-12-08 15:45:58 -070087 return s;
88}
89
90always_inline void
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -080091esp_encrypt_cbc (ipsec_crypto_alg_t alg,
92 u8 * in, u8 * out, size_t in_len, u8 * key, u8 * iv)
Ed Warnickecb9cada2015-12-08 15:45:58 -070093{
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080094 ipsec_proto_main_t *em = &ipsec_proto_main;
Damjan Marion586afd72017-04-05 19:18:20 +020095 u32 thread_index = vlib_get_thread_index ();
Marco Varlesef616d102017-11-09 15:16:20 +010096#if OPENSSL_VERSION_NUMBER >= 0x10100000L
97 EVP_CIPHER_CTX *ctx = em->per_thread_data[thread_index].encrypt_ctx;
98#else
Damjan Marion586afd72017-04-05 19:18:20 +020099 EVP_CIPHER_CTX *ctx = &(em->per_thread_data[thread_index].encrypt_ctx);
Marco Varlesef616d102017-11-09 15:16:20 +0100100#endif
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700101 const EVP_CIPHER *cipher = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 int out_len;
103
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700104 ASSERT (alg < IPSEC_CRYPTO_N_ALG);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800106 if (PREDICT_FALSE
107 (em->ipsec_proto_main_crypto_algs[alg].type == IPSEC_CRYPTO_ALG_NONE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 return;
109
Damjan Marion586afd72017-04-05 19:18:20 +0200110 if (PREDICT_FALSE
111 (alg != em->per_thread_data[thread_index].last_encrypt_alg))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700112 {
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800113 cipher = em->ipsec_proto_main_crypto_algs[alg].type;
Damjan Marion586afd72017-04-05 19:18:20 +0200114 em->per_thread_data[thread_index].last_encrypt_alg = alg;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700115 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700117 EVP_EncryptInit_ex (ctx, cipher, NULL, key, iv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700119 EVP_EncryptUpdate (ctx, out, &out_len, in, in_len);
120 EVP_EncryptFinal_ex (ctx, out + out_len, &out_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121}
122
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123static uword
124esp_encrypt_node_fn (vlib_main_t * vm,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700125 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
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 Marion586afd72017-04-05 19:18:20 +0200133 u32 thread_index = vlib_get_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 {
141 vlib_node_increment_counter (vm, esp_encrypt_node.index,
142 ESP_ENCRYPT_ERROR_NO_BUFFER, n_left_from);
143 clib_warning ("no enough empty buffers. discarding frame");
144 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;
167 u8 is_ipv6;
Klement Sekera4b089f22018-04-17 18:04:57 +0200168 u8 ip_udp_hdr_size;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700169 u8 next_hdr_type;
170 u32 ip_proto = 0;
171 u8 transport_mode = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700173 i_bi0 = from[0];
174 from += 1;
175 n_left_from -= 1;
176 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700178 next0 = ESP_ENCRYPT_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700180 i_b0 = vlib_get_buffer (vm, i_bi0);
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100181 sa_index0 = vnet_buffer (i_b0)->ipsec.sad_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700182 sa0 = pool_elt_at_index (im->sad, sa_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700184 if (PREDICT_FALSE (esp_seq_advance (sa0)))
185 {
186 clib_warning ("sequence number counter has cycled SPI %u",
187 sa0->spi);
188 vlib_node_increment_counter (vm, esp_encrypt_node.index,
189 ESP_ENCRYPT_ERROR_SEQ_CYCLED, 1);
190 //TODO: rekey SA
191 o_bi0 = i_bi0;
Sergio Gonzalez Monroy73c01102016-09-06 14:06:06 +0100192 to_next[0] = o_bi0;
193 to_next += 1;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700194 goto trace;
195 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000197 sa0->total_data_size += i_b0->current_length;
198
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700199 /* grab free buffer */
200 last_empty_buffer = vec_len (empty_buffers) - 1;
201 o_bi0 = empty_buffers[last_empty_buffer];
202 o_b0 = vlib_get_buffer (vm, o_bi0);
203 o_b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;
204 o_b0->current_data = sizeof (ethernet_header_t);
Klement Sekera4b089f22018-04-17 18:04:57 +0200205 iuh0 = vlib_buffer_get_current (i_b0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700206 vlib_prefetch_buffer_with_index (vm,
207 empty_buffers[last_empty_buffer -
208 1], STORE);
209 _vec_len (empty_buffers) = last_empty_buffer;
210 to_next[0] = o_bi0;
211 to_next += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700213 /* add old buffer to the recycle list */
214 vec_add1 (recycle, i_bi0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700216 /* is ipv6 */
217 if (PREDICT_FALSE
Klement Sekera4b089f22018-04-17 18:04:57 +0200218 ((iuh0->ip4.ip_version_and_header_length & 0xF0) == 0x60))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700219 {
220 is_ipv6 = 1;
221 ih6_0 = vlib_buffer_get_current (i_b0);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700222 next_hdr_type = IP_PROTOCOL_IPV6;
223 oh6_0 = vlib_buffer_get_current (o_b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700225 oh6_0->ip6.ip_version_traffic_class_and_flow_label =
226 ih6_0->ip6.ip_version_traffic_class_and_flow_label;
227 oh6_0->ip6.protocol = IP_PROTOCOL_IPSEC_ESP;
Klement Sekera4b089f22018-04-17 18:04:57 +0200228 ip_udp_hdr_size = sizeof (ip6_header_t);
229 o_esp0 = vlib_buffer_get_current (o_b0) + ip_udp_hdr_size;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700230 oh6_0->ip6.hop_limit = 254;
231 oh6_0->ip6.src_address.as_u64[0] =
232 ih6_0->ip6.src_address.as_u64[0];
233 oh6_0->ip6.src_address.as_u64[1] =
234 ih6_0->ip6.src_address.as_u64[1];
235 oh6_0->ip6.dst_address.as_u64[0] =
236 ih6_0->ip6.dst_address.as_u64[0];
237 oh6_0->ip6.dst_address.as_u64[1] =
238 ih6_0->ip6.dst_address.as_u64[1];
Klement Sekera4b089f22018-04-17 18:04:57 +0200239 o_esp0->spi = clib_net_to_host_u32 (sa0->spi);
240 o_esp0->seq = clib_net_to_host_u32 (sa0->seq);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700241 ip_proto = ih6_0->ip6.protocol;
Matus Fabian694265d2016-08-10 01:55:36 -0700242
Sergio Gonzalez Monroy1b6f9022016-12-12 10:37:49 +0000243 next0 = ESP_ENCRYPT_NEXT_IP6_LOOKUP;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700244 }
245 else
246 {
247 is_ipv6 = 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700248 next_hdr_type = IP_PROTOCOL_IP_IN_IP;
249 oh0 = vlib_buffer_get_current (o_b0);
Klement Sekera4b089f22018-04-17 18:04:57 +0200250 ouh0 = vlib_buffer_get_current (o_b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700252 oh0->ip4.ip_version_and_header_length = 0x45;
Klement Sekera4b089f22018-04-17 18:04:57 +0200253 oh0->ip4.tos = iuh0->ip4.tos;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700254 oh0->ip4.fragment_id = 0;
255 oh0->ip4.flags_and_fragment_offset = 0;
256 oh0->ip4.ttl = 254;
Klement Sekera4b089f22018-04-17 18:04:57 +0200257 if (sa0->udp_encap)
258 {
259 ouh0->udp.src_port =
260 clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
261 ouh0->udp.dst_port =
262 clib_host_to_net_u16 (UDP_DST_PORT_ipsec);
263 ouh0->udp.checksum = 0;
264 ouh0->ip4.protocol = IP_PROTOCOL_UDP;
265 ip_udp_hdr_size =
266 sizeof (udp_header_t) + sizeof (ip4_header_t);
267 }
268 else
269 {
270 oh0->ip4.protocol = IP_PROTOCOL_IPSEC_ESP;
271 ip_udp_hdr_size = sizeof (ip4_header_t);
272 }
273 o_esp0 = vlib_buffer_get_current (o_b0) + ip_udp_hdr_size;
274 oh0->ip4.src_address.as_u32 = iuh0->ip4.src_address.as_u32;
275 oh0->ip4.dst_address.as_u32 = iuh0->ip4.dst_address.as_u32;
276 o_esp0->spi = clib_net_to_host_u32 (sa0->spi);
277 o_esp0->seq = clib_net_to_host_u32 (sa0->seq);
278 ip_proto = iuh0->ip4.protocol;
Matus Fabian694265d2016-08-10 01:55:36 -0700279
Sergio Gonzalez Monroy1b6f9022016-12-12 10:37:49 +0000280 next0 = ESP_ENCRYPT_NEXT_IP4_LOOKUP;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700281 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
Damjan Marion3f54b182016-08-16 11:27:02 +0200283 if (PREDICT_TRUE
284 (!is_ipv6 && sa0->is_tunnel && !sa0->is_tunnel_ip6))
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700285 {
286 oh0->ip4.src_address.as_u32 = sa0->tunnel_src_addr.ip4.as_u32;
287 oh0->ip4.dst_address.as_u32 = sa0->tunnel_dst_addr.ip4.as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700289 vnet_buffer (o_b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
290 }
Damjan Marion3f54b182016-08-16 11:27:02 +0200291 else if (is_ipv6 && sa0->is_tunnel && sa0->is_tunnel_ip6)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700292 {
293 oh6_0->ip6.src_address.as_u64[0] =
294 sa0->tunnel_src_addr.ip6.as_u64[0];
295 oh6_0->ip6.src_address.as_u64[1] =
296 sa0->tunnel_src_addr.ip6.as_u64[1];
297 oh6_0->ip6.dst_address.as_u64[0] =
298 sa0->tunnel_dst_addr.ip6.as_u64[0];
299 oh6_0->ip6.dst_address.as_u64[1] =
300 sa0->tunnel_dst_addr.ip6.as_u64[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700302 vnet_buffer (o_b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
303 }
304 else
305 {
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700306 next_hdr_type = ip_proto;
Matus Fabian694265d2016-08-10 01:55:36 -0700307 if (vnet_buffer (i_b0)->sw_if_index[VLIB_TX] != ~0)
308 {
309 transport_mode = 1;
310 ethernet_header_t *ieh0, *oeh0;
Matus Fabianfe9473f2016-09-21 05:13:01 -0700311 ieh0 =
312 (ethernet_header_t *) ((u8 *)
313 vlib_buffer_get_current (i_b0) -
314 sizeof (ethernet_header_t));
Matus Fabian694265d2016-08-10 01:55:36 -0700315 oeh0 = (ethernet_header_t *) o_b0->data;
316 clib_memcpy (oeh0, ieh0, sizeof (ethernet_header_t));
317 next0 = ESP_ENCRYPT_NEXT_INTERFACE_OUTPUT;
Matus Fabian694265d2016-08-10 01:55:36 -0700318 vnet_buffer (o_b0)->sw_if_index[VLIB_TX] =
319 vnet_buffer (i_b0)->sw_if_index[VLIB_TX];
Matus Fabian694265d2016-08-10 01:55:36 -0700320 }
Klement Sekera4b089f22018-04-17 18:04:57 +0200321 vlib_buffer_advance (i_b0, ip_udp_hdr_size);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700322 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700324 ASSERT (sa0->crypto_alg < IPSEC_CRYPTO_N_ALG);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700326 if (PREDICT_TRUE (sa0->crypto_alg != IPSEC_CRYPTO_ALG_NONE))
327 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800329 const int BLOCK_SIZE =
330 em->ipsec_proto_main_crypto_algs[sa0->crypto_alg].block_size;
331 const int IV_SIZE =
332 em->ipsec_proto_main_crypto_algs[sa0->crypto_alg].iv_size;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700333 int blocks = 1 + (i_b0->current_length + 1) / BLOCK_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700335 /* pad packet in input buffer */
336 u8 pad_bytes = BLOCK_SIZE * blocks - 2 - i_b0->current_length;
337 u8 i;
338 u8 *padding =
339 vlib_buffer_get_current (i_b0) + i_b0->current_length;
340 i_b0->current_length = BLOCK_SIZE * blocks;
341 for (i = 0; i < pad_bytes; ++i)
342 {
343 padding[i] = i + 1;
344 }
345 f0 = vlib_buffer_get_current (i_b0) + i_b0->current_length - 2;
346 f0->pad_length = pad_bytes;
347 f0->next_header = next_hdr_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
Klement Sekera4b089f22018-04-17 18:04:57 +0200349 o_b0->current_length = ip_udp_hdr_size + sizeof (esp_header_t) +
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700350 BLOCK_SIZE * blocks + IV_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700352 vnet_buffer (o_b0)->sw_if_index[VLIB_RX] =
353 vnet_buffer (i_b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800355 u8 iv[em->
356 ipsec_proto_main_crypto_algs[sa0->crypto_alg].iv_size];
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700357 RAND_bytes (iv, sizeof (iv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700359 clib_memcpy ((u8 *) vlib_buffer_get_current (o_b0) +
Klement Sekera4b089f22018-04-17 18:04:57 +0200360 ip_udp_hdr_size + sizeof (esp_header_t), iv,
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800361 em->ipsec_proto_main_crypto_algs[sa0->
362 crypto_alg].iv_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800364 esp_encrypt_cbc (sa0->crypto_alg,
365 (u8 *) vlib_buffer_get_current (i_b0),
366 (u8 *) vlib_buffer_get_current (o_b0) +
Klement Sekera4b089f22018-04-17 18:04:57 +0200367 ip_udp_hdr_size + sizeof (esp_header_t) +
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -0800368 IV_SIZE, BLOCK_SIZE * blocks,
369 sa0->crypto_key, iv);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700370 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700372 o_b0->current_length += hmac_calc (sa0->integ_alg, sa0->integ_key,
373 sa0->integ_key_len,
374 (u8 *) o_esp0,
375 o_b0->current_length -
Klement Sekera4b089f22018-04-17 18:04:57 +0200376 ip_udp_hdr_size,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700377 vlib_buffer_get_current (o_b0) +
378 o_b0->current_length,
379 sa0->use_esn, sa0->seq_hi);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380
381
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700382 if (PREDICT_FALSE (is_ipv6))
383 {
384 oh6_0->ip6.payload_length =
385 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, o_b0) -
386 sizeof (ip6_header_t));
387 }
388 else
389 {
390 oh0->ip4.length =
391 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, o_b0));
392 oh0->ip4.checksum = ip4_header_checksum (&oh0->ip4);
Klement Sekera4b089f22018-04-17 18:04:57 +0200393 if (sa0->udp_encap)
394 {
395 ouh0->udp.length =
396 clib_host_to_net_u16 (oh0->ip4.length -
397 ip4_header_bytes (&oh0->ip4));
398 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700399 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700401 if (transport_mode)
402 vlib_buffer_reset (o_b0);
Matus Fabianefc33302016-07-11 07:08:55 -0700403
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700404 trace:
405 if (PREDICT_FALSE (i_b0->flags & VLIB_BUFFER_IS_TRACED))
406 {
407 if (o_b0)
408 {
409 o_b0->flags |= VLIB_BUFFER_IS_TRACED;
410 o_b0->trace_index = i_b0->trace_index;
Damjan Marion3f54b182016-08-16 11:27:02 +0200411 esp_encrypt_trace_t *tr =
412 vlib_add_trace (vm, node, o_b0, sizeof (*tr));
413 tr->spi = sa0->spi;
414 tr->seq = sa0->seq - 1;
Klement Sekera4b089f22018-04-17 18:04:57 +0200415 tr->udp_encap = sa0->udp_encap;
Damjan Marion3f54b182016-08-16 11:27:02 +0200416 tr->crypto_alg = sa0->crypto_alg;
417 tr->integ_alg = sa0->integ_alg;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700418 }
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700419 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700421 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
422 to_next, n_left_to_next, o_bi0,
423 next0);
424 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
426 }
427 vlib_node_increment_counter (vm, esp_encrypt_node.index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700428 ESP_ENCRYPT_ERROR_RX_PKTS,
429 from_frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430
431free_buffers_and_exit:
Damjan Marion3f54b182016-08-16 11:27:02 +0200432 if (recycle)
433 vlib_buffer_free (vm, recycle, vec_len (recycle));
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700434 vec_free (recycle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435 return from_frame->n_vectors;
436}
437
438
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700439/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440VLIB_REGISTER_NODE (esp_encrypt_node) = {
441 .function = esp_encrypt_node_fn,
442 .name = "esp-encrypt",
443 .vector_size = sizeof (u32),
444 .format_trace = format_esp_encrypt_trace,
445 .type = VLIB_NODE_TYPE_INTERNAL,
446
447 .n_errors = ARRAY_LEN(esp_encrypt_error_strings),
448 .error_strings = esp_encrypt_error_strings,
449
450 .n_next_nodes = ESP_ENCRYPT_N_NEXT,
451 .next_nodes = {
452#define _(s,n) [ESP_ENCRYPT_NEXT_##s] = n,
453 foreach_esp_encrypt_next
454#undef _
455 },
456};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700457/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458
Damjan Marion1c80e832016-05-11 23:07:18 +0200459VLIB_NODE_FUNCTION_MULTIARCH (esp_encrypt_node, esp_encrypt_node_fn)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700460/*
461 * fd.io coding-style-patch-verification: ON
462 *
463 * Local Variables:
464 * eval: (c-set-style "gnu")
465 * End:
466 */