Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-AMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
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-AMF
Commits
ade251b9
Commit
ade251b9
authored
Aug 31, 2021
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix_nia0' into 'develop'
Fix nia0 See merge request oai/cn5g/oai-cn5g-amf!53
parents
47da9a26
fcf22bf5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
src/amf-app/amf_n1.cpp
src/amf-app/amf_n1.cpp
+14
-11
No files found.
src/amf-app/amf_n1.cpp
View file @
ade251b9
...
...
@@ -347,8 +347,10 @@ void amf_n1::handle_itti_message(itti_uplink_nas_data_ind& nas_data_ind) {
(
uint8_t
*
)
bdata
(
recved_nas_msg
)
+
6
,
blength
(
recved_nas_msg
)
-
6
,
mac32
))
{
// IA0_5G
decoded_plain_msg
=
blk2bstr
(
(
uint8_t
*
)
bdata
(
recved_nas_msg
)
+
7
,
blength
(
recved_nas_msg
)
-
7
);
// decoded_plain_msg = blk2bstr(
// (uint8_t*) bdata(recved_nas_msg) + 7, blength(recved_nas_msg) -
// 7);
}
else
{
bool
isMatched
=
false
;
uint8_t
*
buf
=
(
uint8_t
*
)
bdata
(
recved_nas_msg
);
...
...
@@ -364,16 +366,17 @@ void amf_n1::handle_itti_message(itti_uplink_nas_data_ind& nas_data_ind) {
if
(
!
isMatched
)
{
Logger
::
amf_n1
().
error
(
"Received message not integrity matched"
);
return
;
}
else
{
bstring
ciphered
=
blk2bstr
(
buf
+
7
,
buf_len
-
7
);
}
}
bstring
ciphered
=
blk2bstr
(
(
uint8_t
*
)
bdata
(
recved_nas_msg
)
+
7
,
blength
(
recved_nas_msg
)
-
7
);
if
(
!
nas_message_cipher_protected
(
nc
.
get
()
->
security_ctx
,
NAS_MESSAGE_UPLINK
,
ciphered
,
decoded_plain_msg
))
{
Logger
::
amf_n1
().
error
(
"Decrypt NAS message failure"
);
return
;
}
}
}
}
break
;
default:
{
Logger
::
amf_n1
().
error
(
"Unknown NAS Message Type"
);
...
...
@@ -511,7 +514,7 @@ void amf_n1::uplink_nas_msg_handle(
// TODO
}
break
;
default:
{
// TODO:
Logger
::
amf_n1
().
debug
(
"Received Unknown message type, ignoring..."
);
}
}
}
...
...
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