Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * l2_fwd.c : layer 2 forwarding using l2fib |
| 3 | * |
| 4 | * Copyright (c) 2013 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <vlib/vlib.h> |
| 19 | #include <vnet/vnet.h> |
| 20 | #include <vnet/pg/pg.h> |
| 21 | #include <vnet/ethernet/ethernet.h> |
| 22 | #include <vlib/cli.h> |
| 23 | |
| 24 | #include <vnet/l2/l2_input.h> |
| 25 | #include <vnet/l2/l2_bvi.h> |
| 26 | #include <vnet/l2/l2_fwd.h> |
| 27 | #include <vnet/l2/l2_fib.h> |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 28 | #include <vnet/l2/feat_bitmap.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 29 | |
| 30 | #include <vppinfra/error.h> |
| 31 | #include <vppinfra/hash.h> |
| 32 | #include <vppinfra/sparse_vec.h> |
| 33 | |
| 34 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 35 | /** |
| 36 | * @file |
| 37 | * @brief Ethernet Forwarding. |
| 38 | * |
| 39 | * Code in this file handles forwarding Layer 2 packets. This file calls |
| 40 | * the FIB lookup, packet learning and the packet flooding as necessary. |
| 41 | * Packet is then sent to the next graph node. |
| 42 | */ |
| 43 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 44 | typedef struct |
| 45 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 47 | /* Hash table */ |
| 48 | BVT (clib_bihash) * mac_table; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 50 | /* next node index for the L3 input node of each ethertype */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | next_by_ethertype_t l3_next; |
| 52 | |
John Lo | 9a71929 | 2018-04-05 14:52:07 -0400 | [diff] [blame] | 53 | /* Next nodes for each feature */ |
| 54 | u32 feat_next_node_index[32]; |
| 55 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | /* convenience variables */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 57 | vlib_main_t *vlib_main; |
| 58 | vnet_main_t *vnet_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | } l2fwd_main_t; |
| 60 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 61 | typedef struct |
| 62 | { |
| 63 | /* per-pkt trace data */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | u8 dst[6]; |
Zhiyong Yang | ba6deb9 | 2020-04-23 15:21:30 +0000 | [diff] [blame^] | 65 | u8 src[6]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | u32 sw_if_index; |
| 67 | u16 bd_index; |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 68 | l2fib_entry_result_t result; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | } l2fwd_trace_t; |
| 70 | |
| 71 | /* packet trace format function */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 72 | static u8 * |
| 73 | format_l2fwd_trace (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 74 | { |
| 75 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 76 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 77 | l2fwd_trace_t *t = va_arg (*args, l2fwd_trace_t *); |
| 78 | |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 79 | s = |
| 80 | format (s, |
| 81 | "l2-fwd: sw_if_index %d dst %U src %U bd_index %d result [0x%llx, %d] %U", |
| 82 | t->sw_if_index, format_ethernet_address, t->dst, |
| 83 | format_ethernet_address, t->src, t->bd_index, t->result.raw, |
| 84 | t->result.fields.sw_if_index, format_l2fib_entry_result_flags, |
| 85 | t->result.fields.flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 86 | return s; |
| 87 | } |
| 88 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 89 | #ifndef CLIB_MARCH_VARIANT |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 90 | l2fwd_main_t l2fwd_main; |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 91 | #else |
| 92 | extern l2fwd_main_t l2fwd_main; |
| 93 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 94 | |
Damjan Marion | d770cfc | 2019-09-02 19:00:33 +0200 | [diff] [blame] | 95 | extern vlib_node_registration_t l2fwd_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | |
| 97 | #define foreach_l2fwd_error \ |
| 98 | _(L2FWD, "L2 forward packets") \ |
| 99 | _(FLOOD, "L2 forward misses") \ |
| 100 | _(HIT, "L2 forward hits") \ |
John Lo | 7185c3b | 2016-06-04 00:02:37 -0400 | [diff] [blame] | 101 | _(BVI_BAD_MAC, "BVI L3 MAC mismatch") \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 102 | _(BVI_ETHERTYPE, "BVI packet with unhandled ethertype") \ |
| 103 | _(FILTER_DROP, "Filter Mac Drop") \ |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 104 | _(REFLECT_DROP, "Reflection Drop") \ |
| 105 | _(STALE_DROP, "Stale entry Drop") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 106 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 107 | typedef enum |
| 108 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | #define _(sym,str) L2FWD_ERROR_##sym, |
| 110 | foreach_l2fwd_error |
| 111 | #undef _ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 112 | L2FWD_N_ERROR, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 113 | } l2fwd_error_t; |
| 114 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 115 | static char *l2fwd_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 116 | #define _(sym,string) string, |
| 117 | foreach_l2fwd_error |
| 118 | #undef _ |
| 119 | }; |
| 120 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 121 | typedef enum |
| 122 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | L2FWD_NEXT_L2_OUTPUT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 124 | L2FWD_NEXT_DROP, |
| 125 | L2FWD_N_NEXT, |
| 126 | } l2fwd_next_t; |
| 127 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 128 | /** Forward one packet based on the mac table lookup result. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 129 | |
| 130 | static_always_inline void |
| 131 | l2fwd_process (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 132 | vlib_node_runtime_t * node, |
| 133 | l2fwd_main_t * msm, |
| 134 | vlib_error_main_t * em, |
| 135 | vlib_buffer_t * b0, |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 136 | u32 sw_if_index0, l2fib_entry_result_t * result0, u16 * next0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 137 | { |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 138 | int try_flood = result0->raw == ~0; |
| 139 | int flood_error; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 140 | |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 141 | if (PREDICT_FALSE (try_flood)) |
| 142 | { |
| 143 | flood_error = L2FWD_ERROR_FLOOD; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 144 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 145 | else |
| 146 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 147 | /* lookup hit, forward packet */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | #ifdef COUNTERS |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 149 | em->counters[node_counter_base_index + L2FWD_ERROR_HIT] += 1; |
| 150 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 152 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = result0->fields.sw_if_index; |
| 153 | *next0 = L2FWD_NEXT_L2_OUTPUT; |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 154 | int l2fib_seq_num_valid = 1; |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 155 | |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 156 | /* check l2fib seq num for stale entries */ |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 157 | if (!l2fib_entry_result_is_set_AGE_NOT (result0)) |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 158 | { |
| 159 | l2fib_seq_num_t in_sn = {.as_u16 = vnet_buffer (b0)->l2.l2fib_sn }; |
| 160 | l2fib_seq_num_t expected_sn = { |
| 161 | .bd = in_sn.bd, |
| 162 | .swif = *l2fib_swif_seq_num (result0->fields.sw_if_index), |
| 163 | }; |
| 164 | l2fib_seq_num_valid = |
| 165 | expected_sn.as_u16 == result0->fields.sn.as_u16; |
| 166 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 168 | if (PREDICT_FALSE (!l2fib_seq_num_valid)) |
| 169 | { |
| 170 | flood_error = L2FWD_ERROR_STALE_DROP; |
| 171 | try_flood = 1; |
| 172 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 173 | /* perform reflection check */ |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 174 | else if (PREDICT_FALSE (sw_if_index0 == result0->fields.sw_if_index)) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 175 | { |
| 176 | b0->error = node->errors[L2FWD_ERROR_REFLECT_DROP]; |
| 177 | *next0 = L2FWD_NEXT_DROP; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 178 | } |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 179 | /* perform filter check */ |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 180 | else if (PREDICT_FALSE (l2fib_entry_result_is_set_FILTER (result0))) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 181 | { |
| 182 | b0->error = node->errors[L2FWD_ERROR_FILTER_DROP]; |
| 183 | *next0 = L2FWD_NEXT_DROP; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 184 | } |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 185 | /* perform BVI check */ |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 186 | else if (PREDICT_FALSE (l2fib_entry_result_is_set_BVI (result0))) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 187 | { |
| 188 | u32 rc; |
| 189 | rc = l2_to_bvi (vm, |
| 190 | msm->vnet_main, |
| 191 | b0, |
| 192 | vnet_buffer (b0)->sw_if_index[VLIB_TX], |
| 193 | &msm->l3_next, next0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 194 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 195 | if (PREDICT_FALSE (rc)) |
| 196 | { |
| 197 | if (rc == TO_BVI_ERR_BAD_MAC) |
| 198 | { |
| 199 | b0->error = node->errors[L2FWD_ERROR_BVI_BAD_MAC]; |
| 200 | *next0 = L2FWD_NEXT_DROP; |
| 201 | } |
| 202 | else if (rc == TO_BVI_ERR_ETHERTYPE) |
| 203 | { |
| 204 | b0->error = node->errors[L2FWD_ERROR_BVI_ETHERTYPE]; |
| 205 | *next0 = L2FWD_NEXT_DROP; |
| 206 | } |
| 207 | } |
| 208 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | } |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 210 | |
| 211 | /* flood */ |
| 212 | if (PREDICT_FALSE (try_flood)) |
| 213 | { |
| 214 | /* |
John Lo | 9a71929 | 2018-04-05 14:52:07 -0400 | [diff] [blame] | 215 | * lookup miss, so flood which is typically the next feature |
| 216 | * unless some other feature is inserted before uu_flood |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 217 | */ |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame] | 218 | if (vnet_buffer (b0)->l2.feature_bitmap & |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 219 | (L2INPUT_FEAT_UU_FLOOD | |
| 220 | L2INPUT_FEAT_UU_FWD | L2INPUT_FEAT_GBP_FWD)) |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 221 | { |
John Lo | 9a71929 | 2018-04-05 14:52:07 -0400 | [diff] [blame] | 222 | *next0 = vnet_l2_feature_next (b0, msm->feat_next_node_index, |
| 223 | L2INPUT_FEAT_FWD); |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 224 | } |
| 225 | else |
| 226 | { |
| 227 | /* Flooding is disabled */ |
| 228 | b0->error = node->errors[flood_error]; |
| 229 | *next0 = L2FWD_NEXT_DROP; |
| 230 | } |
| 231 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | |
Dave Barach | 681abe4 | 2017-02-15 09:01:01 -0500 | [diff] [blame] | 235 | static_always_inline uword |
| 236 | l2fwd_node_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 237 | vlib_frame_t * frame, int do_trace) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 238 | { |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 239 | u32 n_left, *from; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 240 | l2fwd_main_t *msm = &l2fwd_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 241 | vlib_node_t *n = vlib_get_node (vm, l2fwd_node.index); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 242 | CLIB_UNUSED (u32 node_counter_base_index) = n->error_heap_index; |
| 243 | vlib_error_main_t *em = &vm->error_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 244 | l2fib_entry_key_t cached_key; |
| 245 | l2fib_entry_result_t cached_result; |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 246 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 247 | u16 nexts[VLIB_FRAME_SIZE], *next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 249 | /* Clear the one-entry cache in case mac table was updated */ |
| 250 | cached_key.raw = ~0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 251 | cached_result.raw = ~0; |
| 252 | |
| 253 | from = vlib_frame_vector_args (frame); |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 254 | n_left = frame->n_vectors; /* number of packets to process */ |
| 255 | vlib_get_buffers (vm, from, bufs, n_left); |
| 256 | next = nexts; |
| 257 | b = bufs; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 258 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 259 | while (n_left >= 8) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 260 | { |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 261 | u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3; |
| 262 | const ethernet_header_t *h0, *h1, *h2, *h3; |
| 263 | l2fib_entry_key_t key0, key1, key2, key3; |
| 264 | l2fib_entry_result_t result0, result1, result2, result3; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 265 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 266 | /* Prefetch next iteration. */ |
| 267 | { |
| 268 | vlib_prefetch_buffer_header (b[4], LOAD); |
| 269 | vlib_prefetch_buffer_header (b[5], LOAD); |
| 270 | vlib_prefetch_buffer_header (b[6], LOAD); |
| 271 | vlib_prefetch_buffer_header (b[7], LOAD); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 272 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 273 | CLIB_PREFETCH (b[4]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 274 | CLIB_PREFETCH (b[5]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 275 | CLIB_PREFETCH (b[6]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 276 | CLIB_PREFETCH (b[7]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 277 | } |
| 278 | |
| 279 | /* RX interface handles */ |
| 280 | sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 281 | sw_if_index1 = vnet_buffer (b[1])->sw_if_index[VLIB_RX]; |
| 282 | sw_if_index2 = vnet_buffer (b[2])->sw_if_index[VLIB_RX]; |
| 283 | sw_if_index3 = vnet_buffer (b[3])->sw_if_index[VLIB_RX]; |
| 284 | |
| 285 | h0 = vlib_buffer_get_current (b[0]); |
| 286 | h1 = vlib_buffer_get_current (b[1]); |
| 287 | h2 = vlib_buffer_get_current (b[2]); |
| 288 | h3 = vlib_buffer_get_current (b[3]); |
| 289 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 290 | #ifdef COUNTERS |
| 291 | em->counters[node_counter_base_index + L2FWD_ERROR_L2FWD] += 4; |
| 292 | #endif |
| 293 | /* *INDENT-OFF* */ |
| 294 | l2fib_lookup_4 (msm->mac_table, &cached_key, &cached_result, |
| 295 | h0->dst_address, h1->dst_address, |
| 296 | h2->dst_address, h3->dst_address, |
| 297 | vnet_buffer (b[0])->l2.bd_index, |
| 298 | vnet_buffer (b[1])->l2.bd_index, |
| 299 | vnet_buffer (b[2])->l2.bd_index, |
| 300 | vnet_buffer (b[3])->l2.bd_index, |
| 301 | &key0, /* not used */ |
| 302 | &key1, /* not used */ |
| 303 | &key2, /* not used */ |
| 304 | &key3, /* not used */ |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 305 | &result0, |
| 306 | &result1, |
| 307 | &result2, |
| 308 | &result3); |
| 309 | /* *INDENT-ON* */ |
| 310 | l2fwd_process (vm, node, msm, em, b[0], sw_if_index0, &result0, next); |
| 311 | l2fwd_process (vm, node, msm, em, b[1], sw_if_index1, &result1, |
| 312 | next + 1); |
| 313 | l2fwd_process (vm, node, msm, em, b[2], sw_if_index2, &result2, |
| 314 | next + 2); |
| 315 | l2fwd_process (vm, node, msm, em, b[3], sw_if_index3, &result3, |
| 316 | next + 3); |
| 317 | |
| 318 | /* verify speculative enqueues, maybe switch current next frame */ |
| 319 | /* if next0==next1==next_index then nothing special needs to be done */ |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 320 | if (do_trace) |
| 321 | { |
| 322 | if (b[0]->flags & VLIB_BUFFER_IS_TRACED) |
| 323 | { |
| 324 | l2fwd_trace_t *t = vlib_add_trace (vm, node, b[0], sizeof (*t)); |
| 325 | t->sw_if_index = sw_if_index0; |
| 326 | t->bd_index = vnet_buffer (b[0])->l2.bd_index; |
Zhiyong Yang | ba6deb9 | 2020-04-23 15:21:30 +0000 | [diff] [blame^] | 327 | clib_memcpy_fast (t->dst, h0->dst_address, |
| 328 | sizeof (h0->dst_address) + |
| 329 | sizeof (h0->src_address)); |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 330 | t->result = result0; |
| 331 | } |
| 332 | if (b[1]->flags & VLIB_BUFFER_IS_TRACED) |
| 333 | { |
| 334 | l2fwd_trace_t *t = vlib_add_trace (vm, node, b[1], sizeof (*t)); |
| 335 | t->sw_if_index = sw_if_index1; |
| 336 | t->bd_index = vnet_buffer (b[1])->l2.bd_index; |
Zhiyong Yang | ba6deb9 | 2020-04-23 15:21:30 +0000 | [diff] [blame^] | 337 | clib_memcpy_fast (t->dst, h1->dst_address, |
| 338 | sizeof (h1->dst_address) + |
| 339 | sizeof (h1->src_address)); |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 340 | t->result = result1; |
| 341 | } |
| 342 | if (b[2]->flags & VLIB_BUFFER_IS_TRACED) |
| 343 | { |
| 344 | l2fwd_trace_t *t = vlib_add_trace (vm, node, b[2], sizeof (*t)); |
| 345 | t->sw_if_index = sw_if_index2; |
| 346 | t->bd_index = vnet_buffer (b[2])->l2.bd_index; |
Zhiyong Yang | ba6deb9 | 2020-04-23 15:21:30 +0000 | [diff] [blame^] | 347 | clib_memcpy_fast (t->dst, h2->dst_address, |
| 348 | sizeof (h2->dst_address) + |
| 349 | sizeof (h2->src_address)); |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 350 | t->result = result2; |
| 351 | } |
| 352 | if (b[3]->flags & VLIB_BUFFER_IS_TRACED) |
| 353 | { |
| 354 | l2fwd_trace_t *t = vlib_add_trace (vm, node, b[3], sizeof (*t)); |
| 355 | t->sw_if_index = sw_if_index3; |
| 356 | t->bd_index = vnet_buffer (b[3])->l2.bd_index; |
Zhiyong Yang | ba6deb9 | 2020-04-23 15:21:30 +0000 | [diff] [blame^] | 357 | clib_memcpy_fast (t->dst, h3->dst_address, |
| 358 | sizeof (h3->dst_address) + |
| 359 | sizeof (h3->src_address)); |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 360 | t->result = result3; |
| 361 | } |
| 362 | } |
| 363 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 364 | next += 4; |
| 365 | b += 4; |
| 366 | n_left -= 4; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | } |
| 368 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 369 | while (n_left > 0) |
| 370 | { |
| 371 | u32 sw_if_index0; |
| 372 | ethernet_header_t *h0; |
| 373 | l2fib_entry_key_t key0; |
| 374 | l2fib_entry_result_t result0; |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 375 | |
| 376 | sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_RX]; |
| 377 | |
| 378 | h0 = vlib_buffer_get_current (b[0]); |
| 379 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 380 | /* process 1 pkt */ |
| 381 | #ifdef COUNTERS |
| 382 | em->counters[node_counter_base_index + L2FWD_ERROR_L2FWD] += 1; |
| 383 | #endif |
Eyal Bari | 11d47af | 2018-10-31 10:55:33 +0200 | [diff] [blame] | 384 | l2fib_lookup_1 (msm->mac_table, &cached_key, &cached_result, |
| 385 | h0->dst_address, vnet_buffer (b[0])->l2.bd_index, &key0, |
| 386 | /* not used */ &result0); |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 387 | l2fwd_process (vm, node, msm, em, b[0], sw_if_index0, &result0, next); |
| 388 | |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 389 | if (do_trace && PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED)) |
| 390 | { |
| 391 | l2fwd_trace_t *t = vlib_add_trace (vm, node, b[0], sizeof (*t)); |
| 392 | t->sw_if_index = sw_if_index0; |
| 393 | t->bd_index = vnet_buffer (b[0])->l2.bd_index; |
Zhiyong Yang | ba6deb9 | 2020-04-23 15:21:30 +0000 | [diff] [blame^] | 394 | clib_memcpy_fast (t->dst, h0->dst_address, |
| 395 | sizeof (h0->dst_address) + |
| 396 | sizeof (h0->src_address)); |
Neale Ranns | 7d645f7 | 2018-10-24 02:25:06 -0700 | [diff] [blame] | 397 | t->result = result0; |
| 398 | } |
| 399 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 400 | /* verify speculative enqueue, maybe switch current next frame */ |
| 401 | next += 1; |
| 402 | b += 1; |
| 403 | n_left -= 1; |
| 404 | } |
| 405 | |
| 406 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
| 407 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 408 | return frame->n_vectors; |
| 409 | } |
| 410 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 411 | VLIB_NODE_FN (l2fwd_node) (vlib_main_t * vm, |
| 412 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Dave Barach | 681abe4 | 2017-02-15 09:01:01 -0500 | [diff] [blame] | 413 | { |
| 414 | if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE))) |
| 415 | return l2fwd_node_inline (vm, node, frame, 1 /* do_trace */ ); |
| 416 | return l2fwd_node_inline (vm, node, frame, 0 /* do_trace */ ); |
| 417 | } |
| 418 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 419 | /* *INDENT-OFF* */ |
Damjan Marion | d770cfc | 2019-09-02 19:00:33 +0200 | [diff] [blame] | 420 | VLIB_REGISTER_NODE (l2fwd_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 421 | .name = "l2-fwd", |
| 422 | .vector_size = sizeof (u32), |
| 423 | .format_trace = format_l2fwd_trace, |
| 424 | .type = VLIB_NODE_TYPE_INTERNAL, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 425 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 426 | .n_errors = ARRAY_LEN(l2fwd_error_strings), |
| 427 | .error_strings = l2fwd_error_strings, |
| 428 | |
| 429 | .n_next_nodes = L2FWD_N_NEXT, |
| 430 | |
| 431 | /* edit / add dispositions here */ |
| 432 | .next_nodes = { |
| 433 | [L2FWD_NEXT_L2_OUTPUT] = "l2-output", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 434 | [L2FWD_NEXT_DROP] = "error-drop", |
| 435 | }, |
| 436 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 437 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 438 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 439 | #ifndef CLIB_MARCH_VARIANT |
| 440 | clib_error_t * |
| 441 | l2fwd_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 442 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 443 | l2fwd_main_t *mp = &l2fwd_main; |
| 444 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 445 | mp->vlib_main = vm; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 446 | mp->vnet_main = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 447 | |
John Lo | 9a71929 | 2018-04-05 14:52:07 -0400 | [diff] [blame] | 448 | /* Initialize the feature next-node indexes */ |
| 449 | feat_bitmap_init_next_nodes (vm, |
| 450 | l2fwd_node.index, |
| 451 | L2INPUT_N_FEAT, |
| 452 | l2input_get_feat_names (), |
| 453 | mp->feat_next_node_index); |
| 454 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 455 | /* init the hash table ptr */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 456 | mp->mac_table = get_mac_table (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 457 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 458 | /* Initialize the next nodes for each ethertype */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 459 | next_by_ethertype_init (&mp->l3_next); |
| 460 | |
| 461 | return 0; |
| 462 | } |
| 463 | |
| 464 | VLIB_INIT_FUNCTION (l2fwd_init); |
| 465 | |
| 466 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 467 | /** Add the L3 input node for this ethertype to the next nodes structure. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 468 | void |
| 469 | l2fwd_register_input_type (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 470 | ethernet_type_t type, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 471 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 472 | l2fwd_main_t *mp = &l2fwd_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 473 | u32 next_index; |
| 474 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 475 | next_index = vlib_node_add_next (vm, l2fwd_node.index, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 476 | |
| 477 | next_by_ethertype_register (&mp->l3_next, type, next_index); |
| 478 | } |
| 479 | |
| 480 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 481 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 482 | * Set subinterface forward enable/disable. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 483 | * The CLI format is: |
| 484 | * set interface l2 forward <interface> [disable] |
| 485 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 486 | static clib_error_t * |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 487 | int_fwd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 488 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 489 | vnet_main_t *vnm = vnet_get_main (); |
| 490 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 491 | u32 sw_if_index; |
| 492 | u32 enable; |
| 493 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 494 | if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 495 | { |
| 496 | error = clib_error_return (0, "unknown interface `%U'", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 497 | format_unformat_error, input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 498 | goto done; |
| 499 | } |
| 500 | |
| 501 | enable = 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 502 | if (unformat (input, "disable")) |
| 503 | { |
| 504 | enable = 0; |
| 505 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 506 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 507 | /* set the interface flag */ |
| 508 | if (l2input_intf_config (sw_if_index)->xconnect) |
| 509 | { |
| 510 | l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_XCONNECT, enable); |
| 511 | } |
| 512 | else |
| 513 | { |
| 514 | l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_FWD, enable); |
| 515 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 516 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 517 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 518 | return error; |
| 519 | } |
| 520 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 521 | /*? |
| 522 | * Layer 2 unicast forwarding can be enabled and disabled on each |
| 523 | * interface and on each bridge-domain. Use this command to |
| 524 | * manage interfaces. It is enabled by default. |
| 525 | * |
| 526 | * @cliexpar |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 527 | * Example of how to enable forwarding: |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 528 | * @cliexcmd{set interface l2 forward GigabitEthernet0/8/0} |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 529 | * Example of how to disable forwarding: |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 530 | * @cliexcmd{set interface l2 forward GigabitEthernet0/8/0 disable} |
| 531 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 532 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 533 | VLIB_CLI_COMMAND (int_fwd_cli, static) = { |
| 534 | .path = "set interface l2 forward", |
| 535 | .short_help = "set interface l2 forward <interface> [disable]", |
| 536 | .function = int_fwd, |
| 537 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 538 | /* *INDENT-ON* */ |
| 539 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 540 | #endif |
| 541 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 542 | /* |
| 543 | * fd.io coding-style-patch-verification: ON |
| 544 | * |
| 545 | * Local Variables: |
| 546 | * eval: (c-set-style "gnu") |
| 547 | * End: |
| 548 | */ |