blob: 42f81ba739e6ef336ec66b25ec9d46511c237c84 [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
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (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
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
26
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <errno.h>
31
Harald Welte6eafe912009-10-16 08:32:58 +020032#include <openbsc/debug.h>
33#include <openbsc/gsm_data.h>
Harald Welte6eafe912009-10-16 08:32:58 +020034#include <openbsc/gsm_04_08.h>
35#include <openbsc/gsm_04_80.h>
Holger Hans Peter Freyther9c137a72010-06-15 13:57:40 +080036#include <openbsc/bsc_api.h>
Harald Welte6eafe912009-10-16 08:32:58 +020037
Holger Hans Peter Freyther12eb9b72010-09-30 18:53:47 +080038#include <osmocore/gsm0480.h>
Holger Hans Peter Freytherc0714b82010-09-30 18:48:28 +080039#include <osmocore/gsm_utils.h>
40#include <osmocore/msgb.h>
41#include <osmocore/tlv.h>
42
Harald Welte6eafe912009-10-16 08:32:58 +020043/* Forward declarations */
Mike Habendc329a62009-10-22 09:56:44 +020044static int parse_ussd(u_int8_t *ussd, struct ussd_request *req);
Harald Welte17e5f972009-10-26 20:42:07 +010045static int parse_ussd_info_elements(u_int8_t *ussd_ie,
Mike Habendc329a62009-10-22 09:56:44 +020046 struct ussd_request *req);
Harald Welte17e5f972009-10-26 20:42:07 +010047static int parse_facility_ie(u_int8_t *facility_ie, u_int8_t length,
Mike Habendc329a62009-10-22 09:56:44 +020048 struct ussd_request *req);
Harald Welte17e5f972009-10-26 20:42:07 +010049static int parse_ss_invoke(u_int8_t *invoke_data, u_int8_t length,
Mike Habendc329a62009-10-22 09:56:44 +020050 struct ussd_request *req);
Harald Welte17e5f972009-10-26 20:42:07 +010051static int parse_process_uss_req(u_int8_t *uss_req_data, u_int8_t length,
Mike Habendc329a62009-10-22 09:56:44 +020052 struct ussd_request *req);
Harald Welte6eafe912009-10-16 08:32:58 +020053
54static inline unsigned char *msgb_wrap_with_TL(struct msgb *msgb, u_int8_t tag)
55{
Holger Hans Peter Freytherac30cc82010-07-26 19:08:59 +080056 uint8_t *data = msgb_push(msgb, 2);
57
58 data[0] = tag;
Holger Hans Peter Freythere6373b72010-07-27 01:25:59 +080059 data[1] = msgb->len - 2;
Holger Hans Peter Freytherac30cc82010-07-26 19:08:59 +080060 return data;
Harald Welte6eafe912009-10-16 08:32:58 +020061}
62
Harald Welte6307b852009-10-16 08:41:51 +020063static inline unsigned char *msgb_push_TLV1(struct msgb *msgb, u_int8_t tag,
64 u_int8_t value)
Harald Welte6eafe912009-10-16 08:32:58 +020065{
Holger Hans Peter Freytherac30cc82010-07-26 19:08:59 +080066 uint8_t *data = msgb_push(msgb, 3);
67
68 data[0] = tag;
69 data[1] = 1;
70 data[2] = value;
71 return data;
Harald Welte6eafe912009-10-16 08:32:58 +020072}
73
74
Mike Habendc329a62009-10-22 09:56:44 +020075/* Decode a mobile-originated USSD-request message */
Mike Haben2449b372009-10-26 20:36:34 +010076int gsm0480_decode_ussd_request(const struct msgb *msg, struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +020077{
78 int rc = 0;
Harald Welte6307b852009-10-16 08:41:51 +020079 u_int8_t *parse_ptr = msgb_l3(msg);
Harald Welte6eafe912009-10-16 08:32:58 +020080
Harald Welte6eafe912009-10-16 08:32:58 +020081 if ((*parse_ptr & 0x0F) == GSM48_PDISC_NC_SS) {
Mike Habendc329a62009-10-22 09:56:44 +020082 req->transaction_id = *parse_ptr & 0x70;
83 rc = parse_ussd(parse_ptr+1, req);
Harald Welte6eafe912009-10-16 08:32:58 +020084 }
85
86 if (!rc)
Harald Welte17e5f972009-10-26 20:42:07 +010087 DEBUGP(DMM, "Error occurred while parsing received USSD!\n");
Harald Welte6eafe912009-10-16 08:32:58 +020088
Mike Habendc329a62009-10-22 09:56:44 +020089 return rc;
Harald Welte6eafe912009-10-16 08:32:58 +020090}
91
Mike Habendc329a62009-10-22 09:56:44 +020092static int parse_ussd(u_int8_t *ussd, struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +020093{
94 int rc = 1;
95 u_int8_t msg_type = ussd[0] & 0xBF; /* message-type - section 3.4 */
96
Harald Welte6307b852009-10-16 08:41:51 +020097 switch (msg_type) {
Harald Welte6eafe912009-10-16 08:32:58 +020098 case GSM0480_MTYPE_RELEASE_COMPLETE:
Harald Welte6307b852009-10-16 08:41:51 +020099 DEBUGP(DMM, "USS Release Complete\n");
100 /* could also parse out the optional Cause/Facility data */
Mike Habendc329a62009-10-22 09:56:44 +0200101 req->text[0] = 0xFF;
Harald Welte6eafe912009-10-16 08:32:58 +0200102 break;
103 case GSM0480_MTYPE_REGISTER:
104 case GSM0480_MTYPE_FACILITY:
Mike Habendc329a62009-10-22 09:56:44 +0200105 rc &= parse_ussd_info_elements(ussd+1, req);
Harald Welte6eafe912009-10-16 08:32:58 +0200106 break;
107 default:
108 fprintf(stderr, "Unknown GSM 04.80 message-type field 0x%02x\n",
109 ussd[0]);
110 rc = 0;
111 break;
112 }
113
114 return rc;
115}
116
Mike Habendc329a62009-10-22 09:56:44 +0200117static int parse_ussd_info_elements(u_int8_t *ussd_ie, struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200118{
Holger Hans Peter Freyther4f140642010-07-23 19:35:54 +0800119 int rc = -1;
Harald Welte6307b852009-10-16 08:41:51 +0200120 /* Information Element Identifier - table 3.2 & GSM 04.08 section 10.5 */
121 u_int8_t iei = ussd_ie[0];
Harald Welte17e5f972009-10-26 20:42:07 +0100122 u_int8_t iei_length = ussd_ie[1];
Harald Welte6307b852009-10-16 08:41:51 +0200123
124 switch (iei) {
Harald Welte6eafe912009-10-16 08:32:58 +0200125 case GSM48_IE_CAUSE:
126 break;
127 case GSM0480_IE_FACILITY:
Mike Habendc329a62009-10-22 09:56:44 +0200128 rc = parse_facility_ie(ussd_ie+2, iei_length, req);
Harald Welte6eafe912009-10-16 08:32:58 +0200129 break;
130 case GSM0480_IE_SS_VERSION:
131 break;
132 default:
Harald Welte6307b852009-10-16 08:41:51 +0200133 fprintf(stderr, "Unhandled GSM 04.08 or 04.80 IEI 0x%02x\n",
Harald Welte6eafe912009-10-16 08:32:58 +0200134 iei);
135 rc = 0;
136 break;
137 }
138
139 return rc;
140}
141
Harald Welte17e5f972009-10-26 20:42:07 +0100142static int parse_facility_ie(u_int8_t *facility_ie, u_int8_t length,
Mike Habendc329a62009-10-22 09:56:44 +0200143 struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200144{
145 int rc = 1;
146 u_int8_t offset = 0;
147
148 do {
Harald Welte6307b852009-10-16 08:41:51 +0200149 /* Component Type tag - table 3.7 */
150 u_int8_t component_type = facility_ie[offset];
Harald Welte6eafe912009-10-16 08:32:58 +0200151 u_int8_t component_length = facility_ie[offset+1];
Harald Welte6307b852009-10-16 08:41:51 +0200152
153 switch (component_type) {
Harald Welte6eafe912009-10-16 08:32:58 +0200154 case GSM0480_CTYPE_INVOKE:
Harald Welte17e5f972009-10-26 20:42:07 +0100155 rc &= parse_ss_invoke(facility_ie+2,
156 component_length,
Mike Habendc329a62009-10-22 09:56:44 +0200157 req);
Harald Welte6eafe912009-10-16 08:32:58 +0200158 break;
159 case GSM0480_CTYPE_RETURN_RESULT:
160 break;
161 case GSM0480_CTYPE_RETURN_ERROR:
162 break;
163 case GSM0480_CTYPE_REJECT:
164 break;
165 default:
Harald Welte6307b852009-10-16 08:41:51 +0200166 fprintf(stderr, "Unknown GSM 04.80 Facility "
167 "Component Type 0x%02x\n", component_type);
Harald Welte6eafe912009-10-16 08:32:58 +0200168 rc = 0;
169 break;
170 }
171 offset += (component_length+2);
Harald Welte6307b852009-10-16 08:41:51 +0200172 } while (offset < length);
Harald Welte6eafe912009-10-16 08:32:58 +0200173
174 return rc;
175}
176
177/* Parse an Invoke component - see table 3.3 */
Harald Welte17e5f972009-10-26 20:42:07 +0100178static int parse_ss_invoke(u_int8_t *invoke_data, u_int8_t length,
Mike Habendc329a62009-10-22 09:56:44 +0200179 struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200180{
181 int rc = 1;
Harald Welte6307b852009-10-16 08:41:51 +0200182 u_int8_t offset;
183
184 /* mandatory part */
185 if (invoke_data[0] != GSM0480_COMPIDTAG_INVOKE_ID) {
186 fprintf(stderr, "Unexpected GSM 04.80 Component-ID tag "
187 "0x%02x (expecting Invoke ID tag)\n", invoke_data[0]);
Harald Welte6eafe912009-10-16 08:32:58 +0200188 }
Harald Welte6307b852009-10-16 08:41:51 +0200189
190 offset = invoke_data[1] + 2;
Mike Habendc329a62009-10-22 09:56:44 +0200191 req->invoke_id = invoke_data[2];
Harald Welte6eafe912009-10-16 08:32:58 +0200192
Harald Welte6307b852009-10-16 08:41:51 +0200193 /* optional part */
194 if (invoke_data[offset] == GSM0480_COMPIDTAG_LINKED_ID)
Harald Welte6eafe912009-10-16 08:32:58 +0200195 offset += invoke_data[offset+1] + 2; /* skip over it */
Harald Welte6307b852009-10-16 08:41:51 +0200196
197 /* mandatory part */
198 if (invoke_data[offset] == GSM0480_OPERATION_CODE) {
Harald Welte6eafe912009-10-16 08:32:58 +0200199 u_int8_t operation_code = invoke_data[offset+2];
Harald Welte6307b852009-10-16 08:41:51 +0200200 switch (operation_code) {
Harald Welte6eafe912009-10-16 08:32:58 +0200201 case GSM0480_OP_CODE_PROCESS_USS_REQ:
Harald Welte6307b852009-10-16 08:41:51 +0200202 rc = parse_process_uss_req(invoke_data + offset + 3,
Mike Habendc329a62009-10-22 09:56:44 +0200203 length - offset - 3,
204 req);
Harald Welte6eafe912009-10-16 08:32:58 +0200205 break;
206 default:
Harald Welte6307b852009-10-16 08:41:51 +0200207 fprintf(stderr, "GSM 04.80 operation code 0x%02x "
208 "is not yet handled\n", operation_code);
Harald Welte6eafe912009-10-16 08:32:58 +0200209 rc = 0;
210 break;
211 }
212 } else {
Harald Welte6307b852009-10-16 08:41:51 +0200213 fprintf(stderr, "Unexpected GSM 04.80 Component-ID tag 0x%02x "
214 "(expecting Operation Code tag)\n",
Harald Welte6eafe912009-10-16 08:32:58 +0200215 invoke_data[0]);
216 rc = 0;
217 }
218
219 return rc;
220}
221
222/* Parse the parameters of a Process UnstructuredSS Request */
Harald Welte17e5f972009-10-26 20:42:07 +0100223static int parse_process_uss_req(u_int8_t *uss_req_data, u_int8_t length,
Mike Habendc329a62009-10-22 09:56:44 +0200224 struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200225{
Mike Habendc329a62009-10-22 09:56:44 +0200226 int rc = 0;
Harald Welte6eafe912009-10-16 08:32:58 +0200227 int num_chars;
228 u_int8_t dcs;
229
Harald Welte6eafe912009-10-16 08:32:58 +0200230 if (uss_req_data[0] == GSM_0480_SEQUENCE_TAG) {
231 if (uss_req_data[2] == ASN1_OCTET_STRING_TAG) {
232 dcs = uss_req_data[4];
Harald Welte6307b852009-10-16 08:41:51 +0200233 if ((dcs == 0x0F) &&
234 (uss_req_data[5] == ASN1_OCTET_STRING_TAG)) {
Harald Welte6eafe912009-10-16 08:32:58 +0200235 num_chars = (uss_req_data[6] * 8) / 7;
Mike Haben2449b372009-10-26 20:36:34 +0100236 /* Prevent a mobile-originated buffer-overrun! */
237 if (num_chars > MAX_LEN_USSD_STRING)
238 num_chars = MAX_LEN_USSD_STRING;
Mike Habendc329a62009-10-22 09:56:44 +0200239 gsm_7bit_decode(req->text,
Harald Welte6307b852009-10-16 08:41:51 +0200240 &(uss_req_data[7]), num_chars);
Mike Habendc329a62009-10-22 09:56:44 +0200241 /* append null-terminator */
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200242 req->text[num_chars+1] = 0;
Mike Habendc329a62009-10-22 09:56:44 +0200243 rc = 1;
Harald Welte6eafe912009-10-16 08:32:58 +0200244 }
245 }
Mike Habendc329a62009-10-22 09:56:44 +0200246 }
Harald Welte6eafe912009-10-16 08:32:58 +0200247 return rc;
248}
249
250/* Send response to a mobile-originated ProcessUnstructuredSS-Request */
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +0800251int gsm0480_send_ussd_response(struct gsm_subscriber_connection *conn,
252 const struct msgb *in_msg, const char *response_text,
253 const struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200254{
255 struct msgb *msg = gsm48_msgb_alloc();
256 struct gsm48_hdr *gh;
257 u_int8_t *ptr8;
258 int response_len;
259
Harald Welte6eafe912009-10-16 08:32:58 +0200260 /* First put the payload text into the message */
Holger Hans Peter Freytherba81ab32010-07-26 17:56:55 +0800261 ptr8 = msgb_put(msg, 0);
262 response_len = gsm_7bit_encode(ptr8, response_text);
263 msgb_put(msg, response_len);
Harald Welte6eafe912009-10-16 08:32:58 +0200264
265 /* Then wrap it as an Octet String */
266 msgb_wrap_with_TL(msg, ASN1_OCTET_STRING_TAG);
267
268 /* Pre-pend the DCS octet string */
269 msgb_push_TLV1(msg, ASN1_OCTET_STRING_TAG, 0x0F);
270
271 /* Then wrap these as a Sequence */
272 msgb_wrap_with_TL(msg, GSM_0480_SEQUENCE_TAG);
273
274 /* Pre-pend the operation code */
Harald Welte6307b852009-10-16 08:41:51 +0200275 msgb_push_TLV1(msg, GSM0480_OPERATION_CODE,
276 GSM0480_OP_CODE_PROCESS_USS_REQ);
Harald Welte6eafe912009-10-16 08:32:58 +0200277
278 /* Wrap the operation code and IA5 string as a sequence */
279 msgb_wrap_with_TL(msg, GSM_0480_SEQUENCE_TAG);
280
281 /* Pre-pend the invoke ID */
Mike Habendc329a62009-10-22 09:56:44 +0200282 msgb_push_TLV1(msg, GSM0480_COMPIDTAG_INVOKE_ID, req->invoke_id);
Harald Welte6eafe912009-10-16 08:32:58 +0200283
284 /* Wrap this up as a Return Result component */
285 msgb_wrap_with_TL(msg, GSM0480_CTYPE_RETURN_RESULT);
286
287 /* Wrap the component in a Facility message */
288 msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
289
290 /* And finally pre-pend the L3 header */
291 gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));
Harald Welte8c8f7912009-10-26 20:42:55 +0100292 gh->proto_discr = GSM48_PDISC_NC_SS | req->transaction_id
Mike Habendc329a62009-10-22 09:56:44 +0200293 | (1<<7); /* TI direction = 1 */
Harald Welte6eafe912009-10-16 08:32:58 +0200294 gh->msg_type = GSM0480_MTYPE_RELEASE_COMPLETE;
295
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +0800296 return gsm0808_submit_dtap(conn, msg, 0);
Harald Welte6eafe912009-10-16 08:32:58 +0200297}
298
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +0800299int gsm0480_send_ussd_reject(struct gsm_subscriber_connection *conn,
300 const struct msgb *in_msg,
301 const struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200302{
303 struct msgb *msg = gsm48_msgb_alloc();
304 struct gsm48_hdr *gh;
305
Harald Welte6eafe912009-10-16 08:32:58 +0200306 /* First insert the problem code */
Harald Welte6307b852009-10-16 08:41:51 +0200307 msgb_push_TLV1(msg, GSM_0480_PROBLEM_CODE_TAG_GENERAL,
308 GSM_0480_GEN_PROB_CODE_UNRECOGNISED);
Harald Welte6eafe912009-10-16 08:32:58 +0200309
310 /* Before it insert the invoke ID */
Mike Habendc329a62009-10-22 09:56:44 +0200311 msgb_push_TLV1(msg, GSM0480_COMPIDTAG_INVOKE_ID, req->invoke_id);
Harald Welte6eafe912009-10-16 08:32:58 +0200312
313 /* Wrap this up as a Reject component */
314 msgb_wrap_with_TL(msg, GSM0480_CTYPE_REJECT);
315
316 /* Wrap the component in a Facility message */
317 msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
318
319 /* And finally pre-pend the L3 header */
320 gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));
Harald Welte6307b852009-10-16 08:41:51 +0200321 gh->proto_discr = GSM48_PDISC_NC_SS;
Mike Habendc329a62009-10-22 09:56:44 +0200322 gh->proto_discr |= req->transaction_id | (1<<7); /* TI direction = 1 */
Harald Welte6eafe912009-10-16 08:32:58 +0200323 gh->msg_type = GSM0480_MTYPE_RELEASE_COMPLETE;
324
Holger Hans Peter Freytherd42c3f22010-06-17 17:35:57 +0800325 return gsm0808_submit_dtap(conn, msg, 0);
Harald Welte6eafe912009-10-16 08:32:58 +0200326}
Holger Hans Peter Freytherdaf75342010-07-26 20:01:07 +0800327
Holger Hans Peter Freythere731e1d2010-07-27 18:27:46 +0800328int gsm0480_send_ussdNotify(struct gsm_subscriber_connection *conn, int level, const char *text)
Holger Hans Peter Freytherdaf75342010-07-26 20:01:07 +0800329{
330 struct gsm48_hdr *gh;
331 struct msgb *msg;
332
Holger Hans Peter Freythere731e1d2010-07-27 18:27:46 +0800333 msg = gsm0480_create_unstructuredSS_Notify(level, text);
Holger Hans Peter Freytherdaf75342010-07-26 20:01:07 +0800334 if (!msg)
335 return -1;
336
337 gsm0480_wrap_invoke(msg, GSM0480_OP_CODE_USS_NOTIFY, 0);
338 gsm0480_wrap_facility(msg);
339
340 /* And finally pre-pend the L3 header */
341 gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));
342 gh->proto_discr = GSM48_PDISC_NC_SS;
343 gh->msg_type = GSM0480_MTYPE_REGISTER;
344
345 return gsm0808_submit_dtap(conn, msg, 0);
346}
Holger Hans Peter Freyther68d26792010-07-27 03:31:50 +0800347
348int gsm0480_send_releaseComplete(struct gsm_subscriber_connection *conn)
349{
350 struct gsm48_hdr *gh;
351 struct msgb *msg;
352
353 msg = gsm48_msgb_alloc();
354 if (!msg)
355 return -1;
356
357 gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));
358 gh->proto_discr = GSM48_PDISC_NC_SS;
359 gh->msg_type = GSM0480_MTYPE_RELEASE_COMPLETE;
360
361 return gsm0808_submit_dtap(conn, msg, 0);
362}