Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 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> |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame^] | 41 | #include <vnet/gso/gso.h> |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 42 | #include <vnet/ip/icmp46_packet.h> |
| 43 | #include <vnet/ip/ip4.h> |
| 44 | #include <vnet/ip/ip6.h> |
| 45 | #include <vnet/udp/udp_packet.h> |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 46 | #include <vnet/feature/feature.h> |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 47 | #include <vnet/classify/trace_classify.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 49 | typedef struct |
| 50 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | u32 sw_if_index; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 52 | u32 flags; |
Mohsin Kazmi | 29467b5 | 2019-10-08 19:42:38 +0200 | [diff] [blame] | 53 | u8 data[128 - 2 * sizeof (u32)]; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 54 | } |
| 55 | interface_output_trace_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 57 | #ifndef CLIB_MARCH_VARIANT |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 58 | u8 * |
| 59 | format_vnet_interface_output_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 60 | { |
| 61 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 62 | 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 Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 66 | u32 indent; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 67 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 68 | if (t->sw_if_index != (u32) ~ 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | indent = format_get_indent (s); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 71 | |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 72 | 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 Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 76 | s = format (s, "sw_if_index: %d ", t->sw_if_index); |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 77 | } |
| 78 | else |
| 79 | { |
| 80 | si = vnet_get_sw_interface (vnm, t->sw_if_index); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 81 | s = |
| 82 | format (s, "%U ", format_vnet_sw_interface_name, vnm, si, |
| 83 | t->flags); |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 84 | } |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 85 | 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 Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | } |
| 90 | return s; |
| 91 | } |
| 92 | |
| 93 | static void |
| 94 | vnet_interface_output_trace (vlib_main_t * vm, |
| 95 | vlib_node_runtime_t * node, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 96 | vlib_frame_t * frame, uword n_buffers) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 97 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 98 | u32 n_left, *from; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 99 | |
| 100 | n_left = n_buffers; |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 101 | from = vlib_frame_vector_args (frame); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 102 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 103 | while (n_left >= 4) |
| 104 | { |
| 105 | u32 bi0, bi1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 106 | vlib_buffer_t *b0, *b1; |
| 107 | interface_output_trace_t *t0, *t1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | |
| 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 Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 123 | t0->flags = b0->flags; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 124 | clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0), |
| 125 | sizeof (t0->data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 126 | } |
| 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 Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 131 | t1->flags = b1->flags; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 132 | clib_memcpy_fast (t1->data, vlib_buffer_get_current (b1), |
| 133 | sizeof (t1->data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | } |
| 135 | from += 2; |
| 136 | n_left -= 2; |
| 137 | } |
| 138 | |
| 139 | while (n_left >= 1) |
| 140 | { |
| 141 | u32 bi0; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 142 | vlib_buffer_t *b0; |
| 143 | interface_output_trace_t *t0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 144 | |
| 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 Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 153 | t0->flags = b0->flags; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 154 | clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0), |
| 155 | sizeof (t0->data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 156 | } |
| 157 | from += 1; |
| 158 | n_left -= 1; |
| 159 | } |
| 160 | } |
| 161 | |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 162 | static_always_inline void |
| 163 | calc_checksums (vlib_main_t * vm, vlib_buffer_t * b) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 164 | { |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 165 | tcp_header_t *th; |
| 166 | udp_header_t *uh; |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame^] | 167 | gso_header_offset_t gho = { 0 }; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 168 | |
| 169 | int is_ip4 = (b->flags & VNET_BUFFER_F_IS_IP4) != 0; |
| 170 | int is_ip6 = (b->flags & VNET_BUFFER_F_IS_IP6) != 0; |
| 171 | |
| 172 | ASSERT (!(is_ip4 && is_ip6)); |
| 173 | |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame^] | 174 | gho = vnet_gso_header_offset_parser (b, is_ip6); |
| 175 | th = (tcp_header_t *) (vlib_buffer_get_current (b) + gho.l4_hdr_offset); |
| 176 | uh = (udp_header_t *) (vlib_buffer_get_current (b) + gho.l4_hdr_offset); |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 177 | |
| 178 | if (is_ip4) |
| 179 | { |
Zhiyong Yang | 24c5012 | 2019-04-19 05:22:31 -0400 | [diff] [blame] | 180 | ip4_header_t *ip4; |
| 181 | |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame^] | 182 | ip4 = |
| 183 | (ip4_header_t *) (vlib_buffer_get_current (b) + gho.l3_hdr_offset); |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 184 | if (b->flags & VNET_BUFFER_F_OFFLOAD_IP_CKSUM) |
| 185 | ip4->checksum = ip4_header_checksum (ip4); |
| 186 | if (b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM) |
Andrej Kozemcak | 9d7570c | 2019-01-07 08:39:22 +0100 | [diff] [blame] | 187 | { |
| 188 | th->checksum = 0; |
| 189 | th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4); |
| 190 | } |
Zhiyong Yang | 24c5012 | 2019-04-19 05:22:31 -0400 | [diff] [blame] | 191 | else if (b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM) |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 192 | uh->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4); |
| 193 | } |
Zhiyong Yang | 24c5012 | 2019-04-19 05:22:31 -0400 | [diff] [blame] | 194 | else if (is_ip6) |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 195 | { |
| 196 | int bogus; |
Zhiyong Yang | 24c5012 | 2019-04-19 05:22:31 -0400 | [diff] [blame] | 197 | ip6_header_t *ip6; |
| 198 | |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame^] | 199 | ip6 = |
| 200 | (ip6_header_t *) (vlib_buffer_get_current (b) + gho.l3_hdr_offset); |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 201 | if (b->flags & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 202 | { |
| 203 | th->checksum = 0; |
| 204 | th->checksum = |
| 205 | ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus); |
| 206 | } |
Zhiyong Yang | 24c5012 | 2019-04-19 05:22:31 -0400 | [diff] [blame] | 207 | else if (b->flags & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 208 | { |
| 209 | uh->checksum = 0; |
| 210 | uh->checksum = |
| 211 | ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus); |
| 212 | } |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 213 | } |
Florin Coras | 08f2a5d | 2019-08-06 13:48:50 -0700 | [diff] [blame] | 214 | b->flags &= ~VNET_BUFFER_F_OFFLOAD_TCP_CKSUM; |
| 215 | b->flags &= ~VNET_BUFFER_F_OFFLOAD_UDP_CKSUM; |
| 216 | b->flags &= ~VNET_BUFFER_F_OFFLOAD_IP_CKSUM; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | static_always_inline uword |
Mohsin Kazmi | 29467b5 | 2019-10-08 19:42:38 +0200 | [diff] [blame] | 220 | vnet_interface_output_node_inline (vlib_main_t * vm, |
| 221 | vlib_node_runtime_t * node, |
| 222 | vlib_frame_t * frame, |
| 223 | vnet_main_t * vnm, |
| 224 | vnet_hw_interface_t * hi, |
| 225 | int do_tx_offloads) |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 226 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 227 | vnet_interface_output_runtime_t *rt = (void *) node->runtime_data; |
| 228 | vnet_sw_interface_t *si; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 229 | u32 n_left_to_tx, *from, *from_end, *to_tx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 230 | u32 n_bytes, n_buffers, n_packets; |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 231 | u32 n_bytes_b0, n_bytes_b1, n_bytes_b2, n_bytes_b3; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 232 | u32 thread_index = vm->thread_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 233 | vnet_interface_main_t *im = &vnm->interface_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | u32 next_index = VNET_INTERFACE_OUTPUT_NEXT_TX; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 235 | u32 current_config_index = ~0; |
| 236 | u8 arc = im->output_feature_arc_index; |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 237 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 238 | |
| 239 | n_buffers = frame->n_vectors; |
| 240 | |
| 241 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 242 | vnet_interface_output_trace (vm, node, frame, n_buffers); |
| 243 | |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 244 | from = vlib_frame_vector_args (frame); |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 245 | vlib_get_buffers (vm, from, b, n_buffers); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 246 | |
| 247 | if (rt->is_deleted) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 248 | return vlib_error_drop_buffers (vm, node, from, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 249 | /* buffer stride */ 1, |
| 250 | n_buffers, |
| 251 | VNET_INTERFACE_OUTPUT_NEXT_DROP, |
| 252 | node->node_index, |
| 253 | VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DELETED); |
| 254 | |
| 255 | si = vnet_get_sw_interface (vnm, rt->sw_if_index); |
| 256 | hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index); |
Steven Luong | 5ad541e | 2019-08-27 07:43:27 -0700 | [diff] [blame] | 257 | if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) || |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 258 | !(hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 259 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 260 | vlib_simple_counter_main_t *cm; |
| 261 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 262 | cm = vec_elt_at_index (vnm->interface_main.sw_if_counters, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 263 | VNET_INTERFACE_COUNTER_TX_ERROR); |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 264 | vlib_increment_simple_counter (cm, thread_index, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 265 | rt->sw_if_index, n_buffers); |
| 266 | |
| 267 | return vlib_error_drop_buffers (vm, node, from, |
| 268 | /* buffer stride */ 1, |
| 269 | n_buffers, |
| 270 | VNET_INTERFACE_OUTPUT_NEXT_DROP, |
| 271 | node->node_index, |
| 272 | VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DOWN); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | from_end = from + n_buffers; |
| 276 | |
| 277 | /* Total byte count of all buffers. */ |
| 278 | n_bytes = 0; |
| 279 | n_packets = 0; |
| 280 | |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 281 | /* interface-output feature arc handling */ |
| 282 | if (PREDICT_FALSE (vnet_have_features (arc, rt->sw_if_index))) |
| 283 | { |
| 284 | vnet_feature_config_main_t *fcm; |
| 285 | fcm = vnet_feature_get_config_main (arc); |
| 286 | current_config_index = vnet_get_feature_config_index (arc, |
| 287 | rt->sw_if_index); |
| 288 | vnet_get_config_data (&fcm->config_main, ¤t_config_index, |
| 289 | &next_index, 0); |
| 290 | } |
| 291 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 292 | while (from < from_end) |
| 293 | { |
| 294 | /* Get new next frame since previous incomplete frame may have less |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 295 | than VNET_FRAME_SIZE vectors in it. */ |
| 296 | vlib_get_new_next_frame (vm, node, next_index, to_tx, n_left_to_tx); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 297 | |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 298 | while (from + 8 <= from_end && n_left_to_tx >= 4) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 299 | { |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 300 | u32 bi0, bi1, bi2, bi3; |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 301 | u32 tx_swif0, tx_swif1, tx_swif2, tx_swif3; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 302 | u32 or_flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 303 | |
| 304 | /* Prefetch next iteration. */ |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 305 | vlib_prefetch_buffer_header (b[4], LOAD); |
| 306 | vlib_prefetch_buffer_header (b[5], LOAD); |
| 307 | vlib_prefetch_buffer_header (b[6], LOAD); |
| 308 | vlib_prefetch_buffer_header (b[7], LOAD); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 309 | |
| 310 | bi0 = from[0]; |
| 311 | bi1 = from[1]; |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 312 | bi2 = from[2]; |
| 313 | bi3 = from[3]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | to_tx[0] = bi0; |
| 315 | to_tx[1] = bi1; |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 316 | to_tx[2] = bi2; |
| 317 | to_tx[3] = bi3; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 318 | |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 319 | or_flags = b[0]->flags | b[1]->flags | b[2]->flags | b[3]->flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 320 | |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 321 | from += 4; |
| 322 | to_tx += 4; |
| 323 | n_left_to_tx -= 4; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 324 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 325 | /* Be grumpy about zero length buffers for benefit of |
| 326 | driver tx function. */ |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 327 | ASSERT (b[0]->current_length > 0); |
| 328 | ASSERT (b[1]->current_length > 0); |
| 329 | ASSERT (b[2]->current_length > 0); |
| 330 | ASSERT (b[3]->current_length > 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 331 | |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 332 | n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]); |
| 333 | n_bytes_b1 = vlib_buffer_length_in_chain (vm, b[1]); |
| 334 | n_bytes_b2 = vlib_buffer_length_in_chain (vm, b[2]); |
| 335 | n_bytes_b3 = vlib_buffer_length_in_chain (vm, b[3]); |
| 336 | tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
| 337 | tx_swif1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX]; |
| 338 | tx_swif2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX]; |
| 339 | tx_swif3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 340 | |
| 341 | n_bytes += n_bytes_b0 + n_bytes_b1; |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 342 | n_bytes += n_bytes_b2 + n_bytes_b3; |
| 343 | n_packets += 4; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 344 | |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 345 | if (PREDICT_FALSE (current_config_index != ~0)) |
| 346 | { |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 347 | vnet_buffer (b[0])->feature_arc_index = arc; |
| 348 | vnet_buffer (b[1])->feature_arc_index = arc; |
| 349 | vnet_buffer (b[2])->feature_arc_index = arc; |
| 350 | vnet_buffer (b[3])->feature_arc_index = arc; |
| 351 | b[0]->current_config_index = current_config_index; |
| 352 | b[1]->current_config_index = current_config_index; |
| 353 | b[2]->current_config_index = current_config_index; |
| 354 | b[3]->current_config_index = current_config_index; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 355 | } |
| 356 | |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 357 | /* update vlan subif tx counts, if required */ |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 358 | if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index)) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 359 | { |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 360 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 361 | VNET_INTERFACE_COUNTER_TX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 362 | thread_index, tx_swif0, 1, |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 363 | n_bytes_b0); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 364 | } |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 365 | |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 366 | if (PREDICT_FALSE (tx_swif1 != rt->sw_if_index)) |
| 367 | { |
| 368 | |
| 369 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 370 | VNET_INTERFACE_COUNTER_TX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 371 | thread_index, tx_swif1, 1, |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 372 | n_bytes_b1); |
| 373 | } |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 374 | |
| 375 | if (PREDICT_FALSE (tx_swif2 != rt->sw_if_index)) |
| 376 | { |
| 377 | |
| 378 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 379 | VNET_INTERFACE_COUNTER_TX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 380 | thread_index, tx_swif2, 1, |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 381 | n_bytes_b2); |
| 382 | } |
| 383 | if (PREDICT_FALSE (tx_swif3 != rt->sw_if_index)) |
| 384 | { |
| 385 | |
| 386 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 387 | VNET_INTERFACE_COUNTER_TX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 388 | thread_index, tx_swif3, 1, |
Damjan Marion | 363640d | 2017-03-06 11:53:10 +0100 | [diff] [blame] | 389 | n_bytes_b3); |
| 390 | } |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 391 | |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 392 | if (do_tx_offloads) |
| 393 | { |
| 394 | if (or_flags & |
| 395 | (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM | |
| 396 | VNET_BUFFER_F_OFFLOAD_UDP_CKSUM | |
| 397 | VNET_BUFFER_F_OFFLOAD_IP_CKSUM)) |
| 398 | { |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 399 | calc_checksums (vm, b[0]); |
| 400 | calc_checksums (vm, b[1]); |
| 401 | calc_checksums (vm, b[2]); |
| 402 | calc_checksums (vm, b[3]); |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 403 | } |
| 404 | } |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 405 | b += 4; |
| 406 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | while (from + 1 <= from_end && n_left_to_tx >= 1) |
| 410 | { |
| 411 | u32 bi0; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 412 | u32 tx_swif0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 413 | |
| 414 | bi0 = from[0]; |
| 415 | to_tx[0] = bi0; |
| 416 | from += 1; |
| 417 | to_tx += 1; |
| 418 | n_left_to_tx -= 1; |
| 419 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 420 | /* Be grumpy about zero length buffers for benefit of |
| 421 | driver tx function. */ |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 422 | ASSERT (b[0]->current_length > 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 423 | |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 424 | n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]); |
| 425 | tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 426 | n_bytes += n_bytes_b0; |
| 427 | n_packets += 1; |
| 428 | |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 429 | if (PREDICT_FALSE (current_config_index != ~0)) |
| 430 | { |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 431 | vnet_buffer (b[0])->feature_arc_index = arc; |
| 432 | b[0]->current_config_index = current_config_index; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 433 | } |
| 434 | |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 435 | if (PREDICT_FALSE (tx_swif0 != rt->sw_if_index)) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 436 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 437 | |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 438 | vlib_increment_combined_counter (im->combined_sw_if_counters + |
| 439 | VNET_INTERFACE_COUNTER_TX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 440 | thread_index, tx_swif0, 1, |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 441 | n_bytes_b0); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 442 | } |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 443 | |
| 444 | if (do_tx_offloads) |
Mohsin Kazmi | 29467b5 | 2019-10-08 19:42:38 +0200 | [diff] [blame] | 445 | { |
| 446 | if (b[0]->flags & |
| 447 | (VNET_BUFFER_F_OFFLOAD_TCP_CKSUM | |
| 448 | VNET_BUFFER_F_OFFLOAD_UDP_CKSUM | |
| 449 | VNET_BUFFER_F_OFFLOAD_IP_CKSUM)) |
| 450 | calc_checksums (vm, b[0]); |
| 451 | } |
Zhiyong Yang | a462c07 | 2019-05-05 19:32:25 +0800 | [diff] [blame] | 452 | b += 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 453 | } |
| 454 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 455 | vlib_put_next_frame (vm, node, next_index, n_left_to_tx); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | /* Update main interface stats. */ |
| 459 | vlib_increment_combined_counter (im->combined_sw_if_counters |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 460 | + VNET_INTERFACE_COUNTER_TX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 461 | thread_index, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 462 | rt->sw_if_index, n_packets, n_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 463 | return n_buffers; |
| 464 | } |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 465 | #endif /* CLIB_MARCH_VARIANT */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 466 | |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 467 | static_always_inline void vnet_interface_pcap_tx_trace |
| 468 | (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame, |
| 469 | int sw_if_index_from_buffer) |
| 470 | { |
| 471 | u32 n_left_from, *from; |
| 472 | u32 sw_if_index; |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 473 | vnet_pcap_t *pp = &vlib_global_main.pcap; |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 474 | |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 475 | if (PREDICT_TRUE (pp->pcap_tx_enable == 0)) |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 476 | return; |
| 477 | |
| 478 | if (sw_if_index_from_buffer == 0) |
| 479 | { |
| 480 | vnet_interface_output_runtime_t *rt = (void *) node->runtime_data; |
| 481 | sw_if_index = rt->sw_if_index; |
| 482 | } |
| 483 | else |
| 484 | sw_if_index = ~0; |
| 485 | |
| 486 | n_left_from = frame->n_vectors; |
| 487 | from = vlib_frame_vector_args (frame); |
| 488 | |
| 489 | while (n_left_from > 0) |
| 490 | { |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 491 | int classify_filter_result; |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 492 | u32 bi0 = from[0]; |
| 493 | vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0); |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 494 | from++; |
| 495 | n_left_from--; |
| 496 | |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 497 | if (pp->filter_classify_table_index != ~0) |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 498 | { |
| 499 | classify_filter_result = |
| 500 | vnet_is_packet_traced_inline |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 501 | (b0, pp->filter_classify_table_index, 0 /* full classify */ ); |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 502 | if (classify_filter_result) |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 503 | pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt); |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 504 | continue; |
| 505 | } |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 506 | |
| 507 | if (sw_if_index_from_buffer) |
| 508 | sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX]; |
| 509 | |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 510 | if (pp->pcap_sw_if_index == 0 || pp->pcap_sw_if_index == sw_if_index) |
Dave Barach | d28437c | 2019-11-20 09:28:31 -0500 | [diff] [blame] | 511 | { |
| 512 | vnet_main_t *vnm = vnet_get_main (); |
| 513 | vnet_hw_interface_t *hi = |
| 514 | vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 515 | /* Capture pkt if not filtered, or if filter hits */ |
| 516 | if (hi->trace_classify_table_index == ~0 || |
| 517 | vnet_is_packet_traced_inline |
| 518 | (b0, hi->trace_classify_table_index, 0 /* full classify */ )) |
| 519 | pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt); |
| 520 | } |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 521 | } |
| 522 | } |
| 523 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 524 | #ifndef CLIB_MARCH_VARIANT |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 525 | |
Damjan Marion | 652d2e1 | 2019-02-02 00:15:27 +0100 | [diff] [blame] | 526 | uword |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 527 | vnet_interface_output_node (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 528 | vlib_frame_t * frame) |
| 529 | { |
| 530 | vnet_main_t *vnm = vnet_get_main (); |
| 531 | vnet_hw_interface_t *hi; |
| 532 | vnet_interface_output_runtime_t *rt = (void *) node->runtime_data; |
| 533 | hi = vnet_get_sup_hw_interface (vnm, rt->sw_if_index); |
| 534 | |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 535 | vnet_interface_pcap_tx_trace (vm, node, frame, |
| 536 | 0 /* sw_if_index_from_buffer */ ); |
| 537 | |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 538 | if (hi->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD) |
| 539 | return vnet_interface_output_node_inline (vm, node, frame, vnm, hi, |
| 540 | /* do_tx_offloads */ 0); |
| 541 | else |
| 542 | return vnet_interface_output_node_inline (vm, node, frame, vnm, hi, |
| 543 | /* do_tx_offloads */ 1); |
| 544 | } |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 545 | #endif /* CLIB_MARCH_VARIANT */ |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 546 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 547 | /* Use buffer's sw_if_index[VNET_TX] to choose output interface. */ |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 548 | VLIB_NODE_FN (vnet_per_buffer_interface_output_node) (vlib_main_t * vm, |
| 549 | vlib_node_runtime_t * |
| 550 | node, |
| 551 | vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 552 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 553 | vnet_main_t *vnm = vnet_get_main (); |
| 554 | u32 n_left_to_next, *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 555 | u32 n_left_from, next_index; |
| 556 | |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 557 | vnet_interface_pcap_tx_trace (vm, node, frame, |
| 558 | 1 /* sw_if_index_from_buffer */ ); |
| 559 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 560 | n_left_from = frame->n_vectors; |
| 561 | |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 562 | from = vlib_frame_vector_args (frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 563 | next_index = node->cached_next_index; |
| 564 | |
| 565 | while (n_left_from > 0) |
| 566 | { |
| 567 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 568 | |
| 569 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 570 | { |
| 571 | u32 bi0, bi1, next0, next1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 572 | vlib_buffer_t *b0, *b1; |
| 573 | vnet_hw_interface_t *hi0, *hi1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 574 | |
| 575 | /* Prefetch next iteration. */ |
| 576 | vlib_prefetch_buffer_with_index (vm, from[2], LOAD); |
| 577 | vlib_prefetch_buffer_with_index (vm, from[3], LOAD); |
| 578 | |
| 579 | bi0 = from[0]; |
| 580 | bi1 = from[1]; |
| 581 | to_next[0] = bi0; |
| 582 | to_next[1] = bi1; |
| 583 | from += 2; |
| 584 | to_next += 2; |
| 585 | n_left_to_next -= 2; |
| 586 | n_left_from -= 2; |
| 587 | |
| 588 | b0 = vlib_get_buffer (vm, bi0); |
| 589 | b1 = vlib_get_buffer (vm, bi1); |
| 590 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 591 | hi0 = |
| 592 | vnet_get_sup_hw_interface (vnm, |
| 593 | vnet_buffer (b0)->sw_if_index |
| 594 | [VLIB_TX]); |
| 595 | hi1 = |
| 596 | vnet_get_sup_hw_interface (vnm, |
| 597 | vnet_buffer (b1)->sw_if_index |
| 598 | [VLIB_TX]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 599 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 600 | next0 = hi0->output_node_next_index; |
| 601 | next1 = hi1->output_node_next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 602 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 603 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next, |
| 604 | n_left_to_next, bi0, bi1, next0, |
| 605 | next1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | while (n_left_from > 0 && n_left_to_next > 0) |
| 609 | { |
| 610 | u32 bi0, next0; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 611 | vlib_buffer_t *b0; |
| 612 | vnet_hw_interface_t *hi0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 613 | |
| 614 | bi0 = from[0]; |
| 615 | to_next[0] = bi0; |
| 616 | from += 1; |
| 617 | to_next += 1; |
| 618 | n_left_to_next -= 1; |
| 619 | n_left_from -= 1; |
| 620 | |
| 621 | b0 = vlib_get_buffer (vm, bi0); |
| 622 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 623 | hi0 = |
| 624 | vnet_get_sup_hw_interface (vnm, |
| 625 | vnet_buffer (b0)->sw_if_index |
| 626 | [VLIB_TX]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 627 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 628 | next0 = hi0->output_node_next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 629 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 630 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 631 | n_left_to_next, bi0, next0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 635 | } |
| 636 | |
| 637 | return frame->n_vectors; |
| 638 | } |
| 639 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 640 | typedef struct vnet_error_trace_t_ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 641 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 642 | u32 sw_if_index; |
| 643 | } vnet_error_trace_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 644 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 645 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 646 | static u8 * |
| 647 | format_vnet_error_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 648 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 649 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 650 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *); |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 651 | vnet_error_trace_t *t = va_arg (*va, vnet_error_trace_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 652 | |
Neale Ranns | 7227c39 | 2019-03-21 10:20:15 +0000 | [diff] [blame] | 653 | s = format (s, "rx:%U", format_vnet_sw_if_index_name, |
| 654 | vnet_get_main (), t->sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 655 | |
| 656 | return s; |
| 657 | } |
| 658 | |
| 659 | static void |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 660 | interface_trace_buffers (vlib_main_t * vm, |
| 661 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 662 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 663 | u32 n_left, *buffers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 664 | |
| 665 | buffers = vlib_frame_vector_args (frame); |
| 666 | n_left = frame->n_vectors; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 667 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 668 | while (n_left >= 4) |
| 669 | { |
| 670 | u32 bi0, bi1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 671 | vlib_buffer_t *b0, *b1; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 672 | vnet_error_trace_t *t0, *t1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 673 | |
| 674 | /* Prefetch next iteration. */ |
| 675 | vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD); |
| 676 | vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD); |
| 677 | |
| 678 | bi0 = buffers[0]; |
| 679 | bi1 = buffers[1]; |
| 680 | |
| 681 | b0 = vlib_get_buffer (vm, bi0); |
| 682 | b1 = vlib_get_buffer (vm, bi1); |
| 683 | |
| 684 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 685 | { |
| 686 | t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0])); |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 687 | t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 688 | } |
| 689 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 690 | { |
| 691 | t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0])); |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 692 | t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 693 | } |
| 694 | buffers += 2; |
| 695 | n_left -= 2; |
| 696 | } |
| 697 | |
| 698 | while (n_left >= 1) |
| 699 | { |
| 700 | u32 bi0; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 701 | vlib_buffer_t *b0; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 702 | vnet_error_trace_t *t0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 703 | |
| 704 | bi0 = buffers[0]; |
| 705 | |
| 706 | b0 = vlib_get_buffer (vm, bi0); |
| 707 | |
| 708 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 709 | { |
| 710 | t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0])); |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 711 | t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 712 | } |
| 713 | buffers += 1; |
| 714 | n_left -= 1; |
| 715 | } |
| 716 | } |
| 717 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 718 | typedef enum |
| 719 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 720 | VNET_ERROR_DISPOSITION_DROP, |
| 721 | VNET_ERROR_DISPOSITION_PUNT, |
| 722 | VNET_ERROR_N_DISPOSITION, |
| 723 | } vnet_error_disposition_t; |
| 724 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 725 | static_always_inline uword |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 726 | interface_drop_punt (vlib_main_t * vm, |
| 727 | vlib_node_runtime_t * node, |
| 728 | vlib_frame_t * frame, |
| 729 | vnet_error_disposition_t disposition) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 730 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 731 | u32 *from, n_left, thread_index, *sw_if_index; |
| 732 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 733 | u32 sw_if_indices[VLIB_FRAME_SIZE]; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 734 | vlib_simple_counter_main_t *cm; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 735 | u16 nexts[VLIB_FRAME_SIZE]; |
| 736 | vnet_main_t *vnm; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 737 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 738 | vnm = vnet_get_main (); |
| 739 | thread_index = vm->thread_index; |
| 740 | from = vlib_frame_vector_args (frame); |
| 741 | n_left = frame->n_vectors; |
| 742 | b = bufs; |
| 743 | sw_if_index = sw_if_indices; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 744 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 745 | vlib_get_buffers (vm, from, bufs, n_left); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 746 | |
| 747 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 748 | interface_trace_buffers (vm, node, frame); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 749 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 750 | /* All going to drop regardless, this is just a counting exercise */ |
| 751 | clib_memset (nexts, 0, sizeof (nexts)); |
| 752 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 753 | cm = vec_elt_at_index (vnm->interface_main.sw_if_counters, |
| 754 | (disposition == VNET_ERROR_DISPOSITION_PUNT |
| 755 | ? VNET_INTERFACE_COUNTER_PUNT |
| 756 | : VNET_INTERFACE_COUNTER_DROP)); |
| 757 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 758 | /* collect the array of interfaces first ... */ |
| 759 | while (n_left >= 4) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 760 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 761 | if (n_left >= 12) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 762 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 763 | /* Prefetch 8 ahead - there's not much going on in each iteration */ |
| 764 | vlib_prefetch_buffer_header (b[4], LOAD); |
| 765 | vlib_prefetch_buffer_header (b[5], LOAD); |
| 766 | vlib_prefetch_buffer_header (b[6], LOAD); |
| 767 | vlib_prefetch_buffer_header (b[7], LOAD); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 768 | } |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 769 | sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 770 | sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX]; |
| 771 | sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX]; |
| 772 | sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX]; |
| 773 | |
| 774 | sw_if_index += 4; |
| 775 | n_left -= 4; |
| 776 | b += 4; |
| 777 | } |
| 778 | while (n_left) |
| 779 | { |
| 780 | sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 781 | |
| 782 | sw_if_index += 1; |
| 783 | n_left -= 1; |
| 784 | b += 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 785 | } |
| 786 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 787 | /* ... then count against them in blocks */ |
| 788 | n_left = frame->n_vectors; |
| 789 | |
| 790 | while (n_left) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 791 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 792 | vnet_sw_interface_t *sw_if0; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 793 | u16 off, count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 794 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 795 | off = frame->n_vectors - n_left; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 796 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 797 | sw_if_index = sw_if_indices + off; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 798 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 799 | count = clib_count_equal_u32 (sw_if_index, n_left); |
| 800 | n_left -= count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 801 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 802 | vlib_increment_simple_counter (cm, thread_index, sw_if_index[0], count); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 803 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 804 | /* Increment super-interface drop/punt counters for |
| 805 | sub-interfaces. */ |
| 806 | sw_if0 = vnet_get_sw_interface (vnm, sw_if_index[0]); |
| 807 | if (sw_if0->sup_sw_if_index != sw_if_index[0]) |
| 808 | vlib_increment_simple_counter |
| 809 | (cm, thread_index, sw_if0->sup_sw_if_index, count); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 810 | } |
| 811 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 812 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 813 | |
| 814 | return frame->n_vectors; |
| 815 | } |
| 816 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 817 | static inline void |
| 818 | pcap_drop_trace (vlib_main_t * vm, |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 819 | vnet_interface_main_t * im, |
| 820 | vnet_pcap_t * pp, vlib_frame_t * f) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 821 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 822 | u32 *from; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 823 | u32 n_left = f->n_vectors; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 824 | vlib_buffer_t *b0, *p1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 825 | u32 bi0; |
| 826 | i16 save_current_data; |
| 827 | u16 save_current_length; |
Dave Barach | 9382ad9 | 2019-09-23 16:03:49 -0400 | [diff] [blame] | 828 | vlib_error_main_t *em = &vm->error_main; |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 829 | int do_trace = 0; |
| 830 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 831 | |
| 832 | from = vlib_frame_vector_args (f); |
| 833 | |
| 834 | while (n_left > 0) |
| 835 | { |
| 836 | if (PREDICT_TRUE (n_left > 1)) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 837 | { |
| 838 | p1 = vlib_get_buffer (vm, from[1]); |
| 839 | vlib_prefetch_buffer_header (p1, LOAD); |
| 840 | } |
| 841 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 842 | bi0 = from[0]; |
| 843 | b0 = vlib_get_buffer (vm, bi0); |
| 844 | from++; |
| 845 | n_left--; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 846 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 847 | /* See if we're pointedly ignoring this specific error */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 848 | if (im->pcap_drop_filter_hash |
| 849 | && hash_get (im->pcap_drop_filter_hash, b0->error)) |
| 850 | continue; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 851 | |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 852 | do_trace = (pp->pcap_sw_if_index == 0) || |
| 853 | pp->pcap_sw_if_index == vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 854 | |
| 855 | if (PREDICT_FALSE |
| 856 | (do_trace == 0 && pp->filter_classify_table_index != ~0)) |
| 857 | { |
| 858 | do_trace = vnet_is_packet_traced_inline |
| 859 | (b0, pp->filter_classify_table_index, 0 /* full classify */ ); |
| 860 | } |
| 861 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 862 | /* Trace all drops, or drops received on a specific interface */ |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 863 | if (do_trace) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 864 | { |
| 865 | save_current_data = b0->current_data; |
| 866 | save_current_length = b0->current_length; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 867 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 868 | /* |
| 869 | * Typically, we'll need to rewind the buffer |
Benoît Ganne | 4e323cb | 2019-09-17 17:30:35 +0200 | [diff] [blame] | 870 | * if l2_hdr_offset is valid, make sure to rewind to the start of |
| 871 | * the L2 header. This may not be the buffer start in case we pop-ed |
| 872 | * vlan tags. |
| 873 | * Otherwise, rewind to buffer start and hope for the best. |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 874 | */ |
Benoît Ganne | 4e323cb | 2019-09-17 17:30:35 +0200 | [diff] [blame] | 875 | if (b0->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID) |
| 876 | { |
| 877 | if (b0->current_data > vnet_buffer (b0)->l2_hdr_offset) |
| 878 | vlib_buffer_advance (b0, |
| 879 | vnet_buffer (b0)->l2_hdr_offset - |
| 880 | b0->current_data); |
| 881 | } |
| 882 | else if (b0->current_data > 0) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 883 | vlib_buffer_advance (b0, (word) - b0->current_data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 884 | |
Dave Barach | 9382ad9 | 2019-09-23 16:03:49 -0400 | [diff] [blame] | 885 | { |
| 886 | vlib_buffer_t *last = b0; |
| 887 | u32 error_node_index; |
| 888 | int drop_string_len; |
| 889 | vlib_node_t *n; |
| 890 | /* Length of the error string */ |
| 891 | int error_string_len = |
| 892 | clib_strnlen (em->error_strings_heap[b0->error], 128); |
| 893 | |
| 894 | /* Dig up the drop node */ |
| 895 | error_node_index = vm->node_main.node_by_error[b0->error]; |
| 896 | n = vlib_get_node (vm, error_node_index); |
| 897 | |
| 898 | /* Length of full drop string, w/ "nodename: " prepended */ |
| 899 | drop_string_len = error_string_len + vec_len (n->name) + 2; |
| 900 | |
| 901 | /* Find the last buffer in the chain */ |
| 902 | while (last->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 903 | last = vlib_get_buffer (vm, last->next_buffer); |
| 904 | |
| 905 | /* |
| 906 | * Append <nodename>: <error-string> to the capture, |
| 907 | * only if we can do that without allocating a new buffer. |
| 908 | */ |
| 909 | if (PREDICT_TRUE ((last->current_data + last->current_length) |
| 910 | < (VLIB_BUFFER_DEFAULT_DATA_SIZE |
| 911 | - drop_string_len))) |
| 912 | { |
| 913 | clib_memcpy_fast (last->data + last->current_data + |
| 914 | last->current_length, n->name, |
| 915 | vec_len (n->name)); |
| 916 | clib_memcpy_fast (last->data + last->current_data + |
| 917 | last->current_length + vec_len (n->name), |
| 918 | ": ", 2); |
| 919 | clib_memcpy_fast (last->data + last->current_data + |
| 920 | last->current_length + vec_len (n->name) + |
| 921 | 2, em->error_strings_heap[b0->error], |
| 922 | error_string_len); |
| 923 | last->current_length += drop_string_len; |
| 924 | b0->flags &= ~(VLIB_BUFFER_TOTAL_LENGTH_VALID); |
| 925 | pcap_add_buffer (&pp->pcap_main, vm, bi0, |
| 926 | pp->max_bytes_per_pkt); |
| 927 | last->current_length -= drop_string_len; |
| 928 | b0->current_data = save_current_data; |
| 929 | b0->current_length = save_current_length; |
| 930 | continue; |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | /* |
| 935 | * Didn't have space in the last buffer, here's the dropped |
| 936 | * packet as-is |
| 937 | */ |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 938 | pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 939 | |
| 940 | b0->current_data = save_current_data; |
| 941 | b0->current_length = save_current_length; |
| 942 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 943 | } |
| 944 | } |
| 945 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 946 | #ifndef CLIB_MARCH_VARIANT |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 947 | void |
| 948 | vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 949 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 950 | vnet_interface_main_t *im = &vnet_get_main ()->interface_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 951 | |
| 952 | if (im->pcap_drop_filter_hash == 0) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 953 | im->pcap_drop_filter_hash = hash_create (0, sizeof (uword)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 954 | |
| 955 | if (is_add) |
| 956 | hash_set (im->pcap_drop_filter_hash, error_index, 1); |
| 957 | else |
| 958 | hash_unset (im->pcap_drop_filter_hash, error_index); |
| 959 | } |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 960 | #endif /* CLIB_MARCH_VARIANT */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 961 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 962 | VLIB_NODE_FN (interface_drop) (vlib_main_t * vm, |
| 963 | vlib_node_runtime_t * node, |
| 964 | vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 965 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 966 | vnet_interface_main_t *im = &vnet_get_main ()->interface_main; |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 967 | vnet_pcap_t *pp = &vlib_global_main.pcap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 968 | |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 969 | if (PREDICT_FALSE (pp->pcap_drop_enable)) |
| 970 | pcap_drop_trace (vm, im, pp, frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 971 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 972 | return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_DROP); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 973 | } |
| 974 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 975 | VLIB_NODE_FN (interface_punt) (vlib_main_t * vm, |
| 976 | vlib_node_runtime_t * node, |
| 977 | vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 978 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 979 | return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_PUNT); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 980 | } |
| 981 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 982 | /* *INDENT-OFF* */ |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 983 | VLIB_REGISTER_NODE (interface_drop) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 984 | .name = "error-drop", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 985 | .vector_size = sizeof (u32), |
| 986 | .format_trace = format_vnet_error_trace, |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 987 | .n_next_nodes = 1, |
| 988 | .next_nodes = { |
| 989 | [0] = "drop", |
| 990 | }, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 991 | }; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 992 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 993 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 994 | /* *INDENT-OFF* */ |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 995 | VLIB_REGISTER_NODE (interface_punt) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 996 | .name = "error-punt", |
| 997 | .vector_size = sizeof (u32), |
| 998 | .format_trace = format_vnet_error_trace, |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 999 | .n_next_nodes = 1, |
| 1000 | .next_nodes = { |
| 1001 | [0] = "punt", |
| 1002 | }, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1003 | }; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1004 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1005 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1006 | /* *INDENT-OFF* */ |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 1007 | VLIB_REGISTER_NODE (vnet_per_buffer_interface_output_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1008 | .name = "interface-output", |
| 1009 | .vector_size = sizeof (u32), |
| 1010 | }; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1011 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1012 | |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1013 | static uword |
| 1014 | interface_tx_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1015 | vlib_frame_t * from_frame) |
| 1016 | { |
| 1017 | vnet_main_t *vnm = vnet_get_main (); |
| 1018 | u32 last_sw_if_index = ~0; |
| 1019 | vlib_frame_t *to_frame = 0; |
| 1020 | vnet_hw_interface_t *hw = 0; |
| 1021 | u32 *from, *to_next = 0; |
| 1022 | u32 n_left_from; |
| 1023 | |
| 1024 | from = vlib_frame_vector_args (from_frame); |
| 1025 | n_left_from = from_frame->n_vectors; |
| 1026 | while (n_left_from > 0) |
| 1027 | { |
| 1028 | u32 bi0; |
| 1029 | vlib_buffer_t *b0; |
| 1030 | u32 sw_if_index0; |
| 1031 | |
| 1032 | bi0 = from[0]; |
| 1033 | from++; |
| 1034 | n_left_from--; |
| 1035 | b0 = vlib_get_buffer (vm, bi0); |
| 1036 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX]; |
| 1037 | |
| 1038 | if (PREDICT_FALSE ((last_sw_if_index != sw_if_index0) || to_frame == 0)) |
| 1039 | { |
| 1040 | if (to_frame) |
| 1041 | { |
| 1042 | hw = vnet_get_sup_hw_interface (vnm, last_sw_if_index); |
| 1043 | vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame); |
| 1044 | } |
| 1045 | last_sw_if_index = sw_if_index0; |
| 1046 | hw = vnet_get_sup_hw_interface (vnm, sw_if_index0); |
| 1047 | to_frame = vlib_get_frame_to_node (vm, hw->tx_node_index); |
| 1048 | to_next = vlib_frame_vector_args (to_frame); |
| 1049 | } |
| 1050 | |
| 1051 | to_next[0] = bi0; |
| 1052 | to_next++; |
| 1053 | to_frame->n_vectors++; |
| 1054 | } |
| 1055 | vlib_put_frame_to_node (vm, hw->tx_node_index, to_frame); |
| 1056 | return from_frame->n_vectors; |
| 1057 | } |
| 1058 | |
| 1059 | /* *INDENT-OFF* */ |
Damjan Marion | d770cfc | 2019-09-02 19:00:33 +0200 | [diff] [blame] | 1060 | VLIB_REGISTER_NODE (interface_tx) = { |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1061 | .function = interface_tx_node_fn, |
| 1062 | .name = "interface-tx", |
| 1063 | .vector_size = sizeof (u32), |
| 1064 | .n_next_nodes = 1, |
| 1065 | .next_nodes = { |
| 1066 | [0] = "error-drop", |
| 1067 | }, |
| 1068 | }; |
| 1069 | |
| 1070 | VNET_FEATURE_ARC_INIT (interface_output, static) = |
| 1071 | { |
| 1072 | .arc_name = "interface-output", |
| 1073 | .start_nodes = VNET_FEATURES (0), |
Dave Barach | a25def7 | 2018-11-26 11:04:45 -0500 | [diff] [blame] | 1074 | .last_in_arc = "interface-tx", |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1075 | .arc_index_ptr = &vnet_main.interface_main.output_feature_arc_index, |
| 1076 | }; |
| 1077 | |
Pavel Kotucek | 3a2a1c4 | 2016-12-06 10:10:10 +0100 | [diff] [blame] | 1078 | VNET_FEATURE_INIT (span_tx, static) = { |
| 1079 | .arc_name = "interface-output", |
| 1080 | .node_name = "span-output", |
| 1081 | .runs_before = VNET_FEATURES ("interface-tx"), |
| 1082 | }; |
| 1083 | |
Matthew Smith | 537eeec | 2018-04-09 11:49:20 -0500 | [diff] [blame] | 1084 | VNET_FEATURE_INIT (ipsec_if_tx, static) = { |
| 1085 | .arc_name = "interface-output", |
| 1086 | .node_name = "ipsec-if-output", |
| 1087 | .runs_before = VNET_FEATURES ("interface-tx"), |
| 1088 | }; |
| 1089 | |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1090 | VNET_FEATURE_INIT (interface_tx, static) = { |
| 1091 | .arc_name = "interface-output", |
| 1092 | .node_name = "interface-tx", |
| 1093 | .runs_before = 0, |
| 1094 | }; |
| 1095 | /* *INDENT-ON* */ |
| 1096 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 1097 | #ifndef CLIB_MARCH_VARIANT |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1098 | clib_error_t * |
| 1099 | vnet_per_buffer_interface_output_hw_interface_add_del (vnet_main_t * vnm, |
| 1100 | u32 hw_if_index, |
| 1101 | u32 is_create) |
| 1102 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1103 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1104 | u32 next_index; |
| 1105 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1106 | if (hi->output_node_index == 0) |
| 1107 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1108 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1109 | next_index = vlib_node_add_next |
| 1110 | (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, |
| 1111 | hi->output_node_index); |
| 1112 | hi->output_node_next_index = next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1113 | |
| 1114 | return 0; |
| 1115 | } |
| 1116 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1117 | VNET_HW_INTERFACE_ADD_DEL_FUNCTION |
| 1118 | (vnet_per_buffer_interface_output_hw_interface_add_del); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1119 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1120 | void |
| 1121 | vnet_set_interface_output_node (vnet_main_t * vnm, |
| 1122 | u32 hw_if_index, u32 node_index) |
| 1123 | { |
| 1124 | ASSERT (node_index); |
| 1125 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 1126 | u32 next_index = vlib_node_add_next |
| 1127 | (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, node_index); |
| 1128 | hi->output_node_next_index = next_index; |
| 1129 | hi->output_node_index = node_index; |
| 1130 | } |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 1131 | #endif /* CLIB_MARCH_VARIANT */ |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1132 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1133 | /* |
| 1134 | * fd.io coding-style-patch-verification: ON |
| 1135 | * |
| 1136 | * Local Variables: |
| 1137 | * eval: (c-set-style "gnu") |
| 1138 | * End: |
| 1139 | */ |