blob: 52c07accc4ac39bcecbabc5d6f2eea882ca0641d [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 * interface_output.c: interface output node
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 <vnet/vnet.h>
Dave Barach2c0a4f42017-06-29 09:30:15 -040041#include <vnet/ip/icmp46_packet.h>
Dave Barach4330c462020-06-10 17:07:32 -040042#include <vnet/ethernet/packet.h>
Florin Corasb040f982020-10-20 14:59:43 -070043#include <vnet/ip/format.h>
Dave Barach2c0a4f42017-06-29 09:30:15 -040044#include <vnet/ip/ip4.h>
45#include <vnet/ip/ip6.h>
46#include <vnet/udp/udp_packet.h>
Damjan Marion152e21d2016-11-29 14:55:43 +010047#include <vnet/feature/feature.h>
Dave Barach9137e542019-09-13 17:47:50 -040048#include <vnet/classify/trace_classify.h>
Dave Barach1bd2c012020-04-12 08:31:39 -040049#include <vnet/interface_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Dave Barachba868bb2016-08-08 09:51:21 -040051typedef struct
52{
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 u32 sw_if_index;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020054 u32 flags;
Mohsin Kazmi29467b52019-10-08 19:42:38 +020055 u8 data[128 - 2 * sizeof (u32)];
Dave Barachba868bb2016-08-08 09:51:21 -040056}
57interface_output_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
Filip Tehlar62668772019-03-04 03:33:32 -080059#ifndef CLIB_MARCH_VARIANT
Dave Barachba868bb2016-08-08 09:51:21 -040060u8 *
61format_vnet_interface_output_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070062{
63 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
Dave Barachba868bb2016-08-08 09:51:21 -040064 vlib_node_t *node = va_arg (*va, vlib_node_t *);
65 interface_output_trace_t *t = va_arg (*va, interface_output_trace_t *);
66 vnet_main_t *vnm = vnet_get_main ();
67 vnet_sw_interface_t *si;
Christophe Fontained3c008d2017-10-02 18:10:54 +020068 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
Dave Barachba868bb2016-08-08 09:51:21 -040070 if (t->sw_if_index != (u32) ~ 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -070071 {
Ed Warnickecb9cada2015-12-08 15:45:58 -070072 indent = format_get_indent (s);
Dave Barachba868bb2016-08-08 09:51:21 -040073
Neale Ranns177bbdc2016-11-15 09:46:51 +000074 if (pool_is_free_index
75 (vnm->interface_main.sw_interfaces, t->sw_if_index))
76 {
77 /* the interface may have been deleted by the time the trace is printed */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020078 s = format (s, "sw_if_index: %d ", t->sw_if_index);
Neale Ranns177bbdc2016-11-15 09:46:51 +000079 }
80 else
81 {
82 si = vnet_get_sw_interface (vnm, t->sw_if_index);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020083 s =
84 format (s, "%U ", format_vnet_sw_interface_name, vnm, si,
85 t->flags);
Neale Ranns177bbdc2016-11-15 09:46:51 +000086 }
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020087 s =
88 format (s, "\n%U%U", format_white_space, indent,
89 node->format_buffer ? node->format_buffer : format_hex_bytes,
90 t->data, sizeof (t->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 }
92 return s;
93}
94
95static void
96vnet_interface_output_trace (vlib_main_t * vm,
97 vlib_node_runtime_t * node,
Dave Barachba868bb2016-08-08 09:51:21 -040098 vlib_frame_t * frame, uword n_buffers)
Ed Warnickecb9cada2015-12-08 15:45:58 -070099{
Dave Barachba868bb2016-08-08 09:51:21 -0400100 u32 n_left, *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
102 n_left = n_buffers;
Damjan Mariona3d59862018-11-10 10:23:00 +0100103 from = vlib_frame_vector_args (frame);
Dave Barachba868bb2016-08-08 09:51:21 -0400104
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105 while (n_left >= 4)
106 {
107 u32 bi0, bi1;
Dave Barachba868bb2016-08-08 09:51:21 -0400108 vlib_buffer_t *b0, *b1;
109 interface_output_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
111 /* Prefetch next iteration. */
112 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
113 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
114
115 bi0 = from[0];
116 bi1 = from[1];
117
118 b0 = vlib_get_buffer (vm, bi0);
119 b1 = vlib_get_buffer (vm, bi1);
120
121 if (b0->flags & VLIB_BUFFER_IS_TRACED)
122 {
123 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
124 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200125 t0->flags = b0->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500126 clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
127 sizeof (t0->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 }
129 if (b1->flags & VLIB_BUFFER_IS_TRACED)
130 {
131 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
132 t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200133 t1->flags = b1->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500134 clib_memcpy_fast (t1->data, vlib_buffer_get_current (b1),
135 sizeof (t1->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 }
137 from += 2;
138 n_left -= 2;
139 }
140
141 while (n_left >= 1)
142 {
143 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400144 vlib_buffer_t *b0;
145 interface_output_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
147 bi0 = from[0];
148
149 b0 = vlib_get_buffer (vm, bi0);
150
151 if (b0->flags & VLIB_BUFFER_IS_TRACED)
152 {
153 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
154 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200155 t0->flags = b0->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500156 clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
157 sizeof (t0->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 }
159 from += 1;
160 n_left -= 1;
161 }
162}
163
Dave Barach2c0a4f42017-06-29 09:30:15 -0400164static_always_inline uword
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200165vnet_interface_output_node_inline (vlib_main_t * vm,
166 vlib_node_runtime_t * node,
167 vlib_frame_t * frame,
168 vnet_main_t * vnm,
169 vnet_hw_interface_t * hi,
170 int do_tx_offloads)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400171{
Dave Barachba868bb2016-08-08 09:51:21 -0400172 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
173 vnet_sw_interface_t *si;
Dave Barachba868bb2016-08-08 09:51:21 -0400174 u32 n_left_to_tx, *from, *from_end, *to_tx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175 u32 n_bytes, n_buffers, n_packets;
Damjan Marion363640d2017-03-06 11:53:10 +0100176 u32 n_bytes_b0, n_bytes_b1, n_bytes_b2, n_bytes_b3;
Damjan Marion586afd72017-04-05 19:18:20 +0200177 u32 thread_index = vm->thread_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400178 vnet_interface_main_t *im = &vnm->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 u32 next_index = VNET_INTERFACE_OUTPUT_NEXT_TX;
Damjan Marion152e21d2016-11-29 14:55:43 +0100180 u32 current_config_index = ~0;
181 u8 arc = im->output_feature_arc_index;
Zhiyong Yanga462c072019-05-05 19:32:25 +0800182 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
184 n_buffers = frame->n_vectors;
185
186 if (node->flags & VLIB_NODE_FLAG_TRACE)
187 vnet_interface_output_trace (vm, node, frame, n_buffers);
188
Damjan Mariona3d59862018-11-10 10:23:00 +0100189 from = vlib_frame_vector_args (frame);
Zhiyong Yanga462c072019-05-05 19:32:25 +0800190 vlib_get_buffers (vm, from, b, n_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
192 if (rt->is_deleted)
Dave Barachba868bb2016-08-08 09:51:21 -0400193 return vlib_error_drop_buffers (vm, node, from,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194 /* buffer stride */ 1,
195 n_buffers,
196 VNET_INTERFACE_OUTPUT_NEXT_DROP,
197 node->node_index,
198 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DELETED);
199
200 si = vnet_get_sw_interface (vnm, rt->sw_if_index);
201 hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
Steven Luong5ad541e2019-08-27 07:43:27 -0700202 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ||
Dave Barachba868bb2016-08-08 09:51:21 -0400203 !(hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204 {
Dave Barachba868bb2016-08-08 09:51:21 -0400205 vlib_simple_counter_main_t *cm;
206
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
Dave Barachba868bb2016-08-08 09:51:21 -0400208 VNET_INTERFACE_COUNTER_TX_ERROR);
Damjan Marion586afd72017-04-05 19:18:20 +0200209 vlib_increment_simple_counter (cm, thread_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400210 rt->sw_if_index, n_buffers);
211
212 return vlib_error_drop_buffers (vm, node, from,
213 /* buffer stride */ 1,
214 n_buffers,
215 VNET_INTERFACE_OUTPUT_NEXT_DROP,
216 node->node_index,
217 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DOWN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218 }
219
220 from_end = from + n_buffers;
221
222 /* Total byte count of all buffers. */
223 n_bytes = 0;
224 n_packets = 0;
225
Damjan Marion152e21d2016-11-29 14:55:43 +0100226 /* interface-output feature arc handling */
227 if (PREDICT_FALSE (vnet_have_features (arc, rt->sw_if_index)))
228 {
229 vnet_feature_config_main_t *fcm;
230 fcm = vnet_feature_get_config_main (arc);
231 current_config_index = vnet_get_feature_config_index (arc,
232 rt->sw_if_index);
233 vnet_get_config_data (&fcm->config_main, &current_config_index,
234 &next_index, 0);
235 }
236
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 while (from < from_end)
238 {
239 /* Get new next frame since previous incomplete frame may have less
Dave Barachba868bb2016-08-08 09:51:21 -0400240 than VNET_FRAME_SIZE vectors in it. */
241 vlib_get_new_next_frame (vm, node, next_index, to_tx, n_left_to_tx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242
Damjan Marion363640d2017-03-06 11:53:10 +0100243 while (from + 8 <= from_end && n_left_to_tx >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 {
Damjan Marion363640d2017-03-06 11:53:10 +0100245 u32 bi0, bi1, bi2, bi3;
Damjan Marion363640d2017-03-06 11:53:10 +0100246 u32 tx_swif0, tx_swif1, tx_swif2, tx_swif3;
Dave Barach2c0a4f42017-06-29 09:30:15 -0400247 u32 or_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248
249 /* Prefetch next iteration. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800250 vlib_prefetch_buffer_header (b[4], LOAD);
251 vlib_prefetch_buffer_header (b[5], LOAD);
252 vlib_prefetch_buffer_header (b[6], LOAD);
253 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
255 bi0 = from[0];
256 bi1 = from[1];
Damjan Marion363640d2017-03-06 11:53:10 +0100257 bi2 = from[2];
258 bi3 = from[3];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259 to_tx[0] = bi0;
260 to_tx[1] = bi1;
Damjan Marion363640d2017-03-06 11:53:10 +0100261 to_tx[2] = bi2;
262 to_tx[3] = bi3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
Zhiyong Yanga462c072019-05-05 19:32:25 +0800264 or_flags = b[0]->flags | b[1]->flags | b[2]->flags | b[3]->flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265
Zhiyong Yanga462c072019-05-05 19:32:25 +0800266 from += 4;
267 to_tx += 4;
268 n_left_to_tx -= 4;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200269
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270 /* Be grumpy about zero length buffers for benefit of
271 driver tx function. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800272 ASSERT (b[0]->current_length > 0);
273 ASSERT (b[1]->current_length > 0);
274 ASSERT (b[2]->current_length > 0);
275 ASSERT (b[3]->current_length > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276
Zhiyong Yanga462c072019-05-05 19:32:25 +0800277 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
278 n_bytes_b1 = vlib_buffer_length_in_chain (vm, b[1]);
279 n_bytes_b2 = vlib_buffer_length_in_chain (vm, b[2]);
280 n_bytes_b3 = vlib_buffer_length_in_chain (vm, b[3]);
281 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
282 tx_swif1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
283 tx_swif2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
284 tx_swif3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
286 n_bytes += n_bytes_b0 + n_bytes_b1;
Damjan Marion363640d2017-03-06 11:53:10 +0100287 n_bytes += n_bytes_b2 + n_bytes_b3;
288 n_packets += 4;
Dave Barachba868bb2016-08-08 09:51:21 -0400289
Damjan Marion152e21d2016-11-29 14:55:43 +0100290 if (PREDICT_FALSE (current_config_index != ~0))
291 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800292 vnet_buffer (b[0])->feature_arc_index = arc;
293 vnet_buffer (b[1])->feature_arc_index = arc;
294 vnet_buffer (b[2])->feature_arc_index = arc;
295 vnet_buffer (b[3])->feature_arc_index = arc;
296 b[0]->current_config_index = current_config_index;
297 b[1]->current_config_index = current_config_index;
298 b[2]->current_config_index = current_config_index;
299 b[3]->current_config_index = current_config_index;
Damjan Marion152e21d2016-11-29 14:55:43 +0100300 }
301
Damjan Marion363640d2017-03-06 11:53:10 +0100302 /* update vlan subif tx counts, if required */
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100303 if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -0400304 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100305 vlib_increment_combined_counter (im->combined_sw_if_counters +
306 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200307 thread_index, tx_swif0, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100308 n_bytes_b0);
Dave Barachba868bb2016-08-08 09:51:21 -0400309 }
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100310
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100311 if (PREDICT_FALSE (tx_swif1 != rt->sw_if_index))
312 {
313
314 vlib_increment_combined_counter (im->combined_sw_if_counters +
315 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200316 thread_index, tx_swif1, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100317 n_bytes_b1);
318 }
Damjan Marion363640d2017-03-06 11:53:10 +0100319
320 if (PREDICT_FALSE (tx_swif2 != rt->sw_if_index))
321 {
322
323 vlib_increment_combined_counter (im->combined_sw_if_counters +
324 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200325 thread_index, tx_swif2, 1,
Damjan Marion363640d2017-03-06 11:53:10 +0100326 n_bytes_b2);
327 }
328 if (PREDICT_FALSE (tx_swif3 != rt->sw_if_index))
329 {
330
331 vlib_increment_combined_counter (im->combined_sw_if_counters +
332 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200333 thread_index, tx_swif3, 1,
Damjan Marion363640d2017-03-06 11:53:10 +0100334 n_bytes_b3);
335 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400336
Dave Barach2c0a4f42017-06-29 09:30:15 -0400337 if (do_tx_offloads)
338 {
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200339 u32 vnet_buffer_offload_flags =
340 (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
341 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
342 VNET_BUFFER_F_OFFLOAD_IP_CKSUM);
343 if (or_flags & vnet_buffer_offload_flags)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400344 {
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200345 if (b[0]->flags & vnet_buffer_offload_flags)
346 vnet_calc_checksums_inline
347 (vm, b[0],
348 b[0]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300349 b[0]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200350 if (b[1]->flags & vnet_buffer_offload_flags)
351 vnet_calc_checksums_inline
352 (vm, b[1],
353 b[1]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300354 b[1]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200355 if (b[2]->flags & vnet_buffer_offload_flags)
356 vnet_calc_checksums_inline
357 (vm, b[2],
358 b[2]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300359 b[2]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200360 if (b[3]->flags & vnet_buffer_offload_flags)
361 vnet_calc_checksums_inline
362 (vm, b[3],
363 b[3]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300364 b[3]->flags & VNET_BUFFER_F_IS_IP6);
Dave Barach2c0a4f42017-06-29 09:30:15 -0400365 }
366 }
Zhiyong Yanga462c072019-05-05 19:32:25 +0800367 b += 4;
368
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 }
370
371 while (from + 1 <= from_end && n_left_to_tx >= 1)
372 {
373 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400374 u32 tx_swif0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
376 bi0 = from[0];
377 to_tx[0] = bi0;
378 from += 1;
379 to_tx += 1;
380 n_left_to_tx -= 1;
381
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 /* Be grumpy about zero length buffers for benefit of
383 driver tx function. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800384 ASSERT (b[0]->current_length > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
Zhiyong Yanga462c072019-05-05 19:32:25 +0800386 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
387 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388 n_bytes += n_bytes_b0;
389 n_packets += 1;
390
Damjan Marion152e21d2016-11-29 14:55:43 +0100391 if (PREDICT_FALSE (current_config_index != ~0))
392 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800393 vnet_buffer (b[0])->feature_arc_index = arc;
394 b[0]->current_config_index = current_config_index;
Damjan Marion152e21d2016-11-29 14:55:43 +0100395 }
396
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100397 if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -0400398 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100400 vlib_increment_combined_counter (im->combined_sw_if_counters +
401 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200402 thread_index, tx_swif0, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100403 n_bytes_b0);
Dave Barachba868bb2016-08-08 09:51:21 -0400404 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400405
406 if (do_tx_offloads)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200407 {
408 if (b[0]->flags &
409 (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
410 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
411 VNET_BUFFER_F_OFFLOAD_IP_CKSUM))
Dave Barach1bd2c012020-04-12 08:31:39 -0400412 vnet_calc_checksums_inline
413 (vm, b[0],
414 b[0]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300415 b[0]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200416 }
Zhiyong Yanga462c072019-05-05 19:32:25 +0800417 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 }
419
Dave Barachba868bb2016-08-08 09:51:21 -0400420 vlib_put_next_frame (vm, node, next_index, n_left_to_tx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 }
422
423 /* Update main interface stats. */
424 vlib_increment_combined_counter (im->combined_sw_if_counters
Dave Barachba868bb2016-08-08 09:51:21 -0400425 + VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200426 thread_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400427 rt->sw_if_index, n_packets, n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 return n_buffers;
429}
Filip Tehlar62668772019-03-04 03:33:32 -0800430#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431
Dave Barach5ecd5a52019-02-25 15:27:28 -0500432static_always_inline void vnet_interface_pcap_tx_trace
433 (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame,
434 int sw_if_index_from_buffer)
435{
436 u32 n_left_from, *from;
437 u32 sw_if_index;
Dave Barach33909772019-09-23 10:27:27 -0400438 vnet_pcap_t *pp = &vlib_global_main.pcap;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500439
Dave Barach33909772019-09-23 10:27:27 -0400440 if (PREDICT_TRUE (pp->pcap_tx_enable == 0))
Dave Barach5ecd5a52019-02-25 15:27:28 -0500441 return;
442
443 if (sw_if_index_from_buffer == 0)
444 {
445 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
446 sw_if_index = rt->sw_if_index;
447 }
448 else
449 sw_if_index = ~0;
450
451 n_left_from = frame->n_vectors;
452 from = vlib_frame_vector_args (frame);
453
454 while (n_left_from > 0)
455 {
Dave Barach9137e542019-09-13 17:47:50 -0400456 int classify_filter_result;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500457 u32 bi0 = from[0];
458 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Dave Barach9137e542019-09-13 17:47:50 -0400459 from++;
460 n_left_from--;
461
Dave Barachf5667c32019-09-25 11:27:46 -0400462 if (pp->filter_classify_table_index != ~0)
Dave Barach9137e542019-09-13 17:47:50 -0400463 {
464 classify_filter_result =
465 vnet_is_packet_traced_inline
Dave Barachf5667c32019-09-25 11:27:46 -0400466 (b0, pp->filter_classify_table_index, 0 /* full classify */ );
Dave Barach9137e542019-09-13 17:47:50 -0400467 if (classify_filter_result)
Dave Barach33909772019-09-23 10:27:27 -0400468 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
Dave Barach9137e542019-09-13 17:47:50 -0400469 continue;
470 }
Dave Barach5ecd5a52019-02-25 15:27:28 -0500471
472 if (sw_if_index_from_buffer)
473 sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
474
Dave Barach33909772019-09-23 10:27:27 -0400475 if (pp->pcap_sw_if_index == 0 || pp->pcap_sw_if_index == sw_if_index)
Dave Barachd28437c2019-11-20 09:28:31 -0500476 {
477 vnet_main_t *vnm = vnet_get_main ();
478 vnet_hw_interface_t *hi =
479 vnet_get_sup_hw_interface (vnm, sw_if_index);
480 /* Capture pkt if not filtered, or if filter hits */
481 if (hi->trace_classify_table_index == ~0 ||
482 vnet_is_packet_traced_inline
483 (b0, hi->trace_classify_table_index, 0 /* full classify */ ))
484 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
485 }
Dave Barach5ecd5a52019-02-25 15:27:28 -0500486 }
487}
488
Filip Tehlar62668772019-03-04 03:33:32 -0800489#ifndef CLIB_MARCH_VARIANT
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200490
Damjan Marion652d2e12019-02-02 00:15:27 +0100491uword
Dave Barach2c0a4f42017-06-29 09:30:15 -0400492vnet_interface_output_node (vlib_main_t * vm, vlib_node_runtime_t * node,
493 vlib_frame_t * frame)
494{
495 vnet_main_t *vnm = vnet_get_main ();
496 vnet_hw_interface_t *hi;
497 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
498 hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
499
Dave Barach5ecd5a52019-02-25 15:27:28 -0500500 vnet_interface_pcap_tx_trace (vm, node, frame,
501 0 /* sw_if_index_from_buffer */ );
502
Dave Barach2c0a4f42017-06-29 09:30:15 -0400503 if (hi->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD)
504 return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
505 /* do_tx_offloads */ 0);
506 else
507 return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
508 /* do_tx_offloads */ 1);
509}
Filip Tehlar62668772019-03-04 03:33:32 -0800510#endif /* CLIB_MARCH_VARIANT */
Dave Barach2c0a4f42017-06-29 09:30:15 -0400511
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512/* Use buffer's sw_if_index[VNET_TX] to choose output interface. */
Filip Tehlar62668772019-03-04 03:33:32 -0800513VLIB_NODE_FN (vnet_per_buffer_interface_output_node) (vlib_main_t * vm,
514 vlib_node_runtime_t *
515 node,
516 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517{
Dave Barachba868bb2016-08-08 09:51:21 -0400518 vnet_main_t *vnm = vnet_get_main ();
519 u32 n_left_to_next, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520 u32 n_left_from, next_index;
521
Dave Barach5ecd5a52019-02-25 15:27:28 -0500522 vnet_interface_pcap_tx_trace (vm, node, frame,
523 1 /* sw_if_index_from_buffer */ );
524
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525 n_left_from = frame->n_vectors;
526
Damjan Mariona3d59862018-11-10 10:23:00 +0100527 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528 next_index = node->cached_next_index;
529
530 while (n_left_from > 0)
531 {
532 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
533
534 while (n_left_from >= 4 && n_left_to_next >= 2)
535 {
536 u32 bi0, bi1, next0, next1;
Dave Barachba868bb2016-08-08 09:51:21 -0400537 vlib_buffer_t *b0, *b1;
538 vnet_hw_interface_t *hi0, *hi1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539
540 /* Prefetch next iteration. */
541 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
542 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
543
544 bi0 = from[0];
545 bi1 = from[1];
546 to_next[0] = bi0;
547 to_next[1] = bi1;
548 from += 2;
549 to_next += 2;
550 n_left_to_next -= 2;
551 n_left_from -= 2;
552
553 b0 = vlib_get_buffer (vm, bi0);
554 b1 = vlib_get_buffer (vm, bi1);
555
Dave Barachba868bb2016-08-08 09:51:21 -0400556 hi0 =
557 vnet_get_sup_hw_interface (vnm,
558 vnet_buffer (b0)->sw_if_index
559 [VLIB_TX]);
560 hi1 =
561 vnet_get_sup_hw_interface (vnm,
562 vnet_buffer (b1)->sw_if_index
563 [VLIB_TX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564
John Loe5453d02018-01-23 19:21:34 -0500565 next0 = hi0->output_node_next_index;
566 next1 = hi1->output_node_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567
Dave Barachba868bb2016-08-08 09:51:21 -0400568 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
569 n_left_to_next, bi0, bi1, next0,
570 next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 }
572
573 while (n_left_from > 0 && n_left_to_next > 0)
574 {
575 u32 bi0, next0;
Dave Barachba868bb2016-08-08 09:51:21 -0400576 vlib_buffer_t *b0;
577 vnet_hw_interface_t *hi0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578
579 bi0 = from[0];
580 to_next[0] = bi0;
581 from += 1;
582 to_next += 1;
583 n_left_to_next -= 1;
584 n_left_from -= 1;
585
586 b0 = vlib_get_buffer (vm, bi0);
587
Dave Barachba868bb2016-08-08 09:51:21 -0400588 hi0 =
589 vnet_get_sup_hw_interface (vnm,
590 vnet_buffer (b0)->sw_if_index
591 [VLIB_TX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592
John Loe5453d02018-01-23 19:21:34 -0500593 next0 = hi0->output_node_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
Dave Barachba868bb2016-08-08 09:51:21 -0400595 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
596 n_left_to_next, bi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597 }
598
599 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
600 }
601
602 return frame->n_vectors;
603}
604
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000605typedef struct vnet_error_trace_t_
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000607 u32 sw_if_index;
Dave Barach4330c462020-06-10 17:07:32 -0400608 i8 details_valid;
609 u8 is_ip6;
610 u8 pad[2];
611 u16 mactype;
612 ip46_address_t src, dst;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000613} vnet_error_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614
Dave Barachba868bb2016-08-08 09:51:21 -0400615static u8 *
616format_vnet_error_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000618 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000620 vnet_error_trace_t *t = va_arg (*va, vnet_error_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621
Dave Barach4330c462020-06-10 17:07:32 -0400622 /* Normal, non-catchup trace */
623 if (t->details_valid == 0)
624 {
625 s = format (s, "rx:%U", format_vnet_sw_if_index_name,
626 vnet_get_main (), t->sw_if_index);
627 }
628 else if (t->details_valid == 1)
629 {
630 /* The trace capture code didn't understant the mactype */
631 s = format (s, "mactype 0x%4x (not decoded)", t->mactype);
632 }
633 else if (t->details_valid == 2)
634 {
635 /* Dump the src/dst addresses */
636 if (t->is_ip6 == 0)
637 s = format (s, "IP4: %U -> %U",
638 format_ip4_address, &t->src.ip4,
639 format_ip4_address, &t->dst.ip4);
640 else
641 s = format (s, "IP6: %U -> %U",
642 format_ip6_address, &t->src.ip6,
643 format_ip6_address, &t->dst.ip6);
644 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645 return s;
646}
647
648static void
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000649interface_trace_buffers (vlib_main_t * vm,
650 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651{
Dave Barachba868bb2016-08-08 09:51:21 -0400652 u32 n_left, *buffers;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653
654 buffers = vlib_frame_vector_args (frame);
655 n_left = frame->n_vectors;
Dave Barachba868bb2016-08-08 09:51:21 -0400656
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 while (n_left >= 4)
658 {
659 u32 bi0, bi1;
Dave Barachba868bb2016-08-08 09:51:21 -0400660 vlib_buffer_t *b0, *b1;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000661 vnet_error_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662
663 /* Prefetch next iteration. */
664 vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD);
665 vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD);
666
667 bi0 = buffers[0];
668 bi1 = buffers[1];
669
670 b0 = vlib_get_buffer (vm, bi0);
671 b1 = vlib_get_buffer (vm, bi1);
672
673 if (b0->flags & VLIB_BUFFER_IS_TRACED)
674 {
Dave Barach4330c462020-06-10 17:07:32 -0400675 t0 = vlib_add_trace (vm, node, b0,
676 STRUCT_OFFSET_OF (vnet_error_trace_t, pad));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000677 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Dave Barach4330c462020-06-10 17:07:32 -0400678 t0->details_valid = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 }
680 if (b1->flags & VLIB_BUFFER_IS_TRACED)
681 {
Dave Barach4330c462020-06-10 17:07:32 -0400682 t1 = vlib_add_trace (vm, node, b1,
683 STRUCT_OFFSET_OF (vnet_error_trace_t, pad));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000684 t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Dave Barach4330c462020-06-10 17:07:32 -0400685 t1->details_valid = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 }
687 buffers += 2;
688 n_left -= 2;
689 }
690
691 while (n_left >= 1)
692 {
693 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400694 vlib_buffer_t *b0;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000695 vnet_error_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696
697 bi0 = buffers[0];
698
699 b0 = vlib_get_buffer (vm, bi0);
700
701 if (b0->flags & VLIB_BUFFER_IS_TRACED)
702 {
Dave Barach4330c462020-06-10 17:07:32 -0400703 t0 = vlib_add_trace (vm, node, b0,
704 STRUCT_OFFSET_OF (vnet_error_trace_t, pad));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000705 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Dave Barach4330c462020-06-10 17:07:32 -0400706 t0->details_valid = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 }
708 buffers += 1;
709 n_left -= 1;
710 }
711}
712
Dave Barachba868bb2016-08-08 09:51:21 -0400713typedef enum
714{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715 VNET_ERROR_DISPOSITION_DROP,
716 VNET_ERROR_DISPOSITION_PUNT,
717 VNET_ERROR_N_DISPOSITION,
718} vnet_error_disposition_t;
719
Dave Barach4330c462020-06-10 17:07:32 -0400720static void
721drop_catchup_trace (vlib_main_t * vm,
722 vlib_node_runtime_t * node, vlib_buffer_t * b)
723{
724 /* Can we safely rewind the buffer? If not, fagedaboudit */
725 if (b->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID)
726 {
727 vnet_error_trace_t *t;
728 ip4_header_t *ip4;
729 ip6_header_t *ip6;
730 ethernet_header_t *eh;
731 i16 delta;
732
733 t = vlib_add_trace (vm, node, b, sizeof (*t));
734 delta = vnet_buffer (b)->l2_hdr_offset - b->current_data;
735 vlib_buffer_advance (b, delta);
736
737 eh = vlib_buffer_get_current (b);
738 /* Save mactype */
739 t->mactype = clib_net_to_host_u16 (eh->type);
740 t->details_valid = 1;
741 switch (t->mactype)
742 {
743 case ETHERNET_TYPE_IP4:
744 ip4 = (void *) (eh + 1);
745 t->details_valid = 2;
746 t->is_ip6 = 0;
747 t->src.ip4.as_u32 = ip4->src_address.as_u32;
748 t->dst.ip4.as_u32 = ip4->dst_address.as_u32;
749 break;
750
751 case ETHERNET_TYPE_IP6:
752 ip6 = (void *) (eh + 1);
753 t->details_valid = 2;
754 t->is_ip6 = 1;
755 clib_memcpy_fast (t->src.as_u8, ip6->src_address.as_u8,
756 sizeof (ip6_address_t));
757 clib_memcpy_fast (t->dst.as_u8, ip6->dst_address.as_u8,
758 sizeof (ip6_address_t));
759 break;
760
761 default:
762 /* Dunno, do nothing, leave details_valid alone */
763 break;
764 }
765 /* Restore current data (probably unnecessary) */
766 vlib_buffer_advance (b, -delta);
767 }
768}
769
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770static_always_inline uword
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000771interface_drop_punt (vlib_main_t * vm,
772 vlib_node_runtime_t * node,
773 vlib_frame_t * frame,
774 vnet_error_disposition_t disposition)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000776 u32 *from, n_left, thread_index, *sw_if_index;
777 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
778 u32 sw_if_indices[VLIB_FRAME_SIZE];
Dave Barachba868bb2016-08-08 09:51:21 -0400779 vlib_simple_counter_main_t *cm;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000780 u16 nexts[VLIB_FRAME_SIZE];
Dave Barach4330c462020-06-10 17:07:32 -0400781 u32 n_trace;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000782 vnet_main_t *vnm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000784 vnm = vnet_get_main ();
785 thread_index = vm->thread_index;
786 from = vlib_frame_vector_args (frame);
787 n_left = frame->n_vectors;
788 b = bufs;
789 sw_if_index = sw_if_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000791 vlib_get_buffers (vm, from, bufs, n_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792
Dave Barach4330c462020-06-10 17:07:32 -0400793 /* "trace add error-drop NNN?" */
794 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node))))
795 {
796 /* If pkts aren't otherwise traced... */
797 if ((node->flags & VLIB_NODE_FLAG_TRACE) == 0)
798 {
799 /* Trace them from here */
800 node->flags |= VLIB_NODE_FLAG_TRACE;
801 while (n_trace && n_left)
802 {
803 vlib_trace_buffer (vm, node, 0 /* next_index */ ,
804 b[0], 0 /* follow chain */ );
805 /*
806 * Here we have a wireshark dissector problem.
807 * Packets may be well-formed, or not. We
808 * must not blow chunks in any case.
809 *
810 * Try to produce trace records which will help
811 * folks understand what's going on.
812 */
813 drop_catchup_trace (vm, node, b[0]);
814
815 n_trace--;
816 n_left--;
817 b++;
818 }
819 }
820
821 vlib_set_trace_count (vm, node, n_trace);
822 b = bufs;
823 n_left = frame->n_vectors;
824 }
825
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826 if (node->flags & VLIB_NODE_FLAG_TRACE)
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000827 interface_trace_buffers (vm, node, frame);
Dave Barachba868bb2016-08-08 09:51:21 -0400828
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000829 /* All going to drop regardless, this is just a counting exercise */
830 clib_memset (nexts, 0, sizeof (nexts));
831
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
833 (disposition == VNET_ERROR_DISPOSITION_PUNT
834 ? VNET_INTERFACE_COUNTER_PUNT
835 : VNET_INTERFACE_COUNTER_DROP));
836
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000837 /* collect the array of interfaces first ... */
838 while (n_left >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839 {
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000840 if (n_left >= 12)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700841 {
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000842 /* Prefetch 8 ahead - there's not much going on in each iteration */
843 vlib_prefetch_buffer_header (b[4], LOAD);
844 vlib_prefetch_buffer_header (b[5], LOAD);
845 vlib_prefetch_buffer_header (b[6], LOAD);
846 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847 }
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000848 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
849 sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX];
850 sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX];
851 sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX];
852
853 sw_if_index += 4;
854 n_left -= 4;
855 b += 4;
856 }
857 while (n_left)
858 {
859 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
860
861 sw_if_index += 1;
862 n_left -= 1;
863 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864 }
865
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000866 /* ... then count against them in blocks */
867 n_left = frame->n_vectors;
868
869 while (n_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 {
Dave Barachba868bb2016-08-08 09:51:21 -0400871 vnet_sw_interface_t *sw_if0;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000872 u16 off, count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000874 off = frame->n_vectors - n_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700875
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000876 sw_if_index = sw_if_indices + off;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000878 count = clib_count_equal_u32 (sw_if_index, n_left);
879 n_left -= count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700880
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000881 vlib_increment_simple_counter (cm, thread_index, sw_if_index[0], count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000883 /* Increment super-interface drop/punt counters for
884 sub-interfaces. */
885 sw_if0 = vnet_get_sw_interface (vnm, sw_if_index[0]);
886 if (sw_if0->sup_sw_if_index != sw_if_index[0])
887 vlib_increment_simple_counter
888 (cm, thread_index, sw_if0->sup_sw_if_index, count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889 }
890
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000891 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892
893 return frame->n_vectors;
894}
895
Dave Barachba868bb2016-08-08 09:51:21 -0400896static inline void
897pcap_drop_trace (vlib_main_t * vm,
Dave Barach33909772019-09-23 10:27:27 -0400898 vnet_interface_main_t * im,
899 vnet_pcap_t * pp, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900{
Dave Barachba868bb2016-08-08 09:51:21 -0400901 u32 *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700902 u32 n_left = f->n_vectors;
Dave Barachba868bb2016-08-08 09:51:21 -0400903 vlib_buffer_t *b0, *p1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904 u32 bi0;
905 i16 save_current_data;
906 u16 save_current_length;
Dave Barach9382ad92019-09-23 16:03:49 -0400907 vlib_error_main_t *em = &vm->error_main;
Dave Barachf5667c32019-09-25 11:27:46 -0400908 int do_trace = 0;
909
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910
911 from = vlib_frame_vector_args (f);
912
913 while (n_left > 0)
914 {
915 if (PREDICT_TRUE (n_left > 1))
Dave Barachba868bb2016-08-08 09:51:21 -0400916 {
917 p1 = vlib_get_buffer (vm, from[1]);
918 vlib_prefetch_buffer_header (p1, LOAD);
919 }
920
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921 bi0 = from[0];
922 b0 = vlib_get_buffer (vm, bi0);
923 from++;
924 n_left--;
Dave Barachba868bb2016-08-08 09:51:21 -0400925
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926 /* See if we're pointedly ignoring this specific error */
Dave Barachba868bb2016-08-08 09:51:21 -0400927 if (im->pcap_drop_filter_hash
928 && hash_get (im->pcap_drop_filter_hash, b0->error))
929 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930
Dave Barachf5667c32019-09-25 11:27:46 -0400931 do_trace = (pp->pcap_sw_if_index == 0) ||
932 pp->pcap_sw_if_index == vnet_buffer (b0)->sw_if_index[VLIB_RX];
933
934 if (PREDICT_FALSE
935 (do_trace == 0 && pp->filter_classify_table_index != ~0))
936 {
937 do_trace = vnet_is_packet_traced_inline
938 (b0, pp->filter_classify_table_index, 0 /* full classify */ );
939 }
940
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941 /* Trace all drops, or drops received on a specific interface */
Dave Barachf5667c32019-09-25 11:27:46 -0400942 if (do_trace)
Dave Barachba868bb2016-08-08 09:51:21 -0400943 {
944 save_current_data = b0->current_data;
945 save_current_length = b0->current_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946
Dave Barachba868bb2016-08-08 09:51:21 -0400947 /*
948 * Typically, we'll need to rewind the buffer
Benoît Ganne4e323cb2019-09-17 17:30:35 +0200949 * if l2_hdr_offset is valid, make sure to rewind to the start of
950 * the L2 header. This may not be the buffer start in case we pop-ed
951 * vlan tags.
952 * Otherwise, rewind to buffer start and hope for the best.
Dave Barachba868bb2016-08-08 09:51:21 -0400953 */
Benoît Ganne4e323cb2019-09-17 17:30:35 +0200954 if (b0->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID)
955 {
956 if (b0->current_data > vnet_buffer (b0)->l2_hdr_offset)
957 vlib_buffer_advance (b0,
958 vnet_buffer (b0)->l2_hdr_offset -
959 b0->current_data);
960 }
961 else if (b0->current_data > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400962 vlib_buffer_advance (b0, (word) - b0->current_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963
Dave Barach9382ad92019-09-23 16:03:49 -0400964 {
965 vlib_buffer_t *last = b0;
966 u32 error_node_index;
967 int drop_string_len;
968 vlib_node_t *n;
969 /* Length of the error string */
970 int error_string_len =
Ole Troan148c7b72020-10-07 18:05:37 +0200971 clib_strnlen (em->counters_heap[b0->error].name, 128);
Dave Barach9382ad92019-09-23 16:03:49 -0400972
973 /* Dig up the drop node */
974 error_node_index = vm->node_main.node_by_error[b0->error];
975 n = vlib_get_node (vm, error_node_index);
976
977 /* Length of full drop string, w/ "nodename: " prepended */
978 drop_string_len = error_string_len + vec_len (n->name) + 2;
979
980 /* Find the last buffer in the chain */
981 while (last->flags & VLIB_BUFFER_NEXT_PRESENT)
982 last = vlib_get_buffer (vm, last->next_buffer);
983
984 /*
985 * Append <nodename>: <error-string> to the capture,
986 * only if we can do that without allocating a new buffer.
987 */
988 if (PREDICT_TRUE ((last->current_data + last->current_length)
989 < (VLIB_BUFFER_DEFAULT_DATA_SIZE
990 - drop_string_len)))
991 {
992 clib_memcpy_fast (last->data + last->current_data +
993 last->current_length, n->name,
994 vec_len (n->name));
995 clib_memcpy_fast (last->data + last->current_data +
996 last->current_length + vec_len (n->name),
997 ": ", 2);
998 clib_memcpy_fast (last->data + last->current_data +
999 last->current_length + vec_len (n->name) +
Ole Troan148c7b72020-10-07 18:05:37 +02001000 2, em->counters_heap[b0->error].name,
Dave Barach9382ad92019-09-23 16:03:49 -04001001 error_string_len);
1002 last->current_length += drop_string_len;
1003 b0->flags &= ~(VLIB_BUFFER_TOTAL_LENGTH_VALID);
1004 pcap_add_buffer (&pp->pcap_main, vm, bi0,
1005 pp->max_bytes_per_pkt);
1006 last->current_length -= drop_string_len;
1007 b0->current_data = save_current_data;
1008 b0->current_length = save_current_length;
1009 continue;
1010 }
1011 }
1012
1013 /*
1014 * Didn't have space in the last buffer, here's the dropped
1015 * packet as-is
1016 */
Dave Barach33909772019-09-23 10:27:27 -04001017 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
Dave Barachba868bb2016-08-08 09:51:21 -04001018
1019 b0->current_data = save_current_data;
1020 b0->current_length = save_current_length;
1021 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022 }
1023}
1024
Filip Tehlar62668772019-03-04 03:33:32 -08001025#ifndef CLIB_MARCH_VARIANT
Dave Barachba868bb2016-08-08 09:51:21 -04001026void
1027vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028{
Dave Barachba868bb2016-08-08 09:51:21 -04001029 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030
1031 if (im->pcap_drop_filter_hash == 0)
Dave Barachba868bb2016-08-08 09:51:21 -04001032 im->pcap_drop_filter_hash = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033
1034 if (is_add)
1035 hash_set (im->pcap_drop_filter_hash, error_index, 1);
1036 else
1037 hash_unset (im->pcap_drop_filter_hash, error_index);
1038}
Filip Tehlar62668772019-03-04 03:33:32 -08001039#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001040
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001041VLIB_NODE_FN (interface_drop) (vlib_main_t * vm,
1042 vlib_node_runtime_t * node,
1043 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001044{
Dave Barachba868bb2016-08-08 09:51:21 -04001045 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
Dave Barach33909772019-09-23 10:27:27 -04001046 vnet_pcap_t *pp = &vlib_global_main.pcap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001047
Dave Barach33909772019-09-23 10:27:27 -04001048 if (PREDICT_FALSE (pp->pcap_drop_enable))
1049 pcap_drop_trace (vm, im, pp, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001051 return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001052}
1053
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001054VLIB_NODE_FN (interface_punt) (vlib_main_t * vm,
1055 vlib_node_runtime_t * node,
1056 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001057{
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001058 return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_PUNT);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059}
1060
Dave Barachba868bb2016-08-08 09:51:21 -04001061/* *INDENT-OFF* */
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001062VLIB_REGISTER_NODE (interface_drop) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001063 .name = "error-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064 .vector_size = sizeof (u32),
1065 .format_trace = format_vnet_error_trace,
Dave Barach4330c462020-06-10 17:07:32 -04001066 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001067 .n_next_nodes = 1,
1068 .next_nodes = {
1069 [0] = "drop",
1070 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071};
Dave Barachba868bb2016-08-08 09:51:21 -04001072/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073
Dave Barachba868bb2016-08-08 09:51:21 -04001074/* *INDENT-OFF* */
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001075VLIB_REGISTER_NODE (interface_punt) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 .name = "error-punt",
1077 .vector_size = sizeof (u32),
1078 .format_trace = format_vnet_error_trace,
Dave Barach4330c462020-06-10 17:07:32 -04001079 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001080 .n_next_nodes = 1,
1081 .next_nodes = {
1082 [0] = "punt",
1083 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001084};
Dave Barachba868bb2016-08-08 09:51:21 -04001085/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086
Dave Barachba868bb2016-08-08 09:51:21 -04001087/* *INDENT-OFF* */
Filip Tehlar62668772019-03-04 03:33:32 -08001088VLIB_REGISTER_NODE (vnet_per_buffer_interface_output_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089 .name = "interface-output",
1090 .vector_size = sizeof (u32),
1091};
Dave Barachba868bb2016-08-08 09:51:21 -04001092/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001093
Damjan Marion152e21d2016-11-29 14:55:43 +01001094static uword
1095interface_tx_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1096 vlib_frame_t * from_frame)
1097{
1098 vnet_main_t *vnm = vnet_get_main ();
1099 u32 last_sw_if_index = ~0;
1100 vlib_frame_t *to_frame = 0;
1101 vnet_hw_interface_t *hw = 0;
1102 u32 *from, *to_next = 0;
1103 u32 n_left_from;
1104
1105 from = vlib_frame_vector_args (from_frame);
1106 n_left_from = from_frame->n_vectors;
1107 while (n_left_from > 0)
1108 {
1109 u32 bi0;
1110 vlib_buffer_t *b0;
1111 u32 sw_if_index0;
1112
1113 bi0 = from[0];
1114 from++;
1115 n_left_from--;
1116 b0 = vlib_get_buffer (vm, bi0);
1117 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
1118
1119 if (PREDICT_FALSE ((last_sw_if_index != sw_if_index0) || to_frame == 0))
1120 {
1121 if (to_frame)
1122 {
1123 hw = vnet_get_sup_hw_interface (vnm, last_sw_if_index);
1124 vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1125 }
1126 last_sw_if_index = sw_if_index0;
1127 hw = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1128 to_frame = vlib_get_frame_to_node (vm, hw->tx_node_index);
1129 to_next = vlib_frame_vector_args (to_frame);
1130 }
1131
1132 to_next[0] = bi0;
1133 to_next++;
1134 to_frame->n_vectors++;
1135 }
1136 vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1137 return from_frame->n_vectors;
1138}
1139
1140/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +02001141VLIB_REGISTER_NODE (interface_tx) = {
Damjan Marion152e21d2016-11-29 14:55:43 +01001142 .function = interface_tx_node_fn,
1143 .name = "interface-tx",
1144 .vector_size = sizeof (u32),
1145 .n_next_nodes = 1,
1146 .next_nodes = {
1147 [0] = "error-drop",
1148 },
1149};
1150
1151VNET_FEATURE_ARC_INIT (interface_output, static) =
1152{
1153 .arc_name = "interface-output",
1154 .start_nodes = VNET_FEATURES (0),
Dave Baracha25def72018-11-26 11:04:45 -05001155 .last_in_arc = "interface-tx",
Damjan Marion152e21d2016-11-29 14:55:43 +01001156 .arc_index_ptr = &vnet_main.interface_main.output_feature_arc_index,
1157};
1158
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +01001159VNET_FEATURE_INIT (span_tx, static) = {
1160 .arc_name = "interface-output",
1161 .node_name = "span-output",
1162 .runs_before = VNET_FEATURES ("interface-tx"),
1163};
1164
Matthew Smith537eeec2018-04-09 11:49:20 -05001165VNET_FEATURE_INIT (ipsec_if_tx, static) = {
1166 .arc_name = "interface-output",
1167 .node_name = "ipsec-if-output",
1168 .runs_before = VNET_FEATURES ("interface-tx"),
1169};
1170
Damjan Marion152e21d2016-11-29 14:55:43 +01001171VNET_FEATURE_INIT (interface_tx, static) = {
1172 .arc_name = "interface-output",
1173 .node_name = "interface-tx",
1174 .runs_before = 0,
1175};
1176/* *INDENT-ON* */
1177
Filip Tehlar62668772019-03-04 03:33:32 -08001178#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -07001179clib_error_t *
1180vnet_per_buffer_interface_output_hw_interface_add_del (vnet_main_t * vnm,
1181 u32 hw_if_index,
1182 u32 is_create)
1183{
Dave Barachba868bb2016-08-08 09:51:21 -04001184 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001185 u32 next_index;
1186
John Loe5453d02018-01-23 19:21:34 -05001187 if (hi->output_node_index == 0)
1188 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189
John Loe5453d02018-01-23 19:21:34 -05001190 next_index = vlib_node_add_next
1191 (vnm->vlib_main, vnet_per_buffer_interface_output_node.index,
1192 hi->output_node_index);
1193 hi->output_node_next_index = next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001194
1195 return 0;
1196}
1197
Dave Barachba868bb2016-08-08 09:51:21 -04001198VNET_HW_INTERFACE_ADD_DEL_FUNCTION
1199 (vnet_per_buffer_interface_output_hw_interface_add_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200
John Loe5453d02018-01-23 19:21:34 -05001201void
1202vnet_set_interface_output_node (vnet_main_t * vnm,
1203 u32 hw_if_index, u32 node_index)
1204{
1205 ASSERT (node_index);
1206 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1207 u32 next_index = vlib_node_add_next
1208 (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, node_index);
1209 hi->output_node_next_index = next_index;
1210 hi->output_node_index = node_index;
1211}
Filip Tehlar62668772019-03-04 03:33:32 -08001212#endif /* CLIB_MARCH_VARIANT */
John Loe5453d02018-01-23 19:21:34 -05001213
Dave Barachba868bb2016-08-08 09:51:21 -04001214/*
1215 * fd.io coding-style-patch-verification: ON
1216 *
1217 * Local Variables:
1218 * eval: (c-set-style "gnu")
1219 * End:
1220 */