blob: 45b97a27a15955e35e86b7ccfddbf94b79684707 [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 Hofmeyrc4628a32018-12-07 14:47:34 +010033#include <osmocom/msc/gsup_client_mux.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020034#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 Hofmeyrc4628a32018-12-07 14:47:34 +010038#include <osmocom/msc/ran_msg.h>
39#include <osmocom/msc/msc_a.h>
40#include <osmocom/msc/msc_i.h>
41#include <osmocom/msc/msc_t.h>
42#include <osmocom/msc/call_leg.h>
43#include <osmocom/msc/rtp_stream.h>
Neels Hofmeyr62bfa372022-10-31 18:51:07 +010044#include <osmocom/msc/codec_mapping.h>
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010045
46#include "msc_vlr_tests.h"
47
Neels Hofmeyrc01e9092018-03-22 15:56:49 +010048void *msc_vlr_tests_ctx = NULL;
Neels Hofmeyrdbb3c722021-02-07 23:53:07 +010049void *msgb_ctx = NULL;
Neels Hofmeyrc01e9092018-03-22 15:56:49 +010050
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010051bool _log_lines = false;
52
53struct gsm_network *net = NULL;
54
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010055const char *gsup_tx_expected = NULL;
56bool gsup_tx_confirmed;
57
58struct msgb *dtap_tx_expected = NULL;
59bool dtap_tx_confirmed;
60
61enum result_sent lu_result_sent;
62enum result_sent cm_service_result_sent;
63bool auth_request_sent;
64const char *auth_request_expect_rand;
65const char *auth_request_expect_autn;
66bool cipher_mode_cmd_sent;
67bool cipher_mode_cmd_sent_with_imeisv;
Neels Hofmeyrdbabfd32018-03-10 02:06:47 +010068const char *cipher_mode_expect_kc;
69bool security_mode_ctrl_sent;
70const char *security_mode_expect_ck;
71const char *security_mode_expect_ik;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010072
Philipp Maierfbf66102017-04-09 12:32:51 +020073bool iu_release_expected = false;
74bool iu_release_sent = false;
75bool bssap_clear_expected = false;
76bool bssap_clear_sent = false;
77
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +020078bool bssap_assignment_expected = false;
79bool bssap_assignment_sent = false;
80bool iu_rab_assignment_expected = false;
81bool iu_rab_assignment_sent = false;
82
Neels Hofmeyra99b4272017-11-21 17:13:23 +010083uint32_t cc_to_mncc_tx_expected_msg_type = 0;
84const char *cc_to_mncc_tx_expected_imsi = NULL;
85bool cc_to_mncc_tx_confirmed = false;
86uint32_t cc_to_mncc_tx_got_callref = 0;
87
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +020088enum rtp_direction expecting_crcx = -1;
89bool got_crcx = false;
90
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010091extern int ran_dec_dtap_undup_pdisc_ctr_bin(uint8_t pdisc);
Harald Weltec2007852018-02-03 21:08:26 +010092
93/* static state variables for the L3 send sequence numbers */
94static uint8_t n_sd[4];
95
96/* patch a correct send sequence number into the given message */
97static void patch_l3_seq_nr(struct msgb *msg)
98{
99 struct gsm48_hdr *gh = msgb_l3(msg);
100 uint8_t pdisc = gsm48_hdr_pdisc(gh);
101 uint8_t *msg_type_oct = &msg->l3h[1];
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100102 int bin = ran_dec_dtap_undup_pdisc_ctr_bin(pdisc);
Harald Weltec2007852018-02-03 21:08:26 +0100103
104 if (bin >= 0 && bin < ARRAY_SIZE(n_sd)) {
105 /* patch in n_sd into the msg_type octet */
106 *msg_type_oct = (*msg_type_oct & 0x3f) | ((n_sd[bin] & 0x3) << 6);
107 //fprintf(stderr, "pdisc=0x%02x bin=%d, patched n_sd=%u\n\n", pdisc, bin, n_sd[bin] & 3);
108 /* increment N(SD) */
109 n_sd[bin] = (n_sd[bin] + 1) % 4;
110 } else {
111 //fprintf(stderr, "pdisc=0x%02x NO SEQ\n\n", pdisc);
112 }
113}
114
115/* reset L3 sequence numbers (e.g. new RR connection) */
116static void reset_l3_seq_nr()
117{
118 memset(n_sd, 0, sizeof(n_sd));
119}
120
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100121struct msgb *msgb_from_hex(const char *label, uint16_t size, const char *hex)
122{
Neels Hofmeyr3117b702018-09-13 03:23:07 +0200123 struct msgb *msg = msgb_alloc_headroom(size, 4, label);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100124 unsigned char *rc;
Neels Hofmeyr3117b702018-09-13 03:23:07 +0200125 msg->l2h = msg->data;
126 rc = msgb_put(msg, osmo_hexparse(hex, msg->data, msgb_tailroom(msg)));
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100127 OSMO_ASSERT(rc == msg->l2h);
128 return msg;
129}
130
Maxd8d1a9e2018-02-06 15:50:20 +0100131static const char *gh_type_name(struct gsm48_hdr *gh)
Neels Hofmeyr78ada642017-03-10 02:15:20 +0100132{
133 return gsm48_pdisc_msgtype_name(gsm48_hdr_pdisc(gh),
134 gsm48_hdr_msg_type(gh));
135}
136
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100137void gsup_rx(const char *rx_hex, const char *expect_tx_hex)
138{
139 int rc;
140 struct msgb *msg;
141 const char *label;
142
143 gsup_expect_tx(expect_tx_hex);
144
145 msg = msgb_from_hex("gsup", 1024, rx_hex);
146 label = osmo_gsup_message_type_name(msg->l2h[0]);
147 fprintf(stderr, "<-- GSUP rx %s: %s\n", label,
148 osmo_hexdump_nospc(msgb_l2(msg), msgb_l2len(msg)));
Neels Hofmeyr834f94a2017-09-28 03:07:16 +0200149 /* GSUP read cb takes ownership of msgb */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100150 rc = gsup_client_mux_rx(net->gcm->gsup_client, msg);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100151 fprintf(stderr, "<-- GSUP rx %s: vlr_gsupc_read_cb() returns %d\n",
152 label, rc);
153 if (expect_tx_hex)
154 OSMO_ASSERT(gsup_tx_confirmed);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100155}
156
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100157bool conn_exists(const struct msub *msub)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100158{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100159 struct msub *i;
Maxba8a0072018-10-25 17:58:43 +0200160
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100161 if (!msub)
Maxba8a0072018-10-25 17:58:43 +0200162 return false;
163
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100164 llist_for_each_entry(i, &msub_list, entry) {
165 if (i == msub)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100166 return true;
167 }
Maxba8a0072018-10-25 17:58:43 +0200168
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100169 btw("msub gone");
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100170 return false;
171}
172
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700173/* Simplified version of the cm_service_request_concludes() */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100174void conn_conclude_cm_service_req(struct msub *msub, const char *cm_service_use)
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700175{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100176 int32_t count;
177 struct msc_a *msc_a = msub_msc_a(msub);
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700178 btw("Concluding CM Service Request");
179
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100180 OSMO_ASSERT(conn_exists(msub));
181 count = osmo_use_count_by(&msc_a->use_count, cm_service_use);
182 OSMO_ASSERT(count > 0);
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700183
Vadim Yanitskiyd14422a2019-07-09 00:37:49 +0700184 OSMO_ASSERT(osmo_use_count_get_put(&msc_a->use_count, cm_service_use, -count) == 0);
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700185
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100186 ASSERT_RELEASE_CLEAR(msc_a->c.ran->type);
187}
188
189void dummy_msc_i_action(struct osmo_fsm_inst *fi, uint32_t event, void *data)
190{
191}
192
193static const struct osmo_fsm_state dummy_msc_i_states[] = {
194 {
195 .name = "0",
196 .in_event_mask = 0xffffffff,
197 .action = dummy_msc_i_action,
198 },
199};
200
201struct osmo_fsm dummy_msc_i_fsm = {
202 .name = "dummy_msc_i",
203 .states = dummy_msc_i_states,
204 .num_states = ARRAY_SIZE(dummy_msc_i_states),
205 .log_subsys = DMSC,
206 .event_names = msc_i_fsm_event_names,
207};
208
209struct msc_i *dummy_msc_i_alloc(struct msub *msub, struct ran_infra *ran)
210{
211 return msub_role_alloc(g_msub, MSC_ROLE_I, &dummy_msc_i_fsm, struct msc_i, ran);
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700212}
213
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100214enum osmo_rat_type rx_from_ran = OSMO_RAT_GERAN_A;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100215
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100216struct msub *g_msub = NULL;
Harald Welte977b5482019-02-18 12:23:43 +0100217
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100218void dtap_expect_tx(const char *hex)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100219{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100220 /* Has the previously expected dtap been received? */
221 OSMO_ASSERT(!dtap_tx_expected);
222 if (!hex)
223 return;
224 dtap_tx_expected = msgb_from_hex("dtap_tx_expected", 1024, hex);
225 /* Mask the sequence number out */
226 if (msgb_length(dtap_tx_expected) >= 2)
227 dtap_tx_expected->data[1] &= 0x3f;
228 dtap_tx_confirmed = false;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100229}
230
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100231static int _validate_dtap(struct msgb *msg, enum osmo_rat_type to_ran)
232{
233 struct gsm48_hdr *gh = (void*)msg->data;
234 uint8_t pdisc = gsm48_hdr_pdisc(gh);
235 uint8_t msgt = gsm48_hdr_msg_type(gh);
236
237 btw("DTAP --%s--> MS: %s: %s",
238 osmo_rat_type_name(to_ran), gh_type_name((void*)msg->data),
239 osmo_hexdump_nospc(msg->data, msg->len));
240
241 if (pdisc == GSM48_PDISC_MM
242 && msgt == GSM48_MT_MM_CM_SERV_ACC) {
243 cm_service_result_sent |= RES_ACCEPT;
244 talloc_free(msg);
245 return 0;
246 }
247
248 if (pdisc == GSM48_PDISC_MM
249 && msgt == GSM48_MT_MM_CM_SERV_REJ) {
250 cm_service_result_sent |= RES_REJECT;
251 talloc_free(msg);
252 return 0;
253 }
254
255 OSMO_ASSERT(dtap_tx_expected);
256
257 /* Mask the sequence number out before comparing */
258 msg->data[1] &= 0x3f;
Neels Hofmeyre0f906c2019-10-21 06:00:35 +0200259 if (!msgb_eq_data_print(msg, dtap_tx_expected->data, dtap_tx_expected->len)) {
260 btw("Expected %s", osmo_hexdump(dtap_tx_expected->data, dtap_tx_expected->len));
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100261 abort();
Neels Hofmeyre0f906c2019-10-21 06:00:35 +0200262 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100263
264 btw("DTAP matches expected message");
265
266 talloc_free(msg);
267 dtap_tx_confirmed = true;
268 talloc_free(dtap_tx_expected);
269 dtap_tx_expected = NULL;
270
271 return 0;
272}
273
274static void bssap_validate_clear_cmd()
275{
276 OSMO_ASSERT(bssap_clear_expected);
277 bssap_clear_expected = false;
278 bssap_clear_sent = true;
279}
280
281static void iucs_validate_clear_cmd()
282{
283 OSMO_ASSERT(iu_release_expected);
284 iu_release_expected = false;
285 iu_release_sent = true;
286}
287
288static int bssap_validate_cipher_mode_cmd(const struct ran_cipher_mode_command *cmd)
289{
290 int i;
291 const char *got_key;
292 cipher_mode_cmd_sent = true;
293 cipher_mode_cmd_sent_with_imeisv = cmd->geran.retrieve_imeisv;
294 btw("sending Ciphering Mode Command: retrieve_imeisv=%d", cipher_mode_cmd_sent_with_imeisv);
295 for (i = 0; i < 7; i++) {
296 if (!(cmd->geran.a5_encryption_mask & (1 << i)))
297 continue;
298 btw("...perm algo: A5/%d", i);
299 }
300 got_key = osmo_hexdump_nospc(cmd->vec->kc, sizeof(cmd->vec->kc));
301 btw("...key: %s", got_key);
302
303 if (!cipher_mode_expect_kc
304 || strcmp(cipher_mode_expect_kc, got_key)) {
305 log("FAILURE: expected kc=%s", cipher_mode_expect_kc ? : "NULL");
306 OSMO_ASSERT(false);
307 }
308 return 0;
309}
310
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200311static void bssap_validate_assignment_cmd()
312{
313 OSMO_ASSERT(bssap_assignment_expected);
314 bssap_assignment_expected = false;
315 bssap_assignment_sent = true;
316}
317
318static void iucs_validate_assignment_cmd()
319{
320 OSMO_ASSERT(iu_rab_assignment_expected);
321 iu_rab_assignment_expected = false;
322 iu_rab_assignment_sent = true;
323}
324
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100325static int iucs_validate_security_mode_ctrl(const struct ran_cipher_mode_command *cmd)
326{
327 const char *got_ik;
328 got_ik = osmo_hexdump_nospc(cmd->vec->ik, sizeof(cmd->vec->ik));
329 btw("sending SecurityModeControl: ik=%s", got_ik);
330 security_mode_ctrl_sent = true;
331 if (!security_mode_expect_ik
332 || strcmp(security_mode_expect_ik, got_ik)) {
333 log("FAILURE: expected ik=%s", security_mode_expect_ik ? : "NULL");
334 OSMO_ASSERT(false);
335 }
336 return 0;
337}
338
339struct msgb *dont_ran_encode(struct osmo_fsm_inst *caller_fi, const struct ran_msg *ran_enc_msg)
340{
341 struct msc_role_common *c = caller_fi->priv;
342 enum osmo_rat_type ran_type = c->ran->type;
343 const char *ran_name = osmo_rat_type_name(ran_type);
344 LOG_RAN_ENC(caller_fi, DMSC, LOGL_INFO, "%s on %s\n", ran_msg_type_name(ran_enc_msg->msg_type),
345 ran_name);
346
347 switch (ran_enc_msg->msg_type) {
348 case RAN_MSG_DTAP:
349 _validate_dtap(ran_enc_msg->dtap, ran_type);
350 break;
351 case RAN_MSG_CLEAR_COMMAND:
352 switch (ran_type) {
353 case OSMO_RAT_GERAN_A:
354 bssap_validate_clear_cmd();
355 break;
356 case OSMO_RAT_UTRAN_IU:
357 iucs_validate_clear_cmd();
358 break;
359 default:
360 OSMO_ASSERT(false);
361 }
362 break;
363 case RAN_MSG_CIPHER_MODE_COMMAND:
364 switch (ran_type) {
365 case OSMO_RAT_GERAN_A:
366 bssap_validate_cipher_mode_cmd(&ran_enc_msg->cipher_mode_command);
367 break;
368 case OSMO_RAT_UTRAN_IU:
369 iucs_validate_security_mode_ctrl(&ran_enc_msg->cipher_mode_command);
370 break;
371 default:
372 OSMO_ASSERT(false);
373 }
374 break;
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200375 case RAN_MSG_ASSIGNMENT_COMMAND:
376 switch (ran_type) {
377 case OSMO_RAT_GERAN_A:
378 bssap_validate_assignment_cmd();
379 break;
380 case OSMO_RAT_UTRAN_IU:
381 iucs_validate_assignment_cmd();
382 break;
383 default:
384 OSMO_ASSERT(false);
385 }
386 break;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100387 default:
388 break;
389 }
390
391 /* We're testing MSC and VLR interaction, not message encoding.
392 * Return whatever. The test msc_i instance is a dummy and drops these.
393 * But it must be msg_free()-able.
394 */
395 return msgb_alloc(1, "unused dummy msg");
396}
397
398struct ran_infra test_ran_infra[] = {
399 [OSMO_RAT_GERAN_A] = {
400 .type = OSMO_RAT_GERAN_A,
401 .an_proto = OSMO_GSUP_ACCESS_NETWORK_PROTOCOL_TS3G_48006,
402 .log_subsys = DBSSAP,
403 .tdefs = msc_tdefs_geran,
404 .ran_encode = dont_ran_encode,
405 },
406 [OSMO_RAT_UTRAN_IU] = {
407 .type = OSMO_RAT_UTRAN_IU,
408 .an_proto = OSMO_GSUP_ACCESS_NETWORK_PROTOCOL_TS3G_25413,
409 .log_subsys = DIUCS,
410 .tdefs = msc_tdefs_utran,
411 .ran_encode = dont_ran_encode,
Neels Hofmeyr1dc39612023-03-03 16:43:19 +0100412 .force_mgw_codecs_to_ran = {
413 .count = 1,
414 .codec = {
415 {
416 .payload_type = 96,
417 .subtype_name = "VND.3GPP.IUFP",
418 .rate = 16000,
419 },
420 },
421 },
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100422 },
423};
424
425static int fake_msc_a_ran_dec(const struct ran_msg *ran_dec_msg)
426{
427 struct msc_a_ran_dec_data d = {
428 .from_role = MSC_ROLE_I,
429 };
430 return msc_a_ran_decode_cb(g_msub->role[MSC_ROLE_A], &d, ran_dec_msg);
431}
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100432
433void rx_from_ms(struct msgb *msg)
434{
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100435 struct gsm48_hdr *gh = msgb_l3(msg);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100436 struct ran_msg ran_dec_msg;
437 struct gsm0808_cell_id cell_id = {
438 .id_discr = CELL_IDENT_LAI_AND_LAC,
439 .id.lai_and_lac = {
440 .plmn = {
441 .mcc = 1,
442 .mnc = 2,
443 },
444 .lac = 23,
445 },
446 };
447 struct msc_a *msc_a;
Neels Hofmeyr78ada642017-03-10 02:15:20 +0100448
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100449 log("MSC <--%s-- MS: %s", osmo_rat_type_name(rx_from_ran), gh_type_name(gh));
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100450
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100451 if (!conn_exists(g_msub))
452 g_msub = NULL;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100453
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100454 if (!g_msub) {
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100455 log("new conn");
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100456 g_msub = msub_alloc(net);
457 msc_a_alloc(g_msub, &test_ran_infra[rx_from_ran]);
458 dummy_msc_i_alloc(g_msub, &test_ran_infra[rx_from_ran]);
459
Harald Weltec2007852018-02-03 21:08:26 +0100460 reset_l3_seq_nr();
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100461 ran_dec_msg = (struct ran_msg){
462 .msg_type = RAN_MSG_COMPL_L3,
463 .compl_l3 = {
464 .cell_id = &cell_id,
465 .msg = msg,
466 },
467 };
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100468 } else {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100469 ran_dec_msg = (struct ran_msg){
470 .msg_type = RAN_MSG_DTAP,
471 .dtap = msg,
472 };
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100473 }
474
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100475 msc_a = msub_msc_a(g_msub);
476 msc_a_get(msc_a, __func__);
477
478 patch_l3_seq_nr(msg);
479 fake_msc_a_ran_dec(&ran_dec_msg);
480
481 msc_a_put(msc_a, __func__);
482
483 if (!conn_exists(g_msub))
484 g_msub = NULL;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100485}
486
487void ms_sends_msg(const char *hex)
488{
489 struct msgb *msg;
490
491 msg = msgb_from_hex("ms_sends_msg", 1024, hex);
492 msg->l1h = msg->l2h = msg->l3h = msg->data;
493 rx_from_ms(msg);
Neels Hofmeyr3117b702018-09-13 03:23:07 +0200494 msgb_free(msg);
495}
496
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100497void ms_sends_classmark_update(const struct osmo_gsm48_classmark *classmark)
Neels Hofmeyr3117b702018-09-13 03:23:07 +0200498{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100499 struct ran_msg ran_dec = {
500 .msg_type = RAN_MSG_CLASSMARK_UPDATE,
501 .classmark_update = {
502 .classmark = classmark,
503 },
504 };
505 fake_msc_a_ran_dec(&ran_dec);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100506}
507
Maxd8d1a9e2018-02-06 15:50:20 +0100508static int ms_sends_msg_fake(uint8_t pdisc, uint8_t msg_type)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100509{
510 int rc;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100511 struct ran_msg ran_dec;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100512 struct msgb *msg;
513 struct gsm48_hdr *gh;
514
515 msg = msgb_alloc(1024, "ms_sends_msg_fake");
516 msg->l1h = msg->l2h = msg->l3h = msg->data;
517
518 gh = (struct gsm48_hdr*)msgb_put(msg, sizeof(*gh));
519 gh->proto_discr = pdisc;
520 gh->msg_type = msg_type;
521 /* some amount of data, whatever */
522 msgb_put(msg, 123);
523
Harald Weltec2007852018-02-03 21:08:26 +0100524 patch_l3_seq_nr(msg);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100525
526 ran_dec = (struct ran_msg){
527 .msg_type = RAN_MSG_DTAP,
528 .dtap = msg,
529 };
530 rc = fake_msc_a_ran_dec(&ran_dec);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100531
532 talloc_free(msg);
533 return rc;
534}
535
Max68171902018-02-06 17:55:19 +0100536static inline void ms_msg_log_err(uint8_t val, uint8_t msgtype)
537{
538 int rc = ms_sends_msg_fake(val, msgtype);
539 if (rc != -EACCES)
540 log("Unexpected return value %u != %u for %s/%s",
541 -rc, -EACCES, gsm48_pdisc_name(val), gsm48_cc_msg_name(msgtype));
542}
543
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100544void thwart_rx_non_initial_requests()
545{
546 log("requests shall be thwarted");
Max68171902018-02-06 17:55:19 +0100547
548 ms_msg_log_err(GSM48_PDISC_CC, GSM48_MT_CC_SETUP);
549 ms_msg_log_err(GSM48_PDISC_MM, 0x33); /* nonexistent */
550 ms_msg_log_err(GSM48_PDISC_RR, GSM48_MT_RR_SYSINFO_1);
551 ms_msg_log_err(GSM48_PDISC_SMS, GSM411_MT_CP_DATA);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100552}
553
554void send_sms(struct vlr_subscr *receiver,
555 struct vlr_subscr *sender,
556 char *str)
557{
Harald Welte39b55482018-04-09 19:19:33 +0200558 struct gsm_sms *sms = sms_from_text(receiver, sender->msisdn, 0, str);
Vadim Yanitskiy24e025e2018-11-22 15:42:39 +0700559 gsm411_send_sms(net, receiver, sms);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100560}
561
562unsigned char next_rand_byte = 0;
Max753c15d2017-12-21 14:50:44 +0100563/* override, requires '-Wl,--wrap=osmo_get_rand_id' */
564int __real_osmo_get_rand_id(uint8_t *buf, size_t num);
565int __wrap_osmo_get_rand_id(uint8_t *buf, size_t num)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100566{
Max753c15d2017-12-21 14:50:44 +0100567 size_t i;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100568 for (i = 0; i < num; i++)
569 buf[i] = next_rand_byte++;
570 return 1;
571}
572
573/* override, requires '-Wl,--wrap=gsm340_gen_scts' */
574void __real_gsm340_gen_scts(uint8_t *scts, time_t time);
575void __wrap_gsm340_gen_scts(uint8_t *scts, time_t time)
576{
Neels Hofmeyr05230ea2017-08-22 18:06:42 +0200577 /* Write fixed time bytes for deterministic test results */
578 osmo_hexparse("07101000000000", scts, 7);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100579}
580
581const char *paging_expecting_imsi = NULL;
582uint32_t paging_expecting_tmsi;
583bool paging_sent;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100584
585void paging_expect_imsi(const char *imsi)
586{
587 paging_expecting_imsi = imsi;
588 paging_expecting_tmsi = GSM_RESERVED_TMSI;
589}
590
591void paging_expect_tmsi(uint32_t tmsi)
592{
593 paging_expecting_tmsi = tmsi;
594 paging_expecting_imsi = NULL;
595}
596
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100597/* override, requires '-Wl,--wrap=ran_peers_down_paging' */
598int __real_ran_peers_down_paging(struct sccp_ran_inst *sri, enum CELL_IDENT page_where, struct vlr_subscr *vsub,
599 enum paging_cause cause);
600int __wrap_ran_peers_down_paging(struct sccp_ran_inst *sri, enum CELL_IDENT page_where, struct vlr_subscr *vsub,
601 enum paging_cause cause)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100602{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100603 log("paging request (%s) to %s on %s", paging_cause_name(cause), vlr_subscr_name(vsub),
604 osmo_rat_type_name(sri->ran->type));
605
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100606 OSMO_ASSERT(paging_expecting_imsi || (paging_expecting_tmsi != GSM_RESERVED_TMSI));
607 if (paging_expecting_imsi)
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100608 VERBOSE_ASSERT(strcmp(paging_expecting_imsi, vsub->imsi), == 0, "%d");
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200609 if (paging_expecting_tmsi != GSM_RESERVED_TMSI) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100610 VERBOSE_ASSERT(paging_expecting_tmsi, == vsub->tmsi, "0x%08x");
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200611 }
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100612 paging_sent = true;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100613 return 1;
614}
615
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100616void clear_vlr()
617{
618 struct vlr_subscr *vsub, *n;
619 llist_for_each_entry_safe(vsub, n, &net->vlr->subscribers, list) {
620 vlr_subscr_free(vsub);
621 }
622
623 net->authentication_required = false;
Harald Welte7b222aa2017-12-23 19:30:32 +0100624 net->a5_encryption_mask = (1 << 0);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100625 net->vlr->cfg.check_imei_rqd = false;
626 net->vlr->cfg.assign_tmsi = false;
Neels Hofmeyr54a706c2017-07-18 15:39:27 +0200627 net->vlr->cfg.retrieve_imeisv_early = false;
628 net->vlr->cfg.retrieve_imeisv_ciphered = false;
Neels Hofmeyr7b1418e2017-10-29 02:12:16 +0100629 net->vlr->cfg.auth_tuple_max_reuse_count = 0;
630 net->vlr->cfg.auth_reuse_old_sets_on_error = false;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100631
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100632 rx_from_ran = OSMO_RAT_GERAN_A;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100633 auth_request_sent = false;
634 auth_request_expect_rand = NULL;
635 auth_request_expect_autn = NULL;
636
Neels Hofmeyrdbabfd32018-03-10 02:06:47 +0100637 cipher_mode_cmd_sent = false;
638 cipher_mode_cmd_sent_with_imeisv = false;
639 cipher_mode_expect_kc = NULL;
640
641 security_mode_ctrl_sent = false;
642 security_mode_expect_ck = NULL;
643 security_mode_expect_ik = NULL;
644
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100645 next_rand_byte = 0;
646
Philipp Maierfbf66102017-04-09 12:32:51 +0200647 iu_release_expected = false;
648 iu_release_sent = false;
649 bssap_clear_expected = false;
650 bssap_clear_sent = false;
651
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100652 osmo_gettimeofday_override = false;
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200653
654 expecting_crcx = -1;
655 got_crcx = false;
656
657 bssap_assignment_expected = false;
658 bssap_assignment_sent = false;
659 iu_rab_assignment_expected = false;
660 iu_rab_assignment_sent = false;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100661}
662
663static struct log_info_cat test_categories[] = {
664 [DMSC] = {
665 .name = "DMSC",
666 .description = "Mobile Switching Center",
667 .enabled = 1, .loglevel = LOGL_DEBUG,
668 },
669 [DRLL] = {
670 .name = "DRLL",
671 .description = "A-bis Radio Link Layer (RLL)",
672 .enabled = 1, .loglevel = LOGL_DEBUG,
673 },
674 [DMM] = {
675 .name = "DMM",
676 .description = "Layer3 Mobility Management (MM)",
677 .enabled = 1, .loglevel = LOGL_DEBUG,
678 },
679 [DRR] = {
680 .name = "DRR",
681 .description = "Layer3 Radio Resource (RR)",
682 .enabled = 1, .loglevel = LOGL_DEBUG,
683 },
684 [DCC] = {
685 .name = "DCC",
686 .description = "Layer3 Call Control (CC)",
Neels Hofmeyr12e17be2018-03-12 23:59:37 +0100687 .enabled = 1, .loglevel = LOGL_DEBUG,
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100688 },
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100689 [DVLR] = {
690 .name = "DVLR",
691 .description = "Visitor Location Register",
692 .enabled = 1, .loglevel = LOGL_DEBUG,
693 },
694 [DREF] = {
695 .name = "DREF",
696 .description = "Reference Counting",
697 .enabled = 1, .loglevel = LOGL_DEBUG,
698 },
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200699 [DPAG] = {
700 .name = "DPAG",
701 .description = "Paging Subsystem",
702 .enabled = 1, .loglevel = LOGL_DEBUG,
703 },
704 [DIUCS] = {
705 .name = "DIUCS",
706 .description = "Iu-CS Protocol",
707 .enabled = 1, .loglevel = LOGL_DEBUG,
708 },
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100709 [DMNCC] = {
710 .name = "DMNCC",
711 .description = "MNCC API for Call Control application",
712 .enabled = 1, .loglevel = LOGL_DEBUG,
713 },
Neels Hofmeyr46c06e22019-01-04 17:42:05 +0100714 [DBSSAP] = {
715 .name = "DBSSAP",
716 .description = "BSSAP Protocol (A Interface)",
717 .enabled = 1, .loglevel = LOGL_DEBUG,
718 },
Neels Hofmeyr979b0572019-05-09 15:24:49 +0200719 [DSS] = {
720 .name = "DSS",
721 .description = "Supplementary Services",
722 .enabled = 1, .loglevel = LOGL_DEBUG,
723 },
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100724};
725
726static struct log_info info = {
727 .cat = test_categories,
728 .num_cat = ARRAY_SIZE(test_categories),
729};
730
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100731struct gsm_mncc *on_call_release_mncc_sends_to_cc_data = NULL;
732
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100733int mncc_recv(struct gsm_network *net, struct msgb *msg)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100734{
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100735 struct gsm_mncc *mncc = (void*)msg->data;
736 log("MSC --> MNCC: callref 0x%x: %s", mncc->callref,
737 get_mncc_name(mncc->msg_type));
738
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100739 if (mncc->msg_type == MNCC_REL_IND && on_call_release_mncc_sends_to_cc_data) {
740
741 log("MNCC: callref 0x%x: Call Release triggering %s", mncc->callref,
742 get_mncc_name(on_call_release_mncc_sends_to_cc_data->msg_type));
743
Neels Hofmeyr52558742019-05-09 01:23:09 +0200744 mncc_tx_to_cc(net,
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100745 on_call_release_mncc_sends_to_cc_data);
746
747 on_call_release_mncc_sends_to_cc_data = NULL;
748 return 0;
749 }
750
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100751 OSMO_ASSERT(cc_to_mncc_tx_expected_msg_type);
752 if (cc_to_mncc_tx_expected_msg_type != mncc->msg_type) {
753 log("Mismatch! Expected MNCC msg type: %s",
754 get_mncc_name(cc_to_mncc_tx_expected_msg_type));
755 abort();
756 }
757
758 if (strcmp(cc_to_mncc_tx_expected_imsi, mncc->imsi)) {
759 log("Mismatch! Expected MNCC msg IMSI: '%s', got '%s'",
760 cc_to_mncc_tx_expected_imsi,
761 mncc->imsi);
762 abort();
763 }
764
765 cc_to_mncc_tx_confirmed = true;
766 cc_to_mncc_tx_got_callref = mncc->callref;
767 cc_to_mncc_tx_expected_imsi = NULL;
768 cc_to_mncc_tx_expected_msg_type = 0;
769 talloc_free(msg);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100770 return 0;
771}
772
Harald Welte1ea6baf2018-07-31 19:40:52 +0200773struct osmo_gsup_client *
Stefan Sperlingafa030d2018-12-06 12:06:59 +0100774__real_osmo_gsup_client_create2(struct ipaccess_unit *ipa_dev, const char *ip_addr,
775 unsigned int tcp_port, osmo_gsup_client_read_cb_t read_cb,
776 struct osmo_oap_client_config *oap_config);
Harald Welte1ea6baf2018-07-31 19:40:52 +0200777struct osmo_gsup_client *
Stefan Sperlingafa030d2018-12-06 12:06:59 +0100778__wrap_osmo_gsup_client_create2(struct ipaccess_unit *ipa_dev, const char *ip_addr,
779 unsigned int tcp_port, osmo_gsup_client_read_cb_t read_cb,
780 struct osmo_oap_client_config *oap_config)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100781{
Harald Welte1ea6baf2018-07-31 19:40:52 +0200782 struct osmo_gsup_client *gsupc;
783 gsupc = talloc_zero(msc_vlr_tests_ctx, struct osmo_gsup_client);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100784 OSMO_ASSERT(gsupc);
785 return gsupc;
786}
787
788/* override, requires '-Wl,--wrap=gsup_client_send' */
Harald Welte1ea6baf2018-07-31 19:40:52 +0200789int __real_osmo_gsup_client_send(struct osmo_gsup_client *gsupc, struct msgb *msg);
790int __wrap_osmo_gsup_client_send(struct osmo_gsup_client *gsupc, struct msgb *msg)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100791{
Max34d306b2019-01-15 18:37:31 +0100792 uint8_t buf[512];
793 int len;
794
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100795 fprintf(stderr, "GSUP --> HLR: %s: %s\n",
Max34d306b2019-01-15 18:37:31 +0100796 osmo_gsup_message_type_name(msg->data[0]), osmo_hexdump_nospc(msg->data, msg->len));
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100797
798 OSMO_ASSERT(gsup_tx_expected);
Max34d306b2019-01-15 18:37:31 +0100799 OSMO_ASSERT(strlen(gsup_tx_expected) <= (sizeof(buf) * 2));
800
801 len = osmo_hexparse(gsup_tx_expected, buf, sizeof(buf));
802 if (len < 1)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100803 abort();
Max34d306b2019-01-15 18:37:31 +0100804
Neels Hofmeyrbe5f0332018-12-26 01:11:57 +0100805 /* Compare only the length expected. Extra data is fine, to not care about new GSUP IEs invented later. */
806 if (msg->len < len) {
807 fprintf(stderr, "ERROR: GSUP message too short, expected '%s'\n", gsup_tx_expected);
Max34d306b2019-01-15 18:37:31 +0100808 abort();
Neels Hofmeyrbe5f0332018-12-26 01:11:57 +0100809 }
810
811 if (memcmp(msg->data, buf, len)) {
812 fprintf(stderr, "ERROR: GSUP message mismatch, expected it to start with '%s'\n", gsup_tx_expected);
813 abort();
814 }
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100815
816 talloc_free(msg);
817 gsup_tx_confirmed = true;
818 gsup_tx_expected = NULL;
819 return 0;
820}
821
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200822struct rtp_stream fake_rtp[2] = {
823 {
824 .dir = RTP_TO_RAN,
825 .local = {
826 .ip = "10.23.42.1",
827 .port = 99,
828 },
829 .remote = {
830 .ip = "10.23.42.2",
831 .port = 100,
832 },
833 },
834 {
835 .dir = RTP_TO_CN,
836 .local = {
837 .ip = "10.23.42.1",
838 .port = 23,
839 },
840 .remote = {
841 .ip = "10.23.42.2",
842 .port = 42,
843 },
844 },
845};
846
847void expect_crcx(enum rtp_direction towards)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100848{
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200849 OSMO_ASSERT(expecting_crcx == -1);
850 expecting_crcx = towards;
851 got_crcx = false;
852}
853
854/* override, requires '-Wl,--wrap=call_leg_ensure_ci' */
855int __real_call_leg_ensure_ci(struct call_leg *cl, enum rtp_direction dir, uint32_t call_id, struct gsm_trans *for_trans,
Neels Hofmeyr62bfa372022-10-31 18:51:07 +0100856 const struct sdp_audio_codecs *codecs_if_known,
857 const struct osmo_sockaddr_str *remote_addr_if_known);
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200858int __wrap_call_leg_ensure_ci(struct call_leg *cl, enum rtp_direction dir, uint32_t call_id, struct gsm_trans *for_trans,
Neels Hofmeyr62bfa372022-10-31 18:51:07 +0100859 const struct sdp_audio_codecs *codecs_if_known,
860 const struct osmo_sockaddr_str *remote_addr_if_known)
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200861{
862 if (!cl->rtp[dir]) {
Neels Hofmeyr62bfa372022-10-31 18:51:07 +0100863 log("MGW <--CRCX to %s-- MSC: callref=0x%x codecs=%s", rtp_direction_name(dir), call_id,
864 codecs_if_known ? sdp_audio_codecs_to_str(codecs_if_known) : "unset");
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200865
866 OSMO_ASSERT(expecting_crcx == dir);
867 expecting_crcx = -1;
868 got_crcx = true;
869
870 call_leg_ensure_rtp_alloc(cl, dir, call_id, for_trans);
Neels Hofmeyr62bfa372022-10-31 18:51:07 +0100871 if (codecs_if_known)
872 rtp_stream_set_codecs(cl->rtp[dir], codecs_if_known);
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200873 if (remote_addr_if_known && osmo_sockaddr_str_is_nonzero(remote_addr_if_known))
874 rtp_stream_set_remote_addr(cl->rtp[dir], remote_addr_if_known);
875 }
876
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100877 return 0;
878}
879
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200880void crcx_ok(enum rtp_direction dir)
881{
882 struct msc_a *msc_a = msub_msc_a(g_msub);
883 struct call_leg *cl = msc_a->cc.call_leg;
884 OSMO_ASSERT(cl);
885 OSMO_ASSERT(cl->rtp[dir]);
886 osmo_sockaddr_str_from_str(&cl->rtp[dir]->local, "10.23.23.1", 23);
887 //osmo_sockaddr_str_from_str(&cl->rtp[dir].remote, "10.42.42.1", 42);
888 log("MGW --CRCX OK to %s--> MSC", rtp_direction_name(dir));
889 osmo_fsm_inst_dispatch(cl->fi, CALL_LEG_EV_RTP_STREAM_ADDR_AVAILABLE, cl->rtp[dir]);
890}
891
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100892static int fake_vlr_tx_lu_acc(void *msc_conn_ref, uint32_t send_tmsi)
893{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100894 struct msc_a *msc_a = msc_conn_ref;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100895 if (send_tmsi == GSM_RESERVED_TMSI)
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100896 btw("sending LU Accept for %s", msc_a->c.fi->id);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100897 else
898 btw("sending LU Accept for %s, with TMSI 0x%08x",
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100899 msc_a->c.fi->id, send_tmsi);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100900 lu_result_sent |= RES_ACCEPT;
901 return 0;
902}
903
Neels Hofmeyr15809592018-04-06 02:57:51 +0200904static int fake_vlr_tx_lu_rej(void *msc_conn_ref, enum gsm48_reject_value cause)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100905{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100906 struct msc_a *msc_a = msc_conn_ref;
907 btw("sending LU Reject for %s, cause %u", msc_a->c.fi->id, cause);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100908 lu_result_sent |= RES_REJECT;
909 return 0;
910}
911
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100912static int fake_vlr_tx_cm_serv_rej(void *msc_conn_ref, enum osmo_cm_service_type cm_service_type,
913 enum gsm48_reject_value cause)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100914{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100915 struct msc_a *msc_a = msc_conn_ref;
916 btw("sending CM Service Reject (%s) for %s, cause: %s",
917 osmo_cm_service_type_name(cm_service_type), msc_a->c.fi->id, gsm48_reject_value_name(cause));
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100918 cm_service_result_sent |= RES_REJECT;
919 return 0;
920}
921
Neels Hofmeyr8b6e5362018-11-30 02:57:33 +0100922static int fake_vlr_tx_auth_req(void *msc_conn_ref, struct vlr_auth_tuple *at,
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100923 bool send_autn)
924{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100925 struct msc_a *msc_a = msc_conn_ref;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100926 char *hex;
927 bool ok = true;
928 btw("sending %s Auth Request for %s: tuple use_count=%d key_seq=%d auth_types=0x%x and...",
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100929 send_autn? "UMTS" : "GSM", msc_a->c.fi->id,
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100930 at->use_count, at->key_seq, at->vec.auth_types);
931
932 hex = osmo_hexdump_nospc((void*)&at->vec.rand, sizeof(at->vec.rand));
933 btw("...rand=%s", hex);
934 if (!auth_request_expect_rand
935 || strcmp(hex, auth_request_expect_rand) != 0) {
936 ok = false;
937 log("FAILURE: expected rand=%s",
938 auth_request_expect_rand ? auth_request_expect_rand : "-");
939 }
940
941 if (send_autn) {
942 hex = osmo_hexdump_nospc((void*)&at->vec.autn, sizeof(at->vec.autn));
943 btw("...autn=%s", hex);
944 if (!auth_request_expect_autn
945 || strcmp(hex, auth_request_expect_autn) != 0) {
946 ok = false;
947 log("FAILURE: expected autn=%s",
948 auth_request_expect_autn ? auth_request_expect_autn : "-");
949 }
950 } else if (auth_request_expect_autn) {
951 ok = false;
952 log("FAILURE: no AUTN sent, expected AUTN = %s",
953 auth_request_expect_autn);
954 }
955
956 if (send_autn)
957 btw("...expecting res=%s",
958 osmo_hexdump_nospc((void*)&at->vec.res, at->vec.res_len));
959 else
960 btw("...expecting sres=%s",
961 osmo_hexdump_nospc((void*)&at->vec.sres, sizeof(at->vec.sres)));
962
963 auth_request_sent = ok;
964 return 0;
965}
966
967static int fake_vlr_tx_auth_rej(void *msc_conn_ref)
968{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100969 struct msc_a *msc_a = msc_conn_ref;
970 btw("sending Auth Reject for %s", msc_a->c.fi->id);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100971 return 0;
972}
973
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100974void ms_sends_ciphering_mode_complete(const char *inner_ran_msg)
Neels Hofmeyrda21a522018-03-02 01:50:09 +0100975{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100976 struct ran_msg ran_dec;
Neels Hofmeyrdbabfd32018-03-10 02:06:47 +0100977
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100978 msc_a_get(msub_msc_a(g_msub), __func__);
979
980 ran_dec = (struct ran_msg){
981 .msg_type = RAN_MSG_CIPHER_MODE_COMPLETE,
982 };
983 fake_msc_a_ran_dec(&ran_dec);
984
985 if (inner_ran_msg) {
986 struct msgb *msg = msgb_from_hex("cipher_mode_complete_ran", 1024, inner_ran_msg);
987 msg->l1h = msg->l2h = msg->l3h = msg->data;
988 ran_dec = (struct ran_msg){
989 .msg_type = RAN_MSG_DTAP,
990 .dtap = msg,
991 };
992 patch_l3_seq_nr(msg);
993 fake_msc_a_ran_dec(&ran_dec);
994 msgb_free(msg);
Neels Hofmeyrdbabfd32018-03-10 02:06:47 +0100995 }
Neels Hofmeyrda21a522018-03-02 01:50:09 +0100996
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100997 msc_a_put(msub_msc_a(g_msub), __func__);
Neels Hofmeyrda21a522018-03-02 01:50:09 +0100998
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100999 if (!conn_exists(g_msub))
1000 g_msub = NULL;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001001}
1002
Alexander Couzens2aaff752021-10-19 17:09:11 +02001003void ms_sends_security_mode_complete(uint8_t utran_encryption)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001004{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001005 struct ran_msg ran_dec;
1006
1007 ran_dec = (struct ran_msg){
1008 .msg_type = RAN_MSG_CIPHER_MODE_COMPLETE,
Alexander Couzens2aaff752021-10-19 17:09:11 +02001009 .cipher_mode_complete.utran_encryption = utran_encryption,
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001010 };
1011 fake_msc_a_ran_dec(&ran_dec);
1012
1013 if (!conn_exists(g_msub))
1014 g_msub = NULL;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001015}
1016
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +02001017void ms_sends_assignment_complete(enum mgcp_codecs assigned_codec)
1018{
1019 struct ran_msg ran_dec;
1020
1021 ran_dec = (struct ran_msg){
1022 .msg_type = RAN_MSG_ASSIGNMENT_COMPLETE,
1023 .assignment_complete = {
Pau Espin Pedrol9de384a2022-01-07 16:27:04 +01001024 .codec_present = true,
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +02001025 .codec = assigned_codec,
1026 },
1027 };
Neels Hofmeyr8159c952022-08-06 16:23:31 +02001028 osmo_sockaddr_str_from_str(&ran_dec.assignment_complete.remote_rtp, "1.2.3.4", 1234);
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +02001029 fake_msc_a_ran_dec(&ran_dec);
1030
1031 if (!conn_exists(g_msub))
1032 g_msub = NULL;
1033}
1034
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001035void ran_sends_clear_complete()
Neels Hofmeyr4068ab22018-04-01 20:55:54 +02001036{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001037 struct ran_msg ran_dec;
Neels Hofmeyr4068ab22018-04-01 20:55:54 +02001038
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001039 ran_dec = (struct ran_msg){
1040 .msg_type = RAN_MSG_CLEAR_COMPLETE,
1041 };
1042 fake_msc_a_ran_dec(&ran_dec);
1043
1044 if (!conn_exists(g_msub))
1045 g_msub = NULL;
Neels Hofmeyr4068ab22018-04-01 20:55:54 +02001046}
1047
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001048const struct timeval fake_time_start_time = { 123, 456 };
1049
1050void fake_time_start()
1051{
Stefan Sperlingdefc3c82018-05-15 14:48:04 +02001052 struct timespec *clock_override;
1053
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001054 osmo_gettimeofday_override_time = fake_time_start_time;
1055 osmo_gettimeofday_override = true;
Stefan Sperlingdefc3c82018-05-15 14:48:04 +02001056 clock_override = osmo_clock_override_gettimespec(CLOCK_MONOTONIC);
1057 OSMO_ASSERT(clock_override);
1058 clock_override->tv_sec = fake_time_start_time.tv_sec;
1059 clock_override->tv_nsec = fake_time_start_time.tv_usec * 1000;
1060 osmo_clock_override_enable(CLOCK_MONOTONIC, true);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001061 fake_time_passes(0, 0);
1062}
1063
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001064static struct {
1065 bool verbose;
1066 int run_test_nr;
1067} cmdline_opts = {
1068 .verbose = false,
1069 .run_test_nr = -1,
1070};
1071
1072static void print_help(const char *program)
1073{
1074 printf("Usage:\n"
1075 " %s [-v] [N [N...]]\n"
1076 "Options:\n"
1077 " -h --help show this text.\n"
1078 " -v --verbose print source file and line numbers\n"
1079 " N run only the Nth test (first test is N=1)\n",
1080 program
1081 );
1082}
1083
1084static void handle_options(int argc, char **argv)
1085{
1086 while (1) {
1087 int option_index = 0, c;
1088 static struct option long_options[] = {
1089 {"help", 0, 0, 'h'},
1090 {"verbose", 1, 0, 'v'},
1091 {0, 0, 0, 0}
1092 };
1093
1094 c = getopt_long(argc, argv, "hv",
1095 long_options, &option_index);
1096 if (c == -1)
1097 break;
1098
1099 switch (c) {
1100 case 'h':
1101 print_help(argv[0]);
1102 exit(0);
1103 case 'v':
1104 cmdline_opts.verbose = true;
1105 break;
1106 default:
1107 /* catch unknown options *as well as* missing arguments. */
1108 fprintf(stderr, "Error in command line options. Exiting.\n");
1109 exit(-1);
1110 break;
1111 }
1112 }
1113}
1114
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +01001115static void run_tests(int nr)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001116{
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +01001117 int test_nr;
Neels Hofmeyr08b38282018-03-30 23:04:04 +02001118
Max5e2e9bd2018-02-06 19:31:08 +01001119 nr--; /* arg's first test is 1, in here it's 0 */
1120 for (test_nr = 0; msc_vlr_tests[test_nr]; test_nr++) {
Neels Hofmeyrdbb3c722021-02-07 23:53:07 +01001121 size_t talloc_blocks_before_test;
1122
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001123 if (nr >= 0 && test_nr != nr)
1124 continue;
1125
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +01001126 if (cmdline_opts.verbose)
1127 fprintf(stderr, "(test nr %d)\n", test_nr + 1);
1128
Neels Hofmeyrdbb3c722021-02-07 23:53:07 +01001129 talloc_blocks_before_test = talloc_total_blocks(msc_vlr_tests_ctx);
1130
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +01001131 msc_vlr_tests[test_nr]();
1132
Neels Hofmeyrdbb3c722021-02-07 23:53:07 +01001133 if (talloc_total_blocks(msc_vlr_tests_ctx) != talloc_blocks_before_test) {
1134 fprintf(stderr, "ERROR: talloc leak: %zu blocks\n",
1135 talloc_total_blocks(msc_vlr_tests_ctx) - talloc_blocks_before_test);
1136 talloc_report_full(msc_vlr_tests_ctx, stderr);
1137 fprintf(stderr, "\n");
1138 }
1139
1140 if (talloc_total_blocks(msgb_ctx) > 1) {
1141 fprintf(stderr, "ERROR: msgb leak:\n");
1142 talloc_report_full(msgb_ctx, stderr);
1143 fprintf(stderr, "\n");
1144 }
1145
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +01001146 if (cmdline_opts.verbose)
1147 fprintf(stderr, "(test nr %d)\n", test_nr + 1);
Max29ce08a2018-02-06 18:46:57 +01001148 }
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001149}
1150
Max5e60de62018-02-07 12:56:09 +01001151struct gsm_network *test_net(void *ctx)
1152{
Neels Hofmeyr7f484202018-02-27 12:59:45 +01001153 struct gsm_network *net = gsm_network_init(ctx, mncc_recv);
Pau Espin Pedrolb44cf2d2022-10-17 18:09:15 +02001154 struct mgcp_client *client;
Max5e60de62018-02-07 12:56:09 +01001155
1156 net->gsup_server_addr_str = talloc_strdup(net, "no_gsup_server");
1157 net->gsup_server_port = 0;
1158
1159 OSMO_ASSERT(msc_vlr_alloc(net) == 0);
Max5e60de62018-02-07 12:56:09 +01001160 OSMO_ASSERT(net->vlr);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001161 OSMO_ASSERT(msc_gsup_client_start(net) == 0);
1162 OSMO_ASSERT(net->gcm);
1163 OSMO_ASSERT(msc_vlr_start(net) == 0);
Max5e60de62018-02-07 12:56:09 +01001164
1165 net->vlr->ops.tx_lu_acc = fake_vlr_tx_lu_acc;
1166 net->vlr->ops.tx_lu_rej = fake_vlr_tx_lu_rej;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001167 net->vlr->ops.tx_cm_serv_acc = msc_vlr_tx_cm_serv_acc;
Max5e60de62018-02-07 12:56:09 +01001168 net->vlr->ops.tx_cm_serv_rej = fake_vlr_tx_cm_serv_rej;
1169 net->vlr->ops.tx_auth_req = fake_vlr_tx_auth_req;
1170 net->vlr->ops.tx_auth_rej = fake_vlr_tx_auth_rej;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001171 net->vlr->ops.set_ciph_mode = msc_a_vlr_set_cipher_mode;
1172
1173 /* Allocate fake SCCP Ran Instances */
1174 net->a.sri = talloc_zero(net, struct sccp_ran_inst);
1175 *net->a.sri = (struct sccp_ran_inst){
1176 .ran = &test_ran_infra[OSMO_RAT_GERAN_A],
1177 };
1178 INIT_LLIST_HEAD(&net->a.sri->ran_peers);
1179 INIT_LLIST_HEAD(&net->a.sri->ran_conns);
1180
1181 net->iu.sri = talloc_zero(net, struct sccp_ran_inst);
1182 *net->iu.sri = (struct sccp_ran_inst){
1183 .ran = &test_ran_infra[OSMO_RAT_UTRAN_IU],
1184 };
1185 INIT_LLIST_HEAD(&net->iu.sri->ran_peers);
1186 INIT_LLIST_HEAD(&net->iu.sri->ran_conns);
1187
1188 net->mgw.tdefs = g_mgw_tdefs;
1189 mgcp_client_conf_init(&net->mgw.conf);
1190 net->mgw.tdefs = g_mgw_tdefs;
Pau Espin Pedrolb44cf2d2022-10-17 18:09:15 +02001191 net->mgw.mgw_pool = mgcp_client_pool_alloc(net);
1192 client = mgcp_client_init(net, &net->mgw.conf);
1193 mgcp_client_pool_register_single(net->mgw.mgw_pool, client);
Max5e60de62018-02-07 12:56:09 +01001194 return net;
1195}
1196
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001197int main(int argc, char **argv)
1198{
1199 handle_options(argc, argv);
1200
Neels Hofmeyre4f7e712019-03-24 21:07:33 +01001201 osmo_fsm_term_safely(true);
1202
Neels Hofmeyrc01e9092018-03-22 15:56:49 +01001203 msc_vlr_tests_ctx = talloc_named_const(NULL, 0, "msc_vlr_tests_ctx");
1204 msgb_ctx = msgb_talloc_ctx_init(msc_vlr_tests_ctx, 0);
Neels Hofmeyr08b38282018-03-30 23:04:04 +02001205 osmo_init_logging2(msc_vlr_tests_ctx, &info);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001206
1207 _log_lines = cmdline_opts.verbose;
1208
1209 OSMO_ASSERT(osmo_stderr_target);
1210 log_set_use_color(osmo_stderr_target, 0);
1211 log_set_print_timestamp(osmo_stderr_target, 0);
Pau Espin Pedrolcad22fd2021-02-19 13:37:00 +01001212 log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001213 log_set_print_category(osmo_stderr_target, 1);
Pau Espin Pedrol8d02d992021-02-19 13:36:47 +01001214 log_set_print_category_hex(osmo_stderr_target, 0);
Max48131522019-01-16 12:47:39 +01001215 log_set_category_filter(osmo_stderr_target, DLSMS, 1, LOGL_DEBUG);
Philipp Maierce1f9732021-09-14 11:18:46 +02001216 log_set_category_filter(osmo_stderr_target, DLMGCP, 0, LOGL_NOTICE);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001217
Neels Hofmeyr39cb0dd2018-12-18 02:30:18 +01001218 if (cmdline_opts.verbose) {
Neels Hofmeyr39cb0dd2018-12-18 02:30:18 +01001219 log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_BASENAME);
1220 log_set_print_filename_pos(osmo_stderr_target, LOG_FILENAME_POS_LINE_END);
1221 log_set_use_color(osmo_stderr_target, 1);
1222 log_set_print_level(osmo_stderr_target, 1);
1223 }
Neels Hofmeyr3f5b7802017-12-15 03:49:55 +01001224
Neels Hofmeyrc01e9092018-03-22 15:56:49 +01001225 net = test_net(msc_vlr_tests_ctx);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001226
1227 osmo_fsm_log_addr(false);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001228 osmo_fsm_log_timeouts(cmdline_opts.verbose);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001229
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001230 call_leg_init(net);
1231
1232 OSMO_ASSERT(osmo_fsm_register(&dummy_msc_i_fsm) == 0);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001233
Neels Hofmeyr84da6b12016-05-20 21:59:55 +02001234 clear_vlr();
1235
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +01001236 if (optind >= argc)
1237 run_tests(-1);
1238 else {
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001239 int arg;
1240 long int nr;
1241 for (arg = optind; arg < argc; arg++) {
Neels Hofmeyr9c848b52017-11-22 01:59:36 +01001242 errno = 0;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001243 nr = strtol(argv[arg], NULL, 10);
1244 if (errno) {
1245 fprintf(stderr, "Invalid argument: %s\n",
1246 argv[arg]);
1247 exit(1);
1248 }
1249
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +01001250 run_tests(nr);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001251 }
1252 }
1253
1254 printf("Done\n");
1255
Neels Hofmeyr6a29d322017-01-25 15:04:16 +01001256 return 0;
1257}