1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
|
/*
* 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 Library 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* PathportNode.cpp
* A SandNet node
* Copyright (C) 2005 Simon Newton
*/
#include <string.h>
#include <algorithm>
#include <string>
#include <map>
#include <vector>
#include "ola/Logging.h"
#include "ola/Constants.h"
#include "ola/network/IPV4Address.h"
#include "ola/network/NetworkUtils.h"
#include "plugins/pathport/PathportNode.h"
namespace ola {
namespace plugin {
namespace pathport {
using std::string;
using std::map;
using std::vector;
using ola::network::HostToNetwork;
using ola::network::IPV4Address;
using ola::network::IPV4SocketAddress;
using ola::network::NetworkToHost;
using ola::network::UDPSocket;
using ola::Callback0;
/*
* Create a new node
* @param ip_address the IP address to prefer to listen on, if NULL we choose
* one.
*/
PathportNode::PathportNode(const string &ip_address,
uint32_t device_id,
uint8_t dscp)
: m_running(false),
m_dscp(dscp),
m_preferred_ip(ip_address),
m_device_id(device_id),
m_sequence_number(1) {
}
/*
* Cleanup
*/
PathportNode::~PathportNode() {
Stop();
universe_handlers::iterator iter;
for (iter = m_handlers.begin(); iter != m_handlers.end(); ++iter) {
delete iter->second.closure;
}
m_handlers.clear();
}
/*
* Start this node
*/
bool PathportNode::Start() {
if (m_running)
return false;
ola::network::InterfacePicker *picker =
ola::network::InterfacePicker::NewPicker();
if (!picker->ChooseInterface(&m_interface, m_preferred_ip)) {
delete picker;
OLA_INFO << "Failed to find an interface";
return false;
}
delete picker;
m_config_addr = IPV4Address(HostToNetwork(PATHPORT_CONFIG_GROUP));
m_status_addr = IPV4Address(HostToNetwork(PATHPORT_STATUS_GROUP));
m_data_addr = IPV4Address(HostToNetwork(PATHPORT_DATA_GROUP));
if (!InitNetwork())
return false;
m_socket.SetTos(m_dscp);
m_running = true;
SendArpReply();
return true;
}
/*
* Stop this node
*/
bool PathportNode::Stop() {
if (!m_running)
return false;
m_socket.Close();
m_running = false;
return true;
}
/*
* Called when there is data on this socket
*/
void PathportNode::SocketReady(UDPSocket *socket) {
pathport_packet_s packet;
ssize_t packet_size = sizeof(packet);
IPV4SocketAddress source;
if (!socket->RecvFrom(reinterpret_cast<uint8_t*>(&packet),
&packet_size, &source))
return;
// skip packets sent by us
if (source.Host() == m_interface.ip_address)
return;
if (packet_size < static_cast<ssize_t>(sizeof(packet.header))) {
OLA_WARN << "Small pathport packet received, discarding";
return;
}
packet_size -= static_cast<ssize_t>(sizeof(packet.header));
// Validate header
if (!ValidateHeader(packet.header)) {
OLA_WARN << "Invalid pathport packet";
return;
}
uint32_t destination = NetworkToHost(packet.header.destination);
if (destination != m_device_id &&
destination != PATHPORT_ID_BROADCAST &&
destination != PATHPORT_STATUS_GROUP &&
destination != PATHPORT_CONFIG_GROUP &&
destination != PATHPORT_DATA_GROUP) {
ola::network::IPV4Address addr(destination);
OLA_WARN << "pathport destination not set to us: " << addr;
return;
}
// TODO(simon): Handle multiple pdus here
pathport_packet_pdu *pdu = &packet.d.pdu;
if (packet_size < static_cast<ssize_t>(sizeof(pathport_pdu_header))) {
OLA_WARN << "Pathport packet too small to fit a pdu header";
return;
}
packet_size -= sizeof(pathport_pdu_header);
switch (NetworkToHost(pdu->head.type)) {
case PATHPORT_DATA:
HandleDmxData(pdu->d.data, packet_size);
break;
case PATHPORT_ARP_REQUEST:
SendArpReply();
break;
case PATHPORT_ARP_REPLY:
OLA_DEBUG << "Got pathport arp reply";
break;
default:
OLA_INFO << "Unhandled pathport packet with id: " <<
NetworkToHost(pdu->head.type);
}
}
/*
* Set the closure to be called when we receive data for this universe.
* @param universe the universe to register the handler for
* @param handler the Callback0 to call when there is data for this universe.
* Ownership of the closure is transferred to the node.
*/
bool PathportNode::SetHandler(uint8_t universe,
DmxBuffer *buffer,
Callback0<void> *closure) {
if (!closure)
return false;
universe_handlers::iterator iter = m_handlers.find(universe);
if (iter == m_handlers.end()) {
universe_handler handler;
handler.buffer = buffer;
handler.closure = closure;
m_handlers[universe] = handler;
} else {
Callback0<void> *old_closure = iter->second.closure;
iter->second.closure = closure;
delete old_closure;
}
return true;
}
/*
* Remove the handler for this universe
* @param universe the universe handler to remove
* @param true if removed, false if it didn't exist
*/
bool PathportNode::RemoveHandler(uint8_t universe) {
universe_handlers::iterator iter = m_handlers.find(universe);
if (iter != m_handlers.end()) {
Callback0<void> *old_closure = iter->second.closure;
m_handlers.erase(iter);
delete old_closure;
return true;
}
return false;
}
/*
* Send an arp reply
*/
bool PathportNode::SendArpReply() {
if (!m_running)
return false;
pathport_packet_s packet;
// Should this go to status or config?
PopulateHeader(&packet.header, PATHPORT_STATUS_GROUP);
pathport_packet_pdu *pdu = &packet.d.pdu;
pdu->head.type = HostToNetwork((uint16_t) PATHPORT_ARP_REPLY);
pdu->head.len = HostToNetwork((uint16_t) sizeof(pathport_pdu_arp_reply));
pdu->d.arp_reply.id = HostToNetwork(m_device_id);
m_interface.ip_address.Get(pdu->d.arp_reply.ip);
pdu->d.arp_reply.manufacturer_code = NODE_MANUF_ZP_TECH;
pdu->d.arp_reply.device_class = NODE_CLASS_DMX_NODE;
pdu->d.arp_reply.device_type = NODE_DEVICE_PATHPORT;
pdu->d.arp_reply.component_count = 1;
unsigned int length = sizeof(pathport_packet_header) +
sizeof(pathport_pdu_header) +
sizeof(pathport_pdu_arp_reply);
return SendPacket(packet, length, m_config_addr);
}
/*
* Send some DMX data
* @param buffer the DMX data
* @return true if it was sent successfully, false otherwise
*/
bool PathportNode::SendDMX(unsigned int universe, const DmxBuffer &buffer) {
if (!m_running)
return false;
if (universe > MAX_UNIVERSES) {
OLA_WARN << "attempt to send to universe " << universe;
return false;
}
pathport_packet_s packet;
// pad to a multiple of 4 bytes
unsigned int padded_size = (buffer.Size() + 3) & ~3;
PopulateHeader(&packet.header, PATHPORT_DATA_GROUP);
pathport_packet_pdu *pdu = &packet.d.pdu;
pdu->head.type = HostToNetwork((uint16_t) PATHPORT_DATA);
pdu->head.len = HostToNetwork(
(uint16_t) (padded_size + sizeof(pathport_pdu_data)));
pdu->d.data.type = HostToNetwork((uint16_t) XDMX_DATA_FLAT);
pdu->d.data.channel_count = HostToNetwork((uint16_t) buffer.Size());
pdu->d.data.universe = 0;
pdu->d.data.start_code = 0;
pdu->d.data.offset = HostToNetwork(
(uint16_t) (DMX_UNIVERSE_SIZE * universe));
unsigned int length = padded_size;
buffer.Get(pdu->d.data.data, &length);
// pad data to multiple of 4 bytes
length = sizeof(pathport_packet_header) +
sizeof(pathport_pdu_header) +
sizeof(pathport_pdu_data) + padded_size;
return SendPacket(packet, length, m_data_addr);
}
/*
* Setup the networking components.
*/
bool PathportNode::InitNetwork() {
if (!m_socket.Init()) {
OLA_WARN << "Socket init failed";
return false;
}
if (!m_socket.Bind(IPV4SocketAddress(IPV4Address::WildCard(),
PATHPORT_PORT))) {
m_socket.Close();
return false;
}
if (!m_socket.SetMulticastInterface(m_interface.ip_address)) {
m_socket.Close();
return false;
}
if (!m_socket.JoinMulticast(m_interface.ip_address, m_config_addr)) {
OLA_WARN << "Failed to join multicast to: " << m_config_addr;
m_socket.Close();
return false;
}
if (!m_socket.JoinMulticast(m_interface.ip_address, m_data_addr)) {
OLA_WARN << "Failed to join multicast to: " << m_data_addr;
m_socket.Close();
return false;
}
if (!m_socket.JoinMulticast(m_interface.ip_address, m_status_addr)) {
OLA_WARN << "Failed to join multicast to: " << m_status_addr;
m_socket.Close();
return false;
}
m_socket.SetOnData(
NewCallback(this, &PathportNode::SocketReady, &m_socket));
return true;
}
/*
* Fill in a pathport header structure
*/
void PathportNode::PopulateHeader(pathport_packet_header *header,
uint32_t destination) {
header->protocol = HostToNetwork(PATHPORT_PROTOCOL);
header->version_major = MAJOR_VERSION;
header->version_minor = MINOR_VERSION;
header->sequence = HostToNetwork(m_sequence_number);
memset(header->reserved, 0, sizeof(header->reserved));
header->source = HostToNetwork(m_device_id);
header->destination = HostToNetwork(destination);
}
/*
* Check a pathport header structure is valid.
*/
bool PathportNode::ValidateHeader(const pathport_packet_header &header) {
return (
header.protocol == HostToNetwork(PATHPORT_PROTOCOL) &&
header.version_major == MAJOR_VERSION &&
header.version_minor == MINOR_VERSION);
}
/*
* Handle new DMX data
*/
void PathportNode::HandleDmxData(const pathport_pdu_data &packet,
unsigned int size) {
if (size < sizeof(pathport_pdu_data)) {
OLA_WARN << "Small pathport data packet received, ignoring";
return;
}
// Don't handle release messages yet
if (NetworkToHost(packet.type) != XDMX_DATA_FLAT)
return;
if (packet.start_code) {
OLA_INFO << "Non-0 start code packet received, ignoring";
return;
}
unsigned int offset = NetworkToHost(packet.offset) % DMX_UNIVERSE_SIZE;
unsigned int universe = NetworkToHost(packet.offset) / DMX_UNIVERSE_SIZE;
const uint8_t *dmx_data = packet.data;
unsigned int data_size = std::min(
NetworkToHost(packet.channel_count),
(uint16_t) (size - sizeof(pathport_pdu_data)));
while (data_size > 0 && universe <= MAX_UNIVERSES) {
unsigned int channels_for_this_universe =
std::min(data_size, DMX_UNIVERSE_SIZE - offset);
universe_handlers::iterator iter = m_handlers.find(universe);
if (iter != m_handlers.end()) {
iter->second.buffer->SetRange(offset,
dmx_data,
channels_for_this_universe);
iter->second.closure->Run();
}
data_size -= channels_for_this_universe;
dmx_data += channels_for_this_universe;
offset = 0;
universe++;
}
}
/*
* @param destination the destination to target
*/
bool PathportNode::SendArpRequest(uint32_t destination) {
if (!m_running)
return false;
pathport_packet_s packet;
PopulateHeader(&packet.header, destination);
packet.d.pdu.head.type = HostToNetwork((uint16_t) PATHPORT_ARP_REQUEST);
packet.d.pdu.head.len = 0;
unsigned int length = sizeof(pathport_packet_header) +
sizeof(pathport_pdu_header);
return SendPacket(packet, length, m_status_addr);
}
/*
* Send a packet
*/
bool PathportNode::SendPacket(const pathport_packet_s &packet,
unsigned int size,
IPV4Address destination) {
ssize_t bytes_sent = m_socket.SendTo(
reinterpret_cast<const uint8_t*>(&packet),
size,
IPV4SocketAddress(destination, PATHPORT_PORT));
if (bytes_sent != static_cast<ssize_t>(size)) {
OLA_INFO << "Only sent " << bytes_sent << " of " << size;
return false;
}
return true;
}
} // namespace pathport
} // namespace plugin
} // namespace ola
|