Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
1af7e716
Commit
1af7e716
authored
Mar 26, 2021
by
luis_pereira87
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix mac sdu len calculation for CCCH and skip invalid CCCH1 messages for being processed
parent
7c90e58d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletion
+21
-1
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
+21
-1
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
View file @
1af7e716
...
@@ -237,9 +237,29 @@ void nr_process_mac_pdu(
...
@@ -237,9 +237,29 @@ void nr_process_mac_pdu(
case
UL_SCH_LCID_SRB3
:
case
UL_SCH_LCID_SRB3
:
// todo
// todo
break
;
break
;
case
UL_SCH_LCID_CCCH
:
case
UL_SCH_LCID_CCCH
:
case
UL_SCH_LCID_CCCH1
:
case
UL_SCH_LCID_CCCH1
:
// fixed length
mac_subheader_len
=
1
;
mac_subheader_len
=
1
;
if
(
rx_lcid
==
UL_SCH_LCID_CCCH1
)
{
// RRCResumeRequest1 message includes the full I-RNTI and has a size of 8 bytes
mac_sdu_len
=
8
;
// FIXME: Need to handle properly MAC PDU with all 00's
//[MAC] nr_process_mac_pdu() residual mac pdu length < 0!, pdu_len: -2
//[MAC] MAC PDU 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
if
(
pdu_len
!=
9
)
{
//LOG_E(MAC, "%s() Invalid CCCH1 message!, pdu_len: %d\n", __func__, pdu_len);
return
;
}
}
else
{
// fixed length of 6 bytes
mac_sdu_len
=
6
;
}
nr_mac_rrc_data_ind
(
module_idP
,
nr_mac_rrc_data_ind
(
module_idP
,
CC_id
,
CC_id
,
frameP
,
frameP
,
...
@@ -248,7 +268,7 @@ void nr_process_mac_pdu(
...
@@ -248,7 +268,7 @@ void nr_process_mac_pdu(
rnti
,
rnti
,
CCCH
,
CCCH
,
pdu_ptr
+
mac_subheader_len
,
pdu_ptr
+
mac_subheader_len
,
pdu_len
-
mac_subheader
_len
,
mac_sdu
_len
,
0
);
0
);
break
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment