blob: c54509d048bc1353ddee12d81c3965532b781a19 [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
25 * the provisioned mask and value, modfies the packet header.
26 */
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 u32 prefetch_size = 0;
168
169 from = vlib_frame_vector_args (frame);
Dave Barach97d8dc22016-08-15 15:31:15 -0400170 n_left_from = frame->n_vectors; /* number of packets to process */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000171 next_index = node->cached_next_index;
172
173 while (n_left_from > 0)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000174 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400175 u32 n_left_to_next;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000176
Dave Barach97d8dc22016-08-15 15:31:15 -0400177 /* get space to enqueue frame to graph node "next_index" */
178 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000179
Dave Barach97d8dc22016-08-15 15:31:15 -0400180 while (n_left_from >= 4 && n_left_to_next >= 2)
181 {
182 u32 bi0, next0, sw_if_index0, feature_bitmap0, rwe_index0;
183 u32 bi1, next1, sw_if_index1, feature_bitmap1, rwe_index1;
184 vlib_buffer_t *b0, *b1;
185 ethernet_header_t *h0, *h1;
186 l2_rw_config_t *config0, *config1;
187 u64 hash0, hash1;
188 vnet_classify_table_t *t0, *t1;
189 vnet_classify_entry_t *e0, *e1;
190 l2_rw_entry_t *rwe0, *rwe1;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000191
Dave Barach97d8dc22016-08-15 15:31:15 -0400192 {
193 vlib_buffer_t *p2, *p3;
194 p2 = vlib_get_buffer (vm, from[2]);
195 p3 = vlib_get_buffer (vm, from[3]);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000196
Dave Barach97d8dc22016-08-15 15:31:15 -0400197 vlib_prefetch_buffer_header (p2, LOAD);
198 vlib_prefetch_buffer_header (p3, LOAD);
199 CLIB_PREFETCH (vlib_buffer_get_current (p2), prefetch_size, LOAD);
200 CLIB_PREFETCH (vlib_buffer_get_current (p3), prefetch_size, LOAD);
201 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000202
Dave Barach97d8dc22016-08-15 15:31:15 -0400203 bi0 = from[0];
204 bi1 = from[1];
205 to_next[0] = bi0;
206 to_next[1] = bi1;
207 from += 2;
208 to_next += 2;
209 n_left_from -= 2;
210 n_left_to_next -= 2;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000211
Dave Barach97d8dc22016-08-15 15:31:15 -0400212 b0 = vlib_get_buffer (vm, bi0);
213 b1 = vlib_get_buffer (vm, bi1);
214 h0 = vlib_buffer_get_current (b0);
215 h1 = vlib_buffer_get_current (b1);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000216
Dave Barach97d8dc22016-08-15 15:31:15 -0400217 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
218 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
219 config0 = l2_rw_get_config (sw_if_index0); /*TODO: check sw_if_index0 value */
220 config1 = l2_rw_get_config (sw_if_index1); /*TODO: check sw_if_index0 value */
221 t0 = pool_elt_at_index (vcm->tables, config0->table_index);
222 t1 = pool_elt_at_index (vcm->tables, config1->table_index);
223 prefetch_size =
224 (t1->skip_n_vectors + t1->match_n_vectors) * sizeof (u32x4);
Pierre Pfister6b70c212016-05-13 07:47:06 +0100225
Dave Barach97d8dc22016-08-15 15:31:15 -0400226 hash0 = vnet_classify_hash_packet (t0, (u8 *) h0);
227 hash1 = vnet_classify_hash_packet (t1, (u8 *) h1);
228 e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now);
229 e1 = vnet_classify_find_entry (t1, (u8 *) h1, hash1, now);
Pierre Pfister6b70c212016-05-13 07:47:06 +0100230
Dave Barach97d8dc22016-08-15 15:31:15 -0400231 while (!e0 && (t0->next_table_index != ~0))
232 {
233 t0 = pool_elt_at_index (vcm->tables, t0->next_table_index);
234 hash0 = vnet_classify_hash_packet (t0, (u8 *) h0);
235 e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now);
236 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000237
Dave Barach97d8dc22016-08-15 15:31:15 -0400238 while (!e1 && (t1->next_table_index != ~0))
239 {
240 t1 = pool_elt_at_index (vcm->tables, t1->next_table_index);
241 hash1 = vnet_classify_hash_packet (t1, (u8 *) h1);
242 e1 = vnet_classify_find_entry (t1, (u8 *) h1, hash1, now);
243 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000244
Dave Barach97d8dc22016-08-15 15:31:15 -0400245 rwe_index0 = e0 ? e0->opaque_index : config0->miss_index;
246 rwe_index1 = e1 ? e1->opaque_index : config1->miss_index;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000247
Dave Barach97d8dc22016-08-15 15:31:15 -0400248 if (rwe_index0 != ~0)
249 {
250 rwe0 = pool_elt_at_index (rw->entries, rwe_index0);
251 l2_rw_rewrite (rwe0, (u8 *) h0);
252 }
253 if (rwe_index1 != ~0)
254 {
255 rwe1 = pool_elt_at_index (rw->entries, rwe_index1);
256 l2_rw_rewrite (rwe1, (u8 *) h1);
257 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000258
Dave Barach97d8dc22016-08-15 15:31:15 -0400259 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED)))
260 {
261 l2_rw_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
262 t->sw_if_index = sw_if_index0;
263 t->classify_table_index = config0->table_index;
264 t->rewrite_entry_index = rwe_index0;
265 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000266
Dave Barach97d8dc22016-08-15 15:31:15 -0400267 if (PREDICT_FALSE ((b1->flags & VLIB_BUFFER_IS_TRACED)))
268 {
269 l2_rw_trace_t *t = vlib_add_trace (vm, node, b1, sizeof (*t));
270 t->sw_if_index = sw_if_index1;
271 t->classify_table_index = config1->table_index;
272 t->rewrite_entry_index = rwe_index1;
273 }
274
275 /* Update feature bitmap and get next feature index */
276 feature_bitmap0 =
277 vnet_buffer (b0)->l2.feature_bitmap & ~L2INPUT_FEAT_RW;
278 feature_bitmap1 =
279 vnet_buffer (b1)->l2.feature_bitmap & ~L2INPUT_FEAT_RW;
280 vnet_buffer (b0)->l2.feature_bitmap = feature_bitmap0;
281 vnet_buffer (b1)->l2.feature_bitmap = feature_bitmap1;
282 next0 = feat_bitmap_get_next_node_index (rw->feat_next_node_index,
283 feature_bitmap0);
284 next1 = feat_bitmap_get_next_node_index (rw->feat_next_node_index,
285 feature_bitmap1);
286
287 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
288 to_next, n_left_to_next,
289 bi0, bi1, next0, next1);
290 }
291
292 while (n_left_from > 0 && n_left_to_next > 0)
293 {
294 u32 bi0, next0, sw_if_index0, feature_bitmap0, rwe_index0;
295 vlib_buffer_t *b0;
296 ethernet_header_t *h0;
297 l2_rw_config_t *config0;
298 u64 hash0;
299 vnet_classify_table_t *t0;
300 vnet_classify_entry_t *e0;
301 l2_rw_entry_t *rwe0;
302
303 bi0 = from[0];
304 to_next[0] = bi0;
305 from += 1;
306 to_next += 1;
307 n_left_from -= 1;
308 n_left_to_next -= 1;
309
310 b0 = vlib_get_buffer (vm, bi0);
311 h0 = vlib_buffer_get_current (b0);
312
313 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
314 config0 = l2_rw_get_config (sw_if_index0); /*TODO: check sw_if_index0 value */
315 t0 = pool_elt_at_index (vcm->tables, config0->table_index);
316
317 hash0 = vnet_classify_hash_packet (t0, (u8 *) h0);
318 e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now);
319
320 while (!e0 && (t0->next_table_index != ~0))
321 {
322 t0 = pool_elt_at_index (vcm->tables, t0->next_table_index);
323 hash0 = vnet_classify_hash_packet (t0, (u8 *) h0);
324 e0 = vnet_classify_find_entry (t0, (u8 *) h0, hash0, now);
325 }
326
327 rwe_index0 = e0 ? e0->opaque_index : config0->miss_index;
328
329 if (rwe_index0 != ~0)
330 {
331 rwe0 = pool_elt_at_index (rw->entries, rwe_index0);
332 l2_rw_rewrite (rwe0, (u8 *) h0);
333 }
334
335 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED)))
336 {
337 l2_rw_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
338 t->sw_if_index = sw_if_index0;
339 t->classify_table_index = config0->table_index;
340 t->rewrite_entry_index = rwe_index0;
341 }
342
343 /* Update feature bitmap and get next feature index */
344 feature_bitmap0 =
345 vnet_buffer (b0)->l2.feature_bitmap & ~L2INPUT_FEAT_RW;
346 vnet_buffer (b0)->l2.feature_bitmap = feature_bitmap0;
347 next0 = feat_bitmap_get_next_node_index (rw->feat_next_node_index,
348 feature_bitmap0);
349
350 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
351 to_next, n_left_to_next,
352 bi0, next0);
353 }
354 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000355 }
356
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000357 return frame->n_vectors;
358}
359
Dave Barach97d8dc22016-08-15 15:31:15 -0400360int
361l2_rw_mod_entry (u32 * index,
362 u8 * mask, u8 * value, u32 len, u32 skip, u8 is_del)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000363{
364 l2_rw_main_t *rw = &l2_rw_main;
365 l2_rw_entry_t *e = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400366 if (*index != ~0)
367 {
368 if (pool_is_free_index (rw->entries, *index))
369 {
370 return -1;
371 }
372 e = pool_elt_at_index (rw->entries, *index);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000373 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400374 else
375 {
376 pool_get (rw->entries, e);
377 *index = e - rw->entries;
378 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000379
380 if (!e)
381 return -1;
382
Dave Barach97d8dc22016-08-15 15:31:15 -0400383 if (is_del)
384 {
385 pool_put (rw->entries, e);
386 return 0;
387 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000388
Dave Barach97d8dc22016-08-15 15:31:15 -0400389 e->skip_n_vectors = skip / sizeof (u32x4);
390 skip -= e->skip_n_vectors * sizeof (u32x4);
391 e->rewrite_n_vectors = (skip + len - 1) / sizeof (u32x4) + 1;
392 vec_alloc_aligned (e->mask, e->rewrite_n_vectors, sizeof (u32x4));
393 memset (e->mask, 0, e->rewrite_n_vectors * sizeof (u32x4));
394 vec_alloc_aligned (e->value, e->rewrite_n_vectors, sizeof (u32x4));
395 memset (e->value, 0, e->rewrite_n_vectors * sizeof (u32x4));
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000396
Dave Barach97d8dc22016-08-15 15:31:15 -0400397 clib_memcpy (((u8 *) e->value) + skip, value, len);
398 clib_memcpy (((u8 *) e->mask) + skip, mask, len);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000399
400 int i;
Dave Barach97d8dc22016-08-15 15:31:15 -0400401 for (i = 0; i < e->rewrite_n_vectors; i++)
402 {
403 e->value[i] &= e->mask[i];
404 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000405
406 return 0;
407}
408
409static clib_error_t *
410l2_rw_entry_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400411 unformat_input_t * input, vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000412{
413 u32 index = ~0;
414 u8 *mask = 0;
415 u8 *value = 0;
416 u32 skip = 0;
417 u8 del = 0;
418
Dave Barach97d8dc22016-08-15 15:31:15 -0400419 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
420 {
421 if (unformat (input, "index %d", &index))
422 ;
423 else if (unformat (input, "mask %U", unformat_hex_string, &mask))
424 ;
425 else if (unformat (input, "value %U", unformat_hex_string, &value))
426 ;
427 else if (unformat (input, "skip %d", &skip))
428 ;
429 else if (unformat (input, "del"))
430 del = 1;
431 else
432 break;
433 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000434
435 if (!mask || !value)
Dave Barach97d8dc22016-08-15 15:31:15 -0400436 return clib_error_return (0, "Unspecified mask or value");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000437
Dave Barach97d8dc22016-08-15 15:31:15 -0400438 if (vec_len (mask) != vec_len (value))
439 return clib_error_return (0, "Mask and value lengths must be identical");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000440
441 int ret;
Dave Barach97d8dc22016-08-15 15:31:15 -0400442 if ((ret =
443 l2_rw_mod_entry (&index, mask, value, vec_len (mask), skip, del)))
444 return clib_error_return (0, "Could not add entry");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000445
446 return 0;
447}
448
Billy McFall22aa3e92016-09-09 08:46:40 -0400449/*?
450 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
451 * the provisioned mask and value, modfies the packet header.
452 *
453 * @cliexpar
454 * @todo This is incomplete. This needs a detailed description and a
455 * practical example.
456?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400457/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000458VLIB_CLI_COMMAND (l2_rw_entry_cli, static) = {
459 .path = "l2 rewrite entry",
460 .short_help =
461 "l2 rewrite entry [index <index>] [mask <hex-mask>] [value <hex-value>] [skip <n_bytes>] [del]",
462 .function = l2_rw_entry_cli_fn,
463};
Dave Barach97d8dc22016-08-15 15:31:15 -0400464/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000465
Dave Barach97d8dc22016-08-15 15:31:15 -0400466int
467l2_rw_interface_set_table (u32 sw_if_index, u32 table_index, u32 miss_index)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000468{
Dave Barach97d8dc22016-08-15 15:31:15 -0400469 l2_rw_config_t *c = l2_rw_get_config (sw_if_index);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000470 l2_rw_main_t *rw = &l2_rw_main;
471
472 c->table_index = table_index;
473 c->miss_index = miss_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400474 u32 feature_bitmap = (table_index == ~0) ? 0 : L2INPUT_FEAT_RW;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000475
Dave Barach97d8dc22016-08-15 15:31:15 -0400476 l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_RW, feature_bitmap);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000477
478 if (c->table_index == ~0)
Dave Barach97d8dc22016-08-15 15:31:15 -0400479 clib_bitmap_set (rw->configs_bitmap, sw_if_index, 0);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000480
481 return 0;
482}
483
484static clib_error_t *
485l2_rw_interface_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400486 unformat_input_t * input, vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000487{
Dave Barach97d8dc22016-08-15 15:31:15 -0400488 vnet_main_t *vnm = vnet_get_main ();
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000489 u32 table_index = ~0;
490 u32 sw_if_index = ~0;
491 u32 miss_index = ~0;
492
Dave Barach97d8dc22016-08-15 15:31:15 -0400493 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
494 {
495 unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index);
496 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000497
Dave Barach97d8dc22016-08-15 15:31:15 -0400498 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
499 {
500 if (unformat (input, "table %d", &table_index))
501 ;
502 else if (unformat (input, "miss-index %d", &miss_index))
503 ;
504 else
505 break;
506 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000507
508 if (sw_if_index == ~0)
Dave Barach97d8dc22016-08-15 15:31:15 -0400509 return clib_error_return (0,
510 "You must specify an interface 'iface <interface>'",
511 format_unformat_error, input);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000512 int ret;
Dave Barach97d8dc22016-08-15 15:31:15 -0400513 if ((ret =
514 l2_rw_interface_set_table (sw_if_index, table_index, miss_index)))
515 return clib_error_return (0, "l2_rw_interface_set_table returned %d",
516 ret);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000517
518 return 0;
519}
520
Billy McFall22aa3e92016-09-09 08:46:40 -0400521/*?
522 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
523 * the provisioned mask and value, modfies the packet header.
524 *
525 * @cliexpar
526 * @todo This is incomplete. This needs a detailed description and a
527 * practical example.
528?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400529/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000530VLIB_CLI_COMMAND (l2_rw_interface_cli, static) = {
531 .path = "set interface l2 rewrite",
532 .short_help =
533 "set interface l2 rewrite <interface> [table <table index>] [miss-index <entry-index>]",
534 .function = l2_rw_interface_cli_fn,
535};
Dave Barach97d8dc22016-08-15 15:31:15 -0400536/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000537
538static clib_error_t *
539l2_rw_show_interfaces_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400540 unformat_input_t * input,
541 vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000542{
543 l2_rw_main_t *rw = &l2_rw_main;
Dave Barach97d8dc22016-08-15 15:31:15 -0400544 if (clib_bitmap_count_set_bits (rw->configs_bitmap) == 0)
545 vlib_cli_output (vm, "No interface is currently using l2 rewrite\n");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000546
547 uword i;
Dave Barach97d8dc22016-08-15 15:31:15 -0400548 /* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000549 clib_bitmap_foreach(i, rw->configs_bitmap, {
550 vlib_cli_output (vm, "sw_if_index:%d %U\n", i, format_l2_rw_config, &rw->configs[i]);
551 });
Dave Barach97d8dc22016-08-15 15:31:15 -0400552 /* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000553 return 0;
554}
555
Billy McFall22aa3e92016-09-09 08:46:40 -0400556/*?
557 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
558 * the provisioned mask and value, modfies the packet header.
559 *
560 * @cliexpar
561 * @todo This is incomplete. This needs a detailed description and a
562 * practical example.
563?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400564/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000565VLIB_CLI_COMMAND (l2_rw_show_interfaces_cli, static) = {
566 .path = "show l2 rewrite interfaces",
567 .short_help =
568 "show l2 rewrite interfaces",
569 .function = l2_rw_show_interfaces_cli_fn,
570};
Dave Barach97d8dc22016-08-15 15:31:15 -0400571/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000572
573static clib_error_t *
574l2_rw_show_entries_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400575 unformat_input_t * input, vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000576{
577 l2_rw_main_t *rw = &l2_rw_main;
578 l2_rw_entry_t *e;
Dave Barach97d8dc22016-08-15 15:31:15 -0400579 if (pool_elts (rw->entries) == 0)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000580 vlib_cli_output (vm, "No entries\n");
581
Dave Barach97d8dc22016-08-15 15:31:15 -0400582 /* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000583 pool_foreach(e, rw->entries, {
584 vlib_cli_output (vm, "%U\n", format_l2_rw_entry, e);
585 });
Dave Barach97d8dc22016-08-15 15:31:15 -0400586 /* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000587 return 0;
588}
589
Billy McFall22aa3e92016-09-09 08:46:40 -0400590/*?
591 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
592 * the provisioned mask and value, modfies the packet header.
593 *
594 * @cliexpar
595 * @todo This is incomplete. This needs a detailed description and a
596 * practical example.
597?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400598/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000599VLIB_CLI_COMMAND (l2_rw_show_entries_cli, static) = {
600 .path = "show l2 rewrite entries",
601 .short_help =
602 "show l2 rewrite entries",
603 .function = l2_rw_show_entries_cli_fn,
604};
Dave Barach97d8dc22016-08-15 15:31:15 -0400605/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000606
607int
Dave Barach97d8dc22016-08-15 15:31:15 -0400608l2_rw_enable_disable (u32 bridge_domain, u8 disable)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000609{
610 u32 mask = L2INPUT_FEAT_RW;
Dave Barach97d8dc22016-08-15 15:31:15 -0400611 l2input_set_bridge_features (bridge_domain, mask, disable ? 0 : mask);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000612 return 0;
613}
614
615static clib_error_t *
616l2_rw_set_cli_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400617 unformat_input_t * input, vlib_cli_command_t * cmd)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000618{
619 u32 bridge_domain;
620 u8 disable = 0;
621
Dave Barach97d8dc22016-08-15 15:31:15 -0400622 if (unformat_check_input (input) == UNFORMAT_END_OF_INPUT ||
623 !unformat (input, "%d", &bridge_domain))
624 {
625 return clib_error_return (0, "You must specify a bridge domain");
626 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000627
Dave Barach97d8dc22016-08-15 15:31:15 -0400628 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT &&
629 unformat (input, "disable"))
630 {
631 disable = 1;
632 }
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000633
Dave Barach97d8dc22016-08-15 15:31:15 -0400634 if (l2_rw_enable_disable (bridge_domain, disable))
635 return clib_error_return (0, "Could not enable or disable rewrite");
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000636
637 return 0;
638}
639
Billy McFall22aa3e92016-09-09 08:46:40 -0400640/*?
641 * Layer 2-Rewrite node uses classify tables to match packets. Then, using
642 * the provisioned mask and value, modfies the packet header.
643 *
644 * @cliexpar
645 * @todo This is incomplete. This needs a detailed description and a
646 * practical example.
647?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400648/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000649VLIB_CLI_COMMAND (l2_rw_set_cli, static) = {
650 .path = "set bridge-domain rewrite",
651 .short_help =
652 "set bridge-domain rewrite <bridge-domain> [disable]",
653 .function = l2_rw_set_cli_fn,
654};
Dave Barach97d8dc22016-08-15 15:31:15 -0400655/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000656
Dave Barach97d8dc22016-08-15 15:31:15 -0400657static clib_error_t *
658l2_rw_init (vlib_main_t * vm)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000659{
660 l2_rw_main_t *rw = &l2_rw_main;
661 rw->configs = 0;
662 rw->entries = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400663 clib_bitmap_alloc (rw->configs_bitmap, 1);
664 feat_bitmap_init_next_nodes (vm,
665 l2_rw_node.index,
666 L2INPUT_N_FEAT,
667 l2input_get_feat_names (),
668 rw->feat_next_node_index);
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000669 return 0;
670}
Dave Barach97d8dc22016-08-15 15:31:15 -0400671
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000672VLIB_INIT_FUNCTION (l2_rw_init);
673
Dave Barach97d8dc22016-08-15 15:31:15 -0400674enum
675{
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000676 L2_RW_NEXT_DROP,
677 L2_RW_N_NEXT,
678};
679
680#define foreach_l2_rw_error \
681_(UNKNOWN, "Unknown error")
682
Dave Barach97d8dc22016-08-15 15:31:15 -0400683typedef enum
684{
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000685#define _(sym,str) L2_RW_ERROR_##sym,
686 foreach_l2_rw_error
687#undef _
Dave Barach97d8dc22016-08-15 15:31:15 -0400688 L2_RW_N_ERROR,
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000689} l2_rw_error_t;
690
Dave Barach97d8dc22016-08-15 15:31:15 -0400691static char *l2_rw_error_strings[] = {
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000692#define _(sym,string) string,
Dave Barach97d8dc22016-08-15 15:31:15 -0400693 foreach_l2_rw_error
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000694#undef _
695};
696
Dave Barach97d8dc22016-08-15 15:31:15 -0400697/* *INDENT-OFF* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000698VLIB_REGISTER_NODE (l2_rw_node) = {
699 .function = l2_rw_node_fn,
700 .name = "l2-rw",
701 .vector_size = sizeof (u32),
702 .format_trace = format_l2_rw_trace,
703 .type = VLIB_NODE_TYPE_INTERNAL,
704 .n_errors = ARRAY_LEN(l2_rw_error_strings),
705 .error_strings = l2_rw_error_strings,
706 .runtime_data_bytes = 0,
707 .n_next_nodes = L2_RW_N_NEXT,
708 .next_nodes = { [L2_RW_NEXT_DROP] = "error-drop"},
709};
Dave Barach97d8dc22016-08-15 15:31:15 -0400710/* *INDENT-ON* */
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000711
Damjan Marion1c80e832016-05-11 23:07:18 +0200712VLIB_NODE_FUNCTION_MULTIARCH (l2_rw_node, l2_rw_node_fn)
Dave Barach97d8dc22016-08-15 15:31:15 -0400713/*
714 * fd.io coding-style-patch-verification: ON
715 *
716 * Local Variables:
717 * eval: (c-set-style "gnu")
718 * End:
719 */