blob: b7292cf1e800d8ea55b45180ee9cb79d0a354563 [file] [log] [blame]
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +01001/*
2 * Copyright (c) 2016 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 <vppinfra/error.h>
18#include <vnet/feature/feature.h>
Eyal Bari001fd402017-07-16 09:34:53 +030019#include <vnet/l2/l2_input.h>
20#include <vnet/l2/l2_output.h>
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010021
22#include <vnet/span/span.h>
23
Dave Wallace71612d62017-10-24 01:32:41 -040024span_main_t span_main;
25
Eyal Bari001fd402017-07-16 09:34:53 +030026typedef enum
27{
28 SPAN_DISABLE = 0,
29 SPAN_RX = 1,
30 SPAN_TX = 2,
31 SPAN_BOTH = SPAN_RX | SPAN_TX
32} span_state_t;
33
34static_always_inline u32
35span_dst_set (span_mirror_t * sm, u32 dst_sw_if_index, int enable)
36{
Eyal Bari4a7d50e2017-07-30 13:27:46 +030037 if (dst_sw_if_index == ~0)
38 {
39 ASSERT (enable == 0);
40 clib_bitmap_zero (sm->mirror_ports);
41 }
42 else
43 sm->mirror_ports =
44 clib_bitmap_set (sm->mirror_ports, dst_sw_if_index, enable);
45
Eyal Bari001fd402017-07-16 09:34:53 +030046 u32 last = sm->num_mirror_ports;
47 sm->num_mirror_ports = clib_bitmap_count_set_bits (sm->mirror_ports);
48 return last;
49}
50
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010051int
52span_add_delete_entry (vlib_main_t * vm,
Eyal Bari001fd402017-07-16 09:34:53 +030053 u32 src_sw_if_index, u32 dst_sw_if_index, u8 state,
54 span_feat_t sf)
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010055{
56 span_main_t *sm = &span_main;
57
Eyal Bari001fd402017-07-16 09:34:53 +030058 if (state > SPAN_BOTH)
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010059 return VNET_API_ERROR_UNIMPLEMENTED;
60
61 if ((src_sw_if_index == ~0) || (dst_sw_if_index == ~0 && state > 0)
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010062 || (src_sw_if_index == dst_sw_if_index))
63 return VNET_API_ERROR_INVALID_INTERFACE;
64
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010065 vec_validate_aligned (sm->interfaces, src_sw_if_index,
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010066 CLIB_CACHE_LINE_BYTES);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010067
Eyal Bari001fd402017-07-16 09:34:53 +030068 span_interface_t *si = vec_elt_at_index (sm->interfaces, src_sw_if_index);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010069
Eyal Bari001fd402017-07-16 09:34:53 +030070 int rx = ! !(state & SPAN_RX);
71 int tx = ! !(state & SPAN_TX);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010072
Eyal Bari001fd402017-07-16 09:34:53 +030073 span_mirror_t *rxm = &si->mirror_rxtx[sf][VLIB_RX];
74 span_mirror_t *txm = &si->mirror_rxtx[sf][VLIB_TX];
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010075
Eyal Bari001fd402017-07-16 09:34:53 +030076 u32 last_rx_ports_count = span_dst_set (rxm, dst_sw_if_index, rx);
77 u32 last_tx_ports_count = span_dst_set (txm, dst_sw_if_index, tx);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010078
Eyal Bari001fd402017-07-16 09:34:53 +030079 int enable_rx = last_rx_ports_count == 0 && rxm->num_mirror_ports == 1;
Eyal Bari4a7d50e2017-07-30 13:27:46 +030080 int disable_rx = last_rx_ports_count > 0 && rxm->num_mirror_ports == 0;
Eyal Bari001fd402017-07-16 09:34:53 +030081 int enable_tx = last_tx_ports_count == 0 && txm->num_mirror_ports == 1;
Eyal Bari4a7d50e2017-07-30 13:27:46 +030082 int disable_tx = last_tx_ports_count > 0 && txm->num_mirror_ports == 0;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010083
Eyal Bari001fd402017-07-16 09:34:53 +030084 switch (sf)
85 {
86 case SPAN_FEAT_DEVICE:
87 if (enable_rx || disable_rx)
88 vnet_feature_enable_disable ("device-input", "span-input",
89 src_sw_if_index, rx, 0, 0);
90 if (enable_tx || disable_tx)
91 vnet_feature_enable_disable ("interface-output", "span-output",
92 src_sw_if_index, tx, 0, 0);
93 break;
94 case SPAN_FEAT_L2:
95 if (enable_rx || disable_rx)
96 l2input_intf_bitmap_enable (src_sw_if_index, L2INPUT_FEAT_SPAN, rx);
97 if (enable_tx || disable_tx)
98 l2output_intf_bitmap_enable (src_sw_if_index, L2OUTPUT_FEAT_SPAN, tx);
99 break;
100 default:
101 return VNET_API_ERROR_UNIMPLEMENTED;
102 }
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100103
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300104 if (dst_sw_if_index != ~0 && dst_sw_if_index > sm->max_sw_if_index)
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100105 sm->max_sw_if_index = dst_sw_if_index;
106
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100107 return 0;
108}
109
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300110static uword
111unformat_span_state (unformat_input_t * input, va_list * args)
112{
113 span_state_t *state = va_arg (*args, span_state_t *);
114 if (unformat (input, "disable"))
115 *state = SPAN_DISABLE;
116 else if (unformat (input, "rx"))
117 *state = SPAN_RX;
118 else if (unformat (input, "tx"))
119 *state = SPAN_TX;
120 else if (unformat (input, "both"))
121 *state = SPAN_BOTH;
122 else
123 return 0;
124 return 1;
125}
126
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100127static clib_error_t *
128set_interface_span_command_fn (vlib_main_t * vm,
129 unformat_input_t * input,
130 vlib_cli_command_t * cmd)
131{
132 span_main_t *sm = &span_main;
133 u32 src_sw_if_index = ~0;
134 u32 dst_sw_if_index = ~0;
Eyal Bari001fd402017-07-16 09:34:53 +0300135 span_feat_t sf = SPAN_FEAT_DEVICE;
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300136 span_state_t state = SPAN_BOTH;
137 int state_set = 0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100138
139 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
140 {
141 if (unformat (input, "%U", unformat_vnet_sw_interface,
142 sm->vnet_main, &src_sw_if_index))
143 ;
144 else if (unformat (input, "destination %U", unformat_vnet_sw_interface,
145 sm->vnet_main, &dst_sw_if_index))
146 ;
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300147 else if (unformat (input, "%U", unformat_span_state, &state))
148 {
149 if (state_set)
150 return clib_error_return (0, "Multiple mirror states in input");
151 state_set = 1;
152 }
Eyal Bari001fd402017-07-16 09:34:53 +0300153 else if (unformat (input, "l2"))
154 sf = SPAN_FEAT_L2;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100155 else
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300156 return clib_error_return (0, "Invalid input");
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100157 }
158
159 int rv =
Eyal Bari001fd402017-07-16 09:34:53 +0300160 span_add_delete_entry (vm, src_sw_if_index, dst_sw_if_index, state, sf);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100161 if (rv == VNET_API_ERROR_INVALID_INTERFACE)
162 return clib_error_return (0, "Invalid interface");
163 return 0;
164}
165
166/* *INDENT-OFF* */
167VLIB_CLI_COMMAND (set_interface_span_command, static) = {
168 .path = "set interface span",
Eyal Bari001fd402017-07-16 09:34:53 +0300169 .short_help = "set interface span <if-name> [l2] {disable | destination <if-name> [both|rx|tx]}",
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100170 .function = set_interface_span_command_fn,
171};
172/* *INDENT-ON* */
173
174static clib_error_t *
175show_interfaces_span_command_fn (vlib_main_t * vm,
176 unformat_input_t * input,
177 vlib_cli_command_t * cmd)
178{
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100179 span_main_t *sm = &span_main;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100180 span_interface_t *si;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100181 vnet_main_t *vnm = &vnet_main;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100182 u8 header = 1;
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300183 static const char *states[] = {
184 [SPAN_DISABLE] = "none",
185 [SPAN_RX] = "rx",
186 [SPAN_TX] = "tx",
187 [SPAN_BOTH] = "both"
188 };
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100189 u8 *s = 0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100190
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100191 /* *INDENT-OFF* */
192 vec_foreach (si, sm->interfaces)
Eyal Bari001fd402017-07-16 09:34:53 +0300193 {
194 span_mirror_t * drxm = &si->mirror_rxtx[SPAN_FEAT_DEVICE][VLIB_RX];
195 span_mirror_t * dtxm = &si->mirror_rxtx[SPAN_FEAT_DEVICE][VLIB_TX];
196
197 span_mirror_t * lrxm = &si->mirror_rxtx[SPAN_FEAT_L2][VLIB_RX];
198 span_mirror_t * ltxm = &si->mirror_rxtx[SPAN_FEAT_L2][VLIB_TX];
199
200 if (drxm->num_mirror_ports || dtxm->num_mirror_ports ||
201 lrxm->num_mirror_ports || ltxm->num_mirror_ports)
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100202 {
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100203 u32 i;
Eyal Bari001fd402017-07-16 09:34:53 +0300204 clib_bitmap_t *d = clib_bitmap_dup_or (drxm->mirror_ports, dtxm->mirror_ports);
205 clib_bitmap_t *l = clib_bitmap_dup_or (lrxm->mirror_ports, ltxm->mirror_ports);
206 clib_bitmap_t *b = clib_bitmap_dup_or (d, l);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100207 if (header)
208 {
Eyal Bari001fd402017-07-16 09:34:53 +0300209 vlib_cli_output (vm, "%-20s %-20s %6s %6s", "Source", "Destination",
210 "Device", "L2");
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100211 header = 0;
212 }
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100213 s = format (s, "%U", format_vnet_sw_if_index_name, vnm,
214 si - sm->interfaces);
215 clib_bitmap_foreach (i, b, (
216 {
Eyal Bari001fd402017-07-16 09:34:53 +0300217 int device = (clib_bitmap_get (drxm->mirror_ports, i) +
218 clib_bitmap_get (dtxm->mirror_ports, i) * 2);
219 int l2 = (clib_bitmap_get (lrxm->mirror_ports, i) +
220 clib_bitmap_get (ltxm->mirror_ports, i) * 2);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100221
Eyal Bari001fd402017-07-16 09:34:53 +0300222 vlib_cli_output (vm, "%-20v %-20U (%6s) (%6s)", s,
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100223 format_vnet_sw_if_index_name, vnm, i,
Eyal Bari001fd402017-07-16 09:34:53 +0300224 states[device], states[l2]);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100225 vec_reset_length (s);
226 }));
227 clib_bitmap_free (b);
Eyal Bari001fd402017-07-16 09:34:53 +0300228 clib_bitmap_free (l);
229 clib_bitmap_free (d);
230 }
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100231 }
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100232 /* *INDENT-ON* */
233 vec_free (s);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100234 return 0;
235}
236
237/* *INDENT-OFF* */
238VLIB_CLI_COMMAND (show_interfaces_span_command, static) = {
Dave Barach13ad1f02017-03-26 19:36:18 -0400239 .path = "show interface span",
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100240 .short_help = "Shows SPAN mirror table",
241 .function = show_interfaces_span_command_fn,
242};
243/* *INDENT-ON* */
244
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100245/*
246 * fd.io coding-style-patch-verification: ON
247 *
248 * Local Variables:
249 * eval: (c-set-style "gnu")
250 * End:
251 */