/* vim: set expandtab ts=4 sw=4: */
/*
* You may redistribute this program and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation,
* either version 3 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, see .
*/
#include "memory/Allocator.h"
#include "interface/Interface.h"
#include "util/log/Log.h"
#include "switch/SwitchCore.h"
#include "switch/NumberCompress.h"
#include "switch/Penalty.h"
#include "util/Bits.h"
#include "util/Checksum.h"
#include "util/Endian.h"
#include "wire/Control.h"
#include "wire/Error.h"
#include "wire/Headers.h"
#include "wire/SwitchHeader.h"
#include "wire/Message.h"
#include
#include
struct SwitchInterface
{
struct Interface* iface;
struct SwitchCore* core;
struct Penalty* penalty;
struct Allocator_OnFreeJob* onFree;
Identity
};
struct SwitchCore
{
struct SwitchInterface interfaces[NumberCompress_INTERFACES];
uint32_t interfaceCount;
bool routerAdded;
struct Log* logger;
struct EventBase* eventBase;
struct Allocator* allocator;
};
struct SwitchCore* SwitchCore_new(struct Log* logger,
struct Allocator* allocator,
struct EventBase* base)
{
struct SwitchCore* core = Allocator_calloc(allocator, sizeof(struct SwitchCore), 1);
core->allocator = allocator;
core->interfaceCount = 0;
core->logger = logger;
core->eventBase = base;
return core;
}
static inline uint16_t sendMessage(const struct SwitchInterface* switchIf,
struct Message* toSend,
struct Log* logger)
{
return Interface_sendMessage(switchIf->iface, toSend);
}
#ifdef Version_7_COMPAT
struct ErrorPacket7 {
struct SwitchHeader switchHeader;
struct Control ctrl;
};
Assert_compileTime(sizeof(struct ErrorPacket7) == SwitchHeader_SIZE + sizeof(struct Control));
static inline void sendError7(struct SwitchInterface* iface,
struct Message* cause,
uint32_t code,
struct Log* logger)
{
struct SwitchHeader* header = (struct SwitchHeader*) cause->bytes;
if (SwitchHeader_isV7Ctrl(header)
&& ((struct ErrorPacket7*) cause->bytes)->ctrl.type_be == Control_ERROR_be)
{
// Errors never cause other errors to be sent.
return;
}
// limit of 256 bytes
cause->length =
(cause->length < Control_Error_MAX_SIZE) ? cause->length : Control_Error_MAX_SIZE;
// Shift back so we can add another header.
Message_shift(cause,
SwitchHeader_SIZE + Control_HEADER_SIZE + Control_Error_HEADER_SIZE,
NULL);
struct ErrorPacket7* err = (struct ErrorPacket7*) cause->bytes;
err->switchHeader.label_be = Bits_bitReverse64(header->label_be);
SwitchHeader_setSuppressErrors(&err->switchHeader, true);
// set version to 0 so that other node will not change congestion field.
SwitchHeader_setVersion(&err->switchHeader, 0);
SwitchHeader_setPenalty(&err->switchHeader, 0);
SwitchHeader_setCongestion(&err->switchHeader, 0);
err->ctrl.type_be = Control_ERROR_be;
err->ctrl.content.error.errorType_be = Endian_hostToBigEndian32(code);
err->ctrl.checksum_be = 0;
err->ctrl.checksum_be =
Checksum_engine((uint8_t*) &err->ctrl, cause->length - SwitchHeader_SIZE);
sendMessage(iface, cause, logger);
}
#endif
struct ErrorPacket8 {
struct SwitchHeader switchHeader;
uint32_t handle;
struct Control ctrl;
};
Assert_compileTime(sizeof(struct ErrorPacket8) == SwitchHeader_SIZE + 4 + sizeof(struct Control));
static inline void sendError8(struct SwitchInterface* iface,
struct Message* cause,
uint32_t code,
struct Log* logger)
{
if (cause->length < SwitchHeader_SIZE + 4) {
Log_debug(logger, "runt");
return;
}
struct SwitchHeader* header = (struct SwitchHeader*) cause->bytes;
if (SwitchHeader_getSuppressErrors(header)) {
// don't send errors if they're asking us to suppress them!
return;
}
// limit of 256 bytes
cause->length =
(cause->length < Control_Error_MAX_SIZE) ? cause->length : Control_Error_MAX_SIZE;
// Shift back so we can add another header.
Message_shift(cause,
SwitchHeader_SIZE + 4 + Control_HEADER_SIZE + Control_Error_HEADER_SIZE,
NULL);
struct ErrorPacket8* err = (struct ErrorPacket8*) cause->bytes;
err->switchHeader.label_be = Bits_bitReverse64(header->label_be);
SwitchHeader_setSuppressErrors(header, true);
SwitchHeader_setVersion(header, SwitchHeader_CURRENT_VERSION);
SwitchHeader_setPenalty(header, 0);
SwitchHeader_setCongestion(header, 0);
err->handle = 0xffffffff;
err->ctrl.type_be = Control_ERROR_be;
err->ctrl.content.error.errorType_be = Endian_hostToBigEndian32(code);
err->ctrl.checksum_be = 0;
err->ctrl.checksum_be =
Checksum_engine((uint8_t*) &err->ctrl, cause->length - SwitchHeader_SIZE - 4);
sendMessage(iface, cause, logger);
}
static inline void sendError(struct SwitchInterface* iface,
struct Message* cause,
uint32_t code,
struct Log* logger)
{
struct SwitchHeader* header = (struct SwitchHeader*) cause->bytes;
#ifdef Version_8_COMPAT
if (SwitchHeader_getCongestion(header)) {
// new version packet.
sendError8(iface, cause, code, logger);
return;
} else if (cause->length > SwitchHeader_SIZE + 4 &&
((uint32_t*)(&header[1]))[0] == 0xffffffff)
{
// ctrl packet which is being sent to a possibly-old-version node.
sendError8(iface, cause, code, logger);
return;
}
#ifdef Version_7_COMPAT
sendError7(iface, cause, code, logger);
return;
#endif
#endif
sendError8(iface, cause, code, logger);
}
#define DEBUG_SRC_DST(logger, message) \
Log_debug(logger, message " ([%u] to [%u])", sourceIndex, destIndex)
/** This never returns an error, it sends an error packet instead. */
static uint8_t receiveMessage(struct Message* message, struct Interface* iface)
{
struct SwitchInterface* sourceIf =
Identity_check((struct SwitchInterface*) iface->receiverContext);
if (message->length < SwitchHeader_SIZE) {
Log_debug(sourceIf->core->logger, "DROP runt packet.");
return Error_NONE;
}
struct SwitchCore* core = sourceIf->core;
struct SwitchHeader* header = (struct SwitchHeader*) message->bytes;
const uint64_t label = Endian_bigEndianToHost64(header->label_be);
uint32_t bits = NumberCompress_bitsUsedForLabel(label);
const uint32_t sourceIndex = sourceIf - core->interfaces;
const uint32_t destIndex = NumberCompress_getDecompressed(label, bits);
const uint32_t sourceBits = NumberCompress_bitsUsedForNumber(sourceIndex);
Assert_true(destIndex < NumberCompress_INTERFACES);
Assert_true(sourceIndex < NumberCompress_INTERFACES);
if (1 == destIndex) {
if (1 != (label & 0xf)) {
/* routing interface: must always be compressed as 0001 */
DEBUG_SRC_DST(sourceIf->core->logger,
"DROP packet for this router because the destination "
"discriminator was wrong");
sendError(sourceIf, message, Error_MALFORMED_ADDRESS, sourceIf->core->logger);
return Error_NONE;
}
//Assert_true(bits == 4);
}
if (sourceBits > bits) {
if (destIndex == 1) {
// If the destination index is this router, don't drop the packet since there no
// way for a node to know the size of the representation of its source label.
// - label ends in 0001; if there are enough zeroes at the end after removing the 1,
// we can still fit in the source discriminator
// - the return path probably doesn't start with 3 zeroes, but it will still be working,
// as the source discriminator is large enough to make space for 3 zeroes between
// reverse return path and forward path (see below)
if (0 != ((label ^ 1) & (UINT64_MAX >> (64 - sourceBits - 4)))) {
// This is a bug.
// https://github.com/cjdelisle/cjdns/issues/93
// The problem is that there is no way to splice a route and know for certain
// that you've not spliced one which will end up in this if statement.
// Unfortunately there seems no clean way around this issue at the moment.
// If this router and switch communicated using labels with "64 + four less
// than the number of bits in largest discriminator" bits wide, it could handle
// this situation, this solution is obviously non-trivial.
DEBUG_SRC_DST(sourceIf->core->logger,
"DROP packet for this router because there is no way to "
"represent the return path.");
sendError(sourceIf, message, Error_RETURN_PATH_INVALID, sourceIf->core->logger);
return Error_NONE;
}
bits = sourceBits;
} else if (1 == sourceIndex) {
// - we need at least 3 zeroes between reverse return path and forward path:
// right now the label only contains the forward path
// - sourceBits == 4, bits < 4 -> bits + 64 - sourceBits < 64
// - the reverse source discriminator "1000" and the target discriminator "0001"
// can overlap as "10001" (or "100001" or ...)
if (0 != label >> (bits + 64 - sourceBits)) {
// not enough zeroes
DEBUG_SRC_DST(sourceIf->core->logger, "DROP packet because source address is "
"larger than destination address.");
sendError(sourceIf, message, Error_MALFORMED_ADDRESS, sourceIf->core->logger);
return Error_NONE;
}
} else {
Log_info(sourceIf->core->logger, "source exceeds dest");
DEBUG_SRC_DST(sourceIf->core->logger, "DROP packet because source address is "
"larger than destination address.");
sendError(sourceIf, message, Error_MALFORMED_ADDRESS, sourceIf->core->logger);
return Error_NONE;
}
}
if (core->interfaces[destIndex].iface == NULL) {
Log_info(sourceIf->core->logger, "no such iface");
DEBUG_SRC_DST(sourceIf->core->logger, "DROP packet because there is no interface "
"where the bits specify.");
sendError(sourceIf, message, Error_MALFORMED_ADDRESS, sourceIf->core->logger);
return Error_NONE;
}
/*if (sourceIndex == destIndex && sourceIndex != 1) {
DEBUG_SRC_DST(sourceIf->core->logger, "DROP Packet with redundant route.");
sendError(sourceIf, message, Error_LOOP_ROUTE, sourceIf->core->logger);
return Error_NONE;
}*/
uint64_t sourceLabel = Bits_bitReverse64(NumberCompress_getCompressed(sourceIndex, bits));
uint64_t targetLabel = (label >> bits) | sourceLabel;
int cloneLength = (message->length < Control_Error_MAX_SIZE) ?
message->length : Control_Error_MAX_SIZE;
uint8_t messageClone[Control_Error_MAX_SIZE];
Bits_memcpy(messageClone, message->bytes, cloneLength);
// Update the header
header->label_be = Endian_hostToBigEndian64(targetLabel);
uint32_t labelShift = SwitchHeader_getLabelShift(header) + bits;
if (labelShift > 63) {
// TODO(cjd): hmm should we return an error packet?
Log_debug(sourceIf->core->logger, "Label rolled over");
return Error_NONE;
}
SwitchHeader_setLabelShift(header, labelShift);
Penalty_apply(sourceIf->penalty, header, message->length);
const uint16_t err = sendMessage(&core->interfaces[destIndex], message, sourceIf->core->logger);
if (err) {
Log_debug(sourceIf->core->logger, "Sending packet caused an error [%s]",
Error_strerror(err));
// be careful, the message could have decrypted content in it
// and we don't want to spill it out over the wire.
message->length = message->capacity;
Message_shift(message, -message->length, NULL);
Message_shift(message, Control_Error_MAX_SIZE, NULL);
Bits_memcpy(message->bytes, messageClone, cloneLength);
message->length = cloneLength;
sendError(sourceIf, message, err, sourceIf->core->logger);
return Error_NONE;
}
return Error_NONE;
}
static int removeInterface(struct Allocator_OnFreeJob* job)
{
struct SwitchInterface* si = Identity_check((struct SwitchInterface*) job->userData);
Bits_memset(si, 0, sizeof(struct SwitchInterface));
return 0;
}
void SwitchCore_swapInterfaces(struct Interface* if1, struct Interface* if2)
{
struct SwitchInterface* si1 = Identity_check((struct SwitchInterface*) if1->receiverContext);
struct SwitchInterface* si2 = Identity_check((struct SwitchInterface*) if2->receiverContext);
Assert_true(Allocator_cancelOnFree(si1->onFree) > -1);
Assert_true(Allocator_cancelOnFree(si2->onFree) > -1);
struct SwitchInterface si3;
Bits_memcpyConst(&si3, si1, sizeof(struct SwitchInterface));
Bits_memcpyConst(si1, si2, sizeof(struct SwitchInterface));
Bits_memcpyConst(si2, &si3, sizeof(struct SwitchInterface));
// Now the if#'s are in reverse order :)
si1->onFree = Allocator_onFree(if2->allocator, removeInterface, si1);
si2->onFree = Allocator_onFree(if1->allocator, removeInterface, si2);
if1->receiverContext = si2;
if2->receiverContext = si1;
}
/**
* @param trust a positive integer representing how much you trust the
* connected node not to send a flood.
* @param labelOut an integer pointer which will be set to the path to the newly added node
* in host endian order.
* @return 0 if all goes well, -1 if the list is full.
*/
int SwitchCore_addInterface(struct Interface* iface,
const uint64_t trust,
uint64_t* labelOut,
struct SwitchCore* core)
{
// This is some hackery to make sure the router interface is always index 1.
uint32_t ifIndex = core->interfaceCount;
if (ifIndex > 0 && !core->routerAdded) {
ifIndex++;
} else if (ifIndex == 1) {
ifIndex--;
}
// If there's a vacent spot where another iface was before it was removed, use that.
for (uint32_t i = 0; i < ifIndex; i++) {
if (core->interfaces[i].iface == NULL && i != 1) {
ifIndex = i;
break;
}
}
if (ifIndex == NumberCompress_INTERFACES) {
return SwitchCore_addInterface_OUT_OF_SPACE;
}
struct SwitchInterface* newIf = &core->interfaces[ifIndex];
Bits_memcpyConst(newIf, (&(struct SwitchInterface) {
.iface = iface,
.core = core
}), sizeof(struct SwitchInterface));
newIf->penalty = Penalty_new(iface->allocator, core->eventBase, core->logger);
newIf->onFree = Allocator_onFree(iface->allocator, removeInterface, newIf);
Identity_set(newIf);
iface->receiverContext = &core->interfaces[ifIndex];
iface->receiveMessage = receiveMessage;
uint32_t bits = NumberCompress_bitsUsedForNumber(ifIndex);
*labelOut = NumberCompress_getCompressed(ifIndex, bits) | (1 << bits);
core->interfaceCount++;
return 0;
}
int SwitchCore_setRouterInterface(struct Interface* iface, struct SwitchCore* core)
{
Bits_memcpyConst(&core->interfaces[1], (&(struct SwitchInterface) {
.iface = iface,
.core = core
}), sizeof(struct SwitchInterface));
Identity_set(&core->interfaces[1]);
core->interfaces[1].penalty = Penalty_new(iface->allocator, core->eventBase, core->logger);
iface->receiverContext = &core->interfaces[1];
iface->receiveMessage = receiveMessage;
core->interfaceCount++;
core->routerAdded = true;
return 0;
}