blob: ac3c7fc9f1158fbed06146dc78eebf6cceef3e76 [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>
Philipp Maierefe85d32017-04-09 12:32:51 +020036#include <osmocom/sigtran/osmo_ss7.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020037
38
Holger Hans Peter Freyther3e4e8cf2015-09-24 15:38:38 +020039int 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;
Harald Welte5bc61dc2010-05-16 22:02:16 +020052 vty->index_sub = NULL;
53 }
54 break;
55 case TRX_NODE:
56 vty->node = BTS_NODE;
57 {
58 /* set vty->index correctly ! */
59 struct gsm_bts_trx *trx = vty->index;
60 vty->index = trx->bts;
61 vty->index_sub = &trx->bts->description;
62 }
63 break;
64 case TS_NODE:
65 vty->node = TRX_NODE;
66 {
67 /* set vty->index correctly ! */
68 struct gsm_bts_trx_ts *ts = vty->index;
69 vty->index = ts->trx;
70 vty->index_sub = &ts->trx->description;
71 }
72 break;
Jacob Erlbeck190acf62013-09-02 13:17:15 +020073 case OML_NODE:
74 case OM2K_NODE:
75 vty->node = ENABLE_NODE;
76 /* NOTE: this only works because it's not part of the config
77 * tree, where outer commands are searched via vty_go_parent()
78 * and only (!) executed when a matching one is found.
79 */
80 talloc_free(vty->index);
81 vty->index = NULL;
82 break;
Harald Welteeae68292016-11-11 19:41:59 +010083 case OM2K_CON_GROUP_NODE:
84 vty->node = BTS_NODE;
85 {
86 struct con_group *cg = vty->index;
87 struct gsm_bts *bts = cg->bts;
88 vty->index = bts;
89 vty->index_sub = &bts->description;
90 }
91 break;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +080092 case NAT_BSC_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +080093 vty->node = NAT_NODE;
94 {
95 struct bsc_config *bsc_config = vty->index;
96 vty->index = bsc_config->nat;
97 }
98 break;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +020099 case PGROUP_NODE:
100 vty->node = NAT_NODE;
Jacob Erlbeck190acf62013-09-02 13:17:15 +0200101 vty->index = NULL;
102 break;
103 case TRUNK_NODE:
104 vty->node = MGCP_NODE;
105 vty->index = NULL;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +0200106 break;
Harald Welte338e3b32012-11-20 22:22:04 +0100107 case SMPP_ESME_NODE:
108 vty->node = SMPP_NODE;
109 vty->index = NULL;
110 break;
111 case SMPP_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200112 case MGCP_NODE:
113 case GBPROXY_NODE:
114 case SGSN_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +0800115 case NAT_NODE:
Holger Hans Peter Freyther8b902d72011-06-04 20:22:49 +0200116 case BSC_NODE:
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +0800117 case MSC_NODE:
Harald Welteab386e62011-09-01 18:18:43 +0200118 case MNCC_INT_NODE:
Holger Hans Peter Freyther925c57f2015-01-27 10:58:29 +0100119 case NITB_NODE:
Philipp Maierefe85d32017-04-09 12:32:51 +0200120 vty->node = CONFIG_NODE;
Jacob Erlbeck190acf62013-09-02 13:17:15 +0200121 vty->index = NULL;
Philipp Maierefe85d32017-04-09 12:32:51 +0200122 break;
123 case SUBSCR_NODE:
124 vty->node = ENABLE_NODE;
125 vty->index = NULL;
126 break;
127 default:
128 osmo_ss7_vty_go_parent(vty);
Harald Welte5bc61dc2010-05-16 22:02:16 +0200129 }
Jacob Erlbeck190acf62013-09-02 13:17:15 +0200130
131 return vty->node;
132}
133
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800134int bsc_vty_is_config_node(struct vty *vty, int node)
135{
Philipp Maierefe85d32017-04-09 12:32:51 +0200136 /* Check if libosmo-sccp declares the node in
137 * question as config node */
138 if (osmo_ss7_is_config_node(vty, node))
139 return 1;
140
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800141 switch (node) {
142 /* add items that are not config */
143 case OML_NODE:
Harald Welte810e3232011-02-12 15:00:35 +0100144 case OM2K_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800145 case SUBSCR_NODE:
Holger Hans Peter Freyther6ffca132010-09-04 11:15:27 +0800146 case CONFIG_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800147 return 0;
148
149 default:
150 return 1;
151 }
152}