Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ipsec_if_in.c : IPSec interface input 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 | |
| 25 | /* Statistics (not really errors) */ |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 26 | #define foreach_ipsec_if_input_error \ |
| 27 | _(RX, "good packets received") \ |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 28 | _(DISABLED, "ipsec packets received on disabled interface") \ |
| 29 | _(NO_TUNNEL, "no matching tunnel") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 30 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 31 | static char *ipsec_if_input_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 32 | #define _(sym,string) string, |
| 33 | foreach_ipsec_if_input_error |
| 34 | #undef _ |
| 35 | }; |
| 36 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 37 | typedef enum |
| 38 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 39 | #define _(sym,str) IPSEC_IF_INPUT_ERROR_##sym, |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 40 | foreach_ipsec_if_input_error |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 41 | #undef _ |
| 42 | IPSEC_IF_INPUT_N_ERROR, |
| 43 | } ipsec_if_input_error_t; |
| 44 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 46 | typedef struct |
| 47 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | u32 spi; |
| 49 | u32 seq; |
| 50 | } ipsec_if_input_trace_t; |
| 51 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 52 | u8 * |
| 53 | format_ipsec_if_input_trace (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 54 | { |
| 55 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 56 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 57 | ipsec_if_input_trace_t *t = va_arg (*args, ipsec_if_input_trace_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 58 | |
| 59 | s = format (s, "IPSec: spi %u seq %u", t->spi, t->seq); |
| 60 | return s; |
| 61 | } |
| 62 | |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 63 | VLIB_NODE_FN (ipsec_if_input_node) (vlib_main_t * vm, |
| 64 | vlib_node_runtime_t * node, |
| 65 | vlib_frame_t * from_frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | { |
| 67 | ipsec_main_t *im = &ipsec_main; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 68 | vnet_main_t *vnm = im->vnet_main; |
| 69 | vnet_interface_main_t *vim = &vnm->interface_main; |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 70 | ipsec_proto_main_t *em = &ipsec_proto_main; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 71 | u32 *from, *to_next = 0, next_index; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 72 | u32 n_left_from, last_sw_if_index = ~0; |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 73 | u32 thread_index = vm->thread_index; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 74 | u64 n_bytes = 0, n_packets = 0; |
| 75 | u8 icv_len; |
| 76 | ipsec_tunnel_if_t *last_t = NULL; |
| 77 | ipsec_sa_t *sa0; |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 78 | vlib_combined_counter_main_t *rx_counter; |
| 79 | vlib_combined_counter_main_t *drop_counter; |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 80 | u32 n_disabled = 0, n_no_tunnel = 0; |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 81 | |
| 82 | rx_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX; |
| 83 | drop_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 84 | |
| 85 | from = vlib_frame_vector_args (from_frame); |
| 86 | n_left_from = from_frame->n_vectors; |
| 87 | next_index = node->cached_next_index; |
| 88 | |
| 89 | while (n_left_from > 0) |
| 90 | { |
| 91 | u32 n_left_to_next; |
| 92 | |
| 93 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 94 | |
| 95 | while (n_left_from > 0 && n_left_to_next > 0) |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 96 | { |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 97 | u32 bi0, next0, sw_if_index0; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 98 | vlib_buffer_t *b0; |
| 99 | ip4_header_t *ip0; |
| 100 | esp_header_t *esp0; |
| 101 | uword *p; |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 102 | u32 len0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 103 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 104 | bi0 = to_next[0] = from[0]; |
| 105 | from += 1; |
| 106 | n_left_from -= 1; |
| 107 | to_next += 1; |
| 108 | n_left_to_next -= 1; |
| 109 | b0 = vlib_get_buffer (vm, bi0); |
| 110 | ip0 = vlib_buffer_get_current (b0); |
| 111 | esp0 = (esp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 112 | |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 113 | next0 = IPSEC_INPUT_NEXT_DROP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 115 | u64 key = (u64) ip0->src_address.as_u32 << 32 | |
| 116 | (u64) clib_net_to_host_u32 (esp0->spi); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 117 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 118 | p = hash_get (im->ipsec_if_pool_index_by_key, key); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 120 | len0 = vlib_buffer_length_in_chain (vm, b0); |
| 121 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 122 | if (p) |
| 123 | { |
| 124 | ipsec_tunnel_if_t *t; |
| 125 | t = pool_elt_at_index (im->tunnel_interfaces, p[0]); |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 126 | vnet_buffer (b0)->ipsec.sad_index = t->input_sa_index; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 127 | if (t->hw_if_index != ~0) |
| 128 | { |
| 129 | vnet_hw_interface_t *hi; |
| 130 | |
| 131 | vnet_buffer (b0)->ipsec.flags = 0; |
| 132 | hi = vnet_get_hw_interface (vnm, t->hw_if_index); |
| 133 | sw_if_index0 = hi->sw_if_index; |
Matthew Smith | 02e14b5 | 2017-09-14 09:05:35 -0500 | [diff] [blame] | 134 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = sw_if_index0; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 135 | |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 136 | if (PREDICT_FALSE |
| 137 | (!(hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))) |
| 138 | { |
| 139 | vlib_increment_combined_counter |
| 140 | (drop_counter, thread_index, sw_if_index0, 1, len0); |
| 141 | b0->error = node->errors[IPSEC_IF_INPUT_ERROR_DISABLED]; |
| 142 | n_disabled++; |
| 143 | goto trace; |
| 144 | } |
| 145 | |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 146 | if (PREDICT_TRUE (sw_if_index0 == last_sw_if_index)) |
| 147 | { |
| 148 | n_packets++; |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 149 | n_bytes += len0; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 150 | } |
| 151 | else |
| 152 | { |
| 153 | sa0 = pool_elt_at_index (im->sad, t->input_sa_index); |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 154 | icv_len = |
| 155 | em->ipsec_proto_main_integ_algs[sa0-> |
| 156 | integ_alg].trunc_size; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 157 | |
| 158 | /* length = packet length - ESP/tunnel overhead */ |
| 159 | n_bytes -= n_packets * (sizeof (ip4_header_t) + |
| 160 | sizeof (esp_header_t) + |
| 161 | sizeof (esp_footer_t) + |
| 162 | 16 /* aes-cbc IV */ + icv_len); |
| 163 | |
| 164 | if (last_t) |
| 165 | { |
| 166 | vlib_increment_combined_counter |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 167 | (rx_counter, thread_index, sw_if_index0, |
| 168 | n_packets, n_bytes); |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | last_sw_if_index = sw_if_index0; |
| 172 | last_t = t; |
| 173 | n_packets = 1; |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 174 | n_bytes = len0; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 175 | } |
| 176 | } |
| 177 | else |
| 178 | { |
| 179 | vnet_buffer (b0)->ipsec.flags = IPSEC_FLAG_IPSEC_GRE_TUNNEL; |
| 180 | } |
| 181 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 182 | vlib_buffer_advance (b0, ip4_header_bytes (ip0)); |
Klement Sekera | be5a5dd | 2018-10-09 16:05:48 +0200 | [diff] [blame] | 183 | next0 = im->esp4_decrypt_next_index; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 184 | } |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 185 | else |
| 186 | { |
| 187 | b0->error = node->errors[IPSEC_IF_INPUT_ERROR_NO_TUNNEL]; |
| 188 | n_no_tunnel++; |
| 189 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 190 | |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 191 | trace: |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 192 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 193 | { |
| 194 | ipsec_if_input_trace_t *tr = |
| 195 | vlib_add_trace (vm, node, b0, sizeof (*tr)); |
| 196 | tr->spi = clib_host_to_net_u32 (esp0->spi); |
| 197 | tr->seq = clib_host_to_net_u32 (esp0->seq); |
| 198 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 199 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 200 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 201 | n_left_to_next, bi0, next0); |
| 202 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 203 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 204 | } |
| 205 | |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 206 | if (last_t) |
| 207 | { |
| 208 | sa0 = pool_elt_at_index (im->sad, last_t->input_sa_index); |
“mukeshyadav1984” | 430ac93 | 2017-11-23 02:39:33 -0800 | [diff] [blame] | 209 | icv_len = em->ipsec_proto_main_integ_algs[sa0->integ_alg].trunc_size; |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 210 | |
| 211 | n_bytes -= n_packets * (sizeof (ip4_header_t) + sizeof (esp_header_t) + |
| 212 | sizeof (esp_footer_t) + 16 /* aes-cbc IV */ + |
| 213 | icv_len); |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 214 | vlib_increment_combined_counter (rx_counter, |
Matthew Smith | 01034be | 2017-05-16 11:51:18 -0500 | [diff] [blame] | 215 | thread_index, |
| 216 | last_sw_if_index, n_packets, n_bytes); |
| 217 | } |
| 218 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 219 | vlib_node_increment_counter (vm, ipsec_if_input_node.index, |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 220 | IPSEC_IF_INPUT_ERROR_RX, |
Matthew Smith | 831fd64 | 2018-05-15 22:03:05 -0500 | [diff] [blame] | 221 | from_frame->n_vectors - n_disabled); |
| 222 | |
| 223 | vlib_node_increment_counter (vm, ipsec_if_input_node.index, |
| 224 | IPSEC_IF_INPUT_ERROR_DISABLED, n_disabled); |
Neale Ranns | 8d7c502 | 2019-02-06 01:41:05 -0800 | [diff] [blame] | 225 | vlib_node_increment_counter (vm, ipsec_if_input_node.index, |
| 226 | IPSEC_IF_INPUT_ERROR_DISABLED, n_no_tunnel); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 227 | |
| 228 | return from_frame->n_vectors; |
| 229 | } |
| 230 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 231 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 232 | VLIB_REGISTER_NODE (ipsec_if_input_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | .name = "ipsec-if-input", |
| 234 | .vector_size = sizeof (u32), |
| 235 | .format_trace = format_ipsec_if_input_trace, |
| 236 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 237 | |
| 238 | .n_errors = ARRAY_LEN(ipsec_if_input_error_strings), |
| 239 | .error_strings = ipsec_if_input_error_strings, |
| 240 | |
Pierre Pfister | 057b356 | 2018-12-10 17:01:01 +0100 | [diff] [blame] | 241 | .sibling_of = "ipsec4-input-feature", |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 242 | }; |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 243 | /* *INDENT-ON* */ |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 244 | |
Keith Burns (alagalah) | 166a9d4 | 2016-08-06 11:00:56 -0700 | [diff] [blame] | 245 | /* |
| 246 | * fd.io coding-style-patch-verification: ON |
| 247 | * |
| 248 | * Local Variables: |
| 249 | * eval: (c-set-style "gnu") |
| 250 | * End: |
| 251 | */ |