blob: bd363ae55970c02d76586a5905012bf5ed45d915 [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>
Harald Welte3fb8a7b2017-07-18 19:11:49 +020033#include <osmocom/ctrl/control_if.h>
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010034
Harald Welte68628e82009-03-10 12:17:57 +000035#include <arpa/inet.h>
36
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010037#include <osmocom/core/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000038#include <openbsc/gsm_data.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020039#include <osmocom/abis/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000040#include <openbsc/abis_nm.h>
Harald Welte4d54d0b2011-02-19 16:48:17 +010041#include <openbsc/abis_om2000.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010042#include <osmocom/core/utils.h>
43#include <osmocom/gsm/gsm_utils.h>
Harald Weltecdc59ff2011-05-23 20:42:26 +020044#include <osmocom/gsm/abis_nm.h>
Harald Welteb908cb72009-12-22 13:09:29 +010045#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010046#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000047#include <openbsc/db.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020048#include <openbsc/vty.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080049#include <osmocom/gprs/gprs_ns.h>
Harald Welte9fbff4a2010-07-30 11:50:09 +020050#include <openbsc/system_information.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020051#include <openbsc/debug.h>
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010052#include <openbsc/paging.h>
Harald Weltef7a2b192011-08-20 18:25:02 +020053#include <openbsc/ipaccess.h>
Harald Welted0d2b0b2010-12-23 13:18:07 +010054#include <openbsc/abis_rsl.h>
Neels Hofmeyra42855f2017-02-23 21:49:55 +010055#include <openbsc/bsc_msc_data.h>
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +010056#include <openbsc/osmo_bsc_rf.h>
Harald Welte8254cf72017-05-29 13:42:19 +020057#include <openbsc/pcu_if.h>
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +020058#include <openbsc/common_cs.h>
Harald Welte7b423ed2016-06-19 18:06:02 +020059#include <openbsc/vlr.h>
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +020060
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010061#include <inttypes.h>
62
Harald Weltec08e8be2011-03-04 13:53:51 +010063#include "../../bscconfig.h"
Harald Welte1353f962010-05-16 19:20:24 +020064
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020065
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020066#define LCHAN_NR_STR "Logical Channel Number\n"
67
68
Harald Welteea4647d2010-05-12 17:19:53 +000069/* FIXME: this should go to some common file */
70static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020071 { 0, "tns-block" },
72 { 1, "tns-block-retries" },
73 { 2, "tns-reset" },
74 { 3, "tns-reset-retries" },
75 { 4, "tns-test" },
76 { 5, "tns-alive" },
77 { 6, "tns-alive-retries" },
78 { 0, NULL }
79};
80
Harald Welteea4647d2010-05-12 17:19:53 +000081static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020082 { 0, "blocking-timer" },
83 { 1, "blocking-retries" },
84 { 2, "unblocking-retries" },
85 { 3, "reset-timer" },
86 { 4, "reset-retries" },
87 { 5, "suspend-timer" },
88 { 6, "suspend-retries" },
89 { 7, "resume-timer" },
90 { 8, "resume-retries" },
91 { 9, "capability-update-timer" },
92 { 10, "capability-update-retries" },
93 { 0, NULL }
94};
95
Harald Welte64c07d22011-02-15 11:43:27 +010096static const struct value_string bts_neigh_mode_strs[] = {
97 { NL_MODE_AUTOMATIC, "automatic" },
98 { NL_MODE_MANUAL, "manual" },
99 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
100 { 0, NULL }
101};
102
Daniel Willmann7d109832012-05-14 18:43:23 +0200103const struct value_string bts_loc_fix_names[] = {
104 { BTS_LOC_FIX_INVALID, "invalid" },
105 { BTS_LOC_FIX_2D, "fix2d" },
106 { BTS_LOC_FIX_3D, "fix3d" },
107 { 0, NULL }
108};
109
Harald Welte68628e82009-03-10 12:17:57 +0000110struct cmd_node bts_node = {
111 BTS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200112 "%s(config-net-bts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000113 1,
114};
115
116struct cmd_node trx_node = {
117 TRX_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200118 "%s(config-net-bts-trx)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000119 1,
120};
121
122struct cmd_node ts_node = {
123 TS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200124 "%s(config-net-bts-trx-ts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000125 1,
126};
127
128static int dummy_config_write(struct vty *v)
129{
130 return CMD_SUCCESS;
131}
132
133static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
134{
Harald Welte1304b352013-03-15 16:57:33 +0100135 vty_out(vty,"Oper '%s', Admin '%s', Avail '%s'%s",
136 abis_nm_opstate_name(nms->operational),
137 get_value_string(abis_nm_adm_state_names, nms->administrative),
Harald Welte867d9f32011-05-23 20:30:39 +0200138 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000139}
140
Harald Welteb908cb72009-12-22 13:09:29 +0100141static void dump_pchan_load_vty(struct vty *vty, char *prefix,
142 const struct pchan_load *pl)
143{
144 int i;
145
146 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
147 const struct load_counter *lc = &pl->pchan[i];
148 unsigned int percent;
149
150 if (lc->total == 0)
151 continue;
152
153 percent = (lc->used * 100) / lc->total;
154
155 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
156 gsm_pchan_name(i), percent, lc->used, lc->total,
157 VTY_NEWLINE);
158 }
159}
160
Harald Welte68628e82009-03-10 12:17:57 +0000161static void net_dump_vty(struct vty *vty, struct gsm_network *net)
162{
Harald Welteb908cb72009-12-22 13:09:29 +0100163 struct pchan_load pl;
164
Harald Welteef235b52009-03-10 12:34:02 +0000165 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
166 "and has %u BTS%s", net->country_code, net->network_code,
167 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000168 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000169 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000170 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000171 net->name_short, VTY_NEWLINE);
Maxddee01f2016-05-24 14:23:27 +0200172 vty_out(vty, " Authentication policy: %s",
173 gsm_auth_policy_name(net->auth_policy));
174 if (net->authorized_reg_str)
175 vty_out(vty, ", authorized regexp: %s", net->authorized_reg_str);
176 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100177 vty_out(vty, " Location updating reject cause: %u%s",
178 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900179 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
180 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100181 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
182 VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800183 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
184 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100185 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
186 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100187 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
188 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100189 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
190 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100191 network_chan_load(&pl, net);
192 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
193 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100194
195 /* show rf */
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100196 if (net->bsc_data)
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100197 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200198 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100199 VTY_NEWLINE);
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100200 if (net->bsc_data)
Jacob Erlbeck779a7282013-09-11 10:46:57 +0200201 vty_out(vty, " Last RF Lock Command: %s%s",
202 net->bsc_data->rf_ctrl->last_rf_lock_ctrl_command,
203 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000204}
205
Neels Hofmeyrea11bf82016-05-12 01:53:23 +0200206DEFUN(bsc_show_net, bsc_show_net_cmd, "show network",
Harald Welte68628e82009-03-10 12:17:57 +0000207 SHOW_STR "Display information about a GSM NETWORK\n")
208{
Harald Weltedcccb182010-05-16 20:52:23 +0200209 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000210 net_dump_vty(vty, net);
211
212 return CMD_SUCCESS;
213}
214
215static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
216{
Harald Welteedb37782009-05-01 14:59:07 +0000217 struct e1inp_line *line;
218
219 if (!e1l) {
220 vty_out(vty, " None%s", VTY_NEWLINE);
221 return;
222 }
223
224 line = e1l->ts->line;
225
226 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
227 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000228 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000229 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000230 e1l->tei, e1l->sapi, VTY_NEWLINE);
231}
232
233static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
234{
Harald Welteb908cb72009-12-22 13:09:29 +0100235 struct pchan_load pl;
236
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200237 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte557c84e2015-11-20 10:50:24 +0100238 "BSIC %u (NCC=%u, BCC=%u) and %u TRX%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200239 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200240 bts->cell_identity,
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100241 bts->location_area_code, bts->bsic,
Harald Welte557c84e2015-11-20 10:50:24 +0100242 bts->bsic >> 3, bts->bsic & 7,
Harald Weltefcd24452009-06-20 18:15:19 +0200243 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200244 vty_out(vty, "Description: %s%s",
245 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Maxf9685c12017-03-23 12:01:07 +0100246 if (strnlen(bts->pcu_version, MAX_VERSION_LENGTH))
247 vty_out(vty, "PCU version %s connected%s", bts->pcu_version,
248 VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100249 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100250 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100251 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
252 VTY_NEWLINE);
253 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100254 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100255 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
256 VTY_NEWLINE);
257 vty_out(vty, "RACH Max transmissions: %u%s",
258 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
259 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100260 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200261 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +0200262 if (bts->dtxu != GSM48_DTX_SHALL_NOT_BE_USED)
263 vty_out(vty, "Uplink DTX: %s%s",
264 (bts->dtxu != GSM48_DTX_SHALL_BE_USED) ?
265 "enabled" : "forced", VTY_NEWLINE);
266 else
267 vty_out(vty, "Uplink DTX: not enabled%s", VTY_NEWLINE);
268 vty_out(vty, "Downlink DTX: %senabled%s", bts->dtxd ? "" : "not ",
269 VTY_NEWLINE);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200270 vty_out(vty, "Channel Description Attachment: %s%s",
271 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
272 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
273 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
274 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
275 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200276 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
277 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte42def722017-01-13 00:10:32 +0100278 vty_out(vty, "Early Classmark Sending: %s%s",
279 bts->early_classmark_allowed ? "allowed" : "forbidden",
280 VTY_NEWLINE);
Harald Welte8254cf72017-05-29 13:42:19 +0200281 if (bts->pcu_sock_path)
282 vty_out(vty, "PCU Socket Path: %s%s", bts->pcu_sock_path, VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000283 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200284 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000285 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200286 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautc9519462011-10-17 14:04:55 +0200287 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
288 vty_out(vty, " Skip Reset: %d%s",
289 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000290 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200291 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000292 vty_out(vty, " Site Mgr NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200293 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther846d8dc2013-05-29 16:22:09 +0200294 vty_out(vty, " GPRS NSE: ");
295 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
296 vty_out(vty, " GPRS CELL: ");
297 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
298 vty_out(vty, " GPRS NSVC0: ");
299 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
300 vty_out(vty, " GPRS NSVC1: ");
301 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther66e14cd2011-04-26 15:52:34 +0200302 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
303 paging_pending_requests_nr(bts),
Harald Welte68628e82009-03-10 12:17:57 +0000304 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100305 if (is_ipaccess_bts(bts)) {
306 vty_out(vty, " OML Link state: %s.%s",
307 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
308 } else {
Harald Welte8175e952009-10-20 00:22:00 +0200309 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
310 e1isl_dump_vty(vty, bts->oml_link);
311 }
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100312
313 /* FIXME: chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100314 memset(&pl, 0, sizeof(pl));
Neels Hofmeyr2afffd52016-09-25 17:01:20 +0200315 bts_chan_load(&pl, bts);
Harald Welteb908cb72009-12-22 13:09:29 +0100316 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
317 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000318}
319
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100320DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte68628e82009-03-10 12:17:57 +0000321 SHOW_STR "Display information about a BTS\n"
322 "BTS number")
323{
Harald Weltedcccb182010-05-16 20:52:23 +0200324 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000325 int bts_nr;
326
327 if (argc != 0) {
328 /* use the BTS number that the user has specified */
329 bts_nr = atoi(argv[0]);
Harald Welte712ddbc2010-12-24 12:24:03 +0100330 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000331 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000332 VTY_NEWLINE);
333 return CMD_WARNING;
334 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200335 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000336 return CMD_SUCCESS;
337 }
338 /* print all BTS's */
339 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200340 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000341
342 return CMD_SUCCESS;
343}
344
Harald Welte42581822009-08-08 16:12:58 +0200345/* utility functions */
346static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
347 const char *ts, const char *ss)
348{
349 e1_link->e1_nr = atoi(line);
350 e1_link->e1_ts = atoi(ts);
351 if (!strcmp(ss, "full"))
352 e1_link->e1_ts_ss = 255;
353 else
354 e1_link->e1_ts_ss = atoi(ss);
355}
356
357static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
358 const char *prefix)
359{
360 if (!e1_link->e1_ts)
361 return;
362
363 if (e1_link->e1_ts_ss == 255)
364 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
365 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
366 else
367 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
368 prefix, e1_link->e1_nr, e1_link->e1_ts,
369 e1_link->e1_ts_ss, VTY_NEWLINE);
370}
371
372
Harald Welte67ce0732009-08-06 19:06:46 +0200373static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
374{
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100375 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100376 if (ts->tsc != -1)
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100377 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200378 if (ts->pchan != GSM_PCHAN_NONE)
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100379 vty_out(vty, " phys_chan_config %s%s",
Harald Welte42581822009-08-08 16:12:58 +0200380 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100381 vty_out(vty, " hopping enabled %u%s",
Harald Weltea39b0f22010-06-14 22:26:10 +0200382 ts->hopping.enabled, VTY_NEWLINE);
383 if (ts->hopping.enabled) {
384 unsigned int i;
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100385 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200386 ts->hopping.hsn, VTY_NEWLINE);
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100387 vty_out(vty, " hopping maio %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200388 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200389 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
390 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
391 continue;
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100392 vty_out(vty, " hopping arfcn add %u%s",
Harald Weltea39b0f22010-06-14 22:26:10 +0200393 i, VTY_NEWLINE);
394 }
Harald Welte127af342010-12-24 12:07:07 +0100395 }
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100396 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welteface7ed2011-02-14 16:15:21 +0100397
398 if (ts->trx->bts->model->config_write_ts)
399 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte67ce0732009-08-06 19:06:46 +0200400}
401
402static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
403{
404 int i;
405
Harald Welte5013b2a2009-08-07 13:29:14 +0200406 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200407 if (trx->description)
408 vty_out(vty, " description %s%s", trx->description,
409 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200410 vty_out(vty, " rf_locked %u%s",
Harald Welted64c0bc2011-05-30 12:07:53 +0200411 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200412 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200413 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100414 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200415 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200416 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
417 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200418
Harald Welteface7ed2011-02-14 16:15:21 +0100419 if (trx->bts->model->config_write_trx)
420 trx->bts->model->config_write_trx(vty, trx);
421
Harald Welte67ce0732009-08-06 19:06:46 +0200422 for (i = 0; i < TRX_NR_TS; i++)
423 config_write_ts_single(vty, &trx->ts[i]);
424}
425
Harald Welte615e9562010-05-11 23:50:21 +0200426static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
427{
428 unsigned int i;
429 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
430 VTY_NEWLINE);
431 if (bts->gprs.mode == BTS_GPRS_NONE)
432 return;
433
bhargava350533c2016-07-21 11:14:34 +0530434 vty_out(vty, " gprs 11bit_rach_support_for_egprs %u%s",
435 bts->gprs.supports_egprs_11bit_rach, VTY_NEWLINE);
436
Harald Welte615e9562010-05-11 23:50:21 +0200437 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
438 VTY_NEWLINE);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100439 vty_out(vty, " gprs network-control-order nc%u%s",
440 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Max292ec582016-07-28 11:55:37 +0200441 if (!bts->gprs.ctrl_ack_type_use_block)
442 vty_out(vty, " gprs control-ack-type-rach%s", VTY_NEWLINE);
Harald Welte615e9562010-05-11 23:50:21 +0200443 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
444 VTY_NEWLINE);
445 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
446 vty_out(vty, " gprs cell timer %s %u%s",
447 get_value_string(gprs_bssgp_cfg_strs, i),
448 bts->gprs.cell.timer[i], VTY_NEWLINE);
449 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
450 VTY_NEWLINE);
451 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
452 vty_out(vty, " gprs ns timer %s %u%s",
453 get_value_string(gprs_ns_timer_strs, i),
454 bts->gprs.nse.timer[i], VTY_NEWLINE);
455 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
456 struct gsm_bts_gprs_nsvc *nsvc =
457 &bts->gprs.nsvc[i];
458 struct in_addr ia;
459
460 ia.s_addr = htonl(nsvc->remote_ip);
461 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
462 nsvc->nsvci, VTY_NEWLINE);
463 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
464 nsvc->local_port, VTY_NEWLINE);
465 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
466 nsvc->remote_port, VTY_NEWLINE);
467 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
468 inet_ntoa(ia), VTY_NEWLINE);
469 }
470}
471
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200472/* Write the model data if there is one */
473static void config_write_bts_model(struct vty *vty, struct gsm_bts *bts)
Harald Welte67ce0732009-08-06 19:06:46 +0200474{
475 struct gsm_bts_trx *trx;
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200476
477 if (!bts->model)
478 return;
479
480 if (bts->model->config_write_bts)
481 bts->model->config_write_bts(vty, bts);
482
483 llist_for_each_entry(trx, &bts->trx_list, list)
484 config_write_trx_single(vty, trx);
485}
486
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +0200487static void write_amr_modes(struct vty *vty, const char *prefix,
488 const char *name, struct amr_mode *modes, int num)
489{
490 int i;
491
492 vty_out(vty, " %s threshold %s", prefix, name);
493 for (i = 0; i < num - 1; i++)
494 vty_out(vty, " %d", modes[i].threshold);
495 vty_out(vty, "%s", VTY_NEWLINE);
496 vty_out(vty, " %s hysteresis %s", prefix, name);
497 for (i = 0; i < num - 1; i++)
498 vty_out(vty, " %d", modes[i].hysteresis);
499 vty_out(vty, "%s", VTY_NEWLINE);
500}
501
Andreas Eversberg73266522014-01-19 11:47:44 +0100502static void config_write_bts_amr(struct vty *vty, struct gsm_bts *bts,
503 struct amr_multirate_conf *mr, int full)
504{
505 struct gsm48_multi_rate_conf *mr_conf;
506 const char *prefix = (full) ? "amr tch-f" : "amr tch-h";
507 int i, num;
508
509 if (!(mr->gsm48_ie[1]))
510 return;
511
512 mr_conf = (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
513
514 num = 0;
515 vty_out(vty, " %s modes", prefix);
516 for (i = 0; i < ((full) ? 8 : 6); i++) {
517 if ((mr->gsm48_ie[1] & (1 << i))) {
518 vty_out(vty, " %d", i);
519 num++;
520 }
521 }
522 vty_out(vty, "%s", VTY_NEWLINE);
523 if (num > 4)
524 num = 4;
525 if (num > 1) {
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +0200526 write_amr_modes(vty, prefix, "ms", mr->ms_mode, num);
527 write_amr_modes(vty, prefix, "bts", mr->bts_mode, num);
Andreas Eversberg73266522014-01-19 11:47:44 +0100528 }
529 vty_out(vty, " %s start-mode ", prefix);
530 if (mr_conf->icmi) {
531 num = 0;
532 for (i = 0; i < ((full) ? 8 : 6) && num < 4; i++) {
533 if ((mr->gsm48_ie[1] & (1 << i)))
534 num++;
535 if (mr_conf->smod == num - 1) {
536 vty_out(vty, "%d%s", num, VTY_NEWLINE);
537 break;
538 }
539 }
540 } else
541 vty_out(vty, "auto%s", VTY_NEWLINE);
542}
543
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200544static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
545{
Harald Welte9fbff4a2010-07-30 11:50:09 +0200546 int i;
Max2c16bee2017-02-15 13:51:37 +0100547 uint8_t tmp;
Harald Welte67ce0732009-08-06 19:06:46 +0200548
Harald Welte5013b2a2009-08-07 13:29:14 +0200549 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
550 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200551 if (bts->description)
552 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200553 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100554 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200555 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200556 VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +0200557 if (bts->dtxu != GSM48_DTX_SHALL_NOT_BE_USED)
558 vty_out(vty, " dtx uplink%s%s",
559 (bts->dtxu != GSM48_DTX_SHALL_BE_USED) ? "" : " force",
560 VTY_NEWLINE);
561 if (bts->dtxd)
562 vty_out(vty, " dtx downlink%s", VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200563 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200564 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100565 vty_out(vty, " cell reselection hysteresis %u%s",
566 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
567 vty_out(vty, " rxlev access min %u%s",
568 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100569
570 if (bts->si_common.cell_ro_sel_par.present) {
571 struct gsm48_si_selection_params *sp;
572 sp = &bts->si_common.cell_ro_sel_par;
573
574 if (sp->cbq)
575 vty_out(vty, " cell bar qualify %u%s",
576 sp->cbq, VTY_NEWLINE);
577
578 if (sp->cell_resel_off)
579 vty_out(vty, " cell reselection offset %u%s",
580 sp->cell_resel_off*2, VTY_NEWLINE);
581
582 if (sp->temp_offs == 7)
583 vty_out(vty, " temporary offset infinite%s",
584 VTY_NEWLINE);
585 else if (sp->temp_offs)
586 vty_out(vty, " temporary offset %u%s",
587 sp->temp_offs*10, VTY_NEWLINE);
588
589 if (sp->penalty_time == 31)
590 vty_out(vty, " penalty time reserved%s",
591 VTY_NEWLINE);
592 else if (sp->penalty_time)
593 vty_out(vty, " penalty time %u%s",
594 (sp->penalty_time*20)+20, VTY_NEWLINE);
595 }
596
Harald Welte2f8b9d22017-06-18 11:12:13 +0300597 if (gsm_bts_get_radio_link_timeout(bts) < 0)
598 vty_out(vty, " radio-link-timeout infinite%s", VTY_NEWLINE);
599 else
600 vty_out(vty, " radio-link-timeout %d%s",
601 gsm_bts_get_radio_link_timeout(bts), VTY_NEWLINE);
Neels Hofmeyr0e5a7c42017-05-08 15:12:20 +0200602
Harald Welte7a8fa412009-08-10 13:48:16 +0200603 vty_out(vty, " channel allocator %s%s",
604 bts->chan_alloc_reverse ? "descending" : "ascending",
605 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100606 vty_out(vty, " rach tx integer %u%s",
607 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
608 vty_out(vty, " rach max transmission %u%s",
609 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
610 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800611
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200612 vty_out(vty, " channel-descrption attach %u%s",
613 bts->si_common.chan_desc.att, VTY_NEWLINE);
614 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
615 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
616 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
617 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
618
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800619 if (bts->rach_b_thresh != -1)
620 vty_out(vty, " rach nm busy threshold %u%s",
621 bts->rach_b_thresh, VTY_NEWLINE);
622 if (bts->rach_ldavg_slots != -1)
623 vty_out(vty, " rach nm load average %u%s",
624 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100625 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200626 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800627 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
628 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov67920592013-09-16 13:13:04 +0400629 if ((bts->si_common.rach_control.t3) != 0)
630 for (i = 0; i < 8; i++)
631 if (bts->si_common.rach_control.t3 & (0x1 << i))
632 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
633 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
634 for (i = 0; i < 8; i++)
635 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
636 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200637 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
638 if (bts->si_mode_static & (1 << i)) {
639 vty_out(vty, " system-information %s mode static%s",
640 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
641 vty_out(vty, " system-information %s static %s%s",
642 get_value_string(osmo_sitype_strs, i),
Max6f0e50c2017-04-12 15:30:54 +0200643 osmo_hexdump_nospc(GSM_BTS_SI(bts, i), GSM_MACBLOCK_LEN),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200644 VTY_NEWLINE);
645 }
646 }
Harald Welte42def722017-01-13 00:10:32 +0100647 vty_out(vty, " early-classmark-sending %s%s",
648 bts->early_classmark_allowed ? "allowed" : "forbidden", VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100649 switch (bts->type) {
650 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100651 case GSM_BTS_TYPE_OSMOBTS:
Harald Welte5013b2a2009-08-07 13:29:14 +0200652 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200653 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b291802013-03-12 13:57:05 +0100654 if (bts->ip_access.rsl_ip) {
655 struct in_addr ia;
656 ia.s_addr = htonl(bts->ip_access.rsl_ip);
657 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
658 VTY_NEWLINE);
659 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200660 vty_out(vty, " oml ip.access stream_id %u line %u%s",
661 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100662 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200663 case GSM_BTS_TYPE_NOKIA_SITE:
664 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100665 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
666 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Sipos Csaba56e17662015-02-07 13:27:36 +0100667 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 +0100668 /* fall through: Nokia requires "oml e1" parameters also */
Harald Weltefd355a32011-03-04 13:41:31 +0100669 default:
Harald Welte42581822009-08-08 16:12:58 +0200670 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
671 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100672 break;
Harald Welte42581822009-08-08 16:12:58 +0200673 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800674
675 /* if we have a limit, write it */
676 if (bts->paging.free_chans_need >= 0)
677 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
678
Harald Welte32c09622011-01-11 23:44:56 +0100679 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100680 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
681 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100682 for (i = 0; i < 1024; i++) {
683 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
684 vty_out(vty, " neighbor-list add arfcn %u%s",
685 i, VTY_NEWLINE);
686 }
687 }
Harald Welte64c07d22011-02-15 11:43:27 +0100688 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
689 for (i = 0; i < 1024; i++) {
690 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
691 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
692 i, VTY_NEWLINE);
693 }
694 }
Harald Welte32c09622011-01-11 23:44:56 +0100695
Max59a1bf32016-04-15 16:04:46 +0200696 for (i = 0; i < MAX_EARFCN_LIST; i++) {
Max2c16bee2017-02-15 13:51:37 +0100697 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
698 if (e->arfcn[i] != OSMO_EARFCN_INVALID) {
699 vty_out(vty, " si2quater neighbor-list add earfcn %u "
700 "thresh-hi %u", e->arfcn[i], e->thresh_hi);
701
702 vty_out(vty, " thresh-lo %u",
703 e->thresh_lo_valid ? e->thresh_lo : 32);
704
705 vty_out(vty, " prio %u",
706 e->prio_valid ? e->prio : 8);
707
708 vty_out(vty, " qrxlv %u",
709 e->qrxlm_valid ? e->qrxlm : 32);
710
711 tmp = e->meas_bw[i];
712 vty_out(vty, " meas %u",
713 (tmp != OSMO_EARFCN_MEAS_INVALID) ? tmp : 8);
Max59a1bf32016-04-15 16:04:46 +0200714
715 vty_out(vty, "%s", VTY_NEWLINE);
716 }
717 }
718
Max26679e02016-04-20 15:57:13 +0200719 for (i = 0; i < bts->si_common.uarfcn_length; i++) {
720 vty_out(vty, " si2quater neighbor-list add uarfcn %u %u %u%s",
721 bts->si_common.data.uarfcn_list[i],
722 bts->si_common.data.scramble_list[i] & ~(1 << 9),
723 (bts->si_common.data.scramble_list[i] >> 9) & 1,
724 VTY_NEWLINE);
725 }
726
Andreas Eversberga83d5112013-12-07 18:32:28 +0100727 vty_out(vty, " codec-support fr");
728 if (bts->codec.hr)
729 vty_out(vty, " hr");
730 if (bts->codec.efr)
731 vty_out(vty, " efr");
732 if (bts->codec.amr)
733 vty_out(vty, " amr");
734 vty_out(vty, "%s", VTY_NEWLINE);
735
Andreas Eversberg73266522014-01-19 11:47:44 +0100736 config_write_bts_amr(vty, bts, &bts->mr_full, 1);
737 config_write_bts_amr(vty, bts, &bts->mr_half, 0);
738
Harald Welte615e9562010-05-11 23:50:21 +0200739 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200740
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200741 if (bts->excl_from_rf_lock)
742 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
743
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100744 vty_out(vty, " %sforce-combined-si%s",
745 bts->force_combined_si ? "" : "no ", VTY_NEWLINE);
746
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100747 for (i = 0; i < ARRAY_SIZE(bts->depends_on); ++i) {
748 int j;
749
750 if (bts->depends_on[i] == 0)
751 continue;
752
753 for (j = 0; j < sizeof(bts->depends_on[i]) * 8; ++j) {
754 int bts_nr;
755
756 if ((bts->depends_on[i] & (1<<j)) == 0)
757 continue;
758
759 bts_nr = (i * sizeof(bts->depends_on[i]) * 8) + j;
760 vty_out(vty, " depends-on-bts %d%s", bts_nr, VTY_NEWLINE);
761 }
762 }
Harald Welte8254cf72017-05-29 13:42:19 +0200763 if (bts->pcu_sock_path)
764 vty_out(vty, " pcu-socket %s%s", bts->pcu_sock_path, VTY_NEWLINE);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100765
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200766 config_write_bts_model(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200767}
768
769static int config_write_bts(struct vty *v)
770{
Harald Weltedcccb182010-05-16 20:52:23 +0200771 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200772 struct gsm_bts *bts;
773
774 llist_for_each_entry(bts, &gsmnet->bts_list, list)
775 config_write_bts_single(v, bts);
776
777 return CMD_SUCCESS;
778}
779
Harald Welted5429bb2017-07-20 01:47:39 +0200780/* small helper macro for conditional dumping of timer */
781#define VTY_OUT_TIMER(number) \
782 if (gsmnet->T##number != GSM_T##number##_DEFAULT) \
783 vty_out(vty, " timer t"#number" %u%s", gsmnet->T##number, VTY_NEWLINE)
784
Harald Welte5013b2a2009-08-07 13:29:14 +0200785static int config_write_net(struct vty *vty)
786{
Harald Weltedcccb182010-05-16 20:52:23 +0200787 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
788
Harald Welte5013b2a2009-08-07 13:29:14 +0200789 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200790 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200791 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200792 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
793 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200794 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Maxddee01f2016-05-24 14:23:27 +0200795 if (gsmnet->authorized_reg_str)
796 vty_out(vty, " authorized-regexp %s%s", gsmnet->authorized_reg_str, VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100797 vty_out(vty, " location updating reject cause %u%s",
798 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900799 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Harald Welte7b423ed2016-06-19 18:06:02 +0200800 vty_out(vty, " authentication %s%s",
801 gsmnet->authentication_required ? "required" : "optional",
802 VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100803 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800804 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100805 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
806 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100807 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100808 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100809 vty_out(vty, " handover window rxlev averaging %u%s",
810 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
811 vty_out(vty, " handover window rxqual averaging %u%s",
812 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
813 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
814 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
815 vty_out(vty, " handover power budget interval %u%s",
816 gsmnet->handover.pwr_interval, VTY_NEWLINE);
817 vty_out(vty, " handover power budget hysteresis %u%s",
818 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
819 vty_out(vty, " handover maximum distance %u%s",
820 gsmnet->handover.max_distance, VTY_NEWLINE);
Harald Welted5429bb2017-07-20 01:47:39 +0200821 VTY_OUT_TIMER(3101);
822 VTY_OUT_TIMER(3103);
823 VTY_OUT_TIMER(3105);
824 VTY_OUT_TIMER(3107);
825 VTY_OUT_TIMER(3109);
826 VTY_OUT_TIMER(3111);
827 VTY_OUT_TIMER(3113);
828 VTY_OUT_TIMER(3115);
829 VTY_OUT_TIMER(3117);
830 VTY_OUT_TIMER(3119);
831 VTY_OUT_TIMER(3122);
832 VTY_OUT_TIMER(3141);
Vadim Yanitskiy7f3724e2017-03-31 23:27:44 +0700833 vty_out(vty, " dyn_ts_allow_tch_f %d%s",
834 gsmnet->dyn_ts_allow_tch_f ? 1 : 0, VTY_NEWLINE);
Neels Hofmeyr73983952016-05-10 13:29:33 +0200835 if (gsmnet->tz.override != 0) {
836 if (gsmnet->tz.dst)
837 vty_out(vty, " timezone %d %d %d%s",
838 gsmnet->tz.hr, gsmnet->tz.mn, gsmnet->tz.dst,
839 VTY_NEWLINE);
840 else
841 vty_out(vty, " timezone %d %d%s",
842 gsmnet->tz.hr, gsmnet->tz.mn, VTY_NEWLINE);
843 }
Neels Hofmeyr0e5a7c42017-05-08 15:12:20 +0200844 if (gsmnet->t3212 == 0)
845 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
846 else
847 vty_out(vty, " periodic location update %u%s",
848 gsmnet->t3212 * 6, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200849
850 return CMD_SUCCESS;
851}
Harald Welte67ce0732009-08-06 19:06:46 +0200852
Harald Welte68628e82009-03-10 12:17:57 +0000853static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
854{
855 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
856 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200857 vty_out(vty, "Description: %s%s",
858 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200859 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200860 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200861 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200862 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000863 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200864 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000865 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200866 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200867 if (is_ipaccess_bts(trx->bts)) {
868 vty_out(vty, " ip.access stream ID: 0x%02x%s",
869 trx->rsl_tei, VTY_NEWLINE);
870 } else {
871 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
872 e1isl_dump_vty(vty, trx->rsl_link);
873 }
Harald Welte68628e82009-03-10 12:17:57 +0000874}
875
876DEFUN(show_trx,
877 show_trx_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100878 "show trx [<0-255>] [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200879 SHOW_STR "Display information about a TRX\n"
880 "BTS Number\n"
881 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000882{
Harald Weltedcccb182010-05-16 20:52:23 +0200883 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000884 struct gsm_bts *bts = NULL;
885 struct gsm_bts_trx *trx;
886 int bts_nr, trx_nr;
887
888 if (argc >= 1) {
889 /* use the BTS number that the user has specified */
890 bts_nr = atoi(argv[0]);
891 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000892 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000893 VTY_NEWLINE);
894 return CMD_WARNING;
895 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200896 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000897 }
898 if (argc >= 2) {
899 trx_nr = atoi(argv[1]);
900 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000901 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000902 VTY_NEWLINE);
903 return CMD_WARNING;
904 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200905 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000906 trx_dump_vty(vty, trx);
907 return CMD_SUCCESS;
908 }
909 if (bts) {
910 /* print all TRX in this BTS */
911 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200912 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000913 trx_dump_vty(vty, trx);
914 }
915 return CMD_SUCCESS;
916 }
917
918 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200919 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000920 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200921 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000922 trx_dump_vty(vty, trx);
923 }
924 }
925
926 return CMD_SUCCESS;
927}
928
Harald Welte67ce0732009-08-06 19:06:46 +0200929
Harald Welte68628e82009-03-10 12:17:57 +0000930static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
931{
Harald Welte135a6482011-05-30 12:09:13 +0200932 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100933 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte1fe24122014-01-19 17:18:21 +0100934 gsm_pchan_name(ts->pchan), gsm_ts_tsc(ts));
Harald Weltecd103a92010-12-24 12:14:52 +0100935 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100936 vty_out(vty, " (%s mode)",
Neels Hofmeyr2ebacce2016-06-14 14:08:35 +0200937 ts->flags & TS_F_PDCH_ACTIVE ? "PDCH" : "TCH/F");
Harald Weltecd103a92010-12-24 12:14:52 +0100938 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000939 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200940 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530941 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000942 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
943 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
944 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000945}
946
947DEFUN(show_ts,
948 show_ts_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100949 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200950 SHOW_STR "Display information about a TS\n"
951 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000952{
Harald Weltedcccb182010-05-16 20:52:23 +0200953 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100954 struct gsm_bts *bts = NULL;
955 struct gsm_bts_trx *trx = NULL;
956 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000957 int bts_nr, trx_nr, ts_nr;
958
959 if (argc >= 1) {
960 /* use the BTS number that the user has specified */
961 bts_nr = atoi(argv[0]);
962 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000963 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000964 VTY_NEWLINE);
965 return CMD_WARNING;
966 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200967 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000968 }
969 if (argc >= 2) {
970 trx_nr = atoi(argv[1]);
971 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000972 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000973 VTY_NEWLINE);
974 return CMD_WARNING;
975 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200976 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000977 }
978 if (argc >= 3) {
979 ts_nr = atoi(argv[2]);
980 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000981 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000982 VTY_NEWLINE);
983 return CMD_WARNING;
984 }
Harald Welte274d0152010-12-24 12:05:03 +0100985 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000986 ts = &trx->ts[ts_nr];
987 ts_dump_vty(vty, ts);
988 return CMD_SUCCESS;
989 }
Harald Welte274d0152010-12-24 12:05:03 +0100990
991 if (bts && trx) {
992 /* Iterate over all TS in this TRX */
993 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
994 ts = &trx->ts[ts_nr];
995 ts_dump_vty(vty, ts);
996 }
997 } else if (bts) {
998 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000999 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001000 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +00001001 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1002 ts = &trx->ts[ts_nr];
1003 ts_dump_vty(vty, ts);
1004 }
1005 }
Harald Welte274d0152010-12-24 12:05:03 +01001006 } else {
1007 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
1008 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
1009 bts = gsm_bts_num(net, bts_nr);
1010 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1011 trx = gsm_bts_trx_num(bts, trx_nr);
1012 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1013 ts = &trx->ts[ts_nr];
1014 ts_dump_vty(vty, ts);
1015 }
1016 }
1017 }
Harald Welte68628e82009-03-10 12:17:57 +00001018 }
1019
1020 return CMD_SUCCESS;
1021}
1022
Harald Welte7b423ed2016-06-19 18:06:02 +02001023static void subscr_dump_vty(struct vty *vty, struct vlr_subscr *vsub)
Harald Welte68628e82009-03-10 12:17:57 +00001024{
Harald Welte7b423ed2016-06-19 18:06:02 +02001025 OSMO_ASSERT(vsub);
1026 if (strlen(vsub->name))
1027 vty_out(vty, " Name: '%s'%s", vsub->name, VTY_NEWLINE);
1028 if (strlen(vsub->msisdn))
1029 vty_out(vty, " Extension: %s%s", vsub->msisdn,
Harald Welte68628e82009-03-10 12:17:57 +00001030 VTY_NEWLINE);
Harald Welte7b423ed2016-06-19 18:06:02 +02001031 if (strlen(vsub->imsi))
1032 vty_out(vty, " IMSI: %s%s", vsub->imsi, VTY_NEWLINE);
1033 if (vsub->tmsi != GSM_RESERVED_TMSI)
1034 vty_out(vty, " TMSI: %08X%s", vsub->tmsi,
1035 VTY_NEWLINE);
1036 if (vsub->tmsi_new != GSM_RESERVED_TMSI)
1037 vty_out(vty, " new TMSI: %08X%s", vsub->tmsi_new,
Harald Welte731fd912009-08-15 03:24:51 +02001038 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +01001039
Harald Welte7b423ed2016-06-19 18:06:02 +02001040 vty_out(vty, " Use count: %u%s", vsub->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +00001041}
1042
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001043static void bsc_subscr_dump_vty(struct vty *vty, struct bsc_subscr *bsub)
1044{
1045 if (strlen(bsub->imsi))
1046 vty_out(vty, " IMSI: %s%s", bsub->imsi, VTY_NEWLINE);
1047 if (bsub->tmsi != GSM_RESERVED_TMSI)
1048 vty_out(vty, " TMSI: 0x%08x%s", bsub->tmsi,
1049 VTY_NEWLINE);
1050 vty_out(vty, " Use count: %d%s", bsub->use_count, VTY_NEWLINE);
1051}
1052
Harald Welte8387a492009-12-22 21:43:14 +01001053static void meas_rep_dump_uni_vty(struct vty *vty,
1054 struct gsm_meas_rep_unidir *mru,
1055 const char *prefix,
1056 const char *dir)
1057{
1058 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
1059 prefix, dir, rxlev2dbm(mru->full.rx_lev),
1060 dir, rxlev2dbm(mru->sub.rx_lev));
1061 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
1062 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
1063 VTY_NEWLINE);
1064}
1065
1066static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
1067 const char *prefix)
1068{
1069 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
1070 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
1071 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
1072 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
1073 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
1074 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
1075 VTY_NEWLINE);
1076 if (mr->flags & MEAS_REP_F_MS_TO)
Max11e4e412017-04-20 13:07:58 +02001077 vty_out(vty, "%s MS Timing Offset: %d%s", prefix, mr->ms_timing_offset, VTY_NEWLINE);
Harald Welte8387a492009-12-22 21:43:14 +01001078 if (mr->flags & MEAS_REP_F_MS_L1)
1079 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
1080 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
1081 if (mr->flags & MEAS_REP_F_DL_VALID)
1082 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
1083 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
1084}
1085
Harald Welte0a8cf322015-12-05 17:22:49 +01001086/* FIXME: move this to libosmogsm */
1087static const struct value_string gsm48_cmode_names[] = {
1088 { GSM48_CMODE_SIGN, "signalling" },
1089 { GSM48_CMODE_SPEECH_V1, "FR or HR" },
1090 { GSM48_CMODE_SPEECH_EFR, "EFR" },
1091 { GSM48_CMODE_SPEECH_AMR, "AMR" },
1092 { GSM48_CMODE_DATA_14k5, "CSD(14k5)" },
1093 { GSM48_CMODE_DATA_12k0, "CSD(12k0)" },
1094 { GSM48_CMODE_DATA_6k0, "CSD(6k0)" },
1095 { GSM48_CMODE_DATA_3k6, "CSD(3k6)" },
1096 { 0, NULL }
1097};
1098
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001099/* call vty_out() to print a string like " as TCH/H" for dynamic timeslots.
1100 * Don't do anything if the ts is not dynamic. */
1101static void vty_out_dyn_ts_status(struct vty *vty, struct gsm_bts_trx_ts *ts)
1102{
1103 switch (ts->pchan) {
1104 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
1105 if (ts->dyn.pchan_is == ts->dyn.pchan_want)
1106 vty_out(vty, " as %s",
1107 gsm_pchan_name(ts->dyn.pchan_is));
1108 else
1109 vty_out(vty, " switching %s -> %s",
1110 gsm_pchan_name(ts->dyn.pchan_is),
1111 gsm_pchan_name(ts->dyn.pchan_want));
1112 break;
1113 case GSM_PCHAN_TCH_F_PDCH:
1114 if ((ts->flags & TS_F_PDCH_PENDING_MASK) == 0)
1115 vty_out(vty, " as %s",
1116 (ts->flags & TS_F_PDCH_ACTIVE)? "PDCH"
1117 : "TCH/F");
1118 else
1119 vty_out(vty, " switching %s -> %s",
1120 (ts->flags & TS_F_PDCH_ACTIVE)? "PDCH"
1121 : "TCH/F",
1122 (ts->flags & TS_F_PDCH_ACT_PENDING)? "PDCH"
1123 : "TCH/F");
1124 break;
1125 default:
1126 /* no dyn ts */
1127 break;
1128 }
1129}
1130
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001131static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +00001132{
Harald Welte8387a492009-12-22 21:43:14 +01001133 int idx;
1134
Harald Welte85bded82010-12-24 12:22:34 +01001135 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
1136 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1137 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001138 /* show dyn TS details, if applicable */
1139 switch (lchan->ts->pchan) {
1140 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
1141 vty_out(vty, " Osmocom Dyn TS:");
1142 vty_out_dyn_ts_status(vty, lchan->ts);
1143 vty_out(vty, VTY_NEWLINE);
1144 break;
1145 case GSM_PCHAN_TCH_F_PDCH:
1146 vty_out(vty, " IPACC Dyn PDCH TS:");
1147 vty_out_dyn_ts_status(vty, lchan->ts);
1148 vty_out(vty, VTY_NEWLINE);
1149 break;
1150 default:
1151 /* no dyn ts */
1152 break;
1153 }
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001154 vty_out(vty, " Connection: %u, State: %s%s%s%s",
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +08001155 lchan->conn ? 1: 0,
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001156 gsm_lchans_name(lchan->state),
1157 lchan->state == LCHAN_S_BROKEN ? " Error reason: " : "",
1158 lchan->state == LCHAN_S_BROKEN ? lchan->broken_reason : "",
1159 VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +01001160 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
1161 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
1162 - lchan->bs_power*2,
1163 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
1164 VTY_NEWLINE);
Harald Welte0a8cf322015-12-05 17:22:49 +01001165 vty_out(vty, " Channel Mode / Codec: %s%s",
1166 get_value_string(gsm48_cmode_names, lchan->tch_mode),
1167 VTY_NEWLINE);
Harald Welte7b423ed2016-06-19 18:06:02 +02001168 if (lchan->conn && lchan->conn->vsub) {
Harald Welte68628e82009-03-10 12:17:57 +00001169 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Harald Welte7b423ed2016-06-19 18:06:02 +02001170 subscr_dump_vty(vty, lchan->conn->vsub);
Harald Welte68628e82009-03-10 12:17:57 +00001171 } else
1172 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +05301173 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
1174 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +02001175 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +05301176 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
1177 inet_ntoa(ia), lchan->abis_ip.bound_port,
1178 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
1179 VTY_NEWLINE);
1180 }
Harald Welte8387a492009-12-22 21:43:14 +01001181
1182 /* we want to report the last measurement report */
1183 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1184 lchan->meas_rep_idx, 1);
1185 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +00001186}
1187
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001188static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
1189{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001190 struct gsm_meas_rep *mr;
1191 int idx;
1192
1193 /* we want to report the last measurement report */
1194 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1195 lchan->meas_rep_idx, 1);
1196 mr = &lchan->meas_rep[idx];
1197
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001198 vty_out(vty, "BTS %u, TRX %u, Timeslot %u %s",
Harald Welte85bded82010-12-24 12:22:34 +01001199 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001200 gsm_pchan_name(lchan->ts->pchan));
1201 vty_out_dyn_ts_status(vty, lchan->ts);
1202 vty_out(vty, ", Lchan %u, Type %s, State %s - "
1203 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
Neels Hofmeyrefedf802016-06-14 01:31:38 +02001204 lchan->nr,
1205 gsm_lchant_name(lchan->type), gsm_lchans_name(lchan->state),
1206 mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001207 rxlev2dbm(mr->dl.full.rx_lev),
1208 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001209 VTY_NEWLINE);
1210}
1211
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001212
1213static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
1214 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1215{
1216 int lchan_nr;
1217 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
1218 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
1219 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
1220 continue;
1221 dump_cb(vty, lchan);
1222 }
1223
1224 return CMD_SUCCESS;
1225}
1226
1227static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1228 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1229{
1230 int ts_nr;
1231
1232 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1233 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1234 dump_lchan_trx_ts(ts, vty, dump_cb);
1235 }
1236
1237 return CMD_SUCCESS;
1238}
1239
1240static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1241 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1242{
1243 int trx_nr;
1244
1245 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1246 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1247 dump_lchan_trx(trx, vty, dump_cb);
1248 }
1249
1250 return CMD_SUCCESS;
1251}
1252
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001253static int lchan_summary(struct vty *vty, int argc, const char **argv,
1254 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +00001255{
Harald Weltedcccb182010-05-16 20:52:23 +02001256 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +00001257 struct gsm_bts *bts;
1258 struct gsm_bts_trx *trx;
1259 struct gsm_bts_trx_ts *ts;
1260 struct gsm_lchan *lchan;
1261 int bts_nr, trx_nr, ts_nr, lchan_nr;
1262
1263 if (argc >= 1) {
1264 /* use the BTS number that the user has specified */
1265 bts_nr = atoi(argv[0]);
1266 if (bts_nr >= net->num_bts) {
1267 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1268 VTY_NEWLINE);
1269 return CMD_WARNING;
1270 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001271 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001272
1273 if (argc == 1)
1274 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001275 }
1276 if (argc >= 2) {
1277 trx_nr = atoi(argv[1]);
1278 if (trx_nr >= bts->num_trx) {
1279 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1280 VTY_NEWLINE);
1281 return CMD_WARNING;
1282 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001283 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001284
1285 if (argc == 2)
1286 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001287 }
1288 if (argc >= 3) {
1289 ts_nr = atoi(argv[2]);
1290 if (ts_nr >= TRX_NR_TS) {
1291 vty_out(vty, "%% can't find TS %s%s", argv[2],
1292 VTY_NEWLINE);
1293 return CMD_WARNING;
1294 }
1295 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001296
1297 if (argc == 3)
1298 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001299 }
1300 if (argc >= 4) {
1301 lchan_nr = atoi(argv[3]);
1302 if (lchan_nr >= TS_MAX_LCHAN) {
1303 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1304 VTY_NEWLINE);
1305 return CMD_WARNING;
1306 }
1307 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001308 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001309 return CMD_SUCCESS;
1310 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001311
1312
Harald Welte68628e82009-03-10 12:17:57 +00001313 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001314 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001315 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001316 }
1317
1318 return CMD_SUCCESS;
1319}
1320
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001321
1322DEFUN(show_lchan,
1323 show_lchan_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001324 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001325 SHOW_STR "Display information about a logical channel\n"
1326 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001327 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001328
1329{
1330 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1331}
1332
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001333DEFUN(show_lchan_summary,
1334 show_lchan_summary_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001335 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001336 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001337 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001338 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001339 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001340{
1341 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1342}
1343
Harald Weltebe4b7302009-05-23 16:59:33 +00001344static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001345{
1346 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001347 bsc_subscr_dump_vty(vty, pag->bsub);
Harald Weltef5025b62009-03-28 16:55:11 +00001348}
1349
Harald Weltebe4b7302009-05-23 16:59:33 +00001350static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001351{
1352 struct gsm_paging_request *pag;
1353
Holger Hans Peter Freyther9b5192b2013-03-03 11:03:17 +01001354 if (!bts->paging.bts)
1355 return;
1356
Harald Weltef5025b62009-03-28 16:55:11 +00001357 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1358 paging_dump_vty(vty, pag);
1359}
1360
1361DEFUN(show_paging,
1362 show_paging_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001363 "show paging [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001364 SHOW_STR "Display information about paging reuqests of a BTS\n"
1365 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001366{
Harald Weltedcccb182010-05-16 20:52:23 +02001367 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001368 struct gsm_bts *bts;
1369 int bts_nr;
1370
1371 if (argc >= 1) {
1372 /* use the BTS number that the user has specified */
1373 bts_nr = atoi(argv[0]);
1374 if (bts_nr >= net->num_bts) {
1375 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1376 VTY_NEWLINE);
1377 return CMD_WARNING;
1378 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001379 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001380 bts_paging_dump_vty(vty, bts);
1381
1382 return CMD_SUCCESS;
1383 }
1384 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001385 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001386 bts_paging_dump_vty(vty, bts);
1387 }
1388
1389 return CMD_SUCCESS;
1390}
1391
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01001392DEFUN(show_paging_group,
1393 show_paging_group_cmd,
1394 "show paging-group <0-255> IMSI",
1395 SHOW_STR "Display the paging group\n"
1396 "BTS Number\n" "IMSI\n")
1397{
1398 struct gsm_network *net = gsmnet_from_vty(vty);
1399 struct gsm_bts *bts;
1400 unsigned int page_group;
1401 int bts_nr = atoi(argv[0]);
1402
1403 if (bts_nr >= net->num_bts) {
1404 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1405 return CMD_WARNING;
1406 }
1407
1408 bts = gsm_bts_num(net, bts_nr);
1409 if (!bts) {
1410 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1411 return CMD_WARNING;
1412 }
1413
1414 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1415 str_to_imsi(argv[1]));
1416 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1417 str_to_imsi(argv[1]), bts->nr,
1418 page_group, VTY_NEWLINE);
1419 return CMD_SUCCESS;
1420}
1421
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001422DEFUN(cfg_net_neci,
1423 cfg_net_neci_cmd,
1424 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001425 "New Establish Cause Indication\n"
1426 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001427{
Harald Weltedcccb182010-05-16 20:52:23 +02001428 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1429
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001430 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001431 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001432 return CMD_SUCCESS;
1433}
1434
Harald Welte8f0ed552010-05-11 21:53:49 +02001435#define HANDOVER_STR "Handover Options\n"
1436
Harald Weltebc814502009-12-19 21:41:52 +01001437DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1438 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001439 HANDOVER_STR
1440 "Don't perform in-call handover\n"
1441 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001442{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001443 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001444 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001445
1446 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001447 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1448 "is enabled by using the -P command line option%s",
1449 VTY_NEWLINE);
1450 return CMD_WARNING;
1451 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001452 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001453
1454 return CMD_SUCCESS;
1455}
1456
Harald Welte8f0ed552010-05-11 21:53:49 +02001457#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1458#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1459#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1460#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001461#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001462
Harald Welteb720bd32009-12-21 16:51:50 +01001463DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1464 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001465 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001466 "How many RxLev measurements are used for averaging\n"
1467 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001468{
Harald Weltedcccb182010-05-16 20:52:23 +02001469 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001470 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1471 return CMD_SUCCESS;
1472}
1473
1474DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1475 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001476 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001477 "How many RxQual measurements are used for averaging\n"
1478 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001479{
Harald Weltedcccb182010-05-16 20:52:23 +02001480 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001481 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1482 return CMD_SUCCESS;
1483}
1484
1485DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1486 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001487 HO_WIN_RXLEV_STR "Neighbor\n"
1488 "How many RxQual measurements are used for averaging\n"
1489 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001490{
Harald Weltedcccb182010-05-16 20:52:23 +02001491 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001492 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1493 return CMD_SUCCESS;
1494}
1495
1496DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1497 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001498 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001499 "How often to check if we have a better cell (SACCH frames)\n"
1500 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001501{
Harald Weltedcccb182010-05-16 20:52:23 +02001502 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001503 gsmnet->handover.pwr_interval = atoi(argv[0]);
1504 return CMD_SUCCESS;
1505}
1506
1507DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1508 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001509 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001510 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1511 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001512{
Harald Weltedcccb182010-05-16 20:52:23 +02001513 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001514 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1515 return CMD_SUCCESS;
1516}
1517
1518DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1519 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001520 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001521 "How big is the maximum timing advance before HO is forced\n"
1522 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001523{
Harald Weltedcccb182010-05-16 20:52:23 +02001524 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001525 gsmnet->handover.max_distance = atoi(argv[0]);
1526 return CMD_SUCCESS;
1527}
Harald Weltebc814502009-12-19 21:41:52 +01001528
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001529DEFUN(cfg_net_pag_any_tch,
1530 cfg_net_pag_any_tch_cmd,
1531 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001532 "Assign a TCH when receiving a Paging Any request\n"
1533 "Any Channel\n" "Use\n" "TCH\n"
1534 "Do not use TCH for Paging Request Any\n"
1535 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001536{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001537 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001538 gsmnet->pag_any_tch = atoi(argv[0]);
1539 gsm_net_update_ctype(gsmnet);
1540 return CMD_SUCCESS;
1541}
1542
Neels Hofmeyr06e14c62017-07-24 13:06:45 +02001543#define DEFAULT_TIMER(number) GSM_T##number##_DEFAULT
1544/* Add another expansion so that DEFAULT_TIMER() becomes its value */
1545#define EXPAND_AND_STRINGIFY(x) OSMO_STRINGIFY(x)
1546
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001547#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001548 DEFUN(cfg_net_T##number, \
1549 cfg_net_T##number##_cmd, \
Neels Hofmeyr06e14c62017-07-24 13:06:45 +02001550 "timer t" #number " (default|<1-65535>)", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001551 "Configure GSM Timers\n" \
Neels Hofmeyrf6940332017-07-24 13:36:42 +02001552 doc " (default: " EXPAND_AND_STRINGIFY(DEFAULT_TIMER(number)) " seconds)\n" \
Neels Hofmeyr06e14c62017-07-24 13:06:45 +02001553 "Set to default timer value" \
1554 " (" EXPAND_AND_STRINGIFY(DEFAULT_TIMER(number)) " seconds)\n" \
1555 "Timer Value in seconds\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001556{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001557 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Neels Hofmeyr06e14c62017-07-24 13:06:45 +02001558 int value; \
1559 if (strcmp(argv[0], "default") == 0) \
1560 value = DEFAULT_TIMER(number); \
1561 else \
1562 value = atoi(argv[0]); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001563 \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001564 gsmnet->T##number = value; \
1565 return CMD_SUCCESS; \
1566}
1567
Neels Hofmeyrf6940332017-07-24 13:36:42 +02001568DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT")
1569DECLARE_TIMER(3103, "Set the timeout value for HANDOVER")
1570DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION")
1571DECLARE_TIMER(3107, "Currently not used")
1572DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout")
1573DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel")
1574DECLARE_TIMER(3113, "Set the time to try paging a subscriber")
1575DECLARE_TIMER(3115, "Currently not used")
1576DECLARE_TIMER(3117, "Currently not used")
1577DECLARE_TIMER(3119, "Currently not used")
1578DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT")
1579DECLARE_TIMER(3141, "Currently not used")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001580
Maxc08ee712016-05-11 12:45:13 +02001581DEFUN_DEPRECATED(cfg_net_dtx,
1582 cfg_net_dtx_cmd,
1583 "dtx-used (0|1)",
1584 ".HIDDEN\n""Obsolete\n""Obsolete\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001585{
Maxc08ee712016-05-11 12:45:13 +02001586 vty_out(vty, "%% 'dtx-used' is now deprecated: use dtx * "
1587 "configuration options of BTS instead%s", VTY_NEWLINE);
1588 return CMD_SUCCESS;
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001589}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001590
Harald Welte5258fc42009-03-28 19:07:53 +00001591/* per-BTS configuration */
1592DEFUN(cfg_bts,
1593 cfg_bts_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02001594 "bts <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001595 "Select a BTS to configure\n"
1596 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001597{
Harald Weltedcccb182010-05-16 20:52:23 +02001598 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001599 int bts_nr = atoi(argv[0]);
1600 struct gsm_bts *bts;
1601
Harald Weltee441d9c2009-06-21 16:17:15 +02001602 if (bts_nr > gsmnet->num_bts) {
1603 vty_out(vty, "%% The next unused BTS number is %u%s",
1604 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001605 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001606 } else if (bts_nr == gsmnet->num_bts) {
1607 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001608 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
Harald Weltea2bbc5e2015-11-20 10:43:31 +01001609 HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001610 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001611 bts = gsm_bts_num(gsmnet, bts_nr);
1612
Daniel Willmannf15c2762010-01-11 13:43:07 +01001613 if (!bts) {
1614 vty_out(vty, "%% Unable to allocate BTS %u%s",
1615 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001616 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001617 }
Harald Welte5258fc42009-03-28 19:07:53 +00001618
1619 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001620 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001621 vty->node = BTS_NODE;
1622
1623 return CMD_SUCCESS;
1624}
1625
1626DEFUN(cfg_bts_type,
1627 cfg_bts_type_cmd,
Harald Weltee555c2b2012-08-17 13:02:12 +02001628 "type TYPE", /* dynamically created */
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001629 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001630{
1631 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001632 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001633
Max7507aef2017-04-10 13:59:14 +02001634 rc = gsm_set_bts_type(bts, str2btstype(argv[0]));
Harald Welte39315c42010-01-10 18:01:52 +01001635 if (rc < 0)
1636 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001637
Harald Welte5258fc42009-03-28 19:07:53 +00001638 return CMD_SUCCESS;
1639}
1640
Harald Weltefcd24452009-06-20 18:15:19 +02001641DEFUN(cfg_bts_band,
1642 cfg_bts_band_cmd,
1643 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001644 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001645{
1646 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001647 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001648
1649 if (band < 0) {
1650 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1651 band, VTY_NEWLINE);
1652 return CMD_WARNING;
1653 }
1654
1655 bts->band = band;
1656
1657 return CMD_SUCCESS;
1658}
1659
Maxc08ee712016-05-11 12:45:13 +02001660DEFUN(cfg_bts_dtxu, cfg_bts_dtxu_cmd, "dtx uplink [force]",
1661 "Configure discontinuous transmission\n"
1662 "Enable Uplink DTX for this BTS\n"
1663 "MS 'shall' use DTXu instead of 'may' use (might not be supported by "
1664 "older phones).\n")
1665{
1666 struct gsm_bts *bts = vty->index;
1667
1668 bts->dtxu = (argc > 0) ? GSM48_DTX_SHALL_BE_USED : GSM48_DTX_MAY_BE_USED;
Max60795282016-06-06 11:30:57 +02001669 if (!is_ipaccess_bts(bts))
1670 vty_out(vty, "%% DTX enabled on non-IP BTS: this configuration "
1671 "neither supported nor tested!%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +02001672 return CMD_SUCCESS;
1673}
1674
1675DEFUN(cfg_bts_no_dtxu, cfg_bts_no_dtxu_cmd, "no dtx uplink",
1676 NO_STR
1677 "Configure discontinuous transmission\n"
1678 "Disable Uplink DTX for this BTS\n")
1679{
1680 struct gsm_bts *bts = vty->index;
1681
1682 bts->dtxu = GSM48_DTX_SHALL_NOT_BE_USED;
1683
1684 return CMD_SUCCESS;
1685}
1686
1687DEFUN(cfg_bts_dtxd, cfg_bts_dtxd_cmd, "dtx downlink",
1688 "Configure discontinuous transmission\n"
1689 "Enable Downlink DTX for this BTS\n")
1690{
1691 struct gsm_bts *bts = vty->index;
1692
1693 bts->dtxd = true;
Max60795282016-06-06 11:30:57 +02001694 if (!is_ipaccess_bts(bts))
1695 vty_out(vty, "%% DTX enabled on non-IP BTS: this configuration "
1696 "neither supported nor tested!%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +02001697 return CMD_SUCCESS;
1698}
1699
1700DEFUN(cfg_bts_no_dtxd, cfg_bts_no_dtxd_cmd, "no dtx downlink",
1701 NO_STR
1702 "Configure discontinuous transmission\n"
1703 "Disable Downlink DTX for this BTS\n")
1704{
1705 struct gsm_bts *bts = vty->index;
1706
1707 bts->dtxd = false;
1708
1709 return CMD_SUCCESS;
1710}
1711
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001712DEFUN(cfg_bts_ci,
1713 cfg_bts_ci_cmd,
1714 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001715 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001716{
1717 struct gsm_bts *bts = vty->index;
1718 int ci = atoi(argv[0]);
1719
1720 if (ci < 0 || ci > 0xffff) {
1721 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1722 ci, VTY_NEWLINE);
1723 return CMD_WARNING;
1724 }
1725 bts->cell_identity = ci;
1726
1727 return CMD_SUCCESS;
1728}
1729
Harald Welte5258fc42009-03-28 19:07:53 +00001730DEFUN(cfg_bts_lac,
1731 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001732 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001733 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001734{
1735 struct gsm_bts *bts = vty->index;
1736 int lac = atoi(argv[0]);
1737
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001738 if (lac < 0 || lac > 0xffff) {
1739 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001740 lac, VTY_NEWLINE);
1741 return CMD_WARNING;
1742 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001743
1744 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1745 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1746 lac, VTY_NEWLINE);
1747 return CMD_WARNING;
1748 }
1749
Harald Welte5258fc42009-03-28 19:07:53 +00001750 bts->location_area_code = lac;
1751
1752 return CMD_SUCCESS;
1753}
1754
Harald Weltea43f7892009-12-01 18:04:30 +05301755
Harald Weltea2bbc5e2015-11-20 10:43:31 +01001756/* compatibility wrapper for old config files */
1757DEFUN_HIDDEN(cfg_bts_tsc,
Harald Welte5258fc42009-03-28 19:07:53 +00001758 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001759 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001760 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001761{
Harald Welte5258fc42009-03-28 19:07:53 +00001762 return CMD_SUCCESS;
1763}
1764
Harald Welte78f2f502009-05-23 16:56:52 +00001765DEFUN(cfg_bts_bsic,
1766 cfg_bts_bsic_cmd,
1767 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001768 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1769 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001770{
1771 struct gsm_bts *bts = vty->index;
1772 int bsic = atoi(argv[0]);
1773
1774 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001775 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001776 bsic, VTY_NEWLINE);
1777 return CMD_WARNING;
1778 }
1779 bts->bsic = bsic;
1780
1781 return CMD_SUCCESS;
1782}
1783
Harald Welte4cc34222009-05-01 15:12:31 +00001784DEFUN(cfg_bts_unit_id,
1785 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001786 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001787 "Abis/IP specific options\n"
1788 "Set the IPA BTS Unit ID\n"
1789 "Unit ID (Site)\n"
1790 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001791{
1792 struct gsm_bts *bts = vty->index;
1793 int site_id = atoi(argv[0]);
1794 int bts_id = atoi(argv[1]);
1795
Harald Welte07dc73d2009-08-07 13:27:09 +02001796 if (!is_ipaccess_bts(bts)) {
1797 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1798 return CMD_WARNING;
1799 }
1800
Harald Welte4cc34222009-05-01 15:12:31 +00001801 bts->ip_access.site_id = site_id;
1802 bts->ip_access.bts_id = bts_id;
1803
1804 return CMD_SUCCESS;
1805}
1806
Harald Welte8b291802013-03-12 13:57:05 +01001807DEFUN(cfg_bts_rsl_ip,
1808 cfg_bts_rsl_ip_cmd,
1809 "ip.access rsl-ip A.B.C.D",
1810 "Abis/IP specific options\n"
1811 "Set the IPA RSL IP Address of the BSC\n"
1812 "Destination IP address for RSL connection\n")
1813{
1814 struct gsm_bts *bts = vty->index;
1815 struct in_addr ia;
1816
1817 if (!is_ipaccess_bts(bts)) {
1818 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1819 return CMD_WARNING;
1820 }
1821
1822 inet_aton(argv[0], &ia);
1823 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1824
1825 return CMD_SUCCESS;
1826}
1827
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001828#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b291802013-03-12 13:57:05 +01001829
Sylvain Munautc9519462011-10-17 14:04:55 +02001830DEFUN(cfg_bts_nokia_site_skip_reset,
1831 cfg_bts_nokia_site_skip_reset_cmd,
1832 "nokia_site skip-reset (0|1)",
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001833 NOKIA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001834 "Skip the reset step during bootstrap process of this BTS\n"
1835 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001836{
1837 struct gsm_bts *bts = vty->index;
1838
1839 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1840 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1841 return CMD_WARNING;
1842 }
1843
1844 bts->nokia.skip_reset = atoi(argv[0]);
1845
1846 return CMD_SUCCESS;
1847}
1848
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001849DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1850 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1851 "nokia_site no-local-rel-conf (0|1)",
1852 NOKIA_STR
1853 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1854 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1855{
1856 struct gsm_bts *bts = vty->index;
1857
1858 if (!is_nokia_bts(bts)) {
1859 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1860 VTY_NEWLINE);
1861 return CMD_WARNING;
1862 }
1863
1864 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1865
1866 return CMD_SUCCESS;
1867}
1868
Sipos Csaba56e17662015-02-07 13:27:36 +01001869DEFUN(cfg_bts_nokia_site_bts_reset_timer_cnf,
1870 cfg_bts_nokia_site_bts_reset_timer_cnf_cmd,
1871 "nokia_site bts-reset-timer <15-100>",
1872 NOKIA_STR
1873 "The amount of time (in sec.) between BTS_RESET is sent,\n"
1874 "and the BTS is being bootstrapped.\n")
1875{
1876 struct gsm_bts *bts = vty->index;
1877
1878 if (!is_nokia_bts(bts)) {
1879 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1880 VTY_NEWLINE);
1881 return CMD_WARNING;
1882 }
1883
1884 bts->nokia.bts_reset_timer_cnf = atoi(argv[0]);
1885
1886 return CMD_SUCCESS;
1887}
Harald Welte8f0ed552010-05-11 21:53:49 +02001888#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001889#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001890
Harald Welte8175e952009-10-20 00:22:00 +02001891DEFUN(cfg_bts_stream_id,
1892 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001893 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001894 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001895 "Set the ip.access Stream ID of the OML link of this BTS\n"
1896 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001897{
1898 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001899 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001900
1901 if (!is_ipaccess_bts(bts)) {
1902 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1903 return CMD_WARNING;
1904 }
1905
1906 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001907 /* This is used by e1inp_bind_ops callback for each BTS model. */
1908 bts->oml_e1_link.e1_nr = linenr;
1909
1910 return CMD_SUCCESS;
1911}
1912
Harald Welted13e0cd2012-08-17 09:52:03 +02001913#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001914
Harald Welte42581822009-08-08 16:12:58 +02001915DEFUN(cfg_bts_oml_e1,
1916 cfg_bts_oml_e1_cmd,
1917 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001918 OML_E1_STR
1919 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001920 "E1/T1 line number to be used for OML\n"
1921 "E1/T1 timeslot to be used for OML\n"
1922 "E1/T1 timeslot to be used for OML\n"
1923 "E1/T1 sub-slot to be used for OML\n"
1924 "Use E1/T1 sub-slot 0\n"
1925 "Use E1/T1 sub-slot 1\n"
1926 "Use E1/T1 sub-slot 2\n"
1927 "Use E1/T1 sub-slot 3\n"
1928 "Use full E1 slot 3\n"
1929 )
Harald Welte42581822009-08-08 16:12:58 +02001930{
1931 struct gsm_bts *bts = vty->index;
1932
1933 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1934
1935 return CMD_SUCCESS;
1936}
1937
1938
1939DEFUN(cfg_bts_oml_e1_tei,
1940 cfg_bts_oml_e1_tei_cmd,
1941 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001942 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001943 "Set the TEI to be used for OML\n"
1944 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001945{
1946 struct gsm_bts *bts = vty->index;
1947
1948 bts->oml_tei = atoi(argv[0]);
1949
1950 return CMD_SUCCESS;
1951}
1952
Harald Welte7a8fa412009-08-10 13:48:16 +02001953DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1954 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001955 "Channnel Allocator\n" "Channel Allocator\n"
1956 "Allocate Timeslots and Transceivers in ascending order\n"
1957 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001958{
1959 struct gsm_bts *bts = vty->index;
1960
1961 if (!strcmp(argv[0], "ascending"))
1962 bts->chan_alloc_reverse = 0;
1963 else
1964 bts->chan_alloc_reverse = 1;
1965
1966 return CMD_SUCCESS;
1967}
1968
Harald Welte8f0ed552010-05-11 21:53:49 +02001969#define RACH_STR "Random Access Control Channel\n"
1970
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001971DEFUN(cfg_bts_rach_tx_integer,
1972 cfg_bts_rach_tx_integer_cmd,
1973 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001974 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001975 "Set the raw tx integer value in RACH Control parameters IE\n"
1976 "Set the raw tx integer value in RACH Control parameters IE\n"
1977 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001978{
1979 struct gsm_bts *bts = vty->index;
1980 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1981 return CMD_SUCCESS;
1982}
1983
1984DEFUN(cfg_bts_rach_max_trans,
1985 cfg_bts_rach_max_trans_cmd,
1986 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001987 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001988 "Set the maximum number of RACH burst transmissions\n"
1989 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001990 "Maximum number of 1 RACH burst transmissions\n"
1991 "Maximum number of 2 RACH burst transmissions\n"
1992 "Maximum number of 4 RACH burst transmissions\n"
1993 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001994{
1995 struct gsm_bts *bts = vty->index;
1996 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1997 return CMD_SUCCESS;
1998}
1999
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02002000#define CD_STR "Channel Description\n"
2001
2002DEFUN(cfg_bts_chan_desc_att,
2003 cfg_bts_chan_desc_att_cmd,
2004 "channel-descrption attach (0|1)",
2005 CD_STR
2006 "Set if attachment is required\n"
2007 "Attachment is NOT required\n"
2008 "Attachment is required (standard)\n")
2009{
2010 struct gsm_bts *bts = vty->index;
2011 bts->si_common.chan_desc.att = atoi(argv[0]);
2012 return CMD_SUCCESS;
2013}
2014
2015DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
2016 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
2017 "channel-descrption bs-pa-mfrms <2-9>",
2018 CD_STR
2019 "Set number of multiframe periods for paging groups\n"
2020 "Number of multiframe periods for paging groups\n")
2021{
2022 struct gsm_bts *bts = vty->index;
2023 int bs_pa_mfrms = atoi(argv[0]);
2024
2025 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
2026 return CMD_SUCCESS;
2027}
2028
2029DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
2030 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
2031 "channel-descrption bs-ag-blks-res <0-7>",
2032 CD_STR
2033 "Set number of blocks reserved for access grant\n"
2034 "Number of blocks reserved for access grant\n")
2035{
2036 struct gsm_bts *bts = vty->index;
2037 int bs_ag_blks_res = atoi(argv[0]);
2038
2039 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
2040 return CMD_SUCCESS;
2041}
2042
Harald Welte8f0ed552010-05-11 21:53:49 +02002043#define NM_STR "Network Management\n"
2044
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002045DEFUN(cfg_bts_rach_nm_b_thresh,
2046 cfg_bts_rach_nm_b_thresh_cmd,
2047 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002048 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002049 "Set the NM Busy Threshold\n"
2050 "Set the NM Busy Threshold\n"
2051 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002052{
2053 struct gsm_bts *bts = vty->index;
2054 bts->rach_b_thresh = atoi(argv[0]);
2055 return CMD_SUCCESS;
2056}
2057
2058DEFUN(cfg_bts_rach_nm_ldavg,
2059 cfg_bts_rach_nm_ldavg_cmd,
2060 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002061 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002062 "Set the NM Loadaverage Slots value\n"
2063 "Set the NM Loadaverage Slots value\n"
2064 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002065{
2066 struct gsm_bts *bts = vty->index;
2067 bts->rach_ldavg_slots = atoi(argv[0]);
2068 return CMD_SUCCESS;
2069}
2070
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002071DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
2072 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002073 "Should this cell be barred from access?\n"
2074 "Should this cell be barred from access?\n"
2075 "Cell should NOT be barred\n"
2076 "Cell should be barred\n")
2077
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002078{
2079 struct gsm_bts *bts = vty->index;
2080
Harald Welte71355012009-12-21 23:08:18 +01002081 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002082
2083 return CMD_SUCCESS;
2084}
2085
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002086DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2087 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002088 RACH_STR
2089 "Should this cell allow emergency calls?\n"
2090 "Should this cell allow emergency calls?\n"
2091 "Should this cell allow emergency calls?\n"
2092 "Do NOT allow emergency calls\n"
2093 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002094{
2095 struct gsm_bts *bts = vty->index;
2096
2097 if (atoi(argv[0]) == 0)
2098 bts->si_common.rach_control.t2 |= 0x4;
2099 else
2100 bts->si_common.rach_control.t2 &= ~0x4;
2101
2102 return CMD_SUCCESS;
2103}
2104
Ivan Kluchnikov67920592013-09-16 13:13:04 +04002105DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2106 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2107 RACH_STR
2108 "Set access control class\n"
2109 "Access control class 0\n"
2110 "Access control class 1\n"
2111 "Access control class 2\n"
2112 "Access control class 3\n"
2113 "Access control class 4\n"
2114 "Access control class 5\n"
2115 "Access control class 6\n"
2116 "Access control class 7\n"
2117 "Access control class 8\n"
2118 "Access control class 9\n"
2119 "Access control class 11 for PLMN use\n"
2120 "Access control class 12 for security services\n"
2121 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2122 "Access control class 14 for emergency services\n"
2123 "Access control class 15 for PLMN staff\n"
2124 "barred to use access control class\n"
2125 "allowed to use access control class\n")
2126{
2127 struct gsm_bts *bts = vty->index;
2128
2129 uint8_t control_class;
2130 uint8_t allowed = 0;
2131
2132 if (strcmp(argv[1], "allowed") == 0)
2133 allowed = 1;
2134
2135 control_class = atoi(argv[0]);
2136 if (control_class < 8)
2137 if (allowed)
2138 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2139 else
2140 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2141 else
2142 if (allowed)
2143 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2144 else
2145 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2146
2147 return CMD_SUCCESS;
2148}
2149
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002150DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2151 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002152 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002153 "Maximum transmit power of the MS\n"
2154 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002155 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002156{
2157 struct gsm_bts *bts = vty->index;
2158
2159 bts->ms_max_power = atoi(argv[0]);
2160
2161 return CMD_SUCCESS;
2162}
2163
Harald Weltecfaabbb2012-08-16 23:23:50 +02002164#define CELL_STR "Cell Parameters\n"
2165
Harald Welte73225282009-12-12 18:17:25 +01002166DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2167 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002168 CELL_STR "Cell re-selection parameters\n"
2169 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01002170 "Cell Re-Selection Hysteresis in dB")
2171{
2172 struct gsm_bts *bts = vty->index;
2173
2174 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2175
2176 return CMD_SUCCESS;
2177}
2178
2179DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2180 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002181 "Minimum RxLev needed for cell access\n"
2182 "Minimum RxLev needed for cell access\n"
2183 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01002184 "Minimum RxLev needed for cell access (better than -110dBm)")
2185{
2186 struct gsm_bts *bts = vty->index;
2187
2188 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2189
2190 return CMD_SUCCESS;
2191}
2192
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002193DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2194 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002195 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2196 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002197{
2198 struct gsm_bts *bts = vty->index;
2199
2200 bts->si_common.cell_ro_sel_par.present = 1;
2201 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2202
2203 return CMD_SUCCESS;
2204}
2205
2206DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2207 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002208 CELL_STR "Cell Re-Selection Parameters\n"
2209 "Cell Re-Selection Offset (CRO) in dB\n"
2210 "Cell Re-Selection Offset (CRO) in dB\n"
2211 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002212{
2213 struct gsm_bts *bts = vty->index;
2214
2215 bts->si_common.cell_ro_sel_par.present = 1;
2216 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2217
2218 return CMD_SUCCESS;
2219}
2220
2221DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2222 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002223 "Cell selection temporary negative offset\n"
2224 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002225 "Cell selection temporary negative offset in dB")
2226{
2227 struct gsm_bts *bts = vty->index;
2228
2229 bts->si_common.cell_ro_sel_par.present = 1;
2230 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2231
2232 return CMD_SUCCESS;
2233}
2234
2235DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2236 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002237 "Cell selection temporary negative offset\n"
2238 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002239 "Sets cell selection temporary negative offset to infinity")
2240{
2241 struct gsm_bts *bts = vty->index;
2242
2243 bts->si_common.cell_ro_sel_par.present = 1;
2244 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2245
2246 return CMD_SUCCESS;
2247}
2248
2249DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2250 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002251 "Cell selection penalty time\n"
2252 "Cell selection penalty time\n"
2253 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002254{
2255 struct gsm_bts *bts = vty->index;
2256
2257 bts->si_common.cell_ro_sel_par.present = 1;
2258 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2259
2260 return CMD_SUCCESS;
2261}
2262
2263DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2264 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002265 "Cell selection penalty time\n"
2266 "Cell selection penalty time\n"
2267 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002268 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2269 "and TEMPORARY_OFFSET is ignored)")
2270{
2271 struct gsm_bts *bts = vty->index;
2272
2273 bts->si_common.cell_ro_sel_par.present = 1;
2274 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2275
2276 return CMD_SUCCESS;
2277}
2278
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002279DEFUN(cfg_bts_radio_link_timeout, cfg_bts_radio_link_timeout_cmd,
2280 "radio-link-timeout <4-64>",
2281 "Radio link timeout criterion (BTS side)\n"
2282 "Radio link timeout value (lost SACCH block)\n")
2283{
2284 struct gsm_bts *bts = vty->index;
2285
Harald Welte2f8b9d22017-06-18 11:12:13 +03002286 gsm_bts_set_radio_link_timeout(bts, atoi(argv[0]));
2287
2288 return CMD_SUCCESS;
2289}
2290
2291DEFUN(cfg_bts_radio_link_timeout_inf, cfg_bts_radio_link_timeout_inf_cmd,
2292 "radio-link-timeout infinite",
2293 "Radio link timeout criterion (BTS side)\n"
2294 "Infinite Radio link timeout value (use only for BTS RF testing)\n")
2295{
2296 struct gsm_bts *bts = vty->index;
2297
2298 if (bts->type != GSM_BTS_TYPE_OSMOBTS) {
2299 vty_out(vty, "%% infinite radio link timeout not supported by this BTS%s", VTY_NEWLINE);
2300 return CMD_WARNING;
2301 }
2302
2303 vty_out(vty, "%% INFINITE RADIO LINK TIMEOUT, USE ONLY FOR BTS RF TESTING%s", VTY_NEWLINE);
2304 gsm_bts_set_radio_link_timeout(bts, -1);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002305
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002306 return CMD_SUCCESS;
2307}
2308
Harald Welte8f0ed552010-05-11 21:53:49 +02002309#define GPRS_TEXT "GPRS Packet Network\n"
2310
Harald Welteaf387632010-03-14 23:30:30 +08002311DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02002312 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002313 GPRS_TEXT
2314 "GPRS Cell Settings\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002315 "GPRS BSSGP VC Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002316 "GPRS BSSGP VC Identifier")
2317{
2318 struct gsm_bts *bts = vty->index;
2319
Harald Welte4511d892010-04-18 15:51:20 +02002320 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002321 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2322 return CMD_WARNING;
2323 }
2324
Harald Welte97a282b2010-03-14 15:37:43 +08002325 bts->gprs.cell.bvci = atoi(argv[0]);
2326
2327 return CMD_SUCCESS;
2328}
2329
Harald Weltea5731cf2010-03-22 11:48:36 +08002330DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2331 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002332 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002333 "GPRS NS Entity Identifier\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002334 "GPRS NS Entity 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 Weltea5731cf2010-03-22 11:48:36 +08002339 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2340 return CMD_WARNING;
2341 }
2342
2343 bts->gprs.nse.nsei = atoi(argv[0]);
2344
2345 return CMD_SUCCESS;
2346}
2347
Harald Welte8f0ed552010-05-11 21:53:49 +02002348#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2349 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002350
Harald Welte97a282b2010-03-14 15:37:43 +08002351DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2352 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002353 GPRS_TEXT NSVC_TEXT
2354 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002355 "GPRS NS VC Identifier")
2356{
2357 struct gsm_bts *bts = vty->index;
2358 int idx = atoi(argv[0]);
2359
Harald Welte4511d892010-04-18 15:51:20 +02002360 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002361 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2362 return CMD_WARNING;
2363 }
2364
Harald Welte97a282b2010-03-14 15:37:43 +08002365 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2366
2367 return CMD_SUCCESS;
2368}
2369
Harald Welteaf387632010-03-14 23:30:30 +08002370DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2371 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002372 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002373 "GPRS NS Local UDP Port\n"
2374 "GPRS NS Local UDP Port\n"
2375 "GPRS NS Local UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002376 "GPRS NS Local UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002377{
2378 struct gsm_bts *bts = vty->index;
2379 int idx = atoi(argv[0]);
2380
Harald Welte4511d892010-04-18 15:51:20 +02002381 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002382 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2383 return CMD_WARNING;
2384 }
2385
Harald Welteaf387632010-03-14 23:30:30 +08002386 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2387
2388 return CMD_SUCCESS;
2389}
2390
2391DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2392 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002393 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002394 "GPRS NS Remote UDP Port\n"
2395 "GPRS NS Remote UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002396 "GPRS NS Remote UDP Port\n"
2397 "GPRS NS Remote UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002398{
2399 struct gsm_bts *bts = vty->index;
2400 int idx = atoi(argv[0]);
2401
Harald Welte4511d892010-04-18 15:51:20 +02002402 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002403 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2404 return CMD_WARNING;
2405 }
2406
Harald Welteaf387632010-03-14 23:30:30 +08002407 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2408
2409 return CMD_SUCCESS;
2410}
2411
2412DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2413 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02002414 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002415 "GPRS NS Remote IP Address\n"
2416 "GPRS NS Remote IP Address\n"
2417 "GPRS NS Remote IP Address\n")
Harald Welteaf387632010-03-14 23:30:30 +08002418{
2419 struct gsm_bts *bts = vty->index;
2420 int idx = atoi(argv[0]);
2421 struct in_addr ia;
2422
Harald Welte4511d892010-04-18 15:51:20 +02002423 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002424 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2425 return CMD_WARNING;
2426 }
2427
Harald Welteaf387632010-03-14 23:30:30 +08002428 inet_aton(argv[1], &ia);
2429 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2430
2431 return CMD_SUCCESS;
2432}
2433
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002434DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Weltecfaabbb2012-08-16 23:23:50 +02002435 "paging free <-1-1024>",
2436 "Paging options\n"
2437 "Only page when having a certain amount of free slots\n"
2438 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002439{
2440 struct gsm_bts *bts = vty->index;
2441
2442 bts->paging.free_chans_need = atoi(argv[0]);
2443 return CMD_SUCCESS;
2444}
2445
Harald Welte615e9562010-05-11 23:50:21 +02002446DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2447 "gprs ns timer " NS_TIMERS " <0-255>",
2448 GPRS_TEXT "Network Service\n"
2449 "Network Service Timer\n"
2450 NS_TIMERS_HELP "Timer Value\n")
2451{
2452 struct gsm_bts *bts = vty->index;
2453 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2454 int val = atoi(argv[1]);
2455
2456 if (bts->gprs.mode == BTS_GPRS_NONE) {
2457 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2458 return CMD_WARNING;
2459 }
2460
2461 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2462 return CMD_WARNING;
2463
2464 bts->gprs.nse.timer[idx] = val;
2465
2466 return CMD_SUCCESS;
2467}
2468
2469#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 +02002470#define BSSGP_TIMERS_HELP \
2471 "Tbvc-block timeout\n" \
2472 "Tbvc-block retries\n" \
2473 "Tbvc-unblock retries\n" \
2474 "Tbvcc-reset timeout\n" \
2475 "Tbvc-reset retries\n" \
2476 "Tbvc-suspend timeout\n" \
2477 "Tbvc-suspend retries\n" \
2478 "Tbvc-resume timeout\n" \
2479 "Tbvc-resume retries\n" \
2480 "Tbvc-capa-update timeout\n" \
2481 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002482
2483DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2484 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2485 GPRS_TEXT "Cell / BSSGP\n"
2486 "Cell/BSSGP Timer\n"
2487 BSSGP_TIMERS_HELP "Timer Value\n")
2488{
2489 struct gsm_bts *bts = vty->index;
2490 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2491 int val = atoi(argv[1]);
2492
2493 if (bts->gprs.mode == BTS_GPRS_NONE) {
2494 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2495 return CMD_WARNING;
2496 }
2497
2498 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2499 return CMD_WARNING;
2500
2501 bts->gprs.cell.timer[idx] = val;
2502
2503 return CMD_SUCCESS;
2504}
2505
Harald Welte97a282b2010-03-14 15:37:43 +08002506DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2507 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002508 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002509 "GPRS Routing Area Code\n"
2510 "GPRS Routing Area Code\n"
2511 "GPRS Routing Area Code\n")
Harald Welte97a282b2010-03-14 15:37:43 +08002512{
2513 struct gsm_bts *bts = vty->index;
2514
Harald Welte4511d892010-04-18 15:51:20 +02002515 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002516 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2517 return CMD_WARNING;
2518 }
2519
Harald Welte97a282b2010-03-14 15:37:43 +08002520 bts->gprs.rac = atoi(argv[0]);
2521
2522 return CMD_SUCCESS;
2523}
2524
Max292ec582016-07-28 11:55:37 +02002525DEFUN(cfg_bts_gprs_ctrl_ack, cfg_bts_gprs_ctrl_ack_cmd,
2526 "gprs control-ack-type-rach", GPRS_TEXT
2527 "Set GPRS Control Ack Type for PACKET CONTROL ACKNOWLEDGMENT message to "
2528 "four access bursts format instead of default RLC/MAC control block\n")
2529{
2530 struct gsm_bts *bts = vty->index;
2531
2532 if (bts->gprs.mode == BTS_GPRS_NONE) {
2533 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2534 return CMD_WARNING;
2535 }
2536
2537 bts->gprs.ctrl_ack_type_use_block = false;
2538
2539 return CMD_SUCCESS;
2540}
2541
2542DEFUN(cfg_no_bts_gprs_ctrl_ack, cfg_no_bts_gprs_ctrl_ack_cmd,
2543 "no gprs control-ack-type-rach", NO_STR GPRS_TEXT
2544 "Set GPRS Control Ack Type for PACKET CONTROL ACKNOWLEDGMENT message to "
2545 "four access bursts format instead of default RLC/MAC control block\n")
2546{
2547 struct gsm_bts *bts = vty->index;
2548
2549 if (bts->gprs.mode == BTS_GPRS_NONE) {
2550 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2551 return CMD_WARNING;
2552 }
2553
2554 bts->gprs.ctrl_ack_type_use_block = true;
2555
2556 return CMD_SUCCESS;
2557}
2558
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01002559DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2560 "gprs network-control-order (nc0|nc1|nc2)",
2561 GPRS_TEXT
2562 "GPRS Network Control Order\n"
2563 "MS controlled cell re-selection, no measurement reporting\n"
2564 "MS controlled cell re-selection, MS sends measurement reports\n"
2565 "Network controlled cell re-selection, MS sends measurement reports\n")
2566{
2567 struct gsm_bts *bts = vty->index;
2568
2569 if (bts->gprs.mode == BTS_GPRS_NONE) {
2570 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2571 return CMD_WARNING;
2572 }
2573
2574 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2575
2576 return CMD_SUCCESS;
2577}
2578
Harald Welte4511d892010-04-18 15:51:20 +02002579DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2580 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002581 GPRS_TEXT
2582 "GPRS Mode for this BTS\n"
2583 "GPRS Disabled on this BTS\n"
2584 "GPRS Enabled on this BTS\n"
2585 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002586{
2587 struct gsm_bts *bts = vty->index;
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002588 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0], NULL);
Harald Welteaf387632010-03-14 23:30:30 +08002589
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002590 if (!bts_gprs_mode_is_compat(bts, mode)) {
Harald Weltef3d8e922010-06-14 22:44:42 +02002591 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2592 VTY_NEWLINE);
2593 return CMD_WARNING;
2594 }
2595
2596 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002597
2598 return CMD_SUCCESS;
2599}
2600
bhargava350533c2016-07-21 11:14:34 +05302601DEFUN(cfg_bts_gprs_11bit_rach_support_for_egprs,
2602 cfg_bts_gprs_11bit_rach_support_for_egprs_cmd,
2603 "gprs 11bit_rach_support_for_egprs (0|1)",
2604 GPRS_TEXT "11 bit RACH options\n"
2605 "Disable 11 bit RACH for EGPRS\n"
2606 "Enable 11 bit RACH for EGPRS")
2607{
2608 struct gsm_bts *bts = vty->index;
2609
2610 bts->gprs.supports_egprs_11bit_rach = atoi(argv[0]);
2611
2612 if (bts->gprs.supports_egprs_11bit_rach > 1) {
2613 vty_out(vty, "Error in RACH type%s", VTY_NEWLINE);
2614 return CMD_WARNING;
2615 }
2616
2617 if ((bts->gprs.mode == BTS_GPRS_NONE) &&
2618 (bts->gprs.supports_egprs_11bit_rach == 1)) {
2619 vty_out(vty, "Error:gprs mode is none and 11bit rach is"
2620 " enabled%s", VTY_NEWLINE);
2621 return CMD_WARNING;
2622 }
2623
2624 return CMD_SUCCESS;
2625}
2626
Harald Welte9fbff4a2010-07-30 11:50:09 +02002627#define SI_TEXT "System Information Messages\n"
2628#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)"
2629#define SI_TYPE_HELP "System Information Type 1\n" \
2630 "System Information Type 2\n" \
2631 "System Information Type 3\n" \
2632 "System Information Type 4\n" \
2633 "System Information Type 5\n" \
2634 "System Information Type 6\n" \
2635 "System Information Type 7\n" \
2636 "System Information Type 8\n" \
2637 "System Information Type 9\n" \
2638 "System Information Type 10\n" \
2639 "System Information Type 13\n" \
2640 "System Information Type 16\n" \
2641 "System Information Type 17\n" \
2642 "System Information Type 18\n" \
2643 "System Information Type 19\n" \
2644 "System Information Type 20\n" \
2645 "System Information Type 2bis\n" \
2646 "System Information Type 2ter\n" \
2647 "System Information Type 2quater\n" \
2648 "System Information Type 5bis\n" \
2649 "System Information Type 5ter\n"
2650
2651DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2652 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2653 SI_TEXT SI_TYPE_HELP
2654 "System Information Mode\n"
2655 "Static user-specified\n"
2656 "Dynamic, BSC-computed\n")
2657{
2658 struct gsm_bts *bts = vty->index;
2659 int type;
2660
2661 type = get_string_value(osmo_sitype_strs, argv[0]);
2662 if (type < 0) {
2663 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2664 return CMD_WARNING;
2665 }
2666
2667 if (!strcmp(argv[1], "static"))
2668 bts->si_mode_static |= (1 << type);
2669 else
2670 bts->si_mode_static &= ~(1 << type);
2671
2672 return CMD_SUCCESS;
2673}
2674
2675DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2676 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2677 SI_TEXT SI_TYPE_HELP
2678 "Static System Information filling\n"
2679 "Static user-specified SI content in HEX notation\n")
2680{
2681 struct gsm_bts *bts = vty->index;
2682 int rc, type;
2683
2684 type = get_string_value(osmo_sitype_strs, argv[0]);
2685 if (type < 0) {
2686 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2687 return CMD_WARNING;
2688 }
2689
2690 if (!(bts->si_mode_static & (1 << type))) {
2691 vty_out(vty, "SI Type %s is not configured in static mode%s",
2692 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2693 return CMD_WARNING;
2694 }
2695
Harald Welte290aaed2010-07-30 11:53:18 +02002696 /* Fill buffer with padding pattern */
Max6f0e50c2017-04-12 15:30:54 +02002697 memset(GSM_BTS_SI(bts, type), 0x2b, GSM_MACBLOCK_LEN);
Harald Welte290aaed2010-07-30 11:53:18 +02002698
2699 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Max6f0e50c2017-04-12 15:30:54 +02002700 rc = osmo_hexparse(argv[1], GSM_BTS_SI(bts, type), GSM_MACBLOCK_LEN);
2701 if (rc < 0 || rc > GSM_MACBLOCK_LEN) {
Harald Welte9fbff4a2010-07-30 11:50:09 +02002702 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2703 return CMD_WARNING;
2704 }
2705
2706 /* Mark this SI as present */
2707 bts->si_valid |= (1 << type);
2708
2709 return CMD_SUCCESS;
2710}
2711
Harald Welte42def722017-01-13 00:10:32 +01002712DEFUN(cfg_bts_early_cm, cfg_bts_early_cm_cmd,
2713 "early-classmark-sending (allowed|forbidden)",
2714 "Early Classmark Sending\n"
2715 "Early Classmark Sending is allowed\n"
2716 "Early Classmark Sending is forbidden\n")
2717{
2718 struct gsm_bts *bts = vty->index;
Harald Welte42def722017-01-13 00:10:32 +01002719
2720 if (!strcmp(argv[0], "allowed"))
2721 bts->early_classmark_allowed = true;
2722 else
2723 bts->early_classmark_allowed = false;
2724
2725 return CMD_SUCCESS;
2726}
2727
Harald Welte32c09622011-01-11 23:44:56 +01002728DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002729 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002730 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002731 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2732 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002733{
2734 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002735 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002736
Harald Welte64c07d22011-02-15 11:43:27 +01002737 switch (mode) {
2738 case NL_MODE_MANUAL_SI5SEP:
2739 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002740 /* make sure we clear the current list when switching to
2741 * manual mode */
2742 if (bts->neigh_list_manual_mode == 0)
2743 memset(&bts->si_common.data.neigh_list, 0,
2744 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002745 break;
2746 default:
2747 break;
2748 }
2749
2750 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002751
2752 return CMD_SUCCESS;
2753}
2754
2755DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002756 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welte32c09622011-01-11 23:44:56 +01002757 "Neighbor List\n" "Add to manual neighbor list\n"
2758 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2759 "ARFCN of neighbor\n")
2760{
2761 struct gsm_bts *bts = vty->index;
2762 struct bitvec *bv = &bts->si_common.neigh_list;
2763 uint16_t arfcn = atoi(argv[1]);
2764
2765 if (!bts->neigh_list_manual_mode) {
2766 vty_out(vty, "%% Cannot configure neighbor list in "
2767 "automatic mode%s", VTY_NEWLINE);
2768 return CMD_WARNING;
2769 }
2770
2771 if (!strcmp(argv[0], "add"))
2772 bitvec_set_bit_pos(bv, arfcn, 1);
2773 else
2774 bitvec_set_bit_pos(bv, arfcn, 0);
2775
2776 return CMD_SUCCESS;
2777}
2778
Max70fdd242017-06-15 15:10:53 +02002779/* help text should be kept in sync with EARFCN_*_INVALID defines */
Max59a1bf32016-04-15 16:04:46 +02002780DEFUN(cfg_bts_si2quater_neigh_add, cfg_bts_si2quater_neigh_add_cmd,
Max2c16bee2017-02-15 13:51:37 +01002781 "si2quater neighbor-list add earfcn <0-65535> thresh-hi <0-31> "
2782 "thresh-lo <0-32> prio <0-8> qrxlv <0-32> meas <0-8>",
2783 "SI2quater Neighbor List\n" "SI2quater Neighbor List\n"
2784 "Add to manual SI2quater neighbor list\n"
2785 "EARFCN of neighbor\n" "EARFCN of neighbor\n"
2786 "threshold high bits\n" "threshold high bits\n"
2787 "threshold low bits\n" "threshold low bits (32 means NA)\n"
2788 "priority\n" "priority (8 means NA)\n"
2789 "QRXLEVMIN\n" "QRXLEVMIN (32 means NA)\n"
2790 "measurement bandwidth\n" "measurement bandwidth (8 means NA)\n")
Max59a1bf32016-04-15 16:04:46 +02002791{
2792 struct gsm_bts *bts = vty->index;
2793 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
2794 uint16_t arfcn = atoi(argv[0]);
Max2c16bee2017-02-15 13:51:37 +01002795 uint8_t thresh_hi = atoi(argv[1]), thresh_lo = atoi(argv[2]),
2796 prio = atoi(argv[3]), qrx = atoi(argv[4]), meas = atoi(argv[5]);
Max70fdd242017-06-15 15:10:53 +02002797 int r = bts_earfcn_add(bts, arfcn, thresh_hi, thresh_lo, prio, qrx, meas);
Max59a1bf32016-04-15 16:04:46 +02002798
Max70fdd242017-06-15 15:10:53 +02002799 switch (r) {
2800 case 1:
2801 vty_out(vty, "Warning: multiple threshold-high are not supported, overriding with %u%s",
2802 thresh_hi, VTY_NEWLINE);
2803 break;
2804 case EARFCN_THRESH_LOW_INVALID:
2805 vty_out(vty, "Warning: multiple threshold-low are not supported, overriding with %u%s",
2806 thresh_lo, VTY_NEWLINE);
2807 break;
2808 case EARFCN_QRXLV_INVALID + 1:
2809 vty_out(vty, "Warning: multiple QRXLEVMIN are not supported, overriding with %u%s",
2810 qrx, VTY_NEWLINE);
2811 break;
2812 case EARFCN_PRIO_INVALID:
2813 vty_out(vty, "Warning: multiple priorities are not supported, overriding with %u%s",
2814 prio, VTY_NEWLINE);
2815 break;
2816 default:
2817 if (r < 0) {
2818 vty_out(vty, "Unable to add ARFCN %u: %s%s", arfcn, strerror(-r), VTY_NEWLINE);
2819 return CMD_WARNING;
2820 }
Max59a1bf32016-04-15 16:04:46 +02002821 }
2822
Max70fdd242017-06-15 15:10:53 +02002823 if (si2q_num(bts) <= SI2Q_MAX_NUM)
Max2c16bee2017-02-15 13:51:37 +01002824 return CMD_SUCCESS;
2825
Maxf39d03a2017-05-12 17:00:30 +02002826 vty_out(vty, "Warning: not enough space in SI2quater (%u/%u used) for a given EARFCN %u%s",
Max70fdd242017-06-15 15:10:53 +02002827 bts->si2q_count, SI2Q_MAX_NUM, arfcn, VTY_NEWLINE);
Maxaafff962016-04-20 15:57:14 +02002828 osmo_earfcn_del(e, arfcn);
Max2c16bee2017-02-15 13:51:37 +01002829
Maxaafff962016-04-20 15:57:14 +02002830 return CMD_WARNING;
Max59a1bf32016-04-15 16:04:46 +02002831}
2832
2833DEFUN(cfg_bts_si2quater_neigh_del, cfg_bts_si2quater_neigh_del_cmd,
Max35697b92016-04-29 12:51:31 +02002834 "si2quater neighbor-list del earfcn <0-65535>",
Max59a1bf32016-04-15 16:04:46 +02002835 "SI2quater Neighbor List\n"
2836 "SI2quater Neighbor List\n"
2837 "Delete from SI2quater manual neighbor list\n"
Max36212f22016-04-20 12:06:05 +02002838 "EARFCN of neighbor\n"
2839 "EARFCN\n")
Max59a1bf32016-04-15 16:04:46 +02002840{
2841 struct gsm_bts *bts = vty->index;
2842 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
Max0c1bc262016-04-20 12:06:06 +02002843 uint16_t arfcn = atoi(argv[0]);
Max59a1bf32016-04-15 16:04:46 +02002844 int r = osmo_earfcn_del(e, arfcn);
2845 if (r < 0) {
2846 vty_out(vty, "Unable to delete arfcn %u: %s%s", arfcn,
Max0c1bc262016-04-20 12:06:06 +02002847 strerror(-r), VTY_NEWLINE);
Max59a1bf32016-04-15 16:04:46 +02002848 return CMD_WARNING;
2849 }
2850
2851 return CMD_SUCCESS;
2852}
2853
Max26679e02016-04-20 15:57:13 +02002854DEFUN(cfg_bts_si2quater_uarfcn_add, cfg_bts_si2quater_uarfcn_add_cmd,
Max35697b92016-04-29 12:51:31 +02002855 "si2quater neighbor-list add uarfcn <0-16383> <0-511> <0-1>",
Max26679e02016-04-20 15:57:13 +02002856 "SI2quater Neighbor List\n"
2857 "SI2quater Neighbor List\n" "Add to manual SI2quater neighbor list\n"
2858 "UARFCN of neighbor\n" "UARFCN of neighbor\n" "scrambling code\n"
2859 "diversity bit\n")
2860{
2861 struct gsm_bts *bts = vty->index;
2862 uint16_t arfcn = atoi(argv[0]), scramble = atoi(argv[1]);
2863
2864 switch(bts_uarfcn_add(bts, arfcn, scramble, atoi(argv[2]))) {
2865 case -ENOMEM:
Max70fdd242017-06-15 15:10:53 +02002866 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 +01002867 return CMD_WARNING;
Maxaafff962016-04-20 15:57:14 +02002868 case -ENOSPC:
Max70fdd242017-06-15 15:10:53 +02002869 vty_out(vty, "Warning: not enough space in SI2quater for a given UARFCN (%u, %u)%s",
2870 arfcn, scramble, VTY_NEWLINE);
Harald Weltea191dcd2016-11-26 15:06:37 +01002871 return CMD_WARNING;
Max26679e02016-04-20 15:57:13 +02002872 case -EADDRINUSE:
Max70fdd242017-06-15 15:10:53 +02002873 vty_out(vty, "Unable to add UARFCN: (%u, %u) is already added%s", arfcn, scramble, VTY_NEWLINE);
Max26679e02016-04-20 15:57:13 +02002874 return CMD_WARNING;
2875 }
2876
2877 return CMD_SUCCESS;
2878}
2879
2880DEFUN(cfg_bts_si2quater_uarfcn_del, cfg_bts_si2quater_uarfcn_del_cmd,
Max35697b92016-04-29 12:51:31 +02002881 "si2quater neighbor-list del uarfcn <0-16383> <0-511>",
Max26679e02016-04-20 15:57:13 +02002882 "SI2quater Neighbor List\n"
2883 "SI2quater Neighbor List\n"
2884 "Delete from SI2quater manual neighbor list\n"
2885 "UARFCN of neighbor\n"
2886 "UARFCN\n"
2887 "scrambling code\n")
2888{
2889 struct gsm_bts *bts = vty->index;
2890
2891 if (bts_uarfcn_del(bts, atoi(argv[0]), atoi(argv[1])) < 0) {
2892 vty_out(vty, "Unable to delete uarfcn: pair not found%s",
2893 VTY_NEWLINE);
2894 return CMD_WARNING;
2895 }
2896
2897 return CMD_SUCCESS;
2898}
2899
Harald Welte64c07d22011-02-15 11:43:27 +01002900DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002901 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002902 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002903 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2904 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2905 "ARFCN of neighbor\n")
2906{
2907 struct gsm_bts *bts = vty->index;
2908 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2909 uint16_t arfcn = atoi(argv[1]);
2910
2911 if (!bts->neigh_list_manual_mode) {
2912 vty_out(vty, "%% Cannot configure neighbor list in "
2913 "automatic mode%s", VTY_NEWLINE);
2914 return CMD_WARNING;
2915 }
2916
2917 if (!strcmp(argv[0], "add"))
2918 bitvec_set_bit_pos(bv, arfcn, 1);
2919 else
2920 bitvec_set_bit_pos(bv, arfcn, 0);
2921
2922 return CMD_SUCCESS;
2923}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002924
Harald Welte8254cf72017-05-29 13:42:19 +02002925DEFUN(cfg_bts_pcu_sock, cfg_bts_pcu_sock_cmd,
2926 "pcu-socket PATH",
2927 "PCU Socket Path for using OsmoPCU co-located with BSC (legacy BTS)\n"
2928 "Path in the file system for the unix-domain PCU socket\n")
2929{
2930 struct gsm_bts *bts = vty->index;
2931 int rc;
2932
Harald Welte4a824ca2017-05-29 13:54:27 +02002933 osmo_talloc_replace_string(bts, &bts->pcu_sock_path, argv[0]);
Harald Welte8254cf72017-05-29 13:42:19 +02002934 pcu_sock_exit(bts);
2935 rc = pcu_sock_init(bts->pcu_sock_path, bts);
2936 if (rc < 0) {
2937 vty_out(vty, "%% Error creating PCU socket `%s' for BTS %u%s",
2938 bts->pcu_sock_path, bts->nr, VTY_NEWLINE);
2939 return CMD_WARNING;
2940 }
2941
2942 return CMD_SUCCESS;
2943}
2944
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02002945#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2946
2947DEFUN(cfg_bts_excl_rf_lock,
2948 cfg_bts_excl_rf_lock_cmd,
2949 "rf-lock-exclude",
2950 EXCL_RFLOCK_STR)
2951{
2952 struct gsm_bts *bts = vty->index;
2953 bts->excl_from_rf_lock = 1;
2954 return CMD_SUCCESS;
2955}
2956
2957DEFUN(cfg_bts_no_excl_rf_lock,
2958 cfg_bts_no_excl_rf_lock_cmd,
2959 "no rf-lock-exclude",
2960 NO_STR EXCL_RFLOCK_STR)
2961{
2962 struct gsm_bts *bts = vty->index;
2963 bts->excl_from_rf_lock = 0;
2964 return CMD_SUCCESS;
2965}
2966
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01002967#define FORCE_COMB_SI_STR "Force the generation of a single SI (no ter/bis)\n"
2968
2969DEFUN(cfg_bts_force_comb_si,
2970 cfg_bts_force_comb_si_cmd,
2971 "force-combined-si",
2972 FORCE_COMB_SI_STR)
2973{
2974 struct gsm_bts *bts = vty->index;
2975 bts->force_combined_si = 1;
2976 return CMD_SUCCESS;
2977}
2978
2979DEFUN(cfg_bts_no_force_comb_si,
2980 cfg_bts_no_force_comb_si_cmd,
2981 "no force-combined-si",
2982 NO_STR FORCE_COMB_SI_STR)
2983{
2984 struct gsm_bts *bts = vty->index;
2985 bts->force_combined_si = 0;
2986 return CMD_SUCCESS;
2987}
2988
Andreas Eversberga83d5112013-12-07 18:32:28 +01002989static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
2990{
2991 struct gsm_bts *bts = vty->index;
2992 struct bts_codec_conf *codec = &bts->codec;
2993 int i;
2994
2995 codec->hr = 0;
2996 codec->efr = 0;
2997 codec->amr = 0;
2998 for (i = 0; i < argc; i++) {
2999 if (!strcmp(argv[i], "hr"))
3000 codec->hr = 1;
3001 if (!strcmp(argv[i], "efr"))
3002 codec->efr = 1;
3003 if (!strcmp(argv[i], "amr"))
3004 codec->amr = 1;
3005 }
3006}
3007
3008#define CODEC_PAR_STR " (hr|efr|amr)"
3009#define CODEC_HELP_STR "Half Rate\n" \
3010 "Enhanced Full Rate\nAdaptive Multirate\n"
3011
3012DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
3013 "codec-support fr",
3014 "Codec Support settings\nFullrate\n")
3015{
3016 _get_codec_from_arg(vty, 0, argv);
3017 return CMD_SUCCESS;
3018}
3019
3020DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
3021 "codec-support fr" CODEC_PAR_STR,
3022 "Codec Support settings\nFullrate\n"
3023 CODEC_HELP_STR)
3024{
3025 _get_codec_from_arg(vty, 1, argv);
3026 return CMD_SUCCESS;
3027}
3028
3029DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
3030 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
3031 "Codec Support settings\nFullrate\n"
3032 CODEC_HELP_STR CODEC_HELP_STR)
3033{
3034 _get_codec_from_arg(vty, 2, argv);
3035 return CMD_SUCCESS;
3036}
3037
3038DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
3039 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
3040 "Codec Support settings\nFullrate\n"
3041 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
3042{
3043 _get_codec_from_arg(vty, 3, argv);
3044 return CMD_SUCCESS;
3045}
3046
3047DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
3048 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
3049 "Codec Support settings\nFullrate\n"
3050 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
3051{
3052 _get_codec_from_arg(vty, 4, argv);
3053 return CMD_SUCCESS;
3054}
3055
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01003056DEFUN(cfg_bts_depends_on, cfg_bts_depends_on_cmd,
3057 "depends-on-bts <0-255>",
3058 "This BTS can only be started if another one is up\n" "BTS Number\n")
3059{
3060 struct gsm_bts *bts = vty->index;
3061 struct gsm_bts *other_bts;
3062 int dep = atoi(argv[0]);
3063
3064
3065 if (!is_ipaccess_bts(bts)) {
3066 vty_out(vty, "This feature is only available for IP systems.%s",
3067 VTY_NEWLINE);
3068 return CMD_WARNING;
3069 }
3070
3071 other_bts = gsm_bts_num(bts->network, dep);
3072 if (!other_bts || !is_ipaccess_bts(other_bts)) {
3073 vty_out(vty, "This feature is only available for IP systems.%s",
3074 VTY_NEWLINE);
3075 return CMD_WARNING;
3076 }
3077
3078 if (dep >= bts->nr) {
3079 vty_out(vty, "%%Need to depend on an already declared unit.%s",
3080 VTY_NEWLINE);
3081 return CMD_WARNING;
3082 }
3083
3084 bts_depend_mark(bts, dep);
3085 return CMD_SUCCESS;
3086}
3087
3088DEFUN(cfg_bts_no_depends_on, cfg_bts_no_depends_on_cmd,
3089 "depeneds-on-bts <0-255>",
3090 NO_STR "This BTS can only be started if another one is up\n"
3091 "BTS Number\n")
3092{
3093 struct gsm_bts *bts = vty->index;
3094 int dep = atoi(argv[0]);
3095
3096 bts_depend_clear(bts, dep);
3097 return CMD_SUCCESS;
3098}
3099
Andreas Eversberg73266522014-01-19 11:47:44 +01003100#define AMR_TEXT "Adaptive Multi Rate settings\n"
3101#define AMR_MODE_TEXT "Codec modes to use with AMR codec\n"
3102#define AMR_START_TEXT "Initial codec to use with AMR\n" \
3103 "Automatically\nFirst codec\nSecond codec\nThird codec\nFourth codec\n"
3104#define AMR_TH_TEXT "AMR threshold between codecs\nMS side\nBTS side\n"
3105#define AMR_HY_TEXT "AMR hysteresis between codecs\nMS side\nBTS side\n"
3106
3107static void get_amr_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3108{
3109 struct gsm_bts *bts = vty->index;
3110 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
3111 struct gsm48_multi_rate_conf *mr_conf =
3112 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
3113 int i;
3114
3115 mr->gsm48_ie[1] = 0;
3116 for (i = 0; i < argc; i++)
3117 mr->gsm48_ie[1] |= 1 << atoi(argv[i]);
3118 mr_conf->icmi = 0;
3119}
3120
3121static void get_amr_th_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3122{
3123 struct gsm_bts *bts = vty->index;
3124 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003125 struct amr_mode *modes;
Andreas Eversberg73266522014-01-19 11:47:44 +01003126 int i;
3127
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003128 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
3129 for (i = 0; i < argc - 1; i++)
3130 modes[i].threshold = atoi(argv[i + 1]);
Andreas Eversberg73266522014-01-19 11:47:44 +01003131}
3132
3133static void get_amr_hy_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3134{
3135 struct gsm_bts *bts = vty->index;
3136 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003137 struct amr_mode *modes;
Andreas Eversberg73266522014-01-19 11:47:44 +01003138 int i;
3139
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003140 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
3141 for (i = 0; i < argc - 1; i++)
3142 modes[i].hysteresis = atoi(argv[i + 1]);
Andreas Eversberg73266522014-01-19 11:47:44 +01003143}
3144
3145static void get_amr_start_from_arg(struct vty *vty, const char *argv[], int full)
3146{
3147 struct gsm_bts *bts = vty->index;
3148 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
3149 struct gsm48_multi_rate_conf *mr_conf =
3150 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
3151 int num = 0, i;
3152
3153 for (i = 0; i < ((full) ? 8 : 6); i++) {
3154 if ((mr->gsm48_ie[1] & (1 << i))) {
3155 num++;
3156 }
3157 }
3158
3159 if (argv[0][0] == 'a' || num == 0)
3160 mr_conf->icmi = 0;
3161 else {
3162 mr_conf->icmi = 1;
3163 if (num < atoi(argv[0]))
3164 mr_conf->smod = num - 1;
3165 else
3166 mr_conf->smod = atoi(argv[0]) - 1;
3167 }
3168}
3169
3170#define AMR_TCHF_PAR_STR " (0|1|2|3|4|5|6|7)"
3171#define AMR_TCHF_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n" \
3172 "10,2k\n12,2k\n"
3173
3174#define AMR_TCHH_PAR_STR " (0|1|2|3|4|5)"
3175#define AMR_TCHH_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n"
3176
3177#define AMR_TH_HELP_STR "Threshold between codec 1 and 2\n"
3178#define AMR_HY_HELP_STR "Hysteresis between codec 1 and 2\n"
3179
3180DEFUN(cfg_bts_amr_fr_modes1, cfg_bts_amr_fr_modes1_cmd,
3181 "amr tch-f modes" AMR_TCHF_PAR_STR,
3182 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3183 AMR_TCHF_HELP_STR)
3184{
3185 get_amr_from_arg(vty, 1, argv, 1);
3186 return CMD_SUCCESS;
3187}
3188
3189DEFUN(cfg_bts_amr_fr_modes2, cfg_bts_amr_fr_modes2_cmd,
3190 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3191 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3192 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3193{
3194 get_amr_from_arg(vty, 2, argv, 1);
3195 return CMD_SUCCESS;
3196}
3197
3198DEFUN(cfg_bts_amr_fr_modes3, cfg_bts_amr_fr_modes3_cmd,
3199 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3200 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3201 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3202{
3203 get_amr_from_arg(vty, 3, argv, 1);
3204 return CMD_SUCCESS;
3205}
3206
3207DEFUN(cfg_bts_amr_fr_modes4, cfg_bts_amr_fr_modes4_cmd,
3208 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR 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 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3211{
3212 get_amr_from_arg(vty, 4, argv, 1);
3213 return CMD_SUCCESS;
3214}
3215
3216DEFUN(cfg_bts_amr_fr_start_mode, cfg_bts_amr_fr_start_mode_cmd,
3217 "amr tch-f start-mode (auto|1|2|3|4)",
3218 AMR_TEXT "Full Rate\n" AMR_START_TEXT)
3219{
3220 get_amr_start_from_arg(vty, argv, 1);
3221 return CMD_SUCCESS;
3222}
3223
3224DEFUN(cfg_bts_amr_fr_thres1, cfg_bts_amr_fr_thres1_cmd,
3225 "amr tch-f threshold (ms|bts) <0-63>",
3226 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3227 AMR_TH_HELP_STR)
3228{
3229 get_amr_th_from_arg(vty, 2, argv, 1);
3230 return CMD_SUCCESS;
3231}
3232
3233DEFUN(cfg_bts_amr_fr_thres2, cfg_bts_amr_fr_thres2_cmd,
3234 "amr tch-f threshold (ms|bts) <0-63> <0-63>",
3235 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3236 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3237{
3238 get_amr_th_from_arg(vty, 3, argv, 1);
3239 return CMD_SUCCESS;
3240}
3241
3242DEFUN(cfg_bts_amr_fr_thres3, cfg_bts_amr_fr_thres3_cmd,
3243 "amr tch-f threshold (ms|bts) <0-63> <0-63> <0-63>",
3244 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3245 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3246{
3247 get_amr_th_from_arg(vty, 4, argv, 1);
3248 return CMD_SUCCESS;
3249}
3250
3251DEFUN(cfg_bts_amr_fr_hyst1, cfg_bts_amr_fr_hyst1_cmd,
3252 "amr tch-f hysteresis (ms|bts) <0-15>",
3253 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3254 AMR_HY_HELP_STR)
3255{
3256 get_amr_hy_from_arg(vty, 2, argv, 1);
3257 return CMD_SUCCESS;
3258}
3259
3260DEFUN(cfg_bts_amr_fr_hyst2, cfg_bts_amr_fr_hyst2_cmd,
3261 "amr tch-f hysteresis (ms|bts) <0-15> <0-15>",
3262 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3263 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3264{
3265 get_amr_hy_from_arg(vty, 3, argv, 1);
3266 return CMD_SUCCESS;
3267}
3268
3269DEFUN(cfg_bts_amr_fr_hyst3, cfg_bts_amr_fr_hyst3_cmd,
3270 "amr tch-f hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3271 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3272 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3273{
3274 get_amr_hy_from_arg(vty, 4, argv, 1);
3275 return CMD_SUCCESS;
3276}
3277
3278DEFUN(cfg_bts_amr_hr_modes1, cfg_bts_amr_hr_modes1_cmd,
3279 "amr tch-h modes" AMR_TCHH_PAR_STR,
3280 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3281 AMR_TCHH_HELP_STR)
3282{
3283 get_amr_from_arg(vty, 1, argv, 0);
3284 return CMD_SUCCESS;
3285}
3286
3287DEFUN(cfg_bts_amr_hr_modes2, cfg_bts_amr_hr_modes2_cmd,
3288 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3289 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3290 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3291{
3292 get_amr_from_arg(vty, 2, argv, 0);
3293 return CMD_SUCCESS;
3294}
3295
3296DEFUN(cfg_bts_amr_hr_modes3, cfg_bts_amr_hr_modes3_cmd,
3297 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3298 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3299 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3300{
3301 get_amr_from_arg(vty, 3, argv, 0);
3302 return CMD_SUCCESS;
3303}
3304
3305DEFUN(cfg_bts_amr_hr_modes4, cfg_bts_amr_hr_modes4_cmd,
3306 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR 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 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3309{
3310 get_amr_from_arg(vty, 4, argv, 0);
3311 return CMD_SUCCESS;
3312}
3313
3314DEFUN(cfg_bts_amr_hr_start_mode, cfg_bts_amr_hr_start_mode_cmd,
3315 "amr tch-h start-mode (auto|1|2|3|4)",
3316 AMR_TEXT "Half Rate\n" AMR_START_TEXT)
3317{
3318 get_amr_start_from_arg(vty, argv, 0);
3319 return CMD_SUCCESS;
3320}
3321
3322DEFUN(cfg_bts_amr_hr_thres1, cfg_bts_amr_hr_thres1_cmd,
3323 "amr tch-h threshold (ms|bts) <0-63>",
3324 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3325 AMR_TH_HELP_STR)
3326{
3327 get_amr_th_from_arg(vty, 2, argv, 0);
3328 return CMD_SUCCESS;
3329}
3330
3331DEFUN(cfg_bts_amr_hr_thres2, cfg_bts_amr_hr_thres2_cmd,
3332 "amr tch-h threshold (ms|bts) <0-63> <0-63>",
3333 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3334 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3335{
3336 get_amr_th_from_arg(vty, 3, argv, 0);
3337 return CMD_SUCCESS;
3338}
3339
3340DEFUN(cfg_bts_amr_hr_thres3, cfg_bts_amr_hr_thres3_cmd,
3341 "amr tch-h threshold (ms|bts) <0-63> <0-63> <0-63>",
3342 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3343 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3344{
3345 get_amr_th_from_arg(vty, 4, argv, 0);
3346 return CMD_SUCCESS;
3347}
3348
3349DEFUN(cfg_bts_amr_hr_hyst1, cfg_bts_amr_hr_hyst1_cmd,
3350 "amr tch-h hysteresis (ms|bts) <0-15>",
3351 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3352 AMR_HY_HELP_STR)
3353{
3354 get_amr_hy_from_arg(vty, 2, argv, 0);
3355 return CMD_SUCCESS;
3356}
3357
3358DEFUN(cfg_bts_amr_hr_hyst2, cfg_bts_amr_hr_hyst2_cmd,
3359 "amr tch-h hysteresis (ms|bts) <0-15> <0-15>",
3360 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3361 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3362{
3363 get_amr_hy_from_arg(vty, 3, argv, 0);
3364 return CMD_SUCCESS;
3365}
3366
3367DEFUN(cfg_bts_amr_hr_hyst3, cfg_bts_amr_hr_hyst3_cmd,
3368 "amr tch-h hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3369 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3370 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3371{
3372 get_amr_hy_from_arg(vty, 4, argv, 0);
3373 return CMD_SUCCESS;
3374}
3375
Harald Welte8f0ed552010-05-11 21:53:49 +02003376#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02003377
Harald Welte5258fc42009-03-28 19:07:53 +00003378/* per TRX configuration */
3379DEFUN(cfg_trx,
3380 cfg_trx_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02003381 "trx <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02003382 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00003383 "Select a TRX to configure")
3384{
3385 int trx_nr = atoi(argv[0]);
3386 struct gsm_bts *bts = vty->index;
3387 struct gsm_bts_trx *trx;
3388
Harald Weltee441d9c2009-06-21 16:17:15 +02003389 if (trx_nr > bts->num_trx) {
3390 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
3391 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00003392 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02003393 } else if (trx_nr == bts->num_trx) {
3394 /* we need to allocate a new one */
3395 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003396 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02003397 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003398
Harald Weltee441d9c2009-06-21 16:17:15 +02003399 if (!trx)
3400 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00003401
3402 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02003403 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00003404 vty->node = TRX_NODE;
3405
3406 return CMD_SUCCESS;
3407}
3408
3409DEFUN(cfg_trx_arfcn,
3410 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01003411 "arfcn <0-1023>",
Harald Welte13fe2192012-08-17 09:57:25 +02003412 "Set the ARFCN for this TRX\n"
3413 "Absolute Radio Frequency Channel Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003414{
3415 int arfcn = atoi(argv[0]);
3416 struct gsm_bts_trx *trx = vty->index;
3417
3418 /* FIXME: check if this ARFCN is supported by this TRX */
3419
3420 trx->arfcn = arfcn;
3421
3422 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
3423 /* FIXME: use OML layer to update the ARFCN */
3424 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
3425
3426 return CMD_SUCCESS;
3427}
3428
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003429DEFUN(cfg_trx_nominal_power,
3430 cfg_trx_nominal_power_cmd,
3431 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003432 "Nominal TRX RF Power in dBm\n"
3433 "Nominal TRX RF Power in dBm\n"
3434 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003435{
3436 struct gsm_bts_trx *trx = vty->index;
3437
3438 trx->nominal_power = atoi(argv[0]);
3439
3440 return CMD_SUCCESS;
3441}
3442
Harald Weltefcd24452009-06-20 18:15:19 +02003443DEFUN(cfg_trx_max_power_red,
3444 cfg_trx_max_power_red_cmd,
3445 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003446 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02003447 "Reduction of maximum BS RF Power in dB\n")
3448{
3449 int maxpwr_r = atoi(argv[0]);
3450 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01003451 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02003452
3453 /* FIXME: check if our BTS type supports more than 12 */
3454 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
3455 vty_out(vty, "%% Power %d dB is not in the valid range%s",
3456 maxpwr_r, VTY_NEWLINE);
3457 return CMD_WARNING;
3458 }
3459 if (maxpwr_r & 1) {
3460 vty_out(vty, "%% Power %d dB is not an even value%s",
3461 maxpwr_r, VTY_NEWLINE);
3462 return CMD_WARNING;
3463 }
3464
3465 trx->max_power_red = maxpwr_r;
3466
3467 /* FIXME: make sure we update this using OML */
3468
3469 return CMD_SUCCESS;
3470}
3471
Harald Welte42581822009-08-08 16:12:58 +02003472DEFUN(cfg_trx_rsl_e1,
3473 cfg_trx_rsl_e1_cmd,
3474 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003475 "RSL Parameters\n"
3476 "E1/T1 interface to be used for RSL\n"
3477 "E1/T1 interface to be used for RSL\n"
3478 "E1/T1 Line Number to be used for RSL\n"
3479 "E1/T1 Timeslot to be used for RSL\n"
3480 "E1/T1 Timeslot to be used for RSL\n"
3481 "E1/T1 Sub-slot to be used for RSL\n"
3482 "E1/T1 Sub-slot 0 is to be used for RSL\n"
3483 "E1/T1 Sub-slot 1 is to be used for RSL\n"
3484 "E1/T1 Sub-slot 2 is to be used for RSL\n"
3485 "E1/T1 Sub-slot 3 is to be used for RSL\n"
3486 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003487{
3488 struct gsm_bts_trx *trx = vty->index;
3489
3490 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
3491
3492 return CMD_SUCCESS;
3493}
3494
3495DEFUN(cfg_trx_rsl_e1_tei,
3496 cfg_trx_rsl_e1_tei_cmd,
3497 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003498 "RSL Parameters\n"
3499 "Set the TEI to be used for RSL\n"
3500 "Set the TEI to be used for RSL\n"
3501 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003502{
3503 struct gsm_bts_trx *trx = vty->index;
3504
3505 trx->rsl_tei = atoi(argv[0]);
3506
3507 return CMD_SUCCESS;
3508}
3509
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003510DEFUN(cfg_trx_rf_locked,
3511 cfg_trx_rf_locked_cmd,
3512 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003513 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
3514 "TRX is NOT RF locked (active)\n"
3515 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003516{
3517 int locked = atoi(argv[0]);
3518 struct gsm_bts_trx *trx = vty->index;
3519
3520 gsm_trx_lock_rf(trx, locked);
3521 return CMD_SUCCESS;
3522}
Harald Welte42581822009-08-08 16:12:58 +02003523
Harald Welte5258fc42009-03-28 19:07:53 +00003524/* per TS configuration */
3525DEFUN(cfg_ts,
3526 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003527 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003528 "Select a Timeslot to configure\n"
3529 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003530{
3531 int ts_nr = atoi(argv[0]);
3532 struct gsm_bts_trx *trx = vty->index;
3533 struct gsm_bts_trx_ts *ts;
3534
3535 if (ts_nr >= TRX_NR_TS) {
3536 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
3537 TRX_NR_TS, VTY_NEWLINE);
3538 return CMD_WARNING;
3539 }
3540
3541 ts = &trx->ts[ts_nr];
3542
3543 vty->index = ts;
3544 vty->node = TS_NODE;
3545
3546 return CMD_SUCCESS;
3547}
3548
Harald Weltea6fd58e2009-08-07 00:25:23 +02003549DEFUN(cfg_ts_pchan,
3550 cfg_ts_pchan_cmd,
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003551 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003552 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003553{
3554 struct gsm_bts_trx_ts *ts = vty->index;
3555 int pchanc;
3556
3557 pchanc = gsm_pchan_parse(argv[0]);
3558 if (pchanc < 0)
3559 return CMD_WARNING;
3560
3561 ts->pchan = pchanc;
3562
3563 return CMD_SUCCESS;
3564}
3565
3566/* used for backwards compatibility with old config files that still
3567 * have uppercase pchan type names */
3568DEFUN_HIDDEN(cfg_ts_pchan_compat,
3569 cfg_ts_pchan_compat_cmd,
Harald Weltea6fd58e2009-08-07 00:25:23 +02003570 "phys_chan_config PCHAN",
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003571 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003572{
3573 struct gsm_bts_trx_ts *ts = vty->index;
3574 int pchanc;
3575
3576 pchanc = gsm_pchan_parse(argv[0]);
3577 if (pchanc < 0)
3578 return CMD_WARNING;
3579
3580 ts->pchan = pchanc;
3581
3582 return CMD_SUCCESS;
3583}
3584
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003585
3586
Harald Welte135a6482011-05-30 12:09:13 +02003587DEFUN(cfg_ts_tsc,
3588 cfg_ts_tsc_cmd,
3589 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003590 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02003591{
3592 struct gsm_bts_trx_ts *ts = vty->index;
3593
Max71d082b2017-05-30 15:03:38 +02003594 if (!gsm_btsmodel_has_feature(ts->trx->bts->model, BTS_FEAT_MULTI_TSC)) {
Harald Welte903aaea2014-01-19 17:10:50 +01003595 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
3596 "falling back to BCC%s", VTY_NEWLINE);
3597 ts->tsc = -1;
3598 return CMD_WARNING;
3599 }
3600
Harald Welte135a6482011-05-30 12:09:13 +02003601 ts->tsc = atoi(argv[0]);
3602
3603 return CMD_SUCCESS;
3604}
3605
Harald Weltea39b0f22010-06-14 22:26:10 +02003606#define HOPPING_STR "Configure frequency hopping\n"
3607
3608DEFUN(cfg_ts_hopping,
3609 cfg_ts_hopping_cmd,
3610 "hopping enabled (0|1)",
3611 HOPPING_STR "Enable or disable frequency hopping\n"
3612 "Disable frequency hopping\n" "Enable frequency hopping\n")
3613{
3614 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02003615 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02003616
Max71d082b2017-05-30 15:03:38 +02003617 if (enabled && !gsm_btsmodel_has_feature(ts->trx->bts->model, BTS_FEAT_HOPPING)) {
Harald Weltec2fb3d02010-06-14 22:47:37 +02003618 vty_out(vty, "BTS model does not support hopping%s",
3619 VTY_NEWLINE);
3620 return CMD_WARNING;
3621 }
3622
3623 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02003624
3625 return CMD_SUCCESS;
3626}
3627
Harald Welte6e0cd042009-09-12 13:05:33 +02003628DEFUN(cfg_ts_hsn,
3629 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02003630 "hopping sequence-number <0-63>",
3631 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003632 "Which hopping sequence to use for this channel\n"
3633 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003634{
3635 struct gsm_bts_trx_ts *ts = vty->index;
3636
3637 ts->hopping.hsn = atoi(argv[0]);
3638
3639 return CMD_SUCCESS;
3640}
3641
3642DEFUN(cfg_ts_maio,
3643 cfg_ts_maio_cmd,
3644 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003645 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003646 "Which hopping MAIO to use for this channel\n"
3647 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003648{
3649 struct gsm_bts_trx_ts *ts = vty->index;
3650
3651 ts->hopping.maio = atoi(argv[0]);
3652
3653 return CMD_SUCCESS;
3654}
3655
3656DEFUN(cfg_ts_arfcn_add,
3657 cfg_ts_arfcn_add_cmd,
3658 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003659 HOPPING_STR "Configure hopping ARFCN list\n"
3660 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003661{
3662 struct gsm_bts_trx_ts *ts = vty->index;
3663 int arfcn = atoi(argv[0]);
3664
Harald Weltea39b0f22010-06-14 22:26:10 +02003665 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3666
Harald Welte6e0cd042009-09-12 13:05:33 +02003667 return CMD_SUCCESS;
3668}
3669
3670DEFUN(cfg_ts_arfcn_del,
3671 cfg_ts_arfcn_del_cmd,
3672 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003673 HOPPING_STR "Configure hopping ARFCN list\n"
3674 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003675{
3676 struct gsm_bts_trx_ts *ts = vty->index;
3677 int arfcn = atoi(argv[0]);
3678
Harald Weltea39b0f22010-06-14 22:26:10 +02003679 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3680
Harald Welte6e0cd042009-09-12 13:05:33 +02003681 return CMD_SUCCESS;
3682}
3683
Harald Weltea6fd58e2009-08-07 00:25:23 +02003684DEFUN(cfg_ts_e1_subslot,
3685 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003686 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003687 "E1/T1 channel connected to this on-air timeslot\n"
3688 "E1/T1 channel connected to this on-air timeslot\n"
3689 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02003690 "E1/T1 timeslot connected to this on-air timeslot\n"
3691 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02003692 "E1/T1 sub-slot connected to this on-air timeslot\n"
3693 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3694 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3695 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3696 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3697 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003698{
3699 struct gsm_bts_trx_ts *ts = vty->index;
3700
Harald Welte42581822009-08-08 16:12:58 +02003701 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003702
3703 return CMD_SUCCESS;
3704}
Harald Welte5258fc42009-03-28 19:07:53 +00003705
Harald Welte4f10c252010-05-16 21:47:13 +02003706void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3707{
3708 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003709 net->bsc_ctrs->ctr[BSC_CTR_CHREQ_TOTAL].current,
3710 net->bsc_ctrs->ctr[BSC_CTR_CHREQ_NO_CHANNEL].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003711 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003712 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003713 net->bsc_ctrs->ctr[BSC_CTR_CHAN_RF_FAIL].current,
3714 net->bsc_ctrs->ctr[BSC_CTR_CHAN_RLL_ERR].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003715 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003716 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003717 net->bsc_ctrs->ctr[BSC_CTR_PAGING_ATTEMPTED].current,
3718 net->bsc_ctrs->ctr[BSC_CTR_PAGING_COMPLETED].current,
3719 net->bsc_ctrs->ctr[BSC_CTR_PAGING_EXPIRED].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003720 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003721 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003722 net->bsc_ctrs->ctr[BSC_CTR_BTS_OML_FAIL].current,
3723 net->bsc_ctrs->ctr[BSC_CTR_BTS_RSL_FAIL].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003724 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003725}
3726
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003727DEFUN(drop_bts,
3728 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02003729 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003730 "Debug/Simulation command to drop Abis/IP BTS\n"
3731 "Debug/Simulation command to drop Abis/IP BTS\n"
3732 "Debug/Simulation command to drop Abis/IP BTS\n"
3733 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003734{
3735 struct gsm_network *gsmnet;
3736 struct gsm_bts_trx *trx;
3737 struct gsm_bts *bts;
3738 unsigned int bts_nr;
3739
3740 gsmnet = gsmnet_from_vty(vty);
3741
3742 bts_nr = atoi(argv[0]);
3743 if (bts_nr >= gsmnet->num_bts) {
3744 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3745 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3746 return CMD_WARNING;
3747 }
3748
3749 bts = gsm_bts_num(gsmnet, bts_nr);
3750 if (!bts) {
3751 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3752 return CMD_WARNING;
3753 }
3754
3755 if (!is_ipaccess_bts(bts)) {
3756 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3757 return CMD_WARNING;
3758 }
3759
3760
3761 /* close all connections */
3762 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003763 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003764 } else if (strcmp(argv[1], "rsl") == 0) {
3765 /* close all rsl connections */
3766 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003767 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003768 }
3769 } else {
3770 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3771 return CMD_WARNING;
3772 }
3773
3774 return CMD_SUCCESS;
3775}
3776
Holger Hans Peter Freyther740e65f2016-03-16 13:45:23 +01003777DEFUN(restart_bts, restart_bts_cmd,
3778 "restart-bts <0-65535>",
3779 "Restart ip.access nanoBTS through OML\n"
3780 "BTS Number\n")
3781{
3782 struct gsm_network *gsmnet;
3783 struct gsm_bts_trx *trx;
3784 struct gsm_bts *bts;
3785 unsigned int bts_nr;
3786
3787 gsmnet = gsmnet_from_vty(vty);
3788
3789 bts_nr = atoi(argv[0]);
3790 if (bts_nr >= gsmnet->num_bts) {
3791 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3792 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3793 return CMD_WARNING;
3794 }
3795
3796 bts = gsm_bts_num(gsmnet, bts_nr);
3797 if (!bts) {
3798 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3799 return CMD_WARNING;
3800 }
3801
3802 if (!is_ipaccess_bts(bts) || is_sysmobts_v2(bts)) {
3803 vty_out(vty, "This command only works for ipaccess nanoBTS.%s",
3804 VTY_NEWLINE);
3805 return CMD_WARNING;
3806 }
3807
3808 /* go from last TRX to c0 */
3809 llist_for_each_entry_reverse(trx, &bts->trx_list, list)
3810 abis_nm_ipaccess_restart(trx);
3811
3812 return CMD_SUCCESS;
3813}
3814
Harald Welted36641a2017-07-10 20:25:10 +02003815DEFUN(bts_resend, bts_resend_cmd,
3816 "bts <0-255> resend-system-information",
3817 "BTS Specific Commands\n" "BTS Number\n"
3818 "Re-generate + re-send BCCH SYSTEM INFORMATION\n")
3819{
3820 struct gsm_network *gsmnet;
3821 struct gsm_bts_trx *trx;
3822 struct gsm_bts *bts;
3823 unsigned int bts_nr;
3824
3825 gsmnet = gsmnet_from_vty(vty);
3826
3827 bts_nr = atoi(argv[0]);
3828 if (bts_nr >= gsmnet->num_bts) {
3829 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3830 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3831 return CMD_WARNING;
3832 }
3833
3834 bts = gsm_bts_num(gsmnet, bts_nr);
3835 if (!bts) {
3836 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3837 return CMD_WARNING;
3838 }
3839
3840 llist_for_each_entry_reverse(trx, &bts->trx_list, list)
3841 gsm_bts_trx_set_system_infos(trx);
3842
3843 return CMD_SUCCESS;
3844}
3845
3846
Harald Welte30f1f372014-12-28 15:00:45 +01003847DEFUN(smscb_cmd, smscb_cmd_cmd,
3848 "bts <0-255> smscb-command <1-4> HEXSTRING",
3849 "BTS related commands\n" "BTS Number\n"
3850 "SMS Cell Broadcast\n" "Last Valid Block\n"
3851 "Hex Encoded SMSCB message (up to 88 octets)\n")
3852{
3853 struct gsm_bts *bts;
3854 int bts_nr = atoi(argv[0]);
3855 int last_block = atoi(argv[1]);
3856 struct rsl_ie_cb_cmd_type cb_cmd;
3857 uint8_t buf[88];
3858 int rc;
3859
Neels Hofmeyrb90eabf2016-05-11 18:48:39 +02003860 bts = gsm_bts_num(gsmnet_from_vty(vty), bts_nr);
Harald Welte30f1f372014-12-28 15:00:45 +01003861 if (!bts) {
3862 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3863 return CMD_WARNING;
3864 }
3865 rc = osmo_hexparse(argv[2], buf, sizeof(buf));
3866 if (rc < 0 || rc > sizeof(buf)) {
3867 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
3868 return CMD_WARNING;
3869 }
3870
3871 cb_cmd.spare = 0;
3872 cb_cmd.def_bcast = 0;
3873 cb_cmd.command = RSL_CB_CMD_TYPE_NORMAL;
3874
3875 switch (last_block) {
3876 case 1:
3877 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_1;
3878 break;
3879 case 2:
3880 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_2;
3881 break;
3882 case 3:
3883 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_3;
3884 break;
3885 case 4:
3886 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_4;
3887 break;
3888 }
3889
3890 rsl_sms_cb_command(bts, RSL_CHAN_SDCCH4_ACCH, cb_cmd, buf, rc);
3891
3892 return CMD_SUCCESS;
3893}
3894
Harald Welte7fe00fb2017-05-27 14:09:50 +02003895/* resolve a gsm_bts_trx_ts basd on the given numeric identifiers */
Harald Welte645eb622017-05-27 15:52:58 +02003896static struct gsm_bts_trx_ts *vty_get_ts(struct vty *vty, const char *bts_str, const char *trx_str,
3897 const char *ts_str)
Harald Welte7fe00fb2017-05-27 14:09:50 +02003898{
Harald Welte645eb622017-05-27 15:52:58 +02003899 int bts_nr = atoi(bts_str);
3900 int trx_nr = atoi(trx_str);
3901 int ts_nr = atoi(ts_str);
Harald Welte7fe00fb2017-05-27 14:09:50 +02003902 struct gsm_bts *bts;
3903 struct gsm_bts_trx *trx;
3904 struct gsm_bts_trx_ts *ts;
3905
3906 bts = gsm_bts_num(gsmnet_from_vty(vty), bts_nr);
3907 if (!bts) {
3908 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3909 return NULL;
3910 }
3911
3912 trx = gsm_bts_trx_num(bts, trx_nr);
3913 if (!trx) {
3914 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3915 return NULL;
3916 }
3917
3918 ts = &trx->ts[ts_nr];
3919
3920 return ts;
3921}
Harald Welte30f1f372014-12-28 15:00:45 +01003922
Harald Welted0d2b0b2010-12-23 13:18:07 +01003923DEFUN(pdch_act, pdch_act_cmd,
3924 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3925 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3926 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3927 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3928 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3929{
Harald Welted0d2b0b2010-12-23 13:18:07 +01003930 struct gsm_bts_trx_ts *ts;
Harald Welted0d2b0b2010-12-23 13:18:07 +01003931 int activate;
3932
Harald Welte645eb622017-05-27 15:52:58 +02003933 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
Harald Welte7fe00fb2017-05-27 14:09:50 +02003934 if (!ts)
Harald Welted0d2b0b2010-12-23 13:18:07 +01003935 return CMD_WARNING;
Harald Welted0d2b0b2010-12-23 13:18:07 +01003936
Harald Welte7fe00fb2017-05-27 14:09:50 +02003937 if (!is_ipaccess_bts(ts->trx->bts)) {
Harald Welted0d2b0b2010-12-23 13:18:07 +01003938 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3939 VTY_NEWLINE);
3940 return CMD_WARNING;
3941 }
3942
Harald Welted0d2b0b2010-12-23 13:18:07 +01003943 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3944 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
Harald Welte645eb622017-05-27 15:52:58 +02003945 "mode%s", ts->nr, VTY_NEWLINE);
Harald Welted0d2b0b2010-12-23 13:18:07 +01003946 return CMD_WARNING;
3947 }
3948
3949 if (!strcmp(argv[3], "activate"))
3950 activate = 1;
3951 else
3952 activate = 0;
3953
3954 rsl_ipacc_pdch_activate(ts, activate);
3955
3956 return CMD_SUCCESS;
3957
3958}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003959
Harald Welte2abd5e12017-05-27 14:10:40 +02003960/* determine the logical channel type based on the physical channel type */
3961static int lchan_type_by_pchan(enum gsm_phys_chan_config pchan)
3962{
3963 switch (pchan) {
3964 case GSM_PCHAN_TCH_F:
3965 return GSM_LCHAN_TCH_F;
3966 case GSM_PCHAN_TCH_H:
3967 return GSM_LCHAN_TCH_H;
3968 case GSM_PCHAN_SDCCH8_SACCH8C:
3969 case GSM_PCHAN_SDCCH8_SACCH8C_CBCH:
3970 case GSM_PCHAN_CCCH_SDCCH4:
3971 case GSM_PCHAN_CCCH_SDCCH4_CBCH:
3972 return GSM_LCHAN_SDCCH;
3973 default:
3974 return -1;
3975 }
3976}
3977
3978/* configure the lchan for a single AMR mode (as specified) */
3979static int lchan_set_single_amr_mode(struct gsm_lchan *lchan, uint8_t amr_mode)
3980{
3981 struct amr_multirate_conf mr;
3982 struct gsm48_multi_rate_conf *mr_conf;
3983 mr_conf = (struct gsm48_multi_rate_conf *) &mr.gsm48_ie;
3984
3985 if (amr_mode > 7)
3986 return -1;
3987
3988 memset(&mr, 0, sizeof(mr));
3989 mr_conf->ver = 1;
3990 /* bit-mask of supported modes, only one bit is set. Reflects
3991 * Figure 10.5.2.47a where there are no thershold and only a
3992 * single mode */
3993 mr.gsm48_ie[1] = 1 << amr_mode;
3994
3995 mr.ms_mode[0].mode = amr_mode;
3996 mr.bts_mode[0].mode = amr_mode;
3997
3998 /* encode this configuration into the lchan for both uplink and
3999 * downlink direction */
4000 gsm48_multirate_config(lchan->mr_ms_lv, &mr, mr.ms_mode);
4001 gsm48_multirate_config(lchan->mr_bts_lv, &mr, mr.bts_mode);
4002
4003 return 0;
4004}
4005
4006/* Debug/Measurement command to activate a given logical channel
4007 * manually in a given mode/codec. This is useful for receiver
4008 * performance testing (FER/RBER/...) */
4009DEFUN(lchan_act, lchan_act_cmd,
4010 "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7> (activate|deactivate) (hr|fr|efr|amr) [<0-7>]",
4011 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
4012 "TRX Timeslot\n" "Timeslot Number\n" "Sub-Slot Number\n" "Sub-Slot Number\n"
4013 "Manual Channel Activation (e.g. for BER test)\n"
4014 "Manual Channel Deactivation (e.g. for BER test)\n"
4015 "Half-Rate v1\n" "Full-Rate\n" "Enhanced Full Rate\n" "Adaptive Multi-Rate\n" "AMR Mode\n")
4016{
4017 struct gsm_bts_trx_ts *ts;
4018 struct gsm_lchan *lchan;
4019 int ss_nr = atoi(argv[3]);
4020 const char *act_str = argv[4];
4021 const char *codec_str = argv[5];
4022 int activate;
4023
4024 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
4025 if (!ts)
4026 return CMD_WARNING;
4027
4028 lchan = &ts->lchan[ss_nr];
4029
4030 if (!strcmp(act_str, "activate"))
4031 activate = 1;
4032 else
4033 activate = 0;
4034
4035 if (ss_nr >= ts_subslots(ts)) {
4036 vty_out(vty, "%% subslot %d >= permitted %d for physical channel %s%s",
4037 ss_nr, ts_subslots(ts), gsm_pchan_name(ts->pchan), VTY_NEWLINE);
4038 return CMD_WARNING;
4039 }
4040
4041 if (activate) {
4042 int lchan_t;
4043 if (lchan->state != LCHAN_S_NONE) {
4044 vty_out(vty, "%% Cannot activate: Channel busy!%s", VTY_NEWLINE);
4045 return CMD_WARNING;
4046 }
4047 lchan_t = lchan_type_by_pchan(ts->pchan);
4048 if (lchan_t < 0)
4049 return CMD_WARNING;
4050 /* configure the lchan */
4051 lchan->type = lchan_t;
4052 lchan->rsl_cmode = RSL_CMOD_SPD_SPEECH;
4053 if (!strcmp(codec_str, "hr") || !strcmp(codec_str, "fr"))
4054 lchan->tch_mode = GSM48_CMODE_SPEECH_V1;
4055 else if (!strcmp(codec_str, "efr"))
4056 lchan->tch_mode = GSM48_CMODE_SPEECH_EFR;
4057 else if (!strcmp(codec_str, "amr")) {
4058 int amr_mode;
4059 if (argc < 7) {
4060 vty_out(vty, "%% AMR requires specification of AMR mode%s", VTY_NEWLINE);
4061 return CMD_WARNING;
4062 }
4063 amr_mode = atoi(argv[6]);
4064 lchan->tch_mode = GSM48_CMODE_SPEECH_AMR;
4065 lchan_set_single_amr_mode(lchan, amr_mode);
4066 }
4067 vty_out(vty, "%% activating lchan %s%s", gsm_lchan_name(lchan), VTY_NEWLINE);
4068 rsl_chan_activate_lchan(lchan, RSL_ACT_TYPE_INITIAL, 0);
4069 rsl_ipacc_crcx(lchan);
Harald Welte2abd5e12017-05-27 14:10:40 +02004070 } else {
4071 rsl_direct_rf_release(lchan);
4072 }
4073
4074 return CMD_SUCCESS;
4075}
4076
Harald Welte3f86c522017-05-27 15:53:28 +02004077DEFUN(lchan_mdcx, lchan_mdcx_cmd,
4078 "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7> mdcx A.B.C.D <0-65535>",
4079 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
4080 "TRX Timeslot\n" "Timeslot Number\n" "Sub-Slot\n" "Sub-Slot Number\n"
4081 "Modify RTP Connection\n" "MGW IP Address\n" "MGW UDP Port\n")
4082{
4083 struct gsm_bts_trx_ts *ts;
4084 struct gsm_lchan *lchan;
4085 int ss_nr = atoi(argv[3]);
4086 int port = atoi(argv[5]);
4087 struct in_addr ia;
4088 inet_aton(argv[4], &ia);
4089
4090 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
4091 if (!ts)
4092 return CMD_WARNING;
4093
4094 lchan = &ts->lchan[ss_nr];
4095
4096 if (ss_nr >= ts_subslots(ts)) {
4097 vty_out(vty, "%% subslot %d >= permitted %d for physical channel %s%s",
4098 ss_nr, ts_subslots(ts), gsm_pchan_name(ts->pchan), VTY_NEWLINE);
4099 return CMD_WARNING;
4100 }
4101
4102 vty_out(vty, "%% connecting RTP of %s to %s:%u%s", gsm_lchan_name(lchan),
4103 inet_ntoa(ia), port, VTY_NEWLINE);
4104 rsl_ipacc_mdcx(lchan, ntohl(ia.s_addr), port, 0);
4105 return CMD_SUCCESS;
4106}
Harald Welte3fb8a7b2017-07-18 19:11:49 +02004107
4108DEFUN(ctrl_trap, ctrl_trap_cmd,
4109 "ctrl-interface generate-trap TRAP VALUE",
4110 "Commands related to the CTRL Interface\n"
4111 "Generate a TRAP for test purpose\n"
4112 "Identity/Name of the TRAP variable\n"
4113 "Value of the TRAP variable\n")
4114{
4115 struct gsm_network *net = gsmnet_from_vty(vty);
4116
4117 ctrl_cmd_send_trap(net->ctrl, argv[0], (char *) argv[1]);
4118 return CMD_SUCCESS;
4119}
4120
Harald Weltedcccb182010-05-16 20:52:23 +02004121extern int bsc_vty_init_extra(void);
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02004122
Maxdb0e3802017-01-12 19:35:11 +01004123int bsc_vty_init(struct gsm_network *network)
Harald Welte68628e82009-03-10 12:17:57 +00004124{
Harald Welte4ab9d7c2012-08-17 12:42:06 +02004125 cfg_ts_pchan_cmd.string =
4126 vty_cmd_string_from_valstr(tall_bsc_ctx,
4127 gsm_pchant_names,
4128 "phys_chan_config (", "|", ")",
4129 VTY_DO_LOWER);
4130 cfg_ts_pchan_cmd.doc =
4131 vty_cmd_string_from_valstr(tall_bsc_ctx,
4132 gsm_pchant_descs,
4133 "Physical Channel Combination\n",
4134 "\n", "", 0);
4135
Harald Weltee555c2b2012-08-17 13:02:12 +02004136 cfg_bts_type_cmd.string =
4137 vty_cmd_string_from_valstr(tall_bsc_ctx,
4138 bts_type_names,
4139 "type (", "|", ")",
4140 VTY_DO_LOWER);
4141 cfg_bts_type_cmd.doc =
4142 vty_cmd_string_from_valstr(tall_bsc_ctx,
4143 bts_type_descs,
4144 "BTS Vendor/Type\n",
4145 "\n", "", 0);
4146
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +02004147 common_cs_vty_init(network, config_write_net);
Harald Weltee555c2b2012-08-17 13:02:12 +02004148
Neels Hofmeyrea11bf82016-05-12 01:53:23 +02004149 install_element_ve(&bsc_show_net_cmd);
Harald Welteb4d5b172010-05-12 16:10:35 +00004150 install_element_ve(&show_bts_cmd);
4151 install_element_ve(&show_trx_cmd);
4152 install_element_ve(&show_ts_cmd);
4153 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08004154 install_element_ve(&show_lchan_summary_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00004155
Harald Welteb4d5b172010-05-12 16:10:35 +00004156 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01004157 install_element_ve(&show_paging_group_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00004158
Maxdb0e3802017-01-12 19:35:11 +01004159 logging_vty_add_cmds(NULL);
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01004160
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01004161 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01004162 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01004163 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
4164 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
4165 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
4166 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
4167 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
4168 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01004169 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01004170 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
4171 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
4172 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
4173 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
4174 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
4175 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
4176 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
4177 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
4178 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01004179 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01004180 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08004181 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08004182 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02004183
4184 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02004185 install_node(&bts_node, config_write_bts);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004186 vty_install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00004187 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02004188 install_element(BTS_NODE, &cfg_description_cmd);
4189 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02004190 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02004191 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Maxc08ee712016-05-11 12:45:13 +02004192 install_element(BTS_NODE, &cfg_bts_dtxu_cmd);
4193 install_element(BTS_NODE, &cfg_bts_dtxd_cmd);
4194 install_element(BTS_NODE, &cfg_bts_no_dtxu_cmd);
4195 install_element(BTS_NODE, &cfg_bts_no_dtxd_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00004196 install_element(BTS_NODE, &cfg_bts_lac_cmd);
4197 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004198 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00004199 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b291802013-03-12 13:57:05 +01004200 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02004201 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01004202 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Sipos Csaba56e17662015-02-07 13:27:36 +01004203 install_element(BTS_NODE, &cfg_bts_nokia_site_bts_reset_timer_cnf_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02004204 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004205 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
4206 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02004207 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01004208 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
4209 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02004210 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
4211 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
4212 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08004213 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
4214 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02004215 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08004216 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov67920592013-09-16 13:13:04 +04004217 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02004218 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte73225282009-12-12 18:17:25 +01004219 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
4220 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01004221 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
4222 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
4223 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
4224 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
4225 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
4226 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01004227 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_cmd);
Harald Welte2f8b9d22017-06-18 11:12:13 +03004228 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_inf_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02004229 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
bhargava350533c2016-07-21 11:14:34 +05304230 install_element(BTS_NODE, &cfg_bts_gprs_11bit_rach_support_for_egprs_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02004231 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004232 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01004233 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Max292ec582016-07-28 11:55:37 +02004234 install_element(BTS_NODE, &cfg_bts_gprs_ctrl_ack_cmd);
4235 install_element(BTS_NODE, &cfg_no_bts_gprs_ctrl_ack_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004236 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02004237 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08004238 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004239 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08004240 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
4241 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
4242 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08004243 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02004244 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
4245 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte42def722017-01-13 00:10:32 +01004246 install_element(BTS_NODE, &cfg_bts_early_cm_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01004247 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
4248 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01004249 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Max59a1bf32016-04-15 16:04:46 +02004250 install_element(BTS_NODE, &cfg_bts_si2quater_neigh_add_cmd);
4251 install_element(BTS_NODE, &cfg_bts_si2quater_neigh_del_cmd);
Max26679e02016-04-20 15:57:13 +02004252 install_element(BTS_NODE, &cfg_bts_si2quater_uarfcn_add_cmd);
4253 install_element(BTS_NODE, &cfg_bts_si2quater_uarfcn_del_cmd);
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02004254 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
4255 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01004256 install_element(BTS_NODE, &cfg_bts_force_comb_si_cmd);
4257 install_element(BTS_NODE, &cfg_bts_no_force_comb_si_cmd);
Andreas Eversberga83d5112013-12-07 18:32:28 +01004258 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
4259 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
4260 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
4261 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
4262 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01004263 install_element(BTS_NODE, &cfg_bts_depends_on_cmd);
4264 install_element(BTS_NODE, &cfg_bts_no_depends_on_cmd);
Andreas Eversberg73266522014-01-19 11:47:44 +01004265 install_element(BTS_NODE, &cfg_bts_amr_fr_modes1_cmd);
4266 install_element(BTS_NODE, &cfg_bts_amr_fr_modes2_cmd);
4267 install_element(BTS_NODE, &cfg_bts_amr_fr_modes3_cmd);
4268 install_element(BTS_NODE, &cfg_bts_amr_fr_modes4_cmd);
4269 install_element(BTS_NODE, &cfg_bts_amr_fr_thres1_cmd);
4270 install_element(BTS_NODE, &cfg_bts_amr_fr_thres2_cmd);
4271 install_element(BTS_NODE, &cfg_bts_amr_fr_thres3_cmd);
4272 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst1_cmd);
4273 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst2_cmd);
4274 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst3_cmd);
4275 install_element(BTS_NODE, &cfg_bts_amr_fr_start_mode_cmd);
4276 install_element(BTS_NODE, &cfg_bts_amr_hr_modes1_cmd);
4277 install_element(BTS_NODE, &cfg_bts_amr_hr_modes2_cmd);
4278 install_element(BTS_NODE, &cfg_bts_amr_hr_modes3_cmd);
4279 install_element(BTS_NODE, &cfg_bts_amr_hr_modes4_cmd);
4280 install_element(BTS_NODE, &cfg_bts_amr_hr_thres1_cmd);
4281 install_element(BTS_NODE, &cfg_bts_amr_hr_thres2_cmd);
4282 install_element(BTS_NODE, &cfg_bts_amr_hr_thres3_cmd);
4283 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst1_cmd);
4284 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst2_cmd);
4285 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst3_cmd);
4286 install_element(BTS_NODE, &cfg_bts_amr_hr_start_mode_cmd);
Harald Welte8254cf72017-05-29 13:42:19 +02004287 install_element(BTS_NODE, &cfg_bts_pcu_sock_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004288
Harald Welte5258fc42009-03-28 19:07:53 +00004289 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004290 install_node(&trx_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004291 vty_install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00004292 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02004293 install_element(TRX_NODE, &cfg_description_cmd);
4294 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01004295 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02004296 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004297 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
4298 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01004299 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004300
Harald Welte5258fc42009-03-28 19:07:53 +00004301 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004302 install_node(&ts_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004303 vty_install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02004304 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte4ab9d7c2012-08-17 12:42:06 +02004305 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02004306 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02004307 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02004308 install_element(TS_NODE, &cfg_ts_hsn_cmd);
4309 install_element(TS_NODE, &cfg_ts_maio_cmd);
4310 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
4311 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02004312 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004313
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02004314 install_element(ENABLE_NODE, &drop_bts_cmd);
Holger Hans Peter Freyther740e65f2016-03-16 13:45:23 +01004315 install_element(ENABLE_NODE, &restart_bts_cmd);
Harald Welted36641a2017-07-10 20:25:10 +02004316 install_element(ENABLE_NODE, &bts_resend_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01004317 install_element(ENABLE_NODE, &pdch_act_cmd);
Harald Welte2abd5e12017-05-27 14:10:40 +02004318 install_element(ENABLE_NODE, &lchan_act_cmd);
Harald Welte3f86c522017-05-27 15:53:28 +02004319 install_element(ENABLE_NODE, &lchan_mdcx_cmd);
Harald Welte30f1f372014-12-28 15:00:45 +01004320 install_element(ENABLE_NODE, &smscb_cmd_cmd);
Harald Welte3fb8a7b2017-07-18 19:11:49 +02004321 install_element(ENABLE_NODE, &ctrl_trap_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02004322
Harald Welte81c9b9c2010-05-31 16:40:40 +02004323 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01004324 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01004325 e1inp_vty_init();
Harald Welte42def722017-01-13 00:10:32 +01004326 osmo_fsm_vty_add_cmds();
Harald Welte81c9b9c2010-05-31 16:40:40 +02004327
Harald Weltedcccb182010-05-16 20:52:23 +02004328 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00004329
Harald Welte68628e82009-03-10 12:17:57 +00004330 return 0;
4331}