blob: 5f9ffa3b2b713b478dc8c491dbdd97bb7acc7777 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Troan8034a362021-08-11 13:54:14 +020043#include <vnet/ip/ip_sas.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044
Dave Barachd7cb1b52016-12-09 09:52:16 -050045static char *icmp_error_strings[] = {
Ole Troan92eade12016-01-13 20:17:08 +010046#define _(f,s) s,
47 foreach_icmp4_error
48#undef _
49};
50
Dave Barachd7cb1b52016-12-09 09:52:16 -050051static u8 *
52format_ip4_icmp_type_and_code (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070053{
54 icmp4_type_t type = va_arg (*args, int);
55 u8 code = va_arg (*args, int);
Dave Barachd7cb1b52016-12-09 09:52:16 -050056 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057
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 Barachd7cb1b52016-12-09 09:52:16 -050070 if (!t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070071 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 Barachd7cb1b52016-12-09 09:52:16 -050091static u8 *
92format_ip4_icmp_header (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070093{
Dave Barachd7cb1b52016-12-09 09:52:16 -050094 icmp46_header_t *icmp = va_arg (*args, icmp46_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070095 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
Klement Sekera78ef61e2020-11-25 16:47:00 +0000105 if ((ICMP4_echo_request == icmp->type || ICMP4_echo_reply == icmp->type)
106 && sizeof (icmp[0]) + sizeof (u16) < max_header_bytes)
107 {
108 s = format (s, " id %u", clib_net_to_host_u16 (*(u16 *) (icmp + 1)));
109 }
110
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 return s;
112}
113
Dave Barachd7cb1b52016-12-09 09:52:16 -0500114static u8 *
115format_icmp_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116{
117 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
118 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500119 icmp_input_trace_t *t = va_arg (*va, icmp_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
121 s = format (s, "%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122 format_ip4_header, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
124 return s;
125}
126
Dave Barachd7cb1b52016-12-09 09:52:16 -0500127typedef enum
128{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 ICMP_INPUT_NEXT_ERROR,
130 ICMP_INPUT_N_NEXT,
131} icmp_input_next_t;
132
Dave Barachd7cb1b52016-12-09 09:52:16 -0500133typedef struct
134{
135 uword *type_and_code_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Dave Barachd7cb1b52016-12-09 09:52:16 -0500137 uword *type_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139 /* Vector dispatch table indexed by [icmp type]. */
140 u8 ip4_input_next_index_by_type[256];
141} icmp4_main_t;
142
143icmp4_main_t icmp4_main;
144
145static uword
146ip4_icmp_input (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500147 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500149 icmp4_main_t *im = &icmp4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500151 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 u32 n_left_from, n_left_to_next, next;
153
154 from = vlib_frame_vector_args (frame);
155 n_left_from = n_packets;
156 next = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500157
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 if (node->flags & VLIB_NODE_FLAG_TRACE)
159 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
160 /* stride */ 1,
161 sizeof (icmp_input_trace_t));
162
163 while (n_left_from > 0)
164 {
165 vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
166
167 while (n_left_from > 0 && n_left_to_next > 0)
168 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500169 vlib_buffer_t *p0;
170 ip4_header_t *ip0;
171 icmp46_header_t *icmp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172 icmp4_type_t type0;
173 u32 bi0, next0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500174
175 if (PREDICT_TRUE (n_left_from > 2))
176 {
177 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
178 p0 = vlib_get_buffer (vm, from[1]);
179 ip0 = vlib_buffer_get_current (p0);
Damjan Marionaf7fb042021-07-15 11:54:41 +0200180 clib_prefetch_load (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500181 }
182
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 bi0 = to_next[0] = from[0];
184
185 from += 1;
186 n_left_from -= 1;
187 to_next += 1;
188 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500189
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190 p0 = vlib_get_buffer (vm, bi0);
191 ip0 = vlib_buffer_get_current (p0);
192 icmp0 = ip4_next_header (ip0);
193 type0 = icmp0->type;
194 next0 = im->ip4_input_next_index_by_type[type0];
195
196 p0->error = node->errors[ICMP4_ERROR_UNKNOWN_TYPE];
jackiechen198523551d62019-04-30 17:01:29 +0800197
198 /* Verify speculative enqueue, maybe switch current next frame */
199 vlib_validate_buffer_enqueue_x1 (vm, node, next, to_next,
200 n_left_to_next, bi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500202
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 vlib_put_next_frame (vm, node, next, n_left_to_next);
204 }
205
206 return frame->n_vectors;
207}
208
Dave Barachd7cb1b52016-12-09 09:52:16 -0500209/* *INDENT-OFF* */
Neale Rannsf6c8f502019-10-25 01:40:47 -0700210VLIB_REGISTER_NODE (ip4_icmp_input_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 .function = ip4_icmp_input,
212 .name = "ip4-icmp-input",
213
214 .vector_size = sizeof (u32),
215
216 .format_trace = format_icmp_input_trace,
217
218 .n_errors = ARRAY_LEN (icmp_error_strings),
219 .error_strings = icmp_error_strings,
220
221 .n_next_nodes = 1,
222 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -0800223 [ICMP_INPUT_NEXT_ERROR] = "ip4-punt",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224 },
225};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500226/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227
Dave Barachd7cb1b52016-12-09 09:52:16 -0500228typedef enum
229{
Ole Troan92eade12016-01-13 20:17:08 +0100230 IP4_ICMP_ERROR_NEXT_DROP,
231 IP4_ICMP_ERROR_NEXT_LOOKUP,
232 IP4_ICMP_ERROR_N_NEXT,
233} ip4_icmp_error_next_t;
234
Ole Troan92eade12016-01-13 20:17:08 +0100235static u8
236icmp4_icmp_type_to_error (u8 type)
237{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500238 switch (type)
239 {
240 case ICMP4_destination_unreachable:
241 return ICMP4_ERROR_DEST_UNREACH_SENT;
242 case ICMP4_time_exceeded:
243 return ICMP4_ERROR_TTL_EXPIRE_SENT;
244 case ICMP4_parameter_problem:
245 return ICMP4_ERROR_PARAM_PROBLEM_SENT;
246 default:
247 return ICMP4_ERROR_DROP;
248 }
Ole Troan92eade12016-01-13 20:17:08 +0100249}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251static uword
Ole Troan92eade12016-01-13 20:17:08 +0100252ip4_icmp_error (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500253 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500255 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 uword n_left_from, n_left_to_next;
Ole Troan92eade12016-01-13 20:17:08 +0100257 ip4_icmp_error_next_t next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258
Dave Barachd7cb1b52016-12-09 09:52:16 -0500259 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260 n_left_from = frame->n_vectors;
261 next_index = node->cached_next_index;
262
263 if (node->flags & VLIB_NODE_FLAG_TRACE)
264 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500265 /* stride */ 1,
266 sizeof (icmp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267
Dave Barachd7cb1b52016-12-09 09:52:16 -0500268 while (n_left_from > 0)
269 {
270 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271
Dave Barachd7cb1b52016-12-09 09:52:16 -0500272 while (n_left_from > 0 && n_left_to_next > 0)
273 {
Ole Troanda7f7b62019-03-11 13:15:54 +0100274 /*
275 * Duplicate first buffer and free the original chain. Keep
276 * as much of the original packet as possible, within the
277 * minimum MTU. We chat "a little" here by keeping whatever
278 * is available in the first buffer.
279 */
280
281 u32 pi0 = ~0;
282 u32 org_pi0 = from[0];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500283 u32 next0 = IP4_ICMP_ERROR_NEXT_LOOKUP;
284 u8 error0 = ICMP4_ERROR_NONE;
Ole Troanda7f7b62019-03-11 13:15:54 +0100285 vlib_buffer_t *p0, *org_p0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500286 ip4_header_t *ip0, *out_ip0;
287 icmp46_header_t *icmp0;
Ole Troan8034a362021-08-11 13:54:14 +0200288 u32 sw_if_index0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500289 ip_csum_t sum;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
Ole Troanda7f7b62019-03-11 13:15:54 +0100291 org_p0 = vlib_get_buffer (vm, org_pi0);
292 p0 = vlib_buffer_copy_no_chain (vm, org_p0, &pi0);
Ole Troanda7f7b62019-03-11 13:15:54 +0100293 if (!p0 || pi0 == ~0) /* Out of buffers */
294 continue;
295
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296 /* Speculatively enqueue p0 to the current next frame */
297 to_next[0] = pi0;
298 from += 1;
299 to_next += 1;
300 n_left_from -= 1;
301 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302
Dave Barachd7cb1b52016-12-09 09:52:16 -0500303 ip0 = vlib_buffer_get_current (p0);
304 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 /* Add IP header and ICMPv4 header including a 4 byte data field */
307 vlib_buffer_advance (p0,
308 -sizeof (ip4_header_t) -
309 sizeof (icmp46_header_t) - 4);
Ole Troan8a9c8f12018-05-18 11:01:31 +0200310
311 p0->current_length =
312 p0->current_length > 576 ? 576 : p0->current_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500313 out_ip0 = vlib_buffer_get_current (p0);
314 icmp0 = (icmp46_header_t *) & out_ip0[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315
Dave Barachd7cb1b52016-12-09 09:52:16 -0500316 /* Fill ip header fields */
317 out_ip0->ip_version_and_header_length = 0x45;
318 out_ip0->tos = 0;
319 out_ip0->length = clib_host_to_net_u16 (p0->current_length);
320 out_ip0->fragment_id = 0;
321 out_ip0->flags_and_fragment_offset = 0;
322 out_ip0->ttl = 0xff;
323 out_ip0->protocol = IP_PROTOCOL_ICMP;
324 out_ip0->dst_address = ip0->src_address;
Ole Troan8034a362021-08-11 13:54:14 +0200325 /* Prefer a source address from "offending interface" */
326 if (!ip4_sas_by_sw_if_index (sw_if_index0, &out_ip0->dst_address,
327 &out_ip0->src_address))
328 { /* interface has no IP6 address - should not happen */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500329 next0 = IP4_ICMP_ERROR_NEXT_DROP;
330 error0 = ICMP4_ERROR_DROP;
331 }
Ole Troan8034a362021-08-11 13:54:14 +0200332
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333 out_ip0->checksum = ip4_header_checksum (out_ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 /* Fill icmp header fields */
336 icmp0->type = vnet_buffer (p0)->ip.icmp.type;
337 icmp0->code = vnet_buffer (p0)->ip.icmp.code;
338 *((u32 *) (icmp0 + 1)) =
339 clib_host_to_net_u32 (vnet_buffer (p0)->ip.icmp.data);
340 icmp0->checksum = 0;
341 sum =
342 ip_incremental_checksum (0, icmp0,
343 p0->current_length -
344 sizeof (ip4_header_t));
345 icmp0->checksum = ~ip_csum_fold (sum);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
Dave Barachd7cb1b52016-12-09 09:52:16 -0500347 /* Update error status */
348 if (error0 == ICMP4_ERROR_NONE)
349 error0 = icmp4_icmp_type_to_error (icmp0->type);
Ole Troanda7f7b62019-03-11 13:15:54 +0100350
Dave Barachd7cb1b52016-12-09 09:52:16 -0500351 vlib_error_count (vm, node->node_index, error0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352
Dave Barachd7cb1b52016-12-09 09:52:16 -0500353 /* Verify speculative enqueue, maybe switch current next frame */
354 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
355 to_next, n_left_to_next,
356 pi0, next0);
357 }
358 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 }
360
Kingwel Xie27431dd2019-03-20 21:47:17 -0400361 /*
362 * push the original buffers to error-drop, so that
363 * they can get the error counters handled, then freed
364 */
365 vlib_buffer_enqueue_to_single_next (vm, node,
366 vlib_frame_vector_args (frame),
367 IP4_ICMP_ERROR_NEXT_DROP,
368 frame->n_vectors);
369
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370 return frame->n_vectors;
371}
372
Dave Barachd7cb1b52016-12-09 09:52:16 -0500373/* *INDENT-OFF* */
Ole Troan92eade12016-01-13 20:17:08 +0100374VLIB_REGISTER_NODE (ip4_icmp_error_node) = {
375 .function = ip4_icmp_error,
376 .name = "ip4-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377 .vector_size = sizeof (u32),
378
379 .n_errors = ARRAY_LEN (icmp_error_strings),
380 .error_strings = icmp_error_strings,
381
Ole Troan92eade12016-01-13 20:17:08 +0100382 .n_next_nodes = IP4_ICMP_ERROR_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -0800384 [IP4_ICMP_ERROR_NEXT_DROP] = "ip4-drop",
Ole Troan92eade12016-01-13 20:17:08 +0100385 [IP4_ICMP_ERROR_NEXT_LOOKUP] = "ip4-lookup",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 },
387
388 .format_trace = format_icmp_input_trace,
389};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500390/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391
392
Dave Barachd7cb1b52016-12-09 09:52:16 -0500393static uword
394unformat_icmp_type_and_code (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396 icmp46_header_t *h = va_arg (*args, icmp46_header_t *);
397 icmp4_main_t *cm = &icmp4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 u32 i;
399
400 if (unformat_user (input, unformat_vlib_number_by_name,
401 cm->type_and_code_by_name, &i))
402 {
403 h->type = (i >> 8) & 0xff;
404 h->code = (i >> 0) & 0xff;
405 }
406 else if (unformat_user (input, unformat_vlib_number_by_name,
407 cm->type_by_name, &i))
408 {
409 h->type = i;
410 h->code = 0;
411 }
412 else
413 return 0;
414
415 return 1;
416}
417
418static void
419icmp4_pg_edit_function (pg_main_t * pg,
420 pg_stream_t * s,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500421 pg_edit_group_t * g, u32 * packets, u32 n_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500423 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 u32 ip_offset, icmp_offset;
425
426 icmp_offset = g->start_byte_offset;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500427 ip_offset = (g - 1)->start_byte_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428
429 while (n_packets >= 1)
430 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500431 vlib_buffer_t *p0;
432 ip4_header_t *ip0;
433 icmp46_header_t *icmp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434 u32 len0;
435
436 p0 = vlib_get_buffer (vm, packets[0]);
437 n_packets -= 1;
438 packets += 1;
439
440 ASSERT (p0->current_data == 0);
441 ip0 = (void *) (p0->data + ip_offset);
442 icmp0 = (void *) (p0->data + icmp_offset);
Kingwel Xiea91866f2018-10-26 23:26:06 -0400443
444 /* if IP length has been specified, then calculate the length based on buffer */
445 if (ip0->length == 0)
446 len0 = vlib_buffer_length_in_chain (vm, p0) - icmp_offset;
447 else
448 len0 = clib_net_to_host_u16 (ip0->length) - icmp_offset;
449
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 icmp0->checksum =
451 ~ip_csum_fold (ip_incremental_checksum (0, icmp0, len0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452 }
453}
454
Dave Barachd7cb1b52016-12-09 09:52:16 -0500455typedef struct
456{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457 pg_edit_t type, code;
458 pg_edit_t checksum;
459} pg_icmp46_header_t;
460
461always_inline void
462pg_icmp_header_init (pg_icmp46_header_t * p)
463{
464 /* Initialize fields that are not bit fields in the IP header. */
465#define _(f) pg_edit_init (&p->f, icmp46_header_t, f);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500466 _(type);
467 _(code);
468 _(checksum);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469#undef _
470}
471
472static uword
473unformat_pg_icmp_header (unformat_input_t * input, va_list * args)
474{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500475 pg_stream_t *s = va_arg (*args, pg_stream_t *);
476 pg_icmp46_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477 u32 group_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500478
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (icmp46_header_t),
480 &group_index);
481 pg_icmp_header_init (p);
482
483 p->checksum.type = PG_EDIT_UNSPECIFIED;
484
485 {
486 icmp46_header_t tmp;
487
Dave Barachd7cb1b52016-12-09 09:52:16 -0500488 if (!unformat (input, "ICMP %U", unformat_icmp_type_and_code, &tmp))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 goto error;
490
491 pg_edit_set_fixed (&p->type, tmp.type);
492 pg_edit_set_fixed (&p->code, tmp.code);
493 }
494
495 /* Parse options. */
496 while (1)
497 {
498 if (unformat (input, "checksum %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500499 unformat_pg_edit, unformat_pg_number, &p->checksum))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700500 ;
501
502 /* Can't parse input: try next protocol level. */
503 else
504 break;
505 }
506
Dave Barachd7cb1b52016-12-09 09:52:16 -0500507 if (!unformat_user (input, unformat_pg_payload, s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 goto error;
509
510 if (p->checksum.type == PG_EDIT_UNSPECIFIED)
511 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500512 pg_edit_group_t *g = pg_stream_get_group (s, group_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513 g->edit_function = icmp4_pg_edit_function;
514 g->edit_function_opaque = 0;
515 }
516
517 return 1;
518
Dave Barachd7cb1b52016-12-09 09:52:16 -0500519error:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520 /* Free up any edits we may have added. */
521 pg_free_edit_group (s);
522 return 0;
523}
524
Dave Barachd7cb1b52016-12-09 09:52:16 -0500525void
526ip4_icmp_register_type (vlib_main_t * vm, icmp4_type_t type, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500528 icmp4_main_t *im = &icmp4_main;
Dave Barach34716fa2019-05-23 12:38:22 -0400529 u32 old_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530
Dave Barachd7cb1b52016-12-09 09:52:16 -0500531 ASSERT ((int) type < ARRAY_LEN (im->ip4_input_next_index_by_type));
Dave Barach34716fa2019-05-23 12:38:22 -0400532 old_next_index = im->ip4_input_next_index_by_type[type];
533
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534 im->ip4_input_next_index_by_type[type]
535 = vlib_node_add_next (vm, ip4_icmp_input_node.index, node_index);
Dave Barach34716fa2019-05-23 12:38:22 -0400536
537 if (old_next_index &&
538 (old_next_index != im->ip4_input_next_index_by_type[type]))
539 clib_warning ("WARNING: changed next_by_type[%d]", (int) type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540}
541
542static clib_error_t *
543icmp4_init (vlib_main_t * vm)
544{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500545 ip_main_t *im = &ip_main;
546 ip_protocol_info_t *pi;
547 icmp4_main_t *cm = &icmp4_main;
548 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
550 error = vlib_call_init_function (vm, ip_main_init);
551
552 if (error)
553 return error;
554
555 pi = ip_get_protocol_info (im, IP_PROTOCOL_ICMP);
556 pi->format_header = format_ip4_icmp_header;
557 pi->unformat_pg_edit = unformat_pg_icmp_header;
558
559 cm->type_by_name = hash_create_string (0, sizeof (uword));
560#define _(n,t) hash_set_mem (cm->type_by_name, #t, (n));
561 foreach_icmp4_type;
562#undef _
563
564 cm->type_and_code_by_name = hash_create_string (0, sizeof (uword));
565#define _(a,n,t) hash_set_mem (cm->type_by_name, #t, (n) | (ICMP4_##a << 8));
566 foreach_icmp4_code;
567#undef _
568
Dave Barachb7b92992018-10-17 10:38:51 -0400569 clib_memset (cm->ip4_input_next_index_by_type,
570 ICMP_INPUT_NEXT_ERROR,
571 sizeof (cm->ip4_input_next_index_by_type));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573 return 0;
574}
575
576VLIB_INIT_FUNCTION (icmp4_init);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500577
578/*
579 * fd.io coding-style-patch-verification: ON
580 *
581 * Local Variables:
582 * eval: (c-set-style "gnu")
583 * End:
584 */