blob: b51d7354f38f423226f69e78ab3c20308ffeb80a [file] [log] [blame]
Ivan Kluchnikov487a1412011-12-21 13:17:53 +03001/* RLCMACTest.cpp
2 *
3 * Copyright (C) 2011 Ivan Klyuchnikov
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20
21
22//#include <BitVector.h>
23#include <iostream>
24#include <cstdlib>
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +040025#include <cstring>
Pau Espin Pedrolcdbc5db2020-01-23 21:00:19 +010026#include <assert.h>
Ivan Kluchnikov487a1412011-12-21 13:17:53 +030027#include "csn1.h"
28#include "gsm_rlcmac.h"
Max7426c5f2019-02-18 20:42:42 +010029#include "gprs_rlcmac.h"
Pau Espin Pedrolcdbc5db2020-01-23 21:00:19 +010030#include "decoding.h"
Max7426c5f2019-02-18 20:42:42 +010031
Andreas Eversberg138f4e62013-01-14 12:31:11 +010032extern "C" {
33extern const struct log_info gprs_log_info;
34#include "pcu_vty.h"
35#include <osmocom/vty/telnet_interface.h>
36#include <osmocom/vty/logging.h>
Aravind Sirsikar9f5f0082016-08-30 13:20:23 +053037#include <osmocom/core/utils.h>
Maxd3a0d912019-03-05 16:15:01 +010038#include <osmocom/core/msgb.h>
Andreas Eversberg138f4e62013-01-14 12:31:11 +010039#include <osmocom/core/application.h>
40}
Ivan Kluchnikov487a1412011-12-21 13:17:53 +030041using namespace std;
42
Pau Espin Pedrolcdbc5db2020-01-23 21:00:19 +010043void *tall_pcu_ctx;
44
Ivan Kluchnikov487a1412011-12-21 13:17:53 +030045void printSizeofRLCMAC()
46{
Pau Espin Pedrol54681c32020-01-23 21:59:23 +010047 printf("*** %s ***\n", __func__);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +030048 cout << "sizeof RlcMacUplink_t " << sizeof(RlcMacUplink_t) << endl;
49 cout << "sizeof Packet_Cell_Change_Failure_t " << sizeof(Packet_Cell_Change_Failure_t) << endl;
50 cout << "sizeof Packet_Control_Acknowledgement_t " << sizeof(Packet_Control_Acknowledgement_t) << endl;
51 cout << "sizeof Packet_Downlink_Ack_Nack_t " << sizeof(Packet_Downlink_Ack_Nack_t) << endl;
52 cout << "sizeof EGPRS_PD_AckNack_t " << sizeof(EGPRS_PD_AckNack_t) << endl;
53 cout << "sizeof Packet_Uplink_Dummy_Control_Block_t " << sizeof(Packet_Uplink_Dummy_Control_Block_t) << endl;
54 cout << "sizeof Packet_Measurement_Report_t " << sizeof(Packet_Measurement_Report_t) << endl;
55 cout << "sizeof Packet_Resource_Request_t " << sizeof(Packet_Resource_Request_t) << endl;
56 cout << "sizeof Packet_Mobile_TBF_Status_t " << sizeof(Packet_Mobile_TBF_Status_t) << endl;
57 cout << "sizeof Packet_PSI_Status_t " << sizeof(Packet_PSI_Status_t) << endl;
58 cout << "sizeof Packet_Enh_Measurement_Report_t " << sizeof(Packet_Enh_Measurement_Report_t) << endl;
59 cout << "sizeof Packet_Cell_Change_Notification_t " << sizeof(Packet_Cell_Change_Notification_t) << endl;
60 cout << "sizeof Packet_SI_Status_t " << sizeof(Packet_SI_Status_t) << endl;
61 cout << "sizeof Additional_MS_Rad_Access_Cap_t " << sizeof(Additional_MS_Rad_Access_Cap_t) << endl;
62 cout << "sizeof Packet_Pause_t " << sizeof(Packet_Pause_t) << endl;
63
64 cout << "sizeof RlcMacDownlink_t " << sizeof(RlcMacDownlink_t) << endl;
65 cout << "sizeof Packet_Access_Reject_t " << sizeof(Packet_Access_Reject_t) << endl;
Holger Hans Peter Freythere13298d2013-07-28 16:45:54 +020066 cout << "sizeof Packet_Cell_Change_Order_t " << sizeof(Packet_Cell_Change_Order_t) << endl;
67 cout << "sizeof Packet_Downlink_Assignment_t " << sizeof(Packet_Downlink_Assignment_t) << endl;
Ivan Kluchnikov487a1412011-12-21 13:17:53 +030068 cout << "sizeof Packet_Measurement_Order_Reduced_t " << sizeof(Packet_Measurement_Order_Reduced_t) << endl;
69 cout << "sizeof Packet_Neighbour_Cell_Data_t " << sizeof(Packet_Neighbour_Cell_Data_t) << endl;
70 cout << "sizeof Packet_Serving_Cell_Data_t " << sizeof(Packet_Serving_Cell_Data_t) << endl;
71 cout << "sizeof Packet_Paging_Request_t " << sizeof(Packet_Paging_Request_t) << endl;
72 cout << "sizeof Packet_PDCH_Release_t " << sizeof(Packet_PDCH_Release_t) << endl;
73 cout << "sizeof Packet_Polling_Request_t " << sizeof(Packet_Polling_Request_t) << endl;
74 cout << "sizeof Packet_Power_Control_Timing_Advance_t " << sizeof(Packet_Power_Control_Timing_Advance_t) << endl;
75 cout << "sizeof Packet_PRACH_Parameters_t " << sizeof(Packet_PRACH_Parameters_t) << endl;
76 cout << "sizeof Packet_Queueing_Notification_t " << sizeof(Packet_Queueing_Notification_t) << endl;
77 cout << "sizeof Packet_Timeslot_Reconfigure_t " << sizeof(Packet_Timeslot_Reconfigure_t) << endl;
78 cout << "sizeof Packet_TBF_Release_t " << sizeof(Packet_TBF_Release_t) << endl;
79 cout << "sizeof Packet_Uplink_Ack_Nack_t " << sizeof(Packet_Uplink_Ack_Nack_t) << endl;
80 cout << "sizeof Packet_Uplink_Assignment_t " << sizeof(Packet_Uplink_Assignment_t) << endl;
81 cout << "sizeof Packet_Cell_Change_Continue_t " << sizeof(Packet_Cell_Change_Continue_t) << endl;
82 cout << "sizeof Packet_Handover_Command_t " << sizeof(Packet_Handover_Command_t) << endl;
83 cout << "sizeof Packet_PhysicalInformation_t " << sizeof(Packet_PhysicalInformation_t) << endl;
84 cout << "sizeof Packet_Downlink_Dummy_Control_Block_t " << sizeof(Packet_Downlink_Dummy_Control_Block_t) << endl;
85 cout << "sizeof PSI1_t " << sizeof(PSI1_t) << endl;
86 cout << "sizeof PSI2_t " << sizeof(PSI2_t) << endl;
87 cout << "sizeof PSI3_t " << sizeof(PSI3_t) << endl;
88 cout << "sizeof PSI3_BIS_t " << sizeof(PSI3_BIS_t) << endl;
89 cout << "sizeof PSI4_t " << sizeof(PSI4_t) << endl;
90 cout << "sizeof PSI13_t " << sizeof(PSI13_t) << endl;
91 cout << "sizeof PSI5_t " << sizeof(PSI5_t) << endl;
92}
93
Alexander Couzensccde5c92017-02-04 03:10:08 +010094void testRlcMacDownlink(void *test_ctx)
Ivan Kluchnikov487a1412011-12-21 13:17:53 +030095{
Pau Espin Pedrol54681c32020-01-23 21:59:23 +010096 printf("*** %s ***\n", __func__);
Alexander Couzensccde5c92017-02-04 03:10:08 +010097 struct bitvec *resultVector = bitvec_alloc(23, test_ctx);
Max7426c5f2019-02-18 20:42:42 +010098 bitvec_unhex(resultVector, DUMMY_VEC);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +030099
100 std::string testData[] = {
101 "4e082500e3f1a81d080820800b2b2b2b2b2b2b2b2b2b2b", // Packet Downlink Assignment
Saurabh Sharan656eed52016-03-10 14:15:29 +0530102 "48282407a6a07422720100032b2b2b2b2b2b2b2b2b2b2b", // Packet Uplink Assignment
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300103 "47240c00400000000000000079eb2ac9402b2b2b2b2b2b", // Packet Uplink Ack Nack
Saurabh Sharanbacb65b2016-03-10 17:24:49 +0530104 "47283c367513ba333004242b2b2b2b2b2b2b2b2b2b2b2b", // Packet Uplink Assignment
105 "400820001a3904df0680efb3300b2b2b2b2b2b2b2b2b2b", // Packet Downlink Assignment (EGPRS)
Saurabh Sharan2b09c392016-03-16 19:17:32 +0530106 "40284f0000001009810c826f4406809dcecb2b2b2b2b2b", // Packet Uplink Assignment (EGPRS)
Pau Espin Pedrol5cb002f2020-01-23 23:45:17 +0100107 "4024030f2f0000000087b0042b2b2b2b2b2b2b2b2b2b2b", // Packet Uplink Ack Nack (EGPRS)
108 "4913e00850884013a8048b2b2b2b2b2b2b2b2b2b2b2b2b", // Polling Request?
109 "412430007fffffffffffffffefd19c7ba12b2b2b2b2b2b", // Packet Uplink Ack Nack?
110 "41942b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b", // System Info 13?
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300111 };
112
113 int testDataSize = sizeof(testData)/sizeof(testData[0]);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300114
115 cout << " DOWNLINK " << endl;
116 for (int i = 0; i < testDataSize; i++)
117 {
Pau Espin Pedrol87bfbe42020-01-23 23:51:34 +0100118 cout << "vector1 = " << testData[i] << endl;
Alexander Couzensccde5c92017-02-04 03:10:08 +0100119 bitvec *vector = bitvec_alloc(23, test_ctx);
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400120 bitvec_unhex(vector, testData[i].c_str());
Pau Espin Pedrol87bfbe42020-01-23 23:51:34 +0100121
Pau Espin Pedrol99c437b2020-01-24 12:34:50 +0100122 RlcMacDownlink_t data;
123 memset(&data, 0, sizeof(data));
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300124 cout << "=========Start DECODE===========" << endl;
Pau Espin Pedrol99c437b2020-01-24 12:34:50 +0100125 decode_gsm_rlcmac_downlink(vector, &data);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300126 cout << "+++++++++Finish DECODE++++++++++" << endl;
127 cout << "=========Start ENCODE=============" << endl;
Pau Espin Pedrol99c437b2020-01-24 12:34:50 +0100128 encode_gsm_rlcmac_downlink(resultVector, &data);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300129 cout << "+++++++++Finish ENCODE+++++++++++" << endl;
Pau Espin Pedrol87bfbe42020-01-23 23:51:34 +0100130 cout << "vector1 = " << osmo_hexdump(vector->data, 23) << endl;
131 cout << "vector2 = " << osmo_hexdump(resultVector->data, 23) << endl;
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400132 if (memcmp(vector->data, resultVector->data, 23) == 0)
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300133 cout << "vector1 == vector2 : TRUE" << endl;
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300134 else
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300135 cout << "vector1 == vector2 : FALSE" << endl;
Max7426c5f2019-02-18 20:42:42 +0100136 bitvec_unhex(resultVector, DUMMY_VEC);
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400137 bitvec_free(vector);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300138 }
Andreas Eversberg273a2222013-01-16 08:56:33 +0100139
140 bitvec_free(resultVector);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300141}
142
143
Alexander Couzensccde5c92017-02-04 03:10:08 +0100144void testRlcMacUplink(void *test_ctx)
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300145{
Pau Espin Pedrol54681c32020-01-23 21:59:23 +0100146 printf("*** %s ***\n", __func__);
Alexander Couzensccde5c92017-02-04 03:10:08 +0100147 struct bitvec *resultVector = bitvec_alloc(23, test_ctx);
Max7426c5f2019-02-18 20:42:42 +0100148 bitvec_unhex(resultVector, DUMMY_VEC);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300149
150 std::string testData[] = {
Saurabh Sharan656eed52016-03-10 14:15:29 +0530151 "400e1e61d11d2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b", // Packet Uplink Dummy Control Block
152 "400b8020000000000000002480e0032b2b2b2b2b2b2b2b", // Packet Downlink Ack/Nack
Saurabh Sharanbacb65b2016-03-10 17:24:49 +0530153 "4016713dc094270ca2ae57ef909006aa0fc0001f80222b", // Packet Resource Request
154 "40200ffc0021ec010b2b2b2b2b2b2b2b2b2b2b2b2b2b2b", // EPDAN
Pau Espin Pedrol5cb002f2020-01-23 23:45:17 +0100155 "400a9020000000000000003010012a0800132b2b2b2b2b", // Packet Downlink Ack/Nack ?
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300156 };
157
158 int testDataSize = sizeof(testData)/sizeof(testData[0]);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300159
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300160
161 cout << " UPLINK " << endl;
162 for (int i = 0; i < testDataSize; i++)
163 {
Pau Espin Pedrol87bfbe42020-01-23 23:51:34 +0100164 cout << "vector1 = " << testData[i] << endl;
Alexander Couzensccde5c92017-02-04 03:10:08 +0100165 bitvec *vector = bitvec_alloc(23, test_ctx);
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400166 bitvec_unhex(vector, testData[i].c_str());
Pau Espin Pedrol87bfbe42020-01-23 23:51:34 +0100167
Pau Espin Pedrol99c437b2020-01-24 12:34:50 +0100168 RlcMacUplink_t data;
169 memset(&data, 0, sizeof(data));
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300170 cout << "=========Start DECODE===========" << endl;
Pau Espin Pedrol99c437b2020-01-24 12:34:50 +0100171 decode_gsm_rlcmac_uplink(vector, &data);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300172 cout << "+++++++++Finish DECODE++++++++++" << endl;
173 cout << "=========Start ENCODE=============" << endl;
Pau Espin Pedrol99c437b2020-01-24 12:34:50 +0100174 encode_gsm_rlcmac_uplink(resultVector, &data);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300175 cout << "+++++++++Finish ENCODE+++++++++++" << endl;
Pau Espin Pedrol87bfbe42020-01-23 23:51:34 +0100176 cout << "vector1 = " << osmo_hexdump(vector->data, 23) << endl;
177 cout << "vector2 = " << osmo_hexdump(resultVector->data, 23) << endl;
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400178 if (memcmp(vector->data, resultVector->data, 23) == 0)
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300179 cout << "vector1 == vector2 : TRUE" << endl;
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300180 else
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300181 cout << "vector1 == vector2 : FALSE" << endl;
Max7426c5f2019-02-18 20:42:42 +0100182 bitvec_unhex(resultVector, DUMMY_VEC);
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400183 bitvec_free(vector);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300184 }
Andreas Eversberg273a2222013-01-16 08:56:33 +0100185
186 bitvec_free(resultVector);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300187}
188
Alexander Couzensccde5c92017-02-04 03:10:08 +0100189void testCsnLeftAlignedVarBmpBounds(void *test_ctx)
Aravind Sirsikar9f5f0082016-08-30 13:20:23 +0530190{
Pau Espin Pedrol54681c32020-01-23 21:59:23 +0100191 printf("*** %s ***\n", __func__);
Maxd3a0d912019-03-05 16:15:01 +0100192 struct msgb *m = msgb_alloc(80, "test");
193 static uint8_t exp[] = { 0x7f, 0xff, 0xff, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
Alexander Couzensccde5c92017-02-04 03:10:08 +0100194 bitvec *vector = bitvec_alloc(23, test_ctx);
Aravind Sirsikar9f5f0082016-08-30 13:20:23 +0530195
196 bitvec_unhex(vector, "40200bffd161003e0e519ffffffb800000000000000000");
197 RlcMacUplink_t data;
Pau Espin Pedrol99c437b2020-01-24 12:34:50 +0100198 memset(&data, 0, sizeof(data));
Aravind Sirsikar9f5f0082016-08-30 13:20:23 +0530199
200 EGPRS_AckNack_Desc_t *urbb =
201 &data.u.Egprs_Packet_Downlink_Ack_Nack.EGPRS_AckNack.Desc;
202 decode_gsm_rlcmac_uplink(vector, &data);
203
Maxd3a0d912019-03-05 16:15:01 +0100204 memcpy(msgb_put(m, 13), urbb->URBB, 13);
205 if (!msgb_eq_data_print(m, exp, 13))
206 printf("%s failed!\n", __func__);
207 msgb_free(m);
Aravind Sirsikar9f5f0082016-08-30 13:20:23 +0530208}
209
Pau Espin Pedrolcdbc5db2020-01-23 21:00:19 +0100210void testRAcap(void *test_ctx)
211{
212 printf("*** %s ***\n", __func__);
213 MS_Radio_Access_capability_t data;
214 memset(&data, 0, sizeof(data));
215 bitvec *vector = bitvec_alloc(23, test_ctx);
216 int rc;
217/*
218 MS RA capability 1
219 0001 .... = Access Technology Type: GSM E --note that GSM E covers GSM P (1)
220 .... 0010 101. .... = Length in bits: 0x15 (21)
221 ...0 01.. RF Power Capability, GMSK Power Class: Not specified (1)
222 A5 Bits: Same values apply for parameters as in the immediately preceding Access capabilities field within this IE (0)
223 .... ...1 = Controlled early Classmark Sending: Implemented
224 0... .... = Pseudo Synchronisation: Not Present
225 .0.. .... = Voice Group Call Service: no VGCS capability or no notifications wanted
226 ..0. .... = Voice Broadcast Service: no VBS capability or no notifications wanted
227 ...1 .... = Multislot capability struct: Present
228 .... ..00 011. .... = GPRS multislot class: Max Rx-Slot/TDMA:2 Max Tx-Slot/TDMA:2 Max-Sum-Slot/TDMA:3 Tta:3 Ttb:2 Tra:3 Trb:1 Type:1 (3)
229 ...0 .... = GPRS Extended Dynamic Allocation Capability: Not Implemented
230*/
231 bitvec_unhex(vector, "12a5146200");
232
233 rc = decode_gsm_ra_cap(vector, &data);
234 printf("decode_gsm_ra_cap fails? %s\n", rc !=0 ? "yes" : "no");
235#if 0
236 /* FIXME: OS#1525, OS#3499: csn1 fails to parse this MS RA Cap IE value */
237 assert (rc == 0);
238
239 /* Make sure there's 1 value (currently fails due to failed decoding) */
240 osmo_assert(cap->Count_MS_RA_capability_value == 1);
241
242 /* Make sure MS multislot class is parsed correctly (currently fails due
243 to failed decoding and count being 0) */
244 uint8_t ms_class = Decoding::get_ms_class_by_capability(&data);
245 assert(ms_class == 3);
246#endif
247}
248
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300249int main(int argc, char *argv[])
250{
Alexander Couzensccde5c92017-02-04 03:10:08 +0100251 void *ctx = talloc_named_const(NULL, 1, "RLCMACTest");
Neels Hofmeyr42f2d612018-04-01 16:54:40 +0200252 osmo_init_logging2(ctx, &gprs_log_info);
Maxd3a0d912019-03-05 16:15:01 +0100253 log_parse_category_mask(osmo_stderr_target, "DPCU,3:DLGLOBAL,1:");
Andreas Eversberg138f4e62013-01-14 12:31:11 +0100254
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300255 //printSizeofRLCMAC();
Alexander Couzensccde5c92017-02-04 03:10:08 +0100256 testRlcMacDownlink(ctx);
257 testRlcMacUplink(ctx);
258 testCsnLeftAlignedVarBmpBounds(ctx);
Pau Espin Pedrolcdbc5db2020-01-23 21:00:19 +0100259 testRAcap(ctx);
Alexander Couzensccde5c92017-02-04 03:10:08 +0100260 talloc_free(ctx);
Ivan Kluchnikov487a1412011-12-21 13:17:53 +0300261}