blob: 668b0810ba36267c242fa4ddd24d65b5010468e9 [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.
Oliver Smithcfb63212019-09-05 17:13:33 +020012 */
13
14#include <cstdlib>
15#include <cstring>
16#include <assert.h>
17#include "gprs_rlcmac.h"
18#include "bts.h"
Pau Espin Pedrol2182e622021-01-14 16:48:38 +010019#include "tbf_dl.h"
Oliver Smithcfb63212019-09-05 17:13:33 +020020
21extern "C" {
22#include <osmocom/vty/telnet_interface.h>
23#include <osmocom/vty/logging.h>
24#include <osmocom/core/utils.h>
25#include <osmocom/core/msgb.h>
26#include <osmocom/core/application.h>
Pau Espin Pedrolff7c5812022-12-14 18:49:06 +010027
28#include "alloc_algo.h"
Oliver Smithcfb63212019-09-05 17:13:33 +020029}
30
31using namespace std;
32gprs_rlcmac_dl_tbf *tbf1, *tbf2;
33GprsMs *ms1, *ms2;
34struct msgb *sched_app_info(struct gprs_rlcmac_tbf *tbf);
35
36/* globals used by the code */
37void *tall_pcu_ctx;
38int16_t spoof_mnc = 0, spoof_mcc = 0;
39bool spoof_mnc_3_digits = false;
40
41void test_enc_zero_len() {
42 struct gsm_pcu_if_app_info_req req = {0, 0, {0}};
43
44 fprintf(stderr, "--- %s ---\n", __func__);
45 assert(gprs_rlcmac_app_info_msg(&req) == NULL);
46 fprintf(stderr, "\n");
47}
48
Oliver Smith2beb1b82019-09-18 13:47:25 +020049void test_enc(const struct gsm_pcu_if_app_info_req *req)
50{
Oliver Smithcfb63212019-09-05 17:13:33 +020051 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 */
52 struct msgb *msg;
53 char *msg_dump;
54
55 fprintf(stderr, "--- %s ---\n", __func__);
Oliver Smith2beb1b82019-09-18 13:47:25 +020056 msg = gprs_rlcmac_app_info_msg(req);
Oliver Smithcfb63212019-09-05 17:13:33 +020057 msg_dump = msgb_hexdump_c(tall_pcu_ctx, msg);
58
59 fprintf(stderr, "exp: %s\n", exp);
60 fprintf(stderr, "msg: %s\n", msg_dump);
61 assert(strcmp(msg_dump, exp) == 0);
62
63 msgb_free(msg);
64 talloc_free(msg_dump);
65 fprintf(stderr, "\n");
66}
67
68void test_pcu_rx_no_subscr_with_active_tbf()
69{
70 struct gsm_pcu_if pcu_prim = {PCU_IF_MSG_APP_INFO_REQ, };
71
72 fprintf(stderr, "--- %s ---\n", __func__);
Pau Espin Pedrol1989a192021-06-23 19:46:07 +020073 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
Oliver Smithcfb63212019-09-05 17:13:33 +020074 fprintf(stderr, "\n");
75}
76
77void prepare_bts_with_two_dl_tbf_subscr()
78{
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +010079 struct gprs_rlcmac_bts *bts = gprs_pcu_get_bts_by_nr(the_pcu, 0);
Oliver Smithcfb63212019-09-05 17:13:33 +020080 struct gprs_rlcmac_trx *trx;
81
82 fprintf(stderr, "--- %s ---\n", __func__);
83
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +010084 the_pcu->alloc_algorithm = alloc_algorithm_b;
Oliver Smithcfb63212019-09-05 17:13:33 +020085
Pau Espin Pedrol2182e622021-01-14 16:48:38 +010086 trx = bts->trx;
Oliver Smithcfb63212019-09-05 17:13:33 +020087 trx->pdch[4].enable();
88 trx->pdch[5].enable();
89 trx->pdch[6].enable();
90 trx->pdch[7].enable();
91
Pau Espin Pedrol2182e622021-01-14 16:48:38 +010092 ms1 = bts_alloc_ms(bts, 10, 11);
Pau Espin Pedrol87573842022-10-26 20:23:45 +020093 tbf1 = dl_tbf_alloc(bts, ms1, 0, false);
Pau Espin Pedrol2182e622021-01-14 16:48:38 +010094 ms2 = bts_alloc_ms(bts, 12, 13);
Pau Espin Pedrol87573842022-10-26 20:23:45 +020095 tbf2 = dl_tbf_alloc(bts, ms2, 0, false);
Oliver Smithcfb63212019-09-05 17:13:33 +020096
97 fprintf(stderr, "\n");
98}
99
Oliver Smith2beb1b82019-09-18 13:47:25 +0200100void test_sched_app_info_ok(const struct gsm_pcu_if_app_info_req *req)
Oliver Smithcfb63212019-09-05 17:13:33 +0200101{
102 struct gsm_pcu_if pcu_prim = {PCU_IF_MSG_APP_INFO_REQ, };
103 struct msgb *msg;
104
105 fprintf(stderr, "--- %s ---\n", __func__);
Oliver Smith2beb1b82019-09-18 13:47:25 +0200106 pcu_prim.u.app_info_req = *req;
Pau Espin Pedrol1989a192021-06-23 19:46:07 +0200107 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
Oliver Smithcfb63212019-09-05 17:13:33 +0200108
109 msg = sched_app_info(tbf1);
110 assert(msg);
111 msgb_free(msg);
112
113 msg = sched_app_info(tbf2);
114 assert(msg);
115 msgb_free(msg);
116
117 fprintf(stderr, "\n");
118}
119
Oliver Smith2beb1b82019-09-18 13:47:25 +0200120void 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 +0200121{
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100122 struct gprs_rlcmac_bts *bts = gprs_pcu_get_bts_by_nr(the_pcu, 0);
Oliver Smithcfb63212019-09-05 17:13:33 +0200123 struct gsm_pcu_if pcu_prim = {PCU_IF_MSG_APP_INFO_REQ, };
124
125 fprintf(stderr, "--- %s ---\n", __func__);
Oliver Smith2beb1b82019-09-18 13:47:25 +0200126 pcu_prim.u.app_info_req = *req;
Pau Espin Pedrol1989a192021-06-23 19:46:07 +0200127 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
Oliver Smithcfb63212019-09-05 17:13:33 +0200128
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100129 msgb_free(bts->app_info);
130 bts->app_info = NULL;
Oliver Smithcfb63212019-09-05 17:13:33 +0200131
132 assert(sched_app_info(tbf1) == NULL);
133
134 fprintf(stderr, "\n");
135}
136
Oliver Smith2beb1b82019-09-18 13:47:25 +0200137void test_pcu_rx_overwrite_app_info(const struct gsm_pcu_if_app_info_req *req)
Oliver Smithcfb63212019-09-05 17:13:33 +0200138{
139 struct gsm_pcu_if pcu_prim = {PCU_IF_MSG_APP_INFO_REQ, };
140
141 fprintf(stderr, "--- %s ---\n", __func__);
Oliver Smith2beb1b82019-09-18 13:47:25 +0200142 pcu_prim.u.app_info_req = *req;
Pau Espin Pedrol1989a192021-06-23 19:46:07 +0200143 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
144 pcu_rx(&pcu_prim, sizeof(struct gsm_pcu_if));
Oliver Smithcfb63212019-09-05 17:13:33 +0200145 fprintf(stderr, "\n");
146}
147
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100148extern "C" void cleanup()
Oliver Smithcfb63212019-09-05 17:13:33 +0200149{
150 fprintf(stderr, "--- %s ---\n", __func__);
151
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100152 struct gprs_rlcmac_bts *bts;
153
Pau Espin Pedrolda971ee2020-12-16 15:59:45 +0100154 tbf_free(tbf1);
155 tbf_free(tbf2);
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100156
157 bts = gprs_pcu_get_bts_by_nr(the_pcu, 0);
158 talloc_free(bts);
159
Pau Espin Pedrol2182e622021-01-14 16:48:38 +0100160 /* 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 +0200161 /* talloc_report_full(tall_pcu_ctx, stderr); */
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100162 talloc_free(the_pcu);
Oliver Smithcfb63212019-09-05 17:13:33 +0200163 talloc_free(tall_pcu_ctx);
164}
165
166int main(int argc, char *argv[])
167{
Oliver Smith2beb1b82019-09-18 13:47:25 +0200168 struct gsm_pcu_if_app_info_req req = {0, 15, {0}};
169 const uint8_t req_data[] = {0xff, 0x00, 0xff};
170 memcpy(req.data, req_data, 3);
171
Oliver Smithcfb63212019-09-05 17:13:33 +0200172 tall_pcu_ctx = talloc_named_const(NULL, 1, "AppInfoTest");
173 osmo_init_logging2(tall_pcu_ctx, &gprs_log_info);
174 log_set_use_color(osmo_stderr_target, 0);
Pau Espin Pedrol00f52cc2021-02-19 14:01:52 +0100175 log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE);
Pau Espin Pedrolb18d2a52021-02-19 14:00:48 +0100176 log_set_print_category(osmo_stderr_target, 0);
177 log_set_print_category_hex(osmo_stderr_target, 0);
Oliver Smithcfb63212019-09-05 17:13:33 +0200178 log_parse_category_mask(osmo_stderr_target, "DL1IF,1:DRLCMAC,3:DRLCMACSCHED,1");
179
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100180 the_pcu = gprs_pcu_alloc(tall_pcu_ctx);
Pau Espin Pedrold1049dc2021-01-18 17:14:14 +0100181 bts_alloc(the_pcu, 0);
Pau Espin Pedrolac3fd122021-01-13 18:54:38 +0100182
Oliver Smithcfb63212019-09-05 17:13:33 +0200183 test_enc_zero_len();
Oliver Smith2beb1b82019-09-18 13:47:25 +0200184 test_enc(&req);
Oliver Smithcfb63212019-09-05 17:13:33 +0200185 test_pcu_rx_no_subscr_with_active_tbf();
186
187 prepare_bts_with_two_dl_tbf_subscr();
Oliver Smith2beb1b82019-09-18 13:47:25 +0200188 test_sched_app_info_ok(&req);
189 test_sched_app_info_missing_app_info_in_bts(&req);
190 test_pcu_rx_overwrite_app_info(&req);
Oliver Smithcfb63212019-09-05 17:13:33 +0200191
192 cleanup();
193}
194
195/*
196 * stubs that should not be reached
197 */
198extern "C" {
199void l1if_pdch_req() { abort(); }
200void l1if_connect_pdch() { abort(); }
201void l1if_close_pdch() { abort(); }
202void l1if_open_pdch() { abort(); }
203}