blob: 98da13e4adc23795af6effccecf164d940c8a06f [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
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020027#include "gprs_tests.h"
28
29
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020030#include <gprs_bssgp_pcu.h>
31#include <gprs_rlcmac.h>
Holger Hans Peter Freyther67ed34e2013-10-17 17:01:54 +020032#include <bts.h>
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020033
34#include <stdlib.h>
35#include <sys/types.h>
36#include <sys/socket.h>
37
Jacob Erlbeck0494c752015-05-04 09:34:00 +020038static size_t current_test;
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020039
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020040/* Extern data to please the underlying code */
41void *tall_pcu_ctx;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020042int16_t spoof_mnc = 0, spoof_mcc = 0;
Neels Hofmeyrbdc55fa2018-02-21 00:39:07 +010043bool spoof_mnc_3_digits = false;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020044
Holger Hans Peter Freyther741481d2013-07-28 21:14:51 +020045extern void test_replay_gprs_attach(struct gprs_bssgp_pcu *pcu);
Holger Hans Peter Freytherbc1e52c2013-08-22 08:44:38 +020046extern void test_replay_gprs_data(struct gprs_bssgp_pcu *, struct msgb *, struct tlv_parsed *);
Holger Hans Peter Freyther741481d2013-07-28 21:14:51 +020047
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020048extern void test_pdp_activation_start(struct gprs_bssgp_pcu *pcu);
49extern void test_pdp_activation_data(struct gprs_bssgp_pcu *, struct msgb *, struct tlv_parsed*);
50
51struct gprs_test all_tests[] = {
52 gprs_test("gprs_attach_with_tmsi",
53 "A simple test that verifies that N(U) is "
54 "increasing across various messages. This makes "
55 "sure that no new LLE/LLME is created on the fly.",
56 test_replay_gprs_attach,
57 test_replay_gprs_data),
58 gprs_test("gprs_full_attach_pdp_activation",
59 "A simple test to do a GPRS attach and open a PDP "
60 "context. Then goes to sleep and waits for you to ping "
61 "the connection and hopefully re-produce a crash.",
62 test_pdp_activation_start,
63 test_pdp_activation_data),
64};
65
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +020066static void init_main_bts()
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020067{
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +020068 struct gprs_rlcmac_bts *bts = bts_main_data();
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020069 bts->fc_interval = 100;
70 bts->initial_cs_dl = bts->initial_cs_ul = 1;
71 bts->cs1 = 1;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020072 bts->n3101 = 10;
73 bts->n3103 = 4;
74 bts->n3105 = 8;
75 bts->alpha = 0; /* a = 0.0 */
76
77 if (!bts->alloc_algorithm)
78 bts->alloc_algorithm = alloc_algorithm_b;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020079}
80
Holger Hans Peter Freyther741481d2013-07-28 21:14:51 +020081static void bvci_unblocked(struct gprs_bssgp_pcu *pcu)
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020082{
83 printf("BVCI unblocked. We can begin with test cases.\n");
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020084 all_tests[current_test].start(pcu);
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020085}
86
Holger Hans Peter Freytherbc1e52c2013-08-22 08:44:38 +020087static void bssgp_data(struct gprs_bssgp_pcu *pcu, struct msgb *msg, struct tlv_parsed *tp)
88{
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +020089 all_tests[current_test].data(pcu, msg, tp);
Holger Hans Peter Freytherbc1e52c2013-08-22 08:44:38 +020090}
91
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020092void create_and_connect_bssgp(struct gprs_rlcmac_bts *bts,
93 uint32_t sgsn_ip, uint16_t sgsn_port)
94{
95 struct gprs_bssgp_pcu *pcu;
Alexander Couzens290d9032020-09-16 21:52:02 +020096 struct osmo_sockaddr local, remote;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +020097
Alexander Couzens290d9032020-09-16 21:52:02 +020098 local.u.sin.sin_family = AF_INET;
99 local.u.sin.sin_addr.s_addr = 0;
100 local.u.sin.sin_port = 0;
101
102 remote.u.sin.sin_family = AF_INET;
103 remote.u.sin.sin_addr.s_addr = htonl(sgsn_ip);
104 remote.u.sin.sin_port = htons(sgsn_port);
105
106 pcu = gprs_bssgp_init(bts, 20, 20, 901, 99, false, 1, 0, 0);
107 gprs_nsvc_create_and_connect(bts, &local, &remote,
108 20, 20);
109
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200110 pcu->on_unblock_ack = bvci_unblocked;
Holger Hans Peter Freytherbc1e52c2013-08-22 08:44:38 +0200111 pcu->on_dl_unit_data = bssgp_data;
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200112}
113
114int main(int argc, char **argv)
115{
Alexander Couzens290d9032020-09-16 21:52:02 +0200116 struct gprs_rlcmac_bts *bts = bts_main_data();
117
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200118 tall_pcu_ctx = talloc_named_const(NULL, 1, "moiji-mobile Emu-PCU context");
119 if (!tall_pcu_ctx)
120 abort();
121
Neels Hofmeyr78ce5912017-02-08 17:07:31 +0100122 msgb_talloc_ctx_init(tall_pcu_ctx, 0);
Neels Hofmeyr42f2d612018-04-01 16:54:40 +0200123 osmo_init_logging2(tall_pcu_ctx, &gprs_log_info);
Alexander Couzens5c3783b2019-05-25 05:41:18 +0200124
Alexander Couzens290d9032020-09-16 21:52:02 +0200125 bts->nsi = gprs_ns2_instantiate(tall_pcu_ctx, &gprs_ns_prim_cb, NULL);
126 if (!bts->nsi) {
Alexander Couzens5c3783b2019-05-25 05:41:18 +0200127 LOGP(DBSSGP, LOGL_ERROR, "Failed to create NS instance\n");
128 abort();
129 }
130
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200131 vty_init(&pcu_vty_info);
Pau Espin Pedrolcd2ac562019-08-05 14:30:44 +0200132 pcu_vty_init();
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200133
Jacob Erlbeck0494c752015-05-04 09:34:00 +0200134 current_test = 0;
135
Holger Hans Peter Freytherb6acfda2013-10-17 19:41:11 +0200136 init_main_bts();
Alexander Couzens290d9032020-09-16 21:52:02 +0200137 bssgp_set_bssgp_callback(gprs_gp_send_cb, bts->nsi);
138 create_and_connect_bssgp(bts, INADDR_LOOPBACK, 23000);
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200139
140 for (;;)
141 osmo_select_main(0);
142
143 return EXIT_SUCCESS;
144}
145
Holger Hans Peter Freyther9d938382013-07-31 21:59:29 +0200146
147/*
148 * Test handling..
149 */
150void gprs_test_success(struct gprs_bssgp_pcu *pcu)
151{
152 current_test += 1;
153 if (current_test >= ARRAY_SIZE(all_tests)) {
154 printf("All tests executed.\n");
155 exit(EXIT_SUCCESS);
156 }
157
158 all_tests[current_test].start(pcu);
159}
160
Holger Hans Peter Freyther4ea94072013-07-28 18:34:49 +0200161/*
162 * stubs that should not be reached
163 */
164extern "C" {
165void l1if_pdch_req() { abort(); }
166void l1if_connect_pdch() { abort(); }
167void l1if_close_pdch() { abort(); }
168void l1if_open_pdch() { abort(); }
169}