Commit 21bdbeaf authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Switch to 8-byte router ids.

parent 31f695ae
...@@ -54,7 +54,7 @@ THE SOFTWARE. ...@@ -54,7 +54,7 @@ THE SOFTWARE.
struct timeval now; struct timeval now;
unsigned char myid[16]; unsigned char myid[8];
int debug = 0; int debug = 0;
time_t reboot_time; time_t reboot_time;
...@@ -103,7 +103,7 @@ int ...@@ -103,7 +103,7 @@ int
main(int argc, char **argv) main(int argc, char **argv)
{ {
struct sockaddr_in6 sin6; struct sockaddr_in6 sin6;
int i, rc, fd, rfd, have_id = 0; int rc, fd, rfd;
time_t expiry_time, source_expiry_time, kernel_dump_time; time_t expiry_time, source_expiry_time, kernel_dump_time;
char *config_file = NULL; char *config_file = NULL;
void *vrc; void *vrc;
...@@ -335,90 +335,66 @@ main(int argc, char **argv) ...@@ -335,90 +335,66 @@ main(int argc, char **argv)
gettime(&now); gettime(&now);
{
unsigned char dummy[16];
rc = parse_address(*arg, dummy, NULL);
if(rc >= 0) {
fprintf(stderr, "Warning: obsolete router-id given.\n");
SHIFTE();
}
}
rfd = open("/dev/urandom", O_RDONLY); rfd = open("/dev/urandom", O_RDONLY);
if(rfd < 0) { if(rfd < 0) {
perror("open(random)"); perror("open(random)");
}
rc = parse_address(*arg, myid, NULL);
if(rc >= 0) {
have_id = 1;
/* Cannot use SHIFTE -- need to goto fail */
SHIFT();
if(*arg == NULL) {
fprintf(stderr, "No interfaces given.\n");
goto fail;
}
} else { } else {
struct kernel_route routes[240]; rc = read(rfd, &seed, sizeof(unsigned int));
rc = kernel_addresses(NULL, 0, routes, 240); if(rc < sizeof(unsigned int)) {
if(rc < 0) { perror("read(random)");
perror("kernel_addresses");
}
if(rc > 0) {
/* Search for a global IPv6 address */
for(i = 0; i < rc; i++) {
if(martian_prefix(routes[i].prefix, routes[i].plen))
continue;
if(routes[i].plen == 128 &&
(routes[i].prefix[0] & 0xE0) == 0x20) {
memcpy(myid, routes[i].prefix, 16);
have_id = 1;
break;
}
}
/* Try a global Ipv4 address */
if(!have_id) {
for(i = 0; i < rc; i++) {
if(martian_prefix(routes[i].prefix, routes[i].plen))
continue;
if(routes[i].plen == 128 &&
v4mapped(routes[i].prefix) &&
routes[i].prefix[12] != 10 &&
(routes[i].prefix[12] != 172 ||
(routes[i].prefix[13] & 0xF0) != 16) &&
(routes[i].prefix[12] != 192 ||
routes[i].prefix[13] != 168)) {
memcpy(myid, routes[i].prefix, 16);
have_id = 1;
break;
}
}
}
} }
} }
seed ^= (now.tv_sec ^ now.tv_usec);
srandom(seed);
if(!have_id) { while(*arg) {
if(rfd < 0) { debugf("Adding network %s.\n", *arg);
fprintf(stderr, "Couldn't find suitable router-id.\n"); vrc = add_network(*arg);
goto fail; if(vrc == NULL)
}
fprintf(stderr,
"Warning: couldn't find suitable router-id, "
"using random value.\n");
rc = read(rfd, myid, 16);
if(rc < 16) {
perror("read(random)");
goto fail; goto fail;
} else { SHIFT();
have_id = 1; }
FOR_ALL_NETS(net) {
/* net->ifindex is not necessarily valid at this point */
int ifindex = if_nametoindex(net->ifname);
if(ifindex > 0) {
unsigned char eui[8];
rc = if_eui64(net->ifname, ifindex, eui);
if(rc < 0)
continue;
memcpy(myid, eui, 8);
goto have_id;
} }
} }
if(rfd < 0) { fprintf(stderr,
memcpy(&seed, myid + 12, 4); "Warning: couldn't find router id -- using random value.\n");
} else { if(rfd >= 0) {
rc = read(rfd, &seed, sizeof(unsigned int)); rc = read(rfd, myid, 8);
if(rc < sizeof(unsigned int)) { if(rc < 8) {
perror("read(random)"); perror("read(random)");
memcpy(&seed, myid + 12, 4); goto fail;
} }
close(rfd); } else {
rfd = -1; goto fail;
} }
/* Clear group and global bits */
myid[0] &= ~3;
seed ^= (now.tv_sec ^ now.tv_usec); have_id:
srandom(seed); if(rfd >= 0)
close(rfd);
rfd = -1;
reboot_time = now.tv_sec; reboot_time = now.tv_sec;
myseqno = (random() & 0xFFFF); myseqno = (random() & 0xFFFF);
...@@ -445,8 +421,8 @@ main(int argc, char **argv) ...@@ -445,8 +421,8 @@ main(int argc, char **argv)
buf[rc] = '\0'; buf[rc] = '\0';
rc = sscanf(buf, "%99s %d %ld\n", buf2, &s, &t); rc = sscanf(buf, "%99s %d %ld\n", buf2, &s, &t);
if(rc == 3 && s >= 0 && s <= 0xFFFF) { if(rc == 3 && s >= 0 && s <= 0xFFFF) {
unsigned char sid[16]; unsigned char sid[8];
rc = parse_address(buf2, sid, NULL); rc = parse_eui64(buf2, sid);
if(rc < 0) { if(rc < 0) {
fprintf(stderr, "Couldn't parse babel-state.\n"); fprintf(stderr, "Couldn't parse babel-state.\n");
} else { } else {
...@@ -454,7 +430,7 @@ main(int argc, char **argv) ...@@ -454,7 +430,7 @@ main(int argc, char **argv)
debugf("Got %s %d %ld from babel-state.\n", debugf("Got %s %d %ld from babel-state.\n",
format_address(sid), s, t); format_address(sid), s, t);
gettimeofday(&realnow, NULL); gettimeofday(&realnow, NULL);
if(memcmp(sid, myid, 16) == 0) if(memcmp(sid, myid, 8) == 0)
myseqno = seqno_plus(s, 1); myseqno = seqno_plus(s, 1);
else else
fprintf(stderr, "ID mismatch in babel-state.\n"); fprintf(stderr, "ID mismatch in babel-state.\n");
...@@ -480,14 +456,6 @@ main(int argc, char **argv) ...@@ -480,14 +456,6 @@ main(int argc, char **argv)
goto fail; goto fail;
} }
while(*arg) {
debugf("Adding network %s.\n", *arg);
vrc = add_network(*arg);
if(vrc == NULL)
goto fail;
SHIFT();
}
#ifndef NO_LOCAL_INTERFACE #ifndef NO_LOCAL_INTERFACE
if(local_server_port >= 0) { if(local_server_port >= 0) {
local_server_socket = tcp_server_socket(local_server_port, 1); local_server_socket = tcp_server_socket(local_server_port, 1);
...@@ -788,7 +756,7 @@ main(int argc, char **argv) ...@@ -788,7 +756,7 @@ main(int argc, char **argv)
char buf[100]; char buf[100];
gettimeofday(&realnow, NULL); gettimeofday(&realnow, NULL);
rc = snprintf(buf, 100, "%s %d %ld\n", rc = snprintf(buf, 100, "%s %d %ld\n",
format_address(myid), (int)myseqno, format_eui64(myid), (int)myseqno,
(long)realnow.tv_sec); (long)realnow.tv_sec);
if(rc < 0 || rc >= 100) { if(rc < 0 || rc >= 100) {
fprintf(stderr, "write(babel-state): overflow.\n"); fprintf(stderr, "write(babel-state): overflow.\n");
...@@ -954,11 +922,10 @@ dump_tables(FILE *out) ...@@ -954,11 +922,10 @@ dump_tables(FILE *out)
fprintf(out, "\n"); fprintf(out, "\n");
fprintf(out, "My id %s seqno %d\n", format_address(myid), myseqno); fprintf(out, "My id %s seqno %d\n", format_eui64(myid), myseqno);
FOR_ALL_NEIGHBOURS(neigh) { FOR_ALL_NEIGHBOURS(neigh) {
fprintf(out, "Neighbour %s ", format_address(neigh->id)); fprintf(out, "Neighbour %s dev %s reach %04x rxcost %d txcost %d%s.\n",
fprintf(out, "at %s dev %s reach %04x rxcost %d txcost %d%s.\n",
format_address(neigh->address), format_address(neigh->address),
neigh->network->ifname, neigh->network->ifname,
neigh->reach, neigh->reach,
...@@ -972,18 +939,14 @@ dump_tables(FILE *out) ...@@ -972,18 +939,14 @@ dump_tables(FILE *out)
xroutes[i].metric); xroutes[i].metric);
} }
for(i = 0; i < numroutes; i++) { for(i = 0; i < numroutes; i++) {
int id =
routes[i].src->plen != 128 ||
memcmp(routes[i].src->prefix, routes[i].src->id, 16) != 0;
const unsigned char *nexthop = const unsigned char *nexthop =
memcmp(routes[i].nexthop, routes[i].neigh->address, 16) == 0 ? memcmp(routes[i].nexthop, routes[i].neigh->address, 16) == 0 ?
NULL : routes[i].nexthop; NULL : routes[i].nexthop;
fprintf(out, "%s metric %d refmetric %d %s%s seqno %d age %d " fprintf(out, "%s metric %d refmetric %d id %s seqno %d age %d "
"via %s neigh %s%s%s%s\n", "via %s neigh %s%s%s%s\n",
format_prefix(routes[i].src->prefix, routes[i].src->plen), format_prefix(routes[i].src->prefix, routes[i].src->plen),
routes[i].metric, routes[i].refmetric, routes[i].metric, routes[i].refmetric,
id ? "id " : "", format_eui64(routes[i].src->id),
id ? format_address(routes[i].src->id) : "",
(int)routes[i].seqno, (int)routes[i].seqno,
(int)(now.tv_sec - routes[i].time), (int)(now.tv_sec - routes[i].time),
routes[i].neigh->network->ifname, routes[i].neigh->network->ifname,
......
...@@ -65,7 +65,7 @@ extern int link_detect; ...@@ -65,7 +65,7 @@ extern int link_detect;
extern int all_wireless; extern int all_wireless;
extern int local_socket; extern int local_socket;
extern unsigned char myid[16]; extern unsigned char myid[8];
extern const unsigned char zeroes[16], ones[16]; extern const unsigned char zeroes[16], ones[16];
......
...@@ -237,7 +237,7 @@ parse_filter(gnc_t gnc, void *closure) ...@@ -237,7 +237,7 @@ parse_filter(gnc_t gnc, void *closure)
filter->neigh = neigh; filter->neigh = neigh;
} else if(strcmp(token, "id") == 0) { } else if(strcmp(token, "id") == 0) {
unsigned char *id; unsigned char *id;
c = getip(c, &id, NULL, gnc, closure); c = getid(c, &id, gnc, closure);
if(c < -1) if(c < -1)
goto error; goto error;
filter->id = id; filter->id = id;
...@@ -424,7 +424,7 @@ filter_match(struct filter *f, const unsigned char *id, ...@@ -424,7 +424,7 @@ filter_match(struct filter *f, const unsigned char *id,
} }
} }
if(f->id) { if(f->id) {
if(!id || memcmp(f->id, id, 16) != 0) if(!id || memcmp(f->id, id, 8) != 0)
return 0; return 0;
} }
if(f->prefix) { if(f->prefix) {
......
...@@ -97,7 +97,7 @@ local_notify_self() ...@@ -97,7 +97,7 @@ local_notify_self()
return; return;
rc = snprintf(buf, 512, "add self alamakota id %s\n", rc = snprintf(buf, 512, "add self alamakota id %s\n",
format_address(myid)); format_eui64(myid));
if(rc < 0 || rc >= 512) if(rc < 0 || rc >= 512)
goto fail; goto fail;
...@@ -133,13 +133,12 @@ local_notify_neighbour(struct neighbour *neigh, int kind) ...@@ -133,13 +133,12 @@ local_notify_neighbour(struct neighbour *neigh, int kind)
return; return;
rc = snprintf(buf, 512, rc = snprintf(buf, 512,
"%s neighbour %lx id %s address %s " "%s neighbour %lx address %s "
"if %s reach %04x rxcost %d txcost %d cost %d\n", "if %s reach %04x rxcost %d txcost %d cost %d\n",
local_kind(kind), local_kind(kind),
/* Neighbours never move aroundin memory , so we can use the /* Neighbours never move around in memory , so we can use the
address as a unique identifier. */ address as a unique identifier. */
(unsigned long int)neigh, (unsigned long int)neigh,
format_address(neigh->id),
format_address(neigh->address), format_address(neigh->address),
neigh->network->ifname, neigh->network->ifname,
neigh->reach, neigh->reach,
...@@ -199,18 +198,17 @@ local_notify_route(struct route *route, int kind) ...@@ -199,18 +198,17 @@ local_notify_route(struct route *route, int kind)
rc = snprintf(buf, 512, rc = snprintf(buf, 512,
"%s route %s-%s-%lx prefix %s installed %s " "%s route %s-%s-%lx prefix %s installed %s "
"id %s metric %d refmetric %d via %s if %s neigh %s\n", "id %s metric %d refmetric %d via %s if %s\n",
local_kind(kind), local_kind(kind),
format_prefix(route->src->prefix, route->src->plen), format_prefix(route->src->prefix, route->src->plen),
format_address(route->src->id), format_eui64(route->src->id),
(unsigned long)route->neigh, (unsigned long)route->neigh,
format_prefix(route->src->prefix, route->src->plen), format_prefix(route->src->prefix, route->src->plen),
route->installed ? "yes" : "no", route->installed ? "yes" : "no",
format_address(route->src->id), format_eui64(route->src->id),
route->metric, route->refmetric, route->metric, route->refmetric,
format_address(route->neigh->address), format_address(route->neigh->address),
route->neigh->network->ifname, route->neigh->network->ifname);
format_address(route->neigh->id));
if(rc < 0 || rc >= 512) if(rc < 0 || rc >= 512)
goto fail; goto fail;
......
...@@ -80,7 +80,7 @@ find_request(const unsigned char *prefix, unsigned char plen, ...@@ -80,7 +80,7 @@ find_request(const unsigned char *prefix, unsigned char plen,
int int
record_resend(int kind, const unsigned char *prefix, unsigned char plen, record_resend(int kind, const unsigned char *prefix, unsigned char plen,
unsigned short seqno, unsigned short router_hash, unsigned short seqno, const unsigned char *id,
struct network *network, int delay) struct network *network, int delay)
{ {
struct resend *resend; struct resend *resend;
...@@ -103,11 +103,14 @@ record_resend(int kind, const unsigned char *prefix, unsigned char plen, ...@@ -103,11 +103,14 @@ record_resend(int kind, const unsigned char *prefix, unsigned char plen,
resend->delay = delay; resend->delay = delay;
resend->time = now; resend->time = now;
resend->max = kind == RESEND_REQUEST ? 128 : UPDATE_MAX; resend->max = kind == RESEND_REQUEST ? 128 : UPDATE_MAX;
if(resend->router_hash == router_hash && if(id && memcmp(resend->id, id, 8) == 0 &&
seqno_compare(resend->seqno, seqno) > 0) { seqno_compare(resend->seqno, seqno) > 0) {
return 0; return 0;
} }
resend->router_hash = router_hash; if(id)
memcpy(resend->id, id, 8);
else
memset(resend->id, 0, 8);
resend->seqno = seqno; resend->seqno = seqno;
if(resend->network != network) if(resend->network != network)
resend->network = NULL; resend->network = NULL;
...@@ -121,7 +124,10 @@ record_resend(int kind, const unsigned char *prefix, unsigned char plen, ...@@ -121,7 +124,10 @@ record_resend(int kind, const unsigned char *prefix, unsigned char plen,
memcpy(resend->prefix, prefix, 16); memcpy(resend->prefix, prefix, 16);
resend->plen = plen; resend->plen = plen;
resend->seqno = seqno; resend->seqno = seqno;
resend->router_hash = router_hash; if(id)
memcpy(resend->id, id, 8);
else
memset(resend->id, 0, 8);
resend->network = network; resend->network = network;
resend->time = now; resend->time = now;
resend->next = to_resend; resend->next = to_resend;
...@@ -149,7 +155,7 @@ resend_expired(struct resend *resend) ...@@ -149,7 +155,7 @@ resend_expired(struct resend *resend)
int int
unsatisfied_request(const unsigned char *prefix, unsigned char plen, unsatisfied_request(const unsigned char *prefix, unsigned char plen,
unsigned short seqno, unsigned short router_hash) unsigned short seqno, const unsigned char *id)
{ {
struct resend *request; struct resend *request;
...@@ -157,7 +163,7 @@ unsatisfied_request(const unsigned char *prefix, unsigned char plen, ...@@ -157,7 +163,7 @@ unsatisfied_request(const unsigned char *prefix, unsigned char plen,
if(request == NULL || resend_expired(request)) if(request == NULL || resend_expired(request))
return 0; return 0;
if(request->router_hash != router_hash || if(memcmp(request->id, id, 8) != 0 ||
seqno_compare(request->seqno, seqno) <= 0) seqno_compare(request->seqno, seqno) <= 0)
return 1; return 1;
...@@ -168,7 +174,7 @@ unsatisfied_request(const unsigned char *prefix, unsigned char plen, ...@@ -168,7 +174,7 @@ unsatisfied_request(const unsigned char *prefix, unsigned char plen,
int int
request_redundant(struct network *net, request_redundant(struct network *net,
const unsigned char *prefix, unsigned char plen, const unsigned char *prefix, unsigned char plen,
unsigned short seqno, unsigned short router_hash) unsigned short seqno, const unsigned char *id)
{ {
struct resend *request; struct resend *request;
...@@ -176,7 +182,7 @@ request_redundant(struct network *net, ...@@ -176,7 +182,7 @@ request_redundant(struct network *net,
if(request == NULL || resend_expired(request)) if(request == NULL || resend_expired(request))
return 0; return 0;
if(request->router_hash == router_hash && if(memcmp(request->id, id, 8) == 0 &&
seqno_compare(request->seqno, seqno) > 0) seqno_compare(request->seqno, seqno) > 0)
return 0; return 0;
...@@ -197,7 +203,7 @@ request_redundant(struct network *net, ...@@ -197,7 +203,7 @@ request_redundant(struct network *net,
int int
satisfy_request(const unsigned char *prefix, unsigned char plen, satisfy_request(const unsigned char *prefix, unsigned char plen,
unsigned short seqno, unsigned short router_hash, unsigned short seqno, const unsigned char *id,
struct network *network) struct network *network)
{ {
struct resend *request, *previous; struct resend *request, *previous;
...@@ -209,7 +215,7 @@ satisfy_request(const unsigned char *prefix, unsigned char plen, ...@@ -209,7 +215,7 @@ satisfy_request(const unsigned char *prefix, unsigned char plen,
if(network != NULL && request->network != network) if(network != NULL && request->network != network)
return 0; return 0;
if(request->router_hash != router_hash || if(memcmp(request->id, id, 8) != 0 ||
seqno_compare(request->seqno, seqno) <= 0) { seqno_compare(request->seqno, seqno) <= 0) {
/* We cannot remove the request, as we may be walking the list right /* We cannot remove the request, as we may be walking the list right
now. Mark it as expired, so that expire_resend will remove it. */ now. Mark it as expired, so that expire_resend will remove it. */
...@@ -282,9 +288,9 @@ do_resend() ...@@ -282,9 +288,9 @@ do_resend()
if(timeval_compare(&now, &timeout) >= 0) { if(timeval_compare(&now, &timeout) >= 0) {
switch(resend->kind) { switch(resend->kind) {
case RESEND_REQUEST: case RESEND_REQUEST:
send_request(resend->network, send_multihop_request(resend->network,
resend->prefix, resend->plen, 127, resend->prefix, resend->plen,
resend->seqno, resend->router_hash); resend->seqno, resend->id, 127);
break; break;
case RESEND_UPDATE: case RESEND_UPDATE:
send_update(resend->network, 1, send_update(resend->network, 1,
......
...@@ -34,7 +34,7 @@ struct resend { ...@@ -34,7 +34,7 @@ struct resend {
unsigned char prefix[16]; unsigned char prefix[16];
unsigned char plen; unsigned char plen;
unsigned short seqno; unsigned short seqno;
unsigned short router_hash; unsigned char id[8];
struct network *network; struct network *network;
struct resend *next; struct resend *next;
}; };
...@@ -45,15 +45,15 @@ struct resend *find_request(const unsigned char *prefix, unsigned char plen, ...@@ -45,15 +45,15 @@ struct resend *find_request(const unsigned char *prefix, unsigned char plen,
struct resend **previous_return); struct resend **previous_return);
void flush_resends(struct neighbour *neigh); void flush_resends(struct neighbour *neigh);
int record_resend(int kind, const unsigned char *prefix, unsigned char plen, int record_resend(int kind, const unsigned char *prefix, unsigned char plen,
unsigned short seqno, unsigned short router_hash, unsigned short seqno, const unsigned char *id,
struct network *net, int delay); struct network *net, int delay);
int unsatisfied_request(const unsigned char *prefix, unsigned char plen, int unsatisfied_request(const unsigned char *prefix, unsigned char plen,
unsigned short seqno, unsigned short router_hash); unsigned short seqno, const unsigned char *id);
int request_redundant(struct network *net, int request_redundant(struct network *net,
const unsigned char *prefix, unsigned char plen, const unsigned char *prefix, unsigned char plen,
unsigned short seqno, unsigned short router_hash); unsigned short seqno, const unsigned char *id);
int satisfy_request(const unsigned char *prefix, unsigned char plen, int satisfy_request(const unsigned char *prefix, unsigned char plen,
unsigned short seqno, unsigned short router_hash, unsigned short seqno, const unsigned char *id,
struct network *net); struct network *net);
void expire_resend(void); void expire_resend(void);
......
...@@ -347,7 +347,8 @@ update_route(const unsigned char *a, const unsigned char *p, unsigned char plen, ...@@ -347,7 +347,8 @@ update_route(const unsigned char *a, const unsigned char *p, unsigned char plen,
return NULL; return NULL;
} }
add_metric = input_filter(a, p, plen, neigh->id, neigh->network->ifindex); add_metric = input_filter(a, p, plen,
neigh->address, neigh->network->ifindex);
if(add_metric >= INFINITY) if(add_metric >= INFINITY)
return NULL; return NULL;
...@@ -460,7 +461,7 @@ send_unfeasible_request(struct neighbour *neigh, int force, ...@@ -460,7 +461,7 @@ send_unfeasible_request(struct neighbour *neigh, int force,
send_request_resend(neigh, prefix, plen, send_request_resend(neigh, prefix, plen,
src->metric >= INFINITY ? src->metric >= INFINITY ?
src->seqno : seqno_plus(src->seqno, 1), src->seqno : seqno_plus(src->seqno, 1),
hash_id(src->id)); src->id);
} }
} }
...@@ -539,7 +540,7 @@ send_triggered_update(struct route *route, struct source *oldsrc, ...@@ -539,7 +540,7 @@ send_triggered_update(struct route *route, struct source *oldsrc,
/* Make sure that requests are satisfied speedily */ /* Make sure that requests are satisfied speedily */
if(urgent < 1) { if(urgent < 1) {
if(unsatisfied_request(route->src->prefix, route->src->plen, if(unsatisfied_request(route->src->prefix, route->src->plen,
route->seqno, hash_id(route->src->id))) route->seqno, route->src->id))
urgent = 1; urgent = 1;
} }
...@@ -558,10 +559,9 @@ send_triggered_update(struct route *route, struct source *oldsrc, ...@@ -558,10 +559,9 @@ send_triggered_update(struct route *route, struct source *oldsrc,
route->src->metric >= INFINITY ? route->src->metric >= INFINITY ?
route->src->seqno : route->src->seqno :
seqno_plus(route->src->seqno, 1), seqno_plus(route->src->seqno, 1),
hash_id(route->src->id)); route->src->id);
} else if(newmetric >= oldmetric + 288) { } else if(newmetric >= oldmetric + 288) {
send_request(NULL, route->src->prefix, route->src->plen, send_request(NULL, route->src->prefix, route->src->plen);
0, 0, 0);
} }
} }
} }
...@@ -604,7 +604,7 @@ route_lost(struct source *src, unsigned oldmetric) ...@@ -604,7 +604,7 @@ route_lost(struct source *src, unsigned oldmetric)
send_request_resend(NULL, src->prefix, src->plen, send_request_resend(NULL, src->prefix, src->plen,
src->metric >= INFINITY ? src->metric >= INFINITY ?
src->seqno : seqno_plus(src->seqno, 1), src->seqno : seqno_plus(src->seqno, 1),
hash_id(src->id)); src->id);
} }
} }
...@@ -630,8 +630,7 @@ expire_routes(void) ...@@ -630,8 +630,7 @@ expire_routes(void)
if(route->installed && route->refmetric < INFINITY) { if(route->installed && route->refmetric < INFINITY) {
if(route->time < now.tv_sec - MAX(10, route_timeout_delay * 7 / 8)) if(route->time < now.tv_sec - MAX(10, route_timeout_delay * 7 / 8))
send_unicast_request(route->neigh, send_unicast_request(route->neigh,
route->src->prefix, route->src->plen, route->src->prefix, route->src->plen);
0, 0, 0);
} }
i++; i++;
} }
......
...@@ -41,9 +41,9 @@ find_source(const unsigned char *id, const unsigned char *p, unsigned char plen, ...@@ -41,9 +41,9 @@ find_source(const unsigned char *id, const unsigned char *p, unsigned char plen,
for(src = srcs; src; src = src->next) { for(src = srcs; src; src = src->next) {
/* This should really be a hash table. For now, check the /* This should really be a hash table. For now, check the
last byte first. */ last byte first. */
if(src->id[15] != id[15]) if(src->id[7] != id[7])
continue; continue;
if(memcmp(src->id, id, 16) != 0) if(memcmp(src->id, id, 8) != 0)
continue; continue;
if(source_match(src, p, plen)) if(source_match(src, p, plen))
return src; return src;
...@@ -58,7 +58,7 @@ find_source(const unsigned char *id, const unsigned char *p, unsigned char plen, ...@@ -58,7 +58,7 @@ find_source(const unsigned char *id, const unsigned char *p, unsigned char plen,
return NULL; return NULL;
} }
memcpy(src->id, id, 16); memcpy(src->id, id, 8);
memcpy(src->prefix, p, 16); memcpy(src->prefix, p, 16);
src->plen = plen; src->plen = plen;
src->seqno = seqno; src->seqno = seqno;
......
...@@ -24,7 +24,7 @@ THE SOFTWARE. ...@@ -24,7 +24,7 @@ THE SOFTWARE.
struct source { struct source {
struct source *next; struct source *next;
unsigned char id[16]; unsigned char id[8];
unsigned char prefix[16]; unsigned char prefix[16];
unsigned char plen; unsigned char plen;
unsigned short seqno; unsigned short seqno;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment