aboutsummaryrefslogtreecommitdiffstats
path: root/src/gsm/gsup_sms.c
blob: d49cf20af7ca733cd9b89fed22fa391c9f0e4c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/*
 * (C) 2018 by Vadim Yanitskiy <axilirator@gmail.com>
 *
 * All Rights Reserved
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#include <stdint.h>
#include <string.h>
#include <errno.h>

#include <osmocom/core/logging.h>
#include <osmocom/core/msgb.h>

#include <osmocom/gsm/gsup.h>
#include <osmocom/gsm/tlv.h>

/*! \addtogroup gsup
 *  @{
 *  \file gsup_sms.c
 *  SMS (Short Message Service) extensions for Osmocom GSUP.
 */

/*! Encode SM-RP-DA IE (see 7.6.8.1), Destination Address.
 * \param[out] msg      target message buffer (caller-allocated)
 * \param[in]  gsup_msg abstract GSUP message structure
 * \returns 0 in case of success, negative in case of error
 */
int osmo_gsup_sms_encode_sm_rp_da(struct msgb *msg,
	const struct osmo_gsup_message *gsup_msg)
{
	uint8_t *id_enc;

	switch (gsup_msg->sm_rp_da_type) {
	case OSMO_GSUP_SMS_SM_RP_ODA_IMSI:
	case OSMO_GSUP_SMS_SM_RP_ODA_MSISDN:
	case OSMO_GSUP_SMS_SM_RP_ODA_SMSC_ADDR:
		/* Prevent NULL-pointer (or empty) dereference */
		if (gsup_msg->sm_rp_da == NULL || gsup_msg->sm_rp_da_len == 0) {
			LOGP(DLGSUP, LOGL_ERROR, "Empty?!? SM-RP-DA ID "
				"(type=0x%02x)!\n", gsup_msg->sm_rp_da_type);
			return -EINVAL;
		}
		break;

	/* Special case for noSM-RP-DA */
	case OSMO_GSUP_SMS_SM_RP_ODA_NULL:
		break;

	case OSMO_GSUP_SMS_SM_RP_ODA_NONE:
	default:
		LOGP(DLGSUP, LOGL_ERROR, "Unexpected SM-RP-DA ID "
			"(type=0x%02x)!\n", gsup_msg->sm_rp_da_type);
		return -EINVAL;
	}

	/* SM-RP-DA tag | len | ... */
	msgb_tv_put(msg, OSMO_GSUP_SM_RP_DA_IE, gsup_msg->sm_rp_da_len + 1);
	msgb_v_put(msg, gsup_msg->sm_rp_da_type); /* ... | id_type */

	if (gsup_msg->sm_rp_da_type == OSMO_GSUP_SMS_SM_RP_ODA_NULL)
		return 0;

	/* ... | id_enc */
	id_enc = msgb_put(msg, gsup_msg->sm_rp_da_len);
	memcpy(id_enc, gsup_msg->sm_rp_da, gsup_msg->sm_rp_da_len);

	return 0;
}

/*! Decode SM-RP-DA IE (see 7.6.8.1), Destination Address.
 * \param[out] gsup_msg abstract GSUP message structure
 * \param[in]  data     pointer to the raw IE payload
 * \param[in]  data_len length of IE pointed by \ref data
 * \returns 0 in case of success, negative in case of error
 */
int osmo_gsup_sms_decode_sm_rp_da(struct osmo_gsup_message *gsup_msg,
	uint8_t *data, size_t data_len)
{
	uint8_t *ptr = data;
	uint8_t id_type;

	/* There should be at least id_type */
	if (data_len < 1) {
		LOGP(DLGSUP, LOGL_ERROR, "Corrupted SM-RP-DA IE "
			"(missing identity type)\n");
		return -EINVAL;
	}

	/* ... | id_type | id_enc (optional) */
	id_type = *ptr++;
	data_len--;

	/* Parse ID type */
	switch (id_type) {
	case OSMO_GSUP_SMS_SM_RP_ODA_IMSI:
	case OSMO_GSUP_SMS_SM_RP_ODA_MSISDN:
	case OSMO_GSUP_SMS_SM_RP_ODA_SMSC_ADDR:
		if (!data_len) {
			/* ID shall not be empty (if its type != NULL) */
			LOGP(DLGSUP, LOGL_ERROR, "Corrupted SM-RP-DA IE "
				"(missing encoded identity)\n");
			return -EINVAL;
		}

		gsup_msg->sm_rp_da_type = id_type;
		gsup_msg->sm_rp_da_len = data_len;
		gsup_msg->sm_rp_da = ptr;
		break;

	/* Special case for noSM-RP-DA */
	case OSMO_GSUP_SMS_SM_RP_ODA_NULL:
		if (data_len != 0) {
			LOGP(DLGSUP, LOGL_ERROR, "Unexpected SM-RP-DA ID, "
				"(id_len != 0) for noSM-RP-DA!\n");
			return -EINVAL;
		}

		gsup_msg->sm_rp_da_type = id_type;
		gsup_msg->sm_rp_da_len = 0;
		gsup_msg->sm_rp_da = NULL;
		break;

	case OSMO_GSUP_SMS_SM_RP_ODA_NONE:
	default:
		LOGP(DLGSUP, LOGL_ERROR, "Unexpected SM-RP-DA ID "
			"(type=0x%02x)!\n", id_type);
		return -EINVAL;
	}

	return 0;
}

