blob: 5d85c82213afbef1074598c98cca39602c7844dc [file] [log] [blame]
Harald Welte6eafe912009-10-16 08:32:58 +02001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
2 * 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>
5 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
6 * (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
32#include <openbsc/msgb.h>
33#include <openbsc/tlv.h>
34#include <openbsc/debug.h>
35#include <openbsc/gsm_data.h>
36#include <openbsc/gsm_utils.h>
37#include <openbsc/gsm_04_08.h>
38#include <openbsc/gsm_04_80.h>
39
Harald Welte6eafe912009-10-16 08:32:58 +020040/* Forward declarations */
Mike Habendc329a62009-10-22 09:56:44 +020041static int parse_ussd(u_int8_t *ussd, struct ussd_request *req);
42static int parse_ussd_info_elements(u_int8_t *ussd_ie,
43 struct ussd_request *req);
44static int parse_facility_ie(u_int8_t *facility_ie, u_int8_t length,
45 struct ussd_request *req);
46static int parse_ss_invoke(u_int8_t *invoke_data, u_int8_t length,
47 struct ussd_request *req);
48static int parse_process_uss_req(u_int8_t *uss_req_data, u_int8_t length,
49 struct ussd_request *req);
Harald Welte6eafe912009-10-16 08:32:58 +020050
51static inline unsigned char *msgb_wrap_with_TL(struct msgb *msgb, u_int8_t tag)
52{
53 msgb->data -= 2;
54 msgb->data[0] = tag;
55 msgb->data[1] = msgb->len;
56 msgb->len += 2;
57 return msgb->data;
58}
59
Harald Welte6307b852009-10-16 08:41:51 +020060static inline unsigned char *msgb_push_TLV1(struct msgb *msgb, u_int8_t tag,
61 u_int8_t value)
Harald Welte6eafe912009-10-16 08:32:58 +020062{
63 msgb->data -= 3;
64 msgb->len += 3;
65 msgb->data[0] = tag;
66 msgb->data[1] = 1;
67 msgb->data[2] = value;
68 return msgb->data;
69}
70
71
Mike Habendc329a62009-10-22 09:56:44 +020072/* Decode a mobile-originated USSD-request message */
73int gsm0480_decode_ussd_request(struct msgb *msg, struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +020074{
75 int rc = 0;
Harald Welte6307b852009-10-16 08:41:51 +020076 u_int8_t *parse_ptr = msgb_l3(msg);
Harald Welte6eafe912009-10-16 08:32:58 +020077
Harald Welte6eafe912009-10-16 08:32:58 +020078 if ((*parse_ptr & 0x0F) == GSM48_PDISC_NC_SS) {
Mike Habendc329a62009-10-22 09:56:44 +020079 req->transaction_id = *parse_ptr & 0x70;
80 rc = parse_ussd(parse_ptr+1, req);
Harald Welte6eafe912009-10-16 08:32:58 +020081 }
82
83 if (!rc)
84 DEBUGP(DMM, "Error occurred while parsing received USSD!\n");
85
Mike Habendc329a62009-10-22 09:56:44 +020086 return rc;
Harald Welte6eafe912009-10-16 08:32:58 +020087}
88
Mike Habendc329a62009-10-22 09:56:44 +020089static int parse_ussd(u_int8_t *ussd, struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +020090{
91 int rc = 1;
92 u_int8_t msg_type = ussd[0] & 0xBF; /* message-type - section 3.4 */
93
Harald Welte6307b852009-10-16 08:41:51 +020094 switch (msg_type) {
Harald Welte6eafe912009-10-16 08:32:58 +020095 case GSM0480_MTYPE_RELEASE_COMPLETE:
Harald Welte6307b852009-10-16 08:41:51 +020096 DEBUGP(DMM, "USS Release Complete\n");
97 /* could also parse out the optional Cause/Facility data */
Mike Habendc329a62009-10-22 09:56:44 +020098 req->text[0] = 0xFF;
Harald Welte6eafe912009-10-16 08:32:58 +020099 break;
100 case GSM0480_MTYPE_REGISTER:
101 case GSM0480_MTYPE_FACILITY:
Mike Habendc329a62009-10-22 09:56:44 +0200102 rc &= parse_ussd_info_elements(ussd+1, req);
Harald Welte6eafe912009-10-16 08:32:58 +0200103 break;
104 default:
105 fprintf(stderr, "Unknown GSM 04.80 message-type field 0x%02x\n",
106 ussd[0]);
107 rc = 0;
108 break;
109 }
110
111 return rc;
112}
113
Mike Habendc329a62009-10-22 09:56:44 +0200114static int parse_ussd_info_elements(u_int8_t *ussd_ie, struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200115{
116 int rc;
Harald Welte6307b852009-10-16 08:41:51 +0200117 /* Information Element Identifier - table 3.2 & GSM 04.08 section 10.5 */
118 u_int8_t iei = ussd_ie[0];
Harald Welte6eafe912009-10-16 08:32:58 +0200119 u_int8_t iei_length = ussd_ie[1];
Harald Welte6307b852009-10-16 08:41:51 +0200120
121 switch (iei) {
Harald Welte6eafe912009-10-16 08:32:58 +0200122 case GSM48_IE_CAUSE:
123 break;
124 case GSM0480_IE_FACILITY:
Mike Habendc329a62009-10-22 09:56:44 +0200125 rc = parse_facility_ie(ussd_ie+2, iei_length, req);
Harald Welte6eafe912009-10-16 08:32:58 +0200126 break;
127 case GSM0480_IE_SS_VERSION:
128 break;
129 default:
Harald Welte6307b852009-10-16 08:41:51 +0200130 fprintf(stderr, "Unhandled GSM 04.08 or 04.80 IEI 0x%02x\n",
Harald Welte6eafe912009-10-16 08:32:58 +0200131 iei);
132 rc = 0;
133 break;
134 }
135
136 return rc;
137}
138
Mike Habendc329a62009-10-22 09:56:44 +0200139static int parse_facility_ie(u_int8_t *facility_ie, u_int8_t length,
140 struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200141{
142 int rc = 1;
143 u_int8_t offset = 0;
144
145 do {
Harald Welte6307b852009-10-16 08:41:51 +0200146 /* Component Type tag - table 3.7 */
147 u_int8_t component_type = facility_ie[offset];
Harald Welte6eafe912009-10-16 08:32:58 +0200148 u_int8_t component_length = facility_ie[offset+1];
Harald Welte6307b852009-10-16 08:41:51 +0200149
150 switch (component_type) {
Harald Welte6eafe912009-10-16 08:32:58 +0200151 case GSM0480_CTYPE_INVOKE:
Mike Habendc329a62009-10-22 09:56:44 +0200152 rc &= parse_ss_invoke(facility_ie+2,
153 component_length,
154 req);
Harald Welte6eafe912009-10-16 08:32:58 +0200155 break;
156 case GSM0480_CTYPE_RETURN_RESULT:
157 break;
158 case GSM0480_CTYPE_RETURN_ERROR:
159 break;
160 case GSM0480_CTYPE_REJECT:
161 break;
162 default:
Harald Welte6307b852009-10-16 08:41:51 +0200163 fprintf(stderr, "Unknown GSM 04.80 Facility "
164 "Component Type 0x%02x\n", component_type);
Harald Welte6eafe912009-10-16 08:32:58 +0200165 rc = 0;
166 break;
167 }
168 offset += (component_length+2);
Harald Welte6307b852009-10-16 08:41:51 +0200169 } while (offset < length);
Harald Welte6eafe912009-10-16 08:32:58 +0200170
171 return rc;
172}
173
174/* Parse an Invoke component - see table 3.3 */
Mike Habendc329a62009-10-22 09:56:44 +0200175static int parse_ss_invoke(u_int8_t *invoke_data, u_int8_t length,
176 struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200177{
178 int rc = 1;
Harald Welte6307b852009-10-16 08:41:51 +0200179 u_int8_t offset;
180
181 /* mandatory part */
182 if (invoke_data[0] != GSM0480_COMPIDTAG_INVOKE_ID) {
183 fprintf(stderr, "Unexpected GSM 04.80 Component-ID tag "
184 "0x%02x (expecting Invoke ID tag)\n", invoke_data[0]);
Harald Welte6eafe912009-10-16 08:32:58 +0200185 }
Harald Welte6307b852009-10-16 08:41:51 +0200186
187 offset = invoke_data[1] + 2;
Mike Habendc329a62009-10-22 09:56:44 +0200188 req->invoke_id = invoke_data[2];
Harald Welte6eafe912009-10-16 08:32:58 +0200189
Harald Welte6307b852009-10-16 08:41:51 +0200190 /* optional part */
191 if (invoke_data[offset] == GSM0480_COMPIDTAG_LINKED_ID)
Harald Welte6eafe912009-10-16 08:32:58 +0200192 offset += invoke_data[offset+1] + 2; /* skip over it */
Harald Welte6307b852009-10-16 08:41:51 +0200193
194 /* mandatory part */
195 if (invoke_data[offset] == GSM0480_OPERATION_CODE) {
Harald Welte6eafe912009-10-16 08:32:58 +0200196 u_int8_t operation_code = invoke_data[offset+2];
Harald Welte6307b852009-10-16 08:41:51 +0200197 switch (operation_code) {
Harald Welte6eafe912009-10-16 08:32:58 +0200198 case GSM0480_OP_CODE_PROCESS_USS_REQ:
Harald Welte6307b852009-10-16 08:41:51 +0200199 rc = parse_process_uss_req(invoke_data + offset + 3,
Mike Habendc329a62009-10-22 09:56:44 +0200200 length - offset - 3,
201 req);
Harald Welte6eafe912009-10-16 08:32:58 +0200202 break;
203 default:
Harald Welte6307b852009-10-16 08:41:51 +0200204 fprintf(stderr, "GSM 04.80 operation code 0x%02x "
205 "is not yet handled\n", operation_code);
Harald Welte6eafe912009-10-16 08:32:58 +0200206 rc = 0;
207 break;
208 }
209 } else {
Harald Welte6307b852009-10-16 08:41:51 +0200210 fprintf(stderr, "Unexpected GSM 04.80 Component-ID tag 0x%02x "
211 "(expecting Operation Code tag)\n",
Harald Welte6eafe912009-10-16 08:32:58 +0200212 invoke_data[0]);
213 rc = 0;
214 }
215
216 return rc;
217}
218
219/* Parse the parameters of a Process UnstructuredSS Request */
Mike Habendc329a62009-10-22 09:56:44 +0200220static int parse_process_uss_req(u_int8_t *uss_req_data, u_int8_t length,
221 struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200222{
Mike Habendc329a62009-10-22 09:56:44 +0200223 int rc = 0;
Harald Welte6eafe912009-10-16 08:32:58 +0200224 int num_chars;
225 u_int8_t dcs;
226
Harald Welte6eafe912009-10-16 08:32:58 +0200227 if (uss_req_data[0] == GSM_0480_SEQUENCE_TAG) {
228 if (uss_req_data[2] == ASN1_OCTET_STRING_TAG) {
229 dcs = uss_req_data[4];
Harald Welte6307b852009-10-16 08:41:51 +0200230 if ((dcs == 0x0F) &&
231 (uss_req_data[5] == ASN1_OCTET_STRING_TAG)) {
Harald Welte6eafe912009-10-16 08:32:58 +0200232 num_chars = (uss_req_data[6] * 8) / 7;
Mike Habendc329a62009-10-22 09:56:44 +0200233 gsm_7bit_decode(req->text,
Harald Welte6307b852009-10-16 08:41:51 +0200234 &(uss_req_data[7]), num_chars);
Mike Habendc329a62009-10-22 09:56:44 +0200235 /* append null-terminator */
236 req->text[num_chars+1] = 0;
237 rc = 1;
Harald Welte6eafe912009-10-16 08:32:58 +0200238 }
239 }
Mike Habendc329a62009-10-22 09:56:44 +0200240 }
Harald Welte6eafe912009-10-16 08:32:58 +0200241 return rc;
242}
243
244/* Send response to a mobile-originated ProcessUnstructuredSS-Request */
Mike Habendc329a62009-10-22 09:56:44 +0200245int gsm0480_send_ussd_response(struct msgb *in_msg, const char* response_text,
246 const struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200247{
248 struct msgb *msg = gsm48_msgb_alloc();
249 struct gsm48_hdr *gh;
250 u_int8_t *ptr8;
251 int response_len;
252
253 response_len = (strlen(response_text) * 7) / 8;
254 if (((strlen(response_text) * 7) % 8) != 0)
255 response_len += 1;
256
257 msg->bts_link = in_msg->bts_link;
258 msg->lchan = in_msg->lchan;
259
260 /* First put the payload text into the message */
261 ptr8 = msgb_put(msg, response_len);
262 gsm_7bit_encode(ptr8, response_text);
263
264 /* Then wrap it as an Octet String */
265 msgb_wrap_with_TL(msg, ASN1_OCTET_STRING_TAG);
266
267 /* Pre-pend the DCS octet string */
268 msgb_push_TLV1(msg, ASN1_OCTET_STRING_TAG, 0x0F);
269
270 /* Then wrap these as a Sequence */
271 msgb_wrap_with_TL(msg, GSM_0480_SEQUENCE_TAG);
272
273 /* Pre-pend the operation code */
Harald Welte6307b852009-10-16 08:41:51 +0200274 msgb_push_TLV1(msg, GSM0480_OPERATION_CODE,
275 GSM0480_OP_CODE_PROCESS_USS_REQ);
Harald Welte6eafe912009-10-16 08:32:58 +0200276
277 /* Wrap the operation code and IA5 string as a sequence */
278 msgb_wrap_with_TL(msg, GSM_0480_SEQUENCE_TAG);
279
280 /* Pre-pend the invoke ID */
Mike Habendc329a62009-10-22 09:56:44 +0200281 msgb_push_TLV1(msg, GSM0480_COMPIDTAG_INVOKE_ID, req->invoke_id);
Harald Welte6eafe912009-10-16 08:32:58 +0200282
283 /* Wrap this up as a Return Result component */
284 msgb_wrap_with_TL(msg, GSM0480_CTYPE_RETURN_RESULT);
285
286 /* Wrap the component in a Facility message */
287 msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
288
289 /* And finally pre-pend the L3 header */
290 gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));
Mike Habendc329a62009-10-22 09:56:44 +0200291 gh->proto_discr = GSM48_PDISC_NC_SS | req->transaction_id
292 | (1<<7); /* TI direction = 1 */
Harald Welte6eafe912009-10-16 08:32:58 +0200293 gh->msg_type = GSM0480_MTYPE_RELEASE_COMPLETE;
294
295 return gsm48_sendmsg(msg, NULL);
296}
297
Mike Habendc329a62009-10-22 09:56:44 +0200298int gsm0480_send_ussd_reject(struct msgb *in_msg,
299 const struct ussd_request *req)
Harald Welte6eafe912009-10-16 08:32:58 +0200300{
301 struct msgb *msg = gsm48_msgb_alloc();
302 struct gsm48_hdr *gh;
303
304 msg->bts_link = in_msg->bts_link;
305 msg->lchan = in_msg->lchan;
306
307 /* First insert the problem code */
Harald Welte6307b852009-10-16 08:41:51 +0200308 msgb_push_TLV1(msg, GSM_0480_PROBLEM_CODE_TAG_GENERAL,
309 GSM_0480_GEN_PROB_CODE_UNRECOGNISED);
Harald Welte6eafe912009-10-16 08:32:58 +0200310
311 /* Before it insert the invoke ID */
Mike Habendc329a62009-10-22 09:56:44 +0200312 msgb_push_TLV1(msg, GSM0480_COMPIDTAG_INVOKE_ID, req->invoke_id);
Harald Welte6eafe912009-10-16 08:32:58 +0200313
314 /* Wrap this up as a Reject component */
315 msgb_wrap_with_TL(msg, GSM0480_CTYPE_REJECT);
316
317 /* Wrap the component in a Facility message */
318 msgb_wrap_with_TL(msg, GSM0480_IE_FACILITY);
319
320 /* And finally pre-pend the L3 header */
321 gh = (struct gsm48_hdr *) msgb_push(msg, sizeof(*gh));
Harald Welte6307b852009-10-16 08:41:51 +0200322 gh->proto_discr = GSM48_PDISC_NC_SS;
Mike Habendc329a62009-10-22 09:56:44 +0200323 gh->proto_discr |= req->transaction_id | (1<<7); /* TI direction = 1 */
Harald Welte6eafe912009-10-16 08:32:58 +0200324 gh->msg_type = GSM0480_MTYPE_RELEASE_COMPLETE;
325
326 return gsm48_sendmsg(msg, NULL);
327}