blob: a0c166e0ad3dc96c603bd6ea3c4f05ef61467d82 [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
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (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
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24#include <stdlib.h>
25#include <unistd.h>
26#include <errno.h>
27
28#include <openbsc/msgb.h>
29#include <openbsc/signal.h>
30#include <openbsc/debug.h>
31#include <openbsc/paging.h>
32#include <openbsc/gsm_data.h>
33#include <openbsc/gsm_subscriber.h>
34#include <openbsc/abis_rsl.h>
Harald Welte986c3d72009-11-17 06:12:16 +010035#include <openbsc/chan_alloc.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,
39 struct msgb *msg, void *_lchan, void *_data)
40{
41 struct gsm_lchan *lchan = _lchan;
42 struct scall_signal_data sigdata;
43 int rc;
44
45 if (hooknum != GSM_HOOK_RR_PAGING)
46 return -EINVAL;
47
48 DEBUGP(DSMS, "paging_cb_silent: ");
49
50 sigdata.lchan = lchan;
51 sigdata.data = _data;
52
53 switch (event) {
54 case GSM_PAGING_SUCCEEDED:
55 DEBUGPC(DSMS, "success, using Timeslot %u on ARFCN %u\n",
56 lchan->ts->nr, lchan->ts->trx->arfcn);
Harald Welte83579ca2009-12-29 11:17:18 +010057 lchan->silent_call = 1;
Harald Weltea1482332009-11-14 10:08:40 +010058 /* increment lchan reference count */
59 dispatch_signal(SS_SCALL, S_SCALL_SUCCESS, &sigdata);
60 use_lchan(lchan);
61 break;
62 case GSM_PAGING_EXPIRED:
63 DEBUGP(DSMS, "expired\n");
64 dispatch_signal(SS_SCALL, S_SCALL_EXPIRED, &sigdata);
65 break;
66 default:
67 rc = -EINVAL;
68 break;
69 }
70
71 return rc;
72}
73
Harald Welte51008772009-12-29 11:49:12 +010074/* receive a layer 3 message from a silent call */
75int silent_call_rx(struct msgb *msg)
76{
77 /* FIXME: do something like sending it through a UDP port */
78 return 0;
79}
80
81struct msg_match {
82 u_int8_t pdisc;
83 u_int8_t msg_type;
84};
85
86/* list of messages that are handled inside OpenBSC, even in a silent call */
87static const struct msg_match silent_call_accept[] = {
88 { GSM48_PDISC_MM, GSM48_MT_MM_LOC_UPD_REQUEST },
89 { GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_REQ },
90};
91
92/* decide if we need to reroute a message as part of a silent call */
93int silent_call_reroute(struct msgb *msg)
94{
95 struct gsm48_hdr *gh = msgb_l3(msg);
96 u_int8_t pdisc = gh->proto_discr & 0x0f;
97 int i;
98
99 /* if we're not part of a silent call, never reroute */
100 if (!msg->lchan->silent_call)
101 return 0;
102
103 /* check if we are a special message that is handled in openbsc */
104 for (i = 0; i < ARRAY_SIZE(silent_call_accept); i++) {
105 if (silent_call_accept[i].pdisc == pdisc &&
106 silent_call_accept[i].msg_type == gh->msg_type)
107 return 0;
108 }
109
110 /* otherwise, reroute */
111 return 1;
112}
113
114
115/* initiate a silent call with a given subscriber */
Sylvain Munaut50480702010-01-02 14:29:43 +0100116int gsm_silent_call_start(struct gsm_subscriber *subscr, void *data, int type)
Harald Weltea1482332009-11-14 10:08:40 +0100117{
118 int rc;
119
Sylvain Munaut50480702010-01-02 14:29:43 +0100120 rc = paging_request(subscr->net, subscr, type,
Harald Weltea1482332009-11-14 10:08:40 +0100121 paging_cb_silent, data);
122 return rc;
123}
124
Harald Welte51008772009-12-29 11:49:12 +0100125/* end a silent call with a given subscriber */
Harald Weltea1482332009-11-14 10:08:40 +0100126int gsm_silent_call_stop(struct gsm_subscriber *subscr)
127{
128 struct gsm_lchan *lchan;
129
130 lchan = lchan_for_subscr(subscr);
131 if (!lchan)
132 return -EINVAL;
133
Harald Welte83579ca2009-12-29 11:17:18 +0100134 /* did we actually establish a silent call for this guy? */
135 if (!lchan->silent_call)
136 return -EINVAL;
137
Harald Weltea1482332009-11-14 10:08:40 +0100138 put_lchan(lchan);
139
140 return 0;
141}