blob: f9490f34f6a8ec15c30f4bac0c2d5bdcb649d1fa [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>
42#include <vnet/ip/ip4.h>
43#include <vnet/ip/ip6.h>
44#include <vnet/udp/udp_packet.h>
Damjan Marion152e21d2016-11-29 14:55:43 +010045#include <vnet/feature/feature.h>
Dave Barach9137e542019-09-13 17:47:50 -040046#include <vnet/classify/trace_classify.h>
Dave Barach1bd2c012020-04-12 08:31:39 -040047#include <vnet/interface_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Dave Barachba868bb2016-08-08 09:51:21 -040049typedef struct
50{
Ed Warnickecb9cada2015-12-08 15:45:58 -070051 u32 sw_if_index;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020052 u32 flags;
Mohsin Kazmi29467b52019-10-08 19:42:38 +020053 u8 data[128 - 2 * sizeof (u32)];
Dave Barachba868bb2016-08-08 09:51:21 -040054}
55interface_output_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Filip Tehlar62668772019-03-04 03:33:32 -080057#ifndef CLIB_MARCH_VARIANT
Dave Barachba868bb2016-08-08 09:51:21 -040058u8 *
59format_vnet_interface_output_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070060{
61 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
Dave Barachba868bb2016-08-08 09:51:21 -040062 vlib_node_t *node = va_arg (*va, vlib_node_t *);
63 interface_output_trace_t *t = va_arg (*va, interface_output_trace_t *);
64 vnet_main_t *vnm = vnet_get_main ();
65 vnet_sw_interface_t *si;
Christophe Fontained3c008d2017-10-02 18:10:54 +020066 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
Dave Barachba868bb2016-08-08 09:51:21 -040068 if (t->sw_if_index != (u32) ~ 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -070069 {
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 indent = format_get_indent (s);
Dave Barachba868bb2016-08-08 09:51:21 -040071
Neale Ranns177bbdc2016-11-15 09:46:51 +000072 if (pool_is_free_index
73 (vnm->interface_main.sw_interfaces, t->sw_if_index))
74 {
75 /* the interface may have been deleted by the time the trace is printed */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020076 s = format (s, "sw_if_index: %d ", t->sw_if_index);
Neale Ranns177bbdc2016-11-15 09:46:51 +000077 }
78 else
79 {
80 si = vnet_get_sw_interface (vnm, t->sw_if_index);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020081 s =
82 format (s, "%U ", format_vnet_sw_interface_name, vnm, si,
83 t->flags);
Neale Ranns177bbdc2016-11-15 09:46:51 +000084 }
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020085 s =
86 format (s, "\n%U%U", format_white_space, indent,
87 node->format_buffer ? node->format_buffer : format_hex_bytes,
88 t->data, sizeof (t->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 }
90 return s;
91}
92
93static void
94vnet_interface_output_trace (vlib_main_t * vm,
95 vlib_node_runtime_t * node,
Dave Barachba868bb2016-08-08 09:51:21 -040096 vlib_frame_t * frame, uword n_buffers)
Ed Warnickecb9cada2015-12-08 15:45:58 -070097{
Dave Barachba868bb2016-08-08 09:51:21 -040098 u32 n_left, *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
100 n_left = n_buffers;
Damjan Mariona3d59862018-11-10 10:23:00 +0100101 from = vlib_frame_vector_args (frame);
Dave Barachba868bb2016-08-08 09:51:21 -0400102
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 while (n_left >= 4)
104 {
105 u32 bi0, bi1;
Dave Barachba868bb2016-08-08 09:51:21 -0400106 vlib_buffer_t *b0, *b1;
107 interface_output_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108
109 /* Prefetch next iteration. */
110 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
111 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
112
113 bi0 = from[0];
114 bi1 = from[1];
115
116 b0 = vlib_get_buffer (vm, bi0);
117 b1 = vlib_get_buffer (vm, bi1);
118
119 if (b0->flags & VLIB_BUFFER_IS_TRACED)
120 {
121 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
122 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200123 t0->flags = b0->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500124 clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
125 sizeof (t0->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126 }
127 if (b1->flags & VLIB_BUFFER_IS_TRACED)
128 {
129 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
130 t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200131 t1->flags = b1->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500132 clib_memcpy_fast (t1->data, vlib_buffer_get_current (b1),
133 sizeof (t1->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 }
135 from += 2;
136 n_left -= 2;
137 }
138
139 while (n_left >= 1)
140 {
141 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400142 vlib_buffer_t *b0;
143 interface_output_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144
145 bi0 = from[0];
146
147 b0 = vlib_get_buffer (vm, bi0);
148
149 if (b0->flags & VLIB_BUFFER_IS_TRACED)
150 {
151 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
152 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200153 t0->flags = b0->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500154 clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
155 sizeof (t0->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156 }
157 from += 1;
158 n_left -= 1;
159 }
160}
161
Dave Barach2c0a4f42017-06-29 09:30:15 -0400162static_always_inline uword
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200163vnet_interface_output_node_inline (vlib_main_t * vm,
164 vlib_node_runtime_t * node,
165 vlib_frame_t * frame,
166 vnet_main_t * vnm,
167 vnet_hw_interface_t * hi,
168 int do_tx_offloads)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400169{
Dave Barachba868bb2016-08-08 09:51:21 -0400170 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
171 vnet_sw_interface_t *si;
Dave Barachba868bb2016-08-08 09:51:21 -0400172 u32 n_left_to_tx, *from, *from_end, *to_tx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173 u32 n_bytes, n_buffers, n_packets;
Damjan Marion363640d2017-03-06 11:53:10 +0100174 u32 n_bytes_b0, n_bytes_b1, n_bytes_b2, n_bytes_b3;
Damjan Marion586afd72017-04-05 19:18:20 +0200175 u32 thread_index = vm->thread_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400176 vnet_interface_main_t *im = &vnm->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177 u32 next_index = VNET_INTERFACE_OUTPUT_NEXT_TX;
Damjan Marion152e21d2016-11-29 14:55:43 +0100178 u32 current_config_index = ~0;
179 u8 arc = im->output_feature_arc_index;
Zhiyong Yanga462c072019-05-05 19:32:25 +0800180 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
182 n_buffers = frame->n_vectors;
183
184 if (node->flags & VLIB_NODE_FLAG_TRACE)
185 vnet_interface_output_trace (vm, node, frame, n_buffers);
186
Damjan Mariona3d59862018-11-10 10:23:00 +0100187 from = vlib_frame_vector_args (frame);
Zhiyong Yanga462c072019-05-05 19:32:25 +0800188 vlib_get_buffers (vm, from, b, n_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189
190 if (rt->is_deleted)
Dave Barachba868bb2016-08-08 09:51:21 -0400191 return vlib_error_drop_buffers (vm, node, from,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 /* buffer stride */ 1,
193 n_buffers,
194 VNET_INTERFACE_OUTPUT_NEXT_DROP,
195 node->node_index,
196 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DELETED);
197
198 si = vnet_get_sw_interface (vnm, rt->sw_if_index);
199 hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
Steven Luong5ad541e2019-08-27 07:43:27 -0700200 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ||
Dave Barachba868bb2016-08-08 09:51:21 -0400201 !(hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 {
Dave Barachba868bb2016-08-08 09:51:21 -0400203 vlib_simple_counter_main_t *cm;
204
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
Dave Barachba868bb2016-08-08 09:51:21 -0400206 VNET_INTERFACE_COUNTER_TX_ERROR);
Damjan Marion586afd72017-04-05 19:18:20 +0200207 vlib_increment_simple_counter (cm, thread_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400208 rt->sw_if_index, n_buffers);
209
210 return vlib_error_drop_buffers (vm, node, from,
211 /* buffer stride */ 1,
212 n_buffers,
213 VNET_INTERFACE_OUTPUT_NEXT_DROP,
214 node->node_index,
215 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DOWN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 }
217
218 from_end = from + n_buffers;
219
220 /* Total byte count of all buffers. */
221 n_bytes = 0;
222 n_packets = 0;
223
Damjan Marion152e21d2016-11-29 14:55:43 +0100224 /* interface-output feature arc handling */
225 if (PREDICT_FALSE (vnet_have_features (arc, rt->sw_if_index)))
226 {
227 vnet_feature_config_main_t *fcm;
228 fcm = vnet_feature_get_config_main (arc);
229 current_config_index = vnet_get_feature_config_index (arc,
230 rt->sw_if_index);
231 vnet_get_config_data (&fcm->config_main, &current_config_index,
232 &next_index, 0);
233 }
234
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235 while (from < from_end)
236 {
237 /* Get new next frame since previous incomplete frame may have less
Dave Barachba868bb2016-08-08 09:51:21 -0400238 than VNET_FRAME_SIZE vectors in it. */
239 vlib_get_new_next_frame (vm, node, next_index, to_tx, n_left_to_tx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240
Damjan Marion363640d2017-03-06 11:53:10 +0100241 while (from + 8 <= from_end && n_left_to_tx >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 {
Damjan Marion363640d2017-03-06 11:53:10 +0100243 u32 bi0, bi1, bi2, bi3;
Damjan Marion363640d2017-03-06 11:53:10 +0100244 u32 tx_swif0, tx_swif1, tx_swif2, tx_swif3;
Dave Barach2c0a4f42017-06-29 09:30:15 -0400245 u32 or_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246
247 /* Prefetch next iteration. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800248 vlib_prefetch_buffer_header (b[4], LOAD);
249 vlib_prefetch_buffer_header (b[5], LOAD);
250 vlib_prefetch_buffer_header (b[6], LOAD);
251 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
253 bi0 = from[0];
254 bi1 = from[1];
Damjan Marion363640d2017-03-06 11:53:10 +0100255 bi2 = from[2];
256 bi3 = from[3];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257 to_tx[0] = bi0;
258 to_tx[1] = bi1;
Damjan Marion363640d2017-03-06 11:53:10 +0100259 to_tx[2] = bi2;
260 to_tx[3] = bi3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261
Zhiyong Yanga462c072019-05-05 19:32:25 +0800262 or_flags = b[0]->flags | b[1]->flags | b[2]->flags | b[3]->flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
Zhiyong Yanga462c072019-05-05 19:32:25 +0800264 from += 4;
265 to_tx += 4;
266 n_left_to_tx -= 4;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200267
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 /* Be grumpy about zero length buffers for benefit of
269 driver tx function. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800270 ASSERT (b[0]->current_length > 0);
271 ASSERT (b[1]->current_length > 0);
272 ASSERT (b[2]->current_length > 0);
273 ASSERT (b[3]->current_length > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
Zhiyong Yanga462c072019-05-05 19:32:25 +0800275 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
276 n_bytes_b1 = vlib_buffer_length_in_chain (vm, b[1]);
277 n_bytes_b2 = vlib_buffer_length_in_chain (vm, b[2]);
278 n_bytes_b3 = vlib_buffer_length_in_chain (vm, b[3]);
279 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
280 tx_swif1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
281 tx_swif2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
282 tx_swif3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
284 n_bytes += n_bytes_b0 + n_bytes_b1;
Damjan Marion363640d2017-03-06 11:53:10 +0100285 n_bytes += n_bytes_b2 + n_bytes_b3;
286 n_packets += 4;
Dave Barachba868bb2016-08-08 09:51:21 -0400287
Damjan Marion152e21d2016-11-29 14:55:43 +0100288 if (PREDICT_FALSE (current_config_index != ~0))
289 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800290 vnet_buffer (b[0])->feature_arc_index = arc;
291 vnet_buffer (b[1])->feature_arc_index = arc;
292 vnet_buffer (b[2])->feature_arc_index = arc;
293 vnet_buffer (b[3])->feature_arc_index = arc;
294 b[0]->current_config_index = current_config_index;
295 b[1]->current_config_index = current_config_index;
296 b[2]->current_config_index = current_config_index;
297 b[3]->current_config_index = current_config_index;
Damjan Marion152e21d2016-11-29 14:55:43 +0100298 }
299
Damjan Marion363640d2017-03-06 11:53:10 +0100300 /* update vlan subif tx counts, if required */
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100301 if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -0400302 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100303 vlib_increment_combined_counter (im->combined_sw_if_counters +
304 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200305 thread_index, tx_swif0, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100306 n_bytes_b0);
Dave Barachba868bb2016-08-08 09:51:21 -0400307 }
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100308
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100309 if (PREDICT_FALSE (tx_swif1 != rt->sw_if_index))
310 {
311
312 vlib_increment_combined_counter (im->combined_sw_if_counters +
313 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200314 thread_index, tx_swif1, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100315 n_bytes_b1);
316 }
Damjan Marion363640d2017-03-06 11:53:10 +0100317
318 if (PREDICT_FALSE (tx_swif2 != rt->sw_if_index))
319 {
320
321 vlib_increment_combined_counter (im->combined_sw_if_counters +
322 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200323 thread_index, tx_swif2, 1,
Damjan Marion363640d2017-03-06 11:53:10 +0100324 n_bytes_b2);
325 }
326 if (PREDICT_FALSE (tx_swif3 != rt->sw_if_index))
327 {
328
329 vlib_increment_combined_counter (im->combined_sw_if_counters +
330 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200331 thread_index, tx_swif3, 1,
Damjan Marion363640d2017-03-06 11:53:10 +0100332 n_bytes_b3);
333 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400334
Dave Barach2c0a4f42017-06-29 09:30:15 -0400335 if (do_tx_offloads)
336 {
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200337 u32 vnet_buffer_offload_flags =
338 (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
339 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
340 VNET_BUFFER_F_OFFLOAD_IP_CKSUM);
341 if (or_flags & vnet_buffer_offload_flags)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400342 {
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200343 if (b[0]->flags & vnet_buffer_offload_flags)
344 vnet_calc_checksums_inline
345 (vm, b[0],
346 b[0]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300347 b[0]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200348 if (b[1]->flags & vnet_buffer_offload_flags)
349 vnet_calc_checksums_inline
350 (vm, b[1],
351 b[1]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300352 b[1]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200353 if (b[2]->flags & vnet_buffer_offload_flags)
354 vnet_calc_checksums_inline
355 (vm, b[2],
356 b[2]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300357 b[2]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmia9a9d822020-05-05 14:30:25 +0200358 if (b[3]->flags & vnet_buffer_offload_flags)
359 vnet_calc_checksums_inline
360 (vm, b[3],
361 b[3]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300362 b[3]->flags & VNET_BUFFER_F_IS_IP6);
Dave Barach2c0a4f42017-06-29 09:30:15 -0400363 }
364 }
Zhiyong Yanga462c072019-05-05 19:32:25 +0800365 b += 4;
366
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 }
368
369 while (from + 1 <= from_end && n_left_to_tx >= 1)
370 {
371 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400372 u32 tx_swif0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373
374 bi0 = from[0];
375 to_tx[0] = bi0;
376 from += 1;
377 to_tx += 1;
378 n_left_to_tx -= 1;
379
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 /* Be grumpy about zero length buffers for benefit of
381 driver tx function. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800382 ASSERT (b[0]->current_length > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Zhiyong Yanga462c072019-05-05 19:32:25 +0800384 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
385 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 n_bytes += n_bytes_b0;
387 n_packets += 1;
388
Damjan Marion152e21d2016-11-29 14:55:43 +0100389 if (PREDICT_FALSE (current_config_index != ~0))
390 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800391 vnet_buffer (b[0])->feature_arc_index = arc;
392 b[0]->current_config_index = current_config_index;
Damjan Marion152e21d2016-11-29 14:55:43 +0100393 }
394
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100395 if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -0400396 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100398 vlib_increment_combined_counter (im->combined_sw_if_counters +
399 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200400 thread_index, tx_swif0, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100401 n_bytes_b0);
Dave Barachba868bb2016-08-08 09:51:21 -0400402 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400403
404 if (do_tx_offloads)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200405 {
406 if (b[0]->flags &
407 (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
408 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
409 VNET_BUFFER_F_OFFLOAD_IP_CKSUM))
Dave Barach1bd2c012020-04-12 08:31:39 -0400410 vnet_calc_checksums_inline
411 (vm, b[0],
412 b[0]->flags & VNET_BUFFER_F_IS_IP4,
Vladimir Isaev698eb872020-05-21 16:34:17 +0300413 b[0]->flags & VNET_BUFFER_F_IS_IP6);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200414 }
Zhiyong Yanga462c072019-05-05 19:32:25 +0800415 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416 }
417
Dave Barachba868bb2016-08-08 09:51:21 -0400418 vlib_put_next_frame (vm, node, next_index, n_left_to_tx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419 }
420
421 /* Update main interface stats. */
422 vlib_increment_combined_counter (im->combined_sw_if_counters
Dave Barachba868bb2016-08-08 09:51:21 -0400423 + VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200424 thread_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400425 rt->sw_if_index, n_packets, n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 return n_buffers;
427}
Filip Tehlar62668772019-03-04 03:33:32 -0800428#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429
Dave Barach5ecd5a52019-02-25 15:27:28 -0500430static_always_inline void vnet_interface_pcap_tx_trace
431 (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame,
432 int sw_if_index_from_buffer)
433{
434 u32 n_left_from, *from;
435 u32 sw_if_index;
Dave Barach33909772019-09-23 10:27:27 -0400436 vnet_pcap_t *pp = &vlib_global_main.pcap;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500437
Dave Barach33909772019-09-23 10:27:27 -0400438 if (PREDICT_TRUE (pp->pcap_tx_enable == 0))
Dave Barach5ecd5a52019-02-25 15:27:28 -0500439 return;
440
441 if (sw_if_index_from_buffer == 0)
442 {
443 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
444 sw_if_index = rt->sw_if_index;
445 }
446 else
447 sw_if_index = ~0;
448
449 n_left_from = frame->n_vectors;
450 from = vlib_frame_vector_args (frame);
451
452 while (n_left_from > 0)
453 {
Dave Barach9137e542019-09-13 17:47:50 -0400454 int classify_filter_result;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500455 u32 bi0 = from[0];
456 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Dave Barach9137e542019-09-13 17:47:50 -0400457 from++;
458 n_left_from--;
459
Dave Barachf5667c32019-09-25 11:27:46 -0400460 if (pp->filter_classify_table_index != ~0)
Dave Barach9137e542019-09-13 17:47:50 -0400461 {
462 classify_filter_result =
463 vnet_is_packet_traced_inline
Dave Barachf5667c32019-09-25 11:27:46 -0400464 (b0, pp->filter_classify_table_index, 0 /* full classify */ );
Dave Barach9137e542019-09-13 17:47:50 -0400465 if (classify_filter_result)
Dave Barach33909772019-09-23 10:27:27 -0400466 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
Dave Barach9137e542019-09-13 17:47:50 -0400467 continue;
468 }
Dave Barach5ecd5a52019-02-25 15:27:28 -0500469
470 if (sw_if_index_from_buffer)
471 sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
472
Dave Barach33909772019-09-23 10:27:27 -0400473 if (pp->pcap_sw_if_index == 0 || pp->pcap_sw_if_index == sw_if_index)
Dave Barachd28437c2019-11-20 09:28:31 -0500474 {
475 vnet_main_t *vnm = vnet_get_main ();
476 vnet_hw_interface_t *hi =
477 vnet_get_sup_hw_interface (vnm, sw_if_index);
478 /* Capture pkt if not filtered, or if filter hits */
479 if (hi->trace_classify_table_index == ~0 ||
480 vnet_is_packet_traced_inline
481 (b0, hi->trace_classify_table_index, 0 /* full classify */ ))
482 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
483 }
Dave Barach5ecd5a52019-02-25 15:27:28 -0500484 }
485}
486
Filip Tehlar62668772019-03-04 03:33:32 -0800487#ifndef CLIB_MARCH_VARIANT
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200488
Damjan Marion652d2e12019-02-02 00:15:27 +0100489uword
Dave Barach2c0a4f42017-06-29 09:30:15 -0400490vnet_interface_output_node (vlib_main_t * vm, vlib_node_runtime_t * node,
491 vlib_frame_t * frame)
492{
493 vnet_main_t *vnm = vnet_get_main ();
494 vnet_hw_interface_t *hi;
495 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
496 hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
497
Dave Barach5ecd5a52019-02-25 15:27:28 -0500498 vnet_interface_pcap_tx_trace (vm, node, frame,
499 0 /* sw_if_index_from_buffer */ );
500
Dave Barach2c0a4f42017-06-29 09:30:15 -0400501 if (hi->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD)
502 return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
503 /* do_tx_offloads */ 0);
504 else
505 return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
506 /* do_tx_offloads */ 1);
507}
Filip Tehlar62668772019-03-04 03:33:32 -0800508#endif /* CLIB_MARCH_VARIANT */
Dave Barach2c0a4f42017-06-29 09:30:15 -0400509
Ed Warnickecb9cada2015-12-08 15:45:58 -0700510/* Use buffer's sw_if_index[VNET_TX] to choose output interface. */
Filip Tehlar62668772019-03-04 03:33:32 -0800511VLIB_NODE_FN (vnet_per_buffer_interface_output_node) (vlib_main_t * vm,
512 vlib_node_runtime_t *
513 node,
514 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515{
Dave Barachba868bb2016-08-08 09:51:21 -0400516 vnet_main_t *vnm = vnet_get_main ();
517 u32 n_left_to_next, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518 u32 n_left_from, next_index;
519
Dave Barach5ecd5a52019-02-25 15:27:28 -0500520 vnet_interface_pcap_tx_trace (vm, node, frame,
521 1 /* sw_if_index_from_buffer */ );
522
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523 n_left_from = frame->n_vectors;
524
Damjan Mariona3d59862018-11-10 10:23:00 +0100525 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526 next_index = node->cached_next_index;
527
528 while (n_left_from > 0)
529 {
530 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
531
532 while (n_left_from >= 4 && n_left_to_next >= 2)
533 {
534 u32 bi0, bi1, next0, next1;
Dave Barachba868bb2016-08-08 09:51:21 -0400535 vlib_buffer_t *b0, *b1;
536 vnet_hw_interface_t *hi0, *hi1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537
538 /* Prefetch next iteration. */
539 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
540 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
541
542 bi0 = from[0];
543 bi1 = from[1];
544 to_next[0] = bi0;
545 to_next[1] = bi1;
546 from += 2;
547 to_next += 2;
548 n_left_to_next -= 2;
549 n_left_from -= 2;
550
551 b0 = vlib_get_buffer (vm, bi0);
552 b1 = vlib_get_buffer (vm, bi1);
553
Dave Barachba868bb2016-08-08 09:51:21 -0400554 hi0 =
555 vnet_get_sup_hw_interface (vnm,
556 vnet_buffer (b0)->sw_if_index
557 [VLIB_TX]);
558 hi1 =
559 vnet_get_sup_hw_interface (vnm,
560 vnet_buffer (b1)->sw_if_index
561 [VLIB_TX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562
John Loe5453d02018-01-23 19:21:34 -0500563 next0 = hi0->output_node_next_index;
564 next1 = hi1->output_node_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565
Dave Barachba868bb2016-08-08 09:51:21 -0400566 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
567 n_left_to_next, bi0, bi1, next0,
568 next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569 }
570
571 while (n_left_from > 0 && n_left_to_next > 0)
572 {
573 u32 bi0, next0;
Dave Barachba868bb2016-08-08 09:51:21 -0400574 vlib_buffer_t *b0;
575 vnet_hw_interface_t *hi0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576
577 bi0 = from[0];
578 to_next[0] = bi0;
579 from += 1;
580 to_next += 1;
581 n_left_to_next -= 1;
582 n_left_from -= 1;
583
584 b0 = vlib_get_buffer (vm, bi0);
585
Dave Barachba868bb2016-08-08 09:51:21 -0400586 hi0 =
587 vnet_get_sup_hw_interface (vnm,
588 vnet_buffer (b0)->sw_if_index
589 [VLIB_TX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590
John Loe5453d02018-01-23 19:21:34 -0500591 next0 = hi0->output_node_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592
Dave Barachba868bb2016-08-08 09:51:21 -0400593 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
594 n_left_to_next, bi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595 }
596
597 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
598 }
599
600 return frame->n_vectors;
601}
602
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000603typedef struct vnet_error_trace_t_
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000605 u32 sw_if_index;
606} vnet_error_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608
Dave Barachba868bb2016-08-08 09:51:21 -0400609static u8 *
610format_vnet_error_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000612 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000614 vnet_error_trace_t *t = va_arg (*va, vnet_error_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615
Neale Ranns7227c392019-03-21 10:20:15 +0000616 s = format (s, "rx:%U", format_vnet_sw_if_index_name,
617 vnet_get_main (), t->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618
619 return s;
620}
621
622static void
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000623interface_trace_buffers (vlib_main_t * vm,
624 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625{
Dave Barachba868bb2016-08-08 09:51:21 -0400626 u32 n_left, *buffers;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627
628 buffers = vlib_frame_vector_args (frame);
629 n_left = frame->n_vectors;
Dave Barachba868bb2016-08-08 09:51:21 -0400630
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631 while (n_left >= 4)
632 {
633 u32 bi0, bi1;
Dave Barachba868bb2016-08-08 09:51:21 -0400634 vlib_buffer_t *b0, *b1;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000635 vnet_error_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636
637 /* Prefetch next iteration. */
638 vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD);
639 vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD);
640
641 bi0 = buffers[0];
642 bi1 = buffers[1];
643
644 b0 = vlib_get_buffer (vm, bi0);
645 b1 = vlib_get_buffer (vm, bi1);
646
647 if (b0->flags & VLIB_BUFFER_IS_TRACED)
648 {
649 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000650 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651 }
652 if (b1->flags & VLIB_BUFFER_IS_TRACED)
653 {
654 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000655 t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656 }
657 buffers += 2;
658 n_left -= 2;
659 }
660
661 while (n_left >= 1)
662 {
663 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400664 vlib_buffer_t *b0;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000665 vnet_error_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700666
667 bi0 = buffers[0];
668
669 b0 = vlib_get_buffer (vm, bi0);
670
671 if (b0->flags & VLIB_BUFFER_IS_TRACED)
672 {
673 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000674 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 }
676 buffers += 1;
677 n_left -= 1;
678 }
679}
680
Dave Barachba868bb2016-08-08 09:51:21 -0400681typedef enum
682{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 VNET_ERROR_DISPOSITION_DROP,
684 VNET_ERROR_DISPOSITION_PUNT,
685 VNET_ERROR_N_DISPOSITION,
686} vnet_error_disposition_t;
687
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688static_always_inline uword
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000689interface_drop_punt (vlib_main_t * vm,
690 vlib_node_runtime_t * node,
691 vlib_frame_t * frame,
692 vnet_error_disposition_t disposition)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000694 u32 *from, n_left, thread_index, *sw_if_index;
695 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
696 u32 sw_if_indices[VLIB_FRAME_SIZE];
Dave Barachba868bb2016-08-08 09:51:21 -0400697 vlib_simple_counter_main_t *cm;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000698 u16 nexts[VLIB_FRAME_SIZE];
699 vnet_main_t *vnm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000701 vnm = vnet_get_main ();
702 thread_index = vm->thread_index;
703 from = vlib_frame_vector_args (frame);
704 n_left = frame->n_vectors;
705 b = bufs;
706 sw_if_index = sw_if_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000708 vlib_get_buffers (vm, from, bufs, n_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709
710 if (node->flags & VLIB_NODE_FLAG_TRACE)
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000711 interface_trace_buffers (vm, node, frame);
Dave Barachba868bb2016-08-08 09:51:21 -0400712
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000713 /* All going to drop regardless, this is just a counting exercise */
714 clib_memset (nexts, 0, sizeof (nexts));
715
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
717 (disposition == VNET_ERROR_DISPOSITION_PUNT
718 ? VNET_INTERFACE_COUNTER_PUNT
719 : VNET_INTERFACE_COUNTER_DROP));
720
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000721 /* collect the array of interfaces first ... */
722 while (n_left >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 {
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000724 if (n_left >= 12)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725 {
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000726 /* Prefetch 8 ahead - there's not much going on in each iteration */
727 vlib_prefetch_buffer_header (b[4], LOAD);
728 vlib_prefetch_buffer_header (b[5], LOAD);
729 vlib_prefetch_buffer_header (b[6], LOAD);
730 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731 }
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000732 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
733 sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX];
734 sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX];
735 sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX];
736
737 sw_if_index += 4;
738 n_left -= 4;
739 b += 4;
740 }
741 while (n_left)
742 {
743 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
744
745 sw_if_index += 1;
746 n_left -= 1;
747 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748 }
749
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000750 /* ... then count against them in blocks */
751 n_left = frame->n_vectors;
752
753 while (n_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754 {
Dave Barachba868bb2016-08-08 09:51:21 -0400755 vnet_sw_interface_t *sw_if0;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000756 u16 off, count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000758 off = frame->n_vectors - n_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000760 sw_if_index = sw_if_indices + off;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000762 count = clib_count_equal_u32 (sw_if_index, n_left);
763 n_left -= count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000765 vlib_increment_simple_counter (cm, thread_index, sw_if_index[0], count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000767 /* Increment super-interface drop/punt counters for
768 sub-interfaces. */
769 sw_if0 = vnet_get_sw_interface (vnm, sw_if_index[0]);
770 if (sw_if0->sup_sw_if_index != sw_if_index[0])
771 vlib_increment_simple_counter
772 (cm, thread_index, sw_if0->sup_sw_if_index, count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773 }
774
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000775 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776
777 return frame->n_vectors;
778}
779
Dave Barachba868bb2016-08-08 09:51:21 -0400780static inline void
781pcap_drop_trace (vlib_main_t * vm,
Dave Barach33909772019-09-23 10:27:27 -0400782 vnet_interface_main_t * im,
783 vnet_pcap_t * pp, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784{
Dave Barachba868bb2016-08-08 09:51:21 -0400785 u32 *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786 u32 n_left = f->n_vectors;
Dave Barachba868bb2016-08-08 09:51:21 -0400787 vlib_buffer_t *b0, *p1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788 u32 bi0;
789 i16 save_current_data;
790 u16 save_current_length;
Dave Barach9382ad92019-09-23 16:03:49 -0400791 vlib_error_main_t *em = &vm->error_main;
Dave Barachf5667c32019-09-25 11:27:46 -0400792 int do_trace = 0;
793
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794
795 from = vlib_frame_vector_args (f);
796
797 while (n_left > 0)
798 {
799 if (PREDICT_TRUE (n_left > 1))
Dave Barachba868bb2016-08-08 09:51:21 -0400800 {
801 p1 = vlib_get_buffer (vm, from[1]);
802 vlib_prefetch_buffer_header (p1, LOAD);
803 }
804
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805 bi0 = from[0];
806 b0 = vlib_get_buffer (vm, bi0);
807 from++;
808 n_left--;
Dave Barachba868bb2016-08-08 09:51:21 -0400809
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810 /* See if we're pointedly ignoring this specific error */
Dave Barachba868bb2016-08-08 09:51:21 -0400811 if (im->pcap_drop_filter_hash
812 && hash_get (im->pcap_drop_filter_hash, b0->error))
813 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700814
Dave Barachf5667c32019-09-25 11:27:46 -0400815 do_trace = (pp->pcap_sw_if_index == 0) ||
816 pp->pcap_sw_if_index == vnet_buffer (b0)->sw_if_index[VLIB_RX];
817
818 if (PREDICT_FALSE
819 (do_trace == 0 && pp->filter_classify_table_index != ~0))
820 {
821 do_trace = vnet_is_packet_traced_inline
822 (b0, pp->filter_classify_table_index, 0 /* full classify */ );
823 }
824
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825 /* Trace all drops, or drops received on a specific interface */
Dave Barachf5667c32019-09-25 11:27:46 -0400826 if (do_trace)
Dave Barachba868bb2016-08-08 09:51:21 -0400827 {
828 save_current_data = b0->current_data;
829 save_current_length = b0->current_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830
Dave Barachba868bb2016-08-08 09:51:21 -0400831 /*
832 * Typically, we'll need to rewind the buffer
Benoît Ganne4e323cb2019-09-17 17:30:35 +0200833 * if l2_hdr_offset is valid, make sure to rewind to the start of
834 * the L2 header. This may not be the buffer start in case we pop-ed
835 * vlan tags.
836 * Otherwise, rewind to buffer start and hope for the best.
Dave Barachba868bb2016-08-08 09:51:21 -0400837 */
Benoît Ganne4e323cb2019-09-17 17:30:35 +0200838 if (b0->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID)
839 {
840 if (b0->current_data > vnet_buffer (b0)->l2_hdr_offset)
841 vlib_buffer_advance (b0,
842 vnet_buffer (b0)->l2_hdr_offset -
843 b0->current_data);
844 }
845 else if (b0->current_data > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400846 vlib_buffer_advance (b0, (word) - b0->current_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847
Dave Barach9382ad92019-09-23 16:03:49 -0400848 {
849 vlib_buffer_t *last = b0;
850 u32 error_node_index;
851 int drop_string_len;
852 vlib_node_t *n;
853 /* Length of the error string */
854 int error_string_len =
855 clib_strnlen (em->error_strings_heap[b0->error], 128);
856
857 /* Dig up the drop node */
858 error_node_index = vm->node_main.node_by_error[b0->error];
859 n = vlib_get_node (vm, error_node_index);
860
861 /* Length of full drop string, w/ "nodename: " prepended */
862 drop_string_len = error_string_len + vec_len (n->name) + 2;
863
864 /* Find the last buffer in the chain */
865 while (last->flags & VLIB_BUFFER_NEXT_PRESENT)
866 last = vlib_get_buffer (vm, last->next_buffer);
867
868 /*
869 * Append <nodename>: <error-string> to the capture,
870 * only if we can do that without allocating a new buffer.
871 */
872 if (PREDICT_TRUE ((last->current_data + last->current_length)
873 < (VLIB_BUFFER_DEFAULT_DATA_SIZE
874 - drop_string_len)))
875 {
876 clib_memcpy_fast (last->data + last->current_data +
877 last->current_length, n->name,
878 vec_len (n->name));
879 clib_memcpy_fast (last->data + last->current_data +
880 last->current_length + vec_len (n->name),
881 ": ", 2);
882 clib_memcpy_fast (last->data + last->current_data +
883 last->current_length + vec_len (n->name) +
884 2, em->error_strings_heap[b0->error],
885 error_string_len);
886 last->current_length += drop_string_len;
887 b0->flags &= ~(VLIB_BUFFER_TOTAL_LENGTH_VALID);
888 pcap_add_buffer (&pp->pcap_main, vm, bi0,
889 pp->max_bytes_per_pkt);
890 last->current_length -= drop_string_len;
891 b0->current_data = save_current_data;
892 b0->current_length = save_current_length;
893 continue;
894 }
895 }
896
897 /*
898 * Didn't have space in the last buffer, here's the dropped
899 * packet as-is
900 */
Dave Barach33909772019-09-23 10:27:27 -0400901 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
Dave Barachba868bb2016-08-08 09:51:21 -0400902
903 b0->current_data = save_current_data;
904 b0->current_length = save_current_length;
905 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906 }
907}
908
Filip Tehlar62668772019-03-04 03:33:32 -0800909#ifndef CLIB_MARCH_VARIANT
Dave Barachba868bb2016-08-08 09:51:21 -0400910void
911vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700912{
Dave Barachba868bb2016-08-08 09:51:21 -0400913 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700914
915 if (im->pcap_drop_filter_hash == 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400916 im->pcap_drop_filter_hash = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917
918 if (is_add)
919 hash_set (im->pcap_drop_filter_hash, error_index, 1);
920 else
921 hash_unset (im->pcap_drop_filter_hash, error_index);
922}
Filip Tehlar62668772019-03-04 03:33:32 -0800923#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000925VLIB_NODE_FN (interface_drop) (vlib_main_t * vm,
926 vlib_node_runtime_t * node,
927 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928{
Dave Barachba868bb2016-08-08 09:51:21 -0400929 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
Dave Barach33909772019-09-23 10:27:27 -0400930 vnet_pcap_t *pp = &vlib_global_main.pcap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931
Dave Barach33909772019-09-23 10:27:27 -0400932 if (PREDICT_FALSE (pp->pcap_drop_enable))
933 pcap_drop_trace (vm, im, pp, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700934
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000935 return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936}
937
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000938VLIB_NODE_FN (interface_punt) (vlib_main_t * vm,
939 vlib_node_runtime_t * node,
940 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000942 return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_PUNT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943}
944
Dave Barachba868bb2016-08-08 09:51:21 -0400945/* *INDENT-OFF* */
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000946VLIB_REGISTER_NODE (interface_drop) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947 .name = "error-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700948 .vector_size = sizeof (u32),
949 .format_trace = format_vnet_error_trace,
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000950 .n_next_nodes = 1,
951 .next_nodes = {
952 [0] = "drop",
953 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954};
Dave Barachba868bb2016-08-08 09:51:21 -0400955/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956
Dave Barachba868bb2016-08-08 09:51:21 -0400957/* *INDENT-OFF* */
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000958VLIB_REGISTER_NODE (interface_punt) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959 .name = "error-punt",
960 .vector_size = sizeof (u32),
961 .format_trace = format_vnet_error_trace,
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000962 .n_next_nodes = 1,
963 .next_nodes = {
964 [0] = "punt",
965 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700966};
Dave Barachba868bb2016-08-08 09:51:21 -0400967/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968
Dave Barachba868bb2016-08-08 09:51:21 -0400969/* *INDENT-OFF* */
Filip Tehlar62668772019-03-04 03:33:32 -0800970VLIB_REGISTER_NODE (vnet_per_buffer_interface_output_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971 .name = "interface-output",
972 .vector_size = sizeof (u32),
973};
Dave Barachba868bb2016-08-08 09:51:21 -0400974/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975
Damjan Marion152e21d2016-11-29 14:55:43 +0100976static uword
977interface_tx_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
978 vlib_frame_t * from_frame)
979{
980 vnet_main_t *vnm = vnet_get_main ();
981 u32 last_sw_if_index = ~0;
982 vlib_frame_t *to_frame = 0;
983 vnet_hw_interface_t *hw = 0;
984 u32 *from, *to_next = 0;
985 u32 n_left_from;
986
987 from = vlib_frame_vector_args (from_frame);
988 n_left_from = from_frame->n_vectors;
989 while (n_left_from > 0)
990 {
991 u32 bi0;
992 vlib_buffer_t *b0;
993 u32 sw_if_index0;
994
995 bi0 = from[0];
996 from++;
997 n_left_from--;
998 b0 = vlib_get_buffer (vm, bi0);
999 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
1000
1001 if (PREDICT_FALSE ((last_sw_if_index != sw_if_index0) || to_frame == 0))
1002 {
1003 if (to_frame)
1004 {
1005 hw = vnet_get_sup_hw_interface (vnm, last_sw_if_index);
1006 vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1007 }
1008 last_sw_if_index = sw_if_index0;
1009 hw = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1010 to_frame = vlib_get_frame_to_node (vm, hw->tx_node_index);
1011 to_next = vlib_frame_vector_args (to_frame);
1012 }
1013
1014 to_next[0] = bi0;
1015 to_next++;
1016 to_frame->n_vectors++;
1017 }
1018 vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1019 return from_frame->n_vectors;
1020}
1021
1022/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +02001023VLIB_REGISTER_NODE (interface_tx) = {
Damjan Marion152e21d2016-11-29 14:55:43 +01001024 .function = interface_tx_node_fn,
1025 .name = "interface-tx",
1026 .vector_size = sizeof (u32),
1027 .n_next_nodes = 1,
1028 .next_nodes = {
1029 [0] = "error-drop",
1030 },
1031};
1032
1033VNET_FEATURE_ARC_INIT (interface_output, static) =
1034{
1035 .arc_name = "interface-output",
1036 .start_nodes = VNET_FEATURES (0),
Dave Baracha25def72018-11-26 11:04:45 -05001037 .last_in_arc = "interface-tx",
Damjan Marion152e21d2016-11-29 14:55:43 +01001038 .arc_index_ptr = &vnet_main.interface_main.output_feature_arc_index,
1039};
1040
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +01001041VNET_FEATURE_INIT (span_tx, static) = {
1042 .arc_name = "interface-output",
1043 .node_name = "span-output",
1044 .runs_before = VNET_FEATURES ("interface-tx"),
1045};
1046
Matthew Smith537eeec2018-04-09 11:49:20 -05001047VNET_FEATURE_INIT (ipsec_if_tx, static) = {
1048 .arc_name = "interface-output",
1049 .node_name = "ipsec-if-output",
1050 .runs_before = VNET_FEATURES ("interface-tx"),
1051};
1052
Damjan Marion152e21d2016-11-29 14:55:43 +01001053VNET_FEATURE_INIT (interface_tx, static) = {
1054 .arc_name = "interface-output",
1055 .node_name = "interface-tx",
1056 .runs_before = 0,
1057};
1058/* *INDENT-ON* */
1059
Filip Tehlar62668772019-03-04 03:33:32 -08001060#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061clib_error_t *
1062vnet_per_buffer_interface_output_hw_interface_add_del (vnet_main_t * vnm,
1063 u32 hw_if_index,
1064 u32 is_create)
1065{
Dave Barachba868bb2016-08-08 09:51:21 -04001066 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067 u32 next_index;
1068
John Loe5453d02018-01-23 19:21:34 -05001069 if (hi->output_node_index == 0)
1070 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071
John Loe5453d02018-01-23 19:21:34 -05001072 next_index = vlib_node_add_next
1073 (vnm->vlib_main, vnet_per_buffer_interface_output_node.index,
1074 hi->output_node_index);
1075 hi->output_node_next_index = next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076
1077 return 0;
1078}
1079
Dave Barachba868bb2016-08-08 09:51:21 -04001080VNET_HW_INTERFACE_ADD_DEL_FUNCTION
1081 (vnet_per_buffer_interface_output_hw_interface_add_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001082
John Loe5453d02018-01-23 19:21:34 -05001083void
1084vnet_set_interface_output_node (vnet_main_t * vnm,
1085 u32 hw_if_index, u32 node_index)
1086{
1087 ASSERT (node_index);
1088 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1089 u32 next_index = vlib_node_add_next
1090 (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, node_index);
1091 hi->output_node_next_index = next_index;
1092 hi->output_node_index = node_index;
1093}
Filip Tehlar62668772019-03-04 03:33:32 -08001094#endif /* CLIB_MARCH_VARIANT */
John Loe5453d02018-01-23 19:21:34 -05001095
Dave Barachba868bb2016-08-08 09:51:21 -04001096/*
1097 * fd.io coding-style-patch-verification: ON
1098 *
1099 * Local Variables:
1100 * eval: (c-set-style "gnu")
1101 * End:
1102 */