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
4b345f15
Commit
4b345f15
authored
Jan 27, 2021
by
laurent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tested with one UE, better intergration with legacy gtpu
parent
954b0f55
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
56 additions
and
32 deletions
+56
-32
common/utils/ocp_itti/intertask_interface.h
common/utils/ocp_itti/intertask_interface.h
+3
-0
openair2/LAYER2/MAC/eNB_scheduler_mch.c
openair2/LAYER2/MAC/eNB_scheduler_mch.c
+1
-1
openair2/LAYER2/MAC/mac_extern.h
openair2/LAYER2/MAC/mac_extern.h
+1
-0
openair2/LAYER2/MAC/pre_processor.c
openair2/LAYER2/MAC/pre_processor.c
+2
-1
openair2/LAYER2/MAC/ue_procedures.c
openair2/LAYER2/MAC/ue_procedures.c
+1
-1
openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
+0
-3
openair3/ocp-gtpu/gtp_itf.cpp
openair3/ocp-gtpu/gtp_itf.cpp
+48
-26
No files found.
common/utils/ocp_itti/intertask_interface.h
View file @
4b345f15
...
@@ -472,6 +472,9 @@ void itti_subscribe_event_fd(task_id_t task_id, int fd);
...
@@ -472,6 +472,9 @@ void itti_subscribe_event_fd(task_id_t task_id, int fd);
void
itti_unsubscribe_event_fd
(
task_id_t
task_id
,
int
fd
);
void
itti_unsubscribe_event_fd
(
task_id_t
task_id
,
int
fd
);
/** \brief Return the list of events excluding the fd associated with itti
/** \brief Return the list of events excluding the fd associated with itti
\the fd associated with itti can return, but it is marked events[i].events &= ~EPOLLIN
\as it is not EPOLLIN, the reader should ignore this fd
\or it can manage the list of fd's in his interest, so ignore the other ones
\param task_id Task ID of the task
\param task_id Task ID of the task
\param events events list
\param events events list
@returns number of events to handle
@returns number of events to handle
...
...
openair2/LAYER2/MAC/eNB_scheduler_mch.c
View file @
4b345f15
...
@@ -84,7 +84,7 @@ get_mbsfn_sf_alloction(module_id_t module_idP, uint8_t CC_id,
...
@@ -84,7 +84,7 @@ get_mbsfn_sf_alloction(module_id_t module_idP, uint8_t CC_id,
static
uint32_t
bytes_in_buffer
=
0
;
static
uint32_t
bytes_in_buffer
=
0
;
static
uint32_t
msi_pmch_stop
=
0
;
static
uint32_t
msi_pmch_stop
=
0
;
uint16
_t
mbms_rab_id
=
2047
;
//[8] = {2047,2047,2047,2047,2047,2047,2047,2047};
rb_id
_t
mbms_rab_id
=
2047
;
//[8] = {2047,2047,2047,2047,2047,2047,2047,2047};
static
uint32_t
msi_sfs
=
0
;
static
uint32_t
msi_sfs
=
0
;
...
...
openair2/LAYER2/MAC/mac_extern.h
View file @
4b345f15
...
@@ -77,4 +77,5 @@ extern eNB_UE_STATS pre_scd_eNB_UE_stats[MAX_NUM_CCs][NUMBER_OF_UE_MAX];
...
@@ -77,4 +77,5 @@ extern eNB_UE_STATS pre_scd_eNB_UE_stats[MAX_NUM_CCs][NUMBER_OF_UE_MAX];
extern
mac_rlc_am_muilist_t
rlc_am_mui
;
extern
mac_rlc_am_muilist_t
rlc_am_mui
;
extern
SCHEDULER_MODES
global_scheduler_mode
;
extern
SCHEDULER_MODES
global_scheduler_mode
;
extern
rb_id_t
mbms_rab_id
;
#endif //DEF_H
#endif //DEF_H
openair2/LAYER2/MAC/pre_processor.c
View file @
4b345f15
...
@@ -734,7 +734,8 @@ void calculate_max_mcs_min_rb(module_id_t mod_id,
...
@@ -734,7 +734,8 @@ void calculate_max_mcs_min_rb(module_id_t mod_id,
/* find maximum MCS */
/* find maximum MCS */
while
((
phr
-
*
tx_power
<
0
||
tbs
>
bytes
)
&&
*
mcs
>
3
)
{
while
((
phr
-
*
tx_power
<
0
||
tbs
>
bytes
)
&&
*
mcs
>
3
)
{
mcs
--
;
*
mcs
=*
mcs
-
1
;
AssertFatal
(
*
rb_index
<
34
,
""
);
tbs
=
get_TBS_UL
(
*
mcs
,
rb_table
[
*
rb_index
]);
tbs
=
get_TBS_UL
(
*
mcs
,
rb_table
[
*
rb_index
]);
*
tx_power
=
estimate_ue_tx_power
(
tbs
*
8
,
rb_table
[
*
rb_index
],
0
,
Ncp
,
0
);
*
tx_power
=
estimate_ue_tx_power
(
tbs
*
8
,
rb_table
[
*
rb_index
],
0
,
Ncp
,
0
);
}
}
...
...
openair2/LAYER2/MAC/ue_procedures.c
View file @
4b345f15
...
@@ -72,7 +72,7 @@ extern UL_IND_t *UL_INFO;
...
@@ -72,7 +72,7 @@ extern UL_IND_t *UL_INFO;
extern
int
next_ra_frame
;
extern
int
next_ra_frame
;
extern
module_id_t
next_Mod_id
;
extern
module_id_t
next_Mod_id
;
in
t
mbms_rab_id
=
2047
;
//[8] = {2047,2047,2047,2047,2047,2047,2047,2047};
rb_id_
t
mbms_rab_id
=
2047
;
//[8] = {2047,2047,2047,2047,2047,2047,2047,2047};
static
int
mbms_mch_i
=
0
;
static
int
mbms_mch_i
=
0
;
//static int num_msi_per_CSA[28];
//static int num_msi_per_CSA[28];
...
...
openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
View file @
4b345f15
...
@@ -78,9 +78,6 @@ extern int nas_sock_fd[MAX_MOBILES_PER_ENB];
...
@@ -78,9 +78,6 @@ extern int nas_sock_fd[MAX_MOBILES_PER_ENB];
extern
int
nas_sock_mbms_fd
;
extern
int
nas_sock_mbms_fd
;
extern
int
mbms_rab_id
;
extern
struct
msghdr
nas_msg_tx
;
extern
struct
msghdr
nas_msg_tx
;
extern
struct
msghdr
nas_msg_rx
;
extern
struct
msghdr
nas_msg_rx
;
...
...
openair3/ocp-gtpu/gtp_itf.cpp
View file @
4b345f15
...
@@ -62,6 +62,7 @@ typedef struct {
...
@@ -62,6 +62,7 @@ typedef struct {
typedef
struct
{
typedef
struct
{
rnti_t
rnti
;
rnti_t
rnti
;
ebi_t
rb_id
;
gtpCallback
callBack
;
gtpCallback
callBack
;
}
rntiData_t
;
}
rntiData_t
;
...
@@ -92,6 +93,8 @@ static uint32_t gtpv1uNewTeid(void) {
...
@@ -92,6 +93,8 @@ static uint32_t gtpv1uNewTeid(void) {
#endif
#endif
}
}
int
legacyInstanceMapping
=
0
;
#define compatInst(a) ((a)==0 || (a)==INSTANCE_DEFAULT?legacyInstanceMapping:a)
#define GTPV1U_HEADER_SIZE (8)
#define GTPV1U_HEADER_SIZE (8)
static
int
gtpv1uCreateAndSendMsg
(
int
h
,
uint32_t
peerIp
,
uint16_t
peerPort
,
teid_t
teid
,
uint8_t
*
Msg
,
int
msgLen
,
static
int
gtpv1uCreateAndSendMsg
(
int
h
,
uint32_t
peerIp
,
uint16_t
peerPort
,
teid_t
teid
,
uint8_t
*
Msg
,
int
msgLen
,
...
@@ -147,11 +150,11 @@ static void gtpv1uSend(instance_t instance, gtpv1u_enb_tunnel_data_req_t *req, b
...
@@ -147,11 +150,11 @@ static void gtpv1uSend(instance_t instance, gtpv1u_enb_tunnel_data_req_t *req, b
uint64_t
rnti
=
req
->
rnti
;
uint64_t
rnti
=
req
->
rnti
;
int
rab_id
=
req
->
rab_id
;
int
rab_id
=
req
->
rab_id
;
pthread_mutex_lock
(
&
globGtp
.
gtp_lock
);
pthread_mutex_lock
(
&
globGtp
.
gtp_lock
);
auto
inst
=&
globGtp
.
instances
[
instance
];
auto
inst
=&
globGtp
.
instances
[
compatInst
(
instance
)
];
auto
ptrRnti
=
inst
->
ue2te_mapping
.
find
(
rnti
);
auto
ptrRnti
=
inst
->
ue2te_mapping
.
find
(
rnti
);
if
(
ptrRnti
==
inst
->
ue2te_mapping
.
end
()
)
{
if
(
ptrRnti
==
inst
->
ue2te_mapping
.
end
()
)
{
LOG_E
(
GTPU
,
"
Gtpv1uProcessUlpReq
failed: while getting ue rnti %lx in hashtable ue_mapping
\n
"
,
rnti
);
LOG_E
(
GTPU
,
"
gtpv1uSend
failed: while getting ue rnti %lx in hashtable ue_mapping
\n
"
,
rnti
);
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
return
;
return
;
}
}
...
@@ -173,7 +176,7 @@ static void gtpv1uSend(instance_t instance, gtpv1u_enb_tunnel_data_req_t *req, b
...
@@ -173,7 +176,7 @@ static void gtpv1uSend(instance_t instance, gtpv1u_enb_tunnel_data_req_t *req, b
ptr
[
rab_id
].
npduNum
++
;
ptr
[
rab_id
].
npduNum
++
;
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
gtpv1uCreateAndSendMsg
(
instance
,
gtpv1uCreateAndSendMsg
(
compatInst
(
instance
)
,
ptr
[
rab_id
].
outgoing_ip_addr
,
ptr
[
rab_id
].
outgoing_ip_addr
,
ptr
[
rab_id
].
outgoing_port
,
ptr
[
rab_id
].
outgoing_port
,
ptr
[
rab_id
].
teid_outgoing
,
ptr
[
rab_id
].
teid_outgoing
,
...
@@ -210,8 +213,21 @@ static int udpServerSocket(openAddr_s addr) {
...
@@ -210,8 +213,21 @@ static int udpServerSocket(openAddr_s addr) {
}
else
{
}
else
{
// We create the gtp instance on the socket
// We create the gtp instance on the socket
globGtp
.
instances
[
sockfd
].
addr
=
addr
;
globGtp
.
instances
[
sockfd
].
addr
=
addr
;
memcpy
(
globGtp
.
instances
[
sockfd
].
foundAddr
,
p
->
ai_addr
,
p
->
ai_addrlen
);
globGtp
.
instances
[
sockfd
].
foundAddrLen
=
p
->
ai_addrlen
;
if
(
p
->
ai_family
==
AF_INET
)
{
struct
sockaddr_in
*
ipv4
=
(
struct
sockaddr_in
*
)
p
->
ai_addr
;
memcpy
(
globGtp
.
instances
[
sockfd
].
foundAddr
,
&
ipv4
->
sin_addr
.
s_addr
,
sizeof
(
ipv4
->
sin_addr
.
s_addr
));
globGtp
.
instances
[
sockfd
].
foundAddrLen
=
sizeof
(
ipv4
->
sin_addr
.
s_addr
);
break
;
}
else
if
(
p
->
ai_family
==
AF_INET6
)
{
LOG_W
(
GTPU
,
"Local address is IP v6
\n
"
);
struct
sockaddr_in6
*
ipv6
=
(
struct
sockaddr_in6
*
)
p
->
ai_addr
;
memcpy
(
globGtp
.
instances
[
sockfd
].
foundAddr
,
&
ipv6
->
sin6_addr
.
s6_addr
,
sizeof
(
ipv6
->
sin6_addr
.
s6_addr
));
globGtp
.
instances
[
sockfd
].
foundAddrLen
=
sizeof
(
ipv6
->
sin6_addr
.
s6_addr
);
}
else
AssertFatal
(
false
,
"Local address is not IPv4 or IPv6"
);
}
}
break
;
// if we get here, we must have connected successfully
break
;
// if we get here, we must have connected successfully
...
@@ -284,6 +300,8 @@ teid_t newGtpuCreateTunnel(instance_t instance, rnti_t rnti, int bearer_id, teid
...
@@ -284,6 +300,8 @@ teid_t newGtpuCreateTunnel(instance_t instance, rnti_t rnti, int bearer_id, teid
inst
->
te2ue_mapping
[
s1u_teid
].
rnti
=
rnti
;
inst
->
te2ue_mapping
[
s1u_teid
].
rnti
=
rnti
;
inst
->
te2ue_mapping
[
s1u_teid
].
rb_id
=
teid
;
inst
->
te2ue_mapping
[
s1u_teid
].
callBack
=
callBack
;
inst
->
te2ue_mapping
[
s1u_teid
].
callBack
=
callBack
;
auto
tmp
=&
inst
->
ue2te_mapping
[
rnti
].
bearers
[
bearer_id
];
auto
tmp
=&
inst
->
ue2te_mapping
[
rnti
].
bearers
[
bearer_id
];
...
@@ -326,9 +344,9 @@ int ocp_gtpv1u_create_s1u_tunnel(instance_t instance,
...
@@ -326,9 +344,9 @@ int ocp_gtpv1u_create_s1u_tunnel(instance_t instance,
create_tunnel_req
->
sgw_S1u_teid
[
0
]);
create_tunnel_req
->
sgw_S1u_teid
[
0
]);
for
(
int
i
=
0
;
i
<
create_tunnel_req
->
num_tunnels
;
i
++
)
{
for
(
int
i
=
0
;
i
<
create_tunnel_req
->
num_tunnels
;
i
++
)
{
teid_t
teid
=
newGtpuCreateTunnel
(
instance
,
create_tunnel_req
->
rnti
,
teid_t
teid
=
newGtpuCreateTunnel
(
compatInst
(
instance
),
create_tunnel_req
->
rnti
,
create_tunnel_req
->
eps_bearer_id
[
i
],
create_tunnel_req
->
eps_bearer_id
[
i
],
create_tunnel_req
->
eps_bearer_id
[
i
],
create_tunnel_req
->
sgw_S1u_teid
[
i
],
create_tunnel_req
->
sgw_addr
[
i
],
2152
,
create_tunnel_req
->
sgw_addr
[
i
],
2152
,
pdcp_data_req
);
pdcp_data_req
);
create_tunnel_resp
->
status
=
0
;
create_tunnel_resp
->
status
=
0
;
...
@@ -336,9 +354,9 @@ int ocp_gtpv1u_create_s1u_tunnel(instance_t instance,
...
@@ -336,9 +354,9 @@ int ocp_gtpv1u_create_s1u_tunnel(instance_t instance,
create_tunnel_resp
->
num_tunnels
=
create_tunnel_req
->
num_tunnels
;
create_tunnel_resp
->
num_tunnels
=
create_tunnel_req
->
num_tunnels
;
create_tunnel_resp
->
enb_S1u_teid
[
i
]
=
teid
;
create_tunnel_resp
->
enb_S1u_teid
[
i
]
=
teid
;
create_tunnel_resp
->
eps_bearer_id
[
i
]
=
create_tunnel_req
->
eps_bearer_id
[
i
];
create_tunnel_resp
->
eps_bearer_id
[
i
]
=
create_tunnel_req
->
eps_bearer_id
[
i
];
memcpy
(
create_tunnel_resp
->
enb_addr
.
buffer
,
globGtp
.
instances
[
instance
].
foundAddr
,
memcpy
(
create_tunnel_resp
->
enb_addr
.
buffer
,
globGtp
.
instances
[
compatInst
(
instance
)
].
foundAddr
,
globGtp
.
instances
[
instance
].
foundAddrLen
);
globGtp
.
instances
[
compatInst
(
instance
)
].
foundAddrLen
);
create_tunnel_resp
->
enb_addr
.
length
=
globGtp
.
instances
[
instance
].
foundAddrLen
;
create_tunnel_resp
->
enb_addr
.
length
=
globGtp
.
instances
[
compatInst
(
instance
)
].
foundAddrLen
;
}
}
return
!
GTPNOK
;
return
!
GTPNOK
;
...
@@ -356,7 +374,7 @@ int ocp_gtpv1u_update_s1u_tunnel(
...
@@ -356,7 +374,7 @@ int ocp_gtpv1u_update_s1u_tunnel(
create_tunnel_req
->
sgw_S1u_teid
[
0
],
create_tunnel_req
->
sgw_S1u_teid
[
0
],
create_tunnel_req
->
eps_bearer_id
[
0
]);
create_tunnel_req
->
eps_bearer_id
[
0
]);
pthread_mutex_lock
(
&
globGtp
.
gtp_lock
);
pthread_mutex_lock
(
&
globGtp
.
gtp_lock
);
auto
inst
=&
globGtp
.
instances
[
instance
];
auto
inst
=&
globGtp
.
instances
[
compatInst
(
instance
)
];
if
(
inst
->
ue2te_mapping
.
find
(
create_tunnel_req
->
rnti
)
!=
inst
->
ue2te_mapping
.
end
()
)
{
if
(
inst
->
ue2te_mapping
.
find
(
create_tunnel_req
->
rnti
)
!=
inst
->
ue2te_mapping
.
end
()
)
{
LOG_E
(
GTPU
,
"Update a existing GTP tunnel to a already existing tunnel (new rnti %x, old rnti %x)
\n
"
,
create_tunnel_req
->
rnti
,
prior_rnti
);
LOG_E
(
GTPU
,
"Update a existing GTP tunnel to a already existing tunnel (new rnti %x, old rnti %x)
\n
"
,
create_tunnel_req
->
rnti
,
prior_rnti
);
...
@@ -385,15 +403,12 @@ int ocp_gtpv1u_create_x2u_tunnel(
...
@@ -385,15 +403,12 @@ int ocp_gtpv1u_create_x2u_tunnel(
AssertFatal
(
false
,
"to be developped
\n
"
);
AssertFatal
(
false
,
"to be developped
\n
"
);
}
}
int
ocp_gtpv1u_delete_s1u_tunnel
(
const
instance_t
instance
,
int
newGtpuDeleteTunnel
(
instance_t
instance
,
rnti_t
rnti
)
{
const
gtpv1u_enb_delete_tunnel_req_t
*
const
req_pP
)
{
LOG_D
(
GTPU
,
"Start delete tunnels for RNTI %x
\n
"
,
LOG_D
(
GTPU
,
"Start delete tunnels for RNTI %x, num_erab %d, eps_bearer_id %d
\n
"
,
rnti
);
req_pP
->
rnti
,
req_pP
->
num_erab
,
req_pP
->
eps_bearer_id
[
0
]);
pthread_mutex_lock
(
&
globGtp
.
gtp_lock
);
pthread_mutex_lock
(
&
globGtp
.
gtp_lock
);
auto
inst
=&
globGtp
.
instances
[
instance
];
auto
inst
=&
globGtp
.
instances
[
compatInst
(
instance
)
];
auto
it
=
inst
->
ue2te_mapping
.
find
(
r
eq_pP
->
r
nti
);
auto
it
=
inst
->
ue2te_mapping
.
find
(
rnti
);
if
(
it
==
inst
->
ue2te_mapping
.
end
()
)
{
if
(
it
==
inst
->
ue2te_mapping
.
end
()
)
{
LOG_W
(
GTPU
,
"Delete a non existing GTP tunnel
\n
"
);
LOG_W
(
GTPU
,
"Delete a non existing GTP tunnel
\n
"
);
...
@@ -411,6 +426,13 @@ int ocp_gtpv1u_delete_s1u_tunnel( const instance_t instance,
...
@@ -411,6 +426,13 @@ int ocp_gtpv1u_delete_s1u_tunnel( const instance_t instance,
return
!
GTPNOK
;
return
!
GTPNOK
;
}
}
// Legacy delete tunnel finish by deleting all the rnti
// so the list of bearer provided is only a design bug
int
ocp_gtpv1u_delete_s1u_tunnel
(
const
instance_t
instance
,
const
gtpv1u_enb_delete_tunnel_req_t
*
const
req_pP
)
{
return
newGtpuDeleteTunnel
(
instance
,
req_pP
->
rnti
);
}
static
int
Gtpv1uHandleEchoReq
(
int
h
,
static
int
Gtpv1uHandleEchoReq
(
int
h
,
uint8_t
*
msgBuf
,
uint8_t
*
msgBuf
,
uint32_t
msgBufLen
,
uint32_t
msgBufLen
,
...
@@ -489,10 +511,10 @@ static int Gtpv1uHandleGpdu(int h,
...
@@ -489,10 +511,10 @@ static int Gtpv1uHandleGpdu(int h,
ctxt
.
frame
=
0
;
ctxt
.
frame
=
0
;
ctxt
.
subframe
=
0
;
ctxt
.
subframe
=
0
;
ctxt
.
eNB_index
=
0
;
ctxt
.
eNB_index
=
0
;
ctxt
.
configured
=
1
;
ctxt
.
configured
=
0
;
ctxt
.
brOption
=
0
;
ctxt
.
brOption
=
0
;
const
srb_flag_t
srb_flag
=
SRB_FLAG_NO
;
const
srb_flag_t
srb_flag
=
SRB_FLAG_NO
;
const
rb_id_t
rb_id
=
0
;
const
rb_id_t
rb_id
=
tunnel
->
second
.
rb_id
;
const
mui_t
mui
=
RLC_MUI_UNDEFINED
;
const
mui_t
mui
=
RLC_MUI_UNDEFINED
;
const
confirm_t
confirm
=
RLC_SDU_CONFIRM_NO
;
const
confirm_t
confirm
=
RLC_SDU_CONFIRM_NO
;
const
sdu_size_t
sdu_buffer_size
=
msgBufLen
-
offset
;
const
sdu_size_t
sdu_buffer_size
=
msgBufLen
-
offset
;
...
@@ -529,7 +551,7 @@ void gtpv1uReceiver(int h) {
...
@@ -529,7 +551,7 @@ void gtpv1uReceiver(int h) {
if
((
udpDataLen
=
recvfrom
(
h
,
udpData
,
sizeof
(
udpData
),
0
,
if
((
udpDataLen
=
recvfrom
(
h
,
udpData
,
sizeof
(
udpData
),
0
,
(
struct
sockaddr
*
)
&
addr
,
&
from_len
))
<
0
)
{
(
struct
sockaddr
*
)
&
addr
,
&
from_len
))
<
0
)
{
LOG_E
(
GTPU
,
"Recvfrom failed
%s
\n
"
,
strerror
(
errno
));
LOG_E
(
GTPU
,
"Recvfrom failed
on %d (%s)
\n
"
,
h
,
strerror
(
errno
));
return
;
return
;
}
else
if
(
udpDataLen
==
0
)
{
}
else
if
(
udpDataLen
==
0
)
{
LOG_W
(
GTPU
,
"Recvfrom returned 0
\n
"
);
LOG_W
(
GTPU
,
"Recvfrom returned 0
\n
"
);
...
@@ -586,7 +608,7 @@ void *ocp_gtpv1uTask(void *args) {
...
@@ -586,7 +608,7 @@ void *ocp_gtpv1uTask(void *args) {
switch
(
ITTI_MSG_ID
(
message_p
))
{
switch
(
ITTI_MSG_ID
(
message_p
))
{
// DATA TO BE SENT TO UDP
// DATA TO BE SENT TO UDP
case
GTPV1U_ENB_TUNNEL_DATA_REQ
:
{
case
GTPV1U_ENB_TUNNEL_DATA_REQ
:
{
gtpv1uSend
(
ITTI_MESSAGE_GET_INSTANCE
(
message_p
),
gtpv1uSend
(
compatInst
(
ITTI_MESSAGE_GET_INSTANCE
(
message_p
)
),
&
GTPV1U_ENB_TUNNEL_DATA_REQ
(
message_p
),
false
,
false
);
&
GTPV1U_ENB_TUNNEL_DATA_REQ
(
message_p
),
false
,
false
);
itti_free
(
OCP_GTPV1_U
,
GTPV1U_ENB_TUNNEL_DATA_REQ
(
message_p
).
buffer
);
itti_free
(
OCP_GTPV1_U
,
GTPV1U_ENB_TUNNEL_DATA_REQ
(
message_p
).
buffer
);
}
}
...
@@ -611,7 +633,7 @@ void *ocp_gtpv1uTask(void *args) {
...
@@ -611,7 +633,7 @@ void *ocp_gtpv1uTask(void *args) {
// to be dev: should be removed, to use API
// to be dev: should be removed, to use API
strcpy
(
addr
.
originHost
,
GTPV1U_ENB_S1_REQ
(
message_p
).
addrStr
);
strcpy
(
addr
.
originHost
,
GTPV1U_ENB_S1_REQ
(
message_p
).
addrStr
);
strcpy
(
addr
.
originService
,
GTPV1U_ENB_S1_REQ
(
message_p
).
portStr
);
strcpy
(
addr
.
originService
,
GTPV1U_ENB_S1_REQ
(
message_p
).
portStr
);
AssertFatal
(
ocp_gtpv1Init
(
addr
),
"Only one instance 0 supprted
\n
"
);
AssertFatal
(
(
legacyInstanceMapping
=
ocp_gtpv1Init
(
addr
))
!=
0
,
"Instance 0 reserved for legacy
\n
"
);
break
;
break
;
default:
default:
...
@@ -627,8 +649,8 @@ void *ocp_gtpv1uTask(void *args) {
...
@@ -627,8 +649,8 @@ void *ocp_gtpv1uTask(void *args) {
int
nb_events
=
itti_get_events
(
OCP_GTPV1_U
,
&
events
);
int
nb_events
=
itti_get_events
(
OCP_GTPV1_U
,
&
events
);
if
(
nb_events
>
0
&&
events
!=
NULL
)
for
(
int
i
=
0
;
i
<
nb_events
;
i
++
)
for
(
int
i
=
0
;
i
<
nb_events
;
i
++
)
if
((
events
[
i
].
events
&
EPOLLIN
))
gtpv1uReceiver
(
events
[
i
].
data
.
fd
);
gtpv1uReceiver
(
events
[
i
].
data
.
fd
);
}
}
...
...
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