Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * ip/icmp4.c: ipv4 icmp |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #include <vlib/vlib.h> |
| 41 | #include <vnet/ip/ip.h> |
| 42 | #include <vnet/pg/pg.h> |
Ole Troan | 8034a36 | 2021-08-11 13:54:14 +0200 | [diff] [blame] | 43 | #include <vnet/ip/ip_sas.h> |
Neale Ranns | 5c6dd17 | 2022-02-17 09:08:47 +0000 | [diff] [blame] | 44 | #include <vnet/util/throttle.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | |
Neale Ranns | 5c6dd17 | 2022-02-17 09:08:47 +0000 | [diff] [blame] | 46 | /** ICMP throttling */ |
| 47 | static throttle_t icmp_throttle; |
| 48 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 49 | static u8 * |
| 50 | format_ip4_icmp_type_and_code (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | { |
| 52 | icmp4_type_t type = va_arg (*args, int); |
| 53 | u8 code = va_arg (*args, int); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 54 | char *t = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | |
| 56 | #define _(n,f) case n: t = #f; break; |
| 57 | |
| 58 | switch (type) |
| 59 | { |
| 60 | foreach_icmp4_type; |
| 61 | |
| 62 | default: |
| 63 | break; |
| 64 | } |
| 65 | |
| 66 | #undef _ |
| 67 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 68 | if (!t) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | return format (s, "unknown 0x%x", type); |
| 70 | |
| 71 | s = format (s, "%s", t); |
| 72 | |
| 73 | t = 0; |
| 74 | switch ((type << 8) | code) |
| 75 | { |
| 76 | #define _(a,n,f) case (ICMP4_##a << 8) | (n): t = #f; break; |
| 77 | |
| 78 | foreach_icmp4_code; |
| 79 | |
| 80 | #undef _ |
| 81 | } |
| 82 | |
| 83 | if (t) |
| 84 | s = format (s, " %s", t); |
| 85 | |
| 86 | return s; |
| 87 | } |
| 88 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 89 | static u8 * |
| 90 | format_ip4_icmp_header (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 92 | icmp46_header_t *icmp = va_arg (*args, icmp46_header_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | u32 max_header_bytes = va_arg (*args, u32); |
| 94 | |
| 95 | /* Nothing to do. */ |
| 96 | if (max_header_bytes < sizeof (icmp[0])) |
| 97 | return format (s, "ICMP header truncated"); |
| 98 | |
| 99 | s = format (s, "ICMP %U checksum 0x%x", |
| 100 | format_ip4_icmp_type_and_code, icmp->type, icmp->code, |
| 101 | clib_net_to_host_u16 (icmp->checksum)); |
| 102 | |
Klement Sekera | 78ef61e | 2020-11-25 16:47:00 +0000 | [diff] [blame] | 103 | if ((ICMP4_echo_request == icmp->type || ICMP4_echo_reply == icmp->type) |
| 104 | && sizeof (icmp[0]) + sizeof (u16) < max_header_bytes) |
| 105 | { |
| 106 | s = format (s, " id %u", clib_net_to_host_u16 (*(u16 *) (icmp + 1))); |
| 107 | } |
| 108 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | return s; |
| 110 | } |
| 111 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 112 | static u8 * |
| 113 | format_icmp_input_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | { |
| 115 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
| 116 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 117 | icmp_input_trace_t *t = va_arg (*va, icmp_input_trace_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | |
| 119 | s = format (s, "%U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 120 | format_ip4_header, t->packet_data, sizeof (t->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 121 | |
| 122 | return s; |
| 123 | } |
| 124 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 125 | typedef enum |
| 126 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 127 | ICMP_INPUT_NEXT_ERROR, |
| 128 | ICMP_INPUT_N_NEXT, |
| 129 | } icmp_input_next_t; |
| 130 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 131 | typedef struct |
| 132 | { |
| 133 | uword *type_and_code_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 135 | uword *type_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | |
| 137 | /* Vector dispatch table indexed by [icmp type]. */ |
| 138 | u8 ip4_input_next_index_by_type[256]; |
| 139 | } icmp4_main_t; |
| 140 | |
| 141 | icmp4_main_t icmp4_main; |
| 142 | |
| 143 | static uword |
| 144 | ip4_icmp_input (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 145 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 147 | icmp4_main_t *im = &icmp4_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | uword n_packets = frame->n_vectors; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 149 | u32 *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | u32 n_left_from, n_left_to_next, next; |
| 151 | |
| 152 | from = vlib_frame_vector_args (frame); |
| 153 | n_left_from = n_packets; |
| 154 | next = node->cached_next_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 155 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 156 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 157 | vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors, |
| 158 | /* stride */ 1, |
| 159 | sizeof (icmp_input_trace_t)); |
| 160 | |
| 161 | while (n_left_from > 0) |
| 162 | { |
| 163 | vlib_get_next_frame (vm, node, next, to_next, n_left_to_next); |
| 164 | |
| 165 | while (n_left_from > 0 && n_left_to_next > 0) |
| 166 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 167 | vlib_buffer_t *p0; |
| 168 | ip4_header_t *ip0; |
| 169 | icmp46_header_t *icmp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 170 | icmp4_type_t type0; |
| 171 | u32 bi0, next0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 172 | |
| 173 | if (PREDICT_TRUE (n_left_from > 2)) |
| 174 | { |
| 175 | vlib_prefetch_buffer_with_index (vm, from[2], LOAD); |
| 176 | p0 = vlib_get_buffer (vm, from[1]); |
| 177 | ip0 = vlib_buffer_get_current (p0); |
Damjan Marion | af7fb04 | 2021-07-15 11:54:41 +0200 | [diff] [blame] | 178 | clib_prefetch_load (ip0); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 179 | } |
| 180 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 181 | bi0 = to_next[0] = from[0]; |
| 182 | |
| 183 | from += 1; |
| 184 | n_left_from -= 1; |
| 185 | to_next += 1; |
| 186 | n_left_to_next -= 1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 187 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | p0 = vlib_get_buffer (vm, bi0); |
| 189 | ip0 = vlib_buffer_get_current (p0); |
| 190 | icmp0 = ip4_next_header (ip0); |
| 191 | type0 = icmp0->type; |
| 192 | next0 = im->ip4_input_next_index_by_type[type0]; |
| 193 | |
| 194 | p0->error = node->errors[ICMP4_ERROR_UNKNOWN_TYPE]; |
jackiechen1985 | 23551d6 | 2019-04-30 17:01:29 +0800 | [diff] [blame] | 195 | |
| 196 | /* Verify speculative enqueue, maybe switch current next frame */ |
| 197 | vlib_validate_buffer_enqueue_x1 (vm, node, next, to_next, |
| 198 | n_left_to_next, bi0, next0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 199 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 200 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 201 | vlib_put_next_frame (vm, node, next, n_left_to_next); |
| 202 | } |
| 203 | |
| 204 | return frame->n_vectors; |
| 205 | } |
| 206 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 207 | /* *INDENT-OFF* */ |
Neale Ranns | f6c8f50 | 2019-10-25 01:40:47 -0700 | [diff] [blame] | 208 | VLIB_REGISTER_NODE (ip4_icmp_input_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | .function = ip4_icmp_input, |
| 210 | .name = "ip4-icmp-input", |
| 211 | |
| 212 | .vector_size = sizeof (u32), |
| 213 | |
| 214 | .format_trace = format_icmp_input_trace, |
| 215 | |
Neale Ranns | b29c606 | 2022-08-12 01:50:24 +0000 | [diff] [blame] | 216 | .n_errors = ICMP4_N_ERROR, |
| 217 | .error_counters = icmp4_error_counters, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 218 | |
| 219 | .n_next_nodes = 1, |
| 220 | .next_nodes = { |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 221 | [ICMP_INPUT_NEXT_ERROR] = "ip4-punt", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 222 | }, |
| 223 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 224 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 225 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 226 | typedef enum |
| 227 | { |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 228 | IP4_ICMP_ERROR_NEXT_DROP, |
| 229 | IP4_ICMP_ERROR_NEXT_LOOKUP, |
| 230 | IP4_ICMP_ERROR_N_NEXT, |
| 231 | } ip4_icmp_error_next_t; |
| 232 | |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 233 | static u8 |
| 234 | icmp4_icmp_type_to_error (u8 type) |
| 235 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 236 | switch (type) |
| 237 | { |
| 238 | case ICMP4_destination_unreachable: |
| 239 | return ICMP4_ERROR_DEST_UNREACH_SENT; |
| 240 | case ICMP4_time_exceeded: |
| 241 | return ICMP4_ERROR_TTL_EXPIRE_SENT; |
| 242 | case ICMP4_parameter_problem: |
| 243 | return ICMP4_ERROR_PARAM_PROBLEM_SENT; |
| 244 | default: |
| 245 | return ICMP4_ERROR_DROP; |
| 246 | } |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 247 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | |
| 249 | static uword |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 250 | ip4_icmp_error (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 251 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 253 | u32 *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 254 | uword n_left_from, n_left_to_next; |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 255 | ip4_icmp_error_next_t next_index; |
Neale Ranns | 5c6dd17 | 2022-02-17 09:08:47 +0000 | [diff] [blame] | 256 | u32 thread_index = vm->thread_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 257 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 258 | from = vlib_frame_vector_args (frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 259 | n_left_from = frame->n_vectors; |
| 260 | next_index = node->cached_next_index; |
| 261 | |
Neale Ranns | 5c6dd17 | 2022-02-17 09:08:47 +0000 | [diff] [blame] | 262 | u64 seed = throttle_seed (&icmp_throttle, thread_index, vlib_time_now (vm)); |
| 263 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 264 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 265 | vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 266 | /* stride */ 1, |
| 267 | sizeof (icmp_input_trace_t)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 268 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 269 | while (n_left_from > 0) |
| 270 | { |
| 271 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 272 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 273 | while (n_left_from > 0 && n_left_to_next > 0) |
| 274 | { |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 275 | /* |
| 276 | * Duplicate first buffer and free the original chain. Keep |
| 277 | * as much of the original packet as possible, within the |
| 278 | * minimum MTU. We chat "a little" here by keeping whatever |
| 279 | * is available in the first buffer. |
| 280 | */ |
| 281 | |
| 282 | u32 pi0 = ~0; |
| 283 | u32 org_pi0 = from[0]; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 284 | u32 next0 = IP4_ICMP_ERROR_NEXT_LOOKUP; |
| 285 | u8 error0 = ICMP4_ERROR_NONE; |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 286 | vlib_buffer_t *p0, *org_p0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 287 | ip4_header_t *ip0, *out_ip0; |
| 288 | icmp46_header_t *icmp0; |
Ole Troan | 8034a36 | 2021-08-11 13:54:14 +0200 | [diff] [blame] | 289 | u32 sw_if_index0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 290 | ip_csum_t sum; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 291 | |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 292 | org_p0 = vlib_get_buffer (vm, org_pi0); |
Neale Ranns | 5c6dd17 | 2022-02-17 09:08:47 +0000 | [diff] [blame] | 293 | ip0 = vlib_buffer_get_current (org_p0); |
| 294 | |
| 295 | /* Rate limit based on the src,dst addresses in the original packet |
| 296 | */ |
| 297 | u64 r0 = |
| 298 | (u64) ip0->dst_address.as_u32 << 32 | ip0->src_address.as_u32; |
| 299 | |
| 300 | if (throttle_check (&icmp_throttle, thread_index, r0, seed)) |
| 301 | { |
| 302 | vlib_error_count (vm, node->node_index, ICMP4_ERROR_DROP, 1); |
| 303 | from += 1; |
| 304 | n_left_from -= 1; |
| 305 | continue; |
| 306 | } |
| 307 | |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 308 | p0 = vlib_buffer_copy_no_chain (vm, org_p0, &pi0); |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 309 | if (!p0 || pi0 == ~0) /* Out of buffers */ |
| 310 | continue; |
| 311 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 312 | /* Speculatively enqueue p0 to the current next frame */ |
| 313 | to_next[0] = pi0; |
| 314 | from += 1; |
| 315 | to_next += 1; |
| 316 | n_left_from -= 1; |
| 317 | n_left_to_next -= 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 318 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 319 | sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 320 | |
Neale Ranns | 5c6dd17 | 2022-02-17 09:08:47 +0000 | [diff] [blame] | 321 | vlib_buffer_copy_trace_flag (vm, p0, pi0); |
| 322 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 323 | /* Add IP header and ICMPv4 header including a 4 byte data field */ |
| 324 | vlib_buffer_advance (p0, |
| 325 | -sizeof (ip4_header_t) - |
| 326 | sizeof (icmp46_header_t) - 4); |
Ole Troan | 8a9c8f1 | 2018-05-18 11:01:31 +0200 | [diff] [blame] | 327 | |
| 328 | p0->current_length = |
| 329 | p0->current_length > 576 ? 576 : p0->current_length; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 330 | out_ip0 = vlib_buffer_get_current (p0); |
| 331 | icmp0 = (icmp46_header_t *) & out_ip0[1]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 332 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 333 | /* Fill ip header fields */ |
| 334 | out_ip0->ip_version_and_header_length = 0x45; |
| 335 | out_ip0->tos = 0; |
| 336 | out_ip0->length = clib_host_to_net_u16 (p0->current_length); |
| 337 | out_ip0->fragment_id = 0; |
| 338 | out_ip0->flags_and_fragment_offset = 0; |
| 339 | out_ip0->ttl = 0xff; |
| 340 | out_ip0->protocol = IP_PROTOCOL_ICMP; |
| 341 | out_ip0->dst_address = ip0->src_address; |
Ole Troan | 8034a36 | 2021-08-11 13:54:14 +0200 | [diff] [blame] | 342 | /* Prefer a source address from "offending interface" */ |
| 343 | if (!ip4_sas_by_sw_if_index (sw_if_index0, &out_ip0->dst_address, |
| 344 | &out_ip0->src_address)) |
| 345 | { /* interface has no IP6 address - should not happen */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 346 | next0 = IP4_ICMP_ERROR_NEXT_DROP; |
| 347 | error0 = ICMP4_ERROR_DROP; |
| 348 | } |
Ole Troan | 8034a36 | 2021-08-11 13:54:14 +0200 | [diff] [blame] | 349 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 350 | out_ip0->checksum = ip4_header_checksum (out_ip0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 351 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 352 | /* Fill icmp header fields */ |
| 353 | icmp0->type = vnet_buffer (p0)->ip.icmp.type; |
| 354 | icmp0->code = vnet_buffer (p0)->ip.icmp.code; |
| 355 | *((u32 *) (icmp0 + 1)) = |
| 356 | clib_host_to_net_u32 (vnet_buffer (p0)->ip.icmp.data); |
| 357 | icmp0->checksum = 0; |
| 358 | sum = |
| 359 | ip_incremental_checksum (0, icmp0, |
| 360 | p0->current_length - |
| 361 | sizeof (ip4_header_t)); |
| 362 | icmp0->checksum = ~ip_csum_fold (sum); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 364 | /* Update error status */ |
| 365 | if (error0 == ICMP4_ERROR_NONE) |
| 366 | error0 = icmp4_icmp_type_to_error (icmp0->type); |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 367 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 368 | vlib_error_count (vm, node->node_index, error0, 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 369 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 370 | /* Verify speculative enqueue, maybe switch current next frame */ |
| 371 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 372 | to_next, n_left_to_next, |
| 373 | pi0, next0); |
| 374 | } |
| 375 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Kingwel Xie | 27431dd | 2019-03-20 21:47:17 -0400 | [diff] [blame] | 378 | /* |
| 379 | * push the original buffers to error-drop, so that |
| 380 | * they can get the error counters handled, then freed |
| 381 | */ |
| 382 | vlib_buffer_enqueue_to_single_next (vm, node, |
| 383 | vlib_frame_vector_args (frame), |
| 384 | IP4_ICMP_ERROR_NEXT_DROP, |
| 385 | frame->n_vectors); |
| 386 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 387 | return frame->n_vectors; |
| 388 | } |
| 389 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 390 | /* *INDENT-OFF* */ |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 391 | VLIB_REGISTER_NODE (ip4_icmp_error_node) = { |
| 392 | .function = ip4_icmp_error, |
| 393 | .name = "ip4-icmp-error", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 394 | .vector_size = sizeof (u32), |
| 395 | |
Neale Ranns | b29c606 | 2022-08-12 01:50:24 +0000 | [diff] [blame] | 396 | .n_errors = ICMP4_N_ERROR, |
| 397 | .error_counters = icmp4_error_counters, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 398 | |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 399 | .n_next_nodes = IP4_ICMP_ERROR_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 400 | .next_nodes = { |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 401 | [IP4_ICMP_ERROR_NEXT_DROP] = "ip4-drop", |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 402 | [IP4_ICMP_ERROR_NEXT_LOOKUP] = "ip4-lookup", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 403 | }, |
| 404 | |
| 405 | .format_trace = format_icmp_input_trace, |
| 406 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 407 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 408 | |
| 409 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 410 | static uword |
| 411 | unformat_icmp_type_and_code (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 412 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 413 | icmp46_header_t *h = va_arg (*args, icmp46_header_t *); |
| 414 | icmp4_main_t *cm = &icmp4_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 415 | u32 i; |
| 416 | |
| 417 | if (unformat_user (input, unformat_vlib_number_by_name, |
| 418 | cm->type_and_code_by_name, &i)) |
| 419 | { |
| 420 | h->type = (i >> 8) & 0xff; |
| 421 | h->code = (i >> 0) & 0xff; |
| 422 | } |
| 423 | else if (unformat_user (input, unformat_vlib_number_by_name, |
| 424 | cm->type_by_name, &i)) |
| 425 | { |
| 426 | h->type = i; |
| 427 | h->code = 0; |
| 428 | } |
| 429 | else |
| 430 | return 0; |
| 431 | |
| 432 | return 1; |
| 433 | } |
| 434 | |
| 435 | static void |
| 436 | icmp4_pg_edit_function (pg_main_t * pg, |
| 437 | pg_stream_t * s, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 438 | pg_edit_group_t * g, u32 * packets, u32 n_packets) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 439 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 440 | vlib_main_t *vm = vlib_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 441 | u32 ip_offset, icmp_offset; |
| 442 | |
| 443 | icmp_offset = g->start_byte_offset; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 444 | ip_offset = (g - 1)->start_byte_offset; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 445 | |
| 446 | while (n_packets >= 1) |
| 447 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 448 | vlib_buffer_t *p0; |
| 449 | ip4_header_t *ip0; |
| 450 | icmp46_header_t *icmp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 451 | u32 len0; |
| 452 | |
| 453 | p0 = vlib_get_buffer (vm, packets[0]); |
| 454 | n_packets -= 1; |
| 455 | packets += 1; |
| 456 | |
| 457 | ASSERT (p0->current_data == 0); |
| 458 | ip0 = (void *) (p0->data + ip_offset); |
| 459 | icmp0 = (void *) (p0->data + icmp_offset); |
Kingwel Xie | a91866f | 2018-10-26 23:26:06 -0400 | [diff] [blame] | 460 | |
| 461 | /* if IP length has been specified, then calculate the length based on buffer */ |
| 462 | if (ip0->length == 0) |
| 463 | len0 = vlib_buffer_length_in_chain (vm, p0) - icmp_offset; |
| 464 | else |
| 465 | len0 = clib_net_to_host_u16 (ip0->length) - icmp_offset; |
| 466 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 467 | icmp0->checksum = |
| 468 | ~ip_csum_fold (ip_incremental_checksum (0, icmp0, len0)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 469 | } |
| 470 | } |
| 471 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 472 | typedef struct |
| 473 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 474 | pg_edit_t type, code; |
| 475 | pg_edit_t checksum; |
| 476 | } pg_icmp46_header_t; |
| 477 | |
| 478 | always_inline void |
| 479 | pg_icmp_header_init (pg_icmp46_header_t * p) |
| 480 | { |
| 481 | /* Initialize fields that are not bit fields in the IP header. */ |
| 482 | #define _(f) pg_edit_init (&p->f, icmp46_header_t, f); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 483 | _(type); |
| 484 | _(code); |
| 485 | _(checksum); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 486 | #undef _ |
| 487 | } |
| 488 | |
| 489 | static uword |
| 490 | unformat_pg_icmp_header (unformat_input_t * input, va_list * args) |
| 491 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 492 | pg_stream_t *s = va_arg (*args, pg_stream_t *); |
| 493 | pg_icmp46_header_t *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 494 | u32 group_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 495 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 496 | p = pg_create_edit_group (s, sizeof (p[0]), sizeof (icmp46_header_t), |
| 497 | &group_index); |
| 498 | pg_icmp_header_init (p); |
| 499 | |
| 500 | p->checksum.type = PG_EDIT_UNSPECIFIED; |
| 501 | |
| 502 | { |
| 503 | icmp46_header_t tmp; |
| 504 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 505 | if (!unformat (input, "ICMP %U", unformat_icmp_type_and_code, &tmp)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 506 | goto error; |
| 507 | |
| 508 | pg_edit_set_fixed (&p->type, tmp.type); |
| 509 | pg_edit_set_fixed (&p->code, tmp.code); |
| 510 | } |
| 511 | |
| 512 | /* Parse options. */ |
| 513 | while (1) |
| 514 | { |
| 515 | if (unformat (input, "checksum %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 516 | unformat_pg_edit, unformat_pg_number, &p->checksum)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 517 | ; |
| 518 | |
| 519 | /* Can't parse input: try next protocol level. */ |
| 520 | else |
| 521 | break; |
| 522 | } |
| 523 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 524 | if (!unformat_user (input, unformat_pg_payload, s)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 525 | goto error; |
| 526 | |
| 527 | if (p->checksum.type == PG_EDIT_UNSPECIFIED) |
| 528 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 529 | pg_edit_group_t *g = pg_stream_get_group (s, group_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 530 | g->edit_function = icmp4_pg_edit_function; |
| 531 | g->edit_function_opaque = 0; |
| 532 | } |
| 533 | |
| 534 | return 1; |
| 535 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 536 | error: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 537 | /* Free up any edits we may have added. */ |
| 538 | pg_free_edit_group (s); |
| 539 | return 0; |
| 540 | } |
| 541 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 542 | void |
| 543 | ip4_icmp_register_type (vlib_main_t * vm, icmp4_type_t type, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 544 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 545 | icmp4_main_t *im = &icmp4_main; |
Dave Barach | 34716fa | 2019-05-23 12:38:22 -0400 | [diff] [blame] | 546 | u32 old_next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 547 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 548 | ASSERT ((int) type < ARRAY_LEN (im->ip4_input_next_index_by_type)); |
Dave Barach | 34716fa | 2019-05-23 12:38:22 -0400 | [diff] [blame] | 549 | old_next_index = im->ip4_input_next_index_by_type[type]; |
| 550 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 551 | im->ip4_input_next_index_by_type[type] |
| 552 | = vlib_node_add_next (vm, ip4_icmp_input_node.index, node_index); |
Dave Barach | 34716fa | 2019-05-23 12:38:22 -0400 | [diff] [blame] | 553 | |
| 554 | if (old_next_index && |
| 555 | (old_next_index != im->ip4_input_next_index_by_type[type])) |
| 556 | clib_warning ("WARNING: changed next_by_type[%d]", (int) type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | static clib_error_t * |
| 560 | icmp4_init (vlib_main_t * vm) |
| 561 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 562 | ip_main_t *im = &ip_main; |
| 563 | ip_protocol_info_t *pi; |
| 564 | icmp4_main_t *cm = &icmp4_main; |
| 565 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 566 | |
| 567 | error = vlib_call_init_function (vm, ip_main_init); |
| 568 | |
| 569 | if (error) |
| 570 | return error; |
| 571 | |
| 572 | pi = ip_get_protocol_info (im, IP_PROTOCOL_ICMP); |
| 573 | pi->format_header = format_ip4_icmp_header; |
| 574 | pi->unformat_pg_edit = unformat_pg_icmp_header; |
| 575 | |
| 576 | cm->type_by_name = hash_create_string (0, sizeof (uword)); |
| 577 | #define _(n,t) hash_set_mem (cm->type_by_name, #t, (n)); |
| 578 | foreach_icmp4_type; |
| 579 | #undef _ |
| 580 | |
| 581 | cm->type_and_code_by_name = hash_create_string (0, sizeof (uword)); |
| 582 | #define _(a,n,t) hash_set_mem (cm->type_by_name, #t, (n) | (ICMP4_##a << 8)); |
| 583 | foreach_icmp4_code; |
| 584 | #undef _ |
| 585 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 586 | clib_memset (cm->ip4_input_next_index_by_type, |
| 587 | ICMP_INPUT_NEXT_ERROR, |
| 588 | sizeof (cm->ip4_input_next_index_by_type)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 589 | |
Neale Ranns | 5c6dd17 | 2022-02-17 09:08:47 +0000 | [diff] [blame] | 590 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 591 | u32 n_vlib_mains = tm->n_vlib_mains; |
| 592 | |
| 593 | throttle_init (&icmp_throttle, n_vlib_mains, 1e-3); |
| 594 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 595 | return 0; |
| 596 | } |
| 597 | |
| 598 | VLIB_INIT_FUNCTION (icmp4_init); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 599 | |
| 600 | /* |
| 601 | * fd.io coding-style-patch-verification: ON |
| 602 | * |
| 603 | * Local Variables: |
| 604 | * eval: (c-set-style "gnu") |
| 605 | * End: |
| 606 | */ |