FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
gdb_funcs.c
Go to the documentation of this file.
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  * @file
17  * @brief Host utility functions
18  */
19 #include <vppinfra/format.h>
20 #include <vlib/vlib.h>
21 
22 #include <vlib/threads.h>
23 #include <vnet/vnet.h>
24 #include <vppinfra/format.h>
25 
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  */
34 u32 vl(void *p)
35 {
36  return vec_len (p);
37 }
38 
39 /**
40  * @brief GDB callable function: pe - call pool_elts - number of elements in a pool
41  *
42  * @param *v - void - address of pool
43  *
44  * @return number - uword
45  *
46  */
47 uword pe (void *v)
48 {
49  return (pool_elts(v));
50 }
51 
52 /**
53  * @brief GDB callable function: pifi - call pool_is_free_index - is passed index free?
54  *
55  * @param *p - void - address of pool
56  * @param *index - u32
57  *
58  * @return 0|1 - int
59  *
60  */
61 int pifi (void *p, u32 index)
62 {
63  return pool_is_free_index (p, index);
64 }
65 
66 /**
67  * @brief GDB callable function: debug_hex_bytes - return formatted hex string
68  *
69  * @param *s - u8
70  * @param n - u32 - number of bytes to format
71  *
72  */
73 void debug_hex_bytes (u8 *s, u32 n)
74 {
75  fformat (stderr, "%U\n", format_hex_bytes, s, n);
76 }
77 
78 /**
79  * @brief GDB callable function: vlib_dump_frame_ownership
80  *
81  */
83 {
85  vlib_node_main_t * nm = &vm->node_main;
86  vlib_node_runtime_t * this_node_runtime;
87  vlib_next_frame_t * nf;
88  u32 first_nf_index;
89  u32 index;
90 
91  vec_foreach(this_node_runtime, nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
92  {
93  first_nf_index = this_node_runtime->next_frame_index;
94 
95  for (index = first_nf_index; index < first_nf_index +
96  this_node_runtime->n_next_nodes; index++)
97  {
98  vlib_node_runtime_t * owned_runtime;
99  nf = vec_elt_at_index (vm->node_main.next_frames, index);
100  if (nf->flags & VLIB_FRAME_OWNER)
101  {
102  owned_runtime = vec_elt_at_index (nm->nodes_by_type[0],
103  nf->node_runtime_index);
104  fformat(stderr,
105  "%s next index %d owns enqueue rights to %s\n",
106  nm->nodes[this_node_runtime->node_index]->name,
107  index - first_nf_index,
108  nm->nodes[owned_runtime->node_index]->name);
109  fformat (stderr, " nf index %d nf->frame_index %d\n",
110  nf - vm->node_main.next_frames,
111  nf->frame_index);
112  }
113  }
114  }
115 }
116 
117 /**
118  * @brief GDB callable function: vlib_runtime_index_to_node_name
119  *
120  * Takes node index and will return the node name.
121  *
122  * @param index - u32
123  */
125 {
127  vlib_node_main_t * nm = &vm->node_main;
128 
129  if (index > vec_len (nm->nodes))
130  {
131  fformat(stderr, "%d out of range, max %d\n", vec_len(nm->nodes));
132  return;
133  }
134 
135  fformat(stderr, "node runtime index %d name %s\n", index, nm->nodes[index]->name);
136 }
137 
138 void gdb_show_errors (int verbose)
139 {
141  unformat_input_t input;
143 
144  if (verbose == 0)
145  unformat_init_string (&input, "verbose 0", 9);
146  else if (verbose == 1)
147  unformat_init_string (&input, "verbose 1", 9);
148  else
149  {
150  fformat(stderr, "verbose not 0 or 1\n");
151  return;
152  }
153 
154  vlib_cli_show_errors.function (vm, &input, 0 /* cmd */);
155  unformat_free (&input);
156 }
157 
158 void gdb_show_session (int verbose)
159 {
161  unformat_input_t input;
163 
164  if (verbose == 0)
165  unformat_init_string (&input, "verbose 0", 9);
166  else if (verbose == 1)
167  unformat_init_string (&input, "verbose 1", 9);
168  else if (verbose == 2)
169  unformat_init_string (&input, "verbose 2", 9);
170  else
171  {
172  fformat(stderr, "verbose not 0 - 2\n");
173  return;
174  }
175 
176  vlib_cli_show_session_command.function (vm, &input, 0 /* cmd */);
177  unformat_free (&input);
178 }
179 
180 /**
181  * @brief GDB callable function: show_gdb_command_fn - show gdb
182  *
183  * Shows list of functions for VPP available in GDB
184  *
185  * @return error - clib_error_t
186  */
187 static clib_error_t *
189  unformat_input_t * input,
190  vlib_cli_command_t * cmd)
191 {
192  vlib_cli_output (vm, "vl(p) returns vec_len(p)");
193  vlib_cli_output (vm, "pe(p) returns pool_elts(p)");
194  vlib_cli_output (vm, "pifi(p, i) returns pool_is_free_index(p, i)");
195  vlib_cli_output (vm, "gdb_show_errors(0|1) dumps error counters");
196  vlib_cli_output (vm, "gdb_show_session dumps session counters");
197  vlib_cli_output (vm, "debug_hex_bytes (ptr, n_bytes) dumps n_bytes in hex");
198  vlib_cli_output (vm, "vlib_dump_frame_ownership() does what it says");
199  vlib_cli_output (vm, "vlib_runtime_index_to_node_name (index) prints NN");
200 
201  return 0;
202 }
203 
204 VLIB_CLI_COMMAND (show_gdb_funcs_command, static) = {
205  .path = "show gdb",
206  .short_help = "Describe functions which can be called from gdb",
207  .function = show_gdb_command_fn,
208 };
209 
210 vnet_buffer_opaque_t *vb (void *vb_arg)
211 {
212  vlib_buffer_t *b = (vlib_buffer_t *)vb_arg;
214 
215  rv = vnet_buffer (b);
216 
217  return rv;
218 }
219 
220 /* Cafeteria plan, maybe you don't want these functions */
221 clib_error_t *
222 gdb_func_init (vlib_main_t * vm) { return 0; }
223 
void vlib_runtime_index_to_node_name(u32 index)
GDB callable function: vlib_runtime_index_to_node_name.
Definition: gdb_funcs.c:124
u32 next_frame_index
Start of next frames for this node.
Definition: node.h:434
#define VLIB_FRAME_OWNER
Definition: node.h:367
void vlib_dump_frame_ownership(void)
GDB callable function: vlib_dump_frame_ownership.
Definition: gdb_funcs.c:82
vnet_buffer_opaque_t * vb(void *vb_arg)
Definition: gdb_funcs.c:210
void gdb_show_session(int verbose)
Definition: gdb_funcs.c:158
void debug_hex_bytes(u8 *s, u32 n)
GDB callable function: debug_hex_bytes - return formatted hex string.
Definition: gdb_funcs.c:73
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
vlib_node_t ** nodes
Definition: node.h:640
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
u8 * format_hex_bytes(u8 *s, va_list *va)
Definition: std-formats.c:84
vlib_node_runtime_t * nodes_by_type[VLIB_N_NODE_TYPE]
Definition: node.h:650
void unformat_init_string(unformat_input_t *input, char *string, int string_len)
Definition: unformat.c:1023
vlib_cli_command_t vlib_cli_show_errors
(constructor) VLIB_CLI_COMMAND (vlib_cli_show_errors)
Definition: error.c:283
u32 frame_index
Definition: node.h:353
vlib_cli_command_function_t * function
Definition: cli.h:102
vlib_cli_command_t vlib_cli_show_session_command
(constructor) VLIB_CLI_COMMAND (vlib_cli_show_session_command)
Definition: session_cli.c:283
static clib_error_t * show_gdb_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
GDB callable function: show_gdb_command_fn - show gdb.
Definition: gdb_funcs.c:188
#define v
Definition: acl.c:323
struct _unformat_input_t unformat_input_t
u32 node_index
Node index.
Definition: node.h:437
word fformat(FILE *f, char *fmt,...)
Definition: format.c:453
u8 * name
Definition: node.h:221
vlib_main_t * vm
Definition: buffer.c:283
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:267
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:154
clib_error_t * gdb_func_init(vlib_main_t *vm)
Definition: gdb_funcs.c:222
unsigned int u32
Definition: types.h:88
int pifi(void *p, u32 index)
GDB callable function: pifi - call pool_is_free_index - is passed index free?
Definition: gdb_funcs.c:61
uword pe(void *v)
GDB callable function: pe - call pool_elts - number of elements in a pool.
Definition: gdb_funcs.c:47
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u64 uword
Definition: types.h:112
u32 vl(void *p)
GDB callable function: vl - Return vector length of vector.
Definition: gdb_funcs.c:34
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
vlib_node_main_t node_main
Definition: main.h:129
vlib_next_frame_t * next_frames
Definition: node.h:663
static void unformat_free(unformat_input_t *i)
Definition: format.h:161
#define vnet_buffer(b)
Definition: buffer.h:306
#define vec_foreach(var, vec)
Vector iterator.
u32 node_runtime_index
Definition: node.h:356
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:680
void gdb_show_errors(int verbose)
Definition: gdb_funcs.c:138
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:128