blob: 6cc9732928f95ab0946f36671f80d60ef3140aa3 [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
Pau Espin Pedrold25095f2022-05-18 16:29:05 +020014 import from TCCEncoding_Functions all;
Harald Welte34b5a952019-05-27 11:54:11 +020015
Harald Welte94ade362017-08-04 00:36:55 +020016 import from General_Types all;
Harald Welte811651e2017-08-05 15:25:06 +020017 import from Osmocom_Types all;
Pau Espin Pedrolc04c69e2020-03-03 16:46:29 +010018 import from Misc_Helpers all;
Harald Welte94ade362017-08-04 00:36:55 +020019 import from IPL4asp_PortType all;
20 import from IPL4asp_Types all;
21 import from GTP_CodecPort all;
22 import from GTP_CodecPort_CtrlFunct all;
Harald Weltec69cf4e2018-02-17 20:57:02 +010023 import from GTP_Templates all;
Harald Welte94ade362017-08-04 00:36:55 +020024 import from GTPC_Types all;
25 import from GTPU_Types all;
Harald Welte71a36022017-12-04 18:55:58 +010026 import from IPCP_Types all;
Harald Weltef8298542019-04-10 10:15:28 +020027 import from PAP_Types all;
Harald Welte231b9412017-08-09 17:16:31 +020028 import from IP_Types all;
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +010029 import from ICMP_Types all;
Harald Welte231b9412017-08-09 17:16:31 +020030 import from ICMPv6_Types all;
Harald Welteddeecbb2017-08-18 22:53:30 +020031 import from Native_Functions all;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +020032 import from Osmocom_VTY_Functions all;
33 import from TELNETasp_PortType all;
Harald Welte94ade362017-08-04 00:36:55 +020034
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +010035 import from DIAMETER_Types all;
36 import from DIAMETER_Templates all;
37 import from DIAMETER_Emulation all;
38
Harald Welte94ade362017-08-04 00:36:55 +020039 const integer GTP0_PORT := 3386;
40 const integer GTP1C_PORT := 2123;
41 const integer GTP1U_PORT := 2152;
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +010042 const integer PCRF_PORT := 3868;
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +010043 const integer OCS_PORT := 3869;
Harald Welteddeecbb2017-08-18 22:53:30 +020044
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +010045 type enumerated GGSN_Impl {
46 GGSN_IMPL_OSMOCOM,
47 GGSN_IMPL_OPEN5GS
48 };
49
Harald Welteddeecbb2017-08-18 22:53:30 +020050 modulepar {
Stefan Sperlingcb782b92018-04-03 16:03:15 +020051 /* Default IP addresses. May be overridden by GGSN_Tests configuration files. */
52
53 /* The SGSN simulated by TTCN3 will bind to these addresses for GTP control and GTP user planes. */
Harald Welteddeecbb2017-08-18 22:53:30 +020054 charstring m_bind_ip_gtpc := "127.23.42.1";
55 charstring m_bind_ip_gtpu := "127.23.42.1";
56
Stefan Sperlingcb782b92018-04-03 16:03:15 +020057 /* Addresses the GGSN which is being tested is listening on for SGSN connections. */
Harald Welteddeecbb2017-08-18 22:53:30 +020058 charstring m_ggsn_ip_gtpc := "127.0.0.6";
59 charstring m_ggsn_ip_gtpu := "127.0.0.6";
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +010060
Stefan Sperlingcb782b92018-04-03 16:03:15 +020061 /*
62 * Our tests expect to see these DNS servers in 'Create PDP context responses' sent by the GGSN.
63 * These addresses must therefore match 'ip[v6] dns' options configured in osmo-ggsn.conf.
64 *
65 * These addresses are not expected to serve actual DNS requests. However, tests may expect to be
66 * able to ping these addresses (currently, IPv4 addresses must respond with an ICMP 'echo reply',
67 * and IPv6 addresses may respond with either ICMPv6 'echo reply' or 'destination unreachable').
68 */
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +010069 charstring m_ggsn_ip4_dns1 := "192.168.100.1"
70 charstring m_ggsn_ip4_dns2 := "8.8.8.8"
Pau Espin Pedrol363ba482018-01-29 18:42:00 +010071 charstring m_ggsn_ip6_dns1 := "2001:4860:4860::8888"
72 charstring m_ggsn_ip6_dns2 := "2001:4860:4860::8844"
Stefan Sperlingcb782b92018-04-03 16:03:15 +020073
74 /*
75 * Additional address ranges are defined in osmo-ggsn.conf from which addresses are assigned
76 * to MS "behind" the simulated SGSN. These addresses appear on tun devices used by osmo-ggsn.
77 * The tests expect to be able to send ping packets between any two simulated MS within the same
78 * address range. This requires IP forwarding to be enabled on the corresponding tun interfaces.
79 */
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +010080 integer mp_t3_response := 5; /* local T3-RESPONSE timeout, seconds */
81 integer mp_n3_requests := 3; /* local N3-REQUESTS counter */
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +010082
83 GGSN_Impl m_ggsn_impl := GGSN_IMPL_OSMOCOM;
Harald Welteddeecbb2017-08-18 22:53:30 +020084 }
Harald Welte94ade362017-08-04 00:36:55 +020085
Harald Welte811651e2017-08-05 15:25:06 +020086 type set PdpContext {
87 hexstring imsi,
88 octetstring msisdn optional,
89 octetstring apn,
Harald Welteed7a1772017-08-09 20:26:20 +020090 ProtConfigOptions pco_req optional,
91 ProtConfigOptions pco_neg optional,
Harald Welte811651e2017-08-05 15:25:06 +020092 EndUserAddress eua,
Harald Welte231b9412017-08-09 17:16:31 +020093 OCT16 ip6_prefix optional,
Harald Welte811651e2017-08-05 15:25:06 +020094 BIT4 nsapi,
95 /* TEI (Data) local side */
96 OCT4 teid,
97 /* TEI (Control) local side */
98 OCT4 teic,
99 /* TEI (Data) remote side */
100 OCT4 teid_remote,
101 /* TEI (Control) remote side */
Pau Espin Pedrol38aeffb2022-02-01 20:46:29 +0100102 OCT4 teic_remote,
Pau Espin Pedrolca587f12022-02-02 10:42:01 +0100103 OCT1 ratType optional,
Pau Espin Pedrol0e127872022-05-12 17:58:50 +0200104 UserLocationInformation uli optional,
Pau Espin Pedrol38968e92022-05-13 16:17:48 +0200105 OCT2 charging_char optional,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +0200106 OCT8 imeisv optional,
107 MS_TimeZone ms_tz optional
Harald Welte811651e2017-08-05 15:25:06 +0200108 }
109
Harald Welte94ade362017-08-04 00:36:55 +0200110 type component GT_CT {
111 port GTPC_PT GTPC;
112 port GTPU_PT GTPU;
113
Harald Welte0be142b2017-08-13 13:28:10 +0200114 var boolean g_initialized := false;
115
Harald Welte94ade362017-08-04 00:36:55 +0200116 var OCT1 g_restart_ctr := '01'O;
117 /* FIXME: unify with g_bind_ip + parse from config file */
Harald Welteddeecbb2017-08-18 22:53:30 +0200118 var OCT4 g_sgsn_ip_c;
119 var OCT4 g_sgsn_ip_u;
Harald Welte94ade362017-08-04 00:36:55 +0200120 /* FIXME: parse remName from config file */
Harald Welteddeecbb2017-08-18 22:53:30 +0200121 var GtpPeer g_peer_c := { connId := 0, remName := m_ggsn_ip_gtpc, remPort := GTP1C_PORT };
122 var GtpPeer g_peer_u := { connId := 0, remName := m_ggsn_ip_gtpu, remPort := GTP1U_PORT };
Harald Welte94ade362017-08-04 00:36:55 +0200123 timer T_default := 3.0;
Harald Welte5438b9d2017-08-13 13:27:48 +0200124
125 /* next to-be-sent GTP-C sequence number */
126 var uint16_t g_c_seq_nr;
127 /* next to-be-sent GTP-U sequence number */
128 var uint16_t g_d_seq_nr;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200129
130 port TELNETasp_PT GGSNVTY;
Harald Welted2394e92018-04-26 10:21:49 +0200131 var boolean use_gtpu_txseq := false;
Pau Espin Pedrol05118022022-02-17 19:49:13 +0100132 var integer g_use_echo_intval := 0; /* 0 = disabled */
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100133
Pau Espin Pedrol733369a2022-05-20 18:39:55 +0200134 /* Emulated PCRF, used with m_ggsn_impl = GGSN_IMPL_OPEN5GS */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200135 var DIAMETER_conn_parameters g_gx_pars;
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100136 var DIAMETER_Emulation_CT vc_Gx;
137 port DIAMETER_PT Gx_UNIT;
138 port DIAMETEREM_PROC_PT Gx_PROC;
Pau Espin Pedrol733369a2022-05-20 18:39:55 +0200139
140 /* Emulated OCS, used with m_ggsn_impl = GGSN_IMPL_OPEN5GS */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200141 var DIAMETER_conn_parameters g_gy_pars;
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100142 var DIAMETER_Emulation_CT vc_Gy;
143 port DIAMETER_PT Gy_UNIT;
144 port DIAMETEREM_PROC_PT Gy_PROC;
145 var integer g_gy_validity_time := 0; /* In seconds. 0 => disabled, !0 => grant over CC-Time period */
Pau Espin Pedrol52562c92022-05-23 15:45:46 +0200146 var integer g_gy_volume_threshold := 0; /* In octets. 0 => disabled, !0 => request IUT to revalidate after N octets */
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200147 var PDU_DIAMETER g_rx_gy; /* Store last received Gy message */
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200148 }
149
150 private function f_init_vty() runs on GT_CT {
151 map(self:GGSNVTY, system:GGSNVTY);
152 f_vty_set_prompts(GGSNVTY);
153 f_vty_transceive(GGSNVTY, "enable");
154 }
155
156 private function f_vty_set_gpdu_txseq(boolean enable) runs on GT_CT {
157 f_vty_enter_config(GGSNVTY);
158 f_vty_transceive(GGSNVTY, "ggsn ggsn0");
Pau Espin Pedrol205a3842018-07-06 13:24:14 +0200159
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200160 f_vty_transceive(GGSNVTY, "apn internet");
161 if (enable) {
162 f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers");
163 } else {
164 f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers");
165 }
Pau Espin Pedrol205a3842018-07-06 13:24:14 +0200166 f_vty_transceive(GGSNVTY, "exit");
167
168 f_vty_transceive(GGSNVTY, "apn inet6");
169 if (enable) {
170 f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers");
171 } else {
172 f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers");
173 }
174 f_vty_transceive(GGSNVTY, "exit");
175
176 f_vty_transceive(GGSNVTY, "apn inet46");
177 if (enable) {
178 f_vty_transceive(GGSNVTY, "g-pdu tx-sequence-numbers");
179 } else {
180 f_vty_transceive(GGSNVTY, "no g-pdu tx-sequence-numbers");
181 }
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200182 f_vty_transceive(GGSNVTY, "end");
183 }
184
185 private function f_verify_gtpu_txseq(in PDU_GTPU gtpu, in boolean expect_gptu_txseq) return boolean {
186 if (expect_gptu_txseq) {
187 if (gtpu.s_bit != '1'B) {
188 log("GTPU sequence number expected but not present")
189 return false;
190 }
191 } else {
192 if (gtpu.s_bit != '0'B) {
193 log("GTPU sequence number not expected but present")
194 return false;
195 }
196 }
197 return true;
Harald Welte94ade362017-08-04 00:36:55 +0200198 }
199
Pau Espin Pedrol05118022022-02-17 19:49:13 +0100200 private function f_vty_enable_echo_interval(integer intval_sec) runs on GT_CT {
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200201 f_vty_enter_config(GGSNVTY);
202 f_vty_transceive(GGSNVTY, "ggsn ggsn0");
Pau Espin Pedrol05118022022-02-17 19:49:13 +0100203 if (intval_sec > 0) {
204 f_vty_transceive(GGSNVTY, "echo-interval " & int2str(intval_sec));
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200205 } else {
206 f_vty_transceive(GGSNVTY, "no echo-interval");
207 }
208 f_vty_transceive(GGSNVTY, "end");
209 }
210
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100211 private function DiameterForwardUnitdataCallback(PDU_DIAMETER msg)
212 runs on DIAMETER_Emulation_CT return template PDU_DIAMETER {
213 DIAMETER_UNIT.send(msg);
214 return omit;
215 }
216
217 private function f_init_diameter(charstring id) runs on GT_CT {
218 var DIAMETEROps ops := {
219 create_cb := refers(DIAMETER_Emulation.ExpectedCreateCallback),
220 unitdata_cb := refers(DiameterForwardUnitdataCallback),
221 raw := true /* handler mode (single component for all IMSI)) */
222 };
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100223
224 /* Gx setup: */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200225 g_gx_pars := {
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100226 remote_ip := m_ggsn_ip_gtpc,
227 remote_sctp_port := -1,
228 local_ip := m_bind_ip_gtpc,
229 local_sctp_port := PCRF_PORT,
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100230 origin_host := "pcrf.localdomain",
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100231 origin_realm := "localdomain",
Pau Espin Pedrol33b47492022-03-08 17:43:01 +0100232 auth_app_id := omit,
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100233 vendor_app_id := c_DIAMETER_3GPP_Gx_AID
234 };
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100235 vc_Gx := DIAMETER_Emulation_CT.create(id);
236 map(vc_Gx:DIAMETER, system:DIAMETER_CODEC_PT);
237 connect(vc_Gx:DIAMETER_UNIT, self:Gx_UNIT);
238 connect(vc_Gx:DIAMETER_PROC, self:Gx_PROC);
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200239 vc_Gx.start(DIAMETER_Emulation.main(ops, g_gx_pars, id));
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100240
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100241 /* Gy setup: */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200242 g_gy_pars := {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100243 remote_ip := m_ggsn_ip_gtpc,
244 remote_sctp_port := -1,
245 local_ip := m_bind_ip_gtpc,
246 local_sctp_port := OCS_PORT,
247 origin_host := "ocs.localdomain",
248 origin_realm := "localdomain",
249 auth_app_id := c_DIAMETER_CREDIT_CONTROL_AID,
250 vendor_app_id := omit
251 };
252 vc_Gy := DIAMETER_Emulation_CT.create(id);
253 map(vc_Gy:DIAMETER, system:DIAMETER_CODEC_PT);
254 connect(vc_Gy:DIAMETER_UNIT, self:Gy_UNIT);
255 connect(vc_Gy:DIAMETER_PROC, self:Gy_PROC);
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200256 vc_Gy.start(DIAMETER_Emulation.main(ops, g_gy_pars, id));
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100257
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100258 f_diameter_wait_capability(Gx_UNIT);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100259 f_diameter_wait_capability(Gy_UNIT);
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100260 /* Give some time for our emulation to get out of SUSPECT list of SUT (3 watchdong ping-pongs):
261 * RFC6733 sec 5.1
262 * RFC3539 sec 3.4.1 [5]
263 * https://github.com/freeDiameter/freeDiameter/blob/master/libfdcore/p_psm.c#L49
264 */
265 f_sleep(1.0);
266 }
267
Harald Welte94ade362017-08-04 00:36:55 +0200268 function f_init() runs on GT_CT {
Harald Welte0be142b2017-08-13 13:28:10 +0200269 if (g_initialized == true) {
270 return;
271 }
272 g_initialized := true;
273
Harald Welteddeecbb2017-08-18 22:53:30 +0200274 g_sgsn_ip_c := f_inet_addr(m_bind_ip_gtpc);
275 g_sgsn_ip_u := f_inet_addr(m_bind_ip_gtpu);
276
Harald Welte94ade362017-08-04 00:36:55 +0200277 var Result res;
278 map(self:GTPC, system:GTPC);
Harald Welteddeecbb2017-08-18 22:53:30 +0200279 res := GTP_CodecPort_CtrlFunct.f_IPL4_listen(GTPC, m_bind_ip_gtpc, GTP1C_PORT, {udp:={}});
Harald Welte94ade362017-08-04 00:36:55 +0200280 log("GTP1C ConnectionID: ", res.connId);
Harald Welte811651e2017-08-05 15:25:06 +0200281 g_peer_c.connId := res.connId;
Harald Welte94ade362017-08-04 00:36:55 +0200282
283 map(self:GTPU, system:GTPU);
Harald Welteddeecbb2017-08-18 22:53:30 +0200284 res := GTP_CodecPort_CtrlFunct.f_GTPU_listen(GTPU, m_bind_ip_gtpu, GTP1U_PORT, {udp:={}});
Harald Welte811651e2017-08-05 15:25:06 +0200285 g_peer_u.connId:= res.connId;
Harald Welte5438b9d2017-08-13 13:27:48 +0200286
287 g_restart_ctr := f_rnd_octstring(1);
Harald Welte11dbc7b2017-08-13 18:57:56 +0200288 g_c_seq_nr := f_rnd_int(65535);
289 g_d_seq_nr := f_rnd_int(65535);
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200290
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +0100291 if (m_ggsn_impl == GGSN_IMPL_OSMOCOM) {
292 f_init_vty();
293 f_vty_set_gpdu_txseq(use_gtpu_txseq);
Pau Espin Pedrol05118022022-02-17 19:49:13 +0100294 f_vty_enable_echo_interval(g_use_echo_intval);
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100295 } else if (m_ggsn_impl == GGSN_IMPL_OPEN5GS) {
296 f_init_diameter(testcasename());
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +0100297 }
Harald Welte94ade362017-08-04 00:36:55 +0200298 }
299
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +0100300 function f_shutdown_helper() runs on GT_CT {
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +0100301 /* Sleep (T3-RESPONSE * N3-REQUESTS) seconds.
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +0100302 * This ensures all retransmit queues are cleared before jumping
303 * into next tests, hence avoding situation where a test resuses
304 * a seqnum still in the GGSN's resp queue (dup req detector).
305 * See OS#5485 avout decreasing time. We could also add a new
306 * VTY command that calls gtp_clear_queues() */
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +0100307 f_sleep(int2float(mp_t3_response * mp_n3_requests));
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +0100308 setverdict(pass);
309 }
310
Harald Welte94ade362017-08-04 00:36:55 +0200311 /* Altstep implementing responses to any incoming echo requests */
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100312 private altstep pingpong() runs on GT_CT {
Harald Welte94ade362017-08-04 00:36:55 +0200313 var Gtp1cUnitdata ud;
Harald Welte3af89482017-08-04 16:20:23 +0200314 var Gtp1uUnitdata udu;
Pau Espin Pedrol05118022022-02-17 19:49:13 +0100315 [g_use_echo_intval > 0] GTPC.receive(tr_GTPC_PING(?)) -> value ud {
Harald Welte811651e2017-08-05 15:25:06 +0200316 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200317 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
Harald Welte94ade362017-08-04 00:36:55 +0200318 repeat;
319 };
Pau Espin Pedrol05118022022-02-17 19:49:13 +0100320 [g_use_echo_intval == 0] GTPC.receive(tr_GTPC_PING(?)) {
Pau Espin Pedrolc04c69e2020-03-03 16:46:29 +0100321 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
322 "GTP Echo Req rceived but not enabled in VTY");
Harald Welte3af89482017-08-04 16:20:23 +0200323 };
Pau Espin Pedrolc04c69e2020-03-03 16:46:29 +0100324 [] T_default.timeout {
325 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
326 "pinpong T_default timeout");
327 };
Harald Welte94ade362017-08-04 00:36:55 +0200328 }
329
Harald Welte811651e2017-08-05 15:25:06 +0200330 /* 'internet' in DNS encoding */
Harald Welteed097432017-08-13 13:28:49 +0200331 const octetstring c_ApnInternet := '08696E7465726E6574'O;
332 const octetstring c_ApnInet6 := '05696E657436'O;
333 const octetstring c_ApnInet46 := '06696E65743436'O;
Harald Welte94ade362017-08-04 00:36:55 +0200334
Harald Welte811651e2017-08-05 15:25:06 +0200335 /* return random NSAPI */
336 function f_rnd_nsapi() return BIT4 {
337 return int2bit(f_rnd_int(16), 4);
338 }
339
340 /* return random TEI[DC] */
341 function f_rnd_tei() return OCT4 {
342 return int2oct(f_rnd_int(4294967296), 4);
343 }
344
Pau Espin Pedrol38968e92022-05-13 16:17:48 +0200345 /* return random IMEI(SV) */
346 function f_rnd_imeisv() return OCT8 {
347 return hex2oct(f_rnd_hexstring(16, 10));
348 }
349
Harald Welte811651e2017-08-05 15:25:06 +0200350 /* define an (internal) representation of a PDP context */
Pau Espin Pedrold25095f2022-05-18 16:29:05 +0200351 template PdpContext t_DefinePDP(hexstring imsi, charstring msisdn, octetstring apn,
Pau Espin Pedrol38aeffb2022-02-01 20:46:29 +0100352 EndUserAddress eua, OCT1 ratType := '02'O /* GERAN */) := {
Harald Welte811651e2017-08-05 15:25:06 +0200353 imsi := imsi,
Pau Espin Pedrold25095f2022-05-18 16:29:05 +0200354 msisdn := '11'O & f_enc_TBCD(msisdn), /* encoded as TS 29.060 7.7.33, TS 29.002 */
Harald Welte811651e2017-08-05 15:25:06 +0200355 nsapi := f_rnd_nsapi(),
356 apn := apn,
Harald Welteed7a1772017-08-09 20:26:20 +0200357 pco_req := omit,
Harald Welte811651e2017-08-05 15:25:06 +0200358 eua := eua,
359 teid := f_rnd_tei(),
Pau Espin Pedrol38aeffb2022-02-01 20:46:29 +0100360 teic := f_rnd_tei(),
Pau Espin Pedrolca587f12022-02-02 10:42:01 +0100361 ratType := ratType,
362 uli := {
363 type_gtpc := '98'O,
364 lengthf := 0 /* filled in by encoder */,
365 geographicLocationType := '00'O /* CGI */,
366 geographicLocation := {
367 geographicLocationCGI := ts_GeographicLocationCGI('262'H, '42F'H, '0001'O, '0002'O)
368 }
Pau Espin Pedrol0e127872022-05-12 17:58:50 +0200369 },
Pau Espin Pedrol38968e92022-05-13 16:17:48 +0200370 charging_char := '0000'O,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +0200371 imeisv := f_rnd_imeisv(),
372 ms_tz := f_ts_MS_TimeZone('03'O, '01'B)
Harald Welte811651e2017-08-05 15:25:06 +0200373 }
374
375 /* send GTP-C for a given context and increment sequence number */
Harald Welte41575e92017-08-13 13:49:57 +0200376 function f_send_gtpc(in template Gtp1cUnitdata data) runs on GT_CT {
Harald Welte811651e2017-08-05 15:25:06 +0200377 GTPC.send(data);
Pau Espin Pedrol82a7f702022-05-19 17:41:29 +0200378 g_c_seq_nr := (g_c_seq_nr + 1) mod 65536;
Harald Welte811651e2017-08-05 15:25:06 +0200379 }
380
381 /* send GTP-U for a given context and increment sequence number */
Harald Welte231b9412017-08-09 17:16:31 +0200382 function f_send_gtpu(inout PdpContext ctx, in octetstring data) runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +0200383 if (use_gtpu_txseq) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200384 GTPU.send(ts_GTP1U_GPDU(g_peer_u, g_d_seq_nr, ctx.teid_remote, data));
Pau Espin Pedrol82a7f702022-05-19 17:41:29 +0200385 g_d_seq_nr := (g_d_seq_nr + 1) mod 65536;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200386 } else {
387 GTPU.send(ts_GTP1U_GPDU(g_peer_u, omit, ctx.teid_remote, data));
388 }
Harald Welte811651e2017-08-05 15:25:06 +0200389 }
390
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100391 function f_handle_create_req(inout PdpContext ctx, in Gtp1cUnitdata ud, in template OCT1 exp_cause := '80'O) runs on GT_CT {
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200392 var CreatePDPContextResponse cpr := ud.gtpc.gtpc_pdu.createPDPContextResponse;
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100393
394 if (not match(cpr.cause.causevalue, exp_cause)) {
395 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
396 "CreatePDPContextResp: cause expectancies didn't match");
397 }
398
399 if (cpr.cause.causevalue == '80'O) { /* Accepted */
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200400 /* Check if EUA type corresponds to requested type */
401 if (match(ctx.eua, t_EuaIPv4(?)) and
402 not match(cpr.endUserAddress, tr_EuaIPv4(?))){
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100403 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
404 "EUAv4 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200405 }
406 if (match(ctx.eua, t_EuaIPv6(?)) and
407 not match(cpr.endUserAddress, tr_EuaIPv6(?))) {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100408 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
409 "EUAv6 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200410 }
411 if (match(ctx.eua, t_EuaIPv4v6(?, ?)) and
412 not match(cpr.endUserAddress, tr_EuaIPv4v6(?, ?))) {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100413 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
414 "EUAv4v6 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200415 }
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100416 } else if (cpr.cause.causevalue == '81'O) { /* Cause: New PDP type due to network preference */
417 /* ETSI TS 129 060 7.3.2 Create PDP Context Response. OS#5449 */
418 /* This should only happen if EUA requested type is v4v6: */
419 if (not ischosen(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6)) {
420 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
421 "Cause not expected when requesting a non v4v6 EUA");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200422 }
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100423 if (not match(cpr.endUserAddress, (tr_EuaIPv4(?), tr_EuaIPv6(?)))) {
424 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
425 "Cause not expected when requesting+receiving EUAv4v6");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200426 }
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200427 } else {
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100428 if (ispresent(cpr.endUserAddress)) {
429 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
430 "EUA received on createPDPContextResponse cause=" & oct2str(cpr.cause.causevalue));
431 }
432 setverdict(pass);
433 return;
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200434 }
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100435
436 /* Check if PCO response corresponds to request */
437 if (ispresent(ctx.pco_req)) {
438 if (match(ctx.pco_req, ts_PCO_IPv4_DNS_CONT) and
439 not match(cpr.protConfigOptions, tr_PCO_IPv4_DNS_CONT_resp(?))) {
440 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
441 "IPv4 DNS Container requested, but missing");
442 }
443 if (match(ctx.pco_req, ts_PCO_IPv6_DNS) and
444 not match(cpr.protConfigOptions, tr_PCO_IPv6_DNS_resp(?))) {
445 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
446 "IPv6 DNS Container requested, but missing");
447 }
448 }
449 ctx.teid_remote := cpr.teidDataI.teidDataI;
450 ctx.teic_remote := cpr.teidControlPlane.teidControlPlane;
451 ctx.eua := cpr.endUserAddress;
452 ctx.pco_neg := cpr.protConfigOptions;
453 setverdict(pass);
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200454 }
455
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100456 function f_handle_update_req(inout PdpContext ctx, in Gtp1cUnitdata ud, in OCT1 exp_cause := '80'O) runs on GT_CT {
457 var UpdatePDPContextResponseGGSN upr := ud.gtpc.gtpc_pdu.updatePDPContextResponse.updatePDPContextResponseGGSN;
458 if (exp_cause == '80'O and exp_cause == upr.cause.causevalue) {
459 ctx.teid_remote := upr.teidDataI.teidDataI;
460 ctx.teic_remote := upr.teidControlPlane.teidControlPlane;
461 if (ispresent(upr.protConfigOptions)) {
462 ctx.pco_neg := upr.protConfigOptions;
463 }
464 setverdict(pass);
465 } else if (exp_cause != '80'O and exp_cause == upr.cause.causevalue) {
466 setverdict(pass);
467 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100468 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
469 "UpdatePDPContextResp: cause expectancies didn't match");
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100470 }
471 }
472
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100473 private altstep as_DIA_Gx_CCR(DCC_NONE_CC_Request_Type req_type) runs on GT_CT {
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100474 var PDU_DIAMETER rx_dia;
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100475 [] Gx_UNIT.receive(tr_DIA_Gx_CCR(req_type := req_type)) -> value rx_dia {
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100476 var template (omit) AVP avp;
477 var octetstring sess_id;
478 var AVP_Unsigned32 req_num;
479
480 avp := f_DIAMETER_get_avp(rx_dia, c_AVP_Code_BASE_NONE_Session_Id);
481 sess_id := valueof(avp.avp_data.avp_BASE_NONE_Session_Id);
482
483 avp := f_DIAMETER_get_avp(rx_dia, c_AVP_Code_DCC_NONE_CC_Request_Number);
484 req_num := valueof(avp.avp_data.avp_DCC_NONE_CC_Request_Number);
485
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100486 Gx_UNIT.send(ts_DIA_Gx_CCA(rx_dia.hop_by_hop_id, rx_dia.end_to_end_id, sess_id,
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100487 req_type, req_num));
488 }
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100489 [] Gx_UNIT.receive(PDU_DIAMETER:?) -> value rx_dia {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100490 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
491 log2str("Received unexpected DIAMETER ", rx_dia));
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100492 }
493 }
494
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200495 private function f_tr_DIA_Gy_CCR(template (omit) PdpContext ctx, DCC_NONE_CC_Request_Type req_type)
496 runs on GT_CT return template (present) PDU_DIAMETER
497 {
498 var template (present) PDU_DIAMETER tpl;
499 var charstring smf_origin_host := "smf.localdomain";
500 var template (present) octetstring imsi := ?;
501 var template (present) octetstring msisdn := ?;
502 var template (present) octetstring imeisv := ?;
503 var template (present) octetstring rat_type := ?;
504 var template (present) OCT4 charging_char := ?;
505 var template (present) OCT1 nsapi := ?;
506 if (not istemplatekind(ctx, "omit")) {
507 var PdpContext ctx_val := valueof(ctx);
508 imsi := char2oct(f_dec_TBCD(imsi_hex2oct(ctx_val.imsi)));
509 msisdn := char2oct(f_dec_TBCD(substr(ctx_val.msisdn, 1, lengthof(ctx_val.msisdn) -1)));
510 imeisv := char2oct(f_dec_TBCD(ctx_val.imeisv));
511 rat_type := ctx_val.ratType;
512 charging_char := char2oct(oct2str(ctx_val.charging_char));
513 nsapi := char2oct(hex2str(bit2hex(ctx_val.nsapi)));
514 }
515 select (req_type) {
516 case (INITIAL_REQUEST) {
517 tpl := tr_DIAMETER(flags:='11000000'B, cmd_code:=Credit_Control,
518 avps := superset(
519 tr_AVP_SessionId,
520 tr_AVP_OriginHost(smf_origin_host),
521 tr_AVP_OriginRealm(g_gy_pars.origin_realm),
522 tr_AVP_DestinationRealm(g_gy_pars.origin_realm),
523 tr_AVP_AuthAppId(int2oct(c_DIAMETER_CREDIT_CONTROL_AID, 4)),
524 tr_AVP_ServiceContextId,
525 tr_AVP_CcReqType(req_type),
526 tr_AVP_CcReqNum(?),
527 tr_AVP_EventTimestamp(?),
528 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_IMSI), tr_AVP_SubcrIdData(imsi)}),
529 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_E164), tr_AVP_SubcrIdData(msisdn)}),
530 tr_AVP_RequestedAction(DIRECT_DEBITING),
531 tr_AVP_3GPP_AoCRequestType,
532 tr_AVP_MultipleServicesIndicator,
533 tr_AVP_Multiple_Services_Credit_Control(content := superset(
534 tr_AVP_Requested_Service_Unit,
535 tr_AVP_Used_Service_Unit,
Pau Espin Pedrol6477d732022-06-03 12:04:40 +0200536 tr_AVP_PCC_3GPP_QoS_Information,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200537 tr_AVP_GI_3GPP_RatType(rat_type)
538 )),
539 tr_AVP_3GPP_ServiceInformation(content := superset(
540 tr_AVP_3GPP_PSInformation(content := superset(
541 tr_AVP_3GPP_ChargingId,
542 tr_AVP_3GPP_PDPType((IPv4,IPv6,IPv4v6)),
543 tr_AVP_3GPP_PDPAddress(tr_AVP_Address((IP,IP6), ?)),
544 tr_AVP_3GPP_SGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_bind_ip_gtpc))),
545 tr_AVP_3GPP_GGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_ggsn_ip_gtpc))),
546 tr_AVP_3GPP_CalledStationId,
547 tr_AVP_3GPP_SelectionMode,
548 tr_AVP_3GPP_ChargingCharacteristics(charging_char),
549 tr_AVP_3GPP_SGSNMCCMNC,
550 tr_AVP_3GPP_NSAPI(nsapi),
551 tr_AVP_3GPP_MS_TimeZone,
552 tr_AVP_3GPP_ULI,
553 tr_AVP_UserEquipmentInfo({
554 tr_AVP_UserEquipmentInfoType(IMEISV),
555 tr_AVP_UserEquipmentInfoValue(imeisv)
556 })
557 ))
558 ))
559 ));
560 }
561 case (UPDATE_REQUEST) {
562 tpl := tr_DIAMETER(flags:='11000000'B, cmd_code:=Credit_Control,
563 avps := superset(
564 tr_AVP_SessionId,
565 tr_AVP_OriginHost(smf_origin_host),
566 tr_AVP_OriginRealm(g_gy_pars.origin_realm),
567 tr_AVP_DestinationRealm(g_gy_pars.origin_realm),
568 tr_AVP_AuthAppId(int2oct(c_DIAMETER_CREDIT_CONTROL_AID, 4)),
569 tr_AVP_ServiceContextId,
570 tr_AVP_CcReqType(req_type),
571 tr_AVP_CcReqNum(?),
572 tr_AVP_DestinationHost(?),
573 tr_AVP_EventTimestamp(?),
574 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_IMSI), tr_AVP_SubcrIdData(imsi)}),
575 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_E164), tr_AVP_SubcrIdData(msisdn)}),
576 tr_AVP_RequestedAction(DIRECT_DEBITING),
577 tr_AVP_3GPP_AoCRequestType,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200578 tr_AVP_Multiple_Services_Credit_Control(content := superset(
579 tr_AVP_Requested_Service_Unit,
580 tr_AVP_Used_Service_Unit,
Pau Espin Pedrolcba0f6d2022-05-24 13:49:46 +0200581 /* tr_AVP_3GPP_Reporting_Reason, can be sometimes inside UsedServiceUnit */
Pau Espin Pedrol6477d732022-06-03 12:04:40 +0200582 tr_AVP_PCC_3GPP_QoS_Information,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200583 tr_AVP_GI_3GPP_RatType(rat_type)
584 )),
585 tr_AVP_3GPP_ServiceInformation(content := superset(
586 tr_AVP_3GPP_PSInformation(content := superset(
587 tr_AVP_3GPP_ChargingId,
588 /* tr_AVP_3GPP_PDPType, Only in INIT */
589 tr_AVP_3GPP_PDPAddress(tr_AVP_Address((IP,IP6), ?)),
590 tr_AVP_3GPP_SGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_bind_ip_gtpc))),
591 tr_AVP_3GPP_GGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_ggsn_ip_gtpc))),
592 tr_AVP_3GPP_CalledStationId,
593 tr_AVP_3GPP_SelectionMode,
594 tr_AVP_3GPP_ChargingCharacteristics(charging_char),
595 tr_AVP_3GPP_SGSNMCCMNC,
596 tr_AVP_3GPP_NSAPI(nsapi),
597 tr_AVP_3GPP_MS_TimeZone,
598 tr_AVP_3GPP_ULI,
599 tr_AVP_UserEquipmentInfo({
600 tr_AVP_UserEquipmentInfoType(IMEISV),
601 tr_AVP_UserEquipmentInfoValue(imeisv)
602 })
603 ))
604 ))
605 ));
606 }
607 case (TERMINATION_REQUEST) {
608 tpl := tr_DIAMETER(flags:='11000000'B, cmd_code:=Credit_Control,
609 avps := superset(
610 tr_AVP_SessionId,
611 tr_AVP_OriginHost(smf_origin_host),
612 tr_AVP_OriginRealm(g_gy_pars.origin_realm),
613 tr_AVP_DestinationRealm(g_gy_pars.origin_realm),
614 tr_AVP_AuthAppId(int2oct(c_DIAMETER_CREDIT_CONTROL_AID, 4)),
615 tr_AVP_ServiceContextId,
616 tr_AVP_CcReqType(req_type),
617 tr_AVP_CcReqNum(?),
618 tr_AVP_DestinationHost(?),
619 tr_AVP_EventTimestamp(?),
620 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_IMSI), tr_AVP_SubcrIdData(imsi)}),
621 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_E164), tr_AVP_SubcrIdData(msisdn)}),
622 tr_AVP_TerminationCause(?),
623 tr_AVP_RequestedAction(DIRECT_DEBITING),
624 tr_AVP_3GPP_AoCRequestType,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200625 tr_AVP_Multiple_Services_Credit_Control(content := superset(
626 /* tr_AVP_Requested_Service_Unit, Only in INIT and UPDATE */
627 tr_AVP_Used_Service_Unit,
Pau Espin Pedrolcba0f6d2022-05-24 13:49:46 +0200628 tr_AVP_3GPP_Reporting_Reason(FINAL),
Pau Espin Pedrol6477d732022-06-03 12:04:40 +0200629 tr_AVP_PCC_3GPP_QoS_Information,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200630 tr_AVP_GI_3GPP_RatType(rat_type)
631 )),
632 tr_AVP_3GPP_ServiceInformation(content := superset(
633 tr_AVP_3GPP_PSInformation(content := superset(
634 tr_AVP_3GPP_ChargingId,
635 /* tr_AVP_3GPP_PDPType, Only in INIT */
636 tr_AVP_3GPP_PDPAddress(tr_AVP_Address((IP,IP6), ?)),
637 tr_AVP_3GPP_SGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_bind_ip_gtpc))),
638 tr_AVP_3GPP_GGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_ggsn_ip_gtpc))),
639 tr_AVP_3GPP_CalledStationId,
640 tr_AVP_3GPP_SelectionMode,
641 tr_AVP_3GPP_ChargingCharacteristics(charging_char),
642 tr_AVP_3GPP_SGSNMCCMNC,
643 tr_AVP_3GPP_NSAPI(nsapi),
644 tr_AVP_3GPP_MS_TimeZone,
645 tr_AVP_3GPP_ULI,
646 tr_AVP_UserEquipmentInfo({
647 tr_AVP_UserEquipmentInfoType(IMEISV),
648 tr_AVP_UserEquipmentInfoValue(imeisv)
649 })
650 ))
651 ))
652 ));
653 }
654 }
655 return tpl;
656 }
657
658 private altstep as_DIA_Gy_CCR(template (omit) PdpContext ctx, DCC_NONE_CC_Request_Type req_type) runs on GT_CT {
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200659 [] Gy_UNIT.receive(f_tr_DIA_Gy_CCR(ctx, req_type := req_type)) -> value g_rx_gy {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100660 var template (value) PDU_DIAMETER tx_dia;
661 var template (omit) AVP avp;
662 var octetstring sess_id;
663 var AVP_Unsigned32 req_num;
664
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200665 avp := f_DIAMETER_get_avp(g_rx_gy, c_AVP_Code_BASE_NONE_Session_Id);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100666 sess_id := valueof(avp.avp_data.avp_BASE_NONE_Session_Id);
667
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200668 avp := f_DIAMETER_get_avp(g_rx_gy, c_AVP_Code_DCC_NONE_CC_Request_Number);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100669 req_num := valueof(avp.avp_data.avp_DCC_NONE_CC_Request_Number);
670 if (g_gy_validity_time > 0) {
Pau Espin Pedrol52562c92022-05-23 15:45:46 +0200671 if (g_gy_volume_threshold > 0) {
672 tx_dia := ts_DIA_Gy_CCA_ValidityTimeVolumeThreshold(g_rx_gy.hop_by_hop_id, g_rx_gy.end_to_end_id, sess_id,
673 req_type, req_num, g_gy_validity_time, g_gy_volume_threshold);
674 } else {
675 tx_dia := ts_DIA_Gy_CCA_ValidityTime(g_rx_gy.hop_by_hop_id, g_rx_gy.end_to_end_id, sess_id,
676 req_type, req_num, g_gy_validity_time);
677 }
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100678 } else {
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200679 tx_dia := ts_DIA_Gy_CCA(g_rx_gy.hop_by_hop_id, g_rx_gy.end_to_end_id, sess_id,
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100680 req_type, req_num);
681 }
682 Gy_UNIT.send(tx_dia);
683 }
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200684 [] Gy_UNIT.receive(PDU_DIAMETER:?) -> value g_rx_gy {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100685 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200686 log2str("Received unexpected DIAMETER Gy", g_rx_gy));
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100687 }
688 }
689
Harald Welte811651e2017-08-05 15:25:06 +0200690 /* send a PDP context activation */
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100691 function f_pdp_ctx_act(inout PdpContext ctx, template OCT1 exp_cause := '80'O) runs on GT_CT return CreatePDPContextResponse {
Harald Welte94ade362017-08-04 00:36:55 +0200692 var Gtp1cUnitdata ud;
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100693 var CreatePDPContextResponse cpr;
Harald Welte94ade362017-08-04 00:36:55 +0200694 var default d;
695
696 log("sending CreatePDP");
Harald Welte41575e92017-08-13 13:49:57 +0200697 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 +0200698 ctx.teid, ctx.teic, ctx.nsapi, ctx.eua, ctx.apn,
Pau Espin Pedrol0e127872022-05-12 17:58:50 +0200699 g_sgsn_ip_c, g_sgsn_ip_u, ctx.msisdn, ctx.pco_req, ctx.ratType,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +0200700 ctx.uli, ctx.charging_char, ctx.imeisv, ctx.ms_tz));
Harald Welte94ade362017-08-04 00:36:55 +0200701 T_default.start;
Harald Welte94ade362017-08-04 00:36:55 +0200702 d := activate(pingpong());
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100703 if (Gx_PROC.checkstate("Connected")) {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100704 as_DIA_Gx_CCR(INITIAL_REQUEST);
705 }
706 if (Gy_PROC.checkstate("Connected")) {
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200707 as_DIA_Gy_CCR(ctx, INITIAL_REQUEST);
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100708 }
Harald Welte94ade362017-08-04 00:36:55 +0200709 alt {
Harald Welte811651e2017-08-05 15:25:06 +0200710 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ctx.teic)) -> value ud {
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200711 f_handle_create_req(ctx, ud, exp_cause);
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100712 cpr := ud.gtpc.gtpc_pdu.createPDPContextResponse;
Harald Welte94ade362017-08-04 00:36:55 +0200713 }
714 }
715 deactivate(d);
Harald Welte811651e2017-08-05 15:25:06 +0200716 T_default.stop;
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100717 return cpr;
Harald Welte94ade362017-08-04 00:36:55 +0200718 }
719
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200720 function f_pdp_ctx_exp_del_req(PdpContext ctx, template (omit) OCT1 expect_cause := omit, boolean expect_teardown := false) runs on GT_CT {
721 var Gtp1cUnitdata ud;
722 var default d;
723
724 T_default.start;
725 d := activate(pingpong());
726 alt {
727 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctx.teic)) -> value ud {
728 if (istemplatekind(expect_cause, "omit") and not ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue)) {
729 setverdict(pass);
730 } else if (not istemplatekind(expect_cause, "omit") and
731 ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue) and
732 ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue == valueof(expect_cause)) {
733 setverdict(pass);
734 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100735 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
736 "DeletePDPContextReq: cause expectancies didn't match");
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200737 }
738
739 if (expect_teardown == ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.tearDownIndicator)) {
740 setverdict(pass);
741 } else {
742 setverdict(fail);
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100743 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
744 "DeletePDPContextReq: tearDownIndicator expectancies didn't match");
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200745 }
746 }
747 }
748 deactivate(d);
749 T_default.stop;
750 }
751
Pau Espin Pedrol10ec96e2022-02-09 17:03:15 +0100752 function f_pdp_ctx_del(PdpContext ctx, template BIT1 teardown_ind, OCT1 expect_causevalue := '80'O, boolean expect_diameter := true) runs on GT_CT {
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200753 var Gtp1cUnitdata ud;
754 var default d;
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +0200755 var OCT4 expect_teid;
756
757 /* 3GPP TS 29.060 sec 7.3.6 specifies TEID used in response
758 message with cause value "Non existent" shall be zero. */
759 if (expect_causevalue == 'C0'O) {
760 expect_teid := '00000000'O;
761 } else {
762 expect_teid := ctx.teic;
763 }
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200764
Harald Welte41575e92017-08-13 13:49:57 +0200765 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 +0200766 T_default.start;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200767 d := activate(pingpong());
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100768 if (Gx_PROC.checkstate("Connected") and expect_diameter) {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100769 as_DIA_Gx_CCR(TERMINATION_REQUEST);
770 }
771 if (Gy_PROC.checkstate("Connected") and expect_diameter) {
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200772 as_DIA_Gy_CCR(ctx, TERMINATION_REQUEST);
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100773 }
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200774 alt {
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +0200775 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextResponse, expect_teid)) -> value ud {
776 if (ud.gtpc.gtpc_pdu.deletePDPContextResponse.cause.causevalue == expect_causevalue) {
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200777 setverdict(pass);
778 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100779 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
780 "DeletePDPContextResp: cause expectancies didn't match");
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200781 }
782 }
783 }
784 deactivate(d);
Harald Welte811651e2017-08-05 15:25:06 +0200785 T_default.stop;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200786 }
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100787
788 /* send a Update PdP Context Request, expect Response */
789 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 {
790 var Gtp1cUnitdata ud;
791 var default d;
792
793 if (not istemplatekind(new_teid, "omit")) {
794 ctx.teid := valueof(new_teid);
795 }
796 if (not istemplatekind(new_teic, "omit")) {
797 ctx.teic := valueof(new_teic);
798 }
799
800 log("sending UpdatePDP");
801 f_send_gtpc(ts_GTPC_UpdatePDP(g_peer_c, ctx.teic_remote, g_c_seq_nr, ctx.imsi, g_restart_ctr,
802 ctx.teid, ctx.teic, ctx.nsapi, g_sgsn_ip_c, g_sgsn_ip_u,
803 ctx.pco_req, ctx.ratType, ctx.uli));
804 T_default.start;
805 d := activate(pingpong());
806 alt {
807 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, updatePDPContextResponse, ctx.teic)) -> value ud {
808 f_handle_update_req(ctx, ud, exp_cause);
809 }
810 }
811 deactivate(d);
812 T_default.stop;
813 }
814
Harald Welte811651e2017-08-05 15:25:06 +0200815 /* IPv6 router solicitation fe80::2 -> ff02::2 from 02:88:b5:1f:25:59 */
816 const octetstring c_router_solicit := '6000000000103afffe800000000000000000000000000002ff02000000000000000000000000000285009f2b0000000001010288b51f2559'O;
817 /* IPv6 neighbor solicitation fe80::2 -> ff02::1:ff00:2 from 02:88:b5:1f:25:59 */
818 const octetstring c_neigh_solicit:= '6000000000203afffe800000000000000000000000000002ff0200000000000000000001ff00000287009f9600000000fe80000000000000000000000000000201010288b51f2559'O;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200819
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200820 /* template for sending an ICMPv4 echo request */
Pau Espin Pedrol52562c92022-05-23 15:45:46 +0200821 template PDU_ICMP ts_ICMPv4_ERQ(octetstring data := ''O) := {
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100822 echo := {
823 type_field := 8,
824 code := 0,
825 checksum := '0000'O,
826 identifier := '0345'O,
827 sequence_number := '0001'O,
Pau Espin Pedrol52562c92022-05-23 15:45:46 +0200828 data := data
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100829 }
830 }
831
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200832 /* template for receiving/matching an ICMPv4 echo request */
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +0100833 template PDU_ICMP tr_ICMPv4_ERQ := {
834 echo := {
835 type_field := 8,
836 code := 0,
837 checksum := ?,
838 identifier := ?,
839 sequence_number := ?,
840 data := ?
841 }
842 }
843
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200844 /* template for receiving/matching an ICMPv4 echo reply */
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100845 template PDU_ICMP tr_ICMPv4_ERP(template octetstring data := *) := {
846 echo_reply := {
847 type_field := 0,
848 code := 0,
849 checksum := ?,
850 identifier := ?,
851 sequence_number := ?,
852 data := data
853 }
854 }
855
856 /* template for receiving/matching an ICMPv6 Destination Unreachable */
857 template PDU_ICMP tr_ICMPv4_DU := {
858 destination_unreachable := {
859 type_field := 1,
860 code := ?,
861 checksum := ?,
862 unused := ?,
863 original_ip_msg := ?
864 }
865 }
866
867 /* template to construct IPv4_packet from input arguments, ready for use in f_IPv4_enc() */
868 template IPv4_packet ts_IP4(OCT4 srcaddr, OCT4 dstaddr, LIN1 proto, LIN2_BO_LAST tlen, octetstring payload) := {
869 header := {
870 ver := 4,
871 hlen := 5,
872 tos := 0,
873 tlen := tlen,
874 id := 35902,
875 res := '0'B,
876 dfrag := '1'B,
877 mfrag := '0'B,
878 foffset := 0,
879 ttl := 64,
880 proto := proto,
881 cksum := 0,
882 srcaddr := srcaddr,
883 dstaddr := dstaddr
884 },
885 ext_headers := omit,
886 payload := payload
887 }
888
Harald Welte231b9412017-08-09 17:16:31 +0200889 /* template to generate a 'Prefix Information' ICMPv6 option */
890 template OptionField ts_ICMP6_OptPrefix(OCT16 prefix, INT1 prefix_len) := {
891 prefixInformation := {
892 typeField := 3,
893 lengthIndicator := 8,
894 prefixLength := prefix_len,
895 reserved1 := '000000'B,
896 a_Bit := '0'B,
897 l_Bit := '0'B,
898 validLifetime := oct2int('FFFFFFFF'O),
899 preferredLifetime := oct2int('FFFFFFFF'O),
900 reserved2 := '00000000'O,
901 prefix := prefix
902 }
903 }
904
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200905 /* template for sending an ICMPv6 echo request */
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100906 template PDU_ICMPv6 ts_ICMPv6_ERQ := {
907 echoRequest := {
908 typeField := 128,
909 code := 0,
910 checksum := '0000'O,
911 identifier := 0,
912 sequenceNr := 0,
913 data := ''O
914 }
915 }
916
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200917 /* template for sending an ICMPv6 router solicitation */
Harald Welte231b9412017-08-09 17:16:31 +0200918 template PDU_ICMPv6 ts_ICMPv6_RS := {
919 routerSolicitation := {
920 typeField := 133,
921 code := 0,
922 checksum := '0000'O,
923 reserved := '00000000'O,
924 /* TODO: do we need 'Source link-layer address' ? */
925 options := omit
926 }
927 }
928
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200929 /* template for sending an ICMPv6 router advertisement */
Harald Welte231b9412017-08-09 17:16:31 +0200930 template PDU_ICMPv6 ts_ICMPv6_RA(OCT16 prefix, INT1 prefix_len) := {
931 routerAdvertisement := {
932 typeField := 134,
933 code := 0,
934 checksum := '0000'O,
935 curHopLimit := ?,
936 reserved := '000000'B,
937 o_Bit := '0'B,
938 m_Bit := '0'B,
939 routerLifetime := oct2int('FFFF'O),
940 reachableTime := oct2int('FFFFFFFF'O),
941 retransTimer := oct2int('FFFFFFFF'O),
942 options := {
943 ts_ICMP6_OptPrefix(prefix, prefix_len)
944 }
945 }
946 }
947
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200948 /* template for sending an ICMPv6 neighbor solicitation */
Harald Welte231b9412017-08-09 17:16:31 +0200949 template PDU_ICMPv6 ts_ICMPv6_NS(OCT16 target_addr) := {
950 neighborSolicitation := {
951 typeField := 135,
952 code := 0,
953 checksum := '0000'O,
954 reserved := '00000000'O,
955 targetAddress := target_addr,
956 /* TODO: do we need 'Source link-layer address' ? */
957 options := omit
958 }
959 }
960
961 /* derive ICMPv6 link-local address from lower 64bit of link_id */
962 /* template for receiving/matching an ICMPv6 'Prefix Information' option */
963 template OptionField tr_ICMP6_OptPrefix(template OCT16 prefix, template INT1 prefix_len) := {
964 prefixInformation := {
965 typeField := 3,
966 lengthIndicator := 4,
967 prefixLength := prefix_len,
968 reserved1 := ?,
969 a_Bit := ?,
970 l_Bit := ?,
971 validLifetime := ?,
972 preferredLifetime := ?,
973 reserved2 := ?,
974 prefix := prefix
975 }
976 }
977
978 /* template for receiving/matching an ICMPv6 router advertisement */
979 template PDU_ICMPv6 tr_ICMPv6_RA(template OCT16 prefix, template INT1 prefix_len) := {
980 routerAdvertisement := {
981 typeField := 134,
982 code := 0,
983 checksum := ?,
984 curHopLimit := ?,
985 reserved := ?,
986 o_Bit := '0'B,
987 m_Bit := '0'B,
988 routerLifetime := ?,
989 reachableTime := ?,
990 retransTimer := ?,
991 options := {
992 tr_ICMP6_OptPrefix(prefix, prefix_len)
993 }
994 }
995 }
996
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100997 /* template for receiving/matching an ICMPv6 Destination Unreachable */
998 template PDU_ICMPv6 tr_ICMPv6_DU := {
999 destinationUnreachable := {
1000 typeField := 1,
1001 code := ?,
1002 checksum := ?,
1003 unused := ?,
1004 originalIpMsg := ?
1005 }
1006 }
1007
Stefan Sperling6cd217e2018-03-30 15:17:34 +02001008 /* template for receiving/matching an ICMPv6 echo request */
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001009 template PDU_ICMPv6 tr_ICMPv6_ERQ := {
1010 echoRequest := {
1011 typeField := 128,
1012 code := 0,
1013 checksum := ?,
1014 identifier := ?,
1015 sequenceNr := ?,
1016 data := ?
1017 }
1018 }
1019
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001020 /* template for receiving/matching an ICMPv6 echo reply */
1021 template PDU_ICMPv6 tr_ICMPv6_ERP(template octetstring data := *) := {
1022 echoReply := {
1023 typeField := 129,
1024 code := 0,
1025 checksum := ?,
1026 identifier := ?,
1027 sequenceNr := ?,
1028 data := data
1029 }
1030 }
1031
Harald Welte231b9412017-08-09 17:16:31 +02001032 /* template to construct IPv6_packet from input arguments, ready for use in f_IPv6_enc() */
1033 template IPv6_packet ts_IP6(OCT16 srcaddr, OCT16 dstaddr, LIN1 nexthead, octetstring payload, LIN1 hlim := 255) := {
1034 header := {
1035 ver := 6,
1036 trclass := 0,
1037 flabel := 0,
1038 plen := 0,
1039 nexthead := nexthead,
1040 hlim := hlim,
1041 srcaddr := srcaddr,
1042 dstaddr := dstaddr
1043 },
1044 ext_headers := omit,
1045 payload := payload
1046 }
1047
1048 function f_ipv6_link_local(in OCT16 link_id) return OCT16 {
1049 return 'FE80000000000000'O & substr(link_id, 8, 8);
1050 }
1051
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001052 function f_ipv6_global(in OCT16 link_id) return OCT16 {
1053 return substr(link_id, 0, 8) & '1234123412341234'O;
1054 }
1055
1056 /* Create a new different IPv6 addr from input. Starts mangling at byte prefix. */
1057 function f_ipv6_mangle(in OCT16 addr, in integer prefix := 0) return OCT16 {
1058 var integer i;
1059 var octetstring res := substr(addr, 0, prefix);
1060 for (i := prefix; i < lengthof(addr); i := i + 1) {
1061 var octetstring a := addr[i] xor4b '11'O;
1062 res := res & a;
1063 }
1064 return res;
1065 }
1066
Harald Welte231b9412017-08-09 17:16:31 +02001067 /* Compute solicited-node multicast address as per RFC4291 2.7.1 */
1068 function f_ipv6_sol_node_mcast(in OCT16 addr) return OCT16 {
1069 return 'FF0200000000000000000001FF'O & substr(addr, 13, 3);
1070 }
1071
1072 /* generate and encode ICMPv6 router solicitation */
1073 function f_gen_icmpv6_router_solicitation(in OCT16 link_id) return octetstring {
1074 const OCT16 c_ip6_all_router_mcast := 'FF020000000000000000000000000002'O;
1075 var OCT16 saddr := f_ipv6_link_local(link_id);
1076
1077 var octetstring tmp;
1078 tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_RS), saddr, c_ip6_all_router_mcast);
1079 var IPv6_packet ip6 := valueof(ts_IP6(saddr, c_ip6_all_router_mcast, 58, tmp));
1080
1081 return f_IPv6_enc(ip6);
1082 }
1083
Pau Espin Pedrol57604212022-02-14 16:54:18 +01001084 /* Get link-id from PDP Context EUA */
1085 function f_ctx_get_ipv6_interface_id(in PdpContext ctx) return OCT16 {
1086 var OCT16 interface_id;
1087 if (ischosen(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6)) {
1088 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
1089 } else if (ischosen(ctx.eua.endUserAddress.endUserAddressIPv6)) {
1090 interface_id := ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address;
1091 } else {
1092 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected request to submit icmpv6 rs in IPv4 PDP context");
1093 }
1094 return interface_id;
1095 }
1096
Harald Welte231b9412017-08-09 17:16:31 +02001097 /* create ICMPv6 router solicitation deriving link-id from PDP Context EUA */
1098 function f_icmpv6_rs_for_pdp(in PdpContext ctx) return octetstring {
Pau Espin Pedrol57604212022-02-14 16:54:18 +01001099 var OCT16 interface_id := f_ctx_get_ipv6_interface_id(ctx);
Harald Welte231b9412017-08-09 17:16:31 +02001100 return f_gen_icmpv6_router_solicitation(interface_id);
1101 }
1102
1103 /* generate and encode ICMPv6 neighbor solicitation */
1104 function f_gen_icmpv6_neigh_solicit(in OCT16 saddr, in OCT16 daddr, in OCT16 tgt_addr) return octetstring {
1105 var octetstring tmp;
1106 tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_NS(tgt_addr)), saddr, daddr);
1107 var IPv6_packet ip6 := valueof(ts_IP6(saddr, daddr, 58, tmp));
1108 return f_IPv6_enc(ip6);
1109 }
1110
1111 /* generate and encode ICMPv6 neighbor solicitation for PDP Context */
1112 function f_gen_icmpv6_neigh_solicit_for_pdp(in PdpContext ctx) return octetstring {
Pau Espin Pedrol57604212022-02-14 16:54:18 +01001113 var OCT16 interface_id := f_ctx_get_ipv6_interface_id(ctx);
Harald Welte231b9412017-08-09 17:16:31 +02001114 var OCT16 link_local := f_ipv6_link_local(interface_id);
1115 var OCT16 daddr := f_ipv6_sol_node_mcast(link_local);
1116
1117 return f_gen_icmpv6_neigh_solicit(link_local, daddr, link_local);
1118 }
1119
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001120 /* Send an ICMPv4 echo msg through GTP given pdp ctx, and ip src and dst addr */
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02001121 function f_gen_icmpv4_echo(OCT4 saddr, OCT4 daddr, octetstring pl := ''O) return octetstring {
1122 var octetstring tmp := f_enc_PDU_ICMP(valueof(ts_ICMPv4_ERQ(pl)));
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001123 var IPv4_packet ip4 := valueof(ts_IP4(saddr, daddr, 1, 50, tmp));
1124 var octetstring data := f_IPv4_enc(ip4);
1125 var OCT2 cksum := f_IPv4_checksum(data);
1126 data[10] := cksum[0];
1127 data[11] := cksum[1];
1128 return data;
1129 }
1130
1131 /* Send an ICMPv6 echo msg through GTP given pdp ctx, and ip src and dst addr */
1132 function f_gen_icmpv6_echo(OCT16 saddr, OCT16 daddr) return octetstring {
1133 var octetstring tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_ERQ), saddr, daddr);
1134 var IPv6_packet ip6 := valueof(ts_IP6(saddr, daddr, 58, tmp));
1135 var octetstring data := f_IPv6_enc(ip6);
1136 return data;
1137 }
1138
1139 /* Wait for ICMPv4 from GTP */
1140 function f_wait_icmp4(PdpContext ctx, template PDU_ICMP expected) runs on GT_CT {
Harald Welte231b9412017-08-09 17:16:31 +02001141 var Gtp1uUnitdata ud;
1142 T_default.start;
1143 alt {
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001144 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ctx.teid)) -> value ud {
Harald Welte3e0b0392018-04-26 09:46:21 +02001145 if (f_verify_gtpu_txseq(ud.gtpu, use_gtpu_txseq) == false) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001146 setverdict(fail);
1147 stop;
1148 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001149 var octetstring gpdu := ud.gtpu.gtpu_IEs.g_PDU_IEs.data;
1150 var IPv4_packet ip4 := f_IPv4_dec(gpdu);
1151 if (ip4.header.ver != 4) {
1152 repeat;
1153 }
1154 var PDU_ICMP icmp4 := f_dec_PDU_ICMP(ip4.payload);
1155 if (not match(icmp4, expected)) {
1156 repeat;
1157 }
1158 }
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001159 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ?)) -> value ud {
1160 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
1161 "Received wrong local TEID");
1162 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001163 [] GTPU.receive { setverdict(fail); }
1164 [] T_default.timeout { setverdict(fail); }
1165 }
1166 T_default.stop;
1167 }
1168
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001169 /* Wait for ICMPv4 echo request from GTP */
1170 function f_wait_icmp4_echo_request(PdpContext ctx) runs on GT_CT {
1171 f_wait_icmp4(ctx, tr_ICMPv4_ERQ);
1172 }
1173
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001174 /* Wait for ICMPv4 echo reply (or unreachable) from GTP */
1175 function f_wait_icmp4_echo_reply(PdpContext ctx) runs on GT_CT {
1176 f_wait_icmp4(ctx, (tr_ICMPv4_ERP, tr_ICMPv4_DU));
1177 }
1178
1179 /* Wait for ICMPv6 from GTP */
1180 function f_wait_icmp6(PdpContext ctx, template PDU_ICMPv6 expected) runs on GT_CT {
1181 var Gtp1uUnitdata ud;
1182 T_default.start;
1183 alt {
Harald Welte231b9412017-08-09 17:16:31 +02001184 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ?)) -> value ud {
Harald Welte3e0b0392018-04-26 09:46:21 +02001185 if (f_verify_gtpu_txseq(ud.gtpu, use_gtpu_txseq) == false) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001186 setverdict(fail);
1187 stop;
1188 }
Harald Welte231b9412017-08-09 17:16:31 +02001189 var octetstring gpdu := ud.gtpu.gtpu_IEs.g_PDU_IEs.data;
1190 var IPv6_packet ip6 := f_IPv6_dec(gpdu);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001191 if (ip6.header.ver != 6 or ip6.header.nexthead != 58) {
Harald Welte231b9412017-08-09 17:16:31 +02001192 repeat;
1193 }
1194 var PDU_ICMPv6 icmp6 := f_dec_PDU_ICMPv6(ip6.payload);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001195 if (not match(icmp6, expected)) {
Harald Welte231b9412017-08-09 17:16:31 +02001196 repeat;
1197 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001198 /* We are waiting for RA, update ctx */
1199 if (match(icmp6, tr_ICMPv6_RA(?, 64))) {
1200 ctx.ip6_prefix := icmp6.routerAdvertisement.options[0].prefixInformation.prefix;
1201 log("RA with /64 prefix ", ctx.ip6_prefix);
1202 }
Harald Welte231b9412017-08-09 17:16:31 +02001203 }
1204 [] GTPU.receive(tr_GTPU_GPDU(?, ?)) { repeat; }
1205 [] GTPU.receive { setverdict(fail); }
1206 [] T_default.timeout { setverdict(fail); }
1207 }
1208 T_default.stop;
1209 }
1210
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001211 /* wait for GGSN to send us an ICMPv6 router advertisement */
1212 function f_wait_rtr_adv(PdpContext ctx) runs on GT_CT {
1213 f_wait_icmp6(ctx, tr_ICMPv6_RA(?, 64));
1214 }
1215
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001216 /* Wait for ICMPv6 echo request from GTP */
1217 function f_wait_icmp6_echo_request(PdpContext ctx) runs on GT_CT {
1218 f_wait_icmp6(ctx, tr_ICMPv6_ERQ);
1219 }
1220
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001221 /* Wait for ICMPv6 echo reply (or unreachable) from GTP */
1222 function f_wait_icmp6_echo_reply(PdpContext ctx) runs on GT_CT {
1223 f_wait_icmp6(ctx, (tr_ICMPv6_ERP,tr_ICMPv6_DU));
1224 }
1225
Oliver Smithee6a0882019-03-08 11:05:46 +01001226 /* create ICMPv6 router solicitation deriving link-id from PDP Context EUA */
1227 function f_icmpv6_rs_for_pdp46(in PdpContext ctx) return octetstring {
1228 var OCT16 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
1229 return f_gen_icmpv6_router_solicitation(interface_id);
1230 }
1231
1232 /* generate and encode ICMPv6 neighbor solicitation for PDP Context */
1233 function f_gen_icmpv6_neigh_solicit_for_pdp46(in PdpContext ctx) return octetstring {
1234 var OCT16 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
1235 var OCT16 link_local := f_ipv6_link_local(interface_id);
1236 var OCT16 daddr := f_ipv6_sol_node_mcast(link_local);
1237
1238 return f_gen_icmpv6_neigh_solicit(link_local, daddr, link_local);
1239 }
1240
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001241 /* Assert we don't receive a ICMPv4/6 echo reply (or unreachable) from GTP */
1242 function f_wait_gtpu_fail(PdpContext ctx) runs on GT_CT {
1243 T_default.start;
1244 alt {
1245 [] GTPU.receive { setverdict(fail); }
1246 [] T_default.timeout { }
1247 }
1248 T_default.stop;
1249 }
1250
Harald Welte79737b42019-04-10 10:39:30 +02001251 /* list of protocols where we don't accept duplicates */
1252 const OCT2List protocol_ids_nodupes := { 'C021'O, 'C023'O, 'C223'O, '8021'O };
1253 private function f_PCO_permits_duplicates(OCT2 id) return boolean {
1254 var integer i;
1255 for (i := 0; i < lengthof(protocol_ids_nodupes); i := i+1) {
1256 if (id == protocol_ids_nodupes[i]) {
1257 return false;
1258 }
1259 }
1260 return true;
1261 }
1262
1263 /* ensure that every given protocol Identifier exist only exactly once in the PCO */
1264 function f_PCO_ensure_no_duplicates(ProtConfigOptions pco) {
1265 var OCT2List protocol_ids := {};
1266 var integer i, j;
1267 for (i := 0; i < lengthof(pco.protocols); i := i+1) {
1268 var OCT2 id := pco.protocols[i].protocolID;
1269 for (j := 0; j < lengthof(protocol_ids); j := j+1) {
1270 if (not f_PCO_permits_duplicates(id) and id == protocol_ids[j]) {
1271 setverdict(fail, "Duplicate ProtocolID ", id, " already present in ", pco.protocols);
1272 }
1273 }
1274 protocol_ids := protocol_ids & { id };
1275 }
1276 }
1277
Harald Welte0ef285b2017-08-13 20:06:01 +02001278 /* Test IPv6 context activation for dynamic IPv6 EUA without request of IPv6 DNS */
Harald Welteed7a1772017-08-09 20:26:20 +02001279 testcase TC_pdp6_act_deact() runs on GT_CT {
Harald Welte94ade362017-08-04 00:36:55 +02001280 f_init();
Harald Welte231b9412017-08-09 17:16:31 +02001281
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001282 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welte811651e2017-08-05 15:25:06 +02001283 f_pdp_ctx_act(ctx);
Harald Welteed7a1772017-08-09 20:26:20 +02001284 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001285 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001286 }
1287
Harald Welte0ef285b2017-08-13 20:06:01 +02001288 /* Test IPv6 context activation for dynamic IPv6 EUA wirh request of IPv6 DNS in PCO */
Harald Welteed7a1772017-08-09 20:26:20 +02001289 testcase TC_pdp6_act_deact_pcodns() runs on GT_CT {
1290 f_init();
1291
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001292 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001293 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1294 f_pdp_ctx_act(ctx);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001295
Harald Welte79737b42019-04-10 10:39:30 +02001296 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001297 /* verify PCO contains both primary and secondary DNS */
1298 var OCT4 ggsn_ip6_dns1 := f_inet6_addr(m_ggsn_ip6_dns1);
1299 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 1), ggsn_ip6_dns1)) {
1300 setverdict(fail, "Primary DNS IPv6 PCO option not found");
1301 }
1302
1303 var OCT4 ggsn_ip6_dns2 := f_inet6_addr(m_ggsn_ip6_dns2);
1304 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 2), ggsn_ip6_dns2)) {
1305 setverdict(fail, "Secondary DNS IPv6 PCO option not found");
1306 }
1307
Harald Welteed7a1772017-08-09 20:26:20 +02001308 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001309 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001310 }
1311
Harald Welte0ef285b2017-08-13 20:06:01 +02001312 /* Test PDP context activation for dynamic IPv6 EUA with IPv6 DNS in PCO and router solicitation/advertisement */
Harald Welteed7a1772017-08-09 20:26:20 +02001313 testcase TC_pdp6_act_deact_icmp6() runs on GT_CT {
1314 f_init();
1315
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001316 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001317 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1318 f_pdp_ctx_act(ctx);
Harald Welte231b9412017-08-09 17:16:31 +02001319
Harald Welte79737b42019-04-10 10:39:30 +02001320 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Harald Welte231b9412017-08-09 17:16:31 +02001321 //f_send_gtpu(ctx, c_router_solicit);
1322 //f_send_gtpu(ctx, c_neigh_solicit);
1323
1324 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1325 f_wait_rtr_adv(ctx);
1326 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1327
Harald Welte811651e2017-08-05 15:25:06 +02001328 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001329 f_shutdown_helper();
Harald Welte94ade362017-08-04 00:36:55 +02001330 }
1331
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001332 /* Test PDP context activation for dynamic IPv6 EUA with IPv6 DNS in PCO and router solicitation/advertisement.
1333 Test we can send ICMPv6 ping over GTPU to DNS server. */
1334 testcase TC_pdp6_act_deact_gtpu_access() runs on GT_CT {
1335 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001336 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001337 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1338 f_pdp_ctx_act(ctx);
1339
1340 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1341 f_wait_rtr_adv(ctx);
1342 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1343
1344 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1345
1346 /* Check if we can use valid link-local src addr. */
1347 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1348 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_ll, dns1_addr));
Pau Espin Pedrolb63d85f2022-02-07 16:11:47 +01001349 if (m_ggsn_impl == GGSN_IMPL_OSMOCOM) {
1350 f_wait_icmp6_echo_reply(ctx);
1351 } else {
1352 f_wait_gtpu_fail(ctx);
1353 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001354
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001355 /* Check if we can use valid global src addr, should work */
1356 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1357 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_glob, dns1_addr));
1358 f_wait_icmp6_echo_reply(ctx);
1359
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001360 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001361 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001362 }
1363
1364 /* Check that attempting RA with another ll src addr won't work, packet dropped: */
1365 testcase TC_pdp6_act_deact_gtpu_access_wrong_ll_saddr() runs on GT_CT {
1366 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001367 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001368 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1369 f_pdp_ctx_act(ctx);
1370
1371 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1372 f_wait_rtr_adv(ctx);
1373 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1374
1375 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1376 var OCT16 saddr_ll_wrong := f_ipv6_mangle(saddr_ll, 8);
1377 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_ll_wrong));
1378 f_wait_gtpu_fail(ctx);
1379
1380 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001381 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001382 }
1383
1384 /* Assert that packets with wrong global src addr are dropped by GGSN */
1385 testcase TC_pdp6_act_deact_gtpu_access_wrong_global_saddr() runs on GT_CT {
1386 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001387 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001388 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1389 f_pdp_ctx_act(ctx);
1390
1391 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1392 f_wait_rtr_adv(ctx);
1393 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1394
1395 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1396 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001397 var OCT16 saddr_wrong := f_ipv6_mangle(saddr_glob);
1398 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_wrong, dns1_addr));
1399 f_wait_gtpu_fail(ctx);
1400
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001401 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001402 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001403 }
1404
1405 /* Send an IPv4 ICMP ECHO REQUEST to APN6, should fail (packet dropped */
1406 testcase TC_pdp6_act_deact_gtpu_access_ipv4_apn6() runs on GT_CT {
1407 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001408 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001409 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1410 f_pdp_ctx_act(ctx);
1411
1412 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1413 f_wait_rtr_adv(ctx);
1414 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1415
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001416 var OCT4 saddr_v4 := f_inet_addr("192.168.10.2");
1417 var OCT4 daddr_v4 := f_inet_addr("8.8.8.8");
1418 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_v4, daddr_v4));
1419 f_wait_gtpu_fail(ctx);
1420
1421 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001422 f_shutdown_helper();
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001423 }
1424
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001425 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1426 testcase TC_pdp6_clients_interact() runs on GT_CT {
1427 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001428 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
1429 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001430 f_pdp_ctx_act(ctxA);
1431 f_send_gtpu(ctxA, f_icmpv6_rs_for_pdp(ctxA));
1432 f_wait_rtr_adv(ctxA);
1433 f_send_gtpu(ctxA, f_gen_icmpv6_neigh_solicit_for_pdp(ctxA));
1434
1435 f_pdp_ctx_act(ctxB);
1436 f_send_gtpu(ctxB, f_icmpv6_rs_for_pdp(ctxB));
1437 f_wait_rtr_adv(ctxB);
1438 f_send_gtpu(ctxB, f_gen_icmpv6_neigh_solicit_for_pdp(ctxB));
1439
1440 var OCT16 addrA_ll := f_ipv6_link_local(ctxA.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1441 var OCT16 addrB_ll := f_ipv6_link_local(ctxB.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1442 var OCT16 addrA_glob := f_ipv6_global(ctxA.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1443 var OCT16 addrB_glob := f_ipv6_global(ctxB.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1444
1445 /* Validate if clients can interact using ll addr. */
1446 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_ll, addrB_ll));
1447 f_wait_gtpu_fail(ctxB);
1448
1449 /* Validate if clients can interact using global addr. */
1450 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_glob, addrB_glob));
1451 f_wait_gtpu_fail(ctxB);
1452
1453 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001454 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001455 f_shutdown_helper();
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001456 }
1457
Harald Welte0ef285b2017-08-13 20:06:01 +02001458 /* Test PDP context activation for dynamic IPv4 EUA without DNS request */
Harald Welteed7a1772017-08-09 20:26:20 +02001459 testcase TC_pdp4_act_deact() runs on GT_CT {
1460 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001461 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001462 f_pdp_ctx_act(ctx);
1463 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001464 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001465 }
1466
Harald Welte0ef285b2017-08-13 20:06:01 +02001467 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in IPCP */
Harald Welteed7a1772017-08-09 20:26:20 +02001468 testcase TC_pdp4_act_deact_ipcp() runs on GT_CT {
1469 f_init();
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +01001470 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1471 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001472 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Weltedca80052017-08-13 20:01:38 +02001473 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_IPCP);
Harald Welteed7a1772017-08-09 20:26:20 +02001474 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001475 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Harald Welte71a36022017-12-04 18:55:58 +01001476 /* verify IPCP is at all contained */
1477 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1478 setverdict(fail, "IPCP not found in PCO");
1479 }
1480 /* verify IPCP contains both primary and secondary DNS */
1481 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +01001482 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1483 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1484 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1485 } else {
1486 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1487 }
Harald Welte71a36022017-12-04 18:55:58 +01001488 }
Harald Welteed7a1772017-08-09 20:26:20 +02001489 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001490 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001491 }
1492
Harald Weltef8298542019-04-10 10:15:28 +02001493 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in IPCP + PAP authentication (broken) */
1494 testcase TC_pdp4_act_deact_ipcp_pap_broken() runs on GT_CT {
1495 f_init();
1496 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1497 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001498 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Weltef8298542019-04-10 10:15:28 +02001499 ctx.pco_req := valueof(ts_PCO_PAP_IPv4_DNS);
1500 f_pdp_ctx_act(ctx);
1501 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1502 /* verify IPCP is at all contained */
1503 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1504 setverdict(fail, "IPCP not found in PCO");
1505 }
1506 /* verify IPCP contains both primary and secondary DNS */
1507 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
1508 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1509 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1510 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1511 } else {
1512 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1513 }
1514 }
1515 /* verify that PAP is contained */
1516 if (not match(ctx.pco_neg, tr_PCO_Contains('C023'O))) {
1517 setverdict(fail, "PAP not found in PCO");
1518 }
1519 var PapPacket pap := dec_PapPacket(f_PCO_extract_proto(ctx.pco_neg, 'C023'O));
1520 if (not match(pap, tr_PAP_AuthAck)) {
1521 setverdict(fail, "PAP isn't an AuthenticateAck: ", pap);
1522 }
1523 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001524 f_shutdown_helper();
Harald Weltef8298542019-04-10 10:15:28 +02001525 }
1526
Harald Welte0ef285b2017-08-13 20:06:01 +02001527 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in PCO */
Harald Welteed7a1772017-08-09 20:26:20 +02001528 testcase TC_pdp4_act_deact_pcodns() runs on GT_CT {
1529 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001530 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Weltedca80052017-08-13 20:01:38 +02001531 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
Harald Welteed7a1772017-08-09 20:26:20 +02001532 f_pdp_ctx_act(ctx);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001533
Harald Welte79737b42019-04-10 10:39:30 +02001534 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001535 /* verify PCO contains both primary and secondary DNS */
1536 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1537 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 1), ggsn_ip4_dns1)) {
1538 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1539 }
1540
1541 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1542 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 2), ggsn_ip4_dns2)) {
1543 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1544 }
1545
Harald Welteed7a1772017-08-09 20:26:20 +02001546 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001547 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001548 }
1549
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001550 /* Test PDP context activation for dynamic IPv4 EUA.
1551 Test we can send ICMPv6 ping over GTPU to DNS server. */
1552 testcase TC_pdp4_act_deact_gtpu_access() runs on GT_CT {
1553 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001554 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001555 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1556 f_pdp_ctx_act(ctx);
1557
Harald Welte79737b42019-04-10 10:39:30 +02001558 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001559 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1560
1561 /* Check if we can use valid global src addr, should work */
1562 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1563 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1564 f_wait_icmp4_echo_reply(ctx);
1565
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001566 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001567 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001568 }
1569
1570 /* Assert that packets with wrong global src addr are dropped by GGSN */
1571 testcase TC_pdp4_act_deact_gtpu_access_wrong_saddr() runs on GT_CT {
1572 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001573 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001574 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1575 f_pdp_ctx_act(ctx);
1576
1577 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1578 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1579 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001580 var OCT4 saddr_wrong := substr(saddr, 0, 3) & (saddr[3] xor4b '11'O);
1581 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_wrong, dns1_addr));
1582 f_wait_gtpu_fail(ctx);
1583
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001584 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001585 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001586 }
1587
1588 /* Send an IPv6 RA to APN4, should fail (packet dropped) */
1589 testcase TC_pdp4_act_deact_gtpu_access_ipv6_apn4() runs on GT_CT {
1590 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001591 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001592 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1593 f_pdp_ctx_act(ctx);
1594
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001595 /* Send an IPv6 RA to APN4, should fail (packet dropped) */
1596 var OCT16 saddr_v6 := f_inet6_addr("fde4:8dba:82e1:2000:1:2:3:4");
1597 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_v6));
1598 f_wait_gtpu_fail(ctx);
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001599
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001600 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001601 f_shutdown_helper();
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001602 }
1603
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001604 /* Helper function for tests below. */
1605 function f_pdp4_clients_interact() runs on GT_CT {
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001606 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001607 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1608 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001609 f_pdp_ctx_act(ctxA);
1610 f_pdp_ctx_act(ctxB);
1611 var OCT4 addrA := ctxA.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1612 var OCT4 addrB := ctxB.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1613 f_send_gtpu(ctxA, f_gen_icmpv4_echo(addrA, addrB));
1614 f_wait_icmp4_echo_request(ctxB);
1615
1616 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001617 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001618 }
1619
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001620 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1621 testcase TC_pdp4_clients_interact_with_txseq() runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +02001622 use_gtpu_txseq := true;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001623 f_pdp4_clients_interact();
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001624 f_shutdown_helper();
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001625 }
1626
1627 /* Validate if different clients (pdp ctx) can reach one another through GGSN (without Tx sequence number). */
1628 testcase TC_pdp4_clients_interact_without_txseq() runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +02001629 use_gtpu_txseq := false;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001630 f_pdp4_clients_interact();
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001631 f_shutdown_helper();
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001632 }
1633
Harald Weltedca80052017-08-13 20:01:38 +02001634 testcase TC_echo_req_resp() runs on GT_CT {
1635 f_init();
1636 f_send_gtpc(ts_GTPC_PING(g_peer_c, g_c_seq_nr));
1637 T_default.start;
1638 alt {
1639 [] GTPC.receive(tr_GTPC_PONG(g_peer_c)) { setverdict(pass); };
1640 [] GTPC.receive { repeat; };
1641 [] T_default.timeout { setverdict(fail); }
1642 }
1643 T_default.stop;
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001644 f_shutdown_helper();
Harald Weltedca80052017-08-13 20:01:38 +02001645 }
1646
Pau Espin Pedrol480e67f2022-02-09 16:37:47 +01001647 testcase TC_echo_req_resp_gtpu() runs on GT_CT {
1648 f_init();
1649 GTPU.send(ts_GTPU_PING(g_peer_u, g_d_seq_nr));
1650 T_default.start;
1651 alt {
1652 [] GTPU.receive(tr_GTPU_PONG(g_peer_u)) { setverdict(pass); };
1653 [] GTPU.receive { repeat; };
1654 [] T_default.timeout { setverdict(fail); }
1655 }
1656 T_default.stop;
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001657 f_shutdown_helper();
Pau Espin Pedrol480e67f2022-02-09 16:37:47 +01001658 }
1659
Philipp Maier33e52612018-05-30 17:22:02 +02001660 /* Test if the parser can cope with PCO that only contain either a
1661 * single primary DNS or a secondary DNS. */
1662 testcase TC_pdp4_act_deact_with_single_dns() runs on GT_CT {
1663
1664 /* Note: an unpatched osmo-ggsn version will enter an endless-loop when
1665 * the test is executed.
1666 * see also: Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288 */
1667
1668 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001669 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Philipp Maier33e52612018-05-30 17:22:02 +02001670 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1671 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1672 var octetstring pco_neg_dns;
1673 var octetstring pco_neg_dns_expected;
1674
1675 /* PCO with primary DNS only */
1676 ctx.pco_req := valueof(ts_PCO_IPv4_PRI_DNS_IPCP);
1677 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001678 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Philipp Maier33e52612018-05-30 17:22:02 +02001679 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1680 pco_neg_dns_expected := '0200000A8106'O & ggsn_ip4_dns1
1681 /* Note: The prepended hex bytes encode the following information:
1682 * 0x02 = Configuration ACK
1683 * 0x00 = Identifier
1684 * 0x000a = Length
1685 * 0x81 = Type (Primary DNS Server Address)
1686 * 0x06 = Length
1687 * (4 byte IP-Address appended) */
1688 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1689 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1690 }
1691 f_pdp_ctx_del(ctx, '1'B);
1692
1693 /* PCO with secondary DNS only */
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001694 ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Philipp Maier33e52612018-05-30 17:22:02 +02001695 ctx.pco_req := valueof(ts_PCO_IPv4_SEC_DNS_IPCP);
1696 f_pdp_ctx_act(ctx);
1697 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1698 pco_neg_dns_expected := '0200000A8306'O & ggsn_ip4_dns2
1699 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1700 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1701 }
1702 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001703 f_shutdown_helper();
Philipp Maier33e52612018-05-30 17:22:02 +02001704 }
1705
1706 /* Test if the parser can cope with PCO that contains primary and secondary DNS in a separate IPCP container.
1707 * Note: an unpatched osmo-ggsn version will enter an endless-loop when the test is run
1708 * see Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288. */
1709 testcase TC_pdp4_act_deact_with_separate_dns() runs on GT_CT {
1710
1711 /* Note: an unpatched osmo-ggsn version will enter an endless-loop when
1712 * the test is executed.
1713 * see also: Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288 */
1714
1715 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001716 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Philipp Maier33e52612018-05-30 17:22:02 +02001717 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1718 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1719 var octetstring pco_neg_dns;
1720 var octetstring pco_neg_dns_expected;
1721
1722 ctx.pco_req := valueof(ts_PCO_IPv4_SEPARATE_DNS_IPCP);
1723 f_pdp_ctx_act(ctx);
1724
1725 /* Check if primary DNS is contained */
1726 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1727 pco_neg_dns_expected := '0200000A8106'O & ggsn_ip4_dns1
1728 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1729 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1730 }
Philipp Maier33e52612018-05-30 17:22:02 +02001731
1732 /* Check if secondary DNS is contained */
Stefan Sperling8e7a3962018-07-19 19:24:38 +02001733 /* This used to fail due to a bug in osmo-ggsn, see OS#3381 */
1734 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 2);
Philipp Maier33e52612018-05-30 17:22:02 +02001735 pco_neg_dns_expected := '0200000A8306'O & ggsn_ip4_dns2
1736 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1737 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1738 }
1739 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001740 f_shutdown_helper();
Philipp Maier33e52612018-05-30 17:22:02 +02001741 }
1742
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001743 /* Validate that SUT updates remote TEIC when requested through UpdatePDPContextRequest */
1744 testcase TC_pdp4_act_update_teic() runs on GT_CT {
1745 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001746 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001747 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1748 f_pdp_ctx_act(ctx);
1749
1750 /* UpdatePDPContestRequest changing the local TEIC */
1751 var OCT4 new_teic := ctx.teic;
1752 new_teic[3] := new_teic[3] xor4b '11'O;
1753 f_pdp_ctx_update(ctx, new_teic := new_teic);
1754
1755 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001756 f_shutdown_helper();
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001757 }
1758
1759 /* Validate that SUT updates remote TEID when requested through UpdatePDPContextRequest */
1760 testcase TC_pdp4_act_update_teid() runs on GT_CT {
1761 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001762 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001763 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1764 f_pdp_ctx_act(ctx);
1765
1766 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1767 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1768 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1769
1770 /* Data is sent (back) to the local TEID established during CreatePDPContext */
1771 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1772 f_wait_icmp4_echo_reply(ctx);
1773
1774 /* UpdatePDPContestRequest changing the local TEID */
1775 var OCT4 new_teid := ctx.teid;
1776 new_teid[3] := new_teid[3] xor4b '11'O;
1777 f_pdp_ctx_update(ctx, new_teid := new_teid);
1778
1779 /* Check if we can send data after updating the PDP context. Answer should be sent to the new TEID */
1780 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1781 f_wait_icmp4_echo_reply(ctx);
1782
1783 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001784 f_shutdown_helper();
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001785 }
1786
Oliver Smithee6a0882019-03-08 11:05:46 +01001787 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA without DNS request */
1788 testcase TC_pdp46_act_deact() runs on GT_CT {
1789 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001790 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001791 f_pdp_ctx_act(ctx);
1792 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001793 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001794 }
1795
1796 /* Test PDP context activation for dynamic IPv4v6 EUA with IPv4 DNS in IPCP */
1797 testcase TC_pdp46_act_deact_ipcp() runs on GT_CT {
1798 f_init();
1799 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1800 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001801 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001802 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_IPCP);
1803 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001804 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001805 /* verify IPCP is at all contained */
1806 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1807 setverdict(fail, "IPCP not found in PCO");
1808 }
Harald Welte79737b42019-04-10 10:39:30 +02001809 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001810 /* verify IPCP contains both primary and secondary IPv4 DNS */
1811 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
1812 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1813 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1814 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1815 } else {
1816 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1817 }
1818 }
1819 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001820 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001821 }
1822
1823 /* Test PDP context activation for dynamic IPv4v6 EUA with IPv6 DNS in PCO and router solicitation/advertisement */
1824 testcase TC_pdp46_act_deact_icmp6() runs on GT_CT {
1825 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001826 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001827 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1828 f_pdp_ctx_act(ctx);
1829
1830 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp46(ctx));
1831 f_wait_rtr_adv(ctx);
1832 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp46(ctx));
1833
1834 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001835 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001836 }
1837
1838 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA with request of IPv4 DNS in PCO */
1839 testcase TC_pdp46_act_deact_pcodns4() runs on GT_CT {
1840 f_init();
1841
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001842 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001843 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1844 f_pdp_ctx_act(ctx);
1845
Harald Welte79737b42019-04-10 10:39:30 +02001846 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001847 /* verify PCO contains both primary and secondary IPv4 DNS */
1848 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1849 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 1), ggsn_ip4_dns1)) {
1850 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1851 }
1852
1853 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1854 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 2), ggsn_ip4_dns2)) {
1855 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1856 }
1857
1858 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001859 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001860 }
1861
1862 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA with request of IPv6 DNS in PCO */
1863 testcase TC_pdp46_act_deact_pcodns6() runs on GT_CT {
1864 f_init();
1865
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001866 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001867 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1868 f_pdp_ctx_act(ctx);
1869
Harald Welte79737b42019-04-10 10:39:30 +02001870 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001871 /* verify PCO contains both primary and secondary IPv6 DNS */
1872 var OCT4 ggsn_ip6_dns1 := f_inet6_addr(m_ggsn_ip6_dns1);
1873 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 1), ggsn_ip6_dns1)) {
1874 setverdict(fail, "Primary DNS IPv6 PCO option not found");
1875 }
1876
1877 var OCT4 ggsn_ip6_dns2 := f_inet6_addr(m_ggsn_ip6_dns2);
1878 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 2), ggsn_ip6_dns2)) {
1879 setverdict(fail, "Secondary DNS IPv6 PCO option not found");
1880 }
1881
1882 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001883 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001884 }
1885
1886 /* Test PDP context activation for dynamic IPv4v6 EUA.
1887 Test we can send ICMPv6 ping over GTPU to DNS server. */
1888 testcase TC_pdp46_act_deact_gtpu_access() runs on GT_CT {
1889 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001890 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001891 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1892 f_pdp_ctx_act(ctx);
1893
1894 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1895
1896 /* Check if we can use valid global src addr, should work */
1897 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv4_address;
1898 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1899 f_wait_icmp4_echo_reply(ctx);
1900
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001901 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001902 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001903 }
1904
1905 /* Assert that packets with wrong ipv4 src addr are dropped by GGSN on APN IPv4v6 */
1906 testcase TC_pdp46_act_deact_gtpu_access_wrong_saddr_ipv4() runs on GT_CT {
1907 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001908 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001909 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1910 f_pdp_ctx_act(ctx);
1911
1912 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1913 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv4_address;
Oliver Smithee6a0882019-03-08 11:05:46 +01001914 var OCT4 saddr_wrong := substr(saddr, 0, 3) & (saddr[3] xor4b '11'O);
1915 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_wrong, dns1_addr));
1916 f_wait_gtpu_fail(ctx);
1917
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001918 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001919 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001920 }
1921
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001922 /* Check that attempting RA with another ll src addr won't work, packet dropped: */
1923 testcase TC_pdp46_act_deact_gtpu_access_wrong_ll_saddr_ipv6() runs on GT_CT {
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001924 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001925 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001926 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1927 f_pdp_ctx_act(ctx);
1928
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001929 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1930 var OCT16 saddr_ll_wrong := f_ipv6_mangle(saddr_ll, 8);
1931 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_ll_wrong));
1932 f_wait_gtpu_fail(ctx);
1933
1934 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001935 f_shutdown_helper();
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001936 }
1937
1938 /* Assert that packets with wrong ipv6 global src addr are dropped by GGSN on APN IPv4v6 */
1939 testcase TC_pdp46_act_deact_gtpu_access_wrong_global_saddr_ipv6() runs on GT_CT {
1940 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001941 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001942 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1943 f_pdp_ctx_act(ctx);
1944
1945 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1946 f_wait_rtr_adv(ctx);
1947 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1948
1949 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1950 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1951 var OCT16 saddr_wrong := f_ipv6_mangle(saddr_glob);
1952 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_wrong, dns1_addr));
Oliver Smithee6a0882019-03-08 11:05:46 +01001953 f_wait_gtpu_fail(ctx);
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001954
Oliver Smithee6a0882019-03-08 11:05:46 +01001955 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001956 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001957 }
1958
1959 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1960 testcase TC_pdp46_clients_interact() runs on GT_CT {
1961 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001962 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1963 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001964 f_pdp_ctx_act(ctxA);
1965 f_send_gtpu(ctxA, f_icmpv6_rs_for_pdp46(ctxA));
1966 f_wait_rtr_adv(ctxA);
1967 f_send_gtpu(ctxA, f_gen_icmpv6_neigh_solicit_for_pdp46(ctxA));
1968
1969 f_pdp_ctx_act(ctxB);
1970 f_send_gtpu(ctxB, f_icmpv6_rs_for_pdp46(ctxB));
1971 f_wait_rtr_adv(ctxB);
1972 f_send_gtpu(ctxB, f_gen_icmpv6_neigh_solicit_for_pdp46(ctxB));
1973
1974 var OCT16 addrA_ll := f_ipv6_link_local(ctxA.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1975 var OCT16 addrB_ll := f_ipv6_link_local(ctxB.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1976 var OCT16 addrA_glob := f_ipv6_global(ctxA.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1977 var OCT16 addrB_glob := f_ipv6_global(ctxB.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1978
1979 /* Validate if clients can interact using ll addr. */
1980 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_ll, addrB_ll));
1981 f_wait_gtpu_fail(ctxB);
1982
1983 /* Validate if clients can interact using global addr. */
1984 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_glob, addrB_glob));
1985 f_wait_gtpu_fail(ctxB);
1986
1987 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001988 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001989 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001990 }
1991
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02001992 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA on a v4-only APN */
1993 testcase TC_pdp46_act_deact_apn4() runs on GT_CT {
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01001994 const OCT1 cause_accept := '80'O; /* Normal accept cause */
1995 const OCT1 cause_new_pdp_type := '81'O; /* Cause: New PDP type due to network preference */
1996 const OCT1 cause_unknown_pdp := 'DC'O; /* Cause: Unknown PDP address or PDP type */
1997 var CreatePDPContextResponse cpr;
1998
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02001999 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002000 var PdpContext ctx46 := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dynv6Dyn)));
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01002001 cpr := f_pdp_ctx_act(ctx46, (cause_unknown_pdp, cause_new_pdp_type));
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002002
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01002003 if (cpr.cause.causevalue == cause_new_pdp_type) {
2004 /* 3GPP TS 23.060 sec 9.2.1: "If the MS requests PDP type IPv4v6,
2005 * but the operator preferences dictate the use of a single IP
2006 * version only, the PDP type shall be changed to a single address
2007 * PDP type (IPv4 or IPv6) and a reason cause shall be returned to
2008 * the MS indicating that only the assigned PDP type is allowed. In
2009 * this case, the MS shall not request another PDP context for the
2010 * other PDP type during the existence of the PDP context." */
2011 f_pdp_ctx_del(ctx46, '1'B);
2012 } else {
2013 /* 3GPP TS 23.060 sec 9.2.1 NOTE 5: If the MS requests PDP type
2014 * IPv4v6, and the PDP context is rejected due to "unknown PDP
2015 * type", the MS can attempt to establish dual-stack connectivity
2016 * by performing two PDP context request procedures to activate an
2017 * IPv4 PDP context and an IPv6 PDP context, both to the same APN. A
2018 * typical MS first attempts v4v6, and if rejected, then tries v4
2019 * and v6 separetly */
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002020 var PdpContext ctx4 := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01002021 f_pdp_ctx_act(ctx4, cause_accept); /* Normal accept cause */
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002022
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002023 var PdpContext ctx6 := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv6Dyn)));
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01002024 f_pdp_ctx_act(ctx6, cause_unknown_pdp); /* Cause: Unknown PDP address or PDP type */
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002025
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01002026 f_pdp_ctx_del(ctx4, '1'B);
2027 }
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002028 f_shutdown_helper();
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002029 }
2030
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002031 /* Validate if 2nd CtxCreateReq with increased Recovery IE causes ggsn to drop 1st one (while keeping 2nd one). */
2032 testcase TC_pdp_act2_recovery() runs on GT_CT {
2033 var Gtp1cUnitdata ud;
2034 var default d;
2035 var boolean ctxA_deleted := false;
2036 var boolean ctxB_created := false;
2037
2038 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002039 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
2040 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002041 f_pdp_ctx_act(ctxA);
2042
Vadim Yanitskiyd344b4a2022-02-09 18:28:18 +06002043 g_restart_ctr := int2oct((oct2int(g_restart_ctr) + 1) mod 256, 1);
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002044
2045 log("sending 2nd CreatePDP (recovery increased)");
2046 f_send_gtpc(ts_GTPC_CreatePDP(g_peer_c, g_c_seq_nr, ctxB.imsi, g_restart_ctr,
2047 ctxB.teid, ctxB.teic, ctxB.nsapi, ctxB.eua, ctxB.apn,
2048 g_sgsn_ip_c, g_sgsn_ip_u, ctxB.msisdn, ctxB.pco_req));
2049 T_default.start;
2050 d := activate(pingpong());
2051 alt {
2052 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ctxB.teic)) -> value ud {
2053 f_handle_create_req(ctxB, ud);
2054 if (not ctxB_created) {
2055 ctxB_created := true;
2056 setverdict(pass);
2057 } else {
2058 setverdict(fail, "Repeated createPDPContextResponse(ctxB)");
2059 }
2060
2061 if (not ctxA_deleted) {
2062 repeat;
2063 }
2064 }
2065 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctxA.teic)) -> value ud {
2066 if (ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.tearDownIndicator)) {
2067 setverdict(pass);
2068 } else {
2069 setverdict(fail);
2070 }
2071
2072 if (not ctxA_deleted) {
2073 ctxA_deleted := true;
2074 setverdict(pass);
2075 } else {
2076 setverdict(fail, "Repeated deletePDPContextRequest(ctxA)");
2077 }
2078
2079 if (not ctxB_created) {
2080 repeat;
2081 }
2082 }
2083 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctxB.teic)) -> value ud {
2084 setverdict(fail, "GGSN dropping still valid pdp ctx");
2085 }
2086 }
2087 deactivate(d);
2088 T_default.stop;
2089
2090 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002091 f_shutdown_helper();
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002092 }
2093
2094
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +01002095 /* Send a duplicate echo req. osmo-ggsn maintains a queue for sent responses (T3-RESPONSE * N3-REQUESTS):
2096 * If same delete req is sent and duplicate is detected, saved duplicate response should be sent back. */
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002097 testcase TC_act_deact_retrans_duplicate() runs on GT_CT {
2098 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002099 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002100 f_pdp_ctx_act(ctx);
2101 f_pdp_ctx_del(ctx, '1'B);
2102 /* leave some time in between to make sure retransmit response queue keeps packets for a while */
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +01002103 f_sleep(int2float(mp_t3_response));
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002104 /* g_c_seq_nr was increased during f_pdp_ctx_del(), we want a
2105 duplicate. If it was not a duplicate, osmo-ggsn would answer
2106 with a failure since that PDP ctx was already deleted. */
Pau Espin Pedrold6b51332022-05-19 17:47:11 +02002107 if (g_c_seq_nr == 0) {
2108 g_c_seq_nr := 65535;
2109 } else {
2110 g_c_seq_nr := g_c_seq_nr - 1;
2111 }
Pau Espin Pedrol10ec96e2022-02-09 17:03:15 +01002112 f_pdp_ctx_del(ctx, '1'B, expect_diameter := false);
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002113
2114 /* Now send a new pdp ctx del (increased seqnum). It should fail with cause "non-existent": */
2115 var OCT1 cause_nonexistent := 'C0'O;
Pau Espin Pedrol10ec96e2022-02-09 17:03:15 +01002116 f_pdp_ctx_del(ctx, '1'B, cause_nonexistent, expect_diameter := false);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002117 f_shutdown_helper();
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002118 }
2119
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002120 /* Activate PDP context + trigger Recovery procedure through EchoResp */
2121 testcase TC_pdp_act_restart_ctr_echo() runs on GT_CT {
2122 var Gtp1cUnitdata ud;
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002123 g_use_echo_intval := 5;
2124 timer T_echo;
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002125 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002126 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002127 f_pdp_ctx_act(ctx);
2128
2129 /* Wait to receive echo request and send initial Restart counter */
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002130 T_echo.start(int2float(g_use_echo_intval) + 1.0);
2131 alt {
2132 [] GTPC.receive(tr_GTPC_PING(?)) -> value ud {
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002133 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
2134 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002135 }
2136 [] T_echo.timeout {
2137 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2138 "Timeout waiting for ping");
2139 }
2140 }
2141 T_echo.stop;
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002142
2143 /* Wait to receive second echo request and send incremented Restart
2144 counter. This will fake a restarted SGSN, and pdp ctx allocated
2145 should be released by GGSN */
Vadim Yanitskiyd344b4a2022-02-09 18:28:18 +06002146 g_restart_ctr := int2oct((oct2int(g_restart_ctr) + 1) mod 256, 1);
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002147 T_echo.start(int2float(g_use_echo_intval) + 1.0);
2148 alt {
2149 [] GTPC.receive(tr_GTPC_PING(?)) -> value ud {
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002150 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
2151 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002152 }
2153 [] T_echo.timeout {
2154 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2155 "Timeout waiting for ping");
2156 }
2157 }
2158 T_echo.stop;
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002159 f_pdp_ctx_exp_del_req(ctx, omit, true);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002160 f_shutdown_helper();
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002161 }
2162
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002163 /* Test creation, user plane and deletion of big amount (1000) of concurrent PDP context */
2164 testcase TC_lots_of_concurrent_pdp_ctx() runs on GT_CT {
2165 var Gtp1cUnitdata udc;
2166 var Gtp1uUnitdata udu;
2167 const integer num_ctx := 1000;
2168 var PdpContext ctx[num_ctx];
2169 timer T_next := 0.01;
2170 var integer next_req_ctx := 0;
2171 var integer rx_resp_ctx := 0;
2172 var integer rx_pong := 0;
2173 var OCT4 dns1_addr;
2174 var OCT4 saddr;
2175 var integer teic;
2176 var integer idx;
2177
2178 f_init();
2179
2180 for (var integer i := 0; i < num_ctx; i := i + 1) {
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002181 ctx[i] := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234" & int2str(f_rnd_int(4294967296)), c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002182 ctx[i].teic := int2oct(i+1, 4); /* +1: skip TEIC=0 */
2183 ctx[i].teid := int2oct(i+1, 4); /* +1: skip TEID=0 */
2184 ctx[i].pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
2185 }
2186
2187 T_default.start(60.0);
2188
2189 T_next.start;
2190 alt {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002191 [Gx_PROC.checkstate("Connected")] as_DIA_Gx_CCR(INITIAL_REQUEST) { repeat; }
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002192 [Gy_PROC.checkstate("Connected")] as_DIA_Gy_CCR(omit, INITIAL_REQUEST) { repeat; }
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002193 [] pingpong();
2194 [] T_next.timeout {
2195 f_send_gtpc(ts_GTPC_CreatePDP(g_peer_c, g_c_seq_nr, ctx[next_req_ctx].imsi, g_restart_ctr,
2196 ctx[next_req_ctx].teid, ctx[next_req_ctx].teic, ctx[next_req_ctx].nsapi,
2197 ctx[next_req_ctx].eua, ctx[next_req_ctx].apn, g_sgsn_ip_c, g_sgsn_ip_u,
2198 ctx[next_req_ctx].msisdn, ctx[next_req_ctx].pco_req, ctx[next_req_ctx].ratType,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +02002199 ctx[next_req_ctx].uli, ctx[next_req_ctx].charging_char, ctx[next_req_ctx].imeisv,
2200 ctx[next_req_ctx].ms_tz));
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002201 next_req_ctx := next_req_ctx + 1;
2202 if (next_req_ctx < num_ctx) {
2203 T_next.start;
2204 }
2205 repeat;
2206 }
2207 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ?)) -> value udc {
2208 teic := oct2int(udc.gtpc.teid);
2209 if (not match(teic, (1 .. num_ctx))) {
2210 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2211 "Rx Unexpected TEIC");
2212 }
2213 idx := teic - 1;
2214 f_handle_create_req(ctx[idx], udc);
2215 rx_resp_ctx := rx_resp_ctx + 1;
2216
2217 dns1_addr := f_PCO_extract_proto(ctx[idx].pco_neg, '000d'O);
2218 saddr := ctx[idx].eua.endUserAddress.endUserAddressIPv4.ipv4_address;
2219 f_send_gtpu(ctx[idx], f_gen_icmpv4_echo(saddr, dns1_addr));
2220 repeat;
2221 }
2222 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ?)) -> value udu {
2223 var octetstring gpdu := udu.gtpu.gtpu_IEs.g_PDU_IEs.data;
2224 var IPv4_packet ip4 := f_IPv4_dec(gpdu);
2225 if (ip4.header.ver != 4) {
2226 repeat;
2227 }
2228 var PDU_ICMP icmp4 := f_dec_PDU_ICMP(ip4.payload);
2229 if (not match(icmp4, (tr_ICMPv4_ERP, tr_ICMPv4_DU))) {
2230 repeat;
2231 }
2232 rx_pong := rx_pong + 1;
2233 if (rx_pong < num_ctx) {
2234 repeat;
2235 }
2236 setverdict(pass);
2237 }
2238 [] GTPC.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPC"); }
2239 [] GTPU.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPU"); }
2240 }
2241
2242 /* Let's close them now: */
2243 next_req_ctx := 0;
2244 rx_resp_ctx := 0;
2245 T_next.start;
2246 alt {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002247 [Gx_PROC.checkstate("Connected")] as_DIA_Gx_CCR(TERMINATION_REQUEST) { repeat; }
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002248 [Gy_PROC.checkstate("Connected")] as_DIA_Gy_CCR(omit, TERMINATION_REQUEST) { repeat; }
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002249 [] pingpong();
2250 [] T_next.timeout {
2251 f_send_gtpc(ts_GTPC_DeletePDP(g_peer_c, g_c_seq_nr, ctx[next_req_ctx].teic_remote, ctx[next_req_ctx].nsapi, '1'B));
2252 next_req_ctx := next_req_ctx + 1;
2253 if (next_req_ctx < num_ctx) {
2254 T_next.start;
2255 }
2256 repeat;
2257 }
2258 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextResponse, ?)) -> value udc {
2259 teic := oct2int(udc.gtpc.teid);
2260 if (not match(teic, (1 .. num_ctx))) {
2261 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2262 "Rx Unexpected TEIC");
2263 }
2264 rx_resp_ctx := rx_resp_ctx + 1;
2265 if (rx_resp_ctx < num_ctx) {
2266 repeat;
2267 }
2268 setverdict(pass);
2269 }
2270 [] GTPC.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPC"); }
2271 [] GTPU.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPU"); }
2272 }
2273 T_next.stop;
2274
2275 T_default.stop;
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002276 f_shutdown_helper();
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002277 }
2278
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002279 /* Test callocation of PDP contexts until reaching addr pool exhaustion */
2280 type record of OCT4 TEIClist;
2281 testcase TC_addr_pool_exhaustion() runs on GT_CT {
2282 var Gtp1cUnitdata udc;
2283 var Gtp1uUnitdata udu;
2284 var PdpContext ctx;
2285 timer T_next := 0.005;
2286 var integer next_req_ctx := 0;
2287 var integer rx_resp_ctx := 0;
2288 var integer num_ctx;
2289 var boolean cont_req := true;
2290 var CreatePDPContextResponse cpr;
2291 var TEIClist teic_list := {};
2292 var integer teic;
2293
2294 f_init();
2295
2296 T_default.start(120.0);
2297
2298 T_next.start;
2299 alt {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002300 [Gx_PROC.checkstate("Connected")] as_DIA_Gx_CCR(INITIAL_REQUEST) { repeat; }
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002301 [Gy_PROC.checkstate("Connected")] as_DIA_Gy_CCR(omit, INITIAL_REQUEST) { repeat; }
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002302 [] pingpong();
2303 [] T_next.timeout {
2304 if (cont_req) {
2305 if (next_req_ctx - rx_resp_ctx < 100) { /* if we have too many in progress, wait a bit to continue */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002306 ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234" & int2str(f_rnd_int(4294967296)), c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002307 ctx.nsapi := '0001'B;
2308 ctx.teic := int2oct(next_req_ctx+1, 4); /* +1: skip TEIC=0 */
2309 ctx.teid := int2oct(next_req_ctx+1, 4); /* +1: skip TEID=0 */
2310 f_send_gtpc(ts_GTPC_CreatePDP(g_peer_c, g_c_seq_nr, ctx.imsi, g_restart_ctr,
2311 ctx.teid, ctx.teic, ctx.nsapi,
2312 ctx.eua, ctx.apn, g_sgsn_ip_c, g_sgsn_ip_u,
2313 ctx.msisdn, ctx.pco_req, ctx.ratType,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +02002314 ctx.uli, ctx.charging_char, ctx.imeisv,
2315 ctx.ms_tz));
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002316 next_req_ctx := next_req_ctx + 1;
2317 }
2318 T_next.start;
2319 }
2320 repeat;
2321 }
2322 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ?)) -> value udc {
2323 cpr := udc.gtpc.gtpc_pdu.createPDPContextResponse;
2324
2325 if (cpr.cause.causevalue == '80'O) {
2326 teic_list := teic_list & {cpr.teidControlPlane.teidControlPlane};
2327 } else {
2328 if (cont_req == true) {
2329 num_ctx := rx_resp_ctx;
2330 log("Successfully created ", num_ctx, " PDP contexts before exhausting the pool");
2331 setverdict(pass);
2332 }
2333 cont_req := false;
2334 }
2335 rx_resp_ctx := rx_resp_ctx + 1;
2336 if (not cont_req and next_req_ctx == rx_resp_ctx) {
2337 break;
2338 } else {
2339 repeat;
2340 }
2341 }
2342 [] GTPC.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPC"); }
2343 [] GTPU.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPU"); }
2344 }
2345
2346 /* Let's close them now: */
2347 next_req_ctx := 0;
2348 rx_resp_ctx := 0;
2349 T_next.start;
2350 alt {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002351 [Gx_PROC.checkstate("Connected")] as_DIA_Gx_CCR(TERMINATION_REQUEST) { repeat; }
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002352 [Gy_PROC.checkstate("Connected")] as_DIA_Gy_CCR(omit, TERMINATION_REQUEST) { repeat; }
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002353 [] pingpong();
2354 [] T_next.timeout {
2355 f_send_gtpc(ts_GTPC_DeletePDP(g_peer_c, g_c_seq_nr, teic_list[next_req_ctx], '0001'B, '1'B));
2356 next_req_ctx := next_req_ctx + 1;
2357 if (next_req_ctx < num_ctx) {
2358 T_next.start;
2359 }
2360 repeat;
2361 }
2362 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextResponse, ?)) -> value udc {
2363 teic := oct2int(udc.gtpc.teid);
2364 if (not match(teic, (1 .. num_ctx))) {
2365 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2366 "Rx Unexpected TEIC");
2367 }
2368 rx_resp_ctx := rx_resp_ctx + 1;
2369 if (rx_resp_ctx < num_ctx) {
2370 repeat;
2371 }
2372 setverdict(pass);
2373 }
2374 [] GTPC.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPC"); }
2375 [] GTPU.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPU"); }
2376 }
2377 T_next.stop;
2378
2379 T_default.stop;
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002380 f_shutdown_helper();
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002381 }
2382
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002383 /* Test charging over Gy interface. */
2384 testcase TC_gy_charging_cc_time() runs on GT_CT {
2385 var default d;
2386
2387 g_gy_validity_time := 3; /* Grant access for 3 seconds, needs to be re-validated afterwards */
2388 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002389 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002390 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
2391 f_pdp_ctx_act(ctx);
2392
2393 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
2394
2395 /* Send some UL traffic: */
2396 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
2397 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
2398 f_wait_icmp4_echo_reply(ctx);
2399
2400 T_default.start(10.0);
2401 d := activate(pingpong());
2402
2403 g_gy_validity_time := 2;
2404 /* First update reports octests/pkt on both UL/DL (see icmp ping-pong above) */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002405 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +02002406 f_validate_gy_cc_report(g_rx_gy, VALIDITY_TIME, (3..4), 28, 28);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002407
2408 /* Second update: 0 ul/dl pkt/octet should be reported, since nothing was sent */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002409 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +02002410 f_validate_gy_cc_report(g_rx_gy, VALIDITY_TIME, (2..3), 0, 0);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002411
2412 /* Third update: make sure report contains again octets/pkts for both UL/DL: */
2413 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
2414 f_wait_icmp4_echo_reply(ctx);
2415 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
2416 f_wait_icmp4_echo_reply(ctx);
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002417 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +02002418 f_validate_gy_cc_report(g_rx_gy, VALIDITY_TIME, (2..3), 56, 56);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002419
2420 /* Let the CCA reach the GGSN */
2421 f_sleep(0.5);
2422 deactivate(d);
2423 T_default.stop;
2424
2425 /* Send some data and validate it is reported in the TERMINATION_REQUEST
2426 * (triggered by PFCP Session Deletion Response): */
2427 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
2428 f_wait_icmp4_echo_reply(ctx);
2429
2430 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +02002431 f_validate_gy_cc_report(g_rx_gy, FINAL, (0..2), 28, 28);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002432
2433
2434 f_shutdown_helper();
2435 }
2436
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02002437 /* Test Volume-Quota-Thresold AVP triggers request before Validity-Time */
2438 testcase TC_gy_charging_volume_quota_threshold() runs on GT_CT {
2439 var default d;
2440 timer Tout;
2441 g_gy_volume_threshold := 1000; /* Will make a trigger when we send bigger payload below */
2442 g_gy_validity_time := 8; /* Grant access for 8 seconds, needs to be re-validated afterwards */
2443 f_init();
2444 var float tout_sec := int2float(g_gy_validity_time) / 2.0;
2445 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
2446 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
2447 f_pdp_ctx_act(ctx);
2448
2449 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
2450
2451 T_default.start(40.0);
2452 d := activate(pingpong());
2453
2454 /* Send some UL traffic: */
2455 var octetstring payload := f_rnd_octstring(1200);
2456 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
2457 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr, payload));
2458 f_wait_icmp4_echo_reply(ctx);
2459
2460 /* ICMP Req generates one report: */
2461 Tout.start(tout_sec);
2462 alt {
2463 [] as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
2464 [] Tout.timeout {
2465 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2466 "TImeout waiting for Gy UPDATE triggered by Volume-Quota-Threshold");
2467 }
2468 }
Pau Espin Pedrol5fa8f782022-10-03 13:57:54 +02002469 f_validate_gy_cc_report(g_rx_gy, THRESHOLD, (0..6), (1200..1400), 0);
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02002470
2471 /* ICMP Resp (echo back) generates one report: */
2472 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
Pau Espin Pedrol5fa8f782022-10-03 13:57:54 +02002473 f_validate_gy_cc_report(g_rx_gy, THRESHOLD, (0..1), 0, (1200..1400));
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02002474
2475 /* Second update: 0 ul/dl pkt/octet should be reported, since nothing was sent */
2476 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
2477 f_validate_gy_cc_report(g_rx_gy, VALIDITY_TIME, (8..9), 0, 0);
2478
2479 /* Let the CCA reach the GGSN */
2480 f_sleep(0.5);
2481 deactivate(d);
2482 T_default.stop;
2483
2484 f_pdp_ctx_del(ctx, '1'B);
2485 f_validate_gy_cc_report(g_rx_gy, FINAL, (0..2), 0, 0);
2486
2487
2488 f_shutdown_helper();
2489 }
2490
Harald Welte94ade362017-08-04 00:36:55 +02002491 control {
Harald Welteed7a1772017-08-09 20:26:20 +02002492 execute(TC_pdp4_act_deact());
2493 execute(TC_pdp4_act_deact_ipcp());
Harald Weltef8298542019-04-10 10:15:28 +02002494 execute(TC_pdp4_act_deact_ipcp_pap_broken());
Harald Welteed7a1772017-08-09 20:26:20 +02002495 execute(TC_pdp4_act_deact_pcodns());
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01002496 execute(TC_pdp4_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01002497 execute(TC_pdp4_act_deact_gtpu_access_wrong_saddr());
2498 execute(TC_pdp4_act_deact_gtpu_access_ipv6_apn4());
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02002499 execute(TC_pdp4_clients_interact_with_txseq());
2500 execute(TC_pdp4_clients_interact_without_txseq());
Philipp Maier33e52612018-05-30 17:22:02 +02002501 execute(TC_pdp4_act_deact_with_single_dns());
2502 execute(TC_pdp4_act_deact_with_separate_dns());
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01002503 execute(TC_pdp4_act_update_teic());
2504 execute(TC_pdp4_act_update_teid());
Harald Welteed7a1772017-08-09 20:26:20 +02002505
2506 execute(TC_pdp6_act_deact());
2507 execute(TC_pdp6_act_deact_pcodns());
2508 execute(TC_pdp6_act_deact_icmp6());
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01002509 execute(TC_pdp6_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01002510 execute(TC_pdp6_act_deact_gtpu_access_wrong_ll_saddr());
2511 execute(TC_pdp6_act_deact_gtpu_access_wrong_global_saddr());
2512 execute(TC_pdp6_act_deact_gtpu_access_ipv4_apn6());
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01002513 execute(TC_pdp6_clients_interact());
Harald Weltedca80052017-08-13 20:01:38 +02002514
Oliver Smithee6a0882019-03-08 11:05:46 +01002515 execute(TC_pdp46_act_deact());
2516 execute(TC_pdp46_act_deact_ipcp());
2517 execute(TC_pdp46_act_deact_icmp6());
2518 execute(TC_pdp46_act_deact_pcodns4());
2519 execute(TC_pdp46_act_deact_pcodns6());
2520 execute(TC_pdp46_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01002521 execute(TC_pdp46_act_deact_gtpu_access_wrong_saddr_ipv4());
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01002522 execute(TC_pdp46_act_deact_gtpu_access_wrong_ll_saddr_ipv6());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01002523 execute(TC_pdp46_act_deact_gtpu_access_wrong_global_saddr_ipv6());
Oliver Smithee6a0882019-03-08 11:05:46 +01002524 execute(TC_pdp46_clients_interact());
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002525 execute(TC_pdp46_act_deact_apn4());
Oliver Smithee6a0882019-03-08 11:05:46 +01002526
Harald Weltedca80052017-08-13 20:01:38 +02002527 execute(TC_echo_req_resp());
Pau Espin Pedrol480e67f2022-02-09 16:37:47 +01002528 execute(TC_echo_req_resp_gtpu());
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002529 execute(TC_pdp_act2_recovery());
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002530 execute(TC_act_deact_retrans_duplicate());
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002531
Pau Espin Pedrol6f319f92020-01-03 20:18:57 +01002532 execute(TC_pdp_act_restart_ctr_echo());
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002533
2534 execute(TC_lots_of_concurrent_pdp_ctx());
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002535 /* Keep at the end, crashes older osmo-ggsn versions (OS#5469): */
2536 execute(TC_addr_pool_exhaustion());
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002537
2538 /* open5gs specific tests: */
2539 if (m_ggsn_impl == GGSN_IMPL_OPEN5GS) {
2540 execute(TC_gy_charging_cc_time());
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02002541 execute(TC_gy_charging_volume_quota_threshold());
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002542 }
Harald Welte94ade362017-08-04 00:36:55 +02002543 }
Harald Welte379d45a2017-08-03 09:55:15 +02002544}