blob: d3a047e2379603a708e2b1a8a7a73cc76cb58818 [file] [log] [blame]
Oliver Smithcfb63212019-09-05 17:13:33 +02001/* Copyright (C) 2019 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License
5 * as published by the Free Software Foundation; either version 2
6 * of the License, or (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 */
17
18#include <cstdlib>
19#include <cstring>
20#include <assert.h>
21#include "gprs_rlcmac.h"
22#include "bts.h"
Pau Espin Pedrol2182e622021-01-14 16:48:38 +010023#include "tbf_dl.h"
Oliver Smithcfb63212019-09-05 17:13:33 +020024
25extern "C" {
26#include <osmocom/vty/telnet_interface.h>
27#include <osmocom/vty/logging.h>
28#include <osmocom/core/utils.h>
29#include <osmocom/core/msgb.h>
30#include <osmocom/core/application.h>
31}
32
33using namespace std;
34gprs_rlcmac_dl_tbf *tbf1, *tbf2;
35GprsMs *ms1, *ms2;
36struct msgb *sched_app_info(struct gprs_rlcmac_tbf *tbf);
37
38/* globals used by the code */
39void *tall_pcu_ctx;
40int16_t spoof_mnc = 0, spoof_mcc = 0;
41bool spoof_mnc_3_digits = false;
42
43void test_enc_zero_len() {
44 struct gsm_pcu_if_app_info_req req = {0, 0, {0}};
45
46 fprintf(stderr, "--- %s ---\n", __func__);
47 assert(gprs_rlcmac_app_info_msg(&req) == NULL);
48 fprintf(stderr, "\n");
49}
50
Oliver Smith2beb1b82019-09-18 13:47:25 +020051void test_enc(const struct gsm_pcu_if_app_info_req *req)
52{
Oliver Smithcfb63212019-09-05 17:13:33 +020053 const char *exp = "03 fc 03 fc 00 00 00 00 00 00 00 00 00 00 00 00 "; /* shifted by two bits to the right */
54 struct msgb *msg;
55 char *msg_dump;
56
57 fprintf(stderr, "--- %s ---\n", __func__);
Oliver Smith2beb1b82019-09-18 13:47:25 +020058 msg = gprs_rlcmac_app_info_msg(req);
Oliver Smithcfb63212019-09-05 17:13:33 +020059 msg_dump = msgb_hexdump_c(tall_pcu_ctx, msg);
60
61 fprintf(stderr, "exp: %s\n", exp);
62 fprintf(stderr, "msg: %s\n", msg_dump);
63 assert(strcmp(msg_dump, exp) == 0);
64
65 msgb_free(msg);
66 talloc_free(msg_dump);
67 fprintf(stderr, "\n");
68}
69
70void test_pcu_rx_no_subscr_with_active_tbf()
71{
72 struct gsm_pcu_if pcu_prim = {PCU_IF_MSG_APP_INFO_REQ, };
73
74 fprintf(stderr, "--- %s ---\n", __func__);
Pau Espin Pedrol1989a192021-06-23 19:46:07 +020075 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
Oliver Smithcfb63212019-09-05 17:13:33 +020076 fprintf(stderr, "\n");
77}
78
79void prepare_bts_with_two_dl_tbf_subscr()
80{
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +010081 struct gprs_rlcmac_bts *bts = gprs_pcu_get_bts_by_nr(the_pcu, 0);
Oliver Smithcfb63212019-09-05 17:13:33 +020082 struct gprs_rlcmac_trx *trx;
83
84 fprintf(stderr, "--- %s ---\n", __func__);
85
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010086 the_pcu->alloc_algorithm = alloc_algorithm_b;
Oliver Smithcfb63212019-09-05 17:13:33 +020087
Pau Espin Pedrol2182e622021-01-14 16:48:38 +010088 trx = bts->trx;
Oliver Smithcfb63212019-09-05 17:13:33 +020089 trx->pdch[4].enable();
90 trx->pdch[5].enable();
91 trx->pdch[6].enable();
92 trx->pdch[7].enable();
93
Pau Espin Pedrol2182e622021-01-14 16:48:38 +010094 ms1 = bts_alloc_ms(bts, 10, 11);
95 tbf1 = tbf_alloc_dl_tbf(bts, ms1, 0, false);
96 ms2 = bts_alloc_ms(bts, 12, 13);
97 tbf2 = tbf_alloc_dl_tbf(bts, ms2, 0, false);
Oliver Smithcfb63212019-09-05 17:13:33 +020098
99 fprintf(stderr, "\n");
100}
101
Oliver Smith2beb1b82019-09-18 13:47:25 +0200102void test_sched_app_info_ok(const struct gsm_pcu_if_app_info_req *req)
Oliver Smithcfb63212019-09-05 17:13:33 +0200103{
104 struct gsm_pcu_if pcu_prim = {PCU_IF_MSG_APP_INFO_REQ, };
105 struct msgb *msg;
106
107 fprintf(stderr, "--- %s ---\n", __func__);
Oliver Smith2beb1b82019-09-18 13:47:25 +0200108 pcu_prim.u.app_info_req = *req;
Pau Espin Pedrol1989a192021-06-23 19:46:07 +0200109 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
Oliver Smithcfb63212019-09-05 17:13:33 +0200110
111 msg = sched_app_info(tbf1);
112 assert(msg);
113 msgb_free(msg);
114
115 msg = sched_app_info(tbf2);
116 assert(msg);
117 msgb_free(msg);
118
119 fprintf(stderr, "\n");
120}
121
Oliver Smith2beb1b82019-09-18 13:47:25 +0200122void test_sched_app_info_missing_app_info_in_bts(const struct gsm_pcu_if_app_info_req *req)
Oliver Smithcfb63212019-09-05 17:13:33 +0200123{
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100124 struct gprs_rlcmac_bts *bts = gprs_pcu_get_bts_by_nr(the_pcu, 0);
Oliver Smithcfb63212019-09-05 17:13:33 +0200125 struct gsm_pcu_if pcu_prim = {PCU_IF_MSG_APP_INFO_REQ, };
126
127 fprintf(stderr, "--- %s ---\n", __func__);
Oliver Smith2beb1b82019-09-18 13:47:25 +0200128 pcu_prim.u.app_info_req = *req;
Pau Espin Pedrol1989a192021-06-23 19:46:07 +0200129 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
Oliver Smithcfb63212019-09-05 17:13:33 +0200130
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100131 msgb_free(bts->app_info);
132 bts->app_info = NULL;
Oliver Smithcfb63212019-09-05 17:13:33 +0200133
134 assert(sched_app_info(tbf1) == NULL);
135
136 fprintf(stderr, "\n");
137}
138
Oliver Smith2beb1b82019-09-18 13:47:25 +0200139void test_pcu_rx_overwrite_app_info(const struct gsm_pcu_if_app_info_req *req)
Oliver Smithcfb63212019-09-05 17:13:33 +0200140{
141 struct gsm_pcu_if pcu_prim = {PCU_IF_MSG_APP_INFO_REQ, };
142
143 fprintf(stderr, "--- %s ---\n", __func__);
Oliver Smith2beb1b82019-09-18 13:47:25 +0200144 pcu_prim.u.app_info_req = *req;
Pau Espin Pedrol1989a192021-06-23 19:46:07 +0200145 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
146 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
Oliver Smithcfb63212019-09-05 17:13:33 +0200147 fprintf(stderr, "\n");
148}
149
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100150extern "C" void cleanup()
Oliver Smithcfb63212019-09-05 17:13:33 +0200151{
152 fprintf(stderr, "--- %s ---\n", __func__);
153
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100154 struct gprs_rlcmac_bts *bts;
155
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100156 tbf_free(tbf1);
157 tbf_free(tbf2);
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100158
159 bts = gprs_pcu_get_bts_by_nr(the_pcu, 0);
160 talloc_free(bts);
161
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100162 /* FIXME: talloc report disabled, because bts_alloc_ms(bts, ) in prepare_bts_with_two_dl_tbf_subscr() causes leak */
Oliver Smithcfb63212019-09-05 17:13:33 +0200163 /* talloc_report_full(tall_pcu_ctx, stderr); */
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100164 talloc_free(the_pcu);
Oliver Smithcfb63212019-09-05 17:13:33 +0200165 talloc_free(tall_pcu_ctx);
166}
167
168int main(int argc, char *argv[])
169{
Oliver Smith2beb1b82019-09-18 13:47:25 +0200170 struct gsm_pcu_if_app_info_req req = {0, 15, {0}};
171 const uint8_t req_data[] = {0xff, 0x00, 0xff};
172 memcpy(req.data, req_data, 3);
173
Oliver Smithcfb63212019-09-05 17:13:33 +0200174 tall_pcu_ctx = talloc_named_const(NULL, 1, "AppInfoTest");
175 osmo_init_logging2(tall_pcu_ctx, &gprs_log_info);
176 log_set_use_color(osmo_stderr_target, 0);
Pau Espin Pedrol00f52cc2021-02-19 14:01:52 +0100177 log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
Pau Espin Pedrolb18d2a52021-02-19 14:00:48 +0100178 log_set_print_category(osmo_stderr_target, 0);
179 log_set_print_category_hex(osmo_stderr_target, 0);
Oliver Smithcfb63212019-09-05 17:13:33 +0200180 log_parse_category_mask(osmo_stderr_target, "DL1IF,1:DRLCMAC,3:DRLCMACSCHED,1");
181
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100182 the_pcu = gprs_pcu_alloc(tall_pcu_ctx);
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100183 bts_alloc(the_pcu, 0);
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100184
Oliver Smithcfb63212019-09-05 17:13:33 +0200185 test_enc_zero_len();
Oliver Smith2beb1b82019-09-18 13:47:25 +0200186 test_enc(&req);
Oliver Smithcfb63212019-09-05 17:13:33 +0200187 test_pcu_rx_no_subscr_with_active_tbf();
188
189 prepare_bts_with_two_dl_tbf_subscr();
Oliver Smith2beb1b82019-09-18 13:47:25 +0200190 test_sched_app_info_ok(&req);
191 test_sched_app_info_missing_app_info_in_bts(&req);
192 test_pcu_rx_overwrite_app_info(&req);
Oliver Smithcfb63212019-09-05 17:13:33 +0200193
194 cleanup();
195}
196
197/*
198 * stubs that should not be reached
199 */
200extern "C" {
201void l1if_pdch_req() { abort(); }
202void l1if_connect_pdch() { abort(); }
203void l1if_close_pdch() { abort(); }
204void l1if_open_pdch() { abort(); }
205}