|
|
|
/**
|
|
|
|
*
|
|
|
|
* \section COPYRIGHT
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
|
|
*
|
|
|
|
* By using this file, you agree to the terms and conditions set
|
|
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
|
|
* the distribution.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SRSRAN_TEST_PCAP_H
|
|
|
|
#define SRSRAN_TEST_PCAP_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Helper class for tests that wish to dump RRC, PDCP or MAC SDUs into PCAP files in order to inspect them with
|
|
|
|
* Wireshark.
|
|
|
|
*
|
|
|
|
* Depending on the layer of interest, the class adds the protocol header for the layers below so that Wireshark can
|
|
|
|
* disect them. For RRC for example, both PDCP and RLC AM dummy headers are added.
|
|
|
|
*
|
|
|
|
* There is an EUTRA and NR version for the helper methods.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "srsran/common/mac_pcap.h"
|
|
|
|
#include "srsran/mac/mac_sch_pdu_nr.h"
|
|
|
|
static std::unique_ptr<srsran::mac_pcap> pcap_handle = nullptr;
|
|
|
|
#define PCAP_CRNTI (0x1001)
|
|
|
|
#define PCAP_TTI (666)
|
|
|
|
|
|
|
|
namespace srsran {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Writes a MAC SDU of a gives LCID for NR
|
|
|
|
*
|
|
|
|
* @param lcid The logical channel ID of the SDU
|
|
|
|
* @param payload Pointer to payload
|
|
|
|
* @param len Length
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
int write_mac_sdu_nr(const uint32_t lcid, const uint8_t* payload, const uint32_t len)
|
|
|
|
{
|
|
|
|
if (pcap_handle) {
|
|
|
|
byte_buffer_t tx_buffer;
|
|
|
|
srsran::mac_sch_pdu_nr tx_pdu;
|
|
|
|
tx_pdu.init_tx(&tx_buffer, len + 10);
|
|
|
|
tx_pdu.add_sdu(lcid, payload, len);
|
|
|
|
tx_pdu.pack();
|
|
|
|
pcap_handle->write_dl_crnti_nr(tx_buffer.msg, tx_buffer.N_bytes, PCAP_CRNTI, 0, PCAP_TTI);
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Writes a PDCP SDU (e.g. RRC DL-DCCH PDU)
|
|
|
|
*
|
|
|
|
* Both PDCP and RLC AM header (dummy for SN=0) are added.
|
|
|
|
*
|
|
|
|
* @param lcid The logical channel ID of the SDU
|
|
|
|
* @param payload Pointer to payload
|
|
|
|
* @param len Length
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
int write_pdcp_sdu_nr(const uint32_t lcid, const uint8_t* payload, const uint32_t len)
|
|
|
|
{
|
|
|
|
if (pcap_handle) {
|
|
|
|
byte_buffer_t mac_sdu;
|
|
|
|
// Add dummy RLC AM PDU header
|
|
|
|
mac_sdu.msg[0] = 0x80;
|
|
|
|
mac_sdu.msg[1] = 0x00;
|
|
|
|
|
|
|
|
// Add dummy PDCP header
|
|
|
|
mac_sdu.msg[2] = 0x00;
|
|
|
|
mac_sdu.msg[3] = 0x00;
|
|
|
|
|
|
|
|
mac_sdu.N_bytes = 4;
|
|
|
|
memcpy(mac_sdu.msg + 4, payload, len);
|
|
|
|
mac_sdu.N_bytes += len;
|
|
|
|
return write_mac_sdu_nr(lcid, mac_sdu.msg, mac_sdu.N_bytes);
|
|
|
|
}
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace srsran
|
|
|
|
|
|
|
|
#endif // SRSRAN_TEST_COMMON_H
|