blob: 50d642c2f8b4542c81aa1f3bc80f74d835a395a2 [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 <vnet/vnet.h>
18#include <vppinfra/error.h>
19
20#include <vnet/span/span.h>
21
22#include <vppinfra/error.h>
23#include <vppinfra/elog.h>
24
25vlib_node_registration_t span_node;
26
27/* packet trace format function */
28u8 *
29format_span_trace (u8 * s, va_list * args)
30{
31 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
32 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
33 span_trace_t *t = va_arg (*args, span_trace_t *);
34
35 vnet_main_t *vnm = &vnet_main;
36 s = format (s, "SPAN: mirrored %U -> %U",
37 format_vnet_sw_if_index_name, vnm, t->src_sw_if_index,
38 format_vnet_sw_if_index_name, vnm, t->mirror_sw_if_index);
39
40 return s;
41}
42
43#define foreach_span_error \
44_(HITS, "SPAN incomming packets processed")
45
46typedef enum
47{
48#define _(sym,str) SPAN_ERROR_##sym,
49 foreach_span_error
50#undef _
51 SPAN_N_ERROR,
52} span_error_t;
53
54static char *span_error_strings[] = {
55#define _(sym,string) string,
56 foreach_span_error
57#undef _
58};
59
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010060static_always_inline void
61span_mirror (vlib_main_t * vm, span_interface_t * si0, vlib_buffer_t * b0,
62 vlib_frame_t ** mirror_frames, int is_rx)
63{
64 vlib_buffer_t *c0;
65 vnet_main_t *vnm = &vnet_main;
66 u32 *to_mirror_next = 0;
67 u32 i;
68
69 if (is_rx != 0 && si0->num_rx_mirror_ports == 0)
70 return;
71
72 if (is_rx == 0 && si0->num_tx_mirror_ports == 0)
73 return;
74
75 /* Don't do it again */
76 if (PREDICT_FALSE (b0->flags & VNET_BUFFER_SPAN_CLONE))
77 return;
78
79 /* *INDENT-OFF* */
80 clib_bitmap_foreach (i, is_rx ? si0->rx_mirror_ports : si0->tx_mirror_ports, (
81 {
82 if (mirror_frames[i] == 0)
83 mirror_frames[i] = vnet_get_frame_to_sw_interface (vnm, i);
84 to_mirror_next = vlib_frame_vector_args (mirror_frames[i]);
85 to_mirror_next += mirror_frames[i]->n_vectors;
86 c0 = vlib_buffer_copy (vm, b0);
87 vnet_buffer (c0)->sw_if_index[VLIB_TX] = i;
88 c0->flags |= VNET_BUFFER_SPAN_CLONE;
89 to_mirror_next[0] = vlib_get_buffer_index (vm, c0);
90 mirror_frames[i]->n_vectors++;
91 }));
92 /* *INDENT-ON* */
93}
94
95static_always_inline uword
96span_node_inline_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
97 vlib_frame_t * frame, int is_rx)
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +010098{
99 span_main_t *sm = &span_main;
100 vnet_main_t *vnm = &vnet_main;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100101 u32 n_left_from, *from, *to_next;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100102 u32 n_span_packets = 0;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100103 u32 next_index;
104 u32 sw_if_index;
105 static __thread vlib_frame_t **mirror_frames = 0;
106 vlib_rx_or_tx_t rxtx = is_rx ? VLIB_RX : VLIB_TX;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100107
108 from = vlib_frame_vector_args (frame);
109 n_left_from = frame->n_vectors;
110 next_index = node->cached_next_index;
111
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100112 vec_validate_aligned (mirror_frames, sm->max_sw_if_index,
113 CLIB_CACHE_LINE_BYTES);
114
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100115 while (n_left_from > 0)
116 {
117 u32 n_left_to_next;
118
119 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
120
121 while (n_left_from >= 4 && n_left_to_next >= 2)
122 {
123 u32 bi0;
124 u32 bi1;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100125 vlib_buffer_t *b0;
126 vlib_buffer_t *b1;
127 span_interface_t *si0, *si1;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100128 u32 sw_if_index0;
Pavel Kotuceke2e95ce2016-11-29 11:03:37 +0100129 u32 next0 = 0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100130 u32 sw_if_index1;
Pavel Kotuceke2e95ce2016-11-29 11:03:37 +0100131 u32 next1 = 0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100132
133 /* speculatively enqueue b0, b1 to the current next frame */
134 to_next[0] = bi0 = from[0];
135 to_next[1] = bi1 = from[1];
136 to_next += 2;
137 n_left_to_next -= 2;
138 from += 2;
139 n_left_from -= 2;
140
141 b0 = vlib_get_buffer (vm, bi0);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100142 b1 = vlib_get_buffer (vm, bi1);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100143 sw_if_index0 = vnet_buffer (b0)->sw_if_index[rxtx];
144 sw_if_index1 = vnet_buffer (b1)->sw_if_index[rxtx];
145 si0 = vec_elt_at_index (sm->interfaces, sw_if_index0);
146 si1 = vec_elt_at_index (sm->interfaces, sw_if_index1);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100147
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100148 span_mirror (vm, si0, b0, mirror_frames, is_rx);
149 span_mirror (vm, si1, b1, mirror_frames, is_rx);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100150
151 vnet_feature_next (sw_if_index0, &next0, b0);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100152 vnet_feature_next (sw_if_index1, &next1, b1);
153
154 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
155 {
156 span_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
157 t->src_sw_if_index = sw_if_index0;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100158 //t->mirror_sw_if_index = si0->mirror_sw_if_index;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100159 }
160
161 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
162 {
163 span_trace_t *t = vlib_add_trace (vm, node, b1, sizeof (*t));
164 t->src_sw_if_index = sw_if_index1;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100165 //t->mirror_sw_if_index = si1->mirror_sw_if_index;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100166 }
167 /* verify speculative enqueue, maybe switch current next frame */
168 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
169 to_next, n_left_to_next,
170 bi0, bi1, next0, next1);
171 }
172 while (n_left_from > 0 && n_left_to_next > 0)
173 {
174 u32 bi0;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100175 vlib_buffer_t *b0;
176 span_interface_t *si0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100177 u32 sw_if_index0;
Pavel Kotuceke2e95ce2016-11-29 11:03:37 +0100178 u32 next0 = 0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100179
180 /* speculatively enqueue b0 to the current next frame */
181 to_next[0] = bi0 = from[0];
182 to_next += 1;
183 n_left_to_next -= 1;
184 from += 1;
185 n_left_from -= 1;
186
187 b0 = vlib_get_buffer (vm, bi0);
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100188 sw_if_index0 = vnet_buffer (b0)->sw_if_index[rxtx];
189 si0 = vec_elt_at_index (sm->interfaces, sw_if_index0);
190 span_mirror (vm, si0, b0, mirror_frames, is_rx);
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100191
192 vnet_feature_next (sw_if_index0, &next0, b0);
193
194 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
195 {
196 span_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
197 t->src_sw_if_index = sw_if_index0;
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100198 }
199 /* verify speculative enqueue, maybe switch current next frame */
200 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
201 n_left_to_next, bi0, next0);
202 }
203
204 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
205 }
206
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100207
208 for (sw_if_index = 0; sw_if_index < vec_len (mirror_frames); sw_if_index++)
209 {
210 if (mirror_frames[sw_if_index] == 0)
211 continue;
212
213 vnet_put_frame_to_sw_interface (vnm, sw_if_index,
214 mirror_frames[sw_if_index]);
215 mirror_frames[sw_if_index] = 0;
216 }
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100217 vlib_node_increment_counter (vm, span_node.index, SPAN_ERROR_HITS,
218 n_span_packets);
219
220 return frame->n_vectors;
221}
222
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100223static uword
224span_input_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
225 vlib_frame_t * frame)
226{
227 return span_node_inline_fn (vm, node, frame, 1);
228}
229
230static uword
231span_output_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
232 vlib_frame_t * frame)
233{
234 return span_node_inline_fn (vm, node, frame, 0);
235}
236
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100237/* *INDENT-OFF* */
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100238VLIB_REGISTER_NODE (span_input_node) = {
239 .function = span_input_node_fn,
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100240 .name = "span-input",
241 .vector_size = sizeof (u32),
242 .format_trace = format_span_trace,
243 .type = VLIB_NODE_TYPE_INTERNAL,
244
245 .n_errors = ARRAY_LEN(span_error_strings),
246 .error_strings = span_error_strings,
247
248 .n_next_nodes = 0,
249
250 /* edit / add dispositions here */
251 .next_nodes = {
252 [0] = "error-drop",
253 },
254};
255
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100256VLIB_NODE_FUNCTION_MULTIARCH (span_input_node, span_input_node_fn)
257
258VLIB_REGISTER_NODE (span_output_node) = {
259 .function = span_output_node_fn,
260 .name = "span-output",
261 .vector_size = sizeof (u32),
262 .format_trace = format_span_trace,
263 .type = VLIB_NODE_TYPE_INTERNAL,
264
265 .n_errors = ARRAY_LEN(span_error_strings),
266 .error_strings = span_error_strings,
267
268 .n_next_nodes = 0,
269
270 /* edit / add dispositions here */
271 .next_nodes = {
272 [0] = "error-drop",
273 },
274};
275
276VLIB_NODE_FUNCTION_MULTIARCH (span_output_node, span_output_node_fn)
277
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100278/* *INDENT-ON* */
279
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100280/*
281 * fd.io coding-style-patch-verification: ON
282 *
283 * Local Variables:
284 * eval: (c-set-style "gnu")
285 * End:
286 */