blob: 29011f05ce16d0e227cd1555857ef299aef57933 [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 */
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070015/**
16 * @file
17 * @brief Host utility functions
18 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070019#include <vppinfra/format.h>
20#include <vlib/vlib.h>
21
22#include <vlib/threads.h>
Dave Barachacd2a6a2017-05-16 17:41:34 -040023#include <vnet/vnet.h>
Florin Coras66b11312017-07-31 17:18:03 -070024#include <vppinfra/format.h>
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070025
26/**
27 * @brief GDB callable function: vl - Return vector length of vector
28 *
29 * @param *p - void - address of vector
30 *
31 * @return length - u32
32 *
33 */
sharath reddy1b0c9832017-11-29 20:08:11 +053034u32
35vl (void *p)
Ed Warnickecb9cada2015-12-08 15:45:58 -070036{
37 return vec_len (p);
38}
39
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070040/**
Dave Baracha690fdb2020-01-21 12:34:55 -050041 * @brief GDB callable function: pvh - Return vector header of vector
42 *
43 * @param *p - void - address of vector
44 *
45 * @return vh - vec_header_t, the vector header
46 *
47 */
48vec_header_t *
49pvh (void *p)
50{
51 return _vec_find (p);
52}
53
54
55/**
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070056 * @brief GDB callable function: pe - call pool_elts - number of elements in a pool
57 *
58 * @param *v - void - address of pool
59 *
60 * @return number - uword
61 *
62 */
sharath reddy1b0c9832017-11-29 20:08:11 +053063uword
64pe (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -070065{
sharath reddy1b0c9832017-11-29 20:08:11 +053066 return (pool_elts (v));
Ed Warnickecb9cada2015-12-08 15:45:58 -070067}
68
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070069/**
70 * @brief GDB callable function: pifi - call pool_is_free_index - is passed index free?
71 *
72 * @param *p - void - address of pool
73 * @param *index - u32
74 *
75 * @return 0|1 - int
76 *
77 */
sharath reddy1b0c9832017-11-29 20:08:11 +053078int
79pifi (void *p, u32 index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070080{
81 return pool_is_free_index (p, index);
82}
83
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070084/**
85 * @brief GDB callable function: debug_hex_bytes - return formatted hex string
86 *
87 * @param *s - u8
88 * @param n - u32 - number of bytes to format
89 *
90 */
sharath reddy1b0c9832017-11-29 20:08:11 +053091void
92debug_hex_bytes (u8 * s, u32 n)
Ed Warnickecb9cada2015-12-08 15:45:58 -070093{
94 fformat (stderr, "%U\n", format_hex_bytes, s, n);
95}
96
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070097/**
98 * @brief GDB callable function: vlib_dump_frame_ownership
99 *
100 */
sharath reddy1b0c9832017-11-29 20:08:11 +0530101void
102vlib_dump_frame_ownership (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103{
sharath reddy1b0c9832017-11-29 20:08:11 +0530104 vlib_main_t *vm = vlib_get_main ();
105 vlib_node_main_t *nm = &vm->node_main;
106 vlib_node_runtime_t *this_node_runtime;
107 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 u32 first_nf_index;
109 u32 index;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700110
sharath reddy1b0c9832017-11-29 20:08:11 +0530111 vec_foreach (this_node_runtime, nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
112 {
113 first_nf_index = this_node_runtime->next_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114
sharath reddy1b0c9832017-11-29 20:08:11 +0530115 for (index = first_nf_index; index < first_nf_index +
116 this_node_runtime->n_next_nodes; index++)
117 {
118 vlib_node_runtime_t *owned_runtime;
119 nf = vec_elt_at_index (vm->node_main.next_frames, index);
120 if (nf->flags & VLIB_FRAME_OWNER)
121 {
122 owned_runtime = vec_elt_at_index (nm->nodes_by_type[0],
123 nf->node_runtime_index);
124 fformat (stderr,
125 "%s next index %d owns enqueue rights to %s\n",
126 nm->nodes[this_node_runtime->node_index]->name,
127 index - first_nf_index,
128 nm->nodes[owned_runtime->node_index]->name);
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200129 fformat (stderr, " nf index %d nf->frame %p\n",
130 nf - vm->node_main.next_frames, nf->frame);
sharath reddy1b0c9832017-11-29 20:08:11 +0530131 }
132 }
133 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134}
135
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700136/**
137 * @brief GDB callable function: vlib_runtime_index_to_node_name
138 *
139 * Takes node index and will return the node name.
140 *
141 * @param index - u32
142 */
sharath reddy1b0c9832017-11-29 20:08:11 +0530143void
144vlib_runtime_index_to_node_name (u32 index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145{
sharath reddy1b0c9832017-11-29 20:08:11 +0530146 vlib_main_t *vm = vlib_get_main ();
147 vlib_node_main_t *nm = &vm->node_main;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700148
Eyal Baricd307742018-07-22 12:45:15 +0300149 if (index >= vec_len (nm->nodes))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 {
sharath reddy1b0c9832017-11-29 20:08:11 +0530151 fformat (stderr, "%d out of range, max %d\n", vec_len (nm->nodes));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 return;
153 }
154
sharath reddy1b0c9832017-11-29 20:08:11 +0530155 fformat (stderr, "node runtime index %d name %s\n", index,
156 nm->nodes[index]->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157}
158
sharath reddy1b0c9832017-11-29 20:08:11 +0530159void
160gdb_show_errors (int verbose)
Florin Coras66b11312017-07-31 17:18:03 -0700161{
162 extern vlib_cli_command_t vlib_cli_show_errors;
163 unformat_input_t input;
sharath reddy1b0c9832017-11-29 20:08:11 +0530164 vlib_main_t *vm = vlib_get_main ();
Florin Coras66b11312017-07-31 17:18:03 -0700165
166 if (verbose == 0)
167 unformat_init_string (&input, "verbose 0", 9);
168 else if (verbose == 1)
169 unformat_init_string (&input, "verbose 1", 9);
sharath reddy1b0c9832017-11-29 20:08:11 +0530170 else
Florin Coras66b11312017-07-31 17:18:03 -0700171 {
sharath reddy1b0c9832017-11-29 20:08:11 +0530172 fformat (stderr, "verbose not 0 or 1\n");
Florin Coras66b11312017-07-31 17:18:03 -0700173 return;
174 }
175
sharath reddy1b0c9832017-11-29 20:08:11 +0530176 vlib_cli_show_errors.function (vm, &input, 0 /* cmd */ );
Florin Coras66b11312017-07-31 17:18:03 -0700177 unformat_free (&input);
sharath reddy1b0c9832017-11-29 20:08:11 +0530178}
Florin Coras66b11312017-07-31 17:18:03 -0700179
sharath reddy1b0c9832017-11-29 20:08:11 +0530180void
181gdb_show_session (int verbose)
Florin Coras66b11312017-07-31 17:18:03 -0700182{
183 extern vlib_cli_command_t vlib_cli_show_session_command;
184 unformat_input_t input;
sharath reddy1b0c9832017-11-29 20:08:11 +0530185 vlib_main_t *vm = vlib_get_main ();
Florin Coras66b11312017-07-31 17:18:03 -0700186
187 if (verbose == 0)
188 unformat_init_string (&input, "verbose 0", 9);
189 else if (verbose == 1)
190 unformat_init_string (&input, "verbose 1", 9);
191 else if (verbose == 2)
192 unformat_init_string (&input, "verbose 2", 9);
sharath reddy1b0c9832017-11-29 20:08:11 +0530193 else
Florin Coras66b11312017-07-31 17:18:03 -0700194 {
sharath reddy1b0c9832017-11-29 20:08:11 +0530195 fformat (stderr, "verbose not 0 - 2\n");
Florin Coras66b11312017-07-31 17:18:03 -0700196 return;
197 }
198
sharath reddy1b0c9832017-11-29 20:08:11 +0530199 vlib_cli_show_session_command.function (vm, &input, 0 /* cmd */ );
Florin Coras66b11312017-07-31 17:18:03 -0700200 unformat_free (&input);
sharath reddy1b0c9832017-11-29 20:08:11 +0530201}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Kingwel Xie35439082019-03-05 05:06:48 -0500203static int
204trace_cmp (void *a1, void *a2)
205{
206 vlib_trace_header_t **t1 = a1;
207 vlib_trace_header_t **t2 = a2;
208 i64 dt = t1[0]->time - t2[0]->time;
209 return dt < 0 ? -1 : (dt > 0 ? +1 : 0);
210}
211
212void
213gdb_show_traces ()
214{
215 vlib_trace_main_t *tm;
216 vlib_trace_header_t **h, **traces;
217 u32 i, index = 0;
218 char *fmt;
219 u8 *s = 0;
220 u32 max;
221
222 /* By default display only this many traces. */
223 max = 50;
224
225 /* Get active traces from pool. */
226
227 /* *INDENT-OFF* */
228 foreach_vlib_main (
229 ({
230 fmt = "------------------- Start of thread %d %s -------------------\n";
231 s = format (s, fmt, index, vlib_worker_threads[index].name);
232
233 tm = &this_vlib_main->trace_main;
234
235 trace_apply_filter(this_vlib_main);
236
237 traces = 0;
238 pool_foreach (h, tm->trace_buffer_pool,
239 ({
240 vec_add1 (traces, h[0]);
241 }));
242
243 if (vec_len (traces) == 0)
244 {
245 s = format (s, "No packets in trace buffer\n");
246 goto done;
247 }
248
249 /* Sort them by increasing time. */
250 vec_sort_with_function (traces, trace_cmp);
251
252 for (i = 0; i < vec_len (traces); i++)
253 {
254 if (i == max)
255 {
256 fformat (stderr, "Limiting display to %d packets."
257 " To display more specify max.", max);
258 goto done;
259 }
260
261 s = format (s, "Packet %d\n%U\n\n", i + 1,
262 format_vlib_trace, vlib_mains[0], traces[i]);
263 }
264
265 done:
266 vec_free (traces);
267
268 index++;
269 }));
270 /* *INDENT-ON* */
271
272 fformat (stderr, "%v", s);
273 vec_free (s);
274}
275
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700276/**
277 * @brief GDB callable function: show_gdb_command_fn - show gdb
278 *
279 * Shows list of functions for VPP available in GDB
280 *
281 * @return error - clib_error_t
282 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283static clib_error_t *
284show_gdb_command_fn (vlib_main_t * vm,
sharath reddy1b0c9832017-11-29 20:08:11 +0530285 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286{
287 vlib_cli_output (vm, "vl(p) returns vec_len(p)");
Dave Barach7bee7732017-10-18 18:48:11 -0400288 vlib_cli_output (vm, "vb(b) returns vnet_buffer(b) [opaque]");
289 vlib_cli_output (vm, "vb2(b) returns vnet_buffer2(b) [opaque2]");
Benoît Ganne2b65f9c2019-11-21 16:53:31 +0100290 vlib_cli_output (vm, "vbi(b) returns b index");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 vlib_cli_output (vm, "pe(p) returns pool_elts(p)");
292 vlib_cli_output (vm, "pifi(p, i) returns pool_is_free_index(p, i)");
Florin Coras66b11312017-07-31 17:18:03 -0700293 vlib_cli_output (vm, "gdb_show_errors(0|1) dumps error counters");
294 vlib_cli_output (vm, "gdb_show_session dumps session counters");
Kingwel Xie35439082019-03-05 05:06:48 -0500295 vlib_cli_output (vm, "gdb_show_traces() dumps buffer traces");
Benoît Ganne2b65f9c2019-11-21 16:53:31 +0100296 vlib_cli_output (vm, "gdb_validate_buffer(b) check vlib_buffer b sanity");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 vlib_cli_output (vm, "debug_hex_bytes (ptr, n_bytes) dumps n_bytes in hex");
298 vlib_cli_output (vm, "vlib_dump_frame_ownership() does what it says");
299 vlib_cli_output (vm, "vlib_runtime_index_to_node_name (index) prints NN");
300
301 return 0;
302}
303
sharath reddy1b0c9832017-11-29 20:08:11 +0530304/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305VLIB_CLI_COMMAND (show_gdb_funcs_command, static) = {
306 .path = "show gdb",
307 .short_help = "Describe functions which can be called from gdb",
308 .function = show_gdb_command_fn,
309};
sharath reddy1b0c9832017-11-29 20:08:11 +0530310/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311
sharath reddy1b0c9832017-11-29 20:08:11 +0530312vnet_buffer_opaque_t *
313vb (void *vb_arg)
Dave Barachacd2a6a2017-05-16 17:41:34 -0400314{
sharath reddy1b0c9832017-11-29 20:08:11 +0530315 vlib_buffer_t *b = (vlib_buffer_t *) vb_arg;
316 vnet_buffer_opaque_t *rv;
Dave Barachacd2a6a2017-05-16 17:41:34 -0400317
sharath reddy1b0c9832017-11-29 20:08:11 +0530318 rv = vnet_buffer (b);
319
320 return rv;
Dave Barachacd2a6a2017-05-16 17:41:34 -0400321}
322
sharath reddy1b0c9832017-11-29 20:08:11 +0530323vnet_buffer_opaque2_t *
324vb2 (void *vb_arg)
Dave Barach7bee7732017-10-18 18:48:11 -0400325{
sharath reddy1b0c9832017-11-29 20:08:11 +0530326 vlib_buffer_t *b = (vlib_buffer_t *) vb_arg;
327 vnet_buffer_opaque2_t *rv;
Dave Barach7bee7732017-10-18 18:48:11 -0400328
sharath reddy1b0c9832017-11-29 20:08:11 +0530329 rv = vnet_buffer2 (b);
330
331 return rv;
Dave Barach7bee7732017-10-18 18:48:11 -0400332}
333
Benoît Ganne2b65f9c2019-11-21 16:53:31 +0100334u32
335vbi (vlib_buffer_t * b)
336{
337 vlib_main_t *vm = vlib_get_main ();
338 vlib_buffer_main_t *bm = vm->buffer_main;
339 u32 bi = pointer_to_uword (b) - bm->buffer_mem_start;
340 bi >>= CLIB_LOG2_CACHE_LINE_BYTES;
341 return bi;
342}
343
344int
345gdb_validate_buffer (vlib_buffer_t * b)
346{
347 vlib_main_t *vm = vlib_get_main ();
348 u32 bi = vbi (b);
349 u8 *s =
350 vlib_validate_buffers (vm, &bi, 0, 1, VLIB_BUFFER_KNOWN_ALLOCATED, 1);
351 if (s)
352 {
353 fformat (stderr, "gdb_validate_buffer(): %v", s);
354 return -1;
355 }
356 fformat (stderr, "gdb_validate_buffer(): no error found\n");
357 return 0;
358}
Dave Barach7bee7732017-10-18 18:48:11 -0400359
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360/* Cafeteria plan, maybe you don't want these functions */
sharath reddy1b0c9832017-11-29 20:08:11 +0530361clib_error_t *
362gdb_func_init (vlib_main_t * vm)
363{
364 return 0;
365}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366
367VLIB_INIT_FUNCTION (gdb_func_init);
sharath reddy1b0c9832017-11-29 20:08:11 +0530368
369/*
370 * fd.io coding-style-patch-verification: ON
371 *
372 * Local Variables:
373 * eval: (c-set-style "gnu")
374 * End:
375 */