- 24 Mar, 2025 6 commits
-
-
Robert Schmidt authored
Merge remote-tracking branch 'origin/add_sigint_handler_nr_physimulators' into integration_2025_w12 (!3320) Miscelaneous improvements in PHY simulators 1: Add a SIGINT handler to NR PHY simulators When using T2 virtual functions, it is important to properly stop DPDK and free the device. Otherwise the virtual functions may be blocked and a restart of the admin application is necessary. If not carefully done, such kind of operation can lead to losing cores to DPDK processes that cannot be stopped. This can lead to situations where the machine is locked and can only be unlocked by a power cycle. Always properly stopping DPDK and freeing the device reduces the risk of such situation to happen. Up to now, SIGINT was shutting down the PHY simulators without freeing the device. This commit adds a signal handler to handle SIGINT in a way that allow to properly free the device. This feature is added to all the NR PHY simulators whether they use T2 or not in case it is now or later of any use. 2: Make nr_ulschsim functional There were two issues that were making nr_ulschsim non functional: 1. The channel output was not copied to decoder input (llr array) 2. The test on decoding successful outcome was wrong The result was that nr_ulschsim was succesfull whatever were its arguments. This changeset fixes the two issues so that nr_ulschsim is now functional.
-
Robert Schmidt authored
Harmonize and update Frequency Range computation to the current values specified by the standard 3GPP TS 38.101-1 Version 19.0.0 Table 5.1-1: Definition of frequency ranges - FR1 from 410 MHz to 7125 MHz - FR2 from 24.25 GHz to 71 GHz
-
Robert Schmidt authored
Fix long RACH regression Add some missing functionality that was not merged in !3088.
-
Romain Beurdouche authored
-
Romain Beurdouche authored
feat(nr_unitary_common): Add banner and apply clang-format to openair1/SIMULATION/NR_PHY/nr_unitary_common.c
-
Romain Beurdouche authored
1. Change the name of `openair1/SIMULATION/NR_PHY/nr_dummy_functions.c` into `openair1/SIMULATION/NR_PHY/nr_unitary_common.c` for naming coherence after adding the SIGINT handler which is not a dummy function. 2. Instead of being built once for every NR PHY simulators, the common functions source file is built once as an object and linked to each simulator.
-
- 21 Mar, 2025 6 commits
-
-
Raghavendra Dinavahi authored
-
Robert Schmidt authored
SCTP: avoid assert on partial SCTP message The receive buffer for SCTP, before this branch, is 8192. If a message is larger, we receive only a partial message, which makes the gNB abort. Remove the abort to not be susceptible to a message intended to crash the gNB. also, increase the receive buffer to be more forgiving for large messages Closes: #920
-
Robert Schmidt authored
Disable EPS NAS security algorithms in 5GMM UE capabilities OAI nrUE is not supporting multiple RATs, therefore the EPS NAS security algorithms bit in 5GMM UE capabilities is not relevant. This bit is only relevant if N26 interface is supported by the AMF and the UE is supporting S1 mode, meaning that the UE is connected to a 4G LTE network, via the S1 interface (eNB - MME/SGW). When the UE performs an inter-system change from N1 mode to S1 mode, it transitions from 5GC to the EPC: at network level this happens over the N26 interface (which connects the 5G AMF to the 4G MME). In this transition is where the EPS security context becomes relevant: the UE does not know about the N26 interface, however is the AMF that can tell the UE, e.g. during the registration procedure, if the UE sets the S1 mode bit to "S1 mode supported" in the 5GMM capability IE, and the AMF supports the N26 interface, the AMF will include the Selected EPS NAS security algorithms IE in the SECURITY MODE COMMAND message, which is what happened in #915. Closes: #915
-
Romain Beurdouche authored
Even though the remaining NR PHY simulators do not use the T2, we may still feature them with a SIGINT handler for proper termination on SIGINT and for a matter of completeness. The remaining NR PHY simulators are: * nr_pbchsim * nr_prachsim * nr_psbchsim * nr_pucchsim
-
Romain Beurdouche authored
There was two issues that were making nr_ulschsim non functional: 1. The channel output was not copied to decoder input (llr array) 2. The test on decoding successful outcome was wrong The result was that nr_ulschsim was succesfull whatever were its arguments. This commit fixes the two issues so that nr_ulschsim is now functional.
-
Romain Beurdouche authored
When using T2 virtual functions, it is important to properly stop DPDK and free the device. Otherwise the virtual functions may be blocked and a restart of the admin application is necessary. Up to now, SIGINT was shutting down the PHY simulators without freeing the device. This commit adds a signal handler to handle SIGINT in a way that allow to properly free the device. This feature is first added to the PHY simulators that use the T2 which are `nr_ulsim`, `nr_dlsim`, `nr_ulschsim` and `nr_dlschsim`.
-
- 20 Mar, 2025 5 commits
-
-
luis_pereira87 authored
3GPP TS 38.101-1 Version 19.0.0 Table 5.1-1: Definition of frequency ranges - FR1 from 410 MHz to 7125 MHz - FR2 from 24.25 GHz to 71 GHz
-
Robert Schmidt authored
Remove unused NR UE PHY unit tests Old dead code that won't even compile and that is not testing anything relevant to current state of code
-
Robert Schmidt authored
-
Sakthivel Velumani authored
-
Sakthivel Velumani authored
-
- 19 Mar, 2025 1 commit
-
-
Guido Casati authored
* this is only relevant if N26 interface is supported by the AMF and the UE is supporting S1 closes #915
-
- 18 Mar, 2025 5 commits
-
-
Robert Schmidt authored
The receive buffer for SCTP, as of this commit, is 8192. If a message is larger, we receive only a partial message, which makes the gNB abort. Remove the abort to not be susceptible to a message intended to crash the gNB. Closes: #920
-
Jaroslava Fiedlerova authored
Integration: `2025.w11` Closes #848 See merge request oai/openairinterface5g!3309 * !3306 Add a new CI label: nrUE * !3303 remove wrong assertion for B4 PRACH format * !3296 fix(nrLDPC_decoder): fix numIter increment * !3150 Rework of NR UE RA procedures * !3305 CI: Fix timeout for OC Deployments * !3307 Add CI UE test for RA with C-RNTI * !3271 Handle changing N_TA_offset correctly * !3313 Small fix for jenkins message formatting
-
Jaroslava Fiedlerova authored
Merge remote-tracking branch 'origin/fix-jenkins-message-formatting' into integration_2025_w11 (!3313) Small fix for jenkins message formatting
-
Bartosz Podrygajlo authored
-
Robert Schmidt authored
Add a new CI label: nrUE Added handling of the nrUE label which limits the amount of CI tests to run. Only tests that use nr-uesoftmodem or phy simulators are triggered. See merge request oai/openairinterface5g!3306
-
- 17 Mar, 2025 6 commits
-
-
Bartosz Podrygajlo authored
Added handling of the nrUE label which limits the amount of CI tests to run. Only tests that use nr-uesoftmodem or phy simulators are triggered.
-
francescomani authored
-
Guido Casati authored
-
Guido Casati authored
-
francescomani authored
-
Jaroslava Fiedlerova authored
This merge request is for two issues: 1. Core Network Deployment/Undeployment If the Helm release oai5gcn does not exist (e.g., it was already deleted, failed during installation), helm uninstall will fail with a "release not found" error. The --timeout 60s makes Helm wait up to 60 seconds for all resources to be deleted. If cleanup takes longer (e.g., due to resources or dependencies), the command fails with a timeout error, potentially leaving resources in an incomplete state. 2. Increase the timeout value for OpenShift RHEL Builds The timeout parameter is set as the maximum wait time for the jobs to complete. If the jobs do not complete within that time, the function logs an error. The jobs may take longer to complete, the function exits early with an error, even if the jobs are still progressing. So, to address both the issues: We first list all installed Helm releases in the given namespace, returning only their names. We then pass the release names to helm uninstall, uninstalling all releases in the namespace. The default value for timeout is 5 minutes. Increased the timeout value for the RHEL Builds.
-
- 14 Mar, 2025 3 commits
-
-
Jaroslava Fiedlerova authored
Rework of NR UE RA procedures Closes #848
-
Jaroslava Fiedlerova authored
fix(nrLDPC_decoder): fix numIter increment The logs of ./nr_ulsim -n100 -m19 -s12 -S12 -z2 -L4 were showing that sometimes the decoding of one segment was failing while the CRC check succeeded. This was happening because the iteration counter numIter was not properly managed so that when the last iteration was successful to decode the segment still numIter at the exit was equal to numMaxIter plus 1 so that decoding was considered to have failed. In other words the last iteration if it occured was always wasted. This commit offers to solve this problem by simply moving the iteration counter increment at the end of the iteration loop while remaining careful at fixing the tests relying on this counter. Post-Scriptum: After a first review, we decided to make the counter more standard from a C code perspective. The counter now counts from 0 to numMaxIter minus 1. If it reaches numMaxIter, it means that decoding was unsuccessful.
-
Jaroslava Fiedlerova authored
remove wrong assertion for B4 PRACH format Introduced in !3088 (merged)
-
- 13 Mar, 2025 5 commits
-
-
francescomani authored
use sleep to delay UE to allow the convergence of the IIR filter on PRACH noise measurements at gNB side instead of counting frames
-
francescomani authored
-
francescomani authored
This is required to comply with the standard to flush MSG3 buffer in some occasions and to keep preparing MSG3 payload in advance
-
Jaroslava Fiedlerova authored
-
Jaroslava Fiedlerova authored
Default value of timeout is 5 minutes.
-
- 12 Mar, 2025 3 commits
-
-
francescomani authored
error for ra-responsewindow exceeding 10ms instead of assertion (CI test with FAPI would fail otherwise)
-
francescomani authored
-
francescomani authored
(this is needed because it might expire while MSG2 is being decoded despite being received inside the window)
-