blob: 1fab6471d2a3b0072bde7dabc6245550837397bd [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>
43
Dave Barachd7cb1b52016-12-09 09:52:16 -050044static char *icmp_error_strings[] = {
Ole Troan92eade12016-01-13 20:17:08 +010045#define _(f,s) s,
46 foreach_icmp4_error
47#undef _
48};
49
Dave Barachd7cb1b52016-12-09 09:52:16 -050050static u8 *
51format_ip4_icmp_type_and_code (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070052{
53 icmp4_type_t type = va_arg (*args, int);
54 u8 code = va_arg (*args, int);
Dave Barachd7cb1b52016-12-09 09:52:16 -050055 char *t = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
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 Barachd7cb1b52016-12-09 09:52:16 -050069 if (!t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 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 Barachd7cb1b52016-12-09 09:52:16 -050090static u8 *
91format_ip4_icmp_header (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070092{
Dave Barachd7cb1b52016-12-09 09:52:16 -050093 icmp46_header_t *icmp = va_arg (*args, icmp46_header_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 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
104 return s;
105}
106
Dave Barachd7cb1b52016-12-09 09:52:16 -0500107static u8 *
108format_icmp_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109{
110 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
111 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500112 icmp_input_trace_t *t = va_arg (*va, icmp_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113
114 s = format (s, "%U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500115 format_ip4_header, t->packet_data, sizeof (t->packet_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116
117 return s;
118}
119
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120typedef enum
121{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 ICMP_INPUT_NEXT_ERROR,
123 ICMP_INPUT_N_NEXT,
124} icmp_input_next_t;
125
Dave Barachd7cb1b52016-12-09 09:52:16 -0500126typedef struct
127{
128 uword *type_and_code_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
Dave Barachd7cb1b52016-12-09 09:52:16 -0500130 uword *type_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
132 /* Vector dispatch table indexed by [icmp type]. */
133 u8 ip4_input_next_index_by_type[256];
134} icmp4_main_t;
135
136icmp4_main_t icmp4_main;
137
138static uword
139ip4_icmp_input (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500140 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500142 icmp4_main_t *im = &icmp4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500144 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 u32 n_left_from, n_left_to_next, next;
146
147 from = vlib_frame_vector_args (frame);
148 n_left_from = n_packets;
149 next = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500150
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 if (node->flags & VLIB_NODE_FLAG_TRACE)
152 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
153 /* stride */ 1,
154 sizeof (icmp_input_trace_t));
155
156 while (n_left_from > 0)
157 {
158 vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
159
160 while (n_left_from > 0 && n_left_to_next > 0)
161 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500162 vlib_buffer_t *p0;
163 ip4_header_t *ip0;
164 icmp46_header_t *icmp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165 icmp4_type_t type0;
166 u32 bi0, next0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500167
168 if (PREDICT_TRUE (n_left_from > 2))
169 {
170 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
171 p0 = vlib_get_buffer (vm, from[1]);
172 ip0 = vlib_buffer_get_current (p0);
173 CLIB_PREFETCH (ip0, CLIB_CACHE_LINE_BYTES, LOAD);
174 }
175
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 bi0 = to_next[0] = from[0];
177
178 from += 1;
179 n_left_from -= 1;
180 to_next += 1;
181 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500182
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 p0 = vlib_get_buffer (vm, bi0);
184 ip0 = vlib_buffer_get_current (p0);
185 icmp0 = ip4_next_header (ip0);
186 type0 = icmp0->type;
187 next0 = im->ip4_input_next_index_by_type[type0];
188
189 p0->error = node->errors[ICMP4_ERROR_UNKNOWN_TYPE];
jackiechen198523551d62019-04-30 17:01:29 +0800190
191 /* Verify speculative enqueue, maybe switch current next frame */
192 vlib_validate_buffer_enqueue_x1 (vm, node, next, to_next,
193 n_left_to_next, bi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500195
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196 vlib_put_next_frame (vm, node, next, n_left_to_next);
197 }
198
199 return frame->n_vectors;
200}
201
Dave Barachd7cb1b52016-12-09 09:52:16 -0500202/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203VLIB_REGISTER_NODE (ip4_icmp_input_node,static) = {
204 .function = ip4_icmp_input,
205 .name = "ip4-icmp-input",
206
207 .vector_size = sizeof (u32),
208
209 .format_trace = format_icmp_input_trace,
210
211 .n_errors = ARRAY_LEN (icmp_error_strings),
212 .error_strings = icmp_error_strings,
213
214 .n_next_nodes = 1,
215 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -0800216 [ICMP_INPUT_NEXT_ERROR] = "ip4-punt",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217 },
218};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500219/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
221static uword
222ip4_icmp_echo_request (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500223 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224{
225 uword n_packets = frame->n_vectors;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500226 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227 u32 n_left_from, n_left_to_next, next;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500228 ip4_main_t *i4m = &ip4_main;
229 u16 *fragment_ids, *fid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 u8 host_config_ttl = i4m->host_config.ttl;
231
232 from = vlib_frame_vector_args (frame);
233 n_left_from = n_packets;
234 next = node->cached_next_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500235
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 if (node->flags & VLIB_NODE_FLAG_TRACE)
237 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
238 /* stride */ 1,
239 sizeof (icmp_input_trace_t));
240
241 /* Get random fragment IDs for replies. */
242 fid = fragment_ids = clib_random_buffer_get_data (&vm->random_buffer,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500243 n_packets *
244 sizeof (fragment_ids[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
246 while (n_left_from > 0)
247 {
248 vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
249
250 while (n_left_from > 2 && n_left_to_next > 2)
251 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500252 vlib_buffer_t *p0, *p1;
253 ip4_header_t *ip0, *ip1;
254 icmp46_header_t *icmp0, *icmp1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 u32 bi0, src0, dst0;
256 u32 bi1, src1, dst1;
257 ip_csum_t sum0, sum1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500258
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259 bi0 = to_next[0] = from[0];
260 bi1 = to_next[1] = from[1];
261
262 from += 2;
263 n_left_from -= 2;
264 to_next += 2;
265 n_left_to_next -= 2;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500266
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267 p0 = vlib_get_buffer (vm, bi0);
268 p1 = vlib_get_buffer (vm, bi1);
269 ip0 = vlib_buffer_get_current (p0);
270 ip1 = vlib_buffer_get_current (p1);
271 icmp0 = ip4_next_header (ip0);
272 icmp1 = ip4_next_header (ip1);
273
Dave Barachd7cb1b52016-12-09 09:52:16 -0500274 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
275 vnet_main.local_interface_sw_if_index;
276 vnet_buffer (p1)->sw_if_index[VLIB_RX] =
277 vnet_main.local_interface_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278
279 /* Update ICMP checksum. */
280 sum0 = icmp0->checksum;
281 sum1 = icmp1->checksum;
282
283 ASSERT (icmp0->type == ICMP4_echo_request);
284 ASSERT (icmp1->type == ICMP4_echo_request);
285 sum0 = ip_csum_update (sum0, ICMP4_echo_request, ICMP4_echo_reply,
286 icmp46_header_t, type);
287 sum1 = ip_csum_update (sum1, ICMP4_echo_request, ICMP4_echo_reply,
288 icmp46_header_t, type);
289 icmp0->type = ICMP4_echo_reply;
290 icmp1->type = ICMP4_echo_reply;
291
292 icmp0->checksum = ip_csum_fold (sum0);
293 icmp1->checksum = ip_csum_fold (sum1);
294
295 src0 = ip0->src_address.data_u32;
296 src1 = ip1->src_address.data_u32;
297 dst0 = ip0->dst_address.data_u32;
298 dst1 = ip1->dst_address.data_u32;
299
300 /* Swap source and destination address.
301 Does not change checksum. */
302 ip0->src_address.data_u32 = dst0;
303 ip1->src_address.data_u32 = dst1;
304 ip0->dst_address.data_u32 = src0;
305 ip1->dst_address.data_u32 = src1;
306
307 /* Update IP checksum. */
308 sum0 = ip0->checksum;
309 sum1 = ip1->checksum;
310
311 sum0 = ip_csum_update (sum0, ip0->ttl, host_config_ttl,
312 ip4_header_t, ttl);
313 sum1 = ip_csum_update (sum1, ip1->ttl, host_config_ttl,
314 ip4_header_t, ttl);
315 ip0->ttl = host_config_ttl;
316 ip1->ttl = host_config_ttl;
317
318 /* New fragment id. */
319 sum0 = ip_csum_update (sum0, ip0->fragment_id, fid[0],
320 ip4_header_t, fragment_id);
321 sum1 = ip_csum_update (sum1, ip1->fragment_id, fid[1],
322 ip4_header_t, fragment_id);
323 ip0->fragment_id = fid[0];
324 ip1->fragment_id = fid[1];
325 fid += 2;
326
327 ip0->checksum = ip_csum_fold (sum0);
328 ip1->checksum = ip_csum_fold (sum1);
329
330 ASSERT (ip0->checksum == ip4_header_checksum (ip0));
331 ASSERT (ip1->checksum == ip4_header_checksum (ip1));
Neale Rannsf06aea52016-11-29 06:51:37 -0800332
Damjan Marion213b5aa2017-07-13 21:19:27 +0200333 p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
334 p1->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337 while (n_left_from > 0 && n_left_to_next > 0)
338 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500339 vlib_buffer_t *p0;
340 ip4_header_t *ip0;
341 icmp46_header_t *icmp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342 u32 bi0, src0, dst0;
343 ip_csum_t sum0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500344
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 bi0 = to_next[0] = from[0];
346
347 from += 1;
348 n_left_from -= 1;
349 to_next += 1;
350 n_left_to_next -= 1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500351
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 p0 = vlib_get_buffer (vm, bi0);
353 ip0 = vlib_buffer_get_current (p0);
354 icmp0 = ip4_next_header (ip0);
355
Dave Barachd7cb1b52016-12-09 09:52:16 -0500356 vnet_buffer (p0)->sw_if_index[VLIB_RX] =
357 vnet_main.local_interface_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
359 /* Update ICMP checksum. */
360 sum0 = icmp0->checksum;
361
362 ASSERT (icmp0->type == ICMP4_echo_request);
363 sum0 = ip_csum_update (sum0, ICMP4_echo_request, ICMP4_echo_reply,
364 icmp46_header_t, type);
365 icmp0->type = ICMP4_echo_reply;
366 icmp0->checksum = ip_csum_fold (sum0);
367
368 src0 = ip0->src_address.data_u32;
369 dst0 = ip0->dst_address.data_u32;
370 ip0->src_address.data_u32 = dst0;
371 ip0->dst_address.data_u32 = src0;
372
373 /* Update IP checksum. */
374 sum0 = ip0->checksum;
375
376 sum0 = ip_csum_update (sum0, ip0->ttl, host_config_ttl,
377 ip4_header_t, ttl);
378 ip0->ttl = host_config_ttl;
379
380 sum0 = ip_csum_update (sum0, ip0->fragment_id, fid[0],
381 ip4_header_t, fragment_id);
382 ip0->fragment_id = fid[0];
383 fid += 1;
384
385 ip0->checksum = ip_csum_fold (sum0);
386
387 ASSERT (ip0->checksum == ip4_header_checksum (ip0));
Neale Rannsf06aea52016-11-29 06:51:37 -0800388
Damjan Marion213b5aa2017-07-13 21:19:27 +0200389 p0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500391
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 vlib_put_next_frame (vm, node, next, n_left_to_next);
393 }
394
395 vlib_error_count (vm, ip4_icmp_input_node.index,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396 ICMP4_ERROR_ECHO_REPLIES_SENT, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
398 return frame->n_vectors;
399}
400
Dave Barachd7cb1b52016-12-09 09:52:16 -0500401/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402VLIB_REGISTER_NODE (ip4_icmp_echo_request_node,static) = {
403 .function = ip4_icmp_echo_request,
404 .name = "ip4-icmp-echo-request",
405
406 .vector_size = sizeof (u32),
407
408 .format_trace = format_icmp_input_trace,
409
410 .n_next_nodes = 1,
411 .next_nodes = {
Neale Rannsf06aea52016-11-29 06:51:37 -0800412 [0] = "ip4-load-balance",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 },
414};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500415/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416
Dave Barachd7cb1b52016-12-09 09:52:16 -0500417typedef enum
418{
Ole Troan92eade12016-01-13 20:17:08 +0100419 IP4_ICMP_ERROR_NEXT_DROP,
420 IP4_ICMP_ERROR_NEXT_LOOKUP,
421 IP4_ICMP_ERROR_N_NEXT,
422} ip4_icmp_error_next_t;
423
Ole Troan92eade12016-01-13 20:17:08 +0100424static u8
425icmp4_icmp_type_to_error (u8 type)
426{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500427 switch (type)
428 {
429 case ICMP4_destination_unreachable:
430 return ICMP4_ERROR_DEST_UNREACH_SENT;
431 case ICMP4_time_exceeded:
432 return ICMP4_ERROR_TTL_EXPIRE_SENT;
433 case ICMP4_parameter_problem:
434 return ICMP4_ERROR_PARAM_PROBLEM_SENT;
435 default:
436 return ICMP4_ERROR_DROP;
437 }
Ole Troan92eade12016-01-13 20:17:08 +0100438}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
440static uword
Ole Troan92eade12016-01-13 20:17:08 +0100441ip4_icmp_error (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500442 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500444 u32 *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445 uword n_left_from, n_left_to_next;
Ole Troan92eade12016-01-13 20:17:08 +0100446 ip4_icmp_error_next_t next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447 ip4_main_t *im = &ip4_main;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500448 ip_lookup_main_t *lm = &im->lookup_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
Dave Barachd7cb1b52016-12-09 09:52:16 -0500450 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451 n_left_from = frame->n_vectors;
452 next_index = node->cached_next_index;
453
454 if (node->flags & VLIB_NODE_FLAG_TRACE)
455 vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500456 /* stride */ 1,
457 sizeof (icmp_input_trace_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458
Dave Barachd7cb1b52016-12-09 09:52:16 -0500459 while (n_left_from > 0)
460 {
461 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462
Dave Barachd7cb1b52016-12-09 09:52:16 -0500463 while (n_left_from > 0 && n_left_to_next > 0)
464 {
Ole Troanda7f7b62019-03-11 13:15:54 +0100465 /*
466 * Duplicate first buffer and free the original chain. Keep
467 * as much of the original packet as possible, within the
468 * minimum MTU. We chat "a little" here by keeping whatever
469 * is available in the first buffer.
470 */
471
472 u32 pi0 = ~0;
473 u32 org_pi0 = from[0];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500474 u32 next0 = IP4_ICMP_ERROR_NEXT_LOOKUP;
475 u8 error0 = ICMP4_ERROR_NONE;
Ole Troanda7f7b62019-03-11 13:15:54 +0100476 vlib_buffer_t *p0, *org_p0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500477 ip4_header_t *ip0, *out_ip0;
478 icmp46_header_t *icmp0;
479 u32 sw_if_index0, if_add_index0;
480 ip_csum_t sum;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481
Ole Troanda7f7b62019-03-11 13:15:54 +0100482 org_p0 = vlib_get_buffer (vm, org_pi0);
483 p0 = vlib_buffer_copy_no_chain (vm, org_p0, &pi0);
Ole Troanda7f7b62019-03-11 13:15:54 +0100484 if (!p0 || pi0 == ~0) /* Out of buffers */
485 continue;
486
Dave Barachd7cb1b52016-12-09 09:52:16 -0500487 /* Speculatively enqueue p0 to the current next frame */
488 to_next[0] = pi0;
489 from += 1;
490 to_next += 1;
491 n_left_from -= 1;
492 n_left_to_next -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493
Dave Barachd7cb1b52016-12-09 09:52:16 -0500494 ip0 = vlib_buffer_get_current (p0);
495 sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496
Dave Barachd7cb1b52016-12-09 09:52:16 -0500497 /* Add IP header and ICMPv4 header including a 4 byte data field */
498 vlib_buffer_advance (p0,
499 -sizeof (ip4_header_t) -
500 sizeof (icmp46_header_t) - 4);
Ole Troan8a9c8f12018-05-18 11:01:31 +0200501
502 p0->current_length =
503 p0->current_length > 576 ? 576 : p0->current_length;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500504 out_ip0 = vlib_buffer_get_current (p0);
505 icmp0 = (icmp46_header_t *) & out_ip0[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506
Dave Barachd7cb1b52016-12-09 09:52:16 -0500507 /* Fill ip header fields */
508 out_ip0->ip_version_and_header_length = 0x45;
509 out_ip0->tos = 0;
510 out_ip0->length = clib_host_to_net_u16 (p0->current_length);
511 out_ip0->fragment_id = 0;
512 out_ip0->flags_and_fragment_offset = 0;
513 out_ip0->ttl = 0xff;
514 out_ip0->protocol = IP_PROTOCOL_ICMP;
515 out_ip0->dst_address = ip0->src_address;
516 if_add_index0 = ~0;
517 if (PREDICT_TRUE (vec_len (lm->if_address_pool_index_by_sw_if_index)
518 > sw_if_index0))
519 if_add_index0 =
520 lm->if_address_pool_index_by_sw_if_index[sw_if_index0];
521 if (PREDICT_TRUE (if_add_index0 != ~0))
522 {
523 ip_interface_address_t *if_add =
524 pool_elt_at_index (lm->if_address_pool, if_add_index0);
525 ip4_address_t *if_ip =
526 ip_interface_address_get_address (lm, if_add);
527 out_ip0->src_address = *if_ip;
528 }
529 else
530 {
531 /* interface has no IP4 address - should not happen */
532 next0 = IP4_ICMP_ERROR_NEXT_DROP;
533 error0 = ICMP4_ERROR_DROP;
534 }
535 out_ip0->checksum = ip4_header_checksum (out_ip0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
Dave Barachd7cb1b52016-12-09 09:52:16 -0500537 /* Fill icmp header fields */
538 icmp0->type = vnet_buffer (p0)->ip.icmp.type;
539 icmp0->code = vnet_buffer (p0)->ip.icmp.code;
540 *((u32 *) (icmp0 + 1)) =
541 clib_host_to_net_u32 (vnet_buffer (p0)->ip.icmp.data);
542 icmp0->checksum = 0;
543 sum =
544 ip_incremental_checksum (0, icmp0,
545 p0->current_length -
546 sizeof (ip4_header_t));
547 icmp0->checksum = ~ip_csum_fold (sum);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548
Dave Barachd7cb1b52016-12-09 09:52:16 -0500549 /* Update error status */
550 if (error0 == ICMP4_ERROR_NONE)
551 error0 = icmp4_icmp_type_to_error (icmp0->type);
Ole Troanda7f7b62019-03-11 13:15:54 +0100552
Dave Barachd7cb1b52016-12-09 09:52:16 -0500553 vlib_error_count (vm, node->node_index, error0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554
Dave Barachd7cb1b52016-12-09 09:52:16 -0500555 /* Verify speculative enqueue, maybe switch current next frame */
556 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
557 to_next, n_left_to_next,
558 pi0, next0);
559 }
560 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561 }
562
Kingwel Xie27431dd2019-03-20 21:47:17 -0400563 /*
564 * push the original buffers to error-drop, so that
565 * they can get the error counters handled, then freed
566 */
567 vlib_buffer_enqueue_to_single_next (vm, node,
568 vlib_frame_vector_args (frame),
569 IP4_ICMP_ERROR_NEXT_DROP,
570 frame->n_vectors);
571
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572 return frame->n_vectors;
573}
574
Dave Barachd7cb1b52016-12-09 09:52:16 -0500575/* *INDENT-OFF* */
Ole Troan92eade12016-01-13 20:17:08 +0100576VLIB_REGISTER_NODE (ip4_icmp_error_node) = {
577 .function = ip4_icmp_error,
578 .name = "ip4-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579 .vector_size = sizeof (u32),
580
581 .n_errors = ARRAY_LEN (icmp_error_strings),
582 .error_strings = icmp_error_strings,
583
Ole Troan92eade12016-01-13 20:17:08 +0100584 .n_next_nodes = IP4_ICMP_ERROR_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585 .next_nodes = {
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -0800586 [IP4_ICMP_ERROR_NEXT_DROP] = "ip4-drop",
Ole Troan92eade12016-01-13 20:17:08 +0100587 [IP4_ICMP_ERROR_NEXT_LOOKUP] = "ip4-lookup",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588 },
589
590 .format_trace = format_icmp_input_trace,
591};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500592/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593
594
Dave Barachd7cb1b52016-12-09 09:52:16 -0500595static uword
596unformat_icmp_type_and_code (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500598 icmp46_header_t *h = va_arg (*args, icmp46_header_t *);
599 icmp4_main_t *cm = &icmp4_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600 u32 i;
601
602 if (unformat_user (input, unformat_vlib_number_by_name,
603 cm->type_and_code_by_name, &i))
604 {
605 h->type = (i >> 8) & 0xff;
606 h->code = (i >> 0) & 0xff;
607 }
608 else if (unformat_user (input, unformat_vlib_number_by_name,
609 cm->type_by_name, &i))
610 {
611 h->type = i;
612 h->code = 0;
613 }
614 else
615 return 0;
616
617 return 1;
618}
619
620static void
621icmp4_pg_edit_function (pg_main_t * pg,
622 pg_stream_t * s,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500623 pg_edit_group_t * g, u32 * packets, u32 n_packets)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500625 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626 u32 ip_offset, icmp_offset;
627
628 icmp_offset = g->start_byte_offset;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500629 ip_offset = (g - 1)->start_byte_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630
631 while (n_packets >= 1)
632 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500633 vlib_buffer_t *p0;
634 ip4_header_t *ip0;
635 icmp46_header_t *icmp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636 u32 len0;
637
638 p0 = vlib_get_buffer (vm, packets[0]);
639 n_packets -= 1;
640 packets += 1;
641
642 ASSERT (p0->current_data == 0);
643 ip0 = (void *) (p0->data + ip_offset);
644 icmp0 = (void *) (p0->data + icmp_offset);
Kingwel Xiea91866f2018-10-26 23:26:06 -0400645
646 /* if IP length has been specified, then calculate the length based on buffer */
647 if (ip0->length == 0)
648 len0 = vlib_buffer_length_in_chain (vm, p0) - icmp_offset;
649 else
650 len0 = clib_net_to_host_u16 (ip0->length) - icmp_offset;
651
Dave Barachd7cb1b52016-12-09 09:52:16 -0500652 icmp0->checksum =
653 ~ip_csum_fold (ip_incremental_checksum (0, icmp0, len0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654 }
655}
656
Dave Barachd7cb1b52016-12-09 09:52:16 -0500657typedef struct
658{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659 pg_edit_t type, code;
660 pg_edit_t checksum;
661} pg_icmp46_header_t;
662
663always_inline void
664pg_icmp_header_init (pg_icmp46_header_t * p)
665{
666 /* Initialize fields that are not bit fields in the IP header. */
667#define _(f) pg_edit_init (&p->f, icmp46_header_t, f);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500668 _(type);
669 _(code);
670 _(checksum);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671#undef _
672}
673
674static uword
675unformat_pg_icmp_header (unformat_input_t * input, va_list * args)
676{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500677 pg_stream_t *s = va_arg (*args, pg_stream_t *);
678 pg_icmp46_header_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 u32 group_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500680
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681 p = pg_create_edit_group (s, sizeof (p[0]), sizeof (icmp46_header_t),
682 &group_index);
683 pg_icmp_header_init (p);
684
685 p->checksum.type = PG_EDIT_UNSPECIFIED;
686
687 {
688 icmp46_header_t tmp;
689
Dave Barachd7cb1b52016-12-09 09:52:16 -0500690 if (!unformat (input, "ICMP %U", unformat_icmp_type_and_code, &tmp))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 goto error;
692
693 pg_edit_set_fixed (&p->type, tmp.type);
694 pg_edit_set_fixed (&p->code, tmp.code);
695 }
696
697 /* Parse options. */
698 while (1)
699 {
700 if (unformat (input, "checksum %U",
Dave Barachd7cb1b52016-12-09 09:52:16 -0500701 unformat_pg_edit, unformat_pg_number, &p->checksum))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702 ;
703
704 /* Can't parse input: try next protocol level. */
705 else
706 break;
707 }
708
Dave Barachd7cb1b52016-12-09 09:52:16 -0500709 if (!unformat_user (input, unformat_pg_payload, s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 goto error;
711
712 if (p->checksum.type == PG_EDIT_UNSPECIFIED)
713 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500714 pg_edit_group_t *g = pg_stream_get_group (s, group_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715 g->edit_function = icmp4_pg_edit_function;
716 g->edit_function_opaque = 0;
717 }
718
719 return 1;
720
Dave Barachd7cb1b52016-12-09 09:52:16 -0500721error:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722 /* Free up any edits we may have added. */
723 pg_free_edit_group (s);
724 return 0;
725}
726
Dave Barachd7cb1b52016-12-09 09:52:16 -0500727void
728ip4_icmp_register_type (vlib_main_t * vm, icmp4_type_t type, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500730 icmp4_main_t *im = &icmp4_main;
Dave Barach34716fa2019-05-23 12:38:22 -0400731 u32 old_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732
Dave Barachd7cb1b52016-12-09 09:52:16 -0500733 ASSERT ((int) type < ARRAY_LEN (im->ip4_input_next_index_by_type));
Dave Barach34716fa2019-05-23 12:38:22 -0400734 old_next_index = im->ip4_input_next_index_by_type[type];
735
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736 im->ip4_input_next_index_by_type[type]
737 = vlib_node_add_next (vm, ip4_icmp_input_node.index, node_index);
Dave Barach34716fa2019-05-23 12:38:22 -0400738
739 if (old_next_index &&
740 (old_next_index != im->ip4_input_next_index_by_type[type]))
741 clib_warning ("WARNING: changed next_by_type[%d]", (int) type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742}
743
744static clib_error_t *
745icmp4_init (vlib_main_t * vm)
746{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500747 ip_main_t *im = &ip_main;
748 ip_protocol_info_t *pi;
749 icmp4_main_t *cm = &icmp4_main;
750 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
752 error = vlib_call_init_function (vm, ip_main_init);
753
754 if (error)
755 return error;
756
757 pi = ip_get_protocol_info (im, IP_PROTOCOL_ICMP);
758 pi->format_header = format_ip4_icmp_header;
759 pi->unformat_pg_edit = unformat_pg_icmp_header;
760
761 cm->type_by_name = hash_create_string (0, sizeof (uword));
762#define _(n,t) hash_set_mem (cm->type_by_name, #t, (n));
763 foreach_icmp4_type;
764#undef _
765
766 cm->type_and_code_by_name = hash_create_string (0, sizeof (uword));
767#define _(a,n,t) hash_set_mem (cm->type_by_name, #t, (n) | (ICMP4_##a << 8));
768 foreach_icmp4_code;
769#undef _
770
Dave Barachb7b92992018-10-17 10:38:51 -0400771 clib_memset (cm->ip4_input_next_index_by_type,
772 ICMP_INPUT_NEXT_ERROR,
773 sizeof (cm->ip4_input_next_index_by_type));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774
Dave Barachd7cb1b52016-12-09 09:52:16 -0500775 ip4_icmp_register_type (vm, ICMP4_echo_request,
776 ip4_icmp_echo_request_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777
778 return 0;
779}
780
781VLIB_INIT_FUNCTION (icmp4_init);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500782
783/*
784 * fd.io coding-style-patch-verification: ON
785 *
786 * Local Variables:
787 * eval: (c-set-style "gnu")
788 * End:
789 */