3 Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "meshlink_internal.h"
28 bool decrement_ttl = false;
30 static bool checklength(node_t *source, vpn_packet_t *packet, uint16_t length) {
31 if(packet->len < length) {
32 logger(source->mesh, MESHLINK_WARNING, "Got too short packet from %s (%s)", source->name, source->hostname);
38 void route(meshlink_handle_t *mesh, node_t *source, vpn_packet_t *packet) {
39 // TODO: route on name or key
43 meshlink_packethdr_t *hdr = (meshlink_packethdr_t *) packet->data;
44 owner = lookup_node(mesh, (char *)hdr->destination);
45 logger(mesh, MESHLINK_DEBUG, "Routing packet from \"%s\" to \"%s\"\n", hdr->source, hdr->destination);
48 if(!checklength(source, packet, sizeof(*hdr)))
53 logger(mesh, MESHLINK_WARNING, "Cant lookup the owner of a packet in the route() function. This should never happen!\n");
54 logger(mesh, MESHLINK_WARNING, "Destination was: %s\n", hdr->destination);
58 if(owner == mesh->self) {
59 const void *payload = packet->data + sizeof(*hdr);
60 size_t len = packet->len - sizeof(*hdr);
62 char hex[len * 2 + 1];
63 if(mesh->log_level >= MESHLINK_DEBUG)
64 bin2hex(payload, hex, len); // don't do this unless it's going to be logged
65 logger(mesh, MESHLINK_DEBUG, "I received a packet for me with payload: %s\n", hex);
68 mesh->receive_cb(mesh, (meshlink_node_t *)source, payload, len);
72 if(!owner->status.reachable) {
73 //TODO: check what to do here, not just print a warning
74 logger(mesh, MESHLINK_WARNING, "The owner of a packet in the route() function is unreachable. Dropping packet.\n");
78 via = (owner->via == mesh->self) ? owner->nexthop : owner->via;
80 logger(mesh, MESHLINK_ERROR, "Routing loop for packet from %s (%s)!", source->name, source->hostname);
84 send_packet(mesh, owner, packet);