Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
wangjie
OpenXG-RAN
Commits
ee82aed1
Commit
ee82aed1
authored
Jul 04, 2016
by
Frédéric Leroy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UE: move _nas_proc_data to nas_user_t struct
parent
2ee6ae11
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
127 additions
and
109 deletions
+127
-109
openair3/NAS/UE/UEprocess.c
openair3/NAS/UE/UEprocess.c
+6
-3
openair3/NAS/UE/nas_network.c
openair3/NAS/UE/nas_network.c
+3
-2
openair3/NAS/UE/nas_network.h
openair3/NAS/UE/nas_network.h
+3
-1
openair3/NAS/UE/nas_proc.c
openair3/NAS/UE/nas_proc.c
+25
-35
openair3/NAS/UE/nas_proc.h
openair3/NAS/UE/nas_proc.h
+7
-6
openair3/NAS/UE/nas_proc_defs.h
openair3/NAS/UE/nas_proc_defs.h
+16
-0
openair3/NAS/UE/nas_ue_task.c
openair3/NAS/UE/nas_ue_task.c
+4
-4
openair3/NAS/UE/nas_user.c
openair3/NAS/UE/nas_user.c
+55
-55
openair3/NAS/UE/nas_user.h
openair3/NAS/UE/nas_user.h
+4
-3
openair3/NAS/UE/user_defs.h
openair3/NAS/UE/user_defs.h
+4
-0
No files found.
openair3/NAS/UE/UEprocess.c
View file @
ee82aed1
...
@@ -46,6 +46,7 @@
...
@@ -46,6 +46,7 @@
#include "nas_user.h"
#include "nas_user.h"
#include "nas_network.h"
#include "nas_network.h"
#include "nas_parser.h"
#include "nas_parser.h"
#include "user_defs.h"
#include <stdlib.h> // exit
#include <stdlib.h> // exit
#include <poll.h> // poll
#include <poll.h> // poll
...
@@ -72,6 +73,8 @@ static void _nas_signal_handler(int signal);
...
@@ -72,6 +73,8 @@ static void _nas_signal_handler(int signal);
static
void
_nas_clean
(
int
usr_fd
,
int
net_fd
);
static
void
_nas_clean
(
int
usr_fd
,
int
net_fd
);
uint8_t
usim_test
=
0
;
uint8_t
usim_test
=
0
;
// FIXME user must be set up with right itti message instance
nas_user_t
*
user
=
NULL
;
/****************************************************************************/
/****************************************************************************/
/****************** E X P O R T E D F U N C T I O N S ******************/
/****************** E X P O R T E D F U N C T I O N S ******************/
...
@@ -129,7 +132,7 @@ int main(int argc, const char *argv[])
...
@@ -129,7 +132,7 @@ int main(int argc, const char *argv[])
/*
/*
* Initialize the NAS contexts
* Initialize the NAS contexts
*/
*/
nas_user_initialize
(
&
user_api_emm_callback
,
&
user_api_esm_callback
,
nas_user_initialize
(
user
,
&
user_api_emm_callback
,
&
user_api_esm_callback
,
FIRMWARE_VERSION
);
FIRMWARE_VERSION
);
nas_network_initialize
();
nas_network_initialize
();
...
@@ -226,7 +229,7 @@ static void *_nas_user_mngr(void *args)
...
@@ -226,7 +229,7 @@ static void *_nas_user_mngr(void *args)
/* User receiving loop */
/* User receiving loop */
while
(
!
exit_loop
)
{
while
(
!
exit_loop
)
{
exit_loop
=
nas_user_receive_and_process
(
fd
,
NULL
);
exit_loop
=
nas_user_receive_and_process
(
user
,
NULL
);
}
}
/* Close the connection to the user application layer */
/* Close the connection to the user application layer */
...
@@ -291,7 +294,7 @@ static void *_nas_network_mngr(void *args)
...
@@ -291,7 +294,7 @@ static void *_nas_network_mngr(void *args)
}
}
/* Process the network data message */
/* Process the network data message */
ret_code
=
nas_network_process_data
(
network_message_id
,
ret_code
=
nas_network_process_data
(
user
,
network_message_id
,
network_api_get_data
());
network_api_get_data
());
if
(
ret_code
!=
RETURNok
)
{
if
(
ret_code
!=
RETURNok
)
{
...
...
openair3/NAS/UE/nas_network.c
View file @
ee82aed1
...
@@ -43,6 +43,7 @@ Description NAS procedure functions triggered by the network
...
@@ -43,6 +43,7 @@ Description NAS procedure functions triggered by the network
#include "as_message.h"
#include "as_message.h"
#include "nas_proc.h"
#include "nas_proc.h"
#include "user_defs.h"
/****************************************************************************/
/****************************************************************************/
/**************** E X T E R N A L D E F I N I T I O N S ****************/
/**************** E X T E R N A L D E F I N I T I O N S ****************/
...
@@ -118,7 +119,7 @@ void nas_network_cleanup(void)
...
@@ -118,7 +119,7 @@ void nas_network_cleanup(void)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_network_process_data
(
int
msg_id
,
const
void
*
data
)
int
nas_network_process_data
(
nas_user_t
*
user
,
int
msg_id
,
const
void
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -142,7 +143,7 @@ int nas_network_process_data(int msg_id, const void *data)
...
@@ -142,7 +143,7 @@ int nas_network_process_data(int msg_id, const void *data)
/* Received cell information confirm */
/* Received cell information confirm */
const
cell_info_cnf_t
*
info
=
&
msg
->
msg
.
cell_info_cnf
;
const
cell_info_cnf_t
*
info
=
&
msg
->
msg
.
cell_info_cnf
;
int
cell_found
=
(
info
->
errCode
==
AS_SUCCESS
);
int
cell_found
=
(
info
->
errCode
==
AS_SUCCESS
);
rc
=
nas_proc_cell_info
(
cell_found
,
info
->
tac
,
rc
=
nas_proc_cell_info
(
user
,
cell_found
,
info
->
tac
,
info
->
cellID
,
info
->
rat
,
info
->
cellID
,
info
->
rat
,
info
->
rsrp
,
info
->
rsrq
);
info
->
rsrp
,
info
->
rsrq
);
break
;
break
;
...
...
openair3/NAS/UE/nas_network.h
View file @
ee82aed1
...
@@ -40,6 +40,8 @@ Description NAS procedure functions triggered by the network
...
@@ -40,6 +40,8 @@ Description NAS procedure functions triggered by the network
#ifndef __NAS_NETWORK_H__
#ifndef __NAS_NETWORK_H__
#define __NAS_NETWORK_H__
#define __NAS_NETWORK_H__
#include "user_defs.h"
/****************************************************************************/
/****************************************************************************/
/********************* G L O B A L C O N S T A N T S *******************/
/********************* G L O B A L C O N S T A N T S *******************/
/****************************************************************************/
/****************************************************************************/
...
@@ -61,7 +63,7 @@ void nas_network_initialize(void);
...
@@ -61,7 +63,7 @@ void nas_network_initialize(void);
void
nas_network_cleanup
(
void
);
void
nas_network_cleanup
(
void
);
int
nas_network_process_data
(
int
command_id
,
const
void
*
data
);
int
nas_network_process_data
(
nas_user_t
*
user
,
int
command_id
,
const
void
*
data
);
const
void
*
nas_network_get_data
(
void
);
const
void
*
nas_network_get_data
(
void
);
...
...
openair3/NAS/UE/nas_proc.c
View file @
ee82aed1
...
@@ -38,6 +38,7 @@ Description NAS procedure call manager
...
@@ -38,6 +38,7 @@ Description NAS procedure call manager
#include "nas_proc.h"
#include "nas_proc.h"
#include "nas_log.h"
#include "nas_log.h"
#include "nas_user.h"
#include "emm_main.h"
#include "emm_main.h"
#include "emm_sap.h"
#include "emm_sap.h"
...
@@ -62,17 +63,6 @@ Description NAS procedure call manager
...
@@ -62,17 +63,6 @@ Description NAS procedure call manager
#define NAS_PROC_RSRQ_UNKNOWN 255
#define NAS_PROC_RSRQ_UNKNOWN 255
#define NAS_PROC_RSRP_UNKNOWN 255
#define NAS_PROC_RSRP_UNKNOWN 255
/*
* Local NAS data
*/
static
struct
{
/* EPS capibility status */
int
EPS_capability_status
;
/* Reference signal received quality */
int
rsrq
;
/* Reference signal received power */
int
rsrp
;
}
_nas_proc_data
;
static
int
_nas_proc_activate
(
int
cid
,
int
apply_to_all
);
static
int
_nas_proc_activate
(
int
cid
,
int
apply_to_all
);
static
int
_nas_proc_deactivate
(
int
cid
,
int
apply_to_all
);
static
int
_nas_proc_deactivate
(
int
cid
,
int
apply_to_all
);
...
@@ -97,15 +87,15 @@ static int _nas_proc_deactivate(int cid, int apply_to_all);
...
@@ -97,15 +87,15 @@ static int _nas_proc_deactivate(int cid, int apply_to_all);
** Others: _nas_proc_data **
** Others: _nas_proc_data **
** **
** **
***************************************************************************/
***************************************************************************/
void
nas_proc_initialize
(
emm_indication_callback_t
emm_cb
,
void
nas_proc_initialize
(
nas_user_t
*
user
,
emm_indication_callback_t
emm_cb
,
esm_indication_callback_t
esm_cb
,
const
char
*
imei
)
esm_indication_callback_t
esm_cb
,
const
char
*
imei
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
/* Initialize local NAS data */
/* Initialize local NAS data */
_nas_proc_data
.
EPS_capability_status
=
FALSE
;
user
->
proc
.
EPS_capability_status
=
FALSE
;
_nas_proc_data
.
rsrq
=
NAS_PROC_RSRQ_UNKNOWN
;
user
->
proc
.
rsrq
=
NAS_PROC_RSRQ_UNKNOWN
;
_nas_proc_data
.
rsrp
=
NAS_PROC_RSRP_UNKNOWN
;
user
->
proc
.
rsrp
=
NAS_PROC_RSRP_UNKNOWN
;
/* Initialize the EMM procedure manager */
/* Initialize the EMM procedure manager */
emm_main_initialize
(
emm_cb
,
imei
);
emm_main_initialize
(
emm_cb
,
imei
);
...
@@ -131,7 +121,7 @@ void nas_proc_initialize(emm_indication_callback_t emm_cb,
...
@@ -131,7 +121,7 @@ void nas_proc_initialize(emm_indication_callback_t emm_cb,
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
void
nas_proc_cleanup
(
void
)
void
nas_proc_cleanup
()
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -172,7 +162,7 @@ void nas_proc_cleanup(void)
...
@@ -172,7 +162,7 @@ void nas_proc_cleanup(void)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_enable_s1_mode
(
void
)
int
nas_proc_enable_s1_mode
(
nas_user_t
*
user
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -183,7 +173,7 @@ int nas_proc_enable_s1_mode(void)
...
@@ -183,7 +173,7 @@ int nas_proc_enable_s1_mode(void)
* Notify the EMM procedure call manager that EPS capability
* Notify the EMM procedure call manager that EPS capability
* of the UE is enabled
* of the UE is enabled
*/
*/
_nas_proc_data
.
EPS_capability_status
=
TRUE
;
user
->
proc
.
EPS_capability_status
=
TRUE
;
emm_sap
.
primitive
=
EMMREG_S1_ENABLED
;
emm_sap
.
primitive
=
EMMREG_S1_ENABLED
;
rc
=
emm_sap_send
(
&
emm_sap
);
rc
=
emm_sap_send
(
&
emm_sap
);
...
@@ -205,7 +195,7 @@ int nas_proc_enable_s1_mode(void)
...
@@ -205,7 +195,7 @@ int nas_proc_enable_s1_mode(void)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_disable_s1_mode
(
void
)
int
nas_proc_disable_s1_mode
(
nas_user_t
*
user
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -216,7 +206,7 @@ int nas_proc_disable_s1_mode(void)
...
@@ -216,7 +206,7 @@ int nas_proc_disable_s1_mode(void)
* Notify the EMM procedure call manager that EPS capability
* Notify the EMM procedure call manager that EPS capability
* of the UE is disabled
* of the UE is disabled
*/
*/
_nas_proc_data
.
EPS_capability_status
=
FALSE
;
user
->
proc
.
EPS_capability_status
=
FALSE
;
emm_sap
.
primitive
=
EMMREG_S1_DISABLED
;
emm_sap
.
primitive
=
EMMREG_S1_DISABLED
;
rc
=
emm_sap_send
(
&
emm_sap
);
rc
=
emm_sap_send
(
&
emm_sap
);
...
@@ -238,11 +228,11 @@ int nas_proc_disable_s1_mode(void)
...
@@ -238,11 +228,11 @@ int nas_proc_disable_s1_mode(void)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_get_eps
(
int
*
stat
)
int
nas_proc_get_eps
(
nas_user_t
*
user
,
int
*
stat
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
*
stat
=
_nas_proc_data
.
EPS_capability_status
;
*
stat
=
user
->
proc
.
EPS_capability_status
;
LOG_FUNC_RETURN
(
RETURNok
);
LOG_FUNC_RETURN
(
RETURNok
);
}
}
...
@@ -358,12 +348,12 @@ int nas_proc_get_msisdn(char *msisdn_str, int *ton_npi)
...
@@ -358,12 +348,12 @@ int nas_proc_get_msisdn(char *msisdn_str, int *ton_npi)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_get_signal_quality
(
int
*
rsrq
,
int
*
rsrp
)
int
nas_proc_get_signal_quality
(
nas_user_t
*
user
,
int
*
rsrq
,
int
*
rsrp
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
*
rsrq
=
_nas_proc_data
.
rsrq
;
*
rsrq
=
user
->
proc
.
rsrq
;
*
rsrp
=
_nas_proc_data
.
rsrp
;
*
rsrp
=
user
->
proc
.
rsrp
;
LOG_FUNC_RETURN
(
RETURNok
);
LOG_FUNC_RETURN
(
RETURNok
);
}
}
...
@@ -426,7 +416,7 @@ int nas_proc_register(int mode, int format, const network_plmn_t *oper, int AcT)
...
@@ -426,7 +416,7 @@ int nas_proc_register(int mode, int format, const network_plmn_t *oper, int AcT)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_deregister
(
void
)
int
nas_proc_deregister
()
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -604,7 +594,7 @@ int nas_proc_detach(int switch_off)
...
@@ -604,7 +594,7 @@ int nas_proc_detach(int switch_off)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_attach
(
void
)
int
nas_proc_attach
()
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -636,7 +626,7 @@ int nas_proc_attach(void)
...
@@ -636,7 +626,7 @@ int nas_proc_attach(void)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_get_attach_status
(
void
)
int
nas_proc_get_attach_status
()
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -659,7 +649,7 @@ int nas_proc_get_attach_status(void)
...
@@ -659,7 +649,7 @@ int nas_proc_get_attach_status(void)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_get_pdn_range
(
void
)
int
nas_proc_get_pdn_range
()
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1021,7 +1011,7 @@ int nas_proc_activate_pdn(int cid)
...
@@ -1021,7 +1011,7 @@ int nas_proc_activate_pdn(int cid)
** Others: _nas_proc_data **
** Others: _nas_proc_data **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_cell_info
(
int
found
,
tac_t
tac
,
ci_t
ci
,
AcT_t
AcT
,
int
nas_proc_cell_info
(
nas_user_t
*
user
,
int
found
,
tac_t
tac
,
ci_t
ci
,
AcT_t
AcT
,
uint8_t
rsrq
,
uint8_t
rsrp
)
uint8_t
rsrq
,
uint8_t
rsrp
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1030,8 +1020,8 @@ int nas_proc_cell_info(int found, tac_t tac, ci_t ci, AcT_t AcT,
...
@@ -1030,8 +1020,8 @@ int nas_proc_cell_info(int found, tac_t tac, ci_t ci, AcT_t AcT,
int
rc
;
int
rc
;
/* Store LTE signal strength/quality measurement data */
/* Store LTE signal strength/quality measurement data */
_nas_proc_data
.
rsrq
=
rsrq
;
user
->
proc
.
rsrq
=
rsrq
;
_nas_proc_data
.
rsrp
=
rsrp
;
user
->
proc
.
rsrp
=
rsrp
;
/*
/*
* Notify the EMM procedure call manager that cell information
* Notify the EMM procedure call manager that cell information
...
@@ -1103,7 +1093,7 @@ int nas_proc_establish_cnf(const Byte_t *data, uint32_t len)
...
@@ -1103,7 +1093,7 @@ int nas_proc_establish_cnf(const Byte_t *data, uint32_t len)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_establish_rej
(
void
)
int
nas_proc_establish_rej
()
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1170,7 +1160,7 @@ int nas_proc_release_ind(int cause)
...
@@ -1170,7 +1160,7 @@ int nas_proc_release_ind(int cause)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_ul_transfer_cnf
(
void
)
int
nas_proc_ul_transfer_cnf
()
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1207,7 +1197,7 @@ int nas_proc_ul_transfer_cnf(void)
...
@@ -1207,7 +1197,7 @@ int nas_proc_ul_transfer_cnf(void)
** Others: None **
** Others: None **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_proc_ul_transfer_rej
(
void
)
int
nas_proc_ul_transfer_rej
()
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
...
openair3/NAS/UE/nas_proc.h
View file @
ee82aed1
...
@@ -40,6 +40,7 @@ Description NAS procedure call manager
...
@@ -40,6 +40,7 @@ Description NAS procedure call manager
#include "commonDef.h"
#include "commonDef.h"
#include "networkDef.h"
#include "networkDef.h"
#include "user_defs.h"
#include "emm_main.h"
#include "emm_main.h"
#include "esm_ebr.h"
#include "esm_ebr.h"
...
@@ -59,7 +60,7 @@ Description NAS procedure call manager
...
@@ -59,7 +60,7 @@ Description NAS procedure call manager
/****************** E X P O R T E D F U N C T I O N S ******************/
/****************** E X P O R T E D F U N C T I O N S ******************/
/****************************************************************************/
/****************************************************************************/
void
nas_proc_initialize
(
emm_indication_callback_t
emm_cb
,
void
nas_proc_initialize
(
nas_user_t
*
user
,
emm_indication_callback_t
emm_cb
,
esm_indication_callback_t
esm_cb
,
const
char
*
imei
);
esm_indication_callback_t
esm_cb
,
const
char
*
imei
);
void
nas_proc_cleanup
(
void
);
void
nas_proc_cleanup
(
void
);
...
@@ -70,14 +71,14 @@ void nas_proc_cleanup(void);
...
@@ -70,14 +71,14 @@ void nas_proc_cleanup(void);
* --------------------------------------------------------------------------
* --------------------------------------------------------------------------
*/
*/
int
nas_proc_enable_s1_mode
(
void
);
int
nas_proc_enable_s1_mode
(
nas_user_t
*
user
);
int
nas_proc_disable_s1_mode
(
void
);
int
nas_proc_disable_s1_mode
(
nas_user_t
*
user
);
int
nas_proc_get_eps
(
int
*
stat
);
int
nas_proc_get_eps
(
nas_user_t
*
user
,
int
*
stat
);
int
nas_proc_get_imsi
(
char
*
imsi_str
);
int
nas_proc_get_imsi
(
char
*
imsi_str
);
int
nas_proc_get_msisdn
(
char
*
msisdn_str
,
int
*
ton_npi
);
int
nas_proc_get_msisdn
(
char
*
msisdn_str
,
int
*
ton_npi
);
int
nas_proc_get_signal_quality
(
int
*
rsrq
,
int
*
rsrp
);
int
nas_proc_get_signal_quality
(
nas_user_t
*
user
,
int
*
rsrq
,
int
*
rsrp
);
int
nas_proc_register
(
int
mode
,
int
format
,
const
network_plmn_t
*
oper
,
int
AcT
);
int
nas_proc_register
(
int
mode
,
int
format
,
const
network_plmn_t
*
oper
,
int
AcT
);
int
nas_proc_deregister
(
void
);
int
nas_proc_deregister
(
void
);
...
@@ -110,7 +111,7 @@ int nas_proc_activate_pdn(int cid);
...
@@ -110,7 +111,7 @@ int nas_proc_activate_pdn(int cid);
* --------------------------------------------------------------------------
* --------------------------------------------------------------------------
*/
*/
int
nas_proc_cell_info
(
int
found
,
tac_t
tac
,
ci_t
ci
,
AcT_t
rat
,
uint8_t
rsrp
,
int
nas_proc_cell_info
(
nas_user_t
*
user
,
int
found
,
tac_t
tac
,
ci_t
ci
,
AcT_t
rat
,
uint8_t
rsrp
,
uint8_t
rsrq
);
uint8_t
rsrq
);
int
nas_proc_establish_cnf
(
const
Byte_t
*
data
,
uint32_t
len
);
int
nas_proc_establish_cnf
(
const
Byte_t
*
data
,
uint32_t
len
);
...
...
openair3/NAS/UE/nas_proc_defs.h
0 → 100644
View file @
ee82aed1
#ifndef _NAS_PROC_DEFS_H
#define _NAS_PROC_DEFS_H
/*
* Local NAS data
*/
typedef
struct
{
/* EPS capibility status */
int
EPS_capability_status
;
/* Reference signal received quality */
int
rsrq
;
/* Reference signal received power */
int
rsrp
;
}
proc_data_t
;
#endif
openair3/NAS/UE/nas_ue_task.c
View file @
ee82aed1
...
@@ -49,7 +49,7 @@ static int nas_ue_process_events(nas_user_t *user, struct epoll_event *events, i
...
@@ -49,7 +49,7 @@ static int nas_ue_process_events(nas_user_t *user, struct epoll_event *events, i
if
(
events
[
event
].
events
!=
0
)
{
if
(
events
[
event
].
events
!=
0
)
{
/* If the event has not been yet been processed (not an itti message) */
/* If the event has not been yet been processed (not an itti message) */
if
(
events
[
event
].
data
.
fd
==
user
->
fd
)
{
if
(
events
[
event
].
data
.
fd
==
user
->
fd
)
{
exit_loop
=
nas_user_receive_and_process
(
&
user
->
fd
,
NULL
);
exit_loop
=
nas_user_receive_and_process
(
user
,
NULL
);
}
else
{
}
else
{
LOG_E
(
NAS
,
"[UE] Received an event from an unknown fd %d!
\n
"
,
events
[
event
].
data
.
fd
);
LOG_E
(
NAS
,
"[UE] Received an event from an unknown fd %d!
\n
"
,
events
[
event
].
data
.
fd
);
}
}
...
@@ -89,7 +89,7 @@ void *nas_ue_task(void *args_p)
...
@@ -89,7 +89,7 @@ void *nas_ue_task(void *args_p)
}
}
/* Initialize NAS user */
/* Initialize NAS user */
nas_user_initialize
(
&
user_api_emm_callback
,
&
user_api_esm_callback
,
FIRMWARE_VERSION
);
nas_user_initialize
(
user
,
&
user_api_emm_callback
,
&
user_api_esm_callback
,
FIRMWARE_VERSION
);
}
}
/* Set UE activation state */
/* Set UE activation state */
...
@@ -117,7 +117,7 @@ void *nas_ue_task(void *args_p)
...
@@ -117,7 +117,7 @@ void *nas_ue_task(void *args_p)
/* Send an activate modem command to NAS like UserProcess should do it */
/* Send an activate modem command to NAS like UserProcess should do it */
char
*
user_data
=
"at+cfun=1
\r
"
;
char
*
user_data
=
"at+cfun=1
\r
"
;
nas_user_receive_and_process
(
&
user
->
fd
,
user_data
);
nas_user_receive_and_process
(
user
,
user_data
);
}
}
#endif
#endif
break
;
break
;
...
@@ -137,7 +137,7 @@ void *nas_ue_task(void *args_p)
...
@@ -137,7 +137,7 @@ void *nas_ue_task(void *args_p)
{
{
int
cell_found
=
(
NAS_CELL_SELECTION_CNF
(
msg_p
).
errCode
==
AS_SUCCESS
);
int
cell_found
=
(
NAS_CELL_SELECTION_CNF
(
msg_p
).
errCode
==
AS_SUCCESS
);
nas_proc_cell_info
(
cell_found
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
tac
,
nas_proc_cell_info
(
user
,
cell_found
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
tac
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
cellID
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
rat
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
cellID
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
rat
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
rsrq
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
rsrp
);
NAS_CELL_SELECTION_CNF
(
msg_p
).
rsrq
,
NAS_CELL_SELECTION_CNF
(
msg_p
).
rsrp
);
}
}
...
...
openair3/NAS/UE/nas_user.c
View file @
ee82aed1
...
@@ -37,8 +37,7 @@ Description NAS procedure functions triggered by the user
...
@@ -37,8 +37,7 @@ Description NAS procedure functions triggered by the user
*****************************************************************************/
*****************************************************************************/
#include "nas_user.h"
#include "user_defs.h"
#include "userDef.h"
#include "nas_log.h"
#include "nas_log.h"
#include "memory.h"
#include "memory.h"
...
@@ -47,6 +46,7 @@ Description NAS procedure functions triggered by the user
...
@@ -47,6 +46,7 @@ Description NAS procedure functions triggered by the user
#include "at_error.h"
#include "at_error.h"
#include "user_indication.h"
#include "user_indication.h"
#include "nas_proc.h"
#include "nas_proc.h"
#include "nas_user.h"
#include "user_api.h"
#include "user_api.h"
#include <string.h> // memset, strncpy, strncmp
#include <string.h> // memset, strncpy, strncmp
...
@@ -65,30 +65,30 @@ Description NAS procedure functions triggered by the user
...
@@ -65,30 +65,30 @@ Description NAS procedure functions triggered by the user
* Functions executed upon receiving AT command from the user
* Functions executed upon receiving AT command from the user
* ---------------------------------------------------------------------
* ---------------------------------------------------------------------
*/
*/
static
int
_nas_user_proc_cgsn
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgsn
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgmi
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgmi
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgmm
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgmm
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgmr
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgmr
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cimi
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cimi
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cfun
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cfun
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cpin
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cpin
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_csq
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_csq
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cesq
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cesq
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cops
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cops
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgatt
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgatt
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_creg
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_creg
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgreg
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgreg
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cereg
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cereg
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgdcont
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgdcont
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgact
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgact
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cmee
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cmee
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_clck
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_clck
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgpaddr
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cgpaddr
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_cnum
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_cnum
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
static
int
_nas_user_proc_clac
(
const
at_command_t
*
data
);
static
int
_nas_user_proc_clac
(
nas_user_t
*
user
,
const
at_command_t
*
data
);
/* NAS procedures applicable to AT commands */
/* NAS procedures applicable to AT commands */
typedef
int
(
*
_nas_user_procedure_t
)
(
const
at_command_t
*
);
typedef
int
(
*
_nas_user_procedure_t
)
(
nas_user_t
*
,
const
at_command_t
*
);
static
_nas_user_procedure_t
_nas_user_procedure
[
AT_COMMAND_ID_MAX
]
=
{
static
_nas_user_procedure_t
_nas_user_procedure
[
AT_COMMAND_ID_MAX
]
=
{
NULL
,
NULL
,
...
@@ -186,7 +186,7 @@ static user_nvdata_t _nas_user_nvdata;
...
@@ -186,7 +186,7 @@ static user_nvdata_t _nas_user_nvdata;
** Others: _nas_user_nvdata, _nas_user_context **
** Others: _nas_user_nvdata, _nas_user_context **
** **
** **
***************************************************************************/
***************************************************************************/
void
nas_user_initialize
(
emm_indication_callback_t
emm_cb
,
void
nas_user_initialize
(
nas_user_t
*
user
,
emm_indication_callback_t
emm_cb
,
esm_indication_callback_t
esm_cb
,
const
char
*
version
)
esm_indication_callback_t
esm_cb
,
const
char
*
version
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -214,7 +214,7 @@ void nas_user_initialize(emm_indication_callback_t emm_cb,
...
@@ -214,7 +214,7 @@ void nas_user_initialize(emm_indication_callback_t emm_cb,
_nas_user_context
.
fun
=
AT_CFUN_FUN_DEFAULT
;
_nas_user_context
.
fun
=
AT_CFUN_FUN_DEFAULT
;
/* Initialize the internal NAS processing data */
/* Initialize the internal NAS processing data */
nas_proc_initialize
(
emm_cb
,
esm_cb
,
_nas_user_nvdata
.
IMEI
);
nas_proc_initialize
(
user
,
emm_cb
,
esm_cb
,
_nas_user_nvdata
.
IMEI
);
LOG_FUNC_OUT
;
LOG_FUNC_OUT
;
}
}
...
@@ -232,7 +232,7 @@ void nas_user_initialize(emm_indication_callback_t emm_cb,
...
@@ -232,7 +232,7 @@ void nas_user_initialize(emm_indication_callback_t emm_cb,
** Outputs: Return: FALSE, TRUE **
** Outputs: Return: FALSE, TRUE **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_user_receive_and_process
(
int
*
fd
,
char
*
message
)
int
nas_user_receive_and_process
(
nas_user_t
*
user
,
char
*
message
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -246,7 +246,7 @@ int nas_user_receive_and_process(int *fd, char *message)
...
@@ -246,7 +246,7 @@ int nas_user_receive_and_process(int *fd, char *message)
bytes
=
user_api_set_data
(
message
);
bytes
=
user_api_set_data
(
message
);
}
else
{
}
else
{
/* Read the user data message */
/* Read the user data message */
bytes
=
user_api_read_data
(
*
fd
);
bytes
=
user_api_read_data
(
user
->
fd
);
if
(
bytes
==
RETURNerror
)
{
if
(
bytes
==
RETURNerror
)
{
/* Failed to read data from the user application layer;
/* Failed to read data from the user application layer;
...
@@ -279,7 +279,7 @@ int nas_user_receive_and_process(int *fd, char *message)
...
@@ -279,7 +279,7 @@ int nas_user_receive_and_process(int *fd, char *message)
}
}
/* Process the user data message */
/* Process the user data message */
ret_code
=
nas_user_process_data
(
data
);
ret_code
=
nas_user_process_data
(
user
,
data
);
if
(
ret_code
!=
RETURNok
)
{
if
(
ret_code
!=
RETURNok
)
{
/* The user data message has not been successfully
/* The user data message has not been successfully
...
@@ -302,7 +302,7 @@ int nas_user_receive_and_process(int *fd, char *message)
...
@@ -302,7 +302,7 @@ int nas_user_receive_and_process(int *fd, char *message)
}
}
/* Send the data message to the user */
/* Send the data message to the user */
bytes
=
user_api_send_data
(
*
fd
,
bytes
);
bytes
=
user_api_send_data
(
user
->
fd
,
bytes
);
if
(
bytes
==
RETURNerror
)
{
if
(
bytes
==
RETURNerror
)
{
/* Failed to send data to the user application layer;
/* Failed to send data to the user application layer;
...
@@ -334,7 +334,7 @@ int nas_user_receive_and_process(int *fd, char *message)
...
@@ -334,7 +334,7 @@ int nas_user_receive_and_process(int *fd, char *message)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
int
nas_user_process_data
(
const
void
*
data
)
int
nas_user_process_data
(
nas_user_t
*
user
,
const
void
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -355,7 +355,7 @@ int nas_user_process_data(const void *data)
...
@@ -355,7 +355,7 @@ int nas_user_process_data(const void *data)
nas_procedure
=
_nas_user_procedure
[
user_data
->
id
];
nas_procedure
=
_nas_user_procedure
[
user_data
->
id
];
if
(
nas_procedure
!=
NULL
)
{
if
(
nas_procedure
!=
NULL
)
{
ret_code
=
(
*
nas_procedure
)(
user_data
);
ret_code
=
(
*
nas_procedure
)(
user
,
user
_data
);
}
else
{
}
else
{
/* AT command related to result format only */
/* AT command related to result format only */
_nas_user_data
.
id
=
user_data
->
id
;
_nas_user_data
.
id
=
user_data
->
id
;
...
@@ -418,7 +418,7 @@ const void *nas_user_get_data(void)
...
@@ -418,7 +418,7 @@ const void *nas_user_get_data(void)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgsn
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgsn
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -470,7 +470,7 @@ static int _nas_user_proc_cgsn(const at_command_t *data)
...
@@ -470,7 +470,7 @@ static int _nas_user_proc_cgsn(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgmi
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgmi
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -522,7 +522,7 @@ static int _nas_user_proc_cgmi(const at_command_t *data)
...
@@ -522,7 +522,7 @@ static int _nas_user_proc_cgmi(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgmm
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgmm
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -575,7 +575,7 @@ static int _nas_user_proc_cgmm(const at_command_t *data)
...
@@ -575,7 +575,7 @@ static int _nas_user_proc_cgmm(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgmr
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgmr
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -631,7 +631,7 @@ static int _nas_user_proc_cgmr(const at_command_t *data)
...
@@ -631,7 +631,7 @@ static int _nas_user_proc_cgmr(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cimi
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cimi
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -692,7 +692,7 @@ static int _nas_user_proc_cimi(const at_command_t *data)
...
@@ -692,7 +692,7 @@ static int _nas_user_proc_cimi(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cfun
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cfun
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -751,7 +751,7 @@ static int _nas_user_proc_cfun(const at_command_t *data)
...
@@ -751,7 +751,7 @@ static int _nas_user_proc_cfun(const at_command_t *data)
case
AT_CFUN_FULL
:
case
AT_CFUN_FULL
:
/* Notify the NAS procedure call manager that the UE is
/* Notify the NAS procedure call manager that the UE is
* operational */
* operational */
ret_code
=
nas_proc_enable_s1_mode
();
ret_code
=
nas_proc_enable_s1_mode
(
user
);
break
;
break
;
default:
default:
...
@@ -805,7 +805,7 @@ static int _nas_user_proc_cfun(const at_command_t *data)
...
@@ -805,7 +805,7 @@ static int _nas_user_proc_cfun(const at_command_t *data)
** Others: _nas_user_context, _nas_user_data **
** Others: _nas_user_context, _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cpin
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cpin
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -891,7 +891,7 @@ static int _nas_user_proc_cpin(const at_command_t *data)
...
@@ -891,7 +891,7 @@ static int _nas_user_proc_cpin(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_csq
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_csq
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -952,7 +952,7 @@ static int _nas_user_proc_csq(const at_command_t *data)
...
@@ -952,7 +952,7 @@ static int _nas_user_proc_csq(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cesq
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cesq
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -979,7 +979,7 @@ static int _nas_user_proc_cesq(const at_command_t *data)
...
@@ -979,7 +979,7 @@ static int _nas_user_proc_cesq(const at_command_t *data)
cesq
->
ber
=
AT_CESQ_BER_UNKNOWN
;
cesq
->
ber
=
AT_CESQ_BER_UNKNOWN
;
cesq
->
rscp
=
AT_CESQ_RSCP_UNKNOWN
;
cesq
->
rscp
=
AT_CESQ_RSCP_UNKNOWN
;
cesq
->
ecno
=
AT_CESQ_ECNO_UNKNOWN
;
cesq
->
ecno
=
AT_CESQ_ECNO_UNKNOWN
;
ret_code
=
nas_proc_get_signal_quality
(
&
cesq
->
rsrq
,
&
cesq
->
rsrp
);
ret_code
=
nas_proc_get_signal_quality
(
user
,
&
cesq
->
rsrq
,
&
cesq
->
rsrp
);
break
;
break
;
case
AT_COMMAND_TST
:
case
AT_COMMAND_TST
:
...
@@ -1017,7 +1017,7 @@ static int _nas_user_proc_cesq(const at_command_t *data)
...
@@ -1017,7 +1017,7 @@ static int _nas_user_proc_cesq(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cops
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cops
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1266,7 +1266,7 @@ static int _nas_user_proc_cops(const at_command_t *data)
...
@@ -1266,7 +1266,7 @@ static int _nas_user_proc_cops(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgatt
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgatt
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1371,7 +1371,7 @@ static int _nas_user_proc_cgatt(const at_command_t *data)
...
@@ -1371,7 +1371,7 @@ static int _nas_user_proc_cgatt(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_creg
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_creg
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1520,7 +1520,7 @@ static int _nas_user_proc_creg(const at_command_t *data)
...
@@ -1520,7 +1520,7 @@ static int _nas_user_proc_creg(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgreg
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgreg
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1669,7 +1669,7 @@ static int _nas_user_proc_cgreg(const at_command_t *data)
...
@@ -1669,7 +1669,7 @@ static int _nas_user_proc_cgreg(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cereg
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cereg
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -1850,7 +1850,7 @@ static int _nas_user_proc_cereg(const at_command_t *data)
...
@@ -1850,7 +1850,7 @@ static int _nas_user_proc_cereg(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgdcont
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgdcont
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -2102,7 +2102,7 @@ static int _nas_user_proc_cgdcont(const at_command_t *data)
...
@@ -2102,7 +2102,7 @@ static int _nas_user_proc_cgdcont(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgact
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgact
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -2229,7 +2229,7 @@ static int _nas_user_proc_cgact(const at_command_t *data)
...
@@ -2229,7 +2229,7 @@ static int _nas_user_proc_cgact(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cmee
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cmee
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -2342,7 +2342,7 @@ static int _nas_user_proc_cmee(const at_command_t *data)
...
@@ -2342,7 +2342,7 @@ static int _nas_user_proc_cmee(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_clck
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_clck
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -2474,7 +2474,7 @@ static int _nas_user_proc_clck(const at_command_t *data)
...
@@ -2474,7 +2474,7 @@ static int _nas_user_proc_clck(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cgpaddr
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cgpaddr
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -2566,7 +2566,7 @@ static int _nas_user_proc_cgpaddr(const at_command_t *data)
...
@@ -2566,7 +2566,7 @@ static int _nas_user_proc_cgpaddr(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_cnum
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_cnum
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
@@ -2627,7 +2627,7 @@ static int _nas_user_proc_cnum(const at_command_t *data)
...
@@ -2627,7 +2627,7 @@ static int _nas_user_proc_cnum(const at_command_t *data)
** Others: _nas_user_data **
** Others: _nas_user_data **
** **
** **
***************************************************************************/
***************************************************************************/
static
int
_nas_user_proc_clac
(
const
at_command_t
*
data
)
static
int
_nas_user_proc_clac
(
nas_user_t
*
user
,
const
at_command_t
*
data
)
{
{
LOG_FUNC_IN
;
LOG_FUNC_IN
;
...
...
openair3/NAS/UE/nas_user.h
View file @
ee82aed1
...
@@ -42,6 +42,7 @@ Description NAS procedure functions triggered by the user
...
@@ -42,6 +42,7 @@ Description NAS procedure functions triggered by the user
#include "networkDef.h"
#include "networkDef.h"
#include "emm_main.h"
#include "emm_main.h"
#include "esm_ebr.h"
#include "esm_ebr.h"
#include "user_defs.h"
/****************************************************************************/
/****************************************************************************/
/********************* G L O B A L C O N S T A N T S *******************/
/********************* G L O B A L C O N S T A N T S *******************/
...
@@ -59,12 +60,12 @@ Description NAS procedure functions triggered by the user
...
@@ -59,12 +60,12 @@ Description NAS procedure functions triggered by the user
/****************** E X P O R T E D F U N C T I O N S ******************/
/****************** E X P O R T E D F U N C T I O N S ******************/
/****************************************************************************/
/****************************************************************************/
void
nas_user_initialize
(
emm_indication_callback_t
emm_cb
,
void
nas_user_initialize
(
nas_user_t
*
user
,
emm_indication_callback_t
emm_cb
,
esm_indication_callback_t
esm_cb
,
const
char
*
version
);
esm_indication_callback_t
esm_cb
,
const
char
*
version
);
int
nas_user_receive_and_process
(
int
*
fd
,
char
*
message
);
int
nas_user_receive_and_process
(
nas_user_t
*
user
,
char
*
message
);
int
nas_user_process_data
(
const
void
*
data
);
int
nas_user_process_data
(
nas_user_t
*
user
,
const
void
*
data
);
const
void
*
nas_user_get_data
(
void
);
const
void
*
nas_user_get_data
(
void
);
...
...
openair3/NAS/UE/user_defs.h
View file @
ee82aed1
...
@@ -45,7 +45,11 @@ Description NAS type definition to manage a user equipment
...
@@ -45,7 +45,11 @@ Description NAS type definition to manage a user equipment
#ifndef __USER_DEFS_H__
#ifndef __USER_DEFS_H__
#define __USER_DEFS_H__
#define __USER_DEFS_H__
#include "nas_proc_defs.h"
typedef
struct
{
typedef
struct
{
int
fd
;
proc_data_t
proc
;
}
nas_user_t
;
}
nas_user_t
;
#endif
#endif
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