blob: d9808f42edb39575f8bfa416aa6e4f96255de369 [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
Holger Hans Peter Freyther35470452010-12-22 18:13:00 +010028#include <openbsc/gsm_subscriber.h>
Harald Welte8470bf22008-12-25 23:28:35 +000029#include <openbsc/chan_alloc.h>
Harald Welte4b634542008-12-27 01:55:51 +000030#include <openbsc/abis_nm.h>
Holger Freyther67b4b9a2009-01-01 03:46:11 +000031#include <openbsc/abis_rsl.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000032#include <openbsc/debug.h>
Holger Hans Peter Freytherf95f2732012-01-17 15:27:33 +010033#include <openbsc/rtp_proxy.h>
Holger Freyther7c19f742009-06-06 13:54:35 +000034#include <openbsc/signal.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000035
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +080037
Harald Welte4c704542009-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 Welted64c0bc2011-05-30 12:07:53 +020042 if (!nm_is_running(&ts->mo.nm_state))
Harald Welte4c704542009-12-24 10:10:16 +010043 return 0;
44 }
45
Neels Hofmeyrc6926d02016-07-14 02:51:13 +020046 /* If a TCH/F_PDCH TS is busy changing, it is already taken or not
Neels Hofmeyr832afa32016-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 Hofmeyrfdd9ad72016-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 Welte4c704542009-12-24 10:10:16 +010060 return 1;
61}
62
Harald Welte (local)82ff3972009-12-28 16:36:28 +010063int trx_is_usable(struct gsm_bts_trx *trx)
Harald Welte4c704542009-12-24 10:10:16 +010064{
65 /* FIXME: How does this behave for BS-11 ? */
66 if (is_ipaccess_bts(trx->bts)) {
Harald Welted64c0bc2011-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 Welte4c704542009-12-24 10:10:16 +010069 return 0;
70 }
71
72 return 1;
73}
74
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020075static const uint8_t subslots_per_pchan[] = {
Harald Welte8470bf22008-12-25 23:28:35 +000076 [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 Welte4bfdfe72009-06-10 23:11:52 +080081 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Weltec0d83b02010-03-28 15:58:03 +080082 [GSM_PCHAN_TCH_F_PDCH] = 1,
Harald Welte30f1f372014-12-28 15:00:45 +010083 [GSM_PCHAN_CCCH_SDCCH4_CBCH] = 4,
84 [GSM_PCHAN_SDCCH8_SACCH8C_CBCH] = 8,
Neels Hofmeyrfdd9ad72016-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 Welte8470bf22008-12-25 23:28:35 +000089};
90
Neels Hofmeyrb91e6002016-07-23 19:45:15 +020091/*! According to ts->pchan and possibly ts->dyn_pchan, return the number of
92 * logical channels available in the timeslot. */
93uint8_t ts_subslots(struct gsm_bts_trx_ts *ts)
94{
95 if (ts->pchan == GSM_PCHAN_TCH_F_TCH_H_PDCH)
96 return subslots_per_pchan[ts->dyn.pchan_is];
97 return subslots_per_pchan[ts->pchan];
98}
99
Harald Welte8470bf22008-12-25 23:28:35 +0000100static struct gsm_lchan *
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200101_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan,
102 enum gsm_phys_chan_config dyn_as_pchan)
Harald Welte8470bf22008-12-25 23:28:35 +0000103{
Harald Welte8470bf22008-12-25 23:28:35 +0000104 struct gsm_bts_trx_ts *ts;
Andreas Eversberg0434efa2013-10-11 13:05:16 +0200105 int j, start, stop, dir, ss;
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200106 int check_subslots;
Harald Welte88367262009-08-10 13:25:55 +0200107
Harald Welte4c704542009-12-24 10:10:16 +0100108 if (!trx_is_usable(trx))
109 return NULL;
110
Andreas Eversberg0434efa2013-10-11 13:05:16 +0200111 if (trx->bts->chan_alloc_reverse) {
112 /* check TS 7..0 */
113 start = 7;
114 stop = -1;
115 dir = -1;
116 } else {
117 /* check TS 0..7 */
118 start = 0;
119 stop = 8;
120 dir = 1;
121 }
122
123 for (j = start; j != stop; j += dir) {
Harald Weltefc0d9522009-08-10 13:46:55 +0200124 ts = &trx->ts[j];
Harald Welte4c704542009-12-24 10:10:16 +0100125 if (!ts_is_usable(ts))
126 continue;
Neels Hofmeyra6685252016-06-06 12:53:25 +0200127 if (ts->pchan != pchan)
Harald Weltefc0d9522009-08-10 13:46:55 +0200128 continue;
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200129
130 /*
131 * Allocation for fully dynamic timeslots
132 * (does not apply for ip.access style GSM_PCHAN_TCH_F_PDCH)
133 *
134 * Note the special nature of a dynamic timeslot in PDCH mode:
135 * in PDCH mode, typically, lchan->type is GSM_LCHAN_NONE and
136 * lchan->state is LCHAN_S_NONE -- an otherwise unused slot
137 * becomes PDCH implicitly. In the same sense, this channel
138 * allocator will never be asked to find an available PDCH
139 * slot; only TCH/F or TCH/H will be requested, and PDCH mode
140 * means that it is available for switchover.
141 *
142 * A dynamic timeslot in PDCH mode may be switched to TCH/F or
143 * TCH/H. If a dyn TS is already in TCH/F or TCH/H mode, it
144 * means that it is in use and its mode can't be switched.
145 *
146 * The logic concerning channels for TCH/F is trivial: there is
147 * only one channel, so a dynamic TS in TCH/F mode is already
148 * taken and not available for allocation. For TCH/H, we need
149 * to check whether a dynamic timeslot is already in TCH/H mode
150 * and whether one of the two channels is still available.
151 */
152 if (pchan == GSM_PCHAN_TCH_F_TCH_H_PDCH) {
153 if (ts->dyn.pchan_is != ts->dyn.pchan_want) {
154 /* The TS's mode is being switched. Not
155 * available anymore/yet. */
156 DEBUGP(DRLL, "%s already in switchover\n",
157 gsm_ts_and_pchan_name(ts));
158 continue;
159 }
160 if (ts->dyn.pchan_is == GSM_PCHAN_PDCH) {
161 /* This slot is available. Still check for
162 * error states to be sure; in all cases the
163 * first lchan will be used. */
164 if (ts->lchan->state != LCHAN_S_NONE
165 && ts->lchan->state != LCHAN_S_ACTIVE)
166 continue;
167 return ts->lchan;
168 }
169 if (ts->dyn.pchan_is == dyn_as_pchan) {
170 /* The requested type matches the dynamic
171 * timeslot's current mode. A channel may still
172 * be available (think TCH/H). */
173 check_subslots = subslots_per_pchan[ts->dyn.pchan_is];
174 } else
175 /* Otherwise this slot is not applicable. */
176 continue;
177 } else {
178 /* Not a dynamic channel, there is only one pchan kind: */
179 check_subslots = subslots_per_pchan[pchan];
180 }
181
182 /* Is a sub-slot still available? */
183 for (ss = 0; ss < check_subslots; ss++) {
Harald Weltefc0d9522009-08-10 13:46:55 +0200184 struct gsm_lchan *lc = &ts->lchan[ss];
Harald Welte (local)3e460312009-12-27 18:12:29 +0100185 if (lc->type == GSM_LCHAN_NONE &&
186 lc->state == LCHAN_S_NONE)
Harald Weltefc0d9522009-08-10 13:46:55 +0200187 return lc;
Harald Welte8470bf22008-12-25 23:28:35 +0000188 }
189 }
Harald Weltec0d83b02010-03-28 15:58:03 +0800190
Harald Weltefc0d9522009-08-10 13:46:55 +0200191 return NULL;
192}
193
194static struct gsm_lchan *
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200195_lc_dyn_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan,
196 enum gsm_phys_chan_config dyn_as_pchan)
Harald Weltefc0d9522009-08-10 13:46:55 +0200197{
198 struct gsm_bts_trx *trx;
Harald Weltefc0d9522009-08-10 13:46:55 +0200199 struct gsm_lchan *lc;
200
201 if (bts->chan_alloc_reverse) {
202 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200203 lc = _lc_find_trx(trx, pchan, dyn_as_pchan);
Harald Weltefc0d9522009-08-10 13:46:55 +0200204 if (lc)
205 return lc;
206 }
207 } else {
208 llist_for_each_entry(trx, &bts->trx_list, list) {
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200209 lc = _lc_find_trx(trx, pchan, dyn_as_pchan);
Harald Weltefc0d9522009-08-10 13:46:55 +0200210 if (lc)
211 return lc;
212 }
213 }
214
Harald Weltef86852c2015-01-01 12:46:26 +0100215 return NULL;
Harald Welte8470bf22008-12-25 23:28:35 +0000216}
217
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200218static struct gsm_lchan *
219_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
220{
221 return _lc_dyn_find_bts(bts, pchan, GSM_PCHAN_NONE);
222}
223
Neels Hofmeyra6685252016-06-06 12:53:25 +0200224/* Allocate a logical channel.
225 *
Neels Hofmeyrc6926d02016-07-14 02:51:13 +0200226 * Dynamic channel types: we always prefer a dedicated TS, and only pick +
227 * switch a dynamic TS if no pure TS of the requested PCHAN is available.
228 *
229 * TCH_F/PDCH: if we pick a PDCH ACT style dynamic TS as TCH/F channel, PDCH
230 * will be disabled in rsl_chan_activate_lchan(); there is no need to check
231 * whether PDCH mode is currently active, here.
Neels Hofmeyra6685252016-06-06 12:53:25 +0200232 */
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800233struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type,
234 int allow_bigger)
Harald Welte8470bf22008-12-25 23:28:35 +0000235{
236 struct gsm_lchan *lchan = NULL;
Harald Welte30f1f372014-12-28 15:00:45 +0100237 enum gsm_phys_chan_config first, first_cbch, second, second_cbch;
Harald Welte8470bf22008-12-25 23:28:35 +0000238
239 switch (type) {
240 case GSM_LCHAN_SDCCH:
Harald Welte65676fe2009-08-10 14:44:24 +0200241 if (bts->chan_alloc_reverse) {
242 first = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Welte30f1f372014-12-28 15:00:45 +0100243 first_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200244 second = GSM_PCHAN_CCCH_SDCCH4;
Harald Welte30f1f372014-12-28 15:00:45 +0100245 second_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200246 } else {
247 first = GSM_PCHAN_CCCH_SDCCH4;
Harald Welte30f1f372014-12-28 15:00:45 +0100248 first_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200249 second = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Welte30f1f372014-12-28 15:00:45 +0100250 second_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200251 }
252
253 lchan = _lc_find_bts(bts, first);
Harald Welte8470bf22008-12-25 23:28:35 +0000254 if (lchan == NULL)
Harald Welte30f1f372014-12-28 15:00:45 +0100255 lchan = _lc_find_bts(bts, first_cbch);
256 if (lchan == NULL)
Harald Welte65676fe2009-08-10 14:44:24 +0200257 lchan = _lc_find_bts(bts, second);
Harald Welte30f1f372014-12-28 15:00:45 +0100258 if (lchan == NULL)
259 lchan = _lc_find_bts(bts, second_cbch);
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800260
261 /* allow to assign bigger channels */
262 if (allow_bigger) {
263 if (lchan == NULL) {
264 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
Neels Hofmeyrf5713a52016-06-06 12:57:22 +0200265 if (lchan)
266 type = GSM_LCHAN_TCH_H;
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800267 }
268
269 if (lchan == NULL) {
270 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Neels Hofmeyrf5713a52016-06-06 12:57:22 +0200271 if (lchan)
272 type = GSM_LCHAN_TCH_F;
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800273 }
Neels Hofmeyra6685252016-06-06 12:53:25 +0200274
275 /* try dynamic TCH/F_PDCH */
276 if (lchan == NULL) {
277 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
278 /* TCH/F_PDCH will be used as TCH/F */
279 if (lchan)
280 type = GSM_LCHAN_TCH_F;
281 }
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200282
283 /* try fully dynamic TCH/F_TCH/H_PDCH */
284 if (lchan == NULL) {
285 lchan = _lc_dyn_find_bts(bts, GSM_PCHAN_TCH_F_TCH_H_PDCH,
286 GSM_PCHAN_TCH_H);
287 if (lchan)
288 type = GSM_LCHAN_TCH_H;
289 }
290 /*
291 * No need to check fully dynamic channels for TCH/F:
292 * if no TCH/H was available, neither will be TCH/F.
293 */
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800294 }
Harald Welte8470bf22008-12-25 23:28:35 +0000295 break;
296 case GSM_LCHAN_TCH_F:
Harald Weltefc0d9522009-08-10 13:46:55 +0200297 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Weltea4c63b02014-05-18 22:23:26 +0200298 /* If we don't have TCH/F available, fall-back to TCH/H */
299 if (!lchan) {
300 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
Neels Hofmeyrf5713a52016-06-06 12:57:22 +0200301 if (lchan)
302 type = GSM_LCHAN_TCH_H;
Harald Weltea4c63b02014-05-18 22:23:26 +0200303 }
Neels Hofmeyra6685252016-06-06 12:53:25 +0200304 /* If we don't have TCH/H either, try dynamic TCH/F_PDCH */
305 if (!lchan) {
306 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
307 /* TCH/F_PDCH used as TCH/F -- here, type is already
308 * set to GSM_LCHAN_TCH_F, but for clarity's sake... */
309 if (lchan)
310 type = GSM_LCHAN_TCH_F;
311 }
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +0200312
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200313 /* Try fully dynamic TCH/F_TCH/H_PDCH as TCH/F... */
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +0200314 if (!lchan && bts->network->dyn_ts_allow_tch_f) {
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200315 lchan = _lc_dyn_find_bts(bts,
316 GSM_PCHAN_TCH_F_TCH_H_PDCH,
317 GSM_PCHAN_TCH_F);
318 if (lchan)
319 type = GSM_LCHAN_TCH_F;
320 }
321 /* ...and as TCH/H. */
322 if (!lchan) {
323 lchan = _lc_dyn_find_bts(bts,
324 GSM_PCHAN_TCH_F_TCH_H_PDCH,
325 GSM_PCHAN_TCH_H);
326 if (lchan)
327 type = GSM_LCHAN_TCH_H;
328 }
Harald Welte8470bf22008-12-25 23:28:35 +0000329 break;
330 case GSM_LCHAN_TCH_H:
Harald Weltefc0d9522009-08-10 13:46:55 +0200331 lchan =_lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte210c8502009-12-12 20:58:20 +0100332 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte487e6be2009-12-12 21:16:38 +0100333 if (!lchan) {
Harald Welte210c8502009-12-12 20:58:20 +0100334 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Neels Hofmeyrf5713a52016-06-06 12:57:22 +0200335 if (lchan)
336 type = GSM_LCHAN_TCH_F;
Harald Welte487e6be2009-12-12 21:16:38 +0100337 }
Neels Hofmeyrfdd9ad72016-07-14 03:01:24 +0200338 /* No dedicated TCH/x available -- try fully dynamic
339 * TCH/F_TCH/H_PDCH */
340 if (!lchan) {
341 lchan = _lc_dyn_find_bts(bts,
342 GSM_PCHAN_TCH_F_TCH_H_PDCH,
343 GSM_PCHAN_TCH_H);
344 if (lchan)
345 type = GSM_LCHAN_TCH_H;
346 }
347 /*
348 * No need to check TCH/F_TCH/H_PDCH channels for TCH/F:
349 * if no TCH/H was available, neither will be TCH/F.
350 */
Neels Hofmeyra6685252016-06-06 12:53:25 +0200351 /* If we don't have TCH/F either, try dynamic TCH/F_PDCH */
352 if (!lchan) {
353 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F_PDCH);
354 if (lchan)
355 type = GSM_LCHAN_TCH_F;
356 }
Harald Welte8470bf22008-12-25 23:28:35 +0000357 break;
358 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100359 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte8470bf22008-12-25 23:28:35 +0000360 }
361
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000362 if (lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000363 lchan->type = type;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000364
Neels Hofmeyrd1c0e372016-07-25 12:33:02 +0200365 LOGP(DRLL, LOGL_INFO, "%s Allocating lchan=%u as %s\n",
366 gsm_ts_and_pchan_name(lchan->ts),
367 lchan->nr, gsm_lchant_name(lchan->type));
368
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100369 /* clear sapis */
Holger Hans Peter Freyther45b02432009-11-18 22:59:51 +0100370 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100371
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100372 /* clear multi rate config */
Andreas Eversberg73266522014-01-19 11:47:44 +0100373 memset(&lchan->mr_ms_lv, 0, sizeof(lchan->mr_ms_lv));
374 memset(&lchan->mr_bts_lv, 0, sizeof(lchan->mr_bts_lv));
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +0100375 lchan->broken_reason = "";
Harald Weltec0d83b02010-03-28 15:58:03 +0800376 } else {
377 struct challoc_signal_data sig;
Neels Hofmeyrd1c0e372016-07-25 12:33:02 +0200378
379 LOGP(DRLL, LOGL_ERROR, "Failed to allocate %s channel\n",
380 gsm_lchant_name(type));
381
Harald Weltec0d83b02010-03-28 15:58:03 +0800382 sig.bts = bts;
383 sig.type = type;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200384 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_ALLOC_FAIL, &sig);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000385 }
Harald Welte8470bf22008-12-25 23:28:35 +0000386
387 return lchan;
388}
389
390/* Free a logical channel */
391void lchan_free(struct gsm_lchan *lchan)
392{
Harald Weltec0d83b02010-03-28 15:58:03 +0800393 struct challoc_signal_data sig;
Harald Welted12b0fd2009-12-15 21:36:05 +0100394 int i;
395
Harald Weltec0d83b02010-03-28 15:58:03 +0800396 sig.type = lchan->type;
Harald Welte8470bf22008-12-25 23:28:35 +0000397 lchan->type = GSM_LCHAN_NONE;
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800398
399
400 if (lchan->conn) {
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100401 struct lchan_signal_data sig;
402
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800403 /* We might kill an active channel... */
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100404 sig.lchan = lchan;
405 sig.mr = NULL;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200406 osmo_signal_dispatch(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, &sig);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000407 }
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000408
Holger Hans Peter Freytherf95f2732012-01-17 15:27:33 +0100409 if (lchan->abis_ip.rtp_socket) {
410 LOGP(DRLL, LOGL_ERROR, "%s RTP Proxy Socket remained open.\n",
411 gsm_lchan_name(lchan));
412 rtp_socket_free(lchan->abis_ip.rtp_socket);
413 lchan->abis_ip.rtp_socket = NULL;
414 }
Harald Weltec627afc2009-01-09 21:39:17 +0000415
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000416 /* stop the timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200417 osmo_timer_del(&lchan->T3101);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000418
Harald Welted12b0fd2009-12-15 21:36:05 +0100419 /* clear cached measuement reports */
420 lchan->meas_rep_idx = 0;
421 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
422 lchan->meas_rep[i].flags = 0;
423 lchan->meas_rep[i].nr = 0;
424 }
Harald Weltef7c28b02009-12-21 13:30:17 +0100425 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
426 lchan->neigh_meas[i].arfcn = 0;
Harald Welted12b0fd2009-12-15 21:36:05 +0100427
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +0800428 if (lchan->rqd_ref) {
429 talloc_free(lchan->rqd_ref);
430 lchan->rqd_ref = NULL;
431 lchan->rqd_ta = 0;
432 }
433
Harald Weltec0d83b02010-03-28 15:58:03 +0800434 sig.lchan = lchan;
435 sig.bts = lchan->ts->trx->bts;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200436 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_FREED, &sig);
Harald Weltec0d83b02010-03-28 15:58:03 +0800437
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800438 if (lchan->conn) {
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800439 LOGP(DRLL, LOGL_ERROR, "the subscriber connection should be gone.\n");
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800440 lchan->conn = NULL;
441 }
442
Harald Welte8470bf22008-12-25 23:28:35 +0000443 /* FIXME: ts_free() the timeslot, if we're the last logical
444 * channel using it */
445}
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000446
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200447/*
448 * There was an error with the TRX and we need to forget
449 * any state so that a lchan can be allocated again after
450 * the trx is fully usable.
Holger Hans Peter Freytherf7a1c232010-06-22 12:19:06 +0800451 *
452 * This should be called after lchan_free to force a channel
453 * be available for allocation again. This means that this
454 * method will stop the "delay after error"-timer and set the
455 * state to LCHAN_S_NONE.
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200456 */
457void lchan_reset(struct gsm_lchan *lchan)
458{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200459 osmo_timer_del(&lchan->T3101);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100460 osmo_timer_del(&lchan->T3109);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200461 osmo_timer_del(&lchan->T3111);
462 osmo_timer_del(&lchan->error_timer);
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200463
464 lchan->type = GSM_LCHAN_NONE;
465 lchan->state = LCHAN_S_NONE;
Holger Hans Peter Freytherf95f2732012-01-17 15:27:33 +0100466
467 if (lchan->abis_ip.rtp_socket) {
468 rtp_socket_free(lchan->abis_ip.rtp_socket);
469 lchan->abis_ip.rtp_socket = NULL;
470 }
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200471}
472
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800473/* Drive the release process of the lchan */
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100474static void _lchan_handle_release(struct gsm_lchan *lchan,
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100475 int sacch_deact, int mode)
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800476{
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100477 /* Release all SAPIs on the local end and continue */
478 rsl_release_sapis_from(lchan, 1, RSL_REL_LOCAL_END);
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800479
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100480 /*
481 * Shall we send a RR Release, start T3109 and wait for the
482 * release indication from the BTS or just take it down (e.g.
483 * on assignment requests)
484 */
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100485 if (sacch_deact) {
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800486 gsm48_send_rr_release(lchan);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100487
488 /* Deactivate the SACCH on the BTS side */
489 rsl_deact_sacch(lchan);
490 rsl_start_t3109(lchan);
Holger Hans Peter Freyther006e3d82012-12-25 23:45:14 +0100491 } else if (lchan->sapis[0] == LCHAN_SAPI_UNUSED) {
492 rsl_direct_rf_release(lchan);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100493 } else {
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100494 rsl_release_request(lchan, 0, mode);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100495 }
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800496}
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200497
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000498/* Consider releasing the channel now */
Holger Hans Peter Freyther5ca825e2012-12-06 12:01:38 +0100499int lchan_release(struct gsm_lchan *lchan, int sacch_deact, enum rsl_rel_mode mode)
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000500{
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800501 DEBUGP(DRLL, "%s starting release sequence\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther63d18b52010-04-10 00:14:55 +0200502 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800503
Holger Hans Peter Freytherabf962b2010-11-14 16:04:46 +0100504 lchan->conn = NULL;
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100505 _lchan_handle_release(lchan, sacch_deact, mode);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000506 return 1;
507}
508
Holger Hans Peter Freytherea01ca72010-06-16 13:05:35 +0800509static struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200510 struct gsm_bts_trx *trx;
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200511 int ts_no, lchan_no;
Holger Freytherd0e38c32009-01-04 03:48:30 +0000512
Harald Weltee441d9c2009-06-21 16:17:15 +0200513 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Freytherd0e38c32009-01-04 03:48:30 +0000514 for (ts_no = 0; ts_no < 8; ++ts_no) {
515 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
516 struct gsm_lchan *lchan =
Harald Weltee441d9c2009-06-21 16:17:15 +0200517 &trx->ts[ts_no].lchan[lchan_no];
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800518 if (lchan->conn && subscr == lchan->conn->subscr)
Holger Freytherd0e38c32009-01-04 03:48:30 +0000519 return lchan;
520 }
521 }
522 }
523
524 return NULL;
525}
Harald Welte1a6f7982009-08-09 18:52:33 +0200526
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +0800527struct gsm_subscriber_connection *connection_for_subscr(struct gsm_subscriber *subscr)
Harald Welte1a6f7982009-08-09 18:52:33 +0200528{
529 struct gsm_bts *bts;
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100530 struct gsm_network *net = subscr->group->net;
Harald Welte1a6f7982009-08-09 18:52:33 +0200531 struct gsm_lchan *lchan;
532
533 llist_for_each_entry(bts, &net->bts_list, list) {
534 lchan = lchan_find(bts, subscr);
535 if (lchan)
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800536 return lchan->conn;
Harald Welte1a6f7982009-08-09 18:52:33 +0200537 }
538
Holger Hans Peter Freytherba925872009-10-27 10:42:53 +0100539 return NULL;
Harald Welte1a6f7982009-08-09 18:52:33 +0200540}
Harald Welteb908cb72009-12-22 13:09:29 +0100541
542void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
543{
544 struct gsm_bts_trx *trx;
545
546 llist_for_each_entry(trx, &bts->trx_list, list) {
547 int i;
548
549 /* skip administratively deactivated tranxsceivers */
Harald Welted64c0bc2011-05-30 12:07:53 +0200550 if (!nm_is_running(&trx->mo.nm_state) ||
551 !nm_is_running(&trx->bb_transc.mo.nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100552 continue;
553
554 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
555 struct gsm_bts_trx_ts *ts = &trx->ts[i];
556 struct load_counter *pl = &cl->pchan[ts->pchan];
557 int j;
Neels Hofmeyr36733802016-07-29 18:10:59 +0200558 int subslots;
Harald Welteb908cb72009-12-22 13:09:29 +0100559
560 /* skip administratively deactivated timeslots */
Harald Welted64c0bc2011-05-30 12:07:53 +0200561 if (!nm_is_running(&ts->mo.nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100562 continue;
563
Neels Hofmeyr36733802016-07-29 18:10:59 +0200564 subslots = ts_subslots(ts);
565 for (j = 0; j < subslots; j++) {
Harald Welteb908cb72009-12-22 13:09:29 +0100566 struct gsm_lchan *lchan = &ts->lchan[j];
567
568 pl->total++;
569
570 switch (lchan->state) {
571 case LCHAN_S_NONE:
572 break;
573 default:
574 pl->used++;
575 break;
576 }
577 }
578 }
579 }
580}
581
582void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
583{
584 struct gsm_bts *bts;
585
586 memset(pl, 0, sizeof(*pl));
587
588 llist_for_each_entry(bts, &net->bts_list, list)
589 bts_chan_load(pl, bts);
590}
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800591