blob: 131a1786be84a6aa502b7d5ddcd10d35a252ad3e [file] [log] [blame]
Harald Weltea1482332009-11-14 10:08:40 +01001/* GSM silent call feature */
2
3/*
4 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
5 *
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 Weltea1482332009-11-14 10:08:40 +010011 * (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 Weltea1482332009-11-14 10:08:40 +010017 *
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 Weltea1482332009-11-14 10:08:40 +010020 *
21 */
22
23#include <stdlib.h>
24#include <unistd.h>
25#include <errno.h>
26
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010027#include <osmocom/core/msgb.h>
Harald Weltea1482332009-11-14 10:08:40 +010028#include <openbsc/signal.h>
29#include <openbsc/debug.h>
30#include <openbsc/paging.h>
31#include <openbsc/gsm_data.h>
32#include <openbsc/gsm_subscriber.h>
33#include <openbsc/abis_rsl.h>
Harald Welte986c3d72009-11-17 06:12:16 +010034#include <openbsc/chan_alloc.h>
Holger Hans Peter Freyther88519ea2010-06-30 12:44:07 +080035#include <openbsc/osmo_msc.h>
Harald Weltea1482332009-11-14 10:08:40 +010036
Harald Welte51008772009-12-29 11:49:12 +010037/* paging of the requested subscriber has completed */
Harald Weltea1482332009-11-14 10:08:40 +010038static int paging_cb_silent(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +080039 struct msgb *msg, void *_conn, void *_data)
Harald Weltea1482332009-11-14 10:08:40 +010040{
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +080041 struct gsm_subscriber_connection *conn = _conn;
Harald Weltea1482332009-11-14 10:08:40 +010042 struct scall_signal_data sigdata;
Holger Hans Peter Freythera97152b2010-07-23 19:34:34 +080043 int rc = 0;
Harald Weltea1482332009-11-14 10:08:40 +010044
45 if (hooknum != GSM_HOOK_RR_PAGING)
46 return -EINVAL;
47
Holger Hans Peter Freythereff409492012-11-10 19:46:58 +010048 DEBUGP(DLSMS, "paging_cb_silent: ");
Harald Weltea1482332009-11-14 10:08:40 +010049
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +080050 sigdata.conn = conn;
Harald Weltea1482332009-11-14 10:08:40 +010051 sigdata.data = _data;
52
53 switch (event) {
54 case GSM_PAGING_SUCCEEDED:
Holger Hans Peter Freythereff409492012-11-10 19:46:58 +010055 DEBUGPC(DLSMS, "success, using Timeslot %u on ARFCN %u\n",
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +080056 conn->lchan->ts->nr, conn->lchan->ts->trx->arfcn);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +010057 conn->silent_call = 1;
Harald Weltea1482332009-11-14 10:08:40 +010058 /* increment lchan reference count */
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +020059 osmo_signal_dispatch(SS_SCALL, S_SCALL_SUCCESS, &sigdata);
Harald Weltea1482332009-11-14 10:08:40 +010060 break;
61 case GSM_PAGING_EXPIRED:
Holger Hans Peter Freytherd3baf412010-12-23 18:19:17 +010062 case GSM_PAGING_BUSY:
Holger Hans Peter Freyther90c0aff2010-12-29 15:28:40 +010063 case GSM_PAGING_OOM:
Holger Hans Peter Freythereff409492012-11-10 19:46:58 +010064 DEBUGP(DLSMS, "expired\n");
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +020065 osmo_signal_dispatch(SS_SCALL, S_SCALL_EXPIRED, &sigdata);
Harald Weltea1482332009-11-14 10:08:40 +010066 break;
67 default:
68 rc = -EINVAL;
69 break;
70 }
71
72 return rc;
73}
74
Harald Welte51008772009-12-29 11:49:12 +010075/* receive a layer 3 message from a silent call */
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +080076int silent_call_rx(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte51008772009-12-29 11:49:12 +010077{
78 /* FIXME: do something like sending it through a UDP port */
Jacob Erlbeck8e68b562014-01-30 21:01:12 +010079 LOGP(DLSMS, LOGL_NOTICE, "Discarding L3 message from a silent call.\n");
Harald Welte51008772009-12-29 11:49:12 +010080 return 0;
81}
82
83struct msg_match {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020084 uint8_t pdisc;
85 uint8_t msg_type;
Harald Welte51008772009-12-29 11:49:12 +010086};
87
88/* list of messages that are handled inside OpenBSC, even in a silent call */
89static const struct msg_match silent_call_accept[] = {
90 { GSM48_PDISC_MM, GSM48_MT_MM_LOC_UPD_REQUEST },
91 { GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_REQ },
92};
93
94/* decide if we need to reroute a message as part of a silent call */
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +080095int silent_call_reroute(struct gsm_subscriber_connection *conn, struct msgb *msg)
Harald Welte51008772009-12-29 11:49:12 +010096{
97 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +010098 uint8_t pdisc = gsm48_hdr_pdisc(gh);
99 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Harald Welte51008772009-12-29 11:49:12 +0100100 int i;
101
102 /* if we're not part of a silent call, never reroute */
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +0800103 if (!conn->silent_call)
Harald Welte51008772009-12-29 11:49:12 +0100104 return 0;
105
106 /* check if we are a special message that is handled in openbsc */
107 for (i = 0; i < ARRAY_SIZE(silent_call_accept); i++) {
108 if (silent_call_accept[i].pdisc == pdisc &&
Neels Hofmeyr531734a2016-03-14 16:13:24 +0100109 silent_call_accept[i].msg_type == msg_type)
Harald Welte51008772009-12-29 11:49:12 +0100110 return 0;
111 }
112
113 /* otherwise, reroute */
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100114 LOGP(DLSMS, LOGL_INFO, "Rerouting L3 message from a silent call.\n");
Harald Welte51008772009-12-29 11:49:12 +0100115 return 1;
116}
117
118
119/* initiate a silent call with a given subscriber */
Sylvain Munaut50480702010-01-02 14:29:43 +0100120int gsm_silent_call_start(struct gsm_subscriber *subscr, void *data, int type)
Harald Weltea1482332009-11-14 10:08:40 +0100121{
Holger Hans Peter Freytherb618c7e2015-08-03 11:21:29 +0200122 struct subscr_request *req;
Harald Weltea1482332009-11-14 10:08:40 +0100123
Holger Hans Peter Freytherb618c7e2015-08-03 11:21:29 +0200124 req = subscr_request_channel(subscr, type, paging_cb_silent, data);
125 return req != NULL;
Harald Weltea1482332009-11-14 10:08:40 +0100126}
127
Harald Welte51008772009-12-29 11:49:12 +0100128/* end a silent call with a given subscriber */
Harald Weltea1482332009-11-14 10:08:40 +0100129int gsm_silent_call_stop(struct gsm_subscriber *subscr)
130{
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100131 struct gsm_subscriber_connection *conn;
Harald Weltea1482332009-11-14 10:08:40 +0100132
Holger Hans Peter Freytherb2be1952010-06-16 13:23:55 +0800133 conn = connection_for_subscr(subscr);
134 if (!conn)
Harald Weltea1482332009-11-14 10:08:40 +0100135 return -EINVAL;
136
Harald Welte83579ca2009-12-29 11:17:18 +0100137 /* did we actually establish a silent call for this guy? */
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100138 if (!conn->silent_call)
Harald Welte83579ca2009-12-29 11:17:18 +0100139 return -EINVAL;
140
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100141 DEBUGPC(DLSMS, "Stopping silent call using Timeslot %u on ARFCN %u\n",
142 conn->lchan->ts->nr, conn->lchan->ts->trx->arfcn);
143
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800144 conn->silent_call = 0;
145 msc_release_connection(conn);
Harald Weltea1482332009-11-14 10:08:40 +0100146
147 return 0;
148}