]> git.meshlink.io Git - meshlink/blob - src/route.c
Stop using the global variable mesh in most of the rest of the code.
[meshlink] / src / route.c
1 /*
2     route.c -- routing
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
4
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.
9
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.
14
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.
18 */
19
20 #include "system.h"
21
22 #include "logger.h"
23 #include "meshlink_internal.h"
24 #include "net.h"
25 #include "route.h"
26 #include "utils.h"
27
28 bool decrement_ttl = false;
29
30 static bool checklength(node_t *source, vpn_packet_t *packet, uint16_t length) {
31         if(packet->len < length) {
32                 logger(DEBUG_TRAFFIC, LOG_WARNING, "Got too short packet from %s (%s)", source->name, source->hostname);
33                 return false;
34         } else
35                 return true;
36 }
37
38 void route(meshlink_handle_t *mesh, node_t *source, vpn_packet_t *packet) {
39     // TODO: route on name or key
40
41     node_t* owner = NULL;
42     node_t* via = NULL;
43     meshlink_packethdr_t* hdr = (meshlink_packethdr_t*)packet->data;
44     owner = lookup_node(mesh, hdr->destination);
45     logger(DEBUG_TRAFFIC, LOG_WARNING, "Routing packet from: %s . To: %s \n",hdr->source,hdr->destination);
46
47     //Check Lenght
48     if(!checklength(source, packet, (sizeof(meshlink_packethdr_t))))
49         return;
50
51     if (owner == NULL) {
52     //Lookup failed
53     logger(DEBUG_TRAFFIC, LOG_WARNING, "Cant lookup the owner of a packet in the route() function. This should never happen \n");
54     logger(DEBUG_TRAFFIC, LOG_WARNING, "Destination was: %s \n",hdr->destination);
55     return;
56     }
57
58     if (owner == mesh->self ) {
59     //TODO: implement sending received data from meshlink library to the application
60     logger(DEBUG_TRAFFIC, LOG_WARNING, "I received a packet for me with payload: %s \n", packet->data + sizeof *hdr);
61     (meshlink_receive_cb_t)(packet->data + sizeof *hdr);
62     return;
63     }
64
65     if(!owner->status.reachable) {
66     //TODO: check what to do here, not just print a warning
67     logger(DEBUG_TRAFFIC, LOG_WARNING, "The owner of a packet in the route() function is unreachable. Dropping packet. \n");
68     return;
69     }
70
71     via = (owner->via == mesh->self) ? owner->nexthop : owner->via;
72     if(via == source) {
73         logger(DEBUG_TRAFFIC, LOG_ERR, "Routing loop for packet from %s (%s)!", source->name, source->hostname);
74         return;
75     }
76
77     send_packet(mesh, owner, packet);
78     return;
79 }