blob: d8f908770a6615c0f53ce4b538472491fb0de0dc [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
Harald Welte9af6ddf2011-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 Welte8470bf22008-12-25 23:28:35 +000011 * (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 Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte8470bf22008-12-25 23:28:35 +000017 *
Harald Welte9af6ddf2011-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 Welte8470bf22008-12-25 23:28:35 +000020 *
21 */
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <errno.h>
27
Holger Hans Peter Freyther35470452010-12-22 18:13:00 +010028#include <openbsc/gsm_subscriber.h>
Harald Welte8470bf22008-12-25 23:28:35 +000029#include <openbsc/chan_alloc.h>
Harald Welte4b634542008-12-27 01:55:51 +000030#include <openbsc/abis_nm.h>
Holger Freyther67b4b9a2009-01-01 03:46:11 +000031#include <openbsc/abis_rsl.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000032#include <openbsc/debug.h>
Holger Hans Peter Freytherf95f2732012-01-17 15:27:33 +010033#include <openbsc/rtp_proxy.h>
Holger Freyther7c19f742009-06-06 13:54:35 +000034#include <openbsc/signal.h>
Holger Freytherc6ea9db2008-12-30 19:18:21 +000035
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +080037
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)) {
Harald Welted64c0bc2011-05-30 12:07:53 +020042 if (!nm_is_running(&ts->mo.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)) {
Harald Welted64c0bc2011-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 Welte4c704542009-12-24 10:10:16 +010055 return 0;
56 }
57
58 return 1;
59}
60
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020061static const uint8_t subslots_per_pchan[] = {
Harald Welte8470bf22008-12-25 23:28:35 +000062 [GSM_PCHAN_NONE] = 0,
63 [GSM_PCHAN_CCCH] = 0,
64 [GSM_PCHAN_CCCH_SDCCH4] = 4,
65 [GSM_PCHAN_TCH_F] = 1,
66 [GSM_PCHAN_TCH_H] = 2,
Harald Welte4bfdfe72009-06-10 23:11:52 +080067 [GSM_PCHAN_SDCCH8_SACCH8C] = 8,
Harald Welteb908cb72009-12-22 13:09:29 +010068 /* FIXME: what about dynamic TCH_F_TCH_H ? */
Harald Weltec0d83b02010-03-28 15:58:03 +080069 [GSM_PCHAN_TCH_F_PDCH] = 1,
Harald Welte30f1f372014-12-28 15:00:45 +010070 [GSM_PCHAN_CCCH_SDCCH4_CBCH] = 4,
71 [GSM_PCHAN_SDCCH8_SACCH8C_CBCH] = 8,
Harald Welte8470bf22008-12-25 23:28:35 +000072};
73
74static struct gsm_lchan *
Harald Weltefc0d9522009-08-10 13:46:55 +020075_lc_find_trx(struct gsm_bts_trx *trx, enum gsm_phys_chan_config pchan)
Harald Welte8470bf22008-12-25 23:28:35 +000076{
Harald Welte8470bf22008-12-25 23:28:35 +000077 struct gsm_bts_trx_ts *ts;
Harald Welte88367262009-08-10 13:25:55 +020078 int j, ss;
79
Harald Welte4c704542009-12-24 10:10:16 +010080 if (!trx_is_usable(trx))
81 return NULL;
82
Harald Weltefc0d9522009-08-10 13:46:55 +020083 for (j = 0; j < 8; j++) {
84 ts = &trx->ts[j];
Harald Welte4c704542009-12-24 10:10:16 +010085 if (!ts_is_usable(ts))
86 continue;
Harald Weltec0d83b02010-03-28 15:58:03 +080087 /* ip.access dynamic TCH/F + PDCH combination */
88 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH &&
89 pchan == GSM_PCHAN_TCH_F) {
90 /* we can only consider such a dynamic channel
91 * if the PDCH is currently inactive */
92 if (ts->flags & TS_F_PDCH_MODE)
93 continue;
94 } else if (ts->pchan != pchan)
Harald Weltefc0d9522009-08-10 13:46:55 +020095 continue;
96 /* check if all sub-slots are allocated yet */
97 for (ss = 0; ss < subslots_per_pchan[pchan]; ss++) {
98 struct gsm_lchan *lc = &ts->lchan[ss];
Harald Welte (local)3e460312009-12-27 18:12:29 +010099 if (lc->type == GSM_LCHAN_NONE &&
100 lc->state == LCHAN_S_NONE)
Harald Weltefc0d9522009-08-10 13:46:55 +0200101 return lc;
Harald Welte8470bf22008-12-25 23:28:35 +0000102 }
103 }
Harald Weltec0d83b02010-03-28 15:58:03 +0800104
Harald Weltefc0d9522009-08-10 13:46:55 +0200105 return NULL;
106}
107
108static struct gsm_lchan *
109_lc_find_bts(struct gsm_bts *bts, enum gsm_phys_chan_config pchan)
110{
111 struct gsm_bts_trx *trx;
Harald Weltefc0d9522009-08-10 13:46:55 +0200112 struct gsm_lchan *lc;
113
114 if (bts->chan_alloc_reverse) {
115 llist_for_each_entry_reverse(trx, &bts->trx_list, list) {
116 lc = _lc_find_trx(trx, pchan);
117 if (lc)
118 return lc;
119 }
120 } else {
121 llist_for_each_entry(trx, &bts->trx_list, list) {
122 lc = _lc_find_trx(trx, pchan);
123 if (lc)
124 return lc;
125 }
126 }
127
Harald Weltef86852c2015-01-01 12:46:26 +0100128 return NULL;
Harald Welte8470bf22008-12-25 23:28:35 +0000129}
130
131/* Allocate a logical channel */
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800132struct gsm_lchan *lchan_alloc(struct gsm_bts *bts, enum gsm_chan_t type,
133 int allow_bigger)
Harald Welte8470bf22008-12-25 23:28:35 +0000134{
135 struct gsm_lchan *lchan = NULL;
Harald Welte30f1f372014-12-28 15:00:45 +0100136 enum gsm_phys_chan_config first, first_cbch, second, second_cbch;
Harald Welte8470bf22008-12-25 23:28:35 +0000137
138 switch (type) {
139 case GSM_LCHAN_SDCCH:
Harald Welte65676fe2009-08-10 14:44:24 +0200140 if (bts->chan_alloc_reverse) {
141 first = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Welte30f1f372014-12-28 15:00:45 +0100142 first_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200143 second = GSM_PCHAN_CCCH_SDCCH4;
Harald Welte30f1f372014-12-28 15:00:45 +0100144 second_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200145 } else {
146 first = GSM_PCHAN_CCCH_SDCCH4;
Harald Welte30f1f372014-12-28 15:00:45 +0100147 first_cbch = GSM_PCHAN_CCCH_SDCCH4_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200148 second = GSM_PCHAN_SDCCH8_SACCH8C;
Harald Welte30f1f372014-12-28 15:00:45 +0100149 second_cbch = GSM_PCHAN_SDCCH8_SACCH8C_CBCH;
Harald Welte65676fe2009-08-10 14:44:24 +0200150 }
151
152 lchan = _lc_find_bts(bts, first);
Harald Welte8470bf22008-12-25 23:28:35 +0000153 if (lchan == NULL)
Harald Welte30f1f372014-12-28 15:00:45 +0100154 lchan = _lc_find_bts(bts, first_cbch);
155 if (lchan == NULL)
Harald Welte65676fe2009-08-10 14:44:24 +0200156 lchan = _lc_find_bts(bts, second);
Harald Welte30f1f372014-12-28 15:00:45 +0100157 if (lchan == NULL)
158 lchan = _lc_find_bts(bts, second_cbch);
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800159
160 /* allow to assign bigger channels */
161 if (allow_bigger) {
162 if (lchan == NULL) {
163 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
164 type = GSM_LCHAN_TCH_H;
165 }
166
167 if (lchan == NULL) {
168 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
169 type = GSM_LCHAN_TCH_F;
170 }
171 }
Harald Welte8470bf22008-12-25 23:28:35 +0000172 break;
173 case GSM_LCHAN_TCH_F:
Harald Weltefc0d9522009-08-10 13:46:55 +0200174 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Weltea4c63b02014-05-18 22:23:26 +0200175 /* If we don't have TCH/F available, fall-back to TCH/H */
176 if (!lchan) {
177 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_H);
178 type = GSM_LCHAN_TCH_H;
179 }
Harald Welte8470bf22008-12-25 23:28:35 +0000180 break;
181 case GSM_LCHAN_TCH_H:
Harald Weltefc0d9522009-08-10 13:46:55 +0200182 lchan =_lc_find_bts(bts, GSM_PCHAN_TCH_H);
Harald Welte210c8502009-12-12 20:58:20 +0100183 /* If we don't have TCH/H available, fall-back to TCH/F */
Harald Welte487e6be2009-12-12 21:16:38 +0100184 if (!lchan) {
Harald Welte210c8502009-12-12 20:58:20 +0100185 lchan = _lc_find_bts(bts, GSM_PCHAN_TCH_F);
Harald Welte487e6be2009-12-12 21:16:38 +0100186 type = GSM_LCHAN_TCH_F;
187 }
Harald Welte8470bf22008-12-25 23:28:35 +0000188 break;
189 default:
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100190 LOGP(DRLL, LOGL_ERROR, "Unknown gsm_chan_t %u\n", type);
Harald Welte8470bf22008-12-25 23:28:35 +0000191 }
192
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000193 if (lchan) {
Harald Welte8470bf22008-12-25 23:28:35 +0000194 lchan->type = type;
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000195
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100196 /* clear sapis */
Holger Hans Peter Freyther45b02432009-11-18 22:59:51 +0100197 memset(lchan->sapis, 0, ARRAY_SIZE(lchan->sapis));
Holger Hans Peter Freyther5ba6f482009-10-28 14:23:39 +0100198
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +0100199 /* clear multi rate config */
200 memset(&lchan->mr_conf, 0, sizeof(lchan->mr_conf));
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +0100201
202 lchan->broken_reason = "";
Harald Weltec0d83b02010-03-28 15:58:03 +0800203 } else {
204 struct challoc_signal_data sig;
205 sig.bts = bts;
206 sig.type = type;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200207 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_ALLOC_FAIL, &sig);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000208 }
Harald Welte8470bf22008-12-25 23:28:35 +0000209
210 return lchan;
211}
212
213/* Free a logical channel */
214void lchan_free(struct gsm_lchan *lchan)
215{
Harald Weltec0d83b02010-03-28 15:58:03 +0800216 struct challoc_signal_data sig;
Harald Welted12b0fd2009-12-15 21:36:05 +0100217 int i;
218
Harald Weltec0d83b02010-03-28 15:58:03 +0800219 sig.type = lchan->type;
Harald Welte8470bf22008-12-25 23:28:35 +0000220 lchan->type = GSM_LCHAN_NONE;
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800221
222
223 if (lchan->conn) {
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100224 struct lchan_signal_data sig;
225
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800226 /* We might kill an active channel... */
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100227 sig.lchan = lchan;
228 sig.mr = NULL;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200229 osmo_signal_dispatch(SS_LCHAN, S_LCHAN_UNEXPECTED_RELEASE, &sig);
Holger Freyther12aa50d2009-01-01 18:02:05 +0000230 }
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000231
Holger Hans Peter Freytherf95f2732012-01-17 15:27:33 +0100232 if (lchan->abis_ip.rtp_socket) {
233 LOGP(DRLL, LOGL_ERROR, "%s RTP Proxy Socket remained open.\n",
234 gsm_lchan_name(lchan));
235 rtp_socket_free(lchan->abis_ip.rtp_socket);
236 lchan->abis_ip.rtp_socket = NULL;
237 }
Harald Weltec627afc2009-01-09 21:39:17 +0000238
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000239 /* stop the timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200240 osmo_timer_del(&lchan->T3101);
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000241
Harald Welted12b0fd2009-12-15 21:36:05 +0100242 /* clear cached measuement reports */
243 lchan->meas_rep_idx = 0;
244 for (i = 0; i < ARRAY_SIZE(lchan->meas_rep); i++) {
245 lchan->meas_rep[i].flags = 0;
246 lchan->meas_rep[i].nr = 0;
247 }
Harald Weltef7c28b02009-12-21 13:30:17 +0100248 for (i = 0; i < ARRAY_SIZE(lchan->neigh_meas); i++)
249 lchan->neigh_meas[i].arfcn = 0;
Harald Welted12b0fd2009-12-15 21:36:05 +0100250
Holger Hans Peter Freyther5ba05f42010-06-22 12:11:59 +0800251 if (lchan->rqd_ref) {
252 talloc_free(lchan->rqd_ref);
253 lchan->rqd_ref = NULL;
254 lchan->rqd_ta = 0;
255 }
256
Harald Weltec0d83b02010-03-28 15:58:03 +0800257 sig.lchan = lchan;
258 sig.bts = lchan->ts->trx->bts;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200259 osmo_signal_dispatch(SS_CHALLOC, S_CHALLOC_FREED, &sig);
Harald Weltec0d83b02010-03-28 15:58:03 +0800260
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800261 if (lchan->conn) {
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800262 LOGP(DRLL, LOGL_ERROR, "the subscriber connection should be gone.\n");
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800263 lchan->conn = NULL;
264 }
265
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 Hans Peter Freyther135f7972010-04-15 11:21:02 +0200270/*
271 * There was an error with the TRX and we need to forget
272 * any state so that a lchan can be allocated again after
273 * the trx is fully usable.
Holger Hans Peter Freytherf7a1c232010-06-22 12:19:06 +0800274 *
275 * This should be called after lchan_free to force a channel
276 * be available for allocation again. This means that this
277 * method will stop the "delay after error"-timer and set the
278 * state to LCHAN_S_NONE.
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200279 */
280void lchan_reset(struct gsm_lchan *lchan)
281{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200282 osmo_timer_del(&lchan->T3101);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100283 osmo_timer_del(&lchan->T3109);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200284 osmo_timer_del(&lchan->T3111);
285 osmo_timer_del(&lchan->error_timer);
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200286
287 lchan->type = GSM_LCHAN_NONE;
288 lchan->state = LCHAN_S_NONE;
Holger Hans Peter Freytherf95f2732012-01-17 15:27:33 +0100289
290 if (lchan->abis_ip.rtp_socket) {
291 rtp_socket_free(lchan->abis_ip.rtp_socket);
292 lchan->abis_ip.rtp_socket = NULL;
293 }
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200294}
295
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800296/* Drive the release process of the lchan */
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100297static void _lchan_handle_release(struct gsm_lchan *lchan,
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100298 int sacch_deact, int mode)
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800299{
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100300 /* Release all SAPIs on the local end and continue */
301 rsl_release_sapis_from(lchan, 1, RSL_REL_LOCAL_END);
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800302
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100303 /*
304 * Shall we send a RR Release, start T3109 and wait for the
305 * release indication from the BTS or just take it down (e.g.
306 * on assignment requests)
307 */
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100308 if (sacch_deact) {
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800309 gsm48_send_rr_release(lchan);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100310
311 /* Deactivate the SACCH on the BTS side */
312 rsl_deact_sacch(lchan);
313 rsl_start_t3109(lchan);
Holger Hans Peter Freyther006e3d82012-12-25 23:45:14 +0100314 } else if (lchan->sapis[0] == LCHAN_SAPI_UNUSED) {
315 rsl_direct_rf_release(lchan);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100316 } else {
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100317 rsl_release_request(lchan, 0, mode);
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +0100318 }
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800319}
Holger Hans Peter Freyther135f7972010-04-15 11:21:02 +0200320
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000321/* Consider releasing the channel now */
Holger Hans Peter Freyther5ca825e2012-12-06 12:01:38 +0100322int lchan_release(struct gsm_lchan *lchan, int sacch_deact, enum rsl_rel_mode mode)
Holger Freytherc6ea9db2008-12-30 19:18:21 +0000323{
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800324 DEBUGP(DRLL, "%s starting release sequence\n", gsm_lchan_name(lchan));
Holger Hans Peter Freyther63d18b52010-04-10 00:14:55 +0200325 rsl_lchan_set_state(lchan, LCHAN_S_REL_REQ);
Holger Hans Peter Freyther4b85a322010-07-29 17:09:36 +0800326
Holger Hans Peter Freytherabf962b2010-11-14 16:04:46 +0100327 lchan->conn = NULL;
Holger Hans Peter Freyther85825352011-12-27 22:24:17 +0100328 _lchan_handle_release(lchan, sacch_deact, mode);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000329 return 1;
330}
331
Holger Hans Peter Freytherea01ca72010-06-16 13:05:35 +0800332static struct gsm_lchan* lchan_find(struct gsm_bts *bts, struct gsm_subscriber *subscr) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200333 struct gsm_bts_trx *trx;
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200334 int ts_no, lchan_no;
Holger Freytherd0e38c32009-01-04 03:48:30 +0000335
Harald Weltee441d9c2009-06-21 16:17:15 +0200336 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Freytherd0e38c32009-01-04 03:48:30 +0000337 for (ts_no = 0; ts_no < 8; ++ts_no) {
338 for (lchan_no = 0; lchan_no < TS_MAX_LCHAN; ++lchan_no) {
339 struct gsm_lchan *lchan =
Harald Weltee441d9c2009-06-21 16:17:15 +0200340 &trx->ts[ts_no].lchan[lchan_no];
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800341 if (lchan->conn && subscr == lchan->conn->subscr)
Holger Freytherd0e38c32009-01-04 03:48:30 +0000342 return lchan;
343 }
344 }
345 }
346
347 return NULL;
348}
Harald Welte1a6f7982009-08-09 18:52:33 +0200349
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +0800350struct gsm_subscriber_connection *connection_for_subscr(struct gsm_subscriber *subscr)
Harald Welte1a6f7982009-08-09 18:52:33 +0200351{
352 struct gsm_bts *bts;
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100353 struct gsm_network *net = subscr->group->net;
Harald Welte1a6f7982009-08-09 18:52:33 +0200354 struct gsm_lchan *lchan;
355
356 llist_for_each_entry(bts, &net->bts_list, list) {
357 lchan = lchan_find(bts, subscr);
358 if (lchan)
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800359 return lchan->conn;
Harald Welte1a6f7982009-08-09 18:52:33 +0200360 }
361
Holger Hans Peter Freytherba925872009-10-27 10:42:53 +0100362 return NULL;
Harald Welte1a6f7982009-08-09 18:52:33 +0200363}
Harald Welteb908cb72009-12-22 13:09:29 +0100364
365void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts)
366{
367 struct gsm_bts_trx *trx;
368
369 llist_for_each_entry(trx, &bts->trx_list, list) {
370 int i;
371
372 /* skip administratively deactivated tranxsceivers */
Harald Welted64c0bc2011-05-30 12:07:53 +0200373 if (!nm_is_running(&trx->mo.nm_state) ||
374 !nm_is_running(&trx->bb_transc.mo.nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100375 continue;
376
377 for (i = 0; i < ARRAY_SIZE(trx->ts); i++) {
378 struct gsm_bts_trx_ts *ts = &trx->ts[i];
379 struct load_counter *pl = &cl->pchan[ts->pchan];
380 int j;
381
382 /* skip administratively deactivated timeslots */
Harald Welted64c0bc2011-05-30 12:07:53 +0200383 if (!nm_is_running(&ts->mo.nm_state))
Harald Welteb908cb72009-12-22 13:09:29 +0100384 continue;
385
386 for (j = 0; j < subslots_per_pchan[ts->pchan]; j++) {
387 struct gsm_lchan *lchan = &ts->lchan[j];
388
389 pl->total++;
390
391 switch (lchan->state) {
392 case LCHAN_S_NONE:
393 break;
394 default:
395 pl->used++;
396 break;
397 }
398 }
399 }
400 }
401}
402
403void network_chan_load(struct pchan_load *pl, struct gsm_network *net)
404{
405 struct gsm_bts *bts;
406
407 memset(pl, 0, sizeof(*pl));
408
409 llist_for_each_entry(bts, &net->bts_list, list)
410 bts_chan_load(pl, bts);
411}
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800412