blob: 632860814fd79e417c478edf4e52fc1b2be9bf75 [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
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>
Harald Welte4b634542008-12-27 01:55:51 +000031#include <openbsc/abis_nm.h>
Holger Freyther67b4b9a2009-01-01 03:46:11 +000032#include <openbsc/abis_rsl.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000033#include <openbsc/debug.h>
Holger Freyther7c19f742009-06-06 13:54:35 +000034#include <openbsc/signal.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000035
Harald Weltef85497c2009-01-01 00:33:20 +000036static void auto_release_channel(void *_lchan);
Harald Welte8470bf22008-12-25 23:28:35 +000037
38struct gsm_bts_trx_ts *ts_c0_alloc(struct gsm_bts *bts,
39 enum gsm_phys_chan_config pchan)
40{
Harald Weltee441d9c2009-06-21 16:17:15 +020041 struct gsm_bts_trx *trx = bts->c0;
Harald Welte8470bf22008-12-25 23:28:35 +000042 struct gsm_bts_trx_ts *ts = &trx->ts[0];
43
44 if (pchan != GSM_PCHAN_CCCH &&
45 pchan != GSM_PCHAN_CCCH_SDCCH4)
46 return NULL;
47
48 if (ts->pchan != GSM_PCHAN_NONE)
49 return NULL;
50
51 ts->pchan = pchan;
52
53 return ts;
54}
55
Harald Welte4bfdfe72009-06-10 23:11:52 +080056/* Allocate a physical channel (TS) */
Harald Welte8470bf22008-12-25 23:28:35 +000057struct gsm_bts_trx_ts *ts_alloc(struct gsm_bts *bts,
58 enum gsm_phys_chan_config pchan)
59{
Harald Welte88367262009-08-10 13:25:55 +020060 int j;
61 struct gsm_bts_trx *trx;
62
63 llist_for_each_entry(trx, &bts->trx_list, list) {
Harald Welte75a983f2008-12-27 21:34:06 +000064 int from, to;
65
66 /* the following constraints are pure policy,
67 * no requirement to put this restriction in place */
Harald Welted46299d2009-07-29 16:46:37 +020068 if (trx == bts->c0) {
69 /* On the first TRX we run one CCCH and one SDCCH8 */
70 switch (pchan) {
71 case GSM_PCHAN_CCCH:
72 case GSM_PCHAN_CCCH_SDCCH4:
73 from = 0; to = 0;
74 break;
Harald Welted46299d2009-07-29 16:46:37 +020075 case GSM_PCHAN_TCH_F:
76 case GSM_PCHAN_TCH_H:
Harald Welte89e9d592009-08-09 22:01:26 +020077 from = 1; to = 7;
Harald Welted46299d2009-07-29 16:46:37 +020078 break;
Harald Welte89e9d592009-08-09 22:01:26 +020079 case GSM_PCHAN_SDCCH8_SACCH8C:
Harald Welted46299d2009-07-29 16:46:37 +020080 default:
81 return NULL;
82 }
83 } else {
84 /* Every secondary TRX is configured for TCH/F
85 * and TCH/H only */
86 switch (pchan) {
Harald Welte89e9d592009-08-09 22:01:26 +020087 case GSM_PCHAN_SDCCH8_SACCH8C:
88 from = 1; to = 1;
Harald Welted46299d2009-07-29 16:46:37 +020089 case GSM_PCHAN_TCH_F:
90 case GSM_PCHAN_TCH_H:
Harald Welte89e9d592009-08-09 22:01:26 +020091 from = 1; to = 7;
Harald Welted46299d2009-07-29 16:46:37 +020092 break;
93 default:
94 return NULL;
95 }
Harald Welte75a983f2008-12-27 21:34:06 +000096 }
97
98 for (j = from; j <= to; j++) {
Harald Welte8470bf22008-12-25 23:28:35 +000099 struct gsm_bts_trx_ts *ts = &trx->ts[j];
100 if (ts->pchan == GSM_PCHAN_NONE) {
101 ts->pchan = pchan;
Harald Welte4b634542008-12-27 01:55:51 +0000102 /* set channel attribute on OML */
Harald Welte21bd3a52009-08-10 12:21:22 +0200103 abis_nm_set_channel_attr(ts, abis_nm_chcomb4pchan(pchan));
Harald Welte8470bf22008-12-25 23:28:35 +0000104 return ts;
105 }
106 }
107 }
108 return NULL;
109}
110
111/* Free a physical channel (TS) */
112void ts_free(struct gsm_bts_trx_ts *ts)
113{
114 ts->pchan = GSM_PCHAN_NONE;
115}
116
117static const u_int8_t subslots_per_pchan[] = {
118 [GSM_PCHAN_NONE] = 0,
119 [GSM_PCHAN_CCCH] = 0,
120 [GSM_PCHAN_CCCH_SDCCH4] = 4,
121 [GSM_PCHAN_TCH_F] = 1,
122 [GSM_PCHAN_TCH_H] = 2,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800123 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Welteb908cb72009-12-22 13:09:29 +0100124 /* FIXME: what about dynamic TCH_F_TCH_H ? */
Harald Welte8470bf22008-12-25 23:28:35 +0000125};
126
127static struct gsm_lchan *
Harald Weltefc0d9522009-08-10 13:46:55 +0200128_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan)
Harald Welte8470bf22008-12-25 23:28:35 +0000129{
Harald Welte8470bf22008-12-25 23:28:35 +0000130 struct gsm_bts_trx_ts *ts;
Harald Welte88367262009-08-10 13:25:55 +0200131 int j, ss;
132
Harald Weltefc0d9522009-08-10 13:46:55 +0200133 for (j = 0; j < 8; j++) {
134 ts = &trx->ts[j];
135 if (ts->pchan != pchan)
136 continue;
137 /* check if all sub-slots are allocated yet */
138 for (ss = 0; ss < subslots_per_pchan[pchan]; ss++) {
139 struct gsm_lchan *lc = &ts->lchan[ss];
140 if (lc->type == GSM_LCHAN_NONE)
141 return lc;
Harald Welte8470bf22008-12-25 23:28:35 +0000142 }
143 }
Harald Weltefc0d9522009-08-10 13:46:55 +0200144 return NULL;
145}
146
147static struct gsm_lchan *
148_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
149{
150 struct gsm_bts_trx *trx;
151 struct gsm_bts_trx_ts *ts;
152 struct gsm_lchan *lc;
153
154 if (bts->chan_alloc_reverse) {
155 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
156 lc = _lc_find_trx(trx, pchan);
157 if (lc)
158 return lc;
159 }
160 } else {
161 llist_for_each_entry(trx, &bts->trx_list, list) {
162 lc = _lc_find_trx(trx, pchan);
163 if (lc)
164 return lc;
165 }
166 }
167
Harald Welte8470bf22008-12-25 23:28:35 +0000168 /* we cannot allocate more of these */
169 if (pchan == GSM_PCHAN_CCCH_SDCCH4)
170 return NULL;
171
172 /* if we've reached here, we need to allocate a new physical
173 * channel for the logical channel type requested */
174 ts = ts_alloc(bts, pchan);
175 if (!ts) {
176 /* no more radio resources */
177 return NULL;
178 }
179 return &ts->lchan[0];
180}
181
182/* Allocate a logical channel */
183struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type)
184{
185 struct gsm_lchan *lchan = NULL;
Harald Welte65676fe2009-08-10 14:44:24 +0200186 enum gsm_phys_chan_config first, second;
Harald Welte8470bf22008-12-25 23:28:35 +0000187
188 switch (type) {
189 case GSM_LCHAN_SDCCH:
Harald Welte65676fe2009-08-10 14:44:24 +0200190 if (bts->chan_alloc_reverse) {
191 first = GSM_PCHAN_SDCCH8_SACCH8C;
192 second = GSM_PCHAN_CCCH_SDCCH4;
193 } else {
194 first = GSM_PCHAN_CCCH_SDCCH4;
195 second = GSM_PCHAN_SDCCH8_SACCH8C;
196 }
197
198 lchan = _lc_find_bts(bts, first);
Harald Welte8470bf22008-12-25 23:28:35 +0000199 if (lchan == NULL)
Harald Welte65676fe2009-08-10 14:44:24 +0200200 lchan = _lc_find_bts(bts, second);
Harald Welte8470bf22008-12-25 23:28:35 +0000201 break;
202 case GSM_LCHAN_TCH_F:
Harald Weltefc0d9522009-08-10 13:46:55 +0200203 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte8470bf22008-12-25 23:28:35 +0000204 break;
205 case GSM_LCHAN_TCH_H:
Harald Weltefc0d9522009-08-10 13:46:55 +0200206 lchan =_lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte210c8502009-12-12 20:58:20 +0100207 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte487e6be2009-12-12 21:16:38 +0100208 if (!lchan) {
Harald Welte210c8502009-12-12 20:58:20 +0100209 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte487e6be2009-12-12 21:16:38 +0100210 type = GSM_LCHAN_TCH_F;
211 }
Harald Welte8470bf22008-12-25 23:28:35 +0000212 break;
213 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100214 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte8470bf22008-12-25 23:28:35 +0000215 }
216
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000217 if (lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000218 lchan->type = type;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000219 lchan->use_count = 0;
220
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100221 /* clear sapis */
Holger Hans Peter Freyther45b02432009-11-18 22:59:51 +0100222 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100223
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100224 /* clear multi rate config */
225 memset(&lchan->mr_conf, 0, sizeof(lchan->mr_conf));
226
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000227 /* Configure the time and start it so it will be closed */
228 lchan->release_timer.cb = auto_release_channel;
229 lchan->release_timer.data = lchan;
Harald Welteff117a82009-05-23 05:22:08 +0000230 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000231 }
Harald Welte8470bf22008-12-25 23:28:35 +0000232
233 return lchan;
234}
235
236/* Free a logical channel */
237void lchan_free(struct gsm_lchan *lchan)
238{
Harald Welted12b0fd2009-12-15 21:36:05 +0100239 int i;
240
Harald Welte8470bf22008-12-25 23:28:35 +0000241 lchan->type = GSM_LCHAN_NONE;
Holger Freyther12aa50d2009-01-01 18:02:05 +0000242 if (lchan->subscr) {
243 subscr_put(lchan->subscr);
Holger Hans Peter Freytherba925872009-10-27 10:42:53 +0100244 lchan->subscr = NULL;
Holger Freyther12aa50d2009-01-01 18:02:05 +0000245 }
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000246
Holger Freyther7c19f742009-06-06 13:54:35 +0000247 /* We might kill an active channel... */
Harald Weltec627afc2009-01-09 21:39:17 +0000248 if (lchan->use_count != 0) {
Holger Freyther7c19f742009-06-06 13:54:35 +0000249 dispatch_signal(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, lchan);
Harald Weltec627afc2009-01-09 21:39:17 +0000250 lchan->use_count = 0;
251 }
252
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000253 /* stop the timer */
Harald Welteff117a82009-05-23 05:22:08 +0000254 bsc_del_timer(&lchan->release_timer);
Sylvain Munautf77af1f2009-12-21 01:11:25 +0100255 bsc_del_timer(&lchan->T3101);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000256
Harald Welted12b0fd2009-12-15 21:36:05 +0100257 /* clear cached measuement reports */
258 lchan->meas_rep_idx = 0;
259 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
260 lchan->meas_rep[i].flags = 0;
261 lchan->meas_rep[i].nr = 0;
262 }
Harald Weltef7c28b02009-12-21 13:30:17 +0100263 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
264 lchan->neigh_meas[i].arfcn = 0;
Harald Welted12b0fd2009-12-15 21:36:05 +0100265
Harald Welte8470bf22008-12-25 23:28:35 +0000266 /* FIXME: ts_free() the timeslot, if we're the last logical
267 * channel using it */
268}
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000269
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000270/* Consider releasing the channel now */
271int lchan_auto_release(struct gsm_lchan *lchan)
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000272{
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000273 if (lchan->use_count > 0) {
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000274 return 0;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000275 }
276
Holger Freythere64a7a32009-02-06 21:55:37 +0000277 /* Assume we have GSM04.08 running and send a release */
278 if (lchan->subscr) {
279 gsm48_send_rr_release(lchan);
280 }
281
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000282 /* spoofed? message */
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100283 if (lchan->use_count < 0)
284 LOGP(DRLL, LOGL_ERROR, "Channel count is negative: %d\n",
285 lchan->use_count);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000286
Harald Welte44227dd2009-02-01 22:25:58 +0000287 DEBUGP(DRLL, "Recycling the channel with: %d (%x)\n", lchan->nr, lchan->nr);
Harald Welted2dc1de2009-08-08 13:15:07 +0200288 rsl_release_request(lchan, 0);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000289 return 1;
290}
291
292/* Auto release the channel when the use count is zero */
293static void auto_release_channel(void *_lchan)
294{
295 struct gsm_lchan *lchan = _lchan;
296
297 if (!lchan_auto_release(lchan))
Harald Welteff117a82009-05-23 05:22:08 +0000298 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000299}
300
Holger Freytherd0e38c32009-01-04 03:48:30 +0000301struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200302 struct gsm_bts_trx *trx;
303 int ts_no, lchan_no;
Holger Freytherd0e38c32009-01-04 03:48:30 +0000304
Harald Weltee441d9c2009-06-21 16:17:15 +0200305 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Freytherd0e38c32009-01-04 03:48:30 +0000306 for (ts_no = 0; ts_no < 8; ++ts_no) {
307 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
308 struct gsm_lchan *lchan =
Harald Weltee441d9c2009-06-21 16:17:15 +0200309 &trx->ts[ts_no].lchan[lchan_no];
Holger Freytherd0e38c32009-01-04 03:48:30 +0000310 if (subscr == lchan->subscr)
311 return lchan;
312 }
313 }
314 }
315
316 return NULL;
317}
Harald Welte1a6f7982009-08-09 18:52:33 +0200318
319struct gsm_lchan *lchan_for_subscr(struct gsm_subscriber *subscr)
320{
321 struct gsm_bts *bts;
322 struct gsm_network *net = subscr->net;
323 struct gsm_lchan *lchan;
324
325 llist_for_each_entry(bts, &net->bts_list, list) {
326 lchan = lchan_find(bts, subscr);
327 if (lchan)
328 return lchan;
329 }
330
Holger Hans Peter Freytherba925872009-10-27 10:42:53 +0100331 return NULL;
Harald Welte1a6f7982009-08-09 18:52:33 +0200332}
Harald Welteb908cb72009-12-22 13:09:29 +0100333
334void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
335{
336 struct gsm_bts_trx *trx;
337
338 llist_for_each_entry(trx, &bts->trx_list, list) {
339 int i;
340
341 /* skip administratively deactivated tranxsceivers */
342 if (trx->nm_state.availability != NM_AVSTATE_OK ||
343 trx->bb_transc.nm_state.availability != NM_AVSTATE_OK)
344 continue;
345
346 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
347 struct gsm_bts_trx_ts *ts = &trx->ts[i];
348 struct load_counter *pl = &cl->pchan[ts->pchan];
349 int j;
350
351 /* skip administratively deactivated timeslots */
352 if (ts->nm_state.availability != NM_AVSTATE_OK)
353 continue;
354
355 for (j = 0; j < subslots_per_pchan[ts->pchan]; j++) {
356 struct gsm_lchan *lchan = &ts->lchan[j];
357
358 pl->total++;
359
360 switch (lchan->state) {
361 case LCHAN_S_NONE:
362 break;
363 default:
364 pl->used++;
365 break;
366 }
367 }
368 }
369 }
370}
371
372void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
373{
374 struct gsm_bts *bts;
375
376 memset(pl, 0, sizeof(*pl));
377
378 llist_for_each_entry(bts, &net->bts_list, list)
379 bts_chan_load(pl, bts);
380}