blob: d1da450b71b6015457e94184361b805ba2df6ae2 [file] [log] [blame]
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +01001/*
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +02002 * Copyright (C) 2018-2019 sysmocom - s.f.m.c. GmbH
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +01003 * All Rights Reserved
4 *
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +02005 * SPDX-License-Identifier: AGPL-3.0+
6 *
7 * Author: Pau Espin Pedrol <pespin@sysmocom.de>
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +020017 * GNU Affero General Public License for more details.
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010018 *
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +020019 * You should have received a copy of the GNU Affero General Public License
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010020 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +020021 * See the COPYING file in the main directory for details.
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010022 */
23
24#include <string.h>
25#include <stdint.h>
26#include <inttypes.h>
27#include <netinet/in.h>
28#include <arpa/inet.h>
29
30#include <osmocom/core/talloc.h>
31#include <osmocom/core/utils.h>
32#include <osmocom/core/rate_ctr.h>
33
34#include <osmocom/vty/command.h>
Pau Espin Pedrolaebbfe02020-01-02 16:39:11 +010035#include <osmocom/vty/logging.h>
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010036#include <osmocom/vty/vty.h>
37#include <osmocom/vty/misc.h>
38
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +020039#include "trx_rate_ctr.h"
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010040#include "trx_vty.h"
41#include "../config.h"
42
43static struct trx_ctx* g_trx_ctx;
44
Pau Espin Pedrola7bf6cd2020-01-14 17:52:15 +010045const struct value_string clock_ref_names[] = {
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +010046 { REF_INTERNAL, "internal" },
47 { REF_EXTERNAL, "external" },
Pau Espin Pedrolaae403f2018-08-27 16:50:19 +020048 { REF_GPS, "gpsdo" },
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +010049 { 0, NULL }
50};
51
Alexander Chemeris9a87d902019-10-15 00:33:07 +030052const struct value_string filler_names[] = {
53 { FILLER_DUMMY, "Dummy bursts (C0 only)" },
54 { FILLER_ZERO, "Empty bursts" },
55 { FILLER_NORM_RAND, "GMSK Normal Bursts with random payload" },
56 { FILLER_EDGE_RAND, "8-PSK Normal Bursts with random payload" },
57 { FILLER_ACCESS_RAND, "Access Bursts with random payload" },
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +010058 { 0, NULL }
59};
60
Alexander Chemeris9a87d902019-10-15 00:33:07 +030061static const struct value_string filler_types[] = {
62 { FILLER_DUMMY, "dummy" },
63 { FILLER_ZERO, "zero" },
64 { FILLER_NORM_RAND, "random-nb-gmsk" },
65 { FILLER_EDGE_RAND, "random-nb-8psk" },
66 { FILLER_ACCESS_RAND, "random-ab" },
67 { 0, NULL }
68};
69
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +070070static const struct value_string filler_docs[] = {
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +070071 { FILLER_DUMMY, "Send a Dummy Burst on C0 (TRX0) and empty burst on other channels" },
Vadim Yanitskiy15873072020-12-08 15:35:52 +010072 { FILLER_ZERO, "Send an empty burst (default)" },
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +070073 { FILLER_NORM_RAND, "Send a GMSK modulated Normal Burst with random bits (spectrum mask testing)" },
74 { FILLER_EDGE_RAND, "Send an 8-PSK modulated Normal Burst with random bits (spectrum mask testing)" },
75 { FILLER_ACCESS_RAND, "Send an Access Burst with random bits (Rx/Tx alignment testing)" },
76 { 0, NULL }
77};
78
Alexander Chemeris9a87d902019-10-15 00:33:07 +030079
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010080struct trx_ctx *trx_from_vty(struct vty *v)
81{
82 /* It can't hurt to force callers to continue to pass the vty instance
83 * to this function, in case we'd like to retrieve the global
84 * trx instance from the vty at some point in the future. But
85 * until then, just return the global pointer, which should have been
86 * initialized by trx_vty_init().
87 */
88 OSMO_ASSERT(g_trx_ctx);
89 return g_trx_ctx;
90}
91
92enum trx_vty_node {
93 TRX_NODE = _LAST_OSMOVTY_NODE + 1,
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +010094 CHAN_NODE,
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010095};
96
97static struct cmd_node trx_node = {
98 TRX_NODE,
99 "%s(config-trx)# ",
100 1,
101};
102
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100103static struct cmd_node chan_node = {
104 CHAN_NODE,
105 "%s(config-trx-chan)# ",
106 1,
107};
108
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100109DEFUN(cfg_trx, cfg_trx_cmd,
110 "trx",
111 "Configure the TRX\n")
112{
113 struct trx_ctx *trx = trx_from_vty(vty);
114
115 if (!trx)
116 return CMD_WARNING;
117
118 vty->node = TRX_NODE;
119
120 return CMD_SUCCESS;
121}
122
123DEFUN(cfg_bind_ip, cfg_bind_ip_cmd,
Vadim Yanitskiyc620ced2020-10-30 01:47:35 +0700124 "bind-ip " VTY_IPV4_CMD,
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100125 "Set the IP address for the local bind\n"
126 "IPv4 Address\n")
127{
128 struct trx_ctx *trx = trx_from_vty(vty);
129
130 osmo_talloc_replace_string(trx, &trx->cfg.bind_addr, argv[0]);
131
132 return CMD_SUCCESS;
133}
134
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100135DEFUN(cfg_remote_ip, cfg_remote_ip_cmd,
Vadim Yanitskiyc620ced2020-10-30 01:47:35 +0700136 "remote-ip " VTY_IPV4_CMD,
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100137 "Set the IP address for the remote BTS\n"
138 "IPv4 Address\n")
139{
140 struct trx_ctx *trx = trx_from_vty(vty);
141
142 osmo_talloc_replace_string(trx, &trx->cfg.remote_addr, argv[0]);
143
144 return CMD_SUCCESS;
145}
146
147DEFUN(cfg_base_port, cfg_base_port_cmd,
148 "base-port <1-65535>",
149 "Set the TRX Base Port\n"
150 "TRX Base Port\n")
151{
152 struct trx_ctx *trx = trx_from_vty(vty);
153
154 trx->cfg.base_port = atoi(argv[0]);
155
156 return CMD_SUCCESS;
157}
158
159DEFUN(cfg_dev_args, cfg_dev_args_cmd,
160 "dev-args DESC",
161 "Set the device-specific arguments to pass to the device\n"
162 "Device-specific arguments\n")
163{
164 struct trx_ctx *trx = trx_from_vty(vty);
165
166 osmo_talloc_replace_string(trx, &trx->cfg.dev_args, argv[0]);
167
168 return CMD_SUCCESS;
169}
170
171DEFUN(cfg_tx_sps, cfg_tx_sps_cmd,
172 "tx-sps (1|4)",
173 "Set the Tx Samples-per-Symbol\n"
Vadim Yanitskiyef79fd92020-10-30 01:44:29 +0700174 "Tx Samples-per-Symbol\n"
175 "1 Sample-per-Symbol\n"
176 "4 Samples-per-Symbol\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100177{
178 struct trx_ctx *trx = trx_from_vty(vty);
179
180 trx->cfg.tx_sps = atoi(argv[0]);
181
182 return CMD_SUCCESS;
183}
184
185DEFUN(cfg_rx_sps, cfg_rx_sps_cmd,
186 "rx-sps (1|4)",
187 "Set the Rx Samples-per-Symbol\n"
Vadim Yanitskiyef79fd92020-10-30 01:44:29 +0700188 "Rx Samples-per-Symbol\n"
189 "1 Sample-per-Symbol\n"
190 "4 Samples-per-Symbol\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100191{
192 struct trx_ctx *trx = trx_from_vty(vty);
193
194 trx->cfg.rx_sps = atoi(argv[0]);
195
196 return CMD_SUCCESS;
197}
198
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100199DEFUN(cfg_clock_ref, cfg_clock_ref_cmd,
200 "clock-ref (internal|external|gpsdo)",
201 "Set the Reference Clock\n"
Martin Hauke066fd042019-10-13 19:08:00 +0200202 "Enable internal reference (default)\n"
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100203 "Enable external 10 MHz reference\n"
204 "Enable GPSDO reference\n")
205{
206 struct trx_ctx *trx = trx_from_vty(vty);
207
208 trx->cfg.clock_ref = get_string_value(clock_ref_names, argv[0]);
209
210 return CMD_SUCCESS;
211}
212
213DEFUN(cfg_multi_arfcn, cfg_multi_arfcn_cmd,
214 "multi-arfcn (disable|enable)",
Vadim Yanitskiy5d6504c2020-10-30 01:50:05 +0700215 "Multi-ARFCN transceiver mode (default=disable)\n"
216 "Enable multi-ARFCN mode\n" "Disable multi-ARFCN mode\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100217{
218 struct trx_ctx *trx = trx_from_vty(vty);
219
220 if (strcmp("disable", argv[0]) == 0) {
221 trx->cfg.multi_arfcn = false;
Tom Tsoud2800452019-04-01 07:55:48 +0700222 return CMD_SUCCESS;
223 }
224
225 if (trx->cfg.num_chans > TRX_MCHAN_MAX) {
226 vty_out(vty, "Up to %i channels are supported for multi-TRX mode%s",
227 TRX_MCHAN_MAX, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100228 return CMD_WARNING;
229 }
230
Tom Tsoud2800452019-04-01 07:55:48 +0700231 trx->cfg.multi_arfcn = true;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100232 return CMD_SUCCESS;
233}
234
235DEFUN(cfg_offset, cfg_offset_cmd,
236 "offset FLOAT",
237 "Set the baseband frequency offset (default=0, auto)\n"
238 "Baseband Frequency Offset\n")
239{
240 struct trx_ctx *trx = trx_from_vty(vty);
241
242 trx->cfg.offset = atof(argv[0]);
243
244 return CMD_SUCCESS;
245}
246
Vadim Yanitskiy3b8f7c42018-08-23 13:41:06 +0700247DEFUN_ATTR(cfg_freq_offset, cfg_freq_offset_cmd,
248 "freq-offset FLOAT",
249 "Apply an artificial offset to Rx/Tx carrier frequency\n"
250 "Frequency offset in kHz (e.g. -145300)\n",
251 CMD_ATTR_HIDDEN)
252{
253 struct trx_ctx *trx = trx_from_vty(vty);
254
255 trx->cfg.freq_offset_khz = atof(argv[0]);
256
257 return CMD_SUCCESS;
258}
259
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100260DEFUN(cfg_rssi_offset, cfg_rssi_offset_cmd,
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200261 "rssi-offset FLOAT [relative]",
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100262 "Set the RSSI to dBm offset in dB (default=0)\n"
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200263 "RSSI to dBm offset in dB\n"
264 "Add to the default rssi-offset value instead of completely replacing it\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100265{
266 struct trx_ctx *trx = trx_from_vty(vty);
267
268 trx->cfg.rssi_offset = atof(argv[0]);
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200269 trx->cfg.force_rssi_offset = (argc == 1);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100270
271 return CMD_SUCCESS;
272}
273
274DEFUN(cfg_swap_channels, cfg_swap_channels_cmd,
275 "swap-channels (disable|enable)",
Vadim Yanitskiy948b4e42020-10-30 01:27:21 +0700276 "Swap primary and secondary channels of the PHY (if any)\n"
277 "Do not swap primary and secondary channels (default)\n"
278 "Swap primary and secondary channels\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100279{
280 struct trx_ctx *trx = trx_from_vty(vty);
281
282 if (strcmp("disable", argv[0]) == 0) {
283 trx->cfg.swap_channels = false;
284 } else if (strcmp("enable", argv[0]) == 0) {
285 trx->cfg.swap_channels = true;
286 } else {
287 return CMD_WARNING;
288 }
289
290 return CMD_SUCCESS;
291}
292
293DEFUN(cfg_egprs, cfg_egprs_cmd,
294 "egprs (disable|enable)",
Vadim Yanitskiye0bdb6b2020-10-30 01:35:19 +0700295 "EGPRS (8-PSK demodulation) support (default=disable)\n"
296 "Disable EGPRS (8-PSK demodulation) support\n"
297 "Enable EGPRS (8-PSK demodulation) support\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100298{
299 struct trx_ctx *trx = trx_from_vty(vty);
300
301 if (strcmp("disable", argv[0]) == 0) {
302 trx->cfg.egprs = false;
303 } else if (strcmp("enable", argv[0]) == 0) {
304 trx->cfg.egprs = true;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100305 } else {
306 return CMD_WARNING;
307 }
308
309 return CMD_SUCCESS;
310}
311
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200312DEFUN(cfg_ext_rach, cfg_ext_rach_cmd,
313 "ext-rach (disable|enable)",
Vadim Yanitskiyfaacb192020-10-30 01:35:49 +0700314 "11-bit Access Burst correlation support (default=disable)\n"
315 "Disable 11-bit Access Burst (TS1 & TS2) correlation\n"
316 "Enable 11-bit Access Burst (TS1 & TS2) correlation\n")
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200317{
318 struct trx_ctx *trx = trx_from_vty(vty);
319
320 if (strcmp("disable", argv[0]) == 0)
321 trx->cfg.ext_rach = false;
322
323 if (strcmp("enable", argv[0]) == 0)
324 trx->cfg.ext_rach = true;
325
326 return CMD_SUCCESS;
327}
328
Pau Espin Pedrol553a2502020-07-29 18:05:25 +0200329DEFUN_DEPRECATED(cfg_rt_prio, cfg_rt_prio_cmd,
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100330 "rt-prio <1-32>",
331 "Set the SCHED_RR real-time priority\n"
332 "Real time priority\n")
333{
334 struct trx_ctx *trx = trx_from_vty(vty);
335
336 trx->cfg.sched_rr = atoi(argv[0]);
Pau Espin Pedrol553a2502020-07-29 18:05:25 +0200337 vty_out (vty, "%% 'rt-prio %u' is deprecated, use 'policy rr %u' under 'sched' node instead%s",
338 trx->cfg.sched_rr, trx->cfg.sched_rr, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100339
340 return CMD_SUCCESS;
341}
342
Eric Wildac0487e2019-06-17 13:02:44 +0200343DEFUN(cfg_stack_size, cfg_stack_size_cmd,
344 "stack-size <0-2147483647>",
345 "Set the stack size per thread in BYTE, 0 = OS default\n"
346 "Stack size per thread in BYTE\n")
347{
348 struct trx_ctx *trx = trx_from_vty(vty);
349
350 trx->cfg.stack_size = atoi(argv[0]);
351
352 return CMD_SUCCESS;
353}
354
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700355#define CFG_FILLER_DOC_STR \
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300356 "Filler burst settings\n"
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700357
358DEFUN(cfg_filler, cfg_filler_type_cmd,
359 "AUTO-GENERATED", "AUTO-GENERATED")
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300360{
361 struct trx_ctx *trx = trx_from_vty(vty);
362 // trx->cfg.filler is unsigned, so we need an interim int var to detect errors
363 int type = get_string_value(filler_types, argv[0]);
364
365 if (type < 0) {
366 trx->cfg.filler = FILLER_ZERO;
367 return CMD_WARNING;
368 }
369 trx->cfg.filler = type;
370
371 return CMD_SUCCESS;
372}
373
374DEFUN(cfg_test_rtsc, cfg_filler_tsc_cmd,
375 "filler tsc <0-7>",
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700376 CFG_FILLER_DOC_STR
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300377 "Set the TSC for GMSK/8-PSK Normal Burst random fillers. Used only with 'random-nb-gmsk' and"
378 " 'random-nb-8psk' filler types. (default=0)\n"
379 "TSC\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100380{
381 struct trx_ctx *trx = trx_from_vty(vty);
382
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300383 trx->cfg.rtsc = atoi(argv[0]);
384
385 return CMD_SUCCESS;
386}
387
388DEFUN(cfg_test_rach_delay, cfg_filler_rach_delay_cmd,
389 "filler access-burst-delay <0-68>",
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700390 CFG_FILLER_DOC_STR
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300391 "Set the delay for Access Burst random fillers. Used only with 'random-ab' filler type. (default=0)\n"
392 "RACH delay in symbols\n")
393{
394 struct trx_ctx *trx = trx_from_vty(vty);
395
396 trx->cfg.rach_delay = atoi(argv[0]);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100397
398 return CMD_SUCCESS;
399}
400
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200401static int vty_ctr_name_2_id(const char* str) {
402 size_t i;
403 for (i = 0; trx_chan_ctr_names[i].str; i++) {
404 if (strstr(trx_chan_ctr_names[i].str, str)) {
405 return i;
406 }
407 }
408 return -1;
409}
410
411static int vty_intv_name_2_id(const char* str) {
412 size_t i;
413 for (i = 0; rate_ctr_intv[i].str; i++) {
414 if (strcmp(rate_ctr_intv[i].str, str) == 0) {
415 return i;
416 }
417 }
418 return -1;
419}
420
Pau Espin Pedrol1d0c6fe2020-07-09 18:09:10 +0200421#define THRESHOLD_ARGS "(rx_overruns|tx_underruns|rx_drop_events|rx_drop_samples|tx_drop_events|tx_drop_samples|tx_stale_bursts|tx_unavailable_bursts|tx_trxd_fn_repeated|tx_trxd_fn_outoforder|tx_trxd_fn_skipped)"
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200422#define THRESHOLD_STR_VAL(s) "Set threshold value for rate_ctr device:" OSMO_STRINGIFY_VAL(s) "\n"
423#define THRESHOLD_STRS \
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200424 THRESHOLD_STR_VAL(rx_overruns) \
425 THRESHOLD_STR_VAL(tx_underruns) \
426 THRESHOLD_STR_VAL(rx_drop_events) \
Pau Espin Pedrol68a78092019-07-29 20:11:25 +0200427 THRESHOLD_STR_VAL(rx_drop_samples) \
428 THRESHOLD_STR_VAL(tx_drop_events) \
Pau Espin Pedrol92ba59d2020-06-29 14:34:59 +0200429 THRESHOLD_STR_VAL(tx_drop_samples) \
Pau Espin Pedrolc0d6fd22020-07-09 16:51:47 +0200430 THRESHOLD_STR_VAL(tx_stale_bursts) \
Pau Espin Pedrol1d0c6fe2020-07-09 18:09:10 +0200431 THRESHOLD_STR_VAL(tx_unavailable_bursts) \
Pau Espin Pedrolc0d6fd22020-07-09 16:51:47 +0200432 THRESHOLD_STR_VAL(tx_trxd_fn_repeated) \
433 THRESHOLD_STR_VAL(tx_trxd_fn_outoforder) \
434 THRESHOLD_STR_VAL(tx_trxd_fn_skipped) \
435 ""
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200436#define INTV_ARGS "(per-second|per-minute|per-hour|per-day)"
437#define INTV_STR_VAL(s) "Threshold value sampled " OSMO_STRINGIFY_VAL(s) "\n"
438#define INTV_STRS \
439 INTV_STR_VAL(per-second) \
440 INTV_STR_VAL(per-minute) \
441 INTV_STR_VAL(per-hour) \
442 INTV_STR_VAL(per-day)
443
Philipp Maier30863e82020-09-29 22:03:51 +0200444DEFUN_ATTR(cfg_ctr_error_threshold, cfg_ctr_error_threshold_cmd,
445 "ctr-error-threshold " THRESHOLD_ARGS " <0-65535> " INTV_ARGS,
446 "Threshold rate for error counter\n"
447 THRESHOLD_STRS
448 "Value to set for threshold\n"
449 INTV_STRS,
450 CMD_ATTR_IMMEDIATE)
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200451{
452 int rc;
453 struct ctr_threshold ctr;
454
455 struct trx_ctx *trx = trx_from_vty(vty);
456 rc = vty_ctr_name_2_id(argv[0]);
457 if (rc < 0) {
458 vty_out(vty, "No valid ctr_name found for ctr-error-threshold %s%s",
459 argv[0], VTY_NEWLINE);
460 return CMD_WARNING;
461 }
462 ctr.ctr_id = (enum TrxCtr)rc;
463 ctr.val = atoi(argv[1]);
464 rc = vty_intv_name_2_id(argv[2]);
465 if (rc < 0) {
466 vty_out(vty, "No valid time frame found for ctr-error-threshold %s %d %s%s",
467 argv[0], ctr.val, argv[2], VTY_NEWLINE);
468 return CMD_WARNING;
469 }
470 ctr.intv = (enum rate_ctr_intv) rc;
471 trx_rate_ctr_threshold_add(&ctr);
472
473 return CMD_SUCCESS;
474}
475
Philipp Maier30863e82020-09-29 22:03:51 +0200476DEFUN_ATTR(cfg_no_ctr_error_threshold, cfg_no_ctr_error_threshold_cmd,
477 "no ctr-error-threshold " THRESHOLD_ARGS " <0-65535> " INTV_ARGS,
478 NO_STR "Threshold rate for error counter\n"
479 THRESHOLD_STRS
480 "Value to set for threshold\n"
481 INTV_STRS,
482 CMD_ATTR_IMMEDIATE)
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200483{
484 int rc;
485 struct ctr_threshold ctr;
486
487 struct trx_ctx *trx = trx_from_vty(vty);
488 rc = vty_ctr_name_2_id(argv[0]);
489 if (rc < 0) {
490 vty_out(vty, "No valid ctr_name found for ctr-error-threshold %s%s",
491 argv[0], VTY_NEWLINE);
492 return CMD_WARNING;
493 }
494 ctr.ctr_id = (enum TrxCtr)rc;
495 ctr.val = atoi(argv[1]);
496 rc = vty_intv_name_2_id(argv[2]);
497 if (rc < 0) {
498 vty_out(vty, "No valid time frame found for ctr-error-threshold %s %d %s%s",
499 argv[0], ctr.val, argv[2], VTY_NEWLINE);
500 return CMD_WARNING;
501 }
502 ctr.intv = (enum rate_ctr_intv) rc;
503 if (trx_rate_ctr_threshold_del(&ctr) < 0) {
504 vty_out(vty, "no ctr-error-threshold: Entry to delete not found%s", VTY_NEWLINE);
505 return CMD_WARNING;
506 }
507
508 return CMD_SUCCESS;
509}
510
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100511DEFUN(cfg_chan, cfg_chan_cmd,
512 "chan <0-100>",
513 "Select a channel to configure\n"
514 "Channel index\n")
515{
516 struct trx_ctx *trx = trx_from_vty(vty);
517 int idx = atoi(argv[0]);
518
519 if (idx >= TRX_CHAN_MAX) {
520 vty_out(vty, "Chan list full.%s", VTY_NEWLINE);
521 return CMD_WARNING;
Tom Tsoud2800452019-04-01 07:55:48 +0700522 } else if (trx->cfg.multi_arfcn && trx->cfg.num_chans >= TRX_MCHAN_MAX) {
523 vty_out(vty, "Up to %i channels are supported for multi-TRX mode%s",
524 TRX_MCHAN_MAX, VTY_NEWLINE);
525 return CMD_WARNING;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100526 }
Tom Tsoud2800452019-04-01 07:55:48 +0700527
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100528 if (trx->cfg.num_chans < idx) { /* Unexisting or creating non-consecutive */
529 vty_out(vty, "Non-existent or non-consecutive chan %d.%s",
530 idx, VTY_NEWLINE);
531 return CMD_WARNING;
532 } else if (trx->cfg.num_chans == idx) { /* creating it */
533 trx->cfg.num_chans++;
534 trx->cfg.chans[idx].trx = trx;
535 trx->cfg.chans[idx].idx = idx;
536 }
537
538 vty->node = CHAN_NODE;
539 vty->index = &trx->cfg.chans[idx];
540
541 return CMD_SUCCESS;
542}
543
544DEFUN(cfg_chan_rx_path, cfg_chan_rx_path_cmd,
545 "rx-path NAME",
546 "Set the Rx Path\n"
547 "Rx Path name\n")
548{
549 struct trx_chan *chan = vty->index;
550
Vadim Yanitskiy4d436842020-09-11 18:31:08 +0700551 if (chan->trx->cfg.multi_arfcn && chan->idx > 0) {
552 vty_out(vty, "%% Setting 'rx-path' for chan %u in multi-ARFCN mode "
553 "does not make sense, because only chan 0 is used%s",
554 chan->idx, VTY_NEWLINE);
555 }
556
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100557 osmo_talloc_replace_string(chan->trx, &chan->rx_path, argv[0]);
558
559 return CMD_SUCCESS;
560}
561
562DEFUN(cfg_chan_tx_path, cfg_chan_tx_path_cmd,
563 "tx-path NAME",
564 "Set the Tx Path\n"
565 "Tx Path name\n")
566{
567 struct trx_chan *chan = vty->index;
568
Vadim Yanitskiy4d436842020-09-11 18:31:08 +0700569 if (chan->trx->cfg.multi_arfcn && chan->idx > 0) {
570 vty_out(vty, "%% Setting 'tx-path' for chan %u in multi-ARFCN mode "
571 "does not make sense, because only chan 0 is used%s",
572 chan->idx, VTY_NEWLINE);
573 }
574
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100575 osmo_talloc_replace_string(chan->trx, &chan->tx_path, argv[0]);
576
577 return CMD_SUCCESS;
578}
579
580static int dummy_config_write(struct vty *v)
581{
582 return CMD_SUCCESS;
583}
584
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100585static int config_write_trx(struct vty *vty)
586{
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100587 struct trx_chan *chan;
588 int i;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100589 struct trx_ctx *trx = trx_from_vty(vty);
590
591 vty_out(vty, "trx%s", VTY_NEWLINE);
592 if (trx->cfg.bind_addr)
593 vty_out(vty, " bind-ip %s%s", trx->cfg.bind_addr, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100594 if (trx->cfg.remote_addr)
595 vty_out(vty, " remote-ip %s%s", trx->cfg.remote_addr, VTY_NEWLINE);
596 if (trx->cfg.base_port != DEFAULT_TRX_PORT)
597 vty_out(vty, " base-port %u%s", trx->cfg.base_port, VTY_NEWLINE);
598 if (trx->cfg.dev_args)
599 vty_out(vty, " dev-args %s%s", trx->cfg.dev_args, VTY_NEWLINE);
600 if (trx->cfg.tx_sps != DEFAULT_TX_SPS)
601 vty_out(vty, " tx-sps %u%s", trx->cfg.tx_sps, VTY_NEWLINE);
602 if (trx->cfg.rx_sps != DEFAULT_RX_SPS)
603 vty_out(vty, " rx-sps %u%s", trx->cfg.rx_sps, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100604 if (trx->cfg.clock_ref != REF_INTERNAL)
605 vty_out(vty, " clock-ref %s%s", get_value_string(clock_ref_names, trx->cfg.clock_ref), VTY_NEWLINE);
606 vty_out(vty, " multi-arfcn %s%s", trx->cfg.multi_arfcn ? "enable" : "disable", VTY_NEWLINE);
607 if (trx->cfg.offset != 0)
608 vty_out(vty, " offset %f%s", trx->cfg.offset, VTY_NEWLINE);
Vadim Yanitskiy3b8f7c42018-08-23 13:41:06 +0700609 if (trx->cfg.freq_offset_khz != 0)
610 vty_out(vty, " freq-offset %f%s", trx->cfg.freq_offset_khz, VTY_NEWLINE);
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200611 if (!(trx->cfg.rssi_offset == 0 && !trx->cfg.force_rssi_offset))
612 vty_out(vty, " rssi-offset %f%s%s", trx->cfg.rssi_offset,
613 trx->cfg.force_rssi_offset ? " relative": "", VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100614 vty_out(vty, " swap-channels %s%s", trx->cfg.swap_channels ? "enable" : "disable", VTY_NEWLINE);
615 vty_out(vty, " egprs %s%s", trx->cfg.egprs ? "enable" : "disable", VTY_NEWLINE);
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200616 vty_out(vty, " ext-rach %s%s", trx->cfg.ext_rach ? "enable" : "disable", VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100617 if (trx->cfg.sched_rr != 0)
618 vty_out(vty, " rt-prio %u%s", trx->cfg.sched_rr, VTY_NEWLINE);
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300619 if (trx->cfg.filler != FILLER_ZERO)
620 vty_out(vty, " filler type %s%s", get_value_string(filler_types, trx->cfg.filler), VTY_NEWLINE);
621 if (trx->cfg.rtsc > 0)
622 vty_out(vty, " filler tsc %u%s", trx->cfg.rtsc, VTY_NEWLINE);
623 if (trx->cfg.rach_delay > 0)
624 vty_out(vty, " filler access-burst-delay %u%s", trx->cfg.rach_delay, VTY_NEWLINE);
Eric Wildac0487e2019-06-17 13:02:44 +0200625 if (trx->cfg.stack_size != 0)
626 vty_out(vty, " stack-size %u%s", trx->cfg.stack_size, VTY_NEWLINE);
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200627 trx_rate_ctr_threshold_write_config(vty, " ");
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100628
629 for (i = 0; i < trx->cfg.num_chans; i++) {
630 chan = &trx->cfg.chans[i];
631 vty_out(vty, " chan %u%s", chan->idx, VTY_NEWLINE);
632 if (chan->rx_path)
Harald Welte03b3c302018-07-31 15:48:18 +0200633 vty_out(vty, " rx-path %s%s", chan->rx_path, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100634 if (chan->tx_path)
Harald Welte03b3c302018-07-31 15:48:18 +0200635 vty_out(vty, " tx-path %s%s", chan->tx_path, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100636 }
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100637
638 return CMD_SUCCESS;
639}
640
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100641static void trx_dump_vty(struct vty *vty, struct trx_ctx *trx)
642{
643 struct trx_chan *chan;
644 int i;
645 vty_out(vty, "TRX Config:%s", VTY_NEWLINE);
646 vty_out(vty, " Local IP: %s%s", trx->cfg.bind_addr, VTY_NEWLINE);
647 vty_out(vty, " Remote IP: %s%s", trx->cfg.remote_addr, VTY_NEWLINE);
648 vty_out(vty, " TRX Base Port: %u%s", trx->cfg.base_port, VTY_NEWLINE);
649 vty_out(vty, " Device args: %s%s", trx->cfg.dev_args, VTY_NEWLINE);
650 vty_out(vty, " Tx Samples-per-Symbol: %u%s", trx->cfg.tx_sps, VTY_NEWLINE);
651 vty_out(vty, " Rx Samples-per-Symbol: %u%s", trx->cfg.rx_sps, VTY_NEWLINE);
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300652 vty_out(vty, " Filler Burst Type: %s%s", get_value_string(filler_names, trx->cfg.filler), VTY_NEWLINE);
653 vty_out(vty, " Filler Burst TSC: %u%s", trx->cfg.rtsc, VTY_NEWLINE);
654 vty_out(vty, " Filler Burst RACH Delay: %u%s", trx->cfg.rach_delay, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100655 vty_out(vty, " Clock Reference: %s%s", get_value_string(clock_ref_names, trx->cfg.clock_ref), VTY_NEWLINE);
656 vty_out(vty, " Multi-Carrier: %s%s", trx->cfg.multi_arfcn ? "Enabled" : "Disabled", VTY_NEWLINE);
657 vty_out(vty, " Tuning offset: %f%s", trx->cfg.offset, VTY_NEWLINE);
658 vty_out(vty, " RSSI to dBm offset: %f%s", trx->cfg.rssi_offset, VTY_NEWLINE);
659 vty_out(vty, " Swap channels: %s%s", trx->cfg.swap_channels ? "Enabled" : "Disabled", VTY_NEWLINE);
660 vty_out(vty, " EDGE support: %s%s", trx->cfg.egprs ? "Enabled" : "Disabled", VTY_NEWLINE);
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200661 vty_out(vty, " Extended RACH support: %s%s", trx->cfg.ext_rach ? "Enabled" : "Disabled", VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100662 vty_out(vty, " Real Time Priority: %u (%s)%s", trx->cfg.sched_rr,
663 trx->cfg.sched_rr ? "Enabled" : "Disabled", VTY_NEWLINE);
Eric Wildac0487e2019-06-17 13:02:44 +0200664 vty_out(vty, " Stack size per Thread in BYTE (0 = OS default): %u%s", trx->cfg.stack_size, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100665 vty_out(vty, " Channels: %u%s", trx->cfg.num_chans, VTY_NEWLINE);
666 for (i = 0; i < trx->cfg.num_chans; i++) {
667 chan = &trx->cfg.chans[i];
668 vty_out(vty, " Channel %u:%s", chan->idx, VTY_NEWLINE);
669 if (chan->rx_path)
670 vty_out(vty, " Rx Path: %s%s", chan->rx_path, VTY_NEWLINE);
671 if (chan->tx_path)
672 vty_out(vty, " Tx Path: %s%s", chan->tx_path, VTY_NEWLINE);
673 }
674}
675
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100676DEFUN(show_trx, show_trx_cmd,
677 "show trx",
678 SHOW_STR "Display information on the TRX\n")
679{
680 struct trx_ctx *trx = trx_from_vty(vty);
681
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100682 trx_dump_vty(vty, trx);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100683
684 return CMD_SUCCESS;
685}
686
687static int trx_vty_is_config_node(struct vty *vty, int node)
688{
689 switch (node) {
690 case TRX_NODE:
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100691 case CHAN_NODE:
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100692 return 1;
693 default:
694 return 0;
695 }
696}
697
698static int trx_vty_go_parent(struct vty *vty)
699{
700 switch (vty->node) {
701 case TRX_NODE:
702 vty->node = CONFIG_NODE;
703 vty->index = NULL;
704 vty->index_sub = NULL;
705 break;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100706 case CHAN_NODE:
707 vty->node = TRX_NODE;
708 vty->index = NULL;
709 vty->index_sub = NULL;
710 break;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100711 default:
Vadim Yanitskiy01eea0a2018-05-09 15:19:48 +0700712 vty->node = CONFIG_NODE;
713 vty->index = NULL;
714 vty->index_sub = NULL;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100715 }
716
717 return vty->node;
718}
719
720static const char trx_copyright[] =
721 "Copyright (C) 2007-2014 Free Software Foundation, Inc.\r\n"
722 "Copyright (C) 2013 Thomas Tsou <tom@tsou.cc>\r\n"
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300723 "Copyright (C) 2013-2019 Fairwaves, Inc.\r\n"
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100724 "Copyright (C) 2015 Ettus Research LLC\r\n"
725 "Copyright (C) 2017-2018 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>\r\n"
726 "License AGPLv3+: GNU AGPL version 3 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
727 "This is free software: you are free to change and redistribute it.\r\n"
728 "There is NO WARRANTY, to the extent permitted by law.\r\n";
729
730struct vty_app_info g_vty_info = {
731 .name = "OsmoTRX",
732 .version = PACKAGE_VERSION,
733 .copyright = trx_copyright,
734 .go_parent_cb = trx_vty_go_parent,
735 .is_config_node = trx_vty_is_config_node,
736};
737
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100738struct trx_ctx *vty_trx_ctx_alloc(void *talloc_ctx)
739{
740 struct trx_ctx * trx = talloc_zero(talloc_ctx, struct trx_ctx);
741
742 trx->cfg.bind_addr = talloc_strdup(trx, DEFAULT_TRX_IP);
743 trx->cfg.remote_addr = talloc_strdup(trx, DEFAULT_TRX_IP);
744 trx->cfg.base_port = DEFAULT_TRX_PORT;
745 trx->cfg.tx_sps = DEFAULT_TX_SPS;
746 trx->cfg.rx_sps = DEFAULT_RX_SPS;
747 trx->cfg.filler = FILLER_ZERO;
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200748 trx->cfg.rssi_offset = 0.0f;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100749
750 return trx;
751}
752
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100753int trx_vty_init(struct trx_ctx* trx)
754{
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700755 cfg_filler_type_cmd.string = vty_cmd_string_from_valstr(trx, filler_types,
756 "filler type (", "|", ")", 0);
757 cfg_filler_type_cmd.doc = vty_cmd_string_from_valstr(trx, filler_docs,
758 CFG_FILLER_DOC_STR "What to do when there is nothing to send "
759 "(filler type, default=zero)\n", "\n", "", 0);
760
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100761 g_trx_ctx = trx;
762 install_element_ve(&show_trx_cmd);
763
764 install_element(CONFIG_NODE, &cfg_trx_cmd);
765
766 install_node(&trx_node, config_write_trx);
767 install_element(TRX_NODE, &cfg_bind_ip_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100768 install_element(TRX_NODE, &cfg_remote_ip_cmd);
769 install_element(TRX_NODE, &cfg_base_port_cmd);
770 install_element(TRX_NODE, &cfg_dev_args_cmd);
771 install_element(TRX_NODE, &cfg_tx_sps_cmd);
772 install_element(TRX_NODE, &cfg_rx_sps_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100773 install_element(TRX_NODE, &cfg_clock_ref_cmd);
774 install_element(TRX_NODE, &cfg_multi_arfcn_cmd);
775 install_element(TRX_NODE, &cfg_offset_cmd);
Vadim Yanitskiy3b8f7c42018-08-23 13:41:06 +0700776 install_element(TRX_NODE, &cfg_freq_offset_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100777 install_element(TRX_NODE, &cfg_rssi_offset_cmd);
778 install_element(TRX_NODE, &cfg_swap_channels_cmd);
779 install_element(TRX_NODE, &cfg_egprs_cmd);
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200780 install_element(TRX_NODE, &cfg_ext_rach_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100781 install_element(TRX_NODE, &cfg_rt_prio_cmd);
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300782 install_element(TRX_NODE, &cfg_filler_type_cmd);
783 install_element(TRX_NODE, &cfg_filler_tsc_cmd);
784 install_element(TRX_NODE, &cfg_filler_rach_delay_cmd);
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200785 install_element(TRX_NODE, &cfg_ctr_error_threshold_cmd);
786 install_element(TRX_NODE, &cfg_no_ctr_error_threshold_cmd);
Eric Wildac0487e2019-06-17 13:02:44 +0200787 install_element(TRX_NODE, &cfg_stack_size_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100788
789 install_element(TRX_NODE, &cfg_chan_cmd);
790 install_node(&chan_node, dummy_config_write);
791 install_element(CHAN_NODE, &cfg_chan_rx_path_cmd);
792 install_element(CHAN_NODE, &cfg_chan_tx_path_cmd);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100793
Pau Espin Pedrolaebbfe02020-01-02 16:39:11 +0100794 logging_vty_add_deprecated_subsys(g_trx_ctx, "lms");
795
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100796 return 0;
797}