Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
openairinterface-6g
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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
openairinterface-6g
Commits
9c3c65f5
Commit
9c3c65f5
authored
Nov 08, 2025
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check presence of optional nonCriticalExtension before handling (issue #1026)
parent
88baba89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
22 deletions
+24
-22
openair2/RRC/NR_UE/rrc_UE.c
openair2/RRC/NR_UE/rrc_UE.c
+24
-22
No files found.
openair2/RRC/NR_UE/rrc_UE.c
View file @
9c3c65f5
...
...
@@ -826,28 +826,30 @@ static void nr_rrc_process_reconfiguration_v1530(NR_UE_RRC_INST_t *rrc, NR_RRCRe
NR_RRCReconfiguration_v1540_IEs_t
*
rec_1540
=
rec_1530
->
nonCriticalExtension
;
if
(
rec_1540
)
{
NR_RRCReconfiguration_v1560_IEs_t
*
rec_1560
=
rec_1540
->
nonCriticalExtension
;
if
(
rec_1560
->
sk_Counter
)
{
// TODO perform AS security key update procedure as specified in 5.3.5.7
LOG_E
(
NR_RRC
,
"RRCReconfiguration includes sk-Counter but this is not implemented yet
\n
"
);
}
if
(
rec_1560
->
mrdc_SecondaryCellGroupConfig
)
{
// TODO perform handling of mrdc-SecondaryCellGroupConfig as specified in 5.3.5.3
LOG_E
(
NR_RRC
,
"RRCReconfiguration includes mrdc-SecondaryCellGroupConfig but this is not handled yet
\n
"
);
}
if
(
rec_1560
->
radioBearerConfig2
)
{
NR_RadioBearerConfig_t
*
RadioBearerConfig
=
NULL
;
asn_dec_rval_t
dec_rval
=
uper_decode
(
NULL
,
&
asn_DEF_NR_RadioBearerConfig
,
(
void
**
)
&
RadioBearerConfig
,
(
uint8_t
*
)
rec_1560
->
radioBearerConfig2
->
buf
,
rec_1560
->
radioBearerConfig2
->
size
,
0
,
0
);
if
((
dec_rval
.
code
!=
RC_OK
)
&&
(
dec_rval
.
consumed
==
0
))
{
LOG_E
(
NR_RRC
,
"radioBearerConfig2 decode error
\n
"
);
SEQUENCE_free
(
&
asn_DEF_NR_RadioBearerConfig
,
RadioBearerConfig
,
1
);
}
else
nr_rrc_ue_process_RadioBearerConfig
(
rrc
,
RadioBearerConfig
);
if
(
rec_1560
)
{
if
(
rec_1560
->
sk_Counter
)
{
// TODO perform AS security key update procedure as specified in 5.3.5.7
LOG_E
(
NR_RRC
,
"RRCReconfiguration includes sk-Counter but this is not implemented yet
\n
"
);
}
if
(
rec_1560
->
mrdc_SecondaryCellGroupConfig
)
{
// TODO perform handling of mrdc-SecondaryCellGroupConfig as specified in 5.3.5.3
LOG_E
(
NR_RRC
,
"RRCReconfiguration includes mrdc-SecondaryCellGroupConfig but this is not handled yet
\n
"
);
}
if
(
rec_1560
->
radioBearerConfig2
)
{
NR_RadioBearerConfig_t
*
RadioBearerConfig
=
NULL
;
asn_dec_rval_t
dec_rval
=
uper_decode
(
NULL
,
&
asn_DEF_NR_RadioBearerConfig
,
(
void
**
)
&
RadioBearerConfig
,
(
uint8_t
*
)
rec_1560
->
radioBearerConfig2
->
buf
,
rec_1560
->
radioBearerConfig2
->
size
,
0
,
0
);
if
((
dec_rval
.
code
!=
RC_OK
)
&&
(
dec_rval
.
consumed
==
0
))
{
LOG_E
(
NR_RRC
,
"radioBearerConfig2 decode error
\n
"
);
SEQUENCE_free
(
&
asn_DEF_NR_RadioBearerConfig
,
RadioBearerConfig
,
1
);
}
else
nr_rrc_ue_process_RadioBearerConfig
(
rrc
,
RadioBearerConfig
);
}
}
}
}
...
...
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