blob: f502740a4294e5c859b0a026d2e72924a9033e92 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* GSM Channel allocation routines
2 *
3 * (C) 2008 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-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 Welte59b04682009-06-10 05:40:52 +080011 * (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 Welte0e3e88e2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte59b04682009-06-10 05:40:52 +080017 *
Harald Welte0e3e88e2011-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 Welte59b04682009-06-10 05:40:52 +080020 *
21 */
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <errno.h>
27
Holger Hans Peter Freytherd3001062010-12-22 18:13:00 +010028#include <openbsc/gsm_subscriber.h>
Harald Welte59b04682009-06-10 05:40:52 +080029#include <openbsc/chan_alloc.h>
30#include <openbsc/abis_nm.h>
31#include <openbsc/abis_rsl.h>
32#include <openbsc/debug.h>
Holger Hans Peter Freyther00452c42012-01-17 15:27:33 +010033#include <openbsc/rtp_proxy.h>
Harald Welte59b04682009-06-10 05:40:52 +080034#include <openbsc/signal.h>
35
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010036#include <osmocom/core/talloc.h>
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +080037
Harald Welteedc7b2f2009-12-24 10:10:16 +010038static int ts_is_usable(struct gsm_bts_trx_ts *ts)
39{
40 /* FIXME: How does this behave for BS-11 ? */
41 if (is_ipaccess_bts(ts->trx->bts)) {
Harald Welte69f6f812011-05-30 12:07:53 +020042 if (!nm_is_running(&ts->mo.nm_state))
Harald Welteedc7b2f2009-12-24 10:10:16 +010043 return 0;
44 }
45
Neels Hofmeyrb3985cf2016-07-14 02:51:13 +020046 /* If a TCH/F_PDCH TS is busy changing, it is already taken or not
Neels Hofmeyr10b0f1d2016-06-14 13:12:00 +020047 * yet available. */
48 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH) {
49 if (ts->flags & TS_F_PDCH_PENDING_MASK)
50 return 0;
51 }
52
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +020053 /* If a dynamic channel is busy changing, it is already taken or not
54 * yet available. */
55 if (ts->pchan == GSM_PCHAN_TCH_F_TCH_H_PDCH) {
56 if (ts->dyn.pchan_is != ts->dyn.pchan_want)
57 return 0;
58 }
59
Harald Welteedc7b2f2009-12-24 10:10:16 +010060 return 1;
61}
62
Harald Welte (local)43db2bf2009-12-28 16:36:28 +010063int trx_is_usable(struct gsm_bts_trx *trx)
Harald Welteedc7b2f2009-12-24 10:10:16 +010064{
65 /* FIXME: How does this behave for BS-11 ? */
66 if (is_ipaccess_bts(trx->bts)) {
Harald Welte69f6f812011-05-30 12:07:53 +020067 if (!nm_is_running(&trx->mo.nm_state) ||
68 !nm_is_running(&trx->bb_transc.mo.nm_state))
Harald Welteedc7b2f2009-12-24 10:10:16 +010069 return 0;
70 }
71
72 return 1;
73}
74
Holger Hans Peter Freyther7eb8a9a2011-04-18 17:04:00 +020075static const uint8_t subslots_per_pchan[] = {
Harald Welte59b04682009-06-10 05:40:52 +080076 [GSM_PCHAN_NONE] = 0,
77 [GSM_PCHAN_CCCH] = 0,
78 [GSM_PCHAN_CCCH_SDCCH4] = 4,
79 [GSM_PCHAN_TCH_F] = 1,
80 [GSM_PCHAN_TCH_H] = 2,
Harald Welte03740842009-06-10 23:11:52 +080081 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Welte8f725442010-03-28 15:58:03 +080082 [GSM_PCHAN_TCH_F_PDCH] = 1,
Harald Weltebf4ba722014-12-28 15:00:45 +010083 [GSM_PCHAN_CCCH_SDCCH4_CBCH] = 4,
84 [GSM_PCHAN_SDCCH8_SACCH8C_CBCH] = 8,
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +020085 /*
86 * GSM_PCHAN_TCH_F_TCH_H_PDCH should not be part of this, those TS are
87 * handled according to their ts->dyn state.
88 */
Harald Welte59b04682009-06-10 05:40:52 +080089};
90
91static struct gsm_lchan *
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +020092_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan,
93 enum gsm_phys_chan_config dyn_as_pchan)
Harald Welte59b04682009-06-10 05:40:52 +080094{
Harald Welte59b04682009-06-10 05:40:52 +080095 struct gsm_bts_trx_ts *ts;
Andreas Eversberge34707e2013-10-11 13:05:16 +020096 int j, start, stop, dir, ss;
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +020097 int check_subslots;
Harald Welte351ff122009-08-10 13:25:55 +020098
Harald Welteedc7b2f2009-12-24 10:10:16 +010099 if (!trx_is_usable(trx))
100 return NULL;
101
Andreas Eversberge34707e2013-10-11 13:05:16 +0200102 if (trx->bts->chan_alloc_reverse) {
103 /* check TS 7..0 */
104 start = 7;
105 stop = -1;
106 dir = -1;
107 } else {
108 /* check TS 0..7 */
109 start = 0;
110 stop = 8;
111 dir = 1;
112 }
113
114 for (j = start; j != stop; j += dir) {
Harald Welteceb3c042009-08-10 13:46:55 +0200115 ts = &trx->ts[j];
Harald Welteedc7b2f2009-12-24 10:10:16 +0100116 if (!ts_is_usable(ts))
117 continue;
Neels Hofmeyr05955e42016-06-06 12:53:25 +0200118 if (ts->pchan != pchan)
Harald Welteceb3c042009-08-10 13:46:55 +0200119 continue;
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +0200120
121 /*
122 * Allocation for fully dynamic timeslots
123 * (does not apply for ip.access style GSM_PCHAN_TCH_F_PDCH)
124 *
125 * Note the special nature of a dynamic timeslot in PDCH mode:
126 * in PDCH mode, typically, lchan->type is GSM_LCHAN_NONE and
127 * lchan->state is LCHAN_S_NONE -- an otherwise unused slot
128 * becomes PDCH implicitly. In the same sense, this channel
129 * allocator will never be asked to find an available PDCH
130 * slot; only TCH/F or TCH/H will be requested, and PDCH mode
131 * means that it is available for switchover.
132 *
133 * A dynamic timeslot in PDCH mode may be switched to TCH/F or
134 * TCH/H. If a dyn TS is already in TCH/F or TCH/H mode, it
135 * means that it is in use and its mode can't be switched.
136 *
137 * The logic concerning channels for TCH/F is trivial: there is
138 * only one channel, so a dynamic TS in TCH/F mode is already
139 * taken and not available for allocation. For TCH/H, we need
140 * to check whether a dynamic timeslot is already in TCH/H mode
141 * and whether one of the two channels is still available.
142 */
143 if (pchan == GSM_PCHAN_TCH_F_TCH_H_PDCH) {
144 if (ts->dyn.pchan_is != ts->dyn.pchan_want) {
145 /* The TS's mode is being switched. Not
146 * available anymore/yet. */
147 DEBUGP(DRLL, "%s already in switchover\n",
148 gsm_ts_and_pchan_name(ts));
149 continue;
150 }
151 if (ts->dyn.pchan_is == GSM_PCHAN_PDCH) {
152 /* This slot is available. Still check for
153 * error states to be sure; in all cases the
154 * first lchan will be used. */
155 if (ts->lchan->state != LCHAN_S_NONE
156 && ts->lchan->state != LCHAN_S_ACTIVE)
157 continue;
158 return ts->lchan;
159 }
160 if (ts->dyn.pchan_is == dyn_as_pchan) {
161 /* The requested type matches the dynamic
162 * timeslot's current mode. A channel may still
163 * be available (think TCH/H). */
164 check_subslots = subslots_per_pchan[ts->dyn.pchan_is];
165 } else
166 /* Otherwise this slot is not applicable. */
167 continue;
168 } else {
169 /* Not a dynamic channel, there is only one pchan kind: */
170 check_subslots = subslots_per_pchan[pchan];
171 }
172
173 /* Is a sub-slot still available? */
174 for (ss = 0; ss < check_subslots; ss++) {
Harald Welteceb3c042009-08-10 13:46:55 +0200175 struct gsm_lchan *lc = &ts->lchan[ss];
Harald Welte (local)c3be50c2009-12-27 18:12:29 +0100176 if (lc->type == GSM_LCHAN_NONE &&
177 lc->state == LCHAN_S_NONE)
Harald Welteceb3c042009-08-10 13:46:55 +0200178 return lc;
Harald Welte59b04682009-06-10 05:40:52 +0800179 }
180 }
Harald Welte8f725442010-03-28 15:58:03 +0800181
Harald Welteceb3c042009-08-10 13:46:55 +0200182 return NULL;
183}
184
185static struct gsm_lchan *
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +0200186_lc_dyn_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan,
187 enum gsm_phys_chan_config dyn_as_pchan)
Harald Welteceb3c042009-08-10 13:46:55 +0200188{
189 struct gsm_bts_trx *trx;
Harald Welteceb3c042009-08-10 13:46:55 +0200190 struct gsm_lchan *lc;
191
192 if (bts->chan_alloc_reverse) {
193 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +0200194 lc = _lc_find_trx(trx, pchan, dyn_as_pchan);
Harald Welteceb3c042009-08-10 13:46:55 +0200195 if (lc)
196 return lc;
197 }
198 } else {
199 llist_for_each_entry(trx, &bts->trx_list, list) {
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +0200200 lc = _lc_find_trx(trx, pchan, dyn_as_pchan);
Harald Welteceb3c042009-08-10 13:46:55 +0200201 if (lc)
202 return lc;
203 }
204 }
205
Harald Welte64687932015-01-01 12:46:26 +0100206 return NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800207}
208
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +0200209static struct gsm_lchan *
210_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
211{
212 return _lc_dyn_find_bts(bts, pchan, GSM_PCHAN_NONE);
213}
214
Neels Hofmeyr05955e42016-06-06 12:53:25 +0200215/* Allocate a logical channel.
216 *
Neels Hofmeyrb3985cf2016-07-14 02:51:13 +0200217 * Dynamic channel types: we always prefer a dedicated TS, and only pick +
218 * switch a dynamic TS if no pure TS of the requested PCHAN is available.
219 *
220 * TCH_F/PDCH: if we pick a PDCH ACT style dynamic TS as TCH/F channel, PDCH
221 * will be disabled in rsl_chan_activate_lchan(); there is no need to check
222 * whether PDCH mode is currently active, here.
Neels Hofmeyr05955e42016-06-06 12:53:25 +0200223 */
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +0800224struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type,
225 int allow_bigger)
Harald Welte59b04682009-06-10 05:40:52 +0800226{
227 struct gsm_lchan *lchan = NULL;
Harald Weltebf4ba722014-12-28 15:00:45 +0100228 enum gsm_phys_chan_config first, first_cbch, second, second_cbch;
Harald Welte59b04682009-06-10 05:40:52 +0800229
230 switch (type) {
231 case GSM_LCHAN_SDCCH:
Harald Welteaf86c0f2009-08-10 14:44:24 +0200232 if (bts->chan_alloc_reverse) {
233 first = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Weltebf4ba722014-12-28 15:00:45 +0100234 first_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200235 second = GSM_PCHAN_CCCH_SDCCH4;
Harald Weltebf4ba722014-12-28 15:00:45 +0100236 second_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200237 } else {
238 first = GSM_PCHAN_CCCH_SDCCH4;
Harald Weltebf4ba722014-12-28 15:00:45 +0100239 first_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200240 second = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Weltebf4ba722014-12-28 15:00:45 +0100241 second_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200242 }
243
244 lchan = _lc_find_bts(bts, first);
Harald Welte59b04682009-06-10 05:40:52 +0800245 if (lchan == NULL)
Harald Weltebf4ba722014-12-28 15:00:45 +0100246 lchan = _lc_find_bts(bts, first_cbch);
247 if (lchan == NULL)
Harald Welteaf86c0f2009-08-10 14:44:24 +0200248 lchan = _lc_find_bts(bts, second);
Harald Weltebf4ba722014-12-28 15:00:45 +0100249 if (lchan == NULL)
250 lchan = _lc_find_bts(bts, second_cbch);
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +0800251
252 /* allow to assign bigger channels */
253 if (allow_bigger) {
254 if (lchan == NULL) {
255 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
Neels Hofmeyrbb17dbc2016-06-06 12:57:22 +0200256 if (lchan)
257 type = GSM_LCHAN_TCH_H;
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +0800258 }
259
260 if (lchan == NULL) {
261 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Neels Hofmeyrbb17dbc2016-06-06 12:57:22 +0200262 if (lchan)
263 type = GSM_LCHAN_TCH_F;
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +0800264 }
Neels Hofmeyr05955e42016-06-06 12:53:25 +0200265
266 /* try dynamic TCH/F_PDCH */
267 if (lchan == NULL) {
268 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
269 /* TCH/F_PDCH will be used as TCH/F */
270 if (lchan)
271 type = GSM_LCHAN_TCH_F;
272 }
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +0200273
274 /* try fully dynamic TCH/F_TCH/H_PDCH */
275 if (lchan == NULL) {
276 lchan = _lc_dyn_find_bts(bts, GSM_PCHAN_TCH_F_TCH_H_PDCH,
277 GSM_PCHAN_TCH_H);
278 if (lchan)
279 type = GSM_LCHAN_TCH_H;
280 }
281 /*
282 * No need to check fully dynamic channels for TCH/F:
283 * if no TCH/H was available, neither will be TCH/F.
284 */
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +0800285 }
Harald Welte59b04682009-06-10 05:40:52 +0800286 break;
287 case GSM_LCHAN_TCH_F:
Harald Welteceb3c042009-08-10 13:46:55 +0200288 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte64e68df2014-05-18 22:23:26 +0200289 /* If we don't have TCH/F available, fall-back to TCH/H */
290 if (!lchan) {
291 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
Neels Hofmeyrbb17dbc2016-06-06 12:57:22 +0200292 if (lchan)
293 type = GSM_LCHAN_TCH_H;
Harald Welte64e68df2014-05-18 22:23:26 +0200294 }
Neels Hofmeyr05955e42016-06-06 12:53:25 +0200295 /* If we don't have TCH/H either, try dynamic TCH/F_PDCH */
296 if (!lchan) {
297 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
298 /* TCH/F_PDCH used as TCH/F -- here, type is already
299 * set to GSM_LCHAN_TCH_F, but for clarity's sake... */
300 if (lchan)
301 type = GSM_LCHAN_TCH_F;
302 }
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +0200303 /* Try fully dynamic TCH/F_TCH/H_PDCH as TCH/F... */
304 if (!lchan) {
305 lchan = _lc_dyn_find_bts(bts,
306 GSM_PCHAN_TCH_F_TCH_H_PDCH,
307 GSM_PCHAN_TCH_F);
308 if (lchan)
309 type = GSM_LCHAN_TCH_F;
310 }
311 /* ...and as TCH/H. */
312 if (!lchan) {
313 lchan = _lc_dyn_find_bts(bts,
314 GSM_PCHAN_TCH_F_TCH_H_PDCH,
315 GSM_PCHAN_TCH_H);
316 if (lchan)
317 type = GSM_LCHAN_TCH_H;
318 }
Harald Welte59b04682009-06-10 05:40:52 +0800319 break;
320 case GSM_LCHAN_TCH_H:
Harald Welteceb3c042009-08-10 13:46:55 +0200321 lchan =_lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte12503372009-12-12 20:58:20 +0100322 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte5ea9e8e2009-12-12 21:16:38 +0100323 if (!lchan) {
Harald Welte12503372009-12-12 20:58:20 +0100324 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Neels Hofmeyrbb17dbc2016-06-06 12:57:22 +0200325 if (lchan)
326 type = GSM_LCHAN_TCH_F;
Harald Welte5ea9e8e2009-12-12 21:16:38 +0100327 }
Neels Hofmeyrff4ebd82016-07-14 03:01:24 +0200328 /* No dedicated TCH/x available -- try fully dynamic
329 * TCH/F_TCH/H_PDCH */
330 if (!lchan) {
331 lchan = _lc_dyn_find_bts(bts,
332 GSM_PCHAN_TCH_F_TCH_H_PDCH,
333 GSM_PCHAN_TCH_H);
334 if (lchan)
335 type = GSM_LCHAN_TCH_H;
336 }
337 /*
338 * No need to check TCH/F_TCH/H_PDCH channels for TCH/F:
339 * if no TCH/H was available, neither will be TCH/F.
340 */
Neels Hofmeyr05955e42016-06-06 12:53:25 +0200341 /* If we don't have TCH/F either, try dynamic TCH/F_PDCH */
342 if (!lchan) {
343 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
344 if (lchan)
345 type = GSM_LCHAN_TCH_F;
346 }
Harald Welte59b04682009-06-10 05:40:52 +0800347 break;
348 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100349 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte59b04682009-06-10 05:40:52 +0800350 }
351
352 if (lchan) {
353 lchan->type = type;
Harald Welte59b04682009-06-10 05:40:52 +0800354
Neels Hofmeyr9eee2cd2016-07-25 12:33:02 +0200355 LOGP(DRLL, LOGL_INFO, "%s Allocating lchan=%u as %s\n",
356 gsm_ts_and_pchan_name(lchan->ts),
357 lchan->nr, gsm_lchant_name(lchan->type));
358
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +0100359 /* clear sapis */
Holger Hans Peter Freyther29afdc42009-11-18 22:59:51 +0100360 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +0100361
Holger Hans Peter Freyther3cce58f2009-11-18 22:57:02 +0100362 /* clear multi rate config */
Andreas Eversbergfa163e82014-01-19 11:47:44 +0100363 memset(&lchan->mr_ms_lv, 0, sizeof(lchan->mr_ms_lv));
364 memset(&lchan->mr_bts_lv, 0, sizeof(lchan->mr_bts_lv));
Holger Hans Peter Freyther960adfe2014-12-28 12:08:28 +0100365 lchan->broken_reason = "";
Harald Welte8f725442010-03-28 15:58:03 +0800366 } else {
367 struct challoc_signal_data sig;
Neels Hofmeyr9eee2cd2016-07-25 12:33:02 +0200368
369 LOGP(DRLL, LOGL_ERROR, "Failed to allocate %s channel\n",
370 gsm_lchant_name(type));
371
Harald Welte8f725442010-03-28 15:58:03 +0800372 sig.bts = bts;
373 sig.type = type;
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +0200374 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_ALLOC_FAIL, &sig);
Harald Welte59b04682009-06-10 05:40:52 +0800375 }
376
377 return lchan;
378}
379
380/* Free a logical channel */
381void lchan_free(struct gsm_lchan *lchan)
382{
Harald Welte8f725442010-03-28 15:58:03 +0800383 struct challoc_signal_data sig;
Harald Weltef9476812009-12-15 21:36:05 +0100384 int i;
385
Harald Welte8f725442010-03-28 15:58:03 +0800386 sig.type = lchan->type;
Harald Welte59b04682009-06-10 05:40:52 +0800387 lchan->type = GSM_LCHAN_NONE;
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800388
389
390 if (lchan->conn) {
Holger Hans Peter Freyther645b3832010-12-27 13:28:20 +0100391 struct lchan_signal_data sig;
392
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800393 /* We might kill an active channel... */
Holger Hans Peter Freyther645b3832010-12-27 13:28:20 +0100394 sig.lchan = lchan;
395 sig.mr = NULL;
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +0200396 osmo_signal_dispatch(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, &sig);
Harald Welte59b04682009-06-10 05:40:52 +0800397 }
398
Holger Hans Peter Freyther00452c42012-01-17 15:27:33 +0100399 if (lchan->abis_ip.rtp_socket) {
400 LOGP(DRLL, LOGL_ERROR, "%s RTP Proxy Socket remained open.\n",
401 gsm_lchan_name(lchan));
402 rtp_socket_free(lchan->abis_ip.rtp_socket);
403 lchan->abis_ip.rtp_socket = NULL;
404 }
Harald Welte59b04682009-06-10 05:40:52 +0800405
406 /* stop the timer */
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200407 osmo_timer_del(&lchan->T3101);
Harald Welte59b04682009-06-10 05:40:52 +0800408
Harald Weltef9476812009-12-15 21:36:05 +0100409 /* clear cached measuement reports */
410 lchan->meas_rep_idx = 0;
411 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
412 lchan->meas_rep[i].flags = 0;
413 lchan->meas_rep[i].nr = 0;
414 }
Harald Welte92d88912009-12-21 13:30:17 +0100415 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
416 lchan->neigh_meas[i].arfcn = 0;
Harald Weltef9476812009-12-15 21:36:05 +0100417
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +0800418 if (lchan->rqd_ref) {
419 talloc_free(lchan->rqd_ref);
420 lchan->rqd_ref = NULL;
421 lchan->rqd_ta = 0;
422 }
423
Harald Welte8f725442010-03-28 15:58:03 +0800424 sig.lchan = lchan;
425 sig.bts = lchan->ts->trx->bts;
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +0200426 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_FREED, &sig);
Harald Welte8f725442010-03-28 15:58:03 +0800427
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800428 if (lchan->conn) {
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800429 LOGP(DRLL, LOGL_ERROR, "the subscriber connection should be gone.\n");
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800430 lchan->conn = NULL;
431 }
432
Harald Welte59b04682009-06-10 05:40:52 +0800433 /* FIXME: ts_free() the timeslot, if we're the last logical
434 * channel using it */
435}
436
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200437/*
438 * There was an error with the TRX and we need to forget
439 * any state so that a lchan can be allocated again after
440 * the trx is fully usable.
Holger Hans Peter Freyther66a3c772010-06-22 12:19:06 +0800441 *
442 * This should be called after lchan_free to force a channel
443 * be available for allocation again. This means that this
444 * method will stop the "delay after error"-timer and set the
445 * state to LCHAN_S_NONE.
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200446 */
447void lchan_reset(struct gsm_lchan *lchan)
448{
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200449 osmo_timer_del(&lchan->T3101);
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100450 osmo_timer_del(&lchan->T3109);
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200451 osmo_timer_del(&lchan->T3111);
452 osmo_timer_del(&lchan->error_timer);
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200453
454 lchan->type = GSM_LCHAN_NONE;
455 lchan->state = LCHAN_S_NONE;
Holger Hans Peter Freyther00452c42012-01-17 15:27:33 +0100456
457 if (lchan->abis_ip.rtp_socket) {
458 rtp_socket_free(lchan->abis_ip.rtp_socket);
459 lchan->abis_ip.rtp_socket = NULL;
460 }
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200461}
462
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800463/* Drive the release process of the lchan */
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100464static void _lchan_handle_release(struct gsm_lchan *lchan,
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100465 int sacch_deact, int mode)
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800466{
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100467 /* Release all SAPIs on the local end and continue */
468 rsl_release_sapis_from(lchan, 1, RSL_REL_LOCAL_END);
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800469
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100470 /*
471 * Shall we send a RR Release, start T3109 and wait for the
472 * release indication from the BTS or just take it down (e.g.
473 * on assignment requests)
474 */
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100475 if (sacch_deact) {
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800476 gsm48_send_rr_release(lchan);
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100477
478 /* Deactivate the SACCH on the BTS side */
479 rsl_deact_sacch(lchan);
480 rsl_start_t3109(lchan);
Holger Hans Peter Freytherc63cb862012-12-25 23:45:14 +0100481 } else if (lchan->sapis[0] == LCHAN_SAPI_UNUSED) {
482 rsl_direct_rf_release(lchan);
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100483 } else {
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100484 rsl_release_request(lchan, 0, mode);
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100485 }
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800486}
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200487
Harald Welte59b04682009-06-10 05:40:52 +0800488/* Consider releasing the channel now */
Holger Hans Peter Freyther2806c792012-12-06 12:01:38 +0100489int lchan_release(struct gsm_lchan *lchan, int sacch_deact, enum rsl_rel_mode mode)
Harald Welte59b04682009-06-10 05:40:52 +0800490{
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800491 DEBUGP(DRLL, "%s starting release sequence\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther79a62f42010-04-10 00:14:55 +0200492 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800493
Holger Hans Peter Freyther5322dbf2010-11-14 16:04:46 +0100494 lchan->conn = NULL;
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100495 _lchan_handle_release(lchan, sacch_deact, mode);
Harald Welte59b04682009-06-10 05:40:52 +0800496 return 1;
497}
498
Holger Hans Peter Freyther8bf60d42010-06-16 13:05:35 +0800499static struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200500 struct gsm_bts_trx *trx;
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200501 int ts_no, lchan_no;
Harald Welte59b04682009-06-10 05:40:52 +0800502
Harald Weltee712a5f2009-06-21 16:17:15 +0200503 llist_for_each_entry(trx, &bts->trx_list, list) {
Harald Welte59b04682009-06-10 05:40:52 +0800504 for (ts_no = 0; ts_no < 8; ++ts_no) {
505 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
506 struct gsm_lchan *lchan =
Harald Weltee712a5f2009-06-21 16:17:15 +0200507 &trx->ts[ts_no].lchan[lchan_no];
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800508 if (lchan->conn && subscr == lchan->conn->subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800509 return lchan;
510 }
511 }
512 }
513
514 return NULL;
515}
Harald Welteaa60edb2009-08-09 18:52:33 +0200516
Holger Hans Peter Freyther2f4af772010-06-16 13:23:55 +0800517struct gsm_subscriber_connection *connection_for_subscr(struct gsm_subscriber *subscr)
Harald Welteaa60edb2009-08-09 18:52:33 +0200518{
519 struct gsm_bts *bts;
Jacob Erlbeckda8770b2014-12-03 09:28:24 +0100520 struct gsm_network *net = subscr->group->net;
Harald Welteaa60edb2009-08-09 18:52:33 +0200521 struct gsm_lchan *lchan;
522
523 llist_for_each_entry(bts, &net->bts_list, list) {
524 lchan = lchan_find(bts, subscr);
525 if (lchan)
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800526 return lchan->conn;
Harald Welteaa60edb2009-08-09 18:52:33 +0200527 }
528
Holger Hans Peter Freyther3265b1a2009-10-27 10:42:53 +0100529 return NULL;
Harald Welteaa60edb2009-08-09 18:52:33 +0200530}
Harald Weltefe96f382009-12-22 13:09:29 +0100531
532void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
533{
534 struct gsm_bts_trx *trx;
535
536 llist_for_each_entry(trx, &bts->trx_list, list) {
537 int i;
538
539 /* skip administratively deactivated tranxsceivers */
Harald Welte69f6f812011-05-30 12:07:53 +0200540 if (!nm_is_running(&trx->mo.nm_state) ||
541 !nm_is_running(&trx->bb_transc.mo.nm_state))
Harald Weltefe96f382009-12-22 13:09:29 +0100542 continue;
543
544 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
545 struct gsm_bts_trx_ts *ts = &trx->ts[i];
546 struct load_counter *pl = &cl->pchan[ts->pchan];
547 int j;
548
549 /* skip administratively deactivated timeslots */
Harald Welte69f6f812011-05-30 12:07:53 +0200550 if (!nm_is_running(&ts->mo.nm_state))
Harald Weltefe96f382009-12-22 13:09:29 +0100551 continue;
552
553 for (j = 0; j < subslots_per_pchan[ts->pchan]; j++) {
554 struct gsm_lchan *lchan = &ts->lchan[j];
555
556 pl->total++;
557
558 switch (lchan->state) {
559 case LCHAN_S_NONE:
560 break;
561 default:
562 pl->used++;
563 break;
564 }
565 }
566 }
567 }
568}
569
570void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
571{
572 struct gsm_bts *bts;
573
574 memset(pl, 0, sizeof(*pl));
575
576 llist_for_each_entry(bts, &net->bts_list, list)
577 bts_chan_load(pl, bts);
578}
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800579