Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [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 | #include <vlib/vlib.h> |
| 17 | #include <vnet/l2/feat_bitmap.h> |
| 18 | #include <vnet/l2/l2_rw.h> |
Neale Ranns | ba4a5bf | 2020-01-09 06:43:14 +0000 | [diff] [blame] | 19 | #include <vnet/classify/vnet_classify.h> |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 20 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 21 | /** |
| 22 | * @file |
| 23 | * @brief Layer 2 Rewrite. |
| 24 | * |
| 25 | * Layer 2-Rewrite node uses classify tables to match packets. Then, using |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 26 | * the provisioned mask and value, modifies the packet header. |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 27 | */ |
| 28 | |
| 29 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 30 | #ifndef CLIB_MARCH_VARIANT |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 31 | l2_rw_main_t l2_rw_main; |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 32 | #endif /* CLIB_MARCH_VARIANT */ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 33 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 34 | typedef struct |
| 35 | { |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 36 | u32 sw_if_index; |
| 37 | u32 classify_table_index; |
| 38 | u32 rewrite_entry_index; |
| 39 | } l2_rw_trace_t; |
| 40 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 41 | static u8 * |
| 42 | format_l2_rw_entry (u8 * s, va_list * args) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 43 | { |
| 44 | l2_rw_entry_t *e = va_arg (*args, l2_rw_entry_t *); |
| 45 | l2_rw_main_t *rw = &l2_rw_main; |
| 46 | s = format (s, "%d - mask:%U value:%U\n", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 47 | e - rw->entries, |
| 48 | format_hex_bytes, e->mask, |
| 49 | e->rewrite_n_vectors * sizeof (u32x4), format_hex_bytes, |
| 50 | e->value, e->rewrite_n_vectors * sizeof (u32x4)); |
| 51 | s = |
| 52 | format (s, " hits:%d skip_bytes:%d", e->hit_count, |
| 53 | e->skip_n_vectors * sizeof (u32x4)); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 54 | return s; |
| 55 | } |
| 56 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 57 | static u8 * |
| 58 | format_l2_rw_config (u8 * s, va_list * args) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 59 | { |
| 60 | l2_rw_config_t *c = va_arg (*args, l2_rw_config_t *); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 61 | return format (s, "table-index:%d miss-index:%d", |
| 62 | c->table_index, c->miss_index); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | /* packet trace format function */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 66 | static u8 * |
| 67 | format_l2_rw_trace (u8 * s, va_list * args) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 68 | { |
| 69 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 70 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 71 | l2_rw_trace_t *t = va_arg (*args, l2_rw_trace_t *); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 72 | return format (s, "l2-rw: sw_if_index %d, table %d, entry %d", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 73 | t->sw_if_index, t->classify_table_index, |
| 74 | t->rewrite_entry_index); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 77 | always_inline l2_rw_config_t * |
| 78 | l2_rw_get_config (u32 sw_if_index) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 79 | { |
| 80 | l2_rw_main_t *rw = &l2_rw_main; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 81 | if (PREDICT_FALSE (!clib_bitmap_get (rw->configs_bitmap, sw_if_index))) |
| 82 | { |
| 83 | vec_validate (rw->configs, sw_if_index); |
| 84 | rw->configs[sw_if_index].table_index = ~0; |
| 85 | rw->configs[sw_if_index].miss_index = ~0; |
| 86 | rw->configs_bitmap = |
| 87 | clib_bitmap_set (rw->configs_bitmap, sw_if_index, 1); |
| 88 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 89 | return &rw->configs[sw_if_index]; |
| 90 | } |
| 91 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 92 | static_always_inline void |
| 93 | l2_rw_rewrite (l2_rw_entry_t * rwe, u8 * h) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 94 | { |
Damjan Marion | 8304933 | 2019-09-25 00:25:36 +0200 | [diff] [blame] | 95 | u32x4u *d = ((u32x4u *) h) + rwe->skip_n_vectors; |
| 96 | switch (rwe->rewrite_n_vectors) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 97 | { |
Damjan Marion | 8304933 | 2019-09-25 00:25:36 +0200 | [diff] [blame] | 98 | case 5: |
| 99 | d[4] = (d[4] & ~rwe->mask[4]) | rwe->value[4]; |
| 100 | /* FALLTHROUGH */ |
| 101 | case 4: |
| 102 | d[3] = (d[3] & ~rwe->mask[3]) | rwe->value[3]; |
| 103 | /* FALLTHROUGH */ |
| 104 | case 3: |
| 105 | d[2] = (d[2] & ~rwe->mask[2]) | rwe->value[2]; |
| 106 | /* FALLTHROUGH */ |
| 107 | case 2: |
| 108 | d[1] = (d[1] & ~rwe->mask[1]) | rwe->value[1]; |
| 109 | /* FALLTHROUGH */ |
| 110 | case 1: |
| 111 | d[0] = (d[0] & ~rwe->mask[0]) | rwe->value[0]; |
yanlong | 7fa1674 | 2023-11-19 06:19:42 -0800 | [diff] [blame] | 112 | rwe->hit_count++; |
Damjan Marion | 8304933 | 2019-09-25 00:25:36 +0200 | [diff] [blame] | 113 | break; |
| 114 | default: |
| 115 | abort (); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 116 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 119 | VLIB_NODE_FN (l2_rw_node) (vlib_main_t * vm, |
| 120 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 121 | { |
| 122 | l2_rw_main_t *rw = &l2_rw_main; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 123 | u32 n_left_from, *from, *to_next, next_index; |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 124 | vnet_classify_main_t *vcm = &vnet_classify_main; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 125 | f64 now = vlib_time_now (vlib_get_main ()); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 126 | |
| 127 | from = vlib_frame_vector_args (frame); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 128 | n_left_from = frame->n_vectors; /* number of packets to process */ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 129 | next_index = node->cached_next_index; |
| 130 | |
| 131 | while (n_left_from > 0) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 132 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 133 | u32 n_left_to_next; |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 134 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 135 | /* get space to enqueue frame to graph node "next_index" */ |
| 136 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 137 | |
Damjan Marion | d30bf01 | 2018-11-18 23:48:43 +0100 | [diff] [blame] | 138 | while (n_left_from >= 6 && n_left_to_next >= 2) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 139 | { |
John Lo | beb0b2e | 2017-07-22 00:21:36 -0400 | [diff] [blame] | 140 | u32 bi0, next0, sw_if_index0, rwe_index0; |
| 141 | u32 bi1, next1, sw_if_index1, rwe_index1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 142 | vlib_buffer_t *b0, *b1; |
| 143 | ethernet_header_t *h0, *h1; |
| 144 | l2_rw_config_t *config0, *config1; |
| 145 | u64 hash0, hash1; |
| 146 | vnet_classify_table_t *t0, *t1; |
| 147 | vnet_classify_entry_t *e0, *e1; |
| 148 | l2_rw_entry_t *rwe0, *rwe1; |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 149 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 150 | { |
Damjan Marion | d30bf01 | 2018-11-18 23:48:43 +0100 | [diff] [blame] | 151 | vlib_buffer_t *p2, *p3, *p4, *p5; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 152 | p2 = vlib_get_buffer (vm, from[2]); |
| 153 | p3 = vlib_get_buffer (vm, from[3]); |
Damjan Marion | d30bf01 | 2018-11-18 23:48:43 +0100 | [diff] [blame] | 154 | p4 = vlib_get_buffer (vm, from[4]); |
| 155 | p5 = vlib_get_buffer (vm, from[5]); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 156 | |
Damjan Marion | d30bf01 | 2018-11-18 23:48:43 +0100 | [diff] [blame] | 157 | vlib_prefetch_buffer_header (p4, LOAD); |
| 158 | vlib_prefetch_buffer_header (p5, LOAD); |
| 159 | vlib_prefetch_buffer_data (p2, LOAD); |
| 160 | vlib_prefetch_buffer_data (p3, LOAD); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 161 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 162 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 163 | bi0 = from[0]; |
| 164 | bi1 = from[1]; |
| 165 | to_next[0] = bi0; |
| 166 | to_next[1] = bi1; |
| 167 | from += 2; |
| 168 | to_next += 2; |
| 169 | n_left_from -= 2; |
| 170 | n_left_to_next -= 2; |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 171 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 172 | b0 = vlib_get_buffer (vm, bi0); |
| 173 | b1 = vlib_get_buffer (vm, bi1); |
| 174 | h0 = vlib_buffer_get_current (b0); |
| 175 | h1 = vlib_buffer_get_current (b1); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 176 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 177 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 178 | sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX]; |
| 179 | config0 = l2_rw_get_config (sw_if_index0); /*TODO: check sw_if_index0 value */ |
| 180 | config1 = l2_rw_get_config (sw_if_index1); /*TODO: check sw_if_index0 value */ |
| 181 | t0 = pool_elt_at_index (vcm->tables, config0->table_index); |
| 182 | t1 = pool_elt_at_index (vcm->tables, config1->table_index); |
Pierre Pfister | 6b70c21 | 2016-05-13 07:47:06 +0100 | [diff] [blame] | 183 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 184 | hash0 = vnet_classify_hash_packet (t0, (u8 *) h0); |
| 185 | hash1 = vnet_classify_hash_packet (t1, (u8 *) h1); |
| 186 | e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now); |
| 187 | e1 = vnet_classify_find_entry (t1, (u8 *) h1, hash1, now); |
Pierre Pfister | 6b70c21 | 2016-05-13 07:47:06 +0100 | [diff] [blame] | 188 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 189 | while (!e0 && (t0->next_table_index != ~0)) |
| 190 | { |
| 191 | t0 = pool_elt_at_index (vcm->tables, t0->next_table_index); |
| 192 | hash0 = vnet_classify_hash_packet (t0, (u8 *) h0); |
| 193 | e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now); |
| 194 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 195 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 196 | while (!e1 && (t1->next_table_index != ~0)) |
| 197 | { |
| 198 | t1 = pool_elt_at_index (vcm->tables, t1->next_table_index); |
| 199 | hash1 = vnet_classify_hash_packet (t1, (u8 *) h1); |
| 200 | e1 = vnet_classify_find_entry (t1, (u8 *) h1, hash1, now); |
| 201 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 202 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 203 | rwe_index0 = e0 ? e0->opaque_index : config0->miss_index; |
| 204 | rwe_index1 = e1 ? e1->opaque_index : config1->miss_index; |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 205 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 206 | if (rwe_index0 != ~0) |
| 207 | { |
| 208 | rwe0 = pool_elt_at_index (rw->entries, rwe_index0); |
| 209 | l2_rw_rewrite (rwe0, (u8 *) h0); |
| 210 | } |
| 211 | if (rwe_index1 != ~0) |
| 212 | { |
| 213 | rwe1 = pool_elt_at_index (rw->entries, rwe_index1); |
| 214 | l2_rw_rewrite (rwe1, (u8 *) h1); |
| 215 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 216 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 217 | if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED))) |
| 218 | { |
| 219 | l2_rw_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 220 | t->sw_if_index = sw_if_index0; |
| 221 | t->classify_table_index = config0->table_index; |
| 222 | t->rewrite_entry_index = rwe_index0; |
| 223 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 224 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 225 | if (PREDICT_FALSE ((b1->flags & VLIB_BUFFER_IS_TRACED))) |
| 226 | { |
| 227 | l2_rw_trace_t *t = vlib_add_trace (vm, node, b1, sizeof (*t)); |
| 228 | t->sw_if_index = sw_if_index1; |
| 229 | t->classify_table_index = config1->table_index; |
| 230 | t->rewrite_entry_index = rwe_index1; |
| 231 | } |
| 232 | |
| 233 | /* Update feature bitmap and get next feature index */ |
John Lo | beb0b2e | 2017-07-22 00:21:36 -0400 | [diff] [blame] | 234 | next0 = vnet_l2_feature_next (b0, rw->feat_next_node_index, |
| 235 | L2INPUT_FEAT_RW); |
| 236 | next1 = vnet_l2_feature_next (b1, rw->feat_next_node_index, |
| 237 | L2INPUT_FEAT_RW); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 238 | |
| 239 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 240 | to_next, n_left_to_next, |
| 241 | bi0, bi1, next0, next1); |
| 242 | } |
| 243 | |
| 244 | while (n_left_from > 0 && n_left_to_next > 0) |
| 245 | { |
John Lo | beb0b2e | 2017-07-22 00:21:36 -0400 | [diff] [blame] | 246 | u32 bi0, next0, sw_if_index0, rwe_index0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 247 | vlib_buffer_t *b0; |
| 248 | ethernet_header_t *h0; |
| 249 | l2_rw_config_t *config0; |
| 250 | u64 hash0; |
| 251 | vnet_classify_table_t *t0; |
| 252 | vnet_classify_entry_t *e0; |
| 253 | l2_rw_entry_t *rwe0; |
| 254 | |
| 255 | bi0 = from[0]; |
| 256 | to_next[0] = bi0; |
| 257 | from += 1; |
| 258 | to_next += 1; |
| 259 | n_left_from -= 1; |
| 260 | n_left_to_next -= 1; |
| 261 | |
| 262 | b0 = vlib_get_buffer (vm, bi0); |
| 263 | h0 = vlib_buffer_get_current (b0); |
| 264 | |
| 265 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 266 | config0 = l2_rw_get_config (sw_if_index0); /*TODO: check sw_if_index0 value */ |
| 267 | t0 = pool_elt_at_index (vcm->tables, config0->table_index); |
| 268 | |
| 269 | hash0 = vnet_classify_hash_packet (t0, (u8 *) h0); |
| 270 | e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now); |
| 271 | |
| 272 | while (!e0 && (t0->next_table_index != ~0)) |
| 273 | { |
| 274 | t0 = pool_elt_at_index (vcm->tables, t0->next_table_index); |
| 275 | hash0 = vnet_classify_hash_packet (t0, (u8 *) h0); |
| 276 | e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now); |
| 277 | } |
| 278 | |
| 279 | rwe_index0 = e0 ? e0->opaque_index : config0->miss_index; |
| 280 | |
| 281 | if (rwe_index0 != ~0) |
| 282 | { |
| 283 | rwe0 = pool_elt_at_index (rw->entries, rwe_index0); |
| 284 | l2_rw_rewrite (rwe0, (u8 *) h0); |
| 285 | } |
| 286 | |
| 287 | if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED))) |
| 288 | { |
| 289 | l2_rw_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 290 | t->sw_if_index = sw_if_index0; |
| 291 | t->classify_table_index = config0->table_index; |
| 292 | t->rewrite_entry_index = rwe_index0; |
| 293 | } |
| 294 | |
| 295 | /* Update feature bitmap and get next feature index */ |
John Lo | beb0b2e | 2017-07-22 00:21:36 -0400 | [diff] [blame] | 296 | next0 = vnet_l2_feature_next (b0, rw->feat_next_node_index, |
| 297 | L2INPUT_FEAT_RW); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 298 | |
| 299 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 300 | to_next, n_left_to_next, |
| 301 | bi0, next0); |
| 302 | } |
| 303 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 304 | } |
| 305 | |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 306 | return frame->n_vectors; |
| 307 | } |
| 308 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 309 | #ifndef CLIB_MARCH_VARIANT |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 310 | int |
| 311 | l2_rw_mod_entry (u32 * index, |
| 312 | u8 * mask, u8 * value, u32 len, u32 skip, u8 is_del) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 313 | { |
| 314 | l2_rw_main_t *rw = &l2_rw_main; |
| 315 | l2_rw_entry_t *e = 0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 316 | if (*index != ~0) |
| 317 | { |
| 318 | if (pool_is_free_index (rw->entries, *index)) |
| 319 | { |
| 320 | return -1; |
| 321 | } |
| 322 | e = pool_elt_at_index (rw->entries, *index); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 323 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 324 | else |
| 325 | { |
| 326 | pool_get (rw->entries, e); |
| 327 | *index = e - rw->entries; |
| 328 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 329 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 330 | if (is_del) |
| 331 | { |
| 332 | pool_put (rw->entries, e); |
| 333 | return 0; |
| 334 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 335 | |
yanlong | 7fa1674 | 2023-11-19 06:19:42 -0800 | [diff] [blame] | 336 | e->hit_count = 0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 337 | e->skip_n_vectors = skip / sizeof (u32x4); |
| 338 | skip -= e->skip_n_vectors * sizeof (u32x4); |
| 339 | e->rewrite_n_vectors = (skip + len - 1) / sizeof (u32x4) + 1; |
| 340 | vec_alloc_aligned (e->mask, e->rewrite_n_vectors, sizeof (u32x4)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 341 | clib_memset (e->mask, 0, e->rewrite_n_vectors * sizeof (u32x4)); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 342 | vec_alloc_aligned (e->value, e->rewrite_n_vectors, sizeof (u32x4)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 343 | clib_memset (e->value, 0, e->rewrite_n_vectors * sizeof (u32x4)); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 344 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 345 | clib_memcpy (((u8 *) e->value) + skip, value, len); |
| 346 | clib_memcpy (((u8 *) e->mask) + skip, mask, len); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 347 | |
| 348 | int i; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 349 | for (i = 0; i < e->rewrite_n_vectors; i++) |
| 350 | { |
| 351 | e->value[i] &= e->mask[i]; |
| 352 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 353 | |
| 354 | return 0; |
| 355 | } |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 356 | #endif /* CLIB_MARCH_VARIANT */ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 357 | |
| 358 | static clib_error_t * |
| 359 | l2_rw_entry_cli_fn (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 360 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 361 | { |
| 362 | u32 index = ~0; |
| 363 | u8 *mask = 0; |
| 364 | u8 *value = 0; |
| 365 | u32 skip = 0; |
| 366 | u8 del = 0; |
| 367 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 368 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 369 | { |
| 370 | if (unformat (input, "index %d", &index)) |
| 371 | ; |
| 372 | else if (unformat (input, "mask %U", unformat_hex_string, &mask)) |
| 373 | ; |
| 374 | else if (unformat (input, "value %U", unformat_hex_string, &value)) |
| 375 | ; |
| 376 | else if (unformat (input, "skip %d", &skip)) |
| 377 | ; |
| 378 | else if (unformat (input, "del")) |
| 379 | del = 1; |
| 380 | else |
| 381 | break; |
| 382 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 383 | |
| 384 | if (!mask || !value) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 385 | return clib_error_return (0, "Unspecified mask or value"); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 386 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 387 | if (vec_len (mask) != vec_len (value)) |
| 388 | return clib_error_return (0, "Mask and value lengths must be identical"); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 389 | |
| 390 | int ret; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 391 | if ((ret = |
| 392 | l2_rw_mod_entry (&index, mask, value, vec_len (mask), skip, del))) |
| 393 | return clib_error_return (0, "Could not add entry"); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 398 | /*? |
| 399 | * Layer 2-Rewrite node uses classify tables to match packets. Then, using |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 400 | * the provisioned mask and value, modifies the packet header. |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 401 | * |
| 402 | * @cliexpar |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 403 | * Example of how to add an l2 rewrite entry to change the destination mac of |
| 404 | * the packet to 00:8a:00:0d:0e:02 (where parameter mask is Ethernet header's |
| 405 | mask, |
| 406 | * parameter value is Ethernet header's value): |
| 407 | * @cliexcmd{l2 rewrite entry mask ffffffffffff00000000000000000000 value |
| 408 | 008a000d0e0200000000000000000000} |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 409 | ?*/ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 410 | VLIB_CLI_COMMAND (l2_rw_entry_cli, static) = { |
| 411 | .path = "l2 rewrite entry", |
| 412 | .short_help = |
| 413 | "l2 rewrite entry [index <index>] [mask <hex-mask>] [value <hex-value>] [skip <n_bytes>] [del]", |
| 414 | .function = l2_rw_entry_cli_fn, |
| 415 | }; |
| 416 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 417 | #ifndef CLIB_MARCH_VARIANT |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 418 | int |
| 419 | l2_rw_interface_set_table (u32 sw_if_index, u32 table_index, u32 miss_index) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 420 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 421 | l2_rw_config_t *c = l2_rw_get_config (sw_if_index); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 422 | l2_rw_main_t *rw = &l2_rw_main; |
| 423 | |
| 424 | c->table_index = table_index; |
| 425 | c->miss_index = miss_index; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 426 | u32 feature_bitmap = (table_index == ~0) ? 0 : L2INPUT_FEAT_RW; |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 427 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 428 | l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_RW, feature_bitmap); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 429 | |
| 430 | if (c->table_index == ~0) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 431 | clib_bitmap_set (rw->configs_bitmap, sw_if_index, 0); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 432 | |
| 433 | return 0; |
| 434 | } |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 435 | #endif /* CLIB_MARCH_VARIANT */ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 436 | |
| 437 | static clib_error_t * |
| 438 | l2_rw_interface_cli_fn (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 439 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 440 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 441 | vnet_main_t *vnm = vnet_get_main (); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 442 | u32 table_index = ~0; |
| 443 | u32 sw_if_index = ~0; |
| 444 | u32 miss_index = ~0; |
| 445 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 446 | if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 447 | { |
| 448 | unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index); |
| 449 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 450 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 451 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 452 | { |
| 453 | if (unformat (input, "table %d", &table_index)) |
| 454 | ; |
| 455 | else if (unformat (input, "miss-index %d", &miss_index)) |
| 456 | ; |
| 457 | else |
| 458 | break; |
| 459 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 460 | |
| 461 | if (sw_if_index == ~0) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 462 | return clib_error_return (0, |
| 463 | "You must specify an interface 'iface <interface>'", |
| 464 | format_unformat_error, input); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 465 | int ret; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 466 | if ((ret = |
| 467 | l2_rw_interface_set_table (sw_if_index, table_index, miss_index))) |
| 468 | return clib_error_return (0, "l2_rw_interface_set_table returned %d", |
| 469 | ret); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 470 | |
| 471 | return 0; |
| 472 | } |
| 473 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 474 | /*? |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 475 | * Apply the rule to the interface. The following example shows how to use |
| 476 | classify |
| 477 | * entry and Layer 2-Rewrite entry to modify the packet ethernet header on the |
| 478 | * interface. |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 479 | * |
| 480 | * @cliexpar |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 481 | * Example use the classify to filter packets that do not need to be modified |
| 482 | (where |
| 483 | * 192.168.68.34 is the destination ip of the data packet, 8080 is the |
| 484 | destination port |
| 485 | * of the packet): |
| 486 | * @cliexcmd{classify table mask l3 ip4 dst l4 dst_port} |
| 487 | * @cliexcmd{classify session acl-hit-next permit table-index 0 match l3 ip4 |
| 488 | dst 192.168.68.34 l4 dst_port 8080} |
| 489 | * |
| 490 | * @cliexpar |
| 491 | * Example apply classify and l2 rewrite rules to the interface (where |
| 492 | YusurK2Eth6/0/1/3 |
| 493 | * is interface, \"table 0\" means Table Id is 0, \"miss 0\" means the packet |
| 494 | that matches |
| 495 | * the classify. miss will be modified according to the l2 rewrite entry with |
| 496 | index 0): |
| 497 | * @cliexcmd{set interface l2 rewrite YusurK2Eth6/0/1/3 table 0 miss-index 0} |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 498 | ?*/ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 499 | VLIB_CLI_COMMAND (l2_rw_interface_cli, static) = { |
| 500 | .path = "set interface l2 rewrite", |
| 501 | .short_help = |
| 502 | "set interface l2 rewrite <interface> [table <table index>] [miss-index <entry-index>]", |
| 503 | .function = l2_rw_interface_cli_fn, |
| 504 | }; |
| 505 | |
| 506 | static clib_error_t * |
| 507 | l2_rw_show_interfaces_cli_fn (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 508 | unformat_input_t * input, |
| 509 | vlib_cli_command_t * cmd) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 510 | { |
| 511 | l2_rw_main_t *rw = &l2_rw_main; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 512 | if (clib_bitmap_count_set_bits (rw->configs_bitmap) == 0) |
| 513 | vlib_cli_output (vm, "No interface is currently using l2 rewrite\n"); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 514 | |
| 515 | uword i; |
Damjan Marion | f0ca1e8 | 2020-12-13 23:26:56 +0100 | [diff] [blame] | 516 | clib_bitmap_foreach (i, rw->configs_bitmap) { |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 517 | vlib_cli_output (vm, "sw_if_index:%d %U\n", i, format_l2_rw_config, &rw->configs[i]); |
Damjan Marion | f0ca1e8 | 2020-12-13 23:26:56 +0100 | [diff] [blame] | 518 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 519 | return 0; |
| 520 | } |
| 521 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 522 | /*? |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 523 | * This command displays the l2 rewrite entries of the interfaces. |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 524 | * |
| 525 | * @cliexpar |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 526 | * Example of how to display the l2 rewrite rules on the interface: |
| 527 | * @cliexstart{show l2 rewrite interfaces} |
| 528 | * sw_if_index:4 table-index:0 miss-index:0 |
| 529 | * @cliexend |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 530 | ?*/ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 531 | VLIB_CLI_COMMAND (l2_rw_show_interfaces_cli, static) = { |
| 532 | .path = "show l2 rewrite interfaces", |
| 533 | .short_help = |
| 534 | "show l2 rewrite interfaces", |
| 535 | .function = l2_rw_show_interfaces_cli_fn, |
| 536 | }; |
| 537 | |
| 538 | static clib_error_t * |
| 539 | l2_rw_show_entries_cli_fn (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 540 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 541 | { |
| 542 | l2_rw_main_t *rw = &l2_rw_main; |
| 543 | l2_rw_entry_t *e; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 544 | if (pool_elts (rw->entries) == 0) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 545 | vlib_cli_output (vm, "No entries\n"); |
| 546 | |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 547 | pool_foreach (e, rw->entries) { |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 548 | vlib_cli_output (vm, "%U\n", format_l2_rw_entry, e); |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 549 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 550 | return 0; |
| 551 | } |
| 552 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 553 | /*? |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 554 | * This command displays all l2 rewrite entries. |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 555 | * |
| 556 | * @cliexpar |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 557 | * Example of how to display all l2 rewrite entries: |
| 558 | * @cliexstart{show l2 rewrite entries} |
| 559 | * 0 - mask:ffffffffffff00000000000000000000 |
| 560 | value:aabbccddeeff00000000000000000000 |
| 561 | * hits:0 skip_bytes:0 |
| 562 | * @cliexend |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 563 | ?*/ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 564 | VLIB_CLI_COMMAND (l2_rw_show_entries_cli, static) = { |
| 565 | .path = "show l2 rewrite entries", |
| 566 | .short_help = |
| 567 | "show l2 rewrite entries", |
| 568 | .function = l2_rw_show_entries_cli_fn, |
| 569 | }; |
| 570 | |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 571 | static int |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 572 | l2_rw_enable_disable (u32 bridge_domain, u8 disable) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 573 | { |
| 574 | u32 mask = L2INPUT_FEAT_RW; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 575 | l2input_set_bridge_features (bridge_domain, mask, disable ? 0 : mask); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 576 | return 0; |
| 577 | } |
| 578 | |
| 579 | static clib_error_t * |
| 580 | l2_rw_set_cli_fn (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 581 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 582 | { |
| 583 | u32 bridge_domain; |
| 584 | u8 disable = 0; |
| 585 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 586 | if (unformat_check_input (input) == UNFORMAT_END_OF_INPUT || |
| 587 | !unformat (input, "%d", &bridge_domain)) |
| 588 | { |
| 589 | return clib_error_return (0, "You must specify a bridge domain"); |
| 590 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 591 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 592 | if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT && |
| 593 | unformat (input, "disable")) |
| 594 | { |
| 595 | disable = 1; |
| 596 | } |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 597 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 598 | if (l2_rw_enable_disable (bridge_domain, disable)) |
| 599 | return clib_error_return (0, "Could not enable or disable rewrite"); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 600 | |
| 601 | return 0; |
| 602 | } |
| 603 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 604 | /*? |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 605 | * Layer 2 rewrite can be enabled and disabled on each interface and on each |
| 606 | bridge-domain. |
| 607 | * Use this command to manage l2 rewrite on bridge-domain. |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 608 | * |
| 609 | * @cliexpar |
yanlong | d826a60 | 2023-08-08 11:36:32 +0800 | [diff] [blame] | 610 | * Example of how to enable rewrite (where 100 is the bridge-domain-id): |
| 611 | * @cliexcmd{set bridge-domain rewrite 100} |
| 612 | * Example of how to disable rewrite (where 100 is the bridge-domain-id): |
| 613 | * @cliexcmd{set bridge-domain rewrite 100 disable} |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 614 | ?*/ |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 615 | VLIB_CLI_COMMAND (l2_rw_set_cli, static) = { |
| 616 | .path = "set bridge-domain rewrite", |
| 617 | .short_help = |
| 618 | "set bridge-domain rewrite <bridge-domain> [disable]", |
| 619 | .function = l2_rw_set_cli_fn, |
| 620 | }; |
| 621 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 622 | static clib_error_t * |
| 623 | l2_rw_init (vlib_main_t * vm) |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 624 | { |
| 625 | l2_rw_main_t *rw = &l2_rw_main; |
| 626 | rw->configs = 0; |
| 627 | rw->entries = 0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 628 | clib_bitmap_alloc (rw->configs_bitmap, 1); |
| 629 | feat_bitmap_init_next_nodes (vm, |
| 630 | l2_rw_node.index, |
| 631 | L2INPUT_N_FEAT, |
| 632 | l2input_get_feat_names (), |
| 633 | rw->feat_next_node_index); |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 634 | return 0; |
| 635 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 636 | |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 637 | VLIB_INIT_FUNCTION (l2_rw_init); |
| 638 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 639 | enum |
| 640 | { |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 641 | L2_RW_NEXT_DROP, |
| 642 | L2_RW_N_NEXT, |
| 643 | }; |
| 644 | |
| 645 | #define foreach_l2_rw_error \ |
| 646 | _(UNKNOWN, "Unknown error") |
| 647 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 648 | typedef enum |
| 649 | { |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 650 | #define _(sym,str) L2_RW_ERROR_##sym, |
| 651 | foreach_l2_rw_error |
| 652 | #undef _ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 653 | L2_RW_N_ERROR, |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 654 | } l2_rw_error_t; |
| 655 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 656 | static char *l2_rw_error_strings[] = { |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 657 | #define _(sym,string) string, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 658 | foreach_l2_rw_error |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 659 | #undef _ |
| 660 | }; |
| 661 | |
| 662 | VLIB_REGISTER_NODE (l2_rw_node) = { |
Pierre Pfister | d6f5b96 | 2016-03-21 16:17:52 +0000 | [diff] [blame] | 663 | .name = "l2-rw", |
| 664 | .vector_size = sizeof (u32), |
| 665 | .format_trace = format_l2_rw_trace, |
| 666 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 667 | .n_errors = ARRAY_LEN(l2_rw_error_strings), |
| 668 | .error_strings = l2_rw_error_strings, |
| 669 | .runtime_data_bytes = 0, |
| 670 | .n_next_nodes = L2_RW_N_NEXT, |
| 671 | .next_nodes = { [L2_RW_NEXT_DROP] = "error-drop"}, |
| 672 | }; |
| 673 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 674 | /* |
| 675 | * fd.io coding-style-patch-verification: ON |
| 676 | * |
| 677 | * Local Variables: |
| 678 | * eval: (c-set-style "gnu") |
| 679 | * End: |
| 680 | */ |