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 | |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 44 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 45 | static char *icmp_error_strings[] = { |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 46 | #define _(f,s) s, |
| 47 | foreach_icmp4_error |
| 48 | #undef _ |
| 49 | }; |
| 50 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 51 | static u8 * |
| 52 | format_ip4_icmp_type_and_code (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | { |
| 54 | icmp4_type_t type = va_arg (*args, int); |
| 55 | u8 code = va_arg (*args, int); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 56 | char *t = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | |
| 58 | #define _(n,f) case n: t = #f; break; |
| 59 | |
| 60 | switch (type) |
| 61 | { |
| 62 | foreach_icmp4_type; |
| 63 | |
| 64 | default: |
| 65 | break; |
| 66 | } |
| 67 | |
| 68 | #undef _ |
| 69 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 70 | if (!t) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | return format (s, "unknown 0x%x", type); |
| 72 | |
| 73 | s = format (s, "%s", t); |
| 74 | |
| 75 | t = 0; |
| 76 | switch ((type << 8) | code) |
| 77 | { |
| 78 | #define _(a,n,f) case (ICMP4_##a << 8) | (n): t = #f; break; |
| 79 | |
| 80 | foreach_icmp4_code; |
| 81 | |
| 82 | #undef _ |
| 83 | } |
| 84 | |
| 85 | if (t) |
| 86 | s = format (s, " %s", t); |
| 87 | |
| 88 | return s; |
| 89 | } |
| 90 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 91 | static u8 * |
| 92 | format_ip4_icmp_header (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 94 | icmp46_header_t *icmp = va_arg (*args, icmp46_header_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | u32 max_header_bytes = va_arg (*args, u32); |
| 96 | |
| 97 | /* Nothing to do. */ |
| 98 | if (max_header_bytes < sizeof (icmp[0])) |
| 99 | return format (s, "ICMP header truncated"); |
| 100 | |
| 101 | s = format (s, "ICMP %U checksum 0x%x", |
| 102 | format_ip4_icmp_type_and_code, icmp->type, icmp->code, |
| 103 | clib_net_to_host_u16 (icmp->checksum)); |
| 104 | |
| 105 | return s; |
| 106 | } |
| 107 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 108 | static u8 * |
| 109 | format_icmp_input_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | { |
| 111 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
| 112 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 113 | icmp_input_trace_t *t = va_arg (*va, icmp_input_trace_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | |
| 115 | s = format (s, "%U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 116 | format_ip4_header, t->packet_data, sizeof (t->packet_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 117 | |
| 118 | return s; |
| 119 | } |
| 120 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 121 | typedef enum |
| 122 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | ICMP_INPUT_NEXT_ERROR, |
| 124 | ICMP_INPUT_N_NEXT, |
| 125 | } icmp_input_next_t; |
| 126 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 127 | typedef struct |
| 128 | { |
| 129 | uword *type_and_code_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 131 | uword *type_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | |
| 133 | /* Vector dispatch table indexed by [icmp type]. */ |
| 134 | u8 ip4_input_next_index_by_type[256]; |
| 135 | } icmp4_main_t; |
| 136 | |
| 137 | icmp4_main_t icmp4_main; |
| 138 | |
| 139 | static uword |
| 140 | ip4_icmp_input (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 141 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 142 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 143 | icmp4_main_t *im = &icmp4_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 144 | uword n_packets = frame->n_vectors; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 145 | u32 *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | u32 n_left_from, n_left_to_next, next; |
| 147 | |
| 148 | from = vlib_frame_vector_args (frame); |
| 149 | n_left_from = n_packets; |
| 150 | next = node->cached_next_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 151 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 152 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 153 | vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors, |
| 154 | /* stride */ 1, |
| 155 | sizeof (icmp_input_trace_t)); |
| 156 | |
| 157 | while (n_left_from > 0) |
| 158 | { |
| 159 | vlib_get_next_frame (vm, node, next, to_next, n_left_to_next); |
| 160 | |
| 161 | while (n_left_from > 0 && n_left_to_next > 0) |
| 162 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 163 | vlib_buffer_t *p0; |
| 164 | ip4_header_t *ip0; |
| 165 | icmp46_header_t *icmp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | icmp4_type_t type0; |
| 167 | u32 bi0, next0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 168 | |
| 169 | if (PREDICT_TRUE (n_left_from > 2)) |
| 170 | { |
| 171 | vlib_prefetch_buffer_with_index (vm, from[2], LOAD); |
| 172 | p0 = vlib_get_buffer (vm, from[1]); |
| 173 | ip0 = vlib_buffer_get_current (p0); |
| 174 | CLIB_PREFETCH (ip0, CLIB_CACHE_LINE_BYTES, LOAD); |
| 175 | } |
| 176 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | bi0 = to_next[0] = from[0]; |
| 178 | |
| 179 | from += 1; |
| 180 | n_left_from -= 1; |
| 181 | to_next += 1; |
| 182 | n_left_to_next -= 1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 183 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 184 | p0 = vlib_get_buffer (vm, bi0); |
| 185 | ip0 = vlib_buffer_get_current (p0); |
| 186 | icmp0 = ip4_next_header (ip0); |
| 187 | type0 = icmp0->type; |
| 188 | next0 = im->ip4_input_next_index_by_type[type0]; |
| 189 | |
| 190 | p0->error = node->errors[ICMP4_ERROR_UNKNOWN_TYPE]; |
| 191 | if (PREDICT_FALSE (next0 != next)) |
| 192 | { |
| 193 | vlib_put_next_frame (vm, node, next, n_left_to_next + 1); |
| 194 | next = next0; |
| 195 | vlib_get_next_frame (vm, node, next, to_next, n_left_to_next); |
| 196 | to_next[0] = bi0; |
| 197 | to_next += 1; |
| 198 | n_left_to_next -= 1; |
| 199 | } |
| 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* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | VLIB_REGISTER_NODE (ip4_icmp_input_node,static) = { |
| 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 | |
| 227 | static uword |
| 228 | ip4_icmp_echo_request (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 229 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 230 | { |
| 231 | uword n_packets = frame->n_vectors; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 232 | u32 *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | u32 n_left_from, n_left_to_next, next; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 234 | ip4_main_t *i4m = &ip4_main; |
| 235 | u16 *fragment_ids, *fid; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 236 | u8 host_config_ttl = i4m->host_config.ttl; |
| 237 | |
| 238 | from = vlib_frame_vector_args (frame); |
| 239 | n_left_from = n_packets; |
| 240 | next = node->cached_next_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 241 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 242 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 243 | vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors, |
| 244 | /* stride */ 1, |
| 245 | sizeof (icmp_input_trace_t)); |
| 246 | |
| 247 | /* Get random fragment IDs for replies. */ |
| 248 | fid = fragment_ids = clib_random_buffer_get_data (&vm->random_buffer, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 249 | n_packets * |
| 250 | sizeof (fragment_ids[0])); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 251 | |
| 252 | while (n_left_from > 0) |
| 253 | { |
| 254 | vlib_get_next_frame (vm, node, next, to_next, n_left_to_next); |
| 255 | |
| 256 | while (n_left_from > 2 && n_left_to_next > 2) |
| 257 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 258 | vlib_buffer_t *p0, *p1; |
| 259 | ip4_header_t *ip0, *ip1; |
| 260 | icmp46_header_t *icmp0, *icmp1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 261 | u32 bi0, src0, dst0; |
| 262 | u32 bi1, src1, dst1; |
| 263 | ip_csum_t sum0, sum1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 264 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 265 | bi0 = to_next[0] = from[0]; |
| 266 | bi1 = to_next[1] = from[1]; |
| 267 | |
| 268 | from += 2; |
| 269 | n_left_from -= 2; |
| 270 | to_next += 2; |
| 271 | n_left_to_next -= 2; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 272 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 273 | p0 = vlib_get_buffer (vm, bi0); |
| 274 | p1 = vlib_get_buffer (vm, bi1); |
| 275 | ip0 = vlib_buffer_get_current (p0); |
| 276 | ip1 = vlib_buffer_get_current (p1); |
| 277 | icmp0 = ip4_next_header (ip0); |
| 278 | icmp1 = ip4_next_header (ip1); |
| 279 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 280 | vnet_buffer (p0)->sw_if_index[VLIB_RX] = |
| 281 | vnet_main.local_interface_sw_if_index; |
| 282 | vnet_buffer (p1)->sw_if_index[VLIB_RX] = |
| 283 | vnet_main.local_interface_sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | |
| 285 | /* Update ICMP checksum. */ |
| 286 | sum0 = icmp0->checksum; |
| 287 | sum1 = icmp1->checksum; |
| 288 | |
| 289 | ASSERT (icmp0->type == ICMP4_echo_request); |
| 290 | ASSERT (icmp1->type == ICMP4_echo_request); |
| 291 | sum0 = ip_csum_update (sum0, ICMP4_echo_request, ICMP4_echo_reply, |
| 292 | icmp46_header_t, type); |
| 293 | sum1 = ip_csum_update (sum1, ICMP4_echo_request, ICMP4_echo_reply, |
| 294 | icmp46_header_t, type); |
| 295 | icmp0->type = ICMP4_echo_reply; |
| 296 | icmp1->type = ICMP4_echo_reply; |
| 297 | |
| 298 | icmp0->checksum = ip_csum_fold (sum0); |
| 299 | icmp1->checksum = ip_csum_fold (sum1); |
| 300 | |
| 301 | src0 = ip0->src_address.data_u32; |
| 302 | src1 = ip1->src_address.data_u32; |
| 303 | dst0 = ip0->dst_address.data_u32; |
| 304 | dst1 = ip1->dst_address.data_u32; |
| 305 | |
| 306 | /* Swap source and destination address. |
| 307 | Does not change checksum. */ |
| 308 | ip0->src_address.data_u32 = dst0; |
| 309 | ip1->src_address.data_u32 = dst1; |
| 310 | ip0->dst_address.data_u32 = src0; |
| 311 | ip1->dst_address.data_u32 = src1; |
| 312 | |
| 313 | /* Update IP checksum. */ |
| 314 | sum0 = ip0->checksum; |
| 315 | sum1 = ip1->checksum; |
| 316 | |
| 317 | sum0 = ip_csum_update (sum0, ip0->ttl, host_config_ttl, |
| 318 | ip4_header_t, ttl); |
| 319 | sum1 = ip_csum_update (sum1, ip1->ttl, host_config_ttl, |
| 320 | ip4_header_t, ttl); |
| 321 | ip0->ttl = host_config_ttl; |
| 322 | ip1->ttl = host_config_ttl; |
| 323 | |
| 324 | /* New fragment id. */ |
| 325 | sum0 = ip_csum_update (sum0, ip0->fragment_id, fid[0], |
| 326 | ip4_header_t, fragment_id); |
| 327 | sum1 = ip_csum_update (sum1, ip1->fragment_id, fid[1], |
| 328 | ip4_header_t, fragment_id); |
| 329 | ip0->fragment_id = fid[0]; |
| 330 | ip1->fragment_id = fid[1]; |
| 331 | fid += 2; |
| 332 | |
| 333 | ip0->checksum = ip_csum_fold (sum0); |
| 334 | ip1->checksum = ip_csum_fold (sum1); |
| 335 | |
| 336 | ASSERT (ip0->checksum == ip4_header_checksum (ip0)); |
| 337 | ASSERT (ip1->checksum == ip4_header_checksum (ip1)); |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 338 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 339 | p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
| 340 | p1->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 341 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 342 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 343 | while (n_left_from > 0 && n_left_to_next > 0) |
| 344 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 345 | vlib_buffer_t *p0; |
| 346 | ip4_header_t *ip0; |
| 347 | icmp46_header_t *icmp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 348 | u32 bi0, src0, dst0; |
| 349 | ip_csum_t sum0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 350 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 351 | bi0 = to_next[0] = from[0]; |
| 352 | |
| 353 | from += 1; |
| 354 | n_left_from -= 1; |
| 355 | to_next += 1; |
| 356 | n_left_to_next -= 1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 357 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 358 | p0 = vlib_get_buffer (vm, bi0); |
| 359 | ip0 = vlib_buffer_get_current (p0); |
| 360 | icmp0 = ip4_next_header (ip0); |
| 361 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 362 | vnet_buffer (p0)->sw_if_index[VLIB_RX] = |
| 363 | vnet_main.local_interface_sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 364 | |
| 365 | /* Update ICMP checksum. */ |
| 366 | sum0 = icmp0->checksum; |
| 367 | |
| 368 | ASSERT (icmp0->type == ICMP4_echo_request); |
| 369 | sum0 = ip_csum_update (sum0, ICMP4_echo_request, ICMP4_echo_reply, |
| 370 | icmp46_header_t, type); |
| 371 | icmp0->type = ICMP4_echo_reply; |
| 372 | icmp0->checksum = ip_csum_fold (sum0); |
| 373 | |
| 374 | src0 = ip0->src_address.data_u32; |
| 375 | dst0 = ip0->dst_address.data_u32; |
| 376 | ip0->src_address.data_u32 = dst0; |
| 377 | ip0->dst_address.data_u32 = src0; |
| 378 | |
| 379 | /* Update IP checksum. */ |
| 380 | sum0 = ip0->checksum; |
| 381 | |
| 382 | sum0 = ip_csum_update (sum0, ip0->ttl, host_config_ttl, |
| 383 | ip4_header_t, ttl); |
| 384 | ip0->ttl = host_config_ttl; |
| 385 | |
| 386 | sum0 = ip_csum_update (sum0, ip0->fragment_id, fid[0], |
| 387 | ip4_header_t, fragment_id); |
| 388 | ip0->fragment_id = fid[0]; |
| 389 | fid += 1; |
| 390 | |
| 391 | ip0->checksum = ip_csum_fold (sum0); |
| 392 | |
| 393 | ASSERT (ip0->checksum == ip4_header_checksum (ip0)); |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 394 | |
Damjan Marion | 213b5aa | 2017-07-13 21:19:27 +0200 | [diff] [blame] | 395 | p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 396 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 397 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 398 | vlib_put_next_frame (vm, node, next, n_left_to_next); |
| 399 | } |
| 400 | |
| 401 | vlib_error_count (vm, ip4_icmp_input_node.index, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 402 | ICMP4_ERROR_ECHO_REPLIES_SENT, frame->n_vectors); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 403 | |
| 404 | return frame->n_vectors; |
| 405 | } |
| 406 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 407 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 408 | VLIB_REGISTER_NODE (ip4_icmp_echo_request_node,static) = { |
| 409 | .function = ip4_icmp_echo_request, |
| 410 | .name = "ip4-icmp-echo-request", |
| 411 | |
| 412 | .vector_size = sizeof (u32), |
| 413 | |
| 414 | .format_trace = format_icmp_input_trace, |
| 415 | |
| 416 | .n_next_nodes = 1, |
| 417 | .next_nodes = { |
Neale Ranns | f06aea5 | 2016-11-29 06:51:37 -0800 | [diff] [blame] | 418 | [0] = "ip4-load-balance", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 419 | }, |
| 420 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 421 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 422 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 423 | typedef enum |
| 424 | { |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 425 | IP4_ICMP_ERROR_NEXT_DROP, |
| 426 | IP4_ICMP_ERROR_NEXT_LOOKUP, |
| 427 | IP4_ICMP_ERROR_N_NEXT, |
| 428 | } ip4_icmp_error_next_t; |
| 429 | |
| 430 | void |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 431 | icmp4_error_set_vnet_buffer (vlib_buffer_t * b, u8 type, u8 code, u32 data) |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 432 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 433 | vnet_buffer (b)->ip.icmp.type = type; |
| 434 | vnet_buffer (b)->ip.icmp.code = code; |
| 435 | vnet_buffer (b)->ip.icmp.data = data; |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | static u8 |
| 439 | icmp4_icmp_type_to_error (u8 type) |
| 440 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 441 | switch (type) |
| 442 | { |
| 443 | case ICMP4_destination_unreachable: |
| 444 | return ICMP4_ERROR_DEST_UNREACH_SENT; |
| 445 | case ICMP4_time_exceeded: |
| 446 | return ICMP4_ERROR_TTL_EXPIRE_SENT; |
| 447 | case ICMP4_parameter_problem: |
| 448 | return ICMP4_ERROR_PARAM_PROBLEM_SENT; |
| 449 | default: |
| 450 | return ICMP4_ERROR_DROP; |
| 451 | } |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 452 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 453 | |
| 454 | static uword |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 455 | ip4_icmp_error (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 456 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 457 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 458 | u32 *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 459 | uword n_left_from, n_left_to_next; |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 460 | ip4_icmp_error_next_t next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 461 | ip4_main_t *im = &ip4_main; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 462 | ip_lookup_main_t *lm = &im->lookup_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 463 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 464 | from = vlib_frame_vector_args (frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 465 | n_left_from = frame->n_vectors; |
| 466 | next_index = node->cached_next_index; |
| 467 | |
| 468 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 469 | vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 470 | /* stride */ 1, |
| 471 | sizeof (icmp_input_trace_t)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 472 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 473 | while (n_left_from > 0) |
| 474 | { |
| 475 | 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] | 476 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 477 | while (n_left_from > 0 && n_left_to_next > 0) |
| 478 | { |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 479 | /* |
| 480 | * Duplicate first buffer and free the original chain. Keep |
| 481 | * as much of the original packet as possible, within the |
| 482 | * minimum MTU. We chat "a little" here by keeping whatever |
| 483 | * is available in the first buffer. |
| 484 | */ |
| 485 | |
| 486 | u32 pi0 = ~0; |
| 487 | u32 org_pi0 = from[0]; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 488 | u32 next0 = IP4_ICMP_ERROR_NEXT_LOOKUP; |
| 489 | u8 error0 = ICMP4_ERROR_NONE; |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 490 | vlib_buffer_t *p0, *org_p0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 491 | ip4_header_t *ip0, *out_ip0; |
| 492 | icmp46_header_t *icmp0; |
| 493 | u32 sw_if_index0, if_add_index0; |
| 494 | ip_csum_t sum; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 495 | |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 496 | org_p0 = vlib_get_buffer (vm, org_pi0); |
| 497 | p0 = vlib_buffer_copy_no_chain (vm, org_p0, &pi0); |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 498 | if (!p0 || pi0 == ~0) /* Out of buffers */ |
| 499 | continue; |
| 500 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 501 | /* Speculatively enqueue p0 to the current next frame */ |
| 502 | to_next[0] = pi0; |
| 503 | from += 1; |
| 504 | to_next += 1; |
| 505 | n_left_from -= 1; |
| 506 | n_left_to_next -= 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 507 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 508 | ip0 = vlib_buffer_get_current (p0); |
| 509 | sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 510 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 511 | /* Add IP header and ICMPv4 header including a 4 byte data field */ |
| 512 | vlib_buffer_advance (p0, |
| 513 | -sizeof (ip4_header_t) - |
| 514 | sizeof (icmp46_header_t) - 4); |
Ole Troan | 8a9c8f1 | 2018-05-18 11:01:31 +0200 | [diff] [blame] | 515 | |
| 516 | p0->current_length = |
| 517 | p0->current_length > 576 ? 576 : p0->current_length; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 518 | out_ip0 = vlib_buffer_get_current (p0); |
| 519 | icmp0 = (icmp46_header_t *) & out_ip0[1]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 520 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 521 | /* Fill ip header fields */ |
| 522 | out_ip0->ip_version_and_header_length = 0x45; |
| 523 | out_ip0->tos = 0; |
| 524 | out_ip0->length = clib_host_to_net_u16 (p0->current_length); |
| 525 | out_ip0->fragment_id = 0; |
| 526 | out_ip0->flags_and_fragment_offset = 0; |
| 527 | out_ip0->ttl = 0xff; |
| 528 | out_ip0->protocol = IP_PROTOCOL_ICMP; |
| 529 | out_ip0->dst_address = ip0->src_address; |
| 530 | if_add_index0 = ~0; |
| 531 | if (PREDICT_TRUE (vec_len (lm->if_address_pool_index_by_sw_if_index) |
| 532 | > sw_if_index0)) |
| 533 | if_add_index0 = |
| 534 | lm->if_address_pool_index_by_sw_if_index[sw_if_index0]; |
| 535 | if (PREDICT_TRUE (if_add_index0 != ~0)) |
| 536 | { |
| 537 | ip_interface_address_t *if_add = |
| 538 | pool_elt_at_index (lm->if_address_pool, if_add_index0); |
| 539 | ip4_address_t *if_ip = |
| 540 | ip_interface_address_get_address (lm, if_add); |
| 541 | out_ip0->src_address = *if_ip; |
| 542 | } |
| 543 | else |
| 544 | { |
| 545 | /* interface has no IP4 address - should not happen */ |
| 546 | next0 = IP4_ICMP_ERROR_NEXT_DROP; |
| 547 | error0 = ICMP4_ERROR_DROP; |
| 548 | } |
| 549 | out_ip0->checksum = ip4_header_checksum (out_ip0); |
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 | /* Fill icmp header fields */ |
| 552 | icmp0->type = vnet_buffer (p0)->ip.icmp.type; |
| 553 | icmp0->code = vnet_buffer (p0)->ip.icmp.code; |
| 554 | *((u32 *) (icmp0 + 1)) = |
| 555 | clib_host_to_net_u32 (vnet_buffer (p0)->ip.icmp.data); |
| 556 | icmp0->checksum = 0; |
| 557 | sum = |
| 558 | ip_incremental_checksum (0, icmp0, |
| 559 | p0->current_length - |
| 560 | sizeof (ip4_header_t)); |
| 561 | icmp0->checksum = ~ip_csum_fold (sum); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 562 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 563 | /* Update error status */ |
| 564 | if (error0 == ICMP4_ERROR_NONE) |
| 565 | error0 = icmp4_icmp_type_to_error (icmp0->type); |
Ole Troan | da7f7b6 | 2019-03-11 13:15:54 +0100 | [diff] [blame] | 566 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 567 | vlib_error_count (vm, node->node_index, error0, 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 568 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 569 | /* Verify speculative enqueue, maybe switch current next frame */ |
| 570 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 571 | to_next, n_left_to_next, |
| 572 | pi0, next0); |
| 573 | } |
| 574 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 575 | } |
| 576 | |
Kingwel Xie | 27431dd | 2019-03-20 21:47:17 -0400 | [diff] [blame^] | 577 | /* |
| 578 | * push the original buffers to error-drop, so that |
| 579 | * they can get the error counters handled, then freed |
| 580 | */ |
| 581 | vlib_buffer_enqueue_to_single_next (vm, node, |
| 582 | vlib_frame_vector_args (frame), |
| 583 | IP4_ICMP_ERROR_NEXT_DROP, |
| 584 | frame->n_vectors); |
| 585 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 586 | return frame->n_vectors; |
| 587 | } |
| 588 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 589 | /* *INDENT-OFF* */ |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 590 | VLIB_REGISTER_NODE (ip4_icmp_error_node) = { |
| 591 | .function = ip4_icmp_error, |
| 592 | .name = "ip4-icmp-error", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 593 | .vector_size = sizeof (u32), |
| 594 | |
| 595 | .n_errors = ARRAY_LEN (icmp_error_strings), |
| 596 | .error_strings = icmp_error_strings, |
| 597 | |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 598 | .n_next_nodes = IP4_ICMP_ERROR_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 599 | .next_nodes = { |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 600 | [IP4_ICMP_ERROR_NEXT_DROP] = "ip4-drop", |
Ole Troan | 92eade1 | 2016-01-13 20:17:08 +0100 | [diff] [blame] | 601 | [IP4_ICMP_ERROR_NEXT_LOOKUP] = "ip4-lookup", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 602 | }, |
| 603 | |
| 604 | .format_trace = format_icmp_input_trace, |
| 605 | }; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 606 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 607 | |
| 608 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 609 | static uword |
| 610 | unformat_icmp_type_and_code (unformat_input_t * input, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 611 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 612 | icmp46_header_t *h = va_arg (*args, icmp46_header_t *); |
| 613 | icmp4_main_t *cm = &icmp4_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 614 | u32 i; |
| 615 | |
| 616 | if (unformat_user (input, unformat_vlib_number_by_name, |
| 617 | cm->type_and_code_by_name, &i)) |
| 618 | { |
| 619 | h->type = (i >> 8) & 0xff; |
| 620 | h->code = (i >> 0) & 0xff; |
| 621 | } |
| 622 | else if (unformat_user (input, unformat_vlib_number_by_name, |
| 623 | cm->type_by_name, &i)) |
| 624 | { |
| 625 | h->type = i; |
| 626 | h->code = 0; |
| 627 | } |
| 628 | else |
| 629 | return 0; |
| 630 | |
| 631 | return 1; |
| 632 | } |
| 633 | |
| 634 | static void |
| 635 | icmp4_pg_edit_function (pg_main_t * pg, |
| 636 | pg_stream_t * s, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 637 | pg_edit_group_t * g, u32 * packets, u32 n_packets) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 638 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 639 | vlib_main_t *vm = vlib_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 640 | u32 ip_offset, icmp_offset; |
| 641 | |
| 642 | icmp_offset = g->start_byte_offset; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 643 | ip_offset = (g - 1)->start_byte_offset; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 644 | |
| 645 | while (n_packets >= 1) |
| 646 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 647 | vlib_buffer_t *p0; |
| 648 | ip4_header_t *ip0; |
| 649 | icmp46_header_t *icmp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 650 | u32 len0; |
| 651 | |
| 652 | p0 = vlib_get_buffer (vm, packets[0]); |
| 653 | n_packets -= 1; |
| 654 | packets += 1; |
| 655 | |
| 656 | ASSERT (p0->current_data == 0); |
| 657 | ip0 = (void *) (p0->data + ip_offset); |
| 658 | icmp0 = (void *) (p0->data + icmp_offset); |
Kingwel Xie | a91866f | 2018-10-26 23:26:06 -0400 | [diff] [blame] | 659 | |
| 660 | /* if IP length has been specified, then calculate the length based on buffer */ |
| 661 | if (ip0->length == 0) |
| 662 | len0 = vlib_buffer_length_in_chain (vm, p0) - icmp_offset; |
| 663 | else |
| 664 | len0 = clib_net_to_host_u16 (ip0->length) - icmp_offset; |
| 665 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 666 | icmp0->checksum = |
| 667 | ~ip_csum_fold (ip_incremental_checksum (0, icmp0, len0)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 668 | } |
| 669 | } |
| 670 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 671 | typedef struct |
| 672 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 673 | pg_edit_t type, code; |
| 674 | pg_edit_t checksum; |
| 675 | } pg_icmp46_header_t; |
| 676 | |
| 677 | always_inline void |
| 678 | pg_icmp_header_init (pg_icmp46_header_t * p) |
| 679 | { |
| 680 | /* Initialize fields that are not bit fields in the IP header. */ |
| 681 | #define _(f) pg_edit_init (&p->f, icmp46_header_t, f); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 682 | _(type); |
| 683 | _(code); |
| 684 | _(checksum); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 685 | #undef _ |
| 686 | } |
| 687 | |
| 688 | static uword |
| 689 | unformat_pg_icmp_header (unformat_input_t * input, va_list * args) |
| 690 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 691 | pg_stream_t *s = va_arg (*args, pg_stream_t *); |
| 692 | pg_icmp46_header_t *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 693 | u32 group_index; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 694 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 695 | p = pg_create_edit_group (s, sizeof (p[0]), sizeof (icmp46_header_t), |
| 696 | &group_index); |
| 697 | pg_icmp_header_init (p); |
| 698 | |
| 699 | p->checksum.type = PG_EDIT_UNSPECIFIED; |
| 700 | |
| 701 | { |
| 702 | icmp46_header_t tmp; |
| 703 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 704 | if (!unformat (input, "ICMP %U", unformat_icmp_type_and_code, &tmp)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 705 | goto error; |
| 706 | |
| 707 | pg_edit_set_fixed (&p->type, tmp.type); |
| 708 | pg_edit_set_fixed (&p->code, tmp.code); |
| 709 | } |
| 710 | |
| 711 | /* Parse options. */ |
| 712 | while (1) |
| 713 | { |
| 714 | if (unformat (input, "checksum %U", |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 715 | unformat_pg_edit, unformat_pg_number, &p->checksum)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 716 | ; |
| 717 | |
| 718 | /* Can't parse input: try next protocol level. */ |
| 719 | else |
| 720 | break; |
| 721 | } |
| 722 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 723 | if (!unformat_user (input, unformat_pg_payload, s)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 724 | goto error; |
| 725 | |
| 726 | if (p->checksum.type == PG_EDIT_UNSPECIFIED) |
| 727 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 728 | pg_edit_group_t *g = pg_stream_get_group (s, group_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 729 | g->edit_function = icmp4_pg_edit_function; |
| 730 | g->edit_function_opaque = 0; |
| 731 | } |
| 732 | |
| 733 | return 1; |
| 734 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 735 | error: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 736 | /* Free up any edits we may have added. */ |
| 737 | pg_free_edit_group (s); |
| 738 | return 0; |
| 739 | } |
| 740 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 741 | void |
| 742 | 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] | 743 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 744 | icmp4_main_t *im = &icmp4_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 745 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 746 | ASSERT ((int) type < ARRAY_LEN (im->ip4_input_next_index_by_type)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 747 | im->ip4_input_next_index_by_type[type] |
| 748 | = vlib_node_add_next (vm, ip4_icmp_input_node.index, node_index); |
| 749 | } |
| 750 | |
| 751 | static clib_error_t * |
| 752 | icmp4_init (vlib_main_t * vm) |
| 753 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 754 | ip_main_t *im = &ip_main; |
| 755 | ip_protocol_info_t *pi; |
| 756 | icmp4_main_t *cm = &icmp4_main; |
| 757 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 758 | |
| 759 | error = vlib_call_init_function (vm, ip_main_init); |
| 760 | |
| 761 | if (error) |
| 762 | return error; |
| 763 | |
| 764 | pi = ip_get_protocol_info (im, IP_PROTOCOL_ICMP); |
| 765 | pi->format_header = format_ip4_icmp_header; |
| 766 | pi->unformat_pg_edit = unformat_pg_icmp_header; |
| 767 | |
| 768 | cm->type_by_name = hash_create_string (0, sizeof (uword)); |
| 769 | #define _(n,t) hash_set_mem (cm->type_by_name, #t, (n)); |
| 770 | foreach_icmp4_type; |
| 771 | #undef _ |
| 772 | |
| 773 | cm->type_and_code_by_name = hash_create_string (0, sizeof (uword)); |
| 774 | #define _(a,n,t) hash_set_mem (cm->type_by_name, #t, (n) | (ICMP4_##a << 8)); |
| 775 | foreach_icmp4_code; |
| 776 | #undef _ |
| 777 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 778 | clib_memset (cm->ip4_input_next_index_by_type, |
| 779 | ICMP_INPUT_NEXT_ERROR, |
| 780 | sizeof (cm->ip4_input_next_index_by_type)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 781 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 782 | ip4_icmp_register_type (vm, ICMP4_echo_request, |
| 783 | ip4_icmp_echo_request_node.index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 784 | |
| 785 | return 0; |
| 786 | } |
| 787 | |
| 788 | VLIB_INIT_FUNCTION (icmp4_init); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 789 | |
| 790 | /* |
| 791 | * fd.io coding-style-patch-verification: ON |
| 792 | * |
| 793 | * Local Variables: |
| 794 | * eval: (c-set-style "gnu") |
| 795 | * End: |
| 796 | */ |