blob: 808db3fb036507126ab5393ec0646081211150ac [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",
814 net->stats.chreq.total, net->stats.chreq.no_channel,
815 VTY_NEWLINE);
816 vty_out(vty, "Location Update: %lu attach, %lu normal, %lu periodic%s",
817 net->stats.loc_upd_type.attach, net->stats.loc_upd_type.normal,
818 net->stats.loc_upd_type.periodic, VTY_NEWLINE);
819 vty_out(vty, "IMSI Detach Indications: %lu%s\n",
820 net->stats.loc_upd_type.detach, VTY_NEWLINE);
821 vty_out(vty, "Location Update Response: %lu accept, %lu reject%s",
822 net->stats.loc_upd_resp.accept,
823 net->stats.loc_upd_resp.reject, VTY_NEWLINE);
824 vty_out(vty, "Paging: %lu attempted, %lu complete, %lu expired%s",
825 net->stats.paging.attempted, net->stats.paging.completed,
826 net->stats.paging.expired, VTY_NEWLINE);
827 vty_out(vty, "Handover: %lu attempted, %lu no_channel, %lu timeout, "
828 "%lu completed, %lu failed%s", net->stats.handover.attempted,
829 net->stats.handover.no_channel, net->stats.handover.timeout,
830 net->stats.handover.completed, net->stats.handover.failed,
831 VTY_NEWLINE);
832 vty_out(vty, "SMS MO: %lu submitted, %lu no receiver%s",
833 net->stats.sms.submitted, net->stats.sms.no_receiver,
834 VTY_NEWLINE);
835 vty_out(vty, "SMS MT: %lu delivered, %lu no memory, %lu other error%s",
836 net->stats.sms.delivered, net->stats.sms.rp_err_mem,
837 net->stats.sms.rp_err_other, VTY_NEWLINE);
838 return CMD_SUCCESS;
839}
840
Harald Welte5013b2a2009-08-07 13:29:14 +0200841DEFUN(cfg_net,
842 cfg_net_cmd,
843 "network",
844 "Configure the GSM network")
845{
846 vty->index = gsmnet;
847 vty->node = GSMNET_NODE;
848
849 return CMD_SUCCESS;
850}
851
852
853DEFUN(cfg_net_ncc,
854 cfg_net_ncc_cmd,
855 "network country code <1-999>",
856 "Set the GSM network country code")
857{
858 gsmnet->country_code = atoi(argv[0]);
859
860 return CMD_SUCCESS;
861}
862
863DEFUN(cfg_net_mnc,
864 cfg_net_mnc_cmd,
865 "mobile network code <1-999>",
866 "Set the GSM mobile network code")
867{
868 gsmnet->network_code = atoi(argv[0]);
869
870 return CMD_SUCCESS;
871}
872
873DEFUN(cfg_net_name_short,
874 cfg_net_name_short_cmd,
875 "short name NAME",
876 "Set the short GSM network name")
877{
878 if (gsmnet->name_short)
879 talloc_free(gsmnet->name_short);
880
881 gsmnet->name_short = talloc_strdup(gsmnet, argv[0]);
882
883 return CMD_SUCCESS;
884}
885
886DEFUN(cfg_net_name_long,
887 cfg_net_name_long_cmd,
888 "long name NAME",
889 "Set the long GSM network name")
890{
891 if (gsmnet->name_long)
892 talloc_free(gsmnet->name_long);
893
894 gsmnet->name_long = talloc_strdup(gsmnet, argv[0]);
895
896 return CMD_SUCCESS;
897}
Harald Welte40f82892009-05-23 17:31:39 +0000898
Harald Welte (local)69de3972009-08-12 14:42:23 +0200899DEFUN(cfg_net_auth_policy,
900 cfg_net_auth_policy_cmd,
901 "auth policy (closed|accept-all|token)",
902 "Set the GSM network authentication policy\n")
903{
904 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
905
906 gsmnet->auth_policy = policy;
907
908 return CMD_SUCCESS;
909}
910
Harald Welte1085c092009-11-18 20:33:19 +0100911DEFUN(cfg_net_reject_cause,
912 cfg_net_reject_cause_cmd,
913 "location updating reject cause <2-111>",
914 "Set the reject cause of location updating reject\n")
915{
916 gsmnet->reject_cause = atoi(argv[0]);
917
918 return CMD_SUCCESS;
919}
920
Harald Welte4381cfe2009-08-30 15:47:06 +0900921DEFUN(cfg_net_encryption,
922 cfg_net_encryption_cmd,
923 "encryption a5 (0|1|2)",
924 "Enable or disable encryption (A5) for this network\n")
925{
Andreas.Eversberg1059deb2009-11-17 09:55:26 +0100926 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +0900927
928 return CMD_SUCCESS;
929}
930
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100931DEFUN(cfg_net_neci,
932 cfg_net_neci_cmd,
933 "neci (0|1)",
934 "Set if NECI of cell selection is to be set")
935{
936 gsmnet->neci = atoi(argv[0]);
937 return CMD_SUCCESS;
938}
939
Harald Welteeab84a12009-12-13 10:53:12 +0100940DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
941 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
942 "Set the Radio Resource Location Protocol Mode")
943{
944 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
945
946 return CMD_SUCCESS;
947}
948
Harald Welte648b6ce2009-12-14 09:00:24 +0100949DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
950 "mm info (0|1)",
951 "Whether to send MM INFO after LOC UPD ACCEPT")
952{
953 gsmnet->send_mm_info = atoi(argv[0]);
954
955 return CMD_SUCCESS;
956}
957
Harald Weltebc814502009-12-19 21:41:52 +0100958DEFUN(cfg_net_handover, cfg_net_handover_cmd,
959 "handover (0|1)",
960 "Whether or not to use in-call handover")
961{
Harald Weltefe03f0d2009-12-20 13:51:01 +0100962 if (ipacc_rtp_direct) {
963 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
964 "is enabled by using the -P command line option%s",
965 VTY_NEWLINE);
966 return CMD_WARNING;
967 }
Harald Weltebc814502009-12-19 21:41:52 +0100968 gsmnet->handover.active = atoi(argv[0]);
969
970 return CMD_SUCCESS;
971}
972
Harald Welteb720bd32009-12-21 16:51:50 +0100973DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
974 "handover window rxlev averaging <1-10>",
975 "How many RxLev measurements are used for averaging")
976{
977 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
978 return CMD_SUCCESS;
979}
980
981DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
982 "handover window rxqual averaging <1-10>",
983 "How many RxQual measurements are used for averaging")
984{
985 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
986 return CMD_SUCCESS;
987}
988
989DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
990 "handover window rxlev neighbor averaging <1-10>",
991 "How many RxQual measurements are used for averaging")
992{
993 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
994 return CMD_SUCCESS;
995}
996
997DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
998 "handover power budget interval <1-99>",
999 "How often to check if we have a better cell (SACCH frames)")
1000{
1001 gsmnet->handover.pwr_interval = atoi(argv[0]);
1002 return CMD_SUCCESS;
1003}
1004
1005DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1006 "handover power budget hysteresis <0-999>",
1007 "How many dB does a neighbor to be stronger to become a HO candidate")
1008{
1009 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1010 return CMD_SUCCESS;
1011}
1012
1013DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1014 "handover maximum distance <0-9999>",
1015 "How big is the maximum timing advance before HO is forced")
1016{
1017 gsmnet->handover.max_distance = atoi(argv[0]);
1018 return CMD_SUCCESS;
1019}
Harald Weltebc814502009-12-19 21:41:52 +01001020
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001021#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001022 DEFUN(cfg_net_T##number, \
1023 cfg_net_T##number##_cmd, \
1024 "timer t" #number " <0-65535>", \
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001025 doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001026{ \
1027 int value = atoi(argv[0]); \
1028 \
1029 if (value < 0 || value > 65535) { \
1030 vty_out(vty, "Timer value %s out of range.%s", \
1031 argv[0], VTY_NEWLINE); \
1032 return CMD_WARNING; \
1033 } \
1034 \
1035 gsmnet->T##number = value; \
1036 return CMD_SUCCESS; \
1037}
1038
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001039DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1040DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1041DECLARE_TIMER(3105, "Currently not used.")
1042DECLARE_TIMER(3107, "Currently not used.")
1043DECLARE_TIMER(3109, "Currently not used.")
1044DECLARE_TIMER(3111, "Currently not used.")
1045DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1046DECLARE_TIMER(3115, "Currently not used.")
1047DECLARE_TIMER(3117, "Currently not used.")
1048DECLARE_TIMER(3119, "Currently not used.")
1049DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001050
1051
Harald Welte5258fc42009-03-28 19:07:53 +00001052/* per-BTS configuration */
1053DEFUN(cfg_bts,
1054 cfg_bts_cmd,
1055 "bts BTS_NR",
1056 "Select a BTS to configure\n")
1057{
1058 int bts_nr = atoi(argv[0]);
1059 struct gsm_bts *bts;
1060
Harald Weltee441d9c2009-06-21 16:17:15 +02001061 if (bts_nr > gsmnet->num_bts) {
1062 vty_out(vty, "%% The next unused BTS number is %u%s",
1063 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001064 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001065 } else if (bts_nr == gsmnet->num_bts) {
1066 /* allocate a new one */
1067 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1068 HARDCODED_TSC, HARDCODED_BSIC);
1069 } else
1070 bts = gsm_bts_num(gsmnet, bts_nr);
1071
1072 if (!bts)
1073 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001074
1075 vty->index = bts;
1076 vty->node = BTS_NODE;
1077
1078 return CMD_SUCCESS;
1079}
1080
1081DEFUN(cfg_bts_type,
1082 cfg_bts_type_cmd,
1083 "type TYPE",
1084 "Set the BTS type\n")
1085{
1086 struct gsm_bts *bts = vty->index;
1087
Harald Weltea6fd58e2009-08-07 00:25:23 +02001088 bts->type = parse_btstype(argv[0]);
1089
Harald Welte8175e952009-10-20 00:22:00 +02001090 if (is_ipaccess_bts(bts)) {
1091 /* Set the default OML Stream ID to 0xff */
1092 bts->oml_tei = 0xff;
1093 }
1094
Harald Welte5258fc42009-03-28 19:07:53 +00001095 return CMD_SUCCESS;
1096}
1097
Harald Weltefcd24452009-06-20 18:15:19 +02001098DEFUN(cfg_bts_band,
1099 cfg_bts_band_cmd,
1100 "band BAND",
1101 "Set the frequency band of this BTS\n")
1102{
1103 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001104 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001105
1106 if (band < 0) {
1107 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1108 band, VTY_NEWLINE);
1109 return CMD_WARNING;
1110 }
1111
1112 bts->band = band;
1113
1114 return CMD_SUCCESS;
1115}
1116
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001117DEFUN(cfg_bts_ci,
1118 cfg_bts_ci_cmd,
1119 "cell_identity <0-65535>",
1120 "Set the Cell identity of this BTS\n")
1121{
1122 struct gsm_bts *bts = vty->index;
1123 int ci = atoi(argv[0]);
1124
1125 if (ci < 0 || ci > 0xffff) {
1126 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1127 ci, VTY_NEWLINE);
1128 return CMD_WARNING;
1129 }
1130 bts->cell_identity = ci;
1131
1132 return CMD_SUCCESS;
1133}
1134
Harald Welte5258fc42009-03-28 19:07:53 +00001135DEFUN(cfg_bts_lac,
1136 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001137 "location_area_code <0-65535>",
Harald Welte5258fc42009-03-28 19:07:53 +00001138 "Set the Location Area Code (LAC) of this BTS\n")
1139{
1140 struct gsm_bts *bts = vty->index;
1141 int lac = atoi(argv[0]);
1142
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001143 if (lac < 0 || lac > 0xffff) {
1144 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001145 lac, VTY_NEWLINE);
1146 return CMD_WARNING;
1147 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001148
1149 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1150 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1151 lac, VTY_NEWLINE);
1152 return CMD_WARNING;
1153 }
1154
Harald Welte5258fc42009-03-28 19:07:53 +00001155 bts->location_area_code = lac;
1156
1157 return CMD_SUCCESS;
1158}
1159
Harald Weltea43f7892009-12-01 18:04:30 +05301160
Harald Welte5258fc42009-03-28 19:07:53 +00001161DEFUN(cfg_bts_tsc,
1162 cfg_bts_tsc_cmd,
1163 "training_sequence_code <0-255>",
1164 "Set the Training Sequence Code (TSC) of this BTS\n")
1165{
1166 struct gsm_bts *bts = vty->index;
1167 int tsc = atoi(argv[0]);
1168
1169 if (tsc < 0 || tsc > 0xff) {
1170 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1171 tsc, VTY_NEWLINE);
1172 return CMD_WARNING;
1173 }
1174 bts->tsc = tsc;
1175
1176 return CMD_SUCCESS;
1177}
1178
Harald Welte78f2f502009-05-23 16:56:52 +00001179DEFUN(cfg_bts_bsic,
1180 cfg_bts_bsic_cmd,
1181 "base_station_id_code <0-63>",
1182 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1183{
1184 struct gsm_bts *bts = vty->index;
1185 int bsic = atoi(argv[0]);
1186
1187 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001188 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001189 bsic, VTY_NEWLINE);
1190 return CMD_WARNING;
1191 }
1192 bts->bsic = bsic;
1193
1194 return CMD_SUCCESS;
1195}
1196
1197
Harald Welte4cc34222009-05-01 15:12:31 +00001198DEFUN(cfg_bts_unit_id,
1199 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001200 "ip.access unit_id <0-65534> <0-255>",
1201 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001202{
1203 struct gsm_bts *bts = vty->index;
1204 int site_id = atoi(argv[0]);
1205 int bts_id = atoi(argv[1]);
1206
Harald Welte07dc73d2009-08-07 13:27:09 +02001207 if (!is_ipaccess_bts(bts)) {
1208 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1209 return CMD_WARNING;
1210 }
1211
Harald Welte4cc34222009-05-01 15:12:31 +00001212 bts->ip_access.site_id = site_id;
1213 bts->ip_access.bts_id = bts_id;
1214
1215 return CMD_SUCCESS;
1216}
1217
Harald Welte8175e952009-10-20 00:22:00 +02001218DEFUN(cfg_bts_stream_id,
1219 cfg_bts_stream_id_cmd,
1220 "oml ip.access stream_id <0-255>",
1221 "Set the ip.access Stream ID of the OML link of this BTS\n")
1222{
1223 struct gsm_bts *bts = vty->index;
1224 int stream_id = atoi(argv[0]);
1225
1226 if (!is_ipaccess_bts(bts)) {
1227 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1228 return CMD_WARNING;
1229 }
1230
1231 bts->oml_tei = stream_id;
1232
1233 return CMD_SUCCESS;
1234}
1235
1236
Harald Welte42581822009-08-08 16:12:58 +02001237DEFUN(cfg_bts_oml_e1,
1238 cfg_bts_oml_e1_cmd,
1239 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1240 "E1 interface to be used for OML\n")
1241{
1242 struct gsm_bts *bts = vty->index;
1243
1244 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1245
1246 return CMD_SUCCESS;
1247}
1248
1249
1250DEFUN(cfg_bts_oml_e1_tei,
1251 cfg_bts_oml_e1_tei_cmd,
1252 "oml e1 tei <0-63>",
1253 "Set the TEI to be used for OML")
1254{
1255 struct gsm_bts *bts = vty->index;
1256
1257 bts->oml_tei = atoi(argv[0]);
1258
1259 return CMD_SUCCESS;
1260}
1261
Harald Welte7a8fa412009-08-10 13:48:16 +02001262DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1263 "channel allocator (ascending|descending)",
1264 "Should the channel allocator allocate in reverse TRX order?")
1265{
1266 struct gsm_bts *bts = vty->index;
1267
1268 if (!strcmp(argv[0], "ascending"))
1269 bts->chan_alloc_reverse = 0;
1270 else
1271 bts->chan_alloc_reverse = 1;
1272
1273 return CMD_SUCCESS;
1274}
1275
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001276DEFUN(cfg_bts_rach_tx_integer,
1277 cfg_bts_rach_tx_integer_cmd,
1278 "rach tx integer <0-15>",
1279 "Set the raw tx integer value in RACH Control parameters IE")
1280{
1281 struct gsm_bts *bts = vty->index;
1282 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1283 return CMD_SUCCESS;
1284}
1285
1286DEFUN(cfg_bts_rach_max_trans,
1287 cfg_bts_rach_max_trans_cmd,
1288 "rach max transmission (1|2|4|7)",
1289 "Set the maximum number of RACH burst transmissions")
1290{
1291 struct gsm_bts *bts = vty->index;
1292 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1293 return CMD_SUCCESS;
1294}
1295
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001296DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1297 "cell barred (0|1)",
1298 "Should this cell be barred from access?")
1299{
1300 struct gsm_bts *bts = vty->index;
1301
Harald Welte71355012009-12-21 23:08:18 +01001302 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001303
1304 return CMD_SUCCESS;
1305}
1306
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001307DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1308 "ms max power <0-40>",
1309 "Maximum transmit power of the MS")
1310{
1311 struct gsm_bts *bts = vty->index;
1312
1313 bts->ms_max_power = atoi(argv[0]);
1314
1315 return CMD_SUCCESS;
1316}
1317
Harald Welte73225282009-12-12 18:17:25 +01001318DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1319 "cell reselection hysteresis <0-14>",
1320 "Cell Re-Selection Hysteresis in dB")
1321{
1322 struct gsm_bts *bts = vty->index;
1323
1324 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1325
1326 return CMD_SUCCESS;
1327}
1328
1329DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1330 "rxlev access min <0-63>",
1331 "Minimum RxLev needed for cell access (better than -110dBm)")
1332{
1333 struct gsm_bts *bts = vty->index;
1334
1335 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1336
1337 return CMD_SUCCESS;
1338}
1339
Harald Welte (local)efc92312009-08-14 23:09:25 +02001340DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1341 "periodic location update <0-1530>",
1342 "Periodic Location Updating Interval in Minutes")
1343{
1344 struct gsm_bts *bts = vty->index;
1345
Harald Weltea43f7892009-12-01 18:04:30 +05301346 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 10;
Harald Welte (local)efc92312009-08-14 23:09:25 +02001347
1348 return CMD_SUCCESS;
1349}
1350
Harald Welte7a8fa412009-08-10 13:48:16 +02001351
Harald Welte5258fc42009-03-28 19:07:53 +00001352/* per TRX configuration */
1353DEFUN(cfg_trx,
1354 cfg_trx_cmd,
1355 "trx TRX_NR",
1356 "Select a TRX to configure")
1357{
1358 int trx_nr = atoi(argv[0]);
1359 struct gsm_bts *bts = vty->index;
1360 struct gsm_bts_trx *trx;
1361
Harald Weltee441d9c2009-06-21 16:17:15 +02001362 if (trx_nr > bts->num_trx) {
1363 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
1364 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001365 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001366 } else if (trx_nr == bts->num_trx) {
1367 /* we need to allocate a new one */
1368 trx = gsm_bts_trx_alloc(bts);
1369 } else
1370 trx = gsm_bts_trx_num(bts, trx_nr);
1371
1372 if (!trx)
1373 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001374
1375 vty->index = trx;
1376 vty->node = TRX_NODE;
1377
1378 return CMD_SUCCESS;
1379}
1380
1381DEFUN(cfg_trx_arfcn,
1382 cfg_trx_arfcn_cmd,
1383 "arfcn <1-1024>",
1384 "Set the ARFCN for this TRX\n")
1385{
1386 int arfcn = atoi(argv[0]);
1387 struct gsm_bts_trx *trx = vty->index;
1388
1389 /* FIXME: check if this ARFCN is supported by this TRX */
1390
1391 trx->arfcn = arfcn;
1392
1393 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
1394 /* FIXME: use OML layer to update the ARFCN */
1395 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
1396
1397 return CMD_SUCCESS;
1398}
1399
Harald Weltefcd24452009-06-20 18:15:19 +02001400DEFUN(cfg_trx_max_power_red,
1401 cfg_trx_max_power_red_cmd,
1402 "max_power_red <0-100>",
1403 "Reduction of maximum BS RF Power in dB\n")
1404{
1405 int maxpwr_r = atoi(argv[0]);
1406 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01001407 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02001408
1409 /* FIXME: check if our BTS type supports more than 12 */
1410 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
1411 vty_out(vty, "%% Power %d dB is not in the valid range%s",
1412 maxpwr_r, VTY_NEWLINE);
1413 return CMD_WARNING;
1414 }
1415 if (maxpwr_r & 1) {
1416 vty_out(vty, "%% Power %d dB is not an even value%s",
1417 maxpwr_r, VTY_NEWLINE);
1418 return CMD_WARNING;
1419 }
1420
1421 trx->max_power_red = maxpwr_r;
1422
1423 /* FIXME: make sure we update this using OML */
1424
1425 return CMD_SUCCESS;
1426}
1427
Harald Welte42581822009-08-08 16:12:58 +02001428DEFUN(cfg_trx_rsl_e1,
1429 cfg_trx_rsl_e1_cmd,
1430 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1431 "E1 interface to be used for RSL\n")
1432{
1433 struct gsm_bts_trx *trx = vty->index;
1434
1435 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
1436
1437 return CMD_SUCCESS;
1438}
1439
1440DEFUN(cfg_trx_rsl_e1_tei,
1441 cfg_trx_rsl_e1_tei_cmd,
1442 "rsl e1 tei <0-63>",
1443 "Set the TEI to be used for RSL")
1444{
1445 struct gsm_bts_trx *trx = vty->index;
1446
1447 trx->rsl_tei = atoi(argv[0]);
1448
1449 return CMD_SUCCESS;
1450}
1451
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001452DEFUN(cfg_trx_rf_locked,
1453 cfg_trx_rf_locked_cmd,
1454 "rf_locked (0|1)",
1455 "Turn off RF of the TRX.\n")
1456{
1457 int locked = atoi(argv[0]);
1458 struct gsm_bts_trx *trx = vty->index;
1459
1460 gsm_trx_lock_rf(trx, locked);
1461 return CMD_SUCCESS;
1462}
Harald Welte42581822009-08-08 16:12:58 +02001463
Harald Welte5258fc42009-03-28 19:07:53 +00001464/* per TS configuration */
1465DEFUN(cfg_ts,
1466 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001467 "timeslot <0-7>",
Harald Welte5258fc42009-03-28 19:07:53 +00001468 "Select a Timeslot to configure")
1469{
1470 int ts_nr = atoi(argv[0]);
1471 struct gsm_bts_trx *trx = vty->index;
1472 struct gsm_bts_trx_ts *ts;
1473
1474 if (ts_nr >= TRX_NR_TS) {
1475 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
1476 TRX_NR_TS, VTY_NEWLINE);
1477 return CMD_WARNING;
1478 }
1479
1480 ts = &trx->ts[ts_nr];
1481
1482 vty->index = ts;
1483 vty->node = TS_NODE;
1484
1485 return CMD_SUCCESS;
1486}
1487
Harald Weltea6fd58e2009-08-07 00:25:23 +02001488DEFUN(cfg_ts_pchan,
1489 cfg_ts_pchan_cmd,
1490 "phys_chan_config PCHAN",
1491 "Physical Channel configuration (TCH/SDCCH/...)")
1492{
1493 struct gsm_bts_trx_ts *ts = vty->index;
1494 int pchanc;
1495
1496 pchanc = gsm_pchan_parse(argv[0]);
1497 if (pchanc < 0)
1498 return CMD_WARNING;
1499
1500 ts->pchan = pchanc;
1501
1502 return CMD_SUCCESS;
1503}
1504
1505DEFUN(cfg_ts_e1_subslot,
1506 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001507 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltea6fd58e2009-08-07 00:25:23 +02001508 "E1 sub-slot connected to this on-air timeslot")
1509{
1510 struct gsm_bts_trx_ts *ts = vty->index;
1511
Harald Welte42581822009-08-08 16:12:58 +02001512 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001513
1514 return CMD_SUCCESS;
1515}
Harald Welte5258fc42009-03-28 19:07:53 +00001516
Harald Welte68628e82009-03-10 12:17:57 +00001517int bsc_vty_init(struct gsm_network *net)
1518{
1519 gsmnet = net;
1520
1521 cmd_init(1);
1522 vty_init();
1523
1524 install_element(VIEW_NODE, &show_net_cmd);
1525 install_element(VIEW_NODE, &show_bts_cmd);
1526 install_element(VIEW_NODE, &show_trx_cmd);
1527 install_element(VIEW_NODE, &show_ts_cmd);
1528 install_element(VIEW_NODE, &show_lchan_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00001529
1530 install_element(VIEW_NODE, &show_e1drv_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001531 install_element(VIEW_NODE, &show_e1line_cmd);
1532 install_element(VIEW_NODE, &show_e1ts_cmd);
1533
Harald Weltef5025b62009-03-28 16:55:11 +00001534 install_element(VIEW_NODE, &show_paging_cmd);
Harald Welte24ff6ee2009-12-22 00:41:05 +01001535 install_element(VIEW_NODE, &show_stats_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001536
Harald Welte5013b2a2009-08-07 13:29:14 +02001537 install_element(CONFIG_NODE, &cfg_net_cmd);
1538 install_node(&net_node, config_write_net);
1539 install_default(GSMNET_NODE);
Harald Welte42581822009-08-08 16:12:58 +02001540 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001541 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
1542 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
1543 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001544 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01001545 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09001546 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001547 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01001548 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01001549 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01001550 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01001551 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
1552 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
1553 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
1554 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
1555 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
1556 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001557 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01001558 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
1559 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
1560 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
1561 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
1562 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
1563 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
1564 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
1565 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
1566 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
1567 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001568
1569 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02001570 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00001571 install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001572 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02001573 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001574 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001575 install_element(BTS_NODE, &cfg_bts_lac_cmd);
1576 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001577 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00001578 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02001579 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001580 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
1581 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001582 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001583 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
1584 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001585 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001586 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02001587 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01001588 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
1589 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001590
Harald Welte68628e82009-03-10 12:17:57 +00001591
Harald Welte5258fc42009-03-28 19:07:53 +00001592 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001593 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00001594 install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001595 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02001596 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001597 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
1598 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001599 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001600
Harald Welte5258fc42009-03-28 19:07:53 +00001601 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001602 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00001603 install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001604 install_element(TS_NODE, &cfg_ts_pchan_cmd);
1605 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001606
Holger Hans Peter Freythercfa90d42009-08-10 10:17:50 +02001607 bsc_vty_init_extra(net);
Harald Welte40f82892009-05-23 17:31:39 +00001608
Harald Welte68628e82009-03-10 12:17:57 +00001609 return 0;
1610}