Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
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
Libraries
UERANSIM
Commits
81e531d1
Commit
81e531d1
authored
Mar 10, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Registration attempt counter reset handling
parent
0031283d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
5 deletions
+15
-5
src/ue/mm/dereg.cpp
src/ue/mm/dereg.cpp
+1
-1
src/ue/mm/mm.hpp
src/ue/mm/mm.hpp
+1
-0
src/ue/mm/register.cpp
src/ue/mm/register.cpp
+13
-4
No files found.
src/ue/mm/dereg.cpp
View file @
81e531d1
...
...
@@ -229,7 +229,7 @@ void NasMm::receiveDeregistrationRequest(const nas::DeRegistrationRequestUeTermi
if
(
cause
==
nas
::
EMmCause
::
PLMN_NOT_ALLOWED
||
cause
==
nas
::
EMmCause
::
TA_NOT_ALLOWED
||
cause
==
nas
::
EMmCause
::
ROAMING_NOT_ALLOWED_IN_TA
||
cause
==
nas
::
EMmCause
::
NO_SUITIBLE_CELLS_IN_TA
||
cause
==
nas
::
EMmCause
::
N1_MODE_NOT_ALLOWED
)
m_regCounter
=
0
;
resetRegAttemptCounter
()
;
if
(
cause
==
nas
::
EMmCause
::
PLMN_NOT_ALLOWED
)
{
...
...
src/ue/mm/mm.hpp
View file @
81e531d1
...
...
@@ -97,6 +97,7 @@ class NasMm
void
receiveMobilityRegistrationReject
(
const
nas
::
RegistrationReject
&
msg
);
void
handleAbnormalInitialRegFailure
(
nas
::
ERegistrationType
regType
);
void
handleAbnormalMobilityRegFailure
(
nas
::
ERegistrationType
regType
);
void
resetRegAttemptCounter
();
private:
/* Authentication */
void
receiveAuthenticationRequest
(
const
nas
::
AuthenticationRequest
&
msg
);
...
...
src/ue/mm/register.cpp
View file @
81e531d1
...
...
@@ -232,7 +232,7 @@ void NasMm::receiveInitialRegistrationAccept(const nas::RegistrationAccept &msg)
// Upon receipt of the REGISTRATION ACCEPT message, the UE shall reset the registration attempt counter, enter state
// 5GMM-REGISTERED and set the 5GS update status to 5U1 UPDATED.
m_regCounter
=
0
;
resetRegAttemptCounter
()
;
switchMmState
(
EMmState
::
MM_REGISTERED
,
EMmSubState
::
MM_REGISTERED_NORMAL_SERVICE
);
switchRmState
(
ERmState
::
RM_REGISTERED
);
switchUState
(
E5UState
::
U1_UPDATED
);
...
...
@@ -342,7 +342,7 @@ void NasMm::receiveMobilityRegistrationAccept(const nas::RegistrationAccept &msg
// "Upon receipt of the REGISTRATION ACCEPT message, the UE shall reset the registration attempt counter and service
// request attempt counter, enter state 5GMM-REGISTERED and set the 5GS update status to 5U1 UPDATED."
m_regCounter
=
0
;
resetRegAttemptCounter
()
;
m_serCounter
=
0
;
switchMmState
(
EMmState
::
MM_REGISTERED
,
EMmSubState
::
MM_REGISTERED_NORMAL_SERVICE
);
switchRmState
(
ERmState
::
RM_REGISTERED
);
...
...
@@ -529,7 +529,7 @@ void NasMm::receiveInitialRegistrationReject(const nas::RegistrationReject &msg)
cause
==
nas
::
EMmCause
::
ROAMING_NOT_ALLOWED_IN_TA
||
cause
==
nas
::
EMmCause
::
NO_SUITIBLE_CELLS_IN_TA
||
cause
==
nas
::
EMmCause
::
N1_MODE_NOT_ALLOWED
||
cause
==
nas
::
EMmCause
::
SERVING_NETWORK_NOT_AUTHORIZED
)
{
m_regCounter
=
0
;
resetRegAttemptCounter
()
;
}
if
(
cause
==
nas
::
EMmCause
::
ILLEGAL_UE
||
cause
==
nas
::
EMmCause
::
ILLEGAL_ME
||
...
...
@@ -689,7 +689,7 @@ void NasMm::receiveMobilityRegistrationReject(const nas::RegistrationReject &msg
cause
==
nas
::
EMmCause
::
ROAMING_NOT_ALLOWED_IN_TA
||
cause
==
nas
::
EMmCause
::
NO_SUITIBLE_CELLS_IN_TA
||
cause
==
nas
::
EMmCause
::
N1_MODE_NOT_ALLOWED
||
cause
==
nas
::
EMmCause
::
SERVING_NETWORK_NOT_AUTHORIZED
)
{
m_regCounter
=
0
;
resetRegAttemptCounter
()
;
}
if
(
cause
==
nas
::
EMmCause
::
ILLEGAL_UE
||
cause
==
nas
::
EMmCause
::
ILLEGAL_ME
||
...
...
@@ -843,4 +843,13 @@ void NasMm::handleAbnormalMobilityRegFailure(nas::ERegistrationType regType)
}
}
void
NasMm
::
resetRegAttemptCounter
()
{
// "When the registration attempt counter is reset,
// the UE shall stop timer T3519 if running, and delete any stored SUCI"
m_regCounter
=
0
;
m_timers
->
t3519
.
stop
();
m_storage
.
m_storedSuci
=
{};
}
}
// namespace nr::ue
\ No newline at end of file
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