“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 1 | /* |
| 2 | * ah_encrypt.c : IPSec AH 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> |
| 21 | |
| 22 | #include <vnet/ipsec/ipsec.h> |
| 23 | #include <vnet/ipsec/esp.h> |
| 24 | #include <vnet/ipsec/ah.h> |
| 25 | |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 26 | #define foreach_ah_encrypt_next \ |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 27 | _ (DROP, "error-drop") \ |
| 28 | _ (HANDOFF, "handoff") \ |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 29 | _ (INTERFACE_OUTPUT, "interface-output") |
| 30 | |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 31 | |
| 32 | #define _(v, s) AH_ENCRYPT_NEXT_##v, |
| 33 | typedef enum |
| 34 | { |
| 35 | foreach_ah_encrypt_next |
| 36 | #undef _ |
| 37 | AH_ENCRYPT_N_NEXT, |
| 38 | } ah_encrypt_next_t; |
| 39 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 40 | #define foreach_ah_encrypt_error \ |
| 41 | _(RX_PKTS, "AH pkts received") \ |
| 42 | _(CRYPTO_ENGINE_ERROR, "crypto engine error (packet dropped)") \ |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 43 | _(SEQ_CYCLED, "sequence number cycled") |
| 44 | |
| 45 | |
| 46 | typedef enum |
| 47 | { |
| 48 | #define _(sym,str) AH_ENCRYPT_ERROR_##sym, |
| 49 | foreach_ah_encrypt_error |
| 50 | #undef _ |
| 51 | AH_ENCRYPT_N_ERROR, |
| 52 | } ah_encrypt_error_t; |
| 53 | |
| 54 | static char *ah_encrypt_error_strings[] = { |
| 55 | #define _(sym,string) string, |
| 56 | foreach_ah_encrypt_error |
| 57 | #undef _ |
| 58 | }; |
| 59 | |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 60 | typedef struct |
| 61 | { |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 62 | u32 sa_index; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 63 | u32 spi; |
Neale Ranns | 3833ffd | 2019-03-21 14:34:09 +0000 | [diff] [blame] | 64 | u32 seq_lo; |
| 65 | u32 seq_hi; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 66 | ipsec_integ_alg_t integ_alg; |
| 67 | } ah_encrypt_trace_t; |
| 68 | |
| 69 | /* packet trace format function */ |
| 70 | static u8 * |
| 71 | format_ah_encrypt_trace (u8 * s, va_list * args) |
| 72 | { |
| 73 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 74 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 75 | ah_encrypt_trace_t *t = va_arg (*args, ah_encrypt_trace_t *); |
| 76 | |
Guillaume Solignac | 8f818cc | 2019-05-15 12:02:33 +0200 | [diff] [blame] | 77 | s = format (s, "ah: sa-index %d spi %u (0x%08x) seq %u:%u integrity %U", |
| 78 | t->sa_index, t->spi, t->spi, t->seq_hi, t->seq_lo, |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 79 | format_ipsec_integ_alg, t->integ_alg); |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 80 | return s; |
| 81 | } |
| 82 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 83 | static_always_inline void |
| 84 | ah_process_ops (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 85 | vnet_crypto_op_t * ops, vlib_buffer_t * b[], u16 * nexts) |
| 86 | { |
| 87 | u32 n_fail, n_ops = vec_len (ops); |
| 88 | vnet_crypto_op_t *op = ops; |
| 89 | |
| 90 | if (n_ops == 0) |
| 91 | return; |
| 92 | |
| 93 | n_fail = n_ops - vnet_crypto_process_ops (vm, op, n_ops); |
| 94 | |
| 95 | while (n_fail) |
| 96 | { |
| 97 | ASSERT (op - ops < n_ops); |
| 98 | |
| 99 | if (op->status != VNET_CRYPTO_OP_STATUS_COMPLETED) |
| 100 | { |
| 101 | u32 bi = op->user_data; |
| 102 | b[bi]->error = node->errors[AH_ENCRYPT_ERROR_CRYPTO_ENGINE_ERROR]; |
| 103 | nexts[bi] = AH_ENCRYPT_NEXT_DROP; |
| 104 | n_fail--; |
| 105 | } |
| 106 | op++; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | typedef struct |
| 111 | { |
| 112 | union |
| 113 | { |
| 114 | struct |
| 115 | { |
| 116 | u8 hop_limit; |
| 117 | u32 ip_version_traffic_class_and_flow_label; |
| 118 | }; |
| 119 | |
| 120 | struct |
| 121 | { |
| 122 | u8 ttl; |
| 123 | u8 tos; |
| 124 | }; |
| 125 | }; |
| 126 | i16 current_data; |
| 127 | u8 skip; |
| 128 | u32 sa_index; |
| 129 | } ah_encrypt_packet_data_t; |
| 130 | |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 131 | always_inline uword |
| 132 | ah_encrypt_inline (vlib_main_t * vm, |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 133 | vlib_node_runtime_t * node, vlib_frame_t * frame, |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 134 | int is_ip6) |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 135 | { |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 136 | u32 n_left, *from, thread_index; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 137 | int icv_size = 0; |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 138 | from = vlib_frame_vector_args (frame); |
| 139 | n_left = frame->n_vectors; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 140 | ipsec_main_t *im = &ipsec_main; |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 141 | ah_encrypt_packet_data_t pkt_data[VLIB_FRAME_SIZE], *pd = pkt_data; |
Neale Ranns | eba31ec | 2019-02-17 18:04:27 +0000 | [diff] [blame] | 142 | thread_index = vm->thread_index; |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 143 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs; |
| 144 | u16 nexts[VLIB_FRAME_SIZE], *next = nexts; |
| 145 | ipsec_per_thread_data_t *ptd = vec_elt_at_index (im->ptd, thread_index); |
| 146 | ipsec_sa_t *sa0 = 0; |
| 147 | ip4_and_ah_header_t *ih0, *oh0 = 0; |
| 148 | ip6_and_ah_header_t *ih6_0, *oh6_0 = 0; |
| 149 | u32 current_sa_index = ~0, current_sa_bytes = 0, current_sa_pkts = 0; |
| 150 | const static ip4_header_t ip4_hdr_template = { |
| 151 | .ip_version_and_header_length = 0x45, |
| 152 | .protocol = IP_PROTOCOL_IPSEC_AH, |
| 153 | }; |
| 154 | const static ip6_header_t ip6_hdr_template = { |
| 155 | .ip_version_traffic_class_and_flow_label = 0x60, |
| 156 | .protocol = IP_PROTOCOL_IPSEC_AH, |
| 157 | }; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 158 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 159 | clib_memset (pkt_data, 0, VLIB_FRAME_SIZE * sizeof (pkt_data[0])); |
| 160 | vlib_get_buffers (vm, from, b, n_left); |
| 161 | vec_reset_length (ptd->crypto_ops); |
| 162 | vec_reset_length (ptd->integ_ops); |
| 163 | |
| 164 | while (n_left > 0) |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 165 | { |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 166 | u8 ip_hdr_size; |
| 167 | u8 next_hdr_type; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 168 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 169 | if (vnet_buffer (b[0])->ipsec.sad_index != current_sa_index) |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 170 | { |
Filip Tehlar | 98d6ee7 | 2019-06-03 23:36:10 +0000 | [diff] [blame] | 171 | if (current_sa_index != ~0) |
| 172 | vlib_increment_combined_counter (&ipsec_sa_counters, thread_index, |
| 173 | current_sa_index, |
| 174 | current_sa_pkts, |
| 175 | current_sa_bytes); |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 176 | current_sa_index = vnet_buffer (b[0])->ipsec.sad_index; |
| 177 | sa0 = pool_elt_at_index (im->sad, current_sa_index); |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 178 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 179 | current_sa_bytes = current_sa_pkts = 0; |
| 180 | } |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 181 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 182 | pd->sa_index = current_sa_index; |
| 183 | next[0] = AH_ENCRYPT_NEXT_DROP; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 184 | |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 185 | if (PREDICT_FALSE (~0 == sa0->encrypt_thread_index)) |
| 186 | { |
| 187 | /* this is the first packet to use this SA, claim the SA |
| 188 | * for this thread. this could happen simultaneously on |
| 189 | * another thread */ |
| 190 | clib_atomic_cmp_and_swap (&sa0->encrypt_thread_index, ~0, |
| 191 | ipsec_sa_assign_thread (thread_index)); |
| 192 | } |
| 193 | |
| 194 | if (PREDICT_TRUE (thread_index != sa0->encrypt_thread_index)) |
| 195 | { |
| 196 | next[0] = AH_ENCRYPT_NEXT_HANDOFF; |
| 197 | goto next; |
| 198 | } |
| 199 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 200 | if (PREDICT_FALSE (esp_seq_advance (sa0))) |
| 201 | { |
| 202 | b[0]->error = node->errors[AH_ENCRYPT_ERROR_SEQ_CYCLED]; |
| 203 | pd->skip = 1; |
| 204 | goto next; |
| 205 | } |
| 206 | |
| 207 | current_sa_pkts += 1; |
| 208 | current_sa_bytes += b[0]->current_length; |
| 209 | |
| 210 | ssize_t adv; |
| 211 | ih0 = vlib_buffer_get_current (b[0]); |
| 212 | pd->ttl = ih0->ip4.ttl; |
| 213 | pd->tos = ih0->ip4.tos; |
| 214 | |
| 215 | if (PREDICT_TRUE (ipsec_sa_is_set_IS_TUNNEL (sa0))) |
| 216 | { |
| 217 | if (is_ip6) |
| 218 | adv = -sizeof (ip6_and_ah_header_t); |
| 219 | else |
| 220 | adv = -sizeof (ip4_and_ah_header_t); |
| 221 | } |
| 222 | else |
| 223 | { |
| 224 | adv = -sizeof (ah_header_t); |
| 225 | } |
| 226 | |
| 227 | icv_size = sa0->integ_icv_size; |
| 228 | const u8 padding_len = ah_calc_icv_padding_len (icv_size, is_ip6); |
| 229 | adv -= padding_len; |
| 230 | /* transport mode save the eth header before it is overwritten */ |
| 231 | if (PREDICT_FALSE (!ipsec_sa_is_set_IS_TUNNEL (sa0))) |
| 232 | { |
Klement Sekera | 4515545 | 2019-06-19 11:26:34 +0000 | [diff] [blame] | 233 | const u32 l2_len = vnet_buffer (b[0])->ip.save_rewrite_length; |
| 234 | u8 *l2_hdr_in = (u8 *) vlib_buffer_get_current (b[0]) - l2_len; |
| 235 | |
| 236 | u8 *l2_hdr_out = l2_hdr_in + adv - icv_size; |
| 237 | |
| 238 | clib_memcpy_le32 (l2_hdr_out, l2_hdr_in, l2_len); |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | vlib_buffer_advance (b[0], adv - icv_size); |
| 242 | |
| 243 | if (is_ip6) |
| 244 | { |
| 245 | ih6_0 = (ip6_and_ah_header_t *) ih0; |
| 246 | ip_hdr_size = sizeof (ip6_header_t); |
| 247 | oh6_0 = vlib_buffer_get_current (b[0]); |
| 248 | pd->current_data = b[0]->current_data; |
| 249 | |
| 250 | pd->hop_limit = ih6_0->ip6.hop_limit; |
| 251 | pd->ip_version_traffic_class_and_flow_label = |
| 252 | ih6_0->ip6.ip_version_traffic_class_and_flow_label; |
| 253 | if (PREDICT_TRUE (ipsec_sa_is_set_IS_TUNNEL (sa0))) |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 254 | { |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 255 | next_hdr_type = IP_PROTOCOL_IPV6; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 256 | } |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 257 | else |
| 258 | { |
| 259 | next_hdr_type = ih6_0->ip6.protocol; |
| 260 | memmove (oh6_0, ih6_0, sizeof (ip6_header_t)); |
| 261 | } |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 262 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 263 | clib_memcpy_fast (&oh6_0->ip6, &ip6_hdr_template, 8); |
| 264 | oh6_0->ah.reserved = 0; |
| 265 | oh6_0->ah.nexthdr = next_hdr_type; |
| 266 | oh6_0->ah.spi = clib_net_to_host_u32 (sa0->spi); |
| 267 | oh6_0->ah.seq_no = clib_net_to_host_u32 (sa0->seq); |
| 268 | oh6_0->ip6.payload_length = |
| 269 | clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b[0]) - |
| 270 | sizeof (ip6_header_t)); |
| 271 | oh6_0->ah.hdrlen = |
| 272 | (sizeof (ah_header_t) + icv_size + padding_len) / 4 - 2; |
| 273 | } |
| 274 | else |
| 275 | { |
| 276 | ip_hdr_size = sizeof (ip4_header_t); |
| 277 | oh0 = vlib_buffer_get_current (b[0]); |
| 278 | clib_memset (oh0, 0, sizeof (ip4_and_ah_header_t)); |
| 279 | pd->current_data = b[0]->current_data; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 280 | |
Damjan Marion | d709cbc | 2019-03-26 13:16:42 +0100 | [diff] [blame] | 281 | if (PREDICT_TRUE (ipsec_sa_is_set_IS_TUNNEL (sa0))) |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 282 | { |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 283 | next_hdr_type = IP_PROTOCOL_IP_IN_IP; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 284 | } |
| 285 | else |
| 286 | { |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 287 | next_hdr_type = ih0->ip4.protocol; |
| 288 | memmove (oh0, ih0, sizeof (ip4_header_t)); |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 289 | } |
| 290 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 291 | clib_memcpy_fast (&oh0->ip4, &ip4_hdr_template, |
| 292 | sizeof (ip4_header_t) - |
| 293 | sizeof (ip4_address_pair_t)); |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 294 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 295 | oh0->ip4.length = |
| 296 | clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b[0])); |
| 297 | oh0->ah.spi = clib_net_to_host_u32 (sa0->spi); |
| 298 | oh0->ah.seq_no = clib_net_to_host_u32 (sa0->seq); |
| 299 | oh0->ah.nexthdr = next_hdr_type; |
| 300 | oh0->ah.hdrlen = |
| 301 | (sizeof (ah_header_t) + icv_size + padding_len) / 4 - 2; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 302 | } |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 303 | |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 304 | if (PREDICT_TRUE (!is_ip6 && ipsec_sa_is_set_IS_TUNNEL (sa0) && |
| 305 | !ipsec_sa_is_set_IS_TUNNEL_V6 (sa0))) |
| 306 | { |
| 307 | clib_memcpy_fast (&oh0->ip4.address_pair, |
| 308 | &sa0->ip4_hdr.address_pair, |
Neale Ranns | f3a6622 | 2020-01-02 05:04:00 +0000 | [diff] [blame] | 309 | sizeof (ip4_address_pair_t)); |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 310 | |
Neale Ranns | 72f2a3a | 2019-06-17 15:43:38 +0000 | [diff] [blame] | 311 | next[0] = sa0->dpo.dpoi_next_node; |
| 312 | vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = sa0->dpo.dpoi_index; |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 313 | } |
| 314 | else if (is_ip6 && ipsec_sa_is_set_IS_TUNNEL (sa0) && |
| 315 | ipsec_sa_is_set_IS_TUNNEL_V6 (sa0)) |
| 316 | { |
| 317 | clib_memcpy_fast (&oh6_0->ip6.src_address, |
| 318 | &sa0->ip6_hdr.src_address, |
| 319 | sizeof (ip6_address_t) * 2); |
Neale Ranns | 72f2a3a | 2019-06-17 15:43:38 +0000 | [diff] [blame] | 320 | next[0] = sa0->dpo.dpoi_next_node; |
| 321 | vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = sa0->dpo.dpoi_index; |
Filip Tehlar | 1197449 | 2019-04-17 07:16:39 +0000 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | if (PREDICT_TRUE (sa0->integ_op_id)) |
| 325 | { |
| 326 | vnet_crypto_op_t *op; |
| 327 | vec_add2_aligned (ptd->integ_ops, op, 1, CLIB_CACHE_LINE_BYTES); |
| 328 | vnet_crypto_op_init (op, sa0->integ_op_id); |
| 329 | op->src = vlib_buffer_get_current (b[0]); |
| 330 | op->len = b[0]->current_length; |
| 331 | op->digest = vlib_buffer_get_current (b[0]) + ip_hdr_size + |
| 332 | sizeof (ah_header_t); |
| 333 | clib_memset (op->digest, 0, icv_size); |
| 334 | op->digest_len = icv_size; |
| 335 | op->key_index = sa0->integ_key_index; |
| 336 | op->user_data = b - bufs; |
| 337 | if (ipsec_sa_is_set_USE_ESN (sa0)) |
| 338 | { |
| 339 | u32 seq_hi = clib_host_to_net_u32 (sa0->seq_hi); |
| 340 | |
| 341 | op->len += sizeof (seq_hi); |
| 342 | clib_memcpy (op->src + b[0]->current_length, &seq_hi, |
| 343 | sizeof (seq_hi)); |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | if (!ipsec_sa_is_set_IS_TUNNEL (sa0)) |
| 348 | { |
| 349 | next[0] = AH_ENCRYPT_NEXT_INTERFACE_OUTPUT; |
| 350 | vlib_buffer_advance (b[0], -sizeof (ethernet_header_t)); |
| 351 | } |
| 352 | |
| 353 | next: |
| 354 | n_left -= 1; |
| 355 | next += 1; |
| 356 | pd += 1; |
| 357 | b += 1; |
| 358 | } |
| 359 | |
| 360 | n_left = frame->n_vectors; |
| 361 | next = nexts; |
| 362 | pd = pkt_data; |
| 363 | b = bufs; |
| 364 | |
| 365 | vlib_node_increment_counter (vm, node->node_index, |
| 366 | AH_ENCRYPT_ERROR_RX_PKTS, n_left); |
| 367 | vlib_increment_combined_counter (&ipsec_sa_counters, thread_index, |
| 368 | current_sa_index, current_sa_pkts, |
| 369 | current_sa_bytes); |
| 370 | |
| 371 | ah_process_ops (vm, node, ptd->integ_ops, bufs, nexts); |
| 372 | |
| 373 | while (n_left) |
| 374 | { |
| 375 | if (pd->skip) |
| 376 | goto trace; |
| 377 | |
| 378 | if (is_ip6) |
| 379 | { |
| 380 | oh6_0 = (ip6_and_ah_header_t *) (b[0]->data + pd->current_data); |
| 381 | oh6_0->ip6.hop_limit = pd->hop_limit; |
| 382 | oh6_0->ip6.ip_version_traffic_class_and_flow_label = |
| 383 | pd->ip_version_traffic_class_and_flow_label; |
| 384 | } |
| 385 | else |
| 386 | { |
| 387 | oh0 = (ip4_and_ah_header_t *) (b[0]->data + pd->current_data); |
| 388 | oh0->ip4.ttl = pd->ttl; |
| 389 | oh0->ip4.tos = pd->tos; |
| 390 | oh0->ip4.checksum = ip4_header_checksum (&oh0->ip4); |
| 391 | } |
| 392 | |
| 393 | trace: |
| 394 | if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED)) |
| 395 | { |
| 396 | sa0 = vec_elt_at_index (im->sad, pd->sa_index); |
| 397 | ah_encrypt_trace_t *tr = |
| 398 | vlib_add_trace (vm, node, b[0], sizeof (*tr)); |
| 399 | tr->spi = sa0->spi; |
| 400 | tr->seq_lo = sa0->seq; |
| 401 | tr->seq_hi = sa0->seq_hi; |
| 402 | tr->integ_alg = sa0->integ_alg; |
| 403 | tr->sa_index = pd->sa_index; |
| 404 | } |
| 405 | |
| 406 | n_left -= 1; |
| 407 | next += 1; |
| 408 | pd += 1; |
| 409 | b += 1; |
| 410 | } |
| 411 | |
| 412 | n_left = frame->n_vectors; |
| 413 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, n_left); |
| 414 | |
| 415 | return n_left; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 416 | } |
| 417 | |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 418 | VLIB_NODE_FN (ah4_encrypt_node) (vlib_main_t * vm, |
| 419 | vlib_node_runtime_t * node, |
| 420 | vlib_frame_t * from_frame) |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 421 | { |
| 422 | return ah_encrypt_inline (vm, node, from_frame, 0 /* is_ip6 */ ); |
| 423 | } |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 424 | |
| 425 | /* *INDENT-OFF* */ |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 426 | VLIB_REGISTER_NODE (ah4_encrypt_node) = { |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 427 | .name = "ah4-encrypt", |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 428 | .vector_size = sizeof (u32), |
| 429 | .format_trace = format_ah_encrypt_trace, |
| 430 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 431 | |
| 432 | .n_errors = ARRAY_LEN(ah_encrypt_error_strings), |
| 433 | .error_strings = ah_encrypt_error_strings, |
| 434 | |
| 435 | .n_next_nodes = AH_ENCRYPT_N_NEXT, |
| 436 | .next_nodes = { |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 437 | [AH_ENCRYPT_NEXT_DROP] = "ip4-drop", |
| 438 | [AH_ENCRYPT_NEXT_HANDOFF] = "ah4-encrypt-handoff", |
| 439 | [AH_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output", |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 440 | }, |
| 441 | }; |
| 442 | /* *INDENT-ON* */ |
| 443 | |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 444 | VLIB_NODE_FN (ah6_encrypt_node) (vlib_main_t * vm, |
| 445 | vlib_node_runtime_t * node, |
| 446 | vlib_frame_t * from_frame) |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 447 | { |
| 448 | return ah_encrypt_inline (vm, node, from_frame, 1 /* is_ip6 */ ); |
| 449 | } |
| 450 | |
| 451 | /* *INDENT-OFF* */ |
| 452 | VLIB_REGISTER_NODE (ah6_encrypt_node) = { |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 453 | .name = "ah6-encrypt", |
| 454 | .vector_size = sizeof (u32), |
| 455 | .format_trace = format_ah_encrypt_trace, |
| 456 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 457 | |
| 458 | .n_errors = ARRAY_LEN(ah_encrypt_error_strings), |
| 459 | .error_strings = ah_encrypt_error_strings, |
| 460 | |
| 461 | .n_next_nodes = AH_ENCRYPT_N_NEXT, |
| 462 | .next_nodes = { |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 463 | [AH_ENCRYPT_NEXT_DROP] = "ip6-drop", |
| 464 | [AH_ENCRYPT_NEXT_HANDOFF] = "ah6-encrypt-handoff", |
| 465 | [AH_ENCRYPT_NEXT_INTERFACE_OUTPUT] = "interface-output", |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 466 | }, |
| 467 | }; |
| 468 | /* *INDENT-ON* */ |
| 469 | |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 470 | /* |
| 471 | * fd.io coding-style-patch-verification: ON |
| 472 | * |
| 473 | * Local Variables: |
| 474 | * eval: (c-set-style "gnu") |
| 475 | * End: |
| 476 | */ |