blob: e4b3a4e4d744e563e477748e74885656c3bcbb3f [file] [log] [blame]
Vadim Yanitskiy27605852018-06-15 23:57:30 +07001/*
2 * Osmocom MSC+VLR end-to-end tests
3 *
4 * (C) 2018 by Vadim Yanitskiy <axilirator@gmail.com>
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#include "msc_vlr_tests.h"
Harald Welte0df904d2018-12-03 11:00:04 +010024#include "stubs.h"
Vadim Yanitskiy27605852018-06-15 23:57:30 +070025
26#define IMSI "901700000004620"
27
28#define FACILITY_IE_REQ \
29 "a113" /* Invoke component, len=19 */ \
30 "020101" /* InvokeID=1 */ \
31 "02013b" /* OpCode=GSM0480_OP_CODE_PROCESS_USS_REQ */ \
32 "300b" /* Sequence tag, len=11 */ \
33 "04010f" /* DCS: Default 7-bit alphabet */ \
34 "0406aa510c061b01" /* USSD text: *#100#, len=6 */
35
36#define FACILITY_IE_RSP \
37 "a225" /* ReturnResult, len=37 */ \
38 "020101" /* InvokeID=1 */ \
39 "3020" /* Sequence tag, len=32 */ \
40 "02013b" /* OpCode=GSM0480_OP_CODE_PROCESS_USS_REQ */ \
41 "301b" /* Sequence tag, len=27 */ \
42 "04010f" /* DCS: Default 7-bit alphabet */ \
43 "0416d9775d0e2ae3e965f73cfd7683d27310cd06bbc51a0d"
44
45static void perform_lu(void)
46{
47 struct vlr_subscr *vsub;
48
49 btw("Location Update request causes a GSUP LU request to HLR");
50 lu_result_sent = RES_NONE;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010051 gsup_expect_tx("04010809710000004026f0280102" VLR_TO_HLR);
Vadim Yanitskiy27605852018-06-15 23:57:30 +070052 ms_sends_msg("050802008168000130089910070000006402");
53 OSMO_ASSERT(gsup_tx_confirmed);
54 VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d");
55
56 btw("HLR sends _INSERT_DATA_REQUEST, VLR responds with _INSERT_DATA_RESULT");
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010057 gsup_rx("10010809710000004026f00804036470f1" HLR_TO_VLR,
58 "12010809710000004026f0" VLR_TO_HLR);
Vadim Yanitskiy27605852018-06-15 23:57:30 +070059 VERBOSE_ASSERT(lu_result_sent, == RES_NONE, "%d");
60
61 btw("HLR also sends GSUP _UPDATE_LOCATION_RESULT");
62 expect_bssap_clear();
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010063 gsup_rx("06010809710000004026f0"HLR_TO_VLR, NULL);
Vadim Yanitskiy27605852018-06-15 23:57:30 +070064
65 btw("LU was successful, and the conn has already been closed");
66 VERBOSE_ASSERT(lu_result_sent, == RES_ACCEPT, "%d");
67 VERBOSE_ASSERT(bssap_clear_sent, == true, "%d");
68
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +010069 vsub = vlr_subscr_find_by_imsi(net->vlr, IMSI, __func__);
Vadim Yanitskiy27605852018-06-15 23:57:30 +070070 VERBOSE_ASSERT(vsub != NULL, == true, "%d");
71 VERBOSE_ASSERT(strcmp(vsub->imsi, IMSI), == 0, "%d");
Max7d41d872018-12-19 11:48:33 +010072 VAL_ASSERT("LAC", vsub->cgi.lai.lac, == 23, "%u");
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +010073 vlr_subscr_put(vsub, __func__);
Vadim Yanitskiy27605852018-06-15 23:57:30 +070074
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010075 ran_sends_clear_complete();
Vadim Yanitskiy27605852018-06-15 23:57:30 +070076 EXPECT_CONN_COUNT(0);
77}
78
Neels Hofmeyr7814a832018-12-26 00:40:18 +010079static void _test_ss_ussd_mo(enum osmo_rat_type via_ran)
Vadim Yanitskiy27605852018-06-15 23:57:30 +070080{
81 /* TODO: UTRAN requires auth and ciph */
82 rx_from_ran = via_ran;
83
84 /* Perform Location Update */
85 perform_lu();
86
87 BTW("after a while, a new conn sends a CM Service Request");
88
89 cm_service_result_sent = RES_NONE;
90 ms_sends_msg("05247803305886089910070000006402");
Vadim Yanitskiy27605852018-06-15 23:57:30 +070091 VERBOSE_ASSERT(cm_service_result_sent, == RES_ACCEPT, "%d");
92 EXPECT_ACCEPTED(true);
93
94 /* MT: GSM 04.80 RELEASE COMPLETE with Facility IE */
Vadim Yanitskiy8a6ef552018-06-12 08:21:20 +070095 gsup_expect_tx("20" /* OSMO_GSUP_MSGT_PROC_SS_REQUEST */
96 "0108" "09710000004026f0" /* IMSI TLV */
97 "3004" "20000001" /* Session ID TLV */
98 "3101" "01" /* Session state: BEGIN */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010099 "3515" FACILITY_IE_REQ MSC_USSD_TO_EUSE);
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700100 dtap_expect_tx("8b2a" "1c27" FACILITY_IE_RSP);
101 expect_release_clear(via_ran);
102
103 /* MO: GSM 04.80 REGISTER with Facility IE and SS version IE */
104 ms_sends_msg("0b7b" "1c15" FACILITY_IE_REQ "7f0100");
Vadim Yanitskiy8a6ef552018-06-12 08:21:20 +0700105 gsup_rx("20" /* OSMO_GSUP_MSGT_PROC_SS_REQUEST */
106 "0108" "09710000004026f0" /* IMSI TLV */
107 "3004" "20000001" /* Session ID TLV */
108 "3101" "03" /* Session state: END */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100109 "3527" FACILITY_IE_RSP EUSE_TO_MSC_USSD, NULL);
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700110 VERBOSE_ASSERT(dtap_tx_confirmed, == true, "%d");
111 ASSERT_RELEASE_CLEAR(via_ran);
112
113 btw("all requests serviced, conn has been released");
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100114 ran_sends_clear_complete();
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700115 EXPECT_CONN_COUNT(0);
116}
117
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100118static void _test_ss_ussd_no(enum osmo_rat_type via_ran)
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700119{
120 struct vlr_subscr *vsub;
121
122 /* TODO: UTRAN requires auth and ciph */
123 rx_from_ran = via_ran;
124
125 /* Perform Location Update */
126 perform_lu();
127
128 BTW("after a while, HLR initiates SS/USSD session");
129
130 paging_expect_imsi(IMSI);
131 paging_sent = false;
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100132 vsub = vlr_subscr_find_by_imsi(net->vlr, IMSI, __func__);
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700133 OSMO_ASSERT(vsub);
134 VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 0, "%d");
135
136 /* MT: GSM 04.80 REGISTER with request */
137 gsup_rx("20" /* OSMO_GSUP_MSGT_PROC_SS_REQUEST */
138 "0108" "09710000004026f0" /* IMSI TLV */
139 "3004" "20000101" /* Session ID TLV */
140 "3101" "01" /* Session state: BEGIN */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100141 "3515" FACILITY_IE_REQ EUSE_TO_MSC_USSD, NULL);
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700142
143 VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 1, "%d");
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100144 vlr_subscr_put(vsub, __func__);
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700145 vsub = NULL;
146 VERBOSE_ASSERT(paging_sent, == true, "%d");
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700147
148 btw("the subscriber and its pending request should remain");
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100149 vsub = vlr_subscr_find_by_imsi(net->vlr, IMSI, __func__);
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700150 OSMO_ASSERT(vsub);
151 VERBOSE_ASSERT(llist_count(&vsub->cs.requests), == 1, "%d");
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100152 vlr_subscr_put(vsub, __func__);
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700153
154 btw("MS replies with Paging Response, we deliver the NC/USSD");
155
156 dtap_expect_tx("0b3b" "1c15" FACILITY_IE_REQ);
157 ms_sends_msg("06270703305882089910070000006402");
158 VERBOSE_ASSERT(dtap_tx_confirmed, == true, "%d");
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700159
160 btw("MS responds to SS/USSD request");
161
162 /* MO: GSM 04.80 FACILITY with response */
163 gsup_expect_tx("20" /* OSMO_GSUP_MSGT_PROC_SS_REQUEST */
164 "0108" "09710000004026f0" /* IMSI TLV */
165 "3004" "20000101" /* Session ID TLV */
166 "3101" "02" /* Session state: CONTINUE */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100167 "3527" FACILITY_IE_RSP MSC_USSD_TO_EUSE);
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700168 ms_sends_msg("8b3a" "27" FACILITY_IE_RSP);
169 VERBOSE_ASSERT(dtap_tx_confirmed, == true, "%d");
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700170
171 btw("HLR terminates the session");
172
173 /* MT: GSM 04.80 RELEASE COMPLETE without Facility IE */
174 dtap_expect_tx("0b2a");
175 expect_release_clear(via_ran);
176 gsup_rx("20" /* OSMO_GSUP_MSGT_PROC_SS_REQUEST */
177 "0108" "09710000004026f0" /* IMSI TLV */
178 "3004" "20000101" /* Session ID TLV */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100179 "3101" "03" EUSE_TO_MSC_USSD, /* Session state: END */
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700180 NULL);
181 VERBOSE_ASSERT(dtap_tx_confirmed, == true, "%d");
182 ASSERT_RELEASE_CLEAR(via_ran);
183
184 btw("all requests serviced, conn has been released");
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100185 ran_sends_clear_complete();
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700186 EXPECT_CONN_COUNT(0);
187}
188
189static void test_ss_ussd_mo_geran()
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700190{
191 comment_start();
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100192 _test_ss_ussd_mo(OSMO_RAT_GERAN_A);
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700193 clear_vlr();
194 comment_end();
195}
196
197static void test_ss_ussd_no_geran()
198{
199 comment_start();
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100200 _test_ss_ussd_no(OSMO_RAT_GERAN_A);
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700201 clear_vlr();
202 comment_end();
203}
204
205msc_vlr_test_func_t msc_vlr_tests[] = {
206 /* TODO: UTRAN requires auth and enc */
Vadim Yanitskiyf2f83b02018-06-17 21:09:28 +0700207 test_ss_ussd_mo_geran, /* MS-originated */
208 test_ss_ussd_no_geran, /* Network-originated */
Vadim Yanitskiy27605852018-06-15 23:57:30 +0700209 NULL
210};