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
lizhongxiao
OpenXG-RAN
Commits
c818e9b5
Commit
c818e9b5
authored
Jan 26, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
F1 UE Ctxt modif response: look up PDU sessions
parent
59b69e24
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
77 additions
and
24 deletions
+77
-24
openair2/LAYER2/nr_pdcp/cucp_cuup_handler.c
openair2/LAYER2/nr_pdcp/cucp_cuup_handler.c
+1
-0
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+62
-24
openair2/RRC/NR/rrc_gNB_radio_bearers.c
openair2/RRC/NR/rrc_gNB_radio_bearers.c
+11
-0
openair2/RRC/NR/rrc_gNB_radio_bearers.h
openair2/RRC/NR/rrc_gNB_radio_bearers.h
+3
-0
No files found.
openair2/LAYER2/nr_pdcp/cucp_cuup_handler.c
View file @
c818e9b5
...
@@ -240,6 +240,7 @@ void e1_bearer_context_modif(const e1ap_bearer_setup_req_t *req)
...
@@ -240,6 +240,7 @@ void e1_bearer_context_modif(const e1ap_bearer_setup_req_t *req)
instance_t
f1inst
=
get_f1_gtp_instance
();
instance_t
f1inst
=
get_f1_gtp_instance
();
for
(
int
i
=
0
;
i
<
req
->
numPDUSessionsMod
;
i
++
)
{
for
(
int
i
=
0
;
i
<
req
->
numPDUSessionsMod
;
i
++
)
{
DevAssert
(
req
->
pduSessionMod
[
i
].
sessionId
>
0
);
LOG_I
(
E1AP
,
LOG_I
(
E1AP
,
"UE %d: updating PDU session ID %ld (%ld bearers)
\n
"
,
"UE %d: updating PDU session ID %ld (%ld bearers)
\n
"
,
req
->
gNB_cu_up_ue_id
,
req
->
gNB_cu_up_ue_id
,
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
c818e9b5
...
@@ -1671,6 +1671,67 @@ void rrc_gNB_process_dc_overall_timeout(const module_id_t gnb_mod_idP, x2ap_ENDC
...
@@ -1671,6 +1671,67 @@ void rrc_gNB_process_dc_overall_timeout(const module_id_t gnb_mod_idP, x2ap_ENDC
rrc_remove_nsa_user
(
rrc
,
m
->
rnti
);
rrc_remove_nsa_user
(
rrc
,
m
->
rnti
);
}
}
/* \brief fill E1 bearer modification's DRB from F1 DRB
* \param drb_e1 pointer to a DRB inside an E1 bearer modification message
* \param drb_f1 pointer to a DRB inside an F1 UE Ctxt modification Response */
static
void
fill_e1_bearer_modif
(
DRB_nGRAN_to_setup_t
*
drb_e1
,
const
f1ap_drb_to_be_setup_t
*
drb_f1
)
{
drb_e1
->
id
=
drb_f1
->
drb_id
;
drb_e1
->
numDlUpParam
=
drb_f1
->
up_dl_tnl_length
;
drb_e1
->
DlUpParamList
[
0
].
tlAddress
=
drb_f1
->
up_dl_tnl
[
0
].
tl_address
;
drb_e1
->
DlUpParamList
[
0
].
teId
=
drb_f1
->
up_dl_tnl
[
0
].
teid
;
}
/* \brief find existing PDU session inside E1AP Bearer Modif message, or
* point to new one.
* \param bearer_modif E1AP Bearer Modification Message
* \param pdu_id PDU session ID
* \return pointer to existing PDU session, or to new/unused one. */
static
pdu_session_to_setup_t
*
find_or_next_pdu_session
(
e1ap_bearer_setup_req_t
*
bearer_modif
,
int
pdu_id
)
{
for
(
int
i
=
0
;
i
<
bearer_modif
->
numPDUSessionsMod
;
++
i
)
{
if
(
bearer_modif
->
pduSessionMod
[
i
].
sessionId
==
pdu_id
)
return
&
bearer_modif
->
pduSessionMod
[
i
];
}
/* E1AP Bearer Modification has no PDU session to modify with that ID, create
* new entry */
DevAssert
(
bearer_modif
->
numPDUSessionsMod
<
E1AP_MAX_NUM_PDU_SESSIONS
-
1
);
bearer_modif
->
numPDUSessionsMod
+=
1
;
return
&
bearer_modif
->
pduSessionMod
[
bearer_modif
->
numPDUSessionsMod
-
1
];
}
/* \brief use list of DRBs and send the corresponding bearer update message via
* E1 to the CU of this UE */
static
void
e1_send_bearer_updates
(
gNB_RRC_INST
*
rrc
,
gNB_RRC_UE_t
*
UE
,
int
n
,
f1ap_drb_to_be_setup_t
*
drbs
)
{
// we assume the same UE ID in CU-UP and CU-CP
e1ap_bearer_setup_req_t
req
=
{
.
gNB_cu_cp_ue_id
=
UE
->
rrc_ue_id
,
.
gNB_cu_up_ue_id
=
UE
->
rrc_ue_id
,
};
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
const
f1ap_drb_to_be_setup_t
*
drb_f1
=
&
drbs
[
i
];
rrc_pdu_session_param_t
*
pdu_ue
=
find_pduSession_from_drbId
(
UE
,
drb_f1
->
drb_id
);
if
(
pdu_ue
==
NULL
)
{
LOG_E
(
RRC
,
"UE %d: UE Context Modif Response: no PDU session for DRB ID %ld
\n
"
,
UE
->
rrc_ue_id
,
drb_f1
->
drb_id
);
continue
;
}
pdu_session_to_setup_t
*
pdu_e1
=
find_or_next_pdu_session
(
&
req
,
pdu_ue
->
param
.
pdusession_id
);
DevAssert
(
pdu_e1
!=
NULL
);
pdu_e1
->
sessionId
=
pdu_ue
->
param
.
pdusession_id
;
DRB_nGRAN_to_setup_t
*
drb_e1
=
&
pdu_e1
->
DRBnGRanModList
[
pdu_e1
->
numDRB2Modify
];
fill_e1_bearer_modif
(
drb_e1
,
drb_f1
);
pdu_e1
->
numDRB2Modify
+=
1
;
}
DevAssert
(
req
.
numPDUSessionsMod
>
0
);
DevAssert
(
req
.
numPDUSessions
==
0
);
// send the E1 bearer modification request message to update F1-U tunnel info
sctp_assoc_t
assoc_id
=
get_existing_cuup_for_ue
(
rrc
,
UE
);
rrc
->
cucp_cuup
.
bearer_context_mod
(
assoc_id
,
&
req
);
}
static
void
rrc_CU_process_ue_context_setup_response
(
MessageDef
*
msg_p
,
instance_t
instance
)
static
void
rrc_CU_process_ue_context_setup_response
(
MessageDef
*
msg_p
,
instance_t
instance
)
{
{
f1ap_ue_context_setup_t
*
resp
=
&
F1AP_UE_CONTEXT_SETUP_RESP
(
msg_p
);
f1ap_ue_context_setup_t
*
resp
=
&
F1AP_UE_CONTEXT_SETUP_RESP
(
msg_p
);
...
@@ -1764,30 +1825,7 @@ static void rrc_CU_process_ue_context_modification_response(MessageDef *msg_p, i
...
@@ -1764,30 +1825,7 @@ static void rrc_CU_process_ue_context_modification_response(MessageDef *msg_p, i
gNB_RRC_UE_t
*
UE
=
&
ue_context_p
->
ue_context
;
gNB_RRC_UE_t
*
UE
=
&
ue_context_p
->
ue_context
;
if
(
resp
->
drbs_to_be_setup_length
>
0
)
{
if
(
resp
->
drbs_to_be_setup_length
>
0
)
{
e1ap_bearer_setup_req_t
req
=
{
0
};
e1_send_bearer_updates
(
rrc
,
UE
,
resp
->
drbs_to_be_setup_length
,
resp
->
drbs_to_be_setup
);
// TODO: bug: we receive the DRBs, but we don't associate to a PDU session
// -> we are not sure which PDU session this is, and fill "all"
req
.
numPDUSessionsMod
=
UE
->
nb_of_pdusessions
;
req
.
gNB_cu_cp_ue_id
=
UE
->
rrc_ue_id
;
req
.
gNB_cu_up_ue_id
=
UE
->
rrc_ue_id
;
for
(
int
i
=
0
;
i
<
req
.
numPDUSessionsMod
;
i
++
)
{
req
.
pduSessionMod
[
i
].
sessionId
=
UE
->
pduSession
[
i
].
param
.
pdusession_id
;
req
.
pduSessionMod
[
i
].
numDRB2Modify
=
resp
->
drbs_to_be_setup_length
;
for
(
int
j
=
0
;
j
<
resp
->
drbs_to_be_setup_length
;
j
++
)
{
f1ap_drb_to_be_setup_t
*
drb_f1
=
resp
->
drbs_to_be_setup
+
j
;
DRB_nGRAN_to_setup_t
*
drb_e1
=
req
.
pduSessionMod
[
i
].
DRBnGRanModList
+
j
;
drb_e1
->
id
=
drb_f1
->
drb_id
;
drb_e1
->
numDlUpParam
=
drb_f1
->
up_dl_tnl_length
;
drb_e1
->
DlUpParamList
[
0
].
tlAddress
=
drb_f1
->
up_dl_tnl
[
0
].
tl_address
;
drb_e1
->
DlUpParamList
[
0
].
teId
=
drb_f1
->
up_dl_tnl
[
0
].
teid
;
}
}
// send the F1 response message up to update F1-U tunnel info
// it seems the rrc transaction id (xid) is not needed here
sctp_assoc_t
assoc_id
=
get_existing_cuup_for_ue
(
rrc
,
UE
);
rrc
->
cucp_cuup
.
bearer_context_mod
(
assoc_id
,
&
req
);
}
}
if
(
resp
->
du_to_cu_rrc_information
!=
NULL
&&
resp
->
du_to_cu_rrc_information
->
cellGroupConfig
!=
NULL
)
{
if
(
resp
->
du_to_cu_rrc_information
!=
NULL
&&
resp
->
du_to_cu_rrc_information
->
cellGroupConfig
!=
NULL
)
{
...
...
openair2/RRC/NR/rrc_gNB_radio_bearers.c
View file @
c818e9b5
...
@@ -37,6 +37,17 @@ rrc_pdu_session_param_t *find_pduSession(gNB_RRC_UE_t *ue, int id, bool create)
...
@@ -37,6 +37,17 @@ rrc_pdu_session_param_t *find_pduSession(gNB_RRC_UE_t *ue, int id, bool create)
return
ue
->
pduSession
+
j
;
return
ue
->
pduSession
+
j
;
}
}
rrc_pdu_session_param_t
*
find_pduSession_from_drbId
(
gNB_RRC_UE_t
*
ue
,
int
drb_id
)
{
const
drb_t
*
drb
=
&
ue
->
established_drbs
[
drb_id
-
1
];
if
(
drb
->
status
==
DRB_INACTIVE
)
{
LOG_E
(
NR_RRC
,
"UE %d: DRB %d inactive
\n
"
,
ue
->
rrc_ue_id
,
drb_id
);
return
NULL
;
}
int
id
=
drb
->
cnAssociation
.
sdap_config
.
pdusession_id
;
return
find_pduSession
(
ue
,
id
,
false
);
}
drb_t
*
get_drb
(
gNB_RRC_UE_t
*
ue
,
uint8_t
drb_id
)
drb_t
*
get_drb
(
gNB_RRC_UE_t
*
ue
,
uint8_t
drb_id
)
{
{
DevAssert
(
drb_id
>
0
&&
drb_id
<
32
);
DevAssert
(
drb_id
>
0
&&
drb_id
<
32
);
...
...
openair2/RRC/NR/rrc_gNB_radio_bearers.h
View file @
c818e9b5
...
@@ -68,4 +68,7 @@ bool drb_is_active(gNB_RRC_UE_t *ue, uint8_t drb_id);
...
@@ -68,4 +68,7 @@ bool drb_is_active(gNB_RRC_UE_t *ue, uint8_t drb_id);
/// create is true
/// create is true
rrc_pdu_session_param_t
*
find_pduSession
(
gNB_RRC_UE_t
*
ue
,
int
id
,
bool
create
);
rrc_pdu_session_param_t
*
find_pduSession
(
gNB_RRC_UE_t
*
ue
,
int
id
,
bool
create
);
/// @brief get PDU session of UE ue through the DRB drb_id
rrc_pdu_session_param_t
*
find_pduSession_from_drbId
(
gNB_RRC_UE_t
*
ue
,
int
drb_id
);
#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