blob: 28af3c440aa4968676a3fd87b583ca6f804a890b [file] [log] [blame]
Holger Hans Peter Freytherd11290b2013-10-26 17:32:04 +02001/* decoding
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20#pragma once
21
Pau Espin Pedrol8a35e642021-01-18 17:14:14 +010022#ifdef __cplusplus
Pau Espin Pedrolb2653fe2020-03-26 15:14:01 +010023extern "C" {
Pau Espin Pedrol8a35e642021-01-18 17:14:14 +010024#endif
Pau Espin Pedrolb2653fe2020-03-26 15:14:01 +010025
Pau Espin Pedrol8a35e642021-01-18 17:14:14 +010026#include "gsm_rlcmac.h"
27#include "coding_scheme.h"
28
29#ifdef __cplusplus
30}
31#endif
Holger Hans Peter Freytherfcbc7022013-10-26 17:38:37 +020032
Holger Hans Peter Freytherd11290b2013-10-26 17:32:04 +020033#include <stdint.h>
34
Jacob Erlbeckae9c5752016-01-13 13:55:44 +010035struct bitvec;
36
Pau Espin Pedrol8a35e642021-01-18 17:14:14 +010037#ifdef __cplusplus
38
Holger Hans Peter Freytherd11290b2013-10-26 17:32:04 +020039class Decoding {
40public:
Alexander Couzensb82bd922016-05-30 17:30:10 +020041 /* represents (parts) LLC PDUs within one RLC Data block */
Jacob Erlbeck4abc6862015-12-08 15:14:05 +010042 struct RlcData {
43 uint8_t offset;
44 uint8_t length;
Alexander Couzensb82bd922016-05-30 17:30:10 +020045 bool is_complete; /* if this PDU ends in this block */
Jacob Erlbeck4abc6862015-12-08 15:14:05 +010046 };
47
Jacob Erlbeck4abc6862015-12-08 15:14:05 +010048 static int rlc_data_from_ul_data(
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +010049 const struct gprs_rlc_data_block_info *rdbi,
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +020050 enum CodingScheme cs, const uint8_t *data, RlcData *chunks,
Jacob Erlbeck4abc6862015-12-08 15:14:05 +010051 unsigned int chunks_size, uint32_t *tlli);
Holger Hans Peter Freytherdf6b4f52013-11-24 17:05:48 +010052
53 static void extract_rbb(const uint8_t *rbb, char *extracted_rbb);
Jacob Erlbeckf2f24b02016-02-05 13:16:24 +010054 static void extract_rbb(const struct bitvec *rbb, char *show_rbb);
Bhargava Abhyankare44383b2016-03-22 18:42:30 +053055 static int rlc_parse_ul_data_header_egprs_type_3(
56 struct gprs_rlc_data_info *rlc,
57 const uint8_t *data,
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +020058 const enum CodingScheme &cs);
Aravind Sirsikar550a5412016-06-14 18:59:18 +053059 static int rlc_parse_ul_data_header_egprs_type_2(
60 struct gprs_rlc_data_info *rlc,
61 const uint8_t *data,
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +020062 const enum CodingScheme &cs);
Aravind Sirsikar99ab0a82016-06-15 17:46:41 +053063 static int rlc_parse_ul_data_header_egprs_type_1(
64 struct gprs_rlc_data_info *rlc,
65 const uint8_t *data,
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +020066 const enum CodingScheme &cs);
Bhargava Abhyankare44383b2016-03-22 18:42:30 +053067 static int rlc_parse_ul_data_header_gprs(
68 struct gprs_rlc_data_info *rlc,
69 const uint8_t *data,
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +020070 const enum CodingScheme &cs);
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +010071 static int rlc_parse_ul_data_header(struct gprs_rlc_data_info *rlc,
Pau Espin Pedrol2ae83372020-05-18 11:35:35 +020072 const uint8_t *data, enum CodingScheme cs);
Jacob Erlbeck4abc6862015-12-08 15:14:05 +010073 static unsigned int rlc_copy_to_aligned_buffer(
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +010074 const struct gprs_rlc_data_info *rlc,
Jacob Erlbeck4abc6862015-12-08 15:14:05 +010075 unsigned int data_block_idx,
76 const uint8_t *src, uint8_t *buffer);
77 static const uint8_t *rlc_get_data_aligned(
Jacob Erlbeckf2ba4cb2016-01-07 18:59:28 +010078 const struct gprs_rlc_data_info *rlc,
Jacob Erlbeck4abc6862015-12-08 15:14:05 +010079 unsigned int data_block_idx,
80 const uint8_t *src, uint8_t *buffer);
Jacob Erlbeckae9c5752016-01-13 13:55:44 +010081 static int decode_egprs_acknack_bits(
82 const EGPRS_AckNack_Desc_t *desc,
83 struct bitvec *bits, int *bsn_begin, int *bsn_end,
84 struct gprs_rlc_dl_window *window);
Jacob Erlbeck192bf332016-02-05 13:10:29 +010085 static int decode_gprs_acknack_bits(
86 const Ack_Nack_Description_t *desc,
87 bitvec *bits, int *bsn_begin, int *bsn_end,
88 gprs_rlc_dl_window *window);
Holger Hans Peter Freytherd11290b2013-10-26 17:32:04 +020089};
Pau Espin Pedrol8a35e642021-01-18 17:14:14 +010090
91#endif /* #ifdef __cplusplus */
92
93#ifdef __cplusplus
94extern "C" {
95#endif
96
97uint8_t get_ms_class_by_capability(MS_Radio_Access_capability_t *cap);
98uint8_t get_egprs_ms_class_by_capability(MS_Radio_Access_capability_t *cap);
99
100#ifdef __cplusplus
101}
102#endif