blob: 42dc5d8e62669cfc0c610c4ead8af8ee4d74362d [file] [log] [blame]
Harald Welte96c0b082009-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
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (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
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <errno.h>
29#include <time.h>
30#include <netinet/in.h>
31
Harald Weltef4625b12010-02-20 16:24:02 +010032#include <osmocore/msgb.h>
Harald Welte96c0b082009-11-29 22:56:14 +010033#include <openbsc/debug.h>
34#include <openbsc/gsm_data.h>
Harald Weltef4625b12010-02-20 16:24:02 +010035#include <osmocore/gsm_utils.h>
Harald Welte96c0b082009-11-29 22:56:14 +010036#include <openbsc/gsm_subscriber.h>
37#include <openbsc/gsm_04_08.h>
38#include <openbsc/abis_rsl.h>
39#include <openbsc/chan_alloc.h>
40#include <openbsc/signal.h>
Harald Weltef4625b12010-02-20 16:24:02 +010041#include <osmocore/talloc.h>
Harald Welte96c0b082009-11-29 22:56:14 +010042#include <openbsc/transaction.h>
Harald Weltef8189fe2009-12-20 17:04:40 +010043#include <openbsc/rtp_proxy.h>
Harald Welte96c0b082009-11-29 22:56:14 +010044
45struct bsc_handover {
46 struct llist_head list;
47
48 struct gsm_lchan *old_lchan;
49 struct gsm_lchan *new_lchan;
50
51 struct timer_list T3103;
52
53 u_int8_t ho_ref;
54};
55
56static LLIST_HEAD(bsc_handovers);
57
58static struct bsc_handover *bsc_ho_by_new_lchan(struct gsm_lchan *new_lchan)
59{
60 struct bsc_handover *ho;
61
62 llist_for_each_entry(ho, &bsc_handovers, list) {
63 if (ho->new_lchan == new_lchan)
64 return ho;
65 }
66
67 return NULL;
68}
69
70static struct bsc_handover *bsc_ho_by_old_lchan(struct gsm_lchan *old_lchan)
71{
72 struct bsc_handover *ho;
73
74 llist_for_each_entry(ho, &bsc_handovers, list) {
75 if (ho->old_lchan == old_lchan)
76 return ho;
77 }
78
79 return NULL;
80}
81
82/* Hand over the specified logical channel to the specified new BTS.
83 * This is the main entry point for the actual handover algorithm,
84 * after it has decided it wants to initiate HO to a specific BTS */
85int bsc_handover_start(struct gsm_lchan *old_lchan, struct gsm_bts *bts)
86{
87 struct gsm_lchan *new_lchan;
88 struct bsc_handover *ho;
Harald Welteb90d7bd2009-12-17 00:31:10 +010089 static u_int8_t ho_ref;
Harald Welte96c0b082009-11-29 22:56:14 +010090 int rc;
91
Harald Welteaef376f2009-12-17 22:23:21 +010092 /* don't attempt multiple handovers for the same lchan at
93 * the same time */
94 if (bsc_ho_by_old_lchan(old_lchan))
95 return -EBUSY;
96
Harald Weltecf2ec4a2009-12-17 23:10:46 +010097 DEBUGP(DHO, "(old_lchan on BTS %u, new BTS %u)\n",
Harald Welteb90d7bd2009-12-17 00:31:10 +010098 old_lchan->ts->trx->bts->nr, bts->nr);
99
Harald Weltebdbb7442009-12-22 19:07:32 +0100100 counter_inc(bts->network->stats.handover.attempted);
Harald Welte3edc5a92009-12-22 00:41:05 +0100101
Holger Hans Peter Freytherbac7ff72010-06-30 12:40:10 +0800102 if (!old_lchan->conn) {
103 LOGP(DHO, LOGL_ERROR, "Old lchan lacks connection data.\n");
104 return -ENOSPC;
105 }
106
Harald Welte96c0b082009-11-29 22:56:14 +0100107 new_lchan = lchan_alloc(bts, old_lchan->type);
Harald Welteb90d7bd2009-12-17 00:31:10 +0100108 if (!new_lchan) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100109 LOGP(DHO, LOGL_NOTICE, "No free channel\n");
Harald Weltebdbb7442009-12-22 19:07:32 +0100110 counter_inc(bts->network->stats.handover.no_channel);
Harald Welte96c0b082009-11-29 22:56:14 +0100111 return -ENOSPC;
Harald Welteb90d7bd2009-12-17 00:31:10 +0100112 }
Harald Welte96c0b082009-11-29 22:56:14 +0100113
114 ho = talloc_zero(NULL, struct bsc_handover);
115 if (!ho) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100116 LOGP(DHO, LOGL_FATAL, "Out of Memory\n");
Harald Welte96c0b082009-11-29 22:56:14 +0100117 lchan_free(new_lchan);
118 return -ENOMEM;
119 }
120 ho->old_lchan = old_lchan;
121 ho->new_lchan = new_lchan;
Harald Welteb90d7bd2009-12-17 00:31:10 +0100122 ho->ho_ref = ho_ref++;
123
124 /* copy some parameters from old lchan */
125 memcpy(&new_lchan->encr, &old_lchan->encr, sizeof(new_lchan->encr));
126 new_lchan->ms_power = old_lchan->ms_power;
127 new_lchan->bs_power = old_lchan->bs_power;
128 new_lchan->rsl_cmode = old_lchan->rsl_cmode;
129 new_lchan->tch_mode = old_lchan->tch_mode;
Holger Hans Peter Freytherbac7ff72010-06-30 12:40:10 +0800130
131 new_lchan->conn = old_lchan->conn;
132 new_lchan->conn->ho_lchan = new_lchan;
Harald Welte96c0b082009-11-29 22:56:14 +0100133
134 /* FIXME: do we have a better idea of the timing advance? */
Harald Welteb90d7bd2009-12-17 00:31:10 +0100135 rc = rsl_chan_activate_lchan(new_lchan, RSL_ACT_INTER_ASYNC, 0,
136 ho->ho_ref);
Harald Welte96c0b082009-11-29 22:56:14 +0100137 if (rc < 0) {
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100138 LOGP(DHO, LOGL_ERROR, "could not activate channel\n");
Holger Hans Peter Freytherbac7ff72010-06-30 12:40:10 +0800139 new_lchan->conn->ho_lchan = NULL;
Harald Welte96c0b082009-11-29 22:56:14 +0100140 talloc_free(ho);
141 lchan_free(new_lchan);
142 return rc;
143 }
144
Holger Hans Peter Freyther599056d2010-04-10 00:16:04 +0200145 rsl_lchan_set_state(new_lchan, LCHAN_S_ACT_REQ);
Harald Welte96c0b082009-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
152/* T3103 expired: Handover has failed without HO COMPLETE or HO FAIL */
153static void ho_T3103_cb(void *_ho)
154{
155 struct bsc_handover *ho = _ho;
Harald Weltebdbb7442009-12-22 19:07:32 +0100156 struct gsm_network *net = ho->new_lchan->ts->trx->bts->network;
Harald Welte96c0b082009-11-29 22:56:14 +0100157
Harald Welteb90d7bd2009-12-17 00:31:10 +0100158 DEBUGP(DHO, "HO T3103 expired\n");
Harald Weltebdbb7442009-12-22 19:07:32 +0100159 counter_inc(net->stats.handover.timeout);
Harald Welteb90d7bd2009-12-17 00:31:10 +0100160
Harald Welte96c0b082009-11-29 22:56:14 +0100161 lchan_free(ho->new_lchan);
162 llist_del(&ho->list);
163 talloc_free(ho);
164}
165
166/* RSL has acknowledged activation of the new lchan */
167static int ho_chan_activ_ack(struct gsm_lchan *new_lchan)
168{
169 struct bsc_handover *ho;
170 int rc;
171
Harald Weltefedc19e2009-12-18 14:50:08 +0100172 /* we need to check if this channel activation is related to
173 * a handover at all (and if, which particular handover) */
Harald Welte96c0b082009-11-29 22:56:14 +0100174 ho = bsc_ho_by_new_lchan(new_lchan);
Harald Weltefedc19e2009-12-18 14:50:08 +0100175 if (!ho)
Harald Welte96c0b082009-11-29 22:56:14 +0100176 return -ENODEV;
Harald Weltefedc19e2009-12-18 14:50:08 +0100177
178 DEBUGP(DHO, "handover activate ack, send HO Command\n");
Harald Welte96c0b082009-11-29 22:56:14 +0100179
180 /* we can now send the 04.08 HANDOVER COMMAND to the MS
181 * using the old lchan */
182
Harald Welteb90d7bd2009-12-17 00:31:10 +0100183 rc = gsm48_send_ho_cmd(ho->old_lchan, new_lchan, 0, ho->ho_ref);
Harald Welte96c0b082009-11-29 22:56:14 +0100184
185 /* start T3103. We can continue either with T3103 expiration,
186 * 04.08 HANDOVER COMPLETE or 04.08 HANDOVER FAIL */
187 ho->T3103.cb = ho_T3103_cb;
Harald Welte6d8220c2009-12-18 11:49:03 +0100188 ho->T3103.data = ho;
Harald Welte96c0b082009-11-29 22:56:14 +0100189 bsc_schedule_timer(&ho->T3103, 10, 0);
190
Harald Weltef8189fe2009-12-20 17:04:40 +0100191 /* create a RTP connection */
192 if (is_ipaccess_bts(new_lchan->ts->trx->bts))
193 rsl_ipacc_crcx(new_lchan);
194
Harald Welte96c0b082009-11-29 22:56:14 +0100195 return 0;
196}
197
198/* RSL has not acknowledged activation of the new lchan */
199static int ho_chan_activ_nack(struct gsm_lchan *new_lchan)
200{
201 struct bsc_handover *ho;
202
203 ho = bsc_ho_by_new_lchan(new_lchan);
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100204 if (!ho) {
205 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
Harald Welte96c0b082009-11-29 22:56:14 +0100206 return -ENODEV;
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100207 }
Harald Welte96c0b082009-11-29 22:56:14 +0100208
209 llist_del(&ho->list);
210 talloc_free(ho);
211
212 /* FIXME: maybe we should try to allocate a new LCHAN here? */
213
214 return 0;
215}
216
217/* GSM 04.08 HANDOVER COMPLETE has been received on new channel */
218static int ho_gsm48_ho_compl(struct gsm_lchan *new_lchan)
219{
Harald Weltebdbb7442009-12-22 19:07:32 +0100220 struct gsm_network *net = new_lchan->ts->trx->bts->network;
Harald Welte96c0b082009-11-29 22:56:14 +0100221 struct bsc_handover *ho;
222
223 ho = bsc_ho_by_new_lchan(new_lchan);
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100224 if (!ho) {
225 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
Harald Welte96c0b082009-11-29 22:56:14 +0100226 return -ENODEV;
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100227 }
Harald Welte96c0b082009-11-29 22:56:14 +0100228
Harald Welte58eeaba2009-12-25 23:02:50 +0100229 LOGP(DHO, LOGL_INFO, "Subscriber %s HO from BTS %u->%u on ARFCN "
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800230 "%u->%u\n", subscr_name(ho->old_lchan->conn->subscr),
Harald Welte58eeaba2009-12-25 23:02:50 +0100231 ho->old_lchan->ts->trx->bts->nr, new_lchan->ts->trx->bts->nr,
232 ho->old_lchan->ts->trx->arfcn, new_lchan->ts->trx->arfcn);
233
Harald Weltebdbb7442009-12-22 19:07:32 +0100234 counter_inc(net->stats.handover.completed);
Harald Welte3edc5a92009-12-22 00:41:05 +0100235
Harald Welte96c0b082009-11-29 22:56:14 +0100236 bsc_del_timer(&ho->T3103);
Harald Welte96c0b082009-11-29 22:56:14 +0100237
Holger Hans Peter Freytherbac7ff72010-06-30 12:40:10 +0800238 /* Replace the ho lchan with the primary one */
239 if (ho->old_lchan != new_lchan->conn->lchan)
240 LOGP(DHO, LOGL_ERROR, "Primary lchan changed during handover.\n");
241
242 if (new_lchan != new_lchan->conn->ho_lchan)
243 LOGP(DHO, LOGL_ERROR, "Handover channel changed during this handover.\n");
244
245 new_lchan->conn->ho_lchan = NULL;
246 new_lchan->conn->lchan = new_lchan;
247 ho->old_lchan->conn = NULL;
Harald Weltef8c50702009-12-17 17:14:43 +0100248
Holger Hans Peter Freyther68914a02010-04-10 00:12:31 +0200249 rsl_lchan_set_state(ho->old_lchan, LCHAN_S_INACTIVE);
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800250 lchan_release(ho->old_lchan, 0, 1);
Harald Welte83c59812009-12-21 13:29:19 +0100251
Harald Welte96c0b082009-11-29 22:56:14 +0100252 /* do something to re-route the actual speech frames ! */
Harald Welte96c0b082009-11-29 22:56:14 +0100253
Harald Welte83c59812009-12-21 13:29:19 +0100254 llist_del(&ho->list);
Harald Welte96c0b082009-11-29 22:56:14 +0100255 talloc_free(ho);
256
257 return 0;
258}
259
260/* GSM 04.08 HANDOVER FAIL has been received */
261static int ho_gsm48_ho_fail(struct gsm_lchan *old_lchan)
262{
Harald Weltebdbb7442009-12-22 19:07:32 +0100263 struct gsm_network *net = old_lchan->ts->trx->bts->network;
Harald Welte96c0b082009-11-29 22:56:14 +0100264 struct bsc_handover *ho;
265
266 ho = bsc_ho_by_old_lchan(old_lchan);
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100267 if (!ho) {
268 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
Harald Welte96c0b082009-11-29 22:56:14 +0100269 return -ENODEV;
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100270 }
Harald Welte96c0b082009-11-29 22:56:14 +0100271
Harald Weltebdbb7442009-12-22 19:07:32 +0100272 counter_inc(net->stats.handover.failed);
Harald Welte3edc5a92009-12-22 00:41:05 +0100273
Harald Welte96c0b082009-11-29 22:56:14 +0100274 bsc_del_timer(&ho->T3103);
275 llist_del(&ho->list);
Holger Hans Peter Freytherbac7ff72010-06-30 12:40:10 +0800276
277 /* release the channel and forget about it */
278 ho->new_lchan->conn->ho_lchan = NULL;
279 ho->new_lchan->conn = NULL;
280 lchan_release(ho->new_lchan, 0, 1);
281
Harald Welte96c0b082009-11-29 22:56:14 +0100282 talloc_free(ho);
283
284 return 0;
285}
286
287/* GSM 08.58 HANDOVER DETECT has been received */
288static int ho_rsl_detect(struct gsm_lchan *new_lchan)
289{
290 struct bsc_handover *ho;
291
Harald Weltebc2e5392009-12-18 11:52:03 +0100292 ho = bsc_ho_by_new_lchan(new_lchan);
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100293 if (!ho) {
294 LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
Harald Welte96c0b082009-11-29 22:56:14 +0100295 return -ENODEV;
Harald Weltecf2ec4a2009-12-17 23:10:46 +0100296 }
Harald Welte96c0b082009-11-29 22:56:14 +0100297
298 /* FIXME: do we actually want to do something here ? */
299
300 return 0;
301}
302
Harald Weltef8189fe2009-12-20 17:04:40 +0100303static int ho_ipac_crcx_ack(struct gsm_lchan *new_lchan)
304{
305 struct bsc_handover *ho;
306 struct rtp_socket *old_rs, *new_rs, *other_rs;
307
308 ho = bsc_ho_by_new_lchan(new_lchan);
309 if (!ho) {
Harald Welte49afbc32009-12-24 13:27:02 +0100310 /* it is perfectly normal, we have CRCX even in non-HO cases */
311 return 0;
Harald Weltef8189fe2009-12-20 17:04:40 +0100312 }
313
314 if (ipacc_rtp_direct) {
315 LOGP(DHO, LOGL_ERROR, "unable to handover in direct RTP mode\n");
316 return 0;
317 }
318
319 /* RTP Proxy mode */
320 new_rs = new_lchan->abis_ip.rtp_socket;
321 old_rs = ho->old_lchan->abis_ip.rtp_socket;
322
323 if (!new_rs) {
324 LOGP(DHO, LOGL_ERROR, "no RTP socket for new_lchan\n");
325 return -EIO;
326 }
327
328 rsl_ipacc_mdcx_to_rtpsock(new_lchan);
329
330 if (!old_rs) {
331 LOGP(DHO, LOGL_ERROR, "no RTP socekt for old_lchan\n");
332 return -EIO;
333 }
334
335 /* copy rx_action and reference to other sock */
336 new_rs->rx_action = old_rs->rx_action;
337 new_rs->tx_action = old_rs->tx_action;
338 new_rs->transmit = old_rs->transmit;
339
340 switch (ho->old_lchan->abis_ip.rtp_socket->rx_action) {
341 case RTP_PROXY:
342 other_rs = old_rs->proxy.other_sock;
343 rtp_socket_proxy(new_rs, other_rs);
344 /* delete reference to other end socket to prevent
345 * rtp_socket_free() from removing the inverse reference */
346 old_rs->proxy.other_sock = NULL;
347 break;
348 case RTP_RECV_UPSTREAM:
349 new_rs->receive = old_rs->receive;
350 break;
351 case RTP_NONE:
352 break;
353 }
354
355 return 0;
356}
357
Harald Welte96c0b082009-11-29 22:56:14 +0100358static int ho_logic_sig_cb(unsigned int subsys, unsigned int signal,
359 void *handler_data, void *signal_data)
360{
361 struct gsm_lchan *lchan;
362
363 switch (subsys) {
364 case SS_LCHAN:
365 lchan = signal_data;
366 switch (signal) {
367 case S_LCHAN_ACTIVATE_ACK:
368 return ho_chan_activ_ack(lchan);
369 case S_LCHAN_ACTIVATE_NACK:
370 return ho_chan_activ_nack(lchan);
371 case S_LCHAN_HANDOVER_DETECT:
372 return ho_rsl_detect(lchan);
373 case S_LCHAN_HANDOVER_COMPL:
374 return ho_gsm48_ho_compl(lchan);
375 case S_LCHAN_HANDOVER_FAIL:
376 return ho_gsm48_ho_fail(lchan);
377 }
378 break;
Harald Weltef8189fe2009-12-20 17:04:40 +0100379 case SS_ABISIP:
380 lchan = signal_data;
381 switch (signal) {
382 case S_ABISIP_CRCX_ACK:
383 return ho_ipac_crcx_ack(lchan);
384 break;
385 }
386 break;
Harald Welte96c0b082009-11-29 22:56:14 +0100387 default:
388 break;
389 }
390
391 return 0;
392}
393
394static __attribute__((constructor)) void on_dso_load_ho_logic(void)
395{
396 register_signal_handler(SS_LCHAN, ho_logic_sig_cb, NULL);
Harald Weltef8189fe2009-12-20 17:04:40 +0100397 register_signal_handler(SS_ABISIP, ho_logic_sig_cb, NULL);
Harald Welte96c0b082009-11-29 22:56:14 +0100398}