blob: e0b2853381c467fabd95dc2983b121f477220d03 [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__);
75 pcu_rx(PCU_IF_MSG_APP_INFO_REQ, &pcu_prim);
76 fprintf(stderr, "\n");
77}
78
79void prepare_bts_with_two_dl_tbf_subscr()
80{
Pau Espin Pedrol2182e622021-01-14 16:48:38 +010081 struct gprs_rlcmac_bts *bts = the_pcu->bts;
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;
Oliver Smithcfb63212019-09-05 17:13:33 +0200109 pcu_rx(PCU_IF_MSG_APP_INFO_REQ, &pcu_prim);
110
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 Pedrol2182e622021-01-14 16:48:38 +0100124 struct gprs_rlcmac_bts *bts = the_pcu->bts;
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;
Oliver Smithcfb63212019-09-05 17:13:33 +0200129 pcu_rx(PCU_IF_MSG_APP_INFO_REQ, &pcu_prim);
130
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;
Oliver Smithcfb63212019-09-05 17:13:33 +0200145 pcu_rx(PCU_IF_MSG_APP_INFO_REQ, &pcu_prim);
146 pcu_rx(PCU_IF_MSG_APP_INFO_REQ, &pcu_prim);
147 fprintf(stderr, "\n");
148}
149
150void cleanup()
151{
152 fprintf(stderr, "--- %s ---\n", __func__);
153
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100154 tbf_free(tbf1);
155 tbf_free(tbf2);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100156 TALLOC_FREE(the_pcu->bts);
157 /* 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 +0200158 /* talloc_report_full(tall_pcu_ctx, stderr); */
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100159 talloc_free(the_pcu);
Oliver Smithcfb63212019-09-05 17:13:33 +0200160 talloc_free(tall_pcu_ctx);
161}
162
163int main(int argc, char *argv[])
164{
Oliver Smith2beb1b82019-09-18 13:47:25 +0200165 struct gsm_pcu_if_app_info_req req = {0, 15, {0}};
166 const uint8_t req_data[] = {0xff, 0x00, 0xff};
167 memcpy(req.data, req_data, 3);
168
Oliver Smithcfb63212019-09-05 17:13:33 +0200169 tall_pcu_ctx = talloc_named_const(NULL, 1, "AppInfoTest");
170 osmo_init_logging2(tall_pcu_ctx, &gprs_log_info);
171 log_set_use_color(osmo_stderr_target, 0);
172 log_set_print_filename(osmo_stderr_target, 0);
173 log_parse_category_mask(osmo_stderr_target, "DL1IF,1:DRLCMAC,3:DRLCMACSCHED,1");
174
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100175 the_pcu = gprs_pcu_alloc(tall_pcu_ctx);
176 the_pcu->bts = bts_alloc(the_pcu);
177
Oliver Smithcfb63212019-09-05 17:13:33 +0200178 test_enc_zero_len();
Oliver Smith2beb1b82019-09-18 13:47:25 +0200179 test_enc(&req);
Oliver Smithcfb63212019-09-05 17:13:33 +0200180 test_pcu_rx_no_subscr_with_active_tbf();
181
182 prepare_bts_with_two_dl_tbf_subscr();
Oliver Smith2beb1b82019-09-18 13:47:25 +0200183 test_sched_app_info_ok(&req);
184 test_sched_app_info_missing_app_info_in_bts(&req);
185 test_pcu_rx_overwrite_app_info(&req);
Oliver Smithcfb63212019-09-05 17:13:33 +0200186
187 cleanup();
188}
189
190/*
191 * stubs that should not be reached
192 */
193extern "C" {
194void l1if_pdch_req() { abort(); }
195void l1if_connect_pdch() { abort(); }
196void l1if_close_pdch() { abort(); }
197void l1if_open_pdch() { abort(); }
198}