blob: ac83483002a74c111f7017ff7f8d0d497a9174a8 [file] [log] [blame]
Pierre Pfisterd6f5b962016-03-21 16:17:52 +00001/*
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 McFall22aa3e92016-09-09 08:46:40 -040020/**
21 * @file
22 * @brief Layer 2 Rewrite.
23 *
24 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -070025 * the provisioned mask and value, modifies the packet header.
Billy McFall22aa3e92016-09-09 08:46:40 -040026 */
27
28
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000029l2_rw_main_t l2_rw_main;
30
31vlib_node_registration_t l2_rw_node;
32
Dave Barach97d8dc22016-08-15 15:31:15 -040033typedef struct
34{
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000035 u32 sw_if_index;
36 u32 classify_table_index;
37 u32 rewrite_entry_index;
38} l2_rw_trace_t;
39
Dave Barach97d8dc22016-08-15 15:31:15 -040040static u8 *
41format_l2_rw_entry (u8 * s, va_list * args)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000042{
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 Barach97d8dc22016-08-15 15:31:15 -040046 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 Pfisterd6f5b962016-03-21 16:17:52 +000053 return s;
54}
55
Dave Barach97d8dc22016-08-15 15:31:15 -040056static u8 *
57format_l2_rw_config (u8 * s, va_list * args)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000058{
59 l2_rw_config_t *c = va_arg (*args, l2_rw_config_t *);
Dave Barach97d8dc22016-08-15 15:31:15 -040060 return format (s, "table-index:%d miss-index:%d",
61 c->table_index, c->miss_index);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000062}
63
64/* packet trace format function */
Dave Barach97d8dc22016-08-15 15:31:15 -040065static u8 *
66format_l2_rw_trace (u8 * s, va_list * args)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000067{
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 Barach97d8dc22016-08-15 15:31:15 -040070 l2_rw_trace_t *t = va_arg (*args, l2_rw_trace_t *);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000071 return format (s, "l2-rw: sw_if_index %d, table %d, entry %d",
Dave Barach97d8dc22016-08-15 15:31:15 -040072 t->sw_if_index, t->classify_table_index,
73 t->rewrite_entry_index);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000074}
75
Dave Barach97d8dc22016-08-15 15:31:15 -040076always_inline l2_rw_config_t *
77l2_rw_get_config (u32 sw_if_index)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000078{
79 l2_rw_main_t *rw = &l2_rw_main;
Dave Barach97d8dc22016-08-15 15:31:15 -040080 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 Pfisterd6f5b962016-03-21 16:17:52 +000088 return &rw->configs[sw_if_index];
89}
90
Dave Barach97d8dc22016-08-15 15:31:15 -040091static_always_inline void
92l2_rw_rewrite (l2_rw_entry_t * rwe, u8 * h)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +000093{
Dave Barach97d8dc22016-08-15 15:31:15 -040094 if (U32X4_ALIGNED (h))
95 {
96 u32x4 *d = ((u32x4 *) h) + rwe->skip_n_vectors;
97 switch (rwe->rewrite_n_vectors)
98 {
99 case 5:
100 d[4] = (d[4] & ~rwe->mask[4]) | rwe->value[4];
101 /* FALLTHROUGH */
102 case 4:
103 d[3] = (d[3] & ~rwe->mask[3]) | rwe->value[3];
104 /* FALLTHROUGH */
105 case 3:
106 d[2] = (d[2] & ~rwe->mask[2]) | rwe->value[2];
107 /* FALLTHROUGH */
108 case 2:
109 d[1] = (d[1] & ~rwe->mask[1]) | rwe->value[1];
110 /* FALLTHROUGH */
111 case 1:
112 d[0] = (d[0] & ~rwe->mask[0]) | rwe->value[0];
113 break;
114 default:
115 abort ();
116 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000117 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400118 else
119 {
120 u64 *d = ((u64 *) h) + rwe->skip_n_vectors * 2;
121 switch (rwe->rewrite_n_vectors)
122 {
123 case 5:
124 d[8] =
125 (d[8] & ~(((u64 *) rwe->mask)[8])) | (((u64 *) rwe->value)[8]);
126 d[9] =
127 (d[9] & ~(((u64 *) rwe->mask)[9])) | (((u64 *) rwe->value)[9]);
128 /* FALLTHROUGH */
129 case 4:
130 d[6] =
131 (d[6] & ~(((u64 *) rwe->mask)[6])) | (((u64 *) rwe->value)[6]);
132 d[7] =
133 (d[7] & ~(((u64 *) rwe->mask)[7])) | (((u64 *) rwe->value)[7]);
134 /* FALLTHROUGH */
135 case 3:
136 d[4] =
137 (d[4] & ~(((u64 *) rwe->mask)[4])) | (((u64 *) rwe->value)[4]);
138 d[5] =
139 (d[5] & ~(((u64 *) rwe->mask)[5])) | (((u64 *) rwe->value)[5]);
140 /* FALLTHROUGH */
141 case 2:
142 d[2] =
143 (d[2] & ~(((u64 *) rwe->mask)[2])) | (((u64 *) rwe->value)[2]);
144 d[3] =
145 (d[3] & ~(((u64 *) rwe->mask)[3])) | (((u64 *) rwe->value)[3]);
146 /* FALLTHROUGH */
147 case 1:
148 d[0] =
149 (d[0] & ~(((u64 *) rwe->mask)[0])) | (((u64 *) rwe->value)[0]);
150 d[1] =
151 (d[1] & ~(((u64 *) rwe->mask)[1])) | (((u64 *) rwe->value)[1]);
152 break;
153 default:
154 abort ();
155 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000156 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000157}
158
159static uword
Dave Barach97d8dc22016-08-15 15:31:15 -0400160l2_rw_node_fn (vlib_main_t * vm,
161 vlib_node_runtime_t * node, vlib_frame_t * frame)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000162{
163 l2_rw_main_t *rw = &l2_rw_main;
Dave Barach97d8dc22016-08-15 15:31:15 -0400164 u32 n_left_from, *from, *to_next, next_index;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000165 vnet_classify_main_t *vcm = &vnet_classify_main;
Dave Barach97d8dc22016-08-15 15:31:15 -0400166 f64 now = vlib_time_now (vlib_get_main ());
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000167
168 from = vlib_frame_vector_args (frame);
Dave Barach97d8dc22016-08-15 15:31:15 -0400169 n_left_from = frame->n_vectors; /* number of packets to process */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000170 next_index = node->cached_next_index;
171
172 while (n_left_from > 0)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000173 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400174 u32 n_left_to_next;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000175
Dave Barach97d8dc22016-08-15 15:31:15 -0400176 /* get space to enqueue frame to graph node "next_index" */
177 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000178
Damjan Mariond30bf012018-11-18 23:48:43 +0100179 while (n_left_from >= 6 && n_left_to_next >= 2)
Dave Barach97d8dc22016-08-15 15:31:15 -0400180 {
John Lobeb0b2e2017-07-22 00:21:36 -0400181 u32 bi0, next0, sw_if_index0, rwe_index0;
182 u32 bi1, next1, sw_if_index1, rwe_index1;
Dave Barach97d8dc22016-08-15 15:31:15 -0400183 vlib_buffer_t *b0, *b1;
184 ethernet_header_t *h0, *h1;
185 l2_rw_config_t *config0, *config1;
186 u64 hash0, hash1;
187 vnet_classify_table_t *t0, *t1;
188 vnet_classify_entry_t *e0, *e1;
189 l2_rw_entry_t *rwe0, *rwe1;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000190
Dave Barach97d8dc22016-08-15 15:31:15 -0400191 {
Damjan Mariond30bf012018-11-18 23:48:43 +0100192 vlib_buffer_t *p2, *p3, *p4, *p5;
Dave Barach97d8dc22016-08-15 15:31:15 -0400193 p2 = vlib_get_buffer (vm, from[2]);
194 p3 = vlib_get_buffer (vm, from[3]);
Damjan Mariond30bf012018-11-18 23:48:43 +0100195 p4 = vlib_get_buffer (vm, from[4]);
196 p5 = vlib_get_buffer (vm, from[5]);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000197
Damjan Mariond30bf012018-11-18 23:48:43 +0100198 vlib_prefetch_buffer_header (p4, LOAD);
199 vlib_prefetch_buffer_header (p5, LOAD);
200 vlib_prefetch_buffer_data (p2, LOAD);
201 vlib_prefetch_buffer_data (p3, LOAD);
Dave Barach97d8dc22016-08-15 15:31:15 -0400202 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000203
Dave Barach97d8dc22016-08-15 15:31:15 -0400204 bi0 = from[0];
205 bi1 = from[1];
206 to_next[0] = bi0;
207 to_next[1] = bi1;
208 from += 2;
209 to_next += 2;
210 n_left_from -= 2;
211 n_left_to_next -= 2;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000212
Dave Barach97d8dc22016-08-15 15:31:15 -0400213 b0 = vlib_get_buffer (vm, bi0);
214 b1 = vlib_get_buffer (vm, bi1);
215 h0 = vlib_buffer_get_current (b0);
216 h1 = vlib_buffer_get_current (b1);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000217
Dave Barach97d8dc22016-08-15 15:31:15 -0400218 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
219 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
220 config0 = l2_rw_get_config (sw_if_index0); /*TODO: check sw_if_index0 value */
221 config1 = l2_rw_get_config (sw_if_index1); /*TODO: check sw_if_index0 value */
222 t0 = pool_elt_at_index (vcm->tables, config0->table_index);
223 t1 = pool_elt_at_index (vcm->tables, config1->table_index);
Pierre Pfister6b70c212016-05-13 07:47:06 +0100224
Dave Barach97d8dc22016-08-15 15:31:15 -0400225 hash0 = vnet_classify_hash_packet (t0, (u8 *) h0);
226 hash1 = vnet_classify_hash_packet (t1, (u8 *) h1);
227 e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now);
228 e1 = vnet_classify_find_entry (t1, (u8 *) h1, hash1, now);
Pierre Pfister6b70c212016-05-13 07:47:06 +0100229
Dave Barach97d8dc22016-08-15 15:31:15 -0400230 while (!e0 && (t0->next_table_index != ~0))
231 {
232 t0 = pool_elt_at_index (vcm->tables, t0->next_table_index);
233 hash0 = vnet_classify_hash_packet (t0, (u8 *) h0);
234 e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now);
235 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000236
Dave Barach97d8dc22016-08-15 15:31:15 -0400237 while (!e1 && (t1->next_table_index != ~0))
238 {
239 t1 = pool_elt_at_index (vcm->tables, t1->next_table_index);
240 hash1 = vnet_classify_hash_packet (t1, (u8 *) h1);
241 e1 = vnet_classify_find_entry (t1, (u8 *) h1, hash1, now);
242 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000243
Dave Barach97d8dc22016-08-15 15:31:15 -0400244 rwe_index0 = e0 ? e0->opaque_index : config0->miss_index;
245 rwe_index1 = e1 ? e1->opaque_index : config1->miss_index;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000246
Dave Barach97d8dc22016-08-15 15:31:15 -0400247 if (rwe_index0 != ~0)
248 {
249 rwe0 = pool_elt_at_index (rw->entries, rwe_index0);
250 l2_rw_rewrite (rwe0, (u8 *) h0);
251 }
252 if (rwe_index1 != ~0)
253 {
254 rwe1 = pool_elt_at_index (rw->entries, rwe_index1);
255 l2_rw_rewrite (rwe1, (u8 *) h1);
256 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000257
Dave Barach97d8dc22016-08-15 15:31:15 -0400258 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED)))
259 {
260 l2_rw_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
261 t->sw_if_index = sw_if_index0;
262 t->classify_table_index = config0->table_index;
263 t->rewrite_entry_index = rwe_index0;
264 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000265
Dave Barach97d8dc22016-08-15 15:31:15 -0400266 if (PREDICT_FALSE ((b1->flags & VLIB_BUFFER_IS_TRACED)))
267 {
268 l2_rw_trace_t *t = vlib_add_trace (vm, node, b1, sizeof (*t));
269 t->sw_if_index = sw_if_index1;
270 t->classify_table_index = config1->table_index;
271 t->rewrite_entry_index = rwe_index1;
272 }
273
274 /* Update feature bitmap and get next feature index */
John Lobeb0b2e2017-07-22 00:21:36 -0400275 next0 = vnet_l2_feature_next (b0, rw->feat_next_node_index,
276 L2INPUT_FEAT_RW);
277 next1 = vnet_l2_feature_next (b1, rw->feat_next_node_index,
278 L2INPUT_FEAT_RW);
Dave Barach97d8dc22016-08-15 15:31:15 -0400279
280 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
281 to_next, n_left_to_next,
282 bi0, bi1, next0, next1);
283 }
284
285 while (n_left_from > 0 && n_left_to_next > 0)
286 {
John Lobeb0b2e2017-07-22 00:21:36 -0400287 u32 bi0, next0, sw_if_index0, rwe_index0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400288 vlib_buffer_t *b0;
289 ethernet_header_t *h0;
290 l2_rw_config_t *config0;
291 u64 hash0;
292 vnet_classify_table_t *t0;
293 vnet_classify_entry_t *e0;
294 l2_rw_entry_t *rwe0;
295
296 bi0 = from[0];
297 to_next[0] = bi0;
298 from += 1;
299 to_next += 1;
300 n_left_from -= 1;
301 n_left_to_next -= 1;
302
303 b0 = vlib_get_buffer (vm, bi0);
304 h0 = vlib_buffer_get_current (b0);
305
306 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
307 config0 = l2_rw_get_config (sw_if_index0); /*TODO: check sw_if_index0 value */
308 t0 = pool_elt_at_index (vcm->tables, config0->table_index);
309
310 hash0 = vnet_classify_hash_packet (t0, (u8 *) h0);
311 e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now);
312
313 while (!e0 && (t0->next_table_index != ~0))
314 {
315 t0 = pool_elt_at_index (vcm->tables, t0->next_table_index);
316 hash0 = vnet_classify_hash_packet (t0, (u8 *) h0);
317 e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now);
318 }
319
320 rwe_index0 = e0 ? e0->opaque_index : config0->miss_index;
321
322 if (rwe_index0 != ~0)
323 {
324 rwe0 = pool_elt_at_index (rw->entries, rwe_index0);
325 l2_rw_rewrite (rwe0, (u8 *) h0);
326 }
327
328 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED)))
329 {
330 l2_rw_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
331 t->sw_if_index = sw_if_index0;
332 t->classify_table_index = config0->table_index;
333 t->rewrite_entry_index = rwe_index0;
334 }
335
336 /* Update feature bitmap and get next feature index */
John Lobeb0b2e2017-07-22 00:21:36 -0400337 next0 = vnet_l2_feature_next (b0, rw->feat_next_node_index,
338 L2INPUT_FEAT_RW);
Dave Barach97d8dc22016-08-15 15:31:15 -0400339
340 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
341 to_next, n_left_to_next,
342 bi0, next0);
343 }
344 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000345 }
346
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000347 return frame->n_vectors;
348}
349
Dave Barach97d8dc22016-08-15 15:31:15 -0400350int
351l2_rw_mod_entry (u32 * index,
352 u8 * mask, u8 * value, u32 len, u32 skip, u8 is_del)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000353{
354 l2_rw_main_t *rw = &l2_rw_main;
355 l2_rw_entry_t *e = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400356 if (*index != ~0)
357 {
358 if (pool_is_free_index (rw->entries, *index))
359 {
360 return -1;
361 }
362 e = pool_elt_at_index (rw->entries, *index);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000363 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400364 else
365 {
366 pool_get (rw->entries, e);
367 *index = e - rw->entries;
368 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000369
370 if (!e)
371 return -1;
372
Dave Barach97d8dc22016-08-15 15:31:15 -0400373 if (is_del)
374 {
375 pool_put (rw->entries, e);
376 return 0;
377 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000378
Dave Barach97d8dc22016-08-15 15:31:15 -0400379 e->skip_n_vectors = skip / sizeof (u32x4);
380 skip -= e->skip_n_vectors * sizeof (u32x4);
381 e->rewrite_n_vectors = (skip + len - 1) / sizeof (u32x4) + 1;
382 vec_alloc_aligned (e->mask, e->rewrite_n_vectors, sizeof (u32x4));
Dave Barachb7b92992018-10-17 10:38:51 -0400383 clib_memset (e->mask, 0, e->rewrite_n_vectors * sizeof (u32x4));
Dave Barach97d8dc22016-08-15 15:31:15 -0400384 vec_alloc_aligned (e->value, e->rewrite_n_vectors, sizeof (u32x4));
Dave Barachb7b92992018-10-17 10:38:51 -0400385 clib_memset (e->value, 0, e->rewrite_n_vectors * sizeof (u32x4));
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000386
Dave Barach97d8dc22016-08-15 15:31:15 -0400387 clib_memcpy (((u8 *) e->value) + skip, value, len);
388 clib_memcpy (((u8 *) e->mask) + skip, mask, len);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000389
390 int i;
Dave Barach97d8dc22016-08-15 15:31:15 -0400391 for (i = 0; i < e->rewrite_n_vectors; i++)
392 {
393 e->value[i] &= e->mask[i];
394 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000395
396 return 0;
397}
398
399static clib_error_t *
400l2_rw_entry_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400401 unformat_input_t * input, vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000402{
403 u32 index = ~0;
404 u8 *mask = 0;
405 u8 *value = 0;
406 u32 skip = 0;
407 u8 del = 0;
408
Dave Barach97d8dc22016-08-15 15:31:15 -0400409 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
410 {
411 if (unformat (input, "index %d", &index))
412 ;
413 else if (unformat (input, "mask %U", unformat_hex_string, &mask))
414 ;
415 else if (unformat (input, "value %U", unformat_hex_string, &value))
416 ;
417 else if (unformat (input, "skip %d", &skip))
418 ;
419 else if (unformat (input, "del"))
420 del = 1;
421 else
422 break;
423 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000424
425 if (!mask || !value)
Dave Barach97d8dc22016-08-15 15:31:15 -0400426 return clib_error_return (0, "Unspecified mask or value");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000427
Dave Barach97d8dc22016-08-15 15:31:15 -0400428 if (vec_len (mask) != vec_len (value))
429 return clib_error_return (0, "Mask and value lengths must be identical");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000430
431 int ret;
Dave Barach97d8dc22016-08-15 15:31:15 -0400432 if ((ret =
433 l2_rw_mod_entry (&index, mask, value, vec_len (mask), skip, del)))
434 return clib_error_return (0, "Could not add entry");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000435
436 return 0;
437}
438
Billy McFall22aa3e92016-09-09 08:46:40 -0400439/*?
440 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700441 * the provisioned mask and value, modifies the packet header.
Billy McFall22aa3e92016-09-09 08:46:40 -0400442 *
443 * @cliexpar
444 * @todo This is incomplete. This needs a detailed description and a
445 * practical example.
446?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400447/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000448VLIB_CLI_COMMAND (l2_rw_entry_cli, static) = {
449 .path = "l2 rewrite entry",
450 .short_help =
451 "l2 rewrite entry [index <index>] [mask <hex-mask>] [value <hex-value>] [skip <n_bytes>] [del]",
452 .function = l2_rw_entry_cli_fn,
453};
Dave Barach97d8dc22016-08-15 15:31:15 -0400454/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000455
Dave Barach97d8dc22016-08-15 15:31:15 -0400456int
457l2_rw_interface_set_table (u32 sw_if_index, u32 table_index, u32 miss_index)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000458{
Dave Barach97d8dc22016-08-15 15:31:15 -0400459 l2_rw_config_t *c = l2_rw_get_config (sw_if_index);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000460 l2_rw_main_t *rw = &l2_rw_main;
461
462 c->table_index = table_index;
463 c->miss_index = miss_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400464 u32 feature_bitmap = (table_index == ~0) ? 0 : L2INPUT_FEAT_RW;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000465
Dave Barach97d8dc22016-08-15 15:31:15 -0400466 l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_RW, feature_bitmap);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000467
468 if (c->table_index == ~0)
Dave Barach97d8dc22016-08-15 15:31:15 -0400469 clib_bitmap_set (rw->configs_bitmap, sw_if_index, 0);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000470
471 return 0;
472}
473
474static clib_error_t *
475l2_rw_interface_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400476 unformat_input_t * input, vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000477{
Dave Barach97d8dc22016-08-15 15:31:15 -0400478 vnet_main_t *vnm = vnet_get_main ();
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000479 u32 table_index = ~0;
480 u32 sw_if_index = ~0;
481 u32 miss_index = ~0;
482
Dave Barach97d8dc22016-08-15 15:31:15 -0400483 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
484 {
485 unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index);
486 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000487
Dave Barach97d8dc22016-08-15 15:31:15 -0400488 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
489 {
490 if (unformat (input, "table %d", &table_index))
491 ;
492 else if (unformat (input, "miss-index %d", &miss_index))
493 ;
494 else
495 break;
496 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000497
498 if (sw_if_index == ~0)
Dave Barach97d8dc22016-08-15 15:31:15 -0400499 return clib_error_return (0,
500 "You must specify an interface 'iface <interface>'",
501 format_unformat_error, input);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000502 int ret;
Dave Barach97d8dc22016-08-15 15:31:15 -0400503 if ((ret =
504 l2_rw_interface_set_table (sw_if_index, table_index, miss_index)))
505 return clib_error_return (0, "l2_rw_interface_set_table returned %d",
506 ret);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000507
508 return 0;
509}
510
Billy McFall22aa3e92016-09-09 08:46:40 -0400511/*?
512 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700513 * the provisioned mask and value, modifies the packet header.
Billy McFall22aa3e92016-09-09 08:46:40 -0400514 *
515 * @cliexpar
516 * @todo This is incomplete. This needs a detailed description and a
517 * practical example.
518?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400519/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000520VLIB_CLI_COMMAND (l2_rw_interface_cli, static) = {
521 .path = "set interface l2 rewrite",
522 .short_help =
523 "set interface l2 rewrite <interface> [table <table index>] [miss-index <entry-index>]",
524 .function = l2_rw_interface_cli_fn,
525};
Dave Barach97d8dc22016-08-15 15:31:15 -0400526/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000527
528static clib_error_t *
529l2_rw_show_interfaces_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400530 unformat_input_t * input,
531 vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000532{
533 l2_rw_main_t *rw = &l2_rw_main;
Dave Barach97d8dc22016-08-15 15:31:15 -0400534 if (clib_bitmap_count_set_bits (rw->configs_bitmap) == 0)
535 vlib_cli_output (vm, "No interface is currently using l2 rewrite\n");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000536
537 uword i;
Dave Barach97d8dc22016-08-15 15:31:15 -0400538 /* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000539 clib_bitmap_foreach(i, rw->configs_bitmap, {
540 vlib_cli_output (vm, "sw_if_index:%d %U\n", i, format_l2_rw_config, &rw->configs[i]);
541 });
Dave Barach97d8dc22016-08-15 15:31:15 -0400542 /* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000543 return 0;
544}
545
Billy McFall22aa3e92016-09-09 08:46:40 -0400546/*?
547 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700548 * the provisioned mask and value, modifies the packet header.
Billy McFall22aa3e92016-09-09 08:46:40 -0400549 *
550 * @cliexpar
551 * @todo This is incomplete. This needs a detailed description and a
552 * practical example.
553?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400554/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000555VLIB_CLI_COMMAND (l2_rw_show_interfaces_cli, static) = {
556 .path = "show l2 rewrite interfaces",
557 .short_help =
558 "show l2 rewrite interfaces",
559 .function = l2_rw_show_interfaces_cli_fn,
560};
Dave Barach97d8dc22016-08-15 15:31:15 -0400561/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000562
563static clib_error_t *
564l2_rw_show_entries_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400565 unformat_input_t * input, vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000566{
567 l2_rw_main_t *rw = &l2_rw_main;
568 l2_rw_entry_t *e;
Dave Barach97d8dc22016-08-15 15:31:15 -0400569 if (pool_elts (rw->entries) == 0)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000570 vlib_cli_output (vm, "No entries\n");
571
Dave Barach97d8dc22016-08-15 15:31:15 -0400572 /* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000573 pool_foreach(e, rw->entries, {
574 vlib_cli_output (vm, "%U\n", format_l2_rw_entry, e);
575 });
Dave Barach97d8dc22016-08-15 15:31:15 -0400576 /* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000577 return 0;
578}
579
Billy McFall22aa3e92016-09-09 08:46:40 -0400580/*?
581 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700582 * the provisioned mask and value, modifies the packet header.
Billy McFall22aa3e92016-09-09 08:46:40 -0400583 *
584 * @cliexpar
585 * @todo This is incomplete. This needs a detailed description and a
586 * practical example.
587?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400588/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000589VLIB_CLI_COMMAND (l2_rw_show_entries_cli, static) = {
590 .path = "show l2 rewrite entries",
591 .short_help =
592 "show l2 rewrite entries",
593 .function = l2_rw_show_entries_cli_fn,
594};
Dave Barach97d8dc22016-08-15 15:31:15 -0400595/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000596
597int
Dave Barach97d8dc22016-08-15 15:31:15 -0400598l2_rw_enable_disable (u32 bridge_domain, u8 disable)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000599{
600 u32 mask = L2INPUT_FEAT_RW;
Dave Barach97d8dc22016-08-15 15:31:15 -0400601 l2input_set_bridge_features (bridge_domain, mask, disable ? 0 : mask);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000602 return 0;
603}
604
605static clib_error_t *
606l2_rw_set_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400607 unformat_input_t * input, vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000608{
609 u32 bridge_domain;
610 u8 disable = 0;
611
Dave Barach97d8dc22016-08-15 15:31:15 -0400612 if (unformat_check_input (input) == UNFORMAT_END_OF_INPUT ||
613 !unformat (input, "%d", &bridge_domain))
614 {
615 return clib_error_return (0, "You must specify a bridge domain");
616 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000617
Dave Barach97d8dc22016-08-15 15:31:15 -0400618 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT &&
619 unformat (input, "disable"))
620 {
621 disable = 1;
622 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000623
Dave Barach97d8dc22016-08-15 15:31:15 -0400624 if (l2_rw_enable_disable (bridge_domain, disable))
625 return clib_error_return (0, "Could not enable or disable rewrite");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000626
627 return 0;
628}
629
Billy McFall22aa3e92016-09-09 08:46:40 -0400630/*?
631 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
632 * the provisioned mask and value, modfies the packet header.
633 *
634 * @cliexpar
635 * @todo This is incomplete. This needs a detailed description and a
636 * practical example.
637?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400638/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000639VLIB_CLI_COMMAND (l2_rw_set_cli, static) = {
640 .path = "set bridge-domain rewrite",
641 .short_help =
642 "set bridge-domain rewrite <bridge-domain> [disable]",
643 .function = l2_rw_set_cli_fn,
644};
Dave Barach97d8dc22016-08-15 15:31:15 -0400645/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000646
Dave Barach97d8dc22016-08-15 15:31:15 -0400647static clib_error_t *
648l2_rw_init (vlib_main_t * vm)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000649{
650 l2_rw_main_t *rw = &l2_rw_main;
651 rw->configs = 0;
652 rw->entries = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400653 clib_bitmap_alloc (rw->configs_bitmap, 1);
654 feat_bitmap_init_next_nodes (vm,
655 l2_rw_node.index,
656 L2INPUT_N_FEAT,
657 l2input_get_feat_names (),
658 rw->feat_next_node_index);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000659 return 0;
660}
Dave Barach97d8dc22016-08-15 15:31:15 -0400661
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000662VLIB_INIT_FUNCTION (l2_rw_init);
663
Dave Barach97d8dc22016-08-15 15:31:15 -0400664enum
665{
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000666 L2_RW_NEXT_DROP,
667 L2_RW_N_NEXT,
668};
669
670#define foreach_l2_rw_error \
671_(UNKNOWN, "Unknown error")
672
Dave Barach97d8dc22016-08-15 15:31:15 -0400673typedef enum
674{
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000675#define _(sym,str) L2_RW_ERROR_##sym,
676 foreach_l2_rw_error
677#undef _
Dave Barach97d8dc22016-08-15 15:31:15 -0400678 L2_RW_N_ERROR,
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000679} l2_rw_error_t;
680
Dave Barach97d8dc22016-08-15 15:31:15 -0400681static char *l2_rw_error_strings[] = {
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000682#define _(sym,string) string,
Dave Barach97d8dc22016-08-15 15:31:15 -0400683 foreach_l2_rw_error
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000684#undef _
685};
686
Dave Barach97d8dc22016-08-15 15:31:15 -0400687/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000688VLIB_REGISTER_NODE (l2_rw_node) = {
689 .function = l2_rw_node_fn,
690 .name = "l2-rw",
691 .vector_size = sizeof (u32),
692 .format_trace = format_l2_rw_trace,
693 .type = VLIB_NODE_TYPE_INTERNAL,
694 .n_errors = ARRAY_LEN(l2_rw_error_strings),
695 .error_strings = l2_rw_error_strings,
696 .runtime_data_bytes = 0,
697 .n_next_nodes = L2_RW_N_NEXT,
698 .next_nodes = { [L2_RW_NEXT_DROP] = "error-drop"},
699};
Dave Barach97d8dc22016-08-15 15:31:15 -0400700/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000701
Damjan Marion1c80e832016-05-11 23:07:18 +0200702VLIB_NODE_FUNCTION_MULTIARCH (l2_rw_node, l2_rw_node_fn)
Dave Barach97d8dc22016-08-15 15:31:15 -0400703/*
704 * fd.io coding-style-patch-verification: ON
705 *
706 * Local Variables:
707 * eval: (c-set-style "gnu")
708 * End:
709 */