YSFClients/YSFGateway/FCSNetwork.cpp

264 lines
6.1 KiB
C++
Raw Normal View History

2018-02-21 20:46:21 +01:00
/*
* Copyright (C) 2009-2014,2016,2017,2018 by Jonathan Naylor G4KLX
*
* 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 "YSFDefines.h"
#include "FCSNetwork.h"
#include "Utils.h"
#include "Log.h"
#include <cstdio>
#include <cassert>
#include <cstring>
2018-02-23 08:19:58 +01:00
const char* FCS_VERSION = "MMDVM";
2018-02-21 20:46:21 +01:00
const unsigned int BUFFER_LENGTH = 200U;
2018-02-21 20:46:21 +01:00
CFCSNetwork::CFCSNetwork(unsigned int port, const std::string& callsign, unsigned int rxFrequency, unsigned int txFrequency, const std::string& locator, unsigned int id, bool debug) :
2018-02-21 20:46:21 +01:00
m_socket(port),
m_debug(debug),
m_address(),
2018-02-22 20:11:21 +01:00
m_ping(NULL),
m_info(NULL),
m_reflector(),
m_print(),
2018-02-22 09:05:21 +01:00
m_buffer(1000U, "FCS Network Buffer"),
2018-02-22 21:14:49 +01:00
m_n(0U),
2018-02-26 20:05:34 +01:00
m_pingTimer(1000U, 0U, 800U),
2018-02-26 20:12:26 +01:00
m_resetTimer(1000U, 1U),
2018-02-22 21:14:49 +01:00
m_state(FCS_UNLINKED)
2018-02-21 20:46:21 +01:00
{
m_info = new unsigned char[100U];
::sprintf((char*)m_info, "%9u%9u%-6.6s%-12.12s%7u", rxFrequency, txFrequency, locator.c_str(), FCS_VERSION, id);
2018-02-23 08:19:58 +01:00
::memset(m_info + 43U, ' ', 57U);
2018-02-22 20:11:21 +01:00
m_ping = new unsigned char[25U];
::memcpy(m_ping + 0U, "PING", 4U);
::memset(m_ping + 4U, ' ', 6U);
::memcpy(m_ping + 4U, callsign.c_str(), callsign.size());
::memset(m_ping + 10U, 0x00U, 15U);
2018-02-21 20:46:21 +01:00
}
CFCSNetwork::~CFCSNetwork()
{
delete[] m_info;
2018-02-22 20:11:21 +01:00
delete[] m_ping;
2018-02-21 20:46:21 +01:00
}
bool CFCSNetwork::open()
{
2018-02-22 09:05:21 +01:00
LogMessage("Resolving FCS00x addresses");
m_addresses["FCS001"] = CUDPSocket::lookup("fcs001.xreflector.net");
m_addresses["FCS002"] = CUDPSocket::lookup("fcs002.xreflector.net");
m_addresses["FCS003"] = CUDPSocket::lookup("fcs003.xreflector.net");
m_addresses["FCS004"] = CUDPSocket::lookup("fcs004.xreflector.net");
m_addresses["FCS005"] = CUDPSocket::lookup("fcs005.xreflector.net");
m_addresses["FCS222"] = CUDPSocket::lookup("fcs222.xreflector.net");
m_addresses["FCS224"] = CUDPSocket::lookup("fcs224.xreflector.net");
m_addresses["FCS232"] = CUDPSocket::lookup("fcs232.xreflector.net");
2018-02-21 20:46:21 +01:00
LogMessage("Opening FCS network connection");
return m_socket.open();
}
void CFCSNetwork::clearDestination()
{
2018-02-22 21:14:49 +01:00
m_pingTimer.stop();
2018-02-26 20:12:26 +01:00
m_resetTimer.stop();
2018-02-22 21:14:49 +01:00
m_state = FCS_UNLINKED;
2018-02-21 20:46:21 +01:00
}
2018-02-22 20:11:21 +01:00
void CFCSNetwork::write(const unsigned char* data)
2018-02-21 20:46:21 +01:00
{
assert(data != NULL);
2018-02-22 21:14:49 +01:00
if (m_state != FCS_LINKED)
return;
unsigned char buffer[130U];
::memset(buffer + 0U, ' ', 130U);
::memcpy(buffer + 0U, data + 35U, 120U);
::memcpy(buffer + 121U, m_reflector.c_str(), 8U);
2018-02-21 20:46:21 +01:00
if (m_debug)
CUtils::dump(1U, "FCS Network Data Sent", buffer, 130U);
2018-02-21 20:46:21 +01:00
2018-02-26 20:05:34 +01:00
m_socket.write(buffer, 130U, m_address, FCS_PORT);
2018-02-21 20:46:21 +01:00
}
2018-02-22 23:06:24 +01:00
bool CFCSNetwork::writeLink(const std::string& reflector)
2018-02-21 20:46:21 +01:00
{
2018-02-26 20:05:34 +01:00
if (m_state != FCS_LINKED) {
2018-02-22 09:05:21 +01:00
std::string name = reflector.substr(0U, 6U);
if (m_addresses.count(name) == 0U) {
LogError("Unknown FCS reflector - %s", name.c_str());
2018-02-22 23:06:24 +01:00
return false;
2018-02-22 09:05:21 +01:00
}
m_address = m_addresses[name];
if (m_address.s_addr == INADDR_NONE) {
LogError("FCS reflector %s has no address", name.c_str());
2018-02-22 23:06:24 +01:00
return false;
2018-02-22 09:05:21 +01:00
}
}
m_reflector = reflector;
::memcpy(m_ping + 10U, reflector.c_str(), 8U);
m_print = reflector.substr(0U, 6U) + "-" + reflector.substr(6U);
2018-02-26 20:05:34 +01:00
m_state = FCS_LINKING;
2018-02-22 21:14:49 +01:00
m_pingTimer.start();
2018-02-26 20:05:34 +01:00
writePing();
2018-02-22 23:06:24 +01:00
return true;
2018-02-21 20:46:21 +01:00
}
2018-02-22 20:11:21 +01:00
void CFCSNetwork::writeUnlink(unsigned int count)
2018-02-21 20:46:21 +01:00
{
2018-02-26 20:05:34 +01:00
if (m_state != FCS_LINKED)
2018-02-22 20:11:21 +01:00
return;
2018-02-21 20:46:21 +01:00
2018-02-22 20:11:21 +01:00
for (unsigned int i = 0U; i < count; i++)
2018-02-26 20:05:34 +01:00
m_socket.write((unsigned char*)"CLOSE ", 11U, m_address, FCS_PORT);
2018-02-21 20:46:21 +01:00
}
void CFCSNetwork::clock(unsigned int ms)
{
2018-02-26 20:12:26 +01:00
m_pingTimer.clock(ms);
if (m_pingTimer.isRunning() && m_pingTimer.hasExpired()) {
writePing();
m_pingTimer.start();
}
m_resetTimer.clock(ms);
if (m_resetTimer.isRunning() && m_resetTimer.hasExpired()) {
m_n = 0U;
m_resetTimer.stop();
}
2018-02-21 20:46:21 +01:00
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;
2018-02-26 20:05:34 +01:00
if (m_state == FCS_UNLINKED)
2018-02-22 20:11:21 +01:00
return;
2018-02-26 20:05:34 +01:00
if (address.s_addr != m_address.s_addr || port != FCS_PORT)
2018-02-21 20:46:21 +01:00
return;
if (m_debug)
CUtils::dump(1U, "FCS Network Data Received", buffer, length);
2018-02-22 21:14:49 +01:00
if (length == 7) {
2018-02-27 09:02:02 +01:00
if (m_state == FCS_LINKING)
LogMessage("Linked to %s", m_print.c_str());
2018-02-22 21:14:49 +01:00
m_state = FCS_LINKED;
writeInfo();
2018-02-22 21:14:49 +01:00
}
if (length == 10 && m_state == FCS_LINKING) {
LogMessage("Linked to %s", m_print.c_str());
2018-02-22 21:14:49 +01:00
m_state = FCS_LINKED;
writeInfo();
}
2018-02-21 20:46:21 +01:00
if (length == 7 || length == 10 || length == 130) {
2018-02-22 21:14:49 +01:00
unsigned char len = length;
m_buffer.addData(&len, 1U);
m_buffer.addData(buffer, len);
}
2018-02-21 20:46:21 +01:00
}
unsigned int CFCSNetwork::read(unsigned char* data)
{
assert(data != NULL);
if (m_buffer.isEmpty())
return 0U;
2018-02-22 21:14:49 +01:00
unsigned char len = 0U;
m_buffer.getData(&len, 1U);
// Pass pings up to the gateway to reset the lost timer.
if (len != 130U) {
2018-02-22 21:14:49 +01:00
m_buffer.getData(data, len);
2018-02-26 20:05:34 +01:00
::memset(data + 0U, ' ', 14U);
::memcpy(data + 0U, "YSFP", 4U);
::memcpy(data + 4U, m_print.c_str(), 8U);
2018-02-26 20:05:34 +01:00
return 14U;
2018-02-22 21:14:49 +01:00
}
2018-02-26 20:12:26 +01:00
m_resetTimer.start();
2018-02-22 20:11:21 +01:00
unsigned char buffer[130U];
2018-02-22 21:14:49 +01:00
m_buffer.getData(buffer, len);
2018-02-22 20:11:21 +01:00
::memset(data + 0U, ' ', 35U);
::memcpy(data + 0U, "YSFD", 4U);
2018-02-22 20:11:21 +01:00
::memcpy(data + 35U, buffer, 120U);
2018-02-22 09:05:21 +01:00
2018-02-22 20:11:21 +01:00
// Put the reflector name as the via callsign.
::memcpy(data + 4U, m_print.c_str(), 9U);
2018-02-22 09:05:21 +01:00
data[34U] = m_n;
m_n += 2U;
2018-02-21 20:46:21 +01:00
return 155U;
2018-02-21 20:46:21 +01:00
}
void CFCSNetwork::close()
{
m_socket.close();
LogMessage("Closing FCS network connection");
}
void CFCSNetwork::writeInfo()
{
2018-02-26 20:05:34 +01:00
if (m_state != FCS_LINKED)
return;
if (m_debug)
CUtils::dump(1U, "FCS Network Data Sent", m_info, 100U);
2018-02-26 20:05:34 +01:00
m_socket.write(m_info, 100U, m_address, FCS_PORT);
}
2018-02-22 20:11:21 +01:00
void CFCSNetwork::writePing()
{
2018-02-26 20:05:34 +01:00
if (m_state == FCS_UNLINKED)
2018-02-22 20:11:21 +01:00
return;
if (m_debug)
CUtils::dump(1U, "FCS Network Data Sent", m_ping, 25U);
2018-02-26 20:05:34 +01:00
m_socket.write(m_ping, 25U, m_address, FCS_PORT);
2018-02-22 20:11:21 +01:00
}