blob: 8db402b33a0ab71312a4038cf791c36c0cbea4e7 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* Point-to-Point (PP) Short Message Service (SMS)
2 * Support on Mobile Radio Interface
3 * 3GPP TS 04.11 version 7.1.0 Release 1998 / ETSI TS 100 942 V7.1.0 */
4
5/* (C) 2008 by Daniel Willmann <daniel@totalueberwachung.de>
6 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
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#include <netinet/in.h>
32
33#include <openbsc/msgb.h>
34#include <openbsc/tlv.h>
35#include <openbsc/debug.h>
36#include <openbsc/gsm_data.h>
37#include <openbsc/gsm_subscriber.h>
38#include <openbsc/gsm_04_11.h>
39#include <openbsc/gsm_04_08.h>
40#include <openbsc/gsm_utils.h>
41#include <openbsc/abis_rsl.h>
42#include <openbsc/signal.h>
43#include <openbsc/db.h>
Harald Weltea8379772009-06-20 22:36:41 +020044#include <openbsc/talloc.h>
Harald Welte59b04682009-06-10 05:40:52 +080045
46#define GSM411_ALLOC_SIZE 1024
47#define GSM411_ALLOC_HEADROOM 128
48
Harald Weltea8379772009-06-20 22:36:41 +020049static void *tall_sms_ctx;
50static void *tall_gsms_ctx;
51
Harald Welte59b04682009-06-10 05:40:52 +080052struct msgb *gsm411_msgb_alloc(void)
53{
Harald Welte9cfc9352009-06-26 19:39:35 +020054 return msgb_alloc_headroom(GSM411_ALLOC_SIZE, GSM411_ALLOC_HEADROOM,
55 "GSM 04.11");
Harald Welte59b04682009-06-10 05:40:52 +080056}
57
58int gsm0411_sendmsg(struct msgb *msg)
59{
60 if (msg->lchan)
61 msg->trx = msg->lchan->ts->trx;
62
63 msg->l3h = msg->data;
64
65 return rsl_data_request(msg, 0);
66}
67
68
69#if 0
70static u_int8_t gsm0411_tpdu_from_sms(u_int8_t *tpdu, struct sms_deliver *sms)
71{
72}
73#endif
74
75static unsigned long gsm340_validity_period(struct sms_submit *sms)
76{
77 u_int8_t vp;
78 unsigned long minutes;
79
80 switch (sms->vpf) {
81 case GSM340_TP_VPF_RELATIVE:
82 /* Chapter 9.2.3.12.1 */
83 vp = *(sms->vp);
84 if (vp <= 143)
85 minutes = vp + 1 * 5;
86 else if (vp <= 167)
87 minutes = 12*60 + (vp-143) * 30;
88 else if (vp <= 196)
89 minutes = vp-166 * 60 * 24;
90 else
91 minutes = vp-192 * 60 * 24 * 7;
92 break;
93 case GSM340_TP_VPF_ABSOLUTE:
94 /* Chapter 9.2.3.12.2 */
95 /* FIXME: like service center time stamp */
96 DEBUGP(DSMS, "VPI absolute not implemented yet\n");
97 break;
98 case GSM340_TP_VPF_ENHANCED:
99 /* Chapter 9.2.3.12.3 */
100 /* FIXME: implementation */
101 DEBUGP(DSMS, "VPI enhanced not implemented yet\n");
102 break;
103 }
104 return minutes;
105}
106
107/* determine coding alphabet dependent on GSM 03.38 Section 4 DCS */
108enum sms_alphabet gsm338_get_sms_alphabet(u_int8_t dcs)
109{
110 u_int8_t cgbits = dcs >> 4;
111 enum sms_alphabet alpha = DCS_NONE;
112
113 if ((cgbits & 0xc) == 0) {
114 if (cgbits & 2)
115 DEBUGP(DSMS, "Compressed SMS not supported yet\n");
116
117 switch (dcs & 3) {
118 case 0:
119 alpha = DCS_7BIT_DEFAULT;
120 break;
121 case 1:
122 alpha = DCS_8BIT_DATA;
123 break;
124 case 2:
125 alpha = DCS_UCS2;
126 break;
127 }
128 } else if (cgbits == 0xc || cgbits == 0xd)
129 alpha = DCS_7BIT_DEFAULT;
130 else if (cgbits == 0xe)
131 alpha = DCS_UCS2;
132 else if (cgbits == 0xf) {
133 if (dcs & 4)
134 alpha = DCS_8BIT_DATA;
135 else
136 alpha = DCS_7BIT_DEFAULT;
137 }
138
139 return alpha;
140}
141
142static int gsm340_rx_sms_submit(struct msgb *msg, struct sms_submit *sms,
143 struct gsm_sms *gsms)
144{
145 if (db_sms_store(gsms) != 0) {
146 DEBUGP(DSMS, "Failed to store SMS in Database\n");
Harald Weltea8379772009-06-20 22:36:41 +0200147 talloc_free(sms);
148 talloc_free(gsms);
Harald Welte59b04682009-06-10 05:40:52 +0800149 return -EIO;
150 }
151 return 0;
152}
153
154/* process an incoming TPDU (called from RP-DATA) */
155static int gsm340_rx_tpdu(struct msgb *msg)
156{
Harald Welteaae7a522009-07-23 19:21:02 +0200157 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte59b04682009-06-10 05:40:52 +0800158 u_int8_t *smsp = msgb_sms(msg);
159 struct sms_submit *sms;
160 struct gsm_sms *gsms;
161 u_int8_t da_len_bytes;
162 u_int8_t address_lv[12]; /* according to 03.40 / 9.1.2.5 */
163 int rc = 0;
164
Harald Weltea8379772009-06-20 22:36:41 +0200165 if (!tall_sms_ctx)
166 tall_sms_ctx = talloc_named_const(tall_bsc_ctx, 1,
167 "sms_submit");
168
169 sms = talloc(tall_sms_ctx, struct sms_submit);
Harald Welte59b04682009-06-10 05:40:52 +0800170 if (!sms)
171 return -ENOMEM;
172 memset(sms, 0, sizeof(*sms));
173
Harald Weltea8379772009-06-20 22:36:41 +0200174 if (!tall_gsms_ctx)
175 tall_gsms_ctx = talloc_named_const(tall_bsc_ctx, 1,
176 "sms");
177
178 gsms = talloc(tall_gsms_ctx, struct gsm_sms);
Harald Welte59b04682009-06-10 05:40:52 +0800179 if (!gsms) {
Harald Weltea8379772009-06-20 22:36:41 +0200180 talloc_free(sms);
Harald Welte59b04682009-06-10 05:40:52 +0800181 return -ENOMEM;
182 }
183 memset(gsms, 0, sizeof(*gsms));
184
185 /* invert those fields where 0 means active/present */
186 sms->mti = *smsp & 0x03;
187 sms->mms = !!(*smsp & 0x04);
188 sms->vpf = (*smsp & 0x18) >> 3;
189 sms->sri = !!(*smsp & 0x20);
190 sms->udhi= !!(*smsp & 0x40);
191 sms->rp = !!(*smsp & 0x80);
192
193 smsp++;
194 sms->msg_ref = *smsp++;
195
196 /* length in bytes of the destination address */
197 da_len_bytes = 2 + *smsp/2 + *smsp%2;
198 if (da_len_bytes > 12) {
199 DEBUGP(DSMS, "Destination Address > 12 bytes ?!?\n");
200 rc = -EIO;
201 goto out;
202 }
Harald Welte3794e152009-06-12 02:42:11 +0800203 memset(address_lv, 0, sizeof(address_lv));
Harald Welte59b04682009-06-10 05:40:52 +0800204 memcpy(address_lv, smsp, da_len_bytes);
205 /* mangle first byte to reflect length in bytes, not digits */
Harald Welte3794e152009-06-12 02:42:11 +0800206 address_lv[0] = da_len_bytes - 1;
Harald Welte59b04682009-06-10 05:40:52 +0800207 /* convert to real number */
Harald Welte3794e152009-06-12 02:42:11 +0800208 decode_bcd_number(sms->dest_addr, sizeof(sms->dest_addr), address_lv, 1);
Harald Welte59b04682009-06-10 05:40:52 +0800209
210 smsp += da_len_bytes;
211
212 sms->pid = *smsp++;
213
214 sms->dcs = *smsp++;
215 sms->alphabet = gsm338_get_sms_alphabet(sms->dcs);
216
217 switch (sms->vpf) {
218 case GSM340_TP_VPF_RELATIVE:
219 sms->vp = smsp++;
220 break;
221 case GSM340_TP_VPF_ABSOLUTE:
222 case GSM340_TP_VPF_ENHANCED:
223 sms->vp = smsp;
224 smsp += 7;
225 break;
226 default:
227 DEBUGP(DSMS, "SMS Validity period not implemented: 0x%02x\n",
228 sms->vpf);
229 }
230 sms->ud_len = *smsp++;
231 if (sms->ud_len)
232 sms->user_data = smsp;
233 else
234 sms->user_data = NULL;
235
236 if (sms->ud_len) {
237 switch (sms->alphabet) {
238 case DCS_7BIT_DEFAULT:
239 gsm_7bit_decode(sms->decoded, smsp, sms->ud_len);
240 break;
241 case DCS_8BIT_DATA:
242 case DCS_UCS2:
243 case DCS_NONE:
244 memcpy(sms->decoded, sms->user_data, sms->ud_len);
245 break;
246 }
247 }
248
249 DEBUGP(DSMS, "SMS:\nMTI: 0x%02x, VPF: 0x%02x, MR: 0x%02x "
250 "PID: 0x%02x, DCS: 0x%02x, DA: %s, UserDataLength: 0x%02x "
251 "UserData: \"%s\"\n", sms->mti, sms->vpf, sms->msg_ref,
252 sms->pid, sms->dcs, sms->dest_addr, sms->ud_len,
253 sms->alphabet == DCS_7BIT_DEFAULT ? sms->decoded : hexdump(sms->user_data, sms->ud_len));
254
255 dispatch_signal(SS_SMS, 0, sms);
256
257 gsms->sender = msg->lchan->subscr;
258 /* FIXME: sender refcount */
259
260 /* determine gsms->receiver based on dialled number */
Harald Welteaae7a522009-07-23 19:21:02 +0200261 gsms->receiver = subscr_get_by_extension(bts->network, sms->dest_addr);
Harald Welte59b04682009-06-10 05:40:52 +0800262 if (!gsms->receiver) {
263 rc = 1; /* cause 1: unknown subscriber */
264 goto out;
265 }
266
267 if (sms->user_data)
268 strncpy(gsms->text, sms->decoded, sizeof(gsms->text));
269
270 switch (sms->mti) {
271 case GSM340_SMS_SUBMIT_MS2SC:
272 /* MS is submitting a SMS */
273 rc = gsm340_rx_sms_submit(msg, sms, gsms);
274 break;
275 case GSM340_SMS_COMMAND_MS2SC:
276 case GSM340_SMS_DELIVER_REP_MS2SC:
277 DEBUGP(DSMS, "Unimplemented MTI 0x%02x\n", sms->mti);
278 break;
279 default:
280 DEBUGP(DSMS, "Undefined MTI 0x%02x\n", sms->mti);
281 break;
282 }
283
284out:
Harald Weltea8379772009-06-20 22:36:41 +0200285 talloc_free(gsms);
286 talloc_free(sms);
Harald Welte59b04682009-06-10 05:40:52 +0800287
288 return rc;
289}
290
291static int gsm411_send_rp_ack(struct gsm_lchan *lchan, u_int8_t trans_id,
292 u_int8_t msg_ref)
293{
294 struct msgb *msg = gsm411_msgb_alloc();
295 struct gsm48_hdr *gh;
296 struct gsm411_rp_hdr *rp;
297
298 msg->lchan = lchan;
299
300 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
301 // Outgoing needs the highest bit set
302 gh->proto_discr = GSM48_PDISC_SMS | trans_id<<4 | 0x80;
303 gh->msg_type = GSM411_MT_CP_DATA;
304
305 rp = (struct gsm411_rp_hdr *)msgb_put(msg, sizeof(*rp));
306 rp->len = 2;
307 rp->msg_type = GSM411_MT_RP_ACK_MT;
308 rp->msg_ref = msg_ref;
309
310 DEBUGP(DSMS, "TX: SMS RP ACK\n");
311
312 return gsm0411_sendmsg(msg);
313}
314
315static int gsm411_send_rp_error(struct gsm_lchan *lchan, u_int8_t trans_id,
316 u_int8_t msg_ref, u_int8_t cause)
317{
318 struct msgb *msg = gsm411_msgb_alloc();
319 struct gsm48_hdr *gh;
320 struct gsm411_rp_hdr *rp;
321
322 msg->lchan = lchan;
323
324 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
325 // Outgoing needs the highest bit set
326 gh->proto_discr = GSM48_PDISC_SMS | trans_id<<4 | 0x80;
327 gh->msg_type = GSM411_MT_CP_DATA;
328
329 rp = (struct gsm411_rp_hdr *)msgb_put(msg, sizeof(*rp));
330 rp->msg_type = GSM411_MT_RP_ERROR_MT;
331 rp->msg_ref = msg_ref;
332 msgb_tv_put(msg, 1, cause);
333
334 DEBUGP(DSMS, "TX: SMS RP ERROR (cause %02d)\n", cause);
335
336 return gsm0411_sendmsg(msg);
337}
338
339/* Receive a 04.11 TPDU inside RP-DATA / user data */
340static int gsm411_rx_rp_ud(struct msgb *msg, struct gsm411_rp_hdr *rph,
341 u_int8_t src_len, u_int8_t *src,
342 u_int8_t dst_len, u_int8_t *dst,
343 u_int8_t tpdu_len, u_int8_t *tpdu)
344{
345 struct gsm48_hdr *gh = msgb_l3(msg);
346 u_int8_t trans_id = gh->proto_discr >> 4;
347 int rc = 0;
348
349 if (src_len && src)
350 DEBUGP(DSMS, "RP-DATA (MO) with SRC ?!?\n");
351
352 if (!dst_len || !dst || !tpdu_len || !tpdu) {
353 DEBUGP(DSMS, "RP-DATA (MO) without DST or TPDU ?!?\n");
354 return -EIO;
355 }
356 msg->smsh = tpdu;
357
358 DEBUGP(DSMS, "DST(%u,%s)\n", dst_len, hexdump(dst, dst_len));
359 //return gsm411_send_rp_error(msg->lchan, trans_id, rph->msg_ref, rc);
360
361 rc = gsm340_rx_tpdu(msg);
362 if (rc == 0)
363 return gsm411_send_rp_ack(msg->lchan, trans_id, rph->msg_ref);
364 else if (rc > 0)
365 return gsm411_send_rp_error(msg->lchan, trans_id, rph->msg_ref, rc);
366 else
367 return rc;
368}
369
370/* Receive a 04.11 RP-DATA message in accordance with Section 7.3.1.2 */
371static int gsm411_rx_rp_data(struct msgb *msg, struct gsm411_rp_hdr *rph)
372{
373 u_int8_t src_len, dst_len, rpud_len;
374 u_int8_t *src = NULL, *dst = NULL , *rp_ud = NULL;
375
376 /* in the MO case, this should always be zero length */
377 src_len = rph->data[0];
378 if (src_len)
379 src = &rph->data[1];
380
381 dst_len = rph->data[1+src_len];
382 if (dst_len)
383 dst = &rph->data[1+src_len+1];
384
385 rpud_len = rph->data[1+src_len+1+dst_len];
386 if (rpud_len)
387 rp_ud = &rph->data[1+src_len+1+dst_len+1];
388
389 DEBUGP(DSMS, "RX_RP-DATA: src_len=%u, dst_len=%u ud_len=%u\n", src_len, dst_len, rpud_len);
390 return gsm411_rx_rp_ud(msg, rph, src_len, src, dst_len, dst,
391 rpud_len, rp_ud);
392}
393
394static int gsm411_rx_cp_data(struct msgb *msg, struct gsm48_hdr *gh)
395{
396 struct gsm411_rp_hdr *rp_data = (struct gsm411_rp_hdr*)&gh->data;
397 u_int8_t msg_type = rp_data->msg_type & 0x07;
398 int rc = 0;
399
400 switch (msg_type) {
401 case GSM411_MT_RP_DATA_MO:
402 DEBUGP(DSMS, "SMS RP-DATA (MO)\n");
403 rc = gsm411_rx_rp_data(msg, rp_data);
404 break;
405 case GSM411_MT_RP_ACK_MO:
406 /* Acnkowledgement to MT RP_DATA */
407 case GSM411_MT_RP_ERROR_MO:
408 /* Error in response to MT RP_DATA */
409 case GSM411_MT_RP_SMMA_MO:
410 /* MS tells us that it has memory for more SMS, we need
411 * to check if we have any pending messages for it and then
412 * transfer those */
413 DEBUGP(DSMS, "Unimplemented RP type 0x%02x\n", msg_type);
414 break;
415 default:
416 DEBUGP(DSMS, "Invalid RP type 0x%02x\n", msg_type);
417 break;
418 }
419
420 return rc;
421}
422
423int gsm0411_rcv_sms(struct msgb *msg)
424{
425 struct gsm48_hdr *gh = msgb_l3(msg);
426 u_int8_t msg_type = gh->msg_type;
427 int rc = 0;
428
429 switch(msg_type) {
430 case GSM411_MT_CP_DATA:
431 DEBUGP(DSMS, "SMS CP-DATA\n");
432 rc = gsm411_rx_cp_data(msg, gh);
433 break;
434 case GSM411_MT_CP_ACK:
435 DEBUGP(DSMS, "SMS CP-ACK\n");
436 break;
437 case GSM411_MT_CP_ERROR:
438 DEBUGP(DSMS, "SMS CP-ERROR, cause 0x%02x\n", gh->data[0]);
439 break;
440 default:
441 DEBUGP(DSMS, "Unimplemented CP msg_type: 0x%02x\n", msg_type);
442 break;
443 }
444
445
446 return rc;
447}
448
449/* Test TPDU - 25c3 welcome */
450#if 0
451static u_int8_t tpdu_test[] = {
452 0x04, 0x04, 0x81, 0x32, 0x24, 0x00, 0x00, 0x80, 0x21, 0x92, 0x90, 0x32,
453 0x24, 0x40, 0x4D, 0xB2, 0xDA, 0x70, 0xD6, 0x9A, 0x97, 0xE5, 0xF6, 0xF4,
454 0xB8, 0x0C, 0x0A, 0xBB, 0xDD, 0xEF, 0xBA, 0x7B, 0x5C, 0x6E, 0x97, 0xDD,
455 0x74, 0x1D, 0x08, 0xCA, 0x2E, 0x87, 0xE7, 0x65, 0x50, 0x98, 0x4E, 0x2F,
456 0xBB, 0xC9, 0x20, 0x3A, 0xBA, 0x0C, 0x3A, 0x4E, 0x9B, 0x20, 0x7A, 0x98,
457 0xBD, 0x06, 0x85, 0xE9, 0xA0, 0x58, 0x4C, 0x37, 0x83, 0x81, 0xD2, 0x6E,
458 0xD0, 0x34, 0x1C, 0x66, 0x83, 0x62, 0x21, 0x90, 0xAE, 0x95, 0x02
459};
460#else
461/* Test TPDU - ALL YOUR */
462static u_int8_t tpdu_test[] = {
463 0x04, 0x04, 0x81, 0x32, 0x24, 0x00, 0x00, 0x80, 0x21, 0x03, 0x41, 0x24,
464 0x32, 0x40, 0x1F, 0x41, 0x26, 0x13, 0x94, 0x7D, 0x56, 0xA5, 0x20, 0x28,
465 0xF2, 0xE9, 0x2C, 0x82, 0x82, 0xD2, 0x22, 0x48, 0x58, 0x64, 0x3E, 0x9D,
466 0x47, 0x10, 0xF5, 0x09, 0xAA, 0x4E, 0x01
467};
468#endif
469
470int gsm0411_send_sms(struct gsm_lchan *lchan, struct sms_deliver *sms)
471{
472 struct msgb *msg = gsm411_msgb_alloc();
473 struct gsm48_hdr *gh;
474 struct gsm411_rp_hdr *rp;
475 u_int8_t *data;
476
477 msg->lchan = lchan;
478
479 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
480 gh->proto_discr = GSM48_PDISC_SMS;
481 gh->msg_type = GSM411_MT_CP_DATA;
482
483 rp = (struct gsm411_rp_hdr *)msgb_put(msg, sizeof(*rp));
484 rp->len = sizeof(tpdu_test) + 10;
485 rp->msg_type = GSM411_MT_RP_DATA_MT;
486 rp->msg_ref = 42; /* FIXME: Choose randomly */
487 /* Hardcode OA for now */
488 data = (u_int8_t *)msgb_put(msg, 8);
489 data[0] = 0x07;
490 data[1] = 0x91;
491 data[2] = 0x44;
492 data[3] = 0x77;
493 data[4] = 0x58;
494 data[5] = 0x10;
495 data[6] = 0x06;
496 data[7] = 0x50;
497 data = (u_int8_t *)msgb_put(msg, 1);
498 data[0] = 0;
499
500 /* FIXME: Hardcoded for now */
501 //smslen = gsm0411_tpdu_from_sms(tpdu, sms);
502
503 /* RPDU length */
504 data = (u_int8_t *)msgb_put(msg, 1);
505 data[0] = sizeof(tpdu_test);
506
507 data = (u_int8_t *)msgb_put(msg, sizeof(tpdu_test));
508
509 //memcpy(data, tpdu, smslen);
510 memcpy(data, tpdu_test, sizeof(tpdu_test));
511
512 DEBUGP(DSMS, "TX: SMS SUBMIT\n");
513
514 return gsm0411_sendmsg(msg);
515}