blob: 641bd928d590b4f35005b06649aa5058d743101d [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}
BenoƮt Ganne7d2094c2020-11-09 15:23:52 +010094#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
96static void
97vnet_interface_output_trace (vlib_main_t * vm,
98 vlib_node_runtime_t * node,
Dave Barachba868bb2016-08-08 09:51:21 -040099 vlib_frame_t * frame, uword n_buffers)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100{
Dave Barachba868bb2016-08-08 09:51:21 -0400101 u32 n_left, *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
103 n_left = n_buffers;
Damjan Mariona3d59862018-11-10 10:23:00 +0100104 from = vlib_frame_vector_args (frame);
Dave Barachba868bb2016-08-08 09:51:21 -0400105
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 while (n_left >= 4)
107 {
108 u32 bi0, bi1;
Dave Barachba868bb2016-08-08 09:51:21 -0400109 vlib_buffer_t *b0, *b1;
110 interface_output_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111
112 /* Prefetch next iteration. */
113 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
114 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
115
116 bi0 = from[0];
117 bi1 = from[1];
118
119 b0 = vlib_get_buffer (vm, bi0);
120 b1 = vlib_get_buffer (vm, bi1);
121
122 if (b0->flags & VLIB_BUFFER_IS_TRACED)
123 {
124 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
125 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200126 t0->flags = b0->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500127 clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
128 sizeof (t0->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 }
130 if (b1->flags & VLIB_BUFFER_IS_TRACED)
131 {
132 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
133 t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200134 t1->flags = b1->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500135 clib_memcpy_fast (t1->data, vlib_buffer_get_current (b1),
136 sizeof (t1->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137 }
138 from += 2;
139 n_left -= 2;
140 }
141
142 while (n_left >= 1)
143 {
144 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400145 vlib_buffer_t *b0;
146 interface_output_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
148 bi0 = from[0];
149
150 b0 = vlib_get_buffer (vm, bi0);
151
152 if (b0->flags & VLIB_BUFFER_IS_TRACED)
153 {
154 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
155 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200156 t0->flags = b0->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500157 clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
158 sizeof (t0->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 }
160 from += 1;
161 n_left -= 1;
162 }
163}
164
Dave Barach2c0a4f42017-06-29 09:30:15 -0400165static_always_inline uword
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200166vnet_interface_output_node_inline (vlib_main_t * vm,
167 vlib_node_runtime_t * node,
168 vlib_frame_t * frame,
169 vnet_main_t * vnm,
170 vnet_hw_interface_t * hi,
171 int do_tx_offloads)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400172{
Dave Barachba868bb2016-08-08 09:51:21 -0400173 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
174 vnet_sw_interface_t *si;
Dave Barachba868bb2016-08-08 09:51:21 -0400175 u32 n_left_to_tx, *from, *from_end, *to_tx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 u32 n_bytes, n_buffers, n_packets;
Damjan Marion363640d2017-03-06 11:53:10 +0100177 u32 n_bytes_b0, n_bytes_b1, n_bytes_b2, n_bytes_b3;
Damjan Marion586afd72017-04-05 19:18:20 +0200178 u32 thread_index = vm->thread_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400179 vnet_interface_main_t *im = &vnm->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180 u32 next_index = VNET_INTERFACE_OUTPUT_NEXT_TX;
Damjan Marion152e21d2016-11-29 14:55:43 +0100181 u32 current_config_index = ~0;
182 u8 arc = im->output_feature_arc_index;
Zhiyong Yanga462c072019-05-05 19:32:25 +0800183 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184
185 n_buffers = frame->n_vectors;
186
187 if (node->flags & VLIB_NODE_FLAG_TRACE)
188 vnet_interface_output_trace (vm, node, frame, n_buffers);
189
Damjan Mariona3d59862018-11-10 10:23:00 +0100190 from = vlib_frame_vector_args (frame);
Zhiyong Yanga462c072019-05-05 19:32:25 +0800191 vlib_get_buffers (vm, from, b, n_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
193 if (rt->is_deleted)
Dave Barachba868bb2016-08-08 09:51:21 -0400194 return vlib_error_drop_buffers (vm, node, from,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 /* buffer stride */ 1,
196 n_buffers,
197 VNET_INTERFACE_OUTPUT_NEXT_DROP,
198 node->node_index,
199 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DELETED);
200
201 si = vnet_get_sw_interface (vnm, rt->sw_if_index);
202 hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
Steven Luong5ad541e2019-08-27 07:43:27 -0700203 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ||
Dave Barachba868bb2016-08-08 09:51:21 -0400204 !(hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 {
Dave Barachba868bb2016-08-08 09:51:21 -0400206 vlib_simple_counter_main_t *cm;
207
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
Dave Barachba868bb2016-08-08 09:51:21 -0400209 VNET_INTERFACE_COUNTER_TX_ERROR);
Damjan Marion586afd72017-04-05 19:18:20 +0200210 vlib_increment_simple_counter (cm, thread_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400211 rt->sw_if_index, n_buffers);
212
213 return vlib_error_drop_buffers (vm, node, from,
214 /* buffer stride */ 1,
215 n_buffers,
216 VNET_INTERFACE_OUTPUT_NEXT_DROP,
217 node->node_index,
218 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DOWN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 }
220
221 from_end = from + n_buffers;
222
223 /* Total byte count of all buffers. */
224 n_bytes = 0;
225 n_packets = 0;
226
Damjan Marion152e21d2016-11-29 14:55:43 +0100227 /* interface-output feature arc handling */
228 if (PREDICT_FALSE (vnet_have_features (arc, rt->sw_if_index)))
229 {
230 vnet_feature_config_main_t *fcm;
231 fcm = vnet_feature_get_config_main (arc);
232 current_config_index = vnet_get_feature_config_index (arc,
233 rt->sw_if_index);
234 vnet_get_config_data (&fcm->config_main, &current_config_index,
235 &next_index, 0);
236 }
237
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 while (from < from_end)
239 {
240 /* Get new next frame since previous incomplete frame may have less
Dave Barachba868bb2016-08-08 09:51:21 -0400241 than VNET_FRAME_SIZE vectors in it. */
242 vlib_get_new_next_frame (vm, node, next_index, to_tx, n_left_to_tx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
Damjan Marion363640d2017-03-06 11:53:10 +0100244 while (from + 8 <= from_end && n_left_to_tx >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 {
Damjan Marion363640d2017-03-06 11:53:10 +0100246 u32 bi0, bi1, bi2, bi3;
Damjan Marion363640d2017-03-06 11:53:10 +0100247 u32 tx_swif0, tx_swif1, tx_swif2, tx_swif3;
Dave Barach2c0a4f42017-06-29 09:30:15 -0400248 u32 or_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249
250 /* Prefetch next iteration. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800251 vlib_prefetch_buffer_header (b[4], LOAD);
252 vlib_prefetch_buffer_header (b[5], LOAD);
253 vlib_prefetch_buffer_header (b[6], LOAD);
254 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255
256 bi0 = from[0];
257 bi1 = from[1];
Damjan Marion363640d2017-03-06 11:53:10 +0100258 bi2 = from[2];
259 bi3 = from[3];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260 to_tx[0] = bi0;
261 to_tx[1] = bi1;
Damjan Marion363640d2017-03-06 11:53:10 +0100262 to_tx[2] = bi2;
263 to_tx[3] = bi3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
Zhiyong Yanga462c072019-05-05 19:32:25 +0800265 or_flags = b[0]->flags | b[1]->flags | b[2]->flags | b[3]->flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266
Zhiyong Yanga462c072019-05-05 19:32:25 +0800267 from += 4;
268 to_tx += 4;
269 n_left_to_tx -= 4;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200270
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271 /* Be grumpy about zero length buffers for benefit of
272 driver tx function. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800273 ASSERT (b[0]->current_length > 0);
274 ASSERT (b[1]->current_length > 0);
275 ASSERT (b[2]->current_length > 0);
276 ASSERT (b[3]->current_length > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277
Zhiyong Yanga462c072019-05-05 19:32:25 +0800278 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
279 n_bytes_b1 = vlib_buffer_length_in_chain (vm, b[1]);
280 n_bytes_b2 = vlib_buffer_length_in_chain (vm, b[2]);
281 n_bytes_b3 = vlib_buffer_length_in_chain (vm, b[3]);
282 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
283 tx_swif1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
284 tx_swif2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
285 tx_swif3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
287 n_bytes += n_bytes_b0 + n_bytes_b1;
Damjan Marion363640d2017-03-06 11:53:10 +0100288 n_bytes += n_bytes_b2 + n_bytes_b3;
289 n_packets += 4;
Dave Barachba868bb2016-08-08 09:51:21 -0400290
Damjan Marion152e21d2016-11-29 14:55:43 +0100291 if (PREDICT_FALSE (current_config_index != ~0))
292 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800293 vnet_buffer (b[0])->feature_arc_index = arc;
294 vnet_buffer (b[1])->feature_arc_index = arc;
295 vnet_buffer (b[2])->feature_arc_index = arc;
296 vnet_buffer (b[3])->feature_arc_index = arc;
297 b[0]->current_config_index = current_config_index;
298 b[1]->current_config_index = current_config_index;
299 b[2]->current_config_index = current_config_index;
300 b[3]->current_config_index = current_config_index;
Damjan Marion152e21d2016-11-29 14:55:43 +0100301 }
302
Damjan Marion363640d2017-03-06 11:53:10 +0100303 /* update vlan subif tx counts, if required */
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100304 if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -0400305 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100306 vlib_increment_combined_counter (im->combined_sw_if_counters +
307 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200308 thread_index, tx_swif0, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100309 n_bytes_b0);
Dave Barachba868bb2016-08-08 09:51:21 -0400310 }
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100311
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100312 if (PREDICT_FALSE (tx_swif1 != rt->sw_if_index))
313 {
314
315 vlib_increment_combined_counter (im->combined_sw_if_counters +
316 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200317 thread_index, tx_swif1, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100318 n_bytes_b1);
319 }
Damjan Marion363640d2017-03-06 11:53:10 +0100320
321 if (PREDICT_FALSE (tx_swif2 != rt->sw_if_index))
322 {
323
324 vlib_increment_combined_counter (im->combined_sw_if_counters +
325 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200326 thread_index, tx_swif2, 1,
Damjan Marion363640d2017-03-06 11:53:10 +0100327 n_bytes_b2);
328 }
329 if (PREDICT_FALSE (tx_swif3 != rt->sw_if_index))
330 {
331
332 vlib_increment_combined_counter (im->combined_sw_if_counters +
333 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200334 thread_index, tx_swif3, 1,
Damjan Marion363640d2017-03-06 11:53:10 +0100335 n_bytes_b3);
336 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400337
Dave Barach2c0a4f42017-06-29 09:30:15 -0400338 if (do_tx_offloads)
339 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100340 if (or_flags & VNET_BUFFER_F_OFFLOAD)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400341 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100342 if (b[0]->flags & VNET_BUFFER_F_OFFLOAD)
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200343 vnet_calc_checksums_inline
344 (vm, b[0],
345 b[0]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300346 b[0]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmi68095382021-02-10 11:26:24 +0100347 if (b[1]->flags & VNET_BUFFER_F_OFFLOAD)
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200348 vnet_calc_checksums_inline
349 (vm, b[1],
350 b[1]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300351 b[1]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmi68095382021-02-10 11:26:24 +0100352 if (b[2]->flags & VNET_BUFFER_F_OFFLOAD)
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200353 vnet_calc_checksums_inline
354 (vm, b[2],
355 b[2]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300356 b[2]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmi68095382021-02-10 11:26:24 +0100357 if (b[3]->flags & VNET_BUFFER_F_OFFLOAD)
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200358 vnet_calc_checksums_inline
359 (vm, b[3],
360 b[3]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300361 b[3]->flags & VNET_BUFFER_F_IS_IP6);
Dave Barach2c0a4f42017-06-29 09:30:15 -0400362 }
363 }
Zhiyong Yanga462c072019-05-05 19:32:25 +0800364 b += 4;
365
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 }
367
368 while (from + 1 <= from_end && n_left_to_tx >= 1)
369 {
370 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400371 u32 tx_swif0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372
373 bi0 = from[0];
374 to_tx[0] = bi0;
375 from += 1;
376 to_tx += 1;
377 n_left_to_tx -= 1;
378
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 /* Be grumpy about zero length buffers for benefit of
380 driver tx function. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800381 ASSERT (b[0]->current_length > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382
Zhiyong Yanga462c072019-05-05 19:32:25 +0800383 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
384 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 n_bytes += n_bytes_b0;
386 n_packets += 1;
387
Damjan Marion152e21d2016-11-29 14:55:43 +0100388 if (PREDICT_FALSE (current_config_index != ~0))
389 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800390 vnet_buffer (b[0])->feature_arc_index = arc;
391 b[0]->current_config_index = current_config_index;
Damjan Marion152e21d2016-11-29 14:55:43 +0100392 }
393
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100394 if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -0400395 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100397 vlib_increment_combined_counter (im->combined_sw_if_counters +
398 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200399 thread_index, tx_swif0, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100400 n_bytes_b0);
Dave Barachba868bb2016-08-08 09:51:21 -0400401 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400402
403 if (do_tx_offloads)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200404 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100405 if (b[0]->flags & VNET_BUFFER_F_OFFLOAD)
Dave Barach1bd2c012020-04-12 08:31:39 -0400406 vnet_calc_checksums_inline
407 (vm, b[0],
408 b[0]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300409 b[0]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200410 }
Zhiyong Yanga462c072019-05-05 19:32:25 +0800411 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 }
413
Dave Barachba868bb2016-08-08 09:51:21 -0400414 vlib_put_next_frame (vm, node, next_index, n_left_to_tx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 }
416
417 /* Update main interface stats. */
418 vlib_increment_combined_counter (im->combined_sw_if_counters
Dave Barachba868bb2016-08-08 09:51:21 -0400419 + VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200420 thread_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400421 rt->sw_if_index, n_packets, n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 return n_buffers;
423}
424
Dave Barach5ecd5a52019-02-25 15:27:28 -0500425static_always_inline void vnet_interface_pcap_tx_trace
426 (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame,
427 int sw_if_index_from_buffer)
428{
Damjan Marion8fb5add2021-03-04 18:41:59 +0100429 vnet_main_t *vnm = vnet_get_main ();
Dave Barach5ecd5a52019-02-25 15:27:28 -0500430 u32 n_left_from, *from;
431 u32 sw_if_index;
Damjan Marion8fb5add2021-03-04 18:41:59 +0100432 vnet_pcap_t *pp = &vnm->pcap;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500433
Dave Barach33909772019-09-23 10:27:27 -0400434 if (PREDICT_TRUE (pp->pcap_tx_enable == 0))
Dave Barach5ecd5a52019-02-25 15:27:28 -0500435 return;
436
437 if (sw_if_index_from_buffer == 0)
438 {
439 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
440 sw_if_index = rt->sw_if_index;
441 }
442 else
443 sw_if_index = ~0;
444
445 n_left_from = frame->n_vectors;
446 from = vlib_frame_vector_args (frame);
447
448 while (n_left_from > 0)
449 {
Dave Barach9137e542019-09-13 17:47:50 -0400450 int classify_filter_result;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500451 u32 bi0 = from[0];
452 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Dave Barach9137e542019-09-13 17:47:50 -0400453 from++;
454 n_left_from--;
455
Dave Barachf5667c32019-09-25 11:27:46 -0400456 if (pp->filter_classify_table_index != ~0)
Dave Barach9137e542019-09-13 17:47:50 -0400457 {
458 classify_filter_result =
459 vnet_is_packet_traced_inline
Dave Barachf5667c32019-09-25 11:27:46 -0400460 (b0, pp->filter_classify_table_index, 0 /* full classify */ );
Dave Barach9137e542019-09-13 17:47:50 -0400461 if (classify_filter_result)
Dave Barach33909772019-09-23 10:27:27 -0400462 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
Dave Barach9137e542019-09-13 17:47:50 -0400463 continue;
464 }
Dave Barach5ecd5a52019-02-25 15:27:28 -0500465
466 if (sw_if_index_from_buffer)
467 sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
468
Dave Barach33909772019-09-23 10:27:27 -0400469 if (pp->pcap_sw_if_index == 0 || pp->pcap_sw_if_index == sw_if_index)
Dave Barachd28437c2019-11-20 09:28:31 -0500470 {
471 vnet_main_t *vnm = vnet_get_main ();
472 vnet_hw_interface_t *hi =
473 vnet_get_sup_hw_interface (vnm, sw_if_index);
474 /* Capture pkt if not filtered, or if filter hits */
475 if (hi->trace_classify_table_index == ~0 ||
476 vnet_is_packet_traced_inline
477 (b0, hi->trace_classify_table_index, 0 /* full classify */ ))
478 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
479 }
Dave Barach5ecd5a52019-02-25 15:27:28 -0500480 }
481}
482
BenoƮt Ganne7d2094c2020-11-09 15:23:52 +0100483static vlib_node_function_t CLIB_MULTIARCH_FN (vnet_interface_output_node);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200484
BenoƮt Ganne7d2094c2020-11-09 15:23:52 +0100485static uword
486CLIB_MULTIARCH_FN (vnet_interface_output_node) (vlib_main_t * vm,
487 vlib_node_runtime_t * node,
488 vlib_frame_t * frame)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400489{
490 vnet_main_t *vnm = vnet_get_main ();
491 vnet_hw_interface_t *hi;
492 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
493 hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
494
Dave Barach5ecd5a52019-02-25 15:27:28 -0500495 vnet_interface_pcap_tx_trace (vm, node, frame,
496 0 /* sw_if_index_from_buffer */ );
497
Dave Barach2c0a4f42017-06-29 09:30:15 -0400498 if (hi->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD)
499 return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
500 /* do_tx_offloads */ 0);
501 else
502 return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
503 /* do_tx_offloads */ 1);
504}
BenoƮt Ganne7d2094c2020-11-09 15:23:52 +0100505
506CLIB_MARCH_FN_REGISTRATION (vnet_interface_output_node);
507
508#ifndef CLIB_MARCH_VARIANT
509vlib_node_function_t *
Damjan Marion34c6c302021-01-27 14:21:36 +0000510vnet_interface_output_node_get (void)
BenoƮt Ganne7d2094c2020-11-09 15:23:52 +0100511{
Damjan Marion34c6c302021-01-27 14:21:36 +0000512 return CLIB_MARCH_FN_POINTER (vnet_interface_output_node);
BenoƮt Ganne7d2094c2020-11-09 15:23:52 +0100513}
Filip Tehlar62668772019-03-04 03:33:32 -0800514#endif /* CLIB_MARCH_VARIANT */
Dave Barach2c0a4f42017-06-29 09:30:15 -0400515
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516/* Use buffer's sw_if_index[VNET_TX] to choose output interface. */
Filip Tehlar62668772019-03-04 03:33:32 -0800517VLIB_NODE_FN (vnet_per_buffer_interface_output_node) (vlib_main_t * vm,
518 vlib_node_runtime_t *
519 node,
520 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521{
Dave Barachba868bb2016-08-08 09:51:21 -0400522 vnet_main_t *vnm = vnet_get_main ();
523 u32 n_left_to_next, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524 u32 n_left_from, next_index;
525
Dave Barach5ecd5a52019-02-25 15:27:28 -0500526 vnet_interface_pcap_tx_trace (vm, node, frame,
527 1 /* sw_if_index_from_buffer */ );
528
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529 n_left_from = frame->n_vectors;
530
Damjan Mariona3d59862018-11-10 10:23:00 +0100531 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532 next_index = node->cached_next_index;
533
534 while (n_left_from > 0)
535 {
536 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
537
538 while (n_left_from >= 4 && n_left_to_next >= 2)
539 {
540 u32 bi0, bi1, next0, next1;
Dave Barachba868bb2016-08-08 09:51:21 -0400541 vlib_buffer_t *b0, *b1;
542 vnet_hw_interface_t *hi0, *hi1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543
544 /* Prefetch next iteration. */
545 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
546 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
547
548 bi0 = from[0];
549 bi1 = from[1];
550 to_next[0] = bi0;
551 to_next[1] = bi1;
552 from += 2;
553 to_next += 2;
554 n_left_to_next -= 2;
555 n_left_from -= 2;
556
557 b0 = vlib_get_buffer (vm, bi0);
558 b1 = vlib_get_buffer (vm, bi1);
559
Dave Barachba868bb2016-08-08 09:51:21 -0400560 hi0 =
561 vnet_get_sup_hw_interface (vnm,
562 vnet_buffer (b0)->sw_if_index
563 [VLIB_TX]);
564 hi1 =
565 vnet_get_sup_hw_interface (vnm,
566 vnet_buffer (b1)->sw_if_index
567 [VLIB_TX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568
John Loe5453d02018-01-23 19:21:34 -0500569 next0 = hi0->output_node_next_index;
570 next1 = hi1->output_node_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571
Dave Barachba868bb2016-08-08 09:51:21 -0400572 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
573 n_left_to_next, bi0, bi1, next0,
574 next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575 }
576
577 while (n_left_from > 0 && n_left_to_next > 0)
578 {
579 u32 bi0, next0;
Dave Barachba868bb2016-08-08 09:51:21 -0400580 vlib_buffer_t *b0;
581 vnet_hw_interface_t *hi0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582
583 bi0 = from[0];
584 to_next[0] = bi0;
585 from += 1;
586 to_next += 1;
587 n_left_to_next -= 1;
588 n_left_from -= 1;
589
590 b0 = vlib_get_buffer (vm, bi0);
591
Dave Barachba868bb2016-08-08 09:51:21 -0400592 hi0 =
593 vnet_get_sup_hw_interface (vnm,
594 vnet_buffer (b0)->sw_if_index
595 [VLIB_TX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596
John Loe5453d02018-01-23 19:21:34 -0500597 next0 = hi0->output_node_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598
Dave Barachba868bb2016-08-08 09:51:21 -0400599 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
600 n_left_to_next, bi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601 }
602
603 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
604 }
605
606 return frame->n_vectors;
607}
608
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000609typedef struct vnet_error_trace_t_
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000611 u32 sw_if_index;
Dave Barach4330c462020-06-10 17:07:32 -0400612 i8 details_valid;
613 u8 is_ip6;
614 u8 pad[2];
615 u16 mactype;
616 ip46_address_t src, dst;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000617} vnet_error_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618
Dave Barachba868bb2016-08-08 09:51:21 -0400619static u8 *
620format_vnet_error_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000622 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000624 vnet_error_trace_t *t = va_arg (*va, vnet_error_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625
Dave Barach4330c462020-06-10 17:07:32 -0400626 /* Normal, non-catchup trace */
627 if (t->details_valid == 0)
628 {
629 s = format (s, "rx:%U", format_vnet_sw_if_index_name,
630 vnet_get_main (), t->sw_if_index);
631 }
632 else if (t->details_valid == 1)
633 {
634 /* The trace capture code didn't understant the mactype */
635 s = format (s, "mactype 0x%4x (not decoded)", t->mactype);
636 }
637 else if (t->details_valid == 2)
638 {
639 /* Dump the src/dst addresses */
640 if (t->is_ip6 == 0)
641 s = format (s, "IP4: %U -> %U",
642 format_ip4_address, &t->src.ip4,
643 format_ip4_address, &t->dst.ip4);
644 else
645 s = format (s, "IP6: %U -> %U",
646 format_ip6_address, &t->src.ip6,
647 format_ip6_address, &t->dst.ip6);
648 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649 return s;
650}
651
652static void
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000653interface_trace_buffers (vlib_main_t * vm,
654 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655{
Dave Barachba868bb2016-08-08 09:51:21 -0400656 u32 n_left, *buffers;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657
658 buffers = vlib_frame_vector_args (frame);
659 n_left = frame->n_vectors;
Dave Barachba868bb2016-08-08 09:51:21 -0400660
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661 while (n_left >= 4)
662 {
663 u32 bi0, bi1;
Dave Barachba868bb2016-08-08 09:51:21 -0400664 vlib_buffer_t *b0, *b1;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000665 vnet_error_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700666
667 /* Prefetch next iteration. */
668 vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD);
669 vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD);
670
671 bi0 = buffers[0];
672 bi1 = buffers[1];
673
674 b0 = vlib_get_buffer (vm, bi0);
675 b1 = vlib_get_buffer (vm, bi1);
676
677 if (b0->flags & VLIB_BUFFER_IS_TRACED)
678 {
Dave Barach4330c462020-06-10 17:07:32 -0400679 t0 = vlib_add_trace (vm, node, b0,
680 STRUCT_OFFSET_OF (vnet_error_trace_t, pad));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000681 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Dave Barach4330c462020-06-10 17:07:32 -0400682 t0->details_valid = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 }
684 if (b1->flags & VLIB_BUFFER_IS_TRACED)
685 {
Dave Barach4330c462020-06-10 17:07:32 -0400686 t1 = vlib_add_trace (vm, node, b1,
687 STRUCT_OFFSET_OF (vnet_error_trace_t, pad));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000688 t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Dave Barach4330c462020-06-10 17:07:32 -0400689 t1->details_valid = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690 }
691 buffers += 2;
692 n_left -= 2;
693 }
694
695 while (n_left >= 1)
696 {
697 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400698 vlib_buffer_t *b0;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000699 vnet_error_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700
701 bi0 = buffers[0];
702
703 b0 = vlib_get_buffer (vm, bi0);
704
705 if (b0->flags & VLIB_BUFFER_IS_TRACED)
706 {
Dave Barach4330c462020-06-10 17:07:32 -0400707 t0 = vlib_add_trace (vm, node, b0,
708 STRUCT_OFFSET_OF (vnet_error_trace_t, pad));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000709 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Dave Barach4330c462020-06-10 17:07:32 -0400710 t0->details_valid = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711 }
712 buffers += 1;
713 n_left -= 1;
714 }
715}
716
Dave Barachba868bb2016-08-08 09:51:21 -0400717typedef enum
718{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719 VNET_ERROR_DISPOSITION_DROP,
720 VNET_ERROR_DISPOSITION_PUNT,
721 VNET_ERROR_N_DISPOSITION,
722} vnet_error_disposition_t;
723
Dave Barach4330c462020-06-10 17:07:32 -0400724static void
725drop_catchup_trace (vlib_main_t * vm,
726 vlib_node_runtime_t * node, vlib_buffer_t * b)
727{
728 /* Can we safely rewind the buffer? If not, fagedaboudit */
729 if (b->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID)
730 {
731 vnet_error_trace_t *t;
732 ip4_header_t *ip4;
733 ip6_header_t *ip6;
734 ethernet_header_t *eh;
735 i16 delta;
736
737 t = vlib_add_trace (vm, node, b, sizeof (*t));
738 delta = vnet_buffer (b)->l2_hdr_offset - b->current_data;
739 vlib_buffer_advance (b, delta);
740
741 eh = vlib_buffer_get_current (b);
742 /* Save mactype */
743 t->mactype = clib_net_to_host_u16 (eh->type);
744 t->details_valid = 1;
745 switch (t->mactype)
746 {
747 case ETHERNET_TYPE_IP4:
748 ip4 = (void *) (eh + 1);
749 t->details_valid = 2;
750 t->is_ip6 = 0;
751 t->src.ip4.as_u32 = ip4->src_address.as_u32;
752 t->dst.ip4.as_u32 = ip4->dst_address.as_u32;
753 break;
754
755 case ETHERNET_TYPE_IP6:
756 ip6 = (void *) (eh + 1);
757 t->details_valid = 2;
758 t->is_ip6 = 1;
759 clib_memcpy_fast (t->src.as_u8, ip6->src_address.as_u8,
760 sizeof (ip6_address_t));
761 clib_memcpy_fast (t->dst.as_u8, ip6->dst_address.as_u8,
762 sizeof (ip6_address_t));
763 break;
764
765 default:
766 /* Dunno, do nothing, leave details_valid alone */
767 break;
768 }
769 /* Restore current data (probably unnecessary) */
770 vlib_buffer_advance (b, -delta);
771 }
772}
773
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774static_always_inline uword
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000775interface_drop_punt (vlib_main_t * vm,
776 vlib_node_runtime_t * node,
777 vlib_frame_t * frame,
778 vnet_error_disposition_t disposition)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000780 u32 *from, n_left, thread_index, *sw_if_index;
781 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
782 u32 sw_if_indices[VLIB_FRAME_SIZE];
Dave Barachba868bb2016-08-08 09:51:21 -0400783 vlib_simple_counter_main_t *cm;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000784 u16 nexts[VLIB_FRAME_SIZE];
Dave Barach4330c462020-06-10 17:07:32 -0400785 u32 n_trace;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000786 vnet_main_t *vnm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000788 vnm = vnet_get_main ();
789 thread_index = vm->thread_index;
790 from = vlib_frame_vector_args (frame);
791 n_left = frame->n_vectors;
792 b = bufs;
793 sw_if_index = sw_if_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000795 vlib_get_buffers (vm, from, bufs, n_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796
Dave Barach4330c462020-06-10 17:07:32 -0400797 /* "trace add error-drop NNN?" */
798 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node))))
799 {
800 /* If pkts aren't otherwise traced... */
801 if ((node->flags & VLIB_NODE_FLAG_TRACE) == 0)
802 {
803 /* Trace them from here */
804 node->flags |= VLIB_NODE_FLAG_TRACE;
805 while (n_trace && n_left)
806 {
BenoƮt Ganne9a3973e2020-10-02 19:36:57 +0200807 if (PREDICT_TRUE
808 (vlib_trace_buffer (vm, node, 0 /* next_index */ , b[0],
809 0 /* follow chain */ )))
810 {
811 /*
812 * Here we have a wireshark dissector problem.
813 * Packets may be well-formed, or not. We
814 * must not blow chunks in any case.
815 *
816 * Try to produce trace records which will help
817 * folks understand what's going on.
818 */
819 drop_catchup_trace (vm, node, b[0]);
820 n_trace--;
821 }
Dave Barach4330c462020-06-10 17:07:32 -0400822 n_left--;
823 b++;
824 }
825 }
826
827 vlib_set_trace_count (vm, node, n_trace);
828 b = bufs;
829 n_left = frame->n_vectors;
830 }
831
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832 if (node->flags & VLIB_NODE_FLAG_TRACE)
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000833 interface_trace_buffers (vm, node, frame);
Dave Barachba868bb2016-08-08 09:51:21 -0400834
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000835 /* All going to drop regardless, this is just a counting exercise */
836 clib_memset (nexts, 0, sizeof (nexts));
837
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
839 (disposition == VNET_ERROR_DISPOSITION_PUNT
840 ? VNET_INTERFACE_COUNTER_PUNT
841 : VNET_INTERFACE_COUNTER_DROP));
842
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000843 /* collect the array of interfaces first ... */
844 while (n_left >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 {
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000846 if (n_left >= 12)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847 {
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000848 /* Prefetch 8 ahead - there's not much going on in each iteration */
849 vlib_prefetch_buffer_header (b[4], LOAD);
850 vlib_prefetch_buffer_header (b[5], LOAD);
851 vlib_prefetch_buffer_header (b[6], LOAD);
852 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853 }
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000854 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
855 sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX];
856 sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX];
857 sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX];
858
859 sw_if_index += 4;
860 n_left -= 4;
861 b += 4;
862 }
863 while (n_left)
864 {
865 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
866
867 sw_if_index += 1;
868 n_left -= 1;
869 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 }
871
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000872 /* ... then count against them in blocks */
873 n_left = frame->n_vectors;
874
875 while (n_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876 {
Dave Barachba868bb2016-08-08 09:51:21 -0400877 vnet_sw_interface_t *sw_if0;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000878 u16 off, count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000880 off = frame->n_vectors - n_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000882 sw_if_index = sw_if_indices + off;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700883
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000884 count = clib_count_equal_u32 (sw_if_index, n_left);
885 n_left -= count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000887 vlib_increment_simple_counter (cm, thread_index, sw_if_index[0], count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000889 /* Increment super-interface drop/punt counters for
890 sub-interfaces. */
891 sw_if0 = vnet_get_sw_interface (vnm, sw_if_index[0]);
892 if (sw_if0->sup_sw_if_index != sw_if_index[0])
893 vlib_increment_simple_counter
894 (cm, thread_index, sw_if0->sup_sw_if_index, count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895 }
896
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000897 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700898
899 return frame->n_vectors;
900}
901
Dave Barachba868bb2016-08-08 09:51:21 -0400902static inline void
903pcap_drop_trace (vlib_main_t * vm,
Dave Barach33909772019-09-23 10:27:27 -0400904 vnet_interface_main_t * im,
905 vnet_pcap_t * pp, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906{
Dave Barachba868bb2016-08-08 09:51:21 -0400907 u32 *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908 u32 n_left = f->n_vectors;
Dave Barachba868bb2016-08-08 09:51:21 -0400909 vlib_buffer_t *b0, *p1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910 u32 bi0;
911 i16 save_current_data;
912 u16 save_current_length;
Dave Barach9382ad92019-09-23 16:03:49 -0400913 vlib_error_main_t *em = &vm->error_main;
Dave Barachf5667c32019-09-25 11:27:46 -0400914 int do_trace = 0;
915
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916
917 from = vlib_frame_vector_args (f);
918
919 while (n_left > 0)
920 {
921 if (PREDICT_TRUE (n_left > 1))
Dave Barachba868bb2016-08-08 09:51:21 -0400922 {
923 p1 = vlib_get_buffer (vm, from[1]);
924 vlib_prefetch_buffer_header (p1, LOAD);
925 }
926
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927 bi0 = from[0];
928 b0 = vlib_get_buffer (vm, bi0);
929 from++;
930 n_left--;
Dave Barachba868bb2016-08-08 09:51:21 -0400931
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932 /* See if we're pointedly ignoring this specific error */
Dave Barachba868bb2016-08-08 09:51:21 -0400933 if (im->pcap_drop_filter_hash
934 && hash_get (im->pcap_drop_filter_hash, b0->error))
935 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936
Dave Barachf5667c32019-09-25 11:27:46 -0400937 do_trace = (pp->pcap_sw_if_index == 0) ||
938 pp->pcap_sw_if_index == vnet_buffer (b0)->sw_if_index[VLIB_RX];
939
940 if (PREDICT_FALSE
941 (do_trace == 0 && pp->filter_classify_table_index != ~0))
942 {
943 do_trace = vnet_is_packet_traced_inline
944 (b0, pp->filter_classify_table_index, 0 /* full classify */ );
945 }
946
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947 /* Trace all drops, or drops received on a specific interface */
Dave Barachf5667c32019-09-25 11:27:46 -0400948 if (do_trace)
Dave Barachba868bb2016-08-08 09:51:21 -0400949 {
950 save_current_data = b0->current_data;
951 save_current_length = b0->current_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952
Dave Barachba868bb2016-08-08 09:51:21 -0400953 /*
954 * Typically, we'll need to rewind the buffer
BenoƮt Ganne4e323cb2019-09-17 17:30:35 +0200955 * if l2_hdr_offset is valid, make sure to rewind to the start of
956 * the L2 header. This may not be the buffer start in case we pop-ed
957 * vlan tags.
958 * Otherwise, rewind to buffer start and hope for the best.
Dave Barachba868bb2016-08-08 09:51:21 -0400959 */
BenoƮt Ganne4e323cb2019-09-17 17:30:35 +0200960 if (b0->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID)
961 {
962 if (b0->current_data > vnet_buffer (b0)->l2_hdr_offset)
963 vlib_buffer_advance (b0,
964 vnet_buffer (b0)->l2_hdr_offset -
965 b0->current_data);
966 }
967 else if (b0->current_data > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400968 vlib_buffer_advance (b0, (word) - b0->current_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700969
Dave Barach9382ad92019-09-23 16:03:49 -0400970 {
971 vlib_buffer_t *last = b0;
972 u32 error_node_index;
973 int drop_string_len;
974 vlib_node_t *n;
975 /* Length of the error string */
976 int error_string_len =
Ole Troan148c7b72020-10-07 18:05:37 +0200977 clib_strnlen (em->counters_heap[b0->error].name, 128);
Dave Barach9382ad92019-09-23 16:03:49 -0400978
979 /* Dig up the drop node */
980 error_node_index = vm->node_main.node_by_error[b0->error];
981 n = vlib_get_node (vm, error_node_index);
982
983 /* Length of full drop string, w/ "nodename: " prepended */
984 drop_string_len = error_string_len + vec_len (n->name) + 2;
985
986 /* Find the last buffer in the chain */
987 while (last->flags & VLIB_BUFFER_NEXT_PRESENT)
988 last = vlib_get_buffer (vm, last->next_buffer);
989
990 /*
991 * Append <nodename>: <error-string> to the capture,
992 * only if we can do that without allocating a new buffer.
993 */
994 if (PREDICT_TRUE ((last->current_data + last->current_length)
995 < (VLIB_BUFFER_DEFAULT_DATA_SIZE
996 - drop_string_len)))
997 {
998 clib_memcpy_fast (last->data + last->current_data +
999 last->current_length, n->name,
1000 vec_len (n->name));
1001 clib_memcpy_fast (last->data + last->current_data +
1002 last->current_length + vec_len (n->name),
1003 ": ", 2);
1004 clib_memcpy_fast (last->data + last->current_data +
1005 last->current_length + vec_len (n->name) +
Ole Troan148c7b72020-10-07 18:05:37 +02001006 2, em->counters_heap[b0->error].name,
Dave Barach9382ad92019-09-23 16:03:49 -04001007 error_string_len);
1008 last->current_length += drop_string_len;
1009 b0->flags &= ~(VLIB_BUFFER_TOTAL_LENGTH_VALID);
1010 pcap_add_buffer (&pp->pcap_main, vm, bi0,
1011 pp->max_bytes_per_pkt);
1012 last->current_length -= drop_string_len;
1013 b0->current_data = save_current_data;
1014 b0->current_length = save_current_length;
1015 continue;
1016 }
1017 }
1018
1019 /*
1020 * Didn't have space in the last buffer, here's the dropped
1021 * packet as-is
1022 */
Dave Barach33909772019-09-23 10:27:27 -04001023 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
Dave Barachba868bb2016-08-08 09:51:21 -04001024
1025 b0->current_data = save_current_data;
1026 b0->current_length = save_current_length;
1027 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028 }
1029}
1030
Filip Tehlar62668772019-03-04 03:33:32 -08001031#ifndef CLIB_MARCH_VARIANT
Dave Barachba868bb2016-08-08 09:51:21 -04001032void
1033vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034{
Dave Barachba868bb2016-08-08 09:51:21 -04001035 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036
1037 if (im->pcap_drop_filter_hash == 0)
Dave Barachba868bb2016-08-08 09:51:21 -04001038 im->pcap_drop_filter_hash = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001039
1040 if (is_add)
1041 hash_set (im->pcap_drop_filter_hash, error_index, 1);
1042 else
1043 hash_unset (im->pcap_drop_filter_hash, error_index);
1044}
Filip Tehlar62668772019-03-04 03:33:32 -08001045#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001047VLIB_NODE_FN (interface_drop) (vlib_main_t * vm,
1048 vlib_node_runtime_t * node,
1049 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050{
Damjan Marion8fb5add2021-03-04 18:41:59 +01001051 vnet_main_t *vnm = vnet_get_main ();
Dave Barachba868bb2016-08-08 09:51:21 -04001052 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
Damjan Marion8fb5add2021-03-04 18:41:59 +01001053 vnet_pcap_t *pp = &vnm->pcap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054
Dave Barach33909772019-09-23 10:27:27 -04001055 if (PREDICT_FALSE (pp->pcap_drop_enable))
1056 pcap_drop_trace (vm, im, pp, 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_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059}
1060
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001061VLIB_NODE_FN (interface_punt) (vlib_main_t * vm,
1062 vlib_node_runtime_t * node,
1063 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064{
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001065 return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_PUNT);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001066}
1067
Dave Barachba868bb2016-08-08 09:51:21 -04001068/* *INDENT-OFF* */
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001069VLIB_REGISTER_NODE (interface_drop) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001070 .name = "error-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071 .vector_size = sizeof (u32),
1072 .format_trace = format_vnet_error_trace,
Dave Barach4330c462020-06-10 17:07:32 -04001073 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001074 .n_next_nodes = 1,
1075 .next_nodes = {
1076 [0] = "drop",
1077 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078};
Dave Barachba868bb2016-08-08 09:51:21 -04001079/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001080
Dave Barachba868bb2016-08-08 09:51:21 -04001081/* *INDENT-OFF* */
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001082VLIB_REGISTER_NODE (interface_punt) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083 .name = "error-punt",
1084 .vector_size = sizeof (u32),
1085 .format_trace = format_vnet_error_trace,
Dave Barach4330c462020-06-10 17:07:32 -04001086 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Neale Ranns22e1f1d2019-03-01 15:53:11 +00001087 .n_next_nodes = 1,
1088 .next_nodes = {
1089 [0] = "punt",
1090 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091};
Dave Barachba868bb2016-08-08 09:51:21 -04001092/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001093
Dave Barachba868bb2016-08-08 09:51:21 -04001094/* *INDENT-OFF* */
Filip Tehlar62668772019-03-04 03:33:32 -08001095VLIB_REGISTER_NODE (vnet_per_buffer_interface_output_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096 .name = "interface-output",
1097 .vector_size = sizeof (u32),
1098};
Dave Barachba868bb2016-08-08 09:51:21 -04001099/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100
Damjan Marion152e21d2016-11-29 14:55:43 +01001101static uword
1102interface_tx_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1103 vlib_frame_t * from_frame)
1104{
1105 vnet_main_t *vnm = vnet_get_main ();
1106 u32 last_sw_if_index = ~0;
1107 vlib_frame_t *to_frame = 0;
1108 vnet_hw_interface_t *hw = 0;
1109 u32 *from, *to_next = 0;
1110 u32 n_left_from;
1111
1112 from = vlib_frame_vector_args (from_frame);
1113 n_left_from = from_frame->n_vectors;
1114 while (n_left_from > 0)
1115 {
1116 u32 bi0;
1117 vlib_buffer_t *b0;
1118 u32 sw_if_index0;
1119
1120 bi0 = from[0];
1121 from++;
1122 n_left_from--;
1123 b0 = vlib_get_buffer (vm, bi0);
1124 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
1125
1126 if (PREDICT_FALSE ((last_sw_if_index != sw_if_index0) || to_frame == 0))
1127 {
1128 if (to_frame)
1129 {
1130 hw = vnet_get_sup_hw_interface (vnm, last_sw_if_index);
1131 vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1132 }
1133 last_sw_if_index = sw_if_index0;
1134 hw = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1135 to_frame = vlib_get_frame_to_node (vm, hw->tx_node_index);
1136 to_next = vlib_frame_vector_args (to_frame);
1137 }
1138
1139 to_next[0] = bi0;
1140 to_next++;
1141 to_frame->n_vectors++;
1142 }
1143 vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1144 return from_frame->n_vectors;
1145}
1146
1147/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +02001148VLIB_REGISTER_NODE (interface_tx) = {
Damjan Marion152e21d2016-11-29 14:55:43 +01001149 .function = interface_tx_node_fn,
1150 .name = "interface-tx",
1151 .vector_size = sizeof (u32),
1152 .n_next_nodes = 1,
1153 .next_nodes = {
1154 [0] = "error-drop",
1155 },
1156};
1157
1158VNET_FEATURE_ARC_INIT (interface_output, static) =
1159{
1160 .arc_name = "interface-output",
1161 .start_nodes = VNET_FEATURES (0),
Dave Baracha25def72018-11-26 11:04:45 -05001162 .last_in_arc = "interface-tx",
Damjan Marion152e21d2016-11-29 14:55:43 +01001163 .arc_index_ptr = &vnet_main.interface_main.output_feature_arc_index,
1164};
1165
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +01001166VNET_FEATURE_INIT (span_tx, static) = {
1167 .arc_name = "interface-output",
1168 .node_name = "span-output",
1169 .runs_before = VNET_FEATURES ("interface-tx"),
1170};
1171
Matthew Smith537eeec2018-04-09 11:49:20 -05001172VNET_FEATURE_INIT (ipsec_if_tx, static) = {
1173 .arc_name = "interface-output",
1174 .node_name = "ipsec-if-output",
1175 .runs_before = VNET_FEATURES ("interface-tx"),
1176};
1177
Damjan Marion152e21d2016-11-29 14:55:43 +01001178VNET_FEATURE_INIT (interface_tx, static) = {
1179 .arc_name = "interface-output",
1180 .node_name = "interface-tx",
1181 .runs_before = 0,
1182};
1183/* *INDENT-ON* */
1184
Filip Tehlar62668772019-03-04 03:33:32 -08001185#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -07001186clib_error_t *
1187vnet_per_buffer_interface_output_hw_interface_add_del (vnet_main_t * vnm,
1188 u32 hw_if_index,
1189 u32 is_create)
1190{
Dave Barachba868bb2016-08-08 09:51:21 -04001191 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192 u32 next_index;
1193
John Loe5453d02018-01-23 19:21:34 -05001194 if (hi->output_node_index == 0)
1195 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001196
John Loe5453d02018-01-23 19:21:34 -05001197 next_index = vlib_node_add_next
1198 (vnm->vlib_main, vnet_per_buffer_interface_output_node.index,
1199 hi->output_node_index);
1200 hi->output_node_next_index = next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001201
1202 return 0;
1203}
1204
Dave Barachba868bb2016-08-08 09:51:21 -04001205VNET_HW_INTERFACE_ADD_DEL_FUNCTION
1206 (vnet_per_buffer_interface_output_hw_interface_add_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207
John Loe5453d02018-01-23 19:21:34 -05001208void
1209vnet_set_interface_output_node (vnet_main_t * vnm,
1210 u32 hw_if_index, u32 node_index)
1211{
1212 ASSERT (node_index);
1213 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1214 u32 next_index = vlib_node_add_next
1215 (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, node_index);
1216 hi->output_node_next_index = next_index;
1217 hi->output_node_index = node_index;
1218}
Filip Tehlar62668772019-03-04 03:33:32 -08001219#endif /* CLIB_MARCH_VARIANT */
John Loe5453d02018-01-23 19:21:34 -05001220
Dave Barachba868bb2016-08-08 09:51:21 -04001221/*
1222 * fd.io coding-style-patch-verification: ON
1223 *
1224 * Local Variables:
1225 * eval: (c-set-style "gnu")
1226 * End:
1227 */