blob: 75fe54c1d47fbbf8a21f601379d8136a98899387 [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
2/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <stdlib.h>
22#include <unistd.h>
23#include <sys/types.h>
24
25#include <vty/command.h>
Harald Weltef9daefd2009-08-09 15:13:54 +020026#include <vty/buffer.h>
Harald Welte68628e82009-03-10 12:17:57 +000027#include <vty/vty.h>
28
29#include <arpa/inet.h>
30
Harald Welte1bc77352009-03-10 19:47:51 +000031#include <openbsc/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000032#include <openbsc/gsm_data.h>
Harald Welte68628e82009-03-10 12:17:57 +000033#include <openbsc/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000034#include <openbsc/abis_nm.h>
Harald Weltef9daefd2009-08-09 15:13:54 +020035#include <openbsc/gsm_utils.h>
Harald Welteb908cb72009-12-22 13:09:29 +010036#include <openbsc/chan_alloc.h>
Harald Welte40f82892009-05-23 17:31:39 +000037#include <openbsc/db.h>
Harald Welte5013b2a2009-08-07 13:29:14 +020038#include <openbsc/talloc.h>
Harald Welte68628e82009-03-10 12:17:57 +000039
40static struct gsm_network *gsmnet;
41
Harald Welte5013b2a2009-08-07 13:29:14 +020042struct cmd_node net_node = {
43 GSMNET_NODE,
44 "%s(network)#",
45 1,
46};
47
Harald Welte68628e82009-03-10 12:17:57 +000048struct cmd_node bts_node = {
49 BTS_NODE,
50 "%s(bts)#",
51 1,
52};
53
54struct cmd_node trx_node = {
55 TRX_NODE,
56 "%s(trx)#",
57 1,
58};
59
60struct cmd_node ts_node = {
61 TS_NODE,
62 "%s(ts)#",
63 1,
64};
65
66static int dummy_config_write(struct vty *v)
67{
68 return CMD_SUCCESS;
69}
70
71static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
72{
Harald Welte1bc77352009-03-10 19:47:51 +000073 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
74 nm_opstate_name(nms->operational), nms->administrative,
75 nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +000076}
77
Harald Welteb908cb72009-12-22 13:09:29 +010078static void dump_pchan_load_vty(struct vty *vty, char *prefix,
79 const struct pchan_load *pl)
80{
81 int i;
82
83 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
84 const struct load_counter *lc = &pl->pchan[i];
85 unsigned int percent;
86
87 if (lc->total == 0)
88 continue;
89
90 percent = (lc->used * 100) / lc->total;
91
92 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
93 gsm_pchan_name(i), percent, lc->used, lc->total,
94 VTY_NEWLINE);
95 }
96}
97
Harald Welte68628e82009-03-10 12:17:57 +000098static void net_dump_vty(struct vty *vty, struct gsm_network *net)
99{
Harald Welteb908cb72009-12-22 13:09:29 +0100100 struct pchan_load pl;
101
Harald Welteef235b52009-03-10 12:34:02 +0000102 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
103 "and has %u BTS%s", net->country_code, net->network_code,
104 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000105 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000106 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000107 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000108 net->name_short, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200109 vty_out(vty, " Authentication policy: %s%s",
110 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100111 vty_out(vty, " Location updating reject cause: %u%s",
112 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900113 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
114 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100115 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
116 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100117 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
118 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100119 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
120 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100121 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
122 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100123 network_chan_load(&pl, net);
124 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
125 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000126}
127
128DEFUN(show_net, show_net_cmd, "show network",
129 SHOW_STR "Display information about a GSM NETWORK\n")
130{
131 struct gsm_network *net = gsmnet;
132 net_dump_vty(vty, net);
133
134 return CMD_SUCCESS;
135}
136
137static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
138{
Harald Welteedb37782009-05-01 14:59:07 +0000139 struct e1inp_line *line;
140
141 if (!e1l) {
142 vty_out(vty, " None%s", VTY_NEWLINE);
143 return;
144 }
145
146 line = e1l->ts->line;
147
148 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
149 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000150 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000151 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000152 e1l->tei, e1l->sapi, VTY_NEWLINE);
153}
154
155static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
156{
Harald Welteb908cb72009-12-22 13:09:29 +0100157 struct pchan_load pl;
158
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200159 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Weltefcd24452009-06-20 18:15:19 +0200160 "BSIC %u, TSC %u and %u TRX%s",
161 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200162 bts->cell_identity,
Harald Weltefcd24452009-06-20 18:15:19 +0200163 bts->location_area_code, bts->bsic, bts->tsc,
164 bts->num_trx, VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100165 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100166 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100167 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
168 VTY_NEWLINE);
169 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100170 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100171 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
172 VTY_NEWLINE);
173 vty_out(vty, "RACH Max transmissions: %u%s",
174 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
175 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100176 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200177 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000178 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200179 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000180 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200181 bts->oml_tei, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000182 vty_out(vty, " NM State: ");
183 net_dump_nmstate(vty, &bts->nm_state);
184 vty_out(vty, " Site Mgr NM State: ");
185 net_dump_nmstate(vty, &bts->site_mgr.nm_state);
186 vty_out(vty, " Paging: FIXME pending requests, %u free slots%s",
187 bts->paging.available_slots, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200188 if (!is_ipaccess_bts(bts)) {
189 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
190 e1isl_dump_vty(vty, bts->oml_link);
191 }
Harald Welte68628e82009-03-10 12:17:57 +0000192 /* FIXME: oml_link, chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100193 memset(&pl, 0, sizeof(pl));
194 bts_chan_load(&pl, bts);
195 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
196 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000197}
198
199DEFUN(show_bts, show_bts_cmd, "show bts [number]",
200 SHOW_STR "Display information about a BTS\n"
201 "BTS number")
202{
203 struct gsm_network *net = gsmnet;
204 int bts_nr;
205
206 if (argc != 0) {
207 /* use the BTS number that the user has specified */
208 bts_nr = atoi(argv[0]);
209 if (bts_nr > net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000210 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000211 VTY_NEWLINE);
212 return CMD_WARNING;
213 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200214 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000215 return CMD_SUCCESS;
216 }
217 /* print all BTS's */
218 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200219 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000220
221 return CMD_SUCCESS;
222}
223
Harald Welte42581822009-08-08 16:12:58 +0200224/* utility functions */
225static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
226 const char *ts, const char *ss)
227{
228 e1_link->e1_nr = atoi(line);
229 e1_link->e1_ts = atoi(ts);
230 if (!strcmp(ss, "full"))
231 e1_link->e1_ts_ss = 255;
232 else
233 e1_link->e1_ts_ss = atoi(ss);
234}
235
236static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
237 const char *prefix)
238{
239 if (!e1_link->e1_ts)
240 return;
241
242 if (e1_link->e1_ts_ss == 255)
243 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
244 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
245 else
246 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
247 prefix, e1_link->e1_nr, e1_link->e1_ts,
248 e1_link->e1_ts_ss, VTY_NEWLINE);
249}
250
251
Harald Welte67ce0732009-08-06 19:06:46 +0200252static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
253{
Harald Welte42581822009-08-08 16:12:58 +0200254 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
255 if (ts->pchan != GSM_PCHAN_NONE)
256 vty_out(vty, " phys_chan_config %s%s",
257 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
258 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welte67ce0732009-08-06 19:06:46 +0200259}
260
261static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
262{
263 int i;
264
Harald Welte5013b2a2009-08-07 13:29:14 +0200265 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
266 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
267 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200268 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
269 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200270
271 for (i = 0; i < TRX_NR_TS; i++)
272 config_write_ts_single(vty, &trx->ts[i]);
273}
274
275static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
276{
277 struct gsm_bts_trx *trx;
278
Harald Welte5013b2a2009-08-07 13:29:14 +0200279 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
280 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
281 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100282 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200283 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200284 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200285 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
286 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200287 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100288 vty_out(vty, " cell reselection hysteresis %u%s",
289 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
290 vty_out(vty, " rxlev access min %u%s",
291 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Harald Weltea43f7892009-12-01 18:04:30 +0530292 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)efc92312009-08-14 23:09:25 +0200293 vty_out(vty, " periodic location update %u%s",
Harald Weltea43f7892009-12-01 18:04:30 +0530294 bts->si_common.chan_desc.t3212 * 10, VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200295 vty_out(vty, " channel allocator %s%s",
296 bts->chan_alloc_reverse ? "descending" : "ascending",
297 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100298 vty_out(vty, " rach tx integer %u%s",
299 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
300 vty_out(vty, " rach max transmission %u%s",
301 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
302 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100303 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200304 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200305 if (is_ipaccess_bts(bts)) {
Harald Welte5013b2a2009-08-07 13:29:14 +0200306 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200307 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200308 vty_out(vty, " oml ip.access stream_id %u%s", bts->oml_tei, VTY_NEWLINE);
309 } else {
Harald Welte42581822009-08-08 16:12:58 +0200310 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
311 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
312 }
Harald Welte67ce0732009-08-06 19:06:46 +0200313
314 llist_for_each_entry(trx, &bts->trx_list, list)
315 config_write_trx_single(vty, trx);
316}
317
318static int config_write_bts(struct vty *v)
319{
320 struct gsm_bts *bts;
321
322 llist_for_each_entry(bts, &gsmnet->bts_list, list)
323 config_write_bts_single(v, bts);
324
325 return CMD_SUCCESS;
326}
327
Harald Welte5013b2a2009-08-07 13:29:14 +0200328static int config_write_net(struct vty *vty)
329{
330 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200331 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200332 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200333 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
334 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200335 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100336 vty_out(vty, " location updating reject cause %u%s",
337 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900338 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100339 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100340 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
341 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100342 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100343 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100344 vty_out(vty, " handover window rxlev averaging %u%s",
345 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
346 vty_out(vty, " handover window rxqual averaging %u%s",
347 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
348 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
349 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
350 vty_out(vty, " handover power budget interval %u%s",
351 gsmnet->handover.pwr_interval, VTY_NEWLINE);
352 vty_out(vty, " handover power budget hysteresis %u%s",
353 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
354 vty_out(vty, " handover maximum distance %u%s",
355 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100356 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100357 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
358 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
359 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
360 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
361 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
362 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
363 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
364 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
365 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
366 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200367
368 return CMD_SUCCESS;
369}
Harald Welte67ce0732009-08-06 19:06:46 +0200370
Harald Welte68628e82009-03-10 12:17:57 +0000371static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
372{
373 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
374 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200375 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200376 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200377 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200378 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000379 vty_out(vty, " NM State: ");
380 net_dump_nmstate(vty, &trx->nm_state);
381 vty_out(vty, " Baseband Transceiver NM State: ");
382 net_dump_nmstate(vty, &trx->bb_transc.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200383 if (is_ipaccess_bts(trx->bts)) {
384 vty_out(vty, " ip.access stream ID: 0x%02x%s",
385 trx->rsl_tei, VTY_NEWLINE);
386 } else {
387 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
388 e1isl_dump_vty(vty, trx->rsl_link);
389 }
Harald Welte68628e82009-03-10 12:17:57 +0000390}
391
392DEFUN(show_trx,
393 show_trx_cmd,
394 "show trx [bts_nr] [trx_nr]",
395 SHOW_STR "Display information about a TRX\n")
396{
397 struct gsm_network *net = gsmnet;
398 struct gsm_bts *bts = NULL;
399 struct gsm_bts_trx *trx;
400 int bts_nr, trx_nr;
401
402 if (argc >= 1) {
403 /* use the BTS number that the user has specified */
404 bts_nr = atoi(argv[0]);
405 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000406 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000407 VTY_NEWLINE);
408 return CMD_WARNING;
409 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200410 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000411 }
412 if (argc >= 2) {
413 trx_nr = atoi(argv[1]);
414 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000415 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000416 VTY_NEWLINE);
417 return CMD_WARNING;
418 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200419 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000420 trx_dump_vty(vty, trx);
421 return CMD_SUCCESS;
422 }
423 if (bts) {
424 /* print all TRX in this BTS */
425 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200426 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000427 trx_dump_vty(vty, trx);
428 }
429 return CMD_SUCCESS;
430 }
431
432 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200433 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000434 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200435 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000436 trx_dump_vty(vty, trx);
437 }
438 }
439
440 return CMD_SUCCESS;
441}
442
Harald Welte67ce0732009-08-06 19:06:46 +0200443
Harald Welte68628e82009-03-10 12:17:57 +0000444static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
445{
Harald Welte68628e82009-03-10 12:17:57 +0000446 vty_out(vty, "Timeslot %u of TRX %u in BTS %u, phys cfg %s%s",
447 ts->nr, ts->trx->nr, ts->trx->bts->nr,
448 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
449 vty_out(vty, " NM State: ");
450 net_dump_nmstate(vty, &ts->nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530451 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000452 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
453 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
454 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000455}
456
457DEFUN(show_ts,
458 show_ts_cmd,
Harald Welte1bc77352009-03-10 19:47:51 +0000459 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte68628e82009-03-10 12:17:57 +0000460 SHOW_STR "Display information about a TS\n")
461{
462 struct gsm_network *net = gsmnet;
463 struct gsm_bts *bts;
464 struct gsm_bts_trx *trx;
465 struct gsm_bts_trx_ts *ts;
466 int bts_nr, trx_nr, ts_nr;
467
468 if (argc >= 1) {
469 /* use the BTS number that the user has specified */
470 bts_nr = atoi(argv[0]);
471 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000472 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000473 VTY_NEWLINE);
474 return CMD_WARNING;
475 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200476 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000477 }
478 if (argc >= 2) {
479 trx_nr = atoi(argv[1]);
480 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000481 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000482 VTY_NEWLINE);
483 return CMD_WARNING;
484 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200485 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000486 }
487 if (argc >= 3) {
488 ts_nr = atoi(argv[2]);
489 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000490 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000491 VTY_NEWLINE);
492 return CMD_WARNING;
493 }
494 ts = &trx->ts[ts_nr];
495 ts_dump_vty(vty, ts);
496 return CMD_SUCCESS;
497 }
498 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200499 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000500 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200501 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000502 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
503 ts = &trx->ts[ts_nr];
504 ts_dump_vty(vty, ts);
505 }
506 }
507 }
508
509 return CMD_SUCCESS;
510}
511
Holger Hans Peter Freythercfa90d42009-08-10 10:17:50 +0200512void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000513{
Harald Weltefcd24452009-06-20 18:15:19 +0200514 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000515 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000516 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000517 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000518 if (subscr->extension)
519 vty_out(vty, " Extension: %s%s", subscr->extension,
520 VTY_NEWLINE);
521 if (subscr->imsi)
522 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200523 if (subscr->tmsi != GSM_RESERVED_TMSI)
524 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200525 VTY_NEWLINE);
Harald Welte (local)15920de2009-08-14 20:27:16 +0200526 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000527}
528
529static void lchan_dump_vty(struct vty *vty, struct gsm_lchan *lchan)
530{
531 vty_out(vty, "Lchan %u in Timeslot %u of TRX %u in BTS %u, Type %s%s",
532 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
533 lchan->ts->trx->bts->nr, gsm_lchan_name(lchan->type),
534 VTY_NEWLINE);
535 vty_out(vty, " Use Count: %u%s", lchan->use_count, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100536 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
537 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
538 - lchan->bs_power*2,
539 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
540 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000541 if (lchan->subscr) {
542 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
543 subscr_dump_vty(vty, lchan->subscr);
544 } else
545 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530546 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
547 struct in_addr ia;
548 ia.s_addr = lchan->abis_ip.bound_ip;
549 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
550 inet_ntoa(ia), lchan->abis_ip.bound_port,
551 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
552 VTY_NEWLINE);
553 }
Harald Welte68628e82009-03-10 12:17:57 +0000554}
555
Harald Welte4bfdfe72009-06-10 23:11:52 +0800556#if 0
557TODO: callref and remote callref of call must be resolved to get gsm_trans object
Harald Welte68628e82009-03-10 12:17:57 +0000558static void call_dump_vty(struct vty *vty, struct gsm_call *call)
559{
560 vty_out(vty, "Call Type %u, State %u, Transaction ID %u%s",
561 call->type, call->state, call->transaction_id, VTY_NEWLINE);
562
563 if (call->local_lchan) {
564 vty_out(vty, "Call Local Channel:%s", VTY_NEWLINE);
565 lchan_dump_vty(vty, call->local_lchan);
566 } else
567 vty_out(vty, "Call has no Local Channel%s", VTY_NEWLINE);
568
569 if (call->remote_lchan) {
570 vty_out(vty, "Call Remote Channel:%s", VTY_NEWLINE);
571 lchan_dump_vty(vty, call->remote_lchan);
572 } else
573 vty_out(vty, "Call has no Remote Channel%s", VTY_NEWLINE);
574
575 if (call->called_subscr) {
576 vty_out(vty, "Called Subscriber:%s", VTY_NEWLINE);
577 subscr_dump_vty(vty, call->called_subscr);
578 } else
579 vty_out(vty, "Call has no Called Subscriber%s", VTY_NEWLINE);
580}
Harald Welte4bfdfe72009-06-10 23:11:52 +0800581#endif
Harald Welte68628e82009-03-10 12:17:57 +0000582
583DEFUN(show_lchan,
584 show_lchan_cmd,
585 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
586 SHOW_STR "Display information about a logical channel\n")
587{
588 struct gsm_network *net = gsmnet;
589 struct gsm_bts *bts;
590 struct gsm_bts_trx *trx;
591 struct gsm_bts_trx_ts *ts;
592 struct gsm_lchan *lchan;
593 int bts_nr, trx_nr, ts_nr, lchan_nr;
594
595 if (argc >= 1) {
596 /* use the BTS number that the user has specified */
597 bts_nr = atoi(argv[0]);
598 if (bts_nr >= net->num_bts) {
599 vty_out(vty, "%% can't find BTS %s%s", argv[0],
600 VTY_NEWLINE);
601 return CMD_WARNING;
602 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200603 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000604 }
605 if (argc >= 2) {
606 trx_nr = atoi(argv[1]);
607 if (trx_nr >= bts->num_trx) {
608 vty_out(vty, "%% can't find TRX %s%s", argv[1],
609 VTY_NEWLINE);
610 return CMD_WARNING;
611 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200612 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000613 }
614 if (argc >= 3) {
615 ts_nr = atoi(argv[2]);
616 if (ts_nr >= TRX_NR_TS) {
617 vty_out(vty, "%% can't find TS %s%s", argv[2],
618 VTY_NEWLINE);
619 return CMD_WARNING;
620 }
621 ts = &trx->ts[ts_nr];
622 }
623 if (argc >= 4) {
624 lchan_nr = atoi(argv[3]);
625 if (lchan_nr >= TS_MAX_LCHAN) {
626 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
627 VTY_NEWLINE);
628 return CMD_WARNING;
629 }
630 lchan = &ts->lchan[lchan_nr];
631 lchan_dump_vty(vty, lchan);
632 return CMD_SUCCESS;
633 }
634 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200635 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000636 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200637 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000638 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
639 ts = &trx->ts[ts_nr];
640 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
641 lchan_nr++) {
642 lchan = &ts->lchan[lchan_nr];
Harald Welteef235b52009-03-10 12:34:02 +0000643 if (lchan->type == GSM_LCHAN_NONE)
644 continue;
Harald Welte68628e82009-03-10 12:17:57 +0000645 lchan_dump_vty(vty, lchan);
646 }
647 }
648 }
649 }
650
651 return CMD_SUCCESS;
652}
653
Harald Welte1bc77352009-03-10 19:47:51 +0000654static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
655{
656 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
657}
658
659DEFUN(show_e1drv,
660 show_e1drv_cmd,
661 "show e1_driver",
662 SHOW_STR "Display information about available E1 drivers\n")
663{
664 struct e1inp_driver *drv;
665
666 llist_for_each_entry(drv, &e1inp_driver_list, list)
667 e1drv_dump_vty(vty, drv);
668
669 return CMD_SUCCESS;
670}
671
Harald Welte68628e82009-03-10 12:17:57 +0000672static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
673{
674 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
675 line->num, line->name ? line->name : "",
676 line->driver->name, VTY_NEWLINE);
677}
678
679DEFUN(show_e1line,
680 show_e1line_cmd,
681 "show e1_line [line_nr]",
682 SHOW_STR "Display information about a E1 line\n")
683{
Harald Welte1bc77352009-03-10 19:47:51 +0000684 struct e1inp_line *line;
685
686 if (argc >= 1) {
687 int num = atoi(argv[0]);
688 llist_for_each_entry(line, &e1inp_line_list, list) {
689 if (line->num == num) {
690 e1line_dump_vty(vty, line);
691 return CMD_SUCCESS;
692 }
693 }
694 return CMD_WARNING;
695 }
696
697 llist_for_each_entry(line, &e1inp_line_list, list)
698 e1line_dump_vty(vty, line);
699
700 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000701}
702
703static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
704{
Harald Welte42581822009-08-08 16:12:58 +0200705 if (ts->type == E1INP_TS_TYPE_NONE)
706 return;
Harald Welte1bc77352009-03-10 19:47:51 +0000707 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
708 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
709 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000710}
711
712DEFUN(show_e1ts,
713 show_e1ts_cmd,
714 "show e1_timeslot [line_nr] [ts_nr]",
715 SHOW_STR "Display information about a E1 timeslot\n")
716{
Harald Welte986c3d72009-11-17 06:12:16 +0100717 struct e1inp_line *line = NULL;
Harald Welte1bc77352009-03-10 19:47:51 +0000718 struct e1inp_ts *ts;
719 int ts_nr;
Harald Welte68628e82009-03-10 12:17:57 +0000720
Harald Welte1bc77352009-03-10 19:47:51 +0000721 if (argc == 0) {
722 llist_for_each_entry(line, &e1inp_line_list, list) {
723 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
724 ts = &line->ts[ts_nr];
725 e1ts_dump_vty(vty, ts);
726 }
727 }
728 return CMD_SUCCESS;
729 }
730 if (argc >= 1) {
731 int num = atoi(argv[0]);
732 llist_for_each_entry(line, &e1inp_line_list, list) {
733 if (line->num == num)
734 break;
735 }
736 if (!line || line->num != num) {
737 vty_out(vty, "E1 line %s is invalid%s",
738 argv[0], VTY_NEWLINE);
739 return CMD_WARNING;
740 }
741 }
742 if (argc >= 2) {
743 ts_nr = atoi(argv[1]);
744 if (ts_nr > NUM_E1_TS) {
745 vty_out(vty, "E1 timeslot %s is invalid%s",
746 argv[1], VTY_NEWLINE);
747 return CMD_WARNING;
748 }
749 ts = &line->ts[ts_nr];
750 e1ts_dump_vty(vty, ts);
751 return CMD_SUCCESS;
752 } else {
753 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
754 ts = &line->ts[ts_nr];
755 e1ts_dump_vty(vty, ts);
756 }
757 return CMD_SUCCESS;
758 }
759 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000760}
761
Harald Weltebe4b7302009-05-23 16:59:33 +0000762static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +0000763{
764 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
765 subscr_dump_vty(vty, pag->subscr);
766}
767
Harald Weltebe4b7302009-05-23 16:59:33 +0000768static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +0000769{
770 struct gsm_paging_request *pag;
771
772 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
773 paging_dump_vty(vty, pag);
774}
775
776DEFUN(show_paging,
777 show_paging_cmd,
778 "show paging [bts_nr]",
Harald Weltebe4b7302009-05-23 16:59:33 +0000779 SHOW_STR "Display information about paging reuqests of a BTS\n")
Harald Weltef5025b62009-03-28 16:55:11 +0000780{
781 struct gsm_network *net = gsmnet;
782 struct gsm_bts *bts;
783 int bts_nr;
784
785 if (argc >= 1) {
786 /* use the BTS number that the user has specified */
787 bts_nr = atoi(argv[0]);
788 if (bts_nr >= net->num_bts) {
789 vty_out(vty, "%% can't find BTS %s%s", argv[0],
790 VTY_NEWLINE);
791 return CMD_WARNING;
792 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200793 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000794 bts_paging_dump_vty(vty, bts);
795
796 return CMD_SUCCESS;
797 }
798 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200799 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000800 bts_paging_dump_vty(vty, bts);
801 }
802
803 return CMD_SUCCESS;
804}
805
Harald Welte24ff6ee2009-12-22 00:41:05 +0100806DEFUN(show_stats,
807 show_stats_cmd,
808 "show statistics",
809 SHOW_STR "Display network statistics\n")
810{
811 struct gsm_network *net = gsmnet;
812
813 vty_out(vty, "Channel Requests: %lu total, %lu no channel%s",
Harald Welteffa55a42009-12-22 19:07:32 +0100814 counter_get(net->stats.chreq.total),
815 counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100816 vty_out(vty, "Location Update: %lu attach, %lu normal, %lu periodic%s",
Harald Welteffa55a42009-12-22 19:07:32 +0100817 counter_get(net->stats.loc_upd_type.attach),
818 counter_get(net->stats.loc_upd_type.normal),
819 counter_get(net->stats.loc_upd_type.periodic), VTY_NEWLINE);
820 vty_out(vty, "IMSI Detach Indications: %lu%s",
821 counter_get(net->stats.loc_upd_type.detach), VTY_NEWLINE);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100822 vty_out(vty, "Location Update Response: %lu accept, %lu reject%s",
Harald Welteffa55a42009-12-22 19:07:32 +0100823 counter_get(net->stats.loc_upd_resp.accept),
824 counter_get(net->stats.loc_upd_resp.reject), VTY_NEWLINE);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100825 vty_out(vty, "Paging: %lu attempted, %lu complete, %lu expired%s",
Harald Welteffa55a42009-12-22 19:07:32 +0100826 counter_get(net->stats.paging.attempted),
827 counter_get(net->stats.paging.completed),
828 counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100829 vty_out(vty, "Handover: %lu attempted, %lu no_channel, %lu timeout, "
Harald Welteffa55a42009-12-22 19:07:32 +0100830 "%lu completed, %lu failed%s",
831 counter_get(net->stats.handover.attempted),
832 counter_get(net->stats.handover.no_channel),
833 counter_get(net->stats.handover.timeout),
834 counter_get(net->stats.handover.completed),
835 counter_get(net->stats.handover.failed), VTY_NEWLINE);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100836 vty_out(vty, "SMS MO: %lu submitted, %lu no receiver%s",
Harald Welteffa55a42009-12-22 19:07:32 +0100837 counter_get(net->stats.sms.submitted),
838 counter_get(net->stats.sms.no_receiver), VTY_NEWLINE);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100839 vty_out(vty, "SMS MT: %lu delivered, %lu no memory, %lu other error%s",
Harald Welteffa55a42009-12-22 19:07:32 +0100840 counter_get(net->stats.sms.delivered),
841 counter_get(net->stats.sms.rp_err_mem),
842 counter_get(net->stats.sms.rp_err_other), VTY_NEWLINE);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100843 return CMD_SUCCESS;
844}
845
Harald Welte5013b2a2009-08-07 13:29:14 +0200846DEFUN(cfg_net,
847 cfg_net_cmd,
848 "network",
849 "Configure the GSM network")
850{
851 vty->index = gsmnet;
852 vty->node = GSMNET_NODE;
853
854 return CMD_SUCCESS;
855}
856
857
858DEFUN(cfg_net_ncc,
859 cfg_net_ncc_cmd,
860 "network country code <1-999>",
861 "Set the GSM network country code")
862{
863 gsmnet->country_code = atoi(argv[0]);
864
865 return CMD_SUCCESS;
866}
867
868DEFUN(cfg_net_mnc,
869 cfg_net_mnc_cmd,
870 "mobile network code <1-999>",
871 "Set the GSM mobile network code")
872{
873 gsmnet->network_code = atoi(argv[0]);
874
875 return CMD_SUCCESS;
876}
877
878DEFUN(cfg_net_name_short,
879 cfg_net_name_short_cmd,
880 "short name NAME",
881 "Set the short GSM network name")
882{
883 if (gsmnet->name_short)
884 talloc_free(gsmnet->name_short);
885
886 gsmnet->name_short = talloc_strdup(gsmnet, argv[0]);
887
888 return CMD_SUCCESS;
889}
890
891DEFUN(cfg_net_name_long,
892 cfg_net_name_long_cmd,
893 "long name NAME",
894 "Set the long GSM network name")
895{
896 if (gsmnet->name_long)
897 talloc_free(gsmnet->name_long);
898
899 gsmnet->name_long = talloc_strdup(gsmnet, argv[0]);
900
901 return CMD_SUCCESS;
902}
Harald Welte40f82892009-05-23 17:31:39 +0000903
Harald Welte (local)69de3972009-08-12 14:42:23 +0200904DEFUN(cfg_net_auth_policy,
905 cfg_net_auth_policy_cmd,
906 "auth policy (closed|accept-all|token)",
907 "Set the GSM network authentication policy\n")
908{
909 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
910
911 gsmnet->auth_policy = policy;
912
913 return CMD_SUCCESS;
914}
915
Harald Welte1085c092009-11-18 20:33:19 +0100916DEFUN(cfg_net_reject_cause,
917 cfg_net_reject_cause_cmd,
918 "location updating reject cause <2-111>",
919 "Set the reject cause of location updating reject\n")
920{
921 gsmnet->reject_cause = atoi(argv[0]);
922
923 return CMD_SUCCESS;
924}
925
Harald Welte4381cfe2009-08-30 15:47:06 +0900926DEFUN(cfg_net_encryption,
927 cfg_net_encryption_cmd,
928 "encryption a5 (0|1|2)",
929 "Enable or disable encryption (A5) for this network\n")
930{
Andreas.Eversberg1059deb2009-11-17 09:55:26 +0100931 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +0900932
933 return CMD_SUCCESS;
934}
935
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100936DEFUN(cfg_net_neci,
937 cfg_net_neci_cmd,
938 "neci (0|1)",
939 "Set if NECI of cell selection is to be set")
940{
941 gsmnet->neci = atoi(argv[0]);
942 return CMD_SUCCESS;
943}
944
Harald Welteeab84a12009-12-13 10:53:12 +0100945DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
946 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
947 "Set the Radio Resource Location Protocol Mode")
948{
949 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
950
951 return CMD_SUCCESS;
952}
953
Harald Welte648b6ce2009-12-14 09:00:24 +0100954DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
955 "mm info (0|1)",
956 "Whether to send MM INFO after LOC UPD ACCEPT")
957{
958 gsmnet->send_mm_info = atoi(argv[0]);
959
960 return CMD_SUCCESS;
961}
962
Harald Weltebc814502009-12-19 21:41:52 +0100963DEFUN(cfg_net_handover, cfg_net_handover_cmd,
964 "handover (0|1)",
965 "Whether or not to use in-call handover")
966{
Harald Weltefe03f0d2009-12-20 13:51:01 +0100967 if (ipacc_rtp_direct) {
968 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
969 "is enabled by using the -P command line option%s",
970 VTY_NEWLINE);
971 return CMD_WARNING;
972 }
Harald Weltebc814502009-12-19 21:41:52 +0100973 gsmnet->handover.active = atoi(argv[0]);
974
975 return CMD_SUCCESS;
976}
977
Harald Welteb720bd32009-12-21 16:51:50 +0100978DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
979 "handover window rxlev averaging <1-10>",
980 "How many RxLev measurements are used for averaging")
981{
982 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
983 return CMD_SUCCESS;
984}
985
986DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
987 "handover window rxqual averaging <1-10>",
988 "How many RxQual measurements are used for averaging")
989{
990 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
991 return CMD_SUCCESS;
992}
993
994DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
995 "handover window rxlev neighbor averaging <1-10>",
996 "How many RxQual measurements are used for averaging")
997{
998 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
999 return CMD_SUCCESS;
1000}
1001
1002DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1003 "handover power budget interval <1-99>",
1004 "How often to check if we have a better cell (SACCH frames)")
1005{
1006 gsmnet->handover.pwr_interval = atoi(argv[0]);
1007 return CMD_SUCCESS;
1008}
1009
1010DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1011 "handover power budget hysteresis <0-999>",
1012 "How many dB does a neighbor to be stronger to become a HO candidate")
1013{
1014 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1015 return CMD_SUCCESS;
1016}
1017
1018DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1019 "handover maximum distance <0-9999>",
1020 "How big is the maximum timing advance before HO is forced")
1021{
1022 gsmnet->handover.max_distance = atoi(argv[0]);
1023 return CMD_SUCCESS;
1024}
Harald Weltebc814502009-12-19 21:41:52 +01001025
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001026#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001027 DEFUN(cfg_net_T##number, \
1028 cfg_net_T##number##_cmd, \
1029 "timer t" #number " <0-65535>", \
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001030 doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001031{ \
1032 int value = atoi(argv[0]); \
1033 \
1034 if (value < 0 || value > 65535) { \
1035 vty_out(vty, "Timer value %s out of range.%s", \
1036 argv[0], VTY_NEWLINE); \
1037 return CMD_WARNING; \
1038 } \
1039 \
1040 gsmnet->T##number = value; \
1041 return CMD_SUCCESS; \
1042}
1043
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001044DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1045DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1046DECLARE_TIMER(3105, "Currently not used.")
1047DECLARE_TIMER(3107, "Currently not used.")
1048DECLARE_TIMER(3109, "Currently not used.")
1049DECLARE_TIMER(3111, "Currently not used.")
1050DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1051DECLARE_TIMER(3115, "Currently not used.")
1052DECLARE_TIMER(3117, "Currently not used.")
1053DECLARE_TIMER(3119, "Currently not used.")
1054DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001055
1056
Harald Welte5258fc42009-03-28 19:07:53 +00001057/* per-BTS configuration */
1058DEFUN(cfg_bts,
1059 cfg_bts_cmd,
1060 "bts BTS_NR",
1061 "Select a BTS to configure\n")
1062{
1063 int bts_nr = atoi(argv[0]);
1064 struct gsm_bts *bts;
1065
Harald Weltee441d9c2009-06-21 16:17:15 +02001066 if (bts_nr > gsmnet->num_bts) {
1067 vty_out(vty, "%% The next unused BTS number is %u%s",
1068 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001069 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001070 } else if (bts_nr == gsmnet->num_bts) {
1071 /* allocate a new one */
1072 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1073 HARDCODED_TSC, HARDCODED_BSIC);
1074 } else
1075 bts = gsm_bts_num(gsmnet, bts_nr);
1076
1077 if (!bts)
1078 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001079
1080 vty->index = bts;
1081 vty->node = BTS_NODE;
1082
1083 return CMD_SUCCESS;
1084}
1085
1086DEFUN(cfg_bts_type,
1087 cfg_bts_type_cmd,
1088 "type TYPE",
1089 "Set the BTS type\n")
1090{
1091 struct gsm_bts *bts = vty->index;
1092
Harald Weltea6fd58e2009-08-07 00:25:23 +02001093 bts->type = parse_btstype(argv[0]);
1094
Harald Welte8175e952009-10-20 00:22:00 +02001095 if (is_ipaccess_bts(bts)) {
1096 /* Set the default OML Stream ID to 0xff */
1097 bts->oml_tei = 0xff;
1098 }
1099
Harald Welte5258fc42009-03-28 19:07:53 +00001100 return CMD_SUCCESS;
1101}
1102
Harald Weltefcd24452009-06-20 18:15:19 +02001103DEFUN(cfg_bts_band,
1104 cfg_bts_band_cmd,
1105 "band BAND",
1106 "Set the frequency band of this BTS\n")
1107{
1108 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001109 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001110
1111 if (band < 0) {
1112 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1113 band, VTY_NEWLINE);
1114 return CMD_WARNING;
1115 }
1116
1117 bts->band = band;
1118
1119 return CMD_SUCCESS;
1120}
1121
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001122DEFUN(cfg_bts_ci,
1123 cfg_bts_ci_cmd,
1124 "cell_identity <0-65535>",
1125 "Set the Cell identity of this BTS\n")
1126{
1127 struct gsm_bts *bts = vty->index;
1128 int ci = atoi(argv[0]);
1129
1130 if (ci < 0 || ci > 0xffff) {
1131 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1132 ci, VTY_NEWLINE);
1133 return CMD_WARNING;
1134 }
1135 bts->cell_identity = ci;
1136
1137 return CMD_SUCCESS;
1138}
1139
Harald Welte5258fc42009-03-28 19:07:53 +00001140DEFUN(cfg_bts_lac,
1141 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001142 "location_area_code <0-65535>",
Harald Welte5258fc42009-03-28 19:07:53 +00001143 "Set the Location Area Code (LAC) of this BTS\n")
1144{
1145 struct gsm_bts *bts = vty->index;
1146 int lac = atoi(argv[0]);
1147
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001148 if (lac < 0 || lac > 0xffff) {
1149 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001150 lac, VTY_NEWLINE);
1151 return CMD_WARNING;
1152 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001153
1154 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1155 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1156 lac, VTY_NEWLINE);
1157 return CMD_WARNING;
1158 }
1159
Harald Welte5258fc42009-03-28 19:07:53 +00001160 bts->location_area_code = lac;
1161
1162 return CMD_SUCCESS;
1163}
1164
Harald Weltea43f7892009-12-01 18:04:30 +05301165
Harald Welte5258fc42009-03-28 19:07:53 +00001166DEFUN(cfg_bts_tsc,
1167 cfg_bts_tsc_cmd,
1168 "training_sequence_code <0-255>",
1169 "Set the Training Sequence Code (TSC) of this BTS\n")
1170{
1171 struct gsm_bts *bts = vty->index;
1172 int tsc = atoi(argv[0]);
1173
1174 if (tsc < 0 || tsc > 0xff) {
1175 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1176 tsc, VTY_NEWLINE);
1177 return CMD_WARNING;
1178 }
1179 bts->tsc = tsc;
1180
1181 return CMD_SUCCESS;
1182}
1183
Harald Welte78f2f502009-05-23 16:56:52 +00001184DEFUN(cfg_bts_bsic,
1185 cfg_bts_bsic_cmd,
1186 "base_station_id_code <0-63>",
1187 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1188{
1189 struct gsm_bts *bts = vty->index;
1190 int bsic = atoi(argv[0]);
1191
1192 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001193 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001194 bsic, VTY_NEWLINE);
1195 return CMD_WARNING;
1196 }
1197 bts->bsic = bsic;
1198
1199 return CMD_SUCCESS;
1200}
1201
1202
Harald Welte4cc34222009-05-01 15:12:31 +00001203DEFUN(cfg_bts_unit_id,
1204 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001205 "ip.access unit_id <0-65534> <0-255>",
1206 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001207{
1208 struct gsm_bts *bts = vty->index;
1209 int site_id = atoi(argv[0]);
1210 int bts_id = atoi(argv[1]);
1211
Harald Welte07dc73d2009-08-07 13:27:09 +02001212 if (!is_ipaccess_bts(bts)) {
1213 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1214 return CMD_WARNING;
1215 }
1216
Harald Welte4cc34222009-05-01 15:12:31 +00001217 bts->ip_access.site_id = site_id;
1218 bts->ip_access.bts_id = bts_id;
1219
1220 return CMD_SUCCESS;
1221}
1222
Harald Welte8175e952009-10-20 00:22:00 +02001223DEFUN(cfg_bts_stream_id,
1224 cfg_bts_stream_id_cmd,
1225 "oml ip.access stream_id <0-255>",
1226 "Set the ip.access Stream ID of the OML link of this BTS\n")
1227{
1228 struct gsm_bts *bts = vty->index;
1229 int stream_id = atoi(argv[0]);
1230
1231 if (!is_ipaccess_bts(bts)) {
1232 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1233 return CMD_WARNING;
1234 }
1235
1236 bts->oml_tei = stream_id;
1237
1238 return CMD_SUCCESS;
1239}
1240
1241
Harald Welte42581822009-08-08 16:12:58 +02001242DEFUN(cfg_bts_oml_e1,
1243 cfg_bts_oml_e1_cmd,
1244 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1245 "E1 interface to be used for OML\n")
1246{
1247 struct gsm_bts *bts = vty->index;
1248
1249 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1250
1251 return CMD_SUCCESS;
1252}
1253
1254
1255DEFUN(cfg_bts_oml_e1_tei,
1256 cfg_bts_oml_e1_tei_cmd,
1257 "oml e1 tei <0-63>",
1258 "Set the TEI to be used for OML")
1259{
1260 struct gsm_bts *bts = vty->index;
1261
1262 bts->oml_tei = atoi(argv[0]);
1263
1264 return CMD_SUCCESS;
1265}
1266
Harald Welte7a8fa412009-08-10 13:48:16 +02001267DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1268 "channel allocator (ascending|descending)",
1269 "Should the channel allocator allocate in reverse TRX order?")
1270{
1271 struct gsm_bts *bts = vty->index;
1272
1273 if (!strcmp(argv[0], "ascending"))
1274 bts->chan_alloc_reverse = 0;
1275 else
1276 bts->chan_alloc_reverse = 1;
1277
1278 return CMD_SUCCESS;
1279}
1280
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001281DEFUN(cfg_bts_rach_tx_integer,
1282 cfg_bts_rach_tx_integer_cmd,
1283 "rach tx integer <0-15>",
1284 "Set the raw tx integer value in RACH Control parameters IE")
1285{
1286 struct gsm_bts *bts = vty->index;
1287 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1288 return CMD_SUCCESS;
1289}
1290
1291DEFUN(cfg_bts_rach_max_trans,
1292 cfg_bts_rach_max_trans_cmd,
1293 "rach max transmission (1|2|4|7)",
1294 "Set the maximum number of RACH burst transmissions")
1295{
1296 struct gsm_bts *bts = vty->index;
1297 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1298 return CMD_SUCCESS;
1299}
1300
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001301DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1302 "cell barred (0|1)",
1303 "Should this cell be barred from access?")
1304{
1305 struct gsm_bts *bts = vty->index;
1306
Harald Welte71355012009-12-21 23:08:18 +01001307 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001308
1309 return CMD_SUCCESS;
1310}
1311
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001312DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1313 "ms max power <0-40>",
1314 "Maximum transmit power of the MS")
1315{
1316 struct gsm_bts *bts = vty->index;
1317
1318 bts->ms_max_power = atoi(argv[0]);
1319
1320 return CMD_SUCCESS;
1321}
1322
Harald Welte73225282009-12-12 18:17:25 +01001323DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1324 "cell reselection hysteresis <0-14>",
1325 "Cell Re-Selection Hysteresis in dB")
1326{
1327 struct gsm_bts *bts = vty->index;
1328
1329 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1330
1331 return CMD_SUCCESS;
1332}
1333
1334DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1335 "rxlev access min <0-63>",
1336 "Minimum RxLev needed for cell access (better than -110dBm)")
1337{
1338 struct gsm_bts *bts = vty->index;
1339
1340 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1341
1342 return CMD_SUCCESS;
1343}
1344
Harald Welte (local)efc92312009-08-14 23:09:25 +02001345DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1346 "periodic location update <0-1530>",
1347 "Periodic Location Updating Interval in Minutes")
1348{
1349 struct gsm_bts *bts = vty->index;
1350
Harald Weltea43f7892009-12-01 18:04:30 +05301351 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 10;
Harald Welte (local)efc92312009-08-14 23:09:25 +02001352
1353 return CMD_SUCCESS;
1354}
1355
Harald Welte7a8fa412009-08-10 13:48:16 +02001356
Harald Welte5258fc42009-03-28 19:07:53 +00001357/* per TRX configuration */
1358DEFUN(cfg_trx,
1359 cfg_trx_cmd,
1360 "trx TRX_NR",
1361 "Select a TRX to configure")
1362{
1363 int trx_nr = atoi(argv[0]);
1364 struct gsm_bts *bts = vty->index;
1365 struct gsm_bts_trx *trx;
1366
Harald Weltee441d9c2009-06-21 16:17:15 +02001367 if (trx_nr > bts->num_trx) {
1368 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
1369 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001370 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001371 } else if (trx_nr == bts->num_trx) {
1372 /* we need to allocate a new one */
1373 trx = gsm_bts_trx_alloc(bts);
1374 } else
1375 trx = gsm_bts_trx_num(bts, trx_nr);
1376
1377 if (!trx)
1378 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001379
1380 vty->index = trx;
1381 vty->node = TRX_NODE;
1382
1383 return CMD_SUCCESS;
1384}
1385
1386DEFUN(cfg_trx_arfcn,
1387 cfg_trx_arfcn_cmd,
1388 "arfcn <1-1024>",
1389 "Set the ARFCN for this TRX\n")
1390{
1391 int arfcn = atoi(argv[0]);
1392 struct gsm_bts_trx *trx = vty->index;
1393
1394 /* FIXME: check if this ARFCN is supported by this TRX */
1395
1396 trx->arfcn = arfcn;
1397
1398 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
1399 /* FIXME: use OML layer to update the ARFCN */
1400 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
1401
1402 return CMD_SUCCESS;
1403}
1404
Harald Weltefcd24452009-06-20 18:15:19 +02001405DEFUN(cfg_trx_max_power_red,
1406 cfg_trx_max_power_red_cmd,
1407 "max_power_red <0-100>",
1408 "Reduction of maximum BS RF Power in dB\n")
1409{
1410 int maxpwr_r = atoi(argv[0]);
1411 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01001412 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02001413
1414 /* FIXME: check if our BTS type supports more than 12 */
1415 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
1416 vty_out(vty, "%% Power %d dB is not in the valid range%s",
1417 maxpwr_r, VTY_NEWLINE);
1418 return CMD_WARNING;
1419 }
1420 if (maxpwr_r & 1) {
1421 vty_out(vty, "%% Power %d dB is not an even value%s",
1422 maxpwr_r, VTY_NEWLINE);
1423 return CMD_WARNING;
1424 }
1425
1426 trx->max_power_red = maxpwr_r;
1427
1428 /* FIXME: make sure we update this using OML */
1429
1430 return CMD_SUCCESS;
1431}
1432
Harald Welte42581822009-08-08 16:12:58 +02001433DEFUN(cfg_trx_rsl_e1,
1434 cfg_trx_rsl_e1_cmd,
1435 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1436 "E1 interface to be used for RSL\n")
1437{
1438 struct gsm_bts_trx *trx = vty->index;
1439
1440 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
1441
1442 return CMD_SUCCESS;
1443}
1444
1445DEFUN(cfg_trx_rsl_e1_tei,
1446 cfg_trx_rsl_e1_tei_cmd,
1447 "rsl e1 tei <0-63>",
1448 "Set the TEI to be used for RSL")
1449{
1450 struct gsm_bts_trx *trx = vty->index;
1451
1452 trx->rsl_tei = atoi(argv[0]);
1453
1454 return CMD_SUCCESS;
1455}
1456
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001457DEFUN(cfg_trx_rf_locked,
1458 cfg_trx_rf_locked_cmd,
1459 "rf_locked (0|1)",
1460 "Turn off RF of the TRX.\n")
1461{
1462 int locked = atoi(argv[0]);
1463 struct gsm_bts_trx *trx = vty->index;
1464
1465 gsm_trx_lock_rf(trx, locked);
1466 return CMD_SUCCESS;
1467}
Harald Welte42581822009-08-08 16:12:58 +02001468
Harald Welte5258fc42009-03-28 19:07:53 +00001469/* per TS configuration */
1470DEFUN(cfg_ts,
1471 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001472 "timeslot <0-7>",
Harald Welte5258fc42009-03-28 19:07:53 +00001473 "Select a Timeslot to configure")
1474{
1475 int ts_nr = atoi(argv[0]);
1476 struct gsm_bts_trx *trx = vty->index;
1477 struct gsm_bts_trx_ts *ts;
1478
1479 if (ts_nr >= TRX_NR_TS) {
1480 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
1481 TRX_NR_TS, VTY_NEWLINE);
1482 return CMD_WARNING;
1483 }
1484
1485 ts = &trx->ts[ts_nr];
1486
1487 vty->index = ts;
1488 vty->node = TS_NODE;
1489
1490 return CMD_SUCCESS;
1491}
1492
Harald Weltea6fd58e2009-08-07 00:25:23 +02001493DEFUN(cfg_ts_pchan,
1494 cfg_ts_pchan_cmd,
1495 "phys_chan_config PCHAN",
1496 "Physical Channel configuration (TCH/SDCCH/...)")
1497{
1498 struct gsm_bts_trx_ts *ts = vty->index;
1499 int pchanc;
1500
1501 pchanc = gsm_pchan_parse(argv[0]);
1502 if (pchanc < 0)
1503 return CMD_WARNING;
1504
1505 ts->pchan = pchanc;
1506
1507 return CMD_SUCCESS;
1508}
1509
1510DEFUN(cfg_ts_e1_subslot,
1511 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001512 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltea6fd58e2009-08-07 00:25:23 +02001513 "E1 sub-slot connected to this on-air timeslot")
1514{
1515 struct gsm_bts_trx_ts *ts = vty->index;
1516
Harald Welte42581822009-08-08 16:12:58 +02001517 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001518
1519 return CMD_SUCCESS;
1520}
Harald Welte5258fc42009-03-28 19:07:53 +00001521
Harald Welte68628e82009-03-10 12:17:57 +00001522int bsc_vty_init(struct gsm_network *net)
1523{
1524 gsmnet = net;
1525
1526 cmd_init(1);
1527 vty_init();
1528
1529 install_element(VIEW_NODE, &show_net_cmd);
1530 install_element(VIEW_NODE, &show_bts_cmd);
1531 install_element(VIEW_NODE, &show_trx_cmd);
1532 install_element(VIEW_NODE, &show_ts_cmd);
1533 install_element(VIEW_NODE, &show_lchan_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00001534
1535 install_element(VIEW_NODE, &show_e1drv_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001536 install_element(VIEW_NODE, &show_e1line_cmd);
1537 install_element(VIEW_NODE, &show_e1ts_cmd);
1538
Harald Weltef5025b62009-03-28 16:55:11 +00001539 install_element(VIEW_NODE, &show_paging_cmd);
Harald Welte24ff6ee2009-12-22 00:41:05 +01001540 install_element(VIEW_NODE, &show_stats_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001541
Harald Welte5013b2a2009-08-07 13:29:14 +02001542 install_element(CONFIG_NODE, &cfg_net_cmd);
1543 install_node(&net_node, config_write_net);
1544 install_default(GSMNET_NODE);
Harald Welte42581822009-08-08 16:12:58 +02001545 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001546 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
1547 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
1548 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001549 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01001550 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09001551 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001552 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01001553 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01001554 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01001555 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01001556 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
1557 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
1558 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
1559 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
1560 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
1561 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001562 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01001563 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
1564 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
1565 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
1566 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
1567 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
1568 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
1569 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
1570 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
1571 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
1572 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001573
1574 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02001575 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00001576 install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001577 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02001578 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001579 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001580 install_element(BTS_NODE, &cfg_bts_lac_cmd);
1581 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001582 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00001583 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02001584 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001585 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
1586 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001587 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001588 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
1589 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001590 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001591 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02001592 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01001593 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
1594 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001595
Harald Welte68628e82009-03-10 12:17:57 +00001596
Harald Welte5258fc42009-03-28 19:07:53 +00001597 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001598 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00001599 install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001600 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02001601 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001602 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
1603 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001604 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001605
Harald Welte5258fc42009-03-28 19:07:53 +00001606 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001607 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00001608 install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001609 install_element(TS_NODE, &cfg_ts_pchan_cmd);
1610 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001611
Holger Hans Peter Freythercfa90d42009-08-10 10:17:50 +02001612 bsc_vty_init_extra(net);
Harald Welte40f82892009-05-23 17:31:39 +00001613
Harald Welte68628e82009-03-10 12:17:57 +00001614 return 0;
1615}