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