blob: 3008267f42360e870b8ecd04794d40ac6938fb01 [file] [log] [blame]
Jacob Erlbeck62e96a32015-06-04 09:42:14 +02001/* pcu_vty_functions.cpp
2 *
3 * Copyright (C) 2015 by Sysmocom s.f.m.c. GmbH
4 * Author: Jacob Erlbeck <jerlbeck@sysmocom.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20/* OsmoBTS VTY interface */
21
22
23#include <stdint.h>
24#include <stdlib.h>
25#include "pcu_vty_functions.h"
Jacob Erlbeckf47f68a2015-06-04 10:23:24 +020026#include "bts.h"
27#include "gprs_ms_storage.h"
28#include "gprs_ms.h"
29#include "cxx_linuxlist.h"
Max1187a772018-01-26 13:31:42 +010030#include <gprs_coding_scheme.h>
31#include <llc.h>
32#include <pcu_l1_if.h>
33#include <rlc.h>
34#include <tbf.h>
Pau Espin Pedrol9d1cdb12019-09-25 17:47:02 +020035#include <tbf_ul.h>
Max6dc90b82018-02-19 17:17:28 +010036#include <pdch.h>
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020037
38extern "C" {
Maxd2d51ed2018-01-25 15:41:28 +010039#include <osmocom/vty/command.h>
40#include <osmocom/vty/logging.h>
41#include <osmocom/vty/misc.h>
Max1187a772018-01-26 13:31:42 +010042 #include <osmocom/core/linuxlist.h>
43 #include <osmocom/core/utils.h>
44 #include <osmocom/vty/vty.h>
Max136ebcc2019-03-05 14:59:03 +010045 #include "coding_scheme.h"
Jacob Erlbeck62e96a32015-06-04 09:42:14 +020046}
47
Max12a09872018-02-01 16:07:33 +010048static void tbf_print_vty_info(struct vty *vty, gprs_rlcmac_tbf *tbf, bool show_ccch, bool show_pacch)
Jacob Erlbeckbf49f042015-12-28 19:06:09 +010049{
Jacob Erlbeck9f686702016-01-19 17:10:07 +010050 gprs_rlcmac_ul_tbf *ul_tbf = as_ul_tbf(tbf);
51 gprs_rlcmac_dl_tbf *dl_tbf = as_dl_tbf(tbf);
52
Max12a09872018-02-01 16:07:33 +010053 if (show_ccch && !(tbf->state_flags & (1 << GPRS_RLCMAC_FLAG_CCCH)))
54 return;
55
56 if (show_pacch && !(tbf->state_flags & (1 << GPRS_RLCMAC_FLAG_PACCH)))
57 return;
58
Minh-Quang Nguyen8d555632017-11-01 15:00:08 -040059 vty_out(vty, "TBF: TFI=%d TLLI=0x%08x (%s) TA=%u DIR=%s IMSI=%s%s", tbf->tfi(),
Jacob Erlbeckbf49f042015-12-28 19:06:09 +010060 tbf->tlli(), tbf->is_tlli_valid() ? "valid" : "invalid",
Minh-Quang Nguyen8d555632017-11-01 15:00:08 -040061 tbf->ta(),
Jacob Erlbeckbf49f042015-12-28 19:06:09 +010062 tbf->direction == GPRS_RLCMAC_UL_TBF ? "UL" : "DL",
63 tbf->imsi(), VTY_NEWLINE);
Max5441e1f2018-01-30 17:49:53 +010064 vty_out(vty, " created=%lu state=%08x [CCCH:%u, PACCH:%u] 1st_TS=%d 1st_cTS=%d ctrl_TS=%d MS_CLASS=%d/%d%s",
65 tbf->created_ts(), tbf->state_flags,
66 tbf->state_flags & (1 << GPRS_RLCMAC_FLAG_CCCH),
67 tbf->state_flags & (1 << GPRS_RLCMAC_FLAG_PACCH),
68 tbf->first_ts,
Jacob Erlbeckf2694b72016-01-26 21:46:26 +010069 tbf->first_common_ts, tbf->control_ts,
70 tbf->ms_class(),
Jacob Erlbeck08c72fb2016-01-19 16:04:30 +010071 tbf->ms() ? tbf->ms()->egprs_ms_class() : -1,
Jacob Erlbeckbf49f042015-12-28 19:06:09 +010072 VTY_NEWLINE);
73 vty_out(vty, " TS_alloc=");
74 for (int i = 0; i < 8; i++) {
Jacob Erlbeck81a04f72016-01-28 16:14:58 +010075 bool is_ctrl = tbf->is_control_ts(i);
Jacob Erlbeckbf49f042015-12-28 19:06:09 +010076 if (tbf->pdch[i])
Jacob Erlbeck81a04f72016-01-28 16:14:58 +010077 vty_out(vty, "%d%s ", i, is_ctrl ? "!" : "");
Jacob Erlbeckbf49f042015-12-28 19:06:09 +010078 }
Mrinal Mishrad453eaa2016-10-26 15:41:56 +053079 if (tbf->trx != NULL)
80 vty_out(vty, " TRX_ID=%d", tbf->trx->trx_no);
Max136ebcc2019-03-05 14:59:03 +010081 vty_out(vty, " CS=%s", mcs_name(tbf->current_cs()));
Jacob Erlbeck9f686702016-01-19 17:10:07 +010082
83 if (ul_tbf) {
Max00fd0df2018-01-12 16:24:18 +010084 gprs_rlc_ul_window *win = ul_tbf->window();
Maxa4f570f2017-12-15 11:21:57 +010085 vty_out(vty, " WS=%u V(Q)=%d V(R)=%d",
86 ul_tbf->window_size(), win->v_q(), win->v_r());
sivasankarida7250a2016-12-16 12:57:18 +053087 vty_out(vty, "%s", VTY_NEWLINE);
88 vty_out(vty, " TBF Statistics:%s", VTY_NEWLINE);
Maxa4de02d2019-03-13 16:35:09 +010089 if(GPRS == tbf->ms()->mode()) {
sivasankarida7250a2016-12-16 12:57:18 +053090 vty_out_rate_ctr_group(vty, " ", ul_tbf->m_ul_gprs_ctrs);
91 } else {
92 vty_out_rate_ctr_group(vty, " ", ul_tbf->m_ul_egprs_ctrs);
93 }
Jacob Erlbeck9f686702016-01-19 17:10:07 +010094 }
95 if (dl_tbf) {
Max00fd0df2018-01-12 16:24:18 +010096 gprs_rlc_dl_window *win = dl_tbf->window();
Maxa4f570f2017-12-15 11:21:57 +010097 vty_out(vty, " WS=%u V(A)=%d V(S)=%d nBSN=%d%s",
98 dl_tbf->window_size(), win->v_a(), win->v_s(), win->resend_needed(),
Jacob Erlbeck9f686702016-01-19 17:10:07 +010099 win->window_stalled() ? " STALLED" : "");
sivasankari53950732016-12-08 17:15:17 +0530100 vty_out(vty, "%s", VTY_NEWLINE);
101 vty_out_rate_ctr_group(vty, " ", tbf->m_ctrs);
Maxa4de02d2019-03-13 16:35:09 +0100102 if(GPRS == tbf->ms()->mode()) {
sivasankari53950732016-12-08 17:15:17 +0530103 vty_out_rate_ctr_group(vty, " ", dl_tbf->m_dl_gprs_ctrs);
104 } else {
105 vty_out_rate_ctr_group(vty, " ", dl_tbf->m_dl_egprs_ctrs);
106 }
Jacob Erlbeck9f686702016-01-19 17:10:07 +0100107 }
108 vty_out(vty, "%s%s", VTY_NEWLINE, VTY_NEWLINE);
Jacob Erlbeckbf49f042015-12-28 19:06:09 +0100109}
110
Max12a09872018-02-01 16:07:33 +0100111int pcu_vty_show_tbf_all(struct vty *vty, struct gprs_rlcmac_bts *bts_data, bool show_ccch, bool show_pacch)
Jacob Erlbecked2dbf62015-12-28 19:15:40 +0100112{
113 BTS *bts = bts_data->bts;
114 LListHead<gprs_rlcmac_tbf> *ms_iter;
115
116 vty_out(vty, "UL TBFs%s", VTY_NEWLINE);
117 llist_for_each(ms_iter, &bts->ul_tbfs())
Max12a09872018-02-01 16:07:33 +0100118 tbf_print_vty_info(vty, ms_iter->entry(), show_ccch, show_pacch);
Jacob Erlbecked2dbf62015-12-28 19:15:40 +0100119
120 vty_out(vty, "%sDL TBFs%s", VTY_NEWLINE, VTY_NEWLINE);
121 llist_for_each(ms_iter, &bts->dl_tbfs())
Max12a09872018-02-01 16:07:33 +0100122 tbf_print_vty_info(vty, ms_iter->entry(), show_ccch, show_pacch);
Jacob Erlbecked2dbf62015-12-28 19:15:40 +0100123
124 return CMD_SUCCESS;
125}
126
Jacob Erlbeckf47f68a2015-06-04 10:23:24 +0200127int pcu_vty_show_ms_all(struct vty *vty, struct gprs_rlcmac_bts *bts_data)
128{
129 BTS *bts = bts_data->bts;
130 LListHead<GprsMs> *ms_iter;
131
132 llist_for_each(ms_iter, &bts->ms_store().ms_list()) {
133 GprsMs *ms = ms_iter->entry();
134
Max39eb95f2017-12-06 13:13:34 +0100135 vty_out(vty, "MS TLLI=%08x, TA=%d, CS-UL=%s, CS-DL=%s, LLC=%zd, Cl=%d, E-Cl=%d,"
136 " TBF-UL=%s, TBF-DL=%s, IMSI=%s%s",
Jacob Erlbeckf47f68a2015-06-04 10:23:24 +0200137 ms->tlli(),
Max136ebcc2019-03-05 14:59:03 +0100138 ms->ta(), mcs_name(ms->current_cs_ul()),
139 mcs_name(ms->current_cs_dl()),
Jacob Erlbeck159d4de2015-08-21 16:02:11 +0200140 ms->llc_queue()->size(),
Max39eb95f2017-12-06 13:13:34 +0100141 ms->ms_class(),
142 ms->egprs_ms_class(),
143 ms->ul_tbf() ? ms->ul_tbf()->state_name() : "NA",
144 ms->dl_tbf() ? ms->dl_tbf()->state_name() : "NA",
Jacob Erlbeckf47f68a2015-06-04 10:23:24 +0200145 ms->imsi(),
146 VTY_NEWLINE);
147 }
148 return CMD_SUCCESS;
149}
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200150
151static int show_ms(struct vty *vty, GprsMs *ms)
152{
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200153 unsigned i;
Jacob Erlbeckc62216b2015-08-21 15:46:16 +0200154 LListHead<gprs_rlcmac_tbf> *i_tbf;
Jacob Erlbeck7c72aca2016-01-22 17:06:14 +0100155 uint8_t slots;
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200156
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200157 vty_out(vty, "MS TLLI=%08x, IMSI=%s%s", ms->tlli(), ms->imsi(), VTY_NEWLINE);
158 vty_out(vty, " Timing advance (TA): %d%s", ms->ta(), VTY_NEWLINE);
Max136ebcc2019-03-05 14:59:03 +0100159 vty_out(vty, " Coding scheme uplink: %s%s", mcs_name(ms->current_cs_ul()),
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200160 VTY_NEWLINE);
Max136ebcc2019-03-05 14:59:03 +0100161 vty_out(vty, " Coding scheme downlink: %s%s", mcs_name(ms->current_cs_dl()),
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200162 VTY_NEWLINE);
Maxa4de02d2019-03-13 16:35:09 +0100163 vty_out(vty, " Mode: %s%s", mode_name(ms->mode()), VTY_NEWLINE);
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200164 vty_out(vty, " MS class: %d%s", ms->ms_class(), VTY_NEWLINE);
Jacob Erlbeckc3c58042015-09-28 17:55:32 +0200165 vty_out(vty, " EGPRS MS class: %d%s", ms->egprs_ms_class(), VTY_NEWLINE);
Jacob Erlbeck7c72aca2016-01-22 17:06:14 +0100166 vty_out(vty, " PACCH: ");
167 slots = ms->current_pacch_slots();
168 for (int i = 0; i < 8; i++)
169 if (slots & (1 << i))
170 vty_out(vty, "%d ", i);
171 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte63d33ad2016-03-30 22:08:18 +0200172 vty_out(vty, " LLC queue length: %zd%s", ms->llc_queue()->size(),
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200173 VTY_NEWLINE);
Harald Welte63d33ad2016-03-30 22:08:18 +0200174 vty_out(vty, " LLC queue octets: %zd%s", ms->llc_queue()->octets(),
Jacob Erlbeck159d4de2015-08-21 16:02:11 +0200175 VTY_NEWLINE);
Jacob Erlbecke4bcb622015-06-08 11:26:38 +0200176 if (ms->l1_meas()->have_rssi)
177 vty_out(vty, " RSSI: %d dBm%s",
178 ms->l1_meas()->rssi, VTY_NEWLINE);
179 if (ms->l1_meas()->have_ber)
180 vty_out(vty, " Bit error rate: %d %%%s",
181 ms->l1_meas()->ber, VTY_NEWLINE);
182 if (ms->l1_meas()->have_link_qual)
183 vty_out(vty, " Link quality: %d dB%s",
184 ms->l1_meas()->link_qual, VTY_NEWLINE);
185 if (ms->l1_meas()->have_bto)
186 vty_out(vty, " Burst timing offset: %d/4 bit%s",
187 ms->l1_meas()->bto, VTY_NEWLINE);
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200188 if (ms->l1_meas()->have_ms_rx_qual)
Jacob Erlbeck04a10862015-06-12 16:01:56 +0200189 vty_out(vty, " Downlink NACK rate: %d %%%s",
190 ms->nack_rate_dl(), VTY_NEWLINE);
191 if (ms->l1_meas()->have_ms_rx_qual)
Jacob Erlbeck51b11512015-06-11 16:54:50 +0200192 vty_out(vty, " MS RX quality: %d %%%s",
193 ms->l1_meas()->ms_rx_qual, VTY_NEWLINE);
194 if (ms->l1_meas()->have_ms_c_value)
195 vty_out(vty, " MS C value: %d dB%s",
196 ms->l1_meas()->ms_c_value, VTY_NEWLINE);
197 if (ms->l1_meas()->have_ms_sign_var)
198 vty_out(vty, " MS SIGN variance: %d dB%s",
199 ms->l1_meas()->ms_sign_var, VTY_NEWLINE);
200 for (i = 0; i < ARRAY_SIZE(ms->l1_meas()->ts); ++i) {
201 if (ms->l1_meas()->ts[i].have_ms_i_level)
202 vty_out(vty, " MS I level (slot %d): %d dB%s",
203 i, ms->l1_meas()->ts[i].ms_i_level, VTY_NEWLINE);
204 }
sivasankarida7250a2016-12-16 12:57:18 +0530205 vty_out(vty, " RLC/MAC DL Control Msg: %d%s", ms->dl_ctrl_msg(),
206 VTY_NEWLINE);
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200207 if (ms->ul_tbf())
208 vty_out(vty, " Uplink TBF: TFI=%d, state=%s%s",
209 ms->ul_tbf()->tfi(),
210 ms->ul_tbf()->state_name(),
211 VTY_NEWLINE);
sivasankari53950732016-12-08 17:15:17 +0530212 if (ms->dl_tbf()) {
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200213 vty_out(vty, " Downlink TBF: TFI=%d, state=%s%s",
214 ms->dl_tbf()->tfi(),
215 ms->dl_tbf()->state_name(),
216 VTY_NEWLINE);
sivasankari53950732016-12-08 17:15:17 +0530217 vty_out(vty, " Current DL Throughput: %d Kbps %s",
218 ms->dl_tbf()->m_bw.dl_throughput,
219 VTY_NEWLINE);
220 }
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200221
Jacob Erlbeckc62216b2015-08-21 15:46:16 +0200222 llist_for_each(i_tbf, &ms->old_tbfs())
223 vty_out(vty, " Old %-19s TFI=%d, state=%s%s",
224 i_tbf->entry()->direction == GPRS_RLCMAC_UL_TBF ?
225 "Uplink TBF:" : "Downlink TBF:",
226 i_tbf->entry()->tfi(),
227 i_tbf->entry()->state_name(),
228 VTY_NEWLINE);
229
Jacob Erlbeck37e896d2015-06-05 16:33:33 +0200230 return CMD_SUCCESS;
231}
232
233int pcu_vty_show_ms_by_tlli(struct vty *vty, struct gprs_rlcmac_bts *bts_data,
234 uint32_t tlli)
235{
236 BTS *bts = bts_data->bts;
237 GprsMs *ms = bts->ms_store().get_ms(tlli);
238 if (!ms) {
239 vty_out(vty, "Unknown TLLI %08x.%s", tlli, VTY_NEWLINE);
240 return CMD_WARNING;
241 }
242
243 return show_ms(vty, ms);
244}
245
246int pcu_vty_show_ms_by_imsi(struct vty *vty, struct gprs_rlcmac_bts *bts_data,
247 const char *imsi)
248{
249 BTS *bts = bts_data->bts;
250 GprsMs *ms = bts->ms_store().get_ms(0, 0, imsi);
251 if (!ms) {
252 vty_out(vty, "Unknown IMSI '%s'.%s", imsi, VTY_NEWLINE);
253 return CMD_WARNING;
254 }
255
256 return show_ms(vty, ms);
257}