blob: 72d5163d8395c04831bbcd1ff134b320c496ffdd [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
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (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
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#include <stdlib.h>
23#include <string.h>
24
25#include <osmocore/talloc.h>
26
27#include <openbsc/vty.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020028#include <openbsc/gsm_data.h>
29#include <openbsc/debug.h>
Harald Welte4b037e42010-05-19 19:45:32 +020030#include <openbsc/gsm_subscriber.h>
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +080031#include <openbsc/bsc_nat.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020032
Harald Welte4b037e42010-05-19 19:45:32 +020033#include <osmocom/vty/telnet_interface.h>
34#include <osmocom/vty/command.h>
35#include <osmocom/vty/buffer.h>
36#include <osmocom/vty/vty.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020037
38
Holger Hans Peter Freyther57da4472010-06-08 16:11:06 +080039enum node_type bsc_vty_go_parent(struct vty *vty)
Harald Welte4b037e42010-05-19 19:45:32 +020040{
41 switch (vty->node) {
42 case GSMNET_NODE:
43 vty->node = CONFIG_NODE;
44 vty->index = NULL;
45 break;
46 case BTS_NODE:
47 vty->node = GSMNET_NODE;
48 {
49 /* set vty->index correctly ! */
50 struct gsm_bts *bts = vty->index;
51 vty->index = bts->network;
52 }
53 break;
54 case TRX_NODE:
55 vty->node = BTS_NODE;
56 {
57 /* set vty->index correctly ! */
58 struct gsm_bts_trx *trx = vty->index;
59 vty->index = trx->bts;
60 }
61 break;
62 case TS_NODE:
63 vty->node = TRX_NODE;
64 {
65 /* set vty->index correctly ! */
66 struct gsm_bts_trx_ts *ts = vty->index;
67 vty->index = ts->trx;
68 }
69 break;
Harald Welte64632322010-05-31 17:17:29 +020070 case OML_NODE:
71 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 Freyther47b26012010-09-15 23:28:49 +080086 case MSC_NODE:
87 vty->node = GSMNET_NODE;
88 break;
Harald Welte4b037e42010-05-19 19:45:32 +020089 default:
90 vty->node = CONFIG_NODE;
91 }
92
93 return vty->node;
94}
95
Harald Welte5bc61dc2010-05-16 22:02:16 +020096/* Down vty node level. */
97gDEFUN(ournode_exit,
98 ournode_exit_cmd, "exit", "Exit current mode and down to previous mode\n")
99{
100 switch (vty->node) {
101 case GSMNET_NODE:
102 vty->node = CONFIG_NODE;
103 vty->index = NULL;
104 break;
105 case BTS_NODE:
106 vty->node = GSMNET_NODE;
107 {
108 /* set vty->index correctly ! */
109 struct gsm_bts *bts = vty->index;
110 vty->index = bts->network;
111 vty->index_sub = NULL;
112 }
113 break;
114 case TRX_NODE:
115 vty->node = BTS_NODE;
116 {
117 /* set vty->index correctly ! */
118 struct gsm_bts_trx *trx = vty->index;
119 vty->index = trx->bts;
120 vty->index_sub = &trx->bts->description;
121 }
122 break;
123 case TS_NODE:
124 vty->node = TRX_NODE;
125 {
126 /* set vty->index correctly ! */
127 struct gsm_bts_trx_ts *ts = vty->index;
128 vty->index = ts->trx;
129 vty->index_sub = &ts->trx->description;
130 }
131 break;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800132 case NAT_BSC_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +0800133 vty->node = NAT_NODE;
134 {
135 struct bsc_config *bsc_config = vty->index;
136 vty->index = bsc_config->nat;
137 }
138 break;
Harald Welte5bc61dc2010-05-16 22:02:16 +0200139 case MGCP_NODE:
140 case GBPROXY_NODE:
141 case SGSN_NODE:
142 case NS_NODE:
Harald Welte5fa2f442010-05-17 23:20:56 +0200143 case BSSGP_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +0800144 case NAT_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200145 vty->node = CONFIG_NODE;
146 vty->index = NULL;
147 break;
Harald Welte64632322010-05-31 17:17:29 +0200148 case OML_NODE:
149 vty->node = ENABLE_NODE;
150 talloc_free(vty->index);
151 vty->index = NULL;
152 break;
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +0800153 case MSC_NODE:
154 vty->node = GSMNET_NODE;
155 break;
Harald Welte5bc61dc2010-05-16 22:02:16 +0200156 default:
157 break;
158 }
159 return CMD_SUCCESS;
160}
161
162/* End of configuration. */
163gDEFUN(ournode_end,
164 ournode_end_cmd, "end", "End current mode and change to enable mode.")
165{
166 switch (vty->node) {
167 case VIEW_NODE:
168 case ENABLE_NODE:
169 /* Nothing to do. */
170 break;
171 case CONFIG_NODE:
172 case GSMNET_NODE:
173 case BTS_NODE:
174 case TRX_NODE:
175 case TS_NODE:
176 case MGCP_NODE:
177 case GBPROXY_NODE:
178 case SGSN_NODE:
179 case NS_NODE:
180 case VTY_NODE:
Holger Hans Peter Freyther5654c5b2010-07-31 04:50:21 +0800181 case NAT_NODE:
182 case NAT_BSC_NODE:
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +0800183 case MSC_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200184 vty_config_unlock(vty);
185 vty->node = ENABLE_NODE;
186 vty->index = NULL;
187 vty->index_sub = NULL;
188 break;
189 default:
190 break;
191 }
192 return CMD_SUCCESS;
193}
194
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800195int bsc_vty_is_config_node(struct vty *vty, int node)
196{
197 switch (node) {
198 /* add items that are not config */
199 case OML_NODE:
200 case SUBSCR_NODE:
Holger Hans Peter Freyther6ffca132010-09-04 11:15:27 +0800201 case CONFIG_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800202 return 0;
203
204 default:
205 return 1;
206 }
207}