/** * Copyright 2013-2022 Software Radio Systems Limited * * This file is part of srsRAN. * * srsRAN is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * srsRAN is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * A copy of the GNU Affero General Public License can be found in * the LICENSE file in the top-level directory of this distribution * and at http://www.gnu.org/licenses/. * */ #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 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