blob: 5325dc08a48d06e8588d034b4dc548c88e34ab57 [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
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +080036#include <osmocore/talloc.h>
37
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)) {
Sylvain Munaut1f6c11f2010-01-02 16:32:17 +010042 if (!nm_is_running(&ts->nm_state))
Harald Welte4c704542009-12-24 10:10:16 +010043 return 0;
44 }
45
46 return 1;
47}
48
Harald Welte (local)82ff3972009-12-28 16:36:28 +010049int trx_is_usable(struct gsm_bts_trx *trx)
Harald Welte4c704542009-12-24 10:10:16 +010050{
51 /* FIXME: How does this behave for BS-11 ? */
52 if (is_ipaccess_bts(trx->bts)) {
Sylvain Munaut1f6c11f2010-01-02 16:32:17 +010053 if (!nm_is_running(&trx->nm_state) ||
54 !nm_is_running(&trx->bb_transc.nm_state))
Harald Welte4c704542009-12-24 10:10:16 +010055 return 0;
56 }
57
58 return 1;
59}
60
Harald Welte8470bf22008-12-25 23:28:35 +000061struct gsm_bts_trx_ts *ts_c0_alloc(struct gsm_bts *bts,
62 enum gsm_phys_chan_config pchan)
63{
Harald Weltee441d9c2009-06-21 16:17:15 +020064 struct gsm_bts_trx *trx = bts->c0;
Harald Welte8470bf22008-12-25 23:28:35 +000065 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 Welte4bfdfe72009-06-10 23:11:52 +080079/* Allocate a physical channel (TS) */
Harald Welte8470bf22008-12-25 23:28:35 +000080struct gsm_bts_trx_ts *ts_alloc(struct gsm_bts *bts,
81 enum gsm_phys_chan_config pchan)
82{
Harald Welte88367262009-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 Welte75a983f2008-12-27 21:34:06 +000087 int from, to;
88
Harald Welte4c704542009-12-24 10:10:16 +010089 if (!trx_is_usable(trx))
90 continue;
91
Harald Welte75a983f2008-12-27 21:34:06 +000092 /* the following constraints are pure policy,
93 * no requirement to put this restriction in place */
Harald Welted46299d2009-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 Welted46299d2009-07-29 16:46:37 +0200101 case GSM_PCHAN_TCH_F:
102 case GSM_PCHAN_TCH_H:
Harald Welte89e9d592009-08-09 22:01:26 +0200103 from = 1; to = 7;
Harald Welted46299d2009-07-29 16:46:37 +0200104 break;
Harald Welte89e9d592009-08-09 22:01:26 +0200105 case GSM_PCHAN_SDCCH8_SACCH8C:
Harald Welted46299d2009-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 Welte89e9d592009-08-09 22:01:26 +0200113 case GSM_PCHAN_SDCCH8_SACCH8C:
114 from = 1; to = 1;
Harald Welted46299d2009-07-29 16:46:37 +0200115 case GSM_PCHAN_TCH_F:
116 case GSM_PCHAN_TCH_H:
Harald Welte89e9d592009-08-09 22:01:26 +0200117 from = 1; to = 7;
Harald Welted46299d2009-07-29 16:46:37 +0200118 break;
119 default:
120 return NULL;
121 }
Harald Welte75a983f2008-12-27 21:34:06 +0000122 }
123
124 for (j = from; j <= to; j++) {
Harald Welte8470bf22008-12-25 23:28:35 +0000125 struct gsm_bts_trx_ts *ts = &trx->ts[j];
Harald Welte4c704542009-12-24 10:10:16 +0100126
127 if (!ts_is_usable(ts))
128 continue;
129
Harald Welte8470bf22008-12-25 23:28:35 +0000130 if (ts->pchan == GSM_PCHAN_NONE) {
131 ts->pchan = pchan;
Harald Welte4b634542008-12-27 01:55:51 +0000132 /* set channel attribute on OML */
Harald Welte21bd3a52009-08-10 12:21:22 +0200133 abis_nm_set_channel_attr(ts, abis_nm_chcomb4pchan(pchan));
Harald Welte8470bf22008-12-25 23:28:35 +0000134 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 Welte4bfdfe72009-06-10 23:11:52 +0800153 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Welteb908cb72009-12-22 13:09:29 +0100154 /* FIXME: what about dynamic TCH_F_TCH_H ? */
Harald Weltec0d83b02010-03-28 15:58:03 +0800155 [GSM_PCHAN_TCH_F_PDCH] = 1,
Harald Welte8470bf22008-12-25 23:28:35 +0000156};
157
158static struct gsm_lchan *
Harald Weltefc0d9522009-08-10 13:46:55 +0200159_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan)
Harald Welte8470bf22008-12-25 23:28:35 +0000160{
Harald Welte8470bf22008-12-25 23:28:35 +0000161 struct gsm_bts_trx_ts *ts;
Harald Welte88367262009-08-10 13:25:55 +0200162 int j, ss;
163
Harald Welte4c704542009-12-24 10:10:16 +0100164 if (!trx_is_usable(trx))
165 return NULL;
166
Harald Weltefc0d9522009-08-10 13:46:55 +0200167 for (j = 0; j < 8; j++) {
168 ts = &trx->ts[j];
Harald Welte4c704542009-12-24 10:10:16 +0100169 if (!ts_is_usable(ts))
170 continue;
Harald Weltec0d83b02010-03-28 15:58:03 +0800171 /* ip.access dynamic TCH/F + PDCH combination */
172 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH &&
173 pchan == GSM_PCHAN_TCH_F) {
174 /* we can only consider such a dynamic channel
175 * if the PDCH is currently inactive */
176 if (ts->flags & TS_F_PDCH_MODE)
177 continue;
178 } else if (ts->pchan != pchan)
Harald Weltefc0d9522009-08-10 13:46:55 +0200179 continue;
180 /* check if all sub-slots are allocated yet */
181 for (ss = 0; ss < subslots_per_pchan[pchan]; ss++) {
182 struct gsm_lchan *lc = &ts->lchan[ss];
Harald Welte (local)3e460312009-12-27 18:12:29 +0100183 if (lc->type == GSM_LCHAN_NONE &&
184 lc->state == LCHAN_S_NONE)
Harald Weltefc0d9522009-08-10 13:46:55 +0200185 return lc;
Harald Welte8470bf22008-12-25 23:28:35 +0000186 }
187 }
Harald Weltec0d83b02010-03-28 15:58:03 +0800188
Harald Weltefc0d9522009-08-10 13:46:55 +0200189 return NULL;
190}
191
192static struct gsm_lchan *
193_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
194{
195 struct gsm_bts_trx *trx;
196 struct gsm_bts_trx_ts *ts;
197 struct gsm_lchan *lc;
198
199 if (bts->chan_alloc_reverse) {
200 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
201 lc = _lc_find_trx(trx, pchan);
202 if (lc)
203 return lc;
204 }
205 } else {
206 llist_for_each_entry(trx, &bts->trx_list, list) {
207 lc = _lc_find_trx(trx, pchan);
208 if (lc)
209 return lc;
210 }
211 }
212
Harald Welte8470bf22008-12-25 23:28:35 +0000213 /* we cannot allocate more of these */
214 if (pchan == GSM_PCHAN_CCCH_SDCCH4)
215 return NULL;
216
217 /* if we've reached here, we need to allocate a new physical
218 * channel for the logical channel type requested */
219 ts = ts_alloc(bts, pchan);
220 if (!ts) {
221 /* no more radio resources */
222 return NULL;
223 }
224 return &ts->lchan[0];
225}
226
227/* Allocate a logical channel */
228struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type)
229{
230 struct gsm_lchan *lchan = NULL;
Harald Welte65676fe2009-08-10 14:44:24 +0200231 enum gsm_phys_chan_config first, second;
Harald Welte8470bf22008-12-25 23:28:35 +0000232
233 switch (type) {
234 case GSM_LCHAN_SDCCH:
Harald Welte65676fe2009-08-10 14:44:24 +0200235 if (bts->chan_alloc_reverse) {
236 first = GSM_PCHAN_SDCCH8_SACCH8C;
237 second = GSM_PCHAN_CCCH_SDCCH4;
238 } else {
239 first = GSM_PCHAN_CCCH_SDCCH4;
240 second = GSM_PCHAN_SDCCH8_SACCH8C;
241 }
242
243 lchan = _lc_find_bts(bts, first);
Harald Welte8470bf22008-12-25 23:28:35 +0000244 if (lchan == NULL)
Harald Welte65676fe2009-08-10 14:44:24 +0200245 lchan = _lc_find_bts(bts, second);
Harald Welte8470bf22008-12-25 23:28:35 +0000246 break;
247 case GSM_LCHAN_TCH_F:
Harald Weltefc0d9522009-08-10 13:46:55 +0200248 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte8470bf22008-12-25 23:28:35 +0000249 break;
250 case GSM_LCHAN_TCH_H:
Harald Weltefc0d9522009-08-10 13:46:55 +0200251 lchan =_lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte210c8502009-12-12 20:58:20 +0100252 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte487e6be2009-12-12 21:16:38 +0100253 if (!lchan) {
Harald Welte210c8502009-12-12 20:58:20 +0100254 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte487e6be2009-12-12 21:16:38 +0100255 type = GSM_LCHAN_TCH_F;
256 }
Harald Welte8470bf22008-12-25 23:28:35 +0000257 break;
258 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100259 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte8470bf22008-12-25 23:28:35 +0000260 }
261
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000262 if (lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000263 lchan->type = type;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000264
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100265 /* clear sapis */
Holger Hans Peter Freyther45b02432009-11-18 22:59:51 +0100266 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100267
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100268 /* clear multi rate config */
269 memset(&lchan->mr_conf, 0, sizeof(lchan->mr_conf));
270
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100271 /* clear per MSC/BSC data */
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800272 if (lchan->conn) {
273 LOGP(DRLL, LOGL_ERROR, "lchan->conn should be NULL.\n");
274 subscr_con_free(lchan->conn);
Holger Hans Peter Freytheraeb45f52010-07-29 17:08:28 +0800275 lchan->conn = NULL;
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800276 }
Harald Weltec0d83b02010-03-28 15:58:03 +0800277 } else {
278 struct challoc_signal_data sig;
279 sig.bts = bts;
280 sig.type = type;
281 dispatch_signal(SS_CHALLOC, S_CHALLOC_ALLOC_FAIL, &sig);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000282 }
Harald Welte8470bf22008-12-25 23:28:35 +0000283
284 return lchan;
285}
286
287/* Free a logical channel */
288void lchan_free(struct gsm_lchan *lchan)
289{
Harald Weltec0d83b02010-03-28 15:58:03 +0800290 struct challoc_signal_data sig;
Harald Welted12b0fd2009-12-15 21:36:05 +0100291 int i;
292
Harald Weltec0d83b02010-03-28 15:58:03 +0800293 sig.type = lchan->type;
Harald Welte8470bf22008-12-25 23:28:35 +0000294 lchan->type = GSM_LCHAN_NONE;
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800295
296
297 if (lchan->conn) {
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800298 /* We might kill an active channel... */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800299 dispatch_signal(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, lchan);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000300 }
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000301
Harald Weltec627afc2009-01-09 21:39:17 +0000302
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000303 /* stop the timer */
Sylvain Munautf77af1f2009-12-21 01:11:25 +0100304 bsc_del_timer(&lchan->T3101);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000305
Harald Welted12b0fd2009-12-15 21:36:05 +0100306 /* clear cached measuement reports */
307 lchan->meas_rep_idx = 0;
308 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
309 lchan->meas_rep[i].flags = 0;
310 lchan->meas_rep[i].nr = 0;
311 }
Harald Weltef7c28b02009-12-21 13:30:17 +0100312 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
313 lchan->neigh_meas[i].arfcn = 0;
Harald Welted12b0fd2009-12-15 21:36:05 +0100314
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +0800315 if (lchan->rqd_ref) {
316 talloc_free(lchan->rqd_ref);
317 lchan->rqd_ref = NULL;
318 lchan->rqd_ta = 0;
319 }
320
Harald Weltec0d83b02010-03-28 15:58:03 +0800321 sig.lchan = lchan;
322 sig.bts = lchan->ts->trx->bts;
323 dispatch_signal(SS_CHALLOC, S_CHALLOC_FREED, &sig);
324
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800325 if (lchan->conn) {
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800326 LOGP(DRLL, LOGL_ERROR, "the subscriber connection should be gone.\n");
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800327 subscr_con_free(lchan->conn);
328 lchan->conn = NULL;
329 }
330
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800331 lchan->sach_deact = 0;
332 lchan->release_reason = 0;
333
Harald Welte8470bf22008-12-25 23:28:35 +0000334 /* FIXME: ts_free() the timeslot, if we're the last logical
335 * channel using it */
336}
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000337
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200338/*
339 * There was an error with the TRX and we need to forget
340 * any state so that a lchan can be allocated again after
341 * the trx is fully usable.
Holger Hans Peter Freytherf7a1c232010-06-22 12:19:06 +0800342 *
343 * This should be called after lchan_free to force a channel
344 * be available for allocation again. This means that this
345 * method will stop the "delay after error"-timer and set the
346 * state to LCHAN_S_NONE.
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200347 */
348void lchan_reset(struct gsm_lchan *lchan)
349{
350 bsc_del_timer(&lchan->T3101);
Holger Hans Peter Freytherde4b0a22010-06-08 12:12:26 +0800351 bsc_del_timer(&lchan->T3111);
352 bsc_del_timer(&lchan->error_timer);
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200353
354 lchan->type = GSM_LCHAN_NONE;
355 lchan->state = LCHAN_S_NONE;
356}
357
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800358/* release the next allocated SAPI or return 0 */
359static int _lchan_release_next_sapi(struct gsm_lchan *lchan)
360{
361 int sapi;
362
363 for (sapi = 1; sapi < ARRAY_SIZE(lchan->sapis); ++sapi) {
364 u_int8_t link_id;
365 if (lchan->sapis[sapi] == LCHAN_SAPI_UNUSED)
366 continue;
367
368 link_id = sapi;
369 if (lchan->type == GSM_LCHAN_TCH_F || lchan->type == GSM_LCHAN_TCH_H)
370 link_id |= 0x40;
371 rsl_release_request(lchan, link_id, lchan->release_reason);
372 return 0;
373 }
374
375 return 1;
376}
377
378/* Drive the release process of the lchan */
379static void _lchan_handle_release(struct gsm_lchan *lchan)
380{
381 /* Ask for SAPI != 0 to be freed first and stop if we need to wait */
382 if (_lchan_release_next_sapi(lchan) == 0)
383 return;
384
385 if (lchan->sach_deact) {
386 gsm48_send_rr_release(lchan);
387 return;
388 }
389
390 rsl_release_request(lchan, 0, lchan->release_reason);
391 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
392}
393
394/* called from abis rsl */
395int rsl_lchan_rll_release(struct gsm_lchan *lchan, u_int8_t link_id)
396{
397 if (lchan->state != LCHAN_S_REL_REQ)
398 return -1;
399
400 if ((link_id & 0x7) != 0)
401 _lchan_handle_release(lchan);
402 return 0;
403}
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200404
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000405/* Consider releasing the channel now */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800406int lchan_release(struct gsm_lchan *lchan, int sach_deact, int reason)
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000407{
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800408 DEBUGP(DRLL, "%s starting release sequence\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther63d18b52010-04-10 00:14:55 +0200409 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800410
411 lchan->release_reason = reason;
412 lchan->sach_deact = sach_deact;
413 _lchan_handle_release(lchan);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000414 return 1;
415}
416
Holger Hans Peter Freytherea01ca72010-06-16 13:05:35 +0800417static struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200418 struct gsm_bts_trx *trx;
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200419 int ts_no, lchan_no;
Holger Freytherd0e38c32009-01-04 03:48:30 +0000420
Harald Weltee441d9c2009-06-21 16:17:15 +0200421 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Freytherd0e38c32009-01-04 03:48:30 +0000422 for (ts_no = 0; ts_no < 8; ++ts_no) {
423 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
424 struct gsm_lchan *lchan =
Harald Weltee441d9c2009-06-21 16:17:15 +0200425 &trx->ts[ts_no].lchan[lchan_no];
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800426 if (lchan->conn && subscr == lchan->conn->subscr)
Holger Freytherd0e38c32009-01-04 03:48:30 +0000427 return lchan;
428 }
429 }
430 }
431
432 return NULL;
433}
Harald Welte1a6f7982009-08-09 18:52:33 +0200434
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +0800435struct gsm_subscriber_connection *connection_for_subscr(struct gsm_subscriber *subscr)
Harald Welte1a6f7982009-08-09 18:52:33 +0200436{
437 struct gsm_bts *bts;
438 struct gsm_network *net = subscr->net;
439 struct gsm_lchan *lchan;
440
441 llist_for_each_entry(bts, &net->bts_list, list) {
442 lchan = lchan_find(bts, subscr);
443 if (lchan)
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800444 return lchan->conn;
Harald Welte1a6f7982009-08-09 18:52:33 +0200445 }
446
Holger Hans Peter Freytherba925872009-10-27 10:42:53 +0100447 return NULL;
Harald Welte1a6f7982009-08-09 18:52:33 +0200448}
Harald Welteb908cb72009-12-22 13:09:29 +0100449
450void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
451{
452 struct gsm_bts_trx *trx;
453
454 llist_for_each_entry(trx, &bts->trx_list, list) {
455 int i;
456
457 /* skip administratively deactivated tranxsceivers */
Sylvain Munaut1f6c11f2010-01-02 16:32:17 +0100458 if (!nm_is_running(&trx->nm_state) ||
459 !nm_is_running(&trx->bb_transc.nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100460 continue;
461
462 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
463 struct gsm_bts_trx_ts *ts = &trx->ts[i];
464 struct load_counter *pl = &cl->pchan[ts->pchan];
465 int j;
466
467 /* skip administratively deactivated timeslots */
Sylvain Munaut1f6c11f2010-01-02 16:32:17 +0100468 if (!nm_is_running(&ts->nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100469 continue;
470
471 for (j = 0; j < subslots_per_pchan[ts->pchan]; j++) {
472 struct gsm_lchan *lchan = &ts->lchan[j];
473
474 pl->total++;
475
476 switch (lchan->state) {
477 case LCHAN_S_NONE:
478 break;
479 default:
480 pl->used++;
481 break;
482 }
483 }
484 }
485 }
486}
487
488void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
489{
490 struct gsm_bts *bts;
491
492 memset(pl, 0, sizeof(*pl));
493
494 llist_for_each_entry(bts, &net->bts_list, list)
495 bts_chan_load(pl, bts);
496}
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800497
498struct gsm_subscriber_connection *subscr_con_allocate(struct gsm_lchan *lchan)
499{
500 struct gsm_subscriber_connection *conn;
501
502 conn = talloc_zero(lchan->ts->trx->bts, struct gsm_subscriber_connection);
503 if (!conn)
504 return NULL;
505
506 /* Configure the time and start it so it will be closed */
507 conn->lchan = lchan;
508 conn->bts = lchan->ts->trx->bts;
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800509 lchan->conn = conn;
510 return conn;
511}
512
513/* TODO: move subscriber put here... */
514void subscr_con_free(struct gsm_subscriber_connection *conn)
515{
516 struct gsm_lchan *lchan;
517
518
519 if (!conn)
520 return;
521
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800522
523 if (conn->subscr) {
524 subscr_put(conn->subscr);
525 conn->subscr = NULL;
526 }
527
528
Holger Hans Peter Freytherf2553a62010-06-30 12:58:14 +0800529 if (conn->ho_lchan)
530 LOGP(DNM, LOGL_ERROR, "The ho_lchan should have been cleared.\n");
Holger Hans Peter Freythere071ab72010-06-30 12:40:10 +0800531
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800532 lchan = conn->lchan;
533 talloc_free(conn);
534
535 if (lchan)
536 lchan->conn = NULL;
537}