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
36e91e85
Commit
36e91e85
authored
May 27, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
L3 RRC/NAS developments
parent
93c3fceb
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
17 deletions
+17
-17
src/ue/nas/mm/auth.cpp
src/ue/nas/mm/auth.cpp
+1
-4
src/ue/nas/mm/base.cpp
src/ue/nas/mm/base.cpp
+1
-1
src/ue/nas/mm/mm.hpp
src/ue/nas/mm/mm.hpp
+1
-1
src/ue/nas/mm/radio.cpp
src/ue/nas/mm/radio.cpp
+6
-6
src/ue/nas/mm/timer.cpp
src/ue/nas/mm/timer.cpp
+2
-2
src/ue/nts.hpp
src/ue/nts.hpp
+6
-3
No files found.
src/ue/nas/mm/auth.cpp
View file @
36e91e85
...
@@ -532,10 +532,7 @@ bool NasMm::networkFailingTheAuthCheck(bool hasChance)
...
@@ -532,10 +532,7 @@ bool NasMm::networkFailingTheAuthCheck(bool hasChance)
m_logger
->
err
(
"Network failing the authentication check"
);
m_logger
->
err
(
"Network failing the authentication check"
);
if
(
m_cmState
==
ECmState
::
CM_CONNECTED
)
if
(
m_cmState
==
ECmState
::
CM_CONNECTED
)
{
localReleaseConnection
(
true
);
localReleaseConnection
();
// TODO: treat the active cell as barred
}
m_timers
->
t3520
.
stop
();
m_timers
->
t3520
.
stop
();
return
true
;
return
true
;
...
...
src/ue/nas/mm/base.cpp
View file @
36e91e85
...
@@ -330,7 +330,7 @@ void NasMm::onSwitchMmState(EMmState oldState, EMmState newState, EMmSubState ol
...
@@ -330,7 +330,7 @@ void NasMm::onSwitchMmState(EMmState oldState, EMmState newState, EMmSubState ol
if
(
m_cmState
==
ECmState
::
CM_CONNECTED
&&
(
m_mmSubState
==
EMmSubState
::
MM_DEREGISTERED_PLMN_SEARCH
||
if
(
m_cmState
==
ECmState
::
CM_CONNECTED
&&
(
m_mmSubState
==
EMmSubState
::
MM_DEREGISTERED_PLMN_SEARCH
||
m_mmSubState
==
EMmSubState
::
MM_REGISTERED_PLMN_SEARCH
))
m_mmSubState
==
EMmSubState
::
MM_REGISTERED_PLMN_SEARCH
))
{
{
localReleaseConnection
();
localReleaseConnection
(
false
);
}
}
// "Timer T3512 is stopped when the UE enters ... the 5GMM-DEREGISTERED state over 3GPP access"
// "Timer T3512 is stopped when the UE enters ... the 5GMM-DEREGISTERED state over 3GPP access"
...
...
src/ue/nas/mm/mm.hpp
View file @
36e91e85
...
@@ -159,7 +159,7 @@ class NasMm
...
@@ -159,7 +159,7 @@ class NasMm
private:
/* Radio */
private:
/* Radio */
void
performPlmnSelection
();
void
performPlmnSelection
();
void
localReleaseConnection
();
void
localReleaseConnection
(
bool
treatBarred
);
void
handleActiveCellChange
(
const
Tai
&
prevTai
);
void
handleActiveCellChange
(
const
Tai
&
prevTai
);
void
handleRrcConnectionSetup
();
void
handleRrcConnectionSetup
();
void
handleRrcConnectionRelease
();
void
handleRrcConnectionRelease
();
...
...
src/ue/nas/mm/radio.cpp
View file @
36e91e85
...
@@ -251,14 +251,14 @@ void NasMm::handleRadioLinkFailure()
...
@@ -251,14 +251,14 @@ void NasMm::handleRadioLinkFailure()
switchMmState
(
EMmSubState
::
MM_DEREGISTERED_PS
);
switchMmState
(
EMmSubState
::
MM_DEREGISTERED_PS
);
}
}
void
NasMm
::
localReleaseConnection
()
void
NasMm
::
localReleaseConnection
(
bool
treatBarred
)
{
{
if
(
m_cmState
==
ECmState
::
CM_IDLE
)
if
(
m_cmState
!=
ECmState
::
CM_IDLE
)
return
;
m_logger
->
info
(
"Performing local release of NAS connection"
);
m_logger
->
info
(
"Performing local release of NAS connection"
);
m_base
->
rrcTask
->
push
(
new
NmUeNasToRrc
(
NmUeNasToRrc
::
LOCAL_RELEASE_CONNECTION
));
auto
*
w
=
new
NmUeNasToRrc
(
NmUeNasToRrc
::
LOCAL_RELEASE_CONNECTION
);
w
->
treatBarred
=
treatBarred
;
m_base
->
rrcTask
->
push
(
w
);
}
}
void
NasMm
::
handlePaging
(
const
std
::
vector
<
GutiMobileIdentity
>
&
tmsiIds
)
void
NasMm
::
handlePaging
(
const
std
::
vector
<
GutiMobileIdentity
>
&
tmsiIds
)
...
...
src/ue/nas/mm/timer.cpp
View file @
36e91e85
...
@@ -74,7 +74,7 @@ void NasMm::onTimerExpire(UeTimer &timer)
...
@@ -74,7 +74,7 @@ void NasMm::onTimerExpire(UeTimer &timer)
if
(
m_lastRegistrationRequest
->
registrationType
.
registrationType
!=
if
(
m_lastRegistrationRequest
->
registrationType
.
registrationType
!=
nas
::
ERegistrationType
::
EMERGENCY_REGISTRATION
)
nas
::
ERegistrationType
::
EMERGENCY_REGISTRATION
)
{
{
localReleaseConnection
();
localReleaseConnection
(
false
);
}
}
handleAbnormalInitialRegFailure
(
regType
);
handleAbnormalInitialRegFailure
(
regType
);
...
@@ -82,7 +82,7 @@ void NasMm::onTimerExpire(UeTimer &timer)
...
@@ -82,7 +82,7 @@ void NasMm::onTimerExpire(UeTimer &timer)
else
if
(
regType
==
nas
::
ERegistrationType
::
MOBILITY_REGISTRATION_UPDATING
||
else
if
(
regType
==
nas
::
ERegistrationType
::
MOBILITY_REGISTRATION_UPDATING
||
regType
==
nas
::
ERegistrationType
::
PERIODIC_REGISTRATION_UPDATING
)
regType
==
nas
::
ERegistrationType
::
PERIODIC_REGISTRATION_UPDATING
)
{
{
localReleaseConnection
();
localReleaseConnection
(
false
);
handleAbnormalMobilityRegFailure
(
regType
);
handleAbnormalMobilityRegFailure
(
regType
);
}
}
}
}
...
...
src/ue/nts.hpp
View file @
36e91e85
...
@@ -101,6 +101,9 @@ struct NmUeNasToRrc : NtsMessage
...
@@ -101,6 +101,9 @@ struct NmUeNasToRrc : NtsMessage
uint32_t
pduId
{};
uint32_t
pduId
{};
OctetString
nasPdu
;
OctetString
nasPdu
;
// LOCAL_RELEASE_CONNECTION
bool
treatBarred
{};
explicit
NmUeNasToRrc
(
PR
present
)
:
NtsMessage
(
NtsMessageType
::
UE_NAS_TO_RRC
),
present
(
present
)
explicit
NmUeNasToRrc
(
PR
present
)
:
NtsMessage
(
NtsMessageType
::
UE_NAS_TO_RRC
),
present
(
present
)
{
{
}
}
...
@@ -191,9 +194,9 @@ struct NmUeNasToApp : NtsMessage
...
@@ -191,9 +194,9 @@ struct NmUeNasToApp : NtsMessage
DOWNLINK_DATA_DELIVERY
DOWNLINK_DATA_DELIVERY
}
present
;
}
present
;
// DOWNLINK_DATA_DELIVERY
// DOWNLINK_DATA_DELIVERY
int
psi
{};
int
psi
{};
OctetString
data
;
OctetString
data
;
explicit
NmUeNasToApp
(
PR
present
)
:
NtsMessage
(
NtsMessageType
::
UE_NAS_TO_APP
),
present
(
present
)
explicit
NmUeNasToApp
(
PR
present
)
:
NtsMessage
(
NtsMessageType
::
UE_NAS_TO_APP
),
present
(
present
)
{
{
...
...
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