blob: 37ef3f15115fcbb0e44b424448cf7e0734d61e4e [file] [log] [blame]
Harald Weltec8a0b932012-08-24 21:27:26 +02001/*
2 * (C) 2012 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#include <string.h>
22#include <stdio.h>
Holger Hans Peter Freythercd252e32013-07-03 09:56:53 +020023#include <stdlib.h>
Harald Weltec8a0b932012-08-24 21:27:26 +020024
25#include <osmocom/gsm/protocol/gsm_04_08.h>
26#include <osmocom/gsm/gsm48_ie.h>
Holger Hans Peter Freythercd252e32013-07-03 09:56:53 +020027#include <osmocom/gsm/gsm48.h>
Harald Weltec8a0b932012-08-24 21:27:26 +020028#include <osmocom/gsm/mncc.h>
Holger Hans Peter Freythercd252e32013-07-03 09:56:53 +020029#include <osmocom/core/backtrace.h>
Harald Weltec8a0b932012-08-24 21:27:26 +020030#include <osmocom/core/utils.h>
31#include <osmocom/core/msgb.h>
32
33
34static const uint8_t csd_9600_v110_lv[] = { 0x07, 0xa1, 0xb8, 0x89, 0x21, 0x15, 0x63, 0x80 };
35
36static const struct gsm_mncc_bearer_cap bcap_csd_9600_v110 = {
37 .transfer = GSM48_BCAP_ITCAP_UNR_DIG_INF,
38 .mode = GSM48_BCAP_TMOD_CIRCUIT,
39 .coding = GSM48_BCAP_CODING_GSM_STD,
40 .radio = GSM48_BCAP_RRQ_FR_ONLY,
41 .speech_ver[0]= -1,
42 .data = {
43 .rate_adaption = GSM48_BCAP_RA_V110_X30,
44 .sig_access = GSM48_BCAP_SA_I440_I450,
45 .async = 1,
46 .nr_stop_bits = 1,
47 .nr_data_bits = 8,
48 .user_rate = GSM48_BCAP_UR_9600,
49 .parity = GSM48_BCAP_PAR_NONE,
50 .interm_rate = GSM48_BCAP_IR_16k,
51 .transp = GSM48_BCAP_TR_TRANSP,
52 .modem_type = GSM48_BCAP_MT_NONE,
53 },
54};
55
56static const uint8_t speech_all_lv[] = { 0x06, 0x60, 0x04, 0x02, 0x00, 0x05, 0x81 };
57
58static const struct gsm_mncc_bearer_cap bcap_speech_all = {
59 .transfer = GSM48_BCAP_ITCAP_SPEECH,
60 .mode = GSM48_BCAP_TMOD_CIRCUIT,
61 .coding = GSM48_BCAP_CODING_GSM_STD,
62 .radio = GSM48_BCAP_RRQ_DUAL_FR,
63 .speech_ver = {
64 4, 2, 0, 5, 1, -1,
65 },
66};
67
68
69struct bcap_test {
70 const uint8_t *lv;
71 const struct gsm_mncc_bearer_cap *bc;
72 const char *name;
73};
74
75static const struct bcap_test bcap_tests[] = {
76 { csd_9600_v110_lv, &bcap_csd_9600_v110, "CSD 9600/V.110/transparent" },
77 { speech_all_lv, &bcap_speech_all, "Speech, all codecs" },
78};
79
80static int test_bearer_cap()
81{
82 struct gsm_mncc_bearer_cap bc;
83 int i, rc;
84
85 for (i = 0; i < ARRAY_SIZE(bcap_tests); i++) {
86 struct msgb *msg = msgb_alloc(100, "test");
87 int lv_len;
88
89 memset(&bc, 0, sizeof(bc));
90
91 /* test decoding */
92 rc = gsm48_decode_bearer_cap(&bc, bcap_tests[i].lv);
93 if (rc < 0) {
94 fprintf(stderr, "Error decoding %s\n",
95 bcap_tests[i].name);
96 return rc;
97 }
98 if (memcmp(&bc, bcap_tests[i].bc, sizeof(bc))) {
99 fprintf(stderr, "Incorrect decoded result of %s:\n",
100 bcap_tests[i].name);
101 fprintf(stderr, " should: %s\n",
102 osmo_hexdump((uint8_t *) bcap_tests[i].bc, sizeof(bc)));
103 fprintf(stderr, " is: %s\n",
104 osmo_hexdump((uint8_t *) &bc, sizeof(bc)));
105 return -1;
106 }
107
108 /* also test re-encode? */
109 rc = gsm48_encode_bearer_cap(msg, 1, &bc);
110 if (rc < 0) {
111 fprintf(stderr, "Error encoding %s\n",
112 bcap_tests[i].name);
113 return rc;
114 }
115 lv_len = bcap_tests[i].lv[0]+1;
116 if (memcmp(msg->data, bcap_tests[i].lv, lv_len)) {
117 fprintf(stderr, "Incorrect encoded result of %s:\n",
118 bcap_tests[i].name);
119 fprintf(stderr, " should: %s\n",
120 osmo_hexdump(bcap_tests[i].lv, lv_len));
121 fprintf(stderr, " is: %s\n",
122 osmo_hexdump(msg->data, msg->len));
123 return -1;
124 }
125
126 printf("Test `%s' passed\n", bcap_tests[i].name);
127 msgb_free(msg);
128 }
129
130 return 0;
131}
132
Max99377c22017-08-30 19:17:50 +0200133static inline void dump_ra(const struct gprs_ra_id *raid)
134{
Neels Hofmeyrdbb25132018-02-20 15:12:23 +0100135 printf("%s%s\n", osmo_rai_name(raid), raid->mnc_3_digits ? " (3-digit MNC)" : "");
Max99377c22017-08-30 19:17:50 +0200136}
137
138static inline void check_ra(const struct gprs_ra_id *raid)
139{
Maxf1ad60e2018-01-05 14:19:33 +0100140 struct gsm48_ra_id ra;
Max99377c22017-08-30 19:17:50 +0200141 struct gprs_ra_id raid0 = {
142 .mnc = 0,
143 .mcc = 0,
144 .lac = 0,
145 .rac = 0,
146 };
147
Maxf1ad60e2018-01-05 14:19:33 +0100148 gsm48_encode_ra(&ra, raid);
149 printf("Constructed RA:\n");
Max99377c22017-08-30 19:17:50 +0200150
Maxf1ad60e2018-01-05 14:19:33 +0100151 gsm48_parse_ra(&raid0, (const uint8_t *)&ra);
Max99377c22017-08-30 19:17:50 +0200152 dump_ra(raid);
Neels Hofmeyrc38b32d2018-02-20 15:13:18 +0100153 printf("MCC+MNC in BCD: %s\n", osmo_hexdump(ra.digits, sizeof(ra.digits)));
Max99377c22017-08-30 19:17:50 +0200154 dump_ra(&raid0);
155 printf("RA test...");
Neels Hofmeyrdbb25132018-02-20 15:12:23 +0100156 if (raid->mnc != raid0.mnc || raid->mcc != raid0.mcc || raid->lac != raid0.lac || raid->rac != raid0.rac
157 || (raid->mnc_3_digits || raid->mnc > 99) != raid0.mnc_3_digits)
Max99377c22017-08-30 19:17:50 +0200158 printf("FAIL\n");
159 else
160 printf("passed\n");
161}
162
Neels Hofmeyrd5a577b2018-02-20 21:48:07 +0100163static inline void check_lai(const struct gprs_ra_id *raid)
164{
165 int rc;
166 struct gsm48_loc_area_id lai = {};
167 struct gprs_ra_id decoded = {};
168 struct gprs_ra_id _laid = *raid;
169 struct gprs_ra_id *laid = &_laid;
170 laid->rac = 0;
171
172 printf("- gsm48_generate_lai() from "); dump_ra(laid);
173
174 gsm48_generate_lai(&lai, laid->mcc, laid->mnc, laid->lac);
175 printf(" Encoded %s\n", osmo_hexdump((unsigned char*)&lai, sizeof(lai)));
176 rc = gsm48_decode_lai(&lai, &decoded.mcc, &decoded.mnc, &decoded.lac);
177 if (rc) {
178 printf(" gsm48_decode_lai() returned %d --> FAIL\n", rc);
179 return;
180 }
181 printf(" gsm48_decode_lai() gives "); dump_ra(&decoded);
182 if (decoded.mcc == laid->mcc
183 && decoded.mnc == laid->mnc
184 && decoded.lac == laid->lac)
185 printf(" passed\n");
186 else
187 printf(" FAIL\n");
188}
189
Neels Hofmeyr4566f4e2018-02-20 22:19:56 +0100190static inline void dump_lai(const struct osmo_location_area_id *lai)
191{
192 printf("%s%s\n", osmo_lai_name(lai), lai->plmn.mnc_3_digits ? " (3-digit MNC)" : "");
193}
194
195static inline void check_lai2(const struct gprs_ra_id *raid)
196{
197 struct gsm48_loc_area_id lai = {};
198 struct osmo_location_area_id decoded = {};
199 struct osmo_location_area_id laid = {
200 .plmn = {
201 .mcc = raid->mcc,
202 .mnc = raid->mnc,
203 .mnc_3_digits = raid->mnc_3_digits,
204 },
205 .lac = raid->lac,
206 };
207
208 printf("- gsm48_generate_lai2() from "); dump_lai(&laid);
209
210 gsm48_generate_lai2(&lai, &laid);
211 printf(" Encoded %s\n", osmo_hexdump((unsigned char*)&lai, sizeof(lai)));
212 gsm48_decode_lai2(&lai, &decoded);
213 printf(" gsm48_decode_lai2() gives "); dump_lai(&decoded);
214 if (decoded.plmn.mcc == laid.plmn.mcc
215 && decoded.plmn.mnc == laid.plmn.mnc
216 && decoded.lac == laid.lac
217 && decoded.plmn.mnc_3_digits == (laid.plmn.mnc_3_digits || laid.plmn.mnc > 99))
218 printf(" passed\n");
219 else
220 printf(" FAIL\n");
221}
222
Neels Hofmeyr22da1452018-02-20 15:11:25 +0100223static struct gprs_ra_id test_ra_cap_items[] = {
224 {
Max99377c22017-08-30 19:17:50 +0200225 .mcc = 77,
Neels Hofmeyr0bf93a62018-02-20 22:06:56 +0100226 .mnc = 121,
Max99377c22017-08-30 19:17:50 +0200227 .lac = 666,
228 .rac = 5,
Neels Hofmeyr22da1452018-02-20 15:11:25 +0100229 },
230 {
Max99377c22017-08-30 19:17:50 +0200231 .mcc = 84,
Neels Hofmeyr0bf93a62018-02-20 22:06:56 +0100232 .mnc = 98,
Max99377c22017-08-30 19:17:50 +0200233 .lac = 11,
234 .rac = 89,
Neels Hofmeyr22da1452018-02-20 15:11:25 +0100235 },
Neels Hofmeyrb9fd7eb2018-02-20 15:14:03 +0100236 {
237 .mcc = 0,
238 .mnc = 0,
239 .lac = 0,
240 .rac = 0,
Neels Hofmeyr6c7b3e22018-02-20 22:20:42 +0100241 .mnc_3_digits = false,
242 /* expecting 000-00, BCD = 00 f0 00 */
243 },
244 {
245 .mcc = 0,
246 .mnc = 0,
247 .lac = 0,
248 .rac = 0,
249 .mnc_3_digits = true,
250 /* expecting 000-000, BCD = 00 00 00 */
Neels Hofmeyrb9fd7eb2018-02-20 15:14:03 +0100251 },
252 {
253 .mcc = 999,
254 .mnc = 999,
255 .lac = 65535,
256 .rac = 255,
257 },
Neels Hofmeyr6c7b3e22018-02-20 22:20:42 +0100258 {
259 .mcc = 1,
260 .mnc = 2,
261 .lac = 23,
262 .rac = 42,
263 .mnc_3_digits = false,
264 /* expecting 001-02, BCD = 00 f1 20 */
265 },
266 {
267 .mcc = 1,
268 .mnc = 2,
269 .lac = 23,
270 .rac = 42,
271 .mnc_3_digits = true,
272 /* expecting 001-002, BCD = 00 21 00 */
273 },
274 {
275 .mcc = 12,
276 .mnc = 34,
277 .lac = 56,
278 .rac = 78,
279 .mnc_3_digits = false,
280 /* expecting 012-34, BCD = 10 f2 43 */
281 },
282 {
283 .mcc = 12,
284 .mnc = 34,
285 .lac = 23,
286 .rac = 42,
287 .mnc_3_digits = true,
288 /* expecting 012-034, BCD = 10 42 30 */
289 },
290 {
291 .mcc = 123,
292 .mnc = 456,
293 .lac = 23,
294 .rac = 42,
295 .mnc_3_digits = false,
296 /* expecting 123-456, BCD = 21 63 54 (false flag has no effect) */
297 },
298 {
299 .mcc = 123,
300 .mnc = 456,
301 .lac = 23,
302 .rac = 42,
303 .mnc_3_digits = true,
304 /* expecting 123-456, BCD = 21 63 54 (same) */
305 },
Neels Hofmeyr22da1452018-02-20 15:11:25 +0100306};
Max99377c22017-08-30 19:17:50 +0200307
Neels Hofmeyr22da1452018-02-20 15:11:25 +0100308static void test_ra_cap(void)
309{
310 int i;
311
312 for (i = 0; i < ARRAY_SIZE(test_ra_cap_items); i++)
313 check_ra(&test_ra_cap_items[i]);
Max99377c22017-08-30 19:17:50 +0200314}
315
Neels Hofmeyrd5a577b2018-02-20 21:48:07 +0100316static void test_lai_encode_decode(void)
317{
318 int i;
319
320 for (i = 0; i < ARRAY_SIZE(test_ra_cap_items); i++) {
321 check_lai(&test_ra_cap_items[i]);
Neels Hofmeyr4566f4e2018-02-20 22:19:56 +0100322 check_lai2(&test_ra_cap_items[i]);
Neels Hofmeyrd5a577b2018-02-20 21:48:07 +0100323 }
324}
325
Holger Hans Peter Freythercd252e32013-07-03 09:56:53 +0200326static void test_mid_from_tmsi(void)
327{
328 static const uint8_t res[] = { 0x17, 0x05, 0xf4, 0xaa, 0xbb, 0xcc, 0xdd };
329
330
331 uint32_t tmsi = 0xAABBCCDD;
332 uint8_t buf[3 + sizeof(uint32_t)];
333
334 printf("Simple TMSI encoding test....");
335
336 memset(&buf, 0xFE, sizeof(buf));
337 gsm48_generate_mid_from_tmsi(buf, tmsi);
338
339 OSMO_ASSERT(memcmp(buf, res, sizeof(res)) == 0);
340 printf("passed\n");
341}
342
Maxd55d7d42018-02-15 11:27:18 +0100343static void test_mid_from_imsi(void)
344{
345 char *imsi = "901700000004620";
346 uint8_t buf[10], len;
347
348 printf("Simple IMSI encoding test....");
349
350 len = gsm48_generate_mid_from_imsi(buf, imsi);
351
352 printf("passed: [%u] %s\n", len, osmo_hexdump(buf, len));
353}
354
Neels Hofmeyr49686282018-12-05 21:32:21 +0100355struct test_mid_encode_decode_test {
356 uint8_t mi_type;
357 const char *mi_str;
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100358 const char *mi_name;
Neels Hofmeyr49686282018-12-05 21:32:21 +0100359 size_t str_size;
360 const char *expect_mi_tlv_hex;
361 const char *expect_str;
362 int expect_rc;
363};
364
365static const struct test_mid_encode_decode_test test_mid_encode_decode_tests[] = {
366 {
367 .mi_type = GSM_MI_TYPE_IMSI,
368 .mi_str = "123456789012345",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100369 .mi_name = "IMSI-123456789012345",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100370 .expect_mi_tlv_hex = "17081932547698103254",
371 },
372 {
373 .mi_type = GSM_MI_TYPE_IMSI,
374 .mi_str = "12345678901234",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100375 .mi_name = "IMSI-12345678901234",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100376 .expect_mi_tlv_hex = "170811325476981032f4",
377 },
378 {
379 .mi_type = GSM_MI_TYPE_IMSI,
380 .mi_str = "423423",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100381 .mi_name = "IMSI-423423",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100382 .expect_mi_tlv_hex = "1704413224f3",
383 },
384 {
385 .mi_type = GSM_MI_TYPE_IMSI | GSM_MI_ODD,
386 .mi_str = "423423",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100387 .mi_name = "IMSI-423423",
Neels Hofmeyr23187fa2018-12-05 23:24:50 +0100388 .expect_mi_tlv_hex = "1704413224f3",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100389 },
390 {
391 .mi_type = GSM_MI_TYPE_IMSI,
392 .mi_str = "4234235",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100393 .mi_name = "IMSI-4234235",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100394 .expect_mi_tlv_hex = "170449322453",
395 },
396 {
397 .mi_type = GSM_MI_TYPE_IMSI,
398 .mi_str = "4234235",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100399 .mi_name = "IMSI-4234235",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100400 .expect_mi_tlv_hex = "170449322453",
401 .str_size = 4,
402 .expect_str = "423",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100403 },
404 {
405 .mi_type = GSM_MI_TYPE_IMEI,
406 .mi_str = "123456789012345",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100407 .mi_name = "IMEI-123456789012345",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100408 .expect_mi_tlv_hex = "17081a32547698103254",
409 },
410 {
411 .mi_type = GSM_MI_TYPE_IMEI,
412 .mi_str = "98765432109876",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100413 .mi_name = "IMEI-98765432109876",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100414 .expect_mi_tlv_hex = "170892785634129078f6",
415 },
416 {
417 .mi_type = GSM_MI_TYPE_IMEI,
418 .mi_str = "987654321098765",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100419 .mi_name = "IMEI-987654321098765",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100420 .expect_mi_tlv_hex = "17089a78563412907856",
421 },
422 {
423 .mi_type = GSM_MI_TYPE_IMEISV,
424 .mi_str = "987654321098765432",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100425 .mi_name = "IMEI-SV-987654321098765432",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100426 .expect_mi_tlv_hex = "170a937856341290785634f2",
427 },
428 {
429 .mi_type = GSM_MI_TYPE_IMEISV,
430 .mi_str = "987654321098765432",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100431 .mi_name = "IMEI-SV-987654321098765432",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100432 .expect_mi_tlv_hex = "170a937856341290785634f2",
433 .str_size = 16,
434 .expect_str = "987654321098765",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100435 },
436 {
437 /* gsm48 treats TMSI as decimal string */
438 .mi_type = GSM_MI_TYPE_TMSI,
439 .mi_str = "305419896", /* 0x12345678 as decimal */
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100440 .mi_name = "TMSI-0x12345678",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100441 .expect_mi_tlv_hex = "1705f412345678",
442 .expect_rc = 9, /* exception: gsm48_mi_to_string() for TMSI returns strlen(), not bytes! */
443 },
444 {
445 .mi_type = GSM_MI_TYPE_TMSI,
446 .mi_str = "12648430", /* 0xc0ffee as decimal */
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100447 .mi_name = "TMSI-0x00C0FFEE",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100448 .expect_mi_tlv_hex = "1705f400c0ffee",
449 .expect_rc = 8, /* exception: gsm48_mi_to_string() for TMSI returns strlen(), not bytes! */
450 },
451 {
452 .mi_type = GSM_MI_TYPE_TMSI,
453 .mi_str = "0",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100454 .mi_name = "TMSI-0x00000000",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100455 .expect_mi_tlv_hex = "1705f400000000",
456 .expect_rc = 1, /* exception: gsm48_mi_to_string() for TMSI returns strlen(), not bytes! */
457 },
458 {
459 /* gsm48 treats TMSI as decimal string */
460 .mi_type = GSM_MI_TYPE_TMSI,
461 .mi_str = "305419896", /* 0x12345678 as decimal */
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100462 .mi_name = "TMSI-0x12345678",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100463 .expect_mi_tlv_hex = "1705f412345678",
464 .str_size = 5,
465 .expect_str = "3054",
466 .expect_rc = 9, /* exception: gsm48_mi_to_string() for TMSI returns would-be strlen() like snprintf()! */
467 },
468 {
469 .mi_type = GSM_MI_TYPE_NONE,
470 .mi_str = "123",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100471 .mi_name = "unknown",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100472 .expect_mi_tlv_hex = "17021832", /* encoding invalid MI type */
473 .expect_str = "",
474 },
475 {
476 .mi_type = GSM_MI_TYPE_NONE,
477 .mi_str = "1234",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100478 .mi_name = "unknown",
Neels Hofmeyr49686282018-12-05 21:32:21 +0100479 .expect_mi_tlv_hex = "17031032f4", /* encoding invalid MI type */
480 .expect_str = "",
481 },
482 {
483 .mi_type = GSM_MI_ODD,
484 .mi_str = "1234",
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100485 .mi_name = "unknown",
Neels Hofmeyr23187fa2018-12-05 23:24:50 +0100486 .expect_mi_tlv_hex = "17031032f4", /* encoding invalid MI type */
Neels Hofmeyr49686282018-12-05 21:32:21 +0100487 .expect_str = "",
488 },
489};
490
491static void test_mid_encode_decode(void)
492{
493 int i;
494
495 printf("\nTesting Mobile Identity conversions\n");
496
497 for (i = 0; i < ARRAY_SIZE(test_mid_encode_decode_tests); i++) {
498 const struct test_mid_encode_decode_test *t = &test_mid_encode_decode_tests[i];
499 uint8_t tlv_buf[64];
500 uint8_t *mi_buf;
501 int tlv_len;
502 int mi_len;
503 const char *tlv_hex;
504 char str[64] = {};
505 size_t str_size = t->str_size ? : sizeof(str);
506 const char *expect_str = t->expect_str ? : t->mi_str;
507 int expect_rc = t->expect_rc ? : strlen(expect_str)+1;
508 int rc;
509 int str_len;
510
511 printf("- %s %s\n", gsm48_mi_type_name(t->mi_type), t->mi_str);
512 if (t->mi_type == GSM_MI_TYPE_TMSI)
513 tlv_len = gsm48_generate_mid_from_tmsi(tlv_buf, (uint32_t)atoll(t->mi_str));
514 else
515 tlv_len = gsm48_generate_mid(tlv_buf, t->mi_str, t->mi_type);
516 tlv_hex = osmo_hexdump_nospc(tlv_buf, tlv_len);
517
518 printf(" -> MI-TLV-hex='%s'\n", tlv_hex);
519 if (t->expect_mi_tlv_hex && strcmp(tlv_hex, t->expect_mi_tlv_hex)) {
520 printf(" ERROR: expected '%s'\n", t->expect_mi_tlv_hex);
521 }
522
523 /* skip the GSM48_IE_MOBILE_ID tag and length */
524 mi_buf = tlv_buf + 2;
525 mi_len = tlv_len - 2;
526
527 rc = gsm48_mi_to_string(str, str_size, mi_buf, mi_len);
528 printf(" -> MI-str=%s rc=%d\n", osmo_quote_str(str, -1), rc);
529 if (strcmp(str, expect_str))
530 printf(" ERROR: expected MI-str=%s\n", osmo_quote_str(expect_str, -1));
531 if (rc != expect_rc)
532 printf(" ERROR: expected rc=%d\n", expect_rc);
533
Neels Hofmeyr02fd83d2019-01-05 00:38:54 +0100534 if (t->mi_name) {
535 const char *mi_name = osmo_mi_name(mi_buf, mi_len);
536 printf(" -> MI-name=%s\n", osmo_quote_str(mi_name, -1));
537 if (strcmp(mi_name, t->mi_name))
538 printf(" ERROR: expected MI-name=%s\n", osmo_quote_str(t->mi_name, -1));
539 }
540
Neels Hofmeyr49686282018-12-05 21:32:21 +0100541 /* Now make sure the resulting string is always '\0' terminated.
542 * The above started out with a zeroed buffer, now repeat with a tainted one. */
543 str_len = strlen(str);
544 str[str_len] = '!';
545 gsm48_mi_to_string(str, str_size, mi_buf, mi_len);
546 if (strlen(str) != str_len)
547 printf(" ERROR: resulting string is not explicitly nul terminated\n");
548 }
549}
550
551static const uint8_t test_mid_decode_zero_length_types[] = { GSM_MI_TYPE_IMSI, GSM_MI_TYPE_TMSI, GSM_MI_TYPE_NONE };
552
553static void test_mid_decode_zero_length(void)
554{
555 int odd;
556 uint8_t valid_mi[64];
557 int valid_mi_len;
558
559 printf("\nDecoding zero length Mobile Identities\n");
560
561 /* IMSI = 123456789012345 */
562 valid_mi_len = osmo_hexparse("1932547698103254", valid_mi, sizeof(valid_mi));
563
564 for (odd = 0; odd <= 1; odd++) {
565 int i;
566 for (i = 0; i < ARRAY_SIZE(test_mid_decode_zero_length_types); i++) {
567 uint8_t mi_type = test_mid_decode_zero_length_types[i] | (odd ? GSM_MI_ODD : 0);
568 char str[8] = {};
569 int rc;
570
571 printf("- MI type: %s%s\n", gsm48_mi_type_name(mi_type & GSM_MI_TYPE_MASK),
572 odd ? " | GSM_MI_ODD":"");
573 valid_mi[0] = (valid_mi[0] & 0xf0) | mi_type;
574
575 printf(" - writing to zero-length string:\n");
576 memset(str, '!', sizeof(str) - 1);
577 rc = gsm48_mi_to_string(str, 0, valid_mi, valid_mi_len);
578 printf(" rc=%d\n", rc);
579 if (str[0] == '!')
580 printf(" nothing written\n");
581 else
582 printf(" ERROR: Wrote to invalid memory!\n");
583
584 printf(" - writing to 1-byte-length string:\n");
585 memset(str, '!', sizeof(str) - 1);
586 rc = gsm48_mi_to_string(str, 1, valid_mi, valid_mi_len);
587 printf(" rc=%d\n", rc);
588 if (str[0] == '\0')
589 printf(" returned empty string\n");
590 else if (str[0] == '!')
591 printf(" ERROR: nothing written, expected nul-terminated empty string\n");
592 else
593 printf(" ERROR: Wrote unexpected string %s\n", osmo_quote_str(str, 5));
594 if (str[1] != '!')
595 printf(" ERROR: Wrote to invalid memory!\n");
596
597 printf(" - decode zero-length mi:\n");
598 memset(str, '!', sizeof(str) - 1);
599 rc = gsm48_mi_to_string(str, sizeof(str), valid_mi, 0);
600 printf(" rc=%d\n", rc);
601 if (str[0] == '\0')
602 printf(" returned empty string\n");
603 else if (str[0] == '!')
604 printf(" ERROR: nothing written, expected nul-terminated empty string\n");
605 else
606 printf(" ERROR: expected empty string, got output string: %s\n", osmo_quote_str(str, -1));
607 }
608 }
609 printf("\n");
610}
611
Harald Weltec8a0b932012-08-24 21:27:26 +0200612int main(int argc, char **argv)
613{
614 test_bearer_cap();
Holger Hans Peter Freythercd252e32013-07-03 09:56:53 +0200615 test_mid_from_tmsi();
Maxd55d7d42018-02-15 11:27:18 +0100616 test_mid_from_imsi();
Neels Hofmeyr49686282018-12-05 21:32:21 +0100617 test_mid_encode_decode();
618 test_mid_decode_zero_length();
Max99377c22017-08-30 19:17:50 +0200619 test_ra_cap();
Neels Hofmeyrd5a577b2018-02-20 21:48:07 +0100620 test_lai_encode_decode();
Holger Hans Peter Freythercd252e32013-07-03 09:56:53 +0200621
622 return EXIT_SUCCESS;
Harald Weltec8a0b932012-08-24 21:27:26 +0200623}