blob: 9fc28950347c441ca3fe6775efc42d353adaad1b [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
Harald Welteaf387632010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte68628e82009-03-10 12:17:57 +00003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte68628e82009-03-10 12:17:57 +00008 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte68628e82009-03-10 12:17:57 +000014 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte68628e82009-03-10 12:17:57 +000017 *
18 */
19
20#include <stdlib.h>
Maxc08ee712016-05-11 12:45:13 +020021#include <stdbool.h>
Harald Welte68628e82009-03-10 12:17:57 +000022#include <unistd.h>
Harald Welte68628e82009-03-10 12:17:57 +000023
Harald Welte4b037e42010-05-19 19:45:32 +020024#include <osmocom/vty/command.h>
25#include <osmocom/vty/buffer.h>
26#include <osmocom/vty/vty.h>
27#include <osmocom/vty/logging.h>
Jacob Erlbeck64630cc2015-10-26 16:25:37 +010028#include <osmocom/vty/stats.h>
Harald Welte4b037e42010-05-19 19:45:32 +020029#include <osmocom/vty/telnet_interface.h>
Harald Welte4ab9d7c2012-08-17 12:42:06 +020030#include <osmocom/vty/misc.h>
Maxc08ee712016-05-11 12:45:13 +020031#include <osmocom/gsm/protocol/gsm_04_08.h>
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010032#include <osmocom/gsm/gsm0502.h>
33
Harald Welte68628e82009-03-10 12:17:57 +000034#include <arpa/inet.h>
35
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000037#include <openbsc/gsm_data.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020038#include <osmocom/abis/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000039#include <openbsc/abis_nm.h>
Harald Welte4d54d0b2011-02-19 16:48:17 +010040#include <openbsc/abis_om2000.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010041#include <osmocom/core/utils.h>
42#include <osmocom/gsm/gsm_utils.h>
Harald Weltecdc59ff2011-05-23 20:42:26 +020043#include <osmocom/gsm/abis_nm.h>
Harald Welteb908cb72009-12-22 13:09:29 +010044#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010045#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000046#include <openbsc/db.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020047#include <openbsc/vty.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080048#include <osmocom/gprs/gprs_ns.h>
Harald Welte9fbff4a2010-07-30 11:50:09 +020049#include <openbsc/system_information.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020050#include <openbsc/debug.h>
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010051#include <openbsc/paging.h>
Harald Weltef7a2b192011-08-20 18:25:02 +020052#include <openbsc/ipaccess.h>
Harald Welted0d2b0b2010-12-23 13:18:07 +010053#include <openbsc/abis_rsl.h>
Neels Hofmeyra42855f2017-02-23 21:49:55 +010054#include <openbsc/bsc_msc_data.h>
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +010055#include <openbsc/osmo_bsc_rf.h>
Harald Welte8254cf72017-05-29 13:42:19 +020056#include <openbsc/pcu_if.h>
Harald Welte68628e82009-03-10 12:17:57 +000057
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +020058#include <openbsc/common_cs.h>
59
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010060#include <inttypes.h>
61
Harald Weltec08e8be2011-03-04 13:53:51 +010062#include "../../bscconfig.h"
Harald Welte1353f962010-05-16 19:20:24 +020063
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020064
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020065#define LCHAN_NR_STR "Logical Channel Number\n"
66
67
Harald Welteea4647d2010-05-12 17:19:53 +000068/* FIXME: this should go to some common file */
69static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020070 { 0, "tns-block" },
71 { 1, "tns-block-retries" },
72 { 2, "tns-reset" },
73 { 3, "tns-reset-retries" },
74 { 4, "tns-test" },
75 { 5, "tns-alive" },
76 { 6, "tns-alive-retries" },
77 { 0, NULL }
78};
79
Harald Welteea4647d2010-05-12 17:19:53 +000080static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020081 { 0, "blocking-timer" },
82 { 1, "blocking-retries" },
83 { 2, "unblocking-retries" },
84 { 3, "reset-timer" },
85 { 4, "reset-retries" },
86 { 5, "suspend-timer" },
87 { 6, "suspend-retries" },
88 { 7, "resume-timer" },
89 { 8, "resume-retries" },
90 { 9, "capability-update-timer" },
91 { 10, "capability-update-retries" },
92 { 0, NULL }
93};
94
Harald Welte64c07d22011-02-15 11:43:27 +010095static const struct value_string bts_neigh_mode_strs[] = {
96 { NL_MODE_AUTOMATIC, "automatic" },
97 { NL_MODE_MANUAL, "manual" },
98 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
99 { 0, NULL }
100};
101
Daniel Willmann7d109832012-05-14 18:43:23 +0200102const struct value_string bts_loc_fix_names[] = {
103 { BTS_LOC_FIX_INVALID, "invalid" },
104 { BTS_LOC_FIX_2D, "fix2d" },
105 { BTS_LOC_FIX_3D, "fix3d" },
106 { 0, NULL }
107};
108
Harald Welte68628e82009-03-10 12:17:57 +0000109struct cmd_node bts_node = {
110 BTS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200111 "%s(config-net-bts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000112 1,
113};
114
115struct cmd_node trx_node = {
116 TRX_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200117 "%s(config-net-bts-trx)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000118 1,
119};
120
121struct cmd_node ts_node = {
122 TS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200123 "%s(config-net-bts-trx-ts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000124 1,
125};
126
127static int dummy_config_write(struct vty *v)
128{
129 return CMD_SUCCESS;
130}
131
132static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
133{
Harald Welte1304b352013-03-15 16:57:33 +0100134 vty_out(vty,"Oper '%s', Admin '%s', Avail '%s'%s",
135 abis_nm_opstate_name(nms->operational),
136 get_value_string(abis_nm_adm_state_names, nms->administrative),
Harald Welte867d9f32011-05-23 20:30:39 +0200137 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000138}
139
Harald Welteb908cb72009-12-22 13:09:29 +0100140static void dump_pchan_load_vty(struct vty *vty, char *prefix,
141 const struct pchan_load *pl)
142{
143 int i;
144
145 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
146 const struct load_counter *lc = &pl->pchan[i];
147 unsigned int percent;
148
149 if (lc->total == 0)
150 continue;
151
152 percent = (lc->used * 100) / lc->total;
153
154 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
155 gsm_pchan_name(i), percent, lc->used, lc->total,
156 VTY_NEWLINE);
157 }
158}
159
Harald Welte68628e82009-03-10 12:17:57 +0000160static void net_dump_vty(struct vty *vty, struct gsm_network *net)
161{
Harald Welteb908cb72009-12-22 13:09:29 +0100162 struct pchan_load pl;
163
Harald Welteef235b52009-03-10 12:34:02 +0000164 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
165 "and has %u BTS%s", net->country_code, net->network_code,
166 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000167 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000168 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000169 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000170 net->name_short, VTY_NEWLINE);
Maxddee01f2016-05-24 14:23:27 +0200171 vty_out(vty, " Authentication policy: %s",
172 gsm_auth_policy_name(net->auth_policy));
173 if (net->authorized_reg_str)
174 vty_out(vty, ", authorized regexp: %s", net->authorized_reg_str);
175 vty_out(vty, "%s", VTY_NEWLINE);
Maxe6052c42016-06-30 10:25:49 +0200176 vty_out(vty, " Auto create subscriber: %s%s",
177 net->auto_create_subscr ? "yes" : "no", VTY_NEWLINE);
178 vty_out(vty, " Auto assign extension: %s%s",
179 net->auto_assign_exten ? "yes" : "no", VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100180 vty_out(vty, " Location updating reject cause: %u%s",
181 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900182 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
183 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100184 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
185 VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800186 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
187 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100188 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
189 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100190 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
191 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100192 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
193 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100194 network_chan_load(&pl, net);
195 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
196 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100197
198 /* show rf */
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100199 if (net->bsc_data)
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100200 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200201 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100202 VTY_NEWLINE);
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100203 if (net->bsc_data)
Jacob Erlbeck779a7282013-09-11 10:46:57 +0200204 vty_out(vty, " Last RF Lock Command: %s%s",
205 net->bsc_data->rf_ctrl->last_rf_lock_ctrl_command,
206 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000207}
208
Neels Hofmeyrea11bf82016-05-12 01:53:23 +0200209DEFUN(bsc_show_net, bsc_show_net_cmd, "show network",
Harald Welte68628e82009-03-10 12:17:57 +0000210 SHOW_STR "Display information about a GSM NETWORK\n")
211{
Harald Weltedcccb182010-05-16 20:52:23 +0200212 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000213 net_dump_vty(vty, net);
214
215 return CMD_SUCCESS;
216}
217
218static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
219{
Harald Welteedb37782009-05-01 14:59:07 +0000220 struct e1inp_line *line;
221
222 if (!e1l) {
223 vty_out(vty, " None%s", VTY_NEWLINE);
224 return;
225 }
226
227 line = e1l->ts->line;
228
229 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
230 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000231 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000232 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000233 e1l->tei, e1l->sapi, VTY_NEWLINE);
234}
235
236static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
237{
Harald Welteb908cb72009-12-22 13:09:29 +0100238 struct pchan_load pl;
239
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200240 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte557c84e2015-11-20 10:50:24 +0100241 "BSIC %u (NCC=%u, BCC=%u) and %u TRX%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200242 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200243 bts->cell_identity,
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100244 bts->location_area_code, bts->bsic,
Harald Welte557c84e2015-11-20 10:50:24 +0100245 bts->bsic >> 3, bts->bsic & 7,
Harald Weltefcd24452009-06-20 18:15:19 +0200246 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200247 vty_out(vty, "Description: %s%s",
248 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Maxf9685c12017-03-23 12:01:07 +0100249 if (strnlen(bts->pcu_version, MAX_VERSION_LENGTH))
250 vty_out(vty, "PCU version %s connected%s", bts->pcu_version,
251 VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100252 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100253 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100254 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
255 VTY_NEWLINE);
256 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100257 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100258 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
259 VTY_NEWLINE);
260 vty_out(vty, "RACH Max transmissions: %u%s",
261 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
262 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100263 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200264 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +0200265 if (bts->dtxu != GSM48_DTX_SHALL_NOT_BE_USED)
266 vty_out(vty, "Uplink DTX: %s%s",
267 (bts->dtxu != GSM48_DTX_SHALL_BE_USED) ?
268 "enabled" : "forced", VTY_NEWLINE);
269 else
270 vty_out(vty, "Uplink DTX: not enabled%s", VTY_NEWLINE);
271 vty_out(vty, "Downlink DTX: %senabled%s", bts->dtxd ? "" : "not ",
272 VTY_NEWLINE);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200273 vty_out(vty, "Channel Description Attachment: %s%s",
274 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
275 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
276 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
277 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
278 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200279 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
280 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte42def722017-01-13 00:10:32 +0100281 vty_out(vty, "Early Classmark Sending: %s%s",
282 bts->early_classmark_allowed ? "allowed" : "forbidden",
283 VTY_NEWLINE);
Harald Welte8254cf72017-05-29 13:42:19 +0200284 if (bts->pcu_sock_path)
285 vty_out(vty, "PCU Socket Path: %s%s", bts->pcu_sock_path, VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000286 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200287 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000288 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200289 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautc9519462011-10-17 14:04:55 +0200290 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
291 vty_out(vty, " Skip Reset: %d%s",
292 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000293 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200294 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000295 vty_out(vty, " Site Mgr NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200296 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther846d8dc2013-05-29 16:22:09 +0200297 vty_out(vty, " GPRS NSE: ");
298 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
299 vty_out(vty, " GPRS CELL: ");
300 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
301 vty_out(vty, " GPRS NSVC0: ");
302 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
303 vty_out(vty, " GPRS NSVC1: ");
304 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther66e14cd2011-04-26 15:52:34 +0200305 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
306 paging_pending_requests_nr(bts),
Harald Welte68628e82009-03-10 12:17:57 +0000307 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100308 if (is_ipaccess_bts(bts)) {
309 vty_out(vty, " OML Link state: %s.%s",
310 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
311 } else {
Harald Welte8175e952009-10-20 00:22:00 +0200312 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
313 e1isl_dump_vty(vty, bts->oml_link);
314 }
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100315
316 /* FIXME: chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100317 memset(&pl, 0, sizeof(pl));
Neels Hofmeyr2afffd52016-09-25 17:01:20 +0200318 bts_chan_load(&pl, bts);
Harald Welteb908cb72009-12-22 13:09:29 +0100319 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
320 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000321}
322
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100323DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte68628e82009-03-10 12:17:57 +0000324 SHOW_STR "Display information about a BTS\n"
325 "BTS number")
326{
Harald Weltedcccb182010-05-16 20:52:23 +0200327 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000328 int bts_nr;
329
330 if (argc != 0) {
331 /* use the BTS number that the user has specified */
332 bts_nr = atoi(argv[0]);
Harald Welte712ddbc2010-12-24 12:24:03 +0100333 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000334 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000335 VTY_NEWLINE);
336 return CMD_WARNING;
337 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200338 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000339 return CMD_SUCCESS;
340 }
341 /* print all BTS's */
342 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200343 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000344
345 return CMD_SUCCESS;
346}
347
Harald Welte42581822009-08-08 16:12:58 +0200348/* utility functions */
349static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
350 const char *ts, const char *ss)
351{
352 e1_link->e1_nr = atoi(line);
353 e1_link->e1_ts = atoi(ts);
354 if (!strcmp(ss, "full"))
355 e1_link->e1_ts_ss = 255;
356 else
357 e1_link->e1_ts_ss = atoi(ss);
358}
359
360static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
361 const char *prefix)
362{
363 if (!e1_link->e1_ts)
364 return;
365
366 if (e1_link->e1_ts_ss == 255)
367 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
368 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
369 else
370 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
371 prefix, e1_link->e1_nr, e1_link->e1_ts,
372 e1_link->e1_ts_ss, VTY_NEWLINE);
373}
374
375
Harald Welte67ce0732009-08-06 19:06:46 +0200376static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
377{
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100378 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100379 if (ts->tsc != -1)
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100380 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200381 if (ts->pchan != GSM_PCHAN_NONE)
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100382 vty_out(vty, " phys_chan_config %s%s",
Harald Welte42581822009-08-08 16:12:58 +0200383 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100384 vty_out(vty, " hopping enabled %u%s",
Harald Weltea39b0f22010-06-14 22:26:10 +0200385 ts->hopping.enabled, VTY_NEWLINE);
386 if (ts->hopping.enabled) {
387 unsigned int i;
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100388 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200389 ts->hopping.hsn, VTY_NEWLINE);
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100390 vty_out(vty, " hopping maio %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200391 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200392 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
393 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
394 continue;
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100395 vty_out(vty, " hopping arfcn add %u%s",
Harald Weltea39b0f22010-06-14 22:26:10 +0200396 i, VTY_NEWLINE);
397 }
Harald Welte127af342010-12-24 12:07:07 +0100398 }
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100399 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welteface7ed2011-02-14 16:15:21 +0100400
401 if (ts->trx->bts->model->config_write_ts)
402 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte67ce0732009-08-06 19:06:46 +0200403}
404
405static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
406{
407 int i;
408
Harald Welte5013b2a2009-08-07 13:29:14 +0200409 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200410 if (trx->description)
411 vty_out(vty, " description %s%s", trx->description,
412 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200413 vty_out(vty, " rf_locked %u%s",
Harald Welted64c0bc2011-05-30 12:07:53 +0200414 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200415 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200416 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100417 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200418 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200419 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
420 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200421
Harald Welteface7ed2011-02-14 16:15:21 +0100422 if (trx->bts->model->config_write_trx)
423 trx->bts->model->config_write_trx(vty, trx);
424
Harald Welte67ce0732009-08-06 19:06:46 +0200425 for (i = 0; i < TRX_NR_TS; i++)
426 config_write_ts_single(vty, &trx->ts[i]);
427}
428
Harald Welte615e9562010-05-11 23:50:21 +0200429static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
430{
431 unsigned int i;
432 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
433 VTY_NEWLINE);
434 if (bts->gprs.mode == BTS_GPRS_NONE)
435 return;
436
bhargava350533c2016-07-21 11:14:34 +0530437 vty_out(vty, " gprs 11bit_rach_support_for_egprs %u%s",
438 bts->gprs.supports_egprs_11bit_rach, VTY_NEWLINE);
439
Harald Welte615e9562010-05-11 23:50:21 +0200440 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
441 VTY_NEWLINE);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100442 vty_out(vty, " gprs network-control-order nc%u%s",
443 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Max292ec582016-07-28 11:55:37 +0200444 if (!bts->gprs.ctrl_ack_type_use_block)
445 vty_out(vty, " gprs control-ack-type-rach%s", VTY_NEWLINE);
Harald Welte615e9562010-05-11 23:50:21 +0200446 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
447 VTY_NEWLINE);
448 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
449 vty_out(vty, " gprs cell timer %s %u%s",
450 get_value_string(gprs_bssgp_cfg_strs, i),
451 bts->gprs.cell.timer[i], VTY_NEWLINE);
452 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
453 VTY_NEWLINE);
454 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
455 vty_out(vty, " gprs ns timer %s %u%s",
456 get_value_string(gprs_ns_timer_strs, i),
457 bts->gprs.nse.timer[i], VTY_NEWLINE);
458 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
459 struct gsm_bts_gprs_nsvc *nsvc =
460 &bts->gprs.nsvc[i];
461 struct in_addr ia;
462
463 ia.s_addr = htonl(nsvc->remote_ip);
464 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
465 nsvc->nsvci, VTY_NEWLINE);
466 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
467 nsvc->local_port, VTY_NEWLINE);
468 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
469 nsvc->remote_port, VTY_NEWLINE);
470 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
471 inet_ntoa(ia), VTY_NEWLINE);
472 }
473}
474
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200475/* Write the model data if there is one */
476static void config_write_bts_model(struct vty *vty, struct gsm_bts *bts)
Harald Welte67ce0732009-08-06 19:06:46 +0200477{
478 struct gsm_bts_trx *trx;
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200479
480 if (!bts->model)
481 return;
482
483 if (bts->model->config_write_bts)
484 bts->model->config_write_bts(vty, bts);
485
486 llist_for_each_entry(trx, &bts->trx_list, list)
487 config_write_trx_single(vty, trx);
488}
489
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +0200490static void write_amr_modes(struct vty *vty, const char *prefix,
491 const char *name, struct amr_mode *modes, int num)
492{
493 int i;
494
495 vty_out(vty, " %s threshold %s", prefix, name);
496 for (i = 0; i < num - 1; i++)
497 vty_out(vty, " %d", modes[i].threshold);
498 vty_out(vty, "%s", VTY_NEWLINE);
499 vty_out(vty, " %s hysteresis %s", prefix, name);
500 for (i = 0; i < num - 1; i++)
501 vty_out(vty, " %d", modes[i].hysteresis);
502 vty_out(vty, "%s", VTY_NEWLINE);
503}
504
Andreas Eversberg73266522014-01-19 11:47:44 +0100505static void config_write_bts_amr(struct vty *vty, struct gsm_bts *bts,
506 struct amr_multirate_conf *mr, int full)
507{
508 struct gsm48_multi_rate_conf *mr_conf;
509 const char *prefix = (full) ? "amr tch-f" : "amr tch-h";
510 int i, num;
511
512 if (!(mr->gsm48_ie[1]))
513 return;
514
515 mr_conf = (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
516
517 num = 0;
518 vty_out(vty, " %s modes", prefix);
519 for (i = 0; i < ((full) ? 8 : 6); i++) {
520 if ((mr->gsm48_ie[1] & (1 << i))) {
521 vty_out(vty, " %d", i);
522 num++;
523 }
524 }
525 vty_out(vty, "%s", VTY_NEWLINE);
526 if (num > 4)
527 num = 4;
528 if (num > 1) {
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +0200529 write_amr_modes(vty, prefix, "ms", mr->ms_mode, num);
530 write_amr_modes(vty, prefix, "bts", mr->bts_mode, num);
Andreas Eversberg73266522014-01-19 11:47:44 +0100531 }
532 vty_out(vty, " %s start-mode ", prefix);
533 if (mr_conf->icmi) {
534 num = 0;
535 for (i = 0; i < ((full) ? 8 : 6) && num < 4; i++) {
536 if ((mr->gsm48_ie[1] & (1 << i)))
537 num++;
538 if (mr_conf->smod == num - 1) {
539 vty_out(vty, "%d%s", num, VTY_NEWLINE);
540 break;
541 }
542 }
543 } else
544 vty_out(vty, "auto%s", VTY_NEWLINE);
545}
546
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200547static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
548{
Harald Welte9fbff4a2010-07-30 11:50:09 +0200549 int i;
Max2c16bee2017-02-15 13:51:37 +0100550 uint8_t tmp;
Harald Welte67ce0732009-08-06 19:06:46 +0200551
Harald Welte5013b2a2009-08-07 13:29:14 +0200552 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
553 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200554 if (bts->description)
555 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200556 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100557 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200558 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200559 VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +0200560 if (bts->dtxu != GSM48_DTX_SHALL_NOT_BE_USED)
561 vty_out(vty, " dtx uplink%s%s",
562 (bts->dtxu != GSM48_DTX_SHALL_BE_USED) ? "" : " force",
563 VTY_NEWLINE);
564 if (bts->dtxd)
565 vty_out(vty, " dtx downlink%s", VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200566 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200567 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100568 vty_out(vty, " cell reselection hysteresis %u%s",
569 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
570 vty_out(vty, " rxlev access min %u%s",
571 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100572
573 if (bts->si_common.cell_ro_sel_par.present) {
574 struct gsm48_si_selection_params *sp;
575 sp = &bts->si_common.cell_ro_sel_par;
576
577 if (sp->cbq)
578 vty_out(vty, " cell bar qualify %u%s",
579 sp->cbq, VTY_NEWLINE);
580
581 if (sp->cell_resel_off)
582 vty_out(vty, " cell reselection offset %u%s",
583 sp->cell_resel_off*2, VTY_NEWLINE);
584
585 if (sp->temp_offs == 7)
586 vty_out(vty, " temporary offset infinite%s",
587 VTY_NEWLINE);
588 else if (sp->temp_offs)
589 vty_out(vty, " temporary offset %u%s",
590 sp->temp_offs*10, VTY_NEWLINE);
591
592 if (sp->penalty_time == 31)
593 vty_out(vty, " penalty time reserved%s",
594 VTY_NEWLINE);
595 else if (sp->penalty_time)
596 vty_out(vty, " penalty time %u%s",
597 (sp->penalty_time*20)+20, VTY_NEWLINE);
598 }
599
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200600 /* Is periodic LU enabled or disabled? */
601 if (bts->si_common.chan_desc.t3212 == 0)
602 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
603 else
604 vty_out(vty, " periodic location update %u%s",
605 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
606
Harald Welte2f8b9d22017-06-18 11:12:13 +0300607 if (gsm_bts_get_radio_link_timeout(bts) < 0)
608 vty_out(vty, " radio-link-timeout infinite%s", VTY_NEWLINE);
609 else
610 vty_out(vty, " radio-link-timeout %d%s",
611 gsm_bts_get_radio_link_timeout(bts), VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200612 vty_out(vty, " channel allocator %s%s",
613 bts->chan_alloc_reverse ? "descending" : "ascending",
614 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100615 vty_out(vty, " rach tx integer %u%s",
616 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
617 vty_out(vty, " rach max transmission %u%s",
618 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
619 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800620
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200621 vty_out(vty, " channel-descrption attach %u%s",
622 bts->si_common.chan_desc.att, VTY_NEWLINE);
623 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
624 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
625 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
626 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
627
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800628 if (bts->rach_b_thresh != -1)
629 vty_out(vty, " rach nm busy threshold %u%s",
630 bts->rach_b_thresh, VTY_NEWLINE);
631 if (bts->rach_ldavg_slots != -1)
632 vty_out(vty, " rach nm load average %u%s",
633 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100634 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200635 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800636 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
637 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov67920592013-09-16 13:13:04 +0400638 if ((bts->si_common.rach_control.t3) != 0)
639 for (i = 0; i < 8; i++)
640 if (bts->si_common.rach_control.t3 & (0x1 << i))
641 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
642 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
643 for (i = 0; i < 8; i++)
644 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
645 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200646 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
647 if (bts->si_mode_static & (1 << i)) {
648 vty_out(vty, " system-information %s mode static%s",
649 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
650 vty_out(vty, " system-information %s static %s%s",
651 get_value_string(osmo_sitype_strs, i),
Max6f0e50c2017-04-12 15:30:54 +0200652 osmo_hexdump_nospc(GSM_BTS_SI(bts, i), GSM_MACBLOCK_LEN),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200653 VTY_NEWLINE);
654 }
655 }
Harald Welte42def722017-01-13 00:10:32 +0100656 vty_out(vty, " early-classmark-sending %s%s",
657 bts->early_classmark_allowed ? "allowed" : "forbidden", VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100658 switch (bts->type) {
659 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100660 case GSM_BTS_TYPE_OSMOBTS:
Harald Welte5013b2a2009-08-07 13:29:14 +0200661 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200662 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b291802013-03-12 13:57:05 +0100663 if (bts->ip_access.rsl_ip) {
664 struct in_addr ia;
665 ia.s_addr = htonl(bts->ip_access.rsl_ip);
666 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
667 VTY_NEWLINE);
668 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200669 vty_out(vty, " oml ip.access stream_id %u line %u%s",
670 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100671 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200672 case GSM_BTS_TYPE_NOKIA_SITE:
673 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100674 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
675 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Sipos Csaba56e17662015-02-07 13:27:36 +0100676 vty_out(vty, " nokia_site bts-reset-timer %d%s", bts->nokia.bts_reset_timer_cnf, VTY_NEWLINE);
Andreas Eversbergb6f95162013-12-05 16:02:37 +0100677 /* fall through: Nokia requires "oml e1" parameters also */
Harald Weltefd355a32011-03-04 13:41:31 +0100678 default:
Harald Welte42581822009-08-08 16:12:58 +0200679 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
680 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100681 break;
Harald Welte42581822009-08-08 16:12:58 +0200682 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800683
684 /* if we have a limit, write it */
685 if (bts->paging.free_chans_need >= 0)
686 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
687
Harald Welte32c09622011-01-11 23:44:56 +0100688 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100689 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
690 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100691 for (i = 0; i < 1024; i++) {
692 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
693 vty_out(vty, " neighbor-list add arfcn %u%s",
694 i, VTY_NEWLINE);
695 }
696 }
Harald Welte64c07d22011-02-15 11:43:27 +0100697 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
698 for (i = 0; i < 1024; i++) {
699 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
700 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
701 i, VTY_NEWLINE);
702 }
703 }
Harald Welte32c09622011-01-11 23:44:56 +0100704
Max59a1bf32016-04-15 16:04:46 +0200705 for (i = 0; i < MAX_EARFCN_LIST; i++) {
Max2c16bee2017-02-15 13:51:37 +0100706 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
707 if (e->arfcn[i] != OSMO_EARFCN_INVALID) {
708 vty_out(vty, " si2quater neighbor-list add earfcn %u "
709 "thresh-hi %u", e->arfcn[i], e->thresh_hi);
710
711 vty_out(vty, " thresh-lo %u",
712 e->thresh_lo_valid ? e->thresh_lo : 32);
713
714 vty_out(vty, " prio %u",
715 e->prio_valid ? e->prio : 8);
716
717 vty_out(vty, " qrxlv %u",
718 e->qrxlm_valid ? e->qrxlm : 32);
719
720 tmp = e->meas_bw[i];
721 vty_out(vty, " meas %u",
722 (tmp != OSMO_EARFCN_MEAS_INVALID) ? tmp : 8);
Max59a1bf32016-04-15 16:04:46 +0200723
724 vty_out(vty, "%s", VTY_NEWLINE);
725 }
726 }
727
Max26679e02016-04-20 15:57:13 +0200728 for (i = 0; i < bts->si_common.uarfcn_length; i++) {
729 vty_out(vty, " si2quater neighbor-list add uarfcn %u %u %u%s",
730 bts->si_common.data.uarfcn_list[i],
731 bts->si_common.data.scramble_list[i] & ~(1 << 9),
732 (bts->si_common.data.scramble_list[i] >> 9) & 1,
733 VTY_NEWLINE);
734 }
735
Andreas Eversberga83d5112013-12-07 18:32:28 +0100736 vty_out(vty, " codec-support fr");
737 if (bts->codec.hr)
738 vty_out(vty, " hr");
739 if (bts->codec.efr)
740 vty_out(vty, " efr");
741 if (bts->codec.amr)
742 vty_out(vty, " amr");
743 vty_out(vty, "%s", VTY_NEWLINE);
744
Andreas Eversberg73266522014-01-19 11:47:44 +0100745 config_write_bts_amr(vty, bts, &bts->mr_full, 1);
746 config_write_bts_amr(vty, bts, &bts->mr_half, 0);
747
Harald Welte615e9562010-05-11 23:50:21 +0200748 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200749
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200750 if (bts->excl_from_rf_lock)
751 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
752
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100753 vty_out(vty, " %sforce-combined-si%s",
754 bts->force_combined_si ? "" : "no ", VTY_NEWLINE);
755
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100756 for (i = 0; i < ARRAY_SIZE(bts->depends_on); ++i) {
757 int j;
758
759 if (bts->depends_on[i] == 0)
760 continue;
761
762 for (j = 0; j < sizeof(bts->depends_on[i]) * 8; ++j) {
763 int bts_nr;
764
765 if ((bts->depends_on[i] & (1<<j)) == 0)
766 continue;
767
768 bts_nr = (i * sizeof(bts->depends_on[i]) * 8) + j;
769 vty_out(vty, " depends-on-bts %d%s", bts_nr, VTY_NEWLINE);
770 }
771 }
Harald Welte8254cf72017-05-29 13:42:19 +0200772 if (bts->pcu_sock_path)
773 vty_out(vty, " pcu-socket %s%s", bts->pcu_sock_path, VTY_NEWLINE);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100774
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200775 config_write_bts_model(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200776}
777
778static int config_write_bts(struct vty *v)
779{
Harald Weltedcccb182010-05-16 20:52:23 +0200780 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200781 struct gsm_bts *bts;
782
783 llist_for_each_entry(bts, &gsmnet->bts_list, list)
784 config_write_bts_single(v, bts);
785
786 return CMD_SUCCESS;
787}
788
Harald Welte5013b2a2009-08-07 13:29:14 +0200789static int config_write_net(struct vty *vty)
790{
Harald Weltedcccb182010-05-16 20:52:23 +0200791 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
792
Harald Welte5013b2a2009-08-07 13:29:14 +0200793 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200794 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200795 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200796 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
797 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200798 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Maxddee01f2016-05-24 14:23:27 +0200799 if (gsmnet->authorized_reg_str)
800 vty_out(vty, " authorized-regexp %s%s", gsmnet->authorized_reg_str, VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100801 vty_out(vty, " location updating reject cause %u%s",
802 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900803 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100804 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800805 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100806 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
807 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100808 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100809 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100810 vty_out(vty, " handover window rxlev averaging %u%s",
811 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
812 vty_out(vty, " handover window rxqual averaging %u%s",
813 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
814 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
815 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
816 vty_out(vty, " handover power budget interval %u%s",
817 gsmnet->handover.pwr_interval, VTY_NEWLINE);
818 vty_out(vty, " handover power budget hysteresis %u%s",
819 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
820 vty_out(vty, " handover maximum distance %u%s",
821 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100822 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100823 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
824 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
825 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
826 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
827 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
828 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
829 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
830 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
831 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100832 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100833 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Vadim Yanitskiy7f3724e2017-03-31 23:27:44 +0700834 vty_out(vty, " dyn_ts_allow_tch_f %d%s",
835 gsmnet->dyn_ts_allow_tch_f ? 1 : 0, VTY_NEWLINE);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +0100836 vty_out(vty, " subscriber-keep-in-ram %d%s",
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100837 gsmnet->subscr_group->keep_subscr, VTY_NEWLINE);
Neels Hofmeyr73983952016-05-10 13:29:33 +0200838 if (gsmnet->tz.override != 0) {
839 if (gsmnet->tz.dst)
840 vty_out(vty, " timezone %d %d %d%s",
841 gsmnet->tz.hr, gsmnet->tz.mn, gsmnet->tz.dst,
842 VTY_NEWLINE);
843 else
844 vty_out(vty, " timezone %d %d%s",
845 gsmnet->tz.hr, gsmnet->tz.mn, VTY_NEWLINE);
846 }
Harald Welte5013b2a2009-08-07 13:29:14 +0200847
848 return CMD_SUCCESS;
849}
Harald Welte67ce0732009-08-06 19:06:46 +0200850
Harald Welte68628e82009-03-10 12:17:57 +0000851static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
852{
853 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
854 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200855 vty_out(vty, "Description: %s%s",
856 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200857 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200858 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200859 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200860 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000861 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200862 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000863 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200864 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200865 if (is_ipaccess_bts(trx->bts)) {
866 vty_out(vty, " ip.access stream ID: 0x%02x%s",
867 trx->rsl_tei, VTY_NEWLINE);
868 } else {
869 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
870 e1isl_dump_vty(vty, trx->rsl_link);
871 }
Harald Welte68628e82009-03-10 12:17:57 +0000872}
873
874DEFUN(show_trx,
875 show_trx_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100876 "show trx [<0-255>] [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200877 SHOW_STR "Display information about a TRX\n"
878 "BTS Number\n"
879 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000880{
Harald Weltedcccb182010-05-16 20:52:23 +0200881 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000882 struct gsm_bts *bts = NULL;
883 struct gsm_bts_trx *trx;
884 int bts_nr, trx_nr;
885
886 if (argc >= 1) {
887 /* use the BTS number that the user has specified */
888 bts_nr = atoi(argv[0]);
889 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000890 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000891 VTY_NEWLINE);
892 return CMD_WARNING;
893 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200894 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000895 }
896 if (argc >= 2) {
897 trx_nr = atoi(argv[1]);
898 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000899 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000900 VTY_NEWLINE);
901 return CMD_WARNING;
902 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200903 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000904 trx_dump_vty(vty, trx);
905 return CMD_SUCCESS;
906 }
907 if (bts) {
908 /* print all TRX in this BTS */
909 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200910 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000911 trx_dump_vty(vty, trx);
912 }
913 return CMD_SUCCESS;
914 }
915
916 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200917 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000918 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200919 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000920 trx_dump_vty(vty, trx);
921 }
922 }
923
924 return CMD_SUCCESS;
925}
926
Harald Welte67ce0732009-08-06 19:06:46 +0200927
Harald Welte68628e82009-03-10 12:17:57 +0000928static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
929{
Harald Welte135a6482011-05-30 12:09:13 +0200930 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100931 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte1fe24122014-01-19 17:18:21 +0100932 gsm_pchan_name(ts->pchan), gsm_ts_tsc(ts));
Harald Weltecd103a92010-12-24 12:14:52 +0100933 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100934 vty_out(vty, " (%s mode)",
Neels Hofmeyr2ebacce2016-06-14 14:08:35 +0200935 ts->flags & TS_F_PDCH_ACTIVE ? "PDCH" : "TCH/F");
Harald Weltecd103a92010-12-24 12:14:52 +0100936 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000937 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200938 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530939 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000940 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
941 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
942 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000943}
944
945DEFUN(show_ts,
946 show_ts_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100947 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200948 SHOW_STR "Display information about a TS\n"
949 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000950{
Harald Weltedcccb182010-05-16 20:52:23 +0200951 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100952 struct gsm_bts *bts = NULL;
953 struct gsm_bts_trx *trx = NULL;
954 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000955 int bts_nr, trx_nr, ts_nr;
956
957 if (argc >= 1) {
958 /* use the BTS number that the user has specified */
959 bts_nr = atoi(argv[0]);
960 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000961 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000962 VTY_NEWLINE);
963 return CMD_WARNING;
964 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200965 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000966 }
967 if (argc >= 2) {
968 trx_nr = atoi(argv[1]);
969 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000970 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000971 VTY_NEWLINE);
972 return CMD_WARNING;
973 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200974 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000975 }
976 if (argc >= 3) {
977 ts_nr = atoi(argv[2]);
978 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000979 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000980 VTY_NEWLINE);
981 return CMD_WARNING;
982 }
Harald Welte274d0152010-12-24 12:05:03 +0100983 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000984 ts = &trx->ts[ts_nr];
985 ts_dump_vty(vty, ts);
986 return CMD_SUCCESS;
987 }
Harald Welte274d0152010-12-24 12:05:03 +0100988
989 if (bts && trx) {
990 /* Iterate over all TS in this TRX */
991 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
992 ts = &trx->ts[ts_nr];
993 ts_dump_vty(vty, ts);
994 }
995 } else if (bts) {
996 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000997 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200998 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000999 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1000 ts = &trx->ts[ts_nr];
1001 ts_dump_vty(vty, ts);
1002 }
1003 }
Harald Welte274d0152010-12-24 12:05:03 +01001004 } else {
1005 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
1006 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
1007 bts = gsm_bts_num(net, bts_nr);
1008 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1009 trx = gsm_bts_trx_num(bts, trx_nr);
1010 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1011 ts = &trx->ts[ts_nr];
1012 ts_dump_vty(vty, ts);
1013 }
1014 }
1015 }
Harald Welte68628e82009-03-10 12:17:57 +00001016 }
1017
1018 return CMD_SUCCESS;
1019}
1020
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +01001021static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +00001022{
Harald Weltefcd24452009-06-20 18:15:19 +02001023 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +00001024 subscr->authorized, VTY_NEWLINE);
Holger Hans Peter Freyther7f180e82013-12-12 15:45:41 +01001025 if (strlen(subscr->name))
Harald Welte1bc77352009-03-10 19:47:51 +00001026 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Holger Hans Peter Freytherbd30cd32014-04-04 11:53:18 +02001027 if (strlen(subscr->extension))
Harald Welte68628e82009-03-10 12:17:57 +00001028 vty_out(vty, " Extension: %s%s", subscr->extension,
1029 VTY_NEWLINE);
Holger Hans Peter Freyther5ccd0152013-07-14 08:38:24 +02001030 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001031 if (subscr->tmsi != GSM_RESERVED_TMSI)
1032 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +02001033 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +01001034
Harald Welte (local)15920de2009-08-14 20:27:16 +02001035 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +00001036}
1037
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001038static void bsc_subscr_dump_vty(struct vty *vty, struct bsc_subscr *bsub)
1039{
1040 if (strlen(bsub->imsi))
1041 vty_out(vty, " IMSI: %s%s", bsub->imsi, VTY_NEWLINE);
1042 if (bsub->tmsi != GSM_RESERVED_TMSI)
1043 vty_out(vty, " TMSI: 0x%08x%s", bsub->tmsi,
1044 VTY_NEWLINE);
1045 vty_out(vty, " Use count: %d%s", bsub->use_count, VTY_NEWLINE);
1046}
1047
Harald Welte8387a492009-12-22 21:43:14 +01001048static void meas_rep_dump_uni_vty(struct vty *vty,
1049 struct gsm_meas_rep_unidir *mru,
1050 const char *prefix,
1051 const char *dir)
1052{
1053 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
1054 prefix, dir, rxlev2dbm(mru->full.rx_lev),
1055 dir, rxlev2dbm(mru->sub.rx_lev));
1056 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
1057 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
1058 VTY_NEWLINE);
1059}
1060
1061static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
1062 const char *prefix)
1063{
1064 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
1065 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
1066 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
1067 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
1068 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
1069 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
1070 VTY_NEWLINE);
1071 if (mr->flags & MEAS_REP_F_MS_TO)
Max11e4e412017-04-20 13:07:58 +02001072 vty_out(vty, "%s MS Timing Offset: %d%s", prefix, mr->ms_timing_offset, VTY_NEWLINE);
Harald Welte8387a492009-12-22 21:43:14 +01001073 if (mr->flags & MEAS_REP_F_MS_L1)
1074 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
1075 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
1076 if (mr->flags & MEAS_REP_F_DL_VALID)
1077 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
1078 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
1079}
1080
Harald Welte0a8cf322015-12-05 17:22:49 +01001081/* FIXME: move this to libosmogsm */
1082static const struct value_string gsm48_cmode_names[] = {
1083 { GSM48_CMODE_SIGN, "signalling" },
1084 { GSM48_CMODE_SPEECH_V1, "FR or HR" },
1085 { GSM48_CMODE_SPEECH_EFR, "EFR" },
1086 { GSM48_CMODE_SPEECH_AMR, "AMR" },
1087 { GSM48_CMODE_DATA_14k5, "CSD(14k5)" },
1088 { GSM48_CMODE_DATA_12k0, "CSD(12k0)" },
1089 { GSM48_CMODE_DATA_6k0, "CSD(6k0)" },
1090 { GSM48_CMODE_DATA_3k6, "CSD(3k6)" },
1091 { 0, NULL }
1092};
1093
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001094/* call vty_out() to print a string like " as TCH/H" for dynamic timeslots.
1095 * Don't do anything if the ts is not dynamic. */
1096static void vty_out_dyn_ts_status(struct vty *vty, struct gsm_bts_trx_ts *ts)
1097{
1098 switch (ts->pchan) {
1099 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
1100 if (ts->dyn.pchan_is == ts->dyn.pchan_want)
1101 vty_out(vty, " as %s",
1102 gsm_pchan_name(ts->dyn.pchan_is));
1103 else
1104 vty_out(vty, " switching %s -> %s",
1105 gsm_pchan_name(ts->dyn.pchan_is),
1106 gsm_pchan_name(ts->dyn.pchan_want));
1107 break;
1108 case GSM_PCHAN_TCH_F_PDCH:
1109 if ((ts->flags & TS_F_PDCH_PENDING_MASK) == 0)
1110 vty_out(vty, " as %s",
1111 (ts->flags & TS_F_PDCH_ACTIVE)? "PDCH"
1112 : "TCH/F");
1113 else
1114 vty_out(vty, " switching %s -> %s",
1115 (ts->flags & TS_F_PDCH_ACTIVE)? "PDCH"
1116 : "TCH/F",
1117 (ts->flags & TS_F_PDCH_ACT_PENDING)? "PDCH"
1118 : "TCH/F");
1119 break;
1120 default:
1121 /* no dyn ts */
1122 break;
1123 }
1124}
1125
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001126static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +00001127{
Harald Welte8387a492009-12-22 21:43:14 +01001128 int idx;
1129
Harald Welte85bded82010-12-24 12:22:34 +01001130 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
1131 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1132 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001133 /* show dyn TS details, if applicable */
1134 switch (lchan->ts->pchan) {
1135 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
1136 vty_out(vty, " Osmocom Dyn TS:");
1137 vty_out_dyn_ts_status(vty, lchan->ts);
1138 vty_out(vty, VTY_NEWLINE);
1139 break;
1140 case GSM_PCHAN_TCH_F_PDCH:
1141 vty_out(vty, " IPACC Dyn PDCH TS:");
1142 vty_out_dyn_ts_status(vty, lchan->ts);
1143 vty_out(vty, VTY_NEWLINE);
1144 break;
1145 default:
1146 /* no dyn ts */
1147 break;
1148 }
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001149 vty_out(vty, " Connection: %u, State: %s%s%s%s",
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +08001150 lchan->conn ? 1: 0,
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001151 gsm_lchans_name(lchan->state),
1152 lchan->state == LCHAN_S_BROKEN ? " Error reason: " : "",
1153 lchan->state == LCHAN_S_BROKEN ? lchan->broken_reason : "",
1154 VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +01001155 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
1156 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
1157 - lchan->bs_power*2,
1158 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
1159 VTY_NEWLINE);
Harald Welte0a8cf322015-12-05 17:22:49 +01001160 vty_out(vty, " Channel Mode / Codec: %s%s",
1161 get_value_string(gsm48_cmode_names, lchan->tch_mode),
1162 VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +08001163 if (lchan->conn && lchan->conn->subscr) {
Harald Welte68628e82009-03-10 12:17:57 +00001164 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +08001165 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte68628e82009-03-10 12:17:57 +00001166 } else
1167 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +05301168 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
1169 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +02001170 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +05301171 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
1172 inet_ntoa(ia), lchan->abis_ip.bound_port,
1173 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
1174 VTY_NEWLINE);
1175 }
Harald Welte8387a492009-12-22 21:43:14 +01001176
1177 /* we want to report the last measurement report */
1178 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1179 lchan->meas_rep_idx, 1);
1180 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +00001181}
1182
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001183static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
1184{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001185 struct gsm_meas_rep *mr;
1186 int idx;
1187
1188 /* we want to report the last measurement report */
1189 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1190 lchan->meas_rep_idx, 1);
1191 mr = &lchan->meas_rep[idx];
1192
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001193 vty_out(vty, "BTS %u, TRX %u, Timeslot %u %s",
Harald Welte85bded82010-12-24 12:22:34 +01001194 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001195 gsm_pchan_name(lchan->ts->pchan));
1196 vty_out_dyn_ts_status(vty, lchan->ts);
1197 vty_out(vty, ", Lchan %u, Type %s, State %s - "
1198 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
Neels Hofmeyrefedf802016-06-14 01:31:38 +02001199 lchan->nr,
1200 gsm_lchant_name(lchan->type), gsm_lchans_name(lchan->state),
1201 mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001202 rxlev2dbm(mr->dl.full.rx_lev),
1203 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001204 VTY_NEWLINE);
1205}
1206
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001207
1208static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
1209 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1210{
1211 int lchan_nr;
1212 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
1213 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
1214 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
1215 continue;
1216 dump_cb(vty, lchan);
1217 }
1218
1219 return CMD_SUCCESS;
1220}
1221
1222static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1223 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1224{
1225 int ts_nr;
1226
1227 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1228 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1229 dump_lchan_trx_ts(ts, vty, dump_cb);
1230 }
1231
1232 return CMD_SUCCESS;
1233}
1234
1235static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1236 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1237{
1238 int trx_nr;
1239
1240 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1241 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1242 dump_lchan_trx(trx, vty, dump_cb);
1243 }
1244
1245 return CMD_SUCCESS;
1246}
1247
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001248static int lchan_summary(struct vty *vty, int argc, const char **argv,
1249 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +00001250{
Harald Weltedcccb182010-05-16 20:52:23 +02001251 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +00001252 struct gsm_bts *bts;
1253 struct gsm_bts_trx *trx;
1254 struct gsm_bts_trx_ts *ts;
1255 struct gsm_lchan *lchan;
1256 int bts_nr, trx_nr, ts_nr, lchan_nr;
1257
1258 if (argc >= 1) {
1259 /* use the BTS number that the user has specified */
1260 bts_nr = atoi(argv[0]);
1261 if (bts_nr >= net->num_bts) {
1262 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1263 VTY_NEWLINE);
1264 return CMD_WARNING;
1265 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001266 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001267
1268 if (argc == 1)
1269 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001270 }
1271 if (argc >= 2) {
1272 trx_nr = atoi(argv[1]);
1273 if (trx_nr >= bts->num_trx) {
1274 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1275 VTY_NEWLINE);
1276 return CMD_WARNING;
1277 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001278 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001279
1280 if (argc == 2)
1281 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001282 }
1283 if (argc >= 3) {
1284 ts_nr = atoi(argv[2]);
1285 if (ts_nr >= TRX_NR_TS) {
1286 vty_out(vty, "%% can't find TS %s%s", argv[2],
1287 VTY_NEWLINE);
1288 return CMD_WARNING;
1289 }
1290 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001291
1292 if (argc == 3)
1293 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001294 }
1295 if (argc >= 4) {
1296 lchan_nr = atoi(argv[3]);
1297 if (lchan_nr >= TS_MAX_LCHAN) {
1298 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1299 VTY_NEWLINE);
1300 return CMD_WARNING;
1301 }
1302 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001303 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001304 return CMD_SUCCESS;
1305 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001306
1307
Harald Welte68628e82009-03-10 12:17:57 +00001308 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001309 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001310 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001311 }
1312
1313 return CMD_SUCCESS;
1314}
1315
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001316
1317DEFUN(show_lchan,
1318 show_lchan_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001319 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001320 SHOW_STR "Display information about a logical channel\n"
1321 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001322 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001323
1324{
1325 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1326}
1327
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001328DEFUN(show_lchan_summary,
1329 show_lchan_summary_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001330 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001331 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001332 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001333 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001334 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001335{
1336 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1337}
1338
Harald Weltebe4b7302009-05-23 16:59:33 +00001339static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001340{
1341 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001342 bsc_subscr_dump_vty(vty, pag->bsub);
Harald Weltef5025b62009-03-28 16:55:11 +00001343}
1344
Harald Weltebe4b7302009-05-23 16:59:33 +00001345static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001346{
1347 struct gsm_paging_request *pag;
1348
Holger Hans Peter Freyther9b5192b2013-03-03 11:03:17 +01001349 if (!bts->paging.bts)
1350 return;
1351
Harald Weltef5025b62009-03-28 16:55:11 +00001352 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1353 paging_dump_vty(vty, pag);
1354}
1355
1356DEFUN(show_paging,
1357 show_paging_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001358 "show paging [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001359 SHOW_STR "Display information about paging reuqests of a BTS\n"
1360 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001361{
Harald Weltedcccb182010-05-16 20:52:23 +02001362 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001363 struct gsm_bts *bts;
1364 int bts_nr;
1365
1366 if (argc >= 1) {
1367 /* use the BTS number that the user has specified */
1368 bts_nr = atoi(argv[0]);
1369 if (bts_nr >= net->num_bts) {
1370 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1371 VTY_NEWLINE);
1372 return CMD_WARNING;
1373 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001374 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001375 bts_paging_dump_vty(vty, bts);
1376
1377 return CMD_SUCCESS;
1378 }
1379 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001380 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001381 bts_paging_dump_vty(vty, bts);
1382 }
1383
1384 return CMD_SUCCESS;
1385}
1386
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01001387DEFUN(show_paging_group,
1388 show_paging_group_cmd,
1389 "show paging-group <0-255> IMSI",
1390 SHOW_STR "Display the paging group\n"
1391 "BTS Number\n" "IMSI\n")
1392{
1393 struct gsm_network *net = gsmnet_from_vty(vty);
1394 struct gsm_bts *bts;
1395 unsigned int page_group;
1396 int bts_nr = atoi(argv[0]);
1397
1398 if (bts_nr >= net->num_bts) {
1399 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1400 return CMD_WARNING;
1401 }
1402
1403 bts = gsm_bts_num(net, bts_nr);
1404 if (!bts) {
1405 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1406 return CMD_WARNING;
1407 }
1408
1409 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1410 str_to_imsi(argv[1]));
1411 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1412 str_to_imsi(argv[1]), bts->nr,
1413 page_group, VTY_NEWLINE);
1414 return CMD_SUCCESS;
1415}
1416
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001417DEFUN(cfg_net_neci,
1418 cfg_net_neci_cmd,
1419 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001420 "New Establish Cause Indication\n"
1421 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001422{
Harald Weltedcccb182010-05-16 20:52:23 +02001423 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1424
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001425 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001426 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001427 return CMD_SUCCESS;
1428}
1429
Harald Welte8f0ed552010-05-11 21:53:49 +02001430#define HANDOVER_STR "Handover Options\n"
1431
Harald Weltebc814502009-12-19 21:41:52 +01001432DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1433 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001434 HANDOVER_STR
1435 "Don't perform in-call handover\n"
1436 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001437{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001438 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001439 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001440
1441 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001442 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1443 "is enabled by using the -P command line option%s",
1444 VTY_NEWLINE);
1445 return CMD_WARNING;
1446 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001447 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001448
1449 return CMD_SUCCESS;
1450}
1451
Harald Welte8f0ed552010-05-11 21:53:49 +02001452#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1453#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1454#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1455#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001456#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001457
Harald Welteb720bd32009-12-21 16:51:50 +01001458DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1459 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001460 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001461 "How many RxLev measurements are used for averaging\n"
1462 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001463{
Harald Weltedcccb182010-05-16 20:52:23 +02001464 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001465 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1466 return CMD_SUCCESS;
1467}
1468
1469DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1470 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001471 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001472 "How many RxQual measurements are used for averaging\n"
1473 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001474{
Harald Weltedcccb182010-05-16 20:52:23 +02001475 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001476 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1477 return CMD_SUCCESS;
1478}
1479
1480DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1481 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001482 HO_WIN_RXLEV_STR "Neighbor\n"
1483 "How many RxQual measurements are used for averaging\n"
1484 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001485{
Harald Weltedcccb182010-05-16 20:52:23 +02001486 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001487 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1488 return CMD_SUCCESS;
1489}
1490
1491DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1492 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001493 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001494 "How often to check if we have a better cell (SACCH frames)\n"
1495 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001496{
Harald Weltedcccb182010-05-16 20:52:23 +02001497 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001498 gsmnet->handover.pwr_interval = atoi(argv[0]);
1499 return CMD_SUCCESS;
1500}
1501
1502DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1503 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001504 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001505 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1506 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001507{
Harald Weltedcccb182010-05-16 20:52:23 +02001508 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001509 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1510 return CMD_SUCCESS;
1511}
1512
1513DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1514 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001515 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001516 "How big is the maximum timing advance before HO is forced\n"
1517 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001518{
Harald Weltedcccb182010-05-16 20:52:23 +02001519 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001520 gsmnet->handover.max_distance = atoi(argv[0]);
1521 return CMD_SUCCESS;
1522}
Harald Weltebc814502009-12-19 21:41:52 +01001523
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001524DEFUN(cfg_net_pag_any_tch,
1525 cfg_net_pag_any_tch_cmd,
1526 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001527 "Assign a TCH when receiving a Paging Any request\n"
1528 "Any Channel\n" "Use\n" "TCH\n"
1529 "Do not use TCH for Paging Request Any\n"
1530 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001531{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001532 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001533 gsmnet->pag_any_tch = atoi(argv[0]);
1534 gsm_net_update_ctype(gsmnet);
1535 return CMD_SUCCESS;
1536}
1537
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001538#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001539 DEFUN(cfg_net_T##number, \
1540 cfg_net_T##number##_cmd, \
1541 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001542 "Configure GSM Timers\n" \
Holger Hans Peter Freyther5dd295f2014-04-11 19:30:27 +02001543 doc "Timer Value in seconds\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001544{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001545 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001546 int value = atoi(argv[0]); \
1547 \
1548 if (value < 0 || value > 65535) { \
1549 vty_out(vty, "Timer value %s out of range.%s", \
1550 argv[0], VTY_NEWLINE); \
1551 return CMD_WARNING; \
1552 } \
1553 \
1554 gsmnet->T##number = value; \
1555 return CMD_SUCCESS; \
1556}
1557
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001558DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1559DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte67161f22012-06-03 13:01:47 +02001560DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001561DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +01001562DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001563DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1564DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1565DECLARE_TIMER(3115, "Currently not used.\n")
1566DECLARE_TIMER(3117, "Currently not used.\n")
1567DECLARE_TIMER(3119, "Currently not used.\n")
1568DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1569DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001570
Maxc08ee712016-05-11 12:45:13 +02001571DEFUN_DEPRECATED(cfg_net_dtx,
1572 cfg_net_dtx_cmd,
1573 "dtx-used (0|1)",
1574 ".HIDDEN\n""Obsolete\n""Obsolete\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001575{
Maxc08ee712016-05-11 12:45:13 +02001576 vty_out(vty, "%% 'dtx-used' is now deprecated: use dtx * "
1577 "configuration options of BTS instead%s", VTY_NEWLINE);
1578 return CMD_SUCCESS;
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001579}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001580
Harald Welte5258fc42009-03-28 19:07:53 +00001581/* per-BTS configuration */
1582DEFUN(cfg_bts,
1583 cfg_bts_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02001584 "bts <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001585 "Select a BTS to configure\n"
1586 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001587{
Harald Weltedcccb182010-05-16 20:52:23 +02001588 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001589 int bts_nr = atoi(argv[0]);
1590 struct gsm_bts *bts;
1591
Harald Weltee441d9c2009-06-21 16:17:15 +02001592 if (bts_nr > gsmnet->num_bts) {
1593 vty_out(vty, "%% The next unused BTS number is %u%s",
1594 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001595 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001596 } else if (bts_nr == gsmnet->num_bts) {
1597 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001598 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
Harald Weltea2bbc5e2015-11-20 10:43:31 +01001599 HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001600 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001601 bts = gsm_bts_num(gsmnet, bts_nr);
1602
Daniel Willmannf15c2762010-01-11 13:43:07 +01001603 if (!bts) {
1604 vty_out(vty, "%% Unable to allocate BTS %u%s",
1605 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001606 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001607 }
Harald Welte5258fc42009-03-28 19:07:53 +00001608
1609 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001610 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001611 vty->node = BTS_NODE;
1612
1613 return CMD_SUCCESS;
1614}
1615
1616DEFUN(cfg_bts_type,
1617 cfg_bts_type_cmd,
Harald Weltee555c2b2012-08-17 13:02:12 +02001618 "type TYPE", /* dynamically created */
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001619 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001620{
1621 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001622 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001623
Max7507aef2017-04-10 13:59:14 +02001624 rc = gsm_set_bts_type(bts, str2btstype(argv[0]));
Harald Welte39315c42010-01-10 18:01:52 +01001625 if (rc < 0)
1626 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001627
Harald Welte5258fc42009-03-28 19:07:53 +00001628 return CMD_SUCCESS;
1629}
1630
Harald Weltefcd24452009-06-20 18:15:19 +02001631DEFUN(cfg_bts_band,
1632 cfg_bts_band_cmd,
1633 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001634 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001635{
1636 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001637 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001638
1639 if (band < 0) {
1640 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1641 band, VTY_NEWLINE);
1642 return CMD_WARNING;
1643 }
1644
1645 bts->band = band;
1646
1647 return CMD_SUCCESS;
1648}
1649
Maxc08ee712016-05-11 12:45:13 +02001650DEFUN(cfg_bts_dtxu, cfg_bts_dtxu_cmd, "dtx uplink [force]",
1651 "Configure discontinuous transmission\n"
1652 "Enable Uplink DTX for this BTS\n"
1653 "MS 'shall' use DTXu instead of 'may' use (might not be supported by "
1654 "older phones).\n")
1655{
1656 struct gsm_bts *bts = vty->index;
1657
1658 bts->dtxu = (argc > 0) ? GSM48_DTX_SHALL_BE_USED : GSM48_DTX_MAY_BE_USED;
Max60795282016-06-06 11:30:57 +02001659 if (!is_ipaccess_bts(bts))
1660 vty_out(vty, "%% DTX enabled on non-IP BTS: this configuration "
1661 "neither supported nor tested!%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +02001662 return CMD_SUCCESS;
1663}
1664
1665DEFUN(cfg_bts_no_dtxu, cfg_bts_no_dtxu_cmd, "no dtx uplink",
1666 NO_STR
1667 "Configure discontinuous transmission\n"
1668 "Disable Uplink DTX for this BTS\n")
1669{
1670 struct gsm_bts *bts = vty->index;
1671
1672 bts->dtxu = GSM48_DTX_SHALL_NOT_BE_USED;
1673
1674 return CMD_SUCCESS;
1675}
1676
1677DEFUN(cfg_bts_dtxd, cfg_bts_dtxd_cmd, "dtx downlink",
1678 "Configure discontinuous transmission\n"
1679 "Enable Downlink DTX for this BTS\n")
1680{
1681 struct gsm_bts *bts = vty->index;
1682
1683 bts->dtxd = true;
Max60795282016-06-06 11:30:57 +02001684 if (!is_ipaccess_bts(bts))
1685 vty_out(vty, "%% DTX enabled on non-IP BTS: this configuration "
1686 "neither supported nor tested!%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +02001687 return CMD_SUCCESS;
1688}
1689
1690DEFUN(cfg_bts_no_dtxd, cfg_bts_no_dtxd_cmd, "no dtx downlink",
1691 NO_STR
1692 "Configure discontinuous transmission\n"
1693 "Disable Downlink DTX for this BTS\n")
1694{
1695 struct gsm_bts *bts = vty->index;
1696
1697 bts->dtxd = false;
1698
1699 return CMD_SUCCESS;
1700}
1701
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001702DEFUN(cfg_bts_ci,
1703 cfg_bts_ci_cmd,
1704 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001705 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001706{
1707 struct gsm_bts *bts = vty->index;
1708 int ci = atoi(argv[0]);
1709
1710 if (ci < 0 || ci > 0xffff) {
1711 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1712 ci, VTY_NEWLINE);
1713 return CMD_WARNING;
1714 }
1715 bts->cell_identity = ci;
1716
1717 return CMD_SUCCESS;
1718}
1719
Harald Welte5258fc42009-03-28 19:07:53 +00001720DEFUN(cfg_bts_lac,
1721 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001722 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001723 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001724{
1725 struct gsm_bts *bts = vty->index;
1726 int lac = atoi(argv[0]);
1727
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001728 if (lac < 0 || lac > 0xffff) {
1729 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001730 lac, VTY_NEWLINE);
1731 return CMD_WARNING;
1732 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001733
1734 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1735 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1736 lac, VTY_NEWLINE);
1737 return CMD_WARNING;
1738 }
1739
Harald Welte5258fc42009-03-28 19:07:53 +00001740 bts->location_area_code = lac;
1741
1742 return CMD_SUCCESS;
1743}
1744
Harald Weltea43f7892009-12-01 18:04:30 +05301745
Harald Weltea2bbc5e2015-11-20 10:43:31 +01001746/* compatibility wrapper for old config files */
1747DEFUN_HIDDEN(cfg_bts_tsc,
Harald Welte5258fc42009-03-28 19:07:53 +00001748 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001749 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001750 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001751{
Harald Welte5258fc42009-03-28 19:07:53 +00001752 return CMD_SUCCESS;
1753}
1754
Harald Welte78f2f502009-05-23 16:56:52 +00001755DEFUN(cfg_bts_bsic,
1756 cfg_bts_bsic_cmd,
1757 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001758 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1759 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001760{
1761 struct gsm_bts *bts = vty->index;
1762 int bsic = atoi(argv[0]);
1763
1764 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001765 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001766 bsic, VTY_NEWLINE);
1767 return CMD_WARNING;
1768 }
1769 bts->bsic = bsic;
1770
1771 return CMD_SUCCESS;
1772}
1773
Harald Welte4cc34222009-05-01 15:12:31 +00001774DEFUN(cfg_bts_unit_id,
1775 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001776 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001777 "Abis/IP specific options\n"
1778 "Set the IPA BTS Unit ID\n"
1779 "Unit ID (Site)\n"
1780 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001781{
1782 struct gsm_bts *bts = vty->index;
1783 int site_id = atoi(argv[0]);
1784 int bts_id = atoi(argv[1]);
1785
Harald Welte07dc73d2009-08-07 13:27:09 +02001786 if (!is_ipaccess_bts(bts)) {
1787 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1788 return CMD_WARNING;
1789 }
1790
Harald Welte4cc34222009-05-01 15:12:31 +00001791 bts->ip_access.site_id = site_id;
1792 bts->ip_access.bts_id = bts_id;
1793
1794 return CMD_SUCCESS;
1795}
1796
Harald Welte8b291802013-03-12 13:57:05 +01001797DEFUN(cfg_bts_rsl_ip,
1798 cfg_bts_rsl_ip_cmd,
1799 "ip.access rsl-ip A.B.C.D",
1800 "Abis/IP specific options\n"
1801 "Set the IPA RSL IP Address of the BSC\n"
1802 "Destination IP address for RSL connection\n")
1803{
1804 struct gsm_bts *bts = vty->index;
1805 struct in_addr ia;
1806
1807 if (!is_ipaccess_bts(bts)) {
1808 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1809 return CMD_WARNING;
1810 }
1811
1812 inet_aton(argv[0], &ia);
1813 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1814
1815 return CMD_SUCCESS;
1816}
1817
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001818#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b291802013-03-12 13:57:05 +01001819
Sylvain Munautc9519462011-10-17 14:04:55 +02001820DEFUN(cfg_bts_nokia_site_skip_reset,
1821 cfg_bts_nokia_site_skip_reset_cmd,
1822 "nokia_site skip-reset (0|1)",
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001823 NOKIA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001824 "Skip the reset step during bootstrap process of this BTS\n"
1825 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001826{
1827 struct gsm_bts *bts = vty->index;
1828
1829 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1830 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1831 return CMD_WARNING;
1832 }
1833
1834 bts->nokia.skip_reset = atoi(argv[0]);
1835
1836 return CMD_SUCCESS;
1837}
1838
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001839DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1840 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1841 "nokia_site no-local-rel-conf (0|1)",
1842 NOKIA_STR
1843 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1844 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1845{
1846 struct gsm_bts *bts = vty->index;
1847
1848 if (!is_nokia_bts(bts)) {
1849 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1850 VTY_NEWLINE);
1851 return CMD_WARNING;
1852 }
1853
1854 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1855
1856 return CMD_SUCCESS;
1857}
1858
Sipos Csaba56e17662015-02-07 13:27:36 +01001859DEFUN(cfg_bts_nokia_site_bts_reset_timer_cnf,
1860 cfg_bts_nokia_site_bts_reset_timer_cnf_cmd,
1861 "nokia_site bts-reset-timer <15-100>",
1862 NOKIA_STR
1863 "The amount of time (in sec.) between BTS_RESET is sent,\n"
1864 "and the BTS is being bootstrapped.\n")
1865{
1866 struct gsm_bts *bts = vty->index;
1867
1868 if (!is_nokia_bts(bts)) {
1869 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1870 VTY_NEWLINE);
1871 return CMD_WARNING;
1872 }
1873
1874 bts->nokia.bts_reset_timer_cnf = atoi(argv[0]);
1875
1876 return CMD_SUCCESS;
1877}
Harald Welte8f0ed552010-05-11 21:53:49 +02001878#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001879#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001880
Harald Welte8175e952009-10-20 00:22:00 +02001881DEFUN(cfg_bts_stream_id,
1882 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001883 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001884 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001885 "Set the ip.access Stream ID of the OML link of this BTS\n"
1886 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001887{
1888 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001889 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001890
1891 if (!is_ipaccess_bts(bts)) {
1892 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1893 return CMD_WARNING;
1894 }
1895
1896 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001897 /* This is used by e1inp_bind_ops callback for each BTS model. */
1898 bts->oml_e1_link.e1_nr = linenr;
1899
1900 return CMD_SUCCESS;
1901}
1902
Harald Welted13e0cd2012-08-17 09:52:03 +02001903#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001904
Harald Welte42581822009-08-08 16:12:58 +02001905DEFUN(cfg_bts_oml_e1,
1906 cfg_bts_oml_e1_cmd,
1907 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001908 OML_E1_STR
1909 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001910 "E1/T1 line number to be used for OML\n"
1911 "E1/T1 timeslot to be used for OML\n"
1912 "E1/T1 timeslot to be used for OML\n"
1913 "E1/T1 sub-slot to be used for OML\n"
1914 "Use E1/T1 sub-slot 0\n"
1915 "Use E1/T1 sub-slot 1\n"
1916 "Use E1/T1 sub-slot 2\n"
1917 "Use E1/T1 sub-slot 3\n"
1918 "Use full E1 slot 3\n"
1919 )
Harald Welte42581822009-08-08 16:12:58 +02001920{
1921 struct gsm_bts *bts = vty->index;
1922
1923 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1924
1925 return CMD_SUCCESS;
1926}
1927
1928
1929DEFUN(cfg_bts_oml_e1_tei,
1930 cfg_bts_oml_e1_tei_cmd,
1931 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001932 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001933 "Set the TEI to be used for OML\n"
1934 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001935{
1936 struct gsm_bts *bts = vty->index;
1937
1938 bts->oml_tei = atoi(argv[0]);
1939
1940 return CMD_SUCCESS;
1941}
1942
Harald Welte7a8fa412009-08-10 13:48:16 +02001943DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1944 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001945 "Channnel Allocator\n" "Channel Allocator\n"
1946 "Allocate Timeslots and Transceivers in ascending order\n"
1947 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001948{
1949 struct gsm_bts *bts = vty->index;
1950
1951 if (!strcmp(argv[0], "ascending"))
1952 bts->chan_alloc_reverse = 0;
1953 else
1954 bts->chan_alloc_reverse = 1;
1955
1956 return CMD_SUCCESS;
1957}
1958
Harald Welte8f0ed552010-05-11 21:53:49 +02001959#define RACH_STR "Random Access Control Channel\n"
1960
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001961DEFUN(cfg_bts_rach_tx_integer,
1962 cfg_bts_rach_tx_integer_cmd,
1963 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001964 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001965 "Set the raw tx integer value in RACH Control parameters IE\n"
1966 "Set the raw tx integer value in RACH Control parameters IE\n"
1967 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001968{
1969 struct gsm_bts *bts = vty->index;
1970 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1971 return CMD_SUCCESS;
1972}
1973
1974DEFUN(cfg_bts_rach_max_trans,
1975 cfg_bts_rach_max_trans_cmd,
1976 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001977 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001978 "Set the maximum number of RACH burst transmissions\n"
1979 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001980 "Maximum number of 1 RACH burst transmissions\n"
1981 "Maximum number of 2 RACH burst transmissions\n"
1982 "Maximum number of 4 RACH burst transmissions\n"
1983 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001984{
1985 struct gsm_bts *bts = vty->index;
1986 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1987 return CMD_SUCCESS;
1988}
1989
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02001990#define CD_STR "Channel Description\n"
1991
1992DEFUN(cfg_bts_chan_desc_att,
1993 cfg_bts_chan_desc_att_cmd,
1994 "channel-descrption attach (0|1)",
1995 CD_STR
1996 "Set if attachment is required\n"
1997 "Attachment is NOT required\n"
1998 "Attachment is required (standard)\n")
1999{
2000 struct gsm_bts *bts = vty->index;
2001 bts->si_common.chan_desc.att = atoi(argv[0]);
2002 return CMD_SUCCESS;
2003}
2004
2005DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
2006 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
2007 "channel-descrption bs-pa-mfrms <2-9>",
2008 CD_STR
2009 "Set number of multiframe periods for paging groups\n"
2010 "Number of multiframe periods for paging groups\n")
2011{
2012 struct gsm_bts *bts = vty->index;
2013 int bs_pa_mfrms = atoi(argv[0]);
2014
2015 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
2016 return CMD_SUCCESS;
2017}
2018
2019DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
2020 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
2021 "channel-descrption bs-ag-blks-res <0-7>",
2022 CD_STR
2023 "Set number of blocks reserved for access grant\n"
2024 "Number of blocks reserved for access grant\n")
2025{
2026 struct gsm_bts *bts = vty->index;
2027 int bs_ag_blks_res = atoi(argv[0]);
2028
2029 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
2030 return CMD_SUCCESS;
2031}
2032
Harald Welte8f0ed552010-05-11 21:53:49 +02002033#define NM_STR "Network Management\n"
2034
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002035DEFUN(cfg_bts_rach_nm_b_thresh,
2036 cfg_bts_rach_nm_b_thresh_cmd,
2037 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002038 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002039 "Set the NM Busy Threshold\n"
2040 "Set the NM Busy Threshold\n"
2041 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002042{
2043 struct gsm_bts *bts = vty->index;
2044 bts->rach_b_thresh = atoi(argv[0]);
2045 return CMD_SUCCESS;
2046}
2047
2048DEFUN(cfg_bts_rach_nm_ldavg,
2049 cfg_bts_rach_nm_ldavg_cmd,
2050 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002051 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002052 "Set the NM Loadaverage Slots value\n"
2053 "Set the NM Loadaverage Slots value\n"
2054 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002055{
2056 struct gsm_bts *bts = vty->index;
2057 bts->rach_ldavg_slots = atoi(argv[0]);
2058 return CMD_SUCCESS;
2059}
2060
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002061DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
2062 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002063 "Should this cell be barred from access?\n"
2064 "Should this cell be barred from access?\n"
2065 "Cell should NOT be barred\n"
2066 "Cell should be barred\n")
2067
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002068{
2069 struct gsm_bts *bts = vty->index;
2070
Harald Welte71355012009-12-21 23:08:18 +01002071 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002072
2073 return CMD_SUCCESS;
2074}
2075
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002076DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2077 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002078 RACH_STR
2079 "Should this cell allow emergency calls?\n"
2080 "Should this cell allow emergency calls?\n"
2081 "Should this cell allow emergency calls?\n"
2082 "Do NOT allow emergency calls\n"
2083 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002084{
2085 struct gsm_bts *bts = vty->index;
2086
2087 if (atoi(argv[0]) == 0)
2088 bts->si_common.rach_control.t2 |= 0x4;
2089 else
2090 bts->si_common.rach_control.t2 &= ~0x4;
2091
2092 return CMD_SUCCESS;
2093}
2094
Ivan Kluchnikov67920592013-09-16 13:13:04 +04002095DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2096 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2097 RACH_STR
2098 "Set access control class\n"
2099 "Access control class 0\n"
2100 "Access control class 1\n"
2101 "Access control class 2\n"
2102 "Access control class 3\n"
2103 "Access control class 4\n"
2104 "Access control class 5\n"
2105 "Access control class 6\n"
2106 "Access control class 7\n"
2107 "Access control class 8\n"
2108 "Access control class 9\n"
2109 "Access control class 11 for PLMN use\n"
2110 "Access control class 12 for security services\n"
2111 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2112 "Access control class 14 for emergency services\n"
2113 "Access control class 15 for PLMN staff\n"
2114 "barred to use access control class\n"
2115 "allowed to use access control class\n")
2116{
2117 struct gsm_bts *bts = vty->index;
2118
2119 uint8_t control_class;
2120 uint8_t allowed = 0;
2121
2122 if (strcmp(argv[1], "allowed") == 0)
2123 allowed = 1;
2124
2125 control_class = atoi(argv[0]);
2126 if (control_class < 8)
2127 if (allowed)
2128 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2129 else
2130 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2131 else
2132 if (allowed)
2133 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2134 else
2135 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2136
2137 return CMD_SUCCESS;
2138}
2139
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002140DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2141 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002142 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002143 "Maximum transmit power of the MS\n"
2144 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002145 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002146{
2147 struct gsm_bts *bts = vty->index;
2148
2149 bts->ms_max_power = atoi(argv[0]);
2150
2151 return CMD_SUCCESS;
2152}
2153
Harald Weltecfaabbb2012-08-16 23:23:50 +02002154#define CELL_STR "Cell Parameters\n"
2155
Harald Welte73225282009-12-12 18:17:25 +01002156DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2157 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002158 CELL_STR "Cell re-selection parameters\n"
2159 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01002160 "Cell Re-Selection Hysteresis in dB")
2161{
2162 struct gsm_bts *bts = vty->index;
2163
2164 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2165
2166 return CMD_SUCCESS;
2167}
2168
2169DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2170 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002171 "Minimum RxLev needed for cell access\n"
2172 "Minimum RxLev needed for cell access\n"
2173 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01002174 "Minimum RxLev needed for cell access (better than -110dBm)")
2175{
2176 struct gsm_bts *bts = vty->index;
2177
2178 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2179
2180 return CMD_SUCCESS;
2181}
2182
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002183DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2184 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002185 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2186 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002187{
2188 struct gsm_bts *bts = vty->index;
2189
2190 bts->si_common.cell_ro_sel_par.present = 1;
2191 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2192
2193 return CMD_SUCCESS;
2194}
2195
2196DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2197 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002198 CELL_STR "Cell Re-Selection Parameters\n"
2199 "Cell Re-Selection Offset (CRO) in dB\n"
2200 "Cell Re-Selection Offset (CRO) in dB\n"
2201 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002202{
2203 struct gsm_bts *bts = vty->index;
2204
2205 bts->si_common.cell_ro_sel_par.present = 1;
2206 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2207
2208 return CMD_SUCCESS;
2209}
2210
2211DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2212 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002213 "Cell selection temporary negative offset\n"
2214 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002215 "Cell selection temporary negative offset in dB")
2216{
2217 struct gsm_bts *bts = vty->index;
2218
2219 bts->si_common.cell_ro_sel_par.present = 1;
2220 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2221
2222 return CMD_SUCCESS;
2223}
2224
2225DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2226 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002227 "Cell selection temporary negative offset\n"
2228 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002229 "Sets cell selection temporary negative offset to infinity")
2230{
2231 struct gsm_bts *bts = vty->index;
2232
2233 bts->si_common.cell_ro_sel_par.present = 1;
2234 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2235
2236 return CMD_SUCCESS;
2237}
2238
2239DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2240 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002241 "Cell selection penalty time\n"
2242 "Cell selection penalty time\n"
2243 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002244{
2245 struct gsm_bts *bts = vty->index;
2246
2247 bts->si_common.cell_ro_sel_par.present = 1;
2248 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2249
2250 return CMD_SUCCESS;
2251}
2252
2253DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2254 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002255 "Cell selection penalty time\n"
2256 "Cell selection penalty time\n"
2257 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002258 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2259 "and TEMPORARY_OFFSET is ignored)")
2260{
2261 struct gsm_bts *bts = vty->index;
2262
2263 bts->si_common.cell_ro_sel_par.present = 1;
2264 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2265
2266 return CMD_SUCCESS;
2267}
2268
Harald Welte (local)efc92312009-08-14 23:09:25 +02002269DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann4d62d632012-12-27 00:02:01 +01002270 "periodic location update <6-1530>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002271 "Periodic Location Updating Interval\n"
2272 "Periodic Location Updating Interval\n"
2273 "Periodic Location Updating Interval\n"
2274 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)efc92312009-08-14 23:09:25 +02002275{
2276 struct gsm_bts *bts = vty->index;
2277
Dieter Spaard6613e02010-10-05 21:10:55 +02002278 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)efc92312009-08-14 23:09:25 +02002279
2280 return CMD_SUCCESS;
2281}
2282
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002283DEFUN(cfg_bts_no_per_loc_upd, cfg_bts_no_per_loc_upd_cmd,
2284 "no periodic location update",
2285 NO_STR
2286 "Periodic Location Updating Interval\n"
2287 "Periodic Location Updating Interval\n"
2288 "Periodic Location Updating Interval\n")
2289{
2290 struct gsm_bts *bts = vty->index;
2291
2292 bts->si_common.chan_desc.t3212 = 0;
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002293
2294 return CMD_SUCCESS;
2295}
2296
2297DEFUN(cfg_bts_radio_link_timeout, cfg_bts_radio_link_timeout_cmd,
2298 "radio-link-timeout <4-64>",
2299 "Radio link timeout criterion (BTS side)\n"
2300 "Radio link timeout value (lost SACCH block)\n")
2301{
2302 struct gsm_bts *bts = vty->index;
2303
Harald Welte2f8b9d22017-06-18 11:12:13 +03002304 gsm_bts_set_radio_link_timeout(bts, atoi(argv[0]));
2305
2306 return CMD_SUCCESS;
2307}
2308
2309DEFUN(cfg_bts_radio_link_timeout_inf, cfg_bts_radio_link_timeout_inf_cmd,
2310 "radio-link-timeout infinite",
2311 "Radio link timeout criterion (BTS side)\n"
2312 "Infinite Radio link timeout value (use only for BTS RF testing)\n")
2313{
2314 struct gsm_bts *bts = vty->index;
2315
2316 if (bts->type != GSM_BTS_TYPE_OSMOBTS) {
2317 vty_out(vty, "%% infinite radio link timeout not supported by this BTS%s", VTY_NEWLINE);
2318 return CMD_WARNING;
2319 }
2320
2321 vty_out(vty, "%% INFINITE RADIO LINK TIMEOUT, USE ONLY FOR BTS RF TESTING%s", VTY_NEWLINE);
2322 gsm_bts_set_radio_link_timeout(bts, -1);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002323
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002324 return CMD_SUCCESS;
2325}
2326
Harald Welte8f0ed552010-05-11 21:53:49 +02002327#define GPRS_TEXT "GPRS Packet Network\n"
2328
Harald Welteaf387632010-03-14 23:30:30 +08002329DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02002330 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002331 GPRS_TEXT
2332 "GPRS Cell Settings\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002333 "GPRS BSSGP VC Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002334 "GPRS BSSGP VC Identifier")
2335{
2336 struct gsm_bts *bts = vty->index;
2337
Harald Welte4511d892010-04-18 15:51:20 +02002338 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002339 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2340 return CMD_WARNING;
2341 }
2342
Harald Welte97a282b2010-03-14 15:37:43 +08002343 bts->gprs.cell.bvci = atoi(argv[0]);
2344
2345 return CMD_SUCCESS;
2346}
2347
Harald Weltea5731cf2010-03-22 11:48:36 +08002348DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2349 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002350 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002351 "GPRS NS Entity Identifier\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002352 "GPRS NS Entity Identifier")
2353{
2354 struct gsm_bts *bts = vty->index;
2355
Harald Welte4511d892010-04-18 15:51:20 +02002356 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08002357 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2358 return CMD_WARNING;
2359 }
2360
2361 bts->gprs.nse.nsei = atoi(argv[0]);
2362
2363 return CMD_SUCCESS;
2364}
2365
Harald Welte8f0ed552010-05-11 21:53:49 +02002366#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2367 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002368
Harald Welte97a282b2010-03-14 15:37:43 +08002369DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2370 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002371 GPRS_TEXT NSVC_TEXT
2372 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002373 "GPRS NS VC Identifier")
2374{
2375 struct gsm_bts *bts = vty->index;
2376 int idx = atoi(argv[0]);
2377
Harald Welte4511d892010-04-18 15:51:20 +02002378 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002379 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2380 return CMD_WARNING;
2381 }
2382
Harald Welte97a282b2010-03-14 15:37:43 +08002383 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2384
2385 return CMD_SUCCESS;
2386}
2387
Harald Welteaf387632010-03-14 23:30:30 +08002388DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2389 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002390 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002391 "GPRS NS Local UDP Port\n"
2392 "GPRS NS Local UDP Port\n"
2393 "GPRS NS Local UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002394 "GPRS NS Local UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002395{
2396 struct gsm_bts *bts = vty->index;
2397 int idx = atoi(argv[0]);
2398
Harald Welte4511d892010-04-18 15:51:20 +02002399 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002400 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2401 return CMD_WARNING;
2402 }
2403
Harald Welteaf387632010-03-14 23:30:30 +08002404 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2405
2406 return CMD_SUCCESS;
2407}
2408
2409DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2410 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002411 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002412 "GPRS NS Remote UDP Port\n"
2413 "GPRS NS Remote UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002414 "GPRS NS Remote UDP Port\n"
2415 "GPRS NS Remote UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002416{
2417 struct gsm_bts *bts = vty->index;
2418 int idx = atoi(argv[0]);
2419
Harald Welte4511d892010-04-18 15:51:20 +02002420 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002421 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2422 return CMD_WARNING;
2423 }
2424
Harald Welteaf387632010-03-14 23:30:30 +08002425 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2426
2427 return CMD_SUCCESS;
2428}
2429
2430DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2431 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02002432 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002433 "GPRS NS Remote IP Address\n"
2434 "GPRS NS Remote IP Address\n"
2435 "GPRS NS Remote IP Address\n")
Harald Welteaf387632010-03-14 23:30:30 +08002436{
2437 struct gsm_bts *bts = vty->index;
2438 int idx = atoi(argv[0]);
2439 struct in_addr ia;
2440
Harald Welte4511d892010-04-18 15:51:20 +02002441 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002442 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2443 return CMD_WARNING;
2444 }
2445
Harald Welteaf387632010-03-14 23:30:30 +08002446 inet_aton(argv[1], &ia);
2447 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2448
2449 return CMD_SUCCESS;
2450}
2451
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002452DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Weltecfaabbb2012-08-16 23:23:50 +02002453 "paging free <-1-1024>",
2454 "Paging options\n"
2455 "Only page when having a certain amount of free slots\n"
2456 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002457{
2458 struct gsm_bts *bts = vty->index;
2459
2460 bts->paging.free_chans_need = atoi(argv[0]);
2461 return CMD_SUCCESS;
2462}
2463
Harald Welte615e9562010-05-11 23:50:21 +02002464DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2465 "gprs ns timer " NS_TIMERS " <0-255>",
2466 GPRS_TEXT "Network Service\n"
2467 "Network Service Timer\n"
2468 NS_TIMERS_HELP "Timer Value\n")
2469{
2470 struct gsm_bts *bts = vty->index;
2471 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2472 int val = atoi(argv[1]);
2473
2474 if (bts->gprs.mode == BTS_GPRS_NONE) {
2475 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2476 return CMD_WARNING;
2477 }
2478
2479 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2480 return CMD_WARNING;
2481
2482 bts->gprs.nse.timer[idx] = val;
2483
2484 return CMD_SUCCESS;
2485}
2486
2487#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte28326062010-05-14 20:05:17 +02002488#define BSSGP_TIMERS_HELP \
2489 "Tbvc-block timeout\n" \
2490 "Tbvc-block retries\n" \
2491 "Tbvc-unblock retries\n" \
2492 "Tbvcc-reset timeout\n" \
2493 "Tbvc-reset retries\n" \
2494 "Tbvc-suspend timeout\n" \
2495 "Tbvc-suspend retries\n" \
2496 "Tbvc-resume timeout\n" \
2497 "Tbvc-resume retries\n" \
2498 "Tbvc-capa-update timeout\n" \
2499 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002500
2501DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2502 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2503 GPRS_TEXT "Cell / BSSGP\n"
2504 "Cell/BSSGP Timer\n"
2505 BSSGP_TIMERS_HELP "Timer Value\n")
2506{
2507 struct gsm_bts *bts = vty->index;
2508 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2509 int val = atoi(argv[1]);
2510
2511 if (bts->gprs.mode == BTS_GPRS_NONE) {
2512 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2513 return CMD_WARNING;
2514 }
2515
2516 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2517 return CMD_WARNING;
2518
2519 bts->gprs.cell.timer[idx] = val;
2520
2521 return CMD_SUCCESS;
2522}
2523
Harald Welte97a282b2010-03-14 15:37:43 +08002524DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2525 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002526 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002527 "GPRS Routing Area Code\n"
2528 "GPRS Routing Area Code\n"
2529 "GPRS Routing Area Code\n")
Harald Welte97a282b2010-03-14 15:37:43 +08002530{
2531 struct gsm_bts *bts = vty->index;
2532
Harald Welte4511d892010-04-18 15:51:20 +02002533 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002534 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2535 return CMD_WARNING;
2536 }
2537
Harald Welte97a282b2010-03-14 15:37:43 +08002538 bts->gprs.rac = atoi(argv[0]);
2539
2540 return CMD_SUCCESS;
2541}
2542
Max292ec582016-07-28 11:55:37 +02002543DEFUN(cfg_bts_gprs_ctrl_ack, cfg_bts_gprs_ctrl_ack_cmd,
2544 "gprs control-ack-type-rach", GPRS_TEXT
2545 "Set GPRS Control Ack Type for PACKET CONTROL ACKNOWLEDGMENT message to "
2546 "four access bursts format instead of default RLC/MAC control block\n")
2547{
2548 struct gsm_bts *bts = vty->index;
2549
2550 if (bts->gprs.mode == BTS_GPRS_NONE) {
2551 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2552 return CMD_WARNING;
2553 }
2554
2555 bts->gprs.ctrl_ack_type_use_block = false;
2556
2557 return CMD_SUCCESS;
2558}
2559
2560DEFUN(cfg_no_bts_gprs_ctrl_ack, cfg_no_bts_gprs_ctrl_ack_cmd,
2561 "no gprs control-ack-type-rach", NO_STR GPRS_TEXT
2562 "Set GPRS Control Ack Type for PACKET CONTROL ACKNOWLEDGMENT message to "
2563 "four access bursts format instead of default RLC/MAC control block\n")
2564{
2565 struct gsm_bts *bts = vty->index;
2566
2567 if (bts->gprs.mode == BTS_GPRS_NONE) {
2568 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2569 return CMD_WARNING;
2570 }
2571
2572 bts->gprs.ctrl_ack_type_use_block = true;
2573
2574 return CMD_SUCCESS;
2575}
2576
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01002577DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2578 "gprs network-control-order (nc0|nc1|nc2)",
2579 GPRS_TEXT
2580 "GPRS Network Control Order\n"
2581 "MS controlled cell re-selection, no measurement reporting\n"
2582 "MS controlled cell re-selection, MS sends measurement reports\n"
2583 "Network controlled cell re-selection, MS sends measurement reports\n")
2584{
2585 struct gsm_bts *bts = vty->index;
2586
2587 if (bts->gprs.mode == BTS_GPRS_NONE) {
2588 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2589 return CMD_WARNING;
2590 }
2591
2592 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2593
2594 return CMD_SUCCESS;
2595}
2596
Harald Welte4511d892010-04-18 15:51:20 +02002597DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2598 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002599 GPRS_TEXT
2600 "GPRS Mode for this BTS\n"
2601 "GPRS Disabled on this BTS\n"
2602 "GPRS Enabled on this BTS\n"
2603 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002604{
2605 struct gsm_bts *bts = vty->index;
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002606 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0], NULL);
Harald Welteaf387632010-03-14 23:30:30 +08002607
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002608 if (!bts_gprs_mode_is_compat(bts, mode)) {
Harald Weltef3d8e922010-06-14 22:44:42 +02002609 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2610 VTY_NEWLINE);
2611 return CMD_WARNING;
2612 }
2613
2614 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002615
2616 return CMD_SUCCESS;
2617}
2618
bhargava350533c2016-07-21 11:14:34 +05302619DEFUN(cfg_bts_gprs_11bit_rach_support_for_egprs,
2620 cfg_bts_gprs_11bit_rach_support_for_egprs_cmd,
2621 "gprs 11bit_rach_support_for_egprs (0|1)",
2622 GPRS_TEXT "11 bit RACH options\n"
2623 "Disable 11 bit RACH for EGPRS\n"
2624 "Enable 11 bit RACH for EGPRS")
2625{
2626 struct gsm_bts *bts = vty->index;
2627
2628 bts->gprs.supports_egprs_11bit_rach = atoi(argv[0]);
2629
2630 if (bts->gprs.supports_egprs_11bit_rach > 1) {
2631 vty_out(vty, "Error in RACH type%s", VTY_NEWLINE);
2632 return CMD_WARNING;
2633 }
2634
2635 if ((bts->gprs.mode == BTS_GPRS_NONE) &&
2636 (bts->gprs.supports_egprs_11bit_rach == 1)) {
2637 vty_out(vty, "Error:gprs mode is none and 11bit rach is"
2638 " enabled%s", VTY_NEWLINE);
2639 return CMD_WARNING;
2640 }
2641
2642 return CMD_SUCCESS;
2643}
2644
Harald Welte9fbff4a2010-07-30 11:50:09 +02002645#define SI_TEXT "System Information Messages\n"
2646#define SI_TYPE_TEXT "(1|2|3|4|5|6|7|8|9|10|13|16|17|18|19|20|2bis|2ter|2quater|5bis|5ter)"
2647#define SI_TYPE_HELP "System Information Type 1\n" \
2648 "System Information Type 2\n" \
2649 "System Information Type 3\n" \
2650 "System Information Type 4\n" \
2651 "System Information Type 5\n" \
2652 "System Information Type 6\n" \
2653 "System Information Type 7\n" \
2654 "System Information Type 8\n" \
2655 "System Information Type 9\n" \
2656 "System Information Type 10\n" \
2657 "System Information Type 13\n" \
2658 "System Information Type 16\n" \
2659 "System Information Type 17\n" \
2660 "System Information Type 18\n" \
2661 "System Information Type 19\n" \
2662 "System Information Type 20\n" \
2663 "System Information Type 2bis\n" \
2664 "System Information Type 2ter\n" \
2665 "System Information Type 2quater\n" \
2666 "System Information Type 5bis\n" \
2667 "System Information Type 5ter\n"
2668
2669DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2670 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2671 SI_TEXT SI_TYPE_HELP
2672 "System Information Mode\n"
2673 "Static user-specified\n"
2674 "Dynamic, BSC-computed\n")
2675{
2676 struct gsm_bts *bts = vty->index;
2677 int type;
2678
2679 type = get_string_value(osmo_sitype_strs, argv[0]);
2680 if (type < 0) {
2681 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2682 return CMD_WARNING;
2683 }
2684
2685 if (!strcmp(argv[1], "static"))
2686 bts->si_mode_static |= (1 << type);
2687 else
2688 bts->si_mode_static &= ~(1 << type);
2689
2690 return CMD_SUCCESS;
2691}
2692
2693DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2694 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2695 SI_TEXT SI_TYPE_HELP
2696 "Static System Information filling\n"
2697 "Static user-specified SI content in HEX notation\n")
2698{
2699 struct gsm_bts *bts = vty->index;
2700 int rc, type;
2701
2702 type = get_string_value(osmo_sitype_strs, argv[0]);
2703 if (type < 0) {
2704 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2705 return CMD_WARNING;
2706 }
2707
2708 if (!(bts->si_mode_static & (1 << type))) {
2709 vty_out(vty, "SI Type %s is not configured in static mode%s",
2710 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2711 return CMD_WARNING;
2712 }
2713
Harald Welte290aaed2010-07-30 11:53:18 +02002714 /* Fill buffer with padding pattern */
Max6f0e50c2017-04-12 15:30:54 +02002715 memset(GSM_BTS_SI(bts, type), 0x2b, GSM_MACBLOCK_LEN);
Harald Welte290aaed2010-07-30 11:53:18 +02002716
2717 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Max6f0e50c2017-04-12 15:30:54 +02002718 rc = osmo_hexparse(argv[1], GSM_BTS_SI(bts, type), GSM_MACBLOCK_LEN);
2719 if (rc < 0 || rc > GSM_MACBLOCK_LEN) {
Harald Welte9fbff4a2010-07-30 11:50:09 +02002720 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2721 return CMD_WARNING;
2722 }
2723
2724 /* Mark this SI as present */
2725 bts->si_valid |= (1 << type);
2726
2727 return CMD_SUCCESS;
2728}
2729
Harald Welte42def722017-01-13 00:10:32 +01002730DEFUN(cfg_bts_early_cm, cfg_bts_early_cm_cmd,
2731 "early-classmark-sending (allowed|forbidden)",
2732 "Early Classmark Sending\n"
2733 "Early Classmark Sending is allowed\n"
2734 "Early Classmark Sending is forbidden\n")
2735{
2736 struct gsm_bts *bts = vty->index;
Harald Welte42def722017-01-13 00:10:32 +01002737
2738 if (!strcmp(argv[0], "allowed"))
2739 bts->early_classmark_allowed = true;
2740 else
2741 bts->early_classmark_allowed = false;
2742
2743 return CMD_SUCCESS;
2744}
2745
Harald Welte32c09622011-01-11 23:44:56 +01002746DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002747 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002748 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002749 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2750 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002751{
2752 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002753 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002754
Harald Welte64c07d22011-02-15 11:43:27 +01002755 switch (mode) {
2756 case NL_MODE_MANUAL_SI5SEP:
2757 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002758 /* make sure we clear the current list when switching to
2759 * manual mode */
2760 if (bts->neigh_list_manual_mode == 0)
2761 memset(&bts->si_common.data.neigh_list, 0,
2762 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002763 break;
2764 default:
2765 break;
2766 }
2767
2768 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002769
2770 return CMD_SUCCESS;
2771}
2772
2773DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002774 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welte32c09622011-01-11 23:44:56 +01002775 "Neighbor List\n" "Add to manual neighbor list\n"
2776 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2777 "ARFCN of neighbor\n")
2778{
2779 struct gsm_bts *bts = vty->index;
2780 struct bitvec *bv = &bts->si_common.neigh_list;
2781 uint16_t arfcn = atoi(argv[1]);
2782
2783 if (!bts->neigh_list_manual_mode) {
2784 vty_out(vty, "%% Cannot configure neighbor list in "
2785 "automatic mode%s", VTY_NEWLINE);
2786 return CMD_WARNING;
2787 }
2788
2789 if (!strcmp(argv[0], "add"))
2790 bitvec_set_bit_pos(bv, arfcn, 1);
2791 else
2792 bitvec_set_bit_pos(bv, arfcn, 0);
2793
2794 return CMD_SUCCESS;
2795}
2796
Max70fdd242017-06-15 15:10:53 +02002797/* help text should be kept in sync with EARFCN_*_INVALID defines */
Max59a1bf32016-04-15 16:04:46 +02002798DEFUN(cfg_bts_si2quater_neigh_add, cfg_bts_si2quater_neigh_add_cmd,
Max2c16bee2017-02-15 13:51:37 +01002799 "si2quater neighbor-list add earfcn <0-65535> thresh-hi <0-31> "
2800 "thresh-lo <0-32> prio <0-8> qrxlv <0-32> meas <0-8>",
2801 "SI2quater Neighbor List\n" "SI2quater Neighbor List\n"
2802 "Add to manual SI2quater neighbor list\n"
2803 "EARFCN of neighbor\n" "EARFCN of neighbor\n"
2804 "threshold high bits\n" "threshold high bits\n"
2805 "threshold low bits\n" "threshold low bits (32 means NA)\n"
2806 "priority\n" "priority (8 means NA)\n"
2807 "QRXLEVMIN\n" "QRXLEVMIN (32 means NA)\n"
2808 "measurement bandwidth\n" "measurement bandwidth (8 means NA)\n")
Max59a1bf32016-04-15 16:04:46 +02002809{
2810 struct gsm_bts *bts = vty->index;
2811 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
2812 uint16_t arfcn = atoi(argv[0]);
Max2c16bee2017-02-15 13:51:37 +01002813 uint8_t thresh_hi = atoi(argv[1]), thresh_lo = atoi(argv[2]),
2814 prio = atoi(argv[3]), qrx = atoi(argv[4]), meas = atoi(argv[5]);
Max70fdd242017-06-15 15:10:53 +02002815 int r = bts_earfcn_add(bts, arfcn, thresh_hi, thresh_lo, prio, qrx, meas);
Max59a1bf32016-04-15 16:04:46 +02002816
Max70fdd242017-06-15 15:10:53 +02002817 switch (r) {
2818 case 1:
2819 vty_out(vty, "Warning: multiple threshold-high are not supported, overriding with %u%s",
2820 thresh_hi, VTY_NEWLINE);
2821 break;
2822 case EARFCN_THRESH_LOW_INVALID:
2823 vty_out(vty, "Warning: multiple threshold-low are not supported, overriding with %u%s",
2824 thresh_lo, VTY_NEWLINE);
2825 break;
2826 case EARFCN_QRXLV_INVALID + 1:
2827 vty_out(vty, "Warning: multiple QRXLEVMIN are not supported, overriding with %u%s",
2828 qrx, VTY_NEWLINE);
2829 break;
2830 case EARFCN_PRIO_INVALID:
2831 vty_out(vty, "Warning: multiple priorities are not supported, overriding with %u%s",
2832 prio, VTY_NEWLINE);
2833 break;
2834 default:
2835 if (r < 0) {
2836 vty_out(vty, "Unable to add ARFCN %u: %s%s", arfcn, strerror(-r), VTY_NEWLINE);
2837 return CMD_WARNING;
2838 }
Max59a1bf32016-04-15 16:04:46 +02002839 }
2840
Max70fdd242017-06-15 15:10:53 +02002841 if (si2q_num(bts) <= SI2Q_MAX_NUM)
Max2c16bee2017-02-15 13:51:37 +01002842 return CMD_SUCCESS;
2843
Maxf39d03a2017-05-12 17:00:30 +02002844 vty_out(vty, "Warning: not enough space in SI2quater (%u/%u used) for a given EARFCN %u%s",
Max70fdd242017-06-15 15:10:53 +02002845 bts->si2q_count, SI2Q_MAX_NUM, arfcn, VTY_NEWLINE);
Maxaafff962016-04-20 15:57:14 +02002846 osmo_earfcn_del(e, arfcn);
Max2c16bee2017-02-15 13:51:37 +01002847
Maxaafff962016-04-20 15:57:14 +02002848 return CMD_WARNING;
Max59a1bf32016-04-15 16:04:46 +02002849}
2850
2851DEFUN(cfg_bts_si2quater_neigh_del, cfg_bts_si2quater_neigh_del_cmd,
Max35697b92016-04-29 12:51:31 +02002852 "si2quater neighbor-list del earfcn <0-65535>",
Max59a1bf32016-04-15 16:04:46 +02002853 "SI2quater Neighbor List\n"
2854 "SI2quater Neighbor List\n"
2855 "Delete from SI2quater manual neighbor list\n"
Max36212f22016-04-20 12:06:05 +02002856 "EARFCN of neighbor\n"
2857 "EARFCN\n")
Max59a1bf32016-04-15 16:04:46 +02002858{
2859 struct gsm_bts *bts = vty->index;
2860 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
Max0c1bc262016-04-20 12:06:06 +02002861 uint16_t arfcn = atoi(argv[0]);
Max59a1bf32016-04-15 16:04:46 +02002862 int r = osmo_earfcn_del(e, arfcn);
2863 if (r < 0) {
2864 vty_out(vty, "Unable to delete arfcn %u: %s%s", arfcn,
Max0c1bc262016-04-20 12:06:06 +02002865 strerror(-r), VTY_NEWLINE);
Max59a1bf32016-04-15 16:04:46 +02002866 return CMD_WARNING;
2867 }
2868
2869 return CMD_SUCCESS;
2870}
2871
Max26679e02016-04-20 15:57:13 +02002872DEFUN(cfg_bts_si2quater_uarfcn_add, cfg_bts_si2quater_uarfcn_add_cmd,
Max35697b92016-04-29 12:51:31 +02002873 "si2quater neighbor-list add uarfcn <0-16383> <0-511> <0-1>",
Max26679e02016-04-20 15:57:13 +02002874 "SI2quater Neighbor List\n"
2875 "SI2quater Neighbor List\n" "Add to manual SI2quater neighbor list\n"
2876 "UARFCN of neighbor\n" "UARFCN of neighbor\n" "scrambling code\n"
2877 "diversity bit\n")
2878{
2879 struct gsm_bts *bts = vty->index;
2880 uint16_t arfcn = atoi(argv[0]), scramble = atoi(argv[1]);
2881
2882 switch(bts_uarfcn_add(bts, arfcn, scramble, atoi(argv[2]))) {
2883 case -ENOMEM:
Max70fdd242017-06-15 15:10:53 +02002884 vty_out(vty, "Unable to add UARFCN: max number of UARFCNs (%u) reached%s", MAX_EARFCN_LIST, VTY_NEWLINE);
Harald Weltea191dcd2016-11-26 15:06:37 +01002885 return CMD_WARNING;
Maxaafff962016-04-20 15:57:14 +02002886 case -ENOSPC:
Max70fdd242017-06-15 15:10:53 +02002887 vty_out(vty, "Warning: not enough space in SI2quater for a given UARFCN (%u, %u)%s",
2888 arfcn, scramble, VTY_NEWLINE);
Harald Weltea191dcd2016-11-26 15:06:37 +01002889 return CMD_WARNING;
Max26679e02016-04-20 15:57:13 +02002890 case -EADDRINUSE:
Max70fdd242017-06-15 15:10:53 +02002891 vty_out(vty, "Unable to add UARFCN: (%u, %u) is already added%s", arfcn, scramble, VTY_NEWLINE);
Max26679e02016-04-20 15:57:13 +02002892 return CMD_WARNING;
2893 }
2894
2895 return CMD_SUCCESS;
2896}
2897
2898DEFUN(cfg_bts_si2quater_uarfcn_del, cfg_bts_si2quater_uarfcn_del_cmd,
Max35697b92016-04-29 12:51:31 +02002899 "si2quater neighbor-list del uarfcn <0-16383> <0-511>",
Max26679e02016-04-20 15:57:13 +02002900 "SI2quater Neighbor List\n"
2901 "SI2quater Neighbor List\n"
2902 "Delete from SI2quater manual neighbor list\n"
2903 "UARFCN of neighbor\n"
2904 "UARFCN\n"
2905 "scrambling code\n")
2906{
2907 struct gsm_bts *bts = vty->index;
2908
2909 if (bts_uarfcn_del(bts, atoi(argv[0]), atoi(argv[1])) < 0) {
2910 vty_out(vty, "Unable to delete uarfcn: pair not found%s",
2911 VTY_NEWLINE);
2912 return CMD_WARNING;
2913 }
2914
2915 return CMD_SUCCESS;
2916}
2917
Harald Welte64c07d22011-02-15 11:43:27 +01002918DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002919 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002920 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002921 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2922 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2923 "ARFCN of neighbor\n")
2924{
2925 struct gsm_bts *bts = vty->index;
2926 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2927 uint16_t arfcn = atoi(argv[1]);
2928
2929 if (!bts->neigh_list_manual_mode) {
2930 vty_out(vty, "%% Cannot configure neighbor list in "
2931 "automatic mode%s", VTY_NEWLINE);
2932 return CMD_WARNING;
2933 }
2934
2935 if (!strcmp(argv[0], "add"))
2936 bitvec_set_bit_pos(bv, arfcn, 1);
2937 else
2938 bitvec_set_bit_pos(bv, arfcn, 0);
2939
2940 return CMD_SUCCESS;
2941}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002942
Harald Welte8254cf72017-05-29 13:42:19 +02002943DEFUN(cfg_bts_pcu_sock, cfg_bts_pcu_sock_cmd,
2944 "pcu-socket PATH",
2945 "PCU Socket Path for using OsmoPCU co-located with BSC (legacy BTS)\n"
2946 "Path in the file system for the unix-domain PCU socket\n")
2947{
2948 struct gsm_bts *bts = vty->index;
2949 int rc;
2950
Harald Welte4a824ca2017-05-29 13:54:27 +02002951 osmo_talloc_replace_string(bts, &bts->pcu_sock_path, argv[0]);
Harald Welte8254cf72017-05-29 13:42:19 +02002952 pcu_sock_exit(bts);
2953 rc = pcu_sock_init(bts->pcu_sock_path, bts);
2954 if (rc < 0) {
2955 vty_out(vty, "%% Error creating PCU socket `%s' for BTS %u%s",
2956 bts->pcu_sock_path, bts->nr, VTY_NEWLINE);
2957 return CMD_WARNING;
2958 }
2959
2960 return CMD_SUCCESS;
2961}
2962
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02002963#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2964
2965DEFUN(cfg_bts_excl_rf_lock,
2966 cfg_bts_excl_rf_lock_cmd,
2967 "rf-lock-exclude",
2968 EXCL_RFLOCK_STR)
2969{
2970 struct gsm_bts *bts = vty->index;
2971 bts->excl_from_rf_lock = 1;
2972 return CMD_SUCCESS;
2973}
2974
2975DEFUN(cfg_bts_no_excl_rf_lock,
2976 cfg_bts_no_excl_rf_lock_cmd,
2977 "no rf-lock-exclude",
2978 NO_STR EXCL_RFLOCK_STR)
2979{
2980 struct gsm_bts *bts = vty->index;
2981 bts->excl_from_rf_lock = 0;
2982 return CMD_SUCCESS;
2983}
2984
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01002985#define FORCE_COMB_SI_STR "Force the generation of a single SI (no ter/bis)\n"
2986
2987DEFUN(cfg_bts_force_comb_si,
2988 cfg_bts_force_comb_si_cmd,
2989 "force-combined-si",
2990 FORCE_COMB_SI_STR)
2991{
2992 struct gsm_bts *bts = vty->index;
2993 bts->force_combined_si = 1;
2994 return CMD_SUCCESS;
2995}
2996
2997DEFUN(cfg_bts_no_force_comb_si,
2998 cfg_bts_no_force_comb_si_cmd,
2999 "no force-combined-si",
3000 NO_STR FORCE_COMB_SI_STR)
3001{
3002 struct gsm_bts *bts = vty->index;
3003 bts->force_combined_si = 0;
3004 return CMD_SUCCESS;
3005}
3006
Andreas Eversberga83d5112013-12-07 18:32:28 +01003007static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
3008{
3009 struct gsm_bts *bts = vty->index;
3010 struct bts_codec_conf *codec = &bts->codec;
3011 int i;
3012
3013 codec->hr = 0;
3014 codec->efr = 0;
3015 codec->amr = 0;
3016 for (i = 0; i < argc; i++) {
3017 if (!strcmp(argv[i], "hr"))
3018 codec->hr = 1;
3019 if (!strcmp(argv[i], "efr"))
3020 codec->efr = 1;
3021 if (!strcmp(argv[i], "amr"))
3022 codec->amr = 1;
3023 }
3024}
3025
3026#define CODEC_PAR_STR " (hr|efr|amr)"
3027#define CODEC_HELP_STR "Half Rate\n" \
3028 "Enhanced Full Rate\nAdaptive Multirate\n"
3029
3030DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
3031 "codec-support fr",
3032 "Codec Support settings\nFullrate\n")
3033{
3034 _get_codec_from_arg(vty, 0, argv);
3035 return CMD_SUCCESS;
3036}
3037
3038DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
3039 "codec-support fr" CODEC_PAR_STR,
3040 "Codec Support settings\nFullrate\n"
3041 CODEC_HELP_STR)
3042{
3043 _get_codec_from_arg(vty, 1, argv);
3044 return CMD_SUCCESS;
3045}
3046
3047DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
3048 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
3049 "Codec Support settings\nFullrate\n"
3050 CODEC_HELP_STR CODEC_HELP_STR)
3051{
3052 _get_codec_from_arg(vty, 2, argv);
3053 return CMD_SUCCESS;
3054}
3055
3056DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
3057 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
3058 "Codec Support settings\nFullrate\n"
3059 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
3060{
3061 _get_codec_from_arg(vty, 3, argv);
3062 return CMD_SUCCESS;
3063}
3064
3065DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
3066 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
3067 "Codec Support settings\nFullrate\n"
3068 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
3069{
3070 _get_codec_from_arg(vty, 4, argv);
3071 return CMD_SUCCESS;
3072}
3073
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01003074DEFUN(cfg_bts_depends_on, cfg_bts_depends_on_cmd,
3075 "depends-on-bts <0-255>",
3076 "This BTS can only be started if another one is up\n" "BTS Number\n")
3077{
3078 struct gsm_bts *bts = vty->index;
3079 struct gsm_bts *other_bts;
3080 int dep = atoi(argv[0]);
3081
3082
3083 if (!is_ipaccess_bts(bts)) {
3084 vty_out(vty, "This feature is only available for IP systems.%s",
3085 VTY_NEWLINE);
3086 return CMD_WARNING;
3087 }
3088
3089 other_bts = gsm_bts_num(bts->network, dep);
3090 if (!other_bts || !is_ipaccess_bts(other_bts)) {
3091 vty_out(vty, "This feature is only available for IP systems.%s",
3092 VTY_NEWLINE);
3093 return CMD_WARNING;
3094 }
3095
3096 if (dep >= bts->nr) {
3097 vty_out(vty, "%%Need to depend on an already declared unit.%s",
3098 VTY_NEWLINE);
3099 return CMD_WARNING;
3100 }
3101
3102 bts_depend_mark(bts, dep);
3103 return CMD_SUCCESS;
3104}
3105
3106DEFUN(cfg_bts_no_depends_on, cfg_bts_no_depends_on_cmd,
3107 "depeneds-on-bts <0-255>",
3108 NO_STR "This BTS can only be started if another one is up\n"
3109 "BTS Number\n")
3110{
3111 struct gsm_bts *bts = vty->index;
3112 int dep = atoi(argv[0]);
3113
3114 bts_depend_clear(bts, dep);
3115 return CMD_SUCCESS;
3116}
3117
Andreas Eversberg73266522014-01-19 11:47:44 +01003118#define AMR_TEXT "Adaptive Multi Rate settings\n"
3119#define AMR_MODE_TEXT "Codec modes to use with AMR codec\n"
3120#define AMR_START_TEXT "Initial codec to use with AMR\n" \
3121 "Automatically\nFirst codec\nSecond codec\nThird codec\nFourth codec\n"
3122#define AMR_TH_TEXT "AMR threshold between codecs\nMS side\nBTS side\n"
3123#define AMR_HY_TEXT "AMR hysteresis between codecs\nMS side\nBTS side\n"
3124
3125static void get_amr_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3126{
3127 struct gsm_bts *bts = vty->index;
3128 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
3129 struct gsm48_multi_rate_conf *mr_conf =
3130 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
3131 int i;
3132
3133 mr->gsm48_ie[1] = 0;
3134 for (i = 0; i < argc; i++)
3135 mr->gsm48_ie[1] |= 1 << atoi(argv[i]);
3136 mr_conf->icmi = 0;
3137}
3138
3139static void get_amr_th_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3140{
3141 struct gsm_bts *bts = vty->index;
3142 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003143 struct amr_mode *modes;
Andreas Eversberg73266522014-01-19 11:47:44 +01003144 int i;
3145
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003146 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
3147 for (i = 0; i < argc - 1; i++)
3148 modes[i].threshold = atoi(argv[i + 1]);
Andreas Eversberg73266522014-01-19 11:47:44 +01003149}
3150
3151static void get_amr_hy_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3152{
3153 struct gsm_bts *bts = vty->index;
3154 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003155 struct amr_mode *modes;
Andreas Eversberg73266522014-01-19 11:47:44 +01003156 int i;
3157
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003158 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
3159 for (i = 0; i < argc - 1; i++)
3160 modes[i].hysteresis = atoi(argv[i + 1]);
Andreas Eversberg73266522014-01-19 11:47:44 +01003161}
3162
3163static void get_amr_start_from_arg(struct vty *vty, const char *argv[], int full)
3164{
3165 struct gsm_bts *bts = vty->index;
3166 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
3167 struct gsm48_multi_rate_conf *mr_conf =
3168 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
3169 int num = 0, i;
3170
3171 for (i = 0; i < ((full) ? 8 : 6); i++) {
3172 if ((mr->gsm48_ie[1] & (1 << i))) {
3173 num++;
3174 }
3175 }
3176
3177 if (argv[0][0] == 'a' || num == 0)
3178 mr_conf->icmi = 0;
3179 else {
3180 mr_conf->icmi = 1;
3181 if (num < atoi(argv[0]))
3182 mr_conf->smod = num - 1;
3183 else
3184 mr_conf->smod = atoi(argv[0]) - 1;
3185 }
3186}
3187
3188#define AMR_TCHF_PAR_STR " (0|1|2|3|4|5|6|7)"
3189#define AMR_TCHF_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n" \
3190 "10,2k\n12,2k\n"
3191
3192#define AMR_TCHH_PAR_STR " (0|1|2|3|4|5)"
3193#define AMR_TCHH_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n"
3194
3195#define AMR_TH_HELP_STR "Threshold between codec 1 and 2\n"
3196#define AMR_HY_HELP_STR "Hysteresis between codec 1 and 2\n"
3197
3198DEFUN(cfg_bts_amr_fr_modes1, cfg_bts_amr_fr_modes1_cmd,
3199 "amr tch-f modes" AMR_TCHF_PAR_STR,
3200 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3201 AMR_TCHF_HELP_STR)
3202{
3203 get_amr_from_arg(vty, 1, argv, 1);
3204 return CMD_SUCCESS;
3205}
3206
3207DEFUN(cfg_bts_amr_fr_modes2, cfg_bts_amr_fr_modes2_cmd,
3208 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3209 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3210 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3211{
3212 get_amr_from_arg(vty, 2, argv, 1);
3213 return CMD_SUCCESS;
3214}
3215
3216DEFUN(cfg_bts_amr_fr_modes3, cfg_bts_amr_fr_modes3_cmd,
3217 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3218 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3219 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3220{
3221 get_amr_from_arg(vty, 3, argv, 1);
3222 return CMD_SUCCESS;
3223}
3224
3225DEFUN(cfg_bts_amr_fr_modes4, cfg_bts_amr_fr_modes4_cmd,
3226 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3227 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3228 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3229{
3230 get_amr_from_arg(vty, 4, argv, 1);
3231 return CMD_SUCCESS;
3232}
3233
3234DEFUN(cfg_bts_amr_fr_start_mode, cfg_bts_amr_fr_start_mode_cmd,
3235 "amr tch-f start-mode (auto|1|2|3|4)",
3236 AMR_TEXT "Full Rate\n" AMR_START_TEXT)
3237{
3238 get_amr_start_from_arg(vty, argv, 1);
3239 return CMD_SUCCESS;
3240}
3241
3242DEFUN(cfg_bts_amr_fr_thres1, cfg_bts_amr_fr_thres1_cmd,
3243 "amr tch-f threshold (ms|bts) <0-63>",
3244 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3245 AMR_TH_HELP_STR)
3246{
3247 get_amr_th_from_arg(vty, 2, argv, 1);
3248 return CMD_SUCCESS;
3249}
3250
3251DEFUN(cfg_bts_amr_fr_thres2, cfg_bts_amr_fr_thres2_cmd,
3252 "amr tch-f threshold (ms|bts) <0-63> <0-63>",
3253 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3254 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3255{
3256 get_amr_th_from_arg(vty, 3, argv, 1);
3257 return CMD_SUCCESS;
3258}
3259
3260DEFUN(cfg_bts_amr_fr_thres3, cfg_bts_amr_fr_thres3_cmd,
3261 "amr tch-f threshold (ms|bts) <0-63> <0-63> <0-63>",
3262 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3263 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3264{
3265 get_amr_th_from_arg(vty, 4, argv, 1);
3266 return CMD_SUCCESS;
3267}
3268
3269DEFUN(cfg_bts_amr_fr_hyst1, cfg_bts_amr_fr_hyst1_cmd,
3270 "amr tch-f hysteresis (ms|bts) <0-15>",
3271 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3272 AMR_HY_HELP_STR)
3273{
3274 get_amr_hy_from_arg(vty, 2, argv, 1);
3275 return CMD_SUCCESS;
3276}
3277
3278DEFUN(cfg_bts_amr_fr_hyst2, cfg_bts_amr_fr_hyst2_cmd,
3279 "amr tch-f hysteresis (ms|bts) <0-15> <0-15>",
3280 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3281 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3282{
3283 get_amr_hy_from_arg(vty, 3, argv, 1);
3284 return CMD_SUCCESS;
3285}
3286
3287DEFUN(cfg_bts_amr_fr_hyst3, cfg_bts_amr_fr_hyst3_cmd,
3288 "amr tch-f hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3289 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3290 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3291{
3292 get_amr_hy_from_arg(vty, 4, argv, 1);
3293 return CMD_SUCCESS;
3294}
3295
3296DEFUN(cfg_bts_amr_hr_modes1, cfg_bts_amr_hr_modes1_cmd,
3297 "amr tch-h modes" AMR_TCHH_PAR_STR,
3298 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3299 AMR_TCHH_HELP_STR)
3300{
3301 get_amr_from_arg(vty, 1, argv, 0);
3302 return CMD_SUCCESS;
3303}
3304
3305DEFUN(cfg_bts_amr_hr_modes2, cfg_bts_amr_hr_modes2_cmd,
3306 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3307 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3308 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3309{
3310 get_amr_from_arg(vty, 2, argv, 0);
3311 return CMD_SUCCESS;
3312}
3313
3314DEFUN(cfg_bts_amr_hr_modes3, cfg_bts_amr_hr_modes3_cmd,
3315 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3316 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3317 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3318{
3319 get_amr_from_arg(vty, 3, argv, 0);
3320 return CMD_SUCCESS;
3321}
3322
3323DEFUN(cfg_bts_amr_hr_modes4, cfg_bts_amr_hr_modes4_cmd,
3324 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3325 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3326 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3327{
3328 get_amr_from_arg(vty, 4, argv, 0);
3329 return CMD_SUCCESS;
3330}
3331
3332DEFUN(cfg_bts_amr_hr_start_mode, cfg_bts_amr_hr_start_mode_cmd,
3333 "amr tch-h start-mode (auto|1|2|3|4)",
3334 AMR_TEXT "Half Rate\n" AMR_START_TEXT)
3335{
3336 get_amr_start_from_arg(vty, argv, 0);
3337 return CMD_SUCCESS;
3338}
3339
3340DEFUN(cfg_bts_amr_hr_thres1, cfg_bts_amr_hr_thres1_cmd,
3341 "amr tch-h threshold (ms|bts) <0-63>",
3342 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3343 AMR_TH_HELP_STR)
3344{
3345 get_amr_th_from_arg(vty, 2, argv, 0);
3346 return CMD_SUCCESS;
3347}
3348
3349DEFUN(cfg_bts_amr_hr_thres2, cfg_bts_amr_hr_thres2_cmd,
3350 "amr tch-h threshold (ms|bts) <0-63> <0-63>",
3351 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3352 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3353{
3354 get_amr_th_from_arg(vty, 3, argv, 0);
3355 return CMD_SUCCESS;
3356}
3357
3358DEFUN(cfg_bts_amr_hr_thres3, cfg_bts_amr_hr_thres3_cmd,
3359 "amr tch-h threshold (ms|bts) <0-63> <0-63> <0-63>",
3360 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3361 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3362{
3363 get_amr_th_from_arg(vty, 4, argv, 0);
3364 return CMD_SUCCESS;
3365}
3366
3367DEFUN(cfg_bts_amr_hr_hyst1, cfg_bts_amr_hr_hyst1_cmd,
3368 "amr tch-h hysteresis (ms|bts) <0-15>",
3369 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3370 AMR_HY_HELP_STR)
3371{
3372 get_amr_hy_from_arg(vty, 2, argv, 0);
3373 return CMD_SUCCESS;
3374}
3375
3376DEFUN(cfg_bts_amr_hr_hyst2, cfg_bts_amr_hr_hyst2_cmd,
3377 "amr tch-h hysteresis (ms|bts) <0-15> <0-15>",
3378 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3379 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3380{
3381 get_amr_hy_from_arg(vty, 3, argv, 0);
3382 return CMD_SUCCESS;
3383}
3384
3385DEFUN(cfg_bts_amr_hr_hyst3, cfg_bts_amr_hr_hyst3_cmd,
3386 "amr tch-h hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3387 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3388 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3389{
3390 get_amr_hy_from_arg(vty, 4, argv, 0);
3391 return CMD_SUCCESS;
3392}
3393
Harald Welte8f0ed552010-05-11 21:53:49 +02003394#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02003395
Harald Welte5258fc42009-03-28 19:07:53 +00003396/* per TRX configuration */
3397DEFUN(cfg_trx,
3398 cfg_trx_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02003399 "trx <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02003400 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00003401 "Select a TRX to configure")
3402{
3403 int trx_nr = atoi(argv[0]);
3404 struct gsm_bts *bts = vty->index;
3405 struct gsm_bts_trx *trx;
3406
Harald Weltee441d9c2009-06-21 16:17:15 +02003407 if (trx_nr > bts->num_trx) {
3408 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
3409 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00003410 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02003411 } else if (trx_nr == bts->num_trx) {
3412 /* we need to allocate a new one */
3413 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003414 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02003415 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003416
Harald Weltee441d9c2009-06-21 16:17:15 +02003417 if (!trx)
3418 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00003419
3420 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02003421 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00003422 vty->node = TRX_NODE;
3423
3424 return CMD_SUCCESS;
3425}
3426
3427DEFUN(cfg_trx_arfcn,
3428 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01003429 "arfcn <0-1023>",
Harald Welte13fe2192012-08-17 09:57:25 +02003430 "Set the ARFCN for this TRX\n"
3431 "Absolute Radio Frequency Channel Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003432{
3433 int arfcn = atoi(argv[0]);
3434 struct gsm_bts_trx *trx = vty->index;
3435
3436 /* FIXME: check if this ARFCN is supported by this TRX */
3437
3438 trx->arfcn = arfcn;
3439
3440 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
3441 /* FIXME: use OML layer to update the ARFCN */
3442 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
3443
3444 return CMD_SUCCESS;
3445}
3446
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003447DEFUN(cfg_trx_nominal_power,
3448 cfg_trx_nominal_power_cmd,
3449 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003450 "Nominal TRX RF Power in dBm\n"
3451 "Nominal TRX RF Power in dBm\n"
3452 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003453{
3454 struct gsm_bts_trx *trx = vty->index;
3455
3456 trx->nominal_power = atoi(argv[0]);
3457
3458 return CMD_SUCCESS;
3459}
3460
Harald Weltefcd24452009-06-20 18:15:19 +02003461DEFUN(cfg_trx_max_power_red,
3462 cfg_trx_max_power_red_cmd,
3463 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003464 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02003465 "Reduction of maximum BS RF Power in dB\n")
3466{
3467 int maxpwr_r = atoi(argv[0]);
3468 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01003469 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02003470
3471 /* FIXME: check if our BTS type supports more than 12 */
3472 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
3473 vty_out(vty, "%% Power %d dB is not in the valid range%s",
3474 maxpwr_r, VTY_NEWLINE);
3475 return CMD_WARNING;
3476 }
3477 if (maxpwr_r & 1) {
3478 vty_out(vty, "%% Power %d dB is not an even value%s",
3479 maxpwr_r, VTY_NEWLINE);
3480 return CMD_WARNING;
3481 }
3482
3483 trx->max_power_red = maxpwr_r;
3484
3485 /* FIXME: make sure we update this using OML */
3486
3487 return CMD_SUCCESS;
3488}
3489
Harald Welte42581822009-08-08 16:12:58 +02003490DEFUN(cfg_trx_rsl_e1,
3491 cfg_trx_rsl_e1_cmd,
3492 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003493 "RSL Parameters\n"
3494 "E1/T1 interface to be used for RSL\n"
3495 "E1/T1 interface to be used for RSL\n"
3496 "E1/T1 Line Number to be used for RSL\n"
3497 "E1/T1 Timeslot to be used for RSL\n"
3498 "E1/T1 Timeslot to be used for RSL\n"
3499 "E1/T1 Sub-slot to be used for RSL\n"
3500 "E1/T1 Sub-slot 0 is to be used for RSL\n"
3501 "E1/T1 Sub-slot 1 is to be used for RSL\n"
3502 "E1/T1 Sub-slot 2 is to be used for RSL\n"
3503 "E1/T1 Sub-slot 3 is to be used for RSL\n"
3504 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003505{
3506 struct gsm_bts_trx *trx = vty->index;
3507
3508 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
3509
3510 return CMD_SUCCESS;
3511}
3512
3513DEFUN(cfg_trx_rsl_e1_tei,
3514 cfg_trx_rsl_e1_tei_cmd,
3515 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003516 "RSL Parameters\n"
3517 "Set the TEI to be used for RSL\n"
3518 "Set the TEI to be used for RSL\n"
3519 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003520{
3521 struct gsm_bts_trx *trx = vty->index;
3522
3523 trx->rsl_tei = atoi(argv[0]);
3524
3525 return CMD_SUCCESS;
3526}
3527
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003528DEFUN(cfg_trx_rf_locked,
3529 cfg_trx_rf_locked_cmd,
3530 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003531 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
3532 "TRX is NOT RF locked (active)\n"
3533 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003534{
3535 int locked = atoi(argv[0]);
3536 struct gsm_bts_trx *trx = vty->index;
3537
3538 gsm_trx_lock_rf(trx, locked);
3539 return CMD_SUCCESS;
3540}
Harald Welte42581822009-08-08 16:12:58 +02003541
Harald Welte5258fc42009-03-28 19:07:53 +00003542/* per TS configuration */
3543DEFUN(cfg_ts,
3544 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003545 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003546 "Select a Timeslot to configure\n"
3547 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003548{
3549 int ts_nr = atoi(argv[0]);
3550 struct gsm_bts_trx *trx = vty->index;
3551 struct gsm_bts_trx_ts *ts;
3552
3553 if (ts_nr >= TRX_NR_TS) {
3554 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
3555 TRX_NR_TS, VTY_NEWLINE);
3556 return CMD_WARNING;
3557 }
3558
3559 ts = &trx->ts[ts_nr];
3560
3561 vty->index = ts;
3562 vty->node = TS_NODE;
3563
3564 return CMD_SUCCESS;
3565}
3566
Harald Weltea6fd58e2009-08-07 00:25:23 +02003567DEFUN(cfg_ts_pchan,
3568 cfg_ts_pchan_cmd,
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003569 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003570 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003571{
3572 struct gsm_bts_trx_ts *ts = vty->index;
3573 int pchanc;
3574
3575 pchanc = gsm_pchan_parse(argv[0]);
3576 if (pchanc < 0)
3577 return CMD_WARNING;
3578
3579 ts->pchan = pchanc;
3580
3581 return CMD_SUCCESS;
3582}
3583
3584/* used for backwards compatibility with old config files that still
3585 * have uppercase pchan type names */
3586DEFUN_HIDDEN(cfg_ts_pchan_compat,
3587 cfg_ts_pchan_compat_cmd,
Harald Weltea6fd58e2009-08-07 00:25:23 +02003588 "phys_chan_config PCHAN",
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003589 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003590{
3591 struct gsm_bts_trx_ts *ts = vty->index;
3592 int pchanc;
3593
3594 pchanc = gsm_pchan_parse(argv[0]);
3595 if (pchanc < 0)
3596 return CMD_WARNING;
3597
3598 ts->pchan = pchanc;
3599
3600 return CMD_SUCCESS;
3601}
3602
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003603
3604
Harald Welte135a6482011-05-30 12:09:13 +02003605DEFUN(cfg_ts_tsc,
3606 cfg_ts_tsc_cmd,
3607 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003608 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02003609{
3610 struct gsm_bts_trx_ts *ts = vty->index;
3611
Max71d082b2017-05-30 15:03:38 +02003612 if (!gsm_btsmodel_has_feature(ts->trx->bts->model, BTS_FEAT_MULTI_TSC)) {
Harald Welte903aaea2014-01-19 17:10:50 +01003613 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
3614 "falling back to BCC%s", VTY_NEWLINE);
3615 ts->tsc = -1;
3616 return CMD_WARNING;
3617 }
3618
Harald Welte135a6482011-05-30 12:09:13 +02003619 ts->tsc = atoi(argv[0]);
3620
3621 return CMD_SUCCESS;
3622}
3623
Harald Weltea39b0f22010-06-14 22:26:10 +02003624#define HOPPING_STR "Configure frequency hopping\n"
3625
3626DEFUN(cfg_ts_hopping,
3627 cfg_ts_hopping_cmd,
3628 "hopping enabled (0|1)",
3629 HOPPING_STR "Enable or disable frequency hopping\n"
3630 "Disable frequency hopping\n" "Enable frequency hopping\n")
3631{
3632 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02003633 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02003634
Max71d082b2017-05-30 15:03:38 +02003635 if (enabled && !gsm_btsmodel_has_feature(ts->trx->bts->model, BTS_FEAT_HOPPING)) {
Harald Weltec2fb3d02010-06-14 22:47:37 +02003636 vty_out(vty, "BTS model does not support hopping%s",
3637 VTY_NEWLINE);
3638 return CMD_WARNING;
3639 }
3640
3641 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02003642
3643 return CMD_SUCCESS;
3644}
3645
Harald Welte6e0cd042009-09-12 13:05:33 +02003646DEFUN(cfg_ts_hsn,
3647 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02003648 "hopping sequence-number <0-63>",
3649 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003650 "Which hopping sequence to use for this channel\n"
3651 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003652{
3653 struct gsm_bts_trx_ts *ts = vty->index;
3654
3655 ts->hopping.hsn = atoi(argv[0]);
3656
3657 return CMD_SUCCESS;
3658}
3659
3660DEFUN(cfg_ts_maio,
3661 cfg_ts_maio_cmd,
3662 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003663 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003664 "Which hopping MAIO to use for this channel\n"
3665 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003666{
3667 struct gsm_bts_trx_ts *ts = vty->index;
3668
3669 ts->hopping.maio = atoi(argv[0]);
3670
3671 return CMD_SUCCESS;
3672}
3673
3674DEFUN(cfg_ts_arfcn_add,
3675 cfg_ts_arfcn_add_cmd,
3676 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003677 HOPPING_STR "Configure hopping ARFCN list\n"
3678 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003679{
3680 struct gsm_bts_trx_ts *ts = vty->index;
3681 int arfcn = atoi(argv[0]);
3682
Harald Weltea39b0f22010-06-14 22:26:10 +02003683 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3684
Harald Welte6e0cd042009-09-12 13:05:33 +02003685 return CMD_SUCCESS;
3686}
3687
3688DEFUN(cfg_ts_arfcn_del,
3689 cfg_ts_arfcn_del_cmd,
3690 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003691 HOPPING_STR "Configure hopping ARFCN list\n"
3692 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003693{
3694 struct gsm_bts_trx_ts *ts = vty->index;
3695 int arfcn = atoi(argv[0]);
3696
Harald Weltea39b0f22010-06-14 22:26:10 +02003697 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3698
Harald Welte6e0cd042009-09-12 13:05:33 +02003699 return CMD_SUCCESS;
3700}
3701
Harald Weltea6fd58e2009-08-07 00:25:23 +02003702DEFUN(cfg_ts_e1_subslot,
3703 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003704 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003705 "E1/T1 channel connected to this on-air timeslot\n"
3706 "E1/T1 channel connected to this on-air timeslot\n"
3707 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02003708 "E1/T1 timeslot connected to this on-air timeslot\n"
3709 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02003710 "E1/T1 sub-slot connected to this on-air timeslot\n"
3711 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3712 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3713 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3714 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3715 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003716{
3717 struct gsm_bts_trx_ts *ts = vty->index;
3718
Harald Welte42581822009-08-08 16:12:58 +02003719 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003720
3721 return CMD_SUCCESS;
3722}
Harald Welte5258fc42009-03-28 19:07:53 +00003723
Harald Welte4f10c252010-05-16 21:47:13 +02003724void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3725{
3726 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003727 net->bsc_ctrs->ctr[BSC_CTR_CHREQ_TOTAL].current,
3728 net->bsc_ctrs->ctr[BSC_CTR_CHREQ_NO_CHANNEL].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003729 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003730 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003731 net->bsc_ctrs->ctr[BSC_CTR_CHAN_RF_FAIL].current,
3732 net->bsc_ctrs->ctr[BSC_CTR_CHAN_RLL_ERR].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003733 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003734 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003735 net->bsc_ctrs->ctr[BSC_CTR_PAGING_ATTEMPTED].current,
3736 net->bsc_ctrs->ctr[BSC_CTR_PAGING_COMPLETED].current,
3737 net->bsc_ctrs->ctr[BSC_CTR_PAGING_EXPIRED].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003738 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003739 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003740 net->bsc_ctrs->ctr[BSC_CTR_BTS_OML_FAIL].current,
3741 net->bsc_ctrs->ctr[BSC_CTR_BTS_RSL_FAIL].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003742 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003743}
3744
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003745DEFUN(drop_bts,
3746 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02003747 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003748 "Debug/Simulation command to drop Abis/IP BTS\n"
3749 "Debug/Simulation command to drop Abis/IP BTS\n"
3750 "Debug/Simulation command to drop Abis/IP BTS\n"
3751 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003752{
3753 struct gsm_network *gsmnet;
3754 struct gsm_bts_trx *trx;
3755 struct gsm_bts *bts;
3756 unsigned int bts_nr;
3757
3758 gsmnet = gsmnet_from_vty(vty);
3759
3760 bts_nr = atoi(argv[0]);
3761 if (bts_nr >= gsmnet->num_bts) {
3762 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3763 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3764 return CMD_WARNING;
3765 }
3766
3767 bts = gsm_bts_num(gsmnet, bts_nr);
3768 if (!bts) {
3769 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3770 return CMD_WARNING;
3771 }
3772
3773 if (!is_ipaccess_bts(bts)) {
3774 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3775 return CMD_WARNING;
3776 }
3777
3778
3779 /* close all connections */
3780 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003781 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003782 } else if (strcmp(argv[1], "rsl") == 0) {
3783 /* close all rsl connections */
3784 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003785 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003786 }
3787 } else {
3788 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3789 return CMD_WARNING;
3790 }
3791
3792 return CMD_SUCCESS;
3793}
3794
Holger Hans Peter Freyther740e65f2016-03-16 13:45:23 +01003795DEFUN(restart_bts, restart_bts_cmd,
3796 "restart-bts <0-65535>",
3797 "Restart ip.access nanoBTS through OML\n"
3798 "BTS Number\n")
3799{
3800 struct gsm_network *gsmnet;
3801 struct gsm_bts_trx *trx;
3802 struct gsm_bts *bts;
3803 unsigned int bts_nr;
3804
3805 gsmnet = gsmnet_from_vty(vty);
3806
3807 bts_nr = atoi(argv[0]);
3808 if (bts_nr >= gsmnet->num_bts) {
3809 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3810 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3811 return CMD_WARNING;
3812 }
3813
3814 bts = gsm_bts_num(gsmnet, bts_nr);
3815 if (!bts) {
3816 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3817 return CMD_WARNING;
3818 }
3819
3820 if (!is_ipaccess_bts(bts) || is_sysmobts_v2(bts)) {
3821 vty_out(vty, "This command only works for ipaccess nanoBTS.%s",
3822 VTY_NEWLINE);
3823 return CMD_WARNING;
3824 }
3825
3826 /* go from last TRX to c0 */
3827 llist_for_each_entry_reverse(trx, &bts->trx_list, list)
3828 abis_nm_ipaccess_restart(trx);
3829
3830 return CMD_SUCCESS;
3831}
3832
Harald Welte30f1f372014-12-28 15:00:45 +01003833DEFUN(smscb_cmd, smscb_cmd_cmd,
3834 "bts <0-255> smscb-command <1-4> HEXSTRING",
3835 "BTS related commands\n" "BTS Number\n"
3836 "SMS Cell Broadcast\n" "Last Valid Block\n"
3837 "Hex Encoded SMSCB message (up to 88 octets)\n")
3838{
3839 struct gsm_bts *bts;
3840 int bts_nr = atoi(argv[0]);
3841 int last_block = atoi(argv[1]);
3842 struct rsl_ie_cb_cmd_type cb_cmd;
3843 uint8_t buf[88];
3844 int rc;
3845
Neels Hofmeyrb90eabf2016-05-11 18:48:39 +02003846 bts = gsm_bts_num(gsmnet_from_vty(vty), bts_nr);
Harald Welte30f1f372014-12-28 15:00:45 +01003847 if (!bts) {
3848 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3849 return CMD_WARNING;
3850 }
3851 rc = osmo_hexparse(argv[2], buf, sizeof(buf));
3852 if (rc < 0 || rc > sizeof(buf)) {
3853 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
3854 return CMD_WARNING;
3855 }
3856
3857 cb_cmd.spare = 0;
3858 cb_cmd.def_bcast = 0;
3859 cb_cmd.command = RSL_CB_CMD_TYPE_NORMAL;
3860
3861 switch (last_block) {
3862 case 1:
3863 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_1;
3864 break;
3865 case 2:
3866 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_2;
3867 break;
3868 case 3:
3869 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_3;
3870 break;
3871 case 4:
3872 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_4;
3873 break;
3874 }
3875
3876 rsl_sms_cb_command(bts, RSL_CHAN_SDCCH4_ACCH, cb_cmd, buf, rc);
3877
3878 return CMD_SUCCESS;
3879}
3880
Harald Welte7fe00fb2017-05-27 14:09:50 +02003881/* resolve a gsm_bts_trx_ts basd on the given numeric identifiers */
Harald Welte645eb622017-05-27 15:52:58 +02003882static struct gsm_bts_trx_ts *vty_get_ts(struct vty *vty, const char *bts_str, const char *trx_str,
3883 const char *ts_str)
Harald Welte7fe00fb2017-05-27 14:09:50 +02003884{
Harald Welte645eb622017-05-27 15:52:58 +02003885 int bts_nr = atoi(bts_str);
3886 int trx_nr = atoi(trx_str);
3887 int ts_nr = atoi(ts_str);
Harald Welte7fe00fb2017-05-27 14:09:50 +02003888 struct gsm_bts *bts;
3889 struct gsm_bts_trx *trx;
3890 struct gsm_bts_trx_ts *ts;
3891
3892 bts = gsm_bts_num(gsmnet_from_vty(vty), bts_nr);
3893 if (!bts) {
3894 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3895 return NULL;
3896 }
3897
3898 trx = gsm_bts_trx_num(bts, trx_nr);
3899 if (!trx) {
3900 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3901 return NULL;
3902 }
3903
3904 ts = &trx->ts[ts_nr];
3905
3906 return ts;
3907}
Harald Welte30f1f372014-12-28 15:00:45 +01003908
Harald Welted0d2b0b2010-12-23 13:18:07 +01003909DEFUN(pdch_act, pdch_act_cmd,
3910 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3911 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3912 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3913 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3914 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3915{
Harald Welted0d2b0b2010-12-23 13:18:07 +01003916 struct gsm_bts_trx_ts *ts;
Harald Welted0d2b0b2010-12-23 13:18:07 +01003917 int activate;
3918
Harald Welte645eb622017-05-27 15:52:58 +02003919 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
Harald Welte7fe00fb2017-05-27 14:09:50 +02003920 if (!ts)
Harald Welted0d2b0b2010-12-23 13:18:07 +01003921 return CMD_WARNING;
Harald Welted0d2b0b2010-12-23 13:18:07 +01003922
Harald Welte7fe00fb2017-05-27 14:09:50 +02003923 if (!is_ipaccess_bts(ts->trx->bts)) {
Harald Welted0d2b0b2010-12-23 13:18:07 +01003924 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3925 VTY_NEWLINE);
3926 return CMD_WARNING;
3927 }
3928
Harald Welted0d2b0b2010-12-23 13:18:07 +01003929 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3930 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
Harald Welte645eb622017-05-27 15:52:58 +02003931 "mode%s", ts->nr, VTY_NEWLINE);
Harald Welted0d2b0b2010-12-23 13:18:07 +01003932 return CMD_WARNING;
3933 }
3934
3935 if (!strcmp(argv[3], "activate"))
3936 activate = 1;
3937 else
3938 activate = 0;
3939
3940 rsl_ipacc_pdch_activate(ts, activate);
3941
3942 return CMD_SUCCESS;
3943
3944}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003945
Harald Welte2abd5e12017-05-27 14:10:40 +02003946/* determine the logical channel type based on the physical channel type */
3947static int lchan_type_by_pchan(enum gsm_phys_chan_config pchan)
3948{
3949 switch (pchan) {
3950 case GSM_PCHAN_TCH_F:
3951 return GSM_LCHAN_TCH_F;
3952 case GSM_PCHAN_TCH_H:
3953 return GSM_LCHAN_TCH_H;
3954 case GSM_PCHAN_SDCCH8_SACCH8C:
3955 case GSM_PCHAN_SDCCH8_SACCH8C_CBCH:
3956 case GSM_PCHAN_CCCH_SDCCH4:
3957 case GSM_PCHAN_CCCH_SDCCH4_CBCH:
3958 return GSM_LCHAN_SDCCH;
3959 default:
3960 return -1;
3961 }
3962}
3963
3964/* configure the lchan for a single AMR mode (as specified) */
3965static int lchan_set_single_amr_mode(struct gsm_lchan *lchan, uint8_t amr_mode)
3966{
3967 struct amr_multirate_conf mr;
3968 struct gsm48_multi_rate_conf *mr_conf;
3969 mr_conf = (struct gsm48_multi_rate_conf *) &mr.gsm48_ie;
3970
3971 if (amr_mode > 7)
3972 return -1;
3973
3974 memset(&mr, 0, sizeof(mr));
3975 mr_conf->ver = 1;
3976 /* bit-mask of supported modes, only one bit is set. Reflects
3977 * Figure 10.5.2.47a where there are no thershold and only a
3978 * single mode */
3979 mr.gsm48_ie[1] = 1 << amr_mode;
3980
3981 mr.ms_mode[0].mode = amr_mode;
3982 mr.bts_mode[0].mode = amr_mode;
3983
3984 /* encode this configuration into the lchan for both uplink and
3985 * downlink direction */
3986 gsm48_multirate_config(lchan->mr_ms_lv, &mr, mr.ms_mode);
3987 gsm48_multirate_config(lchan->mr_bts_lv, &mr, mr.bts_mode);
3988
3989 return 0;
3990}
3991
3992/* Debug/Measurement command to activate a given logical channel
3993 * manually in a given mode/codec. This is useful for receiver
3994 * performance testing (FER/RBER/...) */
3995DEFUN(lchan_act, lchan_act_cmd,
3996 "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7> (activate|deactivate) (hr|fr|efr|amr) [<0-7>]",
3997 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3998 "TRX Timeslot\n" "Timeslot Number\n" "Sub-Slot Number\n" "Sub-Slot Number\n"
3999 "Manual Channel Activation (e.g. for BER test)\n"
4000 "Manual Channel Deactivation (e.g. for BER test)\n"
4001 "Half-Rate v1\n" "Full-Rate\n" "Enhanced Full Rate\n" "Adaptive Multi-Rate\n" "AMR Mode\n")
4002{
4003 struct gsm_bts_trx_ts *ts;
4004 struct gsm_lchan *lchan;
4005 int ss_nr = atoi(argv[3]);
4006 const char *act_str = argv[4];
4007 const char *codec_str = argv[5];
4008 int activate;
4009
4010 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
4011 if (!ts)
4012 return CMD_WARNING;
4013
4014 lchan = &ts->lchan[ss_nr];
4015
4016 if (!strcmp(act_str, "activate"))
4017 activate = 1;
4018 else
4019 activate = 0;
4020
4021 if (ss_nr >= ts_subslots(ts)) {
4022 vty_out(vty, "%% subslot %d >= permitted %d for physical channel %s%s",
4023 ss_nr, ts_subslots(ts), gsm_pchan_name(ts->pchan), VTY_NEWLINE);
4024 return CMD_WARNING;
4025 }
4026
4027 if (activate) {
4028 int lchan_t;
4029 if (lchan->state != LCHAN_S_NONE) {
4030 vty_out(vty, "%% Cannot activate: Channel busy!%s", VTY_NEWLINE);
4031 return CMD_WARNING;
4032 }
4033 lchan_t = lchan_type_by_pchan(ts->pchan);
4034 if (lchan_t < 0)
4035 return CMD_WARNING;
4036 /* configure the lchan */
4037 lchan->type = lchan_t;
4038 lchan->rsl_cmode = RSL_CMOD_SPD_SPEECH;
4039 if (!strcmp(codec_str, "hr") || !strcmp(codec_str, "fr"))
4040 lchan->tch_mode = GSM48_CMODE_SPEECH_V1;
4041 else if (!strcmp(codec_str, "efr"))
4042 lchan->tch_mode = GSM48_CMODE_SPEECH_EFR;
4043 else if (!strcmp(codec_str, "amr")) {
4044 int amr_mode;
4045 if (argc < 7) {
4046 vty_out(vty, "%% AMR requires specification of AMR mode%s", VTY_NEWLINE);
4047 return CMD_WARNING;
4048 }
4049 amr_mode = atoi(argv[6]);
4050 lchan->tch_mode = GSM48_CMODE_SPEECH_AMR;
4051 lchan_set_single_amr_mode(lchan, amr_mode);
4052 }
4053 vty_out(vty, "%% activating lchan %s%s", gsm_lchan_name(lchan), VTY_NEWLINE);
4054 rsl_chan_activate_lchan(lchan, RSL_ACT_TYPE_INITIAL, 0);
4055 rsl_ipacc_crcx(lchan);
Harald Welte2abd5e12017-05-27 14:10:40 +02004056 } else {
4057 rsl_direct_rf_release(lchan);
4058 }
4059
4060 return CMD_SUCCESS;
4061}
4062
Harald Welte3f86c522017-05-27 15:53:28 +02004063DEFUN(lchan_mdcx, lchan_mdcx_cmd,
4064 "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7> mdcx A.B.C.D <0-65535>",
4065 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
4066 "TRX Timeslot\n" "Timeslot Number\n" "Sub-Slot\n" "Sub-Slot Number\n"
4067 "Modify RTP Connection\n" "MGW IP Address\n" "MGW UDP Port\n")
4068{
4069 struct gsm_bts_trx_ts *ts;
4070 struct gsm_lchan *lchan;
4071 int ss_nr = atoi(argv[3]);
4072 int port = atoi(argv[5]);
4073 struct in_addr ia;
4074 inet_aton(argv[4], &ia);
4075
4076 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
4077 if (!ts)
4078 return CMD_WARNING;
4079
4080 lchan = &ts->lchan[ss_nr];
4081
4082 if (ss_nr >= ts_subslots(ts)) {
4083 vty_out(vty, "%% subslot %d >= permitted %d for physical channel %s%s",
4084 ss_nr, ts_subslots(ts), gsm_pchan_name(ts->pchan), VTY_NEWLINE);
4085 return CMD_WARNING;
4086 }
4087
4088 vty_out(vty, "%% connecting RTP of %s to %s:%u%s", gsm_lchan_name(lchan),
4089 inet_ntoa(ia), port, VTY_NEWLINE);
4090 rsl_ipacc_mdcx(lchan, ntohl(ia.s_addr), port, 0);
4091 return CMD_SUCCESS;
4092}
Harald Weltedcccb182010-05-16 20:52:23 +02004093extern int bsc_vty_init_extra(void);
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02004094
Maxdb0e3802017-01-12 19:35:11 +01004095int bsc_vty_init(struct gsm_network *network)
Harald Welte68628e82009-03-10 12:17:57 +00004096{
Harald Welte4ab9d7c2012-08-17 12:42:06 +02004097 cfg_ts_pchan_cmd.string =
4098 vty_cmd_string_from_valstr(tall_bsc_ctx,
4099 gsm_pchant_names,
4100 "phys_chan_config (", "|", ")",
4101 VTY_DO_LOWER);
4102 cfg_ts_pchan_cmd.doc =
4103 vty_cmd_string_from_valstr(tall_bsc_ctx,
4104 gsm_pchant_descs,
4105 "Physical Channel Combination\n",
4106 "\n", "", 0);
4107
Harald Weltee555c2b2012-08-17 13:02:12 +02004108 cfg_bts_type_cmd.string =
4109 vty_cmd_string_from_valstr(tall_bsc_ctx,
4110 bts_type_names,
4111 "type (", "|", ")",
4112 VTY_DO_LOWER);
4113 cfg_bts_type_cmd.doc =
4114 vty_cmd_string_from_valstr(tall_bsc_ctx,
4115 bts_type_descs,
4116 "BTS Vendor/Type\n",
4117 "\n", "", 0);
4118
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +02004119 common_cs_vty_init(network, config_write_net);
Harald Weltee555c2b2012-08-17 13:02:12 +02004120
Neels Hofmeyrea11bf82016-05-12 01:53:23 +02004121 install_element_ve(&bsc_show_net_cmd);
Harald Welteb4d5b172010-05-12 16:10:35 +00004122 install_element_ve(&show_bts_cmd);
4123 install_element_ve(&show_trx_cmd);
4124 install_element_ve(&show_ts_cmd);
4125 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08004126 install_element_ve(&show_lchan_summary_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00004127
Harald Welteb4d5b172010-05-12 16:10:35 +00004128 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01004129 install_element_ve(&show_paging_group_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00004130
Maxdb0e3802017-01-12 19:35:11 +01004131 logging_vty_add_cmds(NULL);
Jacob Erlbeck64630cc2015-10-26 16:25:37 +01004132 osmo_stats_vty_add_cmds();
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01004133
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01004134 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01004135 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01004136 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
4137 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
4138 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
4139 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
4140 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
4141 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01004142 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01004143 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
4144 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
4145 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
4146 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
4147 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
4148 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
4149 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
4150 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
4151 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01004152 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01004153 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08004154 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08004155 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02004156
4157 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02004158 install_node(&bts_node, config_write_bts);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004159 vty_install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00004160 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02004161 install_element(BTS_NODE, &cfg_description_cmd);
4162 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02004163 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02004164 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Maxc08ee712016-05-11 12:45:13 +02004165 install_element(BTS_NODE, &cfg_bts_dtxu_cmd);
4166 install_element(BTS_NODE, &cfg_bts_dtxd_cmd);
4167 install_element(BTS_NODE, &cfg_bts_no_dtxu_cmd);
4168 install_element(BTS_NODE, &cfg_bts_no_dtxd_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00004169 install_element(BTS_NODE, &cfg_bts_lac_cmd);
4170 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004171 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00004172 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b291802013-03-12 13:57:05 +01004173 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02004174 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01004175 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Sipos Csaba56e17662015-02-07 13:27:36 +01004176 install_element(BTS_NODE, &cfg_bts_nokia_site_bts_reset_timer_cnf_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02004177 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004178 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
4179 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02004180 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01004181 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
4182 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02004183 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
4184 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
4185 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08004186 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
4187 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02004188 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08004189 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov67920592013-09-16 13:13:04 +04004190 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02004191 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02004192 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02004193 install_element(BTS_NODE, &cfg_bts_no_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01004194 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
4195 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01004196 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
4197 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
4198 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
4199 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
4200 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
4201 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01004202 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_cmd);
Harald Welte2f8b9d22017-06-18 11:12:13 +03004203 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_inf_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02004204 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
bhargava350533c2016-07-21 11:14:34 +05304205 install_element(BTS_NODE, &cfg_bts_gprs_11bit_rach_support_for_egprs_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02004206 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004207 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01004208 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Max292ec582016-07-28 11:55:37 +02004209 install_element(BTS_NODE, &cfg_bts_gprs_ctrl_ack_cmd);
4210 install_element(BTS_NODE, &cfg_no_bts_gprs_ctrl_ack_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004211 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02004212 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08004213 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004214 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08004215 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
4216 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
4217 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08004218 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02004219 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
4220 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte42def722017-01-13 00:10:32 +01004221 install_element(BTS_NODE, &cfg_bts_early_cm_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01004222 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
4223 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01004224 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Max59a1bf32016-04-15 16:04:46 +02004225 install_element(BTS_NODE, &cfg_bts_si2quater_neigh_add_cmd);
4226 install_element(BTS_NODE, &cfg_bts_si2quater_neigh_del_cmd);
Max26679e02016-04-20 15:57:13 +02004227 install_element(BTS_NODE, &cfg_bts_si2quater_uarfcn_add_cmd);
4228 install_element(BTS_NODE, &cfg_bts_si2quater_uarfcn_del_cmd);
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02004229 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
4230 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01004231 install_element(BTS_NODE, &cfg_bts_force_comb_si_cmd);
4232 install_element(BTS_NODE, &cfg_bts_no_force_comb_si_cmd);
Andreas Eversberga83d5112013-12-07 18:32:28 +01004233 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
4234 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
4235 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
4236 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
4237 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01004238 install_element(BTS_NODE, &cfg_bts_depends_on_cmd);
4239 install_element(BTS_NODE, &cfg_bts_no_depends_on_cmd);
Andreas Eversberg73266522014-01-19 11:47:44 +01004240 install_element(BTS_NODE, &cfg_bts_amr_fr_modes1_cmd);
4241 install_element(BTS_NODE, &cfg_bts_amr_fr_modes2_cmd);
4242 install_element(BTS_NODE, &cfg_bts_amr_fr_modes3_cmd);
4243 install_element(BTS_NODE, &cfg_bts_amr_fr_modes4_cmd);
4244 install_element(BTS_NODE, &cfg_bts_amr_fr_thres1_cmd);
4245 install_element(BTS_NODE, &cfg_bts_amr_fr_thres2_cmd);
4246 install_element(BTS_NODE, &cfg_bts_amr_fr_thres3_cmd);
4247 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst1_cmd);
4248 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst2_cmd);
4249 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst3_cmd);
4250 install_element(BTS_NODE, &cfg_bts_amr_fr_start_mode_cmd);
4251 install_element(BTS_NODE, &cfg_bts_amr_hr_modes1_cmd);
4252 install_element(BTS_NODE, &cfg_bts_amr_hr_modes2_cmd);
4253 install_element(BTS_NODE, &cfg_bts_amr_hr_modes3_cmd);
4254 install_element(BTS_NODE, &cfg_bts_amr_hr_modes4_cmd);
4255 install_element(BTS_NODE, &cfg_bts_amr_hr_thres1_cmd);
4256 install_element(BTS_NODE, &cfg_bts_amr_hr_thres2_cmd);
4257 install_element(BTS_NODE, &cfg_bts_amr_hr_thres3_cmd);
4258 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst1_cmd);
4259 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst2_cmd);
4260 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst3_cmd);
4261 install_element(BTS_NODE, &cfg_bts_amr_hr_start_mode_cmd);
Harald Welte8254cf72017-05-29 13:42:19 +02004262 install_element(BTS_NODE, &cfg_bts_pcu_sock_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004263
Harald Welte5258fc42009-03-28 19:07:53 +00004264 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004265 install_node(&trx_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004266 vty_install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00004267 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02004268 install_element(TRX_NODE, &cfg_description_cmd);
4269 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01004270 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02004271 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004272 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
4273 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01004274 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004275
Harald Welte5258fc42009-03-28 19:07:53 +00004276 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004277 install_node(&ts_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004278 vty_install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02004279 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte4ab9d7c2012-08-17 12:42:06 +02004280 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02004281 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02004282 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02004283 install_element(TS_NODE, &cfg_ts_hsn_cmd);
4284 install_element(TS_NODE, &cfg_ts_maio_cmd);
4285 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
4286 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02004287 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004288
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02004289 install_element(ENABLE_NODE, &drop_bts_cmd);
Holger Hans Peter Freyther740e65f2016-03-16 13:45:23 +01004290 install_element(ENABLE_NODE, &restart_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01004291 install_element(ENABLE_NODE, &pdch_act_cmd);
Harald Welte2abd5e12017-05-27 14:10:40 +02004292 install_element(ENABLE_NODE, &lchan_act_cmd);
Harald Welte3f86c522017-05-27 15:53:28 +02004293 install_element(ENABLE_NODE, &lchan_mdcx_cmd);
Harald Welte30f1f372014-12-28 15:00:45 +01004294 install_element(ENABLE_NODE, &smscb_cmd_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02004295
Harald Welte81c9b9c2010-05-31 16:40:40 +02004296 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01004297 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01004298 e1inp_vty_init();
Harald Welte42def722017-01-13 00:10:32 +01004299 osmo_fsm_vty_add_cmds();
Harald Welte81c9b9c2010-05-31 16:40:40 +02004300
Harald Weltedcccb182010-05-16 20:52:23 +02004301 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00004302
Harald Welte68628e82009-03-10 12:17:57 +00004303 return 0;
4304}