2013-03-18 23:56:48 +01:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013, Matthias Schiffer <mschiffer@universe-factory.net>
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "babel.h"
|
|
|
|
#include "neigh.h"
|
|
|
|
#include "packet.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
|
|
const char *gmrf_protocol_name = "babel";
|
|
|
|
const char *gmrf_protocol_version = "experimental";
|
|
|
|
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
static void send_hellos(gmrf_context_t *ctx, void *arg) {
|
|
|
|
gmrf_schedule(ctx->gmrf, send_hellos, NULL, GP_BABEL_HELLO_INTERVAL*10);
|
2013-03-18 23:56:48 +01:00
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
gp_babel_send_hellos(ctx);
|
2013-03-18 23:56:48 +01:00
|
|
|
}
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
static void send_updates(gmrf_context_t *ctx, void *arg) {
|
|
|
|
gmrf_schedule(ctx->gmrf, send_updates, NULL, GP_BABEL_UPDATE_INTERVAL*10);
|
2013-03-24 02:17:05 +01:00
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_logf(ctx->gmrf, LOG_DEBUG, "sending periodic updates.");
|
2013-03-24 02:17:05 +01:00
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_iface_state_t *iface;
|
2013-03-24 02:17:05 +01:00
|
|
|
for (iface = ctx->interfaces; iface; iface = iface->next) {
|
2013-08-01 21:07:59 +02:00
|
|
|
gp_babel_send_update(ctx, iface, NULL);
|
2013-03-24 02:17:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
static void maintain_neighbours(gmrf_context_t *ctx) {
|
|
|
|
gmrf_iface_state_t *iface;
|
2013-03-19 00:20:02 +01:00
|
|
|
for (iface = ctx->interfaces; iface; iface = iface->next) {
|
|
|
|
gp_babel_neigh_t **cur, **next;
|
|
|
|
for (cur = &iface->neighbours; *cur; cur = next) {
|
|
|
|
gp_babel_neigh_t *neigh = *cur;
|
|
|
|
next = &neigh->next;
|
|
|
|
|
2013-08-03 03:18:54 +02:00
|
|
|
if ((gp_babel_neigh_get_rxcost(ctx, neigh) == GP_BABEL_INFINITY)
|
|
|
|
&& (gp_babel_neigh_get_txcost(ctx, neigh) == GP_BABEL_INFINITY)
|
|
|
|
&& (gp_babel_since(ctx, neigh->last_packet) > GP_BABEL_NEIGH_PACKET_TIMEOUT)
|
|
|
|
&& !neigh->ref) {
|
|
|
|
gmrf_logf(ctx->gmrf, LOG_DEBUG, "maintenance: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x[%s]: expired (%ims since last packet)",
|
|
|
|
neigh->addr.d[0], neigh->addr.d[1], neigh->addr.d[2], neigh->addr.d[3],
|
|
|
|
neigh->addr.d[4], neigh->addr.d[5], neigh->addr.d[6], neigh->addr.d[7],
|
|
|
|
gmrf_iface_get_name(ctx->gmrf, iface->gmrf_iface), (int)gp_babel_since(ctx, neigh->last_packet)*10);
|
|
|
|
|
2013-03-19 00:20:02 +01:00
|
|
|
*cur = *next;
|
|
|
|
next = cur;
|
|
|
|
free(neigh);
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_logf(ctx->gmrf, LOG_DEBUG, "maintenance: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x[%s]: %u (rx %u/tx %u)",
|
2013-03-19 00:20:02 +01:00
|
|
|
neigh->addr.d[0], neigh->addr.d[1], neigh->addr.d[2], neigh->addr.d[3],
|
|
|
|
neigh->addr.d[4], neigh->addr.d[5], neigh->addr.d[6], neigh->addr.d[7],
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_iface_get_name(ctx->gmrf, iface->gmrf_iface), gp_babel_neigh_get_cost(ctx, neigh),
|
|
|
|
gp_babel_neigh_get_rxcost(ctx, neigh), gp_babel_neigh_get_txcost(ctx, neigh));
|
2013-03-19 00:20:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-01 21:07:59 +02:00
|
|
|
static void maintain_routes(gmrf_context_t *ctx) {
|
|
|
|
gp_babel_route_t **cur, **next;
|
|
|
|
for (cur = &ctx->routes; *cur; cur = next) {
|
|
|
|
gp_babel_route_t *route = *cur;
|
|
|
|
next = &route->next;
|
2013-03-24 03:45:16 +01:00
|
|
|
|
2013-08-01 21:07:59 +02:00
|
|
|
gp_babel_route_update(ctx, route);
|
2013-03-24 03:45:16 +01:00
|
|
|
|
2013-08-04 01:51:06 +02:00
|
|
|
if (!route->nexthops && gp_babel_since(ctx, route->last_nexthop) > GP_BABEL_PURGE_TIMEOUT) {
|
|
|
|
gmrf_logf(ctx->gmrf, LOG_DEBUG, "node %04x%04x (%u, seqno=%04x): purging.",
|
|
|
|
ntohl(*(uint32_t*)route->node.id), ntohl(*(uint32_t*)(route->node.id+4)),
|
|
|
|
route->metric.metric, route->metric.seqno);
|
|
|
|
|
2013-03-24 03:45:16 +01:00
|
|
|
*cur = *next;
|
|
|
|
next = cur;
|
2013-08-01 21:07:59 +02:00
|
|
|
gp_babel_route_free(ctx, route);
|
2013-03-24 03:45:16 +01:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-08-01 21:07:59 +02:00
|
|
|
gmrf_logf(ctx->gmrf, LOG_DEBUG, "node %04x%04x (%u, seqno=%04x):",
|
|
|
|
ntohl(*(uint32_t*)route->node.id), ntohl(*(uint32_t*)(route->node.id+4)),
|
|
|
|
route->metric.metric, route->metric.seqno);
|
2013-03-24 03:45:16 +01:00
|
|
|
|
|
|
|
gp_babel_nexthop_t *nexthop;
|
2013-08-01 21:07:59 +02:00
|
|
|
for (nexthop = route->nexthops; nexthop; nexthop = nexthop->next) {
|
2013-03-24 03:45:16 +01:00
|
|
|
gp_babel_neigh_t *neigh = nexthop->neigh;
|
|
|
|
|
|
|
|
if (!neigh) {
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_logf(ctx->gmrf, LOG_DEBUG, " local");
|
2013-03-24 03:45:16 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_logf(ctx->gmrf, LOG_DEBUG, " nexthop: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x[%s] (%u, seqno=%04x, cost=%u%s)",
|
2013-03-24 03:45:16 +01:00
|
|
|
neigh->addr.d[0], neigh->addr.d[1], neigh->addr.d[2], neigh->addr.d[3],
|
|
|
|
neigh->addr.d[4], neigh->addr.d[5], neigh->addr.d[6], neigh->addr.d[7],
|
2013-07-29 02:11:47 +02:00
|
|
|
neigh->iface ? gmrf_iface_get_name(ctx->gmrf, neigh->iface->gmrf_iface) : NULL,
|
|
|
|
nexthop->metric_seqno.metric, nexthop->metric_seqno.seqno, gp_babel_neigh_get_cost(ctx, neigh),
|
2013-08-01 21:07:59 +02:00
|
|
|
(nexthop == route->selected) ? ", selected" : "");
|
2013-03-24 03:45:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
static void maintenance(gmrf_context_t *ctx, void *arg) {
|
|
|
|
gmrf_schedule(ctx->gmrf, maintenance, NULL, GP_BABEL_MAINTENANCE_INTERVAL*10);
|
2013-03-24 03:45:16 +01:00
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
maintain_neighbours(ctx);
|
2013-08-01 21:07:59 +02:00
|
|
|
maintain_routes(ctx);
|
2013-03-24 03:45:16 +01:00
|
|
|
}
|
|
|
|
|
2013-03-18 23:56:48 +01:00
|
|
|
gmrf_context_t* gmrf_protocol_init(gmrf_t *gmrf) {
|
|
|
|
gmrf_logf(gmrf, LOG_INFO, "initalizing...");
|
|
|
|
|
|
|
|
gmrf_schedule(gmrf, send_hellos, NULL, GP_BABEL_HELLO_INTERVAL*10);
|
2013-03-24 02:17:05 +01:00
|
|
|
gmrf_schedule(gmrf, send_updates, NULL, GP_BABEL_UPDATE_INTERVAL*10);
|
2013-03-24 03:45:16 +01:00
|
|
|
gmrf_schedule(gmrf, maintenance, NULL, 0);
|
2013-03-18 23:56:48 +01:00
|
|
|
|
|
|
|
gmrf_context_t *ctx = calloc(1, sizeof(gmrf_context_t));
|
2013-07-29 02:11:47 +02:00
|
|
|
|
|
|
|
ctx->gmrf = gmrf;
|
2013-03-18 23:56:48 +01:00
|
|
|
gmrf_random_bytes(gmrf, &ctx->self, sizeof(gp_babel_node_id_t));
|
|
|
|
|
2013-08-01 21:07:59 +02:00
|
|
|
gp_babel_route_t *route = gp_babel_route_new(ctx);
|
|
|
|
route->node = ctx->self;
|
2013-03-22 03:45:38 +01:00
|
|
|
|
2013-08-01 21:07:59 +02:00
|
|
|
route->nexthops = route->selected = calloc(1, sizeof(gp_babel_nexthop_t));
|
2013-03-24 03:45:16 +01:00
|
|
|
|
2013-03-18 23:56:48 +01:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_iface_state_t* gmrf_protocol_add_iface(gmrf_context_t *ctx, gmrf_iface_t *iface) {
|
|
|
|
gmrf_logf(ctx->gmrf, LOG_INFO, "interface `%s' added.", gmrf_iface_get_name(ctx->gmrf, iface));
|
2013-03-18 23:56:48 +01:00
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_iface_state_t *state = calloc(1, sizeof(gmrf_iface_state_t));
|
|
|
|
state->gmrf_iface = iface;
|
2013-03-18 23:56:48 +01:00
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
state->next = ctx->interfaces;
|
|
|
|
ctx->interfaces = state;
|
|
|
|
|
|
|
|
return state;
|
2013-03-18 23:56:48 +01:00
|
|
|
}
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
void gmrf_protocol_handle_packet(gmrf_context_t *ctx, gmrf_iface_state_t *iface, const gmrf_addr_t *source, const void *data, size_t len) {
|
2013-03-18 23:56:48 +01:00
|
|
|
const gp_babel_packet_t *packet = data;
|
|
|
|
|
2013-03-19 04:21:03 +01:00
|
|
|
if (len < sizeof(gp_babel_packet_t) || len < gp_babel_packet_size(packet)) {
|
2013-07-29 02:11:47 +02:00
|
|
|
gmrf_logf(ctx->gmrf, LOG_DEBUG, "received short packet.");
|
2013-03-18 23:56:48 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:11:47 +02:00
|
|
|
gp_babel_handle_packet(ctx, iface, source, packet);
|
2013-03-18 23:56:48 +01:00
|
|
|
}
|