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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
53822278
Commit
53822278
authored
Aug 08, 2022
by
Angelo Athanassopoulos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix SDAP, get QFI & PDUSession ID from CN
parent
4154e9e9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
5 deletions
+21
-5
openair2/LAYER2/nr_pdcp/nr_pdcp_oai_api.c
openair2/LAYER2/nr_pdcp/nr_pdcp_oai_api.c
+3
-3
openair2/SDAP/nr_sdap/nr_sdap.c
openair2/SDAP/nr_sdap/nr_sdap.c
+9
-0
openair2/SDAP/nr_sdap/nr_sdap.h
openair2/SDAP/nr_sdap/nr_sdap.h
+2
-0
openair3/NAS/NR_UE/nr_nas_msg_sim.c
openair3/NAS/NR_UE/nr_nas_msg_sim.c
+7
-2
No files found.
openair2/LAYER2/nr_pdcp/nr_pdcp_oai_api.c
View file @
53822278
...
...
@@ -484,12 +484,12 @@ static void *ue_tun_read_thread(void *_)
ctxt
.
rnti
=
rnti
;
bool
dc
=
SDAP_HDR_UL_DATA_PDU
;
uint8_t
qfi
=
7
;
int
pdusession_id
=
10
;
extern
uint8_t
nas_qfi
;
extern
uint8_t
nas_pduid
;
sdap_data_req
(
&
ctxt
,
SRB_FLAG_NO
,
rb_id
,
RLC_MUI_UNDEFINED
,
RLC_SDU_CONFIRM_NO
,
len
,
(
unsigned
char
*
)
rx_buf
,
PDCP_TRANSMISSION_MODE_DATA
,
NULL
,
NULL
,
qfi
,
dc
,
pdusession_
id
);
PDCP_TRANSMISSION_MODE_DATA
,
NULL
,
NULL
,
nas_qfi
,
dc
,
nas_pdu
id
);
}
return
NULL
;
...
...
openair2/SDAP/nr_sdap/nr_sdap.c
View file @
53822278
...
...
@@ -21,6 +21,9 @@
#include "nr_sdap.h"
uint8_t
nas_qfi
;
uint8_t
nas_pduid
;
bool
sdap_data_req
(
protocol_ctxt_t
*
ctxt_p
,
const
srb_flag_t
srb_flag
,
const
rb_id_t
rb_id
,
...
...
@@ -84,3 +87,9 @@ void sdap_data_ind(rb_id_t pdcp_entity,
buf
,
size
);
}
void
set_qfi_pduid
(
uint8_t
qfi
,
uint8_t
pduid
){
nas_qfi
=
qfi
;
nas_pduid
=
pduid
;
return
;
}
openair2/SDAP/nr_sdap/nr_sdap.h
View file @
53822278
...
...
@@ -62,4 +62,6 @@ void sdap_data_ind(rb_id_t pdcp_entity,
int
size
);
void
set_qfi_pduid
(
uint8_t
qfi
,
uint8_t
pduid
);
#endif
openair3/NAS/NR_UE/nr_nas_msg_sim.c
View file @
53822278
...
...
@@ -44,6 +44,7 @@
#include <openair3/NAS/COMMON/NR_NAS_defs.h>
#include <openair1/PHY/phy_extern_nr_ue.h>
#include <openair1/SIMULATION/ETH_TRANSPORT/proto.h>
#include "openair2/SDAP/nr_sdap/nr_sdap.h"
uint8_t
*
registration_request_buf
;
uint32_t
registration_request_len
;
...
...
@@ -915,7 +916,7 @@ void *nas_nrue_task(void *args_p)
payload_container
=
pdu_buffer
+
offset
;
}
offset
=
0
;
uint8_t
pdu_id
=
*
(
pdu_buffer
+
14
);
while
(
offset
<
payload_container_length
)
{
// Fixme: this is not good 'type' 0x29 searching in TLV like structure
// AND fix dirsty code copy hereafter of the same!!!
...
...
@@ -929,9 +930,13 @@ void *nas_nrue_task(void *args_p)
*
(
payload_container
+
offset
+
3
),
*
(
payload_container
+
offset
+
4
),
*
(
payload_container
+
offset
+
5
),
*
(
payload_container
+
offset
+
6
));
nas_config
(
1
,
third_octet
,
fourth_octet
,
"oaitun_ue"
);
break
;
}
}
if
(
*
(
payload_container
+
offset
)
==
0x79
)
{
uint8_t
qfi
=
*
(
payload_container
+
offset
+
3
);
set_qfi_pduid
(
qfi
,
pdu_id
);
break
;
}
offset
++
;
}
}
...
...
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