blob: 8abb9c92523e21df2d89e29b7fb83cdea6d8b866 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*
2 * (C) 2016 by Harald Welte <laforge@gnumonks.org>
Harald Welte34193912017-01-07 11:49:55 +01003 * All Rights Reserved
4 *
Harald Weltee08da972017-11-13 01:00:26 +09005 * SPDX-License-Identifier: GPL-2.0+
6 *
Harald Welte34193912017-01-07 11:49:55 +01007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include <stdlib.h>
24#include <string.h>
25
26#include "../../config.h"
27
28#include <osmocom/vty/command.h>
29#include <osmocom/vty/buffer.h>
30#include <osmocom/vty/vty.h>
31#include <osmocom/vty/telnet_interface.h>
32#include <osmocom/vty/misc.h>
33
34#include <osmocom/core/fsm.h>
35#include <osmocom/core/logging.h>
36#include <osmocom/core/linuxlist.h>
37
Harald Welte8c648252017-10-16 15:17:03 +020038/*! \file fsm_vty.c
39 * Osmocom FSM introspection via VTY.
Harald Welte96e2a002017-06-12 21:44:18 +020040 *
41 * This is code implementing generic VTY access to Osmocom FSMs from
42 * libosmocore. This means that any application can expose all state
43 * of all instances of all registered FSM classes by calling a single
44 * command during startup: \ref osmo_fsm_vty_add_cmds
45 */
46
Harald Welte34193912017-01-07 11:49:55 +010047/* we don't want to add this to a public header file; this is simply
48 * exported by libosmocore and used by libmsomvty but not for public
49 * consumption. */
50extern struct llist_head osmo_g_fsms;
51
Neels Hofmeyr87e45502017-06-20 00:17:59 +020052/*! Print information about a FSM [class] to the given VTY
Harald Welte34193912017-01-07 11:49:55 +010053 * \param vty The VTY to which to print
54 * \param[in] fsm The FSM class to print
55 */
56void vty_out_fsm(struct vty *vty, struct osmo_fsm *fsm)
57{
58 unsigned int i;
59 const struct value_string *evt_name;
60
61 vty_out(vty, "FSM Name: '%s', Log Subsys: '%s'%s", fsm->name,
62 log_category_name(fsm->log_subsys), VTY_NEWLINE);
63 /* list the events */
64 for (evt_name = fsm->event_names; evt_name->str != NULL; evt_name++) {
65 vty_out(vty, " Event %02u (0x%08x): '%s'%s", evt_name->value,
66 (1 << evt_name->value), evt_name->str, VTY_NEWLINE);
67 }
68 /* list the states */
69 vty_out(vty, " Number of States: %u%s", fsm->num_states, VTY_NEWLINE);
70 for (i = 0; i < fsm->num_states; i++) {
71 const struct osmo_fsm_state *state = &fsm->states[i];
72 vty_out(vty, " State %-20s InEvtMask: 0x%08x, OutStateMask: 0x%08x%s",
73 state->name, state->in_event_mask, state->out_state_mask,
74 VTY_NEWLINE);
75 }
76}
77
Neels Hofmeyr87e45502017-06-20 00:17:59 +020078/*! Print a FSM instance to the given VTY
Harald Welte34193912017-01-07 11:49:55 +010079 * \param vty The VTY to which to print
80 * \param[in] fsmi The FSM instance to print
81 */
82void vty_out_fsm_inst(struct vty *vty, struct osmo_fsm_inst *fsmi)
83{
84 struct osmo_fsm_inst *child;
85
86 vty_out(vty, "FSM Instance Name: '%s', ID: '%s'%s",
87 fsmi->name, fsmi->id, VTY_NEWLINE);
88 vty_out(vty, " Log-Level: '%s', State: '%s'%s",
89 log_level_str(fsmi->log_level),
90 osmo_fsm_state_name(fsmi->fsm, fsmi->state),
91 VTY_NEWLINE);
92 if (fsmi->T)
93 vty_out(vty, " Timer: %u%s", fsmi->T, VTY_NEWLINE);
94 if (fsmi->proc.parent) {
95 vty_out(vty, " Parent: '%s', Term-Event: '%s'%s",
96 fsmi->proc.parent->name,
97 osmo_fsm_event_name(fsmi->proc.parent->fsm,
98 fsmi->proc.parent_term_event),
99 VTY_NEWLINE);
100 }
101 llist_for_each_entry(child, &fsmi->proc.children, list) {
102 vty_out(vty, " Child: '%s'%s", child->name, VTY_NEWLINE);
103 }
104}
105
106#define SH_FSM_STR SHOW_STR "Show information about finite state machines\n"
107#define SH_FSMI_STR SHOW_STR "Show information about finite state machine instances\n"
108
109DEFUN(show_fsms, show_fsms_cmd,
110 "show fsm all",
111 SH_FSM_STR
112 "Display a list of all registered finite state machines\n")
113{
114 struct osmo_fsm *fsm;
115
116 llist_for_each_entry(fsm, &osmo_g_fsms, list)
117 vty_out_fsm(vty, fsm);
118
119 return CMD_SUCCESS;
120}
121
122DEFUN(show_fsm, show_fsm_cmd,
123 "show fsm NAME",
124 SH_FSM_STR
125 "Display information about a single named finite state machine\n")
126{
127 struct osmo_fsm *fsm;
128
129 fsm = osmo_fsm_find_by_name(argv[0]);
130 if (!fsm) {
131 vty_out(vty, "Error: FSM with name '%s' doesn't exist!%s",
132 argv[0], VTY_NEWLINE);
133 return CMD_WARNING;
134 }
135
136 vty_out_fsm(vty, fsm);
137
138 return CMD_SUCCESS;
139}
140
141DEFUN(show_fsm_insts, show_fsm_insts_cmd,
142 "show fsm-instances all",
143 SH_FSMI_STR
144 "Display a list of all FSM instances of all finite state machine")
145{
146 struct osmo_fsm *fsm;
147
148 llist_for_each_entry(fsm, &osmo_g_fsms, list) {
149 struct osmo_fsm_inst *fsmi;
150 llist_for_each_entry(fsmi, &fsm->instances, list)
151 vty_out_fsm_inst(vty, fsmi);
152 }
153
154 return CMD_SUCCESS;
155}
156
157DEFUN(show_fsm_inst, show_fsm_inst_cmd,
158 "show fsm-instances NAME",
159 SH_FSMI_STR
160 "Display a list of all FSM instances of the named finite state machine")
161{
162 struct osmo_fsm *fsm;
163 struct osmo_fsm_inst *fsmi;
164
165 fsm = osmo_fsm_find_by_name(argv[0]);
166 if (!fsm) {
167 vty_out(vty, "Error: FSM with name '%s' doesn't exist!%s",
168 argv[0], VTY_NEWLINE);
169 return CMD_WARNING;
170 }
171
172 llist_for_each_entry(fsmi, &fsm->instances, list)
173 vty_out_fsm_inst(vty, fsmi);
174
175 return CMD_SUCCESS;
176}
177
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200178/*! Install VTY commands for FSM introspection
Harald Welte34193912017-01-07 11:49:55 +0100179 * This installs a couple of VTY commands for introspection of FSM
180 * classes as well as FSM instances. Call this once from your
181 * application if you want to support those commands. */
182void osmo_fsm_vty_add_cmds(void)
183{
184 install_element_ve(&show_fsm_cmd);
185 install_element_ve(&show_fsms_cmd);
186 install_element_ve(&show_fsm_inst_cmd);
187 install_element_ve(&show_fsm_insts_cmd);
188}