blob: 362f32d80ee4ee786b7045234d36a286181dd3ee [file] [log] [blame]
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001/* Osmocom MSC+VLR end-to-end tests */
2
3/* (C) 2017 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 *
5 * All Rights Reserved
6 *
7 * Author: Neels Hofmeyr <nhofmeyr@sysmocom.de>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 *
22 */
23
24#include <getopt.h>
25#include <stdlib.h>
26
27#include <osmocom/core/logging.h>
28#include <osmocom/core/utils.h>
29#include <osmocom/core/msgb.h>
30#include <osmocom/core/application.h>
31#include <osmocom/gsm/protocol/gsm_04_11.h>
32#include <osmocom/gsm/gsup.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020033#include <osmocom/msc/gsup_client.h>
34#include <osmocom/msc/gsm_04_11.h>
35#include <osmocom/msc/debug.h>
Max43b01b02017-09-15 11:22:30 +020036#include <osmocom/msc/gsm_04_08.h>
Neels Hofmeyra99b4272017-11-21 17:13:23 +010037#include <osmocom/msc/transaction.h>
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020038
39#if BUILD_IU
Neels Hofmeyr90843962017-09-04 15:04:35 +020040#include <osmocom/msc/iucs_ranap.h>
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020041#include <osmocom/ranap/iu_client.h>
42#else
Neels Hofmeyr90843962017-09-04 15:04:35 +020043#include <osmocom/msc/iu_dummy.h>
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020044#endif
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010045
46#include "msc_vlr_tests.h"
47
48bool _log_lines = false;
49
50struct gsm_network *net = NULL;
51
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010052const char *gsup_tx_expected = NULL;
53bool gsup_tx_confirmed;
54
55struct msgb *dtap_tx_expected = NULL;
56bool dtap_tx_confirmed;
57
58enum result_sent lu_result_sent;
59enum result_sent cm_service_result_sent;
60bool auth_request_sent;
61const char *auth_request_expect_rand;
62const char *auth_request_expect_autn;
63bool cipher_mode_cmd_sent;
64bool cipher_mode_cmd_sent_with_imeisv;
65
Philipp Maierfbf66102017-04-09 12:32:51 +020066bool iu_release_expected = false;
67bool iu_release_sent = false;
68bool bssap_clear_expected = false;
69bool bssap_clear_sent = false;
70
Neels Hofmeyra99b4272017-11-21 17:13:23 +010071uint32_t cc_to_mncc_tx_expected_msg_type = 0;
72const char *cc_to_mncc_tx_expected_imsi = NULL;
73bool cc_to_mncc_tx_confirmed = false;
74uint32_t cc_to_mncc_tx_got_callref = 0;
75
Harald Weltec2007852018-02-03 21:08:26 +010076extern int gsm0407_pdisc_ctr_bin(uint8_t pdisc);
77
78/* static state variables for the L3 send sequence numbers */
79static uint8_t n_sd[4];
80
81/* patch a correct send sequence number into the given message */
82static void patch_l3_seq_nr(struct msgb *msg)
83{
84 struct gsm48_hdr *gh = msgb_l3(msg);
85 uint8_t pdisc = gsm48_hdr_pdisc(gh);
86 uint8_t *msg_type_oct = &msg->l3h[1];
87 int bin = gsm0407_pdisc_ctr_bin(pdisc);
88
89 if (bin >= 0 && bin < ARRAY_SIZE(n_sd)) {
90 /* patch in n_sd into the msg_type octet */
91 *msg_type_oct = (*msg_type_oct & 0x3f) | ((n_sd[bin] & 0x3) << 6);
92 //fprintf(stderr, "pdisc=0x%02x bin=%d, patched n_sd=%u\n\n", pdisc, bin, n_sd[bin] & 3);
93 /* increment N(SD) */
94 n_sd[bin] = (n_sd[bin] + 1) % 4;
95 } else {
96 //fprintf(stderr, "pdisc=0x%02x NO SEQ\n\n", pdisc);
97 }
98}
99
100/* reset L3 sequence numbers (e.g. new RR connection) */
101static void reset_l3_seq_nr()
102{
103 memset(n_sd, 0, sizeof(n_sd));
104}
105
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100106struct msgb *msgb_from_hex(const char *label, uint16_t size, const char *hex)
107{
108 struct msgb *msg = msgb_alloc(size, label);
109 unsigned char *rc;
110 msg->l2h = msg->head;
111 rc = msgb_put(msg, osmo_hexparse(hex, msg->head, msgb_tailroom(msg)));
112 OSMO_ASSERT(rc == msg->l2h);
113 return msg;
114}
115
Maxd8d1a9e2018-02-06 15:50:20 +0100116static const char *gh_type_name(struct gsm48_hdr *gh)
Neels Hofmeyr78ada642017-03-10 02:15:20 +0100117{
118 return gsm48_pdisc_msgtype_name(gsm48_hdr_pdisc(gh),
119 gsm48_hdr_msg_type(gh));
120}
121
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100122void dtap_expect_tx(const char *hex)
123{
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200124 /* Has the previously expected dtap been received? */
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100125 OSMO_ASSERT(!dtap_tx_expected);
126 if (!hex)
127 return;
128 dtap_tx_expected = msgb_from_hex("dtap_tx_expected", 1024, hex);
Harald Weltec2007852018-02-03 21:08:26 +0100129 /* Mask the sequence number out */
130 if (msgb_length(dtap_tx_expected) >= 2)
131 dtap_tx_expected->data[1] &= 0x3f;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100132 dtap_tx_confirmed = false;
133}
134
135void dtap_expect_tx_ussd(char *ussd_text)
136{
137 uint8_t ussd_enc[128];
138 int len;
139 /* header */
140 char ussd_msg_hex[128] = "8b2a1c27a225020100302002013b301b04010f0416";
141
142 log("expecting USSD:\n %s", ussd_text);
143 /* append encoded USSD text */
144 gsm_7bit_encode_n_ussd(ussd_enc, sizeof(ussd_enc), ussd_text,
145 &len);
146 strncat(ussd_msg_hex, osmo_hexdump_nospc(ussd_enc, len),
147 sizeof(ussd_msg_hex) - strlen(ussd_msg_hex));
148 dtap_expect_tx(ussd_msg_hex);
149}
150
151int vlr_gsupc_read_cb(struct gsup_client *gsupc, struct msgb *msg);
152
153void gsup_rx(const char *rx_hex, const char *expect_tx_hex)
154{
155 int rc;
156 struct msgb *msg;
157 const char *label;
158
159 gsup_expect_tx(expect_tx_hex);
160
161 msg = msgb_from_hex("gsup", 1024, rx_hex);
162 label = osmo_gsup_message_type_name(msg->l2h[0]);
163 fprintf(stderr, "<-- GSUP rx %s: %s\n", label,
164 osmo_hexdump_nospc(msgb_l2(msg), msgb_l2len(msg)));
Neels Hofmeyr834f94a2017-09-28 03:07:16 +0200165 /* GSUP read cb takes ownership of msgb */
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100166 rc = vlr_gsupc_read_cb(net->vlr->gsup_client, msg);
167 fprintf(stderr, "<-- GSUP rx %s: vlr_gsupc_read_cb() returns %d\n",
168 label, rc);
169 if (expect_tx_hex)
170 OSMO_ASSERT(gsup_tx_confirmed);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100171}
172
173bool conn_exists(struct gsm_subscriber_connection *conn)
174{
175 struct gsm_subscriber_connection *c;
176 llist_for_each_entry(c, &net->subscr_conns, entry) {
177 if (c == conn)
178 return true;
179 }
180 return false;
181}
182
183enum ran_type rx_from_ran = RAN_GERAN_A;
184
185struct gsm_subscriber_connection *conn_new(void)
186{
187 struct gsm_subscriber_connection *conn;
188 conn = msc_subscr_con_allocate(net);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100189 conn->via_ran = rx_from_ran;
Neels Hofmeyr8a656eb2017-11-22 02:55:52 +0100190 conn->lac = 23;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200191 if (conn->via_ran == RAN_UTRAN_IU) {
Neels Hofmeyr00e82d62017-07-05 15:19:52 +0200192 struct ranap_ue_conn_ctx *ue_ctx = talloc_zero(conn, struct ranap_ue_conn_ctx);
193 *ue_ctx = (struct ranap_ue_conn_ctx){
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200194 .conn_id = 42,
195 };
196 conn->iu.ue_ctx = ue_ctx;
197 }
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100198 return conn;
199}
200
201struct gsm_subscriber_connection *g_conn = NULL;
202
203void rx_from_ms(struct msgb *msg)
204{
205 int rc;
206
207 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyr78ada642017-03-10 02:15:20 +0100208
209 log("MSC <--%s-- MS: %s",
210 ran_type_name(rx_from_ran),
211 gh_type_name(gh));
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100212
213 if (g_conn && !conn_exists(g_conn))
214 g_conn = NULL;
215
216 if (!g_conn) {
217 log("new conn");
218 g_conn = conn_new();
Harald Weltec2007852018-02-03 21:08:26 +0100219 reset_l3_seq_nr();
220 patch_l3_seq_nr(msg);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200221 rc = msc_compl_l3(g_conn, msg, 23);
Harald Welted5db1702018-02-13 23:59:59 +0100222 if (rc != MSC_CONN_ACCEPT) {
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100223 msc_subscr_con_free(g_conn);
224 g_conn = NULL;
225 }
226 } else {
Harald Weltec2007852018-02-03 21:08:26 +0100227 patch_l3_seq_nr(msg);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100228 if ((gsm48_hdr_pdisc(gh) == GSM48_PDISC_RR)
229 && (gsm48_hdr_msg_type(gh) == GSM48_MT_RR_CIPH_M_COMPL))
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200230 msc_cipher_mode_compl(g_conn, msg, 0);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100231 else
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200232 msc_dtap(g_conn, 23, msg);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100233 }
234
235 if (g_conn && !conn_exists(g_conn))
236 g_conn = NULL;
237}
238
239void ms_sends_msg(const char *hex)
240{
241 struct msgb *msg;
242
243 msg = msgb_from_hex("ms_sends_msg", 1024, hex);
244 msg->l1h = msg->l2h = msg->l3h = msg->data;
245 rx_from_ms(msg);
246 talloc_free(msg);
247}
248
Maxd8d1a9e2018-02-06 15:50:20 +0100249static int ms_sends_msg_fake(uint8_t pdisc, uint8_t msg_type)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100250{
251 int rc;
252 struct msgb *msg;
253 struct gsm48_hdr *gh;
254
255 msg = msgb_alloc(1024, "ms_sends_msg_fake");
256 msg->l1h = msg->l2h = msg->l3h = msg->data;
257
258 gh = (struct gsm48_hdr*)msgb_put(msg, sizeof(*gh));
259 gh->proto_discr = pdisc;
260 gh->msg_type = msg_type;
261 /* some amount of data, whatever */
262 msgb_put(msg, 123);
263
Harald Weltec2007852018-02-03 21:08:26 +0100264 patch_l3_seq_nr(msg);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100265 rc = gsm0408_dispatch(g_conn, msg);
266
267 talloc_free(msg);
268 return rc;
269}
270
Max68171902018-02-06 17:55:19 +0100271static inline void ms_msg_log_err(uint8_t val, uint8_t msgtype)
272{
273 int rc = ms_sends_msg_fake(val, msgtype);
274 if (rc != -EACCES)
275 log("Unexpected return value %u != %u for %s/%s",
276 -rc, -EACCES, gsm48_pdisc_name(val), gsm48_cc_msg_name(msgtype));
277}
278
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100279void thwart_rx_non_initial_requests()
280{
281 log("requests shall be thwarted");
Max68171902018-02-06 17:55:19 +0100282
283 ms_msg_log_err(GSM48_PDISC_CC, GSM48_MT_CC_SETUP);
284 ms_msg_log_err(GSM48_PDISC_MM, 0x33); /* nonexistent */
285 ms_msg_log_err(GSM48_PDISC_RR, GSM48_MT_RR_SYSINFO_1);
286 ms_msg_log_err(GSM48_PDISC_SMS, GSM411_MT_CP_DATA);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100287}
288
289void send_sms(struct vlr_subscr *receiver,
290 struct vlr_subscr *sender,
291 char *str)
292{
293 struct gsm_sms *sms = sms_from_text(receiver, sender, 0, str);
294 gsm411_send_sms_subscr(receiver, sms);
295}
296
297unsigned char next_rand_byte = 0;
Max753c15d2017-12-21 14:50:44 +0100298/* override, requires '-Wl,--wrap=osmo_get_rand_id' */
299int __real_osmo_get_rand_id(uint8_t *buf, size_t num);
300int __wrap_osmo_get_rand_id(uint8_t *buf, size_t num)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100301{
Max753c15d2017-12-21 14:50:44 +0100302 size_t i;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100303 for (i = 0; i < num; i++)
304 buf[i] = next_rand_byte++;
305 return 1;
306}
307
308/* override, requires '-Wl,--wrap=gsm340_gen_scts' */
309void __real_gsm340_gen_scts(uint8_t *scts, time_t time);
310void __wrap_gsm340_gen_scts(uint8_t *scts, time_t time)
311{
Neels Hofmeyr05230ea2017-08-22 18:06:42 +0200312 /* Write fixed time bytes for deterministic test results */
313 osmo_hexparse("07101000000000", scts, 7);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100314}
315
316const char *paging_expecting_imsi = NULL;
317uint32_t paging_expecting_tmsi;
318bool paging_sent;
319bool paging_stopped;
320
321void paging_expect_imsi(const char *imsi)
322{
323 paging_expecting_imsi = imsi;
324 paging_expecting_tmsi = GSM_RESERVED_TMSI;
325}
326
327void paging_expect_tmsi(uint32_t tmsi)
328{
329 paging_expecting_tmsi = tmsi;
330 paging_expecting_imsi = NULL;
331}
332
Maxd8d1a9e2018-02-06 15:50:20 +0100333static int _paging_sent(enum ran_type via_ran, const char *imsi, uint32_t tmsi, uint32_t lac)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100334{
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200335 log("%s sends out paging request to IMSI %s, TMSI 0x%08x, LAC %u",
336 ran_type_name(via_ran), imsi, tmsi, lac);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100337 OSMO_ASSERT(paging_expecting_imsi || (paging_expecting_tmsi != GSM_RESERVED_TMSI));
338 if (paging_expecting_imsi)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200339 VERBOSE_ASSERT(strcmp(paging_expecting_imsi, imsi), == 0, "%d");
340 if (paging_expecting_tmsi != GSM_RESERVED_TMSI) {
341 VERBOSE_ASSERT(paging_expecting_tmsi, == tmsi, "0x%08x");
342 }
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100343 paging_sent = true;
344 paging_stopped = false;
345 return 1;
346}
347
Neels Hofmeyr00e82d62017-07-05 15:19:52 +0200348/* override, requires '-Wl,--wrap=ranap_iu_page_cs' */
349int __real_ranap_iu_page_cs(const char *imsi, const uint32_t *tmsi, uint16_t lac);
350int __wrap_ranap_iu_page_cs(const char *imsi, const uint32_t *tmsi, uint16_t lac)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200351{
352 return _paging_sent(RAN_UTRAN_IU, imsi, tmsi ? *tmsi : GSM_RESERVED_TMSI, lac);
353}
354
Philipp Maierfbf66102017-04-09 12:32:51 +0200355/* override, requires '-Wl,--wrap=a_iface_tx_paging' */
356int __real_a_iface_tx_paging(const char *imsi, uint32_t tmsi, uint16_t lac);
357int __wrap_a_iface_tx_paging(const char *imsi, uint32_t tmsi, uint16_t lac)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200358{
359 return _paging_sent(RAN_GERAN_A, imsi, tmsi, lac);
360}
361
362/* override, requires '-Wl,--wrap=msc_stop_paging' */
363void __real_msc_stop_paging(struct vlr_subscr *vsub);
364void __wrap_msc_stop_paging(struct vlr_subscr *vsub)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100365{
366 paging_stopped = true;
367}
368
369void clear_vlr()
370{
371 struct vlr_subscr *vsub, *n;
372 llist_for_each_entry_safe(vsub, n, &net->vlr->subscribers, list) {
373 vlr_subscr_free(vsub);
374 }
375
376 net->authentication_required = false;
Harald Welte7b222aa2017-12-23 19:30:32 +0100377 net->a5_encryption_mask = (1 << 0);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100378 net->vlr->cfg.check_imei_rqd = false;
379 net->vlr->cfg.assign_tmsi = false;
Neels Hofmeyr54a706c2017-07-18 15:39:27 +0200380 net->vlr->cfg.retrieve_imeisv_early = false;
381 net->vlr->cfg.retrieve_imeisv_ciphered = false;
Neels Hofmeyr7b1418e2017-10-29 02:12:16 +0100382 net->vlr->cfg.auth_tuple_max_reuse_count = 0;
383 net->vlr->cfg.auth_reuse_old_sets_on_error = false;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100384
385 rx_from_ran = RAN_GERAN_A;
386 auth_request_sent = false;
387 auth_request_expect_rand = NULL;
388 auth_request_expect_autn = NULL;
389
390 next_rand_byte = 0;
391
Philipp Maierfbf66102017-04-09 12:32:51 +0200392 iu_release_expected = false;
393 iu_release_sent = false;
394 bssap_clear_expected = false;
395 bssap_clear_sent = false;
396
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100397 osmo_gettimeofday_override = false;
398}
399
400static struct log_info_cat test_categories[] = {
401 [DMSC] = {
402 .name = "DMSC",
403 .description = "Mobile Switching Center",
404 .enabled = 1, .loglevel = LOGL_DEBUG,
405 },
406 [DRLL] = {
407 .name = "DRLL",
408 .description = "A-bis Radio Link Layer (RLL)",
409 .enabled = 1, .loglevel = LOGL_DEBUG,
410 },
411 [DMM] = {
412 .name = "DMM",
413 .description = "Layer3 Mobility Management (MM)",
414 .enabled = 1, .loglevel = LOGL_DEBUG,
415 },
416 [DRR] = {
417 .name = "DRR",
418 .description = "Layer3 Radio Resource (RR)",
419 .enabled = 1, .loglevel = LOGL_DEBUG,
420 },
421 [DCC] = {
422 .name = "DCC",
423 .description = "Layer3 Call Control (CC)",
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100424 .enabled = 1, .loglevel = LOGL_INFO,
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100425 },
426 [DMM] = {
427 .name = "DMM",
428 .description = "Layer3 Mobility Management (MM)",
429 .enabled = 1, .loglevel = LOGL_DEBUG,
430 },
431 [DVLR] = {
432 .name = "DVLR",
433 .description = "Visitor Location Register",
434 .enabled = 1, .loglevel = LOGL_DEBUG,
435 },
436 [DREF] = {
437 .name = "DREF",
438 .description = "Reference Counting",
439 .enabled = 1, .loglevel = LOGL_DEBUG,
440 },
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200441 [DPAG] = {
442 .name = "DPAG",
443 .description = "Paging Subsystem",
444 .enabled = 1, .loglevel = LOGL_DEBUG,
445 },
446 [DIUCS] = {
447 .name = "DIUCS",
448 .description = "Iu-CS Protocol",
449 .enabled = 1, .loglevel = LOGL_DEBUG,
450 },
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100451 [DMNCC] = {
452 .name = "DMNCC",
453 .description = "MNCC API for Call Control application",
454 .enabled = 1, .loglevel = LOGL_DEBUG,
455 },
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100456};
457
458static struct log_info info = {
459 .cat = test_categories,
460 .num_cat = ARRAY_SIZE(test_categories),
461};
462
463extern void *tall_bsc_ctx;
464
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100465int mncc_recv(struct gsm_network *net, struct msgb *msg)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100466{
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100467 struct gsm_mncc *mncc = (void*)msg->data;
468 log("MSC --> MNCC: callref 0x%x: %s", mncc->callref,
469 get_mncc_name(mncc->msg_type));
470
471 OSMO_ASSERT(cc_to_mncc_tx_expected_msg_type);
472 if (cc_to_mncc_tx_expected_msg_type != mncc->msg_type) {
473 log("Mismatch! Expected MNCC msg type: %s",
474 get_mncc_name(cc_to_mncc_tx_expected_msg_type));
475 abort();
476 }
477
478 if (strcmp(cc_to_mncc_tx_expected_imsi, mncc->imsi)) {
479 log("Mismatch! Expected MNCC msg IMSI: '%s', got '%s'",
480 cc_to_mncc_tx_expected_imsi,
481 mncc->imsi);
482 abort();
483 }
484
485 cc_to_mncc_tx_confirmed = true;
486 cc_to_mncc_tx_got_callref = mncc->callref;
487 cc_to_mncc_tx_expected_imsi = NULL;
488 cc_to_mncc_tx_expected_msg_type = 0;
489 talloc_free(msg);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100490 return 0;
491}
492
493/* override, requires '-Wl,--wrap=gsup_client_create' */
494struct gsup_client *
495__real_gsup_client_create(const char *ip_addr, unsigned int tcp_port,
496 gsup_client_read_cb_t read_cb,
497 struct oap_client_config *oap_config);
498struct gsup_client *
499__wrap_gsup_client_create(const char *ip_addr, unsigned int tcp_port,
500 gsup_client_read_cb_t read_cb,
501 struct oap_client_config *oap_config)
502{
503 struct gsup_client *gsupc;
504 gsupc = talloc_zero(tall_bsc_ctx, struct gsup_client);
505 OSMO_ASSERT(gsupc);
506 return gsupc;
507}
508
509/* override, requires '-Wl,--wrap=gsup_client_send' */
510int __real_gsup_client_send(struct gsup_client *gsupc, struct msgb *msg);
511int __wrap_gsup_client_send(struct gsup_client *gsupc, struct msgb *msg)
512{
513 const char *is = osmo_hexdump_nospc(msg->data, msg->len);
514 fprintf(stderr, "GSUP --> HLR: %s: %s\n",
515 osmo_gsup_message_type_name(msg->data[0]), is);
516
517 OSMO_ASSERT(gsup_tx_expected);
518 if (strcmp(gsup_tx_expected, is)) {
519 fprintf(stderr, "Mismatch! Expected:\n%s\n", gsup_tx_expected);
520 abort();
521 }
522
523 talloc_free(msg);
524 gsup_tx_confirmed = true;
525 gsup_tx_expected = NULL;
526 return 0;
527}
528
Maxd8d1a9e2018-02-06 15:50:20 +0100529static int _validate_dtap(struct msgb *msg, enum ran_type to_ran)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100530{
Neels Hofmeyr78ada642017-03-10 02:15:20 +0100531 btw("DTAP --%s--> MS: %s: %s",
Maxd8d1a9e2018-02-06 15:50:20 +0100532 ran_type_name(to_ran), gh_type_name((void*)msg->data),
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200533 osmo_hexdump_nospc(msg->data, msg->len));
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100534
535 OSMO_ASSERT(dtap_tx_expected);
Harald Weltec2007852018-02-03 21:08:26 +0100536
537 /* Mask the sequence number out before comparing */
538 msg->data[1] &= 0x3f;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100539 if (msg->len != dtap_tx_expected->len
540 || memcmp(msg->data, dtap_tx_expected->data, msg->len)) {
541 fprintf(stderr, "Mismatch! Expected:\n%s\n",
542 osmo_hexdump_nospc(dtap_tx_expected->data,
543 dtap_tx_expected->len));
544 abort();
545 }
546
547 btw("DTAP matches expected message");
548
549 talloc_free(msg);
550 dtap_tx_confirmed = true;
551 talloc_free(dtap_tx_expected);
552 dtap_tx_expected = NULL;
553 return 0;
554}
555
Neels Hofmeyr00e82d62017-07-05 15:19:52 +0200556/* override, requires '-Wl,--wrap=ranap_iu_tx' */
557int __real_ranap_iu_tx(struct msgb *msg, uint8_t sapi);
558int __wrap_ranap_iu_tx(struct msgb *msg, uint8_t sapi)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200559{
560 return _validate_dtap(msg, RAN_UTRAN_IU);
561}
562
Neels Hofmeyr00e82d62017-07-05 15:19:52 +0200563/* override, requires '-Wl,--wrap=ranap_iu_tx_release' */
564int __real_ranap_iu_tx_release(struct ranap_ue_conn_ctx *ctx, const struct RANAP_Cause *cause);
565int __wrap_ranap_iu_tx_release(struct ranap_ue_conn_ctx *ctx, const struct RANAP_Cause *cause)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200566{
567 btw("Iu Release --%s--> MS", ran_type_name(RAN_UTRAN_IU));
Philipp Maierfbf66102017-04-09 12:32:51 +0200568 OSMO_ASSERT(iu_release_expected);
569 iu_release_expected = false;
570 iu_release_sent = true;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200571 return 0;
572}
573
574/* override, requires '-Wl,--wrap=iu_tx_common_id' */
Neels Hofmeyr00e82d62017-07-05 15:19:52 +0200575int __real_ranap_iu_tx_common_id(struct ranap_ue_conn_ctx *ue_ctx, const char *imsi);
576int __wrap_ranap_iu_tx_common_id(struct ranap_ue_conn_ctx *ue_ctx, const char *imsi)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200577{
578 btw("Iu Common ID --%s--> MS (IMSI=%s)", ran_type_name(RAN_UTRAN_IU), imsi);
579 return 0;
580}
581
Philipp Maierfbf66102017-04-09 12:32:51 +0200582/* override, requires '-Wl,--wrap=a_iface_tx_dtap' */
583int __real_a_iface_tx_dtap(struct msgb *msg);
584int __wrap_a_iface_tx_dtap(struct msgb *msg)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200585{
586 return _validate_dtap(msg, RAN_GERAN_A);
587}
588
Philipp Maierfbf66102017-04-09 12:32:51 +0200589/* override, requires '-Wl,--wrap=a_iface_tx_clear_cmd' */
590int __real_a_iface_tx_clear_cmd(struct gsm_subscriber_connection *conn);
591int __wrap_a_iface_tx_clear_cmd(struct gsm_subscriber_connection *conn)
592{
593 btw("BSSAP Clear --%s--> MS", ran_type_name(RAN_GERAN_A));
594 OSMO_ASSERT(bssap_clear_expected);
595 bssap_clear_expected = false;
596 bssap_clear_sent = true;
597 return 0;
598}
599
Philipp Maier621ba032017-11-07 17:19:25 +0100600/* override, requires '-Wl,--wrap=msc_mgcp_call_assignment' */
601int __real_msc_mgcp_call_assignment(struct gsm_trans *trans);
602int __wrap_msc_mgcp_call_assignment(struct gsm_trans *trans)
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100603{
604 log("MS <--Call Assignment-- MSC: subscr=%s callref=0x%x",
605 vlr_subscr_name(trans->vsub), trans->callref);
606 return 0;
607}
608
Philipp Maier621ba032017-11-07 17:19:25 +0100609/* override, requires '-Wl,--wrap=msc_mgcp_call_release' */
610void __real_msc_mgcp_call_release(struct gsm_trans *trans);
611void __wrap_msc_mgcp_call_release(struct gsm_trans *trans)
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100612{
613 log("MS <--Call Release-- MSC: subscr=%s callref=0x%x",
614 vlr_subscr_name(trans->vsub), trans->callref);
615}
616
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100617static int fake_vlr_tx_lu_acc(void *msc_conn_ref, uint32_t send_tmsi)
618{
619 struct gsm_subscriber_connection *conn = msc_conn_ref;
620 if (send_tmsi == GSM_RESERVED_TMSI)
621 btw("sending LU Accept for %s", vlr_subscr_name(conn->vsub));
622 else
623 btw("sending LU Accept for %s, with TMSI 0x%08x",
624 vlr_subscr_name(conn->vsub), send_tmsi);
625 lu_result_sent |= RES_ACCEPT;
626 return 0;
627}
628
629static int fake_vlr_tx_lu_rej(void *msc_conn_ref, uint8_t cause)
630{
631 struct gsm_subscriber_connection *conn = msc_conn_ref;
632 btw("sending LU Reject for %s, cause %u", vlr_subscr_name(conn->vsub), cause);
633 lu_result_sent |= RES_REJECT;
634 return 0;
635}
636
637static int fake_vlr_tx_cm_serv_acc(void *msc_conn_ref)
638{
639 struct gsm_subscriber_connection *conn = msc_conn_ref;
640 btw("sending CM Service Accept for %s", vlr_subscr_name(conn->vsub));
641 cm_service_result_sent |= RES_ACCEPT;
642 return 0;
643}
644
645static int fake_vlr_tx_cm_serv_rej(void *msc_conn_ref,
646 enum vlr_proc_arq_result result)
647{
648 struct gsm_subscriber_connection *conn = msc_conn_ref;
649 btw("sending CM Service Reject for %s, result %s",
650 vlr_subscr_name(conn->vsub),
651 vlr_proc_arq_result_name(result));
652 cm_service_result_sent |= RES_REJECT;
653 return 0;
654}
655
656static int fake_vlr_tx_auth_req(void *msc_conn_ref, struct gsm_auth_tuple *at,
657 bool send_autn)
658{
659 struct gsm_subscriber_connection *conn = msc_conn_ref;
660 char *hex;
661 bool ok = true;
662 btw("sending %s Auth Request for %s: tuple use_count=%d key_seq=%d auth_types=0x%x and...",
663 send_autn? "UMTS" : "GSM", vlr_subscr_name(conn->vsub),
664 at->use_count, at->key_seq, at->vec.auth_types);
665
666 hex = osmo_hexdump_nospc((void*)&at->vec.rand, sizeof(at->vec.rand));
667 btw("...rand=%s", hex);
668 if (!auth_request_expect_rand
669 || strcmp(hex, auth_request_expect_rand) != 0) {
670 ok = false;
671 log("FAILURE: expected rand=%s",
672 auth_request_expect_rand ? auth_request_expect_rand : "-");
673 }
674
675 if (send_autn) {
676 hex = osmo_hexdump_nospc((void*)&at->vec.autn, sizeof(at->vec.autn));
677 btw("...autn=%s", hex);
678 if (!auth_request_expect_autn
679 || strcmp(hex, auth_request_expect_autn) != 0) {
680 ok = false;
681 log("FAILURE: expected autn=%s",
682 auth_request_expect_autn ? auth_request_expect_autn : "-");
683 }
684 } else if (auth_request_expect_autn) {
685 ok = false;
686 log("FAILURE: no AUTN sent, expected AUTN = %s",
687 auth_request_expect_autn);
688 }
689
690 if (send_autn)
691 btw("...expecting res=%s",
692 osmo_hexdump_nospc((void*)&at->vec.res, at->vec.res_len));
693 else
694 btw("...expecting sres=%s",
695 osmo_hexdump_nospc((void*)&at->vec.sres, sizeof(at->vec.sres)));
696
697 auth_request_sent = ok;
698 return 0;
699}
700
701static int fake_vlr_tx_auth_rej(void *msc_conn_ref)
702{
703 struct gsm_subscriber_connection *conn = msc_conn_ref;
704 btw("sending Auth Reject for %s", vlr_subscr_name(conn->vsub));
705 return 0;
706}
707
Harald Welte71c51df2017-12-23 18:51:48 +0100708static int fake_vlr_tx_ciph_mode_cmd(void *msc_conn_ref, bool umts_aka, bool retrieve_imeisv)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100709{
710 /* FIXME: we actually would like to see the message bytes checked here,
711 * not possible while msc_vlr_set_ciph_mode() calls
712 * gsm0808_cipher_mode() directly. When the MSCSPLIT is ready, check
713 * the tx bytes in the sense of dtap_expect_tx() above. */
714 struct gsm_subscriber_connection *conn = msc_conn_ref;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200715 switch (conn->via_ran) {
716 case RAN_GERAN_A:
Harald Welte7b222aa2017-12-23 19:30:32 +0100717 btw("sending Ciphering Mode Command for %s: ciphers=0x%02x kc=%s"
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200718 " retrieve_imeisv=%d",
719 vlr_subscr_name(conn->vsub),
Harald Welte7b222aa2017-12-23 19:30:32 +0100720 conn->network->a5_encryption_mask,
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200721 osmo_hexdump_nospc(conn->vsub->last_tuple->vec.kc, 8),
722 retrieve_imeisv);
723 break;
724 case RAN_UTRAN_IU:
725 btw("sending SecurityModeControl for %s",
726 vlr_subscr_name(conn->vsub));
727 break;
728 default:
729 btw("UNKNOWN RAN TYPE %d", conn->via_ran);
730 OSMO_ASSERT(false);
731 return -1;
732 }
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100733 cipher_mode_cmd_sent = true;
734 cipher_mode_cmd_sent_with_imeisv = retrieve_imeisv;
735 return 0;
736}
737
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200738void ms_sends_security_mode_complete()
739{
740 OSMO_ASSERT(g_conn);
741 OSMO_ASSERT(g_conn->via_ran == RAN_UTRAN_IU);
742 OSMO_ASSERT(g_conn->iu.ue_ctx);
743 msc_rx_sec_mode_compl(g_conn);
744}
745
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100746const struct timeval fake_time_start_time = { 123, 456 };
747
748void fake_time_start()
749{
750 osmo_gettimeofday_override_time = fake_time_start_time;
751 osmo_gettimeofday_override = true;
752 fake_time_passes(0, 0);
753}
754
Maxd8d1a9e2018-02-06 15:50:20 +0100755static void check_talloc(void *msgb_ctx, void *tall_bsc_ctx, int expected_blocks)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100756{
757 talloc_report_full(msgb_ctx, stderr);
Neels Hofmeyr2c46e042017-11-18 23:29:24 +0100758 /* Expecting these to stick around in tall_bsc_ctx:
759full talloc report on 'msgb' (total 0 bytes in 1 blocks)
Harald Welte23466192018-02-14 00:19:06 +0100760talloc_total_blocks(tall_bsc_ctx) == 7
Harald Weltea3ab1de2018-01-24 15:17:06 +0100761full talloc report on 'subscr_conn_test_ctx' (total 2642 bytes in 8 blocks)
Neels Hofmeyr2c46e042017-11-18 23:29:24 +0100762 struct gsup_client contains 248 bytes in 1 blocks (ref 0) 0x61300000dee0
Harald Welte23466192018-02-14 00:19:06 +0100763 struct gsm_network contains 2023 bytes in 6 blocks (ref 0) 0x61700000fce0
Neels Hofmeyr2c46e042017-11-18 23:29:24 +0100764 struct vlr_instance contains 160 bytes in 1 blocks (ref 0) 0x611000009a60
765 no_gsup_server contains 15 bytes in 1 blocks (ref 0) 0x60b00000ade0
766 ../../../src/libosmocore/src/rate_ctr.c:199 contains 1552 bytes in 1 blocks (ref 0) 0x61b00001eae0
Neels Hofmeyr2c46e042017-11-18 23:29:24 +0100767 msgb contains 0 bytes in 1 blocks (ref 0) 0x60800000bf80
768 */
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100769 fprintf(stderr, "talloc_total_blocks(tall_bsc_ctx) == %zu\n",
770 talloc_total_blocks(tall_bsc_ctx));
771 if (talloc_total_blocks(tall_bsc_ctx) != expected_blocks)
772 talloc_report_full(tall_bsc_ctx, stderr);
773 fprintf(stderr, "\n");
774}
775
776static struct {
777 bool verbose;
778 int run_test_nr;
779} cmdline_opts = {
780 .verbose = false,
781 .run_test_nr = -1,
782};
783
784static void print_help(const char *program)
785{
786 printf("Usage:\n"
787 " %s [-v] [N [N...]]\n"
788 "Options:\n"
789 " -h --help show this text.\n"
790 " -v --verbose print source file and line numbers\n"
791 " N run only the Nth test (first test is N=1)\n",
792 program
793 );
794}
795
796static void handle_options(int argc, char **argv)
797{
798 while (1) {
799 int option_index = 0, c;
800 static struct option long_options[] = {
801 {"help", 0, 0, 'h'},
802 {"verbose", 1, 0, 'v'},
803 {0, 0, 0, 0}
804 };
805
806 c = getopt_long(argc, argv, "hv",
807 long_options, &option_index);
808 if (c == -1)
809 break;
810
811 switch (c) {
812 case 'h':
813 print_help(argv[0]);
814 exit(0);
815 case 'v':
816 cmdline_opts.verbose = true;
817 break;
818 default:
819 /* catch unknown options *as well as* missing arguments. */
820 fprintf(stderr, "Error in command line options. Exiting.\n");
821 exit(-1);
822 break;
823 }
824 }
825}
826
827void *msgb_ctx = NULL;
828
Maxd5feade2018-02-06 17:15:25 +0100829static void run_tests(int nr, const char *imsi)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100830{
Maxb0a43142018-02-06 19:19:52 +0100831 uint8_t test_nr;
Maxd5feade2018-02-06 17:15:25 +0100832
833 printf("Testing for IMSI %s\n", imsi);
Max093300d2018-02-07 12:06:03 +0100834
Max5e2e9bd2018-02-06 19:31:08 +0100835 nr--; /* arg's first test is 1, in here it's 0 */
836 for (test_nr = 0; msc_vlr_tests[test_nr]; test_nr++) {
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100837 if (nr >= 0 && test_nr != nr)
838 continue;
839
Maxb0a43142018-02-06 19:19:52 +0100840 msc_vlr_tests[test_nr](test_nr + 1, imsi);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100841
Harald Welte23466192018-02-14 00:19:06 +0100842 check_talloc(msgb_ctx, tall_bsc_ctx, 7);
Max29ce08a2018-02-06 18:46:57 +0100843 }
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100844}
845
Max5e60de62018-02-07 12:56:09 +0100846struct gsm_network *test_net(void *ctx)
847{
Neels Hofmeyr7f484202018-02-27 12:59:45 +0100848 struct gsm_network *net = gsm_network_init(ctx, mncc_recv);
Max5e60de62018-02-07 12:56:09 +0100849
850 net->gsup_server_addr_str = talloc_strdup(net, "no_gsup_server");
851 net->gsup_server_port = 0;
852
853 OSMO_ASSERT(msc_vlr_alloc(net) == 0);
854 OSMO_ASSERT(msc_vlr_start(net) == 0);
855 OSMO_ASSERT(net->vlr);
856 OSMO_ASSERT(net->vlr->gsup_client);
857
858 net->vlr->ops.tx_lu_acc = fake_vlr_tx_lu_acc;
859 net->vlr->ops.tx_lu_rej = fake_vlr_tx_lu_rej;
860 net->vlr->ops.tx_cm_serv_acc = fake_vlr_tx_cm_serv_acc;
861 net->vlr->ops.tx_cm_serv_rej = fake_vlr_tx_cm_serv_rej;
862 net->vlr->ops.tx_auth_req = fake_vlr_tx_auth_req;
863 net->vlr->ops.tx_auth_rej = fake_vlr_tx_auth_rej;
864 net->vlr->ops.set_ciph_mode = fake_vlr_tx_ciph_mode_cmd;
865
866 return net;
867}
868
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100869int main(int argc, char **argv)
870{
871 handle_options(argc, argv);
872
873 tall_bsc_ctx = talloc_named_const(NULL, 0, "subscr_conn_test_ctx");
874 msgb_ctx = msgb_talloc_ctx_init(tall_bsc_ctx, 0);
875 osmo_init_logging(&info);
876
877 _log_lines = cmdline_opts.verbose;
878
879 OSMO_ASSERT(osmo_stderr_target);
880 log_set_use_color(osmo_stderr_target, 0);
881 log_set_print_timestamp(osmo_stderr_target, 0);
882 log_set_print_filename(osmo_stderr_target, _log_lines? 1 : 0);
883 log_set_print_category(osmo_stderr_target, 1);
884
Neels Hofmeyr3f5b7802017-12-15 03:49:55 +0100885 if (cmdline_opts.verbose)
886 log_set_category_filter(osmo_stderr_target, DLSMS, 1, LOGL_DEBUG);
887
Max5e60de62018-02-07 12:56:09 +0100888 net = test_net(tall_bsc_ctx);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100889
890 osmo_fsm_log_addr(false);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100891
Max5e60de62018-02-07 12:56:09 +0100892 msc_subscr_conn_init();
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100893
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200894 clear_vlr();
895
Maxd5feade2018-02-06 17:15:25 +0100896 if (optind >= argc) {
897 run_tests(-1, "901700000004620");
898 } else {
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100899 int arg;
900 long int nr;
901 for (arg = optind; arg < argc; arg++) {
Neels Hofmeyr9c848b52017-11-22 01:59:36 +0100902 errno = 0;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100903 nr = strtol(argv[arg], NULL, 10);
904 if (errno) {
905 fprintf(stderr, "Invalid argument: %s\n",
906 argv[arg]);
907 exit(1);
908 }
909
Maxd5feade2018-02-06 17:15:25 +0100910 run_tests(nr, "901700000004620");
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100911 }
912 }
913
914 printf("Done\n");
915
Harald Welte23466192018-02-14 00:19:06 +0100916 check_talloc(msgb_ctx, tall_bsc_ctx, 7);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100917 return 0;
918}