blob: 57022b44c87b226e5765a789ef66407d7ac57b21 [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#pragma once
25
26#include <stdbool.h>
27#include <stdio.h>
28
Neels Hofmeyr90843962017-09-04 15:04:35 +020029#include <osmocom/msc/gsm_data.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020030#include <osmocom/msc/vlr.h>
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010031#include <osmocom/msc/msub.h>
32#include <osmocom/msc/msc_a.h>
Neels Hofmeyra99b4272017-11-21 17:13:23 +010033#include <osmocom/msc/mncc.h>
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +020034#include <osmocom/msc/call_leg.h>
35#include <osmocom/msc/rtp_stream.h>
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010036
37extern bool _log_lines;
38#define _log(fmt, args...) do { \
39 if (_log_lines) \
40 fprintf(stderr, " %4d:%s: " fmt "\n", \
41 __LINE__, __FILE__, ## args ); \
42 else \
43 fprintf(stderr, fmt "\n", ## args ); \
44 } while (false)
45
46/* btw means "by the way", the test tells the log what's happening.
47 * BTW() marks a larger section, btw() is the usual logging. */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010048#define BTW(fmt, args...) _log("\n\n- " fmt, ## args )
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010049#define btw(fmt, args...) _log("- " fmt, ## args )
50#define log(fmt, args...) _log(" " fmt, ## args )
51
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +010052#define comment_start() fprintf(stderr, "===== %s\n", __func__);
53#define comment_end() fprintf(stderr, "===== %s: SUCCESS\n\n", __func__);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010054
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010055extern struct msub *g_msub;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010056extern struct gsm_network *net;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010057extern void *msgb_ctx;
58
Neels Hofmeyr7814a832018-12-26 00:40:18 +010059extern enum osmo_rat_type rx_from_ran;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +010060
61extern const char *gsup_tx_expected;
62extern bool gsup_tx_confirmed;
63
64extern struct msgb *dtap_tx_expected;
65extern bool dtap_tx_confirmed;
66
67enum result_sent {
68 RES_NONE = 0,
69 RES_ACCEPT = 1,
70 RES_REJECT = 2,
71};
72extern enum result_sent lu_result_sent;
73extern enum result_sent cm_service_result_sent;
74
75extern bool auth_request_sent;
76extern const char *auth_request_expect_rand;
77extern const char *auth_request_expect_autn;
78
79extern bool cipher_mode_cmd_sent;
80extern bool cipher_mode_cmd_sent_with_imeisv;
Neels Hofmeyrdbabfd32018-03-10 02:06:47 +010081extern const char *cipher_mode_expect_kc;
82
83extern bool security_mode_ctrl_sent;
84extern const char *security_mode_expect_ck;
85extern const char *security_mode_expect_ik;
86
87static inline void expect_cipher_mode_cmd(const char *kc)
88{
89 cipher_mode_cmd_sent = false;
90 cipher_mode_expect_kc = kc;
91 /* make sure we don't mix up the two */
92 security_mode_ctrl_sent = false;
93}
94
95static inline void expect_security_mode_ctrl(const char *ck, const char *ik)
96{
97 security_mode_ctrl_sent = false;
98 security_mode_expect_ck = ck;
99 security_mode_expect_ik = ik;
100 /* make sure we don't mix up the two */
101 cipher_mode_cmd_sent = false;
102}
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100103
104extern bool paging_sent;
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100105
Philipp Maierfbf66102017-04-09 12:32:51 +0200106extern bool iu_release_expected;
107extern bool iu_release_sent;
108extern bool bssap_clear_expected;
109extern bool bssap_clear_sent;
110
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100111extern uint32_t cc_to_mncc_tx_expected_msg_type;
112extern const char *cc_to_mncc_tx_expected_imsi;
113extern bool cc_to_mncc_tx_confirmed;
114extern uint32_t cc_to_mncc_tx_got_callref;
115
Neels Hofmeyrcbcf89c2018-03-13 17:52:07 +0100116extern struct gsm_mncc *on_call_release_mncc_sends_to_cc_data;
117
Philipp Maierfbf66102017-04-09 12:32:51 +0200118static inline void expect_iu_release()
119{
120 iu_release_expected = true;
121 iu_release_sent = false;
122}
123
124static inline void expect_bssap_clear()
125{
126 bssap_clear_expected = true;
127 bssap_clear_sent = false;
128}
129
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100130static inline void expect_release_clear(enum osmo_rat_type via_ran)
Philipp Maierfbf66102017-04-09 12:32:51 +0200131{
132 switch (via_ran) {
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100133 case OSMO_RAT_GERAN_A:
Philipp Maierfbf66102017-04-09 12:32:51 +0200134 expect_bssap_clear();
135 return;
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100136 case OSMO_RAT_UTRAN_IU:
Philipp Maierfbf66102017-04-09 12:32:51 +0200137 expect_iu_release();
138 return;
139 default:
140 OSMO_ASSERT(false);
141 break;
142 }
143}
144
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200145extern bool bssap_assignment_expected;
146extern bool bssap_assignment_sent;
147extern bool iu_rab_assignment_expected;
148extern bool iu_rab_assignment_sent;
149
150static inline void expect_bssap_assignment()
151{
152 bssap_assignment_expected = true;
153 bssap_assignment_sent = false;
154}
155
156static inline void expect_iu_rab_assignment()
157{
158 iu_rab_assignment_expected = true;
159 iu_rab_assignment_sent = false;
160}
161
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100162struct msc_vlr_test_cmdline_opts {
163 bool verbose;
164 int run_test_nr;
165};
166
Neels Hofmeyrdfdc61d2018-03-02 00:40:58 +0100167typedef void (* msc_vlr_test_func_t )(void);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100168extern msc_vlr_test_func_t msc_vlr_tests[];
169
170struct msgb *msgb_from_hex(const char *label, uint16_t size, const char *hex);
171
172void clear_vlr();
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100173bool conn_exists(const struct msub *msub);
174void conn_conclude_cm_service_req(struct msub *msub, const char *cm_service_use);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100175
176void dtap_expect_tx(const char *hex);
177void dtap_expect_tx_ussd(char *ussd_text);
178void paging_expect_imsi(const char *imsi);
179void paging_expect_tmsi(uint32_t tmsi);
180
181void ms_sends_msg(const char *hex);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100182void ms_sends_classmark_update(const struct osmo_gsm48_classmark *classmark);
183void ms_sends_ciphering_mode_complete(const char *inner_nas_msg);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200184void ms_sends_security_mode_complete();
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200185void ms_sends_assignment_complete(enum mgcp_codecs assigned_codec);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100186void gsup_rx(const char *rx_hex, const char *expect_tx_hex);
187void send_sms(struct vlr_subscr *receiver,
188 struct vlr_subscr *sender,
189 char *str);
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200190void crcx_ok(enum rtp_direction dir);
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100191
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100192void ran_sends_clear_complete();
Neels Hofmeyr4068ab22018-04-01 20:55:54 +0200193
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100194void thwart_rx_non_initial_requests();
195
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100196#define EXPECT_ACCEPTED(expect_accepted) do { \
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100197 if (g_msub) \
198 OSMO_ASSERT(conn_exists(g_msub)); \
199 bool accepted = msc_a_is_accepted(msub_msc_a(g_msub)); \
200 fprintf(stderr, "msc_a_is_accepted() == %s\n", \
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100201 accepted ? "true" : "false"); \
202 OSMO_ASSERT(accepted == expect_accepted); \
203 } while (false)
204
Maxbb53a3f2018-12-17 17:09:17 +0100205#define VAL_ASSERT(desc, val, expect_op, fmt) \
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100206 do { \
Maxbb53a3f2018-12-17 17:09:17 +0100207 log(desc " == " fmt, (val)); \
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100208 OSMO_ASSERT((val) expect_op); \
Maxbb53a3f2018-12-17 17:09:17 +0100209 } while (0)
210
211#define VERBOSE_ASSERT(val, expect_op, fmt) VAL_ASSERT(#val, val, expect_op, fmt)
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100212
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100213#define EXPECT_CONN_COUNT(N) VERBOSE_ASSERT(llist_count(&msub_list), == N, "%d")
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100214
215#define gsup_expect_tx(hex) do \
216{ \
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200217 if (gsup_tx_expected) { \
218 log("Previous expected GSUP tx was not confirmed!"); \
219 OSMO_ASSERT(!gsup_tx_expected); \
220 } \
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100221 if (!hex) \
222 break; \
223 gsup_tx_expected = hex; \
224 gsup_tx_confirmed = false; \
225} while (0)
226
Neels Hofmeyra99b4272017-11-21 17:13:23 +0100227#define cc_to_mncc_expect_tx(imsi, msg_type) do \
228{ \
229 if (cc_to_mncc_tx_expected_msg_type) { \
230 log("Previous expected MNCC tx was not confirmed!"); \
231 OSMO_ASSERT(!cc_to_mncc_tx_expected_msg_type); \
232 } \
233 cc_to_mncc_tx_expected_imsi = imsi; \
234 cc_to_mncc_tx_expected_msg_type = msg_type; \
235 cc_to_mncc_tx_confirmed = false; \
236} while (0)
237
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100238void fake_time_start();
239
240/* as macro to get the test file's source line number */
241#define fake_time_passes(secs, usecs) do \
242{ \
243 struct timeval diff; \
244 osmo_gettimeofday_override_add(secs, usecs); \
Stefan Sperlingdefc3c82018-05-15 14:48:04 +0200245 osmo_clock_override_add(CLOCK_MONOTONIC, secs, usecs * 1000); \
Neels Hofmeyr6a29d322017-01-25 15:04:16 +0100246 timersub(&osmo_gettimeofday_override_time, &fake_time_start_time, &diff); \
247 btw("Total time passed: %d.%06d s", \
248 (int)diff.tv_sec, (int)diff.tv_usec); \
249 osmo_timers_prepare(); \
250 osmo_timers_update(); \
251} while (0)
252
253extern const struct timeval fake_time_start_time;
Neels Hofmeyr4068ab22018-04-01 20:55:54 +0200254
255#define ASSERT_RELEASE_CLEAR(via_ran) \
256 switch (via_ran) { \
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100257 case OSMO_RAT_GERAN_A: \
Neels Hofmeyr4068ab22018-04-01 20:55:54 +0200258 VERBOSE_ASSERT(bssap_clear_sent, == true, "%d"); \
259 break; \
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100260 case OSMO_RAT_UTRAN_IU: \
Neels Hofmeyr4068ab22018-04-01 20:55:54 +0200261 VERBOSE_ASSERT(iu_release_sent, == true, "%d"); \
262 break; \
263 default: \
264 OSMO_ASSERT(false); \
265 break; \
266 }
267
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100268#define HLR_TO_VLR "0a0101"
269#define VLR_TO_HLR "0a0101"
270#define EUSE_TO_MSC_USSD "0a0103"
271#define MSC_USSD_TO_EUSE "0a0103"
Neels Hofmeyr3f391dd2019-08-29 03:53:11 +0200272
273extern bool got_crcx;
274void expect_crcx(enum rtp_direction towards);