blob: 3988176daa0116702af8018336189e3ca9a774de [file] [log] [blame]
Daniel Willmannca102af2014-08-08 12:14:12 +02001/* Copied from tbf.cpp
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
5 * Copyright (C) 2013 by Holger Hans Peter Freyther
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Daniel Willmannca102af2014-08-08 12:14:12 +020016 */
17
18#include <bts.h>
Oliver Smithd3c75912021-07-09 16:37:16 +020019#include <bts_pch_timer.h>
Daniel Willmannca102af2014-08-08 12:14:12 +020020#include <tbf.h>
Pau Espin Pedrol9d1cdb12019-09-25 17:47:02 +020021#include <tbf_ul.h>
Daniel Willmannca102af2014-08-08 12:14:12 +020022#include <rlc.h>
23#include <encoding.h>
24#include <gprs_rlcmac.h>
25#include <gprs_debug.h>
26#include <gprs_bssgp_pcu.h>
27#include <decoding.h>
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020028#include <pcu_l1_if.h>
Max1187a772018-01-26 13:31:42 +010029#include <gprs_ms.h>
30#include <llc.h>
sivasankari8adfcd02017-01-16 15:41:21 +053031#include "pcu_utils.h"
32
Daniel Willmannca102af2014-08-08 12:14:12 +020033extern "C" {
34#include <osmocom/core/msgb.h>
35#include <osmocom/core/talloc.h>
Max1187a772018-01-26 13:31:42 +010036 #include <osmocom/core/bitvec.h>
37 #include <osmocom/core/logging.h>
38 #include <osmocom/core/rate_ctr.h>
Pau Espin Pedrol442198c2020-10-23 22:30:04 +020039 #include <osmocom/core/stats.h>
Max1187a772018-01-26 13:31:42 +010040 #include <osmocom/core/utils.h>
41 #include <osmocom/gprs/gprs_bssgp_bss.h>
42 #include <osmocom/gprs/protocol/gsm_08_18.h>
43 #include <osmocom/gsm/tlv.h>
Max136ebcc2019-03-05 14:59:03 +010044 #include "coding_scheme.h"
Daniel Willmannca102af2014-08-08 12:14:12 +020045}
46
47#include <errno.h>
48#include <string.h>
49
50/* After receiving these frames, we send ack/nack. */
51#define SEND_ACK_AFTER_FRAMES 20
52
53extern void *tall_pcu_ctx;
54
Pau Espin Pedrol442198c2020-10-23 22:30:04 +020055static const struct rate_ctr_desc tbf_ul_gprs_ctr_description[] = {
56 { "gprs:uplink:cs1", "CS1 " },
57 { "gprs:uplink:cs2", "CS2 " },
58 { "gprs:uplink:cs3", "CS3 " },
59 { "gprs:uplink:cs4", "CS4 " },
60};
61
62static const struct rate_ctr_desc tbf_ul_egprs_ctr_description[] = {
63 { "egprs:uplink:mcs1", "MCS1 " },
64 { "egprs:uplink:mcs2", "MCS2 " },
65 { "egprs:uplink:mcs3", "MCS3 " },
66 { "egprs:uplink:mcs4", "MCS4 " },
67 { "egprs:uplink:mcs5", "MCS5 " },
68 { "egprs:uplink:mcs6", "MCS6 " },
69 { "egprs:uplink:mcs7", "MCS7 " },
70 { "egprs:uplink:mcs8", "MCS8 " },
71 { "egprs:uplink:mcs9", "MCS9 " },
72};
73
74static const struct rate_ctr_group_desc tbf_ul_gprs_ctrg_desc = {
75 "tbf:gprs",
76 "Data Blocks",
77 OSMO_STATS_CLASS_SUBSCRIBER,
78 ARRAY_SIZE(tbf_ul_gprs_ctr_description),
79 tbf_ul_gprs_ctr_description,
80};
81
82static const struct rate_ctr_group_desc tbf_ul_egprs_ctrg_desc = {
83 "tbf:egprs",
84 "Data Blocks",
85 OSMO_STATS_CLASS_SUBSCRIBER,
86 ARRAY_SIZE(tbf_ul_egprs_ctr_description),
87 tbf_ul_egprs_ctr_description,
88};
89
Pau Espin Pedrol131deb02021-07-26 18:24:14 +020090gprs_rlcmac_ul_tbf::~gprs_rlcmac_ul_tbf()
91{
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +020092 osmo_fsm_inst_free(ul_ack_fsm.fi);
93 ul_ack_fsm.fi = NULL;
94
Pau Espin Pedrol131deb02021-07-26 18:24:14 +020095 rate_ctr_group_free(m_ul_egprs_ctrs);
96 rate_ctr_group_free(m_ul_gprs_ctrs);
97 /* ~gprs_rlcmac_tbf() is called automatically upon return */
98}
99
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200100static int ul_tbf_dtor(struct gprs_rlcmac_ul_tbf *tbf)
101{
102 tbf->~gprs_rlcmac_ul_tbf();
103 return 0;
104}
105
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200106/* Generic function to alloc a UL TBF, later configured to be assigned either over CCCH or PACCH */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200107struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_tbf(struct gprs_rlcmac_bts *bts, GprsMs *ms, int8_t use_trx, bool single_slot)
108{
109 struct gprs_rlcmac_ul_tbf *tbf;
110 int rc;
111
112 OSMO_ASSERT(ms != NULL);
113
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100114 LOGPMS(ms, DTBF, LOGL_DEBUG, "********** UL-TBF starts here **********\n");
115 LOGPMS(ms, DTBF, LOGL_INFO, "Allocating UL TBF\n");
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200116
117 tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
118 if (!tbf)
119 return NULL;
120 talloc_set_destructor(tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100121 new (tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200122
123 rc = tbf->setup(use_trx, single_slot);
124
125 /* if no resource */
126 if (rc < 0) {
127 talloc_free(tbf);
128 return NULL;
129 }
130
131 if (tbf->is_egprs_enabled())
132 tbf->set_window_size();
133
134 tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(tbf,
135 &tbf_ul_egprs_ctrg_desc, tbf->m_ctrs->idx);
136 tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(tbf,
137 &tbf_ul_gprs_ctrg_desc, tbf->m_ctrs->idx);
138 if (!tbf->m_ul_egprs_ctrs || !tbf->m_ul_gprs_ctrs) {
139 LOGPTBF(tbf, LOGL_ERROR, "Couldn't allocate TBF UL counters\n");
140 talloc_free(tbf);
141 return NULL;
142 }
143
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200144 llist_add_tail(tbf_trx_list(tbf), &tbf->trx->ul_tbfs);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100145 bts_do_rate_ctr_inc(tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200146
147 return tbf;
148}
149
Pau Espin Pedrolcc77eed2021-11-02 18:46:40 +0100150/* Alloc a UL TBF to be assigned over PACCH. Called when an MS requests to
151 * create a new UL TBF during the end of life of a previous UL TBF (or an SBA).
152 * In summary, this TBF is allocated as a consequence of receiving a "Pkt
153 * Resource Req" or "Pkt Ctrl Ack" from the MS.
154 * See TS 44.060 9.3.2.4.2 "Non-extended uplink TBF mode".
155 */
Pau Espin Pedrol59223962021-10-18 12:24:38 +0200156gprs_rlcmac_ul_tbf *tbf_alloc_ul_pacch(struct gprs_rlcmac_bts *bts, GprsMs *ms, int8_t use_trx)
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200157{
158 struct gprs_rlcmac_ul_tbf *tbf;
159
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200160 tbf = tbf_alloc_ul_tbf(bts, ms, use_trx, false);
161 if (!tbf) {
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100162 LOGPMS(ms, DTBF, LOGL_NOTICE, "No PDCH resource\n");
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200163 /* Caller will most probably send a Imm Ass Reject after return */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200164 return NULL;
165 }
Pau Espin Pedrolcc77eed2021-11-02 18:46:40 +0100166 /* Contention resolution is considered to be done since TLLI is known in MS: */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200167 tbf->m_contention_resolution_done = 1;
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200168 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200169
170 return tbf;
171}
172
Pau Espin Pedrol858f0382021-11-02 14:13:47 +0100173/* Alloc a UL TBF to be assigned over CCCH. Used by request of a "One phase
174 * packet access", where MS requested only 1 PDCH TS (TS 44.018 Table 9.1.8.1). */
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200175struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_ccch(struct gprs_rlcmac_bts *bts, struct GprsMs *ms)
176{
177 struct gprs_rlcmac_ul_tbf *tbf;
178
179 tbf = tbf_alloc_ul_tbf(bts, ms, -1, true);
180 if (!tbf) {
181 LOGP(DTBF, LOGL_NOTICE, "No PDCH resource for Uplink TBF\n");
182 /* Caller will most probably send a Imm Ass Reject after return */
183 return NULL;
184 }
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200185 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_CCCH, NULL);
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200186 tbf->contention_resolution_start();
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200187 OSMO_ASSERT(tbf->ms());
188
189 return tbf;
190}
191
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200192/* Create a temporary dummy TBF to Tx a ImmAssReject if allocating a new one during
193 * packet resource Request failed. This is similar as tbf_alloc_ul() but without
194 * calling tbf->setup() (in charge of TFI/USF allocation), and reusing resources
195 * from Packet Resource Request we received. See TS 44.060 sec 7.1.3.2.1 */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200196struct gprs_rlcmac_ul_tbf *handle_tbf_reject(struct gprs_rlcmac_bts *bts,
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200197 GprsMs *ms, uint8_t trx_no, uint8_t ts)
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200198{
199 struct gprs_rlcmac_ul_tbf *ul_tbf = NULL;
200 struct gprs_rlcmac_trx *trx = &bts->trx[trx_no];
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200201 OSMO_ASSERT(ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200202
203 ul_tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
204 if (!ul_tbf)
205 return ul_tbf;
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200206 talloc_set_destructor(ul_tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100207 new (ul_tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200208
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200209 ul_tbf->trx = trx;
Pau Espin Pedrol06329682021-11-08 12:42:06 +0100210 /* The only one TS is the common, control TS */
211 ul_tbf->first_ts = ts;
212 ul_tbf->first_common_ts = ts;
213 tbf_assign_control_ts(ul_tbf);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200214 ul_tbf->m_ctrs = rate_ctr_group_alloc(ul_tbf, &tbf_ctrg_desc, next_tbf_ctr_group_id++);
215 ul_tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(ul_tbf,
216 &tbf_ul_egprs_ctrg_desc,
217 ul_tbf->m_ctrs->idx);
218 ul_tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(ul_tbf,
219 &tbf_ul_gprs_ctrg_desc,
220 ul_tbf->m_ctrs->idx);
221 if (!ul_tbf->m_ctrs || !ul_tbf->m_ul_egprs_ctrs || !ul_tbf->m_ul_gprs_ctrs) {
222 LOGPTBF(ul_tbf, LOGL_ERROR, "Cound not allocate TBF UL rate counters\n");
223 talloc_free(ul_tbf);
224 return NULL;
225 }
Pau Espin Pedroldbd3b782021-11-08 13:21:39 +0100226 tbf_update_state_fsm_name(ul_tbf);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200227
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200228 ms_attach_tbf(ms, ul_tbf);
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200229 llist_add(tbf_trx_list((struct gprs_rlcmac_tbf *)ul_tbf), &trx->ul_tbfs);
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200230 bts_do_rate_ctr_inc(ul_tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200231 osmo_fsm_inst_dispatch(ul_tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol6ad11a62021-07-27 12:27:08 +0200232 osmo_fsm_inst_dispatch(ul_tbf->ul_ass_fsm.fi, TBF_UL_ASS_EV_SCHED_ASS_REJ, NULL);
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200233
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200234 return ul_tbf;
235}
236
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100237gprs_rlcmac_ul_tbf::gprs_rlcmac_ul_tbf(struct gprs_rlcmac_bts *bts_, GprsMs *ms) :
Pau Espin Pedrole9f77d32020-10-23 18:41:40 +0200238 gprs_rlcmac_tbf(bts_, ms, GPRS_RLCMAC_UL_TBF),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200239 m_rx_counter(0),
240 m_contention_resolution_done(0),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200241 m_ul_gprs_ctrs(NULL),
242 m_ul_egprs_ctrs(NULL)
243{
Pau Espin Pedrol7bd92a32021-03-24 13:14:09 +0100244 memset(&m_usf, USF_INVALID, sizeof(m_usf));
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200245
246 memset(&ul_ack_fsm, 0, sizeof(ul_ack_fsm));
247 ul_ack_fsm.tbf = this;
248 ul_ack_fsm.fi = osmo_fsm_inst_alloc(&tbf_ul_ack_fsm, this, &ul_ack_fsm, LOGL_INFO, NULL);
249
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200250}
251
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100252/*
253 * Store received block data in LLC message(s) and forward to SGSN
254 * if complete.
255 */
256int gprs_rlcmac_ul_tbf::assemble_forward_llc(const gprs_rlc_data *_data)
257{
258 const uint8_t *data = _data->block;
259 uint8_t len = _data->len;
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100260 const struct gprs_rlc_data_block_info *rdbi = &_data->block_info;
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200261 enum CodingScheme cs = _data->cs_last;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100262
263 Decoding::RlcData frames[16], *frame;
264 int i, num_frames = 0;
265 uint32_t dummy_tlli;
266
Max0524e382018-01-19 18:22:25 +0100267 LOGPTBFUL(this, LOGL_DEBUG, "Assembling frames: (len=%d)\n", len);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100268
269 num_frames = Decoding::rlc_data_from_ul_data(
Alexander Couzensce936f32016-05-24 14:45:41 +0200270 rdbi, cs, data, &(frames[0]), ARRAY_SIZE(frames),
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100271 &dummy_tlli);
272
273 /* create LLC frames */
274 for (i = 0; i < num_frames; i++) {
275 frame = frames + i;
276
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530277 if (frame->length) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100278 bts_do_rate_ctr_add(bts, CTR_RLC_UL_PAYLOAD_BYTES, frame->length);
Alexander Couzens7fdbf892016-05-21 19:45:23 +0200279
Max0524e382018-01-19 18:22:25 +0100280 LOGPTBFUL(this, LOGL_DEBUG, "Frame %d "
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530281 "starts at offset %d, "
282 "length=%d, is_complete=%d\n",
283 i + 1, frame->offset, frame->length,
284 frame->is_complete);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100285
Pau Espin Pedrol4f8384b2022-03-31 19:36:12 +0200286 llc_append_frame(&m_llc, data + frame->offset, frame->length);
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100287 llc_consume(&m_llc, frame->length);
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530288 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100289
290 if (frame->is_complete) {
291 /* send frame to SGSN */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100292 LOGPTBFUL(this, LOGL_DEBUG, "complete UL frame len=%d\n", llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100293 snd_ul_ud();
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100294 bts_do_rate_ctr_add(bts, CTR_LLC_UL_BYTES, llc_frame_length(&m_llc));
Pau Espin Pedrol4f8384b2022-03-31 19:36:12 +0200295 llc_reset(&m_llc);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100296 }
297 }
298
299 return 0;
300}
301
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200302void gprs_rlcmac_ul_tbf::contention_resolution_start()
303{
304 /* 3GPP TS 44.018 sec 11.1.2 Timers on the network side: "This timer is
305 * started when a temporary block flow is allocated with an IMMEDIATE
306 * ASSIGNMENT or an IMMEDIATE PACKET ASSIGNMENT or an EC IMMEDIATE
307 * ASSIGNMENT TYPE 1 message during a packet access procedure. It is
308 * stopped when the mobile station has correctly seized the temporary
309 * block flow."
310 * In our code base, it means we want to do contention resolution
311 * timeout only for one-phase packet access, since two-phase is handled
312 * through SBA structs, which are freed by the PDCH UL Controller if the
313 * single allocated block is lost. */
314 T_START(this, T3141, 3141, "Contention resolution (UL-TBF, CCCH)", true);
315}
316void gprs_rlcmac_ul_tbf::contention_resolution_success()
317{
318 if (m_contention_resolution_done)
319 return;
320
321 /* 3GPP TS 44.060 sec 7a.2.1 Contention Resolution */
322 /* 3GPP TS 44.018 3.5.2.1.4 Packet access completion: The one phase
323 packet access procedure is completed at a successful contention
324 resolution. The mobile station has entered the packet transfer mode.
325 Timer T3141 is stopped on the network side */
326 t_stop(T3141, "Contention resolution success (UL-TBF, CCCH)");
327
328 /* now we must set this flag, so we are allowed to assign downlink
329 * TBF on PACCH. it is only allowed when TLLI is acknowledged. */
330 m_contention_resolution_done = 1;
Pau Espin Pedrolba568312021-11-02 18:47:44 +0100331
332 bts_do_rate_ctr_inc(bts, CTR_IMMEDIATE_ASSIGN_UL_TBF_CONTENTION_RESOLUTION_SUCCESS);
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200333}
334
Alexander Couzens2fcfc292016-05-24 14:40:03 +0200335/*! \brief receive data from PDCH/L1 */
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100336int gprs_rlcmac_ul_tbf::rcv_data_block_acknowledged(
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100337 const struct gprs_rlc_data_info *rlc,
Jacob Erlbeckfc1b3e62016-01-11 09:58:11 +0100338 uint8_t *data, struct pcu_l1_meas *meas)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100339{
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200340 const struct gprs_rlc_data_block_info *rdbi;
341 struct gprs_rlc_data *block;
342
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100343 int8_t rssi = meas->have_rssi ? meas->rssi : 0;
344
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100345 const uint16_t ws = m_window.ws();
346
Max0524e382018-01-19 18:22:25 +0100347 LOGPTBFUL(this, LOGL_DEBUG, "UL DATA TFI=%d received (V(Q)=%d .. "
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100348 "V(R)=%d)\n", rlc->tfi, this->m_window.v_q(),
349 this->m_window.v_r());
350
351 /* process RSSI */
352 gprs_rlcmac_rssi(this, rssi);
353
354 /* store measurement values */
Pau Espin Pedrolf53815f2021-05-11 14:23:51 +0200355 ms_update_l1_meas(ms(), meas);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100356
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700357 uint32_t new_tlli = GSM_RESERVED_TMSI;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100358 unsigned int block_idx;
359
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100360 /* Increment RX-counter */
361 this->m_rx_counter++;
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530362 update_coding_scheme_counter_ul(rlc->cs);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100363 /* Loop over num_blocks */
364 for (block_idx = 0; block_idx < rlc->num_data_blocks; block_idx++) {
365 int num_chunks;
366 uint8_t *rlc_data;
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200367 rdbi = &rlc->block_info[block_idx];
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100368
Max0524e382018-01-19 18:22:25 +0100369 LOGPTBFUL(this, LOGL_DEBUG,
370 "Got %s RLC data block: CV=%d, BSN=%d, SPB=%d, PI=%d, E=%d, TI=%d, bitoffs=%d\n",
Max136ebcc2019-03-05 14:59:03 +0100371 mcs_name(rlc->cs),
Max0524e382018-01-19 18:22:25 +0100372 rdbi->cv, rdbi->bsn, rdbi->spb,
373 rdbi->pi, rdbi->e, rdbi->ti,
374 rlc->data_offs_bits[block_idx]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100375
376 /* Check whether the block needs to be decoded */
377
378 if (!m_window.is_in_window(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100379 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d out of window %d..%d (it's normal)\n",
380 rdbi->bsn,
381 m_window.v_q(), m_window.mod_sns(m_window.v_q() + ws - 1));
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200382 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100383 } else if (m_window.is_received(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100384 LOGPTBFUL(this, LOGL_DEBUG,
385 "BSN %d already received\n", rdbi->bsn);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100386 continue;
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200387 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100388
389 /* Store block and meta info to BSN buffer */
390
Max0524e382018-01-19 18:22:25 +0100391 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d storing in window (%d..%d)\n",
392 rdbi->bsn, m_window.v_q(),
393 m_window.mod_sns(m_window.v_q() + ws - 1));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100394 block = m_rlc.block(rdbi->bsn);
Aravind Sirsikar550a5412016-06-14 18:59:18 +0530395 OSMO_ASSERT(rdbi->data_len <= sizeof(block->block));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100396 rlc_data = &(block->block[0]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100397
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530398 if (rdbi->spb) {
399 egprs_rlc_ul_reseg_bsn_state assemble_status;
400
401 assemble_status = handle_egprs_ul_spb(rlc,
402 block, data, block_idx);
403
404 if (assemble_status != EGPRS_RESEG_DEFAULT)
405 return 0;
406 } else {
407 block->block_info = *rdbi;
408 block->cs_last = rlc->cs;
409 block->len =
410 Decoding::rlc_copy_to_aligned_buffer(rlc,
411 block_idx, data, rlc_data);
412 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100413
Max0524e382018-01-19 18:22:25 +0100414 LOGPTBFUL(this, LOGL_DEBUG,
415 "data_length=%d, data=%s\n",
416 block->len, osmo_hexdump(rlc_data, block->len));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100417 /* Get/Handle TLLI */
418 if (rdbi->ti) {
419 num_chunks = Decoding::rlc_data_from_ul_data(
420 rdbi, rlc->cs, rlc_data, NULL, 0, &new_tlli);
421
422 if (num_chunks < 0) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100423 bts_do_rate_ctr_inc(bts, CTR_DECODE_ERRORS);
Max0524e382018-01-19 18:22:25 +0100424 LOGPTBFUL(this, LOGL_NOTICE,
425 "Failed to decode TLLI of %s UL DATA TFI=%d.\n",
Max136ebcc2019-03-05 14:59:03 +0100426 mcs_name(rlc->cs), rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100427 m_window.invalidate_bsn(rdbi->bsn);
428 continue;
429 }
430 if (!this->is_tlli_valid()) {
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700431 if (new_tlli == GSM_RESERVED_TMSI) {
Max0524e382018-01-19 18:22:25 +0100432 LOGPTBFUL(this, LOGL_NOTICE,
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700433 "TLLI is 0x%08x within UL DATA?!?\n",
434 new_tlli);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100435 m_window.invalidate_bsn(rdbi->bsn);
436 continue;
437 }
Max0524e382018-01-19 18:22:25 +0100438 LOGPTBFUL(this, LOGL_INFO,
439 "Decoded premier TLLI=0x%08x of UL DATA TFI=%d.\n",
Vadim Yanitskiy3f27fb52020-04-20 11:26:12 +0700440 new_tlli, rlc->tfi);
Pau Espin Pedrold21e9612020-06-26 14:20:37 +0200441 update_ms(new_tlli, GPRS_RLCMAC_UL_TBF);
Pau Espin Pedrol13961c92021-11-08 17:38:47 +0100442 bts_pch_timer_stop(bts, ms());
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700443 } else if (new_tlli != GSM_RESERVED_TMSI && new_tlli != tlli()) {
Max0524e382018-01-19 18:22:25 +0100444 LOGPTBFUL(this, LOGL_NOTICE,
Pau Espin Pedrol305763d2020-11-06 20:03:24 +0100445 "Decoded TLLI=%08x mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
446 new_tlli, rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100447 m_window.invalidate_bsn(rdbi->bsn);
448 continue;
449 }
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200450 } else if (!is_tlli_valid()) {
451 LOGPTBFUL(this, LOGL_NOTICE, "Missing TLLI within UL DATA.\n");
452 m_window.invalidate_bsn(rdbi->bsn);
453 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100454 }
455
456 m_window.receive_bsn(rdbi->bsn);
457 }
458
459 /* Raise V(Q) if possible, and retrieve LLC frames from blocks.
460 * This is looped until there is a gap (non received block) or
461 * the window is empty.*/
462 const uint16_t v_q_beg = m_window.v_q();
463 const uint16_t count = m_window.raise_v_q();
464
465 /* Retrieve LLC frames from blocks that are ready */
466 for (uint16_t i = 0; i < count; ++i) {
Jacob Erlbeck93c55d02015-12-23 16:29:07 +0100467 uint16_t index = m_window.mod_sns(v_q_beg + i);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100468 assemble_forward_llc(m_rlc.block(index));
469 }
470
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200471 /* Last frame in buffer: */
472 block = m_rlc.block(m_window.mod_sns(m_window.v_r() - 1));
473 rdbi = &block->block_info;
474
475 /* Check if we already received all data TBF had to send: */
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200476 if (this->state_is(TBF_ST_FLOW) /* still in flow state */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200477 && this->m_window.v_q() == this->m_window.v_r() /* if complete */
478 && block->len) { /* if there was ever a last block received */
Max0524e382018-01-19 18:22:25 +0100479 LOGPTBFUL(this, LOGL_DEBUG,
480 "No gaps in received block, last block: BSN=%d CV=%d\n",
481 rdbi->bsn, rdbi->cv);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100482 if (rdbi->cv == 0) {
Max0524e382018-01-19 18:22:25 +0100483 LOGPTBFUL(this, LOGL_DEBUG, "Finished with UL TBF\n");
Pau Espin Pedrolc32c4a32021-07-23 18:27:57 +0200484 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_LAST_UL_DATA_RECVD, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100485 /* Reset N3103 counter. */
Max847ed9f2018-02-20 18:16:11 +0100486 this->n_reset(N3103);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100487 }
488 }
489
490 /* If TLLI is included or if we received half of the window, we send
491 * an ack/nack */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200492 maybe_schedule_uplink_acknack(rlc, block->len && rdbi->cv == 0);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100493
494 return 0;
495}
496
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100497void gprs_rlcmac_ul_tbf::maybe_schedule_uplink_acknack(
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200498 const gprs_rlc_data_info *rlc, bool countdown_finished)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100499{
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200500 bool require_ack = false;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100501 bool have_ti = rlc->block_info[0].ti ||
502 (rlc->num_data_blocks > 1 && rlc->block_info[1].ti);
503
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200504 if (rlc->si) {
505 require_ack = true;
506 LOGPTBFUL(this, LOGL_NOTICE,
507 "Scheduling Ack/Nack, because MS is stalled.\n");
508 }
509 if (have_ti) {
510 require_ack = true;
511 LOGPTBFUL(this, LOGL_DEBUG,
512 "Scheduling Ack/Nack, because TLLI is included.\n");
513 }
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200514 if (countdown_finished) {
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200515 require_ack = true;
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200516 if (state_is(TBF_ST_FLOW))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200517 LOGPTBFUL(this, LOGL_DEBUG,
518 "Scheduling Ack/Nack, because some data is missing and last block has CV==0.\n");
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200519 else if (state_is(TBF_ST_FINISHED))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200520 LOGPTBFUL(this, LOGL_DEBUG,
521 "Scheduling final Ack/Nack, because all data was received and last block has CV==0.\n");
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200522 }
523 if ((m_rx_counter % SEND_ACK_AFTER_FRAMES) == 0) {
524 require_ack = true;
525 LOGPTBFUL(this, LOGL_DEBUG,
526 "Scheduling Ack/Nack, because %d frames received.\n",
527 SEND_ACK_AFTER_FRAMES);
528 }
529
530 if (!require_ack)
531 return;
532
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200533 osmo_fsm_inst_dispatch(this->ul_ack_fsm.fi, TBF_UL_ACK_EV_SCHED_ACK, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100534}
535
Daniel Willmannca102af2014-08-08 12:14:12 +0200536/* Send Uplink unit-data to SGSN. */
537int gprs_rlcmac_ul_tbf::snd_ul_ud()
538{
539 uint8_t qos_profile[3];
540 struct msgb *llc_pdu;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100541 unsigned msg_len = NS_HDR_LEN + BSSGP_HDR_LEN + llc_frame_length(&m_llc);
Pau Espin Pedroldb5e3392021-01-21 18:02:40 +0100542 struct bssgp_bvc_ctx *bctx = bts->pcu->bssgp.bctx;
Daniel Willmannca102af2014-08-08 12:14:12 +0200543
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100544 LOGP(DBSSGP, LOGL_INFO, "LLC [PCU -> SGSN] %s len=%d\n", tbf_name(this), llc_frame_length(&m_llc));
Daniel Willmannca102af2014-08-08 12:14:12 +0200545 if (!bctx) {
546 LOGP(DBSSGP, LOGL_ERROR, "No bctx\n");
Pau Espin Pedrol4f8384b2022-03-31 19:36:12 +0200547 llc_reset_frame_space(&m_llc);
Daniel Willmannca102af2014-08-08 12:14:12 +0200548 return -EIO;
549 }
Pau Espin Pedrol488aa292019-09-25 17:48:35 +0200550
Daniel Willmannca102af2014-08-08 12:14:12 +0200551 llc_pdu = msgb_alloc_headroom(msg_len, msg_len,"llc_pdu");
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100552 uint8_t *buf = msgb_push(llc_pdu, TL16V_GROSS_LEN(sizeof(uint8_t)*llc_frame_length(&m_llc)));
553 tl16v_put(buf, BSSGP_IE_LLC_PDU, sizeof(uint8_t)*llc_frame_length(&m_llc), m_llc.frame);
Daniel Willmannca102af2014-08-08 12:14:12 +0200554 qos_profile[0] = QOS_PROFILE >> 16;
555 qos_profile[1] = QOS_PROFILE >> 8;
556 qos_profile[2] = QOS_PROFILE;
557 bssgp_tx_ul_ud(bctx, tlli(), qos_profile, llc_pdu);
558
Pau Espin Pedrol4f8384b2022-03-31 19:36:12 +0200559 llc_reset_frame_space(&m_llc);
Daniel Willmannca102af2014-08-08 12:14:12 +0200560 return 0;
561}
562
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530563egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_second_seg(
564 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
565 uint8_t *data, const uint8_t block_idx)
566{
567 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
568 union split_block_status *spb_status = &block->spb_status;
569 uint8_t *rlc_data = &block->block[0];
570
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100571 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_SECOND_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530572
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530573 if (spb_status->block_status_ul &
574 EGPRS_RESEG_FIRST_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100575 LOGPTBFUL(this, LOGL_DEBUG,
576 "Second seg is received first seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530577 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
578
579 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
580 block_idx, data, rlc_data + block->len);
581 block->block_info.data_len += rdbi->data_len;
582 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100583 LOGPTBFUL(this, LOGL_DEBUG,
584 "Second seg is received first seg is not received set the status to second seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530585
586 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
587 block_idx, data,
588 rlc_data + rlc->block_info[block_idx].data_len);
589
590 spb_status->block_status_ul = EGPRS_RESEG_SECOND_SEG_RXD;
591 block->block_info = *rdbi;
592 }
593 return spb_status->block_status_ul;
594}
595
596egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_first_seg(
597 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
598 uint8_t *data, const uint8_t block_idx)
599{
600 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
601 uint8_t *rlc_data = &block->block[0];
602 union split_block_status *spb_status = &block->spb_status;
603
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100604 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_FIRST_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530605
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530606 if (spb_status->block_status_ul & EGPRS_RESEG_SECOND_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100607 LOGPTBFUL(this, LOGL_DEBUG,
608 "First seg is received second seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530609
610 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
611 block_idx, data, rlc_data);
612
613 block->block_info.data_len = block->len;
614 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
615 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100616 LOGPTBFUL(this, LOGL_DEBUG,
617 "First seg is received second seg is not received set the status to first seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530618
619 spb_status->block_status_ul = EGPRS_RESEG_FIRST_SEG_RXD;
620 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
621 block_idx, data, rlc_data);
622 block->block_info = *rdbi;
623 }
624 return spb_status->block_status_ul;
625}
626
627egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_spb(
628 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
629 uint8_t *data, const uint8_t block_idx)
630{
631 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
632
Max0524e382018-01-19 18:22:25 +0100633 LOGPTBFUL(this, LOGL_DEBUG,
634 "Got SPB(%d) cs(%s) data block with BSN (%d), TFI(%d).\n",
Max136ebcc2019-03-05 14:59:03 +0100635 rdbi->spb, mcs_name(rlc->cs), rdbi->bsn, rlc->tfi);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530636
637 egprs_rlc_ul_reseg_bsn_state assemble_status = EGPRS_RESEG_INVALID;
638
639 /* Section 10.4.8b of 44.060*/
640 if (rdbi->spb == 2)
641 assemble_status = handle_egprs_ul_first_seg(rlc,
642 block, data, block_idx);
643 else if (rdbi->spb == 3)
644 assemble_status = handle_egprs_ul_second_seg(rlc,
645 block, data, block_idx);
646 else {
Max0524e382018-01-19 18:22:25 +0100647 LOGPTBFUL(this, LOGL_ERROR,
648 "spb(%d) Not supported SPB for this EGPRS configuration\n",
649 rdbi->spb);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530650 }
651
652 /*
653 * When the block is successfully constructed out of segmented blocks
654 * upgrade the MCS to the type 2
655 */
656 if (assemble_status == EGPRS_RESEG_DEFAULT) {
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200657 switch (rlc->cs) {
Maxbea2edb2019-03-06 17:04:59 +0100658 case MCS3 :
659 block->cs_last = MCS6;
Max0524e382018-01-19 18:22:25 +0100660 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS6\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530661 break;
Maxbea2edb2019-03-06 17:04:59 +0100662 case MCS2 :
663 block->cs_last = MCS5;
Max0524e382018-01-19 18:22:25 +0100664 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS5\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530665 break;
Maxbea2edb2019-03-06 17:04:59 +0100666 case MCS1 :
Max0524e382018-01-19 18:22:25 +0100667 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS4\n");
Maxbea2edb2019-03-06 17:04:59 +0100668 block->cs_last = MCS4;
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530669 break;
670 default:
Max0524e382018-01-19 18:22:25 +0100671 LOGPTBFUL(this, LOGL_ERROR,
672 "cs(%s) Error in Upgrading to higher MCS\n",
Max136ebcc2019-03-05 14:59:03 +0100673 mcs_name(rlc->cs));
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530674 break;
675 }
676 }
677 return assemble_status;
678}
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530679
Maxfb59a932019-03-13 18:40:19 +0100680void gprs_rlcmac_ul_tbf::update_coding_scheme_counter_ul(enum CodingScheme cs)
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530681{
Maxfb59a932019-03-13 18:40:19 +0100682 switch (cs) {
683 case CS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100684 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200685 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS1));
Maxfb59a932019-03-13 18:40:19 +0100686 break;
687 case CS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100688 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200689 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS2));
Maxfb59a932019-03-13 18:40:19 +0100690 break;
691 case CS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100692 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200693 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS3));
Maxfb59a932019-03-13 18:40:19 +0100694 break;
695 case CS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100696 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200697 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS4));
Maxfb59a932019-03-13 18:40:19 +0100698 break;
699 case MCS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100700 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200701 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS1));
Maxfb59a932019-03-13 18:40:19 +0100702 break;
703 case MCS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100704 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200705 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS2));
Maxfb59a932019-03-13 18:40:19 +0100706 break;
707 case MCS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100708 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200709 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS3));
Maxfb59a932019-03-13 18:40:19 +0100710 break;
711 case MCS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100712 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200713 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS4));
Maxfb59a932019-03-13 18:40:19 +0100714 break;
715 case MCS5:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100716 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS5);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200717 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS5));
Maxfb59a932019-03-13 18:40:19 +0100718 break;
719 case MCS6:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100720 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS6);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200721 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS6));
Maxfb59a932019-03-13 18:40:19 +0100722 break;
723 case MCS7:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100724 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS7);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200725 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS7));
Maxfb59a932019-03-13 18:40:19 +0100726 break;
727 case MCS8:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100728 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS8);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200729 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS8));
Maxfb59a932019-03-13 18:40:19 +0100730 break;
731 case MCS9:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100732 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS9);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200733 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS9));
Maxfb59a932019-03-13 18:40:19 +0100734 break;
735 default:
736 LOGPTBFUL(this, LOGL_ERROR, "attempting to update rate counters for unsupported (M)CS %s\n",
737 mcs_name(cs));
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530738 }
739}
sivasankari8adfcd02017-01-16 15:41:21 +0530740
Max9d7357e2017-12-14 15:02:33 +0100741void gprs_rlcmac_ul_tbf::set_window_size()
sivasankari8adfcd02017-01-16 15:41:21 +0530742{
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100743 const struct gprs_rlcmac_bts *b = bts;
Max34513fe2018-12-11 16:47:30 +0100744 uint16_t ws = egprs_window_size(b, ul_slots());
Max0524e382018-01-19 18:22:25 +0100745 LOGPTBFUL(this, LOGL_INFO, "setting EGPRS UL window size to %u, base(%u) slots(%u) ws_pdch(%u)\n",
Pau Espin Pedrol519d0712021-01-14 14:30:03 +0100746 ws, bts->pcu->vty.ws_base, pcu_bitcount(ul_slots()), bts->pcu->vty.ws_pdch);
sivasankari8adfcd02017-01-16 15:41:21 +0530747 m_window.set_ws(ws);
748}
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200749
Pau Espin Pedrolb3f23972020-10-23 21:00:23 +0200750gprs_rlc_window *gprs_rlcmac_ul_tbf::window()
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200751{
752 return &m_window;
753}
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100754
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100755void gprs_rlcmac_ul_tbf::usf_timeout()
756{
Pau Espin Pedrolcfb61d92021-07-26 17:17:02 +0200757 if (n_inc(N3101))
Pau Espin Pedrol55f600b2021-07-26 15:54:39 +0200758 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_MAX_N3101, NULL);
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100759}
760
Pau Espin Pedrolcc30b052022-10-27 15:25:55 +0200761struct gprs_rlcmac_ul_tbf *tbf_as_ul_tbf(struct gprs_rlcmac_tbf *tbf)
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100762{
763 if (tbf && tbf->direction == GPRS_RLCMAC_UL_TBF)
764 return static_cast<gprs_rlcmac_ul_tbf *>(tbf);
765 else
766 return NULL;
767}
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100768
769void tbf_usf_timeout(struct gprs_rlcmac_ul_tbf *tbf)
770{
771 tbf->usf_timeout();
772}
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +0200773
774
775bool ul_tbf_contention_resolution_done(const struct gprs_rlcmac_ul_tbf *tbf)
776{
777 return tbf->m_contention_resolution_done;
778}
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +0200779
780struct osmo_fsm_inst *tbf_ul_ack_fi(const struct gprs_rlcmac_ul_tbf *tbf)
781{
782 return tbf->ul_ack_fsm.fi;
783}
784
785void ul_tbf_contention_resolution_success(struct gprs_rlcmac_ul_tbf *tbf)
786{
787 return tbf->contention_resolution_success();
788}