blob: b4fc15464c1680885788ff41edec2880dbd63bcf [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>
Neels Hofmeyr90843962017-09-04 15:04:35 +020028#include <osmocom/msc/signal.h>
29#include <osmocom/msc/debug.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020030#include <osmocom/msc/gsm_data.h>
31#include <osmocom/msc/gsm_subscriber.h>
Neels Hofmeyrd656dff2018-03-09 14:59:44 +010032#include <osmocom/msc/vlr.h>
Harald Weltea1482332009-11-14 10:08:40 +010033
Harald Welte51008772009-12-29 11:49:12 +010034/* paging of the requested subscriber has completed */
Harald Weltea1482332009-11-14 10:08:40 +010035static int paging_cb_silent(unsigned int hooknum, unsigned int event,
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +080036 struct msgb *msg, void *_conn, void *_data)
Harald Weltea1482332009-11-14 10:08:40 +010037{
Neels Hofmeyrc036b792018-11-29 22:37:51 +010038 struct ran_conn *conn = _conn;
Harald Weltea1482332009-11-14 10:08:40 +010039 struct scall_signal_data sigdata;
Holger Hans Peter Freythera97152b2010-07-23 19:34:34 +080040 int rc = 0;
Harald Weltea1482332009-11-14 10:08:40 +010041
42 if (hooknum != GSM_HOOK_RR_PAGING)
43 return -EINVAL;
44
Holger Hans Peter Freythereff409492012-11-10 19:46:58 +010045 DEBUGP(DLSMS, "paging_cb_silent: ");
Harald Weltea1482332009-11-14 10:08:40 +010046
Holger Hans Peter Freyther86481c22010-06-17 15:05:57 +080047 sigdata.conn = conn;
Harald Weltea1482332009-11-14 10:08:40 +010048 sigdata.data = _data;
49
50 switch (event) {
51 case GSM_PAGING_SUCCEEDED:
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020052#if BEFORE_MSCSPLIT
53 /* Re-enable this log output once we can obtain this information via
54 * A-interface, see OS#2391. */
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);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020057#endif
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +010058 conn->silent_call = 1;
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +010059 ran_conn_get(conn, RAN_CONN_USE_SILENT_CALL);
Harald Weltea1482332009-11-14 10:08:40 +010060 /* increment lchan reference count */
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +020061 osmo_signal_dispatch(SS_SCALL, S_SCALL_SUCCESS, &sigdata);
Harald Weltea1482332009-11-14 10:08:40 +010062 break;
63 case GSM_PAGING_EXPIRED:
Holger Hans Peter Freytherd3baf412010-12-23 18:19:17 +010064 case GSM_PAGING_BUSY:
Holger Hans Peter Freythereff409492012-11-10 19:46:58 +010065 DEBUGP(DLSMS, "expired\n");
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +020066 osmo_signal_dispatch(SS_SCALL, S_SCALL_EXPIRED, &sigdata);
Harald Weltea1482332009-11-14 10:08:40 +010067 break;
68 default:
69 rc = -EINVAL;
70 break;
71 }
72
73 return rc;
74}
75
Philipp Maiere0d5caa2017-02-27 16:56:59 +010076#if 0
Harald Welte51008772009-12-29 11:49:12 +010077/* receive a layer 3 message from a silent call */
Neels Hofmeyrc036b792018-11-29 22:37:51 +010078int silent_call_rx(struct ran_conn *conn, struct msgb *msg)
Harald Welte51008772009-12-29 11:49:12 +010079{
80 /* FIXME: do something like sending it through a UDP port */
Jacob Erlbeck8e68b562014-01-30 21:01:12 +010081 LOGP(DLSMS, LOGL_NOTICE, "Discarding L3 message from a silent call.\n");
Harald Welte51008772009-12-29 11:49:12 +010082 return 0;
83}
84
85struct msg_match {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020086 uint8_t pdisc;
87 uint8_t msg_type;
Harald Welte51008772009-12-29 11:49:12 +010088};
89
90/* list of messages that are handled inside OpenBSC, even in a silent call */
91static const struct msg_match silent_call_accept[] = {
92 { GSM48_PDISC_MM, GSM48_MT_MM_LOC_UPD_REQUEST },
93 { GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_REQ },
94};
95
96/* decide if we need to reroute a message as part of a silent call */
Neels Hofmeyrc036b792018-11-29 22:37:51 +010097int silent_call_reroute(struct ran_conn *conn, struct msgb *msg)
Harald Welte51008772009-12-29 11:49:12 +010098{
99 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr531734a2016-03-14 16:13:24 +0100100 uint8_t pdisc = gsm48_hdr_pdisc(gh);
101 uint8_t msg_type = gsm48_hdr_msg_type(gh);
Harald Welte51008772009-12-29 11:49:12 +0100102 int i;
103
104 /* if we're not part of a silent call, never reroute */
Holger Hans Peter Freyther758f4df2010-06-21 10:34:03 +0800105 if (!conn->silent_call)
Harald Welte51008772009-12-29 11:49:12 +0100106 return 0;
107
108 /* check if we are a special message that is handled in openbsc */
109 for (i = 0; i < ARRAY_SIZE(silent_call_accept); i++) {
110 if (silent_call_accept[i].pdisc == pdisc &&
Neels Hofmeyr531734a2016-03-14 16:13:24 +0100111 silent_call_accept[i].msg_type == msg_type)
Harald Welte51008772009-12-29 11:49:12 +0100112 return 0;
113 }
114
115 /* otherwise, reroute */
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100116 LOGP(DLSMS, LOGL_INFO, "Rerouting L3 message from a silent call.\n");
Harald Welte51008772009-12-29 11:49:12 +0100117 return 1;
118}
Philipp Maiere0d5caa2017-02-27 16:56:59 +0100119#endif
Harald Welte51008772009-12-29 11:49:12 +0100120
121
122/* initiate a silent call with a given subscriber */
Harald Welte2483f1b2016-06-19 18:06:02 +0200123int gsm_silent_call_start(struct vlr_subscr *vsub, void *data, int type)
Harald Weltea1482332009-11-14 10:08:40 +0100124{
Holger Hans Peter Freytherb618c7e2015-08-03 11:21:29 +0200125 struct subscr_request *req;
Harald Weltea1482332009-11-14 10:08:40 +0100126
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200127 /* FIXME the VTY command allows selecting a silent call channel type.
128 * This doesn't apply to the situation after MSCSPLIT with an
129 * A-interface. */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200130 req = subscr_request_conn(vsub, paging_cb_silent, data,
131 "establish silent call");
Neels Hofmeyrd656dff2018-03-09 14:59:44 +0100132 if (!req)
133 return -ENODEV;
134 return 0;
Harald Weltea1482332009-11-14 10:08:40 +0100135}
136
Harald Welte51008772009-12-29 11:49:12 +0100137/* end a silent call with a given subscriber */
Harald Welte2483f1b2016-06-19 18:06:02 +0200138int gsm_silent_call_stop(struct vlr_subscr *vsub)
Harald Weltea1482332009-11-14 10:08:40 +0100139{
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100140 struct ran_conn *conn;
Harald Weltea1482332009-11-14 10:08:40 +0100141
Harald Welte2483f1b2016-06-19 18:06:02 +0200142 conn = connection_for_subscr(vsub);
Neels Hofmeyrd656dff2018-03-09 14:59:44 +0100143 if (!conn) {
144 LOGP(DMM, LOGL_ERROR, "%s: Cannot stop silent call, no connection for subscriber\n",
145 vlr_subscr_name(vsub));
146 return -ENODEV;
147 }
Harald Weltea1482332009-11-14 10:08:40 +0100148
Harald Welte83579ca2009-12-29 11:17:18 +0100149 /* did we actually establish a silent call for this guy? */
Neels Hofmeyrd656dff2018-03-09 14:59:44 +0100150 if (!conn->silent_call) {
151 LOGP(DMM, LOGL_ERROR, "%s: Cannot stop silent call, subscriber has no active silent call\n",
152 vlr_subscr_name(vsub));
153 return -ENOENT;
154 }
Harald Welte83579ca2009-12-29 11:17:18 +0100155
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200156#if BEFORE_MSCSPLIT
157 /* Re-enable this log output once we can obtain this information via
158 * A-interface, see OS#2391. */
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100159 DEBUGPC(DLSMS, "Stopping silent call using Timeslot %u on ARFCN %u\n",
160 conn->lchan->ts->nr, conn->lchan->ts->trx->arfcn);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200161#endif
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100162
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800163 conn->silent_call = 0;
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100164 ran_conn_put(conn, RAN_CONN_USE_SILENT_CALL);
Harald Weltea1482332009-11-14 10:08:40 +0100165
166 return 0;
167}