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