blob: f4b2e01b40d84e1b70f6e8db6b5e8ebaa291dea4 [file] [log] [blame]
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +01001/*
2 * TbfTest.cpp
3 *
4 * Copyright (C) 2013 by Holger Hans Peter Freyther
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#include "bts.h"
24#include "tbf.h"
25#include "gprs_debug.h"
26
27extern "C" {
28#include <osmocom/core/application.h>
29#include <osmocom/core/msgb.h>
30#include <osmocom/core/talloc.h>
31#include <osmocom/core/utils.h>
32}
33
34void *tall_pcu_ctx;
35int16_t spoof_mnc = 0, spoof_mcc = 0;
36
37static void test_tbf_tlli_update()
38{
39 BTS the_bts;
40 the_bts.bts_data()->alloc_algorithm = alloc_algorithm_a;
41 the_bts.bts_data()->trx[0].pdch[2].enable();
42 the_bts.bts_data()->trx[0].pdch[3].enable();
43
44 /*
45 * Make a uplink and downlink allocation
46 */
Daniel Willmann48aa0b02014-07-16 18:54:10 +020047 gprs_rlcmac_tbf *dl_tbf = tbf_alloc_dl_tbf(the_bts.bts_data(),
48 NULL, 0,
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +010049 0, 0, 0);
50 dl_tbf->update_tlli(0x2342);
51 dl_tbf->tlli_mark_valid();
52 dl_tbf->ta = 4;
53 the_bts.timing_advance()->remember(0x2342, dl_tbf->ta);
54
Daniel Willmann48aa0b02014-07-16 18:54:10 +020055 gprs_rlcmac_tbf *ul_tbf = tbf_alloc_ul_tbf(the_bts.bts_data(),
56 ul_tbf, 0,
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +010057 0, 0, 0);
58 ul_tbf->update_tlli(0x2342);
59 ul_tbf->tlli_mark_valid();
60
61
Daniel Willmannb59d61b2014-07-02 17:58:14 +020062 OSMO_ASSERT(the_bts.dl_tbf_by_tlli(0x2342) == dl_tbf);
63 OSMO_ASSERT(the_bts.ul_tbf_by_tlli(0x2342) == ul_tbf);
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +010064
65
66 /*
67 * Now check.. that DL changes and that the timing advance
68 * has changed.
69 */
70 dl_tbf->update_tlli(0x4232);
Daniel Willmannb59d61b2014-07-02 17:58:14 +020071 OSMO_ASSERT(!the_bts.dl_tbf_by_tlli(0x2342));
72 OSMO_ASSERT(!the_bts.ul_tbf_by_tlli(0x2342));
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +010073
74
Daniel Willmannb59d61b2014-07-02 17:58:14 +020075 OSMO_ASSERT(the_bts.dl_tbf_by_tlli(0x4232) == dl_tbf);
76 OSMO_ASSERT(the_bts.ul_tbf_by_tlli(0x4232) == ul_tbf);
Holger Hans Peter Freytherbc1626e2013-10-30 19:50:49 +010077
78 OSMO_ASSERT(the_bts.timing_advance()->recall(0x4232) == 4);
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +010079}
80
Daniel Willmann510d7d32014-08-15 18:19:41 +020081static uint8_t llc_data[200];
82
83int pcu_sock_send(struct msgb *msg)
84{
85 return 0;
86}
87
88static void test_tbf_final_ack()
89{
90 BTS the_bts;
91 gprs_rlcmac_bts *bts;
92 gprs_rlcmac_trx *trx;
93 gprs_rlcmac_pdch * pdch;
94 int tfi, i;
95 uint8_t ts_no, trx_no;
96 uint8_t ms_class = 45;
97 uint32_t fn;
98
99 uint8_t rbb[64/8];
100
101 struct msgb *dl_msg;
102 gprs_rlcmac_dl_tbf *dl_tbf;
103 gprs_rlcmac_tbf *new_tbf;
104
105 bts = the_bts.bts_data();
106 bts->alloc_algorithm = alloc_algorithm_a;
107 trx = &bts->trx[0];
108
109 ts_no = 4;
110 trx->pdch[ts_no].enable();
111 pdch = &trx->pdch[ts_no];
112
113 tfi = the_bts.tfi_find_free(GPRS_RLCMAC_DL_TBF, &trx_no, -1);
114 OSMO_ASSERT(tfi >= 0);
115 dl_tbf = tbf_alloc_dl_tbf(bts, NULL, tfi, trx_no, ms_class, 1);
116 OSMO_ASSERT(dl_tbf);
117
118 /* "Establish" the DL TBF */
119 dl_tbf->dl_ass_state = GPRS_RLCMAC_DL_ASS_SEND_ASS;
120 dl_tbf->set_state(GPRS_RLCMAC_FLOW);
121 dl_tbf->m_wait_confirm = 0;
122 dl_tbf->set_new_tbf(dl_tbf);
123
124 for (i = 0; i < sizeof(llc_data); i++)
125 llc_data[i] = i%256;
126
127 /* Schedule two blocks */
128 dl_msg = msgb_alloc(sizeof(llc_data), "llc data");
129 memcpy(msgb_put(dl_msg, sizeof(llc_data)), llc_data, sizeof(llc_data));
130 dl_tbf->m_llc.enqueue(dl_msg);
131
132 dl_msg = msgb_alloc(sizeof(llc_data), "llc data");
133 memcpy(msgb_put(dl_msg, sizeof(llc_data)), llc_data, sizeof(llc_data));
134 dl_tbf->m_llc.enqueue(dl_msg);
135
136
137 /* FIXME: Need correct frame number here? */
138 fn = 0;
139 for (; fn < 3; fn++) {
140 /* Request to send one block */
141 gprs_rlcmac_rcv_rts_block(bts, trx_no, ts_no, 0, fn, 0);
142 }
143
144 /* Queue a final ACK */
145 memset(rbb, 0, sizeof(rbb));
146 /* Receive a final ACK */
147 dl_tbf->rcvd_dl_ack(1, 1, rbb);
148
149 /* Clean up and ensure tbfs are in the correct state */
150 OSMO_ASSERT(dl_tbf->state_is(GPRS_RLCMAC_WAIT_RELEASE));
151 new_tbf = dl_tbf->new_tbf();
152 OSMO_ASSERT(new_tbf != dl_tbf);
153 OSMO_ASSERT(new_tbf->tfi() == 1);
154 dl_tbf->dl_ass_state = GPRS_RLCMAC_DL_ASS_NONE;
155 tbf_free(dl_tbf);
156 tbf_free(new_tbf);
157}
158
Daniel Willmann341689d2014-06-11 18:33:14 +0200159static const struct log_info_cat default_categories[] = {
160 {"DCSN1", "\033[1;31m", "Concrete Syntax Notation One (CSN1)", LOGL_INFO, 0},
161 {"DL1IF", "\033[1;32m", "GPRS PCU L1 interface (L1IF)", LOGL_DEBUG, 1},
162 {"DRLCMAC", "\033[0;33m", "GPRS RLC/MAC layer (RLCMAC)", LOGL_DEBUG, 1},
163 {"DRLCMACDATA", "\033[0;33m", "GPRS RLC/MAC layer Data (RLCMAC)", LOGL_DEBUG, 1},
164 {"DRLCMACDL", "\033[1;33m", "GPRS RLC/MAC layer Downlink (RLCMAC)", LOGL_DEBUG, 1},
165 {"DRLCMACUL", "\033[1;36m", "GPRS RLC/MAC layer Uplink (RLCMAC)", LOGL_DEBUG, 1},
166 {"DRLCMACSCHED", "\033[0;36m", "GPRS RLC/MAC layer Scheduling (RLCMAC)", LOGL_DEBUG, 1},
167 {"DRLCMACMEAS", "\033[1;31m", "GPRS RLC/MAC layer Measurements (RLCMAC)", LOGL_INFO, 1},
168 {"DBSSGP","\033[1;34m", "GPRS BSS Gateway Protocol (BSSGP)", LOGL_INFO , 1},
169 {"DPCU", "\033[1;35m", "GPRS Packet Control Unit (PCU)", LOGL_NOTICE, 1},
170};
171
172static int filter_fn(const struct log_context *ctx,
173 struct log_target *tar)
174{
175 return 1;
176}
177
178const struct log_info debug_log_info = {
179 filter_fn,
180 (struct log_info_cat*)default_categories,
181 ARRAY_SIZE(default_categories),
182};
183
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +0100184int main(int argc, char **argv)
185{
186 tall_pcu_ctx = talloc_named_const(NULL, 1, "moiji-mobile TbfTest context");
187 if (!tall_pcu_ctx)
188 abort();
189
190 msgb_set_talloc_ctx(tall_pcu_ctx);
Daniel Willmann341689d2014-06-11 18:33:14 +0200191 osmo_init_logging(&debug_log_info);
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +0100192 log_set_use_color(osmo_stderr_target, 0);
193 log_set_print_filename(osmo_stderr_target, 0);
194
195 test_tbf_tlli_update();
Daniel Willmann510d7d32014-08-15 18:19:41 +0200196 test_tbf_final_ack();
Holger Hans Peter Freytherb8098662013-10-30 14:50:17 +0100197 return EXIT_SUCCESS;
198}
199
200/*
201 * stubs that should not be reached
202 */
203extern "C" {
204void l1if_pdch_req() { abort(); }
205void l1if_connect_pdch() { abort(); }
206void l1if_close_pdch() { abort(); }
207void l1if_open_pdch() { abort(); }
208}