blob: 5b1f7a13c9c5486497818f3887c9ec5e9738aad4 [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);
Oliver Smith95722c62023-10-20 13:59:10 +0200295 /* Emit a marker to appear in the SUT's own logging output */
296 f_logp(GGSNVTY, testcasename() & "() start");
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100297 } else if (m_ggsn_impl == GGSN_IMPL_OPEN5GS) {
298 f_init_diameter(testcasename());
Pau Espin Pedrolc1b1ddf2022-01-19 18:10:30 +0100299 }
Harald Welte94ade362017-08-04 00:36:55 +0200300 }
301
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +0100302 function f_shutdown_helper() runs on GT_CT {
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +0100303 /* Sleep (T3-RESPONSE * N3-REQUESTS) seconds.
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +0100304 * This ensures all retransmit queues are cleared before jumping
305 * into next tests, hence avoding situation where a test resuses
306 * a seqnum still in the GGSN's resp queue (dup req detector).
307 * See OS#5485 avout decreasing time. We could also add a new
308 * VTY command that calls gtp_clear_queues() */
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +0100309 f_sleep(int2float(mp_t3_response * mp_n3_requests));
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +0100310 setverdict(pass);
311 }
312
Harald Welte94ade362017-08-04 00:36:55 +0200313 /* Altstep implementing responses to any incoming echo requests */
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100314 private altstep pingpong() runs on GT_CT {
Harald Welte94ade362017-08-04 00:36:55 +0200315 var Gtp1cUnitdata ud;
Harald Welte3af89482017-08-04 16:20:23 +0200316 var Gtp1uUnitdata udu;
Pau Espin Pedrol05118022022-02-17 19:49:13 +0100317 [g_use_echo_intval > 0] GTPC.receive(tr_GTPC_PING(?)) -> value ud {
Harald Welte811651e2017-08-05 15:25:06 +0200318 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200319 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
Harald Welte94ade362017-08-04 00:36:55 +0200320 repeat;
321 };
Pau Espin Pedrol05118022022-02-17 19:49:13 +0100322 [g_use_echo_intval == 0] GTPC.receive(tr_GTPC_PING(?)) {
Pau Espin Pedrolc04c69e2020-03-03 16:46:29 +0100323 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
324 "GTP Echo Req rceived but not enabled in VTY");
Harald Welte3af89482017-08-04 16:20:23 +0200325 };
Pau Espin Pedrolc04c69e2020-03-03 16:46:29 +0100326 [] T_default.timeout {
327 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
328 "pinpong T_default timeout");
329 };
Harald Welte94ade362017-08-04 00:36:55 +0200330 }
331
Harald Welte811651e2017-08-05 15:25:06 +0200332 /* 'internet' in DNS encoding */
Harald Welteed097432017-08-13 13:28:49 +0200333 const octetstring c_ApnInternet := '08696E7465726E6574'O;
334 const octetstring c_ApnInet6 := '05696E657436'O;
335 const octetstring c_ApnInet46 := '06696E65743436'O;
Harald Welte94ade362017-08-04 00:36:55 +0200336
Harald Welte811651e2017-08-05 15:25:06 +0200337 /* return random NSAPI */
338 function f_rnd_nsapi() return BIT4 {
339 return int2bit(f_rnd_int(16), 4);
340 }
341
342 /* return random TEI[DC] */
343 function f_rnd_tei() return OCT4 {
344 return int2oct(f_rnd_int(4294967296), 4);
345 }
346
Pau Espin Pedrol38968e92022-05-13 16:17:48 +0200347 /* return random IMEI(SV) */
348 function f_rnd_imeisv() return OCT8 {
349 return hex2oct(f_rnd_hexstring(16, 10));
350 }
351
Harald Welte811651e2017-08-05 15:25:06 +0200352 /* define an (internal) representation of a PDP context */
Pau Espin Pedrold25095f2022-05-18 16:29:05 +0200353 template PdpContext t_DefinePDP(hexstring imsi, charstring msisdn, octetstring apn,
Pau Espin Pedrol38aeffb2022-02-01 20:46:29 +0100354 EndUserAddress eua, OCT1 ratType := '02'O /* GERAN */) := {
Harald Welte811651e2017-08-05 15:25:06 +0200355 imsi := imsi,
Pau Espin Pedrold25095f2022-05-18 16:29:05 +0200356 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 +0200357 nsapi := f_rnd_nsapi(),
358 apn := apn,
Harald Welteed7a1772017-08-09 20:26:20 +0200359 pco_req := omit,
Harald Welte811651e2017-08-05 15:25:06 +0200360 eua := eua,
361 teid := f_rnd_tei(),
Pau Espin Pedrol38aeffb2022-02-01 20:46:29 +0100362 teic := f_rnd_tei(),
Pau Espin Pedrolca587f12022-02-02 10:42:01 +0100363 ratType := ratType,
364 uli := {
365 type_gtpc := '98'O,
366 lengthf := 0 /* filled in by encoder */,
367 geographicLocationType := '00'O /* CGI */,
368 geographicLocation := {
369 geographicLocationCGI := ts_GeographicLocationCGI('262'H, '42F'H, '0001'O, '0002'O)
370 }
Pau Espin Pedrol0e127872022-05-12 17:58:50 +0200371 },
Pau Espin Pedrol38968e92022-05-13 16:17:48 +0200372 charging_char := '0000'O,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +0200373 imeisv := f_rnd_imeisv(),
374 ms_tz := f_ts_MS_TimeZone('03'O, '01'B)
Harald Welte811651e2017-08-05 15:25:06 +0200375 }
376
377 /* send GTP-C for a given context and increment sequence number */
Harald Welte41575e92017-08-13 13:49:57 +0200378 function f_send_gtpc(in template Gtp1cUnitdata data) runs on GT_CT {
Harald Welte811651e2017-08-05 15:25:06 +0200379 GTPC.send(data);
Pau Espin Pedrol82a7f702022-05-19 17:41:29 +0200380 g_c_seq_nr := (g_c_seq_nr + 1) mod 65536;
Harald Welte811651e2017-08-05 15:25:06 +0200381 }
382
383 /* send GTP-U for a given context and increment sequence number */
Harald Welte231b9412017-08-09 17:16:31 +0200384 function f_send_gtpu(inout PdpContext ctx, in octetstring data) runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +0200385 if (use_gtpu_txseq) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200386 GTPU.send(ts_GTP1U_GPDU(g_peer_u, g_d_seq_nr, ctx.teid_remote, data));
Pau Espin Pedrol82a7f702022-05-19 17:41:29 +0200387 g_d_seq_nr := (g_d_seq_nr + 1) mod 65536;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +0200388 } else {
389 GTPU.send(ts_GTP1U_GPDU(g_peer_u, omit, ctx.teid_remote, data));
390 }
Harald Welte811651e2017-08-05 15:25:06 +0200391 }
392
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100393 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 +0200394 var CreatePDPContextResponse cpr := ud.gtpc.gtpc_pdu.createPDPContextResponse;
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100395
396 if (not match(cpr.cause.causevalue, exp_cause)) {
397 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
398 "CreatePDPContextResp: cause expectancies didn't match");
399 }
400
401 if (cpr.cause.causevalue == '80'O) { /* Accepted */
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200402 /* Check if EUA type corresponds to requested type */
403 if (match(ctx.eua, t_EuaIPv4(?)) and
404 not match(cpr.endUserAddress, tr_EuaIPv4(?))){
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100405 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
406 "EUAv4 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200407 }
408 if (match(ctx.eua, t_EuaIPv6(?)) and
409 not match(cpr.endUserAddress, tr_EuaIPv6(?))) {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100410 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
411 "EUAv6 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200412 }
413 if (match(ctx.eua, t_EuaIPv4v6(?, ?)) and
414 not match(cpr.endUserAddress, tr_EuaIPv4v6(?, ?))) {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100415 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
416 "EUAv4v6 expectancies didn't match");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200417 }
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100418 } else if (cpr.cause.causevalue == '81'O) { /* Cause: New PDP type due to network preference */
419 /* ETSI TS 129 060 7.3.2 Create PDP Context Response. OS#5449 */
420 /* This should only happen if EUA requested type is v4v6: */
421 if (not ischosen(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6)) {
422 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
423 "Cause not expected when requesting a non v4v6 EUA");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200424 }
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100425 if (not match(cpr.endUserAddress, (tr_EuaIPv4(?), tr_EuaIPv6(?)))) {
426 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
427 "Cause not expected when requesting+receiving EUAv4v6");
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200428 }
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200429 } else {
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100430 if (ispresent(cpr.endUserAddress)) {
431 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
432 "EUA received on createPDPContextResponse cause=" & oct2str(cpr.cause.causevalue));
433 }
434 setverdict(pass);
435 return;
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200436 }
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100437
438 /* Check if PCO response corresponds to request */
439 if (ispresent(ctx.pco_req)) {
440 if (match(ctx.pco_req, ts_PCO_IPv4_DNS_CONT) and
441 not match(cpr.protConfigOptions, tr_PCO_IPv4_DNS_CONT_resp(?))) {
442 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
443 "IPv4 DNS Container requested, but missing");
444 }
445 if (match(ctx.pco_req, ts_PCO_IPv6_DNS) and
446 not match(cpr.protConfigOptions, tr_PCO_IPv6_DNS_resp(?))) {
447 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
448 "IPv6 DNS Container requested, but missing");
449 }
450 }
451 ctx.teid_remote := cpr.teidDataI.teidDataI;
452 ctx.teic_remote := cpr.teidControlPlane.teidControlPlane;
453 ctx.eua := cpr.endUserAddress;
454 ctx.pco_neg := cpr.protConfigOptions;
455 setverdict(pass);
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200456 }
457
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100458 function f_handle_update_req(inout PdpContext ctx, in Gtp1cUnitdata ud, in OCT1 exp_cause := '80'O) runs on GT_CT {
459 var UpdatePDPContextResponseGGSN upr := ud.gtpc.gtpc_pdu.updatePDPContextResponse.updatePDPContextResponseGGSN;
460 if (exp_cause == '80'O and exp_cause == upr.cause.causevalue) {
461 ctx.teid_remote := upr.teidDataI.teidDataI;
462 ctx.teic_remote := upr.teidControlPlane.teidControlPlane;
463 if (ispresent(upr.protConfigOptions)) {
464 ctx.pco_neg := upr.protConfigOptions;
465 }
466 setverdict(pass);
467 } else if (exp_cause != '80'O and exp_cause == upr.cause.causevalue) {
468 setverdict(pass);
469 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100470 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
471 "UpdatePDPContextResp: cause expectancies didn't match");
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100472 }
473 }
474
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100475 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 +0100476 var PDU_DIAMETER rx_dia;
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100477 [] Gx_UNIT.receive(tr_DIA_Gx_CCR(req_type := req_type)) -> value rx_dia {
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100478 var template (omit) AVP avp;
479 var octetstring sess_id;
480 var AVP_Unsigned32 req_num;
481
482 avp := f_DIAMETER_get_avp(rx_dia, c_AVP_Code_BASE_NONE_Session_Id);
483 sess_id := valueof(avp.avp_data.avp_BASE_NONE_Session_Id);
484
485 avp := f_DIAMETER_get_avp(rx_dia, c_AVP_Code_DCC_NONE_CC_Request_Number);
486 req_num := valueof(avp.avp_data.avp_DCC_NONE_CC_Request_Number);
487
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100488 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 +0100489 req_type, req_num));
490 }
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100491 [] Gx_UNIT.receive(PDU_DIAMETER:?) -> value rx_dia {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100492 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
493 log2str("Received unexpected DIAMETER ", rx_dia));
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100494 }
495 }
496
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200497 private function f_tr_DIA_Gy_CCR(template (omit) PdpContext ctx, DCC_NONE_CC_Request_Type req_type)
498 runs on GT_CT return template (present) PDU_DIAMETER
499 {
500 var template (present) PDU_DIAMETER tpl;
501 var charstring smf_origin_host := "smf.localdomain";
502 var template (present) octetstring imsi := ?;
503 var template (present) octetstring msisdn := ?;
504 var template (present) octetstring imeisv := ?;
505 var template (present) octetstring rat_type := ?;
506 var template (present) OCT4 charging_char := ?;
507 var template (present) OCT1 nsapi := ?;
508 if (not istemplatekind(ctx, "omit")) {
509 var PdpContext ctx_val := valueof(ctx);
510 imsi := char2oct(f_dec_TBCD(imsi_hex2oct(ctx_val.imsi)));
511 msisdn := char2oct(f_dec_TBCD(substr(ctx_val.msisdn, 1, lengthof(ctx_val.msisdn) -1)));
512 imeisv := char2oct(f_dec_TBCD(ctx_val.imeisv));
513 rat_type := ctx_val.ratType;
514 charging_char := char2oct(oct2str(ctx_val.charging_char));
515 nsapi := char2oct(hex2str(bit2hex(ctx_val.nsapi)));
516 }
517 select (req_type) {
518 case (INITIAL_REQUEST) {
519 tpl := tr_DIAMETER(flags:='11000000'B, cmd_code:=Credit_Control,
520 avps := superset(
521 tr_AVP_SessionId,
522 tr_AVP_OriginHost(smf_origin_host),
523 tr_AVP_OriginRealm(g_gy_pars.origin_realm),
524 tr_AVP_DestinationRealm(g_gy_pars.origin_realm),
525 tr_AVP_AuthAppId(int2oct(c_DIAMETER_CREDIT_CONTROL_AID, 4)),
526 tr_AVP_ServiceContextId,
527 tr_AVP_CcReqType(req_type),
528 tr_AVP_CcReqNum(?),
529 tr_AVP_EventTimestamp(?),
530 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_IMSI), tr_AVP_SubcrIdData(imsi)}),
531 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_E164), tr_AVP_SubcrIdData(msisdn)}),
532 tr_AVP_RequestedAction(DIRECT_DEBITING),
533 tr_AVP_3GPP_AoCRequestType,
534 tr_AVP_MultipleServicesIndicator,
535 tr_AVP_Multiple_Services_Credit_Control(content := superset(
536 tr_AVP_Requested_Service_Unit,
537 tr_AVP_Used_Service_Unit,
Pau Espin Pedrol6477d732022-06-03 12:04:40 +0200538 tr_AVP_PCC_3GPP_QoS_Information,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200539 tr_AVP_GI_3GPP_RatType(rat_type)
540 )),
541 tr_AVP_3GPP_ServiceInformation(content := superset(
542 tr_AVP_3GPP_PSInformation(content := superset(
543 tr_AVP_3GPP_ChargingId,
544 tr_AVP_3GPP_PDPType((IPv4,IPv6,IPv4v6)),
545 tr_AVP_3GPP_PDPAddress(tr_AVP_Address((IP,IP6), ?)),
546 tr_AVP_3GPP_SGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_bind_ip_gtpc))),
547 tr_AVP_3GPP_GGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_ggsn_ip_gtpc))),
548 tr_AVP_3GPP_CalledStationId,
549 tr_AVP_3GPP_SelectionMode,
550 tr_AVP_3GPP_ChargingCharacteristics(charging_char),
551 tr_AVP_3GPP_SGSNMCCMNC,
552 tr_AVP_3GPP_NSAPI(nsapi),
553 tr_AVP_3GPP_MS_TimeZone,
554 tr_AVP_3GPP_ULI,
555 tr_AVP_UserEquipmentInfo({
556 tr_AVP_UserEquipmentInfoType(IMEISV),
557 tr_AVP_UserEquipmentInfoValue(imeisv)
558 })
559 ))
560 ))
561 ));
562 }
563 case (UPDATE_REQUEST) {
564 tpl := tr_DIAMETER(flags:='11000000'B, cmd_code:=Credit_Control,
565 avps := superset(
566 tr_AVP_SessionId,
567 tr_AVP_OriginHost(smf_origin_host),
568 tr_AVP_OriginRealm(g_gy_pars.origin_realm),
569 tr_AVP_DestinationRealm(g_gy_pars.origin_realm),
570 tr_AVP_AuthAppId(int2oct(c_DIAMETER_CREDIT_CONTROL_AID, 4)),
571 tr_AVP_ServiceContextId,
572 tr_AVP_CcReqType(req_type),
573 tr_AVP_CcReqNum(?),
574 tr_AVP_DestinationHost(?),
575 tr_AVP_EventTimestamp(?),
576 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_IMSI), tr_AVP_SubcrIdData(imsi)}),
577 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_E164), tr_AVP_SubcrIdData(msisdn)}),
578 tr_AVP_RequestedAction(DIRECT_DEBITING),
579 tr_AVP_3GPP_AoCRequestType,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200580 tr_AVP_Multiple_Services_Credit_Control(content := superset(
581 tr_AVP_Requested_Service_Unit,
582 tr_AVP_Used_Service_Unit,
Pau Espin Pedrolcba0f6d2022-05-24 13:49:46 +0200583 /* tr_AVP_3GPP_Reporting_Reason, can be sometimes inside UsedServiceUnit */
Pau Espin Pedrol6477d732022-06-03 12:04:40 +0200584 tr_AVP_PCC_3GPP_QoS_Information,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200585 tr_AVP_GI_3GPP_RatType(rat_type)
586 )),
587 tr_AVP_3GPP_ServiceInformation(content := superset(
588 tr_AVP_3GPP_PSInformation(content := superset(
589 tr_AVP_3GPP_ChargingId,
590 /* tr_AVP_3GPP_PDPType, Only in INIT */
591 tr_AVP_3GPP_PDPAddress(tr_AVP_Address((IP,IP6), ?)),
592 tr_AVP_3GPP_SGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_bind_ip_gtpc))),
593 tr_AVP_3GPP_GGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_ggsn_ip_gtpc))),
594 tr_AVP_3GPP_CalledStationId,
595 tr_AVP_3GPP_SelectionMode,
596 tr_AVP_3GPP_ChargingCharacteristics(charging_char),
597 tr_AVP_3GPP_SGSNMCCMNC,
598 tr_AVP_3GPP_NSAPI(nsapi),
599 tr_AVP_3GPP_MS_TimeZone,
600 tr_AVP_3GPP_ULI,
601 tr_AVP_UserEquipmentInfo({
602 tr_AVP_UserEquipmentInfoType(IMEISV),
603 tr_AVP_UserEquipmentInfoValue(imeisv)
604 })
605 ))
606 ))
607 ));
608 }
609 case (TERMINATION_REQUEST) {
610 tpl := tr_DIAMETER(flags:='11000000'B, cmd_code:=Credit_Control,
611 avps := superset(
612 tr_AVP_SessionId,
613 tr_AVP_OriginHost(smf_origin_host),
614 tr_AVP_OriginRealm(g_gy_pars.origin_realm),
615 tr_AVP_DestinationRealm(g_gy_pars.origin_realm),
616 tr_AVP_AuthAppId(int2oct(c_DIAMETER_CREDIT_CONTROL_AID, 4)),
617 tr_AVP_ServiceContextId,
618 tr_AVP_CcReqType(req_type),
619 tr_AVP_CcReqNum(?),
620 tr_AVP_DestinationHost(?),
621 tr_AVP_EventTimestamp(?),
622 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_IMSI), tr_AVP_SubcrIdData(imsi)}),
623 tr_AVP_SubcrId({tr_AVP_SubcrIdType(END_USER_E164), tr_AVP_SubcrIdData(msisdn)}),
624 tr_AVP_TerminationCause(?),
625 tr_AVP_RequestedAction(DIRECT_DEBITING),
626 tr_AVP_3GPP_AoCRequestType,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200627 tr_AVP_Multiple_Services_Credit_Control(content := superset(
628 /* tr_AVP_Requested_Service_Unit, Only in INIT and UPDATE */
629 tr_AVP_Used_Service_Unit,
Pau Espin Pedrolcba0f6d2022-05-24 13:49:46 +0200630 tr_AVP_3GPP_Reporting_Reason(FINAL),
Pau Espin Pedrol6477d732022-06-03 12:04:40 +0200631 tr_AVP_PCC_3GPP_QoS_Information,
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200632 tr_AVP_GI_3GPP_RatType(rat_type)
633 )),
634 tr_AVP_3GPP_ServiceInformation(content := superset(
635 tr_AVP_3GPP_PSInformation(content := superset(
636 tr_AVP_3GPP_ChargingId,
637 /* tr_AVP_3GPP_PDPType, Only in INIT */
638 tr_AVP_3GPP_PDPAddress(tr_AVP_Address((IP,IP6), ?)),
639 tr_AVP_3GPP_SGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_bind_ip_gtpc))),
640 tr_AVP_3GPP_GGSNAddress(tr_AVP_Address(IP, f_inet_addr(m_ggsn_ip_gtpc))),
641 tr_AVP_3GPP_CalledStationId,
642 tr_AVP_3GPP_SelectionMode,
643 tr_AVP_3GPP_ChargingCharacteristics(charging_char),
644 tr_AVP_3GPP_SGSNMCCMNC,
645 tr_AVP_3GPP_NSAPI(nsapi),
646 tr_AVP_3GPP_MS_TimeZone,
647 tr_AVP_3GPP_ULI,
648 tr_AVP_UserEquipmentInfo({
649 tr_AVP_UserEquipmentInfoType(IMEISV),
650 tr_AVP_UserEquipmentInfoValue(imeisv)
651 })
652 ))
653 ))
654 ));
655 }
656 }
657 return tpl;
658 }
659
660 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 +0200661 [] 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 +0100662 var template (value) PDU_DIAMETER tx_dia;
663 var template (omit) AVP avp;
664 var octetstring sess_id;
665 var AVP_Unsigned32 req_num;
666
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200667 avp := f_DIAMETER_get_avp(g_rx_gy, c_AVP_Code_BASE_NONE_Session_Id);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100668 sess_id := valueof(avp.avp_data.avp_BASE_NONE_Session_Id);
669
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200670 avp := f_DIAMETER_get_avp(g_rx_gy, c_AVP_Code_DCC_NONE_CC_Request_Number);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100671 req_num := valueof(avp.avp_data.avp_DCC_NONE_CC_Request_Number);
672 if (g_gy_validity_time > 0) {
Pau Espin Pedrol52562c92022-05-23 15:45:46 +0200673 if (g_gy_volume_threshold > 0) {
674 tx_dia := ts_DIA_Gy_CCA_ValidityTimeVolumeThreshold(g_rx_gy.hop_by_hop_id, g_rx_gy.end_to_end_id, sess_id,
675 req_type, req_num, g_gy_validity_time, g_gy_volume_threshold);
676 } else {
677 tx_dia := ts_DIA_Gy_CCA_ValidityTime(g_rx_gy.hop_by_hop_id, g_rx_gy.end_to_end_id, sess_id,
678 req_type, req_num, g_gy_validity_time);
679 }
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100680 } else {
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200681 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 +0100682 req_type, req_num);
683 }
684 Gy_UNIT.send(tx_dia);
685 }
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200686 [] Gy_UNIT.receive(PDU_DIAMETER:?) -> value g_rx_gy {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100687 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +0200688 log2str("Received unexpected DIAMETER Gy", g_rx_gy));
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100689 }
690 }
691
Harald Welte811651e2017-08-05 15:25:06 +0200692 /* send a PDP context activation */
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100693 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 +0200694 var Gtp1cUnitdata ud;
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100695 var CreatePDPContextResponse cpr;
Harald Welte94ade362017-08-04 00:36:55 +0200696 var default d;
697
698 log("sending CreatePDP");
Harald Welte41575e92017-08-13 13:49:57 +0200699 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 +0200700 ctx.teid, ctx.teic, ctx.nsapi, ctx.eua, ctx.apn,
Pau Espin Pedrol0e127872022-05-12 17:58:50 +0200701 g_sgsn_ip_c, g_sgsn_ip_u, ctx.msisdn, ctx.pco_req, ctx.ratType,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +0200702 ctx.uli, ctx.charging_char, ctx.imeisv, ctx.ms_tz));
Harald Welte94ade362017-08-04 00:36:55 +0200703 T_default.start;
Harald Welte94ade362017-08-04 00:36:55 +0200704 d := activate(pingpong());
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100705 if (Gx_PROC.checkstate("Connected")) {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100706 as_DIA_Gx_CCR(INITIAL_REQUEST);
707 }
708 if (Gy_PROC.checkstate("Connected")) {
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200709 as_DIA_Gy_CCR(ctx, INITIAL_REQUEST);
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100710 }
Harald Welte94ade362017-08-04 00:36:55 +0200711 alt {
Harald Welte811651e2017-08-05 15:25:06 +0200712 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ctx.teic)) -> value ud {
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +0200713 f_handle_create_req(ctx, ud, exp_cause);
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100714 cpr := ud.gtpc.gtpc_pdu.createPDPContextResponse;
Harald Welte94ade362017-08-04 00:36:55 +0200715 }
716 }
717 deactivate(d);
Harald Welte811651e2017-08-05 15:25:06 +0200718 T_default.stop;
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +0100719 return cpr;
Harald Welte94ade362017-08-04 00:36:55 +0200720 }
721
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200722 function f_pdp_ctx_exp_del_req(PdpContext ctx, template (omit) OCT1 expect_cause := omit, boolean expect_teardown := false) runs on GT_CT {
723 var Gtp1cUnitdata ud;
724 var default d;
725
726 T_default.start;
727 d := activate(pingpong());
728 alt {
729 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctx.teic)) -> value ud {
730 if (istemplatekind(expect_cause, "omit") and not ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue)) {
731 setverdict(pass);
732 } else if (not istemplatekind(expect_cause, "omit") and
733 ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue) and
734 ud.gtpc.gtpc_pdu.deletePDPContextRequest.cause.causevalue == valueof(expect_cause)) {
735 setverdict(pass);
736 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100737 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
738 "DeletePDPContextReq: cause expectancies didn't match");
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200739 }
740
741 if (expect_teardown == ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.tearDownIndicator)) {
742 setverdict(pass);
743 } else {
744 setverdict(fail);
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100745 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
746 "DeletePDPContextReq: tearDownIndicator expectancies didn't match");
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +0200747 }
748 }
749 }
750 deactivate(d);
751 T_default.stop;
752 }
753
Pau Espin Pedrol10ec96e2022-02-09 17:03:15 +0100754 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 +0200755 var Gtp1cUnitdata ud;
756 var default d;
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +0200757 var OCT4 expect_teid;
758
759 /* 3GPP TS 29.060 sec 7.3.6 specifies TEID used in response
760 message with cause value "Non existent" shall be zero. */
761 if (expect_causevalue == 'C0'O) {
762 expect_teid := '00000000'O;
763 } else {
764 expect_teid := ctx.teic;
765 }
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200766
Harald Welte41575e92017-08-13 13:49:57 +0200767 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 +0200768 T_default.start;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200769 d := activate(pingpong());
Pau Espin Pedrol45d57022022-03-08 13:49:02 +0100770 if (Gx_PROC.checkstate("Connected") and expect_diameter) {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +0100771 as_DIA_Gx_CCR(TERMINATION_REQUEST);
772 }
773 if (Gy_PROC.checkstate("Connected") and expect_diameter) {
Pau Espin Pedrola2af5782022-05-18 16:34:29 +0200774 as_DIA_Gy_CCR(ctx, TERMINATION_REQUEST);
Pau Espin Pedrol0bcfd9d2022-02-02 11:01:35 +0100775 }
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200776 alt {
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +0200777 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextResponse, expect_teid)) -> value ud {
778 if (ud.gtpc.gtpc_pdu.deletePDPContextResponse.cause.causevalue == expect_causevalue) {
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200779 setverdict(pass);
780 } else {
Pau Espin Pedrol8ad031a2022-02-16 17:33:43 +0100781 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
782 "DeletePDPContextResp: cause expectancies didn't match");
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200783 }
784 }
785 }
786 deactivate(d);
Harald Welte811651e2017-08-05 15:25:06 +0200787 T_default.stop;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200788 }
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +0100789
790 /* send a Update PdP Context Request, expect Response */
791 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 {
792 var Gtp1cUnitdata ud;
793 var default d;
794
795 if (not istemplatekind(new_teid, "omit")) {
796 ctx.teid := valueof(new_teid);
797 }
798 if (not istemplatekind(new_teic, "omit")) {
799 ctx.teic := valueof(new_teic);
800 }
801
802 log("sending UpdatePDP");
803 f_send_gtpc(ts_GTPC_UpdatePDP(g_peer_c, ctx.teic_remote, g_c_seq_nr, ctx.imsi, g_restart_ctr,
804 ctx.teid, ctx.teic, ctx.nsapi, g_sgsn_ip_c, g_sgsn_ip_u,
805 ctx.pco_req, ctx.ratType, ctx.uli));
806 T_default.start;
807 d := activate(pingpong());
808 alt {
809 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, updatePDPContextResponse, ctx.teic)) -> value ud {
810 f_handle_update_req(ctx, ud, exp_cause);
811 }
812 }
813 deactivate(d);
814 T_default.stop;
815 }
816
Harald Welte811651e2017-08-05 15:25:06 +0200817 /* IPv6 router solicitation fe80::2 -> ff02::2 from 02:88:b5:1f:25:59 */
818 const octetstring c_router_solicit := '6000000000103afffe800000000000000000000000000002ff02000000000000000000000000000285009f2b0000000001010288b51f2559'O;
819 /* IPv6 neighbor solicitation fe80::2 -> ff02::1:ff00:2 from 02:88:b5:1f:25:59 */
820 const octetstring c_neigh_solicit:= '6000000000203afffe800000000000000000000000000002ff0200000000000000000001ff00000287009f9600000000fe80000000000000000000000000000201010288b51f2559'O;
Harald Weltef1e0d5a2017-08-05 08:51:22 +0200821
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200822 /* template for sending an ICMPv4 echo request */
Pau Espin Pedrol52562c92022-05-23 15:45:46 +0200823 template PDU_ICMP ts_ICMPv4_ERQ(octetstring data := ''O) := {
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100824 echo := {
825 type_field := 8,
826 code := 0,
827 checksum := '0000'O,
828 identifier := '0345'O,
829 sequence_number := '0001'O,
Pau Espin Pedrol52562c92022-05-23 15:45:46 +0200830 data := data
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100831 }
832 }
833
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200834 /* template for receiving/matching an ICMPv4 echo request */
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +0100835 template PDU_ICMP tr_ICMPv4_ERQ := {
836 echo := {
837 type_field := 8,
838 code := 0,
839 checksum := ?,
840 identifier := ?,
841 sequence_number := ?,
842 data := ?
843 }
844 }
845
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200846 /* template for receiving/matching an ICMPv4 echo reply */
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100847 template PDU_ICMP tr_ICMPv4_ERP(template octetstring data := *) := {
848 echo_reply := {
849 type_field := 0,
850 code := 0,
851 checksum := ?,
852 identifier := ?,
853 sequence_number := ?,
854 data := data
855 }
856 }
857
858 /* template for receiving/matching an ICMPv6 Destination Unreachable */
859 template PDU_ICMP tr_ICMPv4_DU := {
860 destination_unreachable := {
861 type_field := 1,
862 code := ?,
863 checksum := ?,
864 unused := ?,
865 original_ip_msg := ?
866 }
867 }
868
869 /* template to construct IPv4_packet from input arguments, ready for use in f_IPv4_enc() */
870 template IPv4_packet ts_IP4(OCT4 srcaddr, OCT4 dstaddr, LIN1 proto, LIN2_BO_LAST tlen, octetstring payload) := {
871 header := {
872 ver := 4,
873 hlen := 5,
874 tos := 0,
875 tlen := tlen,
876 id := 35902,
877 res := '0'B,
878 dfrag := '1'B,
879 mfrag := '0'B,
880 foffset := 0,
881 ttl := 64,
882 proto := proto,
883 cksum := 0,
884 srcaddr := srcaddr,
885 dstaddr := dstaddr
886 },
887 ext_headers := omit,
888 payload := payload
889 }
890
Harald Welte231b9412017-08-09 17:16:31 +0200891 /* template to generate a 'Prefix Information' ICMPv6 option */
892 template OptionField ts_ICMP6_OptPrefix(OCT16 prefix, INT1 prefix_len) := {
893 prefixInformation := {
894 typeField := 3,
895 lengthIndicator := 8,
896 prefixLength := prefix_len,
897 reserved1 := '000000'B,
898 a_Bit := '0'B,
899 l_Bit := '0'B,
900 validLifetime := oct2int('FFFFFFFF'O),
901 preferredLifetime := oct2int('FFFFFFFF'O),
902 reserved2 := '00000000'O,
903 prefix := prefix
904 }
905 }
906
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200907 /* template for sending an ICMPv6 echo request */
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100908 template PDU_ICMPv6 ts_ICMPv6_ERQ := {
909 echoRequest := {
910 typeField := 128,
911 code := 0,
912 checksum := '0000'O,
913 identifier := 0,
914 sequenceNr := 0,
915 data := ''O
916 }
917 }
918
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200919 /* template for sending an ICMPv6 router solicitation */
Harald Welte231b9412017-08-09 17:16:31 +0200920 template PDU_ICMPv6 ts_ICMPv6_RS := {
921 routerSolicitation := {
922 typeField := 133,
923 code := 0,
924 checksum := '0000'O,
925 reserved := '00000000'O,
926 /* TODO: do we need 'Source link-layer address' ? */
927 options := omit
928 }
929 }
930
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200931 /* template for sending an ICMPv6 router advertisement */
Harald Welte231b9412017-08-09 17:16:31 +0200932 template PDU_ICMPv6 ts_ICMPv6_RA(OCT16 prefix, INT1 prefix_len) := {
933 routerAdvertisement := {
934 typeField := 134,
935 code := 0,
936 checksum := '0000'O,
937 curHopLimit := ?,
938 reserved := '000000'B,
939 o_Bit := '0'B,
940 m_Bit := '0'B,
941 routerLifetime := oct2int('FFFF'O),
942 reachableTime := oct2int('FFFFFFFF'O),
943 retransTimer := oct2int('FFFFFFFF'O),
944 options := {
945 ts_ICMP6_OptPrefix(prefix, prefix_len)
946 }
947 }
948 }
949
Stefan Sperling6cd217e2018-03-30 15:17:34 +0200950 /* template for sending an ICMPv6 neighbor solicitation */
Harald Welte231b9412017-08-09 17:16:31 +0200951 template PDU_ICMPv6 ts_ICMPv6_NS(OCT16 target_addr) := {
952 neighborSolicitation := {
953 typeField := 135,
954 code := 0,
955 checksum := '0000'O,
956 reserved := '00000000'O,
957 targetAddress := target_addr,
958 /* TODO: do we need 'Source link-layer address' ? */
959 options := omit
960 }
961 }
962
963 /* derive ICMPv6 link-local address from lower 64bit of link_id */
964 /* template for receiving/matching an ICMPv6 'Prefix Information' option */
965 template OptionField tr_ICMP6_OptPrefix(template OCT16 prefix, template INT1 prefix_len) := {
966 prefixInformation := {
967 typeField := 3,
968 lengthIndicator := 4,
969 prefixLength := prefix_len,
970 reserved1 := ?,
971 a_Bit := ?,
972 l_Bit := ?,
973 validLifetime := ?,
974 preferredLifetime := ?,
975 reserved2 := ?,
976 prefix := prefix
977 }
978 }
979
980 /* template for receiving/matching an ICMPv6 router advertisement */
981 template PDU_ICMPv6 tr_ICMPv6_RA(template OCT16 prefix, template INT1 prefix_len) := {
982 routerAdvertisement := {
983 typeField := 134,
984 code := 0,
985 checksum := ?,
986 curHopLimit := ?,
987 reserved := ?,
988 o_Bit := '0'B,
989 m_Bit := '0'B,
990 routerLifetime := ?,
991 reachableTime := ?,
992 retransTimer := ?,
993 options := {
994 tr_ICMP6_OptPrefix(prefix, prefix_len)
995 }
996 }
997 }
998
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +0100999 /* template for receiving/matching an ICMPv6 Destination Unreachable */
1000 template PDU_ICMPv6 tr_ICMPv6_DU := {
1001 destinationUnreachable := {
1002 typeField := 1,
1003 code := ?,
1004 checksum := ?,
1005 unused := ?,
1006 originalIpMsg := ?
1007 }
1008 }
1009
Stefan Sperling6cd217e2018-03-30 15:17:34 +02001010 /* template for receiving/matching an ICMPv6 echo request */
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001011 template PDU_ICMPv6 tr_ICMPv6_ERQ := {
1012 echoRequest := {
1013 typeField := 128,
1014 code := 0,
1015 checksum := ?,
1016 identifier := ?,
1017 sequenceNr := ?,
1018 data := ?
1019 }
1020 }
1021
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001022 /* template for receiving/matching an ICMPv6 echo reply */
1023 template PDU_ICMPv6 tr_ICMPv6_ERP(template octetstring data := *) := {
1024 echoReply := {
1025 typeField := 129,
1026 code := 0,
1027 checksum := ?,
1028 identifier := ?,
1029 sequenceNr := ?,
1030 data := data
1031 }
1032 }
1033
Harald Welte231b9412017-08-09 17:16:31 +02001034 /* template to construct IPv6_packet from input arguments, ready for use in f_IPv6_enc() */
1035 template IPv6_packet ts_IP6(OCT16 srcaddr, OCT16 dstaddr, LIN1 nexthead, octetstring payload, LIN1 hlim := 255) := {
1036 header := {
1037 ver := 6,
1038 trclass := 0,
1039 flabel := 0,
1040 plen := 0,
1041 nexthead := nexthead,
1042 hlim := hlim,
1043 srcaddr := srcaddr,
1044 dstaddr := dstaddr
1045 },
1046 ext_headers := omit,
1047 payload := payload
1048 }
1049
1050 function f_ipv6_link_local(in OCT16 link_id) return OCT16 {
1051 return 'FE80000000000000'O & substr(link_id, 8, 8);
1052 }
1053
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001054 function f_ipv6_global(in OCT16 link_id) return OCT16 {
1055 return substr(link_id, 0, 8) & '1234123412341234'O;
1056 }
1057
1058 /* Create a new different IPv6 addr from input. Starts mangling at byte prefix. */
1059 function f_ipv6_mangle(in OCT16 addr, in integer prefix := 0) return OCT16 {
1060 var integer i;
1061 var octetstring res := substr(addr, 0, prefix);
1062 for (i := prefix; i < lengthof(addr); i := i + 1) {
1063 var octetstring a := addr[i] xor4b '11'O;
1064 res := res & a;
1065 }
1066 return res;
1067 }
1068
Harald Welte231b9412017-08-09 17:16:31 +02001069 /* Compute solicited-node multicast address as per RFC4291 2.7.1 */
1070 function f_ipv6_sol_node_mcast(in OCT16 addr) return OCT16 {
1071 return 'FF0200000000000000000001FF'O & substr(addr, 13, 3);
1072 }
1073
1074 /* generate and encode ICMPv6 router solicitation */
1075 function f_gen_icmpv6_router_solicitation(in OCT16 link_id) return octetstring {
1076 const OCT16 c_ip6_all_router_mcast := 'FF020000000000000000000000000002'O;
1077 var OCT16 saddr := f_ipv6_link_local(link_id);
1078
1079 var octetstring tmp;
1080 tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_RS), saddr, c_ip6_all_router_mcast);
1081 var IPv6_packet ip6 := valueof(ts_IP6(saddr, c_ip6_all_router_mcast, 58, tmp));
1082
1083 return f_IPv6_enc(ip6);
1084 }
1085
Pau Espin Pedrol57604212022-02-14 16:54:18 +01001086 /* Get link-id from PDP Context EUA */
1087 function f_ctx_get_ipv6_interface_id(in PdpContext ctx) return OCT16 {
1088 var OCT16 interface_id;
1089 if (ischosen(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6)) {
1090 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
1091 } else if (ischosen(ctx.eua.endUserAddress.endUserAddressIPv6)) {
1092 interface_id := ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address;
1093 } else {
1094 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected request to submit icmpv6 rs in IPv4 PDP context");
1095 }
1096 return interface_id;
1097 }
1098
Harald Welte231b9412017-08-09 17:16:31 +02001099 /* create ICMPv6 router solicitation deriving link-id from PDP Context EUA */
1100 function f_icmpv6_rs_for_pdp(in PdpContext ctx) return octetstring {
Pau Espin Pedrol57604212022-02-14 16:54:18 +01001101 var OCT16 interface_id := f_ctx_get_ipv6_interface_id(ctx);
Harald Welte231b9412017-08-09 17:16:31 +02001102 return f_gen_icmpv6_router_solicitation(interface_id);
1103 }
1104
1105 /* generate and encode ICMPv6 neighbor solicitation */
1106 function f_gen_icmpv6_neigh_solicit(in OCT16 saddr, in OCT16 daddr, in OCT16 tgt_addr) return octetstring {
1107 var octetstring tmp;
1108 tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_NS(tgt_addr)), saddr, daddr);
1109 var IPv6_packet ip6 := valueof(ts_IP6(saddr, daddr, 58, tmp));
1110 return f_IPv6_enc(ip6);
1111 }
1112
1113 /* generate and encode ICMPv6 neighbor solicitation for PDP Context */
1114 function f_gen_icmpv6_neigh_solicit_for_pdp(in PdpContext ctx) return octetstring {
Pau Espin Pedrol57604212022-02-14 16:54:18 +01001115 var OCT16 interface_id := f_ctx_get_ipv6_interface_id(ctx);
Harald Welte231b9412017-08-09 17:16:31 +02001116 var OCT16 link_local := f_ipv6_link_local(interface_id);
1117 var OCT16 daddr := f_ipv6_sol_node_mcast(link_local);
1118
1119 return f_gen_icmpv6_neigh_solicit(link_local, daddr, link_local);
1120 }
1121
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001122 /* Send an ICMPv4 echo msg through GTP given pdp ctx, and ip src and dst addr */
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02001123 function f_gen_icmpv4_echo(OCT4 saddr, OCT4 daddr, octetstring pl := ''O) return octetstring {
1124 var octetstring tmp := f_enc_PDU_ICMP(valueof(ts_ICMPv4_ERQ(pl)));
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001125 var IPv4_packet ip4 := valueof(ts_IP4(saddr, daddr, 1, 50, tmp));
1126 var octetstring data := f_IPv4_enc(ip4);
1127 var OCT2 cksum := f_IPv4_checksum(data);
1128 data[10] := cksum[0];
1129 data[11] := cksum[1];
1130 return data;
1131 }
1132
1133 /* Send an ICMPv6 echo msg through GTP given pdp ctx, and ip src and dst addr */
1134 function f_gen_icmpv6_echo(OCT16 saddr, OCT16 daddr) return octetstring {
1135 var octetstring tmp := f_enc_PDU_ICMPv6(valueof(ts_ICMPv6_ERQ), saddr, daddr);
1136 var IPv6_packet ip6 := valueof(ts_IP6(saddr, daddr, 58, tmp));
1137 var octetstring data := f_IPv6_enc(ip6);
1138 return data;
1139 }
1140
1141 /* Wait for ICMPv4 from GTP */
1142 function f_wait_icmp4(PdpContext ctx, template PDU_ICMP expected) runs on GT_CT {
Harald Welte231b9412017-08-09 17:16:31 +02001143 var Gtp1uUnitdata ud;
1144 T_default.start;
1145 alt {
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001146 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ctx.teid)) -> value ud {
Harald Welte3e0b0392018-04-26 09:46:21 +02001147 if (f_verify_gtpu_txseq(ud.gtpu, use_gtpu_txseq) == false) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001148 setverdict(fail);
1149 stop;
1150 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001151 var octetstring gpdu := ud.gtpu.gtpu_IEs.g_PDU_IEs.data;
1152 var IPv4_packet ip4 := f_IPv4_dec(gpdu);
1153 if (ip4.header.ver != 4) {
1154 repeat;
1155 }
1156 var PDU_ICMP icmp4 := f_dec_PDU_ICMP(ip4.payload);
1157 if (not match(icmp4, expected)) {
1158 repeat;
1159 }
1160 }
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001161 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ?)) -> value ud {
1162 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
1163 "Received wrong local TEID");
1164 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001165 [] GTPU.receive { setverdict(fail); }
1166 [] T_default.timeout { setverdict(fail); }
1167 }
1168 T_default.stop;
1169 }
1170
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001171 /* Wait for ICMPv4 echo request from GTP */
1172 function f_wait_icmp4_echo_request(PdpContext ctx) runs on GT_CT {
1173 f_wait_icmp4(ctx, tr_ICMPv4_ERQ);
1174 }
1175
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001176 /* Wait for ICMPv4 echo reply (or unreachable) from GTP */
1177 function f_wait_icmp4_echo_reply(PdpContext ctx) runs on GT_CT {
1178 f_wait_icmp4(ctx, (tr_ICMPv4_ERP, tr_ICMPv4_DU));
1179 }
1180
1181 /* Wait for ICMPv6 from GTP */
1182 function f_wait_icmp6(PdpContext ctx, template PDU_ICMPv6 expected) runs on GT_CT {
1183 var Gtp1uUnitdata ud;
1184 T_default.start;
1185 alt {
Harald Welte231b9412017-08-09 17:16:31 +02001186 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ?)) -> value ud {
Harald Welte3e0b0392018-04-26 09:46:21 +02001187 if (f_verify_gtpu_txseq(ud.gtpu, use_gtpu_txseq) == false) {
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001188 setverdict(fail);
1189 stop;
1190 }
Harald Welte231b9412017-08-09 17:16:31 +02001191 var octetstring gpdu := ud.gtpu.gtpu_IEs.g_PDU_IEs.data;
1192 var IPv6_packet ip6 := f_IPv6_dec(gpdu);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001193 if (ip6.header.ver != 6 or ip6.header.nexthead != 58) {
Harald Welte231b9412017-08-09 17:16:31 +02001194 repeat;
1195 }
1196 var PDU_ICMPv6 icmp6 := f_dec_PDU_ICMPv6(ip6.payload);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001197 if (not match(icmp6, expected)) {
Harald Welte231b9412017-08-09 17:16:31 +02001198 repeat;
1199 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001200 /* We are waiting for RA, update ctx */
1201 if (match(icmp6, tr_ICMPv6_RA(?, 64))) {
1202 ctx.ip6_prefix := icmp6.routerAdvertisement.options[0].prefixInformation.prefix;
1203 log("RA with /64 prefix ", ctx.ip6_prefix);
1204 }
Harald Welte231b9412017-08-09 17:16:31 +02001205 }
1206 [] GTPU.receive(tr_GTPU_GPDU(?, ?)) { repeat; }
1207 [] GTPU.receive { setverdict(fail); }
1208 [] T_default.timeout { setverdict(fail); }
1209 }
1210 T_default.stop;
1211 }
1212
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001213 /* wait for GGSN to send us an ICMPv6 router advertisement */
1214 function f_wait_rtr_adv(PdpContext ctx) runs on GT_CT {
1215 f_wait_icmp6(ctx, tr_ICMPv6_RA(?, 64));
1216 }
1217
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001218 /* Wait for ICMPv6 echo request from GTP */
1219 function f_wait_icmp6_echo_request(PdpContext ctx) runs on GT_CT {
1220 f_wait_icmp6(ctx, tr_ICMPv6_ERQ);
1221 }
1222
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001223 /* Wait for ICMPv6 echo reply (or unreachable) from GTP */
1224 function f_wait_icmp6_echo_reply(PdpContext ctx) runs on GT_CT {
1225 f_wait_icmp6(ctx, (tr_ICMPv6_ERP,tr_ICMPv6_DU));
1226 }
1227
Oliver Smithee6a0882019-03-08 11:05:46 +01001228 /* create ICMPv6 router solicitation deriving link-id from PDP Context EUA */
1229 function f_icmpv6_rs_for_pdp46(in PdpContext ctx) return octetstring {
1230 var OCT16 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
1231 return f_gen_icmpv6_router_solicitation(interface_id);
1232 }
1233
1234 /* generate and encode ICMPv6 neighbor solicitation for PDP Context */
1235 function f_gen_icmpv6_neigh_solicit_for_pdp46(in PdpContext ctx) return octetstring {
1236 var OCT16 interface_id := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address;
1237 var OCT16 link_local := f_ipv6_link_local(interface_id);
1238 var OCT16 daddr := f_ipv6_sol_node_mcast(link_local);
1239
1240 return f_gen_icmpv6_neigh_solicit(link_local, daddr, link_local);
1241 }
1242
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001243 /* Assert we don't receive a ICMPv4/6 echo reply (or unreachable) from GTP */
1244 function f_wait_gtpu_fail(PdpContext ctx) runs on GT_CT {
1245 T_default.start;
1246 alt {
1247 [] GTPU.receive { setverdict(fail); }
1248 [] T_default.timeout { }
1249 }
1250 T_default.stop;
1251 }
1252
Harald Welte79737b42019-04-10 10:39:30 +02001253 /* list of protocols where we don't accept duplicates */
1254 const OCT2List protocol_ids_nodupes := { 'C021'O, 'C023'O, 'C223'O, '8021'O };
1255 private function f_PCO_permits_duplicates(OCT2 id) return boolean {
1256 var integer i;
1257 for (i := 0; i < lengthof(protocol_ids_nodupes); i := i+1) {
1258 if (id == protocol_ids_nodupes[i]) {
1259 return false;
1260 }
1261 }
1262 return true;
1263 }
1264
1265 /* ensure that every given protocol Identifier exist only exactly once in the PCO */
1266 function f_PCO_ensure_no_duplicates(ProtConfigOptions pco) {
1267 var OCT2List protocol_ids := {};
1268 var integer i, j;
1269 for (i := 0; i < lengthof(pco.protocols); i := i+1) {
1270 var OCT2 id := pco.protocols[i].protocolID;
1271 for (j := 0; j < lengthof(protocol_ids); j := j+1) {
1272 if (not f_PCO_permits_duplicates(id) and id == protocol_ids[j]) {
1273 setverdict(fail, "Duplicate ProtocolID ", id, " already present in ", pco.protocols);
1274 }
1275 }
1276 protocol_ids := protocol_ids & { id };
1277 }
1278 }
1279
Harald Welte0ef285b2017-08-13 20:06:01 +02001280 /* Test IPv6 context activation for dynamic IPv6 EUA without request of IPv6 DNS */
Harald Welteed7a1772017-08-09 20:26:20 +02001281 testcase TC_pdp6_act_deact() runs on GT_CT {
Harald Welte94ade362017-08-04 00:36:55 +02001282 f_init();
Harald Welte231b9412017-08-09 17:16:31 +02001283
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001284 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welte811651e2017-08-05 15:25:06 +02001285 f_pdp_ctx_act(ctx);
Harald Welteed7a1772017-08-09 20:26:20 +02001286 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001287 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001288 }
1289
Harald Welte0ef285b2017-08-13 20:06:01 +02001290 /* Test IPv6 context activation for dynamic IPv6 EUA wirh request of IPv6 DNS in PCO */
Harald Welteed7a1772017-08-09 20:26:20 +02001291 testcase TC_pdp6_act_deact_pcodns() runs on GT_CT {
1292 f_init();
1293
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001294 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001295 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1296 f_pdp_ctx_act(ctx);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001297
Harald Welte79737b42019-04-10 10:39:30 +02001298 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001299 /* verify PCO contains both primary and secondary DNS */
1300 var OCT4 ggsn_ip6_dns1 := f_inet6_addr(m_ggsn_ip6_dns1);
1301 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 1), ggsn_ip6_dns1)) {
1302 setverdict(fail, "Primary DNS IPv6 PCO option not found");
1303 }
1304
1305 var OCT4 ggsn_ip6_dns2 := f_inet6_addr(m_ggsn_ip6_dns2);
1306 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 2), ggsn_ip6_dns2)) {
1307 setverdict(fail, "Secondary DNS IPv6 PCO option not found");
1308 }
1309
Harald Welteed7a1772017-08-09 20:26:20 +02001310 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001311 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001312 }
1313
Harald Welte0ef285b2017-08-13 20:06:01 +02001314 /* Test PDP context activation for dynamic IPv6 EUA with IPv6 DNS in PCO and router solicitation/advertisement */
Harald Welteed7a1772017-08-09 20:26:20 +02001315 testcase TC_pdp6_act_deact_icmp6() runs on GT_CT {
1316 f_init();
1317
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001318 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001319 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1320 f_pdp_ctx_act(ctx);
Harald Welte231b9412017-08-09 17:16:31 +02001321
Harald Welte79737b42019-04-10 10:39:30 +02001322 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Harald Welte231b9412017-08-09 17:16:31 +02001323 //f_send_gtpu(ctx, c_router_solicit);
1324 //f_send_gtpu(ctx, c_neigh_solicit);
1325
1326 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1327 f_wait_rtr_adv(ctx);
1328 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1329
Harald Welte811651e2017-08-05 15:25:06 +02001330 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001331 f_shutdown_helper();
Harald Welte94ade362017-08-04 00:36:55 +02001332 }
1333
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001334 /* Test PDP context activation for dynamic IPv6 EUA with IPv6 DNS in PCO and router solicitation/advertisement.
1335 Test we can send ICMPv6 ping over GTPU to DNS server. */
1336 testcase TC_pdp6_act_deact_gtpu_access() runs on GT_CT {
1337 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001338 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 +01001339 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1340 f_pdp_ctx_act(ctx);
1341
1342 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1343 f_wait_rtr_adv(ctx);
1344 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1345
1346 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1347
1348 /* Check if we can use valid link-local src addr. */
1349 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1350 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_ll, dns1_addr));
Pau Espin Pedrolb63d85f2022-02-07 16:11:47 +01001351 if (m_ggsn_impl == GGSN_IMPL_OSMOCOM) {
1352 f_wait_icmp6_echo_reply(ctx);
1353 } else {
1354 f_wait_gtpu_fail(ctx);
1355 }
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001356
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001357 /* Check if we can use valid global src addr, should work */
1358 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1359 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_glob, dns1_addr));
1360 f_wait_icmp6_echo_reply(ctx);
1361
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001362 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001363 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001364 }
1365
1366 /* Check that attempting RA with another ll src addr won't work, packet dropped: */
1367 testcase TC_pdp6_act_deact_gtpu_access_wrong_ll_saddr() runs on GT_CT {
1368 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001369 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 +01001370 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1371 f_pdp_ctx_act(ctx);
1372
1373 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1374 f_wait_rtr_adv(ctx);
1375 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1376
1377 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1378 var OCT16 saddr_ll_wrong := f_ipv6_mangle(saddr_ll, 8);
1379 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_ll_wrong));
1380 f_wait_gtpu_fail(ctx);
1381
1382 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001383 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001384 }
1385
1386 /* Assert that packets with wrong global src addr are dropped by GGSN */
1387 testcase TC_pdp6_act_deact_gtpu_access_wrong_global_saddr() runs on GT_CT {
1388 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001389 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 +01001390 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1391 f_pdp_ctx_act(ctx);
1392
1393 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1394 f_wait_rtr_adv(ctx);
1395 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1396
1397 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1398 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001399 var OCT16 saddr_wrong := f_ipv6_mangle(saddr_glob);
1400 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_wrong, dns1_addr));
1401 f_wait_gtpu_fail(ctx);
1402
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001403 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001404 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001405 }
1406
1407 /* Send an IPv4 ICMP ECHO REQUEST to APN6, should fail (packet dropped */
1408 testcase TC_pdp6_act_deact_gtpu_access_ipv4_apn6() runs on GT_CT {
1409 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001410 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 +01001411 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1412 f_pdp_ctx_act(ctx);
1413
1414 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1415 f_wait_rtr_adv(ctx);
1416 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1417
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001418 var OCT4 saddr_v4 := f_inet_addr("192.168.10.2");
1419 var OCT4 daddr_v4 := f_inet_addr("8.8.8.8");
1420 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_v4, daddr_v4));
1421 f_wait_gtpu_fail(ctx);
1422
1423 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001424 f_shutdown_helper();
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001425 }
1426
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001427 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1428 testcase TC_pdp6_clients_interact() runs on GT_CT {
1429 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001430 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet6, valueof(t_EuaIPv6Dyn)));
1431 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 +01001432 f_pdp_ctx_act(ctxA);
1433 f_send_gtpu(ctxA, f_icmpv6_rs_for_pdp(ctxA));
1434 f_wait_rtr_adv(ctxA);
1435 f_send_gtpu(ctxA, f_gen_icmpv6_neigh_solicit_for_pdp(ctxA));
1436
1437 f_pdp_ctx_act(ctxB);
1438 f_send_gtpu(ctxB, f_icmpv6_rs_for_pdp(ctxB));
1439 f_wait_rtr_adv(ctxB);
1440 f_send_gtpu(ctxB, f_gen_icmpv6_neigh_solicit_for_pdp(ctxB));
1441
1442 var OCT16 addrA_ll := f_ipv6_link_local(ctxA.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1443 var OCT16 addrB_ll := f_ipv6_link_local(ctxB.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1444 var OCT16 addrA_glob := f_ipv6_global(ctxA.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1445 var OCT16 addrB_glob := f_ipv6_global(ctxB.eua.endUserAddress.endUserAddressIPv6.ipv6_address);
1446
1447 /* Validate if clients can interact using ll addr. */
1448 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_ll, addrB_ll));
1449 f_wait_gtpu_fail(ctxB);
1450
1451 /* Validate if clients can interact using global addr. */
1452 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_glob, addrB_glob));
1453 f_wait_gtpu_fail(ctxB);
1454
1455 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001456 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001457 f_shutdown_helper();
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001458 }
1459
Harald Welte0ef285b2017-08-13 20:06:01 +02001460 /* Test PDP context activation for dynamic IPv4 EUA without DNS request */
Harald Welteed7a1772017-08-09 20:26:20 +02001461 testcase TC_pdp4_act_deact() runs on GT_CT {
1462 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001463 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Welteed7a1772017-08-09 20:26:20 +02001464 f_pdp_ctx_act(ctx);
1465 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001466 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001467 }
1468
Harald Welte0ef285b2017-08-13 20:06:01 +02001469 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in IPCP */
Harald Welteed7a1772017-08-09 20:26:20 +02001470 testcase TC_pdp4_act_deact_ipcp() runs on GT_CT {
1471 f_init();
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +01001472 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1473 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001474 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Weltedca80052017-08-13 20:01:38 +02001475 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_IPCP);
Harald Welteed7a1772017-08-09 20:26:20 +02001476 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001477 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Harald Welte71a36022017-12-04 18:55:58 +01001478 /* verify IPCP is at all contained */
1479 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1480 setverdict(fail, "IPCP not found in PCO");
1481 }
1482 /* verify IPCP contains both primary and secondary DNS */
1483 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
Pau Espin Pedrolf69a4382018-01-29 13:09:00 +01001484 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1485 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1486 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1487 } else {
1488 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1489 }
Harald Welte71a36022017-12-04 18:55:58 +01001490 }
Harald Welteed7a1772017-08-09 20:26:20 +02001491 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001492 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001493 }
1494
Harald Weltef8298542019-04-10 10:15:28 +02001495 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in IPCP + PAP authentication (broken) */
1496 testcase TC_pdp4_act_deact_ipcp_pap_broken() runs on GT_CT {
1497 f_init();
1498 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1499 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001500 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Weltef8298542019-04-10 10:15:28 +02001501 ctx.pco_req := valueof(ts_PCO_PAP_IPv4_DNS);
1502 f_pdp_ctx_act(ctx);
1503 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1504 /* verify IPCP is at all contained */
1505 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1506 setverdict(fail, "IPCP not found in PCO");
1507 }
1508 /* verify IPCP contains both primary and secondary DNS */
1509 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
1510 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1511 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1512 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1513 } else {
1514 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1515 }
1516 }
1517 /* verify that PAP is contained */
1518 if (not match(ctx.pco_neg, tr_PCO_Contains('C023'O))) {
1519 setverdict(fail, "PAP not found in PCO");
1520 }
1521 var PapPacket pap := dec_PapPacket(f_PCO_extract_proto(ctx.pco_neg, 'C023'O));
1522 if (not match(pap, tr_PAP_AuthAck)) {
1523 setverdict(fail, "PAP isn't an AuthenticateAck: ", pap);
1524 }
1525 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001526 f_shutdown_helper();
Harald Weltef8298542019-04-10 10:15:28 +02001527 }
1528
Harald Welte0ef285b2017-08-13 20:06:01 +02001529 /* Test PDP context activation for dynamic IPv4 EUA with IPv4 DNS in PCO */
Harald Welteed7a1772017-08-09 20:26:20 +02001530 testcase TC_pdp4_act_deact_pcodns() runs on GT_CT {
1531 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001532 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Harald Weltedca80052017-08-13 20:01:38 +02001533 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
Harald Welteed7a1772017-08-09 20:26:20 +02001534 f_pdp_ctx_act(ctx);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001535
Harald Welte79737b42019-04-10 10:39:30 +02001536 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol363ba482018-01-29 18:42:00 +01001537 /* verify PCO contains both primary and secondary DNS */
1538 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1539 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 1), ggsn_ip4_dns1)) {
1540 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1541 }
1542
1543 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1544 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 2), ggsn_ip4_dns2)) {
1545 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1546 }
1547
Harald Welteed7a1772017-08-09 20:26:20 +02001548 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001549 f_shutdown_helper();
Harald Welteed7a1772017-08-09 20:26:20 +02001550 }
1551
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001552 /* Test PDP context activation for dynamic IPv4 EUA.
1553 Test we can send ICMPv6 ping over GTPU to DNS server. */
1554 testcase TC_pdp4_act_deact_gtpu_access() runs on GT_CT {
1555 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001556 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 +01001557 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1558 f_pdp_ctx_act(ctx);
1559
Harald Welte79737b42019-04-10 10:39:30 +02001560 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001561 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1562
1563 /* Check if we can use valid global src addr, should work */
1564 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1565 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1566 f_wait_icmp4_echo_reply(ctx);
1567
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001568 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001569 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001570 }
1571
1572 /* Assert that packets with wrong global src addr are dropped by GGSN */
1573 testcase TC_pdp4_act_deact_gtpu_access_wrong_saddr() runs on GT_CT {
1574 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001575 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 +01001576 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1577 f_pdp_ctx_act(ctx);
1578
1579 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1580 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1581 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001582 var OCT4 saddr_wrong := substr(saddr, 0, 3) & (saddr[3] xor4b '11'O);
1583 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_wrong, dns1_addr));
1584 f_wait_gtpu_fail(ctx);
1585
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001586 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001587 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001588 }
1589
1590 /* Send an IPv6 RA to APN4, should fail (packet dropped) */
1591 testcase TC_pdp4_act_deact_gtpu_access_ipv6_apn4() runs on GT_CT {
1592 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001593 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 +01001594 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1595 f_pdp_ctx_act(ctx);
1596
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001597 /* Send an IPv6 RA to APN4, should fail (packet dropped) */
1598 var OCT16 saddr_v6 := f_inet6_addr("fde4:8dba:82e1:2000:1:2:3:4");
1599 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_v6));
1600 f_wait_gtpu_fail(ctx);
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001601
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001602 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001603 f_shutdown_helper();
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01001604 }
1605
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001606 /* Helper function for tests below. */
1607 function f_pdp4_clients_interact() runs on GT_CT {
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001608 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001609 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
1610 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 +01001611 f_pdp_ctx_act(ctxA);
1612 f_pdp_ctx_act(ctxB);
1613 var OCT4 addrA := ctxA.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1614 var OCT4 addrB := ctxB.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1615 f_send_gtpu(ctxA, f_gen_icmpv4_echo(addrA, addrB));
1616 f_wait_icmp4_echo_request(ctxB);
1617
1618 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001619 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01001620 }
1621
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001622 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1623 testcase TC_pdp4_clients_interact_with_txseq() runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +02001624 use_gtpu_txseq := true;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001625 f_pdp4_clients_interact();
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001626 f_shutdown_helper();
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001627 }
1628
1629 /* Validate if different clients (pdp ctx) can reach one another through GGSN (without Tx sequence number). */
1630 testcase TC_pdp4_clients_interact_without_txseq() runs on GT_CT {
Harald Welte3e0b0392018-04-26 09:46:21 +02001631 use_gtpu_txseq := false;
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001632 f_pdp4_clients_interact();
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001633 f_shutdown_helper();
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02001634 }
1635
Harald Weltedca80052017-08-13 20:01:38 +02001636 testcase TC_echo_req_resp() runs on GT_CT {
1637 f_init();
1638 f_send_gtpc(ts_GTPC_PING(g_peer_c, g_c_seq_nr));
1639 T_default.start;
1640 alt {
1641 [] GTPC.receive(tr_GTPC_PONG(g_peer_c)) { setverdict(pass); };
1642 [] GTPC.receive { repeat; };
1643 [] T_default.timeout { setverdict(fail); }
1644 }
1645 T_default.stop;
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001646 f_shutdown_helper();
Harald Weltedca80052017-08-13 20:01:38 +02001647 }
1648
Pau Espin Pedrol480e67f2022-02-09 16:37:47 +01001649 testcase TC_echo_req_resp_gtpu() runs on GT_CT {
1650 f_init();
1651 GTPU.send(ts_GTPU_PING(g_peer_u, g_d_seq_nr));
1652 T_default.start;
1653 alt {
1654 [] GTPU.receive(tr_GTPU_PONG(g_peer_u)) { setverdict(pass); };
1655 [] GTPU.receive { repeat; };
1656 [] T_default.timeout { setverdict(fail); }
1657 }
1658 T_default.stop;
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001659 f_shutdown_helper();
Pau Espin Pedrol480e67f2022-02-09 16:37:47 +01001660 }
1661
Philipp Maier33e52612018-05-30 17:22:02 +02001662 /* Test if the parser can cope with PCO that only contain either a
1663 * single primary DNS or a secondary DNS. */
1664 testcase TC_pdp4_act_deact_with_single_dns() runs on GT_CT {
1665
1666 /* Note: an unpatched osmo-ggsn version will enter an endless-loop when
1667 * the test is executed.
1668 * see also: Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288 */
1669
1670 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001671 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Philipp Maier33e52612018-05-30 17:22:02 +02001672 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1673 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1674 var octetstring pco_neg_dns;
1675 var octetstring pco_neg_dns_expected;
1676
1677 /* PCO with primary DNS only */
1678 ctx.pco_req := valueof(ts_PCO_IPv4_PRI_DNS_IPCP);
1679 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001680 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Philipp Maier33e52612018-05-30 17:22:02 +02001681 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1682 pco_neg_dns_expected := '0200000A8106'O & ggsn_ip4_dns1
1683 /* Note: The prepended hex bytes encode the following information:
1684 * 0x02 = Configuration ACK
1685 * 0x00 = Identifier
1686 * 0x000a = Length
1687 * 0x81 = Type (Primary DNS Server Address)
1688 * 0x06 = Length
1689 * (4 byte IP-Address appended) */
1690 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1691 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1692 }
1693 f_pdp_ctx_del(ctx, '1'B);
1694
1695 /* PCO with secondary DNS only */
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001696 ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Philipp Maier33e52612018-05-30 17:22:02 +02001697 ctx.pco_req := valueof(ts_PCO_IPv4_SEC_DNS_IPCP);
1698 f_pdp_ctx_act(ctx);
1699 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1700 pco_neg_dns_expected := '0200000A8306'O & ggsn_ip4_dns2
1701 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1702 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1703 }
1704 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001705 f_shutdown_helper();
Philipp Maier33e52612018-05-30 17:22:02 +02001706 }
1707
1708 /* Test if the parser can cope with PCO that contains primary and secondary DNS in a separate IPCP container.
1709 * Note: an unpatched osmo-ggsn version will enter an endless-loop when the test is run
1710 * see Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288. */
1711 testcase TC_pdp4_act_deact_with_separate_dns() runs on GT_CT {
1712
1713 /* Note: an unpatched osmo-ggsn version will enter an endless-loop when
1714 * the test is executed.
1715 * see also: Change-Id Icffde89f9bc5d8fcadf6e2dd6c0b4de03440edd5 and OS#3288 */
1716
1717 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001718 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
Philipp Maier33e52612018-05-30 17:22:02 +02001719 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1720 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1721 var octetstring pco_neg_dns;
1722 var octetstring pco_neg_dns_expected;
1723
1724 ctx.pco_req := valueof(ts_PCO_IPv4_SEPARATE_DNS_IPCP);
1725 f_pdp_ctx_act(ctx);
1726
1727 /* Check if primary DNS is contained */
1728 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 1);
1729 pco_neg_dns_expected := '0200000A8106'O & ggsn_ip4_dns1
1730 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1731 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1732 }
Philipp Maier33e52612018-05-30 17:22:02 +02001733
1734 /* Check if secondary DNS is contained */
Stefan Sperling8e7a3962018-07-19 19:24:38 +02001735 /* This used to fail due to a bug in osmo-ggsn, see OS#3381 */
1736 pco_neg_dns := f_PCO_extract_proto(ctx.pco_neg, '8021'O, 2);
Philipp Maier33e52612018-05-30 17:22:02 +02001737 pco_neg_dns_expected := '0200000A8306'O & ggsn_ip4_dns2
1738 if (not match(pco_neg_dns, pco_neg_dns_expected)) {
1739 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1740 }
1741 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001742 f_shutdown_helper();
Philipp Maier33e52612018-05-30 17:22:02 +02001743 }
1744
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001745 /* Validate that SUT updates remote TEIC when requested through UpdatePDPContextRequest */
1746 testcase TC_pdp4_act_update_teic() runs on GT_CT {
1747 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001748 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 +01001749 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1750 f_pdp_ctx_act(ctx);
1751
1752 /* UpdatePDPContestRequest changing the local TEIC */
1753 var OCT4 new_teic := ctx.teic;
1754 new_teic[3] := new_teic[3] xor4b '11'O;
1755 f_pdp_ctx_update(ctx, new_teic := new_teic);
1756
1757 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001758 f_shutdown_helper();
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001759 }
1760
1761 /* Validate that SUT updates remote TEID when requested through UpdatePDPContextRequest */
1762 testcase TC_pdp4_act_update_teid() runs on GT_CT {
1763 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001764 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 +01001765 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1766 f_pdp_ctx_act(ctx);
1767
1768 f_PCO_ensure_no_duplicates(ctx.pco_neg);
1769 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1770 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
1771
1772 /* Data is sent (back) to the local TEID established during CreatePDPContext */
1773 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1774 f_wait_icmp4_echo_reply(ctx);
1775
1776 /* UpdatePDPContestRequest changing the local TEID */
1777 var OCT4 new_teid := ctx.teid;
1778 new_teid[3] := new_teid[3] xor4b '11'O;
1779 f_pdp_ctx_update(ctx, new_teid := new_teid);
1780
1781 /* Check if we can send data after updating the PDP context. Answer should be sent to the new TEID */
1782 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1783 f_wait_icmp4_echo_reply(ctx);
1784
1785 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001786 f_shutdown_helper();
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01001787 }
1788
Oliver Smithee6a0882019-03-08 11:05:46 +01001789 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA without DNS request */
1790 testcase TC_pdp46_act_deact() runs on GT_CT {
1791 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001792 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001793 f_pdp_ctx_act(ctx);
1794 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001795 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001796 }
1797
1798 /* Test PDP context activation for dynamic IPv4v6 EUA with IPv4 DNS in IPCP */
1799 testcase TC_pdp46_act_deact_ipcp() runs on GT_CT {
1800 f_init();
1801 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1802 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001803 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001804 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_IPCP);
1805 f_pdp_ctx_act(ctx);
Harald Welte79737b42019-04-10 10:39:30 +02001806 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001807 /* verify IPCP is at all contained */
1808 if (not match(ctx.pco_neg, tr_PCO_Contains('8021'O))) {
1809 setverdict(fail, "IPCP not found in PCO");
1810 }
Harald Welte79737b42019-04-10 10:39:30 +02001811 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001812 /* verify IPCP contains both primary and secondary IPv4 DNS */
1813 var IpcpPacket ipcp := dec_IpcpPacket(f_PCO_extract_proto(ctx.pco_neg, '8021'O));
1814 if (not match(ipcp, tr_IPCP_Ack_DNS(0, ggsn_ip4_dns1, ggsn_ip4_dns2))) {
1815 if (not match(ipcp, tr_IPCP_Ack_DNS(0))) {
1816 setverdict(fail, "Primary/Secondary DNS PCO IPCP option not found");
1817 } else {
1818 setverdict(fail, "Primary/Secondary DNS PCO IPCP option found but not matching expected values");
1819 }
1820 }
1821 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001822 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001823 }
1824
1825 /* Test PDP context activation for dynamic IPv4v6 EUA with IPv6 DNS in PCO and router solicitation/advertisement */
1826 testcase TC_pdp46_act_deact_icmp6() runs on GT_CT {
1827 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001828 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001829 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1830 f_pdp_ctx_act(ctx);
1831
1832 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp46(ctx));
1833 f_wait_rtr_adv(ctx);
1834 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp46(ctx));
1835
1836 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001837 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001838 }
1839
1840 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA with request of IPv4 DNS in PCO */
1841 testcase TC_pdp46_act_deact_pcodns4() runs on GT_CT {
1842 f_init();
1843
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001844 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001845 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1846 f_pdp_ctx_act(ctx);
1847
Harald Welte79737b42019-04-10 10:39:30 +02001848 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001849 /* verify PCO contains both primary and secondary IPv4 DNS */
1850 var OCT4 ggsn_ip4_dns1 := f_inet_addr(m_ggsn_ip4_dns1);
1851 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 1), ggsn_ip4_dns1)) {
1852 setverdict(fail, "Primary DNS IPv4 PCO option not found");
1853 }
1854
1855 var OCT4 ggsn_ip4_dns2 := f_inet_addr(m_ggsn_ip4_dns2);
1856 if (not match(f_PCO_extract_proto(ctx.pco_neg, '000d'O, 2), ggsn_ip4_dns2)) {
1857 setverdict(fail, "Secondary DNS IPv4 PCO option not found");
1858 }
1859
1860 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001861 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001862 }
1863
1864 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA with request of IPv6 DNS in PCO */
1865 testcase TC_pdp46_act_deact_pcodns6() runs on GT_CT {
1866 f_init();
1867
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001868 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001869 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1870 f_pdp_ctx_act(ctx);
1871
Harald Welte79737b42019-04-10 10:39:30 +02001872 f_PCO_ensure_no_duplicates(ctx.pco_neg);
Oliver Smithee6a0882019-03-08 11:05:46 +01001873 /* verify PCO contains both primary and secondary IPv6 DNS */
1874 var OCT4 ggsn_ip6_dns1 := f_inet6_addr(m_ggsn_ip6_dns1);
1875 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 1), ggsn_ip6_dns1)) {
1876 setverdict(fail, "Primary DNS IPv6 PCO option not found");
1877 }
1878
1879 var OCT4 ggsn_ip6_dns2 := f_inet6_addr(m_ggsn_ip6_dns2);
1880 if (not match(f_PCO_extract_proto(ctx.pco_neg, '0003'O, 2), ggsn_ip6_dns2)) {
1881 setverdict(fail, "Secondary DNS IPv6 PCO option not found");
1882 }
1883
1884 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001885 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001886 }
1887
1888 /* Test PDP context activation for dynamic IPv4v6 EUA.
1889 Test we can send ICMPv6 ping over GTPU to DNS server. */
1890 testcase TC_pdp46_act_deact_gtpu_access() runs on GT_CT {
1891 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001892 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001893 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1894 f_pdp_ctx_act(ctx);
1895
1896 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1897
1898 /* Check if we can use valid global src addr, should work */
1899 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv4_address;
1900 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
1901 f_wait_icmp4_echo_reply(ctx);
1902
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001903 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001904 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001905 }
1906
1907 /* Assert that packets with wrong ipv4 src addr are dropped by GGSN on APN IPv4v6 */
1908 testcase TC_pdp46_act_deact_gtpu_access_wrong_saddr_ipv4() runs on GT_CT {
1909 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001910 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 +01001911 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1912 f_pdp_ctx_act(ctx);
1913
1914 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
1915 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv4_address;
Oliver Smithee6a0882019-03-08 11:05:46 +01001916 var OCT4 saddr_wrong := substr(saddr, 0, 3) & (saddr[3] xor4b '11'O);
1917 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr_wrong, dns1_addr));
1918 f_wait_gtpu_fail(ctx);
1919
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001920 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001921 f_shutdown_helper();
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001922 }
1923
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001924 /* Check that attempting RA with another ll src addr won't work, packet dropped: */
1925 testcase TC_pdp46_act_deact_gtpu_access_wrong_ll_saddr_ipv6() runs on GT_CT {
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001926 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001927 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 +01001928 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
1929 f_pdp_ctx_act(ctx);
1930
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001931 var OCT16 saddr_ll := f_ipv6_link_local(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1932 var OCT16 saddr_ll_wrong := f_ipv6_mangle(saddr_ll, 8);
1933 f_send_gtpu(ctx, f_gen_icmpv6_router_solicitation(saddr_ll_wrong));
1934 f_wait_gtpu_fail(ctx);
1935
1936 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001937 f_shutdown_helper();
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01001938 }
1939
1940 /* Assert that packets with wrong ipv6 global src addr are dropped by GGSN on APN IPv4v6 */
1941 testcase TC_pdp46_act_deact_gtpu_access_wrong_global_saddr_ipv6() runs on GT_CT {
1942 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001943 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 +01001944 ctx.pco_req := valueof(ts_PCO_IPv6_DNS);
1945 f_pdp_ctx_act(ctx);
1946
1947 f_send_gtpu(ctx, f_icmpv6_rs_for_pdp(ctx));
1948 f_wait_rtr_adv(ctx);
1949 f_send_gtpu(ctx, f_gen_icmpv6_neigh_solicit_for_pdp(ctx));
1950
1951 var OCT16 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '0003'O);
1952 var OCT16 saddr_glob := f_ipv6_global(ctx.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1953 var OCT16 saddr_wrong := f_ipv6_mangle(saddr_glob);
1954 f_send_gtpu(ctx, f_gen_icmpv6_echo(saddr_wrong, dns1_addr));
Oliver Smithee6a0882019-03-08 11:05:46 +01001955 f_wait_gtpu_fail(ctx);
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01001956
Oliver Smithee6a0882019-03-08 11:05:46 +01001957 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001958 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001959 }
1960
1961 /* Validate if different clients (pdp ctx) can reach one another through GGSN. */
1962 testcase TC_pdp46_clients_interact() runs on GT_CT {
1963 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02001964 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
1965 var PdpContext ctxB := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInet46, valueof(t_EuaIPv4Dynv6Dyn)));
Oliver Smithee6a0882019-03-08 11:05:46 +01001966 f_pdp_ctx_act(ctxA);
1967 f_send_gtpu(ctxA, f_icmpv6_rs_for_pdp46(ctxA));
1968 f_wait_rtr_adv(ctxA);
1969 f_send_gtpu(ctxA, f_gen_icmpv6_neigh_solicit_for_pdp46(ctxA));
1970
1971 f_pdp_ctx_act(ctxB);
1972 f_send_gtpu(ctxB, f_icmpv6_rs_for_pdp46(ctxB));
1973 f_wait_rtr_adv(ctxB);
1974 f_send_gtpu(ctxB, f_gen_icmpv6_neigh_solicit_for_pdp46(ctxB));
1975
1976 var OCT16 addrA_ll := f_ipv6_link_local(ctxA.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1977 var OCT16 addrB_ll := f_ipv6_link_local(ctxB.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1978 var OCT16 addrA_glob := f_ipv6_global(ctxA.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1979 var OCT16 addrB_glob := f_ipv6_global(ctxB.eua.endUserAddress.endUserAddressIPv4andIPv6.ipv6_address);
1980
1981 /* Validate if clients can interact using ll addr. */
1982 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_ll, addrB_ll));
1983 f_wait_gtpu_fail(ctxB);
1984
1985 /* Validate if clients can interact using global addr. */
1986 f_send_gtpu(ctxA, f_gen_icmpv6_echo(addrA_glob, addrB_glob));
1987 f_wait_gtpu_fail(ctxB);
1988
1989 f_pdp_ctx_del(ctxA, '1'B);
Pau Espin Pedrolbb2bb062019-09-03 12:28:12 +02001990 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01001991 f_shutdown_helper();
Oliver Smithee6a0882019-03-08 11:05:46 +01001992 }
1993
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02001994 /* Test IPv4v6 context activation for dynamic IPv4v6 EUA on a v4-only APN */
1995 testcase TC_pdp46_act_deact_apn4() runs on GT_CT {
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01001996 const OCT1 cause_accept := '80'O; /* Normal accept cause */
1997 const OCT1 cause_new_pdp_type := '81'O; /* Cause: New PDP type due to network preference */
1998 const OCT1 cause_unknown_pdp := 'DC'O; /* Cause: Unknown PDP address or PDP type */
1999 var CreatePDPContextResponse cpr;
2000
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002001 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002002 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 +01002003 cpr := f_pdp_ctx_act(ctx46, (cause_unknown_pdp, cause_new_pdp_type));
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002004
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01002005 if (cpr.cause.causevalue == cause_new_pdp_type) {
2006 /* 3GPP TS 23.060 sec 9.2.1: "If the MS requests PDP type IPv4v6,
2007 * but the operator preferences dictate the use of a single IP
2008 * version only, the PDP type shall be changed to a single address
2009 * PDP type (IPv4 or IPv6) and a reason cause shall be returned to
2010 * the MS indicating that only the assigned PDP type is allowed. In
2011 * this case, the MS shall not request another PDP context for the
2012 * other PDP type during the existence of the PDP context." */
2013 f_pdp_ctx_del(ctx46, '1'B);
2014 } else {
2015 /* 3GPP TS 23.060 sec 9.2.1 NOTE 5: If the MS requests PDP type
2016 * IPv4v6, and the PDP context is rejected due to "unknown PDP
2017 * type", the MS can attempt to establish dual-stack connectivity
2018 * by performing two PDP context request procedures to activate an
2019 * IPv4 PDP context and an IPv6 PDP context, both to the same APN. A
2020 * typical MS first attempts v4v6, and if rejected, then tries v4
2021 * and v6 separetly */
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002022 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 +01002023 f_pdp_ctx_act(ctx4, cause_accept); /* Normal accept cause */
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002024
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002025 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 +01002026 f_pdp_ctx_act(ctx6, cause_unknown_pdp); /* Cause: Unknown PDP address or PDP type */
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002027
Pau Espin Pedrol0f464d62022-02-23 14:04:29 +01002028 f_pdp_ctx_del(ctx4, '1'B);
2029 }
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002030 f_shutdown_helper();
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002031 }
2032
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002033 /* Validate if 2nd CtxCreateReq with increased Recovery IE causes ggsn to drop 1st one (while keeping 2nd one). */
2034 testcase TC_pdp_act2_recovery() runs on GT_CT {
2035 var Gtp1cUnitdata ud;
2036 var default d;
2037 var boolean ctxA_deleted := false;
2038 var boolean ctxB_created := false;
2039
2040 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002041 var PdpContext ctxA := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
2042 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 +02002043 f_pdp_ctx_act(ctxA);
2044
Vadim Yanitskiyd344b4a2022-02-09 18:28:18 +06002045 g_restart_ctr := int2oct((oct2int(g_restart_ctr) + 1) mod 256, 1);
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002046
2047 log("sending 2nd CreatePDP (recovery increased)");
2048 f_send_gtpc(ts_GTPC_CreatePDP(g_peer_c, g_c_seq_nr, ctxB.imsi, g_restart_ctr,
2049 ctxB.teid, ctxB.teic, ctxB.nsapi, ctxB.eua, ctxB.apn,
2050 g_sgsn_ip_c, g_sgsn_ip_u, ctxB.msisdn, ctxB.pco_req));
2051 T_default.start;
2052 d := activate(pingpong());
2053 alt {
2054 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ctxB.teic)) -> value ud {
2055 f_handle_create_req(ctxB, ud);
2056 if (not ctxB_created) {
2057 ctxB_created := true;
2058 setverdict(pass);
2059 } else {
2060 setverdict(fail, "Repeated createPDPContextResponse(ctxB)");
2061 }
2062
2063 if (not ctxA_deleted) {
2064 repeat;
2065 }
2066 }
2067 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctxA.teic)) -> value ud {
2068 if (ispresent(ud.gtpc.gtpc_pdu.deletePDPContextRequest.tearDownIndicator)) {
2069 setverdict(pass);
2070 } else {
2071 setverdict(fail);
2072 }
2073
2074 if (not ctxA_deleted) {
2075 ctxA_deleted := true;
2076 setverdict(pass);
2077 } else {
2078 setverdict(fail, "Repeated deletePDPContextRequest(ctxA)");
2079 }
2080
2081 if (not ctxB_created) {
2082 repeat;
2083 }
2084 }
2085 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextRequest, ctxB.teic)) -> value ud {
2086 setverdict(fail, "GGSN dropping still valid pdp ctx");
2087 }
2088 }
2089 deactivate(d);
2090 T_default.stop;
2091
2092 f_pdp_ctx_del(ctxB, '1'B);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002093 f_shutdown_helper();
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002094 }
2095
2096
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +01002097 /* Send a duplicate echo req. osmo-ggsn maintains a queue for sent responses (T3-RESPONSE * N3-REQUESTS):
2098 * 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 +02002099 testcase TC_act_deact_retrans_duplicate() runs on GT_CT {
2100 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002101 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 +02002102 f_pdp_ctx_act(ctx);
2103 f_pdp_ctx_del(ctx, '1'B);
2104 /* leave some time in between to make sure retransmit response queue keeps packets for a while */
Pau Espin Pedrolbfad97f2022-11-04 12:03:17 +01002105 f_sleep(int2float(mp_t3_response));
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002106 /* g_c_seq_nr was increased during f_pdp_ctx_del(), we want a
2107 duplicate. If it was not a duplicate, osmo-ggsn would answer
2108 with a failure since that PDP ctx was already deleted. */
Pau Espin Pedrold6b51332022-05-19 17:47:11 +02002109 if (g_c_seq_nr == 0) {
2110 g_c_seq_nr := 65535;
2111 } else {
2112 g_c_seq_nr := g_c_seq_nr - 1;
2113 }
Pau Espin Pedrol10ec96e2022-02-09 17:03:15 +01002114 f_pdp_ctx_del(ctx, '1'B, expect_diameter := false);
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002115
2116 /* Now send a new pdp ctx del (increased seqnum). It should fail with cause "non-existent": */
2117 var OCT1 cause_nonexistent := 'C0'O;
Pau Espin Pedrol10ec96e2022-02-09 17:03:15 +01002118 f_pdp_ctx_del(ctx, '1'B, cause_nonexistent, expect_diameter := false);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002119 f_shutdown_helper();
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002120 }
2121
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002122 /* Activate PDP context + trigger Recovery procedure through EchoResp */
2123 testcase TC_pdp_act_restart_ctr_echo() runs on GT_CT {
2124 var Gtp1cUnitdata ud;
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002125 g_use_echo_intval := 5;
2126 timer T_echo;
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002127 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002128 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 +02002129 f_pdp_ctx_act(ctx);
2130
2131 /* Wait to receive echo request and send initial Restart counter */
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002132 T_echo.start(int2float(g_use_echo_intval) + 1.0);
2133 alt {
2134 [] GTPC.receive(tr_GTPC_PING(?)) -> value ud {
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002135 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
2136 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002137 }
2138 [] T_echo.timeout {
2139 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2140 "Timeout waiting for ping");
2141 }
2142 }
2143 T_echo.stop;
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002144
2145 /* Wait to receive second echo request and send incremented Restart
2146 counter. This will fake a restarted SGSN, and pdp ctx allocated
2147 should be released by GGSN */
Vadim Yanitskiyd344b4a2022-02-09 18:28:18 +06002148 g_restart_ctr := int2oct((oct2int(g_restart_ctr) + 1) mod 256, 1);
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002149 T_echo.start(int2float(g_use_echo_intval) + 1.0);
2150 alt {
2151 [] GTPC.receive(tr_GTPC_PING(?)) -> value ud {
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002152 var uint16_t seq := oct2int(ud.gtpc.opt_part.sequenceNumber);
2153 GTPC.send(ts_GTPC_PONG(ud.peer, seq, g_restart_ctr));
Pau Espin Pedrol05118022022-02-17 19:49:13 +01002154 }
2155 [] T_echo.timeout {
2156 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2157 "Timeout waiting for ping");
2158 }
2159 }
2160 T_echo.stop;
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002161 f_pdp_ctx_exp_del_req(ctx, omit, true);
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002162 f_shutdown_helper();
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002163 }
2164
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002165 /* Test creation, user plane and deletion of big amount (1000) of concurrent PDP context */
2166 testcase TC_lots_of_concurrent_pdp_ctx() runs on GT_CT {
2167 var Gtp1cUnitdata udc;
2168 var Gtp1uUnitdata udu;
2169 const integer num_ctx := 1000;
2170 var PdpContext ctx[num_ctx];
2171 timer T_next := 0.01;
2172 var integer next_req_ctx := 0;
2173 var integer rx_resp_ctx := 0;
2174 var integer rx_pong := 0;
2175 var OCT4 dns1_addr;
2176 var OCT4 saddr;
2177 var integer teic;
2178 var integer idx;
2179
2180 f_init();
2181
2182 for (var integer i := 0; i < num_ctx; i := i + 1) {
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002183 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 +01002184 ctx[i].teic := int2oct(i+1, 4); /* +1: skip TEIC=0 */
2185 ctx[i].teid := int2oct(i+1, 4); /* +1: skip TEID=0 */
2186 ctx[i].pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
2187 }
2188
2189 T_default.start(60.0);
2190
2191 T_next.start;
2192 alt {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002193 [Gx_PROC.checkstate("Connected")] as_DIA_Gx_CCR(INITIAL_REQUEST) { repeat; }
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002194 [Gy_PROC.checkstate("Connected")] as_DIA_Gy_CCR(omit, INITIAL_REQUEST) { repeat; }
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002195 [] pingpong();
2196 [] T_next.timeout {
2197 f_send_gtpc(ts_GTPC_CreatePDP(g_peer_c, g_c_seq_nr, ctx[next_req_ctx].imsi, g_restart_ctr,
2198 ctx[next_req_ctx].teid, ctx[next_req_ctx].teic, ctx[next_req_ctx].nsapi,
2199 ctx[next_req_ctx].eua, ctx[next_req_ctx].apn, g_sgsn_ip_c, g_sgsn_ip_u,
2200 ctx[next_req_ctx].msisdn, ctx[next_req_ctx].pco_req, ctx[next_req_ctx].ratType,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +02002201 ctx[next_req_ctx].uli, ctx[next_req_ctx].charging_char, ctx[next_req_ctx].imeisv,
2202 ctx[next_req_ctx].ms_tz));
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002203 next_req_ctx := next_req_ctx + 1;
2204 if (next_req_ctx < num_ctx) {
2205 T_next.start;
2206 }
2207 repeat;
2208 }
2209 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ?)) -> value udc {
2210 teic := oct2int(udc.gtpc.teid);
2211 if (not match(teic, (1 .. num_ctx))) {
2212 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2213 "Rx Unexpected TEIC");
2214 }
2215 idx := teic - 1;
2216 f_handle_create_req(ctx[idx], udc);
2217 rx_resp_ctx := rx_resp_ctx + 1;
2218
2219 dns1_addr := f_PCO_extract_proto(ctx[idx].pco_neg, '000d'O);
2220 saddr := ctx[idx].eua.endUserAddress.endUserAddressIPv4.ipv4_address;
2221 f_send_gtpu(ctx[idx], f_gen_icmpv4_echo(saddr, dns1_addr));
2222 repeat;
2223 }
2224 [] GTPU.receive(tr_GTPU_GPDU(g_peer_u, ?)) -> value udu {
2225 var octetstring gpdu := udu.gtpu.gtpu_IEs.g_PDU_IEs.data;
2226 var IPv4_packet ip4 := f_IPv4_dec(gpdu);
2227 if (ip4.header.ver != 4) {
2228 repeat;
2229 }
2230 var PDU_ICMP icmp4 := f_dec_PDU_ICMP(ip4.payload);
2231 if (not match(icmp4, (tr_ICMPv4_ERP, tr_ICMPv4_DU))) {
2232 repeat;
2233 }
2234 rx_pong := rx_pong + 1;
2235 if (rx_pong < num_ctx) {
2236 repeat;
2237 }
2238 setverdict(pass);
2239 }
2240 [] GTPC.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPC"); }
2241 [] GTPU.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPU"); }
2242 }
2243
2244 /* Let's close them now: */
2245 next_req_ctx := 0;
2246 rx_resp_ctx := 0;
2247 T_next.start;
2248 alt {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002249 [Gx_PROC.checkstate("Connected")] as_DIA_Gx_CCR(TERMINATION_REQUEST) { repeat; }
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002250 [Gy_PROC.checkstate("Connected")] as_DIA_Gy_CCR(omit, TERMINATION_REQUEST) { repeat; }
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002251 [] pingpong();
2252 [] T_next.timeout {
2253 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));
2254 next_req_ctx := next_req_ctx + 1;
2255 if (next_req_ctx < num_ctx) {
2256 T_next.start;
2257 }
2258 repeat;
2259 }
2260 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextResponse, ?)) -> value udc {
2261 teic := oct2int(udc.gtpc.teid);
2262 if (not match(teic, (1 .. num_ctx))) {
2263 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2264 "Rx Unexpected TEIC");
2265 }
2266 rx_resp_ctx := rx_resp_ctx + 1;
2267 if (rx_resp_ctx < num_ctx) {
2268 repeat;
2269 }
2270 setverdict(pass);
2271 }
2272 [] GTPC.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPC"); }
2273 [] GTPU.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPU"); }
2274 }
2275 T_next.stop;
2276
2277 T_default.stop;
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002278 f_shutdown_helper();
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002279 }
2280
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002281 /* Test callocation of PDP contexts until reaching addr pool exhaustion */
2282 type record of OCT4 TEIClist;
2283 testcase TC_addr_pool_exhaustion() runs on GT_CT {
2284 var Gtp1cUnitdata udc;
2285 var Gtp1uUnitdata udu;
2286 var PdpContext ctx;
2287 timer T_next := 0.005;
2288 var integer next_req_ctx := 0;
2289 var integer rx_resp_ctx := 0;
2290 var integer num_ctx;
2291 var boolean cont_req := true;
2292 var CreatePDPContextResponse cpr;
2293 var TEIClist teic_list := {};
2294 var integer teic;
2295
2296 f_init();
2297
2298 T_default.start(120.0);
2299
2300 T_next.start;
2301 alt {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002302 [Gx_PROC.checkstate("Connected")] as_DIA_Gx_CCR(INITIAL_REQUEST) { repeat; }
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002303 [Gy_PROC.checkstate("Connected")] as_DIA_Gy_CCR(omit, INITIAL_REQUEST) { repeat; }
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002304 [] pingpong();
2305 [] T_next.timeout {
2306 if (cont_req) {
2307 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 +02002308 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 +01002309 ctx.nsapi := '0001'B;
2310 ctx.teic := int2oct(next_req_ctx+1, 4); /* +1: skip TEIC=0 */
2311 ctx.teid := int2oct(next_req_ctx+1, 4); /* +1: skip TEID=0 */
2312 f_send_gtpc(ts_GTPC_CreatePDP(g_peer_c, g_c_seq_nr, ctx.imsi, g_restart_ctr,
2313 ctx.teid, ctx.teic, ctx.nsapi,
2314 ctx.eua, ctx.apn, g_sgsn_ip_c, g_sgsn_ip_u,
2315 ctx.msisdn, ctx.pco_req, ctx.ratType,
Pau Espin Pedrol535ca262022-05-16 14:07:17 +02002316 ctx.uli, ctx.charging_char, ctx.imeisv,
2317 ctx.ms_tz));
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002318 next_req_ctx := next_req_ctx + 1;
2319 }
2320 T_next.start;
2321 }
2322 repeat;
2323 }
2324 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, createPDPContextResponse, ?)) -> value udc {
2325 cpr := udc.gtpc.gtpc_pdu.createPDPContextResponse;
2326
2327 if (cpr.cause.causevalue == '80'O) {
2328 teic_list := teic_list & {cpr.teidControlPlane.teidControlPlane};
2329 } else {
2330 if (cont_req == true) {
2331 num_ctx := rx_resp_ctx;
2332 log("Successfully created ", num_ctx, " PDP contexts before exhausting the pool");
2333 setverdict(pass);
2334 }
2335 cont_req := false;
2336 }
2337 rx_resp_ctx := rx_resp_ctx + 1;
2338 if (not cont_req and next_req_ctx == rx_resp_ctx) {
2339 break;
2340 } else {
2341 repeat;
2342 }
2343 }
2344 [] GTPC.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPC"); }
2345 [] GTPU.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPU"); }
2346 }
2347
2348 /* Let's close them now: */
2349 next_req_ctx := 0;
2350 rx_resp_ctx := 0;
2351 T_next.start;
2352 alt {
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002353 [Gx_PROC.checkstate("Connected")] as_DIA_Gx_CCR(TERMINATION_REQUEST) { repeat; }
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002354 [Gy_PROC.checkstate("Connected")] as_DIA_Gy_CCR(omit, TERMINATION_REQUEST) { repeat; }
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002355 [] pingpong();
2356 [] T_next.timeout {
2357 f_send_gtpc(ts_GTPC_DeletePDP(g_peer_c, g_c_seq_nr, teic_list[next_req_ctx], '0001'B, '1'B));
2358 next_req_ctx := next_req_ctx + 1;
2359 if (next_req_ctx < num_ctx) {
2360 T_next.start;
2361 }
2362 repeat;
2363 }
2364 [] GTPC.receive(tr_GTPC_MsgType(g_peer_c, deletePDPContextResponse, ?)) -> value udc {
2365 teic := oct2int(udc.gtpc.teid);
2366 if (not match(teic, (1 .. num_ctx))) {
2367 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2368 "Rx Unexpected TEIC");
2369 }
2370 rx_resp_ctx := rx_resp_ctx + 1;
2371 if (rx_resp_ctx < num_ctx) {
2372 repeat;
2373 }
2374 setverdict(pass);
2375 }
2376 [] GTPC.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPC"); }
2377 [] GTPU.receive { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Rx Unexpected GTPU"); }
2378 }
2379 T_next.stop;
2380
2381 T_default.stop;
Pau Espin Pedrolc441ce02022-03-07 14:35:45 +01002382 f_shutdown_helper();
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002383 }
2384
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002385 /* Test charging over Gy interface. */
2386 testcase TC_gy_charging_cc_time() runs on GT_CT {
2387 var default d;
2388
2389 g_gy_validity_time := 3; /* Grant access for 3 seconds, needs to be re-validated afterwards */
2390 f_init();
Pau Espin Pedrold25095f2022-05-18 16:29:05 +02002391 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 +01002392 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
2393 f_pdp_ctx_act(ctx);
2394
2395 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
2396
2397 /* Send some UL traffic: */
2398 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
2399 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
2400 f_wait_icmp4_echo_reply(ctx);
2401
2402 T_default.start(10.0);
2403 d := activate(pingpong());
2404
2405 g_gy_validity_time := 2;
2406 /* First update reports octests/pkt on both UL/DL (see icmp ping-pong above) */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002407 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +02002408 f_validate_gy_cc_report(g_rx_gy, VALIDITY_TIME, (3..4), 28, 28);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002409
2410 /* Second update: 0 ul/dl pkt/octet should be reported, since nothing was sent */
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002411 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +02002412 f_validate_gy_cc_report(g_rx_gy, VALIDITY_TIME, (2..3), 0, 0);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002413
2414 /* Third update: make sure report contains again octets/pkts for both UL/DL: */
2415 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
2416 f_wait_icmp4_echo_reply(ctx);
2417 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
2418 f_wait_icmp4_echo_reply(ctx);
Pau Espin Pedrola2af5782022-05-18 16:34:29 +02002419 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +02002420 f_validate_gy_cc_report(g_rx_gy, VALIDITY_TIME, (2..3), 56, 56);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002421
2422 /* Let the CCA reach the GGSN */
2423 f_sleep(0.5);
2424 deactivate(d);
2425 T_default.stop;
2426
2427 /* Send some data and validate it is reported in the TERMINATION_REQUEST
2428 * (triggered by PFCP Session Deletion Response): */
2429 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr));
2430 f_wait_icmp4_echo_reply(ctx);
2431
2432 f_pdp_ctx_del(ctx, '1'B);
Pau Espin Pedrol8fa22842022-05-20 14:47:55 +02002433 f_validate_gy_cc_report(g_rx_gy, FINAL, (0..2), 28, 28);
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002434
2435
2436 f_shutdown_helper();
2437 }
2438
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02002439 /* Test Volume-Quota-Thresold AVP triggers request before Validity-Time */
2440 testcase TC_gy_charging_volume_quota_threshold() runs on GT_CT {
2441 var default d;
2442 timer Tout;
2443 g_gy_volume_threshold := 1000; /* Will make a trigger when we send bigger payload below */
2444 g_gy_validity_time := 8; /* Grant access for 8 seconds, needs to be re-validated afterwards */
2445 f_init();
2446 var float tout_sec := int2float(g_gy_validity_time) / 2.0;
2447 var PdpContext ctx := valueof(t_DefinePDP(f_rnd_imsi('26242'H), "1234", c_ApnInternet, valueof(t_EuaIPv4Dyn)));
2448 ctx.pco_req := valueof(ts_PCO_IPv4_DNS_CONT);
2449 f_pdp_ctx_act(ctx);
2450
2451 var OCT4 dns1_addr := f_PCO_extract_proto(ctx.pco_neg, '000d'O);
2452
2453 T_default.start(40.0);
2454 d := activate(pingpong());
2455
2456 /* Send some UL traffic: */
2457 var octetstring payload := f_rnd_octstring(1200);
2458 var OCT4 saddr := ctx.eua.endUserAddress.endUserAddressIPv4.ipv4_address;
2459 f_send_gtpu(ctx, f_gen_icmpv4_echo(saddr, dns1_addr, payload));
2460 f_wait_icmp4_echo_reply(ctx);
2461
2462 /* ICMP Req generates one report: */
2463 Tout.start(tout_sec);
2464 alt {
2465 [] as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
2466 [] Tout.timeout {
2467 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2468 "TImeout waiting for Gy UPDATE triggered by Volume-Quota-Threshold");
2469 }
2470 }
Pau Espin Pedrol5fa8f782022-10-03 13:57:54 +02002471 f_validate_gy_cc_report(g_rx_gy, THRESHOLD, (0..6), (1200..1400), 0);
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02002472
2473 /* ICMP Resp (echo back) generates one report: */
2474 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
Pau Espin Pedrol5fa8f782022-10-03 13:57:54 +02002475 f_validate_gy_cc_report(g_rx_gy, THRESHOLD, (0..1), 0, (1200..1400));
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02002476
2477 /* Second update: 0 ul/dl pkt/octet should be reported, since nothing was sent */
2478 as_DIA_Gy_CCR(ctx, UPDATE_REQUEST);
2479 f_validate_gy_cc_report(g_rx_gy, VALIDITY_TIME, (8..9), 0, 0);
2480
2481 /* Let the CCA reach the GGSN */
2482 f_sleep(0.5);
2483 deactivate(d);
2484 T_default.stop;
2485
2486 f_pdp_ctx_del(ctx, '1'B);
2487 f_validate_gy_cc_report(g_rx_gy, FINAL, (0..2), 0, 0);
2488
2489
2490 f_shutdown_helper();
2491 }
2492
Harald Welte94ade362017-08-04 00:36:55 +02002493 control {
Harald Welteed7a1772017-08-09 20:26:20 +02002494 execute(TC_pdp4_act_deact());
2495 execute(TC_pdp4_act_deact_ipcp());
Harald Weltef8298542019-04-10 10:15:28 +02002496 execute(TC_pdp4_act_deact_ipcp_pap_broken());
Harald Welteed7a1772017-08-09 20:26:20 +02002497 execute(TC_pdp4_act_deact_pcodns());
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01002498 execute(TC_pdp4_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01002499 execute(TC_pdp4_act_deact_gtpu_access_wrong_saddr());
2500 execute(TC_pdp4_act_deact_gtpu_access_ipv6_apn4());
Stefan Sperlingc479e4f2018-04-03 19:34:16 +02002501 execute(TC_pdp4_clients_interact_with_txseq());
2502 execute(TC_pdp4_clients_interact_without_txseq());
Philipp Maier33e52612018-05-30 17:22:02 +02002503 execute(TC_pdp4_act_deact_with_single_dns());
2504 execute(TC_pdp4_act_deact_with_separate_dns());
Pau Espin Pedrolcd326c52022-02-14 18:57:43 +01002505 execute(TC_pdp4_act_update_teic());
2506 execute(TC_pdp4_act_update_teid());
Harald Welteed7a1772017-08-09 20:26:20 +02002507
2508 execute(TC_pdp6_act_deact());
2509 execute(TC_pdp6_act_deact_pcodns());
2510 execute(TC_pdp6_act_deact_icmp6());
Pau Espin Pedrol3d9338f2018-01-29 20:42:54 +01002511 execute(TC_pdp6_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01002512 execute(TC_pdp6_act_deact_gtpu_access_wrong_ll_saddr());
2513 execute(TC_pdp6_act_deact_gtpu_access_wrong_global_saddr());
2514 execute(TC_pdp6_act_deact_gtpu_access_ipv4_apn6());
Pau Espin Pedrol6c7285d2018-01-30 17:20:22 +01002515 execute(TC_pdp6_clients_interact());
Harald Weltedca80052017-08-13 20:01:38 +02002516
Oliver Smithee6a0882019-03-08 11:05:46 +01002517 execute(TC_pdp46_act_deact());
2518 execute(TC_pdp46_act_deact_ipcp());
2519 execute(TC_pdp46_act_deact_icmp6());
2520 execute(TC_pdp46_act_deact_pcodns4());
2521 execute(TC_pdp46_act_deact_pcodns6());
2522 execute(TC_pdp46_act_deact_gtpu_access());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01002523 execute(TC_pdp46_act_deact_gtpu_access_wrong_saddr_ipv4());
Pau Espin Pedrolc6ac6952022-02-14 11:19:23 +01002524 execute(TC_pdp46_act_deact_gtpu_access_wrong_ll_saddr_ipv6());
Pau Espin Pedrolc8c03412022-02-11 13:39:26 +01002525 execute(TC_pdp46_act_deact_gtpu_access_wrong_global_saddr_ipv6());
Oliver Smithee6a0882019-03-08 11:05:46 +01002526 execute(TC_pdp46_clients_interact());
Pau Espin Pedrol22d597f2019-08-21 16:16:58 +02002527 execute(TC_pdp46_act_deact_apn4());
Oliver Smithee6a0882019-03-08 11:05:46 +01002528
Harald Weltedca80052017-08-13 20:01:38 +02002529 execute(TC_echo_req_resp());
Pau Espin Pedrol480e67f2022-02-09 16:37:47 +01002530 execute(TC_echo_req_resp_gtpu());
Pau Espin Pedrolfa1ca022019-08-23 18:58:53 +02002531 execute(TC_pdp_act2_recovery());
Pau Espin Pedrol9a5f42f2019-05-27 20:04:35 +02002532 execute(TC_act_deact_retrans_duplicate());
Pau Espin Pedrol6916ec42019-08-23 16:15:07 +02002533
Pau Espin Pedrol6f319f92020-01-03 20:18:57 +01002534 execute(TC_pdp_act_restart_ctr_echo());
Pau Espin Pedrol68c2af52022-02-25 11:56:17 +01002535
2536 execute(TC_lots_of_concurrent_pdp_ctx());
Pau Espin Pedrolbfea8352022-02-28 12:11:26 +01002537 /* Keep at the end, crashes older osmo-ggsn versions (OS#5469): */
2538 execute(TC_addr_pool_exhaustion());
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002539
2540 /* open5gs specific tests: */
2541 if (m_ggsn_impl == GGSN_IMPL_OPEN5GS) {
2542 execute(TC_gy_charging_cc_time());
Pau Espin Pedrol52562c92022-05-23 15:45:46 +02002543 execute(TC_gy_charging_volume_quota_threshold());
Pau Espin Pedrol77fdd0b2022-03-08 14:03:33 +01002544 }
Harald Welte94ade362017-08-04 00:36:55 +02002545 }
Harald Welte379d45a2017-08-03 09:55:15 +02002546}