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
9b20fb79
Commit
9b20fb79
authored
Jun 06, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UAC implementation
parent
1a6d3c28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
75 additions
and
79 deletions
+75
-79
src/ue/nas/mm/access.cpp
src/ue/nas/mm/access.cpp
+74
-77
src/ue/nas/mm/mm.hpp
src/ue/nas/mm/mm.hpp
+1
-2
No files found.
src/ue/nas/mm/access.cpp
View file @
9b20fb79
...
...
@@ -73,112 +73,109 @@ bool NasMm::isInNonAllowedArea()
return
false
;
}
std
::
bitset
<
16
>
NasMm
::
determineAccessIdentities
()
void
NasMm
::
performUac
()
{
std
::
bitset
<
16
>
ais
;
auto
accessIdentities
=
[
this
]()
{
std
::
bitset
<
16
>
ais
;
auto
currentPlmn
=
m_base
->
shCtx
.
getCurrentPlmn
();
auto
currentPlmn
=
m_base
->
shCtx
.
getCurrentPlmn
();
if
(
m_base
->
config
->
uacAic
.
mps
&&
m_rmState
==
ERmState
::
RM_REGISTERED
&&
currentPlmn
.
hasValue
())
{
if
(
currentPlmn
==
m_base
->
config
->
hplmn
||
m_storage
->
equivalentPlmnList
->
contains
(
currentPlmn
)
||
currentPlmn
.
mcc
==
m_base
->
config
->
hplmn
.
mcc
)
if
(
m_base
->
config
->
uacAic
.
mps
&&
m_rmState
==
ERmState
::
RM_REGISTERED
&&
currentPlmn
.
hasValue
())
{
ais
[
1
]
=
true
;
if
(
currentPlmn
==
m_base
->
config
->
hplmn
||
m_storage
->
equivalentPlmnList
->
contains
(
currentPlmn
)
||
currentPlmn
.
mcc
==
m_base
->
config
->
hplmn
.
mcc
)
ais
[
1
]
=
true
;
}
}
if
(
m_base
->
config
->
uacAic
.
mcs
&&
m_rmState
==
ERmState
::
RM_REGISTERED
&&
currentPlmn
.
hasValue
())
{
if
(
currentPlmn
==
m_base
->
config
->
hplmn
||
m_storage
->
equivalentPlmnList
->
contains
(
currentPlmn
)
||
currentPlmn
.
mcc
==
m_base
->
config
->
hplmn
.
mcc
)
if
(
m_base
->
config
->
uacAic
.
mcs
&&
m_rmState
==
ERmState
::
RM_REGISTERED
&&
currentPlmn
.
hasValue
())
{
ais
[
2
]
=
true
;
if
(
currentPlmn
==
m_base
->
config
->
hplmn
||
m_storage
->
equivalentPlmnList
->
contains
(
currentPlmn
)
||
currentPlmn
.
mcc
==
m_base
->
config
->
hplmn
.
mcc
)
ais
[
2
]
=
true
;
}
}
if
(
m_nwFeatureSupport
)
{
if
(
m_nwFeatureSupport
->
mpsi
==
nas
::
EMpsIndicator
::
SUPPORTED
)
ais
[
1
]
=
true
;
if
(
m_nwFeatureSupport
->
mcsi
&&
m_nwFeatureSupport
->
mcsi
==
nas
::
EMcsIndicator
::
VALID
)
ais
[
2
]
=
true
;
}
if
(
m_nwFeatureSupport
)
{
if
(
m_nwFeatureSupport
->
mpsi
==
nas
::
EMpsIndicator
::
SUPPORTED
)
ais
[
1
]
=
true
;
if
(
m_nwFeatureSupport
->
mcsi
&&
m_nwFeatureSupport
->
mcsi
==
nas
::
EMcsIndicator
::
VALID
)
ais
[
2
]
=
true
;
}
if
(
currentPlmn
.
hasValue
()
&&
(
currentPlmn
==
m_base
->
config
->
hplmn
||
m_storage
->
equivalentPlmnList
->
contains
(
currentPlmn
)))
{
ais
[
11
]
=
true
;
ais
[
15
]
=
true
;
}
if
(
currentPlmn
.
hasValue
()
&&
(
currentPlmn
==
m_base
->
config
->
hplmn
||
m_storage
->
equivalentPlmnList
->
contains
(
currentPlmn
)))
{
ais
[
11
]
=
true
;
ais
[
15
]
=
true
;
}
if
(
currentPlmn
.
hasValue
()
&&
(
currentPlmn
==
m_base
->
config
->
hplmn
||
currentPlmn
.
mcc
==
m_base
->
config
->
hplmn
.
mcc
))
{
ais
[
12
]
=
true
;
ais
[
13
]
=
true
;
ais
[
14
]
=
true
;
}
if
(
currentPlmn
.
hasValue
()
&&
(
currentPlmn
==
m_base
->
config
->
hplmn
||
currentPlmn
.
mcc
==
m_base
->
config
->
hplmn
.
mcc
))
{
ais
[
12
]
=
true
;
ais
[
13
]
=
true
;
ais
[
14
]
=
true
;
}
if
(
ais
.
none
())
ais
[
0
]
=
true
;
if
(
ais
.
none
())
ais
[
0
]
=
true
;
return
ais
;
}
return
ais
;
}();
int
NasMm
::
determineAccessCategory
()
{
/* Check for Rule #1 */
if
(
m_procCtl
.
mobilityRegistration
)
{
if
(
m_procCtl
.
mobilityRegistration
==
ERegUpdateCause
::
PAGING_OR_NOTIFICATION
)
auto
accessCategory
=
[
this
]()
{
/* Check for Rule #1 */
if
(
m_procCtl
.
mobilityRegistration
)
{
return
0
;
if
(
m_procCtl
.
mobilityRegistration
==
ERegUpdateCause
::
PAGING_OR_NOTIFICATION
)
{
return
0
;
}
}
}
if
(
m_procCtl
.
serviceRequest
)
{
if
(
m_procCtl
.
serviceRequest
==
EServiceReqCause
::
IDLE_PAGING
||
m_procCtl
.
serviceRequest
==
EServiceReqCause
::
CONNECTED_3GPP_NOTIFICATION_N3GPP
||
m_procCtl
.
serviceRequest
==
EServiceReqCause
::
IDLE_3GPP_NOTIFICATION_N3GPP
)
if
(
m_procCtl
.
serviceRequest
)
{
return
0
;
if
(
m_procCtl
.
serviceRequest
==
EServiceReqCause
::
IDLE_PAGING
||
m_procCtl
.
serviceRequest
==
EServiceReqCause
::
CONNECTED_3GPP_NOTIFICATION_N3GPP
||
m_procCtl
.
serviceRequest
==
EServiceReqCause
::
IDLE_3GPP_NOTIFICATION_N3GPP
)
{
return
0
;
}
}
}
/* Check for Rule #2 */
if
(
hasEmergency
())
return
2
;
/* Check for Rule #2 */
if
(
hasEmergency
())
return
2
;
/* Check for Rule #3 */
// TODO: Operator defined access category not supported
/* Check for Rule #3 */
// TODO: Operator defined access category not supported
/* Check for Rule #4 */
// TODO: Access attempt for delay tolerant service
/* Check for Rule #4 */
// TODO: Access attempt for delay tolerant service
/* Check for Rule #5 */
// TODO: MO MMTel voice call
/* Check for Rule #5 */
// TODO: MO MMTel voice call
/* Check for Rule #6 */
// TODO: MO MMTel video call
/* Check for Rule #6 */
// TODO: MO MMTel video call
/* Check for Rule #7 */
// TODO: MO SMS over NAS or MO SMSoIP
/* Check for Rule #7 */
// TODO: MO SMS over NAS or MO SMSoIP
/* Check for Rule #8 */
if
(
hasPendingProcedure
()
&&
!
m_sm
->
anyUplinkDataPending
())
return
3
;
/* Check for Rule #8 */
if
(
hasPendingProcedure
()
&&
!
m_sm
->
anyUplinkDataPending
())
return
3
;
/* Check for Rule #9 */
if
(
hasPendingProcedure
()
&&
m_sm
->
anyUplinkDataPending
())
return
7
;
/* Check for Rule #9 */
if
(
hasPendingProcedure
()
&&
m_sm
->
anyUplinkDataPending
())
return
7
;
/* Check for Rule #10 */
if
(
m_sm
->
anyUplinkDataPending
())
return
7
;
/* Check for Rule #10 */
if
(
m_sm
->
anyUplinkDataPending
())
return
7
;
return
0
;
return
0
;
}();
}
}
// namespace nr::ue
src/ue/nas/mm/mm.hpp
View file @
9b20fb79
...
...
@@ -174,8 +174,7 @@ class NasMm
bool
hasEmergency
();
void
setN1Capability
(
bool
enabled
);
bool
isInNonAllowedArea
();
std
::
bitset
<
16
>
determineAccessIdentities
();
int
determineAccessCategory
();
void
performUac
();
private:
/* eCall */
bool
startECallInactivityIfNeeded
();
...
...
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