blob: c2e3f8c724c0ae10189de541144d2576aba6a127 [file] [log] [blame]
Harald Welte798418a2009-11-29 22:56:14 +01001/* Handover Logic for Inter-BTS (Intra-BSC) Handover. This does not
2 * actually implement the handover algorithm/decision, but executes a
3 * handover decision */
4
5/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
6 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Welte798418a2009-11-29 22:56:14 +010012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte798418a2009-11-29 22:56:14 +010018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte798418a2009-11-29 22:56:14 +010021 *
22 */
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <errno.h>
28#include <time.h>
29#include <netinet/in.h>
30
Harald Weltedfe6c7d2010-02-20 16:24:02 +010031#include <osmocore/msgb.h>
Harald Welte798418a2009-11-29 22:56:14 +010032#include <openbsc/debug.h>
33#include <openbsc/gsm_data.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010034#include <osmocore/gsm_utils.h>
Harald Welte798418a2009-11-29 22:56:14 +010035#include <openbsc/gsm_subscriber.h>
36#include <openbsc/gsm_04_08.h>
37#include <openbsc/abis_rsl.h>
38#include <openbsc/chan_alloc.h>
39#include <openbsc/signal.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010040#include <osmocore/talloc.h>
Harald Welte798418a2009-11-29 22:56:14 +010041#include <openbsc/transaction.h>
Harald Weltea0379022009-12-20 17:04:40 +010042#include <openbsc/rtp_proxy.h>
Harald Welte798418a2009-11-29 22:56:14 +010043
44struct bsc_handover {
45 struct llist_head list;
46
47 struct gsm_lchan *old_lchan;
48 struct gsm_lchan *new_lchan;
49
50 struct timer_list T3103;
51
52 u_int8_t ho_ref;
53};
54
55static LLIST_HEAD(bsc_handovers);
56
57static struct bsc_handover *bsc_ho_by_new_lchan(struct gsm_lchan *new_lchan)
58{
59 struct bsc_handover *ho;
60
61 llist_for_each_entry(ho, &bsc_handovers, list) {
62 if (ho->new_lchan == new_lchan)
63 return ho;
64 }
65
66 return NULL;
67}
68
69static struct bsc_handover *bsc_ho_by_old_lchan(struct gsm_lchan *old_lchan)
70{
71 struct bsc_handover *ho;
72
73 llist_for_each_entry(ho, &bsc_handovers, list) {
74 if (ho->old_lchan == old_lchan)
75 return ho;
76 }
77
78 return NULL;
79}
80
81/* Hand over the specified logical channel to the specified new BTS.
82 * This is the main entry point for the actual handover algorithm,
83 * after it has decided it wants to initiate HO to a specific BTS */
84int bsc_handover_start(struct gsm_lchan *old_lchan, struct gsm_bts *bts)
85{
86 struct gsm_lchan *new_lchan;
87 struct bsc_handover *ho;
Harald Welte8d77b952009-12-17 00:31:10 +010088 static u_int8_t ho_ref;
Harald Welte798418a2009-11-29 22:56:14 +010089 int rc;
90
Harald Welte66706812009-12-17 22:23:21 +010091 /* don't attempt multiple handovers for the same lchan at
92 * the same time */
93 if (bsc_ho_by_old_lchan(old_lchan))
94 return -EBUSY;
95
Harald Welteb1d4c8e2009-12-17 23:10:46 +010096 DEBUGP(DHO, "(old_lchan on BTS %u, new BTS %u)\n",
Harald Welte8d77b952009-12-17 00:31:10 +010097 old_lchan->ts->trx->bts->nr, bts->nr);
98
Harald Welteffa55a42009-12-22 19:07:32 +010099 counter_inc(bts->network->stats.handover.attempted);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100100
Holger Hans Peter Freythere071ab72010-06-30 12:40:10 +0800101 if (!old_lchan->conn) {
102 LOGP(DHO, LOGL_ERROR, "Old lchan lacks connection data.\n");
103 return -ENOSPC;
104 }
105
Holger Hans Peter Freyther457c2a82010-09-06 08:58:42 +0800106 new_lchan = lchan_alloc(bts, old_lchan->type, 0);
Harald Welte8d77b952009-12-17 00:31:10 +0100107 if (!new_lchan) {
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100108 LOGP(DHO, LOGL_NOTICE, "No free channel\n");
Harald Welteffa55a42009-12-22 19:07:32 +0100109 counter_inc(bts->network->stats.handover.no_channel);
Harald Welte798418a2009-11-29 22:56:14 +0100110 return -ENOSPC;
Harald Welte8d77b952009-12-17 00:31:10 +0100111 }
Harald Welte798418a2009-11-29 22:56:14 +0100112
Holger Hans Peter Freyther90cdd282010-12-21 13:29:14 +0100113 ho = talloc_zero(tall_bsc_ctx, struct bsc_handover);
Harald Welte798418a2009-11-29 22:56:14 +0100114 if (!ho) {
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100115 LOGP(DHO, LOGL_FATAL, "Out of Memory\n");
Harald Welte798418a2009-11-29 22:56:14 +0100116 lchan_free(new_lchan);
117 return -ENOMEM;
118 }
119 ho->old_lchan = old_lchan;
120 ho->new_lchan = new_lchan;
Harald Welte8d77b952009-12-17 00:31:10 +0100121 ho->ho_ref = ho_ref++;
122
123 /* copy some parameters from old lchan */
124 memcpy(&new_lchan->encr, &old_lchan->encr, sizeof(new_lchan->encr));
125 new_lchan->ms_power = old_lchan->ms_power;
126 new_lchan->bs_power = old_lchan->bs_power;
127 new_lchan->rsl_cmode = old_lchan->rsl_cmode;
128 new_lchan->tch_mode = old_lchan->tch_mode;
Holger Hans Peter Freythere071ab72010-06-30 12:40:10 +0800129
130 new_lchan->conn = old_lchan->conn;
131 new_lchan->conn->ho_lchan = new_lchan;
Harald Welte798418a2009-11-29 22:56:14 +0100132
133 /* FIXME: do we have a better idea of the timing advance? */
Harald Welte8d77b952009-12-17 00:31:10 +0100134 rc = rsl_chan_activate_lchan(new_lchan, RSL_ACT_INTER_ASYNC, 0,
135 ho->ho_ref);
Harald Welte798418a2009-11-29 22:56:14 +0100136 if (rc < 0) {
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100137 LOGP(DHO, LOGL_ERROR, "could not activate channel\n");
Holger Hans Peter Freythere071ab72010-06-30 12:40:10 +0800138 new_lchan->conn->ho_lchan = NULL;
Holger Hans Peter Freytherc8396672010-12-26 19:59:32 +0100139 new_lchan->conn = NULL;
Harald Welte798418a2009-11-29 22:56:14 +0100140 talloc_free(ho);
141 lchan_free(new_lchan);
142 return rc;
143 }
144
Holger Hans Peter Freyther5eec9d92010-04-10 00:16:04 +0200145 rsl_lchan_set_state(new_lchan, LCHAN_S_ACT_REQ);
Harald Welte798418a2009-11-29 22:56:14 +0100146 llist_add(&ho->list, &bsc_handovers);
147 /* we continue in the SS_LCHAN handler / ho_chan_activ_ack */
148
149 return 0;
150}
151
Holger Hans Peter Freytherebd50a62010-12-27 13:46:48 +0100152void bsc_clear_handover(struct gsm_subscriber_connection *conn, int free_lchan)
Holger Hans Peter Freytherf2553a62010-06-30 12:58:14 +0800153{
154 struct bsc_handover *ho;
155
156 ho = bsc_ho_by_new_lchan(conn->ho_lchan);
157
158
159 if (!ho && conn->ho_lchan)
160 LOGP(DHO, LOGL_ERROR, "BUG: We lost some state.\n");
161
162 if (!ho) {
163 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
164 return;
165 }
166
167 conn->ho_lchan->conn = NULL;
168 conn->ho_lchan = NULL;
Holger Hans Peter Freytherebd50a62010-12-27 13:46:48 +0100169
170 if (free_lchan)
171 lchan_release(ho->new_lchan, 0, 1);
Holger Hans Peter Freytherf2553a62010-06-30 12:58:14 +0800172
173 bsc_del_timer(&ho->T3103);
174 llist_del(&ho->list);
175 talloc_free(ho);
176}
177
Harald Welte798418a2009-11-29 22:56:14 +0100178/* T3103 expired: Handover has failed without HO COMPLETE or HO FAIL */
179static void ho_T3103_cb(void *_ho)
180{
181 struct bsc_handover *ho = _ho;
Harald Welteffa55a42009-12-22 19:07:32 +0100182 struct gsm_network *net = ho->new_lchan->ts->trx->bts->network;
Harald Welte798418a2009-11-29 22:56:14 +0100183
Harald Welte8d77b952009-12-17 00:31:10 +0100184 DEBUGP(DHO, "HO T3103 expired\n");
Harald Welteffa55a42009-12-22 19:07:32 +0100185 counter_inc(net->stats.handover.timeout);
Harald Welte8d77b952009-12-17 00:31:10 +0100186
Holger Hans Peter Freytherd9c9f072010-06-30 13:04:13 +0800187 ho->new_lchan->conn->ho_lchan = NULL;
188 ho->new_lchan->conn = NULL;
189 lchan_release(ho->new_lchan, 0, 1);
Harald Welte798418a2009-11-29 22:56:14 +0100190 llist_del(&ho->list);
191 talloc_free(ho);
192}
193
194/* RSL has acknowledged activation of the new lchan */
195static int ho_chan_activ_ack(struct gsm_lchan *new_lchan)
196{
197 struct bsc_handover *ho;
198 int rc;
199
Harald Weltea9fa8dc2009-12-18 14:50:08 +0100200 /* we need to check if this channel activation is related to
201 * a handover at all (and if, which particular handover) */
Harald Welte798418a2009-11-29 22:56:14 +0100202 ho = bsc_ho_by_new_lchan(new_lchan);
Harald Weltea9fa8dc2009-12-18 14:50:08 +0100203 if (!ho)
Harald Welte798418a2009-11-29 22:56:14 +0100204 return -ENODEV;
Harald Weltea9fa8dc2009-12-18 14:50:08 +0100205
206 DEBUGP(DHO, "handover activate ack, send HO Command\n");
Harald Welte798418a2009-11-29 22:56:14 +0100207
208 /* we can now send the 04.08 HANDOVER COMMAND to the MS
209 * using the old lchan */
210
Harald Welte8d77b952009-12-17 00:31:10 +0100211 rc = gsm48_send_ho_cmd(ho->old_lchan, new_lchan, 0, ho->ho_ref);
Harald Welte798418a2009-11-29 22:56:14 +0100212
213 /* start T3103. We can continue either with T3103 expiration,
214 * 04.08 HANDOVER COMPLETE or 04.08 HANDOVER FAIL */
215 ho->T3103.cb = ho_T3103_cb;
Harald Weltee47f96b2009-12-18 11:49:03 +0100216 ho->T3103.data = ho;
Harald Welte798418a2009-11-29 22:56:14 +0100217 bsc_schedule_timer(&ho->T3103, 10, 0);
218
Harald Weltea0379022009-12-20 17:04:40 +0100219 /* create a RTP connection */
220 if (is_ipaccess_bts(new_lchan->ts->trx->bts))
221 rsl_ipacc_crcx(new_lchan);
222
Harald Welte798418a2009-11-29 22:56:14 +0100223 return 0;
224}
225
226/* RSL has not acknowledged activation of the new lchan */
227static int ho_chan_activ_nack(struct gsm_lchan *new_lchan)
228{
229 struct bsc_handover *ho;
230
231 ho = bsc_ho_by_new_lchan(new_lchan);
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100232 if (!ho) {
233 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
Harald Welte798418a2009-11-29 22:56:14 +0100234 return -ENODEV;
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100235 }
Harald Welte798418a2009-11-29 22:56:14 +0100236
Holger Hans Peter Freyther2391b4c2010-12-21 13:30:17 +0100237 new_lchan->conn->ho_lchan = NULL;
238 new_lchan->conn = NULL;
Harald Welte798418a2009-11-29 22:56:14 +0100239 llist_del(&ho->list);
240 talloc_free(ho);
241
242 /* FIXME: maybe we should try to allocate a new LCHAN here? */
243
244 return 0;
245}
246
247/* GSM 04.08 HANDOVER COMPLETE has been received on new channel */
248static int ho_gsm48_ho_compl(struct gsm_lchan *new_lchan)
249{
Holger Hans Peter Freyther9d3e2ec2010-12-26 20:34:26 +0100250 struct gsm_network *net;
Harald Welte798418a2009-11-29 22:56:14 +0100251 struct bsc_handover *ho;
252
253 ho = bsc_ho_by_new_lchan(new_lchan);
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100254 if (!ho) {
255 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
Harald Welte798418a2009-11-29 22:56:14 +0100256 return -ENODEV;
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100257 }
Harald Welte798418a2009-11-29 22:56:14 +0100258
Holger Hans Peter Freyther9d3e2ec2010-12-26 20:34:26 +0100259 net = new_lchan->ts->trx->bts->network;
Harald Welte7c639a02009-12-25 23:02:50 +0100260 LOGP(DHO, LOGL_INFO, "Subscriber %s HO from BTS %u->%u on ARFCN "
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800261 "%u->%u\n", subscr_name(ho->old_lchan->conn->subscr),
Harald Welte7c639a02009-12-25 23:02:50 +0100262 ho->old_lchan->ts->trx->bts->nr, new_lchan->ts->trx->bts->nr,
263 ho->old_lchan->ts->trx->arfcn, new_lchan->ts->trx->arfcn);
264
Harald Welteffa55a42009-12-22 19:07:32 +0100265 counter_inc(net->stats.handover.completed);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100266
Harald Welte798418a2009-11-29 22:56:14 +0100267 bsc_del_timer(&ho->T3103);
Harald Welte798418a2009-11-29 22:56:14 +0100268
Holger Hans Peter Freythere071ab72010-06-30 12:40:10 +0800269 /* Replace the ho lchan with the primary one */
270 if (ho->old_lchan != new_lchan->conn->lchan)
271 LOGP(DHO, LOGL_ERROR, "Primary lchan changed during handover.\n");
272
273 if (new_lchan != new_lchan->conn->ho_lchan)
274 LOGP(DHO, LOGL_ERROR, "Handover channel changed during this handover.\n");
275
276 new_lchan->conn->ho_lchan = NULL;
277 new_lchan->conn->lchan = new_lchan;
278 ho->old_lchan->conn = NULL;
Harald Weltefe18d5c2009-12-17 17:14:43 +0100279
Holger Hans Peter Freyther74419492010-04-10 00:12:31 +0200280 rsl_lchan_set_state(ho->old_lchan, LCHAN_S_INACTIVE);
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800281 lchan_release(ho->old_lchan, 0, 1);
Harald Welteade773f2009-12-21 13:29:19 +0100282
Harald Welte798418a2009-11-29 22:56:14 +0100283 /* do something to re-route the actual speech frames ! */
Harald Welte798418a2009-11-29 22:56:14 +0100284
Harald Welteade773f2009-12-21 13:29:19 +0100285 llist_del(&ho->list);
Harald Welte798418a2009-11-29 22:56:14 +0100286 talloc_free(ho);
287
288 return 0;
289}
290
291/* GSM 04.08 HANDOVER FAIL has been received */
292static int ho_gsm48_ho_fail(struct gsm_lchan *old_lchan)
293{
Harald Welteffa55a42009-12-22 19:07:32 +0100294 struct gsm_network *net = old_lchan->ts->trx->bts->network;
Harald Welte798418a2009-11-29 22:56:14 +0100295 struct bsc_handover *ho;
296
297 ho = bsc_ho_by_old_lchan(old_lchan);
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100298 if (!ho) {
299 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
Harald Welte798418a2009-11-29 22:56:14 +0100300 return -ENODEV;
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100301 }
Harald Welte798418a2009-11-29 22:56:14 +0100302
Harald Welteffa55a42009-12-22 19:07:32 +0100303 counter_inc(net->stats.handover.failed);
Harald Welte24ff6ee2009-12-22 00:41:05 +0100304
Harald Welte798418a2009-11-29 22:56:14 +0100305 bsc_del_timer(&ho->T3103);
306 llist_del(&ho->list);
Holger Hans Peter Freythere071ab72010-06-30 12:40:10 +0800307
308 /* release the channel and forget about it */
309 ho->new_lchan->conn->ho_lchan = NULL;
310 ho->new_lchan->conn = NULL;
311 lchan_release(ho->new_lchan, 0, 1);
312
Harald Welte798418a2009-11-29 22:56:14 +0100313 talloc_free(ho);
314
315 return 0;
316}
317
318/* GSM 08.58 HANDOVER DETECT has been received */
319static int ho_rsl_detect(struct gsm_lchan *new_lchan)
320{
321 struct bsc_handover *ho;
322
Harald Welte6f7a5a72009-12-18 11:52:03 +0100323 ho = bsc_ho_by_new_lchan(new_lchan);
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100324 if (!ho) {
325 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
Harald Welte798418a2009-11-29 22:56:14 +0100326 return -ENODEV;
Harald Welteb1d4c8e2009-12-17 23:10:46 +0100327 }
Harald Welte798418a2009-11-29 22:56:14 +0100328
329 /* FIXME: do we actually want to do something here ? */
330
331 return 0;
332}
333
Harald Weltea0379022009-12-20 17:04:40 +0100334static int ho_ipac_crcx_ack(struct gsm_lchan *new_lchan)
335{
336 struct bsc_handover *ho;
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +0100337 struct ho_signal_data sig_ho;
Harald Weltea0379022009-12-20 17:04:40 +0100338
339 ho = bsc_ho_by_new_lchan(new_lchan);
340 if (!ho) {
Harald Weltee98d4272009-12-24 13:27:02 +0100341 /* it is perfectly normal, we have CRCX even in non-HO cases */
342 return 0;
Harald Weltea0379022009-12-20 17:04:40 +0100343 }
344
Holger Hans Peter Freyther6c4d2442011-01-06 13:31:41 +0100345 sig_ho.old_lchan = ho->old_lchan;
346 sig_ho.new_lchan = new_lchan;
347 dispatch_signal(SS_HO, S_HANDOVER_ACK, &sig_ho);
Harald Weltea0379022009-12-20 17:04:40 +0100348 return 0;
349}
350
Harald Welte798418a2009-11-29 22:56:14 +0100351static int ho_logic_sig_cb(unsigned int subsys, unsigned int signal,
352 void *handler_data, void *signal_data)
353{
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100354 struct lchan_signal_data *lchan_data;
Harald Welte798418a2009-11-29 22:56:14 +0100355 struct gsm_lchan *lchan;
356
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100357 lchan_data = signal_data;
Harald Welte798418a2009-11-29 22:56:14 +0100358 switch (subsys) {
359 case SS_LCHAN:
Holger Hans Peter Freyther08eebd52010-12-27 13:28:20 +0100360 lchan = lchan_data->lchan;
Harald Welte798418a2009-11-29 22:56:14 +0100361 switch (signal) {
362 case S_LCHAN_ACTIVATE_ACK:
363 return ho_chan_activ_ack(lchan);
364 case S_LCHAN_ACTIVATE_NACK:
365 return ho_chan_activ_nack(lchan);
366 case S_LCHAN_HANDOVER_DETECT:
367 return ho_rsl_detect(lchan);
368 case S_LCHAN_HANDOVER_COMPL:
369 return ho_gsm48_ho_compl(lchan);
370 case S_LCHAN_HANDOVER_FAIL:
371 return ho_gsm48_ho_fail(lchan);
372 }
373 break;
Harald Weltea0379022009-12-20 17:04:40 +0100374 case SS_ABISIP:
375 lchan = signal_data;
376 switch (signal) {
377 case S_ABISIP_CRCX_ACK:
378 return ho_ipac_crcx_ack(lchan);
379 break;
380 }
381 break;
Harald Welte798418a2009-11-29 22:56:14 +0100382 default:
383 break;
384 }
385
386 return 0;
387}
388
389static __attribute__((constructor)) void on_dso_load_ho_logic(void)
390{
391 register_signal_handler(SS_LCHAN, ho_logic_sig_cb, NULL);
Harald Weltea0379022009-12-20 17:04:40 +0100392 register_signal_handler(SS_ABISIP, ho_logic_sig_cb, NULL);
Harald Welte798418a2009-11-29 22:56:14 +0100393}