/* RLCMACTest.c * * Copyright (C) 2011 Ivan Klyuchnikov * Contributions by sysmocom - s.f.m.c. GmbH * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include #include #include #include #include #include #include #include static void *tall_ctx = NULL; static void test_si13ro(void) { printf("*** %s ***\n", __func__); static const char * const testData[] = { "9000185a6fc9f2b5304208eb2b2b2b2b2b2b2b2b", // osmo-pcu, with EGPRS "a000185a6fc9f14608411b2b2b2b2b2b2b2b2b2b", // osmo-pcu, without EGPRS "90005847eb4a93e51a218a16ab2b2b2b2b2b2b2b", // real network (Iran, Tehran) "90005847eb4a93e50a218a162b2b2b2b2b2b2b2b", // real network (Turkey, Istanbul) "b0005840654a92b53c2942db2b2b2b2b2b2b2b2b", // real network (Turkey, Trabzon) }; for (unsigned int i = 0; i < ARRAY_SIZE(testData); i++) { uint8_t buf[20]; /* GSM_MACBLOCK_LEN - 3 */ SI13_RestOctets_t si13ro = { 0 }; int rc; printf("testData[%d] = %s\n", i, testData[i]); rc = osmo_hexparse(testData[i], &buf[0], sizeof(buf)); OSMO_ASSERT(rc == sizeof(buf)); rc = osmo_gprs_rlcmac_decode_si13ro(&si13ro, &buf[0], sizeof(buf)); printf("osmo_gprs_rlcmac_decode_si13ro() returns %d\n", rc); } printf("\n"); } static void test_imm_ass_ro(void) { printf("*** %s ***\n", __func__); static const char * const testData[] = { "c8c2859f032b2b2b2b2b", // HH, Packet Uplink Assignment "c1ebb26b2b2b2b2b2b2b", // HH, Packet Uplink Assignment (single block) "dd6e1ae5a8c7841b2b2b", // HH, Packet Downlink Assignment "464269c616b21b032b2b2b", // LH, EGPRS Packet Uplink Assignment (one phase) "444261b4b40b2b2b2b2b2b", // LH, EGPRS Packet Uplink Assignment (two phase) /* TODO: add more samples (LL and HL) */ }; for (unsigned int i = 0; i < ARRAY_SIZE(testData); i++) { uint8_t buf[11]; /* up to 11 octets as per 10.5.2.16 */ IA_RestOctets_t iaro = { 0 }; int rc; printf("testData[%d] = %s\n", i, testData[i]); rc = osmo_hexparse(testData[i], &buf[0], sizeof(buf)); OSMO_ASSERT(rc == (strlen(testData[i]) / 2)); rc = osmo_gprs_rlcmac_decode_imm_ass_ro(&iaro, &buf[0], sizeof(buf)); printf("osmo_gprs_rlcmac_decode_imm_ass_ro() returns %d\n", rc); } printf("\n"); } static void test_p1ro(void) { printf("*** %s ***\n", __func__); static const char * const testData[] = { /* P1 Rest Octets * L... .... = NLN(PCH): Not Present * .L.. .... = Priority 1: Not Present * ..L. .... = Priority 2: Not Present * ...L .... = Group Call Information: Not Present * .... H... = Packet Page Indication 1: For GPRS * .... .H.. = Packet Page Indication 2: For GPRS * Padding Bits: default padding */ "272b2b2b2b2b2b2b2b2b", }; for (unsigned int i = 0; i < ARRAY_SIZE(testData); i++) { uint8_t buf[17]; P1_Rest_Octets_t p1ro = { 0 }; int rc; printf("testData[%d] = %s\n", i, testData[i]); rc = osmo_hexparse(testData[i], &buf[0], sizeof(buf)); OSMO_ASSERT(rc >= 0); rc = osmo_gprs_rlcmac_decode_p1ro(&p1ro, &buf[0], rc); printf("osmo_gprs_rlcmac_decode_p1ro() returns %d\n", rc); } printf("\n"); } static const struct log_info_cat test_log_categories[] = { }; static const struct log_info test_log_info = { .cat = test_log_categories, .num_cat = ARRAY_SIZE(test_log_categories), }; int main(int argc, char *argv[]) { tall_ctx = talloc_named_const(NULL, 1, __FILE__); osmo_init_logging2(tall_ctx, &test_log_info); log_parse_category_mask(osmo_stderr_target, "DLGLOBAL,1:DLCSN1,1:"); log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE); log_set_print_category_hex(osmo_stderr_target, 0); log_set_print_category(osmo_stderr_target, 1); log_set_print_level(osmo_stderr_target, 1); log_set_use_color(osmo_stderr_target, 0); test_si13ro(); test_imm_ass_ro(); test_p1ro(); talloc_free(tall_ctx); }