blob: cfb4b24780087fea4e1cf3219587244200520b2d [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>
23
Ed Warnickecb9cada2015-12-08 15:45:58 -070024
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 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070034u32 vl(void *p)
35{
36 return vec_len (p);
37}
38
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070039/**
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 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070047uword pe (void *v)
48{
49 return (pool_elts(v));
50}
51
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070052/**
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 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070061int pifi (void *p, u32 index)
62{
63 return pool_is_free_index (p, index);
64}
65
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070066/**
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 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070073void debug_hex_bytes (u8 *s, u32 n)
74{
75 fformat (stderr, "%U\n", format_hex_bytes, s, n);
76}
77
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070078/**
79 * @brief GDB callable function: vlib_dump_frame_ownership
80 *
81 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070082void vlib_dump_frame_ownership (void)
83{
84 vlib_main_t * vm = vlib_get_main();
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;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -070090
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 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
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700117/**
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 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124void vlib_runtime_index_to_node_name (u32 index)
125{
126 vlib_main_t * vm = vlib_get_main();
127 vlib_node_main_t * nm = &vm->node_main;
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700128
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 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
Keith Burns (alagalah)07203af2016-08-25 13:37:37 -0700139/**
140 * @brief GDB callable function: show_gdb_command_fn - show gdb
141 *
142 * Shows list of functions for VPP available in GDB
143 *
144 * @return error - clib_error_t
145 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146static clib_error_t *
147show_gdb_command_fn (vlib_main_t * vm,
148 unformat_input_t * input,
149 vlib_cli_command_t * cmd)
150{
151 vlib_cli_output (vm, "vl(p) returns vec_len(p)");
152 vlib_cli_output (vm, "pe(p) returns pool_elts(p)");
153 vlib_cli_output (vm, "pifi(p, i) returns pool_is_free_index(p, i)");
154 vlib_cli_output (vm, "debug_hex_bytes (ptr, n_bytes) dumps n_bytes in hex");
155 vlib_cli_output (vm, "vlib_dump_frame_ownership() does what it says");
156 vlib_cli_output (vm, "vlib_runtime_index_to_node_name (index) prints NN");
157
158 return 0;
159}
160
161VLIB_CLI_COMMAND (show_gdb_funcs_command, static) = {
162 .path = "show gdb",
163 .short_help = "Describe functions which can be called from gdb",
164 .function = show_gdb_command_fn,
165};
166
167/* Cafeteria plan, maybe you don't want these functions */
168clib_error_t *
169gdb_func_init (vlib_main_t * vm) { return 0; }
170
171VLIB_INIT_FUNCTION (gdb_func_init);