blob: 485023f334023b49e7cadc1a60a67aec14beae49 [file] [log] [blame]
Harald Welte783d0732014-12-29 17:09:11 +01001/*
2 * (C) 2014 by Harald Welte <laforge@gnumonks.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21
22#include <stdint.h>
23#include <stdlib.h>
24#include <string.h>
25
Harald Welte95871da2017-05-15 12:11:36 +020026#include <osmocom/core/byteswap.h>
Harald Welte783d0732014-12-29 17:09:11 +010027#include <osmocom/core/talloc.h>
28#include <osmocom/gsm/protocol/gsm_03_41.h>
29
Harald Welte96e2a002017-06-12 21:44:18 +020030/*! \addtogroup sms
31 * @{
Harald Welte55d724a2017-10-16 18:25:45 +020032 * \file gsm0341.c
Harald Welte96e2a002017-06-12 21:44:18 +020033 */
34
Neels Hofmeyr87e45502017-06-20 00:17:59 +020035/*! Encode a 3GPP TS 03.41 SMS-CB message
Harald Welte96e2a002017-06-12 21:44:18 +020036 * \param[in] ctx talloc allocation context
37 * \param[in] geo_scope Geographic Scope
38 * \param[in] msg_code Message Code
39 * \param[in] update Is this an update?
40 * \param[in] msg_id Message ID
41 * \param[in] dcs Data Coding Scheme
42 * \param[in] page_total Total number of pages
43 * \param[in] page_cur Current Page (up to \a page_total)
44 * \param[in] data Message data (copied 1:1)
45 * \param[in] len Length of \a data in bytes (up to 88)
46 * \returns callee-allocated TS 03.41 message with encoded data */
Harald Welte783d0732014-12-29 17:09:11 +010047struct gsm341_ms_message *
48gsm0341_build_msg(void *ctx, uint8_t geo_scope, uint8_t msg_code,
49 uint8_t update, uint16_t msg_id, uint8_t dcs,
50 uint8_t page_total, uint8_t page_cur,
51 uint8_t *data, uint8_t len)
52{
53 struct gsm341_ms_message *cbmsg;
54
Harald Welte95871da2017-05-15 12:11:36 +020055 msg_id = osmo_htons(msg_id);
Harald Welte63b156a2014-12-30 00:43:32 +010056
Harald Welte783d0732014-12-29 17:09:11 +010057 if (len > 88)
58 return NULL;
59
60 cbmsg = talloc_zero_size(ctx, sizeof(*cbmsg)+len);
61 if (!cbmsg)
62 return NULL;
63
64 cbmsg->serial.code_hi = (msg_code >> 4) & 0xF;
65 cbmsg->serial.gs = geo_scope;
66 cbmsg->serial.update = update;
67 cbmsg->serial.code_lo = msg_code & 0xF;
68 cbmsg->msg_id = msg_id;
69 cbmsg->dcs.group = dcs >> 4;
70 cbmsg->dcs.language = dcs & 0xF;
71 cbmsg->page.total = page_total;
72 cbmsg->page.current = page_cur;
73 memcpy(cbmsg->data, data, len);
74
75 return cbmsg;
76}
Harald Welte96e2a002017-06-12 21:44:18 +020077
78/*! @} */