blob: d4575a3697a0ea4352304e3c1770c0b7a5b030a8 [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.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22#include <bts.h>
Oliver Smithd3c75912021-07-09 16:37:16 +020023#include <bts_pch_timer.h>
Daniel Willmannca102af2014-08-08 12:14:12 +020024#include <tbf.h>
Pau Espin Pedrol9d1cdb12019-09-25 17:47:02 +020025#include <tbf_ul.h>
Daniel Willmannca102af2014-08-08 12:14:12 +020026#include <rlc.h>
27#include <encoding.h>
28#include <gprs_rlcmac.h>
29#include <gprs_debug.h>
30#include <gprs_bssgp_pcu.h>
31#include <decoding.h>
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020032#include <pcu_l1_if.h>
Max1187a772018-01-26 13:31:42 +010033#include <gprs_ms.h>
34#include <llc.h>
sivasankari8adfcd02017-01-16 15:41:21 +053035#include "pcu_utils.h"
36
Daniel Willmannca102af2014-08-08 12:14:12 +020037extern "C" {
38#include <osmocom/core/msgb.h>
39#include <osmocom/core/talloc.h>
Max1187a772018-01-26 13:31:42 +010040 #include <osmocom/core/bitvec.h>
41 #include <osmocom/core/logging.h>
42 #include <osmocom/core/rate_ctr.h>
Pau Espin Pedrol442198c2020-10-23 22:30:04 +020043 #include <osmocom/core/stats.h>
Max1187a772018-01-26 13:31:42 +010044 #include <osmocom/core/utils.h>
45 #include <osmocom/gprs/gprs_bssgp_bss.h>
46 #include <osmocom/gprs/protocol/gsm_08_18.h>
47 #include <osmocom/gsm/tlv.h>
Max136ebcc2019-03-05 14:59:03 +010048 #include "coding_scheme.h"
Daniel Willmannca102af2014-08-08 12:14:12 +020049}
50
51#include <errno.h>
52#include <string.h>
53
54/* After receiving these frames, we send ack/nack. */
55#define SEND_ACK_AFTER_FRAMES 20
56
57extern void *tall_pcu_ctx;
58
Pau Espin Pedrol442198c2020-10-23 22:30:04 +020059static const struct rate_ctr_desc tbf_ul_gprs_ctr_description[] = {
60 { "gprs:uplink:cs1", "CS1 " },
61 { "gprs:uplink:cs2", "CS2 " },
62 { "gprs:uplink:cs3", "CS3 " },
63 { "gprs:uplink:cs4", "CS4 " },
64};
65
66static const struct rate_ctr_desc tbf_ul_egprs_ctr_description[] = {
67 { "egprs:uplink:mcs1", "MCS1 " },
68 { "egprs:uplink:mcs2", "MCS2 " },
69 { "egprs:uplink:mcs3", "MCS3 " },
70 { "egprs:uplink:mcs4", "MCS4 " },
71 { "egprs:uplink:mcs5", "MCS5 " },
72 { "egprs:uplink:mcs6", "MCS6 " },
73 { "egprs:uplink:mcs7", "MCS7 " },
74 { "egprs:uplink:mcs8", "MCS8 " },
75 { "egprs:uplink:mcs9", "MCS9 " },
76};
77
78static const struct rate_ctr_group_desc tbf_ul_gprs_ctrg_desc = {
79 "tbf:gprs",
80 "Data Blocks",
81 OSMO_STATS_CLASS_SUBSCRIBER,
82 ARRAY_SIZE(tbf_ul_gprs_ctr_description),
83 tbf_ul_gprs_ctr_description,
84};
85
86static const struct rate_ctr_group_desc tbf_ul_egprs_ctrg_desc = {
87 "tbf:egprs",
88 "Data Blocks",
89 OSMO_STATS_CLASS_SUBSCRIBER,
90 ARRAY_SIZE(tbf_ul_egprs_ctr_description),
91 tbf_ul_egprs_ctr_description,
92};
93
94static int ul_tbf_dtor(struct gprs_rlcmac_ul_tbf *tbf)
95{
96 tbf->~gprs_rlcmac_ul_tbf();
97 return 0;
98}
99
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200100/* 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 +0200101struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_tbf(struct gprs_rlcmac_bts *bts, GprsMs *ms, int8_t use_trx, bool single_slot)
102{
103 struct gprs_rlcmac_ul_tbf *tbf;
104 int rc;
105
106 OSMO_ASSERT(ms != NULL);
107
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100108 LOGPMS(ms, DTBF, LOGL_DEBUG, "********** UL-TBF starts here **********\n");
109 LOGPMS(ms, DTBF, LOGL_INFO, "Allocating UL TBF\n");
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200110
111 tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
112 if (!tbf)
113 return NULL;
114 talloc_set_destructor(tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100115 new (tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200116
117 rc = tbf->setup(use_trx, single_slot);
118
119 /* if no resource */
120 if (rc < 0) {
121 talloc_free(tbf);
122 return NULL;
123 }
124
125 if (tbf->is_egprs_enabled())
126 tbf->set_window_size();
127
128 tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(tbf,
129 &tbf_ul_egprs_ctrg_desc, tbf->m_ctrs->idx);
130 tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(tbf,
131 &tbf_ul_gprs_ctrg_desc, tbf->m_ctrs->idx);
132 if (!tbf->m_ul_egprs_ctrs || !tbf->m_ul_gprs_ctrs) {
133 LOGPTBF(tbf, LOGL_ERROR, "Couldn't allocate TBF UL counters\n");
134 talloc_free(tbf);
135 return NULL;
136 }
137
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200138 llist_add_tail(tbf_trx_list(tbf), &tbf->trx->ul_tbfs);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100139 bts_do_rate_ctr_inc(tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200140
141 return tbf;
142}
143
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200144/* Alloc a UL TBF to be assigned over PACCH */
Pau Espin Pedrolc6571b52021-05-10 17:10:37 +0200145gprs_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 +0200146 uint32_t tlli)
147{
148 struct gprs_rlcmac_ul_tbf *tbf;
149
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200150 tbf = tbf_alloc_ul_tbf(bts, ms, use_trx, false);
151 if (!tbf) {
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100152 LOGPMS(ms, DTBF, LOGL_NOTICE, "No PDCH resource\n");
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200153 /* Caller will most probably send a Imm Ass Reject after return */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200154 return NULL;
155 }
156 tbf->m_contention_resolution_done = 1;
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200157 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200158 tbf->update_ms(tlli, GPRS_RLCMAC_UL_TBF);
159 OSMO_ASSERT(tbf->ms());
160
161 return tbf;
162}
163
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200164/* Alloc a UL TBF to be assigned over CCCH */
165struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_ccch(struct gprs_rlcmac_bts *bts, struct GprsMs *ms)
166{
167 struct gprs_rlcmac_ul_tbf *tbf;
168
169 tbf = tbf_alloc_ul_tbf(bts, ms, -1, true);
170 if (!tbf) {
171 LOGP(DTBF, LOGL_NOTICE, "No PDCH resource for Uplink TBF\n");
172 /* Caller will most probably send a Imm Ass Reject after return */
173 return NULL;
174 }
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200175 osmo_fsm_inst_dispatch(tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_CCCH, NULL);
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200176 tbf->contention_resolution_start();
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200177 OSMO_ASSERT(tbf->ms());
178
179 return tbf;
180}
181
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200182/* Create a temporary dummy TBF to Tx a ImmAssReject if allocating a new one during
183 * packet resource Request failed. This is similar as tbf_alloc_ul() but without
184 * calling tbf->setup() (in charge of TFI/USF allocation), and reusing resources
185 * from Packet Resource Request we received. See TS 44.060 sec 7.1.3.2.1 */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200186struct gprs_rlcmac_ul_tbf *handle_tbf_reject(struct gprs_rlcmac_bts *bts,
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200187 GprsMs *ms, uint8_t trx_no, uint8_t ts)
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200188{
189 struct gprs_rlcmac_ul_tbf *ul_tbf = NULL;
190 struct gprs_rlcmac_trx *trx = &bts->trx[trx_no];
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200191 OSMO_ASSERT(ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200192
193 ul_tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
194 if (!ul_tbf)
195 return ul_tbf;
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200196 talloc_set_destructor(ul_tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100197 new (ul_tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200198
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200199 ul_tbf->control_ts = ts;
200 ul_tbf->trx = trx;
201 ul_tbf->m_ctrs = rate_ctr_group_alloc(ul_tbf, &tbf_ctrg_desc, next_tbf_ctr_group_id++);
202 ul_tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(ul_tbf,
203 &tbf_ul_egprs_ctrg_desc,
204 ul_tbf->m_ctrs->idx);
205 ul_tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(ul_tbf,
206 &tbf_ul_gprs_ctrg_desc,
207 ul_tbf->m_ctrs->idx);
208 if (!ul_tbf->m_ctrs || !ul_tbf->m_ul_egprs_ctrs || !ul_tbf->m_ul_gprs_ctrs) {
209 LOGPTBF(ul_tbf, LOGL_ERROR, "Cound not allocate TBF UL rate counters\n");
210 talloc_free(ul_tbf);
211 return NULL;
212 }
213
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200214 ms_attach_tbf(ms, ul_tbf);
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200215 llist_add(tbf_trx_list((struct gprs_rlcmac_tbf *)ul_tbf), &trx->ul_tbfs);
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200216 bts_do_rate_ctr_inc(ul_tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200217 osmo_fsm_inst_dispatch(ul_tbf->state_fsm.fi, TBF_EV_ASSIGN_ADD_PACCH, NULL);
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200218 TBF_SET_ASS_STATE_UL(ul_tbf, GPRS_RLCMAC_UL_ASS_SEND_ASS_REJ);
219
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200220 return ul_tbf;
221}
222
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100223gprs_rlcmac_ul_tbf::gprs_rlcmac_ul_tbf(struct gprs_rlcmac_bts *bts_, GprsMs *ms) :
Pau Espin Pedrole9f77d32020-10-23 18:41:40 +0200224 gprs_rlcmac_tbf(bts_, ms, GPRS_RLCMAC_UL_TBF),
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200225 m_rx_counter(0),
226 m_contention_resolution_done(0),
227 m_final_ack_sent(0),
228 m_ul_gprs_ctrs(NULL),
229 m_ul_egprs_ctrs(NULL)
230{
Pau Espin Pedrol7bd92a32021-03-24 13:14:09 +0100231 memset(&m_usf, USF_INVALID, sizeof(m_usf));
Pau Espin Pedrolbddf1ad2019-09-26 14:41:18 +0200232}
233
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100234/*
235 * Store received block data in LLC message(s) and forward to SGSN
236 * if complete.
237 */
238int gprs_rlcmac_ul_tbf::assemble_forward_llc(const gprs_rlc_data *_data)
239{
240 const uint8_t *data = _data->block;
241 uint8_t len = _data->len;
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100242 const struct gprs_rlc_data_block_info *rdbi = &_data->block_info;
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200243 enum CodingScheme cs = _data->cs_last;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100244
245 Decoding::RlcData frames[16], *frame;
246 int i, num_frames = 0;
247 uint32_t dummy_tlli;
248
Max0524e382018-01-19 18:22:25 +0100249 LOGPTBFUL(this, LOGL_DEBUG, "Assembling frames: (len=%d)\n", len);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100250
251 num_frames = Decoding::rlc_data_from_ul_data(
Alexander Couzensce936f32016-05-24 14:45:41 +0200252 rdbi, cs, data, &(frames[0]), ARRAY_SIZE(frames),
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100253 &dummy_tlli);
254
255 /* create LLC frames */
256 for (i = 0; i < num_frames; i++) {
257 frame = frames + i;
258
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530259 if (frame->length) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100260 bts_do_rate_ctr_add(bts, CTR_RLC_UL_PAYLOAD_BYTES, frame->length);
Alexander Couzens7fdbf892016-05-21 19:45:23 +0200261
Max0524e382018-01-19 18:22:25 +0100262 LOGPTBFUL(this, LOGL_DEBUG, "Frame %d "
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530263 "starts at offset %d, "
264 "length=%d, is_complete=%d\n",
265 i + 1, frame->offset, frame->length,
266 frame->is_complete);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100267
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530268 m_llc.append_frame(data + frame->offset, frame->length);
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100269 llc_consume(&m_llc, frame->length);
Aravind Sirsikar22a90192016-09-15 17:24:49 +0530270 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100271
272 if (frame->is_complete) {
273 /* send frame to SGSN */
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100274 LOGPTBFUL(this, LOGL_DEBUG, "complete UL frame len=%d\n", llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100275 snd_ul_ud();
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100276 bts_do_rate_ctr_add(bts, CTR_LLC_UL_BYTES, llc_frame_length(&m_llc));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100277 m_llc.reset();
278 }
279 }
280
281 return 0;
282}
283
Maxfd13f6c2017-07-07 14:29:36 +0200284bool gprs_rlcmac_ul_tbf::ctrl_ack_to_toggle()
285{
Max8dce1de2018-01-02 14:17:04 +0100286 if (check_n_clear(GPRS_RLCMAC_FLAG_TO_UL_ACK))
Maxfd13f6c2017-07-07 14:29:36 +0200287 return true; /* GPRS_RLCMAC_FLAG_TO_UL_ACK was set, now cleared */
Maxfd13f6c2017-07-07 14:29:36 +0200288
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200289 state_fsm.state_flags |= (1 << GPRS_RLCMAC_FLAG_TO_UL_ACK);
Maxfd13f6c2017-07-07 14:29:36 +0200290 return false; /* GPRS_RLCMAC_FLAG_TO_UL_ACK was unset, now set */
291}
292
Pau Espin Pedrol86580e12021-03-29 18:15:30 +0200293bool gprs_rlcmac_ul_tbf::handle_ctrl_ack(enum pdch_ulc_tbf_poll_reason reason)
Maxfd13f6c2017-07-07 14:29:36 +0200294{
295 /* check if this control ack belongs to packet uplink ack */
Pau Espin Pedrol86580e12021-03-29 18:15:30 +0200296 if (reason == PDCH_ULC_POLL_UL_ACK && ul_ack_state_is(GPRS_RLCMAC_UL_ACK_WAIT_ACK)) {
Max088c7df2018-01-23 20:16:23 +0100297 TBF_SET_ACK_STATE(this, GPRS_RLCMAC_UL_ACK_NONE);
Maxfd13f6c2017-07-07 14:29:36 +0200298 return true;
299 }
300
301 return false;
302}
Daniel Willmannca102af2014-08-08 12:14:12 +0200303
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200304void gprs_rlcmac_ul_tbf::contention_resolution_start()
305{
306 /* 3GPP TS 44.018 sec 11.1.2 Timers on the network side: "This timer is
307 * started when a temporary block flow is allocated with an IMMEDIATE
308 * ASSIGNMENT or an IMMEDIATE PACKET ASSIGNMENT or an EC IMMEDIATE
309 * ASSIGNMENT TYPE 1 message during a packet access procedure. It is
310 * stopped when the mobile station has correctly seized the temporary
311 * block flow."
312 * In our code base, it means we want to do contention resolution
313 * timeout only for one-phase packet access, since two-phase is handled
314 * through SBA structs, which are freed by the PDCH UL Controller if the
315 * single allocated block is lost. */
316 T_START(this, T3141, 3141, "Contention resolution (UL-TBF, CCCH)", true);
317}
318void gprs_rlcmac_ul_tbf::contention_resolution_success()
319{
320 if (m_contention_resolution_done)
321 return;
322
323 /* 3GPP TS 44.060 sec 7a.2.1 Contention Resolution */
324 /* 3GPP TS 44.018 3.5.2.1.4 Packet access completion: The one phase
325 packet access procedure is completed at a successful contention
326 resolution. The mobile station has entered the packet transfer mode.
327 Timer T3141 is stopped on the network side */
328 t_stop(T3141, "Contention resolution success (UL-TBF, CCCH)");
329
330 /* now we must set this flag, so we are allowed to assign downlink
331 * TBF on PACCH. it is only allowed when TLLI is acknowledged. */
332 m_contention_resolution_done = 1;
333}
334
Jacob Erlbeck5a3c84d2016-01-22 17:25:38 +0100335struct msgb *gprs_rlcmac_ul_tbf::create_ul_ack(uint32_t fn, uint8_t ts)
Daniel Willmannca102af2014-08-08 12:14:12 +0200336{
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200337 int final = (state_is(TBF_ST_FINISHED));
Daniel Willmannca102af2014-08-08 12:14:12 +0200338 struct msgb *msg;
Jacob Erlbeckf2694b72016-01-26 21:46:26 +0100339 int rc;
340 unsigned int rrbp = 0;
341 uint32_t new_poll_fn = 0;
Daniel Willmannca102af2014-08-08 12:14:12 +0200342
343 if (final) {
Pau Espin Pedroled066b52021-03-29 16:16:27 +0200344 if (ul_ack_state_is(GPRS_RLCMAC_UL_ACK_WAIT_ACK)) {
Maxc21f0072017-12-15 17:36:45 +0100345 LOGPTBFUL(this, LOGL_DEBUG,
346 "Polling is already scheduled, so we must wait for the final uplink ack...\n");
Daniel Willmannca102af2014-08-08 12:14:12 +0200347 return NULL;
348 }
Jacob Erlbeckf2694b72016-01-26 21:46:26 +0100349
350 rc = check_polling(fn, ts, &new_poll_fn, &rrbp);
351 if (rc < 0)
Daniel Willmannca102af2014-08-08 12:14:12 +0200352 return NULL;
Daniel Willmannca102af2014-08-08 12:14:12 +0200353 }
354
355 msg = msgb_alloc(23, "rlcmac_ul_ack");
356 if (!msg)
357 return NULL;
Alexander Couzensccde5c92017-02-04 03:10:08 +0100358 bitvec *ack_vec = bitvec_alloc(23, tall_pcu_ctx);
Daniel Willmannca102af2014-08-08 12:14:12 +0200359 if (!ack_vec) {
360 msgb_free(msg);
361 return NULL;
362 }
Max7426c5f2019-02-18 20:42:42 +0100363 bitvec_unhex(ack_vec, DUMMY_VEC);
Alexander Couzens3a499f32019-06-16 15:25:30 +0200364 Encoding::write_packet_uplink_ack(ack_vec, this, final, rrbp);
Daniel Willmannca102af2014-08-08 12:14:12 +0200365 bitvec_pack(ack_vec, msgb_put(msg, 23));
366 bitvec_free(ack_vec);
Daniel Willmannca102af2014-08-08 12:14:12 +0200367
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200368 /* TS 44.060 7a.2.1.1: "The contention resolution is completed on
369 * the network side when the network receives an RLC data block that
370 * comprises the TLLI value that identifies the mobile station and the
371 * TFI value associated with the TBF."
372 * However, it's handier for us to mark contention resolution success
373 * here since according to spec upon rx UL ACK is the time at which MS
374 * realizes contention resolution succeeds. */
Pau Espin Pedrolfaf0ccb2021-05-11 12:55:31 +0200375 if (is_tlli_valid())
Pau Espin Pedrol4b6f0bf2021-05-10 18:54:52 +0200376 contention_resolution_success();
Daniel Willmannca102af2014-08-08 12:14:12 +0200377
378 if (final) {
Pau Espin Pedrol86580e12021-03-29 18:15:30 +0200379 set_polling(new_poll_fn, ts, PDCH_ULC_POLL_UL_ACK);
Daniel Willmannca102af2014-08-08 12:14:12 +0200380 /* waiting for final acknowledge */
Daniel Willmannca102af2014-08-08 12:14:12 +0200381 m_final_ack_sent = 1;
382 } else
Max088c7df2018-01-23 20:16:23 +0100383 TBF_SET_ACK_STATE(this, GPRS_RLCMAC_UL_ACK_NONE);
Daniel Willmannca102af2014-08-08 12:14:12 +0200384
385 return msg;
386}
387
Alexander Couzens2fcfc292016-05-24 14:40:03 +0200388/*! \brief receive data from PDCH/L1 */
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100389int gprs_rlcmac_ul_tbf::rcv_data_block_acknowledged(
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +0100390 const struct gprs_rlc_data_info *rlc,
Jacob Erlbeckfc1b3e62016-01-11 09:58:11 +0100391 uint8_t *data, struct pcu_l1_meas *meas)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100392{
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200393 const struct gprs_rlc_data_block_info *rdbi;
394 struct gprs_rlc_data *block;
395
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100396 int8_t rssi = meas->have_rssi ? meas->rssi : 0;
397
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100398 const uint16_t ws = m_window.ws();
399
Pau Espin Pedrol33e80072021-07-22 19:20:50 +0200400 this->state_fsm.state_flags |= (1 << GPRS_RLCMAC_FLAG_UL_DATA);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100401
Max0524e382018-01-19 18:22:25 +0100402 LOGPTBFUL(this, LOGL_DEBUG, "UL DATA TFI=%d received (V(Q)=%d .. "
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100403 "V(R)=%d)\n", rlc->tfi, this->m_window.v_q(),
404 this->m_window.v_r());
405
406 /* process RSSI */
407 gprs_rlcmac_rssi(this, rssi);
408
409 /* store measurement values */
Pau Espin Pedrolf53815f2021-05-11 14:23:51 +0200410 ms_update_l1_meas(ms(), meas);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100411
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700412 uint32_t new_tlli = GSM_RESERVED_TMSI;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100413 unsigned int block_idx;
414
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100415 /* Increment RX-counter */
416 this->m_rx_counter++;
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530417 update_coding_scheme_counter_ul(rlc->cs);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100418 /* Loop over num_blocks */
419 for (block_idx = 0; block_idx < rlc->num_data_blocks; block_idx++) {
420 int num_chunks;
421 uint8_t *rlc_data;
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200422 rdbi = &rlc->block_info[block_idx];
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100423
Max0524e382018-01-19 18:22:25 +0100424 LOGPTBFUL(this, LOGL_DEBUG,
425 "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 +0100426 mcs_name(rlc->cs),
Max0524e382018-01-19 18:22:25 +0100427 rdbi->cv, rdbi->bsn, rdbi->spb,
428 rdbi->pi, rdbi->e, rdbi->ti,
429 rlc->data_offs_bits[block_idx]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100430
431 /* Check whether the block needs to be decoded */
432
433 if (!m_window.is_in_window(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100434 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d out of window %d..%d (it's normal)\n",
435 rdbi->bsn,
436 m_window.v_q(), m_window.mod_sns(m_window.v_q() + ws - 1));
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200437 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100438 } else if (m_window.is_received(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100439 LOGPTBFUL(this, LOGL_DEBUG,
440 "BSN %d already received\n", rdbi->bsn);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100441 continue;
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200442 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100443
444 /* Store block and meta info to BSN buffer */
445
Max0524e382018-01-19 18:22:25 +0100446 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d storing in window (%d..%d)\n",
447 rdbi->bsn, m_window.v_q(),
448 m_window.mod_sns(m_window.v_q() + ws - 1));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100449 block = m_rlc.block(rdbi->bsn);
Aravind Sirsikar550a5412016-06-14 18:59:18 +0530450 OSMO_ASSERT(rdbi->data_len <= sizeof(block->block));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100451 rlc_data = &(block->block[0]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100452
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530453 if (rdbi->spb) {
454 egprs_rlc_ul_reseg_bsn_state assemble_status;
455
456 assemble_status = handle_egprs_ul_spb(rlc,
457 block, data, block_idx);
458
459 if (assemble_status != EGPRS_RESEG_DEFAULT)
460 return 0;
461 } else {
462 block->block_info = *rdbi;
463 block->cs_last = rlc->cs;
464 block->len =
465 Decoding::rlc_copy_to_aligned_buffer(rlc,
466 block_idx, data, rlc_data);
467 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100468
Max0524e382018-01-19 18:22:25 +0100469 LOGPTBFUL(this, LOGL_DEBUG,
470 "data_length=%d, data=%s\n",
471 block->len, osmo_hexdump(rlc_data, block->len));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100472 /* Get/Handle TLLI */
473 if (rdbi->ti) {
474 num_chunks = Decoding::rlc_data_from_ul_data(
475 rdbi, rlc->cs, rlc_data, NULL, 0, &new_tlli);
476
477 if (num_chunks < 0) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100478 bts_do_rate_ctr_inc(bts, CTR_DECODE_ERRORS);
Max0524e382018-01-19 18:22:25 +0100479 LOGPTBFUL(this, LOGL_NOTICE,
480 "Failed to decode TLLI of %s UL DATA TFI=%d.\n",
Max136ebcc2019-03-05 14:59:03 +0100481 mcs_name(rlc->cs), rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100482 m_window.invalidate_bsn(rdbi->bsn);
483 continue;
484 }
485 if (!this->is_tlli_valid()) {
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700486 if (new_tlli == GSM_RESERVED_TMSI) {
Max0524e382018-01-19 18:22:25 +0100487 LOGPTBFUL(this, LOGL_NOTICE,
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700488 "TLLI is 0x%08x within UL DATA?!?\n",
489 new_tlli);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100490 m_window.invalidate_bsn(rdbi->bsn);
491 continue;
492 }
Max0524e382018-01-19 18:22:25 +0100493 LOGPTBFUL(this, LOGL_INFO,
494 "Decoded premier TLLI=0x%08x of UL DATA TFI=%d.\n",
Vadim Yanitskiy3f27fb52020-04-20 11:26:12 +0700495 new_tlli, rlc->tfi);
Pau Espin Pedrold21e9612020-06-26 14:20:37 +0200496 update_ms(new_tlli, GPRS_RLCMAC_UL_TBF);
Oliver Smithd3c75912021-07-09 16:37:16 +0200497 bts_pch_timer_stop(bts, ms_imsi(ms()));
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700498 } else if (new_tlli != GSM_RESERVED_TMSI && new_tlli != tlli()) {
Max0524e382018-01-19 18:22:25 +0100499 LOGPTBFUL(this, LOGL_NOTICE,
Pau Espin Pedrol305763d2020-11-06 20:03:24 +0100500 "Decoded TLLI=%08x mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
501 new_tlli, rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100502 m_window.invalidate_bsn(rdbi->bsn);
503 continue;
504 }
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200505 } else if (!is_tlli_valid()) {
506 LOGPTBFUL(this, LOGL_NOTICE, "Missing TLLI within UL DATA.\n");
507 m_window.invalidate_bsn(rdbi->bsn);
508 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100509 }
510
511 m_window.receive_bsn(rdbi->bsn);
512 }
513
514 /* Raise V(Q) if possible, and retrieve LLC frames from blocks.
515 * This is looped until there is a gap (non received block) or
516 * the window is empty.*/
517 const uint16_t v_q_beg = m_window.v_q();
518 const uint16_t count = m_window.raise_v_q();
519
520 /* Retrieve LLC frames from blocks that are ready */
521 for (uint16_t i = 0; i < count; ++i) {
Jacob Erlbeck93c55d02015-12-23 16:29:07 +0100522 uint16_t index = m_window.mod_sns(v_q_beg + i);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100523 assemble_forward_llc(m_rlc.block(index));
524 }
525
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200526 /* Last frame in buffer: */
527 block = m_rlc.block(m_window.mod_sns(m_window.v_r() - 1));
528 rdbi = &block->block_info;
529
530 /* Check if we already received all data TBF had to send: */
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200531 if (this->state_is(TBF_ST_FLOW) /* still in flow state */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200532 && this->m_window.v_q() == this->m_window.v_r() /* if complete */
533 && block->len) { /* if there was ever a last block received */
Max0524e382018-01-19 18:22:25 +0100534 LOGPTBFUL(this, LOGL_DEBUG,
535 "No gaps in received block, last block: BSN=%d CV=%d\n",
536 rdbi->bsn, rdbi->cv);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100537 if (rdbi->cv == 0) {
Max0524e382018-01-19 18:22:25 +0100538 LOGPTBFUL(this, LOGL_DEBUG, "Finished with UL TBF\n");
Pau Espin Pedrolc32c4a32021-07-23 18:27:57 +0200539 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_LAST_UL_DATA_RECVD, NULL);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100540 /* Reset N3103 counter. */
Max847ed9f2018-02-20 18:16:11 +0100541 this->n_reset(N3103);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100542 }
543 }
544
545 /* If TLLI is included or if we received half of the window, we send
546 * an ack/nack */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200547 maybe_schedule_uplink_acknack(rlc, block->len && rdbi->cv == 0);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100548
549 return 0;
550}
551
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100552void gprs_rlcmac_ul_tbf::maybe_schedule_uplink_acknack(
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200553 const gprs_rlc_data_info *rlc, bool countdown_finished)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100554{
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200555 bool require_ack = false;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100556 bool have_ti = rlc->block_info[0].ti ||
557 (rlc->num_data_blocks > 1 && rlc->block_info[1].ti);
558
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200559 if (rlc->si) {
560 require_ack = true;
561 LOGPTBFUL(this, LOGL_NOTICE,
562 "Scheduling Ack/Nack, because MS is stalled.\n");
563 }
564 if (have_ti) {
565 require_ack = true;
566 LOGPTBFUL(this, LOGL_DEBUG,
567 "Scheduling Ack/Nack, because TLLI is included.\n");
568 }
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200569 if (countdown_finished) {
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200570 require_ack = true;
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200571 if (state_is(TBF_ST_FLOW))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200572 LOGPTBFUL(this, LOGL_DEBUG,
573 "Scheduling Ack/Nack, because some data is missing and last block has CV==0.\n");
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200574 else if (state_is(TBF_ST_FINISHED))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200575 LOGPTBFUL(this, LOGL_DEBUG,
576 "Scheduling final Ack/Nack, because all data was received and last block has CV==0.\n");
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200577 }
578 if ((m_rx_counter % SEND_ACK_AFTER_FRAMES) == 0) {
579 require_ack = true;
580 LOGPTBFUL(this, LOGL_DEBUG,
581 "Scheduling Ack/Nack, because %d frames received.\n",
582 SEND_ACK_AFTER_FRAMES);
583 }
584
585 if (!require_ack)
586 return;
587
588 if (ul_ack_state_is(GPRS_RLCMAC_UL_ACK_NONE)) {
589 /* trigger sending at next RTS */
590 TBF_SET_ACK_STATE(this, GPRS_RLCMAC_UL_ACK_SEND_ACK);
591 } else {
592 /* already triggered */
593 LOGPTBFUL(this, LOGL_DEBUG,
594 "Sending Ack/Nack already scheduled, no need to re-schedule\n");
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100595 }
596}
597
Daniel Willmannca102af2014-08-08 12:14:12 +0200598/* Send Uplink unit-data to SGSN. */
599int gprs_rlcmac_ul_tbf::snd_ul_ud()
600{
601 uint8_t qos_profile[3];
602 struct msgb *llc_pdu;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100603 unsigned msg_len = NS_HDR_LEN + BSSGP_HDR_LEN + llc_frame_length(&m_llc);
Pau Espin Pedroldb5e3392021-01-21 18:02:40 +0100604 struct bssgp_bvc_ctx *bctx = bts->pcu->bssgp.bctx;
Daniel Willmannca102af2014-08-08 12:14:12 +0200605
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100606 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 +0200607 if (!bctx) {
608 LOGP(DBSSGP, LOGL_ERROR, "No bctx\n");
609 m_llc.reset_frame_space();
610 return -EIO;
611 }
Pau Espin Pedrol488aa292019-09-25 17:48:35 +0200612
Daniel Willmannca102af2014-08-08 12:14:12 +0200613 llc_pdu = msgb_alloc_headroom(msg_len, msg_len,"llc_pdu");
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100614 uint8_t *buf = msgb_push(llc_pdu, TL16V_GROSS_LEN(sizeof(uint8_t)*llc_frame_length(&m_llc)));
615 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 +0200616 qos_profile[0] = QOS_PROFILE >> 16;
617 qos_profile[1] = QOS_PROFILE >> 8;
618 qos_profile[2] = QOS_PROFILE;
619 bssgp_tx_ul_ud(bctx, tlli(), qos_profile, llc_pdu);
620
621 m_llc.reset_frame_space();
622 return 0;
623}
624
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530625egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_second_seg(
626 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
627 uint8_t *data, const uint8_t block_idx)
628{
629 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
630 union split_block_status *spb_status = &block->spb_status;
631 uint8_t *rlc_data = &block->block[0];
632
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100633 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_SECOND_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530634
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530635 if (spb_status->block_status_ul &
636 EGPRS_RESEG_FIRST_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100637 LOGPTBFUL(this, LOGL_DEBUG,
638 "Second seg is received first seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530639 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
640
641 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
642 block_idx, data, rlc_data + block->len);
643 block->block_info.data_len += rdbi->data_len;
644 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100645 LOGPTBFUL(this, LOGL_DEBUG,
646 "Second seg is received first seg is not received set the status to second seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530647
648 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
649 block_idx, data,
650 rlc_data + rlc->block_info[block_idx].data_len);
651
652 spb_status->block_status_ul = EGPRS_RESEG_SECOND_SEG_RXD;
653 block->block_info = *rdbi;
654 }
655 return spb_status->block_status_ul;
656}
657
658egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_first_seg(
659 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
660 uint8_t *data, const uint8_t block_idx)
661{
662 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
663 uint8_t *rlc_data = &block->block[0];
664 union split_block_status *spb_status = &block->spb_status;
665
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100666 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_FIRST_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530667
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530668 if (spb_status->block_status_ul & EGPRS_RESEG_SECOND_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100669 LOGPTBFUL(this, LOGL_DEBUG,
670 "First seg is received second seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530671
672 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
673 block_idx, data, rlc_data);
674
675 block->block_info.data_len = block->len;
676 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
677 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100678 LOGPTBFUL(this, LOGL_DEBUG,
679 "First seg is received second seg is not received set the status to first seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530680
681 spb_status->block_status_ul = EGPRS_RESEG_FIRST_SEG_RXD;
682 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
683 block_idx, data, rlc_data);
684 block->block_info = *rdbi;
685 }
686 return spb_status->block_status_ul;
687}
688
689egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_spb(
690 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
691 uint8_t *data, const uint8_t block_idx)
692{
693 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
694
Max0524e382018-01-19 18:22:25 +0100695 LOGPTBFUL(this, LOGL_DEBUG,
696 "Got SPB(%d) cs(%s) data block with BSN (%d), TFI(%d).\n",
Max136ebcc2019-03-05 14:59:03 +0100697 rdbi->spb, mcs_name(rlc->cs), rdbi->bsn, rlc->tfi);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530698
699 egprs_rlc_ul_reseg_bsn_state assemble_status = EGPRS_RESEG_INVALID;
700
701 /* Section 10.4.8b of 44.060*/
702 if (rdbi->spb == 2)
703 assemble_status = handle_egprs_ul_first_seg(rlc,
704 block, data, block_idx);
705 else if (rdbi->spb == 3)
706 assemble_status = handle_egprs_ul_second_seg(rlc,
707 block, data, block_idx);
708 else {
Max0524e382018-01-19 18:22:25 +0100709 LOGPTBFUL(this, LOGL_ERROR,
710 "spb(%d) Not supported SPB for this EGPRS configuration\n",
711 rdbi->spb);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530712 }
713
714 /*
715 * When the block is successfully constructed out of segmented blocks
716 * upgrade the MCS to the type 2
717 */
718 if (assemble_status == EGPRS_RESEG_DEFAULT) {
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200719 switch (rlc->cs) {
Maxbea2edb2019-03-06 17:04:59 +0100720 case MCS3 :
721 block->cs_last = MCS6;
Max0524e382018-01-19 18:22:25 +0100722 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS6\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530723 break;
Maxbea2edb2019-03-06 17:04:59 +0100724 case MCS2 :
725 block->cs_last = MCS5;
Max0524e382018-01-19 18:22:25 +0100726 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS5\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530727 break;
Maxbea2edb2019-03-06 17:04:59 +0100728 case MCS1 :
Max0524e382018-01-19 18:22:25 +0100729 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS4\n");
Maxbea2edb2019-03-06 17:04:59 +0100730 block->cs_last = MCS4;
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530731 break;
732 default:
Max0524e382018-01-19 18:22:25 +0100733 LOGPTBFUL(this, LOGL_ERROR,
734 "cs(%s) Error in Upgrading to higher MCS\n",
Max136ebcc2019-03-05 14:59:03 +0100735 mcs_name(rlc->cs));
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530736 break;
737 }
738 }
739 return assemble_status;
740}
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530741
Maxfb59a932019-03-13 18:40:19 +0100742void gprs_rlcmac_ul_tbf::update_coding_scheme_counter_ul(enum CodingScheme cs)
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530743{
Maxfb59a932019-03-13 18:40:19 +0100744 switch (cs) {
745 case CS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100746 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200747 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS1));
Maxfb59a932019-03-13 18:40:19 +0100748 break;
749 case CS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100750 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200751 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS2));
Maxfb59a932019-03-13 18:40:19 +0100752 break;
753 case CS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100754 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200755 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS3));
Maxfb59a932019-03-13 18:40:19 +0100756 break;
757 case CS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100758 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200759 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_gprs_ctrs, TBF_CTR_GPRS_UL_CS4));
Maxfb59a932019-03-13 18:40:19 +0100760 break;
761 case MCS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100762 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS1);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200763 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS1));
Maxfb59a932019-03-13 18:40:19 +0100764 break;
765 case MCS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100766 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS2);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200767 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS2));
Maxfb59a932019-03-13 18:40:19 +0100768 break;
769 case MCS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100770 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS3);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200771 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS3));
Maxfb59a932019-03-13 18:40:19 +0100772 break;
773 case MCS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100774 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS4);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200775 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS4));
Maxfb59a932019-03-13 18:40:19 +0100776 break;
777 case MCS5:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100778 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS5);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200779 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS5));
Maxfb59a932019-03-13 18:40:19 +0100780 break;
781 case MCS6:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100782 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS6);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200783 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS6));
Maxfb59a932019-03-13 18:40:19 +0100784 break;
785 case MCS7:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100786 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS7);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200787 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS7));
Maxfb59a932019-03-13 18:40:19 +0100788 break;
789 case MCS8:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100790 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS8);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200791 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS8));
Maxfb59a932019-03-13 18:40:19 +0100792 break;
793 case MCS9:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100794 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS9);
Pau Espin Pedrol9c1db172021-06-04 17:05:51 +0200795 rate_ctr_inc(rate_ctr_group_get_ctr(m_ul_egprs_ctrs, TBF_CTR_EGPRS_UL_MCS9));
Maxfb59a932019-03-13 18:40:19 +0100796 break;
797 default:
798 LOGPTBFUL(this, LOGL_ERROR, "attempting to update rate counters for unsupported (M)CS %s\n",
799 mcs_name(cs));
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530800 }
801}
sivasankari8adfcd02017-01-16 15:41:21 +0530802
Max9d7357e2017-12-14 15:02:33 +0100803void gprs_rlcmac_ul_tbf::set_window_size()
sivasankari8adfcd02017-01-16 15:41:21 +0530804{
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100805 const struct gprs_rlcmac_bts *b = bts;
Max34513fe2018-12-11 16:47:30 +0100806 uint16_t ws = egprs_window_size(b, ul_slots());
Max0524e382018-01-19 18:22:25 +0100807 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 +0100808 ws, bts->pcu->vty.ws_base, pcu_bitcount(ul_slots()), bts->pcu->vty.ws_pdch);
sivasankari8adfcd02017-01-16 15:41:21 +0530809 m_window.set_ws(ws);
810}
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200811
Pau Espin Pedrolb3f23972020-10-23 21:00:23 +0200812gprs_rlc_window *gprs_rlcmac_ul_tbf::window()
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200813{
814 return &m_window;
815}
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100816
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100817void gprs_rlcmac_ul_tbf::usf_timeout()
818{
Pau Espin Pedrolcfb61d92021-07-26 17:17:02 +0200819 if (n_inc(N3101))
Pau Espin Pedrol55f600b2021-07-26 15:54:39 +0200820 osmo_fsm_inst_dispatch(this->state_fsm.fi, TBF_EV_MAX_N3101, NULL);
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100821}
822
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100823struct gprs_rlcmac_ul_tbf *as_ul_tbf(struct gprs_rlcmac_tbf *tbf)
824{
825 if (tbf && tbf->direction == GPRS_RLCMAC_UL_TBF)
826 return static_cast<gprs_rlcmac_ul_tbf *>(tbf);
827 else
828 return NULL;
829}
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100830
831void tbf_usf_timeout(struct gprs_rlcmac_ul_tbf *tbf)
832{
833 tbf->usf_timeout();
834}