blob: 857c3b1d2a56be6dbe392b788885e5cb5a085149 [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>
Neale Ranns5c6dd172022-02-17 09:08:47 +000044#include <vnet/util/throttle.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
Dave Barachd7cb1b52016-12-09 09:52:16 -050046static char *icmp_error_strings[] = {
Ole Troan92eade12016-01-13 20:17:08 +010047#define _(f,s) s,
48 foreach_icmp4_error
49#undef _
50};
51
Neale Ranns5c6dd172022-02-17 09:08:47 +000052/** ICMP throttling */
53static throttle_t icmp_throttle;
54
Dave Barachd7cb1b52016-12-09 09:52:16 -050055static u8 *
56format_ip4_icmp_type_and_code (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070057{
58 icmp4_type_t type = va_arg (*args, int);
59 u8 code = va_arg (*args, int);
Dave Barachd7cb1b52016-12-09 09:52:16 -050060 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
62#define _(n,f) case n: t = #f; break;
63
64 switch (type)
65 {
66 foreach_icmp4_type;
67
68 default:
69 break;
70 }
71
72#undef _
73
Dave Barachd7cb1b52016-12-09 09:52:16 -050074 if (!t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 return format (s, "unknown 0x%x", type);
76
77 s = format (s, "%s", t);
78
79 t = 0;
80 switch ((type << 8) | code)
81 {
82#define _(a,n,f) case (ICMP4_##a << 8) | (n): t = #f; break;
83
84 foreach_icmp4_code;
85
86#undef _
87 }
88
89 if (t)
90 s = format (s, " %s", t);
91
92 return s;
93}
94
Dave Barachd7cb1b52016-12-09 09:52:16 -050095static u8 *
96format_ip4_icmp_header (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070097{
Dave Barachd7cb1b52016-12-09 09:52:16 -050098 icmp46_header_t *icmp = va_arg (*args, icmp46_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070099 u32 max_header_bytes = va_arg (*args, u32);
100
101 /* Nothing to do. */
102 if (max_header_bytes < sizeof (icmp[0]))
103 return format (s, "ICMP header truncated");
104
105 s = format (s, "ICMP %U checksum 0x%x",
106 format_ip4_icmp_type_and_code, icmp->type, icmp->code,
107 clib_net_to_host_u16 (icmp->checksum));
108
Klement Sekera78ef61e2020-11-25 16:47:00 +0000109 if ((ICMP4_echo_request == icmp->type || ICMP4_echo_reply == icmp->type)
110 && sizeof (icmp[0]) + sizeof (u16) < max_header_bytes)
111 {
112 s = format (s, " id %u", clib_net_to_host_u16 (*(u16 *) (icmp + 1)));
113 }
114
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 return s;
116}
117
Dave Barachd7cb1b52016-12-09 09:52:16 -0500118static u8 *
119format_icmp_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120{
121 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
122 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500123 icmp_input_trace_t *t = va_arg (*va, icmp_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
125 s = format (s, "%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500126 format_ip4_header, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127
128 return s;
129}
130
Dave Barachd7cb1b52016-12-09 09:52:16 -0500131typedef enum
132{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 ICMP_INPUT_NEXT_ERROR,
134 ICMP_INPUT_N_NEXT,
135} icmp_input_next_t;
136
Dave Barachd7cb1b52016-12-09 09:52:16 -0500137typedef struct
138{
139 uword *type_and_code_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140
Dave Barachd7cb1b52016-12-09 09:52:16 -0500141 uword *type_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142
143 /* Vector dispatch table indexed by [icmp type]. */
144 u8 ip4_input_next_index_by_type[256];
145} icmp4_main_t;
146
147icmp4_main_t icmp4_main;
148
149static uword
150ip4_icmp_input (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500151 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500153 icmp4_main_t *im = &icmp4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500155 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156 u32 n_left_from, n_left_to_next, next;
157
158 from = vlib_frame_vector_args (frame);
159 n_left_from = n_packets;
160 next = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162 if (node->flags & VLIB_NODE_FLAG_TRACE)
163 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
164 /* stride */ 1,
165 sizeof (icmp_input_trace_t));
166
167 while (n_left_from > 0)
168 {
169 vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
170
171 while (n_left_from > 0 && n_left_to_next > 0)
172 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500173 vlib_buffer_t *p0;
174 ip4_header_t *ip0;
175 icmp46_header_t *icmp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 icmp4_type_t type0;
177 u32 bi0, next0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500178
179 if (PREDICT_TRUE (n_left_from > 2))
180 {
181 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
182 p0 = vlib_get_buffer (vm, from[1]);
183 ip0 = vlib_buffer_get_current (p0);
Damjan Marionaf7fb042021-07-15 11:54:41 +0200184 clib_prefetch_load (ip0);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500185 }
186
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 bi0 = to_next[0] = from[0];
188
189 from += 1;
190 n_left_from -= 1;
191 to_next += 1;
192 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500193
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194 p0 = vlib_get_buffer (vm, bi0);
195 ip0 = vlib_buffer_get_current (p0);
196 icmp0 = ip4_next_header (ip0);
197 type0 = icmp0->type;
198 next0 = im->ip4_input_next_index_by_type[type0];
199
200 p0->error = node->errors[ICMP4_ERROR_UNKNOWN_TYPE];
jackiechen198523551d62019-04-30 17:01:29 +0800201
202 /* Verify speculative enqueue, maybe switch current next frame */
203 vlib_validate_buffer_enqueue_x1 (vm, node, next, to_next,
204 n_left_to_next, bi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500206
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 vlib_put_next_frame (vm, node, next, n_left_to_next);
208 }
209
210 return frame->n_vectors;
211}
212
Dave Barachd7cb1b52016-12-09 09:52:16 -0500213/* *INDENT-OFF* */
Neale Rannsf6c8f502019-10-25 01:40:47 -0700214VLIB_REGISTER_NODE (ip4_icmp_input_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 .function = ip4_icmp_input,
216 .name = "ip4-icmp-input",
217
218 .vector_size = sizeof (u32),
219
220 .format_trace = format_icmp_input_trace,
221
222 .n_errors = ARRAY_LEN (icmp_error_strings),
223 .error_strings = icmp_error_strings,
224
225 .n_next_nodes = 1,
226 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -0800227 [ICMP_INPUT_NEXT_ERROR] = "ip4-punt",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228 },
229};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500230/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231
Dave Barachd7cb1b52016-12-09 09:52:16 -0500232typedef enum
233{
Ole Troan92eade12016-01-13 20:17:08 +0100234 IP4_ICMP_ERROR_NEXT_DROP,
235 IP4_ICMP_ERROR_NEXT_LOOKUP,
236 IP4_ICMP_ERROR_N_NEXT,
237} ip4_icmp_error_next_t;
238
Ole Troan92eade12016-01-13 20:17:08 +0100239static u8
240icmp4_icmp_type_to_error (u8 type)
241{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500242 switch (type)
243 {
244 case ICMP4_destination_unreachable:
245 return ICMP4_ERROR_DEST_UNREACH_SENT;
246 case ICMP4_time_exceeded:
247 return ICMP4_ERROR_TTL_EXPIRE_SENT;
248 case ICMP4_parameter_problem:
249 return ICMP4_ERROR_PARAM_PROBLEM_SENT;
250 default:
251 return ICMP4_ERROR_DROP;
252 }
Ole Troan92eade12016-01-13 20:17:08 +0100253}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
255static uword
Ole Troan92eade12016-01-13 20:17:08 +0100256ip4_icmp_error (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500257 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500259 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260 uword n_left_from, n_left_to_next;
Ole Troan92eade12016-01-13 20:17:08 +0100261 ip4_icmp_error_next_t next_index;
Neale Ranns5c6dd172022-02-17 09:08:47 +0000262 u32 thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
Dave Barachd7cb1b52016-12-09 09:52:16 -0500264 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265 n_left_from = frame->n_vectors;
266 next_index = node->cached_next_index;
267
Neale Ranns5c6dd172022-02-17 09:08:47 +0000268 u64 seed = throttle_seed (&icmp_throttle, thread_index, vlib_time_now (vm));
269
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270 if (node->flags & VLIB_NODE_FLAG_TRACE)
271 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500272 /* stride */ 1,
273 sizeof (icmp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
Dave Barachd7cb1b52016-12-09 09:52:16 -0500275 while (n_left_from > 0)
276 {
277 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278
Dave Barachd7cb1b52016-12-09 09:52:16 -0500279 while (n_left_from > 0 && n_left_to_next > 0)
280 {
Ole Troanda7f7b62019-03-11 13:15:54 +0100281 /*
282 * Duplicate first buffer and free the original chain. Keep
283 * as much of the original packet as possible, within the
284 * minimum MTU. We chat "a little" here by keeping whatever
285 * is available in the first buffer.
286 */
287
288 u32 pi0 = ~0;
289 u32 org_pi0 = from[0];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500290 u32 next0 = IP4_ICMP_ERROR_NEXT_LOOKUP;
291 u8 error0 = ICMP4_ERROR_NONE;
Ole Troanda7f7b62019-03-11 13:15:54 +0100292 vlib_buffer_t *p0, *org_p0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 ip4_header_t *ip0, *out_ip0;
294 icmp46_header_t *icmp0;
Ole Troan8034a362021-08-11 13:54:14 +0200295 u32 sw_if_index0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296 ip_csum_t sum;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
Ole Troanda7f7b62019-03-11 13:15:54 +0100298 org_p0 = vlib_get_buffer (vm, org_pi0);
Neale Ranns5c6dd172022-02-17 09:08:47 +0000299 ip0 = vlib_buffer_get_current (org_p0);
300
301 /* Rate limit based on the src,dst addresses in the original packet
302 */
303 u64 r0 =
304 (u64) ip0->dst_address.as_u32 << 32 | ip0->src_address.as_u32;
305
306 if (throttle_check (&icmp_throttle, thread_index, r0, seed))
307 {
308 vlib_error_count (vm, node->node_index, ICMP4_ERROR_DROP, 1);
309 from += 1;
310 n_left_from -= 1;
311 continue;
312 }
313
Ole Troanda7f7b62019-03-11 13:15:54 +0100314 p0 = vlib_buffer_copy_no_chain (vm, org_p0, &pi0);
Ole Troanda7f7b62019-03-11 13:15:54 +0100315 if (!p0 || pi0 == ~0) /* Out of buffers */
316 continue;
317
Dave Barachd7cb1b52016-12-09 09:52:16 -0500318 /* Speculatively enqueue p0 to the current next frame */
319 to_next[0] = pi0;
320 from += 1;
321 to_next += 1;
322 n_left_from -= 1;
323 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324
Dave Barachd7cb1b52016-12-09 09:52:16 -0500325 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
Neale Ranns5c6dd172022-02-17 09:08:47 +0000327 vlib_buffer_copy_trace_flag (vm, p0, pi0);
328
Dave Barachd7cb1b52016-12-09 09:52:16 -0500329 /* Add IP header and ICMPv4 header including a 4 byte data field */
330 vlib_buffer_advance (p0,
331 -sizeof (ip4_header_t) -
332 sizeof (icmp46_header_t) - 4);
Ole Troan8a9c8f12018-05-18 11:01:31 +0200333
334 p0->current_length =
335 p0->current_length > 576 ? 576 : p0->current_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336 out_ip0 = vlib_buffer_get_current (p0);
337 icmp0 = (icmp46_header_t *) & out_ip0[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338
Dave Barachd7cb1b52016-12-09 09:52:16 -0500339 /* Fill ip header fields */
340 out_ip0->ip_version_and_header_length = 0x45;
341 out_ip0->tos = 0;
342 out_ip0->length = clib_host_to_net_u16 (p0->current_length);
343 out_ip0->fragment_id = 0;
344 out_ip0->flags_and_fragment_offset = 0;
345 out_ip0->ttl = 0xff;
346 out_ip0->protocol = IP_PROTOCOL_ICMP;
347 out_ip0->dst_address = ip0->src_address;
Ole Troan8034a362021-08-11 13:54:14 +0200348 /* Prefer a source address from "offending interface" */
349 if (!ip4_sas_by_sw_if_index (sw_if_index0, &out_ip0->dst_address,
350 &out_ip0->src_address))
351 { /* interface has no IP6 address - should not happen */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500352 next0 = IP4_ICMP_ERROR_NEXT_DROP;
353 error0 = ICMP4_ERROR_DROP;
354 }
Ole Troan8034a362021-08-11 13:54:14 +0200355
Dave Barachd7cb1b52016-12-09 09:52:16 -0500356 out_ip0->checksum = ip4_header_checksum (out_ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357
Dave Barachd7cb1b52016-12-09 09:52:16 -0500358 /* Fill icmp header fields */
359 icmp0->type = vnet_buffer (p0)->ip.icmp.type;
360 icmp0->code = vnet_buffer (p0)->ip.icmp.code;
361 *((u32 *) (icmp0 + 1)) =
362 clib_host_to_net_u32 (vnet_buffer (p0)->ip.icmp.data);
363 icmp0->checksum = 0;
364 sum =
365 ip_incremental_checksum (0, icmp0,
366 p0->current_length -
367 sizeof (ip4_header_t));
368 icmp0->checksum = ~ip_csum_fold (sum);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Dave Barachd7cb1b52016-12-09 09:52:16 -0500370 /* Update error status */
371 if (error0 == ICMP4_ERROR_NONE)
372 error0 = icmp4_icmp_type_to_error (icmp0->type);
Ole Troanda7f7b62019-03-11 13:15:54 +0100373
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374 vlib_error_count (vm, node->node_index, error0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376 /* Verify speculative enqueue, maybe switch current next frame */
377 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
378 to_next, n_left_to_next,
379 pi0, next0);
380 }
381 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 }
383
Kingwel Xie27431dd2019-03-20 21:47:17 -0400384 /*
385 * push the original buffers to error-drop, so that
386 * they can get the error counters handled, then freed
387 */
388 vlib_buffer_enqueue_to_single_next (vm, node,
389 vlib_frame_vector_args (frame),
390 IP4_ICMP_ERROR_NEXT_DROP,
391 frame->n_vectors);
392
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393 return frame->n_vectors;
394}
395
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396/* *INDENT-OFF* */
Ole Troan92eade12016-01-13 20:17:08 +0100397VLIB_REGISTER_NODE (ip4_icmp_error_node) = {
398 .function = ip4_icmp_error,
399 .name = "ip4-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 .vector_size = sizeof (u32),
401
402 .n_errors = ARRAY_LEN (icmp_error_strings),
403 .error_strings = icmp_error_strings,
404
Ole Troan92eade12016-01-13 20:17:08 +0100405 .n_next_nodes = IP4_ICMP_ERROR_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -0800407 [IP4_ICMP_ERROR_NEXT_DROP] = "ip4-drop",
Ole Troan92eade12016-01-13 20:17:08 +0100408 [IP4_ICMP_ERROR_NEXT_LOOKUP] = "ip4-lookup",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 },
410
411 .format_trace = format_icmp_input_trace,
412};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500413/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414
415
Dave Barachd7cb1b52016-12-09 09:52:16 -0500416static uword
417unformat_icmp_type_and_code (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500419 icmp46_header_t *h = va_arg (*args, icmp46_header_t *);
420 icmp4_main_t *cm = &icmp4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 u32 i;
422
423 if (unformat_user (input, unformat_vlib_number_by_name,
424 cm->type_and_code_by_name, &i))
425 {
426 h->type = (i >> 8) & 0xff;
427 h->code = (i >> 0) & 0xff;
428 }
429 else if (unformat_user (input, unformat_vlib_number_by_name,
430 cm->type_by_name, &i))
431 {
432 h->type = i;
433 h->code = 0;
434 }
435 else
436 return 0;
437
438 return 1;
439}
440
441static void
442icmp4_pg_edit_function (pg_main_t * pg,
443 pg_stream_t * s,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500444 pg_edit_group_t * g, u32 * packets, u32 n_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500446 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447 u32 ip_offset, icmp_offset;
448
449 icmp_offset = g->start_byte_offset;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 ip_offset = (g - 1)->start_byte_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451
452 while (n_packets >= 1)
453 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500454 vlib_buffer_t *p0;
455 ip4_header_t *ip0;
456 icmp46_header_t *icmp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457 u32 len0;
458
459 p0 = vlib_get_buffer (vm, packets[0]);
460 n_packets -= 1;
461 packets += 1;
462
463 ASSERT (p0->current_data == 0);
464 ip0 = (void *) (p0->data + ip_offset);
465 icmp0 = (void *) (p0->data + icmp_offset);
Kingwel Xiea91866f2018-10-26 23:26:06 -0400466
467 /* if IP length has been specified, then calculate the length based on buffer */
468 if (ip0->length == 0)
469 len0 = vlib_buffer_length_in_chain (vm, p0) - icmp_offset;
470 else
471 len0 = clib_net_to_host_u16 (ip0->length) - icmp_offset;
472
Dave Barachd7cb1b52016-12-09 09:52:16 -0500473 icmp0->checksum =
474 ~ip_csum_fold (ip_incremental_checksum (0, icmp0, len0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475 }
476}
477
Dave Barachd7cb1b52016-12-09 09:52:16 -0500478typedef struct
479{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480 pg_edit_t type, code;
481 pg_edit_t checksum;
482} pg_icmp46_header_t;
483
484always_inline void
485pg_icmp_header_init (pg_icmp46_header_t * p)
486{
487 /* Initialize fields that are not bit fields in the IP header. */
488#define _(f) pg_edit_init (&p->f, icmp46_header_t, f);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500489 _(type);
490 _(code);
491 _(checksum);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492#undef _
493}
494
495static uword
496unformat_pg_icmp_header (unformat_input_t * input, va_list * args)
497{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500498 pg_stream_t *s = va_arg (*args, pg_stream_t *);
499 pg_icmp46_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700500 u32 group_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500501
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (icmp46_header_t),
503 &group_index);
504 pg_icmp_header_init (p);
505
506 p->checksum.type = PG_EDIT_UNSPECIFIED;
507
508 {
509 icmp46_header_t tmp;
510
Dave Barachd7cb1b52016-12-09 09:52:16 -0500511 if (!unformat (input, "ICMP %U", unformat_icmp_type_and_code, &tmp))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512 goto error;
513
514 pg_edit_set_fixed (&p->type, tmp.type);
515 pg_edit_set_fixed (&p->code, tmp.code);
516 }
517
518 /* Parse options. */
519 while (1)
520 {
521 if (unformat (input, "checksum %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500522 unformat_pg_edit, unformat_pg_number, &p->checksum))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523 ;
524
525 /* Can't parse input: try next protocol level. */
526 else
527 break;
528 }
529
Dave Barachd7cb1b52016-12-09 09:52:16 -0500530 if (!unformat_user (input, unformat_pg_payload, s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531 goto error;
532
533 if (p->checksum.type == PG_EDIT_UNSPECIFIED)
534 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500535 pg_edit_group_t *g = pg_stream_get_group (s, group_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 g->edit_function = icmp4_pg_edit_function;
537 g->edit_function_opaque = 0;
538 }
539
540 return 1;
541
Dave Barachd7cb1b52016-12-09 09:52:16 -0500542error:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543 /* Free up any edits we may have added. */
544 pg_free_edit_group (s);
545 return 0;
546}
547
Dave Barachd7cb1b52016-12-09 09:52:16 -0500548void
549ip4_icmp_register_type (vlib_main_t * vm, icmp4_type_t type, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500551 icmp4_main_t *im = &icmp4_main;
Dave Barach34716fa2019-05-23 12:38:22 -0400552 u32 old_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553
Dave Barachd7cb1b52016-12-09 09:52:16 -0500554 ASSERT ((int) type < ARRAY_LEN (im->ip4_input_next_index_by_type));
Dave Barach34716fa2019-05-23 12:38:22 -0400555 old_next_index = im->ip4_input_next_index_by_type[type];
556
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557 im->ip4_input_next_index_by_type[type]
558 = vlib_node_add_next (vm, ip4_icmp_input_node.index, node_index);
Dave Barach34716fa2019-05-23 12:38:22 -0400559
560 if (old_next_index &&
561 (old_next_index != im->ip4_input_next_index_by_type[type]))
562 clib_warning ("WARNING: changed next_by_type[%d]", (int) type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563}
564
565static clib_error_t *
566icmp4_init (vlib_main_t * vm)
567{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500568 ip_main_t *im = &ip_main;
569 ip_protocol_info_t *pi;
570 icmp4_main_t *cm = &icmp4_main;
571 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
573 error = vlib_call_init_function (vm, ip_main_init);
574
575 if (error)
576 return error;
577
578 pi = ip_get_protocol_info (im, IP_PROTOCOL_ICMP);
579 pi->format_header = format_ip4_icmp_header;
580 pi->unformat_pg_edit = unformat_pg_icmp_header;
581
582 cm->type_by_name = hash_create_string (0, sizeof (uword));
583#define _(n,t) hash_set_mem (cm->type_by_name, #t, (n));
584 foreach_icmp4_type;
585#undef _
586
587 cm->type_and_code_by_name = hash_create_string (0, sizeof (uword));
588#define _(a,n,t) hash_set_mem (cm->type_by_name, #t, (n) | (ICMP4_##a << 8));
589 foreach_icmp4_code;
590#undef _
591
Dave Barachb7b92992018-10-17 10:38:51 -0400592 clib_memset (cm->ip4_input_next_index_by_type,
593 ICMP_INPUT_NEXT_ERROR,
594 sizeof (cm->ip4_input_next_index_by_type));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595
Neale Ranns5c6dd172022-02-17 09:08:47 +0000596 vlib_thread_main_t *tm = &vlib_thread_main;
597 u32 n_vlib_mains = tm->n_vlib_mains;
598
599 throttle_init (&icmp_throttle, n_vlib_mains, 1e-3);
600
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601 return 0;
602}
603
604VLIB_INIT_FUNCTION (icmp4_init);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500605
606/*
607 * fd.io coding-style-patch-verification: ON
608 *
609 * Local Variables:
610 * eval: (c-set-style "gnu")
611 * End:
612 */