/** * Digital Voice Modem - Host Software * GPLv2 Open Source. Use is subject to license terms. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * @package DVM / Host Software * */ /* * Copyright (C) 2017-2022 by Bryan Biedenkapp N2PLL * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "Defines.h" #include "p25/P25Defines.h" #include "p25/lc/TDULC.h" #include "p25/P25Utils.h" #include "edac/CRC.h" #include "edac/Golay24128.h" #include "Log.h" #include "Utils.h" using namespace p25::lc; using namespace p25; #include #include #include #include // --------------------------------------------------------------------------- // Static Class Members // --------------------------------------------------------------------------- bool TDULC::m_verbose = false; SiteData TDULC::m_siteData = SiteData(); // --------------------------------------------------------------------------- // Public Class Members // --------------------------------------------------------------------------- /// /// Initializes a copy instance of the TDULC class. /// /// TDULC::TDULC(const TDULC& data) : TDULC() { copy(data); } /// /// Initializes a new instance of the TDULC class. /// /// TDULC::TDULC(LC* lc) : TDULC() { m_protect = lc->m_protect; m_lco = lc->m_lco; m_mfId = lc->m_mfId; m_srcId = lc->m_srcId; m_dstId = lc->m_dstId; m_grpVchNo = lc->m_grpVchNo; m_emergency = lc->m_emergency; m_encrypted = lc->m_encrypted; m_priority = lc->m_priority; m_group = lc->m_group; m_callTimer = lc->m_callTimer; } /// /// Initializes a new instance of the TDULC class. /// TDULC::TDULC() : m_protect(false), m_lco(LC_GROUP), m_mfId(P25_MFG_STANDARD), m_srcId(0U), m_dstId(0U), m_grpVchNo(0U), m_emergency(false), m_encrypted(false), m_priority(4U), m_group(true), m_siteIdenEntry(lookups::IdenTable()), m_rs(), m_implicit(false), m_callTimer(0U) { m_grpVchNo = m_siteData.channelNo(); } /// /// Finalizes a instance of TDULC class. /// TDULC::~TDULC() { /* stub */ } // --------------------------------------------------------------------------- // Private Class Members // --------------------------------------------------------------------------- /// /// Internal helper to convert RS bytes to a 64-bit long value. /// /// /// ulong64_t TDULC::toValue(const uint8_t* rs) { ulong64_t rsValue = 0U; // combine bytes into ulong64_t (8 byte) value rsValue = rs[1U]; rsValue = (rsValue << 8) + rs[2U]; rsValue = (rsValue << 8) + rs[3U]; rsValue = (rsValue << 8) + rs[4U]; rsValue = (rsValue << 8) + rs[5U]; rsValue = (rsValue << 8) + rs[6U]; rsValue = (rsValue << 8) + rs[7U]; rsValue = (rsValue << 8) + rs[8U]; return rsValue; } /// /// Internal helper to convert a 64-bit long value to RS bytes. /// /// /// std::unique_ptr TDULC::fromValue(const ulong64_t rsValue) { __UNIQUE_BUFFER(rs, uint8_t, P25_TDULC_LENGTH_BYTES); // split ulong64_t (8 byte) value into bytes rs[1U] = (uint8_t)((rsValue >> 56) & 0xFFU); rs[2U] = (uint8_t)((rsValue >> 48) & 0xFFU); rs[3U] = (uint8_t)((rsValue >> 40) & 0xFFU); rs[4U] = (uint8_t)((rsValue >> 32) & 0xFFU); rs[5U] = (uint8_t)((rsValue >> 24) & 0xFFU); rs[6U] = (uint8_t)((rsValue >> 16) & 0xFFU); rs[7U] = (uint8_t)((rsValue >> 8) & 0xFFU); rs[8U] = (uint8_t)((rsValue >> 0) & 0xFFU); return rs; } /// /// Internal helper to decode a terminator data unit w/ link control. /// /// /// /// True, if TDULC was decoded, otherwise false. bool TDULC::decode(const uint8_t* data, uint8_t* rs) { assert(data != nullptr); assert(rs != nullptr); // deinterleave uint8_t raw[P25_TDULC_FEC_LENGTH_BYTES + 1U]; P25Utils::decode(data, raw, 114U, 410U); // decode Golay (24,12,8) FEC edac::Golay24128::decode24128(rs, raw, P25_TDULC_LENGTH_BYTES); #if DEBUG_P25_TDULC Utils::dump(2U, "TDULC::decode(), TDULC RS", rs, P25_TDULC_LENGTH_BYTES); #endif // decode RS (24,12,13) FEC try { bool ret = m_rs.decode241213(rs); if (!ret) { LogError(LOG_P25, "TDULC::decode(), failed to decode RS (24,12,13) FEC"); return false; } } catch (...) { Utils::dump(2U, "P25, RS excepted with input data", rs, P25_TDULC_LENGTH_BYTES); return false; } if (m_verbose) { Utils::dump(2U, "TDULC::decode(), TDULC Value", rs, P25_TDULC_LENGTH_BYTES); } return true; } /// /// Internal helper to encode a terminator data unit w/ link control. /// /// /// void TDULC::encode(uint8_t* data, const uint8_t* rs) { assert(data != nullptr); assert(rs != nullptr); uint8_t outRs[P25_TDULC_LENGTH_BYTES]; ::memset(outRs, 0x00U, P25_TDULC_LENGTH_BYTES); ::memcpy(outRs, rs, P25_TDULC_LENGTH_BYTES); outRs[0U] = m_lco; // LCO if (m_implicit) outRs[0U] |= 0x40U; // Implicit Operation if (m_verbose) { Utils::dump(2U, "TDULC::encode(), TDULC Value", outRs, P25_TDULC_LENGTH_BYTES); } // encode RS (24,12,13) FEC m_rs.encode241213(outRs); #if DEBUG_P25_TDULC Utils::dump(2U, "TDULC::encode(), TDULC RS", outRs, P25_TDULC_LENGTH_BYTES); #endif uint8_t raw[P25_TDULC_FEC_LENGTH_BYTES + 1U]; ::memset(raw, 0x00U, P25_TDULC_FEC_LENGTH_BYTES + 1U); // encode Golay (24,12,8) FEC edac::Golay24128::encode24128(raw, outRs, P25_TDULC_LENGTH_BYTES); // interleave P25Utils::encode(raw, data, 114U, 410U); #if DEBUG_P25_TDULC Utils::dump(2U, "TDULC::encode(), TDULC Interleave", data, P25_TDULC_FRAME_LENGTH_BYTES + P25_PREAMBLE_LENGTH_BYTES); #endif } /// /// Internal helper to copy the the class. /// /// void TDULC::copy(const TDULC& data) { m_verbose = data.m_verbose; m_protect = data.m_protect; m_lco = data.m_lco; m_mfId = data.m_mfId; m_srcId = data.m_srcId; m_dstId = data.m_dstId; m_grpVchNo = data.m_grpVchNo; m_emergency = data.m_emergency; m_encrypted = data.m_encrypted; m_priority = data.m_priority; m_group = data.m_group; m_callTimer = data.m_callTimer; m_siteData = data.m_siteData; m_siteIdenEntry = data.m_siteIdenEntry; }