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