blob: e9605506a4f0247c2405097309936a9a32effa4c [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
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020026#include <osmocom/sgsn/vty.h>
27#include <osmocom/sgsn/debug.h>
28#include <osmocom/sgsn/gsm_subscriber.h>
29#include <osmocom/sgsn/bsc_nat.h>
30#include <osmocom/sgsn/abis_om2000.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 Freyther3e4e8cf2015-09-24 15:38:38 +020038int 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;
Harald Welte5bc61dc2010-05-16 22:02:16 +020051 vty->index_sub = NULL;
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 vty->index_sub = &trx->bts->description;
61 }
62 break;
63 case TS_NODE:
64 vty->node = TRX_NODE;
65 {
66 /* set vty->index correctly ! */
67 struct gsm_bts_trx_ts *ts = vty->index;
68 vty->index = ts->trx;
69 vty->index_sub = &ts->trx->description;
70 }
71 break;
Jacob Erlbeck190acf62013-09-02 13:17:15 +020072 case OML_NODE:
73 case OM2K_NODE:
74 vty->node = ENABLE_NODE;
75 /* NOTE: this only works because it's not part of the config
76 * tree, where outer commands are searched via vty_go_parent()
77 * and only (!) executed when a matching one is found.
78 */
79 talloc_free(vty->index);
80 vty->index = NULL;
81 break;
Harald Welteeae68292016-11-11 19:41:59 +010082 case OM2K_CON_GROUP_NODE:
83 vty->node = BTS_NODE;
84 {
85 struct con_group *cg = vty->index;
86 struct gsm_bts *bts = cg->bts;
87 vty->index = bts;
88 vty->index_sub = &bts->description;
89 }
90 break;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +080091 case NAT_BSC_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +080092 vty->node = NAT_NODE;
93 {
94 struct bsc_config *bsc_config = vty->index;
95 vty->index = bsc_config->nat;
96 }
97 break;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +020098 case PGROUP_NODE:
99 vty->node = NAT_NODE;
Jacob Erlbeck190acf62013-09-02 13:17:15 +0200100 vty->index = NULL;
101 break;
102 case TRUNK_NODE:
103 vty->node = MGCP_NODE;
104 vty->index = NULL;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200105 break;
Harald Welte338e3b32012-11-20 22:22:04 +0100106 case SMPP_ESME_NODE:
107 vty->node = SMPP_NODE;
108 vty->index = NULL;
109 break;
110 case SMPP_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200111 case MGCP_NODE:
112 case GBPROXY_NODE:
113 case SGSN_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +0800114 case NAT_NODE:
Holger Hans Peter Freyther8b902d72011-06-04 20:22:49 +0200115 case BSC_NODE:
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +0800116 case MSC_NODE:
Harald Welteab386e62011-09-01 18:18:43 +0200117 case MNCC_INT_NODE:
Holger Hans Peter Freyther925c57f2015-01-27 10:58:29 +0100118 case NITB_NODE:
Philipp Maierefe85d32017-04-09 12:32:51 +0200119 vty->node = CONFIG_NODE;
Jacob Erlbeck190acf62013-09-02 13:17:15 +0200120 vty->index = NULL;
Philipp Maierefe85d32017-04-09 12:32:51 +0200121 break;
122 case SUBSCR_NODE:
123 vty->node = ENABLE_NODE;
124 vty->index = NULL;
125 break;
126 default:
127 osmo_ss7_vty_go_parent(vty);
Harald Welte5bc61dc2010-05-16 22:02:16 +0200128 }
Jacob Erlbeck190acf62013-09-02 13:17:15 +0200129
130 return vty->node;
131}
132
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800133int bsc_vty_is_config_node(struct vty *vty, int node)
134{
Philipp Maierefe85d32017-04-09 12:32:51 +0200135 /* Check if libosmo-sccp declares the node in
136 * question as config node */
137 if (osmo_ss7_is_config_node(vty, node))
138 return 1;
139
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800140 switch (node) {
141 /* add items that are not config */
142 case OML_NODE:
Harald Welte810e3232011-02-12 15:00:35 +0100143 case OM2K_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800144 case SUBSCR_NODE:
Holger Hans Peter Freyther6ffca132010-09-04 11:15:27 +0800145 case CONFIG_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800146 return 0;
147
148 default:
149 return 1;
150 }
151}