blob: 2e885241c49946ceda685c9ac39539e183a4ac75 [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
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (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
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <errno.h>
28
29#include <openbsc/gsm_data.h>
30#include <openbsc/chan_alloc.h>
31#include <openbsc/abis_nm.h>
32#include <openbsc/abis_rsl.h>
33#include <openbsc/debug.h>
34#include <openbsc/signal.h>
35
36static void auto_release_channel(void *_lchan);
37
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)) {
Sylvain Munautca3e04f2010-01-02 16:32:17 +010042 if (!nm_is_running(&ts->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)) {
Sylvain Munautca3e04f2010-01-02 16:32:17 +010053 if (!nm_is_running(&trx->nm_state) ||
54 !nm_is_running(&trx->bb_transc.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 &&
68 pchan != GSM_PCHAN_CCCH_SDCCH4)
69 return NULL;
70
71 if (ts->pchan != GSM_PCHAN_NONE)
72 return NULL;
73
74 ts->pchan = pchan;
75
76 return ts;
77}
78
Harald Welte03740842009-06-10 23:11:52 +080079/* Allocate a physical channel (TS) */
Harald Welte59b04682009-06-10 05:40:52 +080080struct gsm_bts_trx_ts *ts_alloc(struct gsm_bts *bts,
81 enum gsm_phys_chan_config pchan)
82{
Harald Welte351ff122009-08-10 13:25:55 +020083 int j;
84 struct gsm_bts_trx *trx;
85
86 llist_for_each_entry(trx, &bts->trx_list, list) {
Harald Welte59b04682009-06-10 05:40:52 +080087 int from, to;
88
Harald Welteedc7b2f2009-12-24 10:10:16 +010089 if (!trx_is_usable(trx))
90 continue;
91
Harald Welte59b04682009-06-10 05:40:52 +080092 /* the following constraints are pure policy,
93 * no requirement to put this restriction in place */
Harald Welte3a9c2c02009-07-29 16:46:37 +020094 if (trx == bts->c0) {
95 /* On the first TRX we run one CCCH and one SDCCH8 */
96 switch (pchan) {
97 case GSM_PCHAN_CCCH:
98 case GSM_PCHAN_CCCH_SDCCH4:
99 from = 0; to = 0;
100 break;
Harald Welte3a9c2c02009-07-29 16:46:37 +0200101 case GSM_PCHAN_TCH_F:
102 case GSM_PCHAN_TCH_H:
Harald Welte7f863f52009-08-09 22:01:26 +0200103 from = 1; to = 7;
Harald Welte3a9c2c02009-07-29 16:46:37 +0200104 break;
Harald Welte7f863f52009-08-09 22:01:26 +0200105 case GSM_PCHAN_SDCCH8_SACCH8C:
Harald Welte3a9c2c02009-07-29 16:46:37 +0200106 default:
107 return NULL;
108 }
109 } else {
110 /* Every secondary TRX is configured for TCH/F
111 * and TCH/H only */
112 switch (pchan) {
Harald Welte7f863f52009-08-09 22:01:26 +0200113 case GSM_PCHAN_SDCCH8_SACCH8C:
114 from = 1; to = 1;
Harald Welte3a9c2c02009-07-29 16:46:37 +0200115 case GSM_PCHAN_TCH_F:
116 case GSM_PCHAN_TCH_H:
Harald Welte7f863f52009-08-09 22:01:26 +0200117 from = 1; to = 7;
Harald Welte3a9c2c02009-07-29 16:46:37 +0200118 break;
119 default:
120 return NULL;
121 }
Harald Welte59b04682009-06-10 05:40:52 +0800122 }
123
124 for (j = from; j <= to; j++) {
125 struct gsm_bts_trx_ts *ts = &trx->ts[j];
Harald Welteedc7b2f2009-12-24 10:10:16 +0100126
127 if (!ts_is_usable(ts))
128 continue;
129
Harald Welte59b04682009-06-10 05:40:52 +0800130 if (ts->pchan == GSM_PCHAN_NONE) {
131 ts->pchan = pchan;
132 /* set channel attribute on OML */
Harald Welte35cd5e92009-08-10 12:21:22 +0200133 abis_nm_set_channel_attr(ts, abis_nm_chcomb4pchan(pchan));
Harald Welte59b04682009-06-10 05:40:52 +0800134 return ts;
135 }
136 }
137 }
138 return NULL;
139}
140
141/* Free a physical channel (TS) */
142void ts_free(struct gsm_bts_trx_ts *ts)
143{
144 ts->pchan = GSM_PCHAN_NONE;
145}
146
147static const u_int8_t subslots_per_pchan[] = {
148 [GSM_PCHAN_NONE] = 0,
149 [GSM_PCHAN_CCCH] = 0,
150 [GSM_PCHAN_CCCH_SDCCH4] = 4,
151 [GSM_PCHAN_TCH_F] = 1,
152 [GSM_PCHAN_TCH_H] = 2,
Harald Welte03740842009-06-10 23:11:52 +0800153 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Weltefe96f382009-12-22 13:09:29 +0100154 /* FIXME: what about dynamic TCH_F_TCH_H ? */
Harald Welte59b04682009-06-10 05:40:52 +0800155};
156
157static struct gsm_lchan *
Harald Welteceb3c042009-08-10 13:46:55 +0200158_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan)
Harald Welte59b04682009-06-10 05:40:52 +0800159{
Harald Welte59b04682009-06-10 05:40:52 +0800160 struct gsm_bts_trx_ts *ts;
Harald Welte351ff122009-08-10 13:25:55 +0200161 int j, ss;
162
Harald Welteedc7b2f2009-12-24 10:10:16 +0100163 if (!trx_is_usable(trx))
164 return NULL;
165
Harald Welteceb3c042009-08-10 13:46:55 +0200166 for (j = 0; j < 8; j++) {
167 ts = &trx->ts[j];
Harald Welteedc7b2f2009-12-24 10:10:16 +0100168 if (!ts_is_usable(ts))
169 continue;
Harald Welteceb3c042009-08-10 13:46:55 +0200170 if (ts->pchan != pchan)
171 continue;
172 /* check if all sub-slots are allocated yet */
173 for (ss = 0; ss < subslots_per_pchan[pchan]; ss++) {
174 struct gsm_lchan *lc = &ts->lchan[ss];
Harald Welte (local)c3be50c2009-12-27 18:12:29 +0100175 if (lc->type == GSM_LCHAN_NONE &&
176 lc->state == LCHAN_S_NONE)
Harald Welteceb3c042009-08-10 13:46:55 +0200177 return lc;
Harald Welte59b04682009-06-10 05:40:52 +0800178 }
179 }
Harald Welteceb3c042009-08-10 13:46:55 +0200180 return NULL;
181}
182
183static struct gsm_lchan *
184_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
185{
186 struct gsm_bts_trx *trx;
187 struct gsm_bts_trx_ts *ts;
188 struct gsm_lchan *lc;
189
190 if (bts->chan_alloc_reverse) {
191 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
192 lc = _lc_find_trx(trx, pchan);
193 if (lc)
194 return lc;
195 }
196 } else {
197 llist_for_each_entry(trx, &bts->trx_list, list) {
198 lc = _lc_find_trx(trx, pchan);
199 if (lc)
200 return lc;
201 }
202 }
203
Harald Welte59b04682009-06-10 05:40:52 +0800204 /* we cannot allocate more of these */
205 if (pchan == GSM_PCHAN_CCCH_SDCCH4)
206 return NULL;
207
208 /* if we've reached here, we need to allocate a new physical
209 * channel for the logical channel type requested */
210 ts = ts_alloc(bts, pchan);
211 if (!ts) {
212 /* no more radio resources */
213 return NULL;
214 }
215 return &ts->lchan[0];
216}
217
218/* Allocate a logical channel */
219struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type)
220{
221 struct gsm_lchan *lchan = NULL;
Harald Welteaf86c0f2009-08-10 14:44:24 +0200222 enum gsm_phys_chan_config first, second;
Harald Welte59b04682009-06-10 05:40:52 +0800223
224 switch (type) {
225 case GSM_LCHAN_SDCCH:
Harald Welteaf86c0f2009-08-10 14:44:24 +0200226 if (bts->chan_alloc_reverse) {
227 first = GSM_PCHAN_SDCCH8_SACCH8C;
228 second = GSM_PCHAN_CCCH_SDCCH4;
229 } else {
230 first = GSM_PCHAN_CCCH_SDCCH4;
231 second = GSM_PCHAN_SDCCH8_SACCH8C;
232 }
233
234 lchan = _lc_find_bts(bts, first);
Harald Welte59b04682009-06-10 05:40:52 +0800235 if (lchan == NULL)
Harald Welteaf86c0f2009-08-10 14:44:24 +0200236 lchan = _lc_find_bts(bts, second);
Harald Welte59b04682009-06-10 05:40:52 +0800237 break;
238 case GSM_LCHAN_TCH_F:
Harald Welteceb3c042009-08-10 13:46:55 +0200239 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte59b04682009-06-10 05:40:52 +0800240 break;
241 case GSM_LCHAN_TCH_H:
Harald Welteceb3c042009-08-10 13:46:55 +0200242 lchan =_lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte12503372009-12-12 20:58:20 +0100243 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte5ea9e8e2009-12-12 21:16:38 +0100244 if (!lchan) {
Harald Welte12503372009-12-12 20:58:20 +0100245 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte5ea9e8e2009-12-12 21:16:38 +0100246 type = GSM_LCHAN_TCH_F;
247 }
Harald Welte59b04682009-06-10 05:40:52 +0800248 break;
249 default:
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100250 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte59b04682009-06-10 05:40:52 +0800251 }
252
253 if (lchan) {
254 lchan->type = type;
255 lchan->use_count = 0;
256
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +0100257 /* clear sapis */
Holger Hans Peter Freyther29afdc42009-11-18 22:59:51 +0100258 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freytherd8318052009-10-28 14:23:39 +0100259
Holger Hans Peter Freyther3cce58f2009-11-18 22:57:02 +0100260 /* clear multi rate config */
261 memset(&lchan->mr_conf, 0, sizeof(lchan->mr_conf));
262
Harald Welte59b04682009-06-10 05:40:52 +0800263 /* Configure the time and start it so it will be closed */
264 lchan->release_timer.cb = auto_release_channel;
265 lchan->release_timer.data = lchan;
266 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT);
267 }
268
269 return lchan;
270}
271
272/* Free a logical channel */
273void lchan_free(struct gsm_lchan *lchan)
274{
Harald Weltef9476812009-12-15 21:36:05 +0100275 int i;
276
Harald Welte59b04682009-06-10 05:40:52 +0800277 lchan->type = GSM_LCHAN_NONE;
278 if (lchan->subscr) {
279 subscr_put(lchan->subscr);
Holger Hans Peter Freyther3265b1a2009-10-27 10:42:53 +0100280 lchan->subscr = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800281 }
282
283 /* We might kill an active channel... */
284 if (lchan->use_count != 0) {
285 dispatch_signal(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, lchan);
286 lchan->use_count = 0;
287 }
288
289 /* stop the timer */
290 bsc_del_timer(&lchan->release_timer);
Sylvain Munautfe787f02009-12-21 01:11:25 +0100291 bsc_del_timer(&lchan->T3101);
Harald Welte59b04682009-06-10 05:40:52 +0800292
Harald Weltef9476812009-12-15 21:36:05 +0100293 /* clear cached measuement reports */
294 lchan->meas_rep_idx = 0;
295 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
296 lchan->meas_rep[i].flags = 0;
297 lchan->meas_rep[i].nr = 0;
298 }
Harald Welte92d88912009-12-21 13:30:17 +0100299 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
300 lchan->neigh_meas[i].arfcn = 0;
Harald Weltef9476812009-12-15 21:36:05 +0100301
Harald Welte51bd0662009-12-29 11:17:18 +0100302 lchan->silent_call = 0;
303
Harald Welte59b04682009-06-10 05:40:52 +0800304 /* FIXME: ts_free() the timeslot, if we're the last logical
305 * channel using it */
306}
307
308/* Consider releasing the channel now */
309int lchan_auto_release(struct gsm_lchan *lchan)
310{
311 if (lchan->use_count > 0) {
312 return 0;
313 }
314
315 /* Assume we have GSM04.08 running and send a release */
316 if (lchan->subscr) {
317 gsm48_send_rr_release(lchan);
318 }
319
320 /* spoofed? message */
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100321 if (lchan->use_count < 0)
322 LOGP(DRLL, LOGL_ERROR, "Channel count is negative: %d\n",
323 lchan->use_count);
Harald Welte59b04682009-06-10 05:40:52 +0800324
Harald Welte (local)0a77fa12009-12-28 23:22:43 +0100325 DEBUGP(DRLL, "%s Recycling Channel\n", gsm_lchan_name(lchan));
Harald Welte0f2e3c12009-08-08 13:15:07 +0200326 rsl_release_request(lchan, 0);
Harald Welte59b04682009-06-10 05:40:52 +0800327 return 1;
328}
329
330/* Auto release the channel when the use count is zero */
331static void auto_release_channel(void *_lchan)
332{
333 struct gsm_lchan *lchan = _lchan;
334
335 if (!lchan_auto_release(lchan))
336 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT);
337}
338
339struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200340 struct gsm_bts_trx *trx;
341 int ts_no, lchan_no;
Harald Welte59b04682009-06-10 05:40:52 +0800342
Harald Weltee712a5f2009-06-21 16:17:15 +0200343 llist_for_each_entry(trx, &bts->trx_list, list) {
Harald Welte59b04682009-06-10 05:40:52 +0800344 for (ts_no = 0; ts_no < 8; ++ts_no) {
345 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
346 struct gsm_lchan *lchan =
Harald Weltee712a5f2009-06-21 16:17:15 +0200347 &trx->ts[ts_no].lchan[lchan_no];
Harald Welte59b04682009-06-10 05:40:52 +0800348 if (subscr == lchan->subscr)
349 return lchan;
350 }
351 }
352 }
353
354 return NULL;
355}
Harald Welteaa60edb2009-08-09 18:52:33 +0200356
357struct gsm_lchan *lchan_for_subscr(struct gsm_subscriber *subscr)
358{
359 struct gsm_bts *bts;
360 struct gsm_network *net = subscr->net;
361 struct gsm_lchan *lchan;
362
363 llist_for_each_entry(bts, &net->bts_list, list) {
364 lchan = lchan_find(bts, subscr);
365 if (lchan)
366 return lchan;
367 }
368
Holger Hans Peter Freyther3265b1a2009-10-27 10:42:53 +0100369 return NULL;
Harald Welteaa60edb2009-08-09 18:52:33 +0200370}
Harald Weltefe96f382009-12-22 13:09:29 +0100371
372void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
373{
374 struct gsm_bts_trx *trx;
375
376 llist_for_each_entry(trx, &bts->trx_list, list) {
377 int i;
378
379 /* skip administratively deactivated tranxsceivers */
Sylvain Munautca3e04f2010-01-02 16:32:17 +0100380 if (!nm_is_running(&trx->nm_state) ||
381 !nm_is_running(&trx->bb_transc.nm_state))
Harald Weltefe96f382009-12-22 13:09:29 +0100382 continue;
383
384 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
385 struct gsm_bts_trx_ts *ts = &trx->ts[i];
386 struct load_counter *pl = &cl->pchan[ts->pchan];
387 int j;
388
389 /* skip administratively deactivated timeslots */
Sylvain Munautca3e04f2010-01-02 16:32:17 +0100390 if (!nm_is_running(&ts->nm_state))
Harald Weltefe96f382009-12-22 13:09:29 +0100391 continue;
392
393 for (j = 0; j < subslots_per_pchan[ts->pchan]; j++) {
394 struct gsm_lchan *lchan = &ts->lchan[j];
395
396 pl->total++;
397
398 switch (lchan->state) {
399 case LCHAN_S_NONE:
400 break;
401 default:
402 pl->used++;
403 break;
404 }
405 }
406 }
407 }
408}
409
410void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
411{
412 struct gsm_bts *bts;
413
414 memset(pl, 0, sizeof(*pl));
415
416 llist_for_each_entry(bts, &net->bts_list, list)
417 bts_chan_load(pl, bts);
418}