blob: 9cbb9fb7145b8da4ac46ef74d35b32176019701d [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>
23#include <tbf.h>
Pau Espin Pedrol9d1cdb12019-09-25 17:47:02 +020024#include <tbf_ul.h>
Daniel Willmannca102af2014-08-08 12:14:12 +020025#include <rlc.h>
26#include <encoding.h>
27#include <gprs_rlcmac.h>
28#include <gprs_debug.h>
29#include <gprs_bssgp_pcu.h>
30#include <decoding.h>
Jacob Erlbeck20f6fd12015-06-08 11:05:45 +020031#include <pcu_l1_if.h>
Max1187a772018-01-26 13:31:42 +010032#include <gprs_ms.h>
33#include <llc.h>
sivasankari8adfcd02017-01-16 15:41:21 +053034#include "pcu_utils.h"
35
Daniel Willmannca102af2014-08-08 12:14:12 +020036extern "C" {
37#include <osmocom/core/msgb.h>
38#include <osmocom/core/talloc.h>
Max1187a772018-01-26 13:31:42 +010039 #include <osmocom/core/bitvec.h>
40 #include <osmocom/core/logging.h>
41 #include <osmocom/core/rate_ctr.h>
Pau Espin Pedrol442198c2020-10-23 22:30:04 +020042 #include <osmocom/core/stats.h>
Max1187a772018-01-26 13:31:42 +010043 #include <osmocom/core/utils.h>
44 #include <osmocom/gprs/gprs_bssgp_bss.h>
45 #include <osmocom/gprs/protocol/gsm_08_18.h>
46 #include <osmocom/gsm/tlv.h>
Max136ebcc2019-03-05 14:59:03 +010047 #include "coding_scheme.h"
Daniel Willmannca102af2014-08-08 12:14:12 +020048}
49
50#include <errno.h>
51#include <string.h>
52
53/* After receiving these frames, we send ack/nack. */
54#define SEND_ACK_AFTER_FRAMES 20
55
56extern void *tall_pcu_ctx;
57
Pau Espin Pedrol442198c2020-10-23 22:30:04 +020058static const struct rate_ctr_desc tbf_ul_gprs_ctr_description[] = {
59 { "gprs:uplink:cs1", "CS1 " },
60 { "gprs:uplink:cs2", "CS2 " },
61 { "gprs:uplink:cs3", "CS3 " },
62 { "gprs:uplink:cs4", "CS4 " },
63};
64
65static const struct rate_ctr_desc tbf_ul_egprs_ctr_description[] = {
66 { "egprs:uplink:mcs1", "MCS1 " },
67 { "egprs:uplink:mcs2", "MCS2 " },
68 { "egprs:uplink:mcs3", "MCS3 " },
69 { "egprs:uplink:mcs4", "MCS4 " },
70 { "egprs:uplink:mcs5", "MCS5 " },
71 { "egprs:uplink:mcs6", "MCS6 " },
72 { "egprs:uplink:mcs7", "MCS7 " },
73 { "egprs:uplink:mcs8", "MCS8 " },
74 { "egprs:uplink:mcs9", "MCS9 " },
75};
76
77static const struct rate_ctr_group_desc tbf_ul_gprs_ctrg_desc = {
78 "tbf:gprs",
79 "Data Blocks",
80 OSMO_STATS_CLASS_SUBSCRIBER,
81 ARRAY_SIZE(tbf_ul_gprs_ctr_description),
82 tbf_ul_gprs_ctr_description,
83};
84
85static const struct rate_ctr_group_desc tbf_ul_egprs_ctrg_desc = {
86 "tbf:egprs",
87 "Data Blocks",
88 OSMO_STATS_CLASS_SUBSCRIBER,
89 ARRAY_SIZE(tbf_ul_egprs_ctr_description),
90 tbf_ul_egprs_ctr_description,
91};
92
93static int ul_tbf_dtor(struct gprs_rlcmac_ul_tbf *tbf)
94{
95 tbf->~gprs_rlcmac_ul_tbf();
96 return 0;
97}
98
Pau Espin Pedrol54742f22021-04-26 16:48:34 +020099/* 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 +0200100struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_tbf(struct gprs_rlcmac_bts *bts, GprsMs *ms, int8_t use_trx, bool single_slot)
101{
102 struct gprs_rlcmac_ul_tbf *tbf;
103 int rc;
104
105 OSMO_ASSERT(ms != NULL);
106
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100107 LOGPMS(ms, DTBF, LOGL_DEBUG, "********** UL-TBF starts here **********\n");
108 LOGPMS(ms, DTBF, LOGL_INFO, "Allocating UL TBF\n");
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200109
110 tbf = talloc(tall_pcu_ctx, struct gprs_rlcmac_ul_tbf);
111 if (!tbf)
112 return NULL;
113 talloc_set_destructor(tbf, ul_tbf_dtor);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100114 new (tbf) gprs_rlcmac_ul_tbf(bts, ms);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200115
116 rc = tbf->setup(use_trx, single_slot);
117
118 /* if no resource */
119 if (rc < 0) {
120 talloc_free(tbf);
121 return NULL;
122 }
123
124 if (tbf->is_egprs_enabled())
125 tbf->set_window_size();
126
127 tbf->m_ul_egprs_ctrs = rate_ctr_group_alloc(tbf,
128 &tbf_ul_egprs_ctrg_desc, tbf->m_ctrs->idx);
129 tbf->m_ul_gprs_ctrs = rate_ctr_group_alloc(tbf,
130 &tbf_ul_gprs_ctrg_desc, tbf->m_ctrs->idx);
131 if (!tbf->m_ul_egprs_ctrs || !tbf->m_ul_gprs_ctrs) {
132 LOGPTBF(tbf, LOGL_ERROR, "Couldn't allocate TBF UL counters\n");
133 talloc_free(tbf);
134 return NULL;
135 }
136
Pau Espin Pedrol1a1557a2021-05-13 18:39:36 +0200137 llist_add_tail(tbf_trx_list(tbf), &tbf->trx->ul_tbfs);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100138 bts_do_rate_ctr_inc(tbf->bts, CTR_TBF_UL_ALLOCATED);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200139
140 return tbf;
141}
142
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200143/* Alloc a UL TBF to be assigned over PACCH */
Pau Espin Pedrolc6571b52021-05-10 17:10:37 +0200144gprs_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 +0200145 uint32_t tlli)
146{
147 struct gprs_rlcmac_ul_tbf *tbf;
148
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200149 tbf = tbf_alloc_ul_tbf(bts, ms, use_trx, false);
150 if (!tbf) {
Pau Espin Pedrol36177c62021-02-25 17:57:37 +0100151 LOGPMS(ms, DTBF, LOGL_NOTICE, "No PDCH resource\n");
Pau Espin Pedrol54742f22021-04-26 16:48:34 +0200152 /* Caller will most probably send a Imm Ass Reject after return */
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200153 return NULL;
154 }
155 tbf->m_contention_resolution_done = 1;
156 TBF_SET_ASS_ON(tbf, GPRS_RLCMAC_FLAG_PACCH, false);
Pau Espin Pedrol442198c2020-10-23 22:30:04 +0200157 tbf->update_ms(tlli, GPRS_RLCMAC_UL_TBF);
158 OSMO_ASSERT(tbf->ms());
159
160 return tbf;
161}
162
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200163/* Alloc a UL TBF to be assigned over CCCH */
164struct gprs_rlcmac_ul_tbf *tbf_alloc_ul_ccch(struct gprs_rlcmac_bts *bts, struct GprsMs *ms)
165{
166 struct gprs_rlcmac_ul_tbf *tbf;
167
168 tbf = tbf_alloc_ul_tbf(bts, ms, -1, true);
169 if (!tbf) {
170 LOGP(DTBF, LOGL_NOTICE, "No PDCH resource for Uplink TBF\n");
171 /* Caller will most probably send a Imm Ass Reject after return */
172 return NULL;
173 }
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200174 TBF_SET_STATE(tbf, TBF_ST_FLOW);
Pau Espin Pedrol20271c42021-05-10 17:21:03 +0200175 TBF_ASS_TYPE_SET(tbf, GPRS_RLCMAC_FLAG_CCCH);
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);
217 TBF_SET_ASS_ON(ul_tbf, GPRS_RLCMAC_FLAG_PACCH, false);
218 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
289 state_flags |= (1 << GPRS_RLCMAC_FLAG_TO_UL_ACK);
290 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
400 this->state_flags |= (1 << GPRS_RLCMAC_FLAG_UL_DATA);
401
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);
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700497 } else if (new_tlli != GSM_RESERVED_TMSI && new_tlli != tlli()) {
Max0524e382018-01-19 18:22:25 +0100498 LOGPTBFUL(this, LOGL_NOTICE,
Pau Espin Pedrol305763d2020-11-06 20:03:24 +0100499 "Decoded TLLI=%08x mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
500 new_tlli, rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100501 m_window.invalidate_bsn(rdbi->bsn);
502 continue;
503 }
Pau Espin Pedrol58916312021-05-11 14:40:41 +0200504 } else if (!is_tlli_valid()) {
505 LOGPTBFUL(this, LOGL_NOTICE, "Missing TLLI within UL DATA.\n");
506 m_window.invalidate_bsn(rdbi->bsn);
507 continue;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100508 }
509
510 m_window.receive_bsn(rdbi->bsn);
511 }
512
513 /* Raise V(Q) if possible, and retrieve LLC frames from blocks.
514 * This is looped until there is a gap (non received block) or
515 * the window is empty.*/
516 const uint16_t v_q_beg = m_window.v_q();
517 const uint16_t count = m_window.raise_v_q();
518
519 /* Retrieve LLC frames from blocks that are ready */
520 for (uint16_t i = 0; i < count; ++i) {
Jacob Erlbeck93c55d02015-12-23 16:29:07 +0100521 uint16_t index = m_window.mod_sns(v_q_beg + i);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100522 assemble_forward_llc(m_rlc.block(index));
523 }
524
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200525 /* Last frame in buffer: */
526 block = m_rlc.block(m_window.mod_sns(m_window.v_r() - 1));
527 rdbi = &block->block_info;
528
529 /* Check if we already received all data TBF had to send: */
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200530 if (this->state_is(TBF_ST_FLOW) /* still in flow state */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200531 && this->m_window.v_q() == this->m_window.v_r() /* if complete */
532 && block->len) { /* if there was ever a last block received */
Max0524e382018-01-19 18:22:25 +0100533 LOGPTBFUL(this, LOGL_DEBUG,
534 "No gaps in received block, last block: BSN=%d CV=%d\n",
535 rdbi->bsn, rdbi->cv);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100536 if (rdbi->cv == 0) {
Max0524e382018-01-19 18:22:25 +0100537 LOGPTBFUL(this, LOGL_DEBUG, "Finished with UL TBF\n");
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200538 TBF_SET_STATE(this, TBF_ST_FINISHED);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100539 /* Reset N3103 counter. */
Max847ed9f2018-02-20 18:16:11 +0100540 this->n_reset(N3103);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100541 }
542 }
543
544 /* If TLLI is included or if we received half of the window, we send
545 * an ack/nack */
Pau Espin Pedrol9b63cd02021-05-11 14:54:40 +0200546 maybe_schedule_uplink_acknack(rlc, block->len && rdbi->cv == 0);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100547
548 return 0;
549}
550
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100551void gprs_rlcmac_ul_tbf::maybe_schedule_uplink_acknack(
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200552 const gprs_rlc_data_info *rlc, bool countdown_finished)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100553{
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200554 bool require_ack = false;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100555 bool have_ti = rlc->block_info[0].ti ||
556 (rlc->num_data_blocks > 1 && rlc->block_info[1].ti);
557
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200558 if (rlc->si) {
559 require_ack = true;
560 LOGPTBFUL(this, LOGL_NOTICE,
561 "Scheduling Ack/Nack, because MS is stalled.\n");
562 }
563 if (have_ti) {
564 require_ack = true;
565 LOGPTBFUL(this, LOGL_DEBUG,
566 "Scheduling Ack/Nack, because TLLI is included.\n");
567 }
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200568 if (countdown_finished) {
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200569 require_ack = true;
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200570 if (state_is(TBF_ST_FLOW))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200571 LOGPTBFUL(this, LOGL_DEBUG,
572 "Scheduling Ack/Nack, because some data is missing and last block has CV==0.\n");
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200573 else if (state_is(TBF_ST_FINISHED))
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200574 LOGPTBFUL(this, LOGL_DEBUG,
575 "Scheduling final Ack/Nack, because all data was received and last block has CV==0.\n");
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200576 }
577 if ((m_rx_counter % SEND_ACK_AFTER_FRAMES) == 0) {
578 require_ack = true;
579 LOGPTBFUL(this, LOGL_DEBUG,
580 "Scheduling Ack/Nack, because %d frames received.\n",
581 SEND_ACK_AFTER_FRAMES);
582 }
583
584 if (!require_ack)
585 return;
586
587 if (ul_ack_state_is(GPRS_RLCMAC_UL_ACK_NONE)) {
588 /* trigger sending at next RTS */
589 TBF_SET_ACK_STATE(this, GPRS_RLCMAC_UL_ACK_SEND_ACK);
590 } else {
591 /* already triggered */
592 LOGPTBFUL(this, LOGL_DEBUG,
593 "Sending Ack/Nack already scheduled, no need to re-schedule\n");
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100594 }
595}
596
Daniel Willmannca102af2014-08-08 12:14:12 +0200597/* Send Uplink unit-data to SGSN. */
598int gprs_rlcmac_ul_tbf::snd_ul_ud()
599{
600 uint8_t qos_profile[3];
601 struct msgb *llc_pdu;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100602 unsigned msg_len = NS_HDR_LEN + BSSGP_HDR_LEN + llc_frame_length(&m_llc);
Pau Espin Pedroldb5e3392021-01-21 18:02:40 +0100603 struct bssgp_bvc_ctx *bctx = bts->pcu->bssgp.bctx;
Daniel Willmannca102af2014-08-08 12:14:12 +0200604
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100605 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 +0200606 if (!bctx) {
607 LOGP(DBSSGP, LOGL_ERROR, "No bctx\n");
608 m_llc.reset_frame_space();
609 return -EIO;
610 }
Pau Espin Pedrol488aa292019-09-25 17:48:35 +0200611
Daniel Willmannca102af2014-08-08 12:14:12 +0200612 llc_pdu = msgb_alloc_headroom(msg_len, msg_len,"llc_pdu");
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100613 uint8_t *buf = msgb_push(llc_pdu, TL16V_GROSS_LEN(sizeof(uint8_t)*llc_frame_length(&m_llc)));
614 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 +0200615 qos_profile[0] = QOS_PROFILE >> 16;
616 qos_profile[1] = QOS_PROFILE >> 8;
617 qos_profile[2] = QOS_PROFILE;
618 bssgp_tx_ul_ud(bctx, tlli(), qos_profile, llc_pdu);
619
620 m_llc.reset_frame_space();
621 return 0;
622}
623
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530624egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_second_seg(
625 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
626 uint8_t *data, const uint8_t block_idx)
627{
628 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
629 union split_block_status *spb_status = &block->spb_status;
630 uint8_t *rlc_data = &block->block[0];
631
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100632 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_SECOND_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530633
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530634 if (spb_status->block_status_ul &
635 EGPRS_RESEG_FIRST_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100636 LOGPTBFUL(this, LOGL_DEBUG,
637 "Second seg is received first seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530638 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
639
640 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
641 block_idx, data, rlc_data + block->len);
642 block->block_info.data_len += rdbi->data_len;
643 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100644 LOGPTBFUL(this, LOGL_DEBUG,
645 "Second seg is received first seg is not received set the status to second seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530646
647 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
648 block_idx, data,
649 rlc_data + rlc->block_info[block_idx].data_len);
650
651 spb_status->block_status_ul = EGPRS_RESEG_SECOND_SEG_RXD;
652 block->block_info = *rdbi;
653 }
654 return spb_status->block_status_ul;
655}
656
657egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_first_seg(
658 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
659 uint8_t *data, const uint8_t block_idx)
660{
661 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
662 uint8_t *rlc_data = &block->block[0];
663 union split_block_status *spb_status = &block->spb_status;
664
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100665 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_FIRST_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530666
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530667 if (spb_status->block_status_ul & EGPRS_RESEG_SECOND_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100668 LOGPTBFUL(this, LOGL_DEBUG,
669 "First seg is received second seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530670
671 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
672 block_idx, data, rlc_data);
673
674 block->block_info.data_len = block->len;
675 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
676 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100677 LOGPTBFUL(this, LOGL_DEBUG,
678 "First seg is received second seg is not received set the status to first seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530679
680 spb_status->block_status_ul = EGPRS_RESEG_FIRST_SEG_RXD;
681 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
682 block_idx, data, rlc_data);
683 block->block_info = *rdbi;
684 }
685 return spb_status->block_status_ul;
686}
687
688egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_spb(
689 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
690 uint8_t *data, const uint8_t block_idx)
691{
692 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
693
Max0524e382018-01-19 18:22:25 +0100694 LOGPTBFUL(this, LOGL_DEBUG,
695 "Got SPB(%d) cs(%s) data block with BSN (%d), TFI(%d).\n",
Max136ebcc2019-03-05 14:59:03 +0100696 rdbi->spb, mcs_name(rlc->cs), rdbi->bsn, rlc->tfi);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530697
698 egprs_rlc_ul_reseg_bsn_state assemble_status = EGPRS_RESEG_INVALID;
699
700 /* Section 10.4.8b of 44.060*/
701 if (rdbi->spb == 2)
702 assemble_status = handle_egprs_ul_first_seg(rlc,
703 block, data, block_idx);
704 else if (rdbi->spb == 3)
705 assemble_status = handle_egprs_ul_second_seg(rlc,
706 block, data, block_idx);
707 else {
Max0524e382018-01-19 18:22:25 +0100708 LOGPTBFUL(this, LOGL_ERROR,
709 "spb(%d) Not supported SPB for this EGPRS configuration\n",
710 rdbi->spb);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530711 }
712
713 /*
714 * When the block is successfully constructed out of segmented blocks
715 * upgrade the MCS to the type 2
716 */
717 if (assemble_status == EGPRS_RESEG_DEFAULT) {
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200718 switch (rlc->cs) {
Maxbea2edb2019-03-06 17:04:59 +0100719 case MCS3 :
720 block->cs_last = MCS6;
Max0524e382018-01-19 18:22:25 +0100721 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS6\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530722 break;
Maxbea2edb2019-03-06 17:04:59 +0100723 case MCS2 :
724 block->cs_last = MCS5;
Max0524e382018-01-19 18:22:25 +0100725 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS5\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530726 break;
Maxbea2edb2019-03-06 17:04:59 +0100727 case MCS1 :
Max0524e382018-01-19 18:22:25 +0100728 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS4\n");
Maxbea2edb2019-03-06 17:04:59 +0100729 block->cs_last = MCS4;
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530730 break;
731 default:
Max0524e382018-01-19 18:22:25 +0100732 LOGPTBFUL(this, LOGL_ERROR,
733 "cs(%s) Error in Upgrading to higher MCS\n",
Max136ebcc2019-03-05 14:59:03 +0100734 mcs_name(rlc->cs));
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530735 break;
736 }
737 }
738 return assemble_status;
739}
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530740
Maxfb59a932019-03-13 18:40:19 +0100741void gprs_rlcmac_ul_tbf::update_coding_scheme_counter_ul(enum CodingScheme cs)
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530742{
Maxfb59a932019-03-13 18:40:19 +0100743 switch (cs) {
744 case CS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100745 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS1);
Maxfb59a932019-03-13 18:40:19 +0100746 rate_ctr_inc(&m_ul_gprs_ctrs->ctr[TBF_CTR_GPRS_UL_CS1]);
747 break;
748 case CS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100749 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS2);
Maxfb59a932019-03-13 18:40:19 +0100750 rate_ctr_inc(&m_ul_gprs_ctrs->ctr[TBF_CTR_GPRS_UL_CS2]);
751 break;
752 case CS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100753 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS3);
Maxfb59a932019-03-13 18:40:19 +0100754 rate_ctr_inc(&m_ul_gprs_ctrs->ctr[TBF_CTR_GPRS_UL_CS3]);
755 break;
756 case CS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100757 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS4);
Maxfb59a932019-03-13 18:40:19 +0100758 rate_ctr_inc(&m_ul_gprs_ctrs->ctr[TBF_CTR_GPRS_UL_CS4]);
759 break;
760 case MCS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100761 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS1);
Maxfb59a932019-03-13 18:40:19 +0100762 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS1]);
763 break;
764 case MCS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100765 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS2);
Maxfb59a932019-03-13 18:40:19 +0100766 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS2]);
767 break;
768 case MCS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100769 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS3);
Maxfb59a932019-03-13 18:40:19 +0100770 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS3]);
771 break;
772 case MCS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100773 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS4);
Maxfb59a932019-03-13 18:40:19 +0100774 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS4]);
775 break;
776 case MCS5:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100777 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS5);
Maxfb59a932019-03-13 18:40:19 +0100778 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS5]);
779 break;
780 case MCS6:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100781 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS6);
Maxfb59a932019-03-13 18:40:19 +0100782 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS6]);
783 break;
784 case MCS7:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100785 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS7);
Maxfb59a932019-03-13 18:40:19 +0100786 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS7]);
787 break;
788 case MCS8:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100789 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS8);
Maxfb59a932019-03-13 18:40:19 +0100790 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS8]);
791 break;
792 case MCS9:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100793 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS9);
Maxfb59a932019-03-13 18:40:19 +0100794 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS9]);
795 break;
796 default:
797 LOGPTBFUL(this, LOGL_ERROR, "attempting to update rate counters for unsupported (M)CS %s\n",
798 mcs_name(cs));
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530799 }
800}
sivasankari8adfcd02017-01-16 15:41:21 +0530801
Max9d7357e2017-12-14 15:02:33 +0100802void gprs_rlcmac_ul_tbf::set_window_size()
sivasankari8adfcd02017-01-16 15:41:21 +0530803{
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100804 const struct gprs_rlcmac_bts *b = bts;
Max34513fe2018-12-11 16:47:30 +0100805 uint16_t ws = egprs_window_size(b, ul_slots());
Max0524e382018-01-19 18:22:25 +0100806 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 +0100807 ws, bts->pcu->vty.ws_base, pcu_bitcount(ul_slots()), bts->pcu->vty.ws_pdch);
sivasankari8adfcd02017-01-16 15:41:21 +0530808 m_window.set_ws(ws);
809}
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200810
Pau Espin Pedrolb3f23972020-10-23 21:00:23 +0200811gprs_rlc_window *gprs_rlcmac_ul_tbf::window()
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200812{
813 return &m_window;
814}
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100815
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100816void gprs_rlcmac_ul_tbf::usf_timeout()
817{
818 if (n_inc(N3101)) {
Pau Espin Pedroldc2aaac2021-05-14 12:50:46 +0200819 TBF_SET_STATE(this, TBF_ST_RELEASING);
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100820 T_START(this, T3169, 3169, "MAX N3101 reached", false);
821 return;
822 }
823}
824
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100825struct gprs_rlcmac_ul_tbf *as_ul_tbf(struct gprs_rlcmac_tbf *tbf)
826{
827 if (tbf && tbf->direction == GPRS_RLCMAC_UL_TBF)
828 return static_cast<gprs_rlcmac_ul_tbf *>(tbf);
829 else
830 return NULL;
831}
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100832
833void tbf_usf_timeout(struct gprs_rlcmac_ul_tbf *tbf)
834{
835 tbf->usf_timeout();
836}