blob: 49775d58d80bc9eab1bc6d7c2d9837b9be8cb3ce [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070047
Dave Barachba868bb2016-08-08 09:51:21 -040048typedef struct
49{
Ed Warnickecb9cada2015-12-08 15:45:58 -070050 u32 sw_if_index;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020051 u32 flags;
Mohsin Kazmi29467b52019-10-08 19:42:38 +020052 u8 data[128 - 2 * sizeof (u32)];
Dave Barachba868bb2016-08-08 09:51:21 -040053}
54interface_output_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
Filip Tehlar62668772019-03-04 03:33:32 -080056#ifndef CLIB_MARCH_VARIANT
Dave Barachba868bb2016-08-08 09:51:21 -040057u8 *
58format_vnet_interface_output_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070059{
60 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
Dave Barachba868bb2016-08-08 09:51:21 -040061 vlib_node_t *node = va_arg (*va, vlib_node_t *);
62 interface_output_trace_t *t = va_arg (*va, interface_output_trace_t *);
63 vnet_main_t *vnm = vnet_get_main ();
64 vnet_sw_interface_t *si;
Christophe Fontained3c008d2017-10-02 18:10:54 +020065 u32 indent;
Ed Warnickecb9cada2015-12-08 15:45:58 -070066
Dave Barachba868bb2016-08-08 09:51:21 -040067 if (t->sw_if_index != (u32) ~ 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 {
Ed Warnickecb9cada2015-12-08 15:45:58 -070069 indent = format_get_indent (s);
Dave Barachba868bb2016-08-08 09:51:21 -040070
Neale Ranns177bbdc2016-11-15 09:46:51 +000071 if (pool_is_free_index
72 (vnm->interface_main.sw_interfaces, t->sw_if_index))
73 {
74 /* the interface may have been deleted by the time the trace is printed */
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020075 s = format (s, "sw_if_index: %d ", t->sw_if_index);
Neale Ranns177bbdc2016-11-15 09:46:51 +000076 }
77 else
78 {
79 si = vnet_get_sw_interface (vnm, t->sw_if_index);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020080 s =
81 format (s, "%U ", format_vnet_sw_interface_name, vnm, si,
82 t->flags);
Neale Ranns177bbdc2016-11-15 09:46:51 +000083 }
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020084 s =
85 format (s, "\n%U%U", format_white_space, indent,
86 node->format_buffer ? node->format_buffer : format_hex_bytes,
87 t->data, sizeof (t->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -070088 }
89 return s;
90}
91
92static void
93vnet_interface_output_trace (vlib_main_t * vm,
94 vlib_node_runtime_t * node,
Dave Barachba868bb2016-08-08 09:51:21 -040095 vlib_frame_t * frame, uword n_buffers)
Ed Warnickecb9cada2015-12-08 15:45:58 -070096{
Dave Barachba868bb2016-08-08 09:51:21 -040097 u32 n_left, *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99 n_left = n_buffers;
Damjan Mariona3d59862018-11-10 10:23:00 +0100100 from = vlib_frame_vector_args (frame);
Dave Barachba868bb2016-08-08 09:51:21 -0400101
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 while (n_left >= 4)
103 {
104 u32 bi0, bi1;
Dave Barachba868bb2016-08-08 09:51:21 -0400105 vlib_buffer_t *b0, *b1;
106 interface_output_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107
108 /* Prefetch next iteration. */
109 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
110 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
111
112 bi0 = from[0];
113 bi1 = from[1];
114
115 b0 = vlib_get_buffer (vm, bi0);
116 b1 = vlib_get_buffer (vm, bi1);
117
118 if (b0->flags & VLIB_BUFFER_IS_TRACED)
119 {
120 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
121 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200122 t0->flags = b0->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500123 clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
124 sizeof (t0->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 }
126 if (b1->flags & VLIB_BUFFER_IS_TRACED)
127 {
128 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
129 t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200130 t1->flags = b1->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500131 clib_memcpy_fast (t1->data, vlib_buffer_get_current (b1),
132 sizeof (t1->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 }
134 from += 2;
135 n_left -= 2;
136 }
137
138 while (n_left >= 1)
139 {
140 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400141 vlib_buffer_t *b0;
142 interface_output_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143
144 bi0 = from[0];
145
146 b0 = vlib_get_buffer (vm, bi0);
147
148 if (b0->flags & VLIB_BUFFER_IS_TRACED)
149 {
150 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
151 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200152 t0->flags = b0->flags;
Dave Barach178cf492018-11-13 16:34:13 -0500153 clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0),
154 sizeof (t0->data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155 }
156 from += 1;
157 n_left -= 1;
158 }
159}
160
Dave Barach2c0a4f42017-06-29 09:30:15 -0400161static_always_inline void
162calc_checksums (vlib_main_t * vm, vlib_buffer_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163{
Dave Barach2c0a4f42017-06-29 09:30:15 -0400164 tcp_header_t *th;
165 udp_header_t *uh;
166
167 int is_ip4 = (b->flags & VNET_BUFFER_F_IS_IP4) != 0;
168 int is_ip6 = (b->flags & VNET_BUFFER_F_IS_IP6) != 0;
169
170 ASSERT (!(is_ip4 && is_ip6));
171
Dave Barach2c0a4f42017-06-29 09:30:15 -0400172 th = (tcp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset);
173 uh = (udp_header_t *) (b->data + vnet_buffer (b)->l4_hdr_offset);
174
175 if (is_ip4)
176 {
Zhiyong Yang24c50122019-04-19 05:22:31 -0400177 ip4_header_t *ip4;
178
Dave Barach2c0a4f42017-06-29 09:30:15 -0400179 ip4 = (ip4_header_t *) (b->data + vnet_buffer (b)->l3_hdr_offset);
180 if (b->flags & VNET_BUFFER_F_OFFLOAD_IP_CKSUM)
181 ip4->checksum = ip4_header_checksum (ip4);
182 if (b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM)
Andrej Kozemcak9d7570c2019-01-07 08:39:22 +0100183 {
184 th->checksum = 0;
185 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4);
186 }
Zhiyong Yang24c50122019-04-19 05:22:31 -0400187 else if (b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400188 uh->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4);
189 }
Zhiyong Yang24c50122019-04-19 05:22:31 -0400190 else if (is_ip6)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400191 {
192 int bogus;
Zhiyong Yang24c50122019-04-19 05:22:31 -0400193 ip6_header_t *ip6;
194
195 ip6 = (ip6_header_t *) (b->data + vnet_buffer (b)->l3_hdr_offset);
Dave Barach2c0a4f42017-06-29 09:30:15 -0400196 if (b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200197 {
198 th->checksum = 0;
199 th->checksum =
200 ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus);
201 }
Zhiyong Yang24c50122019-04-19 05:22:31 -0400202 else if (b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200203 {
204 uh->checksum = 0;
205 uh->checksum =
206 ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus);
207 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400208 }
Florin Coras08f2a5d2019-08-06 13:48:50 -0700209 b->flags &= ~VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
210 b->flags &= ~VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
211 b->flags &= ~VNET_BUFFER_F_OFFLOAD_IP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -0400212}
213
214static_always_inline uword
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200215vnet_interface_output_node_inline (vlib_main_t * vm,
216 vlib_node_runtime_t * node,
217 vlib_frame_t * frame,
218 vnet_main_t * vnm,
219 vnet_hw_interface_t * hi,
220 int do_tx_offloads)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400221{
Dave Barachba868bb2016-08-08 09:51:21 -0400222 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
223 vnet_sw_interface_t *si;
Dave Barachba868bb2016-08-08 09:51:21 -0400224 u32 n_left_to_tx, *from, *from_end, *to_tx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225 u32 n_bytes, n_buffers, n_packets;
Damjan Marion363640d2017-03-06 11:53:10 +0100226 u32 n_bytes_b0, n_bytes_b1, n_bytes_b2, n_bytes_b3;
Damjan Marion586afd72017-04-05 19:18:20 +0200227 u32 thread_index = vm->thread_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400228 vnet_interface_main_t *im = &vnm->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 u32 next_index = VNET_INTERFACE_OUTPUT_NEXT_TX;
Damjan Marion152e21d2016-11-29 14:55:43 +0100230 u32 current_config_index = ~0;
231 u8 arc = im->output_feature_arc_index;
Zhiyong Yanga462c072019-05-05 19:32:25 +0800232 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233
234 n_buffers = frame->n_vectors;
235
236 if (node->flags & VLIB_NODE_FLAG_TRACE)
237 vnet_interface_output_trace (vm, node, frame, n_buffers);
238
Damjan Mariona3d59862018-11-10 10:23:00 +0100239 from = vlib_frame_vector_args (frame);
Zhiyong Yanga462c072019-05-05 19:32:25 +0800240 vlib_get_buffers (vm, from, b, n_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
242 if (rt->is_deleted)
Dave Barachba868bb2016-08-08 09:51:21 -0400243 return vlib_error_drop_buffers (vm, node, from,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 /* buffer stride */ 1,
245 n_buffers,
246 VNET_INTERFACE_OUTPUT_NEXT_DROP,
247 node->node_index,
248 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DELETED);
249
250 si = vnet_get_sw_interface (vnm, rt->sw_if_index);
251 hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
Steven Luong5ad541e2019-08-27 07:43:27 -0700252 if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ||
Dave Barachba868bb2016-08-08 09:51:21 -0400253 !(hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254 {
Dave Barachba868bb2016-08-08 09:51:21 -0400255 vlib_simple_counter_main_t *cm;
256
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
Dave Barachba868bb2016-08-08 09:51:21 -0400258 VNET_INTERFACE_COUNTER_TX_ERROR);
Damjan Marion586afd72017-04-05 19:18:20 +0200259 vlib_increment_simple_counter (cm, thread_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400260 rt->sw_if_index, n_buffers);
261
262 return vlib_error_drop_buffers (vm, node, from,
263 /* buffer stride */ 1,
264 n_buffers,
265 VNET_INTERFACE_OUTPUT_NEXT_DROP,
266 node->node_index,
267 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DOWN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 }
269
270 from_end = from + n_buffers;
271
272 /* Total byte count of all buffers. */
273 n_bytes = 0;
274 n_packets = 0;
275
Damjan Marion152e21d2016-11-29 14:55:43 +0100276 /* interface-output feature arc handling */
277 if (PREDICT_FALSE (vnet_have_features (arc, rt->sw_if_index)))
278 {
279 vnet_feature_config_main_t *fcm;
280 fcm = vnet_feature_get_config_main (arc);
281 current_config_index = vnet_get_feature_config_index (arc,
282 rt->sw_if_index);
283 vnet_get_config_data (&fcm->config_main, &current_config_index,
284 &next_index, 0);
285 }
286
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287 while (from < from_end)
288 {
289 /* Get new next frame since previous incomplete frame may have less
Dave Barachba868bb2016-08-08 09:51:21 -0400290 than VNET_FRAME_SIZE vectors in it. */
291 vlib_get_new_next_frame (vm, node, next_index, to_tx, n_left_to_tx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
Damjan Marion363640d2017-03-06 11:53:10 +0100293 while (from + 8 <= from_end && n_left_to_tx >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294 {
Damjan Marion363640d2017-03-06 11:53:10 +0100295 u32 bi0, bi1, bi2, bi3;
Damjan Marion363640d2017-03-06 11:53:10 +0100296 u32 tx_swif0, tx_swif1, tx_swif2, tx_swif3;
Dave Barach2c0a4f42017-06-29 09:30:15 -0400297 u32 or_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298
299 /* Prefetch next iteration. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800300 vlib_prefetch_buffer_header (b[4], LOAD);
301 vlib_prefetch_buffer_header (b[5], LOAD);
302 vlib_prefetch_buffer_header (b[6], LOAD);
303 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304
305 bi0 = from[0];
306 bi1 = from[1];
Damjan Marion363640d2017-03-06 11:53:10 +0100307 bi2 = from[2];
308 bi3 = from[3];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309 to_tx[0] = bi0;
310 to_tx[1] = bi1;
Damjan Marion363640d2017-03-06 11:53:10 +0100311 to_tx[2] = bi2;
312 to_tx[3] = bi3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313
Zhiyong Yanga462c072019-05-05 19:32:25 +0800314 or_flags = b[0]->flags | b[1]->flags | b[2]->flags | b[3]->flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315
Zhiyong Yanga462c072019-05-05 19:32:25 +0800316 from += 4;
317 to_tx += 4;
318 n_left_to_tx -= 4;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200319
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320 /* Be grumpy about zero length buffers for benefit of
321 driver tx function. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800322 ASSERT (b[0]->current_length > 0);
323 ASSERT (b[1]->current_length > 0);
324 ASSERT (b[2]->current_length > 0);
325 ASSERT (b[3]->current_length > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
Zhiyong Yanga462c072019-05-05 19:32:25 +0800327 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
328 n_bytes_b1 = vlib_buffer_length_in_chain (vm, b[1]);
329 n_bytes_b2 = vlib_buffer_length_in_chain (vm, b[2]);
330 n_bytes_b3 = vlib_buffer_length_in_chain (vm, b[3]);
331 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
332 tx_swif1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
333 tx_swif2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
334 tx_swif3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335
336 n_bytes += n_bytes_b0 + n_bytes_b1;
Damjan Marion363640d2017-03-06 11:53:10 +0100337 n_bytes += n_bytes_b2 + n_bytes_b3;
338 n_packets += 4;
Dave Barachba868bb2016-08-08 09:51:21 -0400339
Damjan Marion152e21d2016-11-29 14:55:43 +0100340 if (PREDICT_FALSE (current_config_index != ~0))
341 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800342 vnet_buffer (b[0])->feature_arc_index = arc;
343 vnet_buffer (b[1])->feature_arc_index = arc;
344 vnet_buffer (b[2])->feature_arc_index = arc;
345 vnet_buffer (b[3])->feature_arc_index = arc;
346 b[0]->current_config_index = current_config_index;
347 b[1]->current_config_index = current_config_index;
348 b[2]->current_config_index = current_config_index;
349 b[3]->current_config_index = current_config_index;
Damjan Marion152e21d2016-11-29 14:55:43 +0100350 }
351
Damjan Marion363640d2017-03-06 11:53:10 +0100352 /* update vlan subif tx counts, if required */
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100353 if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -0400354 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100355 vlib_increment_combined_counter (im->combined_sw_if_counters +
356 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200357 thread_index, tx_swif0, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100358 n_bytes_b0);
Dave Barachba868bb2016-08-08 09:51:21 -0400359 }
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100360
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100361 if (PREDICT_FALSE (tx_swif1 != rt->sw_if_index))
362 {
363
364 vlib_increment_combined_counter (im->combined_sw_if_counters +
365 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200366 thread_index, tx_swif1, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100367 n_bytes_b1);
368 }
Damjan Marion363640d2017-03-06 11:53:10 +0100369
370 if (PREDICT_FALSE (tx_swif2 != rt->sw_if_index))
371 {
372
373 vlib_increment_combined_counter (im->combined_sw_if_counters +
374 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200375 thread_index, tx_swif2, 1,
Damjan Marion363640d2017-03-06 11:53:10 +0100376 n_bytes_b2);
377 }
378 if (PREDICT_FALSE (tx_swif3 != rt->sw_if_index))
379 {
380
381 vlib_increment_combined_counter (im->combined_sw_if_counters +
382 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200383 thread_index, tx_swif3, 1,
Damjan Marion363640d2017-03-06 11:53:10 +0100384 n_bytes_b3);
385 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400386
Dave Barach2c0a4f42017-06-29 09:30:15 -0400387 if (do_tx_offloads)
388 {
389 if (or_flags &
390 (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
391 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
392 VNET_BUFFER_F_OFFLOAD_IP_CKSUM))
393 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800394 calc_checksums (vm, b[0]);
395 calc_checksums (vm, b[1]);
396 calc_checksums (vm, b[2]);
397 calc_checksums (vm, b[3]);
Dave Barach2c0a4f42017-06-29 09:30:15 -0400398 }
399 }
Zhiyong Yanga462c072019-05-05 19:32:25 +0800400 b += 4;
401
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 }
403
404 while (from + 1 <= from_end && n_left_to_tx >= 1)
405 {
406 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400407 u32 tx_swif0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408
409 bi0 = from[0];
410 to_tx[0] = bi0;
411 from += 1;
412 to_tx += 1;
413 n_left_to_tx -= 1;
414
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 /* Be grumpy about zero length buffers for benefit of
416 driver tx function. */
Zhiyong Yanga462c072019-05-05 19:32:25 +0800417 ASSERT (b[0]->current_length > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418
Zhiyong Yanga462c072019-05-05 19:32:25 +0800419 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
420 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 n_bytes += n_bytes_b0;
422 n_packets += 1;
423
Damjan Marion152e21d2016-11-29 14:55:43 +0100424 if (PREDICT_FALSE (current_config_index != ~0))
425 {
Zhiyong Yanga462c072019-05-05 19:32:25 +0800426 vnet_buffer (b[0])->feature_arc_index = arc;
427 b[0]->current_config_index = current_config_index;
Damjan Marion152e21d2016-11-29 14:55:43 +0100428 }
429
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100430 if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -0400431 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100433 vlib_increment_combined_counter (im->combined_sw_if_counters +
434 VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200435 thread_index, tx_swif0, 1,
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100436 n_bytes_b0);
Dave Barachba868bb2016-08-08 09:51:21 -0400437 }
Dave Barach2c0a4f42017-06-29 09:30:15 -0400438
439 if (do_tx_offloads)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200440 {
441 if (b[0]->flags &
442 (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM |
443 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM |
444 VNET_BUFFER_F_OFFLOAD_IP_CKSUM))
445 calc_checksums (vm, b[0]);
446 }
Zhiyong Yanga462c072019-05-05 19:32:25 +0800447 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 }
449
Dave Barachba868bb2016-08-08 09:51:21 -0400450 vlib_put_next_frame (vm, node, next_index, n_left_to_tx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451 }
452
453 /* Update main interface stats. */
454 vlib_increment_combined_counter (im->combined_sw_if_counters
Dave Barachba868bb2016-08-08 09:51:21 -0400455 + VNET_INTERFACE_COUNTER_TX,
Damjan Marion586afd72017-04-05 19:18:20 +0200456 thread_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400457 rt->sw_if_index, n_packets, n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458 return n_buffers;
459}
Filip Tehlar62668772019-03-04 03:33:32 -0800460#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461
Dave Barach5ecd5a52019-02-25 15:27:28 -0500462static_always_inline void vnet_interface_pcap_tx_trace
463 (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame,
464 int sw_if_index_from_buffer)
465{
466 u32 n_left_from, *from;
467 u32 sw_if_index;
Dave Barach33909772019-09-23 10:27:27 -0400468 vnet_pcap_t *pp = &vlib_global_main.pcap;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500469
Dave Barach33909772019-09-23 10:27:27 -0400470 if (PREDICT_TRUE (pp->pcap_tx_enable == 0))
Dave Barach5ecd5a52019-02-25 15:27:28 -0500471 return;
472
473 if (sw_if_index_from_buffer == 0)
474 {
475 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
476 sw_if_index = rt->sw_if_index;
477 }
478 else
479 sw_if_index = ~0;
480
481 n_left_from = frame->n_vectors;
482 from = vlib_frame_vector_args (frame);
483
484 while (n_left_from > 0)
485 {
Dave Barach9137e542019-09-13 17:47:50 -0400486 int classify_filter_result;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500487 u32 bi0 = from[0];
488 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Dave Barach9137e542019-09-13 17:47:50 -0400489 from++;
490 n_left_from--;
491
Dave Barachf5667c32019-09-25 11:27:46 -0400492 if (pp->filter_classify_table_index != ~0)
Dave Barach9137e542019-09-13 17:47:50 -0400493 {
494 classify_filter_result =
495 vnet_is_packet_traced_inline
Dave Barachf5667c32019-09-25 11:27:46 -0400496 (b0, pp->filter_classify_table_index, 0 /* full classify */ );
Dave Barach9137e542019-09-13 17:47:50 -0400497 if (classify_filter_result)
Dave Barach33909772019-09-23 10:27:27 -0400498 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
Dave Barach9137e542019-09-13 17:47:50 -0400499 continue;
500 }
Dave Barach5ecd5a52019-02-25 15:27:28 -0500501
502 if (sw_if_index_from_buffer)
503 sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX];
504
Dave Barach33909772019-09-23 10:27:27 -0400505 if (pp->pcap_sw_if_index == 0 || pp->pcap_sw_if_index == sw_if_index)
Dave Barachd28437c2019-11-20 09:28:31 -0500506 {
507 vnet_main_t *vnm = vnet_get_main ();
508 vnet_hw_interface_t *hi =
509 vnet_get_sup_hw_interface (vnm, sw_if_index);
510 /* Capture pkt if not filtered, or if filter hits */
511 if (hi->trace_classify_table_index == ~0 ||
512 vnet_is_packet_traced_inline
513 (b0, hi->trace_classify_table_index, 0 /* full classify */ ))
514 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
515 }
Dave Barach5ecd5a52019-02-25 15:27:28 -0500516 }
517}
518
Filip Tehlar62668772019-03-04 03:33:32 -0800519#ifndef CLIB_MARCH_VARIANT
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200520
Damjan Marion652d2e12019-02-02 00:15:27 +0100521uword
Dave Barach2c0a4f42017-06-29 09:30:15 -0400522vnet_interface_output_node (vlib_main_t * vm, vlib_node_runtime_t * node,
523 vlib_frame_t * frame)
524{
525 vnet_main_t *vnm = vnet_get_main ();
526 vnet_hw_interface_t *hi;
527 vnet_interface_output_runtime_t *rt = (void *) node->runtime_data;
528 hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index);
529
Dave Barach5ecd5a52019-02-25 15:27:28 -0500530 vnet_interface_pcap_tx_trace (vm, node, frame,
531 0 /* sw_if_index_from_buffer */ );
532
Dave Barach2c0a4f42017-06-29 09:30:15 -0400533 if (hi->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD)
534 return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
535 /* do_tx_offloads */ 0);
536 else
537 return vnet_interface_output_node_inline (vm, node, frame, vnm, hi,
538 /* do_tx_offloads */ 1);
539}
Filip Tehlar62668772019-03-04 03:33:32 -0800540#endif /* CLIB_MARCH_VARIANT */
Dave Barach2c0a4f42017-06-29 09:30:15 -0400541
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542/* Use buffer's sw_if_index[VNET_TX] to choose output interface. */
Filip Tehlar62668772019-03-04 03:33:32 -0800543VLIB_NODE_FN (vnet_per_buffer_interface_output_node) (vlib_main_t * vm,
544 vlib_node_runtime_t *
545 node,
546 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547{
Dave Barachba868bb2016-08-08 09:51:21 -0400548 vnet_main_t *vnm = vnet_get_main ();
549 u32 n_left_to_next, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550 u32 n_left_from, next_index;
551
Dave Barach5ecd5a52019-02-25 15:27:28 -0500552 vnet_interface_pcap_tx_trace (vm, node, frame,
553 1 /* sw_if_index_from_buffer */ );
554
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555 n_left_from = frame->n_vectors;
556
Damjan Mariona3d59862018-11-10 10:23:00 +0100557 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 next_index = node->cached_next_index;
559
560 while (n_left_from > 0)
561 {
562 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
563
564 while (n_left_from >= 4 && n_left_to_next >= 2)
565 {
566 u32 bi0, bi1, next0, next1;
Dave Barachba868bb2016-08-08 09:51:21 -0400567 vlib_buffer_t *b0, *b1;
568 vnet_hw_interface_t *hi0, *hi1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569
570 /* Prefetch next iteration. */
571 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
572 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
573
574 bi0 = from[0];
575 bi1 = from[1];
576 to_next[0] = bi0;
577 to_next[1] = bi1;
578 from += 2;
579 to_next += 2;
580 n_left_to_next -= 2;
581 n_left_from -= 2;
582
583 b0 = vlib_get_buffer (vm, bi0);
584 b1 = vlib_get_buffer (vm, bi1);
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]);
590 hi1 =
591 vnet_get_sup_hw_interface (vnm,
592 vnet_buffer (b1)->sw_if_index
593 [VLIB_TX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
John Loe5453d02018-01-23 19:21:34 -0500595 next0 = hi0->output_node_next_index;
596 next1 = hi1->output_node_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597
Dave Barachba868bb2016-08-08 09:51:21 -0400598 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
599 n_left_to_next, bi0, bi1, next0,
600 next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601 }
602
603 while (n_left_from > 0 && n_left_to_next > 0)
604 {
605 u32 bi0, next0;
Dave Barachba868bb2016-08-08 09:51:21 -0400606 vlib_buffer_t *b0;
607 vnet_hw_interface_t *hi0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608
609 bi0 = from[0];
610 to_next[0] = bi0;
611 from += 1;
612 to_next += 1;
613 n_left_to_next -= 1;
614 n_left_from -= 1;
615
616 b0 = vlib_get_buffer (vm, bi0);
617
Dave Barachba868bb2016-08-08 09:51:21 -0400618 hi0 =
619 vnet_get_sup_hw_interface (vnm,
620 vnet_buffer (b0)->sw_if_index
621 [VLIB_TX]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622
John Loe5453d02018-01-23 19:21:34 -0500623 next0 = hi0->output_node_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624
Dave Barachba868bb2016-08-08 09:51:21 -0400625 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
626 n_left_to_next, bi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627 }
628
629 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
630 }
631
632 return frame->n_vectors;
633}
634
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000635typedef struct vnet_error_trace_t_
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000637 u32 sw_if_index;
638} vnet_error_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640
Dave Barachba868bb2016-08-08 09:51:21 -0400641static u8 *
642format_vnet_error_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000644 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000646 vnet_error_trace_t *t = va_arg (*va, vnet_error_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
Neale Ranns7227c392019-03-21 10:20:15 +0000648 s = format (s, "rx:%U", format_vnet_sw_if_index_name,
649 vnet_get_main (), t->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650
651 return s;
652}
653
654static void
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000655interface_trace_buffers (vlib_main_t * vm,
656 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657{
Dave Barachba868bb2016-08-08 09:51:21 -0400658 u32 n_left, *buffers;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659
660 buffers = vlib_frame_vector_args (frame);
661 n_left = frame->n_vectors;
Dave Barachba868bb2016-08-08 09:51:21 -0400662
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663 while (n_left >= 4)
664 {
665 u32 bi0, bi1;
Dave Barachba868bb2016-08-08 09:51:21 -0400666 vlib_buffer_t *b0, *b1;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000667 vnet_error_trace_t *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668
669 /* Prefetch next iteration. */
670 vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD);
671 vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD);
672
673 bi0 = buffers[0];
674 bi1 = buffers[1];
675
676 b0 = vlib_get_buffer (vm, bi0);
677 b1 = vlib_get_buffer (vm, bi1);
678
679 if (b0->flags & VLIB_BUFFER_IS_TRACED)
680 {
681 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000682 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 }
684 if (b1->flags & VLIB_BUFFER_IS_TRACED)
685 {
686 t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000687 t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 }
689 buffers += 2;
690 n_left -= 2;
691 }
692
693 while (n_left >= 1)
694 {
695 u32 bi0;
Dave Barachba868bb2016-08-08 09:51:21 -0400696 vlib_buffer_t *b0;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000697 vnet_error_trace_t *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698
699 bi0 = buffers[0];
700
701 b0 = vlib_get_buffer (vm, bi0);
702
703 if (b0->flags & VLIB_BUFFER_IS_TRACED)
704 {
705 t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000706 t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 }
708 buffers += 1;
709 n_left -= 1;
710 }
711}
712
Dave Barachba868bb2016-08-08 09:51:21 -0400713typedef enum
714{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715 VNET_ERROR_DISPOSITION_DROP,
716 VNET_ERROR_DISPOSITION_PUNT,
717 VNET_ERROR_N_DISPOSITION,
718} vnet_error_disposition_t;
719
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720static_always_inline uword
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000721interface_drop_punt (vlib_main_t * vm,
722 vlib_node_runtime_t * node,
723 vlib_frame_t * frame,
724 vnet_error_disposition_t disposition)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000726 u32 *from, n_left, thread_index, *sw_if_index;
727 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
728 u32 sw_if_indices[VLIB_FRAME_SIZE];
Dave Barachba868bb2016-08-08 09:51:21 -0400729 vlib_simple_counter_main_t *cm;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000730 u16 nexts[VLIB_FRAME_SIZE];
731 vnet_main_t *vnm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000733 vnm = vnet_get_main ();
734 thread_index = vm->thread_index;
735 from = vlib_frame_vector_args (frame);
736 n_left = frame->n_vectors;
737 b = bufs;
738 sw_if_index = sw_if_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700739
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000740 vlib_get_buffers (vm, from, bufs, n_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741
742 if (node->flags & VLIB_NODE_FLAG_TRACE)
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000743 interface_trace_buffers (vm, node, frame);
Dave Barachba868bb2016-08-08 09:51:21 -0400744
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000745 /* All going to drop regardless, this is just a counting exercise */
746 clib_memset (nexts, 0, sizeof (nexts));
747
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748 cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
749 (disposition == VNET_ERROR_DISPOSITION_PUNT
750 ? VNET_INTERFACE_COUNTER_PUNT
751 : VNET_INTERFACE_COUNTER_DROP));
752
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000753 /* collect the array of interfaces first ... */
754 while (n_left >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755 {
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000756 if (n_left >= 12)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757 {
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000758 /* Prefetch 8 ahead - there's not much going on in each iteration */
759 vlib_prefetch_buffer_header (b[4], LOAD);
760 vlib_prefetch_buffer_header (b[5], LOAD);
761 vlib_prefetch_buffer_header (b[6], LOAD);
762 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763 }
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000764 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
765 sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX];
766 sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX];
767 sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX];
768
769 sw_if_index += 4;
770 n_left -= 4;
771 b += 4;
772 }
773 while (n_left)
774 {
775 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
776
777 sw_if_index += 1;
778 n_left -= 1;
779 b += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780 }
781
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000782 /* ... then count against them in blocks */
783 n_left = frame->n_vectors;
784
785 while (n_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786 {
Dave Barachba868bb2016-08-08 09:51:21 -0400787 vnet_sw_interface_t *sw_if0;
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000788 u16 off, count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000790 off = frame->n_vectors - n_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000792 sw_if_index = sw_if_indices + off;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000794 count = clib_count_equal_u32 (sw_if_index, n_left);
795 n_left -= count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000797 vlib_increment_simple_counter (cm, thread_index, sw_if_index[0], count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000799 /* Increment super-interface drop/punt counters for
800 sub-interfaces. */
801 sw_if0 = vnet_get_sw_interface (vnm, sw_if_index[0]);
802 if (sw_if0->sup_sw_if_index != sw_if_index[0])
803 vlib_increment_simple_counter
804 (cm, thread_index, sw_if0->sup_sw_if_index, count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805 }
806
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000807 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808
809 return frame->n_vectors;
810}
811
Dave Barachba868bb2016-08-08 09:51:21 -0400812static inline void
813pcap_drop_trace (vlib_main_t * vm,
Dave Barach33909772019-09-23 10:27:27 -0400814 vnet_interface_main_t * im,
815 vnet_pcap_t * pp, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816{
Dave Barachba868bb2016-08-08 09:51:21 -0400817 u32 *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818 u32 n_left = f->n_vectors;
Dave Barachba868bb2016-08-08 09:51:21 -0400819 vlib_buffer_t *b0, *p1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700820 u32 bi0;
821 i16 save_current_data;
822 u16 save_current_length;
Dave Barach9382ad92019-09-23 16:03:49 -0400823 vlib_error_main_t *em = &vm->error_main;
Dave Barachf5667c32019-09-25 11:27:46 -0400824 int do_trace = 0;
825
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826
827 from = vlib_frame_vector_args (f);
828
829 while (n_left > 0)
830 {
831 if (PREDICT_TRUE (n_left > 1))
Dave Barachba868bb2016-08-08 09:51:21 -0400832 {
833 p1 = vlib_get_buffer (vm, from[1]);
834 vlib_prefetch_buffer_header (p1, LOAD);
835 }
836
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 bi0 = from[0];
838 b0 = vlib_get_buffer (vm, bi0);
839 from++;
840 n_left--;
Dave Barachba868bb2016-08-08 09:51:21 -0400841
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842 /* See if we're pointedly ignoring this specific error */
Dave Barachba868bb2016-08-08 09:51:21 -0400843 if (im->pcap_drop_filter_hash
844 && hash_get (im->pcap_drop_filter_hash, b0->error))
845 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846
Dave Barachf5667c32019-09-25 11:27:46 -0400847 do_trace = (pp->pcap_sw_if_index == 0) ||
848 pp->pcap_sw_if_index == vnet_buffer (b0)->sw_if_index[VLIB_RX];
849
850 if (PREDICT_FALSE
851 (do_trace == 0 && pp->filter_classify_table_index != ~0))
852 {
853 do_trace = vnet_is_packet_traced_inline
854 (b0, pp->filter_classify_table_index, 0 /* full classify */ );
855 }
856
Ed Warnickecb9cada2015-12-08 15:45:58 -0700857 /* Trace all drops, or drops received on a specific interface */
Dave Barachf5667c32019-09-25 11:27:46 -0400858 if (do_trace)
Dave Barachba868bb2016-08-08 09:51:21 -0400859 {
860 save_current_data = b0->current_data;
861 save_current_length = b0->current_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862
Dave Barachba868bb2016-08-08 09:51:21 -0400863 /*
864 * Typically, we'll need to rewind the buffer
Benoît Ganne4e323cb2019-09-17 17:30:35 +0200865 * if l2_hdr_offset is valid, make sure to rewind to the start of
866 * the L2 header. This may not be the buffer start in case we pop-ed
867 * vlan tags.
868 * Otherwise, rewind to buffer start and hope for the best.
Dave Barachba868bb2016-08-08 09:51:21 -0400869 */
Benoît Ganne4e323cb2019-09-17 17:30:35 +0200870 if (b0->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID)
871 {
872 if (b0->current_data > vnet_buffer (b0)->l2_hdr_offset)
873 vlib_buffer_advance (b0,
874 vnet_buffer (b0)->l2_hdr_offset -
875 b0->current_data);
876 }
877 else if (b0->current_data > 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400878 vlib_buffer_advance (b0, (word) - b0->current_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879
Dave Barach9382ad92019-09-23 16:03:49 -0400880 {
881 vlib_buffer_t *last = b0;
882 u32 error_node_index;
883 int drop_string_len;
884 vlib_node_t *n;
885 /* Length of the error string */
886 int error_string_len =
887 clib_strnlen (em->error_strings_heap[b0->error], 128);
888
889 /* Dig up the drop node */
890 error_node_index = vm->node_main.node_by_error[b0->error];
891 n = vlib_get_node (vm, error_node_index);
892
893 /* Length of full drop string, w/ "nodename: " prepended */
894 drop_string_len = error_string_len + vec_len (n->name) + 2;
895
896 /* Find the last buffer in the chain */
897 while (last->flags & VLIB_BUFFER_NEXT_PRESENT)
898 last = vlib_get_buffer (vm, last->next_buffer);
899
900 /*
901 * Append <nodename>: <error-string> to the capture,
902 * only if we can do that without allocating a new buffer.
903 */
904 if (PREDICT_TRUE ((last->current_data + last->current_length)
905 < (VLIB_BUFFER_DEFAULT_DATA_SIZE
906 - drop_string_len)))
907 {
908 clib_memcpy_fast (last->data + last->current_data +
909 last->current_length, n->name,
910 vec_len (n->name));
911 clib_memcpy_fast (last->data + last->current_data +
912 last->current_length + vec_len (n->name),
913 ": ", 2);
914 clib_memcpy_fast (last->data + last->current_data +
915 last->current_length + vec_len (n->name) +
916 2, em->error_strings_heap[b0->error],
917 error_string_len);
918 last->current_length += drop_string_len;
919 b0->flags &= ~(VLIB_BUFFER_TOTAL_LENGTH_VALID);
920 pcap_add_buffer (&pp->pcap_main, vm, bi0,
921 pp->max_bytes_per_pkt);
922 last->current_length -= drop_string_len;
923 b0->current_data = save_current_data;
924 b0->current_length = save_current_length;
925 continue;
926 }
927 }
928
929 /*
930 * Didn't have space in the last buffer, here's the dropped
931 * packet as-is
932 */
Dave Barach33909772019-09-23 10:27:27 -0400933 pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt);
Dave Barachba868bb2016-08-08 09:51:21 -0400934
935 b0->current_data = save_current_data;
936 b0->current_length = save_current_length;
937 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938 }
939}
940
Filip Tehlar62668772019-03-04 03:33:32 -0800941#ifndef CLIB_MARCH_VARIANT
Dave Barachba868bb2016-08-08 09:51:21 -0400942void
943vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944{
Dave Barachba868bb2016-08-08 09:51:21 -0400945 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946
947 if (im->pcap_drop_filter_hash == 0)
Dave Barachba868bb2016-08-08 09:51:21 -0400948 im->pcap_drop_filter_hash = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949
950 if (is_add)
951 hash_set (im->pcap_drop_filter_hash, error_index, 1);
952 else
953 hash_unset (im->pcap_drop_filter_hash, error_index);
954}
Filip Tehlar62668772019-03-04 03:33:32 -0800955#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000957VLIB_NODE_FN (interface_drop) (vlib_main_t * vm,
958 vlib_node_runtime_t * node,
959 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960{
Dave Barachba868bb2016-08-08 09:51:21 -0400961 vnet_interface_main_t *im = &vnet_get_main ()->interface_main;
Dave Barach33909772019-09-23 10:27:27 -0400962 vnet_pcap_t *pp = &vlib_global_main.pcap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963
Dave Barach33909772019-09-23 10:27:27 -0400964 if (PREDICT_FALSE (pp->pcap_drop_enable))
965 pcap_drop_trace (vm, im, pp, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700966
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000967 return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968}
969
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000970VLIB_NODE_FN (interface_punt) (vlib_main_t * vm,
971 vlib_node_runtime_t * node,
972 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973{
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000974 return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_PUNT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975}
976
Dave Barachba868bb2016-08-08 09:51:21 -0400977/* *INDENT-OFF* */
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000978VLIB_REGISTER_NODE (interface_drop) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979 .name = "error-drop",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980 .vector_size = sizeof (u32),
981 .format_trace = format_vnet_error_trace,
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000982 .n_next_nodes = 1,
983 .next_nodes = {
984 [0] = "drop",
985 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700986};
Dave Barachba868bb2016-08-08 09:51:21 -0400987/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700988
Dave Barachba868bb2016-08-08 09:51:21 -0400989/* *INDENT-OFF* */
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000990VLIB_REGISTER_NODE (interface_punt) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991 .name = "error-punt",
992 .vector_size = sizeof (u32),
993 .format_trace = format_vnet_error_trace,
Neale Ranns22e1f1d2019-03-01 15:53:11 +0000994 .n_next_nodes = 1,
995 .next_nodes = {
996 [0] = "punt",
997 },
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998};
Dave Barachba868bb2016-08-08 09:51:21 -0400999/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000
Dave Barachba868bb2016-08-08 09:51:21 -04001001/* *INDENT-OFF* */
Filip Tehlar62668772019-03-04 03:33:32 -08001002VLIB_REGISTER_NODE (vnet_per_buffer_interface_output_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003 .name = "interface-output",
1004 .vector_size = sizeof (u32),
1005};
Dave Barachba868bb2016-08-08 09:51:21 -04001006/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001007
Damjan Marion152e21d2016-11-29 14:55:43 +01001008static uword
1009interface_tx_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1010 vlib_frame_t * from_frame)
1011{
1012 vnet_main_t *vnm = vnet_get_main ();
1013 u32 last_sw_if_index = ~0;
1014 vlib_frame_t *to_frame = 0;
1015 vnet_hw_interface_t *hw = 0;
1016 u32 *from, *to_next = 0;
1017 u32 n_left_from;
1018
1019 from = vlib_frame_vector_args (from_frame);
1020 n_left_from = from_frame->n_vectors;
1021 while (n_left_from > 0)
1022 {
1023 u32 bi0;
1024 vlib_buffer_t *b0;
1025 u32 sw_if_index0;
1026
1027 bi0 = from[0];
1028 from++;
1029 n_left_from--;
1030 b0 = vlib_get_buffer (vm, bi0);
1031 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
1032
1033 if (PREDICT_FALSE ((last_sw_if_index != sw_if_index0) || to_frame == 0))
1034 {
1035 if (to_frame)
1036 {
1037 hw = vnet_get_sup_hw_interface (vnm, last_sw_if_index);
1038 vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1039 }
1040 last_sw_if_index = sw_if_index0;
1041 hw = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1042 to_frame = vlib_get_frame_to_node (vm, hw->tx_node_index);
1043 to_next = vlib_frame_vector_args (to_frame);
1044 }
1045
1046 to_next[0] = bi0;
1047 to_next++;
1048 to_frame->n_vectors++;
1049 }
1050 vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame);
1051 return from_frame->n_vectors;
1052}
1053
1054/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +02001055VLIB_REGISTER_NODE (interface_tx) = {
Damjan Marion152e21d2016-11-29 14:55:43 +01001056 .function = interface_tx_node_fn,
1057 .name = "interface-tx",
1058 .vector_size = sizeof (u32),
1059 .n_next_nodes = 1,
1060 .next_nodes = {
1061 [0] = "error-drop",
1062 },
1063};
1064
1065VNET_FEATURE_ARC_INIT (interface_output, static) =
1066{
1067 .arc_name = "interface-output",
1068 .start_nodes = VNET_FEATURES (0),
Dave Baracha25def72018-11-26 11:04:45 -05001069 .last_in_arc = "interface-tx",
Damjan Marion152e21d2016-11-29 14:55:43 +01001070 .arc_index_ptr = &vnet_main.interface_main.output_feature_arc_index,
1071};
1072
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +01001073VNET_FEATURE_INIT (span_tx, static) = {
1074 .arc_name = "interface-output",
1075 .node_name = "span-output",
1076 .runs_before = VNET_FEATURES ("interface-tx"),
1077};
1078
Matthew Smith537eeec2018-04-09 11:49:20 -05001079VNET_FEATURE_INIT (ipsec_if_tx, static) = {
1080 .arc_name = "interface-output",
1081 .node_name = "ipsec-if-output",
1082 .runs_before = VNET_FEATURES ("interface-tx"),
1083};
1084
Damjan Marion152e21d2016-11-29 14:55:43 +01001085VNET_FEATURE_INIT (interface_tx, static) = {
1086 .arc_name = "interface-output",
1087 .node_name = "interface-tx",
1088 .runs_before = 0,
1089};
1090/* *INDENT-ON* */
1091
Filip Tehlar62668772019-03-04 03:33:32 -08001092#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -07001093clib_error_t *
1094vnet_per_buffer_interface_output_hw_interface_add_del (vnet_main_t * vnm,
1095 u32 hw_if_index,
1096 u32 is_create)
1097{
Dave Barachba868bb2016-08-08 09:51:21 -04001098 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001099 u32 next_index;
1100
John Loe5453d02018-01-23 19:21:34 -05001101 if (hi->output_node_index == 0)
1102 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001103
John Loe5453d02018-01-23 19:21:34 -05001104 next_index = vlib_node_add_next
1105 (vnm->vlib_main, vnet_per_buffer_interface_output_node.index,
1106 hi->output_node_index);
1107 hi->output_node_next_index = next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001108
1109 return 0;
1110}
1111
Dave Barachba868bb2016-08-08 09:51:21 -04001112VNET_HW_INTERFACE_ADD_DEL_FUNCTION
1113 (vnet_per_buffer_interface_output_hw_interface_add_del);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114
John Loe5453d02018-01-23 19:21:34 -05001115void
1116vnet_set_interface_output_node (vnet_main_t * vnm,
1117 u32 hw_if_index, u32 node_index)
1118{
1119 ASSERT (node_index);
1120 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1121 u32 next_index = vlib_node_add_next
1122 (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, node_index);
1123 hi->output_node_next_index = next_index;
1124 hi->output_node_index = node_index;
1125}
Filip Tehlar62668772019-03-04 03:33:32 -08001126#endif /* CLIB_MARCH_VARIANT */
John Loe5453d02018-01-23 19:21:34 -05001127
Dave Barachba868bb2016-08-08 09:51:21 -04001128/*
1129 * fd.io coding-style-patch-verification: ON
1130 *
1131 * Local Variables:
1132 * eval: (c-set-style "gnu")
1133 * End:
1134 */