blob: 3f8f16f7d73c4f028b452f578652d45a0bde47e5 [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;
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;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +080082 case NAT_BSC_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +080083 vty->node = NAT_NODE;
84 {
85 struct bsc_config *bsc_config = vty->index;
86 vty->index = bsc_config->nat;
87 }
88 break;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +020089 case PGROUP_NODE:
90 vty->node = NAT_NODE;
Jacob Erlbeck190acf62013-09-02 13:17:15 +020091 vty->index = NULL;
92 break;
93 case TRUNK_NODE:
94 vty->node = MGCP_NODE;
95 vty->index = NULL;
Holger Hans Peter Freyther6860c442011-05-02 19:16:13 +020096 break;
Harald Welte338e3b32012-11-20 22:22:04 +010097 case SMPP_ESME_NODE:
98 vty->node = SMPP_NODE;
99 vty->index = NULL;
100 break;
101 case SMPP_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200102 case MGCP_NODE:
103 case GBPROXY_NODE:
104 case SGSN_NODE:
Holger Hans Peter Freytherab52c842010-06-15 20:11:16 +0800105 case NAT_NODE:
Holger Hans Peter Freyther8b902d72011-06-04 20:22:49 +0200106 case BSC_NODE:
Holger Hans Peter Freyther47b26012010-09-15 23:28:49 +0800107 case MSC_NODE:
Harald Welteab386e62011-09-01 18:18:43 +0200108 case MNCC_INT_NODE:
Harald Welte5bc61dc2010-05-16 22:02:16 +0200109 default:
Jacob Erlbeck190acf62013-09-02 13:17:15 +0200110 if (bsc_vty_is_config_node(vty, vty->node))
111 vty->node = CONFIG_NODE;
112 else
113 vty->node = ENABLE_NODE;
114
115 vty->index = NULL;
Harald Welte5bc61dc2010-05-16 22:02:16 +0200116 }
Jacob Erlbeck190acf62013-09-02 13:17:15 +0200117
118 return vty->node;
119}
120
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800121int bsc_vty_is_config_node(struct vty *vty, int node)
122{
123 switch (node) {
124 /* add items that are not config */
125 case OML_NODE:
Harald Welte810e3232011-02-12 15:00:35 +0100126 case OM2K_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800127 case SUBSCR_NODE:
Holger Hans Peter Freyther6ffca132010-09-04 11:15:27 +0800128 case CONFIG_NODE:
Holger Hans Peter Freyther7a2c86b2010-08-26 15:38:42 +0800129 return 0;
130
131 default:
132 return 1;
133 }
134}
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200135
136/* a talloc string replace routine */
137void bsc_replace_string(void *ctx, char **dst, const char *newstr)
138{
139 if (*dst)
140 talloc_free(*dst);
141 *dst = talloc_strdup(ctx, newstr);
142}