blob: 72f26bd36c3fb8fc1333621da2552290d5bd7776 [file] [log] [blame]
Jonathan Santos03fd8d02011-05-25 13:54:02 -04001/* Network-specific handling of mobile-originated USSDs. */
2
3/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2009 by Mike Haben <michael.haben@btinternet.com>
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 Affero General Public License as published by
11 * the Free Software Foundation; either version 3 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 Affero General Public License for more details.
18 *
19 * 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/>.
21 *
22 */
23
24/* This module defines the network-specific handling of mobile-originated
25 USSD messages. */
26
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <errno.h>
31
32#include <openbsc/gsm_04_80.h>
33#include <openbsc/gsm_subscriber.h>
34#include <openbsc/debug.h>
35#include <openbsc/osmo_msc.h>
36
37/* Declarations of USSD strings to be recognised */
38const char USSD_TEXT_OWN_NUMBER[] = "*#100#";
39
40/* Forward declarations of network-specific handler functions */
41static int send_own_number(struct gsm_subscriber_connection *conn, const struct msgb *msg, const struct ussd_request *req);
42
43
44/* Entrypoint - handler function common to all mobile-originated USSDs */
45int handle_rcv_ussd(struct gsm_subscriber_connection *conn, struct msgb *msg)
46{
47 int rc;
48 struct ussd_request req;
49 struct gsm48_hdr *gh;
50
51 memset(&req, 0, sizeof(req));
52 gh = msgb_l3(msg);
53 rc = gsm0480_decode_ussd_request(gh, msgb_l3len(msg), &req);
54 if (req.text[0] == 0xFF) /* Release-Complete */
55 return 0;
56
57 if (strstr(USSD_TEXT_OWN_NUMBER, req.text) != NULL) {
58 DEBUGP(DMM, "USSD: Own number requested\n");
59 rc = send_own_number(conn, msg, &req);
60 } else {
61 DEBUGP(DMM, "Unhandled USSD %s\n", req.text);
62 rc = gsm0480_send_ussd_reject(conn, msg, &req);
63 }
64
65 /* check if we can release it */
66 msc_release_connection(conn);
67 return rc;
68}
69
70/* A network-specific handler function */
71static int send_own_number(struct gsm_subscriber_connection *conn, const struct msgb *msg, const struct ussd_request *req)
72{
73 char *own_number = conn->subscr->extension;
74 char response_string[GSM_EXTENSION_LENGTH + 20];
75
76 /* Need trailing CR as EOT character */
77 snprintf(response_string, sizeof(response_string), "Your extension is %s\r", own_number);
78 return gsm0480_send_ussd_response(conn, msg, response_string, req);
79}