blob: 5697fb6a8ae64c8ff9c9cc286627f38a15f4cd84 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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#include <vlib/vlib.h>
16#include <vnet/vnet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070017#include <vnet/ethernet/ethernet.h>
Damjan Marion22311502016-10-28 20:30:15 +020018#include <vnet/feature/feature.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070019#include <vppinfra/error.h>
20
Dave Barach97d8dc22016-08-15 15:31:15 -040021typedef struct
22{
Ed Warnickecb9cada2015-12-08 15:45:58 -070023 /* vector of dispositions, indexed by rx_sw_if_index */
24 u32 *tx_next_by_rx_sw_if_index;
25 u32 *tx_sw_if_index_by_rx_sw_if_index;
26
27 /* convenience variables */
Dave Barach97d8dc22016-08-15 15:31:15 -040028 vlib_main_t *vlib_main;
29 vnet_main_t *vnet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070030} l2_patch_main_t;
31
Dave Barach97d8dc22016-08-15 15:31:15 -040032typedef struct
33{
Ed Warnickecb9cada2015-12-08 15:45:58 -070034 u32 rx_sw_if_index;
35 u32 tx_sw_if_index;
36} l2_patch_trace_t;
37
38/* packet trace format function */
Dave Barach97d8dc22016-08-15 15:31:15 -040039static u8 *
40format_l2_patch_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070041{
42 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
43 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barach97d8dc22016-08-15 15:31:15 -040044 l2_patch_trace_t *t = va_arg (*args, l2_patch_trace_t *);
45
Ed Warnickecb9cada2015-12-08 15:45:58 -070046 s = format (s, "L2_PATCH: rx %d tx %d", t->rx_sw_if_index,
Dave Barach97d8dc22016-08-15 15:31:15 -040047 t->tx_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070048 return s;
49}
50
Vratko Polak3be93512019-11-21 10:29:40 +010051#ifndef CLIB_MARCH_VARIANT
52l2_patch_main_t l2_patch_main;
53#else
54extern l2_patch_main_t l2_patch_main;
55#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Damjan Mariond770cfc2019-09-02 19:00:33 +020057extern vlib_node_registration_t l2_patch_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
59#define foreach_l2_patch_error \
60_(PATCHED, "L2 patch packets") \
61_(DROPPED, "L2 patch misconfigured drops")
62
Dave Barach97d8dc22016-08-15 15:31:15 -040063typedef enum
64{
Ed Warnickecb9cada2015-12-08 15:45:58 -070065#define _(sym,str) L2_PATCH_ERROR_##sym,
66 foreach_l2_patch_error
67#undef _
Dave Barach97d8dc22016-08-15 15:31:15 -040068 L2_PATCH_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070069} l2_patch_error_t;
70
Dave Barach97d8dc22016-08-15 15:31:15 -040071static char *l2_patch_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070072#define _(sym,string) string,
73 foreach_l2_patch_error
74#undef _
75};
76
Dave Barach97d8dc22016-08-15 15:31:15 -040077typedef enum
78{
Ed Warnickecb9cada2015-12-08 15:45:58 -070079 L2_PATCH_NEXT_DROP,
80 L2_PATCH_N_NEXT,
81} l2_patch_next_t;
82
Damjan Marionc3baf622018-11-06 13:33:27 +010083static_always_inline void
84l2_patch_trace (vlib_main_t * vm, vlib_node_runtime_t * node,
85 l2_patch_main_t * l2pm, vlib_buffer_t * b, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070086{
Damjan Marionc3baf622018-11-06 13:33:27 +010087 l2_patch_trace_t *t;
88
89 if ((b->flags & VLIB_BUFFER_IS_TRACED) == 0)
90 return;
91
92 t = vlib_add_trace (vm, node, b, sizeof (*t));
93 t->rx_sw_if_index = sw_if_index;
94 t->tx_sw_if_index = l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index];
95}
96
97static_always_inline void
98l2_patch_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
99 l2_patch_main_t * l2pm, vlib_buffer_t ** b, u16 * next,
100 u32 n_left, int do_trace)
101{
102 u32 sw_if_index[4];
103
104 while (n_left >= 4)
105 {
106 /* Prefetch next iteration. */
107 if (n_left >= 8)
108 {
109 vlib_buffer_t **p = b + 4;
110 vlib_prefetch_buffer_header (p[0], LOAD);
111 vlib_prefetch_buffer_header (p[1], LOAD);
112 vlib_prefetch_buffer_header (p[2], LOAD);
113 vlib_prefetch_buffer_header (p[3], LOAD);
114 }
115
116 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
117 sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_RX];
118 sw_if_index[2] = vnet_buffer (b[2])->sw_if_index[VLIB_RX];
119 sw_if_index[3] = vnet_buffer (b[3])->sw_if_index[VLIB_RX];
120
121 ASSERT (l2pm->tx_next_by_rx_sw_if_index[sw_if_index[0]] != ~0);
122 ASSERT (l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[0]] != ~0);
123 ASSERT (l2pm->tx_next_by_rx_sw_if_index[sw_if_index[1]] != ~0);
124 ASSERT (l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[1]] != ~0);
125 ASSERT (l2pm->tx_next_by_rx_sw_if_index[sw_if_index[2]] != ~0);
126 ASSERT (l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[2]] != ~0);
127 ASSERT (l2pm->tx_next_by_rx_sw_if_index[sw_if_index[3]] != ~0);
128 ASSERT (l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[3]] != ~0);
129
130 next[0] = l2pm->tx_next_by_rx_sw_if_index[sw_if_index[0]];
131 next[1] = l2pm->tx_next_by_rx_sw_if_index[sw_if_index[1]];
132 next[2] = l2pm->tx_next_by_rx_sw_if_index[sw_if_index[2]];
133 next[3] = l2pm->tx_next_by_rx_sw_if_index[sw_if_index[3]];
134
135 vnet_buffer (b[0])->sw_if_index[VLIB_TX] =
136 l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[0]];
137 vnet_buffer (b[1])->sw_if_index[VLIB_TX] =
138 l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[1]];
139 vnet_buffer (b[2])->sw_if_index[VLIB_TX] =
140 l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[2]];
141 vnet_buffer (b[3])->sw_if_index[VLIB_TX] =
142 l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[3]];
143
144 if (do_trace)
145 {
146 l2_patch_trace (vm, node, l2pm, b[0], sw_if_index[0]);
147 l2_patch_trace (vm, node, l2pm, b[1], sw_if_index[1]);
148 l2_patch_trace (vm, node, l2pm, b[2], sw_if_index[2]);
149 l2_patch_trace (vm, node, l2pm, b[3], sw_if_index[3]);
150 }
151
152 /* next */
153 next += 4;
154 b += 4;
155 n_left -= 4;
156 }
157
158 while (n_left)
159 {
160 sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
161
162 ASSERT (l2pm->tx_next_by_rx_sw_if_index[sw_if_index[0]] != ~0);
163 ASSERT (l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[0]] != ~0);
164
165 next[0] = l2pm->tx_next_by_rx_sw_if_index[sw_if_index[0]];
166
167 vnet_buffer (b[0])->sw_if_index[VLIB_TX] =
168 l2pm->tx_sw_if_index_by_rx_sw_if_index[sw_if_index[0]];
169
170 if (do_trace)
171 l2_patch_trace (vm, node, l2pm, b[0], sw_if_index[0]);
172
173 /* next */
174 next += 1;
175 b += 1;
176 n_left -= 1;
177 }
178}
179
180VLIB_NODE_FN (l2_patch_node) (vlib_main_t * vm,
181 vlib_node_runtime_t * node,
182 vlib_frame_t * frame)
183{
184 u32 *from;
Dave Barach97d8dc22016-08-15 15:31:15 -0400185 l2_patch_main_t *l2pm = &l2_patch_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186 vlib_node_t *n = vlib_get_node (vm, l2_patch_node.index);
187 u32 node_counter_base_index = n->error_heap_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400188 vlib_error_main_t *em = &vm->error_main;
Damjan Marionc3baf622018-11-06 13:33:27 +0100189 vlib_buffer_t *bufs[VLIB_FRAME_SIZE];
190 u16 nexts[VLIB_FRAME_SIZE];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
192 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
Damjan Marionc3baf622018-11-06 13:33:27 +0100194 vlib_get_buffers (vm, from, bufs, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
Damjan Marionc3baf622018-11-06 13:33:27 +0100196 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
197 l2_patch_inline (vm, node, l2pm, bufs, nexts, frame->n_vectors, 1);
198 else
199 l2_patch_inline (vm, node, l2pm, bufs, nexts, frame->n_vectors, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Damjan Marionc3baf622018-11-06 13:33:27 +0100201 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Dave Barach97d8dc22016-08-15 15:31:15 -0400203 em->counters[node_counter_base_index + L2_PATCH_ERROR_PATCHED] +=
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204 frame->n_vectors;
205
206 return frame->n_vectors;
207}
208
Dave Barach97d8dc22016-08-15 15:31:15 -0400209/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +0200210VLIB_REGISTER_NODE (l2_patch_node) = {
Damjan Mariond5c9d6f2016-10-31 23:21:46 +0100211 .name = "l2-patch",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 .vector_size = sizeof (u32),
213 .format_trace = format_l2_patch_trace,
214 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barach97d8dc22016-08-15 15:31:15 -0400215
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 .n_errors = ARRAY_LEN(l2_patch_error_strings),
217 .error_strings = l2_patch_error_strings,
218
219 .n_next_nodes = L2_PATCH_N_NEXT,
220
221 /* edit / add dispositions here */
222 .next_nodes = {
223 [L2_PATCH_NEXT_DROP] = "error-drop",
224 },
225};
Dave Barach97d8dc22016-08-15 15:31:15 -0400226/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227
Damjan Marionc3baf622018-11-06 13:33:27 +0100228extern int
229vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index, int is_add);
230#ifndef CLIB_MARCH_VARIANT
231int
232vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index, int is_add)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233{
Dave Barach97d8dc22016-08-15 15:31:15 -0400234 l2_patch_main_t *l2pm = &l2_patch_main;
235 vnet_hw_interface_t *rxhi, *txhi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 u32 tx_next_index;
237
Dave Barach97d8dc22016-08-15 15:31:15 -0400238 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 * We assume that the API msg handler has used 2x VALIDATE_SW_IF_INDEX
240 * macros...
241 */
242
243 rxhi = vnet_get_sup_hw_interface (l2pm->vnet_main, rx_sw_if_index);
244
245 /* Make sure caller didn't pass a vlan subif, etc. */
246 if (rxhi->sw_if_index != rx_sw_if_index)
247 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
248
249 txhi = vnet_get_sup_hw_interface (l2pm->vnet_main, tx_sw_if_index);
250 if (txhi->sw_if_index != tx_sw_if_index)
251 return VNET_API_ERROR_INVALID_SW_IF_INDEX_2;
252
253 if (is_add)
254 {
255 tx_next_index = vlib_node_add_next (l2pm->vlib_main,
Dave Barach97d8dc22016-08-15 15:31:15 -0400256 l2_patch_node.index,
257 txhi->output_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258
259 vec_validate_init_empty (l2pm->tx_next_by_rx_sw_if_index,
260 rx_sw_if_index, ~0);
Dave Barach97d8dc22016-08-15 15:31:15 -0400261
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262 l2pm->tx_next_by_rx_sw_if_index[rx_sw_if_index] = tx_next_index;
263 vec_validate_init_empty (l2pm->tx_sw_if_index_by_rx_sw_if_index,
264 rx_sw_if_index, ~0);
Dave Barach97d8dc22016-08-15 15:31:15 -0400265 l2pm->tx_sw_if_index_by_rx_sw_if_index[rx_sw_if_index]
266 = txhi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267
Dave Barach97d8dc22016-08-15 15:31:15 -0400268 ethernet_set_flags (l2pm->vnet_main, rxhi->hw_if_index,
269 ETHERNET_INTERFACE_FLAG_ACCEPT_ALL);
270
Damjan Marion22311502016-10-28 20:30:15 +0200271 vnet_feature_enable_disable ("device-input", "l2-patch",
John Lof415a3b2020-05-14 15:02:16 -0400272 rxhi->sw_if_index, 1, 0, 0);
Damjan Marion38c61912023-10-17 16:06:26 +0000273 vnet_feature_enable_disable ("port-rx-eth", "l2-patch",
274 rxhi->sw_if_index, 1, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 }
276 else
277 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400278 ethernet_set_flags (l2pm->vnet_main, rxhi->hw_if_index,
John Lof415a3b2020-05-14 15:02:16 -0400279 /*ETHERNET_INTERFACE_FLAG_DEFAULT_L3 */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280
Damjan Marion22311502016-10-28 20:30:15 +0200281 vnet_feature_enable_disable ("device-input", "l2-patch",
John Lof415a3b2020-05-14 15:02:16 -0400282 rxhi->sw_if_index, 0, 0, 0);
Damjan Marion38c61912023-10-17 16:06:26 +0000283 vnet_feature_enable_disable ("port-rx-eth", "l2-patch",
284 rxhi->sw_if_index, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 if (vec_len (l2pm->tx_next_by_rx_sw_if_index) > rx_sw_if_index)
Dave Barach97d8dc22016-08-15 15:31:15 -0400286 {
287 l2pm->tx_next_by_rx_sw_if_index[rx_sw_if_index] = ~0;
288 l2pm->tx_sw_if_index_by_rx_sw_if_index[rx_sw_if_index] = ~0;
289 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400291
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 return 0;
293}
Damjan Marionc3baf622018-11-06 13:33:27 +0100294#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295
296static clib_error_t *
297test_patch_command_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400298 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299{
Dave Barach97d8dc22016-08-15 15:31:15 -0400300 l2_patch_main_t *l2pm = &l2_patch_main;
301 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302 u32 rx_sw_if_index, tx_sw_if_index;
303 int rv;
304 int rx_set = 0;
305 int tx_set = 0;
306 int is_add = 1;
Billy McFalla9a20e72017-02-15 11:39:12 -0500307 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308
309 /* Get a line of input. */
Dave Barach97d8dc22016-08-15 15:31:15 -0400310 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311 return 0;
312
313 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
314 {
315 if (unformat (line_input, "rx %U", unformat_vnet_sw_interface,
Dave Barach97d8dc22016-08-15 15:31:15 -0400316 l2pm->vnet_main, &rx_sw_if_index))
317 rx_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318 else if (unformat (line_input, "tx %U", unformat_vnet_sw_interface,
Dave Barach97d8dc22016-08-15 15:31:15 -0400319 l2pm->vnet_main, &tx_sw_if_index))
320 tx_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 else if (unformat (line_input, "del"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400322 is_add = 0;
323 else
324 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 }
326
327 if (rx_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500328 {
329 error = clib_error_return (0, "rx interface not set");
330 goto done;
331 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
333 if (tx_set == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500334 {
335 error = clib_error_return (0, "tx interface not set");
336 goto done;
337 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338
339 rv = vnet_l2_patch_add_del (rx_sw_if_index, tx_sw_if_index, is_add);
340
341 switch (rv)
342 {
343 case 0:
344 break;
345
346 case VNET_API_ERROR_INVALID_SW_IF_INDEX:
Billy McFalla9a20e72017-02-15 11:39:12 -0500347 error = clib_error_return (0, "rx interface not a physical port");
348 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
350 case VNET_API_ERROR_INVALID_SW_IF_INDEX_2:
Billy McFalla9a20e72017-02-15 11:39:12 -0500351 error = clib_error_return (0, "tx interface not a physical port");
352 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353
354 default:
Billy McFalla9a20e72017-02-15 11:39:12 -0500355 error = clib_error_return
Dave Barach97d8dc22016-08-15 15:31:15 -0400356 (0, "WARNING: vnet_l2_patch_add_del returned %d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500357 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400359
Billy McFalla9a20e72017-02-15 11:39:12 -0500360
361done:
362 unformat_free (line_input);
363
364 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365}
366
Billy McFall22aa3e92016-09-09 08:46:40 -0400367/*?
368 * Create or delete a Layer 2 patch.
369 *
370 * @cliexpar
371 * @cliexstart{test l2patch rx <intfc> tx <intfc> [del]}
372 * @cliexend
373 * @todo This is incomplete. This needs a detailed description and a
374 * practical example.
375?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400376/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377VLIB_CLI_COMMAND (test_patch_command, static) = {
378 .path = "test l2patch",
Billy McFall22aa3e92016-09-09 08:46:40 -0400379 .short_help = "test l2patch rx <intfc> tx <intfc> [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 .function = test_patch_command_fn,
381};
Dave Barach97d8dc22016-08-15 15:31:15 -0400382/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Dave Barach97d8dc22016-08-15 15:31:15 -0400384/** Display the contents of the l2patch table. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400386show_l2patch (vlib_main_t * vm,
387 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388{
Dave Barach97d8dc22016-08-15 15:31:15 -0400389 l2_patch_main_t *l2pm = &l2_patch_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 u32 rx_sw_if_index;
391 u32 no_entries = 1;
392
Dave Barach97d8dc22016-08-15 15:31:15 -0400393 ASSERT (vec_len (l2pm->tx_next_by_rx_sw_if_index) ==
394 vec_len (l2pm->tx_sw_if_index_by_rx_sw_if_index));
395
396 for (rx_sw_if_index = 0;
397 rx_sw_if_index < vec_len (l2pm->tx_sw_if_index_by_rx_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 rx_sw_if_index++)
399 {
400 u32 tx_sw_if_index =
401 l2pm->tx_sw_if_index_by_rx_sw_if_index[rx_sw_if_index];
402 if (tx_sw_if_index != ~0)
403 {
404 no_entries = 0;
405 vlib_cli_output (vm, "%26U -> %U",
406 format_vnet_sw_if_index_name,
407 l2pm->vnet_main, rx_sw_if_index,
Dave Barach97d8dc22016-08-15 15:31:15 -0400408 format_vnet_sw_if_index_name,
409 l2pm->vnet_main, tx_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410 }
411 }
412
413 if (no_entries)
414 vlib_cli_output (vm, "no l2patch entries");
415
416 return 0;
417}
418
Billy McFall22aa3e92016-09-09 08:46:40 -0400419/*?
420 * Show Layer 2 patch entries.
421 *
422 * @cliexpar
423 * @cliexstart{show l2patch}
424 * @cliexend
425 * @todo This is incomplete. This needs a detailed description and a
426 * practical example.
427?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400428/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429VLIB_CLI_COMMAND (show_l2patch_cli, static) = {
430 .path = "show l2patch",
431 .short_help = "Show l2 interface cross-connect entries",
432 .function = show_l2patch,
433};
Dave Barach97d8dc22016-08-15 15:31:15 -0400434/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435
Damjan Marionc3baf622018-11-06 13:33:27 +0100436static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400437l2_patch_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438{
Dave Barach97d8dc22016-08-15 15:31:15 -0400439 l2_patch_main_t *mp = &l2_patch_main;
440
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441 mp->vlib_main = vm;
Dave Barach97d8dc22016-08-15 15:31:15 -0400442 mp->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443
444 return 0;
445}
446
447VLIB_INIT_FUNCTION (l2_patch_init);
Dave Barach97d8dc22016-08-15 15:31:15 -0400448
449/*
450 * fd.io coding-style-patch-verification: ON
451 *
452 * Local Variables:
453 * eval: (c-set-style "gnu")
454 * End:
455 */