blob: 5d1e137b98bc2e63f3b3941e1ee821161c330439 [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 Welte4b634542008-12-27 01:55:51 +000056static const enum abis_nm_chan_comb chcomb4pchan[] = {
57 [GSM_PCHAN_CCCH] = NM_CHANC_mainBCCH,
Harald Welte560982b2009-06-26 13:21:57 +020058 [GSM_PCHAN_CCCH_SDCCH4] = NM_CHANC_BCCHComb,
Harald Welte4b634542008-12-27 01:55:51 +000059 [GSM_PCHAN_TCH_F] = NM_CHANC_TCHFull,
60 [GSM_PCHAN_TCH_H] = NM_CHANC_TCHHalf,
61 [GSM_PCHAN_SDCCH8_SACCH8C] = NM_CHANC_SDCCH,
62 /* FIXME: bounds check */
63};
Harald Welte8470bf22008-12-25 23:28:35 +000064
Harald Welte4bfdfe72009-06-10 23:11:52 +080065/* Allocate a physical channel (TS) */
Harald Welte8470bf22008-12-25 23:28:35 +000066struct gsm_bts_trx_ts *ts_alloc(struct gsm_bts *bts,
67 enum gsm_phys_chan_config pchan)
68{
69 int i, j;
70 for (i = 0; i < bts->num_trx; i++) {
Harald Weltee441d9c2009-06-21 16:17:15 +020071 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, i);
Harald Welte75a983f2008-12-27 21:34:06 +000072 int from, to;
73
74 /* the following constraints are pure policy,
75 * no requirement to put this restriction in place */
Harald Welted46299d2009-07-29 16:46:37 +020076 if (trx == bts->c0) {
77 /* On the first TRX we run one CCCH and one SDCCH8 */
78 switch (pchan) {
79 case GSM_PCHAN_CCCH:
80 case GSM_PCHAN_CCCH_SDCCH4:
81 from = 0; to = 0;
82 break;
Harald Welted46299d2009-07-29 16:46:37 +020083 case GSM_PCHAN_TCH_F:
84 case GSM_PCHAN_TCH_H:
Harald Welte89e9d592009-08-09 22:01:26 +020085 from = 1; to = 7;
Harald Welted46299d2009-07-29 16:46:37 +020086 break;
Harald Welte89e9d592009-08-09 22:01:26 +020087 case GSM_PCHAN_SDCCH8_SACCH8C:
Harald Welted46299d2009-07-29 16:46:37 +020088 default:
89 return NULL;
90 }
91 } else {
92 /* Every secondary TRX is configured for TCH/F
93 * and TCH/H only */
94 switch (pchan) {
Harald Welte89e9d592009-08-09 22:01:26 +020095 case GSM_PCHAN_SDCCH8_SACCH8C:
96 from = 1; to = 1;
Harald Welted46299d2009-07-29 16:46:37 +020097 case GSM_PCHAN_TCH_F:
98 case GSM_PCHAN_TCH_H:
Harald Welte89e9d592009-08-09 22:01:26 +020099 from = 1; to = 7;
Harald Welted46299d2009-07-29 16:46:37 +0200100 break;
101 default:
102 return NULL;
103 }
Harald Welte75a983f2008-12-27 21:34:06 +0000104 }
105
106 for (j = from; j <= to; j++) {
Harald Welte8470bf22008-12-25 23:28:35 +0000107 struct gsm_bts_trx_ts *ts = &trx->ts[j];
108 if (ts->pchan == GSM_PCHAN_NONE) {
109 ts->pchan = pchan;
Harald Welte4b634542008-12-27 01:55:51 +0000110 /* set channel attribute on OML */
111 abis_nm_set_channel_attr(ts, chcomb4pchan[pchan]);
Harald Welte8470bf22008-12-25 23:28:35 +0000112 return ts;
113 }
114 }
115 }
116 return NULL;
117}
118
119/* Free a physical channel (TS) */
120void ts_free(struct gsm_bts_trx_ts *ts)
121{
122 ts->pchan = GSM_PCHAN_NONE;
123}
124
125static const u_int8_t subslots_per_pchan[] = {
126 [GSM_PCHAN_NONE] = 0,
127 [GSM_PCHAN_CCCH] = 0,
128 [GSM_PCHAN_CCCH_SDCCH4] = 4,
129 [GSM_PCHAN_TCH_F] = 1,
130 [GSM_PCHAN_TCH_H] = 2,
Harald Welte4bfdfe72009-06-10 23:11:52 +0800131 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Welte8470bf22008-12-25 23:28:35 +0000132};
133
134static struct gsm_lchan *
135_lc_find(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
136{
137 struct gsm_bts_trx *trx;
138 struct gsm_bts_trx_ts *ts;
139 int i, j, ss;
140 for (i = 0; i < bts->num_trx; i++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200141 trx = gsm_bts_trx_num(bts, i);
Harald Welte8470bf22008-12-25 23:28:35 +0000142 for (j = 0; j < 8; j++) {
143 ts = &trx->ts[j];
144 if (ts->pchan != pchan)
145 continue;
146 /* check if all sub-slots are allocated yet */
147 for (ss = 0; ss < subslots_per_pchan[pchan]; ss++) {
148 struct gsm_lchan *lc = &ts->lchan[ss];
149 if (lc->type == GSM_LCHAN_NONE)
150 return lc;
151 }
152 }
153 }
154 /* we cannot allocate more of these */
155 if (pchan == GSM_PCHAN_CCCH_SDCCH4)
156 return NULL;
157
158 /* if we've reached here, we need to allocate a new physical
159 * channel for the logical channel type requested */
160 ts = ts_alloc(bts, pchan);
161 if (!ts) {
162 /* no more radio resources */
163 return NULL;
164 }
165 return &ts->lchan[0];
166}
167
168/* Allocate a logical channel */
169struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type)
170{
171 struct gsm_lchan *lchan = NULL;
172
173 switch (type) {
174 case GSM_LCHAN_SDCCH:
175 lchan = _lc_find(bts, GSM_PCHAN_CCCH_SDCCH4);
176 if (lchan == NULL)
177 lchan = _lc_find(bts, GSM_PCHAN_SDCCH8_SACCH8C);
178 break;
179 case GSM_LCHAN_TCH_F:
180 lchan = _lc_find(bts, GSM_PCHAN_TCH_F);
181 break;
182 case GSM_LCHAN_TCH_H:
183 lchan =_lc_find(bts, GSM_PCHAN_TCH_H);
184 break;
185 default:
186 fprintf(stderr, "Unknown gsm_chan_t %u\n", type);
187 }
188
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000189 if (lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000190 lchan->type = type;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000191 lchan->use_count = 0;
192
193 /* Configure the time and start it so it will be closed */
194 lchan->release_timer.cb = auto_release_channel;
195 lchan->release_timer.data = lchan;
Harald Welteff117a82009-05-23 05:22:08 +0000196 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000197 }
Harald Welte8470bf22008-12-25 23:28:35 +0000198
199 return lchan;
200}
201
202/* Free a logical channel */
203void lchan_free(struct gsm_lchan *lchan)
204{
205 lchan->type = GSM_LCHAN_NONE;
Holger Freyther12aa50d2009-01-01 18:02:05 +0000206 if (lchan->subscr) {
207 subscr_put(lchan->subscr);
208 lchan->subscr = 0;
209 }
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000210
Holger Freyther7c19f742009-06-06 13:54:35 +0000211 /* We might kill an active channel... */
Harald Weltec627afc2009-01-09 21:39:17 +0000212 if (lchan->use_count != 0) {
Holger Freyther7c19f742009-06-06 13:54:35 +0000213 dispatch_signal(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, lchan);
Harald Weltec627afc2009-01-09 21:39:17 +0000214 lchan->use_count = 0;
215 }
216
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000217 /* stop the timer */
Harald Welteff117a82009-05-23 05:22:08 +0000218 bsc_del_timer(&lchan->release_timer);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000219
Harald Welte8470bf22008-12-25 23:28:35 +0000220 /* FIXME: ts_free() the timeslot, if we're the last logical
221 * channel using it */
222}
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000223
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000224/* Consider releasing the channel now */
225int lchan_auto_release(struct gsm_lchan *lchan)
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000226{
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000227 if (lchan->use_count > 0) {
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000228 return 0;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000229 }
230
Holger Freythere64a7a32009-02-06 21:55:37 +0000231 /* Assume we have GSM04.08 running and send a release */
232 if (lchan->subscr) {
233 gsm48_send_rr_release(lchan);
234 }
235
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000236 /* spoofed? message */
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000237 if (lchan->use_count < 0) {
238 DEBUGP(DRLL, "Channel count is negative: %d\n", lchan->use_count);
239 }
240
Harald Welte44227dd2009-02-01 22:25:58 +0000241 DEBUGP(DRLL, "Recycling the channel with: %d (%x)\n", lchan->nr, lchan->nr);
Harald Welted2dc1de2009-08-08 13:15:07 +0200242 rsl_release_request(lchan, 0);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000243 return 1;
244}
245
246/* Auto release the channel when the use count is zero */
247static void auto_release_channel(void *_lchan)
248{
249 struct gsm_lchan *lchan = _lchan;
250
251 if (!lchan_auto_release(lchan))
Harald Welteff117a82009-05-23 05:22:08 +0000252 bsc_schedule_timer(&lchan->release_timer, LCHAN_RELEASE_TIMEOUT);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000253}
254
Holger Freytherd0e38c32009-01-04 03:48:30 +0000255struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200256 struct gsm_bts_trx *trx;
257 int ts_no, lchan_no;
Holger Freytherd0e38c32009-01-04 03:48:30 +0000258
Harald Weltee441d9c2009-06-21 16:17:15 +0200259 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Freytherd0e38c32009-01-04 03:48:30 +0000260 for (ts_no = 0; ts_no < 8; ++ts_no) {
261 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
262 struct gsm_lchan *lchan =
Harald Weltee441d9c2009-06-21 16:17:15 +0200263 &trx->ts[ts_no].lchan[lchan_no];
Holger Freytherd0e38c32009-01-04 03:48:30 +0000264 if (subscr == lchan->subscr)
265 return lchan;
266 }
267 }
268 }
269
270 return NULL;
271}
Harald Welte1a6f7982009-08-09 18:52:33 +0200272
273struct gsm_lchan *lchan_for_subscr(struct gsm_subscriber *subscr)
274{
275 struct gsm_bts *bts;
276 struct gsm_network *net = subscr->net;
277 struct gsm_lchan *lchan;
278
279 llist_for_each_entry(bts, &net->bts_list, list) {
280 lchan = lchan_find(bts, subscr);
281 if (lchan)
282 return lchan;
283 }
284
285 return 0;
286}