/* 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 "dht/Address.h" #include "net/ControlHandler.h" #include "util/Identity.h" #include "util/AddrTools.h" #include "util/Checksum.h" #include "wire/Control.h" #include "wire/Error.h" #define NumberCompress_OLD_CODE #include "switch/NumberCompress.h" struct ControlHandler_pvt { struct ControlHandler pub; struct Log* log; struct Allocator* alloc; uint8_t myPublicKey[32]; struct Iface eventIf; struct Address activeSnode; Identity }; /** * Expects [ Ctrl ][ Error ][ cause SwitchHeader ][ cause handle ][ cause etc.... ] */ #define handleError_MIN_SIZE (Control_Header_SIZE + Control_Error_MIN_SIZE + SwitchHeader_SIZE + 4) static Iface_DEFUN handleError(struct Message* msg, struct ControlHandler_pvt* ch, uint64_t label, uint8_t* labelStr, struct RouteHeader* rh) { if (msg->length < handleError_MIN_SIZE) { Log_info(ch->log, "DROP runt error packet from [%s]", labelStr); return NULL; } msg->length = handleError_MIN_SIZE; Message_push(msg, &rh->sh, SwitchHeader_SIZE, NULL); Message_push32(msg, 0xffffffff, NULL); Message_push32(msg, PFChan_Core_SWITCH_ERR, NULL); return Iface_next(&ch->eventIf, msg); } /** * Expects [ SwitchHeader ][ Ctrl ][ (key)Ping ][ data etc.... ] */ #define handlePing_MIN_SIZE (Control_Header_SIZE + Control_Ping_MIN_SIZE) static Iface_DEFUN handlePing(struct Message* msg, struct ControlHandler_pvt* ch, uint64_t label, uint8_t* labelStr, uint16_t messageType_be) { if (msg->length < handlePing_MIN_SIZE) { Log_info(ch->log, "DROP runt ping"); return NULL; } struct Control* ctrl = (struct Control*) msg->bytes; Message_shift(msg, -Control_Header_SIZE, NULL); // Ping and keyPing share version location struct Control_Ping* ping = (struct Control_Ping*) msg->bytes; uint32_t herVersion = Endian_bigEndianToHost32(ping->version_be); if (!Version_isCompatible(Version_CURRENT_PROTOCOL, herVersion)) { Log_debug(ch->log, "DROP ping from incompatible version [%d]", herVersion); return NULL; } if (messageType_be == Control_KEYPING_be) { Log_debug(ch->log, "got switch keyPing from [%s]", labelStr); if (msg->length < Control_KeyPing_HEADER_SIZE) { // min keyPing size is longer Log_debug(ch->log, "DROP runt keyPing"); return NULL; } if (msg->length > Control_KeyPing_MAX_SIZE) { Log_debug(ch->log, "DROP long keyPing"); return NULL; } if (ping->magic != Control_KeyPing_MAGIC) { Log_debug(ch->log, "DROP keyPing (bad magic)"); return NULL; } struct Control_KeyPing* keyPing = (struct Control_KeyPing*) msg->bytes; keyPing->magic = Control_KeyPong_MAGIC; ctrl->header.type_be = Control_KEYPONG_be; Bits_memcpy(keyPing->key, ch->myPublicKey, 32); } else if (messageType_be == Control_PING_be) { // Happens in benchmark. //Log_debug(ch->log, "got switch ping from [%s]", labelStr); if (ping->magic != Control_Ping_MAGIC) { Log_debug(ch->log, "DROP ping (bad magic)"); return NULL; } ping->magic = Control_Pong_MAGIC; ctrl->header.type_be = Control_PONG_be; } else { Assert_failure("2+2=5"); } ping->version_be = Endian_hostToBigEndian32(Version_CURRENT_PROTOCOL); Message_shift(msg, Control_Header_SIZE, NULL); ctrl->header.checksum_be = 0; ctrl->header.checksum_be = Checksum_engine(msg->bytes, msg->length); Message_shift(msg, RouteHeader_SIZE, NULL); struct RouteHeader* routeHeader = (struct RouteHeader*) msg->bytes; Bits_memset(routeHeader, 0, RouteHeader_SIZE); SwitchHeader_setVersion(&routeHeader->sh, SwitchHeader_CURRENT_VERSION); routeHeader->sh.label_be = Endian_hostToBigEndian64(label); routeHeader->flags |= RouteHeader_flags_CTRLMSG; return Iface_next(&ch->pub.coreIf, msg); } /** * Expects [ SwitchHeader ][ Ctrl ][ SupernodeQuery ][ data etc.... ] */ #define handleGetSnodeQuery_MIN_SIZE (Control_Header_SIZE + Control_GetSnode_HEADER_SIZE) static Iface_DEFUN handleGetSnodeQuery(struct Message* msg, struct ControlHandler_pvt* ch, uint64_t label, uint8_t* labelStr) { Log_debug(ch->log, "incoming getSupernode query"); if (msg->length < handleGetSnodeQuery_MIN_SIZE) { Log_info(ch->log, "DROP runt getSupernode query"); return NULL; } struct Control* ctrl = (struct Control*) msg->bytes; struct Control_GetSnode* snq = &ctrl->content.getSnode; if (snq->magic != Control_GETSNODE_QUERY_MAGIC) { Log_debug(ch->log, "DROP getSupernode query (bad magic)"); return NULL; } uint32_t herVersion = Endian_bigEndianToHost32(snq->version_be); if (!Version_isCompatible(Version_CURRENT_PROTOCOL, herVersion)) { Log_debug(ch->log, "DROP getSupernode query from incompatible version [%d]", herVersion); return NULL; } ctrl->header.type_be = Control_GETSNODE_REPLY_be; snq->kbps_be = 0xffffffff; snq->version_be = Endian_hostToBigEndian32(Version_CURRENT_PROTOCOL); snq->magic = Control_GETSNODE_REPLY_MAGIC; if (ch->activeSnode.path) { uint64_t fixedLabel = NumberCompress_getLabelFor(ch->activeSnode.path, label); uint64_t fixedLabel_be = Endian_hostToBigEndian64(fixedLabel); Bits_memcpy(snq->pathToSnode_be, &fixedLabel_be, 8); Bits_memcpy(&snq->snodeKey, ch->activeSnode.key, 32); snq->snodeVersion_be = Endian_hostToBigEndian32(ch->activeSnode.protocolVersion); } else { snq->snodeVersion_be = 0; Bits_memset(snq->pathToSnode_be, 0, 8); Bits_memcpy(&snq->snodeKey, ch->activeSnode.key, 32); } ctrl->header.checksum_be = 0; ctrl->header.checksum_be = Checksum_engine(msg->bytes, msg->length); Message_shift(msg, RouteHeader_SIZE, NULL); struct RouteHeader* routeHeader = (struct RouteHeader*) msg->bytes; Bits_memset(routeHeader, 0, RouteHeader_SIZE); SwitchHeader_setVersion(&routeHeader->sh, SwitchHeader_CURRENT_VERSION); routeHeader->sh.label_be = Endian_hostToBigEndian64(label); routeHeader->flags |= RouteHeader_flags_CTRLMSG; return Iface_next(&ch->pub.coreIf, msg); } /** * Handle an incoming control message from a switch. * * @param context the ducttape context. * @param message the control message, this should be alligned on the beginning of the content, * that is to say, after the end of the switch header. * @param switchHeader the header. * @param switchIf the interface which leads to the switch. * @param isFormV8 true if the control message is in the form specified by protocol version 8+ */ static Iface_DEFUN incomingFromCore(struct Message* msg, struct Iface* coreIf) { struct ControlHandler_pvt* ch = Identity_check((struct ControlHandler_pvt*) coreIf); struct RouteHeader routeHdr; Message_pop(msg, &routeHdr, RouteHeader_SIZE, NULL); uint8_t labelStr[20]; uint64_t label = Endian_bigEndianToHost64(routeHdr.sh.label_be); AddrTools_printPath(labelStr, label); // happens in benchmark // Log_debug(ch->log, "ctrl packet from [%s]", labelStr); if (msg->length < 4 + Control_Header_SIZE) { Log_info(ch->log, "DROP runt ctrl packet from [%s]", labelStr); return NULL; } Assert_true(routeHdr.flags & RouteHeader_flags_CTRLMSG); if (Checksum_engine(msg->bytes, msg->length)) { Log_info(ch->log, "DROP ctrl packet from [%s] with invalid checksum", labelStr); return NULL; } struct Control* ctrl = (struct Control*) msg->bytes; if (ctrl->header.type_be == Control_ERROR_be) { return handleError(msg, ch, label, labelStr, &routeHdr); } else if (ctrl->header.type_be == Control_KEYPING_be || ctrl->header.type_be == Control_PING_be) { return handlePing(msg, ch, label, labelStr, ctrl->header.type_be); } else if (ctrl->header.type_be == Control_KEYPONG_be || ctrl->header.type_be == Control_PONG_be) { Log_debug(ch->log, "got switch pong from [%s]", labelStr); Message_push(msg, &routeHdr, RouteHeader_SIZE, NULL); return Iface_next(&ch->pub.switchPingerIf, msg); } else if (ctrl->header.type_be == Control_GETSNODE_QUERY_be) { return handleGetSnodeQuery(msg, ch, label, labelStr); } else if (ctrl->header.type_be == Control_GETSNODE_REPLY_be) { Log_debug(ch->log, "got GETSNODE_REPLY from [%s]", labelStr); Message_push(msg, &routeHdr, RouteHeader_SIZE, NULL); Message_push32(msg, 0xffffffff, NULL); Message_push32(msg, PFChan_Core_CTRL_MSG, NULL); return Iface_next(&ch->eventIf, msg); } Log_info(ch->log, "DROP control packet of unknown type from [%s], type [%d]", labelStr, Endian_bigEndianToHost16(ctrl->header.type_be)); return NULL; } // Forward from switch pinger directly to core. static Iface_DEFUN incomingFromSwitchPinger(struct Message* msg, struct Iface* switchPingerIf) { struct ControlHandler_pvt* ch = Identity_containerOf(switchPingerIf, struct ControlHandler_pvt, pub.switchPingerIf); return Iface_next(&ch->pub.coreIf, msg); } static Iface_DEFUN changeSnode(struct Message* msg, struct Iface* eventIf) { struct ControlHandler_pvt* ch = Identity_containerOf(eventIf, struct ControlHandler_pvt, eventIf); enum PFChan_Pathfinder ev = Message_pop32(msg, NULL); Assert_true(ev == PFChan_Pathfinder_SNODE); Message_pop32(msg, NULL); struct PFChan_Node node; Message_pop(msg, &node, PFChan_Node_SIZE, NULL); Assert_true(!msg->length); Bits_memcpy(ch->activeSnode.key, node.publicKey, 32); ch->activeSnode.path = Endian_bigEndianToHost64(node.path_be); ch->activeSnode.protocolVersion = Endian_bigEndianToHost32(node.version_be); return NULL; } struct ControlHandler* ControlHandler_new(struct Allocator* allocator, struct Log* logger, struct EventEmitter* ee, uint8_t myPublicKey[32]) { struct Allocator* alloc = Allocator_child(allocator); struct ControlHandler_pvt* ch = Allocator_calloc(alloc, sizeof(struct ControlHandler_pvt), 1); ch->alloc = alloc; ch->log = logger; Bits_memcpy(ch->myPublicKey, myPublicKey, 32); ch->pub.coreIf.send = incomingFromCore; ch->pub.switchPingerIf.send = incomingFromSwitchPinger; ch->eventIf.send = changeSnode; EventEmitter_regCore(ee, &ch->eventIf, PFChan_Pathfinder_SNODE); Identity_set(ch); return &ch->pub; }