blob: 675c435ad4cc571edaf1afef0554c4e656424d97 [file] [log] [blame]
Harald Welte379d45a2017-08-03 09:55:15 +02001module GGSN_Tests {
2
Harald Welte34b5a952019-05-27 11:54:11 +02003/* GGSN test suite in TTCN-3
4 * (C) 2017-2019 Harald Welte <laforge@gnumonks.org>
5 * (C) 2018-2019 sysmocom - s.f.m.c. GmbH
6 * All rights reserved.
7 *
8 * Released under the terms of GNU General Public License, Version 2 or
9 * (at your option) any later version.
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 */
13
14
Harald Welte94ade362017-08-04 00:36:55 +020015 import from General_Types all;
Harald Welte811651e2017-08-05 15:25:06 +020016 import from Osmocom_Types all;
Pau Espin Pedrolc04c69e2020-03-03 16:46:29 +010017 import from Misc_Helpers all;
Harald Welte94ade362017-08-04 00:36:55 +020018 import from IPL4asp_PortType all;
19 import from IPL4asp_Types all;
20 import from GTP_CodecPort all;
21 import from GTP_CodecPort_CtrlFunct all;
Harald Weltec69cf4e2018-02-17 20:57:02 +010022 import from GTP_Templates all;
Harald Welte94ade362017-08-04 00:36:55 +020023 import from GTPC_Types all;
24 import from GTPU_Types all;
Harald Welte71a36022017-12-04 18:55:58 +010025 import from IPCP_Types all;
Harald Weltef8298542019-04-10 10:15:28 +020026 import from PAP_Types all;
Harald Welte231b9412017-08-09 17:16:31 +020027 import from IP_Types all;
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +010028 import from ICMP_Types all;
Harald Welte231b9412017-08-09 17:16:31 +020029 import from ICMPv6_Types all;
Harald Welteddeecbb2017-08-18 22:53:30 +020030 import from Native_Functions all;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +020031 import from Osmocom_VTY_Functions all;
32 import from TELNETasp_PortType all;
Harald Welte94ade362017-08-04 00:36:55 +020033
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +010034 import from DIAMETER_Types all;
35 import from DIAMETER_Templates all;
36 import from DIAMETER_Emulation all;
37
Harald Welte94ade362017-08-04 00:36:55 +020038 const integer GTP0_PORT := 3386;
39 const integer GTP1C_PORT := 2123;
40 const integer GTP1U_PORT := 2152;
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +010041 const integer PCRF_PORT := 3868;
Harald Welteddeecbb2017-08-18 22:53:30 +020042
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +010043 type enumerated GGSN_Impl {
44 GGSN_IMPL_OSMOCOM,
45 GGSN_IMPL_OPEN5GS
46 };
47
Harald Welteddeecbb2017-08-18 22:53:30 +020048 modulepar {
Stefan Sperlingcb782b92018-04-03 16:03:15 +020049 /* Default IP addresses. May be overridden by GGSN_Tests configuration files. */
50
51 /* The SGSN simulated by TTCN3 will bind to these addresses for GTP control and GTP user planes. */
Harald Welteddeecbb2017-08-18 22:53:30 +020052 charstring m_bind_ip_gtpc := "127.23.42.1";
53 charstring m_bind_ip_gtpu := "127.23.42.1";
54
Stefan Sperlingcb782b92018-04-03 16:03:15 +020055 /* Addresses the GGSN which is being tested is listening on for SGSN connections. */
Harald Welteddeecbb2017-08-18 22:53:30 +020056 charstring m_ggsn_ip_gtpc := "127.0.0.6";
57 charstring m_ggsn_ip_gtpu := "127.0.0.6";
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +010058
Stefan Sperlingcb782b92018-04-03 16:03:15 +020059 /*
60 * Our tests expect to see these DNS servers in 'Create PDP context responses' sent by the GGSN.
61 * These addresses must therefore match 'ip[v6] dns' options configured in osmo-ggsn.conf.
62 *
63 * These addresses are not expected to serve actual DNS requests. However, tests may expect to be
64 * able to ping these addresses (currently, IPv4 addresses must respond with an ICMP 'echo reply',
65 * and IPv6 addresses may respond with either ICMPv6 'echo reply' or 'destination unreachable').
66 */
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +010067 charstring m_ggsn_ip4_dns1 := "192.168.100.1"
68 charstring m_ggsn_ip4_dns2 := "8.8.8.8"
Pau Espin Pedrol363ba482018-01-29 18:42:00 +010069 charstring m_ggsn_ip6_dns1 := "2001:4860:4860::8888"
70 charstring m_ggsn_ip6_dns2 := "2001:4860:4860::8844"
Stefan Sperlingcb782b92018-04-03 16:03:15 +020071
72 /*
73 * Additional address ranges are defined in osmo-ggsn.conf from which addresses are assigned
74 * to MS "behind" the simulated SGSN. These addresses appear on tun devices used by osmo-ggsn.
75 * The tests expect to be able to send ping packets between any two simulated MS within the same
76 * address range. This requires IP forwarding to be enabled on the corresponding tun interfaces.
77 */
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +010078
79 GGSN_Impl m_ggsn_impl := GGSN_IMPL_OSMOCOM;
Harald Welteddeecbb2017-08-18 22:53:30 +020080 }
Harald Welte94ade362017-08-04 00:36:55 +020081
Harald Welte811651e2017-08-05 15:25:06 +020082 type set PdpContext {
83 hexstring imsi,
84 octetstring msisdn optional,
85 octetstring apn,
Harald Welteed7a1772017-08-09 20:26:20 +020086 ProtConfigOptions pco_req optional,
87 ProtConfigOptions pco_neg optional,
Harald Welte811651e2017-08-05 15:25:06 +020088 EndUserAddress eua,
Harald Welte231b9412017-08-09 17:16:31 +020089 OCT16 ip6_prefix optional,
Harald Welte811651e2017-08-05 15:25:06 +020090 BIT4 nsapi,
91 /* TEI (Data) local side */
92 OCT4 teid,
93 /* TEI (Control) local side */
94 OCT4 teic,
95 /* TEI (Data) remote side */
96 OCT4 teid_remote,
97 /* TEI (Control) remote side */
Pau Espin Pedrol38aeffb2022-02-01 20:46:29 +010098 OCT4 teic_remote,
Pau Espin Pedrolca587f12022-02-02 10:42:01 +010099 OCT1 ratType optional,
100 UserLocationInformation uli optional
Harald Welte811651e2017-08-05 15:25:06 +0200101 }
102
Harald Welte94ade362017-08-04 00:36:55 +0200103 type component GT_CT {
104 port GTPC_PT GTPC;
105 port GTPU_PT GTPU;
106
Harald Welte0be142b2017-08-13 13:28:10 +0200107 var boolean g_initialized := false;
108
Harald Welte94ade362017-08-04 00:36:55 +0200109 var OCT1 g_restart_ctr := '01'O;
110 /* FIXME: unify with g_bind_ip + parse from config file */
Harald Welteddeecbb2017-08-18 22:53:30 +0200111 var OCT4 g_sgsn_ip_c;
112 var OCT4 g_sgsn_ip_u;
Harald Welte94ade362017-08-04 00:36:55 +0200113 /* FIXME: parse remName from config file */
Harald Welteddeecbb2017-08-18 22:53:30 +0200114 var GtpPeer g_peer_c := { connId := 0, remName := m_ggsn_ip_gtpc, remPort := GTP1C_PORT };
115 var GtpPeer g_peer_u := { connId := 0, remName := m_ggsn_ip_gtpu, remPort := GTP1U_PORT };
Harald Welte94ade362017-08-04 00:36:55 +0200116 timer T_default := 3.0;
Harald Welte5438b9d2017-08-13 13:27:48 +0200117
118 /* next to-be-sent GTP-C sequence number */
119 var uint16_t g_c_seq_nr;
120 /* next to-be-sent GTP-U sequence number */
121 var uint16_t g_d_seq_nr;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200122
123 port TELNETasp_PT GGSNVTY;
Harald Welted2394e92018-04-26 10:21:49 +0200124 var boolean use_gtpu_txseq := false;
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200125 var boolean g_use_echo := false;
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100126
127 /* emulated PCRF, used with m_ggsn_impl = GGSN_IMPL_OPEN5GS */
128 var DIAMETER_Emulation_CT vc_DIAMETER;
129 port DIAMETER_PT DIAMETER_UNIT;
130 port DIAMETEREM_PROC_PT DIAMETER_PROC;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200131 }
132
133 private function f_init_vty() runs on GT_CT {
134 map(self:GGSNVTY, system:GGSNVTY);
135 f_vty_set_prompts(GGSNVTY);
136 f_vty_transceive(GGSNVTY, "enable");
137 }
138
139 private function f_vty_set_gpdu_txseq(boolean enable) runs on GT_CT {
140 f_vty_enter_config(GGSNVTY);
141 f_vty_transceive(GGSNVTY, "ggsn ggsn0");
Pau Espin Pedrol205a3842018-07-06 13:24:14 +0200142
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200143 f_vty_transceive(GGSNVTY, "apn internet");
144 if (enable) {
145 f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers");
146 } else {
147 f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers");
148 }
Pau Espin Pedrol205a3842018-07-06 13:24:14 +0200149 f_vty_transceive(GGSNVTY, "exit");
150
151 f_vty_transceive(GGSNVTY, "apn inet6");
152 if (enable) {
153 f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers");
154 } else {
155 f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers");
156 }
157 f_vty_transceive(GGSNVTY, "exit");
158
159 f_vty_transceive(GGSNVTY, "apn inet46");
160 if (enable) {
161 f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers");
162 } else {
163 f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers");
164 }
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200165 f_vty_transceive(GGSNVTY, "end");
166 }
167
168 private function f_verify_gtpu_txseq(in PDU_GTPU gtpu, in boolean expect_gptu_txseq) return boolean {
169 if (expect_gptu_txseq) {
170 if (gtpu.s_bit != '1'B) {
171 log("GTPU sequence number expected but not present")
172 return false;
173 }
174 } else {
175 if (gtpu.s_bit != '0'B) {
176 log("GTPU sequence number not expected but present")
177 return false;
178 }
179 }
180 return true;
Harald Welte94ade362017-08-04 00:36:55 +0200181 }
182
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200183 private function f_vty_enable_echo_interval(boolean enable) runs on GT_CT {
184 f_vty_enter_config(GGSNVTY);
185 f_vty_transceive(GGSNVTY, "ggsn ggsn0");
186 if (enable) {
187 f_vty_transceive(GGSNVTY, "echo-interval 5");
188 } else {
189 f_vty_transceive(GGSNVTY, "no echo-interval");
190 }
191 f_vty_transceive(GGSNVTY, "end");
192 }
193
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100194 private function DiameterForwardUnitdataCallback(PDU_DIAMETER msg)
195 runs on DIAMETER_Emulation_CT return template PDU_DIAMETER {
196 DIAMETER_UNIT.send(msg);
197 return omit;
198 }
199
200 private function f_init_diameter(charstring id) runs on GT_CT {
201 var DIAMETEROps ops := {
202 create_cb := refers(DIAMETER_Emulation.ExpectedCreateCallback),
203 unitdata_cb := refers(DiameterForwardUnitdataCallback),
204 raw := true /* handler mode (single component for all IMSI)) */
205 };
206 var DIAMETER_conn_parameters pars := {
207 remote_ip := m_ggsn_ip_gtpc,
208 remote_sctp_port := -1,
209 local_ip := m_bind_ip_gtpc,
210 local_sctp_port := PCRF_PORT,
211 origin_host := "ttcn3ggsntest.localdomain",
212 origin_realm := "localdomain",
213 vendor_app_id := c_DIAMETER_3GPP_Gx_AID
214 };
215 vc_DIAMETER := DIAMETER_Emulation_CT.create(id);
216 map(vc_DIAMETER:DIAMETER, system:DIAMETER_CODEC_PT);
217 connect(vc_DIAMETER:DIAMETER_UNIT, self:DIAMETER_UNIT);
218 connect(vc_DIAMETER:DIAMETER_PROC, self:DIAMETER_PROC);
219 vc_DIAMETER.start(DIAMETER_Emulation.main(ops, pars, id));
220
221 f_diameter_wait_capability(DIAMETER_UNIT);
222 /* Give some time for our emulation to get out of SUSPECT list of SUT (3 watchdong ping-pongs):
223 * RFC6733 sec 5.1
224 * RFC3539 sec 3.4.1 [5]
225 * https://github.com/freeDiameter/freeDiameter/blob/master/libfdcore/p_psm.c#L49
226 */
227 f_sleep(1.0);
228 }
229
Harald Welte94ade362017-08-04 00:36:55 +0200230 function f_init() runs on GT_CT {
Harald Welte0be142b2017-08-13 13:28:10 +0200231 if (g_initialized == true) {
232 return;
233 }
234 g_initialized := true;
235
Harald Welteddeecbb2017-08-18 22:53:30 +0200236 g_sgsn_ip_c := f_inet_addr(m_bind_ip_gtpc);
237 g_sgsn_ip_u := f_inet_addr(m_bind_ip_gtpu);
238
Harald Welte94ade362017-08-04 00:36:55 +0200239 var Result res;
240 map(self:GTPC, system:GTPC);
Harald Welteddeecbb2017-08-18 22:53:30 +0200241 res := GTP_CodecPort_CtrlFunct.f_IPL4_listen(GTPC, m_bind_ip_gtpc, GTP1C_PORT, {udp:={}});
Harald Welte94ade362017-08-04 00:36:55 +0200242 log("GTP1C ConnectionID: ", res.connId);
Harald Welte811651e2017-08-05 15:25:06 +0200243 g_peer_c.connId := res.connId;
Harald Welte94ade362017-08-04 00:36:55 +0200244
245 map(self:GTPU, system:GTPU);
Harald Welteddeecbb2017-08-18 22:53:30 +0200246 res := GTP_CodecPort_CtrlFunct.f_GTPU_listen(GTPU, m_bind_ip_gtpu, GTP1U_PORT, {udp:={}});
Harald Welte811651e2017-08-05 15:25:06 +0200247 g_peer_u.connId:= res.connId;
Harald Welte5438b9d2017-08-13 13:27:48 +0200248
249 g_restart_ctr := f_rnd_octstring(1);
Harald Welte11dbc7b2017-08-13 18:57:56 +0200250 g_c_seq_nr := f_rnd_int(65535);
251 g_d_seq_nr := f_rnd_int(65535);
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200252
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +0100253 if (m_ggsn_impl == GGSN_IMPL_OSMOCOM) {
254 f_init_vty();
255 f_vty_set_gpdu_txseq(use_gtpu_txseq);
256 f_vty_enable_echo_interval(g_use_echo);
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100257 } else if (m_ggsn_impl == GGSN_IMPL_OPEN5GS) {
258 f_init_diameter(testcasename());
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +0100259 }
Harald Welte94ade362017-08-04 00:36:55 +0200260 }
261
Harald Welte94ade362017-08-04 00:36:55 +0200262 /* Altstep implementing responses to any incoming echo requests */
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100263 private altstep pingpong() runs on GT_CT {
Harald Welte94ade362017-08-04 00:36:55 +0200264 var Gtp1cUnitdata ud;
Harald Welte3af89482017-08-04 16:20:23 +0200265 var Gtp1uUnitdata udu;
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200266 [g_use_echo] GTPC.receive(tr_GTPC_PING(?)) -> value ud {
Harald Welte811651e2017-08-05 15:25:06 +0200267 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200268 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
Harald Welte94ade362017-08-04 00:36:55 +0200269 repeat;
270 };
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200271 [not g_use_echo] GTPC.receive(tr_GTPC_PING(?)) {
Pau Espin Pedrolc04c69e2020-03-03 16:46:29 +0100272 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
273 "GTP Echo Req rceived but not enabled in VTY");
Harald Welte3af89482017-08-04 16:20:23 +0200274 };
Pau Espin Pedrolc04c69e2020-03-03 16:46:29 +0100275 [] T_default.timeout {
276 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
277 "pinpong T_default timeout");
278 };
Harald Welte94ade362017-08-04 00:36:55 +0200279 }
280
Harald Welte811651e2017-08-05 15:25:06 +0200281 /* 'internet' in DNS encoding */
Harald Welteed097432017-08-13 13:28:49 +0200282 const octetstring c_ApnInternet := '08696E7465726E6574'O;
283 const octetstring c_ApnInet6 := '05696E657436'O;
284 const octetstring c_ApnInet46 := '06696E65743436'O;
Harald Welte94ade362017-08-04 00:36:55 +0200285
Harald Welte811651e2017-08-05 15:25:06 +0200286 /* return random NSAPI */
287 function f_rnd_nsapi() return BIT4 {
288 return int2bit(f_rnd_int(16), 4);
289 }
290
291 /* return random TEI[DC] */
292 function f_rnd_tei() return OCT4 {
293 return int2oct(f_rnd_int(4294967296), 4);
294 }
295
296 /* define an (internal) representation of a PDP context */
297 template PdpContext t_DefinePDP(hexstring imsi, octetstring msisdn, octetstring apn,
Pau Espin Pedrol38aeffb2022-02-01 20:46:29 +0100298 EndUserAddress eua, OCT1 ratType := '02'O /* GERAN */) := {
Harald Welte811651e2017-08-05 15:25:06 +0200299 imsi := imsi,
300 msisdn := msisdn,
301 nsapi := f_rnd_nsapi(),
302 apn := apn,
Harald Welteed7a1772017-08-09 20:26:20 +0200303 pco_req := omit,
Harald Welte811651e2017-08-05 15:25:06 +0200304 eua := eua,
305 teid := f_rnd_tei(),
Pau Espin Pedrol38aeffb2022-02-01 20:46:29 +0100306 teic := f_rnd_tei(),
Pau Espin Pedrolca587f12022-02-02 10:42:01 +0100307 ratType := ratType,
308 uli := {
309 type_gtpc := '98'O,
310 lengthf := 0 /* filled in by encoder */,
311 geographicLocationType := '00'O /* CGI */,
312 geographicLocation := {
313 geographicLocationCGI := ts_GeographicLocationCGI('262'H, '42F'H, '0001'O, '0002'O)
314 }
315 }
Harald Welte811651e2017-08-05 15:25:06 +0200316 }
317
318 /* send GTP-C for a given context and increment sequence number */
Harald Welte41575e92017-08-13 13:49:57 +0200319 function f_send_gtpc(in template Gtp1cUnitdata data) runs on GT_CT {
Harald Welte811651e2017-08-05 15:25:06 +0200320 GTPC.send(data);
Harald Welte5438b9d2017-08-13 13:27:48 +0200321 g_c_seq_nr := g_c_seq_nr + 1;
Harald Welte811651e2017-08-05 15:25:06 +0200322 }
323
324 /* send GTP-U for a given context and increment sequence number */
Harald Welte231b9412017-08-09 17:16:31 +0200325 function f_send_gtpu(inout PdpContext ctx, in octetstring data) runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +0200326 if (use_gtpu_txseq) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200327 GTPU.send(ts_GTP1U_GPDU(g_peer_u, g_d_seq_nr, ctx.teid_remote, data));
328 g_d_seq_nr := g_d_seq_nr + 1;
329 } else {
330 GTPU.send(ts_GTP1U_GPDU(g_peer_u, omit, ctx.teid_remote, data));
331 }
Harald Welte811651e2017-08-05 15:25:06 +0200332 }
333
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200334 function f_handle_create_req(inout PdpContext ctx, in Gtp1cUnitdata ud, in OCT1 exp_cause := '80'O) runs on GT_CT {
335 var CreatePDPContextResponse cpr := ud.gtpc.gtpc_pdu.createPDPContextResponse;
336 if (exp_cause == '80'O and exp_cause == cpr.cause.causevalue) {
337 /* Check if EUA type corresponds to requested type */
338 if (match(ctx.eua, t_EuaIPv4(?)) and
339 not match(cpr.endUserAddress, tr_EuaIPv4(?))){
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100340 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
341 "EUAv4 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200342 }
343 if (match(ctx.eua, t_EuaIPv6(?)) and
344 not match(cpr.endUserAddress, tr_EuaIPv6(?))) {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100345 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
346 "EUAv6 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200347 }
348 if (match(ctx.eua, t_EuaIPv4v6(?, ?)) and
349 not match(cpr.endUserAddress, tr_EuaIPv4v6(?, ?))) {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100350 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
351 "EUAv4v6 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200352 }
353 /* Check if PCO response corresponds to request */
354 if (ispresent(ctx.pco_req)) {
355 if (match(ctx.pco_req, ts_PCO_IPv4_DNS_CONT) and
356 not match(cpr.protConfigOptions, tr_PCO_IPv4_DNS_CONT_resp(?))) {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100357 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
358 "IPv4 DNS Container requested, but missing");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200359 }
360 if (match(ctx.pco_req, ts_PCO_IPv6_DNS) and
361 not match(cpr.protConfigOptions, tr_PCO_IPv6_DNS_resp(?))) {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100362 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
363 "IPv6 DNS Container requested, but missing");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200364 }
365 }
366 ctx.teid_remote := cpr.teidDataI.teidDataI;
367 ctx.teic_remote := cpr.teidControlPlane.teidControlPlane;
368 ctx.eua := cpr.endUserAddress;
369 ctx.pco_neg := cpr.protConfigOptions;
370 setverdict(pass);
371 } else if (exp_cause != '80'O and exp_cause == cpr.cause.causevalue) {
372 if (ispresent(cpr.endUserAddress)) {
373 log("EUA received on createPDPContextResponse cause=" & oct2str(cpr.cause.causevalue));
374 setverdict(fail);
375 }
376 setverdict(pass);
377 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100378 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
379 "CreatePDPContextResp: cause expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200380 }
381 }
382
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100383 function f_handle_update_req(inout PdpContext ctx, in Gtp1cUnitdata ud, in OCT1 exp_cause := '80'O) runs on GT_CT {
384 var UpdatePDPContextResponseGGSN upr := ud.gtpc.gtpc_pdu.updatePDPContextResponse.updatePDPContextResponseGGSN;
385 if (exp_cause == '80'O and exp_cause == upr.cause.causevalue) {
386 ctx.teid_remote := upr.teidDataI.teidDataI;
387 ctx.teic_remote := upr.teidControlPlane.teidControlPlane;
388 if (ispresent(upr.protConfigOptions)) {
389 ctx.pco_neg := upr.protConfigOptions;
390 }
391 setverdict(pass);
392 } else if (exp_cause != '80'O and exp_cause == upr.cause.causevalue) {
393 setverdict(pass);
394 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100395 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
396 "UpdatePDPContextResp: cause expectancies didn't match");
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100397 }
398 }
399
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100400 private altstep as_DIA_CCR(DCC_NONE_CC_Request_Type req_type) runs on GT_CT {
401 var PDU_DIAMETER rx_dia;
402 [] DIAMETER_UNIT.receive(tr_DIA_CCR(req_type := req_type)) -> value rx_dia {
403 var template (omit) AVP avp;
404 var octetstring sess_id;
405 var AVP_Unsigned32 req_num;
406
407 avp := f_DIAMETER_get_avp(rx_dia, c_AVP_Code_BASE_NONE_Session_Id);
408 sess_id := valueof(avp.avp_data.avp_BASE_NONE_Session_Id);
409
410 avp := f_DIAMETER_get_avp(rx_dia, c_AVP_Code_DCC_NONE_CC_Request_Number);
411 req_num := valueof(avp.avp_data.avp_DCC_NONE_CC_Request_Number);
412
413 DIAMETER_UNIT.send(ts_DIA_CCA(rx_dia.hop_by_hop_id, rx_dia.end_to_end_id, sess_id,
414 req_type, req_num));
415 }
416 [] DIAMETER_UNIT.receive(PDU_DIAMETER:?) -> value rx_dia {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100417 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
418 log2str("Received unexpected DIAMETER ", rx_dia));
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100419 }
420 }
421
Harald Welte811651e2017-08-05 15:25:06 +0200422 /* send a PDP context activation */
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +0200423 function f_pdp_ctx_act(inout PdpContext ctx, OCT1 exp_cause := '80'O) runs on GT_CT {
Harald Welte94ade362017-08-04 00:36:55 +0200424 var Gtp1cUnitdata ud;
Harald Welte94ade362017-08-04 00:36:55 +0200425 var default d;
426
427 log("sending CreatePDP");
Harald Welte41575e92017-08-13 13:49:57 +0200428 f_send_gtpc(ts_GTPC_CreatePDP(g_peer_c, g_c_seq_nr, ctx.imsi, g_restart_ctr,
Harald Welte811651e2017-08-05 15:25:06 +0200429 ctx.teid, ctx.teic, ctx.nsapi, ctx.eua, ctx.apn,
Pau Espin Pedrolca587f12022-02-02 10:42:01 +0100430 g_sgsn_ip_c, g_sgsn_ip_u, ctx.msisdn, ctx.pco_req, ctx.ratType, ctx.uli));
Harald Welte94ade362017-08-04 00:36:55 +0200431 T_default.start;
Harald Welte94ade362017-08-04 00:36:55 +0200432 d := activate(pingpong());
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100433 if (DIAMETER_PROC.checkstate("Connected")) {
434 as_DIA_CCR(INITIAL_REQUEST);
435 }
Harald Welte94ade362017-08-04 00:36:55 +0200436 alt {
Harald Welte811651e2017-08-05 15:25:06 +0200437 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ctx.teic)) -> value ud {
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200438 f_handle_create_req(ctx, ud, exp_cause);
Harald Welte94ade362017-08-04 00:36:55 +0200439 }
440 }
441 deactivate(d);
Harald Welte811651e2017-08-05 15:25:06 +0200442 T_default.stop;
Harald Welte94ade362017-08-04 00:36:55 +0200443 }
444
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200445 function f_pdp_ctx_exp_del_req(PdpContext ctx, template (omit) OCT1 expect_cause := omit, boolean expect_teardown := false) runs on GT_CT {
446 var Gtp1cUnitdata ud;
447 var default d;
448
449 T_default.start;
450 d := activate(pingpong());
451 alt {
452 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctx.teic)) -> value ud {
453 if (istemplatekind(expect_cause, "omit") and not ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue)) {
454 setverdict(pass);
455 } else if (not istemplatekind(expect_cause, "omit") and
456 ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue) and
457 ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue == valueof(expect_cause)) {
458 setverdict(pass);
459 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100460 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
461 "DeletePDPContextReq: cause expectancies didn't match");
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200462 }
463
464 if (expect_teardown == ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.tearDownIndicator)) {
465 setverdict(pass);
466 } else {
467 setverdict(fail);
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100468 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
469 "DeletePDPContextReq: tearDownIndicator expectancies didn't match");
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200470 }
471 }
472 }
473 deactivate(d);
474 T_default.stop;
475 }
476
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +0200477 function f_pdp_ctx_del(PdpContext ctx, template BIT1 teardown_ind, OCT1 expect_causevalue := '80'O) runs on GT_CT {
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200478 var Gtp1cUnitdata ud;
479 var default d;
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +0200480 var OCT4 expect_teid;
481
482 /* 3GPP TS 29.060 sec 7.3.6 specifies TEID used in response
483 message with cause value "Non existent" shall be zero. */
484 if (expect_causevalue == 'C0'O) {
485 expect_teid := '00000000'O;
486 } else {
487 expect_teid := ctx.teic;
488 }
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200489
Harald Welte41575e92017-08-13 13:49:57 +0200490 f_send_gtpc(ts_GTPC_DeletePDP(g_peer_c, g_c_seq_nr, ctx.teic_remote, ctx.nsapi, teardown_ind));
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200491 T_default.start;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200492 d := activate(pingpong());
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100493 if (DIAMETER_PROC.checkstate("Connected")) {
494 as_DIA_CCR(TERMINATION_REQUEST);
495 }
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200496 alt {
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +0200497 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextResponse, expect_teid)) -> value ud {
498 if (ud.gtpc.gtpc_pdu.deletePDPContextResponse.cause.causevalue == expect_causevalue) {
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200499 setverdict(pass);
500 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100501 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
502 "DeletePDPContextResp: cause expectancies didn't match");
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200503 }
504 }
505 }
506 deactivate(d);
Harald Welte811651e2017-08-05 15:25:06 +0200507 T_default.stop;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200508 }
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100509
510 /* send a Update PdP Context Request, expect Response */
511 function f_pdp_ctx_update(inout PdpContext ctx, OCT1 exp_cause := '80'O, template (omit) OCT4 new_teid := omit, template (omit) OCT4 new_teic := omit) runs on GT_CT {
512 var Gtp1cUnitdata ud;
513 var default d;
514
515 if (not istemplatekind(new_teid, "omit")) {
516 ctx.teid := valueof(new_teid);
517 }
518 if (not istemplatekind(new_teic, "omit")) {
519 ctx.teic := valueof(new_teic);
520 }
521
522 log("sending UpdatePDP");
523 f_send_gtpc(ts_GTPC_UpdatePDP(g_peer_c, ctx.teic_remote, g_c_seq_nr, ctx.imsi, g_restart_ctr,
524 ctx.teid, ctx.teic, ctx.nsapi, g_sgsn_ip_c, g_sgsn_ip_u,
525 ctx.pco_req, ctx.ratType, ctx.uli));
526 T_default.start;
527 d := activate(pingpong());
528 alt {
529 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, updatePDPContextResponse, ctx.teic)) -> value ud {
530 f_handle_update_req(ctx, ud, exp_cause);
531 }
532 }
533 deactivate(d);
534 T_default.stop;
535 }
536
Harald Welte811651e2017-08-05 15:25:06 +0200537 /* IPv6 router solicitation fe80::2 -> ff02::2 from 02:88:b5:1f:25:59 */
538 const octetstring c_router_solicit := '6000000000103afffe800000000000000000000000000002ff02000000000000000000000000000285009f2b0000000001010288b51f2559'O;
539 /* IPv6 neighbor solicitation fe80::2 -> ff02::1:ff00:2 from 02:88:b5:1f:25:59 */
540 const octetstring c_neigh_solicit:= '6000000000203afffe800000000000000000000000000002ff0200000000000000000001ff00000287009f9600000000fe80000000000000000000000000000201010288b51f2559'O;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200541
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200542 /* template for sending an ICMPv4 echo request */
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100543 template PDU_ICMP ts_ICMPv4_ERQ := {
544 echo := {
545 type_field := 8,
546 code := 0,
547 checksum := '0000'O,
548 identifier := '0345'O,
549 sequence_number := '0001'O,
550 data := ''O
551 }
552 }
553
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200554 /* template for receiving/matching an ICMPv4 echo request */
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +0100555 template PDU_ICMP tr_ICMPv4_ERQ := {
556 echo := {
557 type_field := 8,
558 code := 0,
559 checksum := ?,
560 identifier := ?,
561 sequence_number := ?,
562 data := ?
563 }
564 }
565
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200566 /* template for receiving/matching an ICMPv4 echo reply */
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100567 template PDU_ICMP tr_ICMPv4_ERP(template octetstring data := *) := {
568 echo_reply := {
569 type_field := 0,
570 code := 0,
571 checksum := ?,
572 identifier := ?,
573 sequence_number := ?,
574 data := data
575 }
576 }
577
578 /* template for receiving/matching an ICMPv6 Destination Unreachable */
579 template PDU_ICMP tr_ICMPv4_DU := {
580 destination_unreachable := {
581 type_field := 1,
582 code := ?,
583 checksum := ?,
584 unused := ?,
585 original_ip_msg := ?
586 }
587 }
588
589 /* template to construct IPv4_packet from input arguments, ready for use in f_IPv4_enc() */
590 template IPv4_packet ts_IP4(OCT4 srcaddr, OCT4 dstaddr, LIN1 proto, LIN2_BO_LAST tlen, octetstring payload) := {
591 header := {
592 ver := 4,
593 hlen := 5,
594 tos := 0,
595 tlen := tlen,
596 id := 35902,
597 res := '0'B,
598 dfrag := '1'B,
599 mfrag := '0'B,
600 foffset := 0,
601 ttl := 64,
602 proto := proto,
603 cksum := 0,
604 srcaddr := srcaddr,
605 dstaddr := dstaddr
606 },
607 ext_headers := omit,
608 payload := payload
609 }
610
Harald Welte231b9412017-08-09 17:16:31 +0200611 /* template to generate a 'Prefix Information' ICMPv6 option */
612 template OptionField ts_ICMP6_OptPrefix(OCT16 prefix, INT1 prefix_len) := {
613 prefixInformation := {
614 typeField := 3,
615 lengthIndicator := 8,
616 prefixLength := prefix_len,
617 reserved1 := '000000'B,
618 a_Bit := '0'B,
619 l_Bit := '0'B,
620 validLifetime := oct2int('FFFFFFFF'O),
621 preferredLifetime := oct2int('FFFFFFFF'O),
622 reserved2 := '00000000'O,
623 prefix := prefix
624 }
625 }
626
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200627 /* template for sending an ICMPv6 echo request */
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100628 template PDU_ICMPv6 ts_ICMPv6_ERQ := {
629 echoRequest := {
630 typeField := 128,
631 code := 0,
632 checksum := '0000'O,
633 identifier := 0,
634 sequenceNr := 0,
635 data := ''O
636 }
637 }
638
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200639 /* template for sending an ICMPv6 router solicitation */
Harald Welte231b9412017-08-09 17:16:31 +0200640 template PDU_ICMPv6 ts_ICMPv6_RS := {
641 routerSolicitation := {
642 typeField := 133,
643 code := 0,
644 checksum := '0000'O,
645 reserved := '00000000'O,
646 /* TODO: do we need 'Source link-layer address' ? */
647 options := omit
648 }
649 }
650
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200651 /* template for sending an ICMPv6 router advertisement */
Harald Welte231b9412017-08-09 17:16:31 +0200652 template PDU_ICMPv6 ts_ICMPv6_RA(OCT16 prefix, INT1 prefix_len) := {
653 routerAdvertisement := {
654 typeField := 134,
655 code := 0,
656 checksum := '0000'O,
657 curHopLimit := ?,
658 reserved := '000000'B,
659 o_Bit := '0'B,
660 m_Bit := '0'B,
661 routerLifetime := oct2int('FFFF'O),
662 reachableTime := oct2int('FFFFFFFF'O),
663 retransTimer := oct2int('FFFFFFFF'O),
664 options := {
665 ts_ICMP6_OptPrefix(prefix, prefix_len)
666 }
667 }
668 }
669
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200670 /* template for sending an ICMPv6 neighbor solicitation */
Harald Welte231b9412017-08-09 17:16:31 +0200671 template PDU_ICMPv6 ts_ICMPv6_NS(OCT16 target_addr) := {
672 neighborSolicitation := {
673 typeField := 135,
674 code := 0,
675 checksum := '0000'O,
676 reserved := '00000000'O,
677 targetAddress := target_addr,
678 /* TODO: do we need 'Source link-layer address' ? */
679 options := omit
680 }
681 }
682
683 /* derive ICMPv6 link-local address from lower 64bit of link_id */
684 /* template for receiving/matching an ICMPv6 'Prefix Information' option */
685 template OptionField tr_ICMP6_OptPrefix(template OCT16 prefix, template INT1 prefix_len) := {
686 prefixInformation := {
687 typeField := 3,
688 lengthIndicator := 4,
689 prefixLength := prefix_len,
690 reserved1 := ?,
691 a_Bit := ?,
692 l_Bit := ?,
693 validLifetime := ?,
694 preferredLifetime := ?,
695 reserved2 := ?,
696 prefix := prefix
697 }
698 }
699
700 /* template for receiving/matching an ICMPv6 router advertisement */
701 template PDU_ICMPv6 tr_ICMPv6_RA(template OCT16 prefix, template INT1 prefix_len) := {
702 routerAdvertisement := {
703 typeField := 134,
704 code := 0,
705 checksum := ?,
706 curHopLimit := ?,
707 reserved := ?,
708 o_Bit := '0'B,
709 m_Bit := '0'B,
710 routerLifetime := ?,
711 reachableTime := ?,
712 retransTimer := ?,
713 options := {
714 tr_ICMP6_OptPrefix(prefix, prefix_len)
715 }
716 }
717 }
718
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100719 /* template for receiving/matching an ICMPv6 Destination Unreachable */
720 template PDU_ICMPv6 tr_ICMPv6_DU := {
721 destinationUnreachable := {
722 typeField := 1,
723 code := ?,
724 checksum := ?,
725 unused := ?,
726 originalIpMsg := ?
727 }
728 }
729
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200730 /* template for receiving/matching an ICMPv6 echo request */
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +0100731 template PDU_ICMPv6 tr_ICMPv6_ERQ := {
732 echoRequest := {
733 typeField := 128,
734 code := 0,
735 checksum := ?,
736 identifier := ?,
737 sequenceNr := ?,
738 data := ?
739 }
740 }
741
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100742 /* template for receiving/matching an ICMPv6 echo reply */
743 template PDU_ICMPv6 tr_ICMPv6_ERP(template octetstring data := *) := {
744 echoReply := {
745 typeField := 129,
746 code := 0,
747 checksum := ?,
748 identifier := ?,
749 sequenceNr := ?,
750 data := data
751 }
752 }
753
Harald Welte231b9412017-08-09 17:16:31 +0200754 /* template to construct IPv6_packet from input arguments, ready for use in f_IPv6_enc() */
755 template IPv6_packet ts_IP6(OCT16 srcaddr, OCT16 dstaddr, LIN1 nexthead, octetstring payload, LIN1 hlim := 255) := {
756 header := {
757 ver := 6,
758 trclass := 0,
759 flabel := 0,
760 plen := 0,
761 nexthead := nexthead,
762 hlim := hlim,
763 srcaddr := srcaddr,
764 dstaddr := dstaddr
765 },
766 ext_headers := omit,
767 payload := payload
768 }
769
770 function f_ipv6_link_local(in OCT16 link_id) return OCT16 {
771 return 'FE80000000000000'O & substr(link_id, 8, 8);
772 }
773
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100774 function f_ipv6_global(in OCT16 link_id) return OCT16 {
775 return substr(link_id, 0, 8) & '1234123412341234'O;
776 }
777
778 /* Create a new different IPv6 addr from input. Starts mangling at byte prefix. */
779 function f_ipv6_mangle(in OCT16 addr, in integer prefix := 0) return OCT16 {
780 var integer i;
781 var octetstring res := substr(addr, 0, prefix);
782 for (i := prefix; i < lengthof(addr); i := i + 1) {
783 var octetstring a := addr[i] xor4b '11'O;
784 res := res & a;
785 }
786 return res;
787 }
788
Harald Welte231b9412017-08-09 17:16:31 +0200789 /* Compute solicited-node multicast address as per RFC4291 2.7.1 */
790 function f_ipv6_sol_node_mcast(in OCT16 addr) return OCT16 {
791 return 'FF0200000000000000000001FF'O & substr(addr, 13, 3);
792 }
793
794 /* generate and encode ICMPv6 router solicitation */
795 function f_gen_icmpv6_router_solicitation(in OCT16 link_id) return octetstring {
796 const OCT16 c_ip6_all_router_mcast := 'FF020000000000000000000000000002'O;
797 var OCT16 saddr := f_ipv6_link_local(link_id);
798
799 var octetstring tmp;
800 tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_RS), saddr, c_ip6_all_router_mcast);
801 var IPv6_packet ip6 := valueof(ts_IP6(saddr, c_ip6_all_router_mcast, 58, tmp));
802
803 return f_IPv6_enc(ip6);
804 }
805
Pau Espin Pedrol57604212022-02-14 16:54:18 +0100806 /* Get link-id from PDP Context EUA */
807 function f_ctx_get_ipv6_interface_id(in PdpContext ctx) return OCT16 {
808 var OCT16 interface_id;
809 if (ischosen(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6)) {
810 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
811 } else if (ischosen(ctx.eua.endUserAddress.endUserAddressIPv6)) {
812 interface_id := ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address;
813 } else {
814 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected request to submit icmpv6 rs in IPv4 PDP context");
815 }
816 return interface_id;
817 }
818
Harald Welte231b9412017-08-09 17:16:31 +0200819 /* create ICMPv6 router solicitation deriving link-id from PDP Context EUA */
820 function f_icmpv6_rs_for_pdp(in PdpContext ctx) return octetstring {
Pau Espin Pedrol57604212022-02-14 16:54:18 +0100821 var OCT16 interface_id := f_ctx_get_ipv6_interface_id(ctx);
Harald Welte231b9412017-08-09 17:16:31 +0200822 return f_gen_icmpv6_router_solicitation(interface_id);
823 }
824
825 /* generate and encode ICMPv6 neighbor solicitation */
826 function f_gen_icmpv6_neigh_solicit(in OCT16 saddr, in OCT16 daddr, in OCT16 tgt_addr) return octetstring {
827 var octetstring tmp;
828 tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_NS(tgt_addr)), saddr, daddr);
829 var IPv6_packet ip6 := valueof(ts_IP6(saddr, daddr, 58, tmp));
830 return f_IPv6_enc(ip6);
831 }
832
833 /* generate and encode ICMPv6 neighbor solicitation for PDP Context */
834 function f_gen_icmpv6_neigh_solicit_for_pdp(in PdpContext ctx) return octetstring {
Pau Espin Pedrol57604212022-02-14 16:54:18 +0100835 var OCT16 interface_id := f_ctx_get_ipv6_interface_id(ctx);
Harald Welte231b9412017-08-09 17:16:31 +0200836 var OCT16 link_local := f_ipv6_link_local(interface_id);
837 var OCT16 daddr := f_ipv6_sol_node_mcast(link_local);
838
839 return f_gen_icmpv6_neigh_solicit(link_local, daddr, link_local);
840 }
841
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100842 /* Send an ICMPv4 echo msg through GTP given pdp ctx, and ip src and dst addr */
843 function f_gen_icmpv4_echo(OCT4 saddr, OCT4 daddr) return octetstring {
844 var octetstring tmp := f_enc_PDU_ICMP(valueof(ts_ICMPv4_ERQ));
845 var IPv4_packet ip4 := valueof(ts_IP4(saddr, daddr, 1, 50, tmp));
846 var octetstring data := f_IPv4_enc(ip4);
847 var OCT2 cksum := f_IPv4_checksum(data);
848 data[10] := cksum[0];
849 data[11] := cksum[1];
850 return data;
851 }
852
853 /* Send an ICMPv6 echo msg through GTP given pdp ctx, and ip src and dst addr */
854 function f_gen_icmpv6_echo(OCT16 saddr, OCT16 daddr) return octetstring {
855 var octetstring tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_ERQ), saddr, daddr);
856 var IPv6_packet ip6 := valueof(ts_IP6(saddr, daddr, 58, tmp));
857 var octetstring data := f_IPv6_enc(ip6);
858 return data;
859 }
860
861 /* Wait for ICMPv4 from GTP */
862 function f_wait_icmp4(PdpContext ctx, template PDU_ICMP expected) runs on GT_CT {
Harald Welte231b9412017-08-09 17:16:31 +0200863 var Gtp1uUnitdata ud;
864 T_default.start;
865 alt {
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100866 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ctx.teid)) -> value ud {
Harald Welte3e0b0392018-04-26 09:46:21 +0200867 if (f_verify_gtpu_txseq(ud.gtpu, use_gtpu_txseq) == false) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200868 setverdict(fail);
869 stop;
870 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100871 var octetstring gpdu := ud.gtpu.gtpu_IEs.g_PDU_IEs.data;
872 var IPv4_packet ip4 := f_IPv4_dec(gpdu);
873 if (ip4.header.ver != 4) {
874 repeat;
875 }
876 var PDU_ICMP icmp4 := f_dec_PDU_ICMP(ip4.payload);
877 if (not match(icmp4, expected)) {
878 repeat;
879 }
880 }
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100881 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ?)) -> value ud {
882 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
883 "Received wrong local TEID");
884 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100885 [] GTPU.receive { setverdict(fail); }
886 [] T_default.timeout { setverdict(fail); }
887 }
888 T_default.stop;
889 }
890
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +0100891 /* Wait for ICMPv4 echo request from GTP */
892 function f_wait_icmp4_echo_request(PdpContext ctx) runs on GT_CT {
893 f_wait_icmp4(ctx, tr_ICMPv4_ERQ);
894 }
895
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100896 /* Wait for ICMPv4 echo reply (or unreachable) from GTP */
897 function f_wait_icmp4_echo_reply(PdpContext ctx) runs on GT_CT {
898 f_wait_icmp4(ctx, (tr_ICMPv4_ERP, tr_ICMPv4_DU));
899 }
900
901 /* Wait for ICMPv6 from GTP */
902 function f_wait_icmp6(PdpContext ctx, template PDU_ICMPv6 expected) runs on GT_CT {
903 var Gtp1uUnitdata ud;
904 T_default.start;
905 alt {
Harald Welte231b9412017-08-09 17:16:31 +0200906 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ?)) -> value ud {
Harald Welte3e0b0392018-04-26 09:46:21 +0200907 if (f_verify_gtpu_txseq(ud.gtpu, use_gtpu_txseq) == false) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200908 setverdict(fail);
909 stop;
910 }
Harald Welte231b9412017-08-09 17:16:31 +0200911 var octetstring gpdu := ud.gtpu.gtpu_IEs.g_PDU_IEs.data;
912 var IPv6_packet ip6 := f_IPv6_dec(gpdu);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100913 if (ip6.header.ver != 6 or ip6.header.nexthead != 58) {
Harald Welte231b9412017-08-09 17:16:31 +0200914 repeat;
915 }
916 var PDU_ICMPv6 icmp6 := f_dec_PDU_ICMPv6(ip6.payload);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100917 if (not match(icmp6, expected)) {
Harald Welte231b9412017-08-09 17:16:31 +0200918 repeat;
919 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100920 /* We are waiting for RA, update ctx */
921 if (match(icmp6, tr_ICMPv6_RA(?, 64))) {
922 ctx.ip6_prefix := icmp6.routerAdvertisement.options[0].prefixInformation.prefix;
923 log("RA with /64 prefix ", ctx.ip6_prefix);
924 }
Harald Welte231b9412017-08-09 17:16:31 +0200925 }
926 [] GTPU.receive(tr_GTPU_GPDU(?, ?)) { repeat; }
927 [] GTPU.receive { setverdict(fail); }
928 [] T_default.timeout { setverdict(fail); }
929 }
930 T_default.stop;
931 }
932
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100933 /* wait for GGSN to send us an ICMPv6 router advertisement */
934 function f_wait_rtr_adv(PdpContext ctx) runs on GT_CT {
935 f_wait_icmp6(ctx, tr_ICMPv6_RA(?, 64));
936 }
937
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +0100938 /* Wait for ICMPv6 echo request from GTP */
939 function f_wait_icmp6_echo_request(PdpContext ctx) runs on GT_CT {
940 f_wait_icmp6(ctx, tr_ICMPv6_ERQ);
941 }
942
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100943 /* Wait for ICMPv6 echo reply (or unreachable) from GTP */
944 function f_wait_icmp6_echo_reply(PdpContext ctx) runs on GT_CT {
945 f_wait_icmp6(ctx, (tr_ICMPv6_ERP,tr_ICMPv6_DU));
946 }
947
Oliver Smithee6a0882019-03-08 11:05:46 +0100948 /* create ICMPv6 router solicitation deriving link-id from PDP Context EUA */
949 function f_icmpv6_rs_for_pdp46(in PdpContext ctx) return octetstring {
950 var OCT16 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
951 return f_gen_icmpv6_router_solicitation(interface_id);
952 }
953
954 /* generate and encode ICMPv6 neighbor solicitation for PDP Context */
955 function f_gen_icmpv6_neigh_solicit_for_pdp46(in PdpContext ctx) return octetstring {
956 var OCT16 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
957 var OCT16 link_local := f_ipv6_link_local(interface_id);
958 var OCT16 daddr := f_ipv6_sol_node_mcast(link_local);
959
960 return f_gen_icmpv6_neigh_solicit(link_local, daddr, link_local);
961 }
962
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100963 /* Assert we don't receive a ICMPv4/6 echo reply (or unreachable) from GTP */
964 function f_wait_gtpu_fail(PdpContext ctx) runs on GT_CT {
965 T_default.start;
966 alt {
967 [] GTPU.receive { setverdict(fail); }
968 [] T_default.timeout { }
969 }
970 T_default.stop;
971 }
972
Harald Welte79737b42019-04-10 10:39:30 +0200973 /* list of protocols where we don't accept duplicates */
974 const OCT2List protocol_ids_nodupes := { 'C021'O, 'C023'O, 'C223'O, '8021'O };
975 private function f_PCO_permits_duplicates(OCT2 id) return boolean {
976 var integer i;
977 for (i := 0; i < lengthof(protocol_ids_nodupes); i := i+1) {
978 if (id == protocol_ids_nodupes[i]) {
979 return false;
980 }
981 }
982 return true;
983 }
984
985 /* ensure that every given protocol Identifier exist only exactly once in the PCO */
986 function f_PCO_ensure_no_duplicates(ProtConfigOptions pco) {
987 var OCT2List protocol_ids := {};
988 var integer i, j;
989 for (i := 0; i < lengthof(pco.protocols); i := i+1) {
990 var OCT2 id := pco.protocols[i].protocolID;
991 for (j := 0; j < lengthof(protocol_ids); j := j+1) {
992 if (not f_PCO_permits_duplicates(id) and id == protocol_ids[j]) {
993 setverdict(fail, "Duplicate ProtocolID ", id, " already present in ", pco.protocols);
994 }
995 }
996 protocol_ids := protocol_ids & { id };
997 }
998 }
999
Harald Welte0ef285b2017-08-13 20:06:01 +02001000 /* Test IPv6 context activation for dynamic IPv6 EUA without request of IPv6 DNS */
Harald Welteed7a1772017-08-09 20:26:20 +02001001 testcase TC_pdp6_act_deact() runs on GT_CT {
Harald Welte94ade362017-08-04 00:36:55 +02001002 f_init();
Harald Welte231b9412017-08-09 17:16:31 +02001003
Harald Welteed097432017-08-13 13:28:49 +02001004 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welte811651e2017-08-05 15:25:06 +02001005 f_pdp_ctx_act(ctx);
Harald Welteed7a1772017-08-09 20:26:20 +02001006 f_pdp_ctx_del(ctx, '1'B);
1007 }
1008
Harald Welte0ef285b2017-08-13 20:06:01 +02001009 /* Test IPv6 context activation for dynamic IPv6 EUA wirh request of IPv6 DNS in PCO */
Harald Welteed7a1772017-08-09 20:26:20 +02001010 testcase TC_pdp6_act_deact_pcodns() runs on GT_CT {
1011 f_init();
1012
Harald Welteed097432017-08-13 13:28:49 +02001013 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001014 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1015 f_pdp_ctx_act(ctx);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001016
Harald Welte79737b42019-04-10 10:39:30 +02001017 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001018 /* verify PCO contains both primary and secondary DNS */
1019 var OCT4 ggsn_ip6_dns1 := f_inet6_addr(m_ggsn_ip6_dns1);
1020 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 1), ggsn_ip6_dns1)) {
1021 setverdict(fail, "Primary DNS IPv6 PCO option not found");
1022 }
1023
1024 var OCT4 ggsn_ip6_dns2 := f_inet6_addr(m_ggsn_ip6_dns2);
1025 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 2), ggsn_ip6_dns2)) {
1026 setverdict(fail, "Secondary DNS IPv6 PCO option not found");
1027 }
1028
Harald Welteed7a1772017-08-09 20:26:20 +02001029 f_pdp_ctx_del(ctx, '1'B);
1030 }
1031
Harald Welte0ef285b2017-08-13 20:06:01 +02001032 /* Test PDP context activation for dynamic IPv6 EUA with IPv6 DNS in PCO and router solicitation/advertisement */
Harald Welteed7a1772017-08-09 20:26:20 +02001033 testcase TC_pdp6_act_deact_icmp6() runs on GT_CT {
1034 f_init();
1035
Harald Welteed097432017-08-13 13:28:49 +02001036 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001037 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1038 f_pdp_ctx_act(ctx);
Harald Welte231b9412017-08-09 17:16:31 +02001039
Harald Welte79737b42019-04-10 10:39:30 +02001040 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Harald Welte231b9412017-08-09 17:16:31 +02001041 //f_send_gtpu(ctx, c_router_solicit);
1042 //f_send_gtpu(ctx, c_neigh_solicit);
1043
1044 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1045 f_wait_rtr_adv(ctx);
1046 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1047
Harald Welte811651e2017-08-05 15:25:06 +02001048 f_pdp_ctx_del(ctx, '1'B);
Harald Welte94ade362017-08-04 00:36:55 +02001049 }
1050
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001051 /* Test PDP context activation for dynamic IPv6 EUA with IPv6 DNS in PCO and router solicitation/advertisement.
1052 Test we can send ICMPv6 ping over GTPU to DNS server. */
1053 testcase TC_pdp6_act_deact_gtpu_access() runs on GT_CT {
1054 f_init();
1055 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
1056 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1057 f_pdp_ctx_act(ctx);
1058
1059 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1060 f_wait_rtr_adv(ctx);
1061 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1062
1063 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1064
1065 /* Check if we can use valid link-local src addr. */
1066 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1067 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_ll, dns1_addr));
Pau Espin Pedrolb63d85f2022-02-07 16:11:47 +01001068 if (m_ggsn_impl == GGSN_IMPL_OSMOCOM) {
1069 f_wait_icmp6_echo_reply(ctx);
1070 } else {
1071 f_wait_gtpu_fail(ctx);
1072 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001073
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001074 /* Check if we can use valid global src addr, should work */
1075 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1076 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_glob, dns1_addr));
1077 f_wait_icmp6_echo_reply(ctx);
1078
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001079 f_pdp_ctx_del(ctx, '1'B);
1080 }
1081
1082 /* Check that attempting RA with another ll src addr won't work, packet dropped: */
1083 testcase TC_pdp6_act_deact_gtpu_access_wrong_ll_saddr() runs on GT_CT {
1084 f_init();
1085 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
1086 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1087 f_pdp_ctx_act(ctx);
1088
1089 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1090 f_wait_rtr_adv(ctx);
1091 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1092
1093 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1094 var OCT16 saddr_ll_wrong := f_ipv6_mangle(saddr_ll, 8);
1095 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_ll_wrong));
1096 f_wait_gtpu_fail(ctx);
1097
1098 f_pdp_ctx_del(ctx, '1'B);
1099 }
1100
1101 /* Assert that packets with wrong global src addr are dropped by GGSN */
1102 testcase TC_pdp6_act_deact_gtpu_access_wrong_global_saddr() runs on GT_CT {
1103 f_init();
1104 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
1105 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1106 f_pdp_ctx_act(ctx);
1107
1108 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1109 f_wait_rtr_adv(ctx);
1110 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1111
1112 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1113 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001114 var OCT16 saddr_wrong := f_ipv6_mangle(saddr_glob);
1115 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_wrong, dns1_addr));
1116 f_wait_gtpu_fail(ctx);
1117
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001118 f_pdp_ctx_del(ctx, '1'B);
1119 }
1120
1121 /* Send an IPv4 ICMP ECHO REQUEST to APN6, should fail (packet dropped */
1122 testcase TC_pdp6_act_deact_gtpu_access_ipv4_apn6() runs on GT_CT {
1123 f_init();
1124 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
1125 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1126 f_pdp_ctx_act(ctx);
1127
1128 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1129 f_wait_rtr_adv(ctx);
1130 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1131
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001132 var OCT4 saddr_v4 := f_inet_addr("192.168.10.2");
1133 var OCT4 daddr_v4 := f_inet_addr("8.8.8.8");
1134 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_v4, daddr_v4));
1135 f_wait_gtpu_fail(ctx);
1136
1137 f_pdp_ctx_del(ctx, '1'B);
1138 }
1139
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001140 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1141 testcase TC_pdp6_clients_interact() runs on GT_CT {
1142 f_init();
1143 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
1144 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet6, valueof(t_EuaIPv6Dyn)));
1145 f_pdp_ctx_act(ctxA);
1146 f_send_gtpu(ctxA, f_icmpv6_rs_for_pdp(ctxA));
1147 f_wait_rtr_adv(ctxA);
1148 f_send_gtpu(ctxA, f_gen_icmpv6_neigh_solicit_for_pdp(ctxA));
1149
1150 f_pdp_ctx_act(ctxB);
1151 f_send_gtpu(ctxB, f_icmpv6_rs_for_pdp(ctxB));
1152 f_wait_rtr_adv(ctxB);
1153 f_send_gtpu(ctxB, f_gen_icmpv6_neigh_solicit_for_pdp(ctxB));
1154
1155 var OCT16 addrA_ll := f_ipv6_link_local(ctxA.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1156 var OCT16 addrB_ll := f_ipv6_link_local(ctxB.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1157 var OCT16 addrA_glob := f_ipv6_global(ctxA.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1158 var OCT16 addrB_glob := f_ipv6_global(ctxB.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1159
1160 /* Validate if clients can interact using ll addr. */
1161 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_ll, addrB_ll));
1162 f_wait_gtpu_fail(ctxB);
1163
1164 /* Validate if clients can interact using global addr. */
1165 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_glob, addrB_glob));
1166 f_wait_gtpu_fail(ctxB);
1167
1168 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001169 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001170 }
1171
Harald Welte0ef285b2017-08-13 20:06:01 +02001172 /* Test PDP context activation for dynamic IPv4 EUA without DNS request */
Harald Welteed7a1772017-08-09 20:26:20 +02001173 testcase TC_pdp4_act_deact() runs on GT_CT {
1174 f_init();
Harald Welteed097432017-08-13 13:28:49 +02001175 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001176 f_pdp_ctx_act(ctx);
1177 f_pdp_ctx_del(ctx, '1'B);
1178 }
1179
Harald Welte0ef285b2017-08-13 20:06:01 +02001180 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in IPCP */
Harald Welteed7a1772017-08-09 20:26:20 +02001181 testcase TC_pdp4_act_deact_ipcp() runs on GT_CT {
1182 f_init();
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +01001183 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1184 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
Harald Welteed097432017-08-13 13:28:49 +02001185 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Weltedca80052017-08-13 20:01:38 +02001186 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_IPCP);
Harald Welteed7a1772017-08-09 20:26:20 +02001187 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001188 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Harald Welte71a36022017-12-04 18:55:58 +01001189 /* verify IPCP is at all contained */
1190 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1191 setverdict(fail, "IPCP not found in PCO");
1192 }
1193 /* verify IPCP contains both primary and secondary DNS */
1194 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +01001195 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1196 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1197 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1198 } else {
1199 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1200 }
Harald Welte71a36022017-12-04 18:55:58 +01001201 }
Harald Welteed7a1772017-08-09 20:26:20 +02001202 f_pdp_ctx_del(ctx, '1'B);
1203 }
1204
Harald Weltef8298542019-04-10 10:15:28 +02001205 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in IPCP + PAP authentication (broken) */
1206 testcase TC_pdp4_act_deact_ipcp_pap_broken() runs on GT_CT {
1207 f_init();
1208 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1209 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1210 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1211 ctx.pco_req := valueof(ts_PCO_PAP_IPv4_DNS);
1212 f_pdp_ctx_act(ctx);
1213 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1214 /* verify IPCP is at all contained */
1215 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1216 setverdict(fail, "IPCP not found in PCO");
1217 }
1218 /* verify IPCP contains both primary and secondary DNS */
1219 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
1220 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1221 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1222 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1223 } else {
1224 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1225 }
1226 }
1227 /* verify that PAP is contained */
1228 if (not match(ctx.pco_neg, tr_PCO_Contains('C023'O))) {
1229 setverdict(fail, "PAP not found in PCO");
1230 }
1231 var PapPacket pap := dec_PapPacket(f_PCO_extract_proto(ctx.pco_neg, 'C023'O));
1232 if (not match(pap, tr_PAP_AuthAck)) {
1233 setverdict(fail, "PAP isn't an AuthenticateAck: ", pap);
1234 }
1235 f_pdp_ctx_del(ctx, '1'B);
1236 }
1237
Harald Welte0ef285b2017-08-13 20:06:01 +02001238 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in PCO */
Harald Welteed7a1772017-08-09 20:26:20 +02001239 testcase TC_pdp4_act_deact_pcodns() runs on GT_CT {
1240 f_init();
Harald Welteed097432017-08-13 13:28:49 +02001241 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Weltedca80052017-08-13 20:01:38 +02001242 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
Harald Welteed7a1772017-08-09 20:26:20 +02001243 f_pdp_ctx_act(ctx);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001244
Harald Welte79737b42019-04-10 10:39:30 +02001245 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001246 /* verify PCO contains both primary and secondary DNS */
1247 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1248 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 1), ggsn_ip4_dns1)) {
1249 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1250 }
1251
1252 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1253 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 2), ggsn_ip4_dns2)) {
1254 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1255 }
1256
Harald Welteed7a1772017-08-09 20:26:20 +02001257 f_pdp_ctx_del(ctx, '1'B);
1258 }
1259
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001260 /* Test PDP context activation for dynamic IPv4 EUA.
1261 Test we can send ICMPv6 ping over GTPU to DNS server. */
1262 testcase TC_pdp4_act_deact_gtpu_access() runs on GT_CT {
1263 f_init();
1264 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1265 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1266 f_pdp_ctx_act(ctx);
1267
Harald Welte79737b42019-04-10 10:39:30 +02001268 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001269 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1270
1271 /* Check if we can use valid global src addr, should work */
1272 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1273 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1274 f_wait_icmp4_echo_reply(ctx);
1275
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001276 f_pdp_ctx_del(ctx, '1'B);
1277 }
1278
1279 /* Assert that packets with wrong global src addr are dropped by GGSN */
1280 testcase TC_pdp4_act_deact_gtpu_access_wrong_saddr() runs on GT_CT {
1281 f_init();
1282 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1283 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1284 f_pdp_ctx_act(ctx);
1285
1286 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1287 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1288 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001289 var OCT4 saddr_wrong := substr(saddr, 0, 3) & (saddr[3] xor4b '11'O);
1290 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_wrong, dns1_addr));
1291 f_wait_gtpu_fail(ctx);
1292
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001293 f_pdp_ctx_del(ctx, '1'B);
1294 }
1295
1296 /* Send an IPv6 RA to APN4, should fail (packet dropped) */
1297 testcase TC_pdp4_act_deact_gtpu_access_ipv6_apn4() runs on GT_CT {
1298 f_init();
1299 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1300 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1301 f_pdp_ctx_act(ctx);
1302
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001303 /* Send an IPv6 RA to APN4, should fail (packet dropped) */
1304 var OCT16 saddr_v6 := f_inet6_addr("fde4:8dba:82e1:2000:1:2:3:4");
1305 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_v6));
1306 f_wait_gtpu_fail(ctx);
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001307
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001308 f_pdp_ctx_del(ctx, '1'B);
1309 }
1310
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001311 /* Helper function for tests below. */
1312 function f_pdp4_clients_interact() runs on GT_CT {
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001313 f_init();
1314 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1315 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1316 f_pdp_ctx_act(ctxA);
1317 f_pdp_ctx_act(ctxB);
1318 var OCT4 addrA := ctxA.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1319 var OCT4 addrB := ctxB.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1320 f_send_gtpu(ctxA, f_gen_icmpv4_echo(addrA, addrB));
1321 f_wait_icmp4_echo_request(ctxB);
1322
1323 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001324 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001325 }
1326
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001327 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1328 testcase TC_pdp4_clients_interact_with_txseq() runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +02001329 use_gtpu_txseq := true;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001330 f_pdp4_clients_interact();
1331 }
1332
1333 /* Validate if different clients (pdp ctx) can reach one another through GGSN (without Tx sequence number). */
1334 testcase TC_pdp4_clients_interact_without_txseq() runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +02001335 use_gtpu_txseq := false;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001336 f_pdp4_clients_interact();
1337 }
1338
Harald Weltedca80052017-08-13 20:01:38 +02001339 testcase TC_echo_req_resp() runs on GT_CT {
1340 f_init();
1341 f_send_gtpc(ts_GTPC_PING(g_peer_c, g_c_seq_nr));
1342 T_default.start;
1343 alt {
1344 [] GTPC.receive(tr_GTPC_PONG(g_peer_c)) { setverdict(pass); };
1345 [] GTPC.receive { repeat; };
1346 [] T_default.timeout { setverdict(fail); }
1347 }
1348 T_default.stop;
1349 }
1350
Pau Espin Pedrol480e67f2022-02-09 16:37:47 +01001351 testcase TC_echo_req_resp_gtpu() runs on GT_CT {
1352 f_init();
1353 GTPU.send(ts_GTPU_PING(g_peer_u, g_d_seq_nr));
1354 T_default.start;
1355 alt {
1356 [] GTPU.receive(tr_GTPU_PONG(g_peer_u)) { setverdict(pass); };
1357 [] GTPU.receive { repeat; };
1358 [] T_default.timeout { setverdict(fail); }
1359 }
1360 T_default.stop;
1361 }
1362
Philipp Maier33e52612018-05-30 17:22:02 +02001363 /* Test if the parser can cope with PCO that only contain either a
1364 * single primary DNS or a secondary DNS. */
1365 testcase TC_pdp4_act_deact_with_single_dns() runs on GT_CT {
1366
1367 /* Note: an unpatched osmo-ggsn version will enter an endless-loop when
1368 * the test is executed.
1369 * see also: Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288 */
1370
1371 f_init();
1372 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1373 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1374 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1375 var octetstring pco_neg_dns;
1376 var octetstring pco_neg_dns_expected;
1377
1378 /* PCO with primary DNS only */
1379 ctx.pco_req := valueof(ts_PCO_IPv4_PRI_DNS_IPCP);
1380 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001381 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Philipp Maier33e52612018-05-30 17:22:02 +02001382 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1383 pco_neg_dns_expected := '0200000A8106'O & ggsn_ip4_dns1
1384 /* Note: The prepended hex bytes encode the following information:
1385 * 0x02 = Configuration ACK
1386 * 0x00 = Identifier
1387 * 0x000a = Length
1388 * 0x81 = Type (Primary DNS Server Address)
1389 * 0x06 = Length
1390 * (4 byte IP-Address appended) */
1391 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1392 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1393 }
1394 f_pdp_ctx_del(ctx, '1'B);
1395
1396 /* PCO with secondary DNS only */
Harald Welte7ef6d102021-04-01 21:24:35 +02001397 ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Philipp Maier33e52612018-05-30 17:22:02 +02001398 ctx.pco_req := valueof(ts_PCO_IPv4_SEC_DNS_IPCP);
1399 f_pdp_ctx_act(ctx);
1400 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1401 pco_neg_dns_expected := '0200000A8306'O & ggsn_ip4_dns2
1402 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1403 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1404 }
1405 f_pdp_ctx_del(ctx, '1'B);
1406 }
1407
1408 /* Test if the parser can cope with PCO that contains primary and secondary DNS in a separate IPCP container.
1409 * Note: an unpatched osmo-ggsn version will enter an endless-loop when the test is run
1410 * see Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288. */
1411 testcase TC_pdp4_act_deact_with_separate_dns() runs on GT_CT {
1412
1413 /* Note: an unpatched osmo-ggsn version will enter an endless-loop when
1414 * the test is executed.
1415 * see also: Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288 */
1416
1417 f_init();
1418 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1419 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1420 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1421 var octetstring pco_neg_dns;
1422 var octetstring pco_neg_dns_expected;
1423
1424 ctx.pco_req := valueof(ts_PCO_IPv4_SEPARATE_DNS_IPCP);
1425 f_pdp_ctx_act(ctx);
1426
1427 /* Check if primary DNS is contained */
1428 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1429 pco_neg_dns_expected := '0200000A8106'O & ggsn_ip4_dns1
1430 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1431 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1432 }
Philipp Maier33e52612018-05-30 17:22:02 +02001433
1434 /* Check if secondary DNS is contained */
Stefan Sperling8e7a3962018-07-19 19:24:38 +02001435 /* This used to fail due to a bug in osmo-ggsn, see OS#3381 */
1436 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 2);
Philipp Maier33e52612018-05-30 17:22:02 +02001437 pco_neg_dns_expected := '0200000A8306'O & ggsn_ip4_dns2
1438 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1439 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1440 }
1441 f_pdp_ctx_del(ctx, '1'B);
1442 }
1443
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001444 /* Validate that SUT updates remote TEIC when requested through UpdatePDPContextRequest */
1445 testcase TC_pdp4_act_update_teic() runs on GT_CT {
1446 f_init();
1447 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1448 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1449 f_pdp_ctx_act(ctx);
1450
1451 /* UpdatePDPContestRequest changing the local TEIC */
1452 var OCT4 new_teic := ctx.teic;
1453 new_teic[3] := new_teic[3] xor4b '11'O;
1454 f_pdp_ctx_update(ctx, new_teic := new_teic);
1455
1456 f_pdp_ctx_del(ctx, '1'B);
1457 }
1458
1459 /* Validate that SUT updates remote TEID when requested through UpdatePDPContextRequest */
1460 testcase TC_pdp4_act_update_teid() runs on GT_CT {
1461 f_init();
1462 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1463 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1464 f_pdp_ctx_act(ctx);
1465
1466 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1467 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1468 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1469
1470 /* Data is sent (back) to the local TEID established during CreatePDPContext */
1471 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1472 f_wait_icmp4_echo_reply(ctx);
1473
1474 /* UpdatePDPContestRequest changing the local TEID */
1475 var OCT4 new_teid := ctx.teid;
1476 new_teid[3] := new_teid[3] xor4b '11'O;
1477 f_pdp_ctx_update(ctx, new_teid := new_teid);
1478
1479 /* Check if we can send data after updating the PDP context. Answer should be sent to the new TEID */
1480 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1481 f_wait_icmp4_echo_reply(ctx);
1482
1483 f_pdp_ctx_del(ctx, '1'B);
1484 }
1485
Oliver Smithee6a0882019-03-08 11:05:46 +01001486 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA without DNS request */
1487 testcase TC_pdp46_act_deact() runs on GT_CT {
1488 f_init();
1489 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1490 f_pdp_ctx_act(ctx);
1491 f_pdp_ctx_del(ctx, '1'B);
1492 }
1493
1494 /* Test PDP context activation for dynamic IPv4v6 EUA with IPv4 DNS in IPCP */
1495 testcase TC_pdp46_act_deact_ipcp() runs on GT_CT {
1496 f_init();
1497 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1498 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1499 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1500 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_IPCP);
1501 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001502 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001503 /* verify IPCP is at all contained */
1504 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1505 setverdict(fail, "IPCP not found in PCO");
1506 }
Harald Welte79737b42019-04-10 10:39:30 +02001507 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001508 /* verify IPCP contains both primary and secondary IPv4 DNS */
1509 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
1510 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1511 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1512 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1513 } else {
1514 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1515 }
1516 }
1517 f_pdp_ctx_del(ctx, '1'B);
1518 }
1519
1520 /* Test PDP context activation for dynamic IPv4v6 EUA with IPv6 DNS in PCO and router solicitation/advertisement */
1521 testcase TC_pdp46_act_deact_icmp6() runs on GT_CT {
1522 f_init();
1523 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1524 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1525 f_pdp_ctx_act(ctx);
1526
1527 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp46(ctx));
1528 f_wait_rtr_adv(ctx);
1529 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp46(ctx));
1530
1531 f_pdp_ctx_del(ctx, '1'B);
1532 }
1533
1534 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA with request of IPv4 DNS in PCO */
1535 testcase TC_pdp46_act_deact_pcodns4() runs on GT_CT {
1536 f_init();
1537
1538 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1539 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1540 f_pdp_ctx_act(ctx);
1541
Harald Welte79737b42019-04-10 10:39:30 +02001542 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001543 /* verify PCO contains both primary and secondary IPv4 DNS */
1544 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1545 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 1), ggsn_ip4_dns1)) {
1546 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1547 }
1548
1549 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1550 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 2), ggsn_ip4_dns2)) {
1551 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1552 }
1553
1554 f_pdp_ctx_del(ctx, '1'B);
1555 }
1556
1557 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA with request of IPv6 DNS in PCO */
1558 testcase TC_pdp46_act_deact_pcodns6() runs on GT_CT {
1559 f_init();
1560
1561 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1562 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1563 f_pdp_ctx_act(ctx);
1564
Harald Welte79737b42019-04-10 10:39:30 +02001565 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001566 /* verify PCO contains both primary and secondary IPv6 DNS */
1567 var OCT4 ggsn_ip6_dns1 := f_inet6_addr(m_ggsn_ip6_dns1);
1568 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 1), ggsn_ip6_dns1)) {
1569 setverdict(fail, "Primary DNS IPv6 PCO option not found");
1570 }
1571
1572 var OCT4 ggsn_ip6_dns2 := f_inet6_addr(m_ggsn_ip6_dns2);
1573 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 2), ggsn_ip6_dns2)) {
1574 setverdict(fail, "Secondary DNS IPv6 PCO option not found");
1575 }
1576
1577 f_pdp_ctx_del(ctx, '1'B);
1578 }
1579
1580 /* Test PDP context activation for dynamic IPv4v6 EUA.
1581 Test we can send ICMPv6 ping over GTPU to DNS server. */
1582 testcase TC_pdp46_act_deact_gtpu_access() runs on GT_CT {
1583 f_init();
1584 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1585 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1586 f_pdp_ctx_act(ctx);
1587
1588 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1589
1590 /* Check if we can use valid global src addr, should work */
1591 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv4_address;
1592 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1593 f_wait_icmp4_echo_reply(ctx);
1594
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001595 f_pdp_ctx_del(ctx, '1'B);
1596 }
1597
1598 /* Assert that packets with wrong ipv4 src addr are dropped by GGSN on APN IPv4v6 */
1599 testcase TC_pdp46_act_deact_gtpu_access_wrong_saddr_ipv4() runs on GT_CT {
1600 f_init();
1601 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1602 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1603 f_pdp_ctx_act(ctx);
1604
1605 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1606 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv4_address;
Oliver Smithee6a0882019-03-08 11:05:46 +01001607 var OCT4 saddr_wrong := substr(saddr, 0, 3) & (saddr[3] xor4b '11'O);
1608 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_wrong, dns1_addr));
1609 f_wait_gtpu_fail(ctx);
1610
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001611 f_pdp_ctx_del(ctx, '1'B);
1612 }
1613
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001614 /* Check that attempting RA with another ll src addr won't work, packet dropped: */
1615 testcase TC_pdp46_act_deact_gtpu_access_wrong_ll_saddr_ipv6() runs on GT_CT {
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001616 f_init();
1617 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1618 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1619 f_pdp_ctx_act(ctx);
1620
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001621 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1622 var OCT16 saddr_ll_wrong := f_ipv6_mangle(saddr_ll, 8);
1623 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_ll_wrong));
1624 f_wait_gtpu_fail(ctx);
1625
1626 f_pdp_ctx_del(ctx, '1'B);
1627 }
1628
1629 /* Assert that packets with wrong ipv6 global src addr are dropped by GGSN on APN IPv4v6 */
1630 testcase TC_pdp46_act_deact_gtpu_access_wrong_global_saddr_ipv6() runs on GT_CT {
1631 f_init();
1632 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1633 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1634 f_pdp_ctx_act(ctx);
1635
1636 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1637 f_wait_rtr_adv(ctx);
1638 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1639
1640 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1641 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1642 var OCT16 saddr_wrong := f_ipv6_mangle(saddr_glob);
1643 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_wrong, dns1_addr));
Oliver Smithee6a0882019-03-08 11:05:46 +01001644 f_wait_gtpu_fail(ctx);
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001645
Oliver Smithee6a0882019-03-08 11:05:46 +01001646 f_pdp_ctx_del(ctx, '1'B);
1647 }
1648
1649 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1650 testcase TC_pdp46_clients_interact() runs on GT_CT {
1651 f_init();
1652 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1653 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1654 f_pdp_ctx_act(ctxA);
1655 f_send_gtpu(ctxA, f_icmpv6_rs_for_pdp46(ctxA));
1656 f_wait_rtr_adv(ctxA);
1657 f_send_gtpu(ctxA, f_gen_icmpv6_neigh_solicit_for_pdp46(ctxA));
1658
1659 f_pdp_ctx_act(ctxB);
1660 f_send_gtpu(ctxB, f_icmpv6_rs_for_pdp46(ctxB));
1661 f_wait_rtr_adv(ctxB);
1662 f_send_gtpu(ctxB, f_gen_icmpv6_neigh_solicit_for_pdp46(ctxB));
1663
1664 var OCT16 addrA_ll := f_ipv6_link_local(ctxA.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1665 var OCT16 addrB_ll := f_ipv6_link_local(ctxB.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1666 var OCT16 addrA_glob := f_ipv6_global(ctxA.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1667 var OCT16 addrB_glob := f_ipv6_global(ctxB.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1668
1669 /* Validate if clients can interact using ll addr. */
1670 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_ll, addrB_ll));
1671 f_wait_gtpu_fail(ctxB);
1672
1673 /* Validate if clients can interact using global addr. */
1674 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_glob, addrB_glob));
1675 f_wait_gtpu_fail(ctxB);
1676
1677 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001678 f_pdp_ctx_del(ctxB, '1'B);
Oliver Smithee6a0882019-03-08 11:05:46 +01001679 }
1680
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02001681 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA on a v4-only APN */
1682 testcase TC_pdp46_act_deact_apn4() runs on GT_CT {
1683 f_init();
1684 /* A typical MS first attempts v4v6, and if rejected, then tries v4 and v6 separetly */
1685 var PdpContext ctx46 := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dynv6Dyn)));
1686 f_pdp_ctx_act(ctx46, 'DC'O); /* Cause: Unknown PDP address or PDP type */
1687
1688 var PdpContext ctx4 := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1689 f_pdp_ctx_act(ctx4, '80'O); /* Normal accept cause */
1690
1691 var PdpContext ctx6 := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv6Dyn)));
1692 f_pdp_ctx_act(ctx6, 'DC'O); /* Cause: Unknown PDP address or PDP type */
1693
1694 f_pdp_ctx_del(ctx4, '1'B);
1695 }
1696
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02001697 /* Validate if 2nd CtxCreateReq with increased Recovery IE causes ggsn to drop 1st one (while keeping 2nd one). */
1698 testcase TC_pdp_act2_recovery() runs on GT_CT {
1699 var Gtp1cUnitdata ud;
1700 var default d;
1701 var boolean ctxA_deleted := false;
1702 var boolean ctxB_created := false;
1703
1704 f_init();
1705 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1706 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1707 f_pdp_ctx_act(ctxA);
1708
Vadim Yanitskiyd344b4a2022-02-09 18:28:18 +06001709 g_restart_ctr := int2oct((oct2int(g_restart_ctr) + 1) mod 256, 1);
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02001710
1711 log("sending 2nd CreatePDP (recovery increased)");
1712 f_send_gtpc(ts_GTPC_CreatePDP(g_peer_c, g_c_seq_nr, ctxB.imsi, g_restart_ctr,
1713 ctxB.teid, ctxB.teic, ctxB.nsapi, ctxB.eua, ctxB.apn,
1714 g_sgsn_ip_c, g_sgsn_ip_u, ctxB.msisdn, ctxB.pco_req));
1715 T_default.start;
1716 d := activate(pingpong());
1717 alt {
1718 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ctxB.teic)) -> value ud {
1719 f_handle_create_req(ctxB, ud);
1720 if (not ctxB_created) {
1721 ctxB_created := true;
1722 setverdict(pass);
1723 } else {
1724 setverdict(fail, "Repeated createPDPContextResponse(ctxB)");
1725 }
1726
1727 if (not ctxA_deleted) {
1728 repeat;
1729 }
1730 }
1731 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctxA.teic)) -> value ud {
1732 if (ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.tearDownIndicator)) {
1733 setverdict(pass);
1734 } else {
1735 setverdict(fail);
1736 }
1737
1738 if (not ctxA_deleted) {
1739 ctxA_deleted := true;
1740 setverdict(pass);
1741 } else {
1742 setverdict(fail, "Repeated deletePDPContextRequest(ctxA)");
1743 }
1744
1745 if (not ctxB_created) {
1746 repeat;
1747 }
1748 }
1749 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctxB.teic)) -> value ud {
1750 setverdict(fail, "GGSN dropping still valid pdp ctx");
1751 }
1752 }
1753 deactivate(d);
1754 T_default.stop;
1755
1756 f_pdp_ctx_del(ctxB, '1'B);
1757 }
1758
1759
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02001760 /* Send a duplicate echo req. osmo-ggsn maintains a queue for sent
1761 responses (60 seconds): If same delete req is sent and duplicate is
1762 detected, saved duplicate response should be sent back. */
1763 testcase TC_act_deact_retrans_duplicate() runs on GT_CT {
1764 f_init();
1765 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1766 f_pdp_ctx_act(ctx);
1767 f_pdp_ctx_del(ctx, '1'B);
1768 /* leave some time in between to make sure retransmit response queue keeps packets for a while */
1769 f_sleep(1.0);
1770 /* g_c_seq_nr was increased during f_pdp_ctx_del(), we want a
1771 duplicate. If it was not a duplicate, osmo-ggsn would answer
1772 with a failure since that PDP ctx was already deleted. */
1773 g_c_seq_nr := g_c_seq_nr - 1;
1774 f_pdp_ctx_del(ctx, '1'B);
1775
1776 /* Now send a new pdp ctx del (increased seqnum). It should fail with cause "non-existent": */
1777 var OCT1 cause_nonexistent := 'C0'O;
1778 f_pdp_ctx_del(ctx, '1'B, cause_nonexistent);
1779 }
1780
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02001781 /* Activate PDP context + trigger Recovery procedure through EchoResp */
1782 testcase TC_pdp_act_restart_ctr_echo() runs on GT_CT {
1783 var Gtp1cUnitdata ud;
1784 g_use_echo := true;
1785 f_init();
1786 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), '1234'O, c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1787 f_pdp_ctx_act(ctx);
1788
1789 /* Wait to receive echo request and send initial Restart counter */
1790 GTPC.receive(tr_GTPC_PING(?)) -> value ud {
1791 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
1792 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
1793 };
1794
1795 /* Wait to receive second echo request and send incremented Restart
1796 counter. This will fake a restarted SGSN, and pdp ctx allocated
1797 should be released by GGSN */
Vadim Yanitskiyd344b4a2022-02-09 18:28:18 +06001798 g_restart_ctr := int2oct((oct2int(g_restart_ctr) + 1) mod 256, 1);
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02001799 GTPC.receive(tr_GTPC_PING(?)) -> value ud {
1800 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
1801 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
1802 };
1803 f_pdp_ctx_exp_del_req(ctx, omit, true);
1804 setverdict(pass);
1805 }
1806
Harald Welte94ade362017-08-04 00:36:55 +02001807 control {
Harald Welteed7a1772017-08-09 20:26:20 +02001808 execute(TC_pdp4_act_deact());
1809 execute(TC_pdp4_act_deact_ipcp());
Harald Weltef8298542019-04-10 10:15:28 +02001810 execute(TC_pdp4_act_deact_ipcp_pap_broken());
Harald Welteed7a1772017-08-09 20:26:20 +02001811 execute(TC_pdp4_act_deact_pcodns());
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001812 execute(TC_pdp4_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001813 execute(TC_pdp4_act_deact_gtpu_access_wrong_saddr());
1814 execute(TC_pdp4_act_deact_gtpu_access_ipv6_apn4());
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001815 execute(TC_pdp4_clients_interact_with_txseq());
1816 execute(TC_pdp4_clients_interact_without_txseq());
Philipp Maier33e52612018-05-30 17:22:02 +02001817 execute(TC_pdp4_act_deact_with_single_dns());
1818 execute(TC_pdp4_act_deact_with_separate_dns());
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001819 execute(TC_pdp4_act_update_teic());
1820 execute(TC_pdp4_act_update_teid());
Harald Welteed7a1772017-08-09 20:26:20 +02001821
1822 execute(TC_pdp6_act_deact());
1823 execute(TC_pdp6_act_deact_pcodns());
1824 execute(TC_pdp6_act_deact_icmp6());
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001825 execute(TC_pdp6_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001826 execute(TC_pdp6_act_deact_gtpu_access_wrong_ll_saddr());
1827 execute(TC_pdp6_act_deact_gtpu_access_wrong_global_saddr());
1828 execute(TC_pdp6_act_deact_gtpu_access_ipv4_apn6());
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001829 execute(TC_pdp6_clients_interact());
Harald Weltedca80052017-08-13 20:01:38 +02001830
Oliver Smithee6a0882019-03-08 11:05:46 +01001831 execute(TC_pdp46_act_deact());
1832 execute(TC_pdp46_act_deact_ipcp());
1833 execute(TC_pdp46_act_deact_icmp6());
1834 execute(TC_pdp46_act_deact_pcodns4());
1835 execute(TC_pdp46_act_deact_pcodns6());
1836 execute(TC_pdp46_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001837 execute(TC_pdp46_act_deact_gtpu_access_wrong_saddr_ipv4());
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001838 execute(TC_pdp46_act_deact_gtpu_access_wrong_ll_saddr_ipv6());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001839 execute(TC_pdp46_act_deact_gtpu_access_wrong_global_saddr_ipv6());
Oliver Smithee6a0882019-03-08 11:05:46 +01001840 execute(TC_pdp46_clients_interact());
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02001841 execute(TC_pdp46_act_deact_apn4());
Oliver Smithee6a0882019-03-08 11:05:46 +01001842
Harald Weltedca80052017-08-13 20:01:38 +02001843 execute(TC_echo_req_resp());
Pau Espin Pedrol480e67f2022-02-09 16:37:47 +01001844 execute(TC_echo_req_resp_gtpu());
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02001845 execute(TC_pdp_act2_recovery());
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02001846 execute(TC_act_deact_retrans_duplicate());
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02001847
Pau Espin Pedrol6f319f92020-01-03 20:18:57 +01001848 execute(TC_pdp_act_restart_ctr_echo());
Harald Welte94ade362017-08-04 00:36:55 +02001849 }
Harald Welte379d45a2017-08-03 09:55:15 +02001850}