blob: 2fd9cd87dfb93ec728f14c717893f0e9f030bf00 [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
Eyal Bari001fd402017-07-16 09:34:53 +030024typedef enum
25{
26 SPAN_DISABLE = 0,
27 SPAN_RX = 1,
28 SPAN_TX = 2,
29 SPAN_BOTH = SPAN_RX | SPAN_TX
30} span_state_t;
31
32static_always_inline u32
33span_dst_set (span_mirror_t * sm, u32 dst_sw_if_index, int enable)
34{
Eyal Bari4a7d50e2017-07-30 13:27:46 +030035 if (dst_sw_if_index == ~0)
36 {
37 ASSERT (enable == 0);
38 clib_bitmap_zero (sm->mirror_ports);
39 }
40 else
41 sm->mirror_ports =
42 clib_bitmap_set (sm->mirror_ports, dst_sw_if_index, enable);
43
Eyal Bari001fd402017-07-16 09:34:53 +030044 u32 last = sm->num_mirror_ports;
45 sm->num_mirror_ports = clib_bitmap_count_set_bits (sm->mirror_ports);
46 return last;
47}
48
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010049int
50span_add_delete_entry (vlib_main_t * vm,
Eyal Bari001fd402017-07-16 09:34:53 +030051 u32 src_sw_if_index, u32 dst_sw_if_index, u8 state,
52 span_feat_t sf)
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010053{
54 span_main_t *sm = &span_main;
55
Eyal Bari001fd402017-07-16 09:34:53 +030056 if (state > SPAN_BOTH)
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010057 return VNET_API_ERROR_UNIMPLEMENTED;
58
59 if ((src_sw_if_index == ~0) || (dst_sw_if_index == ~0 && state > 0)
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010060 || (src_sw_if_index == dst_sw_if_index))
61 return VNET_API_ERROR_INVALID_INTERFACE;
62
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010063 vec_validate_aligned (sm->interfaces, src_sw_if_index,
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010064 CLIB_CACHE_LINE_BYTES);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010065
Eyal Bari001fd402017-07-16 09:34:53 +030066 span_interface_t *si = vec_elt_at_index (sm->interfaces, src_sw_if_index);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010067
Eyal Bari001fd402017-07-16 09:34:53 +030068 int rx = ! !(state & SPAN_RX);
69 int tx = ! !(state & SPAN_TX);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010070
Eyal Bari001fd402017-07-16 09:34:53 +030071 span_mirror_t *rxm = &si->mirror_rxtx[sf][VLIB_RX];
72 span_mirror_t *txm = &si->mirror_rxtx[sf][VLIB_TX];
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010073
Eyal Bari001fd402017-07-16 09:34:53 +030074 u32 last_rx_ports_count = span_dst_set (rxm, dst_sw_if_index, rx);
75 u32 last_tx_ports_count = span_dst_set (txm, dst_sw_if_index, tx);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010076
Eyal Bari001fd402017-07-16 09:34:53 +030077 int enable_rx = last_rx_ports_count == 0 && rxm->num_mirror_ports == 1;
Eyal Bari4a7d50e2017-07-30 13:27:46 +030078 int disable_rx = last_rx_ports_count > 0 && rxm->num_mirror_ports == 0;
Eyal Bari001fd402017-07-16 09:34:53 +030079 int enable_tx = last_tx_ports_count == 0 && txm->num_mirror_ports == 1;
Eyal Bari4a7d50e2017-07-30 13:27:46 +030080 int disable_tx = last_tx_ports_count > 0 && txm->num_mirror_ports == 0;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010081
Eyal Bari001fd402017-07-16 09:34:53 +030082 switch (sf)
83 {
84 case SPAN_FEAT_DEVICE:
85 if (enable_rx || disable_rx)
86 vnet_feature_enable_disable ("device-input", "span-input",
87 src_sw_if_index, rx, 0, 0);
88 if (enable_tx || disable_tx)
89 vnet_feature_enable_disable ("interface-output", "span-output",
90 src_sw_if_index, tx, 0, 0);
91 break;
92 case SPAN_FEAT_L2:
93 if (enable_rx || disable_rx)
94 l2input_intf_bitmap_enable (src_sw_if_index, L2INPUT_FEAT_SPAN, rx);
95 if (enable_tx || disable_tx)
96 l2output_intf_bitmap_enable (src_sw_if_index, L2OUTPUT_FEAT_SPAN, tx);
97 break;
98 default:
99 return VNET_API_ERROR_UNIMPLEMENTED;
100 }
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100101
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300102 if (dst_sw_if_index != ~0 && dst_sw_if_index > sm->max_sw_if_index)
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100103 sm->max_sw_if_index = dst_sw_if_index;
104
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100105 return 0;
106}
107
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300108static uword
109unformat_span_state (unformat_input_t * input, va_list * args)
110{
111 span_state_t *state = va_arg (*args, span_state_t *);
112 if (unformat (input, "disable"))
113 *state = SPAN_DISABLE;
114 else if (unformat (input, "rx"))
115 *state = SPAN_RX;
116 else if (unformat (input, "tx"))
117 *state = SPAN_TX;
118 else if (unformat (input, "both"))
119 *state = SPAN_BOTH;
120 else
121 return 0;
122 return 1;
123}
124
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100125static clib_error_t *
126set_interface_span_command_fn (vlib_main_t * vm,
127 unformat_input_t * input,
128 vlib_cli_command_t * cmd)
129{
130 span_main_t *sm = &span_main;
131 u32 src_sw_if_index = ~0;
132 u32 dst_sw_if_index = ~0;
Eyal Bari001fd402017-07-16 09:34:53 +0300133 span_feat_t sf = SPAN_FEAT_DEVICE;
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300134 span_state_t state = SPAN_BOTH;
135 int state_set = 0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100136
137 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
138 {
139 if (unformat (input, "%U", unformat_vnet_sw_interface,
140 sm->vnet_main, &src_sw_if_index))
141 ;
142 else if (unformat (input, "destination %U", unformat_vnet_sw_interface,
143 sm->vnet_main, &dst_sw_if_index))
144 ;
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300145 else if (unformat (input, "%U", unformat_span_state, &state))
146 {
147 if (state_set)
148 return clib_error_return (0, "Multiple mirror states in input");
149 state_set = 1;
150 }
Eyal Bari001fd402017-07-16 09:34:53 +0300151 else if (unformat (input, "l2"))
152 sf = SPAN_FEAT_L2;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100153 else
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300154 return clib_error_return (0, "Invalid input");
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100155 }
156
157 int rv =
Eyal Bari001fd402017-07-16 09:34:53 +0300158 span_add_delete_entry (vm, src_sw_if_index, dst_sw_if_index, state, sf);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100159 if (rv == VNET_API_ERROR_INVALID_INTERFACE)
160 return clib_error_return (0, "Invalid interface");
161 return 0;
162}
163
164/* *INDENT-OFF* */
165VLIB_CLI_COMMAND (set_interface_span_command, static) = {
166 .path = "set interface span",
Eyal Bari001fd402017-07-16 09:34:53 +0300167 .short_help = "set interface span <if-name> [l2] {disable | destination <if-name> [both|rx|tx]}",
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100168 .function = set_interface_span_command_fn,
169};
170/* *INDENT-ON* */
171
172static clib_error_t *
173show_interfaces_span_command_fn (vlib_main_t * vm,
174 unformat_input_t * input,
175 vlib_cli_command_t * cmd)
176{
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100177 span_main_t *sm = &span_main;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100178 span_interface_t *si;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100179 vnet_main_t *vnm = &vnet_main;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100180 u8 header = 1;
Eyal Bari4a7d50e2017-07-30 13:27:46 +0300181 static const char *states[] = {
182 [SPAN_DISABLE] = "none",
183 [SPAN_RX] = "rx",
184 [SPAN_TX] = "tx",
185 [SPAN_BOTH] = "both"
186 };
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100187 u8 *s = 0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100188
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100189 /* *INDENT-OFF* */
190 vec_foreach (si, sm->interfaces)
Eyal Bari001fd402017-07-16 09:34:53 +0300191 {
192 span_mirror_t * drxm = &si->mirror_rxtx[SPAN_FEAT_DEVICE][VLIB_RX];
193 span_mirror_t * dtxm = &si->mirror_rxtx[SPAN_FEAT_DEVICE][VLIB_TX];
194
195 span_mirror_t * lrxm = &si->mirror_rxtx[SPAN_FEAT_L2][VLIB_RX];
196 span_mirror_t * ltxm = &si->mirror_rxtx[SPAN_FEAT_L2][VLIB_TX];
197
198 if (drxm->num_mirror_ports || dtxm->num_mirror_ports ||
199 lrxm->num_mirror_ports || ltxm->num_mirror_ports)
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100200 {
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100201 u32 i;
Eyal Bari001fd402017-07-16 09:34:53 +0300202 clib_bitmap_t *d = clib_bitmap_dup_or (drxm->mirror_ports, dtxm->mirror_ports);
203 clib_bitmap_t *l = clib_bitmap_dup_or (lrxm->mirror_ports, ltxm->mirror_ports);
204 clib_bitmap_t *b = clib_bitmap_dup_or (d, l);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100205 if (header)
206 {
Eyal Bari001fd402017-07-16 09:34:53 +0300207 vlib_cli_output (vm, "%-20s %-20s %6s %6s", "Source", "Destination",
208 "Device", "L2");
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100209 header = 0;
210 }
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100211 s = format (s, "%U", format_vnet_sw_if_index_name, vnm,
212 si - sm->interfaces);
213 clib_bitmap_foreach (i, b, (
214 {
Eyal Bari001fd402017-07-16 09:34:53 +0300215 int device = (clib_bitmap_get (drxm->mirror_ports, i) +
216 clib_bitmap_get (dtxm->mirror_ports, i) * 2);
217 int l2 = (clib_bitmap_get (lrxm->mirror_ports, i) +
218 clib_bitmap_get (ltxm->mirror_ports, i) * 2);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100219
Eyal Bari001fd402017-07-16 09:34:53 +0300220 vlib_cli_output (vm, "%-20v %-20U (%6s) (%6s)", s,
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100221 format_vnet_sw_if_index_name, vnm, i,
Eyal Bari001fd402017-07-16 09:34:53 +0300222 states[device], states[l2]);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100223 vec_reset_length (s);
224 }));
225 clib_bitmap_free (b);
Eyal Bari001fd402017-07-16 09:34:53 +0300226 clib_bitmap_free (l);
227 clib_bitmap_free (d);
228 }
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100229 }
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100230 /* *INDENT-ON* */
231 vec_free (s);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100232 return 0;
233}
234
235/* *INDENT-OFF* */
236VLIB_CLI_COMMAND (show_interfaces_span_command, static) = {
Dave Barach13ad1f02017-03-26 19:36:18 -0400237 .path = "show interface span",
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100238 .short_help = "Shows SPAN mirror table",
239 .function = show_interfaces_span_command_fn,
240};
241/* *INDENT-ON* */
242
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100243/*
244 * fd.io coding-style-patch-verification: ON
245 *
246 * Local Variables:
247 * eval: (c-set-style "gnu")
248 * End:
249 */