2018-01-15 21:03:34 +00:00
|
|
|
/*
|
2019-01-15 21:45:29 +00:00
|
|
|
* Copyright (C) 2009-2014,2016,2018,2019 by Jonathan Naylor G4KLX
|
2018-01-15 21:03:34 +00:00
|
|
|
*
|
|
|
|
* 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 "NXDNDefines.h"
|
|
|
|
#include "NXDNNetwork.h"
|
|
|
|
#include "Defines.h"
|
|
|
|
#include "Utils.h"
|
|
|
|
#include "Log.h"
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
const unsigned int BUFFER_LENGTH = 200U;
|
|
|
|
|
2018-03-12 20:55:53 +00:00
|
|
|
CNXDNNetwork::CNXDNNetwork(const std::string& localAddress, unsigned int localPort, const std::string& gatewayAddress, unsigned int gatewayPort, bool debug) :
|
|
|
|
m_socket(localAddress, localPort),
|
2018-01-15 21:03:34 +00:00
|
|
|
m_address(),
|
2018-03-12 20:55:53 +00:00
|
|
|
m_port(gatewayPort),
|
2018-01-15 21:03:34 +00:00
|
|
|
m_debug(debug),
|
|
|
|
m_enabled(false),
|
2018-02-15 20:20:07 +00:00
|
|
|
m_buffer(1000U, "NXDN Network")
|
2018-01-15 21:03:34 +00:00
|
|
|
{
|
2018-03-12 20:55:53 +00:00
|
|
|
assert(gatewayPort > 0U);
|
|
|
|
assert(!gatewayAddress.empty());
|
|
|
|
|
|
|
|
m_address = CUDPSocket::lookup(gatewayAddress);
|
2018-01-15 21:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CNXDNNetwork::~CNXDNNetwork()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CNXDNNetwork::open()
|
|
|
|
{
|
|
|
|
LogMessage("Opening NXDN network connection");
|
|
|
|
|
|
|
|
if (m_address.s_addr == INADDR_NONE)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return m_socket.open();
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:23:01 +00:00
|
|
|
bool CNXDNNetwork::write(const unsigned char* data, NXDN_NETWORK_MESSAGE_TYPE type)
|
2018-01-15 21:03:34 +00:00
|
|
|
{
|
|
|
|
assert(data != NULL);
|
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
unsigned char buffer[110U];
|
|
|
|
::memset(buffer, 0x00U, 110U);
|
2018-01-15 21:03:34 +00:00
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
buffer[0U] = 'I';
|
|
|
|
buffer[1U] = 'C';
|
|
|
|
buffer[2U] = 'O';
|
|
|
|
buffer[3U] = 'M';
|
|
|
|
buffer[4U] = 0x01U;
|
|
|
|
buffer[5U] = 0x01U;
|
|
|
|
buffer[6U] = 0x08U;
|
|
|
|
buffer[7U] = 0xE0U;
|
2018-01-15 21:03:34 +00:00
|
|
|
|
2018-05-17 18:23:01 +00:00
|
|
|
switch (type) {
|
|
|
|
case NNMT_VOICE_HEADER:
|
|
|
|
case NNMT_VOICE_TRAILER:
|
|
|
|
buffer[37U] = 0x23U;
|
|
|
|
buffer[38U] = 0x1CU;
|
|
|
|
buffer[39U] = 0x21U;
|
|
|
|
break;
|
|
|
|
case NNMT_VOICE_BODY:
|
|
|
|
buffer[37U] = 0x23U;
|
|
|
|
buffer[38U] = 0x10U;
|
|
|
|
buffer[39U] = 0x21U;
|
|
|
|
break;
|
|
|
|
case NNMT_DATA_HEADER:
|
|
|
|
case NNMT_DATA_BODY:
|
|
|
|
case NNMT_DATA_TRAILER:
|
|
|
|
buffer[37U] = 0x23U;
|
|
|
|
buffer[38U] = 0x02U;
|
|
|
|
buffer[39U] = 0x18U;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-29 23:32:44 +00:00
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
::memcpy(buffer + 40U, data, 33U);
|
2018-01-15 21:03:34 +00:00
|
|
|
|
|
|
|
if (m_debug)
|
2018-02-15 20:20:07 +00:00
|
|
|
CUtils::dump(1U, "NXDN Network Data Sent", buffer, 102U);
|
2018-01-15 21:03:34 +00:00
|
|
|
|
2018-03-12 20:55:53 +00:00
|
|
|
return m_socket.write(buffer, 102U, m_address, m_port);
|
2018-01-15 21:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CNXDNNetwork::clock(unsigned int ms)
|
|
|
|
{
|
|
|
|
unsigned char buffer[BUFFER_LENGTH];
|
|
|
|
|
|
|
|
in_addr address;
|
|
|
|
unsigned int port;
|
|
|
|
int length = m_socket.read(buffer, BUFFER_LENGTH, address, port);
|
|
|
|
if (length <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Check if the data is for us
|
2018-03-12 20:55:53 +00:00
|
|
|
if (m_address.s_addr != address.s_addr || port != m_port) {
|
|
|
|
LogMessage("NXDN packet received from an invalid source, %08X != %08X and/or %u != %u", m_address.s_addr, address.s_addr, m_port, port);
|
2018-01-15 21:03:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
// Invalid packet type?
|
|
|
|
if (::memcmp(buffer, "ICOM", 4U) != 0)
|
2018-01-15 21:03:34 +00:00
|
|
|
return;
|
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
if (length != 102)
|
2018-01-15 21:03:34 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!m_enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (m_debug)
|
|
|
|
CUtils::dump(1U, "NXDN Network Data Received", buffer, length);
|
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
m_buffer.addData(buffer + 40U, 33U);
|
2018-01-15 21:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
bool CNXDNNetwork::read(unsigned char* data)
|
2018-01-15 21:03:34 +00:00
|
|
|
{
|
|
|
|
assert(data != NULL);
|
|
|
|
|
|
|
|
if (m_buffer.isEmpty())
|
2018-02-15 20:20:07 +00:00
|
|
|
return false;
|
2018-01-29 23:32:44 +00:00
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
m_buffer.getData(data, 33U);
|
2018-01-15 21:03:34 +00:00
|
|
|
|
2018-02-15 20:20:07 +00:00
|
|
|
return true;
|
2018-01-15 21:03:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CNXDNNetwork::reset()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CNXDNNetwork::close()
|
|
|
|
{
|
|
|
|
m_socket.close();
|
|
|
|
|
|
|
|
LogMessage("Closing NXDN network connection");
|
|
|
|
}
|
|
|
|
|
|
|
|
void CNXDNNetwork::enable(bool enabled)
|
|
|
|
{
|
|
|
|
if (enabled && !m_enabled)
|
|
|
|
reset();
|
2019-01-15 21:45:29 +00:00
|
|
|
else if (!enabled && m_enabled)
|
|
|
|
m_buffer.clear();
|
2018-01-15 21:03:34 +00:00
|
|
|
|
|
|
|
m_enabled = enabled;
|
|
|
|
}
|