Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 43 | /* Helper function for nodes which only trace buffer data. */ |
| 44 | void |
| 45 | vlib_trace_frame_buffers_only (vlib_main_t * vm, |
| 46 | vlib_node_runtime_t * node, |
| 47 | u32 * buffers, |
| 48 | uword n_buffers, |
| 49 | uword next_buffer_stride, |
| 50 | uword n_buffer_data_bytes_in_trace) |
| 51 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 52 | u32 n_left, *from; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | |
| 54 | n_left = n_buffers; |
| 55 | from = buffers; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 56 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | while (n_left >= 4) |
| 58 | { |
| 59 | u32 bi0, bi1; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 60 | vlib_buffer_t *b0, *b1; |
| 61 | u8 *t0, *t1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | |
| 63 | /* Prefetch next iteration. */ |
| 64 | vlib_prefetch_buffer_with_index (vm, from[2], LOAD); |
| 65 | vlib_prefetch_buffer_with_index (vm, from[3], LOAD); |
| 66 | |
| 67 | bi0 = from[0]; |
| 68 | bi1 = from[1]; |
| 69 | |
| 70 | b0 = vlib_get_buffer (vm, bi0); |
| 71 | b1 = vlib_get_buffer (vm, bi1); |
| 72 | |
| 73 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 74 | { |
| 75 | t0 = vlib_add_trace (vm, node, b0, n_buffer_data_bytes_in_trace); |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 76 | clib_memcpy (t0, b0->data + b0->current_data, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 77 | n_buffer_data_bytes_in_trace); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 78 | } |
| 79 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 80 | { |
| 81 | t1 = vlib_add_trace (vm, node, b1, n_buffer_data_bytes_in_trace); |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 82 | clib_memcpy (t1, b1->data + b1->current_data, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 83 | n_buffer_data_bytes_in_trace); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 84 | } |
| 85 | from += 2; |
| 86 | n_left -= 2; |
| 87 | } |
| 88 | |
| 89 | while (n_left >= 1) |
| 90 | { |
| 91 | u32 bi0; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 92 | vlib_buffer_t *b0; |
| 93 | u8 *t0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 94 | |
| 95 | bi0 = from[0]; |
| 96 | |
| 97 | b0 = vlib_get_buffer (vm, bi0); |
| 98 | |
| 99 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 100 | { |
| 101 | t0 = vlib_add_trace (vm, node, b0, n_buffer_data_bytes_in_trace); |
Damjan Marion | f1213b8 | 2016-03-13 02:22:06 +0100 | [diff] [blame] | 102 | clib_memcpy (t0, b0->data + b0->current_data, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 103 | n_buffer_data_bytes_in_trace); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 104 | } |
| 105 | from += 1; |
| 106 | n_left -= 1; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | /* Free up all trace buffer memory. */ |
| 111 | always_inline void |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 112 | clear_trace_buffer (void) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 113 | { |
| 114 | int i; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 115 | vlib_trace_main_t *tm; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 116 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 117 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | foreach_vlib_main ( |
| 119 | ({ |
| 120 | void *mainheap; |
| 121 | |
| 122 | tm = &this_vlib_main->trace_main; |
| 123 | mainheap = clib_mem_set_heap (this_vlib_main->heap_base); |
| 124 | |
Bud Grise | d56a6f5 | 2016-02-19 12:10:33 -0500 | [diff] [blame] | 125 | tm->trace_active_hint = 0; |
| 126 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 127 | for (i = 0; i < vec_len (tm->trace_buffer_pool); i++) |
| 128 | if (! pool_is_free_index (tm->trace_buffer_pool, i)) |
| 129 | vec_free (tm->trace_buffer_pool[i]); |
| 130 | pool_free (tm->trace_buffer_pool); |
| 131 | clib_mem_set_heap (mainheap); |
| 132 | })); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 133 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 136 | static u8 * |
| 137 | format_vlib_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 138 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 139 | vlib_main_t *vm = va_arg (*va, vlib_main_t *); |
| 140 | vlib_trace_header_t *h = va_arg (*va, vlib_trace_header_t *); |
| 141 | vlib_trace_header_t *e = vec_end (h); |
| 142 | vlib_node_t *node, *prev_node; |
| 143 | clib_time_t *ct = &vm->clib_time; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 144 | f64 t; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 145 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | prev_node = 0; |
| 147 | while (h < e) |
| 148 | { |
| 149 | node = vlib_get_node (vm, h->node_index); |
| 150 | |
| 151 | if (node != prev_node) |
| 152 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 153 | t = |
| 154 | (h->time - vm->cpu_time_main_loop_start) * ct->seconds_per_clock; |
| 155 | s = |
| 156 | format (s, "\n%U: %v", format_time_interval, "h:m:s:u", t, |
| 157 | node->name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 158 | } |
| 159 | prev_node = node; |
| 160 | |
| 161 | if (node->format_trace) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 162 | s = format (s, "\n %U", node->format_trace, vm, node, h->data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 163 | else |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 164 | s = format (s, "\n %U", node->format_buffer, h->data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | |
| 166 | h = vlib_trace_header_next (h); |
| 167 | } |
| 168 | |
| 169 | return s; |
| 170 | } |
| 171 | |
| 172 | /* Root of all trace cli commands. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 173 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 174 | VLIB_CLI_COMMAND (trace_cli_command,static) = { |
| 175 | .path = "trace", |
| 176 | .short_help = "Packet tracer commands", |
| 177 | }; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 178 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 179 | |
Matus Fabian | d2dc3df | 2015-12-14 10:31:33 -0500 | [diff] [blame] | 180 | static int |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 181 | trace_cmp (void *a1, void *a2) |
Matus Fabian | d2dc3df | 2015-12-14 10:31:33 -0500 | [diff] [blame] | 182 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 183 | vlib_trace_header_t **t1 = a1; |
| 184 | vlib_trace_header_t **t2 = a2; |
Matus Fabian | d2dc3df | 2015-12-14 10:31:33 -0500 | [diff] [blame] | 185 | i64 dt = t1[0]->time - t2[0]->time; |
| 186 | return dt < 0 ? -1 : (dt > 0 ? +1 : 0); |
| 187 | } |
| 188 | |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 189 | /* |
| 190 | * Return 1 if this packet passes the trace filter, or 0 otherwise |
| 191 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 192 | u32 |
| 193 | filter_accept (vlib_trace_main_t * tm, vlib_trace_header_t * h) |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 194 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 195 | vlib_trace_header_t *e = vec_end (h); |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 196 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 197 | if (tm->filter_flag == 0) |
| 198 | return 1; |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 199 | |
| 200 | if (tm->filter_flag == FILTER_FLAG_INCLUDE) |
| 201 | { |
| 202 | while (h < e) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 203 | { |
| 204 | if (h->node_index == tm->filter_node_index) |
| 205 | return 1; |
| 206 | h = vlib_trace_header_next (h); |
| 207 | } |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 208 | return 0; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 209 | } |
| 210 | else /* FILTER_FLAG_EXCLUDE */ |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 211 | { |
| 212 | while (h < e) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 213 | { |
| 214 | if (h->node_index == tm->filter_node_index) |
| 215 | return 0; |
| 216 | h = vlib_trace_header_next (h); |
| 217 | } |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 218 | return 1; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 219 | } |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 220 | |
| 221 | return 0; |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * Remove traces from the trace buffer pool that don't pass the filter |
| 226 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 227 | void |
| 228 | trace_apply_filter (vlib_main_t * vm) |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 229 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 230 | vlib_trace_main_t *tm = &vm->trace_main; |
| 231 | vlib_trace_header_t **h; |
| 232 | vlib_trace_header_t ***traces_to_remove = 0; |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 233 | u32 index; |
| 234 | u32 trace_index; |
| 235 | u32 n_accepted; |
| 236 | |
| 237 | u32 accept; |
| 238 | |
| 239 | if (tm->filter_flag == FILTER_FLAG_NONE) |
| 240 | return; |
| 241 | |
| 242 | /* |
| 243 | * Ideally we would retain the first N traces that pass the filter instead |
| 244 | * of any N traces. |
| 245 | */ |
| 246 | n_accepted = 0; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 247 | /* *INDENT-OFF* */ |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 248 | pool_foreach (h, tm->trace_buffer_pool, |
| 249 | ({ |
| 250 | accept = filter_accept(tm, h[0]); |
| 251 | |
| 252 | if ((n_accepted == tm->filter_count) || !accept) |
| 253 | vec_add1 (traces_to_remove, h); |
| 254 | else |
| 255 | n_accepted++; |
| 256 | })); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 257 | /* *INDENT-ON* */ |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 258 | |
| 259 | /* remove all traces that we don't want to keep */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 260 | for (index = 0; index < vec_len (traces_to_remove); index++) |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 261 | { |
| 262 | trace_index = traces_to_remove[index] - tm->trace_buffer_pool; |
| 263 | _vec_len (tm->trace_buffer_pool[trace_index]) = 0; |
| 264 | pool_put_index (tm->trace_buffer_pool, trace_index); |
| 265 | } |
| 266 | |
| 267 | vec_free (traces_to_remove); |
| 268 | } |
| 269 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 270 | static clib_error_t * |
| 271 | cli_show_trace_buffer (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 272 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 273 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 274 | vlib_trace_main_t *tm; |
| 275 | vlib_trace_header_t **h, **traces; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 276 | u32 i, index = 0; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 277 | char *fmt; |
| 278 | u8 *s = 0; |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 279 | u32 max; |
| 280 | |
| 281 | /* |
| 282 | * By default display only this many traces. To display more, explicitly |
| 283 | * specify a max. This prevents unexpectedly huge outputs. |
| 284 | */ |
| 285 | max = 50; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 286 | while (unformat_check_input (input) != (uword) UNFORMAT_END_OF_INPUT) |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 287 | { |
| 288 | if (unformat (input, "max %d", &max)) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 289 | ; |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 290 | else |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 291 | return clib_error_create ("expected 'max COUNT', got `%U'", |
| 292 | format_unformat_error, input); |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 293 | } |
| 294 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 295 | |
| 296 | /* Get active traces from pool. */ |
| 297 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 298 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 299 | foreach_vlib_main ( |
| 300 | ({ |
| 301 | void *mainheap; |
| 302 | |
Ed Warnicke | 81aa0e5 | 2015-12-22 18:55:08 -0700 | [diff] [blame] | 303 | fmt = "------------------- Start of thread %d %s -------------------\n"; |
| 304 | s = format (s, fmt, index, vlib_worker_threads[index].name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 305 | |
| 306 | tm = &this_vlib_main->trace_main; |
| 307 | |
| 308 | mainheap = clib_mem_set_heap (this_vlib_main->heap_base); |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 309 | |
| 310 | trace_apply_filter(this_vlib_main); |
| 311 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 312 | traces = 0; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 313 | pool_foreach (h, tm->trace_buffer_pool, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | ({ |
| 315 | vec_add1 (traces, h[0]); |
| 316 | })); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 317 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 318 | if (vec_len (traces) == 0) |
| 319 | { |
| 320 | clib_mem_set_heap (mainheap); |
Ed Warnicke | 81aa0e5 | 2015-12-22 18:55:08 -0700 | [diff] [blame] | 321 | s = format (s, "No packets in trace buffer\n"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 322 | goto done; |
| 323 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 324 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 325 | /* Sort them by increasing time. */ |
Matus Fabian | d2dc3df | 2015-12-14 10:31:33 -0500 | [diff] [blame] | 326 | vec_sort_with_function (traces, trace_cmp); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 327 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 328 | for (i = 0; i < vec_len (traces); i++) |
| 329 | { |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 330 | if (i == max) |
| 331 | { |
| 332 | vlib_cli_output (vm, "Limiting display to %d packets." |
| 333 | " To display more specify max.", max); |
| 334 | goto done; |
| 335 | } |
| 336 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 337 | clib_mem_set_heap (mainheap); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 338 | |
Ed Warnicke | 81aa0e5 | 2015-12-22 18:55:08 -0700 | [diff] [blame] | 339 | s = format (s, "Packet %d\n%U\n\n", i + 1, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 340 | format_vlib_trace, vm, traces[i]); |
| 341 | |
| 342 | mainheap = clib_mem_set_heap (this_vlib_main->heap_base); |
| 343 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 344 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 345 | done: |
| 346 | vec_free (traces); |
| 347 | clib_mem_set_heap (mainheap); |
| 348 | |
| 349 | index++; |
| 350 | })); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 351 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 352 | |
Klement Sekera | 29396e6 | 2016-12-21 03:24:00 +0100 | [diff] [blame] | 353 | vlib_cli_output (vm, "%v", s); |
Ed Warnicke | 81aa0e5 | 2015-12-22 18:55:08 -0700 | [diff] [blame] | 354 | vec_free (s); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 355 | return 0; |
| 356 | } |
| 357 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 358 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 359 | VLIB_CLI_COMMAND (show_trace_cli,static) = { |
| 360 | .path = "show trace", |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 361 | .short_help = "Show trace buffer [max COUNT]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | .function = cli_show_trace_buffer, |
| 363 | }; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 364 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 365 | |
| 366 | static clib_error_t * |
| 367 | cli_add_trace_buffer (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 368 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 369 | { |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 370 | unformat_input_t _line_input, *line_input = &_line_input; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 371 | vlib_trace_main_t *tm; |
| 372 | vlib_trace_node_t *tn; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 373 | u32 node_index, add; |
Damjan Marion | db7b269 | 2016-06-09 16:16:27 +0200 | [diff] [blame] | 374 | u8 verbose = 0; |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 375 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 376 | |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 377 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 378 | return 0; |
| 379 | |
| 380 | while (unformat_check_input (line_input) != (uword) UNFORMAT_END_OF_INPUT) |
Damjan Marion | db7b269 | 2016-06-09 16:16:27 +0200 | [diff] [blame] | 381 | { |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 382 | if (unformat (line_input, "%U %d", |
| 383 | unformat_vlib_node, vm, &node_index, &add)) |
Damjan Marion | db7b269 | 2016-06-09 16:16:27 +0200 | [diff] [blame] | 384 | ; |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 385 | else if (unformat (line_input, "verbose")) |
Damjan Marion | db7b269 | 2016-06-09 16:16:27 +0200 | [diff] [blame] | 386 | verbose = 1; |
| 387 | else |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 388 | { |
| 389 | error = clib_error_create ("expected NODE COUNT, got `%U'", |
| 390 | format_unformat_error, line_input); |
| 391 | goto done; |
| 392 | } |
Damjan Marion | db7b269 | 2016-06-09 16:16:27 +0200 | [diff] [blame] | 393 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 394 | |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 395 | /* *INDENT-OFF* */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 396 | foreach_vlib_main (( |
Neale Ranns | 3ee4404 | 2016-10-03 13:05:48 +0100 | [diff] [blame] | 397 | { |
| 398 | void *oldheap; |
| 399 | tm = &this_vlib_main->trace_main; |
| 400 | tm->trace_active_hint = 1; |
| 401 | tm->verbose = verbose; |
| 402 | oldheap = |
| 403 | clib_mem_set_heap (this_vlib_main->heap_base); |
| 404 | vec_validate (tm->nodes, node_index); |
| 405 | tn = tm->nodes + node_index; |
| 406 | tn->limit += add; clib_mem_set_heap (oldheap); |
| 407 | })); |
| 408 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 409 | |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 410 | done: |
| 411 | unformat_free (line_input); |
| 412 | |
| 413 | return error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 414 | } |
| 415 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 416 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 417 | VLIB_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 Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 422 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 423 | |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 424 | |
| 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 | */ |
| 462 | static clib_error_t * |
| 463 | cli_filter_trace (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 464 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 465 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 466 | vlib_trace_main_t *tm = &vm->trace_main; |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 467 | u32 filter_node_index; |
| 468 | u32 filter_flag; |
| 469 | u32 filter_count; |
| 470 | void *mainheap; |
| 471 | |
| 472 | if (unformat (input, "include %U %d", |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 473 | unformat_vlib_node, vm, &filter_node_index, &filter_count)) |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 474 | { |
| 475 | filter_flag = FILTER_FLAG_INCLUDE; |
| 476 | } |
| 477 | else if (unformat (input, "exclude %U %d", |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 478 | unformat_vlib_node, vm, &filter_node_index, |
| 479 | &filter_count)) |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 480 | { |
| 481 | filter_flag = FILTER_FLAG_EXCLUDE; |
| 482 | } |
| 483 | else if (unformat (input, "none")) |
| 484 | { |
| 485 | filter_flag = FILTER_FLAG_NONE; |
| 486 | filter_node_index = 0; |
| 487 | filter_count = 0; |
| 488 | } |
| 489 | else |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 490 | return |
| 491 | clib_error_create |
| 492 | ("expected 'include NODE COUNT' or 'exclude NODE COUNT' or 'none', got `%U'", |
| 493 | format_unformat_error, input); |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 494 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 495 | /* *INDENT-OFF* */ |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 496 | foreach_vlib_main ( |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 497 | ({ |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 498 | tm = &this_vlib_main->trace_main; |
| 499 | tm->filter_node_index = filter_node_index; |
| 500 | tm->filter_flag = filter_flag; |
| 501 | tm->filter_count = filter_count; |
| 502 | |
| 503 | /* |
| 504 | * Clear the trace limits to stop any in-progress tracing |
| 505 | * Prevents runaway trace allocations when the filter changes (or is removed) |
| 506 | */ |
| 507 | mainheap = clib_mem_set_heap (this_vlib_main->heap_base); |
| 508 | vec_free (tm->nodes); |
| 509 | clib_mem_set_heap (mainheap); |
| 510 | })); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 511 | /* *INDENT-ON* */ |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 512 | |
| 513 | return 0; |
| 514 | } |
| 515 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 516 | /* *INDENT-OFF* */ |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 517 | VLIB_CLI_COMMAND (filter_trace_cli,static) = { |
| 518 | .path = "trace filter", |
| 519 | .short_help = "filter trace output - include NODE COUNT | exclude NODE COUNT | none", |
| 520 | .function = cli_filter_trace, |
| 521 | }; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 522 | /* *INDENT-ON* */ |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 523 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 524 | static clib_error_t * |
| 525 | cli_clear_trace_buffer (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 526 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 527 | { |
Bud Grise | 0bcc9d5 | 2016-02-02 14:23:29 -0500 | [diff] [blame] | 528 | clear_trace_buffer (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 529 | return 0; |
| 530 | } |
| 531 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 532 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 533 | VLIB_CLI_COMMAND (clear_trace_cli,static) = { |
| 534 | .path = "clear trace", |
| 535 | .short_help = "Clear trace buffer and free memory", |
| 536 | .function = cli_clear_trace_buffer, |
| 537 | }; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 538 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 539 | |
| 540 | /* Dummy function to get us linked in. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 541 | void |
| 542 | vlib_trace_cli_reference (void) |
| 543 | { |
| 544 | } |
| 545 | |
| 546 | /* |
| 547 | * fd.io coding-style-patch-verification: ON |
| 548 | * |
| 549 | * Local Variables: |
| 550 | * eval: (c-set-style "gnu") |
| 551 | * End: |
| 552 | */ |