blob: 51bd76f20ebadb4c4ee94663afc3f3ff168f3133 [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
46 return 1;
47}
48
Harald Welte (local)43db2bf2009-12-28 16:36:28 +010049int trx_is_usable(struct gsm_bts_trx *trx)
Harald Welteedc7b2f2009-12-24 10:10:16 +010050{
51 /* FIXME: How does this behave for BS-11 ? */
52 if (is_ipaccess_bts(trx->bts)) {
Harald Welte69f6f812011-05-30 12:07:53 +020053 if (!nm_is_running(&trx->mo.nm_state) ||
54 !nm_is_running(&trx->bb_transc.mo.nm_state))
Harald Welteedc7b2f2009-12-24 10:10:16 +010055 return 0;
56 }
57
58 return 1;
59}
60
Harald Welte59b04682009-06-10 05:40:52 +080061struct gsm_bts_trx_ts *ts_c0_alloc(struct gsm_bts *bts,
62 enum gsm_phys_chan_config pchan)
63{
Harald Weltee712a5f2009-06-21 16:17:15 +020064 struct gsm_bts_trx *trx = bts->c0;
Harald Welte59b04682009-06-10 05:40:52 +080065 struct gsm_bts_trx_ts *ts = &trx->ts[0];
66
67 if (pchan != GSM_PCHAN_CCCH &&
Harald Weltebf4ba722014-12-28 15:00:45 +010068 pchan != GSM_PCHAN_CCCH_SDCCH4 &&
69 pchan != GSM_PCHAN_CCCH_SDCCH4_CBCH)
Harald Welte59b04682009-06-10 05:40:52 +080070 return NULL;
71
72 if (ts->pchan != GSM_PCHAN_NONE)
73 return NULL;
74
75 ts->pchan = pchan;
76
77 return ts;
78}
79
Harald Welte03740842009-06-10 23:11:52 +080080/* Allocate a physical channel (TS) */
Harald Welte59b04682009-06-10 05:40:52 +080081struct gsm_bts_trx_ts *ts_alloc(struct gsm_bts *bts,
82 enum gsm_phys_chan_config pchan)
83{
Harald Welte351ff122009-08-10 13:25:55 +020084 int j;
85 struct gsm_bts_trx *trx;
86
87 llist_for_each_entry(trx, &bts->trx_list, list) {
Harald Welte59b04682009-06-10 05:40:52 +080088 int from, to;
89
Harald Welteedc7b2f2009-12-24 10:10:16 +010090 if (!trx_is_usable(trx))
91 continue;
92
Harald Welte59b04682009-06-10 05:40:52 +080093 /* the following constraints are pure policy,
94 * no requirement to put this restriction in place */
Harald Welte3a9c2c02009-07-29 16:46:37 +020095 if (trx == bts->c0) {
96 /* On the first TRX we run one CCCH and one SDCCH8 */
97 switch (pchan) {
98 case GSM_PCHAN_CCCH:
99 case GSM_PCHAN_CCCH_SDCCH4:
Harald Weltebf4ba722014-12-28 15:00:45 +0100100 case GSM_PCHAN_CCCH_SDCCH4_CBCH:
Harald Welte3a9c2c02009-07-29 16:46:37 +0200101 from = 0; to = 0;
102 break;
Harald Welte3a9c2c02009-07-29 16:46:37 +0200103 case GSM_PCHAN_TCH_F:
104 case GSM_PCHAN_TCH_H:
Harald Welte7f863f52009-08-09 22:01:26 +0200105 from = 1; to = 7;
Harald Welte3a9c2c02009-07-29 16:46:37 +0200106 break;
Harald Welte7f863f52009-08-09 22:01:26 +0200107 case GSM_PCHAN_SDCCH8_SACCH8C:
Harald Weltebf4ba722014-12-28 15:00:45 +0100108 case GSM_PCHAN_SDCCH8_SACCH8C_CBCH:
Harald Welte3a9c2c02009-07-29 16:46:37 +0200109 default:
110 return NULL;
111 }
112 } else {
113 /* Every secondary TRX is configured for TCH/F
114 * and TCH/H only */
115 switch (pchan) {
Harald Welteea003cd2015-01-01 12:13:42 +0100116 case GSM_PCHAN_SDCCH8_SACCH8C:
Harald Weltebf4ba722014-12-28 15:00:45 +0100117 case GSM_PCHAN_SDCCH8_SACCH8C_CBCH:
Harald Welte7f863f52009-08-09 22:01:26 +0200118 from = 1; to = 1;
Harald Welte3a9c2c02009-07-29 16:46:37 +0200119 case GSM_PCHAN_TCH_F:
120 case GSM_PCHAN_TCH_H:
Harald Welte7f863f52009-08-09 22:01:26 +0200121 from = 1; to = 7;
Harald Welte3a9c2c02009-07-29 16:46:37 +0200122 break;
123 default:
124 return NULL;
125 }
Harald Welte59b04682009-06-10 05:40:52 +0800126 }
127
128 for (j = from; j <= to; j++) {
129 struct gsm_bts_trx_ts *ts = &trx->ts[j];
Harald Welteedc7b2f2009-12-24 10:10:16 +0100130
131 if (!ts_is_usable(ts))
132 continue;
133
Harald Welte59b04682009-06-10 05:40:52 +0800134 if (ts->pchan == GSM_PCHAN_NONE) {
135 ts->pchan = pchan;
136 /* set channel attribute on OML */
Harald Welte35cd5e92009-08-10 12:21:22 +0200137 abis_nm_set_channel_attr(ts, abis_nm_chcomb4pchan(pchan));
Harald Welte59b04682009-06-10 05:40:52 +0800138 return ts;
139 }
140 }
141 }
142 return NULL;
143}
144
145/* Free a physical channel (TS) */
146void ts_free(struct gsm_bts_trx_ts *ts)
147{
148 ts->pchan = GSM_PCHAN_NONE;
149}
150
Holger Hans Peter Freyther7eb8a9a2011-04-18 17:04:00 +0200151static const uint8_t subslots_per_pchan[] = {
Harald Welte59b04682009-06-10 05:40:52 +0800152 [GSM_PCHAN_NONE] = 0,
153 [GSM_PCHAN_CCCH] = 0,
154 [GSM_PCHAN_CCCH_SDCCH4] = 4,
155 [GSM_PCHAN_TCH_F] = 1,
156 [GSM_PCHAN_TCH_H] = 2,
Harald Welte03740842009-06-10 23:11:52 +0800157 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Weltefe96f382009-12-22 13:09:29 +0100158 /* FIXME: what about dynamic TCH_F_TCH_H ? */
Harald Welte8f725442010-03-28 15:58:03 +0800159 [GSM_PCHAN_TCH_F_PDCH] = 1,
Harald Weltebf4ba722014-12-28 15:00:45 +0100160 [GSM_PCHAN_CCCH_SDCCH4_CBCH] = 4,
161 [GSM_PCHAN_SDCCH8_SACCH8C_CBCH] = 8,
Harald Welte59b04682009-06-10 05:40:52 +0800162};
163
164static struct gsm_lchan *
Harald Welteceb3c042009-08-10 13:46:55 +0200165_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan)
Harald Welte59b04682009-06-10 05:40:52 +0800166{
Harald Welte59b04682009-06-10 05:40:52 +0800167 struct gsm_bts_trx_ts *ts;
Harald Welte351ff122009-08-10 13:25:55 +0200168 int j, ss;
169
Harald Welteedc7b2f2009-12-24 10:10:16 +0100170 if (!trx_is_usable(trx))
171 return NULL;
172
Harald Welteceb3c042009-08-10 13:46:55 +0200173 for (j = 0; j < 8; j++) {
174 ts = &trx->ts[j];
Harald Welteedc7b2f2009-12-24 10:10:16 +0100175 if (!ts_is_usable(ts))
176 continue;
Harald Welte8f725442010-03-28 15:58:03 +0800177 /* ip.access dynamic TCH/F + PDCH combination */
178 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH &&
179 pchan == GSM_PCHAN_TCH_F) {
180 /* we can only consider such a dynamic channel
181 * if the PDCH is currently inactive */
182 if (ts->flags & TS_F_PDCH_MODE)
183 continue;
184 } else if (ts->pchan != pchan)
Harald Welteceb3c042009-08-10 13:46:55 +0200185 continue;
186 /* check if all sub-slots are allocated yet */
187 for (ss = 0; ss < subslots_per_pchan[pchan]; ss++) {
188 struct gsm_lchan *lc = &ts->lchan[ss];
Harald Welte (local)c3be50c2009-12-27 18:12:29 +0100189 if (lc->type == GSM_LCHAN_NONE &&
190 lc->state == LCHAN_S_NONE)
Harald Welteceb3c042009-08-10 13:46:55 +0200191 return lc;
Harald Welte59b04682009-06-10 05:40:52 +0800192 }
193 }
Harald Welte8f725442010-03-28 15:58:03 +0800194
Harald Welteceb3c042009-08-10 13:46:55 +0200195 return NULL;
196}
197
198static struct gsm_lchan *
199_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
200{
201 struct gsm_bts_trx *trx;
202 struct gsm_bts_trx_ts *ts;
203 struct gsm_lchan *lc;
204
205 if (bts->chan_alloc_reverse) {
206 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
207 lc = _lc_find_trx(trx, pchan);
208 if (lc)
209 return lc;
210 }
211 } else {
212 llist_for_each_entry(trx, &bts->trx_list, list) {
213 lc = _lc_find_trx(trx, pchan);
214 if (lc)
215 return lc;
216 }
217 }
218
Harald Welte59b04682009-06-10 05:40:52 +0800219 /* we cannot allocate more of these */
Harald Weltebf4ba722014-12-28 15:00:45 +0100220 if (pchan == GSM_PCHAN_CCCH_SDCCH4 ||
221 pchan == GSM_PCHAN_CCCH_SDCCH4_CBCH ||
222 pchan == GSM_PCHAN_SDCCH8_SACCH8C_CBCH)
Harald Welte59b04682009-06-10 05:40:52 +0800223 return NULL;
224
225 /* if we've reached here, we need to allocate a new physical
226 * channel for the logical channel type requested */
227 ts = ts_alloc(bts, pchan);
228 if (!ts) {
229 /* no more radio resources */
230 return NULL;
231 }
232 return &ts->lchan[0];
233}
234
235/* Allocate a logical channel */
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +0800236struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type,
237 int allow_bigger)
Harald Welte59b04682009-06-10 05:40:52 +0800238{
239 struct gsm_lchan *lchan = NULL;
Harald Weltebf4ba722014-12-28 15:00:45 +0100240 enum gsm_phys_chan_config first, first_cbch, second, second_cbch;
Harald Welte59b04682009-06-10 05:40:52 +0800241
242 switch (type) {
243 case GSM_LCHAN_SDCCH:
Harald Welteaf86c0f2009-08-10 14:44:24 +0200244 if (bts->chan_alloc_reverse) {
245 first = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Weltebf4ba722014-12-28 15:00:45 +0100246 first_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200247 second = GSM_PCHAN_CCCH_SDCCH4;
Harald Weltebf4ba722014-12-28 15:00:45 +0100248 second_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200249 } else {
250 first = GSM_PCHAN_CCCH_SDCCH4;
Harald Weltebf4ba722014-12-28 15:00:45 +0100251 first_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200252 second = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Weltebf4ba722014-12-28 15:00:45 +0100253 second_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200254 }
255
256 lchan = _lc_find_bts(bts, first);
Harald Welte59b04682009-06-10 05:40:52 +0800257 if (lchan == NULL)
Harald Weltebf4ba722014-12-28 15:00:45 +0100258 lchan = _lc_find_bts(bts, first_cbch);
259 if (lchan == NULL)
Harald Welteaf86c0f2009-08-10 14:44:24 +0200260 lchan = _lc_find_bts(bts, second);
Harald Weltebf4ba722014-12-28 15:00:45 +0100261 if (lchan == NULL)
262 lchan = _lc_find_bts(bts, second_cbch);
Holger Hans Peter Freytherdb392032010-09-06 08:58:42 +0800263
264 /* allow to assign bigger channels */
265 if (allow_bigger) {
266 if (lchan == NULL) {
267 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
268 type = GSM_LCHAN_TCH_H;
269 }
270
271 if (lchan == NULL) {
272 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
273 type = GSM_LCHAN_TCH_F;
274 }
275 }
Harald Welte59b04682009-06-10 05:40:52 +0800276 break;
277 case GSM_LCHAN_TCH_F:
Harald Welteceb3c042009-08-10 13:46:55 +0200278 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte64e68df2014-05-18 22:23:26 +0200279 /* If we don't have TCH/F available, fall-back to TCH/H */
280 if (!lchan) {
281 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
282 type = GSM_LCHAN_TCH_H;
283 }
Harald Welte59b04682009-06-10 05:40:52 +0800284 break;
285 case GSM_LCHAN_TCH_H:
Harald Welteceb3c042009-08-10 13:46:55 +0200286 lchan =_lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte12503372009-12-12 20:58:20 +0100287 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte5ea9e8e2009-12-12 21:16:38 +0100288 if (!lchan) {
Harald Welte12503372009-12-12 20:58:20 +0100289 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte5ea9e8e2009-12-12 21:16:38 +0100290 type = GSM_LCHAN_TCH_F;
291 }
Harald Welte59b04682009-06-10 05:40:52 +0800292 break;
293 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100294 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte59b04682009-06-10 05:40:52 +0800295 }
296
297 if (lchan) {
298 lchan->type = type;
Harald Welte59b04682009-06-10 05:40:52 +0800299
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +0100300 /* clear sapis */
Holger Hans Peter Freyther29afdc42009-11-18 22:59:51 +0100301 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +0100302
Holger Hans Peter Freyther3cce58f2009-11-18 22:57:02 +0100303 /* clear multi rate config */
304 memset(&lchan->mr_conf, 0, sizeof(lchan->mr_conf));
Harald Welte8f725442010-03-28 15:58:03 +0800305 } else {
306 struct challoc_signal_data sig;
307 sig.bts = bts;
308 sig.type = type;
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +0200309 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_ALLOC_FAIL, &sig);
Harald Welte59b04682009-06-10 05:40:52 +0800310 }
311
312 return lchan;
313}
314
315/* Free a logical channel */
316void lchan_free(struct gsm_lchan *lchan)
317{
Harald Welte8f725442010-03-28 15:58:03 +0800318 struct challoc_signal_data sig;
Harald Weltef9476812009-12-15 21:36:05 +0100319 int i;
320
Harald Welte8f725442010-03-28 15:58:03 +0800321 sig.type = lchan->type;
Harald Welte59b04682009-06-10 05:40:52 +0800322 lchan->type = GSM_LCHAN_NONE;
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800323
324
325 if (lchan->conn) {
Holger Hans Peter Freyther645b3832010-12-27 13:28:20 +0100326 struct lchan_signal_data sig;
327
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800328 /* We might kill an active channel... */
Holger Hans Peter Freyther645b3832010-12-27 13:28:20 +0100329 sig.lchan = lchan;
330 sig.mr = NULL;
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +0200331 osmo_signal_dispatch(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, &sig);
Harald Welte59b04682009-06-10 05:40:52 +0800332 }
333
Holger Hans Peter Freyther00452c42012-01-17 15:27:33 +0100334 if (lchan->abis_ip.rtp_socket) {
335 LOGP(DRLL, LOGL_ERROR, "%s RTP Proxy Socket remained open.\n",
336 gsm_lchan_name(lchan));
337 rtp_socket_free(lchan->abis_ip.rtp_socket);
338 lchan->abis_ip.rtp_socket = NULL;
339 }
Harald Welte59b04682009-06-10 05:40:52 +0800340
341 /* stop the timer */
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200342 osmo_timer_del(&lchan->T3101);
Harald Welte59b04682009-06-10 05:40:52 +0800343
Harald Weltef9476812009-12-15 21:36:05 +0100344 /* clear cached measuement reports */
345 lchan->meas_rep_idx = 0;
346 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
347 lchan->meas_rep[i].flags = 0;
348 lchan->meas_rep[i].nr = 0;
349 }
Harald Welte92d88912009-12-21 13:30:17 +0100350 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
351 lchan->neigh_meas[i].arfcn = 0;
Harald Weltef9476812009-12-15 21:36:05 +0100352
Holger Hans Peter Freytherc08f6f02010-06-22 12:11:59 +0800353 if (lchan->rqd_ref) {
354 talloc_free(lchan->rqd_ref);
355 lchan->rqd_ref = NULL;
356 lchan->rqd_ta = 0;
357 }
358
Harald Welte8f725442010-03-28 15:58:03 +0800359 sig.lchan = lchan;
360 sig.bts = lchan->ts->trx->bts;
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +0200361 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_FREED, &sig);
Harald Welte8f725442010-03-28 15:58:03 +0800362
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800363 if (lchan->conn) {
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800364 LOGP(DRLL, LOGL_ERROR, "the subscriber connection should be gone.\n");
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800365 lchan->conn = NULL;
366 }
367
Harald Welte59b04682009-06-10 05:40:52 +0800368 /* FIXME: ts_free() the timeslot, if we're the last logical
369 * channel using it */
370}
371
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200372/*
373 * There was an error with the TRX and we need to forget
374 * any state so that a lchan can be allocated again after
375 * the trx is fully usable.
Holger Hans Peter Freyther66a3c772010-06-22 12:19:06 +0800376 *
377 * This should be called after lchan_free to force a channel
378 * be available for allocation again. This means that this
379 * method will stop the "delay after error"-timer and set the
380 * state to LCHAN_S_NONE.
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200381 */
382void lchan_reset(struct gsm_lchan *lchan)
383{
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200384 osmo_timer_del(&lchan->T3101);
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100385 osmo_timer_del(&lchan->T3109);
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200386 osmo_timer_del(&lchan->T3111);
387 osmo_timer_del(&lchan->error_timer);
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200388
389 lchan->type = GSM_LCHAN_NONE;
390 lchan->state = LCHAN_S_NONE;
Holger Hans Peter Freyther00452c42012-01-17 15:27:33 +0100391
392 if (lchan->abis_ip.rtp_socket) {
393 rtp_socket_free(lchan->abis_ip.rtp_socket);
394 lchan->abis_ip.rtp_socket = NULL;
395 }
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200396}
397
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800398/* Drive the release process of the lchan */
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100399static void _lchan_handle_release(struct gsm_lchan *lchan,
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100400 int sacch_deact, int mode)
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800401{
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100402 /* Release all SAPIs on the local end and continue */
403 rsl_release_sapis_from(lchan, 1, RSL_REL_LOCAL_END);
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800404
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100405 /*
406 * Shall we send a RR Release, start T3109 and wait for the
407 * release indication from the BTS or just take it down (e.g.
408 * on assignment requests)
409 */
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100410 if (sacch_deact) {
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800411 gsm48_send_rr_release(lchan);
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100412
413 /* Deactivate the SACCH on the BTS side */
414 rsl_deact_sacch(lchan);
415 rsl_start_t3109(lchan);
Holger Hans Peter Freytherc63cb862012-12-25 23:45:14 +0100416 } else if (lchan->sapis[0] == LCHAN_SAPI_UNUSED) {
417 rsl_direct_rf_release(lchan);
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100418 } else {
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100419 rsl_release_request(lchan, 0, mode);
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +0100420 }
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800421}
Holger Hans Peter Freyther5a8b2b42010-04-15 11:21:02 +0200422
Harald Welte59b04682009-06-10 05:40:52 +0800423/* Consider releasing the channel now */
Holger Hans Peter Freyther2806c792012-12-06 12:01:38 +0100424int lchan_release(struct gsm_lchan *lchan, int sacch_deact, enum rsl_rel_mode mode)
Harald Welte59b04682009-06-10 05:40:52 +0800425{
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800426 DEBUGP(DRLL, "%s starting release sequence\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther79a62f42010-04-10 00:14:55 +0200427 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
Holger Hans Peter Freyther3fdf5b92010-07-29 17:09:36 +0800428
Holger Hans Peter Freyther5322dbf2010-11-14 16:04:46 +0100429 lchan->conn = NULL;
Holger Hans Peter Freythere38af682011-12-27 22:24:17 +0100430 _lchan_handle_release(lchan, sacch_deact, mode);
Harald Welte59b04682009-06-10 05:40:52 +0800431 return 1;
432}
433
Holger Hans Peter Freyther8bf60d42010-06-16 13:05:35 +0800434static struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200435 struct gsm_bts_trx *trx;
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200436 int ts_no, lchan_no;
Harald Welte59b04682009-06-10 05:40:52 +0800437
Harald Weltee712a5f2009-06-21 16:17:15 +0200438 llist_for_each_entry(trx, &bts->trx_list, list) {
Harald Welte59b04682009-06-10 05:40:52 +0800439 for (ts_no = 0; ts_no < 8; ++ts_no) {
440 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
441 struct gsm_lchan *lchan =
Harald Weltee712a5f2009-06-21 16:17:15 +0200442 &trx->ts[ts_no].lchan[lchan_no];
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800443 if (lchan->conn && subscr == lchan->conn->subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800444 return lchan;
445 }
446 }
447 }
448
449 return NULL;
450}
Harald Welteaa60edb2009-08-09 18:52:33 +0200451
Holger Hans Peter Freyther2f4af772010-06-16 13:23:55 +0800452struct gsm_subscriber_connection *connection_for_subscr(struct gsm_subscriber *subscr)
Harald Welteaa60edb2009-08-09 18:52:33 +0200453{
454 struct gsm_bts *bts;
Jacob Erlbeckda8770b2014-12-03 09:28:24 +0100455 struct gsm_network *net = subscr->group->net;
Harald Welteaa60edb2009-08-09 18:52:33 +0200456 struct gsm_lchan *lchan;
457
458 llist_for_each_entry(bts, &net->bts_list, list) {
459 lchan = lchan_find(bts, subscr);
460 if (lchan)
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800461 return lchan->conn;
Harald Welteaa60edb2009-08-09 18:52:33 +0200462 }
463
Holger Hans Peter Freyther3265b1a2009-10-27 10:42:53 +0100464 return NULL;
Harald Welteaa60edb2009-08-09 18:52:33 +0200465}
Harald Weltefe96f382009-12-22 13:09:29 +0100466
467void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
468{
469 struct gsm_bts_trx *trx;
470
471 llist_for_each_entry(trx, &bts->trx_list, list) {
472 int i;
473
474 /* skip administratively deactivated tranxsceivers */
Harald Welte69f6f812011-05-30 12:07:53 +0200475 if (!nm_is_running(&trx->mo.nm_state) ||
476 !nm_is_running(&trx->bb_transc.mo.nm_state))
Harald Weltefe96f382009-12-22 13:09:29 +0100477 continue;
478
479 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
480 struct gsm_bts_trx_ts *ts = &trx->ts[i];
481 struct load_counter *pl = &cl->pchan[ts->pchan];
482 int j;
483
484 /* skip administratively deactivated timeslots */
Harald Welte69f6f812011-05-30 12:07:53 +0200485 if (!nm_is_running(&ts->mo.nm_state))
Harald Weltefe96f382009-12-22 13:09:29 +0100486 continue;
487
488 for (j = 0; j < subslots_per_pchan[ts->pchan]; j++) {
489 struct gsm_lchan *lchan = &ts->lchan[j];
490
491 pl->total++;
492
493 switch (lchan->state) {
494 case LCHAN_S_NONE:
495 break;
496 default:
497 pl->used++;
498 break;
499 }
500 }
501 }
502 }
503}
504
505void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
506{
507 struct gsm_bts *bts;
508
509 memset(pl, 0, sizeof(*pl));
510
511 llist_for_each_entry(bts, &net->bts_list, list)
512 bts_chan_load(pl, bts);
513}
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800514