blob: e136969de9f9e29190a054267a8d124e30042462 [file] [log] [blame]
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +02001/* Code for a software PCU to test a SGSN.. */
2
3/* (C) 2013 by Holger Hans Peter Freyther
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
22extern "C" {
23#include <osmocom/core/talloc.h>
24#include <pcu_vty.h>
25}
26
Pau Espin Pedrola6a972e2023-04-20 19:23:50 +020027#include <alloc_algo.h>
28
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020029#include "gprs_tests.h"
30
31
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020032#include <gprs_bssgp_pcu.h>
33#include <gprs_rlcmac.h>
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020034#include <bts.h>
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020035
36#include <stdlib.h>
37#include <sys/types.h>
38#include <sys/socket.h>
39
Jacob Erlbeck0494c752015-05-04 09:34:00 +020040static size_t current_test;
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020041
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020042/* Extern data to please the underlying code */
43void *tall_pcu_ctx;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020044int16_t spoof_mnc = 0, spoof_mcc = 0;
Neels Hofmeyrbdc55fa2018-02-21 00:39:07 +010045bool spoof_mnc_3_digits = false;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020046
Holger Hans Peter Freyther741481d2013-07-28 21:14:51 +020047extern void test_replay_gprs_attach(struct gprs_bssgp_pcu *pcu);
Holger Hans Peter Freytherbc1e52c2013-08-22 08:44:38 +020048extern void test_replay_gprs_data(struct gprs_bssgp_pcu *, struct msgb *, struct tlv_parsed *);
Holger Hans Peter Freyther741481d2013-07-28 21:14:51 +020049
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020050extern void test_pdp_activation_start(struct gprs_bssgp_pcu *pcu);
51extern void test_pdp_activation_data(struct gprs_bssgp_pcu *, struct msgb *, struct tlv_parsed*);
52
53struct gprs_test all_tests[] = {
54 gprs_test("gprs_attach_with_tmsi",
55 "A simple test that verifies that N(U) is "
56 "increasing across various messages. This makes "
57 "sure that no new LLE/LLME is created on the fly.",
58 test_replay_gprs_attach,
59 test_replay_gprs_data),
60 gprs_test("gprs_full_attach_pdp_activation",
61 "A simple test to do a GPRS attach and open a PDP "
62 "context. Then goes to sleep and waits for you to ping "
63 "the connection and hopefully re-produce a crash.",
64 test_pdp_activation_start,
65 test_pdp_activation_data),
66};
67
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +010068static void init_main_bts(struct gprs_rlcmac_bts *bts)
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020069{
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020070 bts->initial_cs_dl = bts->initial_cs_ul = 1;
Pau Espin Pedrold87722d2020-10-30 17:14:26 +010071 bts->cs_mask = 1 << 0; /* CS-1 always enabled by default */
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020072 bts->n3101 = 10;
73 bts->n3103 = 4;
74 bts->n3105 = 8;
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010075}
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020076
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010077static void init_pcu(struct gprs_pcu *pcu)
78{
79 if (!pcu->alloc_algorithm)
80 pcu->alloc_algorithm = alloc_algorithm_b;
Pau Espin Pedrole8912222021-01-14 14:03:17 +010081 pcu->vty.fc_interval = 100;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020082}
83
Holger Hans Peter Freyther741481d2013-07-28 21:14:51 +020084static void bvci_unblocked(struct gprs_bssgp_pcu *pcu)
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020085{
86 printf("BVCI unblocked. We can begin with test cases.\n");
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020087 all_tests[current_test].start(pcu);
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020088}
89
Holger Hans Peter Freytherbc1e52c2013-08-22 08:44:38 +020090static void bssgp_data(struct gprs_bssgp_pcu *pcu, struct msgb *msg, struct tlv_parsed *tp)
91{
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020092 all_tests[current_test].data(pcu, msg, tp);
Holger Hans Peter Freytherbc1e52c2013-08-22 08:44:38 +020093}
94
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020095void create_and_connect_bssgp(struct gprs_rlcmac_bts *bts,
96 uint32_t sgsn_ip, uint16_t sgsn_port)
97{
98 struct gprs_bssgp_pcu *pcu;
Alexander Couzens290d9032020-09-16 21:52:02 +020099 struct osmo_sockaddr local, remote;
Alexander Couzens5bece2a2020-10-12 02:27:22 +0200100 uint16_t nsvci = 20;
101 uint16_t nsei = 20;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200102
Alexander Couzens290d9032020-09-16 21:52:02 +0200103 local.u.sin.sin_family = AF_INET;
104 local.u.sin.sin_addr.s_addr = 0;
105 local.u.sin.sin_port = 0;
106
107 remote.u.sin.sin_family = AF_INET;
108 remote.u.sin.sin_addr.s_addr = htonl(sgsn_ip);
109 remote.u.sin.sin_port = htons(sgsn_port);
110
111 pcu = gprs_bssgp_init(bts, 20, 20, 901, 99, false, 1, 0, 0);
Alexander Couzens94a367f2021-02-16 16:57:15 +0100112 gprs_ns_update_config(bts, nsei, &local, &remote, &nsvci, 1);
Alexander Couzens290d9032020-09-16 21:52:02 +0200113
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200114 pcu->on_unblock_ack = bvci_unblocked;
Holger Hans Peter Freytherbc1e52c2013-08-22 08:44:38 +0200115 pcu->on_dl_unit_data = bssgp_data;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200116}
117
118int main(int argc, char **argv)
119{
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100120 struct gprs_pcu *pcu = gprs_pcu_alloc(tall_pcu_ctx);
121 the_pcu = pcu; /* globally avaialable object */
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100122 struct gprs_rlcmac_bts *bts = bts_alloc(pcu, 0);
Alexander Couzens290d9032020-09-16 21:52:02 +0200123
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200124 tall_pcu_ctx = talloc_named_const(NULL, 1, "moiji-mobile Emu-PCU context");
125 if (!tall_pcu_ctx)
126 abort();
127
Neels Hofmeyr78ce5912017-02-08 17:07:31 +0100128 msgb_talloc_ctx_init(tall_pcu_ctx, 0);
Neels Hofmeyr42f2d612018-04-01 16:54:40 +0200129 osmo_init_logging2(tall_pcu_ctx, &gprs_log_info);
Alexander Couzens5c3783b2019-05-25 05:41:18 +0200130
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100131 pcu->nsi = gprs_ns2_instantiate(tall_pcu_ctx, &gprs_ns_prim_cb, NULL);
132 if (!pcu->nsi) {
Alexander Couzens5c3783b2019-05-25 05:41:18 +0200133 LOGP(DBSSGP, LOGL_ERROR, "Failed to create NS instance\n");
134 abort();
135 }
136
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200137 vty_init(&pcu_vty_info);
Pau Espin Pedrolcd2ac562019-08-05 14:30:44 +0200138 pcu_vty_init();
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200139
Jacob Erlbeck0494c752015-05-04 09:34:00 +0200140 current_test = 0;
141
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100142 init_pcu(pcu);
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100143 init_main_bts(bts);
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100144 bssgp_set_bssgp_callback(gprs_gp_send_cb, pcu->nsi);
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100145 create_and_connect_bssgp(bts, INADDR_LOOPBACK, 23000);
Pau Espin Pedrolb1bbcae2020-10-30 17:10:32 +0100146
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200147 for (;;)
148 osmo_select_main(0);
149
150 return EXIT_SUCCESS;
151}
152
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +0200153
154/*
155 * Test handling..
156 */
157void gprs_test_success(struct gprs_bssgp_pcu *pcu)
158{
159 current_test += 1;
160 if (current_test >= ARRAY_SIZE(all_tests)) {
161 printf("All tests executed.\n");
162 exit(EXIT_SUCCESS);
163 }
164
165 all_tests[current_test].start(pcu);
166}
167
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200168/*
169 * stubs that should not be reached
170 */
171extern "C" {
172void l1if_pdch_req() { abort(); }
173void l1if_connect_pdch() { abort(); }
Philipp Maier72ed3332023-02-27 15:32:00 +0100174void l1if_disconnect_pdch() { abort(); }
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200175void l1if_close_pdch() { abort(); }
176void l1if_open_pdch() { abort(); }
177}