blob: 272d8b3c7663cf376b809f006a70e00b7f0c9c28 [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 Pedrol2182e622021-01-14 16:48:38 +0100137 llist_add_tail(tbf_bts_list(tbf), &bts->ul_tbfs);
138 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 }
174 TBF_SET_STATE(tbf, GPRS_RLCMAC_FLOW);
175 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);
215 llist_add(tbf_bts_list((struct gprs_rlcmac_tbf *)ul_tbf), &bts->ul_tbfs);
216 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{
337 int final = (state_is(GPRS_RLCMAC_FINISHED));
338 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 bool need_rlc_data = false;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100424
Max0524e382018-01-19 18:22:25 +0100425 LOGPTBFUL(this, LOGL_DEBUG,
426 "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 +0100427 mcs_name(rlc->cs),
Max0524e382018-01-19 18:22:25 +0100428 rdbi->cv, rdbi->bsn, rdbi->spb,
429 rdbi->pi, rdbi->e, rdbi->ti,
430 rlc->data_offs_bits[block_idx]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100431
432 /* Check whether the block needs to be decoded */
433
434 if (!m_window.is_in_window(rdbi->bsn)) {
Max0524e382018-01-19 18:22:25 +0100435 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d out of window %d..%d (it's normal)\n",
436 rdbi->bsn,
437 m_window.v_q(), m_window.mod_sns(m_window.v_q() + ws - 1));
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 } else {
442 need_rlc_data = true;
443 }
444
445 if (!is_tlli_valid()) {
446 if (!rdbi->ti) {
Max0524e382018-01-19 18:22:25 +0100447 LOGPTBFUL(this, LOGL_NOTICE, "Missing TLLI within UL DATA.\n");
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100448 continue;
449 }
450 need_rlc_data = true;
451 }
452
453 if (!need_rlc_data)
454 continue;
455
456 /* Store block and meta info to BSN buffer */
457
Max0524e382018-01-19 18:22:25 +0100458 LOGPTBFUL(this, LOGL_DEBUG, "BSN %d storing in window (%d..%d)\n",
459 rdbi->bsn, m_window.v_q(),
460 m_window.mod_sns(m_window.v_q() + ws - 1));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100461 block = m_rlc.block(rdbi->bsn);
Aravind Sirsikar550a5412016-06-14 18:59:18 +0530462 OSMO_ASSERT(rdbi->data_len <= sizeof(block->block));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100463 rlc_data = &(block->block[0]);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100464
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530465 if (rdbi->spb) {
466 egprs_rlc_ul_reseg_bsn_state assemble_status;
467
468 assemble_status = handle_egprs_ul_spb(rlc,
469 block, data, block_idx);
470
471 if (assemble_status != EGPRS_RESEG_DEFAULT)
472 return 0;
473 } else {
474 block->block_info = *rdbi;
475 block->cs_last = rlc->cs;
476 block->len =
477 Decoding::rlc_copy_to_aligned_buffer(rlc,
478 block_idx, data, rlc_data);
479 }
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100480
Max0524e382018-01-19 18:22:25 +0100481 LOGPTBFUL(this, LOGL_DEBUG,
482 "data_length=%d, data=%s\n",
483 block->len, osmo_hexdump(rlc_data, block->len));
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100484 /* Get/Handle TLLI */
485 if (rdbi->ti) {
486 num_chunks = Decoding::rlc_data_from_ul_data(
487 rdbi, rlc->cs, rlc_data, NULL, 0, &new_tlli);
488
489 if (num_chunks < 0) {
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100490 bts_do_rate_ctr_inc(bts, CTR_DECODE_ERRORS);
Max0524e382018-01-19 18:22:25 +0100491 LOGPTBFUL(this, LOGL_NOTICE,
492 "Failed to decode TLLI of %s UL DATA TFI=%d.\n",
Max136ebcc2019-03-05 14:59:03 +0100493 mcs_name(rlc->cs), rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100494 m_window.invalidate_bsn(rdbi->bsn);
495 continue;
496 }
497 if (!this->is_tlli_valid()) {
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700498 if (new_tlli == GSM_RESERVED_TMSI) {
Max0524e382018-01-19 18:22:25 +0100499 LOGPTBFUL(this, LOGL_NOTICE,
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700500 "TLLI is 0x%08x within UL DATA?!?\n",
501 new_tlli);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100502 m_window.invalidate_bsn(rdbi->bsn);
503 continue;
504 }
Max0524e382018-01-19 18:22:25 +0100505 LOGPTBFUL(this, LOGL_INFO,
506 "Decoded premier TLLI=0x%08x of UL DATA TFI=%d.\n",
Vadim Yanitskiy3f27fb52020-04-20 11:26:12 +0700507 new_tlli, rlc->tfi);
Pau Espin Pedrold21e9612020-06-26 14:20:37 +0200508 update_ms(new_tlli, GPRS_RLCMAC_UL_TBF);
Vadim Yanitskiycb988942020-11-08 13:27:35 +0700509 } else if (new_tlli != GSM_RESERVED_TMSI && new_tlli != tlli()) {
Max0524e382018-01-19 18:22:25 +0100510 LOGPTBFUL(this, LOGL_NOTICE,
Pau Espin Pedrol305763d2020-11-06 20:03:24 +0100511 "Decoded TLLI=%08x mismatch on UL DATA TFI=%d. (Ignoring due to contention resolution)\n",
512 new_tlli, rlc->tfi);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100513 m_window.invalidate_bsn(rdbi->bsn);
514 continue;
515 }
516 }
517
518 m_window.receive_bsn(rdbi->bsn);
519 }
520
521 /* Raise V(Q) if possible, and retrieve LLC frames from blocks.
522 * This is looped until there is a gap (non received block) or
523 * the window is empty.*/
524 const uint16_t v_q_beg = m_window.v_q();
525 const uint16_t count = m_window.raise_v_q();
526
527 /* Retrieve LLC frames from blocks that are ready */
528 for (uint16_t i = 0; i < count; ++i) {
Jacob Erlbeck93c55d02015-12-23 16:29:07 +0100529 uint16_t index = m_window.mod_sns(v_q_beg + i);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100530 assemble_forward_llc(m_rlc.block(index));
531 }
532
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200533 /* Last frame in buffer: */
534 block = m_rlc.block(m_window.mod_sns(m_window.v_r() - 1));
535 rdbi = &block->block_info;
536
537 /* Check if we already received all data TBF had to send: */
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100538 if (this->state_is(GPRS_RLCMAC_FLOW) /* still in flow state */
539 && this->m_window.v_q() == this->m_window.v_r()) { /* if complete */
Max0524e382018-01-19 18:22:25 +0100540 LOGPTBFUL(this, LOGL_DEBUG,
541 "No gaps in received block, last block: BSN=%d CV=%d\n",
542 rdbi->bsn, rdbi->cv);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100543 if (rdbi->cv == 0) {
Max0524e382018-01-19 18:22:25 +0100544 LOGPTBFUL(this, LOGL_DEBUG, "Finished with UL TBF\n");
Max2399b1d2018-01-12 15:48:12 +0100545 TBF_SET_STATE(this, GPRS_RLCMAC_FINISHED);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100546 /* Reset N3103 counter. */
Max847ed9f2018-02-20 18:16:11 +0100547 this->n_reset(N3103);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100548 }
549 }
550
551 /* If TLLI is included or if we received half of the window, we send
552 * an ack/nack */
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200553 maybe_schedule_uplink_acknack(rlc, rdbi->cv == 0);
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100554
555 return 0;
556}
557
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100558void gprs_rlcmac_ul_tbf::maybe_schedule_uplink_acknack(
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200559 const gprs_rlc_data_info *rlc, bool countdown_finished)
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100560{
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200561 bool require_ack = false;
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100562 bool have_ti = rlc->block_info[0].ti ||
563 (rlc->num_data_blocks > 1 && rlc->block_info[1].ti);
564
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200565 if (rlc->si) {
566 require_ack = true;
567 LOGPTBFUL(this, LOGL_NOTICE,
568 "Scheduling Ack/Nack, because MS is stalled.\n");
569 }
570 if (have_ti) {
571 require_ack = true;
572 LOGPTBFUL(this, LOGL_DEBUG,
573 "Scheduling Ack/Nack, because TLLI is included.\n");
574 }
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200575 if (countdown_finished) {
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200576 require_ack = true;
Pau Espin Pedrolc33a0242020-05-15 16:57:48 +0200577 if (state_is(GPRS_RLCMAC_FLOW))
578 LOGPTBFUL(this, LOGL_DEBUG,
579 "Scheduling Ack/Nack, because some data is missing and last block has CV==0.\n");
580 else if (state_is(GPRS_RLCMAC_FINISHED))
581 LOGPTBFUL(this, LOGL_DEBUG,
582 "Scheduling final Ack/Nack, because all data was received and last block has CV==0.\n");
Pau Espin Pedrol09afd6f2020-05-15 16:40:18 +0200583 }
584 if ((m_rx_counter % SEND_ACK_AFTER_FRAMES) == 0) {
585 require_ack = true;
586 LOGPTBFUL(this, LOGL_DEBUG,
587 "Scheduling Ack/Nack, because %d frames received.\n",
588 SEND_ACK_AFTER_FRAMES);
589 }
590
591 if (!require_ack)
592 return;
593
594 if (ul_ack_state_is(GPRS_RLCMAC_UL_ACK_NONE)) {
595 /* trigger sending at next RTS */
596 TBF_SET_ACK_STATE(this, GPRS_RLCMAC_UL_ACK_SEND_ACK);
597 } else {
598 /* already triggered */
599 LOGPTBFUL(this, LOGL_DEBUG,
600 "Sending Ack/Nack already scheduled, no need to re-schedule\n");
Jacob Erlbeckb3100e12015-12-14 13:36:13 +0100601 }
602}
603
Daniel Willmannca102af2014-08-08 12:14:12 +0200604/* Send Uplink unit-data to SGSN. */
605int gprs_rlcmac_ul_tbf::snd_ul_ud()
606{
607 uint8_t qos_profile[3];
608 struct msgb *llc_pdu;
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100609 unsigned msg_len = NS_HDR_LEN + BSSGP_HDR_LEN + llc_frame_length(&m_llc);
Pau Espin Pedroldb5e3392021-01-21 18:02:40 +0100610 struct bssgp_bvc_ctx *bctx = bts->pcu->bssgp.bctx;
Daniel Willmannca102af2014-08-08 12:14:12 +0200611
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100612 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 +0200613 if (!bctx) {
614 LOGP(DBSSGP, LOGL_ERROR, "No bctx\n");
615 m_llc.reset_frame_space();
616 return -EIO;
617 }
Pau Espin Pedrol488aa292019-09-25 17:48:35 +0200618
Daniel Willmannca102af2014-08-08 12:14:12 +0200619 llc_pdu = msgb_alloc_headroom(msg_len, msg_len,"llc_pdu");
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100620 uint8_t *buf = msgb_push(llc_pdu, TL16V_GROSS_LEN(sizeof(uint8_t)*llc_frame_length(&m_llc)));
621 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 +0200622 qos_profile[0] = QOS_PROFILE >> 16;
623 qos_profile[1] = QOS_PROFILE >> 8;
624 qos_profile[2] = QOS_PROFILE;
625 bssgp_tx_ul_ud(bctx, tlli(), qos_profile, llc_pdu);
626
627 m_llc.reset_frame_space();
628 return 0;
629}
630
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530631egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_second_seg(
632 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
633 uint8_t *data, const uint8_t block_idx)
634{
635 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
636 union split_block_status *spb_status = &block->spb_status;
637 uint8_t *rlc_data = &block->block[0];
638
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100639 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_SECOND_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530640
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530641 if (spb_status->block_status_ul &
642 EGPRS_RESEG_FIRST_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100643 LOGPTBFUL(this, LOGL_DEBUG,
644 "Second seg is received first seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530645 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
646
647 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
648 block_idx, data, rlc_data + block->len);
649 block->block_info.data_len += rdbi->data_len;
650 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100651 LOGPTBFUL(this, LOGL_DEBUG,
652 "Second seg is received first seg is not received set the status to second seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530653
654 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
655 block_idx, data,
656 rlc_data + rlc->block_info[block_idx].data_len);
657
658 spb_status->block_status_ul = EGPRS_RESEG_SECOND_SEG_RXD;
659 block->block_info = *rdbi;
660 }
661 return spb_status->block_status_ul;
662}
663
664egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_first_seg(
665 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
666 uint8_t *data, const uint8_t block_idx)
667{
668 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
669 uint8_t *rlc_data = &block->block[0];
670 union split_block_status *spb_status = &block->spb_status;
671
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100672 bts_do_rate_ctr_inc(bts, CTR_SPB_UL_FIRST_SEGMENT);
sivasankarida7250a2016-12-16 12:57:18 +0530673
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530674 if (spb_status->block_status_ul & EGPRS_RESEG_SECOND_SEG_RXD) {
Max0524e382018-01-19 18:22:25 +0100675 LOGPTBFUL(this, LOGL_DEBUG,
676 "First seg is received second seg is already present set the status to complete\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530677
678 block->len += Decoding::rlc_copy_to_aligned_buffer(rlc,
679 block_idx, data, rlc_data);
680
681 block->block_info.data_len = block->len;
682 spb_status->block_status_ul = EGPRS_RESEG_DEFAULT;
683 } else if (spb_status->block_status_ul == EGPRS_RESEG_DEFAULT) {
Max0524e382018-01-19 18:22:25 +0100684 LOGPTBFUL(this, LOGL_DEBUG,
685 "First seg is received second seg is not received set the status to first seg received\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530686
687 spb_status->block_status_ul = EGPRS_RESEG_FIRST_SEG_RXD;
688 block->len = Decoding::rlc_copy_to_aligned_buffer(rlc,
689 block_idx, data, rlc_data);
690 block->block_info = *rdbi;
691 }
692 return spb_status->block_status_ul;
693}
694
695egprs_rlc_ul_reseg_bsn_state gprs_rlcmac_ul_tbf::handle_egprs_ul_spb(
696 const struct gprs_rlc_data_info *rlc, struct gprs_rlc_data *block,
697 uint8_t *data, const uint8_t block_idx)
698{
699 const gprs_rlc_data_block_info *rdbi = &rlc->block_info[block_idx];
700
Max0524e382018-01-19 18:22:25 +0100701 LOGPTBFUL(this, LOGL_DEBUG,
702 "Got SPB(%d) cs(%s) data block with BSN (%d), TFI(%d).\n",
Max136ebcc2019-03-05 14:59:03 +0100703 rdbi->spb, mcs_name(rlc->cs), rdbi->bsn, rlc->tfi);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530704
705 egprs_rlc_ul_reseg_bsn_state assemble_status = EGPRS_RESEG_INVALID;
706
707 /* Section 10.4.8b of 44.060*/
708 if (rdbi->spb == 2)
709 assemble_status = handle_egprs_ul_first_seg(rlc,
710 block, data, block_idx);
711 else if (rdbi->spb == 3)
712 assemble_status = handle_egprs_ul_second_seg(rlc,
713 block, data, block_idx);
714 else {
Max0524e382018-01-19 18:22:25 +0100715 LOGPTBFUL(this, LOGL_ERROR,
716 "spb(%d) Not supported SPB for this EGPRS configuration\n",
717 rdbi->spb);
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530718 }
719
720 /*
721 * When the block is successfully constructed out of segmented blocks
722 * upgrade the MCS to the type 2
723 */
724 if (assemble_status == EGPRS_RESEG_DEFAULT) {
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +0200725 switch (rlc->cs) {
Maxbea2edb2019-03-06 17:04:59 +0100726 case MCS3 :
727 block->cs_last = MCS6;
Max0524e382018-01-19 18:22:25 +0100728 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS6\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530729 break;
Maxbea2edb2019-03-06 17:04:59 +0100730 case MCS2 :
731 block->cs_last = MCS5;
Max0524e382018-01-19 18:22:25 +0100732 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS5\n");
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530733 break;
Maxbea2edb2019-03-06 17:04:59 +0100734 case MCS1 :
Max0524e382018-01-19 18:22:25 +0100735 LOGPTBFUL(this, LOGL_DEBUG, "Upgrading to MCS4\n");
Maxbea2edb2019-03-06 17:04:59 +0100736 block->cs_last = MCS4;
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530737 break;
738 default:
Max0524e382018-01-19 18:22:25 +0100739 LOGPTBFUL(this, LOGL_ERROR,
740 "cs(%s) Error in Upgrading to higher MCS\n",
Max136ebcc2019-03-05 14:59:03 +0100741 mcs_name(rlc->cs));
Aravind Sirsikar505a86d2016-07-26 18:26:21 +0530742 break;
743 }
744 }
745 return assemble_status;
746}
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530747
Maxfb59a932019-03-13 18:40:19 +0100748void gprs_rlcmac_ul_tbf::update_coding_scheme_counter_ul(enum CodingScheme cs)
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530749{
Maxfb59a932019-03-13 18:40:19 +0100750 switch (cs) {
751 case CS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100752 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS1);
Maxfb59a932019-03-13 18:40:19 +0100753 rate_ctr_inc(&m_ul_gprs_ctrs->ctr[TBF_CTR_GPRS_UL_CS1]);
754 break;
755 case CS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100756 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS2);
Maxfb59a932019-03-13 18:40:19 +0100757 rate_ctr_inc(&m_ul_gprs_ctrs->ctr[TBF_CTR_GPRS_UL_CS2]);
758 break;
759 case CS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100760 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS3);
Maxfb59a932019-03-13 18:40:19 +0100761 rate_ctr_inc(&m_ul_gprs_ctrs->ctr[TBF_CTR_GPRS_UL_CS3]);
762 break;
763 case CS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100764 bts_do_rate_ctr_inc(bts, CTR_GPRS_UL_CS4);
Maxfb59a932019-03-13 18:40:19 +0100765 rate_ctr_inc(&m_ul_gprs_ctrs->ctr[TBF_CTR_GPRS_UL_CS4]);
766 break;
767 case MCS1:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100768 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS1);
Maxfb59a932019-03-13 18:40:19 +0100769 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS1]);
770 break;
771 case MCS2:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100772 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS2);
Maxfb59a932019-03-13 18:40:19 +0100773 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS2]);
774 break;
775 case MCS3:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100776 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS3);
Maxfb59a932019-03-13 18:40:19 +0100777 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS3]);
778 break;
779 case MCS4:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100780 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS4);
Maxfb59a932019-03-13 18:40:19 +0100781 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS4]);
782 break;
783 case MCS5:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100784 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS5);
Maxfb59a932019-03-13 18:40:19 +0100785 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS5]);
786 break;
787 case MCS6:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100788 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS6);
Maxfb59a932019-03-13 18:40:19 +0100789 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS6]);
790 break;
791 case MCS7:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100792 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS7);
Maxfb59a932019-03-13 18:40:19 +0100793 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS7]);
794 break;
795 case MCS8:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100796 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS8);
Maxfb59a932019-03-13 18:40:19 +0100797 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS8]);
798 break;
799 case MCS9:
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100800 bts_do_rate_ctr_inc(bts, CTR_EGPRS_UL_MCS9);
Maxfb59a932019-03-13 18:40:19 +0100801 rate_ctr_inc(&m_ul_egprs_ctrs->ctr[TBF_CTR_EGPRS_UL_MCS9]);
802 break;
803 default:
804 LOGPTBFUL(this, LOGL_ERROR, "attempting to update rate counters for unsupported (M)CS %s\n",
805 mcs_name(cs));
Mrinal Mishraf86307e2016-11-10 18:16:30 +0530806 }
807}
sivasankari8adfcd02017-01-16 15:41:21 +0530808
Max9d7357e2017-12-14 15:02:33 +0100809void gprs_rlcmac_ul_tbf::set_window_size()
sivasankari8adfcd02017-01-16 15:41:21 +0530810{
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100811 const struct gprs_rlcmac_bts *b = bts;
Max34513fe2018-12-11 16:47:30 +0100812 uint16_t ws = egprs_window_size(b, ul_slots());
Max0524e382018-01-19 18:22:25 +0100813 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 +0100814 ws, bts->pcu->vty.ws_base, pcu_bitcount(ul_slots()), bts->pcu->vty.ws_pdch);
sivasankari8adfcd02017-01-16 15:41:21 +0530815 m_window.set_ws(ws);
816}
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200817
Pau Espin Pedrolb3f23972020-10-23 21:00:23 +0200818gprs_rlc_window *gprs_rlcmac_ul_tbf::window()
Pau Espin Pedrol9767e442020-10-23 21:11:41 +0200819{
820 return &m_window;
821}
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100822
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100823void gprs_rlcmac_ul_tbf::usf_timeout()
824{
825 if (n_inc(N3101)) {
826 TBF_SET_STATE(this, GPRS_RLCMAC_RELEASING);
827 T_START(this, T3169, 3169, "MAX N3101 reached", false);
828 return;
829 }
830}
831
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100832struct gprs_rlcmac_ul_tbf *as_ul_tbf(struct gprs_rlcmac_tbf *tbf)
833{
834 if (tbf && tbf->direction == GPRS_RLCMAC_UL_TBF)
835 return static_cast<gprs_rlcmac_ul_tbf *>(tbf);
836 else
837 return NULL;
838}
Pau Espin Pedrol0b998b12021-03-24 14:45:43 +0100839
840void tbf_usf_timeout(struct gprs_rlcmac_ul_tbf *tbf)
841{
842 tbf->usf_timeout();
843}