blob: 4b2531eacd8f045f1c0a504cbd15d3c6d9922885 [file] [log] [blame]
Harald Welte8470bf22008-12-25 23:28:35 +00001/* GSM Channel allocation routines
2 *
3 * (C) 2008 by Harald Welte <laforge@gnumonks.org>
Holger Freythere64a7a32009-02-06 21:55:37 +00004 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00005 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01009 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
Harald Welte8470bf22008-12-25 23:28:35 +000011 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte8470bf22008-12-25 23:28:35 +000017 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte8470bf22008-12-25 23:28:35 +000020 *
21 */
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <errno.h>
27
Neels Hofmeyrc0164792017-09-04 15:15:32 +020028#include <osmocom/bsc/gsm_subscriber.h>
29#include <osmocom/bsc/chan_alloc.h>
30#include <osmocom/bsc/abis_nm.h>
31#include <osmocom/bsc/abis_rsl.h>
32#include <osmocom/bsc/debug.h>
33#include <osmocom/bsc/rtp_proxy.h>
34#include <osmocom/bsc/signal.h>
35#include <osmocom/bsc/gsm_04_08_utils.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000036
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010037#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +080038
Maxd0ff6942017-11-29 12:45:34 +010039static bool ts_is_usable(const struct gsm_bts_trx_ts *ts)
Harald Welte4c704542009-12-24 10:10:16 +010040{
41 /* FIXME: How does this behave for BS-11 ? */
42 if (is_ipaccess_bts(ts->trx->bts)) {
Harald Welted64c0bc2011-05-30 12:07:53 +020043 if (!nm_is_running(&ts->mo.nm_state))
Maxd0ff6942017-11-29 12:45:34 +010044 return false;
Harald Welte4c704542009-12-24 10:10:16 +010045 }
46
Neels Hofmeyrc6926d02016-07-14 02:51:13 +020047 /* If a TCH/F_PDCH TS is busy changing, it is already taken or not
Neels Hofmeyr832afa32016-06-14 13:12:00 +020048 * yet available. */
49 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH) {
50 if (ts->flags & TS_F_PDCH_PENDING_MASK)
Maxd0ff6942017-11-29 12:45:34 +010051 return false;
Neels Hofmeyr832afa32016-06-14 13:12:00 +020052 }
53
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +020054 /* If a dynamic channel is busy changing, it is already taken or not
55 * yet available. */
56 if (ts->pchan == GSM_PCHAN_TCH_F_TCH_H_PDCH) {
57 if (ts->dyn.pchan_is != ts->dyn.pchan_want)
Maxd0ff6942017-11-29 12:45:34 +010058 return false;
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +020059 }
60
Maxd0ff6942017-11-29 12:45:34 +010061 return true;
Harald Welte4c704542009-12-24 10:10:16 +010062}
63
Maxd0ff6942017-11-29 12:45:34 +010064bool trx_is_usable(const struct gsm_bts_trx *trx)
Harald Welte4c704542009-12-24 10:10:16 +010065{
66 /* FIXME: How does this behave for BS-11 ? */
67 if (is_ipaccess_bts(trx->bts)) {
Harald Welted64c0bc2011-05-30 12:07:53 +020068 if (!nm_is_running(&trx->mo.nm_state) ||
69 !nm_is_running(&trx->bb_transc.mo.nm_state))
Maxd0ff6942017-11-29 12:45:34 +010070 return false;
Harald Welte4c704542009-12-24 10:10:16 +010071 }
72
Maxd0ff6942017-11-29 12:45:34 +010073 return true;
Harald Welte4c704542009-12-24 10:10:16 +010074}
75
Harald Welte8470bf22008-12-25 23:28:35 +000076static struct gsm_lchan *
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +020077_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan,
78 enum gsm_phys_chan_config dyn_as_pchan)
Harald Welte8470bf22008-12-25 23:28:35 +000079{
Harald Welte8470bf22008-12-25 23:28:35 +000080 struct gsm_bts_trx_ts *ts;
Andreas Eversberg0434efa2013-10-11 13:05:16 +020081 int j, start, stop, dir, ss;
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +020082 int check_subslots;
Harald Welte88367262009-08-10 13:25:55 +020083
Harald Welte4c704542009-12-24 10:10:16 +010084 if (!trx_is_usable(trx))
85 return NULL;
86
Andreas Eversberg0434efa2013-10-11 13:05:16 +020087 if (trx->bts->chan_alloc_reverse) {
88 /* check TS 7..0 */
89 start = 7;
90 stop = -1;
91 dir = -1;
92 } else {
93 /* check TS 0..7 */
94 start = 0;
95 stop = 8;
96 dir = 1;
97 }
98
99 for (j = start; j != stop; j += dir) {
Harald Weltefc0d9522009-08-10 13:46:55 +0200100 ts = &trx->ts[j];
Harald Welte4c704542009-12-24 10:10:16 +0100101 if (!ts_is_usable(ts))
102 continue;
Neels Hofmeyra6685252016-06-06 12:53:25 +0200103 if (ts->pchan != pchan)
Harald Weltefc0d9522009-08-10 13:46:55 +0200104 continue;
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200105
106 /*
107 * Allocation for fully dynamic timeslots
108 * (does not apply for ip.access style GSM_PCHAN_TCH_F_PDCH)
109 *
110 * Note the special nature of a dynamic timeslot in PDCH mode:
111 * in PDCH mode, typically, lchan->type is GSM_LCHAN_NONE and
112 * lchan->state is LCHAN_S_NONE -- an otherwise unused slot
113 * becomes PDCH implicitly. In the same sense, this channel
114 * allocator will never be asked to find an available PDCH
115 * slot; only TCH/F or TCH/H will be requested, and PDCH mode
116 * means that it is available for switchover.
117 *
118 * A dynamic timeslot in PDCH mode may be switched to TCH/F or
119 * TCH/H. If a dyn TS is already in TCH/F or TCH/H mode, it
120 * means that it is in use and its mode can't be switched.
121 *
122 * The logic concerning channels for TCH/F is trivial: there is
123 * only one channel, so a dynamic TS in TCH/F mode is already
124 * taken and not available for allocation. For TCH/H, we need
125 * to check whether a dynamic timeslot is already in TCH/H mode
126 * and whether one of the two channels is still available.
127 */
Neels Hofmeyre14f4b92016-12-05 16:48:36 +0100128 switch (pchan) {
129 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200130 if (ts->dyn.pchan_is != ts->dyn.pchan_want) {
131 /* The TS's mode is being switched. Not
132 * available anymore/yet. */
133 DEBUGP(DRLL, "%s already in switchover\n",
134 gsm_ts_and_pchan_name(ts));
135 continue;
136 }
137 if (ts->dyn.pchan_is == GSM_PCHAN_PDCH) {
138 /* This slot is available. Still check for
139 * error states to be sure; in all cases the
140 * first lchan will be used. */
141 if (ts->lchan->state != LCHAN_S_NONE
142 && ts->lchan->state != LCHAN_S_ACTIVE)
143 continue;
144 return ts->lchan;
145 }
Neels Hofmeyre14f4b92016-12-05 16:48:36 +0100146 if (ts->dyn.pchan_is != dyn_as_pchan)
147 /* not applicable. */
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200148 continue;
Neels Hofmeyre14f4b92016-12-05 16:48:36 +0100149 /* The requested type matches the dynamic timeslot's
150 * current mode. A channel may still be available
151 * (think TCH/H). */
152 check_subslots = ts_subslots(ts);
153 break;
154
Neels Hofmeyr8825c692016-12-05 16:50:47 +0100155 case GSM_PCHAN_TCH_F_PDCH:
156 /* Available for voice when in PDCH mode */
157 if (ts_pchan(ts) != GSM_PCHAN_PDCH)
158 continue;
159 /* Subslots of a PDCH ts don't need to be checked. */
160 return ts->lchan;
161
Neels Hofmeyre14f4b92016-12-05 16:48:36 +0100162 default:
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200163 /* Not a dynamic channel, there is only one pchan kind: */
Neels Hofmeyr54860252016-07-29 18:13:38 +0200164 check_subslots = ts_subslots(ts);
Neels Hofmeyre14f4b92016-12-05 16:48:36 +0100165 break;
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200166 }
167
168 /* Is a sub-slot still available? */
169 for (ss = 0; ss < check_subslots; ss++) {
Harald Weltefc0d9522009-08-10 13:46:55 +0200170 struct gsm_lchan *lc = &ts->lchan[ss];
Harald Welte (local)3e460312009-12-27 18:12:29 +0100171 if (lc->type == GSM_LCHAN_NONE &&
172 lc->state == LCHAN_S_NONE)
Harald Weltefc0d9522009-08-10 13:46:55 +0200173 return lc;
Harald Welte8470bf22008-12-25 23:28:35 +0000174 }
175 }
Harald Weltec0d83b02010-03-28 15:58:03 +0800176
Harald Weltefc0d9522009-08-10 13:46:55 +0200177 return NULL;
178}
179
180static struct gsm_lchan *
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200181_lc_dyn_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan,
182 enum gsm_phys_chan_config dyn_as_pchan)
Harald Weltefc0d9522009-08-10 13:46:55 +0200183{
184 struct gsm_bts_trx *trx;
Harald Weltefc0d9522009-08-10 13:46:55 +0200185 struct gsm_lchan *lc;
186
187 if (bts->chan_alloc_reverse) {
188 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200189 lc = _lc_find_trx(trx, pchan, dyn_as_pchan);
Harald Weltefc0d9522009-08-10 13:46:55 +0200190 if (lc)
191 return lc;
192 }
193 } else {
194 llist_for_each_entry(trx, &bts->trx_list, list) {
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200195 lc = _lc_find_trx(trx, pchan, dyn_as_pchan);
Harald Weltefc0d9522009-08-10 13:46:55 +0200196 if (lc)
197 return lc;
198 }
199 }
200
Harald Weltef86852c2015-01-01 12:46:26 +0100201 return NULL;
Harald Welte8470bf22008-12-25 23:28:35 +0000202}
203
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200204static struct gsm_lchan *
205_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
206{
207 return _lc_dyn_find_bts(bts, pchan, GSM_PCHAN_NONE);
208}
209
Neels Hofmeyra6685252016-06-06 12:53:25 +0200210/* Allocate a logical channel.
211 *
Neels Hofmeyrc6926d02016-07-14 02:51:13 +0200212 * Dynamic channel types: we always prefer a dedicated TS, and only pick +
213 * switch a dynamic TS if no pure TS of the requested PCHAN is available.
214 *
215 * TCH_F/PDCH: if we pick a PDCH ACT style dynamic TS as TCH/F channel, PDCH
216 * will be disabled in rsl_chan_activate_lchan(); there is no need to check
217 * whether PDCH mode is currently active, here.
Neels Hofmeyra6685252016-06-06 12:53:25 +0200218 */
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800219struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type,
220 int allow_bigger)
Harald Welte8470bf22008-12-25 23:28:35 +0000221{
222 struct gsm_lchan *lchan = NULL;
Harald Welte30f1f372014-12-28 15:00:45 +0100223 enum gsm_phys_chan_config first, first_cbch, second, second_cbch;
Harald Welte8470bf22008-12-25 23:28:35 +0000224
225 switch (type) {
226 case GSM_LCHAN_SDCCH:
Harald Welte65676fe2009-08-10 14:44:24 +0200227 if (bts->chan_alloc_reverse) {
228 first = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Welte30f1f372014-12-28 15:00:45 +0100229 first_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200230 second = GSM_PCHAN_CCCH_SDCCH4;
Harald Welte30f1f372014-12-28 15:00:45 +0100231 second_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200232 } else {
233 first = GSM_PCHAN_CCCH_SDCCH4;
Harald Welte30f1f372014-12-28 15:00:45 +0100234 first_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200235 second = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Welte30f1f372014-12-28 15:00:45 +0100236 second_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200237 }
238
239 lchan = _lc_find_bts(bts, first);
Harald Welte8470bf22008-12-25 23:28:35 +0000240 if (lchan == NULL)
Harald Welte30f1f372014-12-28 15:00:45 +0100241 lchan = _lc_find_bts(bts, first_cbch);
242 if (lchan == NULL)
Harald Welte65676fe2009-08-10 14:44:24 +0200243 lchan = _lc_find_bts(bts, second);
Harald Welte30f1f372014-12-28 15:00:45 +0100244 if (lchan == NULL)
245 lchan = _lc_find_bts(bts, second_cbch);
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800246
247 /* allow to assign bigger channels */
248 if (allow_bigger) {
249 if (lchan == NULL) {
250 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
Neels Hofmeyrf5713a52016-06-06 12:57:22 +0200251 if (lchan)
252 type = GSM_LCHAN_TCH_H;
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800253 }
254
255 if (lchan == NULL) {
256 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Neels Hofmeyrf5713a52016-06-06 12:57:22 +0200257 if (lchan)
258 type = GSM_LCHAN_TCH_F;
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800259 }
Neels Hofmeyra6685252016-06-06 12:53:25 +0200260
261 /* try dynamic TCH/F_PDCH */
262 if (lchan == NULL) {
263 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
264 /* TCH/F_PDCH will be used as TCH/F */
265 if (lchan)
266 type = GSM_LCHAN_TCH_F;
267 }
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200268
269 /* try fully dynamic TCH/F_TCH/H_PDCH */
270 if (lchan == NULL) {
271 lchan = _lc_dyn_find_bts(bts, GSM_PCHAN_TCH_F_TCH_H_PDCH,
272 GSM_PCHAN_TCH_H);
273 if (lchan)
274 type = GSM_LCHAN_TCH_H;
275 }
276 /*
277 * No need to check fully dynamic channels for TCH/F:
278 * if no TCH/H was available, neither will be TCH/F.
279 */
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800280 }
Harald Welte8470bf22008-12-25 23:28:35 +0000281 break;
282 case GSM_LCHAN_TCH_F:
Harald Weltefc0d9522009-08-10 13:46:55 +0200283 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Weltea4c63b02014-05-18 22:23:26 +0200284 /* If we don't have TCH/F available, fall-back to TCH/H */
285 if (!lchan) {
286 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
Neels Hofmeyrf5713a52016-06-06 12:57:22 +0200287 if (lchan)
288 type = GSM_LCHAN_TCH_H;
Harald Weltea4c63b02014-05-18 22:23:26 +0200289 }
Neels Hofmeyra6685252016-06-06 12:53:25 +0200290 /* If we don't have TCH/H either, try dynamic TCH/F_PDCH */
291 if (!lchan) {
292 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
293 /* TCH/F_PDCH used as TCH/F -- here, type is already
294 * set to GSM_LCHAN_TCH_F, but for clarity's sake... */
295 if (lchan)
296 type = GSM_LCHAN_TCH_F;
297 }
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +0200298
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200299 /* Try fully dynamic TCH/F_TCH/H_PDCH as TCH/F... */
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +0200300 if (!lchan && bts->network->dyn_ts_allow_tch_f) {
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200301 lchan = _lc_dyn_find_bts(bts,
302 GSM_PCHAN_TCH_F_TCH_H_PDCH,
303 GSM_PCHAN_TCH_F);
304 if (lchan)
305 type = GSM_LCHAN_TCH_F;
306 }
307 /* ...and as TCH/H. */
308 if (!lchan) {
309 lchan = _lc_dyn_find_bts(bts,
310 GSM_PCHAN_TCH_F_TCH_H_PDCH,
311 GSM_PCHAN_TCH_H);
312 if (lchan)
313 type = GSM_LCHAN_TCH_H;
314 }
Harald Welte8470bf22008-12-25 23:28:35 +0000315 break;
316 case GSM_LCHAN_TCH_H:
Alexander Couzensfbd96f52016-08-29 18:40:02 +0200317 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte210c8502009-12-12 20:58:20 +0100318 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte487e6be2009-12-12 21:16:38 +0100319 if (!lchan) {
Harald Welte210c8502009-12-12 20:58:20 +0100320 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Neels Hofmeyrf5713a52016-06-06 12:57:22 +0200321 if (lchan)
322 type = GSM_LCHAN_TCH_F;
Harald Welte487e6be2009-12-12 21:16:38 +0100323 }
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200324 /* No dedicated TCH/x available -- try fully dynamic
325 * TCH/F_TCH/H_PDCH */
326 if (!lchan) {
327 lchan = _lc_dyn_find_bts(bts,
328 GSM_PCHAN_TCH_F_TCH_H_PDCH,
329 GSM_PCHAN_TCH_H);
330 if (lchan)
331 type = GSM_LCHAN_TCH_H;
332 }
333 /*
334 * No need to check TCH/F_TCH/H_PDCH channels for TCH/F:
335 * if no TCH/H was available, neither will be TCH/F.
336 */
Neels Hofmeyra6685252016-06-06 12:53:25 +0200337 /* If we don't have TCH/F either, try dynamic TCH/F_PDCH */
338 if (!lchan) {
339 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
340 if (lchan)
341 type = GSM_LCHAN_TCH_F;
342 }
Harald Welte8470bf22008-12-25 23:28:35 +0000343 break;
344 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100345 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte8470bf22008-12-25 23:28:35 +0000346 }
347
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000348 if (lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000349 lchan->type = type;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000350
Neels Hofmeyrd1c0e372016-07-25 12:33:02 +0200351 LOGP(DRLL, LOGL_INFO, "%s Allocating lchan=%u as %s\n",
352 gsm_ts_and_pchan_name(lchan->ts),
353 lchan->nr, gsm_lchant_name(lchan->type));
354
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100355 /* clear sapis */
Holger Hans Peter Freyther45b02432009-11-18 22:59:51 +0100356 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100357
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100358 /* clear multi rate config */
Andreas Eversberg73266522014-01-19 11:47:44 +0100359 memset(&lchan->mr_ms_lv, 0, sizeof(lchan->mr_ms_lv));
360 memset(&lchan->mr_bts_lv, 0, sizeof(lchan->mr_bts_lv));
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +0100361 lchan->broken_reason = "";
Harald Weltec0d83b02010-03-28 15:58:03 +0800362 } else {
363 struct challoc_signal_data sig;
Neels Hofmeyrd1c0e372016-07-25 12:33:02 +0200364
365 LOGP(DRLL, LOGL_ERROR, "Failed to allocate %s channel\n",
366 gsm_lchant_name(type));
367
Harald Weltec0d83b02010-03-28 15:58:03 +0800368 sig.bts = bts;
369 sig.type = type;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200370 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_ALLOC_FAIL, &sig);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000371 }
Harald Welte8470bf22008-12-25 23:28:35 +0000372
373 return lchan;
374}
375
376/* Free a logical channel */
377void lchan_free(struct gsm_lchan *lchan)
378{
Harald Weltec0d83b02010-03-28 15:58:03 +0800379 struct challoc_signal_data sig;
Harald Welted12b0fd2009-12-15 21:36:05 +0100380 int i;
381
Harald Weltec0d83b02010-03-28 15:58:03 +0800382 sig.type = lchan->type;
Harald Welte8470bf22008-12-25 23:28:35 +0000383 lchan->type = GSM_LCHAN_NONE;
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800384
385
386 if (lchan->conn) {
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100387 struct lchan_signal_data sig;
388
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800389 /* We might kill an active channel... */
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100390 sig.lchan = lchan;
391 sig.mr = NULL;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200392 osmo_signal_dispatch(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, &sig);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000393 }
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000394
Holger Hans Peter Freytherf95f2732012-01-17 15:27:33 +0100395 if (lchan->abis_ip.rtp_socket) {
396 LOGP(DRLL, LOGL_ERROR, "%s RTP Proxy Socket remained open.\n",
397 gsm_lchan_name(lchan));
398 rtp_socket_free(lchan->abis_ip.rtp_socket);
399 lchan->abis_ip.rtp_socket = NULL;
400 }
Harald Weltec627afc2009-01-09 21:39:17 +0000401
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000402 /* stop the timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200403 osmo_timer_del(&lchan->T3101);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000404
Harald Welted12b0fd2009-12-15 21:36:05 +0100405 /* clear cached measuement reports */
406 lchan->meas_rep_idx = 0;
407 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
408 lchan->meas_rep[i].flags = 0;
409 lchan->meas_rep[i].nr = 0;
410 }
Harald Weltef7c28b02009-12-21 13:30:17 +0100411 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
412 lchan->neigh_meas[i].arfcn = 0;
Harald Welted12b0fd2009-12-15 21:36:05 +0100413
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +0800414 if (lchan->rqd_ref) {
415 talloc_free(lchan->rqd_ref);
416 lchan->rqd_ref = NULL;
417 lchan->rqd_ta = 0;
418 }
419
Harald Weltec0d83b02010-03-28 15:58:03 +0800420 sig.lchan = lchan;
421 sig.bts = lchan->ts->trx->bts;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200422 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_FREED, &sig);
Harald Weltec0d83b02010-03-28 15:58:03 +0800423
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800424 if (lchan->conn) {
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800425 LOGP(DRLL, LOGL_ERROR, "the subscriber connection should be gone.\n");
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800426 lchan->conn = NULL;
427 }
428
Harald Welte8470bf22008-12-25 23:28:35 +0000429 /* FIXME: ts_free() the timeslot, if we're the last logical
430 * channel using it */
431}
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000432
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200433/*
434 * There was an error with the TRX and we need to forget
435 * any state so that a lchan can be allocated again after
436 * the trx is fully usable.
Holger Hans Peter Freytherf7a1c232010-06-22 12:19:06 +0800437 *
438 * This should be called after lchan_free to force a channel
439 * be available for allocation again. This means that this
440 * method will stop the "delay after error"-timer and set the
441 * state to LCHAN_S_NONE.
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200442 */
443void lchan_reset(struct gsm_lchan *lchan)
444{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200445 osmo_timer_del(&lchan->T3101);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100446 osmo_timer_del(&lchan->T3109);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200447 osmo_timer_del(&lchan->T3111);
448 osmo_timer_del(&lchan->error_timer);
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200449
450 lchan->type = GSM_LCHAN_NONE;
Maxdc10ce92017-09-06 18:20:36 +0200451 rsl_lchan_set_state(lchan, LCHAN_S_NONE);
Holger Hans Peter Freytherf95f2732012-01-17 15:27:33 +0100452
453 if (lchan->abis_ip.rtp_socket) {
454 rtp_socket_free(lchan->abis_ip.rtp_socket);
455 lchan->abis_ip.rtp_socket = NULL;
456 }
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200457}
458
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800459/* Drive the release process of the lchan */
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100460static void _lchan_handle_release(struct gsm_lchan *lchan,
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100461 int sacch_deact, int mode)
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800462{
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100463 /* Release all SAPIs on the local end and continue */
464 rsl_release_sapis_from(lchan, 1, RSL_REL_LOCAL_END);
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800465
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100466 /*
467 * Shall we send a RR Release, start T3109 and wait for the
468 * release indication from the BTS or just take it down (e.g.
469 * on assignment requests)
470 */
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100471 if (sacch_deact) {
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800472 gsm48_send_rr_release(lchan);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100473
474 /* Deactivate the SACCH on the BTS side */
475 rsl_deact_sacch(lchan);
476 rsl_start_t3109(lchan);
Holger Hans Peter Freyther006e3d82012-12-25 23:45:14 +0100477 } else if (lchan->sapis[0] == LCHAN_SAPI_UNUSED) {
478 rsl_direct_rf_release(lchan);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100479 } else {
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100480 rsl_release_request(lchan, 0, mode);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100481 }
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800482}
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200483
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000484/* Consider releasing the channel now */
Holger Hans Peter Freyther5ca825e2012-12-06 12:01:38 +0100485int lchan_release(struct gsm_lchan *lchan, int sacch_deact, enum rsl_rel_mode mode)
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000486{
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800487 DEBUGP(DRLL, "%s starting release sequence\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther63d18b52010-04-10 00:14:55 +0200488 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800489
Holger Hans Peter Freytherabf962b2010-11-14 16:04:46 +0100490 lchan->conn = NULL;
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100491 _lchan_handle_release(lchan, sacch_deact, mode);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000492 return 1;
493}
494
Neels Hofmeyr2afffd52016-09-25 17:01:20 +0200495void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
Harald Welteb908cb72009-12-22 13:09:29 +0100496{
497 struct gsm_bts_trx *trx;
498
499 llist_for_each_entry(trx, &bts->trx_list, list) {
500 int i;
501
502 /* skip administratively deactivated tranxsceivers */
Harald Welted64c0bc2011-05-30 12:07:53 +0200503 if (!nm_is_running(&trx->mo.nm_state) ||
504 !nm_is_running(&trx->bb_transc.mo.nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100505 continue;
506
507 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
508 struct gsm_bts_trx_ts *ts = &trx->ts[i];
509 struct load_counter *pl = &cl->pchan[ts->pchan];
510 int j;
Neels Hofmeyr36733802016-07-29 18:10:59 +0200511 int subslots;
Harald Welteb908cb72009-12-22 13:09:29 +0100512
513 /* skip administratively deactivated timeslots */
Harald Welted64c0bc2011-05-30 12:07:53 +0200514 if (!nm_is_running(&ts->mo.nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100515 continue;
516
Neels Hofmeyr36733802016-07-29 18:10:59 +0200517 subslots = ts_subslots(ts);
518 for (j = 0; j < subslots; j++) {
Harald Welteb908cb72009-12-22 13:09:29 +0100519 struct gsm_lchan *lchan = &ts->lchan[j];
520
521 pl->total++;
522
523 switch (lchan->state) {
524 case LCHAN_S_NONE:
525 break;
526 default:
527 pl->used++;
528 break;
529 }
530 }
531 }
532 }
533}
534
535void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
536{
537 struct gsm_bts *bts;
538
539 memset(pl, 0, sizeof(*pl));
540
541 llist_for_each_entry(bts, &net->bts_list, list)
Neels Hofmeyr2afffd52016-09-25 17:01:20 +0200542 bts_chan_load(pl, bts);
Harald Welteb908cb72009-12-22 13:09:29 +0100543}
Neels Hofmeyr2afffd52016-09-25 17:01:20 +0200544