1. 30 Nov, 2023 12 commits
    • Robert Schmidt's avatar
      Reformat Dockerfile.build.ubuntu20 · 107c0c8d
      Robert Schmidt authored
      107c0c8d
    • Robert Schmidt's avatar
      E2 Agent: Match UEs based on NSSAI · e13a4813
      Robert Schmidt authored
      Correctly match UEs based on the NSSAI in MAC and RRC. There is a
      convenience function capture_sst_sd() that extracts SST and SD (which
      form the NSSAI). Because a previous version used integers to convey the
      slice identifier, this function gracefully handles this case, although
      it is not spec-compliant.
      e13a4813
    • Robert Schmidt's avatar
      E2 agent: fix memory leak by not allocating memory · 89b77692
      Robert Schmidt authored
      Prior to this commit, the RAN function for KPM is leaking memory: it
      allocates using calloc() but never frees it.
      
      The fix consists of not allocating this memory on the heap in the first
      place, but on the stack. Therefore, there are changes to pass in a
      pointer to various functions to the structure on the stack, instead of
      passing the "container" for the heap memory by value.
      
      Further, the MAC was allocating an excessive amount of memory (N times
      sizeof(NR_UE_info_t)). Instead of copying the entire struct, the present
      code stores a pointer to the MAC UE container (NR_UE_info_t *). For the
      RRC, there is a similar simplification that consists in not storing the
      entire struct f1_ue_data_t (which is not required), but only the RRC UE
      ID.
      
      Note that both MAC and RRC might suffer from race conditions. For the
      MAC, we should lock the scheduler for the time we read statistics. For
      the RRC, the problem is more delicate as no mutex exists; the RRC
      assumes everything is executed synchronously in the ITTI task loop. In
      both cases, this commit does not address this problem
      89b77692
    • Robert Schmidt's avatar
      E2 agent: remove broken NSSAI filtering, simplify code · 5168ef72
      Robert Schmidt authored
      Filtering UEs by NSSAI is broken, so remove it. A later commit will
      reestablish this functionality.
      
      Simplify the code: we only handle one condition, so we can check for it
      upfront.
      5168ef72
    • Robert Schmidt's avatar
      deac1802
    • Robert Schmidt's avatar
      Start E2 agent only if configuration present · 7c6c4fc7
      Robert Schmidt authored
      This commit introduces an additional (implicit) option that signals if
      the E2 agent is to be activated or not. When reading the configuration,
      we now check if all fields are set, and activate the E2 agent only if
      this is the case. If not, we only print a warning and start the gNB
      without the agent.
      
      Note that previously, if not all fields are set correctly, the gNB
      stopped.
      
      To implement this behavior, it is necessary to change the defaults of
      the RIC IP and the directory for SMs to a (non-NULL) default value.
      Otherwise, the configuration system would not consider the field to be
      set to the default, and wrongly assumes the field is set, even though it
      is not; at least, this change is necessary to make config_isparamset()
      return NULL if the configuration is not set.
      7c6c4fc7
    • Robert Schmidt's avatar
      Introduce separate gNB-CU-UP ID in configuration · 79c920cd
      Robert Schmidt authored
      3GPP has the concept of a gNB-CU-UP ID and a (separate) gNB ID (for gNB,
      CU-CP). This commit introduces the gNB-CU-UP as a separate ID that has to be
      set in the configuration file when running as a CU-UP. For the
      CU/monolithic gNB, it is optional (but needs to be the same as the
      gNB-ID if specified).
      
      The CU-UP ID is necessary, as some entities, e.g., the e2 agent, need to
      signal both IDs, e.g., to reconcile a CU-CP and (multiple) CU-UP(s)
      belonging together.
      79c920cd
    • Robert Schmidt's avatar
      Introduce separate gNB-DU ID in configuration · 6f14b118
      Robert Schmidt authored
      3GPP has the concept of a gNB-DU ID and a (separate) gNB ID (for gNB,
      CU). This commit introduces the gNB-DU as a separate ID that has to be
      set in the configuration file. It is necessary, as some entities, e.g.,
      the e2 agent, need to signal both IDs, e.g., to reconcile a CU and
      (multiple) DU(s) belonging together.
      6f14b118
    • Robert Schmidt's avatar
      ec24b9c3
    • Robert Schmidt's avatar
      Remove redundant config code block · 463115bf
      Robert Schmidt authored
      463115bf
    • Robert Schmidt's avatar
      6a91f49e
    • Robert Schmidt's avatar
      b5e2c76d
  2. 28 Nov, 2023 2 commits
    • Robert Schmidt's avatar
      Make websrv compile · 6debc5dd
      Robert Schmidt authored
      6debc5dd
    • Robert Schmidt's avatar
      Merge branch 'integration_2023_w47' into 'develop' · ee287d62
      Robert Schmidt authored
      See merge request oai/openairinterface5g!2450
      
      * !2440 hotfix: set PDCP t-reordering to 100ms
      * !2439 rfsimulator: ignore PIPE signal
      * !2441 minor: documentation: advertise correct default value for --ssb
      * !2446 chore(ci): displaying the ASN1C commit
      * !2443 CI documentation: updates and how to reproduce
      * !2355 NR UE improve handling of MSG4 feedback in default PUCCH
      * !2408 NR UE MAC config improvements
      * !2431 T: isolate generated .h files when using make
      * !2442 nr pdcp: rework reestablishment
      * !2448 lte: switch to RRC release 16.13.0
      * !2088 Implementation of logical channel prioritization at UE
      * correctly read timing advance option `-A` in gNB
      * set sample advance for OAIUE test to make it more stable
      * set gain for OAIUE test to make it more stable
      * !2445 Correctly allocate SCC n_TimingAdvanceOffset
      * !2454 bugfix: fix NSA CI test
      ee287d62
  3. 27 Nov, 2023 6 commits
  4. 24 Nov, 2023 8 commits
  5. 23 Nov, 2023 7 commits
  6. 22 Nov, 2023 2 commits
  7. 21 Nov, 2023 2 commits
  8. 20 Nov, 2023 1 commit