blob: 37e058cb6c1a12d72e567396774975b62f6d8b76 [file] [log] [blame]
Harald Welte8c8f7912009-10-26 20:42:55 +01001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
Harald Welte6eafe912009-10-16 08:32:58 +02002 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
4/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther680833e2010-07-25 18:08:53 +08005 * (C) 2008, 2009, 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte6eafe912009-10-16 08:32:58 +02006 * (C) 2009 by Mike Haben <michael.haben@btinternet.com>
7 *
8 * All Rights Reserved
9 *
10 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010011 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
Harald Welte6eafe912009-10-16 08:32:58 +020013 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * GNU Affero General Public License for more details.
Harald Welte6eafe912009-10-16 08:32:58 +020019 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010020 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte6eafe912009-10-16 08:32:58 +020022 *
23 */
24
25
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <errno.h>
30
Neels Hofmeyr90843962017-09-04 15:04:35 +020031#include <osmocom/msc/debug.h>
32#include <osmocom/msc/gsm_data.h>
33#include <osmocom/msc/gsm_04_08.h>
34#include <osmocom/msc/gsm_04_80.h>
35#include <osmocom/msc/msc_ifaces.h>
Harald Welte6eafe912009-10-16 08:32:58 +020036
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010037#include <osmocom/gsm/gsm0480.h>
38#include <osmocom/gsm/gsm_utils.h>
39#include <osmocom/core/msgb.h>
40#include <osmocom/gsm/tlv.h>
Holger Hans Peter Freytherc0714b82010-09-30 18:48:28 +080041
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020042static inline unsigned char *msgb_wrap_with_TL(struct msgb *msgb, uint8_t tag)
Harald Welte6eafe912009-10-16 08:32:58 +020043{
Holger Hans Peter Freytherac30cc82010-07-26 19:08:59 +080044 uint8_t *data = msgb_push(msgb, 2);
45
46 data[0] = tag;
Holger Hans Peter Freythere6373b72010-07-27 01:25:59 +080047 data[1] = msgb->len - 2;
Holger Hans Peter Freytherac30cc82010-07-26 19:08:59 +080048 return data;
Harald Welte6eafe912009-10-16 08:32:58 +020049}
50
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020051static inline unsigned char *msgb_push_TLV1(struct msgb *msgb, uint8_t tag,
52 uint8_t value)
Harald Welte6eafe912009-10-16 08:32:58 +020053{
Holger Hans Peter Freytherac30cc82010-07-26 19:08:59 +080054 uint8_t *data = msgb_push(msgb, 3);
55
56 data[0] = tag;
57 data[1] = 1;
58 data[2] = value;
59 return data;
Harald Welte6eafe912009-10-16 08:32:58 +020060}
61
62
Harald Welte6eafe912009-10-16 08:32:58 +020063/* Send response to a mobile-originated ProcessUnstructuredSS-Request */
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +080064int gsm0480_send_ussd_response(struct gsm_subscriber_connection *conn,
65 const struct msgb *in_msg, const char *response_text,
Holger Hans Peter Freyther5085e0b2016-07-12 17:53:26 +020066 const struct ss_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +020067{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +010068 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 USSD RSP");
Harald Welte6eafe912009-10-16 08:32:58 +020069 struct gsm48_hdr *gh;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020070 uint8_t *ptr8;
Harald Welte6eafe912009-10-16 08:32:58 +020071 int response_len;
72
Harald Welte6eafe912009-10-16 08:32:58 +020073 /* First put the payload text into the message */
Holger Hans Peter Freytherba81ab32010-07-26 17:56:55 +080074 ptr8 = msgb_put(msg, 0);
Holger Hans Peter Freyther1f229b32013-12-26 22:17:45 +010075 gsm_7bit_encode_n_ussd(ptr8, msgb_tailroom(msg), response_text, &response_len);
Holger Hans Peter Freytherba81ab32010-07-26 17:56:55 +080076 msgb_put(msg, response_len);
Harald Welte6eafe912009-10-16 08:32:58 +020077
78 /* Then wrap it as an Octet String */
79 msgb_wrap_with_TL(msg, ASN1_OCTET_STRING_TAG);
80
81 /* Pre-pend the DCS octet string */
82 msgb_push_TLV1(msg, ASN1_OCTET_STRING_TAG, 0x0F);
83
84 /* Then wrap these as a Sequence */
85 msgb_wrap_with_TL(msg, GSM_0480_SEQUENCE_TAG);
86
87 /* Pre-pend the operation code */
Harald Welte6307b852009-10-16 08:41:51 +020088 msgb_push_TLV1(msg, GSM0480_OPERATION_CODE,
89 GSM0480_OP_CODE_PROCESS_USS_REQ);
Harald Welte6eafe912009-10-16 08:32:58 +020090
91 /* Wrap the operation code and IA5 string as a sequence */
92 msgb_wrap_with_TL(msg, GSM_0480_SEQUENCE_TAG);
93
94 /* Pre-pend the invoke ID */
Mike Habendc329a62009-10-22 09:56:44 +020095 msgb_push_TLV1(msg, GSM0480_COMPIDTAG_INVOKE_ID, req->invoke_id);
Harald Welte6eafe912009-10-16 08:32:58 +020096
97 /* Wrap this up as a Return Result component */
98 msgb_wrap_with_TL(msg, GSM0480_CTYPE_RETURN_RESULT);
99
100 /* Wrap the component in a Facility message */
101 msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
102
103 /* And finally pre-pend the L3 header */
104 gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));
Harald Welte8c8f7912009-10-26 20:42:55 +0100105 gh->proto_discr = GSM48_PDISC_NC_SS | req->transaction_id
Mike Habendc329a62009-10-22 09:56:44 +0200106 | (1<<7); /* TI direction = 1 */
Harald Welte6eafe912009-10-16 08:32:58 +0200107 gh->msg_type = GSM0480_MTYPE_RELEASE_COMPLETE;
108
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200109 return msc_tx_dtap(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +0200110}
111
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +0800112int gsm0480_send_ussd_reject(struct gsm_subscriber_connection *conn,
113 const struct msgb *in_msg,
Holger Hans Peter Freyther5085e0b2016-07-12 17:53:26 +0200114 const struct ss_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200115{
Holger Hans Peter Freyther8239e062016-01-25 22:03:25 +0100116 struct msgb *msg = gsm48_msgb_alloc_name("GSM 04.08 USSD REJ");
Harald Welte6eafe912009-10-16 08:32:58 +0200117 struct gsm48_hdr *gh;
118
Harald Welte6eafe912009-10-16 08:32:58 +0200119 /* First insert the problem code */
Harald Welte6307b852009-10-16 08:41:51 +0200120 msgb_push_TLV1(msg, GSM_0480_PROBLEM_CODE_TAG_GENERAL,
121 GSM_0480_GEN_PROB_CODE_UNRECOGNISED);
Harald Welte6eafe912009-10-16 08:32:58 +0200122
123 /* Before it insert the invoke ID */
Mike Habendc329a62009-10-22 09:56:44 +0200124 msgb_push_TLV1(msg, GSM0480_COMPIDTAG_INVOKE_ID, req->invoke_id);
Harald Welte6eafe912009-10-16 08:32:58 +0200125
126 /* Wrap this up as a Reject component */
127 msgb_wrap_with_TL(msg, GSM0480_CTYPE_REJECT);
128
129 /* Wrap the component in a Facility message */
130 msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
131
132 /* And finally pre-pend the L3 header */
133 gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));
Harald Welte6307b852009-10-16 08:41:51 +0200134 gh->proto_discr = GSM48_PDISC_NC_SS;
Mike Habendc329a62009-10-22 09:56:44 +0200135 gh->proto_discr |= req->transaction_id | (1<<7); /* TI direction = 1 */
Harald Welte6eafe912009-10-16 08:32:58 +0200136 gh->msg_type = GSM0480_MTYPE_RELEASE_COMPLETE;
137
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200138 return msc_tx_dtap(conn, msg);
Harald Welte6eafe912009-10-16 08:32:58 +0200139}
Holger Hans Peter Freytherdaf75342010-07-26 20:01:07 +0800140
Neels Hofmeyr43273c62016-05-10 12:50:31 +0200141int msc_send_ussd_notify(struct gsm_subscriber_connection *conn, int level, const char *text)
Holger Hans Peter Freytherdaf75342010-07-26 20:01:07 +0800142{
Neels Hofmeyr43273c62016-05-10 12:50:31 +0200143 struct msgb *msg = gsm0480_create_ussd_notify(level, text);
Holger Hans Peter Freytherdaf75342010-07-26 20:01:07 +0800144 if (!msg)
145 return -1;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200146 return msc_tx_dtap(conn, msg);
Holger Hans Peter Freytherdaf75342010-07-26 20:01:07 +0800147}
Holger Hans Peter Freyther68d26792010-07-27 03:31:50 +0800148
Neels Hofmeyr43273c62016-05-10 12:50:31 +0200149int msc_send_ussd_release_complete(struct gsm_subscriber_connection *conn)
Holger Hans Peter Freyther68d26792010-07-27 03:31:50 +0800150{
Neels Hofmeyr43273c62016-05-10 12:50:31 +0200151 struct msgb *msg = gsm0480_create_ussd_release_complete();
Holger Hans Peter Freyther68d26792010-07-27 03:31:50 +0800152 if (!msg)
153 return -1;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200154 return msc_tx_dtap(conn, msg);
Holger Hans Peter Freyther68d26792010-07-27 03:31:50 +0800155}