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