/*! Encode SM-RP-OA IE (see 7.6.8.2), Originating Address.
 * \param[out] msg      target message buffer (caller-allocated)
 * \param[in]  gsup_msg abstract GSUP message structure
 * \returns 0 in case of success, negative in case of error
 */
int osmo_gsup_sms_encode_sm_rp_oa(struct msgb *msg,
	const struct osmo_gsup_message *gsup_msg)
{
	uint8_t *id_enc;

	switch (gsup_msg->sm_rp_oa_type) {
	case OSMO_GSUP_SMS_SM_RP_ODA_MSISDN:
	case OSMO_GSUP_SMS_SM_RP_ODA_SMSC_ADDR:
		/* Prevent NULL-pointer (or empty) dereference */
		if (gsup_msg->sm_rp_oa == NULL || gsup_msg->sm_rp_oa_len == 0) {
			LOGP(DLGSUP, LOGL_ERROR, "Empty?!? SM-RP-OA ID "
				"(type=0x%02x)!\n", gsup_msg->sm_rp_oa_type);
			return -EINVAL;
		}
		break;

	/* Special case for noSM-RP-OA */
	case OSMO_GSUP_SMS_SM_RP_ODA_NULL:
		break;

	case OSMO_GSUP_SMS_SM_RP_ODA_NONE:
	default:
		LOGP(DLGSUP, LOGL_ERROR, "Unexpected SM-RP-OA ID "
			"(type=0x%02x)!\n", gsup_msg->sm_rp_oa_type);
		return -EINVAL;
	}

	/* SM-RP-OA tag | len | ... */
	msgb_tv_put(msg, OSMO_GSUP_SM_RP_OA_IE, gsup_msg->sm_rp_oa_len + 1);
	msgb_v_put(msg, gsup_msg->sm_rp_oa_type); /* ... | id_type */

	if (gsup_msg->sm_rp_oa_type == OSMO_GSUP_SMS_SM_RP_ODA_NULL)
		return 0;

	/* ... | id_enc */
	id_enc = msgb_put(msg, gsup_msg->sm_rp_oa_len);
	memcpy(id_enc, gsup_msg->sm_rp_oa, gsup_msg->sm_rp_oa_len);

	return 0;
}

/*! Decode SM-RP-OA IE (see 7.6.8.2), Originating Address.
 * \param[out] gsup_msg abstract GSUP message structure
 * \param[in]  data     pointer to the raw IE payload
 * \param[in]  data_len length of IE pointed by \ref data
 * \returns 0 in case of success, negative in case of error
 */
int osmo_gsup_sms_decode_sm_rp_oa(struct osmo_gsup_message *gsup_msg,
	uint8_t *data, size_t data_len)
{
	uint8_t *ptr = data;
	uint8_t id_type;

	/* There should be at least id_type */
	if (data_len < 1) {
		LOGP(DLGSUP, LOGL_ERROR, "Corrupted SM-RP-OA IE "
			"(missing identity type)\n");
		return -EINVAL;
	}

	/* ... | id_type | id_enc (optional) */
	id_type = *ptr++;
	data_len--;

	/* Parse ID type */
	switch (id_type) {
	case OSMO_GSUP_SMS_SM_RP_ODA_IMSI:
	case OSMO_GSUP_SMS_SM_RP_ODA_MSISDN:
	case OSMO_GSUP_SMS_SM_RP_ODA_SMSC_ADDR:
		if (!data_len) {
			/* ID shall not be empty (if its type != NULL) */
			LOGP(DLGSUP, LOGL_ERROR, "Corrupted SM-RP-OA IE "
				"(missing encoded identity)\n");
			return -EINVAL;
		}

		gsup_msg->sm_rp_oa_type = id_type;
		gsup_msg->sm_rp_oa_len = data_len;
		gsup_msg->sm_rp_oa = ptr;
		break;

	/* Special case for noSM-RP-DA */
	case OSMO_GSUP_SMS_SM_RP_ODA_NULL:
		if (data_len != 0) {
			LOGP(DLGSUP, LOGL_ERROR, "Unexpected SM-RP-OA ID, "
				"(id_len != 0) for noSM-RP-DA!\n");
			return -EINVAL;
		}

		gsup_msg->sm_rp_oa_type = id_type;
		gsup_msg->sm_rp_oa_len = 0;
		gsup_msg->sm_rp_oa = NULL;
		break;

	case OSMO_GSUP_SMS_SM_RP_ODA_NONE:
	default:
		LOGP(DLGSUP, LOGL_ERROR, "Unexpected SM-RP-OA ID "
			"(type=0x%02x)!\n", id_type);
		return -EINVAL;
	}

	return 0;
}

/*! @} */