blob: 530598d349dd2b432198f91866472a319b8ef1b5 [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/*
16 * trace.c: VLIB trace buffer.
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#include <vlib/vlib.h>
41#include <vlib/threads.h>
42
Dave Barachf8b85862018-08-17 18:29:07 -040043u8 *vnet_trace_dummy;
44
Ed Warnickecb9cada2015-12-08 15:45:58 -070045/* Helper function for nodes which only trace buffer data. */
46void
47vlib_trace_frame_buffers_only (vlib_main_t * vm,
48 vlib_node_runtime_t * node,
49 u32 * buffers,
50 uword n_buffers,
51 uword next_buffer_stride,
52 uword n_buffer_data_bytes_in_trace)
53{
Dave Barach9b8ffd92016-07-08 08:13:45 -040054 u32 n_left, *from;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
56 n_left = n_buffers;
57 from = buffers;
Dave Barach9b8ffd92016-07-08 08:13:45 -040058
Ed Warnickecb9cada2015-12-08 15:45:58 -070059 while (n_left >= 4)
60 {
61 u32 bi0, bi1;
Dave Barach9b8ffd92016-07-08 08:13:45 -040062 vlib_buffer_t *b0, *b1;
63 u8 *t0, *t1;
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
65 /* Prefetch next iteration. */
66 vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
67 vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
68
69 bi0 = from[0];
70 bi1 = from[1];
71
72 b0 = vlib_get_buffer (vm, bi0);
73 b1 = vlib_get_buffer (vm, bi1);
74
75 if (b0->flags & VLIB_BUFFER_IS_TRACED)
76 {
77 t0 = vlib_add_trace (vm, node, b0, n_buffer_data_bytes_in_trace);
Dave Barach178cf492018-11-13 16:34:13 -050078 clib_memcpy_fast (t0, b0->data + b0->current_data,
79 n_buffer_data_bytes_in_trace);
Ed Warnickecb9cada2015-12-08 15:45:58 -070080 }
81 if (b1->flags & VLIB_BUFFER_IS_TRACED)
82 {
83 t1 = vlib_add_trace (vm, node, b1, n_buffer_data_bytes_in_trace);
Dave Barach178cf492018-11-13 16:34:13 -050084 clib_memcpy_fast (t1, b1->data + b1->current_data,
85 n_buffer_data_bytes_in_trace);
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 }
87 from += 2;
88 n_left -= 2;
89 }
90
91 while (n_left >= 1)
92 {
93 u32 bi0;
Dave Barach9b8ffd92016-07-08 08:13:45 -040094 vlib_buffer_t *b0;
95 u8 *t0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 bi0 = from[0];
98
99 b0 = vlib_get_buffer (vm, bi0);
100
101 if (b0->flags & VLIB_BUFFER_IS_TRACED)
102 {
103 t0 = vlib_add_trace (vm, node, b0, n_buffer_data_bytes_in_trace);
Dave Barach178cf492018-11-13 16:34:13 -0500104 clib_memcpy_fast (t0, b0->data + b0->current_data,
105 n_buffer_data_bytes_in_trace);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 }
107 from += 1;
108 n_left -= 1;
109 }
110}
111
112/* Free up all trace buffer memory. */
113always_inline void
Bud Grise0bcc9d52016-02-02 14:23:29 -0500114clear_trace_buffer (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115{
116 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400117 vlib_trace_main_t *tm;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
Dave Barach9b8ffd92016-07-08 08:13:45 -0400119 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 foreach_vlib_main (
121 ({
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 tm = &this_vlib_main->trace_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Dave Barachf8b85862018-08-17 18:29:07 -0400124 tm->trace_enable = 0;
Bud Grised56a6f52016-02-19 12:10:33 -0500125
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126 for (i = 0; i < vec_len (tm->trace_buffer_pool); i++)
127 if (! pool_is_free_index (tm->trace_buffer_pool, i))
128 vec_free (tm->trace_buffer_pool[i]);
129 pool_free (tm->trace_buffer_pool);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400131 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132}
133
Dave Barach1201a802018-11-20 12:08:39 -0500134u8 *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400135format_vlib_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400137 vlib_main_t *vm = va_arg (*va, vlib_main_t *);
138 vlib_trace_header_t *h = va_arg (*va, vlib_trace_header_t *);
139 vlib_trace_header_t *e = vec_end (h);
140 vlib_node_t *node, *prev_node;
141 clib_time_t *ct = &vm->clib_time;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 f64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400143
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144 prev_node = 0;
145 while (h < e)
146 {
147 node = vlib_get_node (vm, h->node_index);
148
149 if (node != prev_node)
150 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400151 t =
152 (h->time - vm->cpu_time_main_loop_start) * ct->seconds_per_clock;
153 s =
154 format (s, "\n%U: %v", format_time_interval, "h:m:s:u", t,
155 node->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156 }
157 prev_node = node;
158
159 if (node->format_trace)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400160 s = format (s, "\n %U", node->format_trace, vm, node, h->data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400162 s = format (s, "\n %U", node->format_buffer, h->data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
164 h = vlib_trace_header_next (h);
165 }
166
167 return s;
168}
169
170/* Root of all trace cli commands. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400171/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172VLIB_CLI_COMMAND (trace_cli_command,static) = {
173 .path = "trace",
174 .short_help = "Packet tracer commands",
175};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400176/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500178static int
Dave Barach9b8ffd92016-07-08 08:13:45 -0400179trace_cmp (void *a1, void *a2)
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500180{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400181 vlib_trace_header_t **t1 = a1;
182 vlib_trace_header_t **t2 = a2;
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500183 i64 dt = t1[0]->time - t2[0]->time;
184 return dt < 0 ? -1 : (dt > 0 ? +1 : 0);
185}
186
Bud Grise0bcc9d52016-02-02 14:23:29 -0500187/*
188 * Return 1 if this packet passes the trace filter, or 0 otherwise
189 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400190u32
191filter_accept (vlib_trace_main_t * tm, vlib_trace_header_t * h)
Bud Grise0bcc9d52016-02-02 14:23:29 -0500192{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400193 vlib_trace_header_t *e = vec_end (h);
Bud Grise0bcc9d52016-02-02 14:23:29 -0500194
Dave Barach9b8ffd92016-07-08 08:13:45 -0400195 if (tm->filter_flag == 0)
196 return 1;
Bud Grise0bcc9d52016-02-02 14:23:29 -0500197
198 if (tm->filter_flag == FILTER_FLAG_INCLUDE)
199 {
200 while (h < e)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400201 {
202 if (h->node_index == tm->filter_node_index)
203 return 1;
204 h = vlib_trace_header_next (h);
205 }
Bud Grise0bcc9d52016-02-02 14:23:29 -0500206 return 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400207 }
208 else /* FILTER_FLAG_EXCLUDE */
Bud Grise0bcc9d52016-02-02 14:23:29 -0500209 {
210 while (h < e)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211 {
212 if (h->node_index == tm->filter_node_index)
213 return 0;
214 h = vlib_trace_header_next (h);
215 }
Bud Grise0bcc9d52016-02-02 14:23:29 -0500216 return 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400217 }
Bud Grise0bcc9d52016-02-02 14:23:29 -0500218
219 return 0;
220}
221
222/*
223 * Remove traces from the trace buffer pool that don't pass the filter
224 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400225void
226trace_apply_filter (vlib_main_t * vm)
Bud Grise0bcc9d52016-02-02 14:23:29 -0500227{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400228 vlib_trace_main_t *tm = &vm->trace_main;
229 vlib_trace_header_t **h;
230 vlib_trace_header_t ***traces_to_remove = 0;
Bud Grise0bcc9d52016-02-02 14:23:29 -0500231 u32 index;
232 u32 trace_index;
233 u32 n_accepted;
234
235 u32 accept;
236
237 if (tm->filter_flag == FILTER_FLAG_NONE)
238 return;
239
240 /*
241 * Ideally we would retain the first N traces that pass the filter instead
242 * of any N traces.
243 */
244 n_accepted = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400245 /* *INDENT-OFF* */
Bud Grise0bcc9d52016-02-02 14:23:29 -0500246 pool_foreach (h, tm->trace_buffer_pool,
247 ({
248 accept = filter_accept(tm, h[0]);
249
250 if ((n_accepted == tm->filter_count) || !accept)
251 vec_add1 (traces_to_remove, h);
252 else
253 n_accepted++;
254 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400255 /* *INDENT-ON* */
Bud Grise0bcc9d52016-02-02 14:23:29 -0500256
257 /* remove all traces that we don't want to keep */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400258 for (index = 0; index < vec_len (traces_to_remove); index++)
Bud Grise0bcc9d52016-02-02 14:23:29 -0500259 {
260 trace_index = traces_to_remove[index] - tm->trace_buffer_pool;
261 _vec_len (tm->trace_buffer_pool[trace_index]) = 0;
262 pool_put_index (tm->trace_buffer_pool, trace_index);
263 }
264
265 vec_free (traces_to_remove);
266}
267
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268static clib_error_t *
269cli_show_trace_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400270 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400272 vlib_trace_main_t *tm;
273 vlib_trace_header_t **h, **traces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 u32 i, index = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275 char *fmt;
276 u8 *s = 0;
Bud Grise0bcc9d52016-02-02 14:23:29 -0500277 u32 max;
278
279 /*
280 * By default display only this many traces. To display more, explicitly
281 * specify a max. This prevents unexpectedly huge outputs.
282 */
283 max = 50;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400284 while (unformat_check_input (input) != (uword) UNFORMAT_END_OF_INPUT)
Bud Grise0bcc9d52016-02-02 14:23:29 -0500285 {
286 if (unformat (input, "max %d", &max))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400287 ;
Bud Grise0bcc9d52016-02-02 14:23:29 -0500288 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400289 return clib_error_create ("expected 'max COUNT', got `%U'",
290 format_unformat_error, input);
Bud Grise0bcc9d52016-02-02 14:23:29 -0500291 }
292
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293
294 /* Get active traces from pool. */
295
Dave Barach9b8ffd92016-07-08 08:13:45 -0400296 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 foreach_vlib_main (
298 ({
Ed Warnicke81aa0e52015-12-22 18:55:08 -0700299 fmt = "------------------- Start of thread %d %s -------------------\n";
300 s = format (s, fmt, index, vlib_worker_threads[index].name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301
302 tm = &this_vlib_main->trace_main;
303
Bud Grise0bcc9d52016-02-02 14:23:29 -0500304 trace_apply_filter(this_vlib_main);
305
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306 traces = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400307 pool_foreach (h, tm->trace_buffer_pool,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308 ({
309 vec_add1 (traces, h[0]);
310 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400311
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312 if (vec_len (traces) == 0)
313 {
Ed Warnicke81aa0e52015-12-22 18:55:08 -0700314 s = format (s, "No packets in trace buffer\n");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315 goto done;
316 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400317
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318 /* Sort them by increasing time. */
Matus Fabiand2dc3df2015-12-14 10:31:33 -0500319 vec_sort_with_function (traces, trace_cmp);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400320
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 for (i = 0; i < vec_len (traces); i++)
322 {
Bud Grise0bcc9d52016-02-02 14:23:29 -0500323 if (i == max)
324 {
325 vlib_cli_output (vm, "Limiting display to %d packets."
326 " To display more specify max.", max);
327 goto done;
328 }
329
Ed Warnicke81aa0e52015-12-22 18:55:08 -0700330 s = format (s, "Packet %d\n%U\n\n", i + 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331 format_vlib_trace, vm, traces[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400333
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 done:
335 vec_free (traces);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336
337 index++;
338 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400339 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
Klement Sekera29396e62016-12-21 03:24:00 +0100341 vlib_cli_output (vm, "%v", s);
Ed Warnicke81aa0e52015-12-22 18:55:08 -0700342 vec_free (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343 return 0;
344}
345
Dave Barach9b8ffd92016-07-08 08:13:45 -0400346/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347VLIB_CLI_COMMAND (show_trace_cli,static) = {
348 .path = "show trace",
Bud Grise0bcc9d52016-02-02 14:23:29 -0500349 .short_help = "Show trace buffer [max COUNT]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350 .function = cli_show_trace_buffer,
351};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400352/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353
354static clib_error_t *
355cli_add_trace_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400356 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357{
Neale Ranns3ee44042016-10-03 13:05:48 +0100358 unformat_input_t _line_input, *line_input = &_line_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400359 vlib_trace_main_t *tm;
Damjan Marion7ca5aaa2019-09-24 18:10:49 +0200360 vlib_node_t *node;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361 vlib_trace_node_t *tn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 u32 node_index, add;
Damjan Mariondb7b2692016-06-09 16:16:27 +0200363 u8 verbose = 0;
Billy McFalla9a20e72017-02-15 11:39:12 -0500364 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365
Neale Ranns3ee44042016-10-03 13:05:48 +0100366 if (!unformat_user (input, unformat_line_input, line_input))
367 return 0;
368
Dave Barachf8b85862018-08-17 18:29:07 -0400369 if (vnet_trace_dummy == 0)
370 vec_validate_aligned (vnet_trace_dummy, 2048, CLIB_CACHE_LINE_BYTES);
371
Neale Ranns3ee44042016-10-03 13:05:48 +0100372 while (unformat_check_input (line_input) != (uword) UNFORMAT_END_OF_INPUT)
Damjan Mariondb7b2692016-06-09 16:16:27 +0200373 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100374 if (unformat (line_input, "%U %d",
375 unformat_vlib_node, vm, &node_index, &add))
Damjan Mariondb7b2692016-06-09 16:16:27 +0200376 ;
Neale Ranns3ee44042016-10-03 13:05:48 +0100377 else if (unformat (line_input, "verbose"))
Damjan Mariondb7b2692016-06-09 16:16:27 +0200378 verbose = 1;
379 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500380 {
381 error = clib_error_create ("expected NODE COUNT, got `%U'",
382 format_unformat_error, line_input);
383 goto done;
384 }
Damjan Mariondb7b2692016-06-09 16:16:27 +0200385 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
Damjan Marion7ca5aaa2019-09-24 18:10:49 +0200387 node = vlib_get_node (vm, node_index);
388
389 if ((node->flags & VLIB_NODE_FLAG_TRACE_SUPPORTED) == 0)
390 {
391 error = clib_error_create ("node '%U' doesn't support per-node "
392 "tracing. There may be another way to "
393 "initiate trace on this node.",
394 format_vlib_node_name, vm, node_index);
395 goto done;
396 }
397
Neale Ranns3ee44042016-10-03 13:05:48 +0100398 /* *INDENT-OFF* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400399 foreach_vlib_main ((
Neale Ranns3ee44042016-10-03 13:05:48 +0100400 {
Neale Ranns3ee44042016-10-03 13:05:48 +0100401 tm = &this_vlib_main->trace_main;
Neale Ranns3ee44042016-10-03 13:05:48 +0100402 tm->verbose = verbose;
Neale Ranns3ee44042016-10-03 13:05:48 +0100403 vec_validate (tm->nodes, node_index);
404 tn = tm->nodes + node_index;
Dave Barachf8b85862018-08-17 18:29:07 -0400405 tn->limit += add;
406 tm->trace_enable = 1;
Neale Ranns3ee44042016-10-03 13:05:48 +0100407 }));
408 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409
Billy McFalla9a20e72017-02-15 11:39:12 -0500410done:
411 unformat_free (line_input);
412
413 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414}
415
Dave Barach9b8ffd92016-07-08 08:13:45 -0400416/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417VLIB_CLI_COMMAND (add_trace_cli,static) = {
418 .path = "trace add",
419 .short_help = "Trace given number of packets",
420 .function = cli_add_trace_buffer,
421};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400422/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423
Bud Grise0bcc9d52016-02-02 14:23:29 -0500424
425/*
426 * Configure a filter for packet traces.
427 *
428 * This supplements the packet trace feature so that only packets matching
429 * the filter are included in the trace. Currently the only filter is to
430 * keep packets that include a certain node in the trace or exclude a certain
431 * node in the trace.
432 *
433 * The count of traced packets in the "trace add" command is still used to
434 * create a certain number of traces. The "trace filter" command specifies
435 * how many of those packets should be retained in the trace.
436 *
437 * For example, 1Mpps of traffic is arriving and one of those packets is being
438 * dropped. To capture the trace for only that dropped packet, you can do:
439 * trace filter include error-drop 1
440 * trace add dpdk-input 1000000
441 * <wait one second>
442 * show trace
443 *
444 * Note that the filter could be implemented by capturing all traces and just
445 * reducing traces displayed by the "show trace" function. But that would
446 * require a lot of memory for storing the traces, making that infeasible.
447 *
448 * To remove traces from the trace pool that do not include a certain node
449 * requires that the trace be "complete" before applying the filter. To
450 * accomplish this, the trace pool is filtered upon each iteraction of the
451 * main vlib loop. Doing so keeps the number of allocated traces down to a
452 * reasonably low number. This requires that tracing for a buffer is not
453 * performed after the vlib main loop interation completes. i.e. you can't
454 * save away a buffer temporarily then inject it back into the graph and
455 * expect that the trace_index is still valid (such as a traffic manager might
456 * do). A new trace buffer should be allocated for those types of packets.
457 *
458 * The filter can be extended to support multiple nodes and other match
459 * criteria (e.g. input sw_if_index, mac address) but for now just checks if
460 * a specified node is in the trace or not in the trace.
461 */
462static clib_error_t *
463cli_filter_trace (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400464 unformat_input_t * input, vlib_cli_command_t * cmd)
Bud Grise0bcc9d52016-02-02 14:23:29 -0500465{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400466 vlib_trace_main_t *tm = &vm->trace_main;
Bud Grise0bcc9d52016-02-02 14:23:29 -0500467 u32 filter_node_index;
468 u32 filter_flag;
469 u32 filter_count;
Bud Grise0bcc9d52016-02-02 14:23:29 -0500470
471 if (unformat (input, "include %U %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400472 unformat_vlib_node, vm, &filter_node_index, &filter_count))
Bud Grise0bcc9d52016-02-02 14:23:29 -0500473 {
474 filter_flag = FILTER_FLAG_INCLUDE;
475 }
476 else if (unformat (input, "exclude %U %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400477 unformat_vlib_node, vm, &filter_node_index,
478 &filter_count))
Bud Grise0bcc9d52016-02-02 14:23:29 -0500479 {
480 filter_flag = FILTER_FLAG_EXCLUDE;
481 }
482 else if (unformat (input, "none"))
483 {
484 filter_flag = FILTER_FLAG_NONE;
485 filter_node_index = 0;
486 filter_count = 0;
487 }
488 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489 return
490 clib_error_create
491 ("expected 'include NODE COUNT' or 'exclude NODE COUNT' or 'none', got `%U'",
492 format_unformat_error, input);
Bud Grise0bcc9d52016-02-02 14:23:29 -0500493
Dave Barach9b8ffd92016-07-08 08:13:45 -0400494 /* *INDENT-OFF* */
Bud Grise0bcc9d52016-02-02 14:23:29 -0500495 foreach_vlib_main (
Dave Barach9b8ffd92016-07-08 08:13:45 -0400496 ({
Bud Grise0bcc9d52016-02-02 14:23:29 -0500497 tm = &this_vlib_main->trace_main;
498 tm->filter_node_index = filter_node_index;
499 tm->filter_flag = filter_flag;
500 tm->filter_count = filter_count;
501
502 /*
503 * Clear the trace limits to stop any in-progress tracing
Dave Barachf8b85862018-08-17 18:29:07 -0400504 * Prevents runaway trace allocations when the filter changes
505 * (or is removed)
Bud Grise0bcc9d52016-02-02 14:23:29 -0500506 */
Bud Grise0bcc9d52016-02-02 14:23:29 -0500507 vec_free (tm->nodes);
Bud Grise0bcc9d52016-02-02 14:23:29 -0500508 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400509 /* *INDENT-ON* */
Bud Grise0bcc9d52016-02-02 14:23:29 -0500510
511 return 0;
512}
513
Dave Barach9b8ffd92016-07-08 08:13:45 -0400514/* *INDENT-OFF* */
Bud Grise0bcc9d52016-02-02 14:23:29 -0500515VLIB_CLI_COMMAND (filter_trace_cli,static) = {
516 .path = "trace filter",
517 .short_help = "filter trace output - include NODE COUNT | exclude NODE COUNT | none",
518 .function = cli_filter_trace,
519};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400520/* *INDENT-ON* */
Bud Grise0bcc9d52016-02-02 14:23:29 -0500521
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522static clib_error_t *
523cli_clear_trace_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400524 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525{
Bud Grise0bcc9d52016-02-02 14:23:29 -0500526 clear_trace_buffer ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527 return 0;
528}
529
Dave Barach9b8ffd92016-07-08 08:13:45 -0400530/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531VLIB_CLI_COMMAND (clear_trace_cli,static) = {
532 .path = "clear trace",
533 .short_help = "Clear trace buffer and free memory",
534 .function = cli_clear_trace_buffer,
535};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400536/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537
538/* Dummy function to get us linked in. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400539void
540vlib_trace_cli_reference (void)
541{
542}
543
544/*
545 * fd.io coding-style-patch-verification: ON
546 *
547 * Local Variables:
548 * eval: (c-set-style "gnu")
549 * End:
550 */