blob: 4340199e6c1346c8590c0e11b0986dc97932a938 [file] [log] [blame]
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +02001/* bts.h
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 * Copyright (C) 2013 by Holger Hans Peter Freyther
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#pragma once
22
23
24#ifdef __cplusplus
25extern "C" {
26#include <osmocom/core/linuxlist.h>
Holger Hans Peter Freytherf5372982013-10-27 09:02:31 +010027#include <osmocom/core/rate_ctr.h>
Jacob Erlbeckf5898a02015-11-27 19:05:13 +010028#include <osmocom/core/stat_item.h>
Pau Espin Pedrol28f160e2019-09-05 14:48:35 +020029#include <osmocom/core/tdef.h>
bhargava959d1de2016-08-17 15:17:21 +053030#include <osmocom/gsm/l1sap.h>
Max84bf0fa2017-09-01 11:02:40 +020031#include <osmocom/gsm/protocol/gsm_04_08.h>
Pau Espin Pedrolb2653fe2020-03-26 15:14:01 +010032#include "mslot_class.h"
33#include "gsm_rlcmac.h"
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020034}
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020035
36#include "poll_controller.h"
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +020037#include "sba.h"
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020038#include "tbf.h"
Jacob Erlbecke43460b2015-05-13 13:33:12 +020039#include "gprs_ms_storage.h"
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +020040#include "coding_scheme.h"
Max1187a772018-01-26 13:31:42 +010041#include <cxx_linuxlist.h>
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020042#endif
43
Daniel Willmannfb3fd092019-03-06 17:09:43 +010044#include <pdch.h>
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020045#include <stdint.h>
46
Jacob Erlbeckd4ad7312015-07-17 16:39:09 +020047#define LLC_CODEL_DISABLE 0
48#define LLC_CODEL_USE_DEFAULT (-1)
Max8119ecd2019-03-06 19:03:01 +010049
50#define MAX_EDGE_MCS 9
51#define MAX_GPRS_CS 4
Aravind Sirsikar99ab0a82016-06-15 17:46:41 +053052
Harald Welte717cdf52017-07-21 21:56:23 +020053/* see bts->gsmtap_categ_mask */
54enum pcu_gsmtap_category {
55 PCU_GSMTAP_C_DL_UNKNOWN = 0, /* unknown or undecodable downlink blocks */
56 PCU_GSMTAP_C_DL_DUMMY = 1, /* downlink dummy blocks */
57 PCU_GSMTAP_C_DL_CTRL = 2, /* downlink control blocks */
58 PCU_GSMTAP_C_DL_DATA_GPRS = 3, /* downlink GPRS data blocks */
59 PCU_GSMTAP_C_DL_DATA_EGPRS = 4, /* downlink EGPRS data blocks */
Harald Weltebc219d52017-07-29 13:42:27 +020060 PCU_GSMTAP_C_DL_PTCCH = 5, /* downlink PTCCH blocks */
Pau Espin Pedrol58543702019-09-30 19:07:16 +020061 PCU_GSMTAP_C_DL_AGCH = 6, /* downlink AGCH blocks */
62 PCU_GSMTAP_C_DL_PCH = 7, /* downlink PCH blocks */
Harald Welte717cdf52017-07-21 21:56:23 +020063
64 PCU_GSMTAP_C_UL_UNKNOWN = 15, /* unknown or undecodable uplink blocks */
65 PCU_GSMTAP_C_UL_DUMMY = 16, /* uplink dummy blocks */
66 PCU_GSMTAP_C_UL_CTRL = 17, /* uplink control blocks */
67 PCU_GSMTAP_C_UL_DATA_GPRS = 18, /* uplink GPRS data blocks */
68 PCU_GSMTAP_C_UL_DATA_EGPRS = 19, /* uplink EGPRS data blocks */
Pau Espin Pedrol1ec211f2019-09-30 18:33:14 +020069 PCU_GSMTAP_C_UL_RACH = 20, /* uplink RACH bursts */
Vadim Yanitskiy07b64872020-06-11 00:26:15 +070070 PCU_GSMTAP_C_UL_PTCCH = 21, /* uplink PTCCH bursts */
Harald Welte717cdf52017-07-21 21:56:23 +020071};
Jacob Erlbeckd4ad7312015-07-17 16:39:09 +020072
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +020073struct BTS;
Jacob Erlbecke2e004e2015-06-18 17:16:26 +020074struct GprsMs;
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020075
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020076struct gprs_rlcmac_trx {
77 void *fl1h;
78 uint16_t arfcn;
79 struct gprs_rlcmac_pdch pdch[8];
Holger Hans Peter Freyther4ed1dae2013-10-20 10:14:03 +020080
81 /* back pointers */
82 struct BTS *bts;
83 uint8_t trx_no;
Jacob Erlbeck23f93a12015-06-30 08:52:54 +020084
85#ifdef __cplusplus
86 void reserve_slots(enum gprs_rlcmac_tbf_direction dir, uint8_t slots);
87 void unreserve_slots(enum gprs_rlcmac_tbf_direction dir, uint8_t slots);
88#endif
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020089};
90
Maxd71e8b32016-09-19 16:17:06 +020091#ifdef __cplusplus
92extern "C" {
93#endif
Minh-Quang Nguyen1bcfa9a2017-11-01 14:41:37 -040094void bts_update_tbf_ta(const char *p, uint32_t fn, uint8_t trx_no, uint8_t ts, int8_t ta, bool is_rach);
Maxd71e8b32016-09-19 16:17:06 +020095#ifdef __cplusplus
96}
97#endif
98
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +020099/**
100 * This is the data from C. As soon as our minimal compiler is gcc 4.7
101 * we can start to compile pcu_vty.c with c++ and remove the split.
102 */
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +0200103struct gprs_rlcmac_bts {
Stefan Sperling5b22fb72018-02-14 19:46:33 +0100104 bool active;
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +0200105 uint8_t bsic;
106 uint8_t fc_interval;
Jacob Erlbeck0288cdb2015-05-06 10:47:30 +0200107 uint16_t fc_bucket_time;
Jacob Erlbeck87d73412015-04-21 12:56:48 +0200108 uint32_t fc_bvc_bucket_size;
109 uint32_t fc_bvc_leak_rate;
110 uint32_t fc_ms_bucket_size;
111 uint32_t fc_ms_leak_rate;
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +0200112 uint8_t cs1;
113 uint8_t cs2;
114 uint8_t cs3;
115 uint8_t cs4;
116 uint8_t initial_cs_dl, initial_cs_ul;
Jacob Erlbeck96ccea82016-01-07 15:00:43 +0100117 uint8_t initial_mcs_dl, initial_mcs_ul;
Jacob Erlbeckb33e6752015-06-04 19:04:30 +0200118 uint8_t max_cs_dl, max_cs_ul;
Jacob Erlbeck0d058052016-01-07 11:48:28 +0100119 uint8_t max_mcs_dl, max_mcs_ul;
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +0200120 uint8_t force_cs; /* 0=use from BTS 1=use from VTY */
121 uint16_t force_llc_lifetime; /* overrides lifetime from SGSN */
Jacob Erlbeck0c1c8772015-03-20 12:02:42 +0100122 uint32_t llc_discard_csec;
Jacob Erlbeckd0261b72015-04-02 13:58:09 +0200123 uint32_t llc_idle_ack_csec;
Jacob Erlbeckd4ad7312015-07-17 16:39:09 +0200124 uint32_t llc_codel_interval_msec; /* 0=disabled, -1=use default interval */
Pau Espin Pedrol28f160e2019-09-05 14:48:35 +0200125 /* Timer defintions */
126 struct osmo_tdef *T_defs_bts; /* timers controlled by BTS, received through PCUIF */
127 struct osmo_tdef *T_defs_pcu; /* timers controlled by PCU */
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +0200128 uint8_t n3101;
129 uint8_t n3103;
130 uint8_t n3105;
Max2efdf692016-02-22 11:39:30 +0100131 struct gsmtap_inst *gsmtap;
Harald Welte717cdf52017-07-21 21:56:23 +0200132 uint32_t gsmtap_categ_mask;
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +0200133 struct gprs_rlcmac_trx trx[8];
Maxe9fe0e32017-09-28 15:56:05 +0200134 int (*alloc_algorithm)(struct gprs_rlcmac_bts *bts, struct GprsMs *ms, struct gprs_rlcmac_tbf *tbf,
135 bool single, int8_t use_tbf);
136
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +0200137 uint8_t force_two_phase;
138 uint8_t alpha, gamma;
Jacob Erlbeck953c7892015-09-28 18:12:57 +0200139 uint8_t egprs_enabled;
Oliver Smith45fdc442019-09-05 15:12:20 +0200140 bool dl_tbf_preemptive_retransmission;
Max84bf0fa2017-09-01 11:02:40 +0200141 uint8_t si13[GSM_MACBLOCK_LEN];
142 bool si13_is_set;
Aravind Sirsikare6cadb42016-08-16 16:32:59 +0530143 /* 0 to support resegmentation in DL, 1 for no reseg */
144 uint8_t dl_arq_type;
145
Pau Espin Pedrol1e6eb302019-11-28 17:00:44 +0100146 uint8_t cs_adj_enabled; /* whether cs_adj_{upper,lower}_limit are used to adjust DL CS */
147 uint8_t cs_adj_upper_limit; /* downgrade DL CS if error rate above its value */
148 uint8_t cs_adj_lower_limit; /* upgrade DL CS if error rate below its value */
149 /* downgrade DL CS when less than specified octets are left in tx queue. Optimization, see paper:
150 "Theoretical Analysis of GPRS Throughput and Delay" */
151 uint16_t cs_downgrade_threshold;
152 /* Link quality range for each UL (M)CS. Below or above, next/prev (M)CS is selected. */
Aravind Sirsikar99ab0a82016-06-15 17:46:41 +0530153 struct {int16_t low; int16_t high; } cs_lqual_ranges[MAX_GPRS_CS];
Max8119ecd2019-03-06 19:03:01 +0100154 struct {int16_t low; int16_t high; } mcs_lqual_ranges[MAX_EDGE_MCS];
Jacob Erlbeck36df7742016-01-19 15:53:30 +0100155 uint16_t ws_base;
156 uint16_t ws_pdch; /* increase WS by this value per PDCH */
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200157
Jacob Erlbeck77da3552015-07-16 18:33:46 +0200158 /* State for dynamic algorithm selection */
159 int multislot_disabled;
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +0200160
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200161 /**
162 * Point back to the C++ object. This is used during the transition
163 * period.
164 */
165 struct BTS *bts;
Pau Espin Pedrolc4178e52017-08-08 15:03:50 +0200166
167 /* Path to be used for the pcu-bts socket */
168 char *pcu_sock_path;
Harald Welte57d35152018-07-05 03:11:17 +0200169
170 /* Are we talking Gb with IP-SNS (true) or classic Gb? */
171 bool gb_dialect_sns;
Oliver Smithcfb63212019-09-05 17:13:33 +0200172
173 /* Packet Application Information (3GPP TS 44.060 11.2.47, usually ETWS primary message). We don't need to store
174 * more than one message, because they get sent so rarely. */
175 struct msgb *app_info;
176 uint32_t app_info_pending; /* Count of MS with active TBF, to which we did not send app_info yet */
Alexander Couzens290d9032020-09-16 21:52:02 +0200177
178 struct gprs_ns2_inst *nsi;
179 /* main nsei */
180 struct gprs_ns2_nse *nse;
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +0200181};
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200182
Pau Espin Pedrol2338e532020-05-12 20:54:35 +0200183enum {
184 CTR_TBF_DL_ALLOCATED,
185 CTR_TBF_DL_FREED,
186 CTR_TBF_DL_ABORTED,
187 CTR_TBF_UL_ALLOCATED,
188 CTR_TBF_UL_FREED,
189 CTR_TBF_UL_ABORTED,
190 CTR_TBF_REUSED,
191 CTR_TBF_ALLOC_ALGO_A,
192 CTR_TBF_ALLOC_ALGO_B,
193 CTR_TBF_FAILED_EGPRS_ONLY,
194 CTR_RLC_SENT,
195 CTR_RLC_RESENT,
196 CTR_RLC_RESTARTED,
197 CTR_RLC_STALLED,
198 CTR_RLC_NACKED,
199 CTR_RLC_FINAL_BLOCK_RESENT,
200 CTR_RLC_ASS_TIMEDOUT,
201 CTR_RLC_ASS_FAILED,
202 CTR_RLC_ACK_TIMEDOUT,
203 CTR_RLC_ACK_FAILED,
204 CTR_RLC_REL_TIMEDOUT,
205 CTR_RLC_LATE_BLOCK,
206 CTR_RLC_SENT_DUMMY,
207 CTR_RLC_SENT_CONTROL,
208 CTR_RLC_DL_BYTES,
209 CTR_RLC_DL_PAYLOAD_BYTES,
210 CTR_RLC_UL_BYTES,
211 CTR_RLC_UL_PAYLOAD_BYTES,
212 CTR_DECODE_ERRORS,
213 CTR_SBA_ALLOCATED,
214 CTR_SBA_FREED,
215 CTR_SBA_TIMEDOUT,
216 CTR_LLC_FRAME_TIMEDOUT,
217 CTR_LLC_FRAME_DROPPED,
218 CTR_LLC_FRAME_SCHED,
219 CTR_LLC_DL_BYTES,
220 CTR_LLC_UL_BYTES,
221 CTR_RACH_REQUESTS,
222 CTR_11BIT_RACH_REQUESTS,
223 CTR_SPB_UL_FIRST_SEGMENT,
224 CTR_SPB_UL_SECOND_SEGMENT,
225 CTR_SPB_DL_FIRST_SEGMENT,
226 CTR_SPB_DL_SECOND_SEGMENT,
227 CTR_IMMEDIATE_ASSIGN_UL_TBF,
228 CTR_IMMEDIATE_ASSIGN_REJ,
229 CTR_IMMEDIATE_ASSIGN_DL_TBF,
230 CTR_CHANNEL_REQUEST_DESCRIPTION,
231 CTR_PKT_UL_ASSIGNMENT,
232 CTR_PKT_ACCESS_REJ,
233 CTR_PKT_DL_ASSIGNMENT,
234 CTR_RLC_RECV_CONTROL,
235 CTR_PUA_POLL_TIMEDOUT,
236 CTR_PUA_POLL_FAILED,
237 CTR_PDA_POLL_TIMEDOUT,
238 CTR_PDA_POLL_FAILED,
239 CTR_PUAN_POLL_TIMEDOUT,
240 CTR_PUAN_POLL_FAILED,
241 CTR_PDAN_POLL_TIMEDOUT,
242 CTR_PDAN_POLL_FAILED,
243 CTR_GPRS_DL_CS1,
244 CTR_GPRS_DL_CS2,
245 CTR_GPRS_DL_CS3,
246 CTR_GPRS_DL_CS4,
247 CTR_EGPRS_DL_MCS1,
248 CTR_EGPRS_DL_MCS2,
249 CTR_EGPRS_DL_MCS3,
250 CTR_EGPRS_DL_MCS4,
251 CTR_EGPRS_DL_MCS5,
252 CTR_EGPRS_DL_MCS6,
253 CTR_EGPRS_DL_MCS7,
254 CTR_EGPRS_DL_MCS8,
255 CTR_EGPRS_DL_MCS9,
256 CTR_GPRS_UL_CS1,
257 CTR_GPRS_UL_CS2,
258 CTR_GPRS_UL_CS3,
259 CTR_GPRS_UL_CS4,
260 CTR_EGPRS_UL_MCS1,
261 CTR_EGPRS_UL_MCS2,
262 CTR_EGPRS_UL_MCS3,
263 CTR_EGPRS_UL_MCS4,
264 CTR_EGPRS_UL_MCS5,
265 CTR_EGPRS_UL_MCS6,
266 CTR_EGPRS_UL_MCS7,
267 CTR_EGPRS_UL_MCS8,
268 CTR_EGPRS_UL_MCS9,
269};
270
Pau Espin Pedrol97e88fd2020-05-12 22:45:04 +0200271enum {
272 STAT_MS_PRESENT,
273};
274
Vadim Yanitskiya0a0b7f2020-05-21 19:55:46 +0700275/* RACH.ind parameters (to be parsed) */
276struct rach_ind_params {
277 enum ph_burst_type burst_type;
278 bool is_11bit;
279 uint16_t ra;
280 uint8_t trx_nr;
281 uint8_t ts_nr;
282 uint32_t rfn;
283 int16_t qta;
284};
285
286/* [EGPRS Packet] Channel Request parameters (parsed) */
287struct chan_req_params {
288 unsigned int egprs_mslot_class;
289 unsigned int priority;
290 bool single_block;
291};
292
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200293#ifdef __cplusplus
294/**
295 * I represent a GSM BTS. I have one or more TRX, I know the current
296 * GSM time and I have controllers that help with allocating resources
297 * on my TRXs.
298 */
299struct BTS {
300public:
301 BTS();
Holger Hans Peter Freytherf5372982013-10-27 09:02:31 +0100302 ~BTS();
Maxd5ffeb52019-03-18 15:48:38 +0100303 void cleanup();
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200304
305 static BTS* main_bts();
306
307 struct gprs_rlcmac_bts *bts_data();
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +0200308 SBAController *sba();
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200309
Holger Hans Peter Freyther9b30c7f2013-10-17 19:59:56 +0200310 /** TODO: change the number to unsigned */
311 void set_current_frame_number(int frame_number);
Jacob Erlbeckaf75ce82015-08-26 13:22:28 +0200312 void set_current_block_frame_number(int frame_number, unsigned max_delay);
Holger Hans Peter Freyther9b30c7f2013-10-17 19:59:56 +0200313 int current_frame_number() const;
314
Holger Hans Peter Freytherf0984892013-10-19 18:28:59 +0200315 /** add paging to paging queue(s) */
Neels Hofmeyr59fc0bd2020-08-21 16:21:23 +0200316 int add_paging(uint8_t chan_needed, const struct osmo_mobile_identity *mi);
Holger Hans Peter Freytherf0984892013-10-19 18:28:59 +0200317
Daniel Willmannfe6e2e42014-07-10 17:44:06 +0200318 gprs_rlcmac_dl_tbf *dl_tbf_by_poll_fn(uint32_t fn, uint8_t trx, uint8_t ts);
319 gprs_rlcmac_ul_tbf *ul_tbf_by_poll_fn(uint32_t fn, uint8_t trx, uint8_t ts);
Jacob Erlbeck3a10dbd2015-07-10 19:52:37 +0200320 gprs_rlcmac_dl_tbf *dl_tbf_by_tfi(uint8_t tfi, uint8_t trx, uint8_t ts);
321 gprs_rlcmac_ul_tbf *ul_tbf_by_tfi(uint8_t tfi, uint8_t trx, uint8_t ts);
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +0200322
Maxa76a7d02018-01-26 11:09:16 +0100323 int tfi_find_free(enum gprs_rlcmac_tbf_direction dir, uint8_t *_trx, int8_t use_trx) const;
Holger Hans Peter Freyther70ddde62013-10-26 19:17:58 +0200324
Holger Hans Peter Freyther40cfaa62013-10-26 19:49:16 +0200325 int rcv_imm_ass_cnf(const uint8_t *data, uint32_t fn);
Philipp Maier1275a3f2017-02-21 19:35:23 +0100326
Max5dd8d1b2017-03-08 12:06:42 +0100327 uint32_t rfn_to_fn(int32_t rfn);
Vadim Yanitskiya0a0b7f2020-05-21 19:55:46 +0700328 int rcv_rach(const struct rach_ind_params *rip);
329 int rcv_ptcch_rach(const struct rach_ind_params *rip);
Holger Hans Peter Freyther40cfaa62013-10-26 19:49:16 +0200330
Pau Espin Pedrold7c32652019-12-23 12:41:34 +0100331 void snd_dl_ass(gprs_rlcmac_tbf *tbf, bool poll, uint16_t pgroup);
Holger Hans Peter Freytherd9262b32013-10-26 20:12:59 +0200332
Jacob Erlbecke43460b2015-05-13 13:33:12 +0200333 GprsMsStorage &ms_store();
334 GprsMs *ms_by_tlli(uint32_t tlli, uint32_t old_tlli = 0);
Jacob Erlbeck076f5c72015-08-21 18:00:54 +0200335 GprsMs *ms_by_imsi(const char *imsi);
Jacob Erlbeck86b6f052015-11-27 15:17:34 +0100336 GprsMs *ms_alloc(uint8_t ms_class, uint8_t egprs_ms_class = 0);
Jacob Erlbecke43460b2015-05-13 13:33:12 +0200337
Harald Welte717cdf52017-07-21 21:56:23 +0200338 void send_gsmtap(enum pcu_gsmtap_category categ, bool uplink, uint8_t trx_no,
339 uint8_t ts_no, uint8_t channel, uint32_t fn,
340 const uint8_t *data, unsigned int len);
Pau Espin Pedrol0b0391f2020-05-19 17:23:23 +0200341 void send_gsmtap_meas(enum pcu_gsmtap_category categ, bool uplink, uint8_t trx_no,
342 uint8_t ts_no, uint8_t channel, uint32_t fn,
343 const uint8_t *data, unsigned int len, struct pcu_l1_meas *meas);
Vadim Yanitskiy07b64872020-06-11 00:26:15 +0700344 void send_gsmtap_rach(enum pcu_gsmtap_category categ, uint8_t channel,
345 const struct rach_ind_params *rip);
Harald Welte717cdf52017-07-21 21:56:23 +0200346
Holger Hans Peter Freytherf5372982013-10-27 09:02:31 +0100347 /*
Holger Hans Peter Freytherf5372982013-10-27 09:02:31 +0100348 * Below for C interface for the VTY
349 */
350 struct rate_ctr_group *rate_counters() const;
Jacob Erlbeckf5898a02015-11-27 19:05:13 +0100351 struct osmo_stat_item_group *stat_items() const;
Pau Espin Pedrol2338e532020-05-12 20:54:35 +0200352 void do_rate_ctr_inc(unsigned int ctr_id);
Pau Espin Pedrola107f8f2020-05-12 22:32:24 +0200353 void do_rate_ctr_add(unsigned int ctr_id, int inc);
Pau Espin Pedrol97e88fd2020-05-12 22:45:04 +0200354 void stat_item_add(unsigned int stat_id, int inc);
Holger Hans Peter Freytherf5372982013-10-27 09:02:31 +0100355
Jacob Erlbecked2dbf62015-12-28 19:15:40 +0100356 LListHead<gprs_rlcmac_tbf>& ul_tbfs();
357 LListHead<gprs_rlcmac_tbf>& dl_tbfs();
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200358private:
Holger Hans Peter Freyther9b30c7f2013-10-17 19:59:56 +0200359 int m_cur_fn;
Jacob Erlbeck60f77032015-08-24 14:35:14 +0200360 int m_cur_blk_fn;
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200361 struct gprs_rlcmac_bts m_bts;
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +0200362 PollController m_pollController;
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +0200363 SBAController m_sba;
Holger Hans Peter Freytherf5372982013-10-27 09:02:31 +0100364 struct rate_ctr_group *m_ratectrs;
Jacob Erlbeckf5898a02015-11-27 19:05:13 +0100365 struct osmo_stat_item_group *m_statg;
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +0200366
Jacob Erlbecke43460b2015-05-13 13:33:12 +0200367 GprsMsStorage m_ms_store;
368
Jacob Erlbecked2dbf62015-12-28 19:15:40 +0100369 /* list of uplink TBFs */
370 LListHead<gprs_rlcmac_tbf> m_ul_tbfs;
371 /* list of downlink TBFs */
372 LListHead<gprs_rlcmac_tbf> m_dl_tbfs;
373
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +0200374 /* disable copying to avoid slicing */
375 BTS(const BTS&);
376 BTS& operator=(const BTS&);
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200377};
Holger Hans Peter Freyther9b30c7f2013-10-17 19:59:56 +0200378
379inline int BTS::current_frame_number() const
380{
381 return m_cur_fn;
382}
Holger Hans Peter Freyther111614a2013-10-19 20:04:57 +0200383
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +0200384inline SBAController *BTS::sba()
385{
386 return &m_sba;
387}
Holger Hans Peter Freyther65be4802013-10-26 18:39:36 +0200388
Jacob Erlbecke43460b2015-05-13 13:33:12 +0200389inline GprsMsStorage &BTS::ms_store()
390{
391 return m_ms_store;
392}
393
394inline GprsMs *BTS::ms_by_tlli(uint32_t tlli, uint32_t old_tlli)
395{
396 return ms_store().get_ms(tlli, old_tlli);
397}
398
Jacob Erlbeck076f5c72015-08-21 18:00:54 +0200399inline GprsMs *BTS::ms_by_imsi(const char *imsi)
400{
401 return ms_store().get_ms(0, 0, imsi);
402}
403
Jacob Erlbecked2dbf62015-12-28 19:15:40 +0100404inline LListHead<gprs_rlcmac_tbf>& BTS::ul_tbfs()
405{
406 return m_ul_tbfs;
407}
408
409inline LListHead<gprs_rlcmac_tbf>& BTS::dl_tbfs()
410{
411 return m_dl_tbfs;
412}
413
Holger Hans Peter Freytherf5372982013-10-27 09:02:31 +0100414inline struct rate_ctr_group *BTS::rate_counters() const
415{
416 return m_ratectrs;
417}
418
Jacob Erlbeckf5898a02015-11-27 19:05:13 +0100419inline struct osmo_stat_item_group *BTS::stat_items() const
420{
421 return m_statg;
422}
423
Pau Espin Pedrol2338e532020-05-12 20:54:35 +0200424inline void BTS::do_rate_ctr_inc(unsigned int ctr_id) {
425 rate_ctr_inc(&m_ratectrs->ctr[ctr_id]);
426}
427
Pau Espin Pedrola107f8f2020-05-12 22:32:24 +0200428inline void BTS::do_rate_ctr_add(unsigned int ctr_id, int inc) {
429 rate_ctr_add(&m_ratectrs->ctr[ctr_id], inc);
430}
Alexander Couzens7fdbf892016-05-21 19:45:23 +0200431
Pau Espin Pedrol97e88fd2020-05-12 22:45:04 +0200432inline void BTS::stat_item_add(unsigned int stat_id, int inc) {
433 int32_t val = osmo_stat_item_get_last(m_statg->items[stat_id]);
434 osmo_stat_item_set(m_statg->items[stat_id], val + inc);
435}
Holger Hans Peter Freyther15877642013-10-27 09:50:15 +0100436
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200437#endif
438
439#ifdef __cplusplus
440extern "C" {
441#endif
Maxd5ffeb52019-03-18 15:48:38 +0100442 void bts_cleanup();
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200443 struct gprs_rlcmac_bts *bts_main_data();
Holger Hans Peter Freytherf5372982013-10-27 09:02:31 +0100444 struct rate_ctr_group *bts_main_data_stats();
Jacob Erlbeckf5898a02015-11-27 19:05:13 +0100445 struct osmo_stat_item_group *bts_main_data_stat_items();
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200446#ifdef __cplusplus
447}
Holger Hans Peter Freyther17b0d832013-10-19 17:37:48 +0200448
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200449#endif