Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * l2_learn.c : layer 2 learning 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/feat_bitmap.h> |
| 26 | #include <vnet/l2/l2_fib.h> |
| 27 | #include <vnet/l2/l2_learn.h> |
| 28 | |
| 29 | #include <vppinfra/error.h> |
| 30 | #include <vppinfra/hash.h> |
| 31 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 32 | l2learn_main_t l2learn_main; |
| 33 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 34 | /** |
| 35 | * @file |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 36 | * @brief Ethernet Bridge Learning. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 37 | * |
| 38 | * Populate the mac table with entries mapping the packet's source mac + bridge |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 39 | * domain ID to the input sw_if_index. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 40 | * |
| 41 | * Note that learning and forwarding are separate graph nodes. This means that |
| 42 | * for a set of packets, all learning is performed first, then all nodes are |
| 43 | * forwarded. The forwarding is done based on the end-state of the mac table, |
| 44 | * instead of the state after each packet. Thus the forwarding results could |
| 45 | * differ in certain cases (mac move tests), but this not expected to cause |
| 46 | * problems in real-world networks. It is much simpler to separate learning |
| 47 | * and forwarding into separate nodes. |
| 48 | */ |
| 49 | |
| 50 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 51 | typedef struct |
| 52 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | u8 src[6]; |
| 54 | u8 dst[6]; |
| 55 | u32 sw_if_index; |
| 56 | u16 bd_index; |
| 57 | } l2learn_trace_t; |
| 58 | |
| 59 | |
| 60 | /* packet trace format function */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 61 | static u8 * |
| 62 | format_l2learn_trace (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 63 | { |
| 64 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 65 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 66 | l2learn_trace_t *t = va_arg (*args, l2learn_trace_t *); |
| 67 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | s = format (s, "l2-learn: sw_if_index %d dst %U src %U bd_index %d", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 69 | t->sw_if_index, |
| 70 | format_ethernet_address, t->dst, |
| 71 | format_ethernet_address, t->src, t->bd_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 72 | return s; |
| 73 | } |
| 74 | |
| 75 | static vlib_node_registration_t l2learn_node; |
| 76 | |
| 77 | #define foreach_l2learn_error \ |
| 78 | _(L2LEARN, "L2 learn packets") \ |
| 79 | _(MISS, "L2 learn misses") \ |
| 80 | _(MAC_MOVE, "L2 mac moves") \ |
| 81 | _(MAC_MOVE_VIOLATE, "L2 mac move violations") \ |
| 82 | _(LIMIT, "L2 not learned due to limit") \ |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 83 | _(HIT_UPDATE, "L2 learn hit updates") \ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 84 | _(FILTER_DROP, "L2 filter mac drops") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 85 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 86 | typedef enum |
| 87 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 88 | #define _(sym,str) L2LEARN_ERROR_##sym, |
| 89 | foreach_l2learn_error |
| 90 | #undef _ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 91 | L2LEARN_N_ERROR, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | } l2learn_error_t; |
| 93 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 94 | static char *l2learn_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | #define _(sym,string) string, |
| 96 | foreach_l2learn_error |
| 97 | #undef _ |
| 98 | }; |
| 99 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 100 | typedef enum |
| 101 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 102 | L2LEARN_NEXT_L2FWD, |
| 103 | L2LEARN_NEXT_DROP, |
| 104 | L2LEARN_N_NEXT, |
| 105 | } l2learn_next_t; |
| 106 | |
| 107 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 108 | /** Perform learning on one packet based on the mac table lookup result. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | |
| 110 | static_always_inline void |
| 111 | l2learn_process (vlib_node_runtime_t * node, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 112 | l2learn_main_t * msm, |
| 113 | u64 * counter_base, |
| 114 | vlib_buffer_t * b0, |
| 115 | u32 sw_if_index0, |
| 116 | l2fib_entry_key_t * key0, |
| 117 | l2fib_entry_key_t * cached_key, |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 118 | u32 * count, |
Damjan Marion | d171d48 | 2016-12-05 14:16:38 +0100 | [diff] [blame] | 119 | l2fib_entry_result_t * result0, u32 * next0, u8 timestamp) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 120 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 121 | /* Set up the default next node (typically L2FWD) */ |
John Lo | beb0b2e | 2017-07-22 00:21:36 -0400 | [diff] [blame] | 122 | *next0 = vnet_l2_feature_next (b0, msm->feat_next_node_index, |
| 123 | L2INPUT_FEAT_LEARN); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 124 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 125 | /* Check mac table lookup result */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 126 | if (PREDICT_TRUE (result0->fields.sw_if_index == sw_if_index0)) |
| 127 | { |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 128 | /* Entry in L2FIB with matching sw_if_index matched - normal fast path */ |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 129 | u32 dtime = timestamp - result0->fields.timestamp; |
| 130 | u32 dsn = result0->fields.sn.as_u16 - vnet_buffer (b0)->l2.l2fib_sn; |
John Lo | 5a6508d | 2017-10-03 13:13:47 -0400 | [diff] [blame] | 131 | u32 check = (dtime && vnet_buffer (b0)->l2.bd_age) || dsn; |
Eyal Bari | 31a71ab | 2017-06-25 14:42:33 +0300 | [diff] [blame] | 132 | |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 133 | if (PREDICT_TRUE (check == 0)) |
| 134 | return; /* MAC entry up to date */ |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 135 | if (l2fib_entry_result_is_set_AGE_NOT (result0)) |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 136 | return; /* Static MAC always age_not */ |
| 137 | if (msm->global_learn_count > msm->global_learn_limit) |
John Lo | e531f4c | 2017-08-22 09:16:50 -0400 | [diff] [blame] | 138 | return; /* Above learn limit - do not update */ |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 139 | |
| 140 | /* Limit updates per l2-learn node call to avoid prolonged update burst |
John Lo | 5a6508d | 2017-10-03 13:13:47 -0400 | [diff] [blame] | 141 | * as dtime advance over 1 minute mark, unless more than 1 min behind |
| 142 | * or SN obsolete */ |
| 143 | if ((*count > 2) && (dtime == 1) && (dsn == 0)) |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 144 | return; |
| 145 | |
| 146 | counter_base[L2LEARN_ERROR_HIT_UPDATE] += 1; |
| 147 | *count += 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 148 | } |
| 149 | else if (result0->raw == ~0) |
| 150 | { |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 151 | /* Entry not in L2FIB - add it */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 152 | counter_base[L2LEARN_ERROR_MISS] += 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 153 | |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 154 | if (msm->global_learn_count >= msm->global_learn_limit) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 155 | { |
| 156 | /* |
| 157 | * Global limit reached. Do not learn the mac but forward the packet. |
| 158 | * In the future, limits could also be per-interface or bridge-domain. |
| 159 | */ |
| 160 | counter_base[L2LEARN_ERROR_LIMIT] += 1; |
Eyal Bari | 31a71ab | 2017-06-25 14:42:33 +0300 | [diff] [blame] | 161 | return; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 162 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 163 | |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 164 | /* Do not learn if mac is 0 */ |
| 165 | l2fib_entry_key_t key = *key0; |
| 166 | key.fields.bd_index = 0; |
| 167 | if (key.raw == 0) |
| 168 | return; |
| 169 | |
Eyal Bari | 31a71ab | 2017-06-25 14:42:33 +0300 | [diff] [blame] | 170 | /* It is ok to learn */ |
| 171 | msm->global_learn_count++; |
| 172 | result0->raw = 0; /* clear all fields */ |
| 173 | result0->fields.sw_if_index = sw_if_index0; |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 174 | if (msm->client_pid != 0) |
| 175 | l2fib_entry_result_set_LRN_EVT (result0); |
| 176 | else |
| 177 | l2fib_entry_result_clear_LRN_EVT (result0); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 178 | } |
| 179 | else |
| 180 | { |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 181 | /* Entry in L2FIB with different sw_if_index - mac move or filter */ |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 182 | if (l2fib_entry_result_is_set_FILTER (result0)) |
Eyal Bari | 31a71ab | 2017-06-25 14:42:33 +0300 | [diff] [blame] | 183 | { |
| 184 | ASSERT (result0->fields.sw_if_index == ~0); |
| 185 | /* drop packet because lookup matched a filter mac entry */ |
| 186 | b0->error = node->errors[L2LEARN_ERROR_FILTER_DROP]; |
| 187 | *next0 = L2LEARN_NEXT_DROP; |
| 188 | return; |
| 189 | } |
| 190 | |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 191 | if (l2fib_entry_result_is_set_STATIC (result0)) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 192 | { |
| 193 | /* |
| 194 | * Don't overwrite a static mac |
| 195 | * TODO: Check violation policy. For now drop the packet |
| 196 | */ |
| 197 | b0->error = node->errors[L2LEARN_ERROR_MAC_MOVE_VIOLATE]; |
| 198 | *next0 = L2LEARN_NEXT_DROP; |
Eyal Bari | 31a71ab | 2017-06-25 14:42:33 +0300 | [diff] [blame] | 199 | return; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 200 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 201 | |
Eyal Bari | 31a71ab | 2017-06-25 14:42:33 +0300 | [diff] [blame] | 202 | /* |
| 203 | * TODO: may want to rate limit mac moves |
| 204 | * TODO: check global/bridge domain/interface learn limits |
| 205 | */ |
| 206 | result0->fields.sw_if_index = sw_if_index0; |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 207 | if (l2fib_entry_result_is_set_AGE_NOT (result0)) |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 208 | { |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 209 | /* The mac was provisioned */ |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 210 | msm->global_learn_count++; |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 211 | l2fib_entry_result_clear_AGE_NOT (result0); |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 212 | } |
Neale Ranns | b54d081 | 2018-09-06 06:22:56 -0700 | [diff] [blame] | 213 | if (msm->client_pid != 0) |
| 214 | l2fib_entry_result_set_bits (result0, |
| 215 | (L2FIB_ENTRY_RESULT_FLAG_LRN_EVT | |
| 216 | L2FIB_ENTRY_RESULT_FLAG_LRN_MOV)); |
| 217 | else |
| 218 | l2fib_entry_result_clear_bits (result0, |
| 219 | (L2FIB_ENTRY_RESULT_FLAG_LRN_EVT | |
| 220 | L2FIB_ENTRY_RESULT_FLAG_LRN_MOV)); |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 221 | counter_base[L2LEARN_ERROR_MAC_MOVE] += 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Eyal Bari | 31a71ab | 2017-06-25 14:42:33 +0300 | [diff] [blame] | 224 | /* Update the entry */ |
| 225 | result0->fields.timestamp = timestamp; |
| 226 | result0->fields.sn.as_u16 = vnet_buffer (b0)->l2.l2fib_sn; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 227 | |
Eyal Bari | 31a71ab | 2017-06-25 14:42:33 +0300 | [diff] [blame] | 228 | BVT (clib_bihash_kv) kv; |
| 229 | kv.key = key0->raw; |
| 230 | kv.value = result0->raw; |
| 231 | BV (clib_bihash_add_del) (msm->mac_table, &kv, 1 /* is_add */ ); |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 232 | |
| 233 | /* Invalidate the cache */ |
| 234 | cached_key->raw = ~0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | |
Dave Barach | 681abe4 | 2017-02-15 09:01:01 -0500 | [diff] [blame] | 238 | static_always_inline uword |
| 239 | l2learn_node_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 240 | vlib_frame_t * frame, int do_trace) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 241 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 242 | u32 n_left_from, *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 243 | l2learn_next_t next_index; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 244 | l2learn_main_t *msm = &l2learn_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 245 | vlib_node_t *n = vlib_get_node (vm, l2learn_node.index); |
| 246 | u32 node_counter_base_index = n->error_heap_index; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 247 | vlib_error_main_t *em = &vm->error_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | l2fib_entry_key_t cached_key; |
| 249 | l2fib_entry_result_t cached_result; |
Damjan Marion | d171d48 | 2016-12-05 14:16:38 +0100 | [diff] [blame] | 250 | u8 timestamp = (u8) (vlib_time_now (vm) / 60); |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 251 | u32 count = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | |
| 253 | from = vlib_frame_vector_args (frame); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 254 | n_left_from = frame->n_vectors; /* number of packets to process */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 255 | next_index = node->cached_next_index; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 256 | |
| 257 | /* Clear the one-entry cache in case mac table was updated */ |
| 258 | cached_key.raw = ~0; |
| 259 | cached_result.raw = ~0; /* warning be gone */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 260 | |
| 261 | while (n_left_from > 0) |
| 262 | { |
| 263 | u32 n_left_to_next; |
| 264 | |
| 265 | /* get space to enqueue frame to graph node "next_index" */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 266 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 267 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 268 | while (n_left_from >= 8 && n_left_to_next >= 4) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 269 | { |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 270 | u32 bi0, bi1, bi2, bi3; |
| 271 | vlib_buffer_t *b0, *b1, *b2, *b3; |
| 272 | u32 next0, next1, next2, next3; |
| 273 | u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3; |
| 274 | ethernet_header_t *h0, *h1, *h2, *h3; |
| 275 | l2fib_entry_key_t key0, key1, key2, key3; |
| 276 | l2fib_entry_result_t result0, result1, result2, result3; |
| 277 | u32 bucket0, bucket1, bucket2, bucket3; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 278 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 279 | /* Prefetch next iteration. */ |
| 280 | { |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 281 | vlib_buffer_t *p4, *p5, *p6, *p7;; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 282 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 283 | p4 = vlib_get_buffer (vm, from[4]); |
| 284 | p5 = vlib_get_buffer (vm, from[5]); |
| 285 | p6 = vlib_get_buffer (vm, from[6]); |
| 286 | p7 = vlib_get_buffer (vm, from[7]); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 287 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 288 | vlib_prefetch_buffer_header (p4, LOAD); |
| 289 | vlib_prefetch_buffer_header (p5, LOAD); |
| 290 | vlib_prefetch_buffer_header (p6, LOAD); |
| 291 | vlib_prefetch_buffer_header (p7, LOAD); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 292 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 293 | CLIB_PREFETCH (p4->data, CLIB_CACHE_LINE_BYTES, STORE); |
| 294 | CLIB_PREFETCH (p5->data, CLIB_CACHE_LINE_BYTES, STORE); |
| 295 | CLIB_PREFETCH (p6->data, CLIB_CACHE_LINE_BYTES, STORE); |
| 296 | CLIB_PREFETCH (p7->data, CLIB_CACHE_LINE_BYTES, STORE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 297 | } |
| 298 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 299 | /* speculatively enqueue b0 and b1 to the current next frame */ |
| 300 | /* bi is "buffer index", b is pointer to the buffer */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 301 | to_next[0] = bi0 = from[0]; |
| 302 | to_next[1] = bi1 = from[1]; |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 303 | to_next[2] = bi2 = from[2]; |
| 304 | to_next[3] = bi3 = from[3]; |
| 305 | from += 4; |
| 306 | to_next += 4; |
| 307 | n_left_from -= 4; |
| 308 | n_left_to_next -= 4; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 309 | |
| 310 | b0 = vlib_get_buffer (vm, bi0); |
| 311 | b1 = vlib_get_buffer (vm, bi1); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 312 | b2 = vlib_get_buffer (vm, bi2); |
| 313 | b3 = vlib_get_buffer (vm, bi3); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 315 | /* RX interface handles */ |
| 316 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 317 | sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX]; |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 318 | sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_RX]; |
| 319 | sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 320 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 321 | /* Process 4 x pkts */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 322 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 323 | h0 = vlib_buffer_get_current (b0); |
| 324 | h1 = vlib_buffer_get_current (b1); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 325 | h2 = vlib_buffer_get_current (b2); |
| 326 | h3 = vlib_buffer_get_current (b3); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 327 | |
Dave Barach | 681abe4 | 2017-02-15 09:01:01 -0500 | [diff] [blame] | 328 | if (do_trace) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 329 | { |
| 330 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 331 | { |
| 332 | l2learn_trace_t *t = |
| 333 | vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 334 | t->sw_if_index = sw_if_index0; |
| 335 | t->bd_index = vnet_buffer (b0)->l2.bd_index; |
| 336 | clib_memcpy (t->src, h0->src_address, 6); |
| 337 | clib_memcpy (t->dst, h0->dst_address, 6); |
| 338 | } |
| 339 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 340 | { |
| 341 | l2learn_trace_t *t = |
| 342 | vlib_add_trace (vm, node, b1, sizeof (*t)); |
| 343 | t->sw_if_index = sw_if_index1; |
| 344 | t->bd_index = vnet_buffer (b1)->l2.bd_index; |
| 345 | clib_memcpy (t->src, h1->src_address, 6); |
| 346 | clib_memcpy (t->dst, h1->dst_address, 6); |
| 347 | } |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 348 | if (b2->flags & VLIB_BUFFER_IS_TRACED) |
| 349 | { |
| 350 | l2learn_trace_t *t = |
| 351 | vlib_add_trace (vm, node, b2, sizeof (*t)); |
| 352 | t->sw_if_index = sw_if_index2; |
| 353 | t->bd_index = vnet_buffer (b2)->l2.bd_index; |
| 354 | clib_memcpy (t->src, h2->src_address, 6); |
| 355 | clib_memcpy (t->dst, h2->dst_address, 6); |
| 356 | } |
| 357 | if (b3->flags & VLIB_BUFFER_IS_TRACED) |
| 358 | { |
| 359 | l2learn_trace_t *t = |
| 360 | vlib_add_trace (vm, node, b3, sizeof (*t)); |
| 361 | t->sw_if_index = sw_if_index3; |
| 362 | t->bd_index = vnet_buffer (b3)->l2.bd_index; |
| 363 | clib_memcpy (t->src, h3->src_address, 6); |
| 364 | clib_memcpy (t->dst, h3->dst_address, 6); |
| 365 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 366 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 368 | /* process 4 pkts */ |
| 369 | vlib_node_increment_counter (vm, l2learn_node.index, |
| 370 | L2LEARN_ERROR_L2LEARN, 4); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 371 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 372 | l2fib_lookup_4 (msm->mac_table, &cached_key, &cached_result, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 373 | h0->src_address, |
| 374 | h1->src_address, |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 375 | h2->src_address, |
| 376 | h3->src_address, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 377 | vnet_buffer (b0)->l2.bd_index, |
| 378 | vnet_buffer (b1)->l2.bd_index, |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 379 | vnet_buffer (b2)->l2.bd_index, |
| 380 | vnet_buffer (b3)->l2.bd_index, |
| 381 | &key0, &key1, &key2, &key3, |
| 382 | &bucket0, &bucket1, &bucket2, &bucket3, |
| 383 | &result0, &result1, &result2, &result3); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 384 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 385 | l2learn_process (node, msm, &em->counters[node_counter_base_index], |
| 386 | b0, sw_if_index0, &key0, &cached_key, |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 387 | &count, &result0, &next0, timestamp); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 388 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 389 | l2learn_process (node, msm, &em->counters[node_counter_base_index], |
| 390 | b1, sw_if_index1, &key1, &cached_key, |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 391 | &count, &result1, &next1, timestamp); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 392 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 393 | l2learn_process (node, msm, &em->counters[node_counter_base_index], |
| 394 | b2, sw_if_index2, &key2, &cached_key, |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 395 | &count, &result2, &next2, timestamp); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 396 | |
| 397 | l2learn_process (node, msm, &em->counters[node_counter_base_index], |
| 398 | b3, sw_if_index3, &key3, &cached_key, |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 399 | &count, &result3, &next3, timestamp); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 400 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 401 | /* verify speculative enqueues, maybe switch current next frame */ |
| 402 | /* if next0==next1==next_index then nothing special needs to be done */ |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 403 | vlib_validate_buffer_enqueue_x4 (vm, node, next_index, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 404 | to_next, n_left_to_next, |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 405 | bi0, bi1, bi2, bi3, |
| 406 | next0, next1, next2, next3); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 407 | } |
| 408 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 409 | while (n_left_from > 0 && n_left_to_next > 0) |
| 410 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 411 | u32 bi0; |
| 412 | vlib_buffer_t *b0; |
| 413 | u32 next0; |
| 414 | u32 sw_if_index0; |
| 415 | ethernet_header_t *h0; |
| 416 | l2fib_entry_key_t key0; |
| 417 | l2fib_entry_result_t result0; |
| 418 | u32 bucket0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 419 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 420 | /* speculatively enqueue b0 to the current next frame */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 421 | bi0 = from[0]; |
| 422 | to_next[0] = bi0; |
| 423 | from += 1; |
| 424 | to_next += 1; |
| 425 | n_left_from -= 1; |
| 426 | n_left_to_next -= 1; |
| 427 | |
| 428 | b0 = vlib_get_buffer (vm, bi0); |
| 429 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 430 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 431 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 432 | h0 = vlib_buffer_get_current (b0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 433 | |
Dave Barach | 681abe4 | 2017-02-15 09:01:01 -0500 | [diff] [blame] | 434 | if (do_trace && PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 435 | { |
| 436 | l2learn_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 437 | t->sw_if_index = sw_if_index0; |
| 438 | t->bd_index = vnet_buffer (b0)->l2.bd_index; |
| 439 | clib_memcpy (t->src, h0->src_address, 6); |
| 440 | clib_memcpy (t->dst, h0->dst_address, 6); |
| 441 | } |
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 | /* process 1 pkt */ |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 444 | vlib_node_increment_counter (vm, l2learn_node.index, |
| 445 | L2LEARN_ERROR_L2LEARN, 1); |
| 446 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 447 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 448 | l2fib_lookup_1 (msm->mac_table, &cached_key, &cached_result, |
| 449 | h0->src_address, vnet_buffer (b0)->l2.bd_index, |
| 450 | &key0, &bucket0, &result0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 451 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 452 | l2learn_process (node, msm, &em->counters[node_counter_base_index], |
| 453 | b0, sw_if_index0, &key0, &cached_key, |
John Lo | dbfa574 | 2017-09-02 08:27:36 -0400 | [diff] [blame] | 454 | &count, &result0, &next0, timestamp); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 455 | |
| 456 | /* verify speculative enqueue, maybe switch current next frame */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 457 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 458 | to_next, n_left_to_next, |
| 459 | bi0, next0); |
| 460 | } |
| 461 | |
| 462 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 463 | } |
| 464 | |
| 465 | return frame->n_vectors; |
| 466 | } |
| 467 | |
Dave Barach | 681abe4 | 2017-02-15 09:01:01 -0500 | [diff] [blame] | 468 | static uword |
| 469 | l2learn_node_fn (vlib_main_t * vm, |
| 470 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 471 | { |
| 472 | if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE))) |
| 473 | return l2learn_node_inline (vm, node, frame, 1 /* do_trace */ ); |
| 474 | return l2learn_node_inline (vm, node, frame, 0 /* do_trace */ ); |
| 475 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 476 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 477 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 478 | VLIB_REGISTER_NODE (l2learn_node,static) = { |
| 479 | .function = l2learn_node_fn, |
| 480 | .name = "l2-learn", |
| 481 | .vector_size = sizeof (u32), |
| 482 | .format_trace = format_l2learn_trace, |
| 483 | .type = VLIB_NODE_TYPE_INTERNAL, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 484 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 485 | .n_errors = ARRAY_LEN(l2learn_error_strings), |
| 486 | .error_strings = l2learn_error_strings, |
| 487 | |
| 488 | .n_next_nodes = L2LEARN_N_NEXT, |
| 489 | |
| 490 | /* edit / add dispositions here */ |
| 491 | .next_nodes = { |
| 492 | [L2LEARN_NEXT_DROP] = "error-drop", |
| 493 | [L2LEARN_NEXT_L2FWD] = "l2-fwd", |
| 494 | }, |
| 495 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 496 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 497 | |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 498 | VLIB_NODE_FUNCTION_MULTIARCH (l2learn_node, l2learn_node_fn) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 499 | clib_error_t *l2learn_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 500 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 501 | l2learn_main_t *mp = &l2learn_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 502 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 503 | mp->vlib_main = vm; |
| 504 | mp->vnet_main = vnet_get_main (); |
| 505 | |
| 506 | /* Initialize the feature next-node indexes */ |
| 507 | feat_bitmap_init_next_nodes (vm, |
| 508 | l2learn_node.index, |
| 509 | L2INPUT_N_FEAT, |
| 510 | l2input_get_feat_names (), |
| 511 | mp->feat_next_node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 512 | |
| 513 | /* init the hash table ptr */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 514 | mp->mac_table = get_mac_table (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 515 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 516 | /* |
| 517 | * Set the default number of dynamically learned macs to the number |
| 518 | * of buckets. |
| 519 | */ |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 520 | mp->global_learn_limit = L2LEARN_DEFAULT_LIMIT; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 521 | |
| 522 | return 0; |
| 523 | } |
| 524 | |
| 525 | VLIB_INIT_FUNCTION (l2learn_init); |
| 526 | |
| 527 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 528 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 529 | * Set subinterface learn enable/disable. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 530 | * The CLI format is: |
| 531 | * set interface l2 learn <interface> [disable] |
| 532 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 533 | static clib_error_t * |
| 534 | int_learn (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 535 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 536 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 537 | vnet_main_t *vnm = vnet_get_main (); |
| 538 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 539 | u32 sw_if_index; |
| 540 | u32 enable; |
| 541 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 542 | if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 543 | { |
| 544 | error = clib_error_return (0, "unknown interface `%U'", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 545 | format_unformat_error, input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 546 | goto done; |
| 547 | } |
| 548 | |
| 549 | enable = 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 550 | if (unformat (input, "disable")) |
| 551 | { |
| 552 | enable = 0; |
| 553 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 554 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 555 | /* set the interface flag */ |
| 556 | l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_LEARN, enable); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 557 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 558 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 559 | return error; |
| 560 | } |
| 561 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 562 | /*? |
| 563 | * Layer 2 learning can be enabled and disabled on each |
| 564 | * interface and on each bridge-domain. Use this command to |
| 565 | * manage interfaces. It is enabled by default. |
| 566 | * |
| 567 | * @cliexpar |
| 568 | * Example of how to enable learning: |
| 569 | * @cliexcmd{set interface l2 learn GigabitEthernet0/8/0} |
| 570 | * Example of how to disable learning: |
| 571 | * @cliexcmd{set interface l2 learn GigabitEthernet0/8/0 disable} |
| 572 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 573 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 574 | VLIB_CLI_COMMAND (int_learn_cli, static) = { |
| 575 | .path = "set interface l2 learn", |
| 576 | .short_help = "set interface l2 learn <interface> [disable]", |
| 577 | .function = int_learn, |
| 578 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 579 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 580 | |
| 581 | |
| 582 | static clib_error_t * |
| 583 | l2learn_config (vlib_main_t * vm, unformat_input_t * input) |
| 584 | { |
| 585 | l2learn_main_t *mp = &l2learn_main; |
| 586 | |
| 587 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 588 | { |
| 589 | if (unformat (input, "limit %d", &mp->global_learn_limit)) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 590 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 591 | |
| 592 | else |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 593 | return clib_error_return (0, "unknown input `%U'", |
| 594 | format_unformat_error, input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | return 0; |
| 598 | } |
| 599 | |
| 600 | VLIB_CONFIG_FUNCTION (l2learn_config, "l2learn"); |
| 601 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 602 | |
| 603 | /* |
| 604 | * fd.io coding-style-patch-verification: ON |
| 605 | * |
| 606 | * Local Variables: |
| 607 | * eval: (c-set-style "gnu") |
| 608 | * End: |
| 609 | */ |