blob: 7342f14c79d1ee170da5884300fa46b5fd75c316 [file] [log] [blame]
Harald Welte5bc61dc2010-05-16 22:02:16 +02001/* OpenBSC VTY common helpers */
2/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
3 * (C) 2009-2010 by Holger Hans Peter Freyther
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01007 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
Harald Welte5bc61dc2010-05-16 22:02:16 +02009 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010014 * GNU Affero General Public License for more details.
Harald Welte5bc61dc2010-05-16 22:02:16 +020015 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte5bc61dc2010-05-16 22:02:16 +020018 *
19 */
20
21#include <stdlib.h>
22#include <string.h>
23
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010024#include <osmocom/core/talloc.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020025
26#include <openbsc/vty.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020027#include <openbsc/gsm_data.h>
28#include <openbsc/debug.h>
Harald Welte4b037e42010-05-19 19:45:32 +020029#include <openbsc/gsm_subscriber.h>
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +080030#include <openbsc/bsc_nat.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020031
Harald Welte4b037e42010-05-19 19:45:32 +020032#include <osmocom/vty/telnet_interface.h>
33#include <osmocom/vty/command.h>
34#include <osmocom/vty/buffer.h>
35#include <osmocom/vty/vty.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020036
37
Holger Hans Peter Freyther57da4472010-06-08 16:11:06 +080038enum node_type bsc_vty_go_parent(struct vty *vty)
Harald Welte4b037e42010-05-19 19:45:32 +020039{
40 switch (vty->node) {
41 case GSMNET_NODE:
42 vty->node = CONFIG_NODE;
43 vty->index = NULL;
44 break;
45 case BTS_NODE:
46 vty->node = GSMNET_NODE;
47 {
48 /* set vty->index correctly ! */
49 struct gsm_bts *bts = vty->index;
50 vty->index = bts->network;
51 }
52 break;
53 case TRX_NODE:
54 vty->node = BTS_NODE;
55 {
56 /* set vty->index correctly ! */
57 struct gsm_bts_trx *trx = vty->index;
58 vty->index = trx->bts;
59 }
60 break;
61 case TS_NODE:
62 vty->node = TRX_NODE;
63 {
64 /* set vty->index correctly ! */
65 struct gsm_bts_trx_ts *ts = vty->index;
66 vty->index = ts->trx;
67 }
68 break;
Harald Welte64632322010-05-31 17:17:29 +020069 case OML_NODE:
Harald Welte8d4a4722011-02-12 15:02:29 +010070 case OM2K_NODE:
Harald Welte64632322010-05-31 17:17:29 +020071 vty->node = ENABLE_NODE;
72 talloc_free(vty->index);
73 vty->index = NULL;
74 break;
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +080075 case NAT_NODE:
76 vty->node = CONFIG_NODE;
77 vty->index = NULL;
78 break;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +080079 case NAT_BSC_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +080080 vty->node = NAT_NODE;
81 {
82 struct bsc_config *bsc_config = vty->index;
83 vty->index = bsc_config->nat;
84 }
85 break;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +020086 case PGROUP_NODE:
87 vty->node = NAT_NODE;
88 break;
Holger Hans Peter Freyther0e939fe2011-02-28 12:11:02 +010089 case TRUNK_NODE:
90 vty->node = MGCP_NODE;
91 break;
Harald Welte338e3b32012-11-20 22:22:04 +010092 case SMPP_ESME_NODE:
93 vty->node = SMPP_NODE;
94 vty->index = NULL;
95 break;
96 case SMPP_NODE:
Harald Welteab386e62011-09-01 18:18:43 +020097 case MSC_NODE:
98 case MNCC_INT_NODE:
Harald Welte4b037e42010-05-19 19:45:32 +020099 default:
100 vty->node = CONFIG_NODE;
101 }
102
103 return vty->node;
104}
105
Harald Welte5bc61dc2010-05-16 22:02:16 +0200106/* Down vty node level. */
107gDEFUN(ournode_exit,
108 ournode_exit_cmd, "exit", "Exit current mode and down to previous mode\n")
109{
110 switch (vty->node) {
111 case GSMNET_NODE:
112 vty->node = CONFIG_NODE;
113 vty->index = NULL;
114 break;
115 case BTS_NODE:
116 vty->node = GSMNET_NODE;
117 {
118 /* set vty->index correctly ! */
119 struct gsm_bts *bts = vty->index;
120 vty->index = bts->network;
121 vty->index_sub = NULL;
122 }
123 break;
124 case TRX_NODE:
125 vty->node = BTS_NODE;
126 {
127 /* set vty->index correctly ! */
128 struct gsm_bts_trx *trx = vty->index;
129 vty->index = trx->bts;
130 vty->index_sub = &trx->bts->description;
131 }
132 break;
133 case TS_NODE:
134 vty->node = TRX_NODE;
135 {
136 /* set vty->index correctly ! */
137 struct gsm_bts_trx_ts *ts = vty->index;
138 vty->index = ts->trx;
139 vty->index_sub = &ts->trx->description;
140 }
141 break;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800142 case NAT_BSC_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +0800143 vty->node = NAT_NODE;
144 {
145 struct bsc_config *bsc_config = vty->index;
146 vty->index = bsc_config->nat;
147 }
148 break;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200149 case PGROUP_NODE:
150 vty->node = NAT_NODE;
151 break;
Harald Welte338e3b32012-11-20 22:22:04 +0100152 case SMPP_ESME_NODE:
153 vty->node = SMPP_NODE;
154 vty->index = NULL;
155 break;
156 case SMPP_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200157 case MGCP_NODE:
158 case GBPROXY_NODE:
159 case SGSN_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +0800160 case NAT_NODE:
Holger Hans Peter Freyther8b902d72011-06-04 20:22:49 +0200161 case BSC_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200162 vty->node = CONFIG_NODE;
163 vty->index = NULL;
164 break;
Harald Welte64632322010-05-31 17:17:29 +0200165 case OML_NODE:
Harald Welte810e3232011-02-12 15:00:35 +0100166 case OM2K_NODE:
Harald Welte64632322010-05-31 17:17:29 +0200167 vty->node = ENABLE_NODE;
168 talloc_free(vty->index);
169 vty->index = NULL;
170 break;
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +0800171 case MSC_NODE:
Harald Welteab386e62011-09-01 18:18:43 +0200172 case MNCC_INT_NODE:
Holger Hans Peter Freyther06f4fc72011-03-29 17:46:14 +0200173 vty->node = CONFIG_NODE;
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +0800174 break;
Holger Hans Peter Freyther0e939fe2011-02-28 12:11:02 +0100175 case TRUNK_NODE:
176 vty->node = MGCP_NODE;
177 vty->index = NULL;
178 break;
Harald Welte5bc61dc2010-05-16 22:02:16 +0200179 default:
180 break;
181 }
182 return CMD_SUCCESS;
183}
184
185/* End of configuration. */
186gDEFUN(ournode_end,
187 ournode_end_cmd, "end", "End current mode and change to enable mode.")
188{
189 switch (vty->node) {
190 case VIEW_NODE:
191 case ENABLE_NODE:
192 /* Nothing to do. */
193 break;
194 case CONFIG_NODE:
195 case GSMNET_NODE:
196 case BTS_NODE:
197 case TRX_NODE:
198 case TS_NODE:
199 case MGCP_NODE:
Holger Hans Peter Freyther0e939fe2011-02-28 12:11:02 +0100200 case TRUNK_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200201 case GBPROXY_NODE:
202 case SGSN_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200203 case VTY_NODE:
Holger Hans Peter Freyther5654c5b2010-07-31 04:50:21 +0800204 case NAT_NODE:
205 case NAT_BSC_NODE:
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200206 case PGROUP_NODE:
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +0800207 case MSC_NODE:
Harald Welteab386e62011-09-01 18:18:43 +0200208 case MNCC_INT_NODE:
Harald Welte338e3b32012-11-20 22:22:04 +0100209 case SMPP_NODE:
210 case SMPP_ESME_NODE:
Holger Hans Peter Freyther8b902d72011-06-04 20:22:49 +0200211 case BSC_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200212 vty_config_unlock(vty);
213 vty->node = ENABLE_NODE;
214 vty->index = NULL;
215 vty->index_sub = NULL;
216 break;
217 default:
218 break;
219 }
220 return CMD_SUCCESS;
221}
222
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800223int bsc_vty_is_config_node(struct vty *vty, int node)
224{
225 switch (node) {
226 /* add items that are not config */
227 case OML_NODE:
Harald Welte810e3232011-02-12 15:00:35 +0100228 case OM2K_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800229 case SUBSCR_NODE:
Holger Hans Peter Freyther6ffca132010-09-04 11:15:27 +0800230 case CONFIG_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800231 return 0;
232
233 default:
234 return 1;
235 }
236}
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200237
238/* a talloc string replace routine */
239void bsc_replace_string(void *ctx, char **dst, const char *newstr)
240{
241 if (*dst)
242 talloc_free(*dst);
243 *dst = talloc_strdup(ctx, newstr);
244}