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> |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 41 | #include <vnet/ip/icmp46_packet.h> |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 42 | #include <vnet/ethernet/packet.h> |
Florin Coras | b040f98 | 2020-10-20 14:59:43 -0700 | [diff] [blame] | 43 | #include <vnet/ip/format.h> |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 44 | #include <vnet/ip/ip4.h> |
| 45 | #include <vnet/ip/ip6.h> |
| 46 | #include <vnet/udp/udp_packet.h> |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 47 | #include <vnet/feature/feature.h> |
Benoît Ganne | 30a8195 | 2021-02-26 13:47:41 +0100 | [diff] [blame] | 48 | #include <vnet/classify/pcap_classify.h> |
Dave Barach | 1bd2c01 | 2020-04-12 08:31:39 -0400 | [diff] [blame] | 49 | #include <vnet/interface_output.h> |
Damjan Marion | d154a17 | 2021-07-13 21:12:41 +0200 | [diff] [blame] | 50 | #include <vppinfra/vector/mask_compare.h> |
| 51 | #include <vppinfra/vector/compress.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 53 | typedef struct |
| 54 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | u32 sw_if_index; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 56 | u32 flags; |
Mohsin Kazmi | 29467b5 | 2019-10-08 19:42:38 +0200 | [diff] [blame] | 57 | u8 data[128 - 2 * sizeof (u32)]; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 58 | } |
| 59 | interface_output_trace_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 60 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 61 | #ifndef CLIB_MARCH_VARIANT |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 62 | u8 * |
| 63 | format_vnet_interface_output_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | { |
| 65 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 66 | vlib_node_t *node = va_arg (*va, vlib_node_t *); |
| 67 | interface_output_trace_t *t = va_arg (*va, interface_output_trace_t *); |
| 68 | vnet_main_t *vnm = vnet_get_main (); |
| 69 | vnet_sw_interface_t *si; |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 70 | u32 indent; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 72 | if (t->sw_if_index != (u32) ~ 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 73 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 74 | indent = format_get_indent (s); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 75 | |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 76 | if (pool_is_free_index |
| 77 | (vnm->interface_main.sw_interfaces, t->sw_if_index)) |
| 78 | { |
| 79 | /* 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] | 80 | s = format (s, "sw_if_index: %d ", t->sw_if_index); |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 81 | } |
| 82 | else |
| 83 | { |
| 84 | si = vnet_get_sw_interface (vnm, t->sw_if_index); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 85 | s = |
| 86 | format (s, "%U ", format_vnet_sw_interface_name, vnm, si, |
| 87 | t->flags); |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 88 | } |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 89 | s = |
| 90 | format (s, "\n%U%U", format_white_space, indent, |
| 91 | node->format_buffer ? node->format_buffer : format_hex_bytes, |
| 92 | t->data, sizeof (t->data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | } |
| 94 | return s; |
| 95 | } |
Benoît Ganne | 7d2094c | 2020-11-09 15:23:52 +0100 | [diff] [blame] | 96 | #endif /* CLIB_MARCH_VARIANT */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 97 | |
| 98 | static void |
| 99 | vnet_interface_output_trace (vlib_main_t * vm, |
| 100 | vlib_node_runtime_t * node, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 101 | vlib_frame_t * frame, uword n_buffers) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 102 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 103 | u32 n_left, *from; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 104 | |
| 105 | n_left = n_buffers; |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 106 | from = vlib_frame_vector_args (frame); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 107 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | while (n_left >= 4) |
| 109 | { |
| 110 | u32 bi0, bi1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 111 | vlib_buffer_t *b0, *b1; |
| 112 | interface_output_trace_t *t0, *t1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 113 | |
| 114 | /* Prefetch next iteration. */ |
| 115 | vlib_prefetch_buffer_with_index (vm, from[2], LOAD); |
| 116 | vlib_prefetch_buffer_with_index (vm, from[3], LOAD); |
| 117 | |
| 118 | bi0 = from[0]; |
| 119 | bi1 = from[1]; |
| 120 | |
| 121 | b0 = vlib_get_buffer (vm, bi0); |
| 122 | b1 = vlib_get_buffer (vm, bi1); |
| 123 | |
| 124 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 125 | { |
| 126 | t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0])); |
| 127 | t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX]; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 128 | t0->flags = b0->flags; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 129 | clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0), |
| 130 | sizeof (t0->data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | } |
| 132 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 133 | { |
| 134 | t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0])); |
| 135 | t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_TX]; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 136 | t1->flags = b1->flags; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 137 | clib_memcpy_fast (t1->data, vlib_buffer_get_current (b1), |
| 138 | sizeof (t1->data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | } |
| 140 | from += 2; |
| 141 | n_left -= 2; |
| 142 | } |
| 143 | |
| 144 | while (n_left >= 1) |
| 145 | { |
| 146 | u32 bi0; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 147 | vlib_buffer_t *b0; |
| 148 | interface_output_trace_t *t0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 149 | |
| 150 | bi0 = from[0]; |
| 151 | |
| 152 | b0 = vlib_get_buffer (vm, bi0); |
| 153 | |
| 154 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 155 | { |
| 156 | t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0])); |
| 157 | t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_TX]; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 158 | t0->flags = b0->flags; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 159 | clib_memcpy_fast (t0->data, vlib_buffer_get_current (b0), |
| 160 | sizeof (t0->data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 161 | } |
| 162 | from += 1; |
| 163 | n_left -= 1; |
| 164 | } |
| 165 | } |
| 166 | |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 167 | static_always_inline void |
| 168 | vnet_interface_output_handle_offload (vlib_main_t *vm, vlib_buffer_t *b) |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 169 | { |
Aloys Augustin | ac6c528 | 2021-04-15 18:12:51 +0200 | [diff] [blame] | 170 | vnet_calc_checksums_inline (vm, b, b->flags & VNET_BUFFER_F_IS_IP4, |
| 171 | b->flags & VNET_BUFFER_F_IS_IP6); |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 172 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 173 | |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 174 | static_always_inline uword |
| 175 | vnet_interface_output_node_inline (vlib_main_t *vm, u32 sw_if_index, |
| 176 | vlib_combined_counter_main_t *ccm, |
| 177 | vlib_buffer_t **b, u32 config_index, u8 arc, |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 178 | u32 n_left, int processing_level) |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 179 | { |
| 180 | u32 n_bytes = 0; |
| 181 | u32 n_bytes0, n_bytes1, n_bytes2, n_bytes3; |
| 182 | u32 ti = vm->thread_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 183 | |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 184 | while (n_left >= 8) |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 185 | { |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 186 | u32 or_flags; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 187 | |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 188 | /* Prefetch next iteration. */ |
| 189 | vlib_prefetch_buffer_header (b[4], LOAD); |
| 190 | vlib_prefetch_buffer_header (b[5], LOAD); |
| 191 | vlib_prefetch_buffer_header (b[6], LOAD); |
| 192 | vlib_prefetch_buffer_header (b[7], LOAD); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 194 | if (processing_level >= 1) |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 195 | or_flags = b[0]->flags | b[1]->flags | b[2]->flags | b[3]->flags; |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 196 | |
| 197 | /* Be grumpy about zero length buffers for benefit of |
| 198 | driver tx function. */ |
| 199 | ASSERT (b[0]->current_length > 0); |
| 200 | ASSERT (b[1]->current_length > 0); |
| 201 | ASSERT (b[2]->current_length > 0); |
| 202 | ASSERT (b[3]->current_length > 0); |
| 203 | |
| 204 | n_bytes += n_bytes0 = vlib_buffer_length_in_chain (vm, b[0]); |
| 205 | n_bytes += n_bytes1 = vlib_buffer_length_in_chain (vm, b[1]); |
| 206 | n_bytes += n_bytes2 = vlib_buffer_length_in_chain (vm, b[2]); |
| 207 | n_bytes += n_bytes3 = vlib_buffer_length_in_chain (vm, b[3]); |
| 208 | |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 209 | if (processing_level >= 2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 210 | { |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 211 | u32 tx_swif0, tx_swif1, tx_swif2, tx_swif3; |
| 212 | tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
| 213 | tx_swif1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX]; |
| 214 | tx_swif2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX]; |
| 215 | tx_swif3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX]; |
| 216 | |
| 217 | /* update vlan subif tx counts, if required */ |
| 218 | if (PREDICT_FALSE (tx_swif0 != sw_if_index)) |
| 219 | vlib_increment_combined_counter (ccm, ti, tx_swif0, 1, n_bytes0); |
| 220 | |
| 221 | if (PREDICT_FALSE (tx_swif1 != sw_if_index)) |
| 222 | vlib_increment_combined_counter (ccm, ti, tx_swif1, 1, n_bytes1); |
| 223 | |
| 224 | if (PREDICT_FALSE (tx_swif2 != sw_if_index)) |
| 225 | vlib_increment_combined_counter (ccm, ti, tx_swif2, 1, n_bytes2); |
| 226 | |
| 227 | if (PREDICT_FALSE (tx_swif3 != sw_if_index)) |
| 228 | vlib_increment_combined_counter (ccm, ti, tx_swif3, 1, n_bytes3); |
| 229 | |
| 230 | if (PREDICT_FALSE (config_index != ~0)) |
| 231 | { |
| 232 | vnet_buffer (b[0])->feature_arc_index = arc; |
| 233 | b[0]->current_config_index = config_index; |
| 234 | vnet_buffer (b[1])->feature_arc_index = arc; |
| 235 | b[1]->current_config_index = config_index; |
| 236 | vnet_buffer (b[2])->feature_arc_index = arc; |
| 237 | b[2]->current_config_index = config_index; |
| 238 | vnet_buffer (b[3])->feature_arc_index = arc; |
| 239 | b[3]->current_config_index = config_index; |
| 240 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 243 | if (processing_level >= 1 && (or_flags & VNET_BUFFER_F_OFFLOAD)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 244 | { |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 245 | vnet_interface_output_handle_offload (vm, b[0]); |
| 246 | vnet_interface_output_handle_offload (vm, b[1]); |
| 247 | vnet_interface_output_handle_offload (vm, b[2]); |
| 248 | vnet_interface_output_handle_offload (vm, b[3]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 249 | } |
| 250 | |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 251 | n_left -= 4; |
| 252 | b += 4; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 253 | } |
| 254 | |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 255 | while (n_left) |
| 256 | { |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 257 | /* Be grumpy about zero length buffers for benefit of |
| 258 | driver tx function. */ |
| 259 | ASSERT (b[0]->current_length > 0); |
| 260 | |
| 261 | n_bytes += n_bytes0 = vlib_buffer_length_in_chain (vm, b[0]); |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 262 | |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 263 | if (processing_level >= 2) |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 264 | { |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 265 | u32 tx_swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 266 | |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 267 | if (PREDICT_FALSE (config_index != ~0)) |
| 268 | { |
| 269 | vnet_buffer (b[0])->feature_arc_index = arc; |
| 270 | b[0]->current_config_index = config_index; |
| 271 | } |
| 272 | |
| 273 | if (PREDICT_FALSE (tx_swif0 != sw_if_index)) |
| 274 | vlib_increment_combined_counter (ccm, ti, tx_swif0, 1, n_bytes0); |
| 275 | } |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 276 | |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 277 | if (processing_level >= 1) |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 278 | vnet_interface_output_handle_offload (vm, b[0]); |
| 279 | |
| 280 | n_left -= 1; |
| 281 | b += 1; |
| 282 | } |
| 283 | |
| 284 | return n_bytes; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Benoît Ganne | 1433185 | 2021-07-15 19:21:31 +0200 | [diff] [blame] | 287 | static_always_inline void |
| 288 | vnet_interface_pcap_tx_trace (vlib_main_t *vm, vlib_node_runtime_t *node, |
| 289 | vlib_frame_t *frame, int in_interface_ouput) |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 290 | { |
Damjan Marion | 8fb5add | 2021-03-04 18:41:59 +0100 | [diff] [blame] | 291 | vnet_main_t *vnm = vnet_get_main (); |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 292 | u32 n_left_from, *from; |
Benoît Ganne | 1433185 | 2021-07-15 19:21:31 +0200 | [diff] [blame] | 293 | u32 sw_if_index = ~0, hw_if_index = ~0; |
Damjan Marion | 8fb5add | 2021-03-04 18:41:59 +0100 | [diff] [blame] | 294 | vnet_pcap_t *pp = &vnm->pcap; |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 295 | |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 296 | if (PREDICT_TRUE (pp->pcap_tx_enable == 0)) |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 297 | return; |
| 298 | |
Benoît Ganne | 1433185 | 2021-07-15 19:21:31 +0200 | [diff] [blame] | 299 | if (in_interface_ouput) |
| 300 | { |
| 301 | /* interface-output is called right before interface-output-template. |
| 302 | * We only want to capture packets here if there is a per-interface |
| 303 | * filter, in case it matches the sub-interface sw_if_index. |
| 304 | * If there is no per-interface filter configured, let the |
| 305 | * interface-output-template node deal with it */ |
| 306 | if (pp->pcap_sw_if_index == 0) |
| 307 | return; |
| 308 | } |
| 309 | else |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 310 | { |
| 311 | vnet_interface_output_runtime_t *rt = (void *) node->runtime_data; |
| 312 | sw_if_index = rt->sw_if_index; |
| 313 | } |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 314 | |
| 315 | n_left_from = frame->n_vectors; |
| 316 | from = vlib_frame_vector_args (frame); |
| 317 | |
| 318 | while (n_left_from > 0) |
| 319 | { |
| 320 | u32 bi0 = from[0]; |
| 321 | vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0); |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 322 | from++; |
| 323 | n_left_from--; |
| 324 | |
Benoît Ganne | 1433185 | 2021-07-15 19:21:31 +0200 | [diff] [blame] | 325 | if (in_interface_ouput) |
| 326 | { |
| 327 | const u32 sii = vnet_buffer (b0)->sw_if_index[VLIB_TX]; |
| 328 | if (PREDICT_FALSE (sii != sw_if_index)) |
| 329 | { |
| 330 | const vnet_hw_interface_t *hi = |
| 331 | vnet_get_sup_hw_interface (vnm, sii); |
| 332 | hw_if_index = hi->sw_if_index; |
| 333 | sw_if_index = sii; |
| 334 | } |
| 335 | if (hw_if_index == sw_if_index) |
| 336 | continue; /* defer to interface-output-template */ |
| 337 | } |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 338 | |
Benoît Ganne | 30a8195 | 2021-02-26 13:47:41 +0100 | [diff] [blame] | 339 | if (vnet_is_packet_pcaped (pp, b0, sw_if_index)) |
| 340 | pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt); |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 341 | } |
| 342 | } |
| 343 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 344 | static_always_inline void |
| 345 | store_tx_frame_scalar_data (vnet_hw_if_output_node_runtime_t *r, |
| 346 | vnet_hw_if_tx_frame_t *tf) |
| 347 | { |
| 348 | if (r) |
| 349 | clib_memcpy_fast (tf, &r->frame, sizeof (vnet_hw_if_tx_frame_t)); |
| 350 | } |
| 351 | |
| 352 | static_always_inline void |
| 353 | enqueu_to_tx_node (vlib_main_t *vm, vlib_node_runtime_t *node, |
| 354 | vnet_hw_interface_t *hi, u32 *from, u32 n_vectors) |
| 355 | { |
| 356 | u32 next_index = VNET_INTERFACE_OUTPUT_NEXT_TX; |
| 357 | vnet_hw_if_output_node_runtime_t *r = 0; |
| 358 | u32 n_free, n_copy, *to; |
| 359 | vnet_hw_if_tx_frame_t *tf; |
| 360 | vlib_frame_t *f; |
| 361 | |
| 362 | ASSERT (n_vectors <= VLIB_FRAME_SIZE); |
| 363 | |
| 364 | if (hi->output_node_thread_runtimes) |
| 365 | r = vec_elt_at_index (hi->output_node_thread_runtimes, vm->thread_index); |
| 366 | |
| 367 | f = vlib_get_next_frame_internal (vm, node, next_index, 0); |
| 368 | tf = vlib_frame_scalar_args (f); |
| 369 | |
| 370 | if (f->n_vectors > 0 && (r == 0 || tf->queue_id == r->frame.queue_id)) |
| 371 | { |
| 372 | /* append current next frame */ |
| 373 | n_free = VLIB_FRAME_SIZE - f->n_vectors; |
| 374 | n_copy = clib_min (n_vectors, n_free); |
| 375 | n_vectors -= n_copy; |
| 376 | to = vlib_frame_vector_args (f); |
| 377 | to += f->n_vectors; |
| 378 | } |
| 379 | else |
| 380 | { |
| 381 | if (f->n_vectors > 0) |
| 382 | { |
| 383 | /* current frame doesn't fit - grab empty one */ |
| 384 | f = vlib_get_next_frame_internal (vm, node, next_index, 1); |
| 385 | tf = vlib_frame_scalar_args (f); |
| 386 | } |
| 387 | |
| 388 | /* empty frame - store scalar data */ |
| 389 | store_tx_frame_scalar_data (r, tf); |
| 390 | to = vlib_frame_vector_args (f); |
| 391 | n_free = VLIB_FRAME_SIZE; |
| 392 | n_copy = n_vectors; |
| 393 | n_vectors = 0; |
| 394 | } |
| 395 | |
| 396 | vlib_buffer_copy_indices (to, from, n_copy); |
| 397 | vlib_put_next_frame (vm, node, next_index, n_free - n_copy); |
| 398 | |
| 399 | if (n_vectors == 0) |
| 400 | return; |
| 401 | |
| 402 | /* we have more indices to store, take empty frame */ |
| 403 | from += n_copy; |
| 404 | f = vlib_get_next_frame_internal (vm, node, next_index, 1); |
| 405 | store_tx_frame_scalar_data (r, vlib_frame_scalar_args (f)); |
| 406 | vlib_buffer_copy_indices (vlib_frame_vector_args (f), from, n_vectors); |
| 407 | vlib_put_next_frame (vm, node, next_index, VLIB_FRAME_SIZE - n_vectors); |
| 408 | } |
| 409 | |
Damjan Marion | f91098e | 2021-03-09 16:28:15 +0100 | [diff] [blame] | 410 | VLIB_NODE_FN (vnet_interface_output_node) |
| 411 | (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame) |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 412 | { |
| 413 | vnet_main_t *vnm = vnet_get_main (); |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 414 | vnet_interface_main_t *im = &vnm->interface_main; |
| 415 | vlib_combined_counter_main_t *ccm; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 416 | vnet_hw_interface_t *hi; |
Damjan Marion | 3853b26 | 2021-03-23 18:47:34 +0100 | [diff] [blame] | 417 | vnet_sw_interface_t *si; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 418 | vnet_interface_output_runtime_t *rt = (void *) node->runtime_data; |
Damjan Marion | 3853b26 | 2021-03-23 18:47:34 +0100 | [diff] [blame] | 419 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE]; |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 420 | u32 n_bytes, n_buffers = frame->n_vectors; |
| 421 | u32 config_index = ~0; |
| 422 | u32 sw_if_index = rt->sw_if_index; |
| 423 | u32 next_index = VNET_INTERFACE_OUTPUT_NEXT_TX; |
| 424 | u32 ti = vm->thread_index; |
| 425 | u8 arc = im->output_feature_arc_index; |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 426 | int arc_or_subif = 0; |
| 427 | int do_tx_offloads = 0; |
Damjan Marion | 3853b26 | 2021-03-23 18:47:34 +0100 | [diff] [blame] | 428 | u32 *from; |
| 429 | |
| 430 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 431 | vnet_interface_output_trace (vm, node, frame, n_buffers); |
| 432 | |
| 433 | from = vlib_frame_vector_args (frame); |
| 434 | |
| 435 | if (rt->is_deleted) |
| 436 | return vlib_error_drop_buffers ( |
| 437 | vm, node, from, |
| 438 | /* buffer stride */ 1, n_buffers, VNET_INTERFACE_OUTPUT_NEXT_DROP, |
| 439 | node->node_index, VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DELETED); |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 440 | |
Benoît Ganne | 1433185 | 2021-07-15 19:21:31 +0200 | [diff] [blame] | 441 | vnet_interface_pcap_tx_trace (vm, node, frame, 0 /* in_interface_ouput */); |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 442 | |
Damjan Marion | 3853b26 | 2021-03-23 18:47:34 +0100 | [diff] [blame] | 443 | vlib_get_buffers (vm, from, bufs, n_buffers); |
| 444 | |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 445 | si = vnet_get_sw_interface (vnm, sw_if_index); |
| 446 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
Damjan Marion | 3853b26 | 2021-03-23 18:47:34 +0100 | [diff] [blame] | 447 | |
| 448 | if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) || |
| 449 | !(hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP)) |
| 450 | { |
| 451 | vlib_simple_counter_main_t *cm; |
| 452 | |
| 453 | cm = vec_elt_at_index (vnm->interface_main.sw_if_counters, |
| 454 | VNET_INTERFACE_COUNTER_TX_ERROR); |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 455 | vlib_increment_simple_counter (cm, ti, sw_if_index, n_buffers); |
Damjan Marion | 3853b26 | 2021-03-23 18:47:34 +0100 | [diff] [blame] | 456 | |
| 457 | return vlib_error_drop_buffers ( |
| 458 | vm, node, from, |
| 459 | /* buffer stride */ 1, n_buffers, VNET_INTERFACE_OUTPUT_NEXT_DROP, |
| 460 | node->node_index, VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DOWN); |
| 461 | } |
| 462 | |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 463 | /* interface-output feature arc handling */ |
| 464 | if (PREDICT_FALSE (vnet_have_features (arc, sw_if_index))) |
| 465 | { |
| 466 | vnet_feature_config_main_t *fcm; |
| 467 | fcm = vnet_feature_get_config_main (arc); |
| 468 | config_index = vnet_get_feature_config_index (arc, sw_if_index); |
| 469 | vnet_get_config_data (&fcm->config_main, &config_index, &next_index, 0); |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 470 | arc_or_subif = 1; |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 471 | } |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 472 | else if (hash_elts (hi->sub_interface_sw_if_index_by_id)) |
| 473 | arc_or_subif = 1; |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 474 | |
| 475 | ccm = im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_TX; |
| 476 | |
Nathan Skrzypczak | 2e55823 | 2021-05-27 19:34:59 +0200 | [diff] [blame] | 477 | /* if not all three flags IP4_,TCP_,UDP_CKSUM set, do compute them |
| 478 | * here before sending to the interface */ |
| 479 | if ((hi->caps & VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM) != |
| 480 | VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM) |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 481 | do_tx_offloads = 1; |
| 482 | |
| 483 | if (do_tx_offloads == 0 && arc_or_subif == 0) |
| 484 | n_bytes = vnet_interface_output_node_inline ( |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 485 | vm, sw_if_index, ccm, bufs, config_index, arc, n_buffers, 0); |
Damjan Marion | 4f81d44 | 2021-03-30 14:34:44 +0200 | [diff] [blame] | 486 | else if (do_tx_offloads == 1 && arc_or_subif == 0) |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 487 | n_bytes = vnet_interface_output_node_inline ( |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 488 | vm, sw_if_index, ccm, bufs, config_index, arc, n_buffers, 1); |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 489 | else |
Damjan Marion | d4008cf | 2021-03-24 11:45:51 +0100 | [diff] [blame] | 490 | n_bytes = vnet_interface_output_node_inline ( |
Mohsin Kazmi | 8f3415d | 2021-10-14 12:21:16 +0000 | [diff] [blame] | 491 | vm, sw_if_index, ccm, bufs, config_index, arc, n_buffers, 2); |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 492 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 493 | from = vlib_frame_vector_args (frame); |
| 494 | if (PREDICT_TRUE (next_index == VNET_INTERFACE_OUTPUT_NEXT_TX)) |
| 495 | { |
| 496 | enqueu_to_tx_node (vm, node, hi, from, frame->n_vectors); |
| 497 | } |
| 498 | else |
| 499 | { |
| 500 | vlib_buffer_enqueue_to_single_next (vm, node, from, next_index, |
| 501 | frame->n_vectors); |
| 502 | } |
Damjan Marion | 4d2726e | 2021-03-23 21:05:18 +0100 | [diff] [blame] | 503 | |
| 504 | /* Update main interface stats. */ |
| 505 | vlib_increment_combined_counter (ccm, ti, sw_if_index, n_buffers, n_bytes); |
| 506 | return n_buffers; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 507 | } |
Benoît Ganne | 7d2094c | 2020-11-09 15:23:52 +0100 | [diff] [blame] | 508 | |
Damjan Marion | f91098e | 2021-03-09 16:28:15 +0100 | [diff] [blame] | 509 | VLIB_REGISTER_NODE (vnet_interface_output_node) = { |
| 510 | .name = "interface-output-template", |
| 511 | .vector_size = sizeof (u32), |
| 512 | }; |
Dave Barach | 2c0a4f4 | 2017-06-29 09:30:15 -0400 | [diff] [blame] | 513 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 514 | /* Use buffer's sw_if_index[VNET_TX] to choose output interface. */ |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 515 | VLIB_NODE_FN (vnet_per_buffer_interface_output_node) (vlib_main_t * vm, |
| 516 | vlib_node_runtime_t * |
| 517 | node, |
| 518 | vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 519 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 520 | vnet_main_t *vnm = vnet_get_main (); |
| 521 | u32 n_left_to_next, *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 522 | u32 n_left_from, next_index; |
| 523 | |
Benoît Ganne | 1433185 | 2021-07-15 19:21:31 +0200 | [diff] [blame] | 524 | vnet_interface_pcap_tx_trace (vm, node, frame, 1 /* in_interface_ouput */); |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 525 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 526 | n_left_from = frame->n_vectors; |
| 527 | |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 528 | from = vlib_frame_vector_args (frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 529 | next_index = node->cached_next_index; |
| 530 | |
| 531 | while (n_left_from > 0) |
| 532 | { |
| 533 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 534 | |
| 535 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 536 | { |
| 537 | u32 bi0, bi1, next0, next1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 538 | vlib_buffer_t *b0, *b1; |
| 539 | vnet_hw_interface_t *hi0, *hi1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 540 | |
| 541 | /* Prefetch next iteration. */ |
| 542 | vlib_prefetch_buffer_with_index (vm, from[2], LOAD); |
| 543 | vlib_prefetch_buffer_with_index (vm, from[3], LOAD); |
| 544 | |
| 545 | bi0 = from[0]; |
| 546 | bi1 = from[1]; |
| 547 | to_next[0] = bi0; |
| 548 | to_next[1] = bi1; |
| 549 | from += 2; |
| 550 | to_next += 2; |
| 551 | n_left_to_next -= 2; |
| 552 | n_left_from -= 2; |
| 553 | |
| 554 | b0 = vlib_get_buffer (vm, bi0); |
| 555 | b1 = vlib_get_buffer (vm, bi1); |
| 556 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 557 | hi0 = |
| 558 | vnet_get_sup_hw_interface (vnm, |
| 559 | vnet_buffer (b0)->sw_if_index |
| 560 | [VLIB_TX]); |
| 561 | hi1 = |
| 562 | vnet_get_sup_hw_interface (vnm, |
| 563 | vnet_buffer (b1)->sw_if_index |
| 564 | [VLIB_TX]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 565 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 566 | next0 = hi0->output_node_next_index; |
| 567 | next1 = hi1->output_node_next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 568 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 569 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next, |
| 570 | n_left_to_next, bi0, bi1, next0, |
| 571 | next1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | while (n_left_from > 0 && n_left_to_next > 0) |
| 575 | { |
| 576 | u32 bi0, next0; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 577 | vlib_buffer_t *b0; |
| 578 | vnet_hw_interface_t *hi0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 579 | |
| 580 | bi0 = from[0]; |
| 581 | to_next[0] = bi0; |
| 582 | from += 1; |
| 583 | to_next += 1; |
| 584 | n_left_to_next -= 1; |
| 585 | n_left_from -= 1; |
| 586 | |
| 587 | b0 = vlib_get_buffer (vm, bi0); |
| 588 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 589 | hi0 = |
| 590 | vnet_get_sup_hw_interface (vnm, |
| 591 | vnet_buffer (b0)->sw_if_index |
| 592 | [VLIB_TX]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 593 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 594 | next0 = hi0->output_node_next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 595 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 596 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 597 | n_left_to_next, bi0, next0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 601 | } |
| 602 | |
| 603 | return frame->n_vectors; |
| 604 | } |
| 605 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 606 | typedef struct vnet_error_trace_t_ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 607 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 608 | u32 sw_if_index; |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 609 | i8 details_valid; |
| 610 | u8 is_ip6; |
| 611 | u8 pad[2]; |
| 612 | u16 mactype; |
| 613 | ip46_address_t src, dst; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 614 | } vnet_error_trace_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 615 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 616 | static u8 * |
| 617 | format_vnet_error_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 618 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 619 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 620 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *); |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 621 | vnet_error_trace_t *t = va_arg (*va, vnet_error_trace_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 622 | |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 623 | /* Normal, non-catchup trace */ |
| 624 | if (t->details_valid == 0) |
| 625 | { |
| 626 | s = format (s, "rx:%U", format_vnet_sw_if_index_name, |
| 627 | vnet_get_main (), t->sw_if_index); |
| 628 | } |
| 629 | else if (t->details_valid == 1) |
| 630 | { |
| 631 | /* The trace capture code didn't understant the mactype */ |
| 632 | s = format (s, "mactype 0x%4x (not decoded)", t->mactype); |
| 633 | } |
| 634 | else if (t->details_valid == 2) |
| 635 | { |
| 636 | /* Dump the src/dst addresses */ |
| 637 | if (t->is_ip6 == 0) |
| 638 | s = format (s, "IP4: %U -> %U", |
| 639 | format_ip4_address, &t->src.ip4, |
| 640 | format_ip4_address, &t->dst.ip4); |
| 641 | else |
| 642 | s = format (s, "IP6: %U -> %U", |
| 643 | format_ip6_address, &t->src.ip6, |
| 644 | format_ip6_address, &t->dst.ip6); |
| 645 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 646 | return s; |
| 647 | } |
| 648 | |
| 649 | static void |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 650 | interface_trace_buffers (vlib_main_t * vm, |
| 651 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 652 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 653 | u32 n_left, *buffers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 654 | |
| 655 | buffers = vlib_frame_vector_args (frame); |
| 656 | n_left = frame->n_vectors; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 657 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 658 | while (n_left >= 4) |
| 659 | { |
| 660 | u32 bi0, bi1; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 661 | vlib_buffer_t *b0, *b1; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 662 | vnet_error_trace_t *t0, *t1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 663 | |
| 664 | /* Prefetch next iteration. */ |
| 665 | vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD); |
| 666 | vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD); |
| 667 | |
| 668 | bi0 = buffers[0]; |
| 669 | bi1 = buffers[1]; |
| 670 | |
| 671 | b0 = vlib_get_buffer (vm, bi0); |
| 672 | b1 = vlib_get_buffer (vm, bi1); |
| 673 | |
| 674 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 675 | { |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 676 | t0 = vlib_add_trace (vm, node, b0, |
| 677 | STRUCT_OFFSET_OF (vnet_error_trace_t, pad)); |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 678 | t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 679 | t0->details_valid = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 680 | } |
| 681 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 682 | { |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 683 | t1 = vlib_add_trace (vm, node, b1, |
| 684 | STRUCT_OFFSET_OF (vnet_error_trace_t, pad)); |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 685 | t1->sw_if_index = vnet_buffer (b1)->sw_if_index[VLIB_RX]; |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 686 | t1->details_valid = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 687 | } |
| 688 | buffers += 2; |
| 689 | n_left -= 2; |
| 690 | } |
| 691 | |
| 692 | while (n_left >= 1) |
| 693 | { |
| 694 | u32 bi0; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 695 | vlib_buffer_t *b0; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 696 | vnet_error_trace_t *t0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 697 | |
| 698 | bi0 = buffers[0]; |
| 699 | |
| 700 | b0 = vlib_get_buffer (vm, bi0); |
| 701 | |
| 702 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 703 | { |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 704 | t0 = vlib_add_trace (vm, node, b0, |
| 705 | STRUCT_OFFSET_OF (vnet_error_trace_t, pad)); |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 706 | t0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 707 | t0->details_valid = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 708 | } |
| 709 | buffers += 1; |
| 710 | n_left -= 1; |
| 711 | } |
| 712 | } |
| 713 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 714 | typedef enum |
| 715 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 716 | VNET_ERROR_DISPOSITION_DROP, |
| 717 | VNET_ERROR_DISPOSITION_PUNT, |
| 718 | VNET_ERROR_N_DISPOSITION, |
| 719 | } vnet_error_disposition_t; |
| 720 | |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 721 | static void |
| 722 | drop_catchup_trace (vlib_main_t * vm, |
| 723 | vlib_node_runtime_t * node, vlib_buffer_t * b) |
| 724 | { |
| 725 | /* Can we safely rewind the buffer? If not, fagedaboudit */ |
| 726 | if (b->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID) |
| 727 | { |
| 728 | vnet_error_trace_t *t; |
| 729 | ip4_header_t *ip4; |
| 730 | ip6_header_t *ip6; |
| 731 | ethernet_header_t *eh; |
| 732 | i16 delta; |
| 733 | |
| 734 | t = vlib_add_trace (vm, node, b, sizeof (*t)); |
| 735 | delta = vnet_buffer (b)->l2_hdr_offset - b->current_data; |
| 736 | vlib_buffer_advance (b, delta); |
| 737 | |
| 738 | eh = vlib_buffer_get_current (b); |
| 739 | /* Save mactype */ |
| 740 | t->mactype = clib_net_to_host_u16 (eh->type); |
| 741 | t->details_valid = 1; |
| 742 | switch (t->mactype) |
| 743 | { |
| 744 | case ETHERNET_TYPE_IP4: |
| 745 | ip4 = (void *) (eh + 1); |
| 746 | t->details_valid = 2; |
| 747 | t->is_ip6 = 0; |
| 748 | t->src.ip4.as_u32 = ip4->src_address.as_u32; |
| 749 | t->dst.ip4.as_u32 = ip4->dst_address.as_u32; |
| 750 | break; |
| 751 | |
| 752 | case ETHERNET_TYPE_IP6: |
| 753 | ip6 = (void *) (eh + 1); |
| 754 | t->details_valid = 2; |
| 755 | t->is_ip6 = 1; |
| 756 | clib_memcpy_fast (t->src.as_u8, ip6->src_address.as_u8, |
| 757 | sizeof (ip6_address_t)); |
| 758 | clib_memcpy_fast (t->dst.as_u8, ip6->dst_address.as_u8, |
| 759 | sizeof (ip6_address_t)); |
| 760 | break; |
| 761 | |
| 762 | default: |
| 763 | /* Dunno, do nothing, leave details_valid alone */ |
| 764 | break; |
| 765 | } |
| 766 | /* Restore current data (probably unnecessary) */ |
| 767 | vlib_buffer_advance (b, -delta); |
| 768 | } |
| 769 | } |
| 770 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 771 | static_always_inline uword |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 772 | interface_drop_punt (vlib_main_t * vm, |
| 773 | vlib_node_runtime_t * node, |
| 774 | vlib_frame_t * frame, |
| 775 | vnet_error_disposition_t disposition) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 776 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 777 | u32 *from, n_left, thread_index, *sw_if_index; |
| 778 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 779 | u32 sw_if_indices[VLIB_FRAME_SIZE]; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 780 | vlib_simple_counter_main_t *cm; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 781 | u16 nexts[VLIB_FRAME_SIZE]; |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 782 | u32 n_trace; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 783 | vnet_main_t *vnm; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 784 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 785 | vnm = vnet_get_main (); |
| 786 | thread_index = vm->thread_index; |
| 787 | from = vlib_frame_vector_args (frame); |
| 788 | n_left = frame->n_vectors; |
| 789 | b = bufs; |
| 790 | sw_if_index = sw_if_indices; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 791 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 792 | vlib_get_buffers (vm, from, bufs, n_left); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 793 | |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 794 | /* "trace add error-drop NNN?" */ |
| 795 | if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)))) |
| 796 | { |
| 797 | /* If pkts aren't otherwise traced... */ |
| 798 | if ((node->flags & VLIB_NODE_FLAG_TRACE) == 0) |
| 799 | { |
| 800 | /* Trace them from here */ |
| 801 | node->flags |= VLIB_NODE_FLAG_TRACE; |
| 802 | while (n_trace && n_left) |
| 803 | { |
Benoît Ganne | 9a3973e | 2020-10-02 19:36:57 +0200 | [diff] [blame] | 804 | if (PREDICT_TRUE |
| 805 | (vlib_trace_buffer (vm, node, 0 /* next_index */ , b[0], |
| 806 | 0 /* follow chain */ ))) |
| 807 | { |
| 808 | /* |
| 809 | * Here we have a wireshark dissector problem. |
| 810 | * Packets may be well-formed, or not. We |
| 811 | * must not blow chunks in any case. |
| 812 | * |
| 813 | * Try to produce trace records which will help |
| 814 | * folks understand what's going on. |
| 815 | */ |
| 816 | drop_catchup_trace (vm, node, b[0]); |
| 817 | n_trace--; |
| 818 | } |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 819 | n_left--; |
| 820 | b++; |
| 821 | } |
| 822 | } |
| 823 | |
| 824 | vlib_set_trace_count (vm, node, n_trace); |
| 825 | b = bufs; |
| 826 | n_left = frame->n_vectors; |
| 827 | } |
| 828 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 829 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 830 | interface_trace_buffers (vm, node, frame); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 831 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 832 | /* All going to drop regardless, this is just a counting exercise */ |
| 833 | clib_memset (nexts, 0, sizeof (nexts)); |
| 834 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 835 | cm = vec_elt_at_index (vnm->interface_main.sw_if_counters, |
| 836 | (disposition == VNET_ERROR_DISPOSITION_PUNT |
| 837 | ? VNET_INTERFACE_COUNTER_PUNT |
| 838 | : VNET_INTERFACE_COUNTER_DROP)); |
| 839 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 840 | /* collect the array of interfaces first ... */ |
| 841 | while (n_left >= 4) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 842 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 843 | if (n_left >= 12) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 844 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 845 | /* Prefetch 8 ahead - there's not much going on in each iteration */ |
| 846 | vlib_prefetch_buffer_header (b[4], LOAD); |
| 847 | vlib_prefetch_buffer_header (b[5], LOAD); |
| 848 | vlib_prefetch_buffer_header (b[6], LOAD); |
| 849 | vlib_prefetch_buffer_header (b[7], LOAD); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 850 | } |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 851 | sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 852 | sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX]; |
| 853 | sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX]; |
| 854 | sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX]; |
| 855 | |
| 856 | sw_if_index += 4; |
| 857 | n_left -= 4; |
| 858 | b += 4; |
| 859 | } |
| 860 | while (n_left) |
| 861 | { |
| 862 | sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 863 | |
| 864 | sw_if_index += 1; |
| 865 | n_left -= 1; |
| 866 | b += 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 867 | } |
| 868 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 869 | /* ... then count against them in blocks */ |
| 870 | n_left = frame->n_vectors; |
| 871 | |
| 872 | while (n_left) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 873 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 874 | vnet_sw_interface_t *sw_if0; |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 875 | u16 off, count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 876 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 877 | off = frame->n_vectors - n_left; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 878 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 879 | sw_if_index = sw_if_indices + off; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 880 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 881 | count = clib_count_equal_u32 (sw_if_index, n_left); |
| 882 | n_left -= count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 883 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 884 | vlib_increment_simple_counter (cm, thread_index, sw_if_index[0], count); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 885 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 886 | /* Increment super-interface drop/punt counters for |
| 887 | sub-interfaces. */ |
| 888 | sw_if0 = vnet_get_sw_interface (vnm, sw_if_index[0]); |
| 889 | if (sw_if0->sup_sw_if_index != sw_if_index[0]) |
| 890 | vlib_increment_simple_counter |
| 891 | (cm, thread_index, sw_if0->sup_sw_if_index, count); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 892 | } |
| 893 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 894 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 895 | |
| 896 | return frame->n_vectors; |
| 897 | } |
| 898 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 899 | static inline void |
| 900 | pcap_drop_trace (vlib_main_t * vm, |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 901 | vnet_interface_main_t * im, |
| 902 | vnet_pcap_t * pp, vlib_frame_t * f) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 903 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 904 | u32 *from; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 905 | u32 n_left = f->n_vectors; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 906 | vlib_buffer_t *b0, *p1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 907 | u32 bi0; |
| 908 | i16 save_current_data; |
| 909 | u16 save_current_length; |
Dave Barach | 9382ad9 | 2019-09-23 16:03:49 -0400 | [diff] [blame] | 910 | vlib_error_main_t *em = &vm->error_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 911 | |
| 912 | from = vlib_frame_vector_args (f); |
| 913 | |
| 914 | while (n_left > 0) |
| 915 | { |
| 916 | if (PREDICT_TRUE (n_left > 1)) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 917 | { |
| 918 | p1 = vlib_get_buffer (vm, from[1]); |
| 919 | vlib_prefetch_buffer_header (p1, LOAD); |
| 920 | } |
| 921 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 922 | bi0 = from[0]; |
| 923 | b0 = vlib_get_buffer (vm, bi0); |
| 924 | from++; |
| 925 | n_left--; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 926 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 927 | /* See if we're pointedly ignoring this specific error */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 928 | if (im->pcap_drop_filter_hash |
| 929 | && hash_get (im->pcap_drop_filter_hash, b0->error)) |
| 930 | continue; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 931 | |
Benoît Ganne | 30a8195 | 2021-02-26 13:47:41 +0100 | [diff] [blame] | 932 | if (!vnet_is_packet_pcaped (pp, b0, ~0)) |
| 933 | continue; /* not matching, skip */ |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 934 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 935 | /* Trace all drops, or drops received on a specific interface */ |
Benoît Ganne | 30a8195 | 2021-02-26 13:47:41 +0100 | [diff] [blame] | 936 | save_current_data = b0->current_data; |
| 937 | save_current_length = b0->current_length; |
| 938 | |
| 939 | /* |
| 940 | * Typically, we'll need to rewind the buffer |
| 941 | * if l2_hdr_offset is valid, make sure to rewind to the start of |
| 942 | * the L2 header. This may not be the buffer start in case we pop-ed |
| 943 | * vlan tags. |
| 944 | * Otherwise, rewind to buffer start and hope for the best. |
| 945 | */ |
| 946 | if (b0->flags & VNET_BUFFER_F_L2_HDR_OFFSET_VALID) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 947 | { |
Benoît Ganne | 30a8195 | 2021-02-26 13:47:41 +0100 | [diff] [blame] | 948 | if (b0->current_data > vnet_buffer (b0)->l2_hdr_offset) |
| 949 | vlib_buffer_advance (b0, vnet_buffer (b0)->l2_hdr_offset - |
| 950 | b0->current_data); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 951 | } |
Benoît Ganne | 30a8195 | 2021-02-26 13:47:41 +0100 | [diff] [blame] | 952 | else if (b0->current_data > 0) |
| 953 | { |
| 954 | vlib_buffer_advance (b0, (word) -b0->current_data); |
| 955 | } |
| 956 | |
| 957 | { |
| 958 | vlib_buffer_t *last = b0; |
| 959 | u32 error_node_index; |
| 960 | int drop_string_len; |
| 961 | vlib_node_t *n; |
| 962 | /* Length of the error string */ |
| 963 | int error_string_len = |
| 964 | clib_strnlen (em->counters_heap[b0->error].name, 128); |
| 965 | |
| 966 | /* Dig up the drop node */ |
| 967 | error_node_index = vm->node_main.node_by_error[b0->error]; |
| 968 | n = vlib_get_node (vm, error_node_index); |
| 969 | |
| 970 | /* Length of full drop string, w/ "nodename: " prepended */ |
| 971 | drop_string_len = error_string_len + vec_len (n->name) + 2; |
| 972 | |
| 973 | /* Find the last buffer in the chain */ |
| 974 | while (last->flags & VLIB_BUFFER_NEXT_PRESENT) |
| 975 | last = vlib_get_buffer (vm, last->next_buffer); |
| 976 | |
| 977 | /* |
| 978 | * Append <nodename>: <error-string> to the capture, |
| 979 | * only if we can do that without allocating a new buffer. |
| 980 | */ |
| 981 | if (PREDICT_TRUE ((last->current_data + last->current_length) < |
| 982 | (VLIB_BUFFER_DEFAULT_DATA_SIZE - drop_string_len))) |
| 983 | { |
| 984 | clib_memcpy_fast (last->data + last->current_data + |
| 985 | last->current_length, |
| 986 | n->name, vec_len (n->name)); |
| 987 | clib_memcpy_fast (last->data + last->current_data + |
| 988 | last->current_length + vec_len (n->name), |
| 989 | ": ", 2); |
| 990 | clib_memcpy_fast (last->data + last->current_data + |
| 991 | last->current_length + vec_len (n->name) + 2, |
| 992 | em->counters_heap[b0->error].name, |
| 993 | error_string_len); |
| 994 | last->current_length += drop_string_len; |
| 995 | b0->flags &= ~(VLIB_BUFFER_TOTAL_LENGTH_VALID); |
| 996 | pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt); |
| 997 | last->current_length -= drop_string_len; |
| 998 | b0->current_data = save_current_data; |
| 999 | b0->current_length = save_current_length; |
| 1000 | continue; |
| 1001 | } |
| 1002 | } |
| 1003 | |
| 1004 | /* |
| 1005 | * Didn't have space in the last buffer, here's the dropped |
| 1006 | * packet as-is |
| 1007 | */ |
| 1008 | pcap_add_buffer (&pp->pcap_main, vm, bi0, pp->max_bytes_per_pkt); |
| 1009 | |
| 1010 | b0->current_data = save_current_data; |
| 1011 | b0->current_length = save_current_length; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1012 | } |
| 1013 | } |
| 1014 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 1015 | #ifndef CLIB_MARCH_VARIANT |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1016 | void |
| 1017 | 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] | 1018 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1019 | vnet_interface_main_t *im = &vnet_get_main ()->interface_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1020 | |
| 1021 | if (im->pcap_drop_filter_hash == 0) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1022 | im->pcap_drop_filter_hash = hash_create (0, sizeof (uword)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1023 | |
| 1024 | if (is_add) |
| 1025 | hash_set (im->pcap_drop_filter_hash, error_index, 1); |
| 1026 | else |
| 1027 | hash_unset (im->pcap_drop_filter_hash, error_index); |
| 1028 | } |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 1029 | #endif /* CLIB_MARCH_VARIANT */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1030 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 1031 | VLIB_NODE_FN (interface_drop) (vlib_main_t * vm, |
| 1032 | vlib_node_runtime_t * node, |
| 1033 | vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1034 | { |
Damjan Marion | 8fb5add | 2021-03-04 18:41:59 +0100 | [diff] [blame] | 1035 | vnet_main_t *vnm = vnet_get_main (); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1036 | vnet_interface_main_t *im = &vnet_get_main ()->interface_main; |
Damjan Marion | 8fb5add | 2021-03-04 18:41:59 +0100 | [diff] [blame] | 1037 | vnet_pcap_t *pp = &vnm->pcap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1038 | |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 1039 | if (PREDICT_FALSE (pp->pcap_drop_enable)) |
| 1040 | pcap_drop_trace (vm, im, pp, frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1041 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 1042 | return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_DROP); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 1045 | VLIB_NODE_FN (interface_punt) (vlib_main_t * vm, |
| 1046 | vlib_node_runtime_t * node, |
| 1047 | vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1048 | { |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 1049 | return interface_drop_punt (vm, node, frame, VNET_ERROR_DISPOSITION_PUNT); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1050 | } |
| 1051 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1052 | /* *INDENT-OFF* */ |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 1053 | VLIB_REGISTER_NODE (interface_drop) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1054 | .name = "error-drop", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1055 | .vector_size = sizeof (u32), |
| 1056 | .format_trace = format_vnet_error_trace, |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 1057 | .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED, |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 1058 | .n_next_nodes = 1, |
| 1059 | .next_nodes = { |
| 1060 | [0] = "drop", |
| 1061 | }, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1062 | }; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1063 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1064 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1065 | /* *INDENT-OFF* */ |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 1066 | VLIB_REGISTER_NODE (interface_punt) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1067 | .name = "error-punt", |
| 1068 | .vector_size = sizeof (u32), |
| 1069 | .format_trace = format_vnet_error_trace, |
Dave Barach | 4330c46 | 2020-06-10 17:07:32 -0400 | [diff] [blame] | 1070 | .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED, |
Neale Ranns | 22e1f1d | 2019-03-01 15:53:11 +0000 | [diff] [blame] | 1071 | .n_next_nodes = 1, |
| 1072 | .next_nodes = { |
| 1073 | [0] = "punt", |
| 1074 | }, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1075 | }; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1076 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1077 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 1078 | VLIB_REGISTER_NODE (vnet_per_buffer_interface_output_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1079 | .name = "interface-output", |
| 1080 | .vector_size = sizeof (u32), |
| 1081 | }; |
| 1082 | |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1083 | VLIB_NODE_FN (vnet_interface_output_arc_end_node) |
| 1084 | (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame) |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1085 | { |
| 1086 | vnet_main_t *vnm = vnet_get_main (); |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1087 | vnet_interface_main_t *im = &vnm->interface_main; |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 1088 | vnet_hw_if_output_node_runtime_t *r = 0; |
| 1089 | vnet_hw_interface_t *hi; |
| 1090 | vnet_hw_if_tx_frame_t *tf; |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1091 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs; |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 1092 | u32 sw_if_indices[VLIB_FRAME_SIZE], *sw_if_index = sw_if_indices; |
| 1093 | u64 used_elts[VLIB_FRAME_SIZE / 64] = {}; |
| 1094 | u64 mask[VLIB_FRAME_SIZE / 64] = {}; |
| 1095 | u32 *tmp, *from, n_left, n_free, n_comp, *to, swif, off; |
| 1096 | u16 next_index; |
| 1097 | vlib_frame_t *f; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1098 | |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1099 | from = vlib_frame_vector_args (frame); |
| 1100 | n_left = frame->n_vectors; |
| 1101 | vlib_get_buffers (vm, from, bufs, n_left); |
| 1102 | |
| 1103 | while (n_left >= 8) |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1104 | { |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1105 | vlib_prefetch_buffer_header (b[4], LOAD); |
| 1106 | vlib_prefetch_buffer_header (b[5], LOAD); |
| 1107 | vlib_prefetch_buffer_header (b[6], LOAD); |
| 1108 | vlib_prefetch_buffer_header (b[7], LOAD); |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 1109 | sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
| 1110 | sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_TX]; |
| 1111 | sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_TX]; |
| 1112 | sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_TX]; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1113 | |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1114 | b += 4; |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 1115 | sw_if_index += 4; |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1116 | n_left -= 4; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1117 | } |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1118 | |
| 1119 | while (n_left) |
| 1120 | { |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 1121 | sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_TX]; |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1122 | b++; |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 1123 | sw_if_index++; |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1124 | n_left--; |
| 1125 | } |
| 1126 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 1127 | n_left = frame->n_vectors; |
| 1128 | swif = sw_if_indices[0]; |
| 1129 | off = 0; |
| 1130 | |
| 1131 | /* a bit ugly but it allows us to reuse stack space for temporary store |
| 1132 | * which may also improve memory latency */ |
| 1133 | tmp = (u32 *) bufs; |
| 1134 | |
| 1135 | more: |
| 1136 | next_index = vec_elt (im->if_out_arc_end_next_index_by_sw_if_index, swif); |
| 1137 | hi = vnet_get_sup_hw_interface (vnm, swif); |
| 1138 | if (hi->output_node_thread_runtimes) |
| 1139 | r = vec_elt_at_index (hi->output_node_thread_runtimes, vm->thread_index); |
| 1140 | f = vlib_get_next_frame_internal (vm, node, next_index, 0); |
| 1141 | tf = vlib_frame_scalar_args (f); |
| 1142 | |
| 1143 | if (f->n_vectors > 0 && (r == 0 || r->frame.queue_id == tf->queue_id)) |
| 1144 | { |
| 1145 | /* append frame */ |
| 1146 | n_free = VLIB_FRAME_SIZE - f->n_vectors; |
| 1147 | if (n_free >= f->n_vectors) |
| 1148 | to = (u32 *) vlib_frame_vector_args (f) + f->n_vectors; |
| 1149 | else |
| 1150 | to = tmp; |
| 1151 | } |
| 1152 | else |
| 1153 | { |
| 1154 | if (f->n_vectors > 0) |
| 1155 | { |
| 1156 | /* current frame doesn't fit - grab empty one */ |
| 1157 | f = vlib_get_next_frame_internal (vm, node, next_index, 1); |
| 1158 | tf = vlib_frame_scalar_args (f); |
| 1159 | } |
| 1160 | |
| 1161 | /* empty frame - store scalar data */ |
| 1162 | store_tx_frame_scalar_data (r, tf); |
| 1163 | n_free = VLIB_FRAME_SIZE; |
| 1164 | to = vlib_frame_vector_args (f); |
| 1165 | } |
| 1166 | |
| 1167 | /* compare and compress based on comparison mask */ |
| 1168 | clib_mask_compare_u32 (swif, sw_if_indices, mask, frame->n_vectors); |
| 1169 | n_comp = clib_compress_u32 (to, from, mask, frame->n_vectors); |
| 1170 | |
| 1171 | if (tmp != to) |
| 1172 | { |
| 1173 | /* indices already written to frame, just close it */ |
| 1174 | vlib_put_next_frame (vm, node, next_index, n_free - n_comp); |
| 1175 | } |
| 1176 | else if (n_free >= n_comp) |
| 1177 | { |
| 1178 | /* enough space in the existing frame */ |
| 1179 | to = (u32 *) vlib_frame_vector_args (f) + f->n_vectors; |
| 1180 | vlib_buffer_copy_indices (to, tmp, n_comp); |
| 1181 | vlib_put_next_frame (vm, node, next_index, n_free - n_comp); |
| 1182 | } |
| 1183 | else |
| 1184 | { |
| 1185 | /* full frame */ |
| 1186 | to = (u32 *) vlib_frame_vector_args (f) + f->n_vectors; |
| 1187 | vlib_buffer_copy_indices (to, tmp, n_free); |
| 1188 | vlib_put_next_frame (vm, node, next_index, 0); |
| 1189 | |
| 1190 | /* second frame */ |
| 1191 | u32 n_frame2 = n_comp - n_free; |
| 1192 | f = vlib_get_next_frame_internal (vm, node, next_index, 1); |
| 1193 | to = vlib_frame_vector_args (f); |
| 1194 | vlib_buffer_copy_indices (to, tmp + n_free, n_frame2); |
| 1195 | tf = vlib_frame_scalar_args (f); |
| 1196 | store_tx_frame_scalar_data (r, tf); |
| 1197 | vlib_put_next_frame (vm, node, next_index, VLIB_FRAME_SIZE - n_frame2); |
| 1198 | } |
| 1199 | |
| 1200 | n_left -= n_comp; |
| 1201 | if (n_left) |
| 1202 | { |
| 1203 | /* store comparison mask so we can find next unused element */ |
| 1204 | for (int i = 0; i < ARRAY_LEN (used_elts); i++) |
| 1205 | used_elts[i] |= mask[i]; |
| 1206 | |
| 1207 | /* fine first unused sw_if_index by scanning trough used_elts bitmap */ |
| 1208 | while (PREDICT_FALSE (used_elts[off] == ~0)) |
| 1209 | off++; |
| 1210 | |
| 1211 | swif = |
| 1212 | sw_if_indices[(off << 6) + count_trailing_zeros (~used_elts[off])]; |
| 1213 | goto more; |
| 1214 | } |
| 1215 | |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1216 | return frame->n_vectors; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1217 | } |
| 1218 | |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1219 | VLIB_REGISTER_NODE (vnet_interface_output_arc_end_node) = { |
| 1220 | .name = "interface-output-arc-end", |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1221 | .vector_size = sizeof (u32), |
| 1222 | .n_next_nodes = 1, |
| 1223 | .next_nodes = { |
| 1224 | [0] = "error-drop", |
| 1225 | }, |
| 1226 | }; |
| 1227 | |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1228 | VNET_FEATURE_ARC_INIT (interface_output, static) = { |
| 1229 | .arc_name = "interface-output", |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1230 | .start_nodes = VNET_FEATURES (0), |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1231 | .last_in_arc = "interface-output-arc-end", |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1232 | .arc_index_ptr = &vnet_main.interface_main.output_feature_arc_index, |
| 1233 | }; |
| 1234 | |
Pavel Kotucek | 3a2a1c4 | 2016-12-06 10:10:10 +0100 | [diff] [blame] | 1235 | VNET_FEATURE_INIT (span_tx, static) = { |
| 1236 | .arc_name = "interface-output", |
| 1237 | .node_name = "span-output", |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1238 | .runs_before = VNET_FEATURES ("interface-output-arc-end"), |
Pavel Kotucek | 3a2a1c4 | 2016-12-06 10:10:10 +0100 | [diff] [blame] | 1239 | }; |
| 1240 | |
Matthew Smith | 537eeec | 2018-04-09 11:49:20 -0500 | [diff] [blame] | 1241 | VNET_FEATURE_INIT (ipsec_if_tx, static) = { |
| 1242 | .arc_name = "interface-output", |
| 1243 | .node_name = "ipsec-if-output", |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1244 | .runs_before = VNET_FEATURES ("interface-output-arc-end"), |
Matthew Smith | 537eeec | 2018-04-09 11:49:20 -0500 | [diff] [blame] | 1245 | }; |
| 1246 | |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1247 | VNET_FEATURE_INIT (interface_output_arc_end, static) = { |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1248 | .arc_name = "interface-output", |
Damjan Marion | 8932e45 | 2021-04-16 11:49:26 +0200 | [diff] [blame] | 1249 | .node_name = "interface-output-arc-end", |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1250 | .runs_before = 0, |
| 1251 | }; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 1252 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 1253 | #ifndef CLIB_MARCH_VARIANT |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1254 | clib_error_t * |
| 1255 | vnet_per_buffer_interface_output_hw_interface_add_del (vnet_main_t * vnm, |
| 1256 | u32 hw_if_index, |
| 1257 | u32 is_create) |
| 1258 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1259 | 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] | 1260 | u32 next_index; |
| 1261 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1262 | if (hi->output_node_index == 0) |
| 1263 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1264 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1265 | next_index = vlib_node_add_next |
| 1266 | (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, |
| 1267 | hi->output_node_index); |
| 1268 | hi->output_node_next_index = next_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1269 | |
| 1270 | return 0; |
| 1271 | } |
| 1272 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1273 | VNET_HW_INTERFACE_ADD_DEL_FUNCTION |
| 1274 | (vnet_per_buffer_interface_output_hw_interface_add_del); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1275 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1276 | void |
| 1277 | vnet_set_interface_output_node (vnet_main_t * vnm, |
| 1278 | u32 hw_if_index, u32 node_index) |
| 1279 | { |
| 1280 | ASSERT (node_index); |
| 1281 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 1282 | u32 next_index = vlib_node_add_next |
| 1283 | (vnm->vlib_main, vnet_per_buffer_interface_output_node.index, node_index); |
| 1284 | hi->output_node_next_index = next_index; |
| 1285 | hi->output_node_index = node_index; |
| 1286 | } |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 1287 | #endif /* CLIB_MARCH_VARIANT */ |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1288 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1289 | /* |
| 1290 | * fd.io coding-style-patch-verification: ON |
| 1291 | * |
| 1292 | * Local Variables: |
| 1293 | * eval: (c-set-style "gnu") |
| 1294 | * End: |
| 1295 | */ |