An error occurred fetching the project authors.
  1. 26 Mar, 2019 1 commit
  2. 23 Mar, 2019 2 commits
  3. 13 Mar, 2019 1 commit
    • Cedric Roux's avatar
      x2ap: timers, cleanup · 9456fe58
      Cedric Roux authored
      This commit introduces X2AP timers (t_reloc_prep, tx2_reloc_overall).
      You need to set the values in the configuration file.
      
      X2AP can be enabled or disabled in the configuration file too (disabled
      by default).
      
      Some deadcode was removed.
      9456fe58
  4. 09 Mar, 2019 1 commit
  5. 08 Mar, 2019 1 commit
  6. 07 Mar, 2019 1 commit
  7. 05 Mar, 2019 7 commits
    • Cedric Roux's avatar
      fix compilation in nos1 mode · 78b6fef6
      Cedric Roux authored
      Some #if defined(ENABLE_USE_MME)/#endif were added here and there.
      The nos1 softmodem has not been tested, maybe this commit breaks
      things.
      78b6fef6
    • Cedric Roux's avatar
      x2: first implementation of ID management, some cleanup · c394188e
      Cedric Roux authored
      Some deadcode was removed.
      
      The implementation of the ID management is not finished.
      It will only work if the handover is successful. No error
      recovery has been done. For error recovery, we need to
      implement the X2AP timers. As it is, in case of error, an ID
      might very well never be released.
      
      It has been tested with 1 and 2 UEs doing handover more or less
      at the same time.
      c394188e
    • Konstantinos Alexandris's avatar
      x2: some cleanup in instance management · 02193f4b
      Konstantinos Alexandris authored
      - manage target eNB based on target cell id received by measurement report
        for Handover Request
      - manage source eNB based on association id for Handover Request Ack
      - use only x2ap instance and not x2ap data instance points to x2ap instance
      02193f4b
    • Konstantinos Alexandris's avatar
      x2: bug fixes · 31797221
      Konstantinos Alexandris authored
      - free correctly in rrc_eNB_free_mem_UE_context
      - check for existence of ue_context.handover_info in rrc_enb_process_itti_msg
      - check return value sctp_peeloff in sctp_handle_new_association_req_multi
        and exit in case of failure
      31797221
    • Konstantinos Alexandris's avatar
    • Konstantinos Alexandris's avatar
    • Konstantinos Alexandris's avatar
      bugfix: fix realtime issues with RRC (race condition) · eb59c2cd
      Konstantinos Alexandris authored
      When testing x2 handover, we found a race issue between the
      RRC thread and the phy/mac thread (which is calling rrc_rx_tx).
      
      The UE context was updated by the RRC thread but in the middle of
      the update (which consists of several function calls and variables'
      updates) the context was accessed by rrc_rx_tx. At this point, the
      context was in an inconsistent state.
      
      The solution is to access RRC data in the RRC thread only.
      The function rrc_rx_tx now just sends an ITTI message to the
      RRC thread. When receiving this message, the RRC thread does
      the processing that was done by the function rrc_rx_tx (in
      the new function rrc_subframe_process).
      
      This way, the race condition disappears.
      
      However we now send an ITTI message from the phy/mac thread to
      the RRC thread at each subframe. That might increase the processing
      time of the eNB. So maybe it's not the best solution. It may also
      improve the realtime performance because less work is done by the
      phy/mac realtime thread. To be checked somehow.
      
      Also, it may be possible that some other RRC functions are still
      called by the phy/mac thread, which should also be checked and
      replaced by ITTI messages (if this solution is considered to be
      correct).
      eb59c2cd
  8. 04 Mar, 2019 1 commit
  9. 02 Mar, 2019 2 commits
  10. 27 Feb, 2019 1 commit
    • Cedric Roux's avatar
      bugfix: fix PDCP sequence management (plus some cleanup) · e3782b5c
      Cedric Roux authored
      With the introduction of X2AP into develop, the UEs now have to regularly
      send measurement reports.
      
      In the logs of the eNB, we see:
      
      [OSA]   Mismatch found in integrity for algorithm 2,
              got e0.a0.c2.66, expecting a5.9c.cb.57
      [PDCP]   [OSA][RB 1] eNB failed to validate MAC-I of incoming PDU
      
      This is a bug in the PDCP layer that uses wrong parameters to compute the
      integrity.
      
      This commit fixes this bug.
      
      The function pdcp_is_rx_seq_number_valid was removed. Its processing
      has been directly integrated into the function pdcp_data_ind.
      
      The function pdcp_mark_current_pdu_as_received is not called anymore.
      Its processing was not used later on, so as of today, not calling it does
      not introduce any functional change.
      
      The function pdcp_validate_security takes now as parameters both
      SN and HFN. Same for the function pdcp_get_next_count_rx.
      
      Useless constants PDCP_SN_5BIT, PDCP_SN_7BIT and PDCP_SN_12BIT have been
      removed.
      
      The compilation option ENABLE_SECURITY has been removed. It's now always
      on. (This may impact some use cases.)
      
      The PDCP for DRB using RLC AM is not correct. It was not correct before
      this commit (apart from the integrity bug). We should deal with a list
      of PDUs and transmit packets to upper layers as detailed in the specs.
      Today we transmit the PDU as soon as we get it. We don't care about
      duplicates, in-order delivery, timeouts.
      
      Also, we don't deal with "PDCP re-establishment". Not sure how that impacts
      the software.
      
      And, last but not least, there is still no ROHC.
      e3782b5c
  11. 26 Feb, 2019 1 commit
  12. 25 Feb, 2019 5 commits
  13. 22 Feb, 2019 2 commits
  14. 17 Feb, 2019 1 commit
  15. 15 Feb, 2019 1 commit
  16. 13 Feb, 2019 1 commit
  17. 12 Feb, 2019 1 commit
  18. 25 Jan, 2019 1 commit
    • Robert Schmidt's avatar
      Perform S1 UE Context Release Complete after corresponding F1 message · d9d6ce37
      Robert Schmidt authored
      This commits isolates the S1 UE Ctxt Rel Complete and GTP Tunnel Delete
      Requests in functions and calls these function in the original place
      (rrc_rx_tx()). The same functions are then used in the F1 UE Ctxt Rel
      Complete handler to perform the same functionality, i.e. forward the UE
      Ctxt Rel Complete message to the MME and free outstanding resources (RRC
      context, GTP tunnels, S1 context).
      d9d6ce37
  19. 21 Jan, 2019 3 commits
  20. 18 Jan, 2019 1 commit
    • Robert Schmidt's avatar
      F1AP: when UL_sync failure, send UEContextRelReq · 7df82575
      Robert Schmidt authored
      When a phone loses connection, it should not simply be removed but first
      CU should be informed which will send a ContextRelCmd. Correspondingly,
      when the RRC releases the UE, it does not send a UE Context Release Req
      7df82575
  21. 17 Jan, 2019 1 commit
  22. 16 Jan, 2019 1 commit
  23. 10 Jan, 2019 1 commit
  24. 07 Jan, 2019 1 commit
    • Cedric Roux's avatar
      fix a lot of file mode · aea6b4b5
      Cedric Roux authored
      For whatever reason most of the files had their permission
      changed from 644 to 755, which is not wanted.
      aea6b4b5
  25. 23 Dec, 2018 1 commit