2011-12-21 09:55:05 +00:00
|
|
|
/*
|
|
|
|
Serval Distributed Numbering Architecture (DNA)
|
|
|
|
Copyright (C) 2010 Paul Gardner-Stephen
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
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, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2012-02-23 02:15:42 +00:00
|
|
|
#include "serval.h"
|
2012-07-03 06:06:51 +00:00
|
|
|
#include "strbuf.h"
|
2011-08-08 14:41:46 +00:00
|
|
|
|
2011-08-17 16:45:13 +00:00
|
|
|
/*
|
|
|
|
Here we implement the actual routing algorithm which is heavily based on BATMAN.
|
|
|
|
|
|
|
|
The fundamental difference is that we want to allow the mesh to grow beyond the
|
|
|
|
size that could ordinarily be accomodated by the available bandwidth. Some
|
|
|
|
explanation follows.
|
|
|
|
|
|
|
|
BATMAN operates by having nodes periodically send "hello" or originator messages,
|
|
|
|
either with a limited distribution or with a sufficiently high TTL to spread
|
|
|
|
over the whole network.
|
|
|
|
|
|
|
|
The latter results in a super-linear bandwidth requirement as the network grows
|
|
|
|
in size.
|
|
|
|
|
|
|
|
What we wish to do is to implement the BATMAN concept, but using link-local traffic
|
|
|
|
only. To do this we need to change the high-TTL originator frames into something
|
|
|
|
equivalent, but that does not get automatic network-wide distribution.
|
|
|
|
|
|
|
|
What seems possible is to implement the BATMAN approach for link-local neighbours,
|
|
|
|
and then have each node periodically announce the link-score to the peers that
|
|
|
|
they know about, whether link-local or more distant. If the number of reported
|
|
|
|
peers is left unconstrained, super-linear bandwidth consumption will still occur.
|
|
|
|
|
|
|
|
However, if the number of peers that each node announces is limited, then bandwidth
|
|
|
|
will be capped at a constant factor (which can be chosen based on the bandwidth
|
|
|
|
available). The trade-off being that each node will only be able to see some number
|
|
|
|
of "nearest" peers based on the available bandwidth.
|
|
|
|
|
|
|
|
This seems an entirely reasonable outcome, and at least on the surface would appear
|
|
|
|
to solve our problem of wanting to allow a global-scale mesh, even if only local
|
|
|
|
connectivity is possible, in contrast to existing mesh protocols that will not allow
|
|
|
|
any connectivity once the number of nodes grows beyond a certain point.
|
|
|
|
|
|
|
|
Remaining challenges that we have to think through are how to add a hierarchical
|
|
|
|
element to the mesh that might allow us to route traffic beyond a nodes'
|
|
|
|
neighbourhood of peers.
|
|
|
|
|
|
|
|
There is some hope to extend the effective range beyond the immediate neighbourhood
|
|
|
|
to some degree by rotating the peers that a node reports on, so that a larger total
|
|
|
|
set of nodes becomes known to the mesh, in return for less frequent updates on their
|
|
|
|
link scores and optimal routes.
|
|
|
|
|
|
|
|
This actually makes some logical sense, as the general direction in which to route
|
|
|
|
a frame to a distant node is less likely to change more slowly than for nearer nodes.
|
|
|
|
So we will attempt this.
|
|
|
|
|
|
|
|
With some careful thought, this statistical announcement of peers also serves to allow
|
|
|
|
long-range but very low bandwidth links, e.g., satellite or dial-up, as well as long-shot
|
|
|
|
WiFi where bandwidth is less constrained.
|
|
|
|
|
|
|
|
Questions arise as to the possibility of introducing routing loops through the use of
|
|
|
|
stale information. So we will certainly need to have some idea of the freshness of
|
|
|
|
routing data.
|
|
|
|
|
|
|
|
Finally, all this works only for bidirectional links. We will need to think about how
|
|
|
|
to handle mono-directional links. BATMAN does this well, but I don't have the documentation
|
|
|
|
here at 36,000 feet to digest it and think about how to incorporate it.
|
|
|
|
|
2011-08-20 11:58:25 +00:00
|
|
|
Having landed and thought about this a bit more, what we will do is send link-local
|
|
|
|
announcements which each direct neighbour Y will listen to and build up an estimated
|
|
|
|
probability of a packet sent by X reaching them. This information will be
|
|
|
|
periodically broadcast as the interface ticks, and not forwarded beyond link-local,
|
|
|
|
this preventing super-scalar traffic growth. When X hears that Y's P(X,Y) from
|
|
|
|
such a neighbour reception notice X can record P(X,Y) as its link score to Y. This
|
|
|
|
deals with asymmetric delivery probabilities for link-local neighbours.
|
|
|
|
|
|
|
|
So how do we efficiently distribute P(X,Y) to our second-degree neighbours, which
|
|
|
|
we shall call Z? We will assume that P(X,Z) = P(X,Y)*P(Y,Z). Thus X needs to get
|
|
|
|
Y's set of P(Y,a) values. This is easy to arrange if X and Y are bidirectionally
|
|
|
|
link-local, as Y can periodically broadcast this information, and X can cache it.
|
|
|
|
This process will eventually build up the entire set P(X,b), where b are all nodes
|
|
|
|
on the mesh. However, it assumes that every link is bidirectional. What if X can
|
|
|
|
send directly to Y, but Y cannot send directly to X, i.e., P(X,Y)~1, P(Y,X)~0?
|
|
|
|
Provided that there is some path P(Y,m)*P(m,X) >0, then Y will eventually learn
|
|
|
|
about it. If Y knows that P(X,Y)>0, then it knows that X is a link-local neighbour
|
|
|
|
monodirectionally, and thus should endeavour to tell X about its direct neighbours.
|
|
|
|
This is fairly easy to arrange, and we will try this approach.
|
|
|
|
|
|
|
|
So overall, this results in traffic at each node which is O(n^2+n*m) where n is the
|
|
|
|
number of direct neighbours and m is the total number of nodes reachable on the
|
|
|
|
mesh. As we can limit the number of nodes reachable on the mesh by having nodes
|
|
|
|
only advertise their k highest scoring nodes, we can effectively limit the traffic
|
|
|
|
to approximately linear with respect to reachable node count, but quadratic with
|
|
|
|
respect to the number of immediate neighbours. This seems a reasonable outcome.
|
|
|
|
|
2011-08-17 16:45:13 +00:00
|
|
|
Related to this we need to continue thinking about how to handle intermittant links in a more
|
|
|
|
formal sense, including getting an idea of when nodes might reappear.
|
|
|
|
|
|
|
|
Turning to the practical side of things, we need to keep track of reachability scores for
|
|
|
|
nodes via each of our immediate neighbours. Recognising the statistical nature of
|
|
|
|
the announcments, we probably want to keep track of some that have ceased to be neighbours
|
|
|
|
in case they become neighbours again.
|
|
|
|
|
|
|
|
Probably it makes more sense to have a list of known nodes and the most recent and
|
|
|
|
highest scoring nodes by which we may reach them, complete with the sequence numbers of last
|
|
|
|
observation that they are based upon, and possibly more information down the track to
|
|
|
|
support intermittant links.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* For fast handling we will have a number of bins that will be indexed by the
|
|
|
|
first few bits of the peer's SIDs, and a number of entries in each bin to
|
|
|
|
handle hash collissions while still allowing us to have static memory usage. */
|
|
|
|
int overlay_bin_count=0;
|
2011-08-20 11:58:25 +00:00
|
|
|
int overlay_bin_size=0; /* associativity, i.e., entries per bin */
|
|
|
|
int overlay_bin_bytes=0; /* number of bytes required to represent the range
|
|
|
|
[0..bin_count) */
|
2011-08-17 17:49:13 +00:00
|
|
|
overlay_node **overlay_nodes=NULL;
|
2011-08-17 16:45:13 +00:00
|
|
|
|
|
|
|
/* We also need to keep track of which nodes are our direct neighbours.
|
|
|
|
This means we need to keep an eye on how recently we received DIRECT announcements
|
|
|
|
from nodes, and keep a list of the most recent ones. The challenge is to keep the
|
|
|
|
list ordered without having to do copies or have nasty linked-list structures that
|
|
|
|
require lots of random memory reads to resolve.
|
|
|
|
|
|
|
|
The simplest approach is to maintain a large cache of neighbours and practise random
|
2011-08-20 01:50:22 +00:00
|
|
|
replacement. It is however succecptible to cache flushing attacks by adversaries, so
|
2011-08-17 16:45:13 +00:00
|
|
|
we will need something smarter in the long term.
|
|
|
|
*/
|
|
|
|
int overlay_max_neighbours=0;
|
|
|
|
int overlay_neighbour_count=0;
|
2011-09-01 13:14:30 +00:00
|
|
|
overlay_neighbour *overlay_neighbours=NULL;
|
2011-08-17 16:45:13 +00:00
|
|
|
|
2011-08-17 19:00:13 +00:00
|
|
|
/* allocate structures according to memory availability.
|
|
|
|
We size differently because some devices are very constrained,
|
|
|
|
e.g., mesh potatoes, some are middle sized, like mobile phones, and
|
|
|
|
some are very large, like dedicated servers, that can keep track of
|
|
|
|
very many nodes.
|
|
|
|
|
|
|
|
The memory allocation is in two main areas:
|
|
|
|
|
|
|
|
1. Neighbour list, which is short, requiring just a single pointer per
|
|
|
|
direct neighbour. So this can probably be set to a fairly large value
|
|
|
|
on any sized machine, certainly in the thousands, which should be more
|
|
|
|
than sufficient for wifi-type interfaces. 1000 neighbours requires
|
|
|
|
onlt 8KB on a 64 bit machine, which is probably a reasonable limit per
|
|
|
|
MB allocated. This leaves 1016KB/MB for:
|
|
|
|
|
|
|
|
2. The node information (overlay_node) structures. These take more
|
|
|
|
space and have to be sized appropriately. We also need to choose the
|
|
|
|
associativity of the node table based on the size of the structure.
|
|
|
|
The smaller the structure the greater the associativity we should have
|
|
|
|
so that the fewer the entries the more effectively we use them. The
|
|
|
|
trade-off is that increased associativity results in increased search
|
|
|
|
time as the bins are searched for matches. This is also why for very
|
|
|
|
large tables we want low associativity so that we are more CPU efficient.
|
|
|
|
|
|
|
|
The bulk of the size ofthe overlay_node structure is the observations
|
|
|
|
information, because each observation contains a full 32 byte SID. The
|
|
|
|
question is whether a full SID is required, or whether a prefix is
|
|
|
|
sufficient, or if there is some even more compact representation possible.
|
|
|
|
|
|
|
|
In principle the sender of the observation should be a direct neighbour,
|
|
|
|
and so we could just use a neighbour index. However the neighbour indices
|
|
|
|
are liable to change or become invalid over time, and we don't want to have
|
|
|
|
to trawl through the nodes every time that happens, as otherwise the CPU
|
|
|
|
requirements will be crazy.
|
|
|
|
|
|
|
|
This suggests that the use of a prefix is probably more appropriate. The
|
|
|
|
prefix must be long enough to be robust against birthday-paradox effects
|
|
|
|
and attacks. So at least 8 bytes (64 bits) is mandatory to make it
|
|
|
|
reasonably difficult to find a colliding public key prefix. Prudence
|
|
|
|
suggests that a longer prefix is desirable to give a safety margin, perhaps
|
|
|
|
12 bytes (96 bits) being a reasonable figure.
|
|
|
|
|
|
|
|
This approximately halves the memory requirement per node to about 4KB (i.e.
|
|
|
|
~250 nodes per MB), and employing shorter prefixes than 12 bytes will result
|
|
|
|
in diminishing returns, so this gives us confidence that it is an appropriate
|
|
|
|
figure.
|
|
|
|
|
|
|
|
Four-way associativity is probably reasonable for large-memory deployments
|
|
|
|
where we have space for many thousands of nodes to keep string comparison
|
|
|
|
effort to low levels.
|
|
|
|
|
|
|
|
For small-memory deployments where we have space for only a few hundred nodes it
|
|
|
|
probably makes sence to go for eight-way associativity just to be on the safe
|
|
|
|
side. However, this is somewhat arbitrary. Only experience will teach us.
|
|
|
|
|
|
|
|
One final note on potential attacks against us is that by having a hashed structure,
|
|
|
|
even with modest associativity, is that if an attacker knows the hash function
|
|
|
|
they can readily cause hash collisions and interfere with connectivity to nodes
|
|
|
|
on the mesh.
|
|
|
|
|
|
|
|
The most robust solution to this problem would be to use a linear hash function
|
|
|
|
that takes, say, 10 of the 32 bytes as input, as this would result in a hash function
|
|
|
|
space of: 32!/22! which is > 2^47. This would then require several times 2^47
|
|
|
|
observation injections by an adversary to cause a hash collision with confidence.
|
|
|
|
Actually determining that such a collision had been caused would probably multiply
|
|
|
|
the effort required by some small further constant.
|
|
|
|
|
|
|
|
Using a non-linear hash function would raise the space to 32^10 > 2^50, the factor
|
|
|
|
of 8 probably not being worth the CPU complexity of such a non-linear function.
|
|
|
|
|
|
|
|
However the question arises as to whether such an extreme approach is required,
|
|
|
|
remembering that changing the hash function does not break the protocol, so
|
|
|
|
such strong hash functions could be employed in future if needed without breaking
|
|
|
|
backward compatibility.
|
|
|
|
|
|
|
|
So let us then think about some very simple alternatives that might be good enough
|
|
|
|
for now, but that are very fast to calculate.
|
|
|
|
|
|
|
|
The simplest is to just choose a sufficient number of bytes from the SIDs to create
|
|
|
|
a sufficiently long index value. This gives 32!/(32-n)! where n is the number of
|
|
|
|
bytes required, or 32 for the worst-case situation of n.
|
|
|
|
|
|
|
|
An improvement is to xor bytes to produce the index value. Using pairs of bytes
|
|
|
|
gets us to something along the lines of 32!/(32-2n)! for production of a single byte,
|
|
|
|
which is a modest improvement, but possibly not good enough. As we increase the number
|
|
|
|
of bytes xored together the situation improves to a point. However if we go to far we
|
|
|
|
end up reducing the total space because once more than half of the bytes are involved in
|
|
|
|
the xor it is equivalent to the xor of all of the bytes xored with the bytes not included
|
|
|
|
in the xor. This means that regardless of the length of the index we need, we probably want
|
|
|
|
to use only half of the bytes as input, a this gives a complexity of 32!/16! = 2^73,
|
|
|
|
which is plenty.
|
|
|
|
|
|
|
|
In fact, this gives us a better result than the previous concept, and can be implemented
|
|
|
|
using a very simple algorithm. All we need to do is get a random ordering of the numbers
|
|
|
|
[0..31], and round robin xor the bytes we need with the [0..15]th elements of the random
|
|
|
|
ordering.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* The random ordering of bytes for the hash */
|
|
|
|
int overlay_route_hash_order[16];
|
|
|
|
int overlay_route_hash_bytes=0;
|
|
|
|
|
2012-02-15 13:21:12 +00:00
|
|
|
int overlay_route_initP=0;
|
2011-08-17 19:00:13 +00:00
|
|
|
int overlay_route_init(int mb_ram)
|
|
|
|
{
|
|
|
|
int i,j;
|
2012-02-15 13:21:12 +00:00
|
|
|
|
|
|
|
/* Try to catch one observed behaviour when memory corruption has occurred. */
|
|
|
|
if (overlay_route_initP) {
|
2012-07-03 06:06:51 +00:00
|
|
|
WHY("multiply called");
|
2012-02-15 13:21:12 +00:00
|
|
|
sleep(3600);
|
|
|
|
}
|
|
|
|
overlay_route_initP=1;
|
|
|
|
|
|
|
|
memabuseCheck();
|
|
|
|
|
2012-04-21 21:09:33 +00:00
|
|
|
srandomdev();
|
2011-08-17 19:00:13 +00:00
|
|
|
|
|
|
|
/* Generate hash ordering function */
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf b = strbuf_alloca(12 * 32);
|
2011-08-17 19:00:13 +00:00
|
|
|
for(i=0;i<32;i++) {
|
2011-08-20 11:58:25 +00:00
|
|
|
j=0;
|
|
|
|
overlay_route_hash_order[i]=random()&31;
|
2011-08-17 19:00:13 +00:00
|
|
|
while(j<i) {
|
2011-08-20 11:58:25 +00:00
|
|
|
overlay_route_hash_order[i]=random()&31;
|
2011-08-17 19:00:13 +00:00
|
|
|
for(j=0;j<i;j++) if (overlay_route_hash_order[i]==overlay_route_hash_order[j]) break;
|
|
|
|
}
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b, " %d", overlay_route_hash_order[i]);
|
2011-08-17 19:00:13 +00:00
|
|
|
}
|
2012-07-27 10:29:16 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("Generating byte-order for hash function:%s", strbuf_str(b));
|
2012-08-14 04:27:13 +00:00
|
|
|
overlay_route_hash_bytes=12;
|
2011-08-17 19:00:13 +00:00
|
|
|
|
|
|
|
int associativity=4;
|
|
|
|
int bin_count=1;
|
|
|
|
|
2011-08-20 01:50:22 +00:00
|
|
|
/* Now fiddle it to get bin_count to be a power of two that fits and doesn't waste too much space. */
|
2011-09-01 13:14:30 +00:00
|
|
|
long long space=(sizeof(overlay_neighbour*)*1024LL*mb_ram)+sizeof(overlay_node)*bin_count*associativity*1LL;
|
2011-08-17 19:00:13 +00:00
|
|
|
while (space<mb_ram*1048576LL&&associativity<8)
|
|
|
|
{
|
2011-09-01 13:14:30 +00:00
|
|
|
long long space2=(sizeof(overlay_neighbour*)*1024LL*mb_ram)+sizeof(overlay_node)*(bin_count*2LL)*associativity*1LL;
|
2011-08-17 19:00:13 +00:00
|
|
|
if (space2<mb_ram*1048576LL) { bin_count*=2; continue; }
|
2011-09-01 13:14:30 +00:00
|
|
|
space2=(sizeof(overlay_neighbour*)*1024LL)+sizeof(overlay_node)*bin_count*(associativity+1)*1LL;
|
2011-08-17 19:00:13 +00:00
|
|
|
if (space2<mb_ram*1048576LL) { associativity++; continue; }
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-08-20 01:50:22 +00:00
|
|
|
/* Report on the space used */
|
|
|
|
{
|
2011-09-01 13:14:30 +00:00
|
|
|
space=(sizeof(overlay_neighbour*)*1024LL*mb_ram)+sizeof(overlay_node)*bin_count*associativity*1LL;
|
2011-08-20 01:50:22 +00:00
|
|
|
int percent=100LL*space/(mb_ram*1048576LL);
|
2012-07-27 10:29:16 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("Using %d%% of %dMB RAM allows for %d bins with %d-way associativity and %d direct neighbours",
|
|
|
|
percent,mb_ram,bin_count,associativity,1024*mb_ram);
|
2011-08-20 01:50:22 +00:00
|
|
|
}
|
2011-08-17 19:00:13 +00:00
|
|
|
|
2011-08-20 01:50:22 +00:00
|
|
|
/* Now allocate the structures */
|
|
|
|
|
|
|
|
overlay_nodes=calloc(sizeof(overlay_node*),bin_count);
|
2012-07-27 10:29:16 +00:00
|
|
|
if (!overlay_nodes) return WHY_perror("calloc");
|
2011-08-17 19:00:13 +00:00
|
|
|
|
2012-01-09 05:58:44 +00:00
|
|
|
overlay_neighbours=calloc(sizeof(overlay_neighbour),1024*mb_ram);
|
2011-08-20 01:50:22 +00:00
|
|
|
if (!overlay_neighbours) {
|
2012-07-27 10:29:16 +00:00
|
|
|
WHY_perror("calloc");
|
2011-08-20 01:50:22 +00:00
|
|
|
free(overlay_nodes);
|
2012-07-27 10:29:16 +00:00
|
|
|
return -1;
|
2011-08-20 01:50:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(i=0;i<bin_count;i++)
|
|
|
|
{
|
|
|
|
overlay_nodes[i]=calloc(sizeof(overlay_node),associativity);
|
|
|
|
if (!overlay_nodes[i]) {
|
2012-07-27 10:29:16 +00:00
|
|
|
WHY_perror("calloc");
|
2011-08-20 01:50:22 +00:00
|
|
|
while(--i>=0) free(overlay_nodes[i]);
|
|
|
|
free(overlay_nodes);
|
|
|
|
free(overlay_neighbours);
|
2012-07-27 10:29:16 +00:00
|
|
|
return -1;
|
2011-08-20 01:50:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
overlay_max_neighbours=1024*mb_ram;
|
|
|
|
overlay_bin_count=bin_count;
|
|
|
|
overlay_bin_size=associativity;
|
2012-07-27 10:29:16 +00:00
|
|
|
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("Node (%d bins) and neighbour tables allocated",bin_count);
|
2011-08-20 11:58:25 +00:00
|
|
|
|
|
|
|
/* Work out number of bytes required to represent the bin number.
|
|
|
|
Used for calculation of sid hash */
|
|
|
|
overlay_bin_bytes=1;
|
|
|
|
while(bin_count&0xffffff00) {
|
2012-07-27 10:29:16 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("bin_count=0x%08x, overlay_bin_bytes=%d",bin_count,overlay_bin_bytes);
|
2011-08-20 11:58:25 +00:00
|
|
|
overlay_bin_bytes++;
|
|
|
|
bin_count=bin_count>>8;
|
|
|
|
}
|
2012-07-27 10:29:16 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("bin_count=0x%08x, overlay_bin_bytes=%d",bin_count,overlay_bin_bytes);
|
2011-08-20 11:58:25 +00:00
|
|
|
|
2011-08-20 09:36:15 +00:00
|
|
|
return 0;
|
2011-08-17 19:00:13 +00:00
|
|
|
}
|
|
|
|
|
2011-09-05 04:00:17 +00:00
|
|
|
/* Select a next hop to get to a node.
|
|
|
|
Frist, let us consider neighbours. These are on a local link to us, and do not require any
|
|
|
|
intermediate nodes to transmit to us. However, assymetric packet loss is common, so we may
|
|
|
|
not be able to transmit back to the neighbour. We know if we can because we will have
|
|
|
|
received acks to our self announcements. However, to send an ack to a self announcement we
|
|
|
|
need a fall-back option. This fall-back should be by sending to the broadcast address.
|
|
|
|
|
|
|
|
The complication comes when we have multiple interfaces available. If we send to all, then
|
|
|
|
we need a way of keeping track which interfaces we have sent it on so far, which is a bit
|
|
|
|
icky, and more to the point requires some revamping of code. A bigger problem is that we might
|
|
|
|
have cheap and expensive interfaces, and we don't want to go blabbing about our wifi or ethernet
|
|
|
|
based peers over a $10/MB BGAN link, when we can reasonably know that it shouldn't be necessary.
|
|
|
|
|
|
|
|
The trouble is that sometimes it might just be necessary. We then have two options, send traffic
|
|
|
|
over multiple interfaces to try to discover such one-way links, even if internet back-haul is
|
|
|
|
required in between. This is nice in the long-term. Or, we be more conservative with the traffic
|
|
|
|
and require that a resolution to the route be discoverable via the interface that the frame
|
|
|
|
arrived on.
|
|
|
|
|
|
|
|
In any case, we need to tag the nexthop address with the interface(s) on which to send it.
|
|
|
|
|
|
|
|
Once we have this working and neighbours can communicate, then we can move on to addressing
|
|
|
|
nodes that are only indirectly connected. Indeed, the two are somewhat interconnected as
|
|
|
|
an indirect route may be required to get a self-announce ack back to the sender.
|
|
|
|
*/
|
2012-07-12 01:06:41 +00:00
|
|
|
int overlay_get_nexthop(unsigned char *d,unsigned char *nexthop,int *interface)
|
2011-08-08 14:41:46 +00:00
|
|
|
{
|
2011-09-05 05:28:12 +00:00
|
|
|
int i;
|
2012-04-13 19:04:45 +00:00
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
if (*d==0){
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("No open path to %s, invalid sid",alloca_tohex_sid(d));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-13 19:04:45 +00:00
|
|
|
if (overlay_broadcast_drop_check(d)) return WHY("I have sent that broadcast frame before");
|
2012-05-18 03:25:56 +00:00
|
|
|
if (overlay_address_is_broadcast(d)) {
|
|
|
|
bcopy(&d[0],&nexthop[0],SID_SIZE);
|
|
|
|
return 0;
|
|
|
|
}
|
2012-04-13 19:04:45 +00:00
|
|
|
|
2011-09-05 06:25:59 +00:00
|
|
|
if (!overlay_neighbours) return WHY("I have no neighbours");
|
2011-09-05 04:00:17 +00:00
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
overlay_node *n=overlay_route_find_node(d,SID_SIZE,0 /* don't create if missing */ );
|
|
|
|
if (!n){
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("No open path to %s, unknown peer",alloca_tohex_sid(d));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
2012-07-17 06:00:50 +00:00
|
|
|
overlay_neighbour *direct_neighbour=NULL;
|
2012-07-30 09:05:28 +00:00
|
|
|
|
|
|
|
if (n->neighbour_id) {
|
2012-07-17 06:00:50 +00:00
|
|
|
direct_neighbour = &overlay_neighbours[n->neighbour_id];
|
|
|
|
overlay_route_recalc_neighbour_metrics(direct_neighbour, now);
|
2011-09-05 05:25:44 +00:00
|
|
|
/* Is a direct neighbour.
|
|
|
|
So in the absence of any better indirect route, we pick the interface that
|
2012-07-30 09:05:28 +00:00
|
|
|
we can hear this neighbour on the most reliably, and then send the frame
|
2011-09-05 05:25:44 +00:00
|
|
|
via that interface and directly addressed to the recipient. */
|
2012-07-30 09:05:28 +00:00
|
|
|
int ifn = -1;
|
|
|
|
for (i = 0; i < overlay_interface_count; ++i) {
|
|
|
|
if ( overlay_interfaces[i].state == INTERFACE_STATE_UP
|
|
|
|
&& (ifn == -1 || direct_neighbour->scores[i] > direct_neighbour->scores[ifn]))
|
|
|
|
ifn = i;
|
2012-01-08 22:47:54 +00:00
|
|
|
}
|
2012-07-30 09:05:28 +00:00
|
|
|
if (ifn != -1 && direct_neighbour->scores[ifn] > 0) {
|
|
|
|
*interface = ifn;
|
|
|
|
bcopy(d, nexthop, SID_SIZE);
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("nexthop is %s", alloca_tohex_sid(nexthop));
|
2012-07-17 06:00:50 +00:00
|
|
|
return 0;
|
2012-07-12 01:06:41 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-30 09:05:28 +00:00
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
/* Is not a direct neighbour.
|
|
|
|
XXX - Very simplistic for now. */
|
|
|
|
int o;
|
|
|
|
int best_score=0;
|
|
|
|
int best_o=-1;
|
|
|
|
for(o=0;o<OVERLAY_MAX_OBSERVATIONS;o++) {
|
|
|
|
int score=n->observations[o].observed_score;
|
|
|
|
|
|
|
|
if (!score)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
overlay_neighbour *neighbour
|
|
|
|
=overlay_route_get_neighbour_structure
|
|
|
|
(n->observations[o].sender_prefix,OVERLAY_SENDER_PREFIX_LENGTH,0);
|
|
|
|
|
|
|
|
if (neighbour && neighbour!=direct_neighbour) {
|
|
|
|
overlay_route_recalc_neighbour_metrics(neighbour, now);
|
|
|
|
|
|
|
|
for(i=1;i<OVERLAY_MAX_INTERFACES;i++) {
|
2012-07-25 07:23:44 +00:00
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_UP &&
|
|
|
|
neighbour->scores[i]*score>best_score) {
|
2012-07-17 06:00:50 +00:00
|
|
|
bcopy(&neighbour->node->sid[0],&nexthop[0],SID_SIZE);
|
|
|
|
*interface=i;
|
|
|
|
best_o=o;
|
|
|
|
best_score=score;
|
2012-05-17 07:37:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-05 05:25:44 +00:00
|
|
|
}
|
2012-07-17 06:00:50 +00:00
|
|
|
if (best_o>-1) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("No open path to %s, no good neighbour observations",alloca_tohex_sid(d));
|
|
|
|
return -1;
|
|
|
|
}
|
2011-08-08 14:41:46 +00:00
|
|
|
}
|
2011-08-17 01:22:17 +00:00
|
|
|
|
2012-07-03 08:07:03 +00:00
|
|
|
unsigned int overlay_route_hash_sid(const unsigned char *sid)
|
2011-08-20 11:58:25 +00:00
|
|
|
{
|
|
|
|
/* Calculate the bin number of an address (sid) from the sid. */
|
|
|
|
if (!overlay_route_hash_bytes) return WHY("overlay_route_hash_bytes==0");
|
|
|
|
unsigned int bin=0;
|
|
|
|
int byte=0;
|
|
|
|
int i;
|
|
|
|
for(i=0;i<overlay_route_hash_bytes;i++) {
|
|
|
|
bin=bin^((sid[overlay_route_hash_order[i]])<<(8*byte));
|
|
|
|
byte++;
|
|
|
|
if (byte>=overlay_bin_bytes) byte=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mask out extranous bits to return only a valid bin number */
|
|
|
|
bin&=(overlay_bin_count-1);
|
2012-07-17 06:00:50 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
2012-07-03 06:06:51 +00:00
|
|
|
DEBUGF("Address %s resolves to bin #%d", alloca_tohex_sid(sid), bin);
|
2012-07-17 06:00:50 +00:00
|
|
|
|
2011-08-20 11:58:25 +00:00
|
|
|
return bin;
|
|
|
|
}
|
|
|
|
|
2012-07-03 08:07:03 +00:00
|
|
|
overlay_node *overlay_route_find_node(const unsigned char *sid, int prefixLen, int createP)
|
2011-08-20 11:58:25 +00:00
|
|
|
{
|
2012-07-17 06:00:50 +00:00
|
|
|
if (*sid==0 || prefixLen<overlay_route_hash_bytes){
|
|
|
|
INFOF("Sid %s/%d cannot ever become a node!", alloca_tohex_sid(sid), prefixLen);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-07-03 08:07:03 +00:00
|
|
|
int bin_number = overlay_route_hash_sid(sid);
|
|
|
|
if (bin_number < 0) {
|
|
|
|
WHY("negative bin number");
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-08-20 11:58:25 +00:00
|
|
|
|
2012-07-03 08:07:03 +00:00
|
|
|
int free_slot = -1;
|
2012-07-17 06:00:50 +00:00
|
|
|
overlay_node *found=NULL;
|
2012-07-03 08:07:03 +00:00
|
|
|
{
|
|
|
|
int slot;
|
|
|
|
for (slot = 0; slot < overlay_bin_size; slot++)
|
2012-07-17 06:00:50 +00:00
|
|
|
if (overlay_nodes[bin_number][slot].sid[0]==0)
|
2012-07-03 08:07:03 +00:00
|
|
|
free_slot = slot;
|
2012-07-17 06:00:50 +00:00
|
|
|
else if (memcmp(sid, overlay_nodes[bin_number][slot].sid, prefixLen) == 0){
|
|
|
|
if (found){
|
|
|
|
INFOF("SID prefix %d %s is not unique", prefixLen, alloca_tohex_sid(sid));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
found = &overlay_nodes[bin_number][slot];
|
|
|
|
}
|
2012-07-03 08:07:03 +00:00
|
|
|
}
|
2011-08-20 11:58:25 +00:00
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
if (found)
|
|
|
|
return found;
|
|
|
|
|
2011-08-20 11:58:25 +00:00
|
|
|
/* Didn't find it */
|
|
|
|
if (!createP) return NULL;
|
|
|
|
|
2012-07-03 08:07:03 +00:00
|
|
|
if (free_slot == -1) {
|
|
|
|
/* Evict */
|
|
|
|
WARN("overlay_nodes[] eviction NOT IMPLEMENTED");
|
|
|
|
return NULL;
|
|
|
|
int i;
|
|
|
|
for(i=0;i<OVERLAY_MAX_OBSERVATIONS;i++)
|
|
|
|
overlay_nodes[bin_number][free_slot].observations[i].observed_score=0;
|
|
|
|
overlay_nodes[bin_number][free_slot].neighbour_id=0;
|
|
|
|
overlay_nodes[bin_number][free_slot].most_recent_observation_id=0;
|
|
|
|
overlay_nodes[bin_number][free_slot].best_link_score=0;
|
|
|
|
overlay_nodes[bin_number][free_slot].best_observation=0;
|
|
|
|
for(i=0;i<OVERLAY_MAX_INTERFACES;i++) {
|
2012-08-09 02:44:32 +00:00
|
|
|
overlay_nodes[bin_number][free_slot].most_recent_advertisment_ms[i]=0;
|
2012-07-03 08:07:03 +00:00
|
|
|
overlay_nodes[bin_number][free_slot].most_recent_advertised_score[i]=0;
|
2011-08-20 11:58:25 +00:00
|
|
|
}
|
2012-07-03 08:07:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bcopy(sid, overlay_nodes[bin_number][free_slot].sid, SID_SIZE);
|
2011-08-20 11:58:25 +00:00
|
|
|
|
2012-07-03 08:07:03 +00:00
|
|
|
// This info message is used by tests; don't alter or remove it.
|
|
|
|
INFOF("ADD OVERLAY NODE sid=%s slot=%d", alloca_tohex_sid(sid), free_slot);
|
|
|
|
|
2011-08-20 11:58:25 +00:00
|
|
|
return &overlay_nodes[bin_number][free_slot];
|
|
|
|
}
|
|
|
|
|
2012-04-29 02:26:47 +00:00
|
|
|
int overlay_route_ack_selfannounce(overlay_frame *f,
|
|
|
|
unsigned int s1,unsigned int s2,
|
2012-04-29 03:40:54 +00:00
|
|
|
int interface,
|
2012-04-29 02:26:47 +00:00
|
|
|
overlay_neighbour *n)
|
2011-08-29 06:50:27 +00:00
|
|
|
{
|
2011-09-05 02:49:53 +00:00
|
|
|
/* Acknowledge the receipt of a self-announcement of an immediate neighbour.
|
|
|
|
We could acknowledge immediately, but that requires the transmission of an
|
|
|
|
extra packet with all the overhead that entails. However, there is no real
|
|
|
|
need to send the ack out immediately. It should be entirely reasonable to
|
|
|
|
send the ack out with the next interface tick.
|
|
|
|
|
|
|
|
So we can craft the ack and submit it to the queue. As the next-hop will get
|
|
|
|
determined at TX time, this will ensure that we send the packet out on the
|
|
|
|
right interface to reach the originator of the self-assessment.
|
|
|
|
|
|
|
|
So all we need to do is craft the payload and put it onto the queue for
|
|
|
|
OVERLAY_MESH_MANAGEMENT messages.
|
|
|
|
|
|
|
|
Also, we should check for older such frames on the queue and drop them.
|
2012-01-10 03:35:26 +00:00
|
|
|
|
|
|
|
There is one caveat to the above: until the first selfannounce gets returned,
|
|
|
|
we don't have an open route. Thus we need to just make sure that the ack
|
|
|
|
goes out broadcast if we don't know about a return path. Once the return path
|
|
|
|
starts getting built, it should be fine.
|
|
|
|
|
2011-09-05 02:49:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* XXX Allocate overlay_frame structure and populate it */
|
|
|
|
overlay_frame *out=NULL;
|
|
|
|
out=calloc(sizeof(overlay_frame),1);
|
|
|
|
if (!out) return WHY("calloc() failed to allocate an overlay frame");
|
|
|
|
|
|
|
|
out->type=OF_TYPE_SELFANNOUNCE_ACK;
|
|
|
|
out->modifiers=0;
|
|
|
|
out->ttl=6; /* maximum time to live for an ack taking an indirect route back
|
|
|
|
to the originator. If it were 1, then we would not be able to
|
2012-01-10 03:35:26 +00:00
|
|
|
handle mono-directional links (which WiFi is notorious for).
|
|
|
|
XXX 6 is quite an arbitrary selection however. */
|
2011-09-05 02:49:53 +00:00
|
|
|
|
|
|
|
/* Set destination of ack to source of observed frame */
|
2011-09-05 06:25:59 +00:00
|
|
|
if (overlay_frame_set_neighbour_as_destination(out,n)) {
|
2011-09-05 02:49:53 +00:00
|
|
|
op_free(out);
|
|
|
|
return WHY("overlay_frame_set_neighbour_as_source() failed");
|
|
|
|
}
|
|
|
|
/* set source to ourselves */
|
|
|
|
overlay_frame_set_me_as_source(out);
|
2012-04-29 02:26:47 +00:00
|
|
|
|
2012-01-10 03:35:26 +00:00
|
|
|
/* Next-hop will get set at TX time, so no need to set it here.
|
|
|
|
However, if there is no known next-hop for this node (because the return path
|
|
|
|
has not yet begun to be built), then we need to set the nexthop to broadcast. */
|
2011-09-05 02:49:53 +00:00
|
|
|
out->nexthop_address_status=OA_UNINITIALISED;
|
2012-07-31 06:51:29 +00:00
|
|
|
if (overlay_resolve_next_hop(out)) {
|
|
|
|
/* no open path, so convert to broadcast */
|
|
|
|
int i;
|
|
|
|
for(i=0;i<(SID_SIZE-8);i++) out->nexthop[i]=0xff;
|
|
|
|
for(i=(SID_SIZE-8);i<SID_SIZE;i++) out->nexthop[i]=random()&0xff;
|
|
|
|
out->nexthop_address_status=OA_RESOLVED;
|
|
|
|
out->ttl=2;
|
|
|
|
out->isBroadcast=1;
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUG("Broadcasting ack to selfannounce for hithero unroutable node");
|
|
|
|
} else
|
|
|
|
out->isBroadcast = 0;
|
2012-04-28 08:19:39 +00:00
|
|
|
|
2011-09-05 02:49:53 +00:00
|
|
|
/* Set the time in the ack. Use the last sequence number we have seen
|
|
|
|
from this neighbour, as that may be helpful information for that neighbour
|
|
|
|
down the track. My policy is to communicate that information which should
|
|
|
|
be helpful for forming and maintaining the health of the mesh, as that way
|
|
|
|
each node can in potentially implement a different mesh routing protocol,
|
|
|
|
without breaking the wire protocol. This makes over-the-air software updates
|
|
|
|
much safer.
|
|
|
|
|
|
|
|
Combining of adjacent observation reports may mean that the most recent
|
|
|
|
observation is not the last one in the list, also the wrapping of the sequence
|
|
|
|
numbers means we can't just take the highest-numbered sequence number.
|
|
|
|
So we need to take the observation which was most recently received.
|
|
|
|
*/
|
2011-09-05 03:04:54 +00:00
|
|
|
out->payload=ob_new(4+32*2+1); /* will grow if it isn't big enough, but let's try to
|
|
|
|
avoid a realloc() if possible */
|
|
|
|
|
2012-04-29 02:26:47 +00:00
|
|
|
/* XXX - we should merge contiguous observation reports so that packet loss
|
|
|
|
on the return path doesn't count against the link. */
|
|
|
|
ob_append_int(out->payload,s1);
|
|
|
|
ob_append_int(out->payload,s2);
|
2011-09-05 02:49:53 +00:00
|
|
|
|
|
|
|
/* The ack needs to contain the per-interface scores that we have built up
|
|
|
|
for this neighbour.
|
|
|
|
We expect that for most neighbours they will have many fewer than 32 interfaces,
|
|
|
|
and even when they have multiple interfaces that we will only be able to hear
|
|
|
|
them on one or a few.
|
|
|
|
|
|
|
|
So we will structure the format so that we use fewer bytes when fewer interfaces
|
|
|
|
are involved.
|
|
|
|
|
|
|
|
Probably the simplest is to put each non-zero score followed by it's interface.
|
|
|
|
That way the whole list will be easy to parse, and as short as 3 bytes for a
|
|
|
|
single interface.
|
|
|
|
|
|
|
|
We could use the spare 2 bits at the top of the interface id to indicate
|
|
|
|
multiple interfaces with same score?
|
|
|
|
*/
|
2012-04-29 03:40:54 +00:00
|
|
|
#ifdef NOTDEFINED
|
2012-04-29 02:26:47 +00:00
|
|
|
int i;
|
2011-09-05 02:49:53 +00:00
|
|
|
for(i=0;i<OVERLAY_MAX_INTERFACES;i++)
|
|
|
|
{
|
|
|
|
/* Only include interfaces with score >0 */
|
|
|
|
if (n->scores[i]) {
|
|
|
|
ob_append_byte(out->payload,n->scores[i]);
|
|
|
|
ob_append_byte(out->payload,i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Terminate list */
|
|
|
|
ob_append_byte(out->payload,0);
|
2012-04-29 03:40:54 +00:00
|
|
|
#endif
|
|
|
|
ob_append_byte(out->payload,interface);
|
2011-09-05 02:49:53 +00:00
|
|
|
|
2012-04-28 08:39:58 +00:00
|
|
|
/* Add to queue. Keep broadcast status that we have assigned here if required to
|
|
|
|
get ack back to sender before we have a route. */
|
|
|
|
if (overlay_payload_enqueue(OQ_MESH_MANAGEMENT,out,out->isBroadcast))
|
2011-09-05 03:07:46 +00:00
|
|
|
{
|
|
|
|
op_free(out);
|
|
|
|
return WHY("overlay_payload_enqueue(self-announce ack) failed");
|
|
|
|
}
|
2011-09-05 03:04:54 +00:00
|
|
|
|
2011-09-05 02:49:53 +00:00
|
|
|
/* XXX Remove any stale versions (or should we just freshen, and forget making
|
|
|
|
a new one, since it would be more efficient). */
|
|
|
|
|
2011-09-07 03:39:54 +00:00
|
|
|
return 0;
|
2011-08-29 06:50:27 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 13:52:08 +00:00
|
|
|
int overlay_route_make_neighbour(overlay_node *n)
|
2011-09-01 13:14:30 +00:00
|
|
|
{
|
2011-09-01 13:52:08 +00:00
|
|
|
if (!n) return WHY("n is NULL");
|
|
|
|
|
|
|
|
/* If it is already a neighbour, then return */
|
|
|
|
if (n->neighbour_id) return 0;
|
|
|
|
|
2012-01-10 04:27:32 +00:00
|
|
|
/* If address is local don't both making it a neighbour */
|
|
|
|
if (overlay_address_is_local(n->sid)) return 0;
|
|
|
|
|
2011-09-01 13:52:08 +00:00
|
|
|
/* It isn't yet a neighbour, so find or free a neighbour slot */
|
|
|
|
/* slot 0 is reserved, so skip it */
|
|
|
|
if (!overlay_neighbour_count) overlay_neighbour_count=1;
|
|
|
|
if (overlay_neighbour_count<overlay_max_neighbours) {
|
|
|
|
/* Use next free neighbour slot */
|
|
|
|
n->neighbour_id=overlay_neighbour_count++;
|
|
|
|
} else {
|
|
|
|
/* Evict an old neighbour */
|
|
|
|
int nid=1+random()%(overlay_max_neighbours-1);
|
|
|
|
if (overlay_neighbours[nid].node) overlay_neighbours[nid].node->neighbour_id=0;
|
|
|
|
n->neighbour_id=nid;
|
|
|
|
}
|
|
|
|
bzero(&overlay_neighbours[n->neighbour_id],sizeof(overlay_neighbour));
|
|
|
|
overlay_neighbours[n->neighbour_id].node=n;
|
2012-01-09 05:58:44 +00:00
|
|
|
|
2011-09-01 13:52:08 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-05 05:25:44 +00:00
|
|
|
overlay_neighbour *overlay_route_get_neighbour_structure(unsigned char *packed_sid,
|
2012-05-17 07:37:46 +00:00
|
|
|
int prefixLen,int createP)
|
2011-09-05 02:49:53 +00:00
|
|
|
{
|
2012-07-17 06:00:50 +00:00
|
|
|
IN();
|
2012-01-10 04:27:32 +00:00
|
|
|
if (overlay_address_is_local(packed_sid)) {
|
|
|
|
WHY("asked for neighbour structure for myself");
|
2012-07-17 06:00:50 +00:00
|
|
|
RETURN(NULL);
|
2012-04-13 19:04:45 +00:00
|
|
|
}
|
2012-01-10 04:27:32 +00:00
|
|
|
|
2012-05-17 07:37:46 +00:00
|
|
|
overlay_node *n=overlay_route_find_node(packed_sid,prefixLen,createP);
|
2012-07-03 08:07:03 +00:00
|
|
|
if (!n) {
|
|
|
|
// WHY("Could not find node record for observed node");
|
2012-07-17 06:00:50 +00:00
|
|
|
RETURN(NULL);
|
2012-07-03 08:07:03 +00:00
|
|
|
}
|
2011-09-05 02:49:53 +00:00
|
|
|
|
|
|
|
/* Check if node is already a neighbour, or if not, make it one */
|
2012-07-17 06:00:50 +00:00
|
|
|
if (!n->neighbour_id){
|
|
|
|
if (!createP)
|
|
|
|
RETURN(NULL);
|
|
|
|
|
|
|
|
if (overlay_route_make_neighbour(n)) {
|
|
|
|
WHY("overlay_route_make_neighbour() failed");
|
|
|
|
RETURN(NULL);
|
|
|
|
}
|
|
|
|
}
|
2011-09-05 02:49:53 +00:00
|
|
|
|
|
|
|
/* Get neighbour structure */
|
2012-07-17 06:00:50 +00:00
|
|
|
RETURN(&overlay_neighbours[n->neighbour_id]);
|
2011-09-05 02:49:53 +00:00
|
|
|
}
|
|
|
|
|
2012-04-29 02:26:47 +00:00
|
|
|
int overlay_route_i_can_hear_node(unsigned char *who,int sender_interface,
|
|
|
|
unsigned int s1,unsigned int s2,
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now)
|
2012-04-29 02:26:47 +00:00
|
|
|
{
|
2012-07-03 06:06:51 +00:00
|
|
|
if (0) DEBUGF("I can hear node %s (but I really only care who can hear me)",
|
2012-07-03 08:29:30 +00:00
|
|
|
alloca_tohex_sid(who));
|
2012-04-29 02:26:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int overlay_route_node_can_hear_me(unsigned char *who,int sender_interface,
|
|
|
|
unsigned int s1,unsigned int s2,
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now)
|
2011-09-01 13:52:08 +00:00
|
|
|
{
|
|
|
|
/* 1. Find (or create) node entry for the node.
|
|
|
|
2. Replace oldest observation with this observation.
|
|
|
|
3. Update score of how reliably we can hear this node */
|
|
|
|
|
|
|
|
/* Get neighbour structure */
|
2012-07-17 06:00:50 +00:00
|
|
|
overlay_neighbour *neh=overlay_route_get_neighbour_structure(who,SID_SIZE,1 /* create if necessary */);
|
|
|
|
if (!neh)
|
|
|
|
return -1;
|
|
|
|
|
2011-09-04 07:08:54 +00:00
|
|
|
int obs_index=neh->most_recent_observation_id;
|
2012-07-17 06:00:50 +00:00
|
|
|
int merge=0;
|
2011-09-04 07:08:54 +00:00
|
|
|
|
|
|
|
/* See if this observation is contiguous with a previous one, if so, merge.
|
|
|
|
This not only reduces the number of observation slots we need, but dramatically speeds up
|
|
|
|
the scanning of recent observations when re-calculating observation scores. */
|
2012-07-27 08:32:15 +00:00
|
|
|
while (neh->observations[obs_index].valid && neh->observations[obs_index].s2 >= s1 - 1) {
|
|
|
|
if (neh->observations[obs_index].sender_interface == sender_interface) {
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("merging observation into slot #%d s1=%u s2=%u", obs_index, neh->observations[obs_index].s1, neh->observations[obs_index].s2);
|
|
|
|
s1 = neh->observations[obs_index].s1;
|
|
|
|
merge=1;
|
|
|
|
break;
|
2011-09-04 07:08:54 +00:00
|
|
|
}
|
2012-07-27 08:32:15 +00:00
|
|
|
if (--obs_index < 0)
|
|
|
|
obs_index = OVERLAY_MAX_OBSERVATIONS - 1;
|
|
|
|
}
|
2012-07-17 06:00:50 +00:00
|
|
|
if (!merge) {
|
2011-09-04 07:08:54 +00:00
|
|
|
/* Replace oldest observation with this one */
|
2012-07-27 08:32:15 +00:00
|
|
|
obs_index = neh->most_recent_observation_id + 1;
|
|
|
|
if (obs_index >= OVERLAY_MAX_OBSERVATIONS)
|
|
|
|
obs_index = 0;
|
2011-09-04 07:08:54 +00:00
|
|
|
}
|
2012-07-17 06:00:50 +00:00
|
|
|
|
2012-07-27 08:32:15 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
2012-08-09 02:44:32 +00:00
|
|
|
DEBUGF("assign observation slot #%d: s1=%u s2=%u time_ms=%lld", obs_index, s1, s2, (long long)now);
|
2012-07-27 08:32:15 +00:00
|
|
|
neh->observations[obs_index].s1=s1;
|
2012-07-17 06:00:50 +00:00
|
|
|
neh->observations[obs_index].s2=s2;
|
|
|
|
neh->observations[obs_index].sender_interface=sender_interface;
|
|
|
|
neh->observations[obs_index].time_ms=now;
|
|
|
|
neh->observations[obs_index].valid=1;
|
|
|
|
|
2011-09-12 17:15:12 +00:00
|
|
|
neh->most_recent_observation_id=obs_index;
|
|
|
|
neh->last_observation_time_ms=now;
|
2012-04-22 10:46:24 +00:00
|
|
|
/* force updating of stats for neighbour if we have added an observation */
|
|
|
|
neh->last_metric_update=0;
|
2011-09-04 07:08:54 +00:00
|
|
|
|
2011-09-01 13:52:08 +00:00
|
|
|
/* Update reachability metrics for node */
|
2012-07-17 06:00:50 +00:00
|
|
|
if (overlay_route_recalc_neighbour_metrics(neh,now))
|
|
|
|
return -1;
|
2011-09-01 13:52:08 +00:00
|
|
|
|
2012-04-29 02:31:56 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTEMONITOR) overlay_route_dump();
|
2011-09-04 07:08:54 +00:00
|
|
|
return 0;
|
2011-09-01 13:14:30 +00:00
|
|
|
}
|
|
|
|
|
2012-08-09 02:44:32 +00:00
|
|
|
int overlay_route_saw_selfannounce(overlay_frame *f, time_ms_t now)
|
2011-08-17 01:22:17 +00:00
|
|
|
{
|
2012-07-17 06:00:50 +00:00
|
|
|
IN();
|
2011-09-01 13:14:30 +00:00
|
|
|
unsigned int s1,s2;
|
2011-09-01 13:52:08 +00:00
|
|
|
unsigned char sender_interface;
|
2012-05-17 07:37:46 +00:00
|
|
|
overlay_neighbour *n=overlay_route_get_neighbour_structure(f->source,SID_SIZE,
|
|
|
|
1 /* make neighbour if not yet one */);
|
2011-09-05 02:49:53 +00:00
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
if (!n){
|
|
|
|
RETURN(-1);
|
|
|
|
}
|
2011-09-05 02:49:53 +00:00
|
|
|
|
2011-09-12 19:22:52 +00:00
|
|
|
/* Record current sender for reference by addresses in subsequent frames in the
|
|
|
|
ensemble */
|
|
|
|
overlay_abbreviate_set_current_sender(f->source);
|
|
|
|
|
2012-07-18 05:24:23 +00:00
|
|
|
s1=ob_get_int(f->payload, 0);
|
|
|
|
s2=ob_get_int(f->payload, 4);
|
|
|
|
sender_interface=ob_getbyte(f->payload, 8);
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
2012-07-03 06:06:51 +00:00
|
|
|
DEBUGF("Received self-announcement for sequence range [%08x,%08x] from interface %d",s1,s2,sender_interface);
|
2011-09-01 13:14:30 +00:00
|
|
|
|
2012-07-02 03:49:54 +00:00
|
|
|
overlay_route_i_can_hear_node(f->source,sender_interface,s1,s2,now);
|
2011-09-01 13:52:08 +00:00
|
|
|
|
2012-04-29 03:40:54 +00:00
|
|
|
overlay_route_ack_selfannounce(f,s1,s2,sender_interface,n);
|
2011-08-20 09:36:15 +00:00
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
RETURN(0);
|
2011-09-01 13:14:30 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 17:49:54 +00:00
|
|
|
/* XXX Think about scheduling this node's score for readvertising? */
|
2012-08-09 02:44:32 +00:00
|
|
|
int overlay_route_recalc_node_metrics(overlay_node *n, time_ms_t now)
|
2011-09-04 07:08:54 +00:00
|
|
|
{
|
2011-09-12 17:24:03 +00:00
|
|
|
int o;
|
2011-09-12 17:49:54 +00:00
|
|
|
int best_score=0;
|
|
|
|
int best_observation=-1;
|
2011-09-12 17:24:03 +00:00
|
|
|
|
2012-07-27 05:28:10 +00:00
|
|
|
if (n->sid[0]==0)
|
|
|
|
return 0;
|
|
|
|
|
2011-09-12 17:24:03 +00:00
|
|
|
for(o=0;o<OVERLAY_MAX_OBSERVATIONS;o++)
|
|
|
|
{
|
|
|
|
if (n->observations[o].observed_score)
|
|
|
|
{
|
|
|
|
int discounted_score=n->observations[o].observed_score;
|
|
|
|
discounted_score-=(now-n->observations[o].rx_time)/1000;
|
|
|
|
if (discounted_score<0) discounted_score=0;
|
|
|
|
n->observations[o].corrected_score=discounted_score;
|
2011-09-12 17:49:54 +00:00
|
|
|
if (discounted_score>best_score) {
|
|
|
|
best_score=discounted_score;
|
|
|
|
best_observation=o;
|
|
|
|
}
|
2011-09-12 17:24:03 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-12 17:49:54 +00:00
|
|
|
|
2011-09-12 20:07:24 +00:00
|
|
|
if (n->neighbour_id)
|
|
|
|
{
|
|
|
|
/* Node is also a direct neighbour, so check score that way */
|
2012-01-09 05:58:44 +00:00
|
|
|
if (n->neighbour_id>overlay_max_neighbours||n->neighbour_id<0)
|
|
|
|
return WHY("n->neighbour_id is invalid.");
|
2011-09-12 20:07:24 +00:00
|
|
|
int i;
|
|
|
|
for(i=0;i<overlay_interface_count;i++)
|
2012-01-09 05:58:44 +00:00
|
|
|
{
|
2012-07-25 07:23:44 +00:00
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_UP &&
|
|
|
|
overlay_neighbours[n->neighbour_id].scores[i]>best_score)
|
2012-01-09 05:58:44 +00:00
|
|
|
{
|
|
|
|
best_score=overlay_neighbours[n->neighbour_id].scores[i];
|
|
|
|
best_observation=-1;
|
|
|
|
}
|
|
|
|
}
|
2011-09-12 20:07:24 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 18:03:45 +00:00
|
|
|
/* Think about scheduling this node's score for readvertising if its score
|
|
|
|
has changed a lot?
|
|
|
|
Really what we probably want is to advertise when the score goes up, since
|
|
|
|
if it goes down, we probably don't need to say anything at all.
|
|
|
|
*/
|
|
|
|
int diff=best_score-n->best_link_score;
|
2012-07-17 08:52:39 +00:00
|
|
|
if (diff>0) {
|
2012-01-10 05:59:50 +00:00
|
|
|
overlay_route_please_advertise(n);
|
|
|
|
if (debug&DEBUG_OVERLAYROUTEMONITOR) overlay_route_dump();
|
|
|
|
}
|
2011-09-12 18:03:45 +00:00
|
|
|
|
2012-07-17 08:52:39 +00:00
|
|
|
if (n->best_link_score && !best_score){
|
|
|
|
INFOF("PEER UNREACHABLE, sid=%s", alloca_tohex_sid(n->sid));
|
|
|
|
monitor_announce_unreachable_peer(n->sid);
|
|
|
|
}else if(best_score && !n->best_link_score){
|
|
|
|
INFOF("PEER REACHABLE, sid=%s", alloca_tohex_sid(n->sid));
|
|
|
|
/* Make sure node is advertised soon */
|
|
|
|
overlay_route_please_advertise(n);
|
|
|
|
monitor_announce_peer(n->sid);
|
2012-08-14 04:27:38 +00:00
|
|
|
|
|
|
|
/* Pre-emptively check if we have their sas in memory, or send a request */
|
|
|
|
keyring_find_sas_public(keyring, n->sid);
|
2012-07-17 08:52:39 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 17:49:54 +00:00
|
|
|
/* Remember new reachability information */
|
|
|
|
n->best_link_score=best_score;
|
|
|
|
n->best_observation=best_observation;
|
|
|
|
|
2011-09-12 17:24:03 +00:00
|
|
|
return 0;
|
2011-09-04 07:08:54 +00:00
|
|
|
}
|
|
|
|
|
2011-09-03 21:06:39 +00:00
|
|
|
/* Recalculate node reachability metric, but only for directly connected nodes,
|
|
|
|
i.e., link-local neighbours.
|
|
|
|
|
|
|
|
The scores should be calculated separately for each interface we can
|
|
|
|
hear the node on, so that this information can get back to the sender so that
|
|
|
|
they know the best interface to use when trying to talk to us.
|
|
|
|
|
|
|
|
For now we will calculate a weighted sum of recent reachability over some fixed
|
|
|
|
length time interval.
|
|
|
|
The sequence numbers are all based on a milli-second clock.
|
|
|
|
|
2012-04-14 14:51:21 +00:00
|
|
|
For mobile mesh networks we need this metric to be very fast adapting to new
|
|
|
|
paths, but to have a memory of older paths in case they are still useful.
|
|
|
|
|
|
|
|
We thus combined equally a measure of very recent reachability (in last 10
|
|
|
|
interface ticks perhaps?) with a measure of longer-term reachability (last
|
|
|
|
200 seconds perhaps?). Also, if no recent observations, then we further
|
|
|
|
limit the score.
|
2011-09-01 13:14:30 +00:00
|
|
|
*/
|
2012-08-09 02:44:32 +00:00
|
|
|
int overlay_route_recalc_neighbour_metrics(overlay_neighbour *n, time_ms_t now)
|
2011-08-29 06:50:27 +00:00
|
|
|
{
|
2011-09-01 13:14:30 +00:00
|
|
|
int i;
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t most_recent_observation=0;
|
2011-09-04 07:57:23 +00:00
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
if (!n->node)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("Updating neighbour metrics for %s", alloca_tohex_sid(n->node->sid));
|
|
|
|
|
2012-07-27 08:32:15 +00:00
|
|
|
/* At most one update per half second */
|
|
|
|
if (n->last_metric_update == 0) {
|
2012-07-17 06:00:50 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
2012-07-27 08:32:15 +00:00
|
|
|
DEBUG("last update was never");
|
|
|
|
} else {
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t ago = now - n->last_metric_update;
|
2012-07-27 08:32:15 +00:00
|
|
|
if (ago < 500) {
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
2012-08-09 02:44:32 +00:00
|
|
|
DEBUGF("last update was %lldms ago -- skipping", (long long)ago);
|
2012-07-27 08:32:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
2012-08-09 02:44:32 +00:00
|
|
|
DEBUGF("last update was %lldms ago", (long long)ago);
|
2012-04-29 02:26:47 +00:00
|
|
|
}
|
2012-07-27 08:32:15 +00:00
|
|
|
n->last_metric_update = now;
|
2012-04-22 10:46:24 +00:00
|
|
|
|
2011-09-03 21:18:41 +00:00
|
|
|
/* Somewhere to remember how many milliseconds we have seen */
|
2012-04-14 14:51:21 +00:00
|
|
|
int ms_observed_5sec[OVERLAY_MAX_INTERFACES];
|
|
|
|
int ms_observed_200sec[OVERLAY_MAX_INTERFACES];
|
|
|
|
for(i=0;i<OVERLAY_MAX_INTERFACES;i++) {
|
|
|
|
ms_observed_5sec[i]=0;
|
|
|
|
ms_observed_200sec[i]=0;
|
|
|
|
}
|
2011-09-03 21:18:41 +00:00
|
|
|
|
2011-09-04 07:08:54 +00:00
|
|
|
/* XXX This simple accumulation scheme does not weed out duplicates, nor weight for recency of
|
|
|
|
communication.
|
|
|
|
Also, we might like to take into account the interface we received
|
|
|
|
the announcements on. */
|
2012-04-29 02:26:47 +00:00
|
|
|
for(i=0;i<OVERLAY_MAX_OBSERVATIONS;i++) {
|
2012-07-25 07:23:44 +00:00
|
|
|
if (!n->observations[i].valid ||
|
|
|
|
n->observations[i].sender_interface>=OVERLAY_MAX_INTERFACES ||
|
|
|
|
overlay_interfaces[n->observations[i].sender_interface].state!=INTERFACE_STATE_UP)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Work out the interval covered by the observation.
|
|
|
|
The times are represented as lowest 32 bits of a 64-bit
|
|
|
|
millisecond clock. This introduces modulo problems,
|
|
|
|
however by using 32-bit modulo arithmatic here, we avoid
|
|
|
|
most of them. */
|
|
|
|
unsigned int interval=n->observations[i].s2-n->observations[i].s1;
|
|
|
|
|
|
|
|
/* Check the observation age, and ignore if too old */
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t obs_age = now - n->observations[i].time_ms;
|
2012-07-25 07:23:44 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
2012-07-31 06:51:29 +00:00
|
|
|
DEBUGF("tallying obs: %lldms old, %ums long", obs_age,interval);
|
2012-07-25 07:23:44 +00:00
|
|
|
|
|
|
|
/* Ignore very large intervals (>1hour) as being likely to be erroneous.
|
|
|
|
(or perhaps a clock wrap due to the modulo arithmatic)
|
|
|
|
|
|
|
|
One tick per hour should be well and truly slow enough to do
|
|
|
|
50KB per 12 hours, which is the minimum traffic charge rate
|
|
|
|
on an expensive BGAN satellite link.
|
|
|
|
*/
|
|
|
|
if (interval>=3600000 || obs_age>200000)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("adding %dms (interface %d '%s')",
|
|
|
|
interval,n->observations[i].sender_interface,
|
|
|
|
overlay_interfaces[n->observations[i].sender_interface].name);
|
2011-09-04 07:57:23 +00:00
|
|
|
|
2012-07-25 07:23:44 +00:00
|
|
|
ms_observed_200sec[n->observations[i].sender_interface]+=interval;
|
|
|
|
if (obs_age<=5000){
|
|
|
|
ms_observed_5sec[n->observations[i].sender_interface]+=(interval>5000?5000:interval);
|
2011-09-04 07:08:54 +00:00
|
|
|
}
|
2012-07-25 07:23:44 +00:00
|
|
|
|
|
|
|
if (n->observations[i].time_ms>most_recent_observation) most_recent_observation=n->observations[i].time_ms;
|
2012-04-29 02:26:47 +00:00
|
|
|
}
|
2011-09-03 21:18:41 +00:00
|
|
|
|
2011-09-04 07:08:54 +00:00
|
|
|
/* From the sum of observations calculate the metrics.
|
|
|
|
We want the score to climb quickly and then plateu.
|
2012-04-14 14:53:54 +00:00
|
|
|
*/
|
2012-07-17 08:52:39 +00:00
|
|
|
|
|
|
|
int scoreChanged=0;
|
|
|
|
|
2011-09-04 07:08:54 +00:00
|
|
|
for(i=0;i<OVERLAY_MAX_INTERFACES;i++) {
|
|
|
|
int score;
|
2012-04-14 14:51:21 +00:00
|
|
|
if (ms_observed_200sec[i]>200000) ms_observed_200sec[i]=200000;
|
|
|
|
if (ms_observed_5sec[i]>5000) ms_observed_5sec[i]=5000;
|
|
|
|
if (ms_observed_200sec[i]==0) {
|
2011-09-04 07:08:54 +00:00
|
|
|
// Not observed at all
|
|
|
|
score=0;
|
|
|
|
} else {
|
2012-04-14 14:51:21 +00:00
|
|
|
int contrib_200=ms_observed_200sec[i]/(200000/128);
|
|
|
|
int contrib_5=ms_observed_5sec[i]/(5000/128);
|
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
if (contrib_5<1)
|
|
|
|
score=contrib_200/2;
|
|
|
|
else
|
|
|
|
score=contrib_5+contrib_200;
|
2012-04-14 14:51:21 +00:00
|
|
|
|
2011-09-05 02:49:53 +00:00
|
|
|
/* Deal with invalid sequence number ranges */
|
2012-07-17 06:00:50 +00:00
|
|
|
if (score<1) score=1;
|
|
|
|
if (score>255) score=255;
|
2011-09-04 07:08:54 +00:00
|
|
|
}
|
2011-09-01 13:14:30 +00:00
|
|
|
|
2012-07-17 08:52:39 +00:00
|
|
|
if (n->scores[i]!=score){
|
|
|
|
scoreChanged=1;
|
|
|
|
n->scores[i]=score;
|
|
|
|
}
|
2012-07-17 06:00:50 +00:00
|
|
|
if ((debug&DEBUG_OVERLAYROUTING)&&score)
|
|
|
|
DEBUGF("Neighbour score on interface #%d = %d (observations for %dms)",i,score,ms_observed_200sec[i]);
|
2011-09-04 07:08:54 +00:00
|
|
|
}
|
2012-07-17 08:52:39 +00:00
|
|
|
if (scoreChanged)
|
|
|
|
overlay_route_recalc_node_metrics(n->node, now);
|
2011-09-04 07:08:54 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2011-08-17 01:22:17 +00:00
|
|
|
}
|
|
|
|
|
2011-09-11 07:51:09 +00:00
|
|
|
/*
|
|
|
|
Self-announcement acks bounce back to the self-announcer from immediate neighbours
|
|
|
|
who report the link score they have calculated based on listening to self-announces
|
|
|
|
from that peer. By acking them these scores then get to the originator, who then
|
|
|
|
has a score for the link to their neighbour, which is measuring the correct
|
|
|
|
direction of the link.
|
|
|
|
|
2011-09-11 10:39:47 +00:00
|
|
|
Frames consist of 32bit timestamp in seconds followed by zero or more entries
|
2011-09-11 07:51:09 +00:00
|
|
|
of the format:
|
|
|
|
|
|
|
|
8bits - link score
|
|
|
|
8bits - interface number
|
|
|
|
|
|
|
|
this is followed by a 00 byte to indicate the end.
|
|
|
|
|
|
|
|
That way we don't waste lots of bytes on single-interface nodes.
|
|
|
|
(But I am sure we can do better).
|
|
|
|
|
|
|
|
These link scores should get stored in our node list as compared to our neighbour list,
|
|
|
|
with the node itself listed as the nexthop that the score is associated with.
|
|
|
|
*/
|
2012-07-02 03:49:54 +00:00
|
|
|
int overlay_route_saw_selfannounce_ack(overlay_frame *f,long long now)
|
2011-08-17 01:22:17 +00:00
|
|
|
{
|
2012-07-17 06:00:50 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("processing selfannounce ack (payload length=%d)",f->payload->length);
|
|
|
|
|
2012-04-29 02:26:47 +00:00
|
|
|
if (!overlay_neighbours) {
|
2012-07-17 06:00:50 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUG("no neighbours, so returning immediately");
|
2012-04-29 02:26:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-09-11 07:51:09 +00:00
|
|
|
|
2012-04-29 03:40:54 +00:00
|
|
|
if (f->payload->length<9)
|
|
|
|
return WHY("FOO! selfannounce ack packet too short");
|
2011-09-11 07:51:09 +00:00
|
|
|
|
2012-04-29 02:26:47 +00:00
|
|
|
unsigned int s1=ob_get_int(f->payload,0);
|
|
|
|
unsigned int s2=ob_get_int(f->payload,4);
|
2012-07-18 05:24:23 +00:00
|
|
|
int iface=ob_getbyte(f->payload,8);
|
2011-09-11 07:51:09 +00:00
|
|
|
|
2012-04-29 03:40:54 +00:00
|
|
|
// Call something like the following for each link
|
2012-07-17 06:00:50 +00:00
|
|
|
overlay_route_node_can_hear_me(f->source,iface,s1,s2,now);
|
|
|
|
|
2011-09-11 07:51:09 +00:00
|
|
|
return 0;
|
2011-08-17 01:22:17 +00:00
|
|
|
}
|
2011-09-11 10:39:47 +00:00
|
|
|
|
2012-04-29 02:26:47 +00:00
|
|
|
/* if to and via are the same, then this is evidence that we can get to the
|
|
|
|
node directly. */
|
2012-08-09 02:44:32 +00:00
|
|
|
int overlay_route_record_link(time_ms_t now, unsigned char *to,
|
2012-04-29 02:26:47 +00:00
|
|
|
unsigned char *via,int sender_interface,
|
|
|
|
unsigned int s1,unsigned int s2,int score,
|
|
|
|
int gateways_en_route)
|
2011-09-11 10:39:47 +00:00
|
|
|
{
|
2012-07-04 02:33:27 +00:00
|
|
|
if (debug & DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("to=%s, via=%s, sender_interface=%d, s1=%d, s2=%d score=%d gateways_en_route=%d",
|
|
|
|
alloca_tohex_sid(to), alloca_tohex_sid(via), sender_interface, s1, s2,
|
|
|
|
score, gateways_en_route
|
|
|
|
);
|
2012-04-29 03:40:54 +00:00
|
|
|
|
2012-07-17 06:00:50 +00:00
|
|
|
if (sender_interface>OVERLAY_MAX_INTERFACES || score == 0) {
|
2012-07-04 02:33:27 +00:00
|
|
|
if (debug & DEBUG_OVERLAYROUTING)
|
2012-07-17 06:00:50 +00:00
|
|
|
DEBUG("invalid report");
|
2012-01-10 09:57:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-04 02:33:27 +00:00
|
|
|
overlay_node *n = overlay_route_find_node(to, SID_SIZE, 1 /* create node if missing */);
|
|
|
|
if (!n)
|
|
|
|
return WHY("Could not create entry for node");
|
|
|
|
int slot = -1;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < OVERLAY_MAX_OBSERVATIONS; ++i) {
|
|
|
|
/* Take note of where we can find space for a fresh observation */
|
|
|
|
if (slot == -1 && n->observations[i].observed_score == 0)
|
|
|
|
slot = i;
|
|
|
|
/* If the intermediate host ("via") address and interface numbers match, then overwrite old
|
|
|
|
observation with new one */
|
|
|
|
if (memcmp(via, n->observations[i].sender_prefix, OVERLAY_SENDER_PREFIX_LENGTH) == 0) {
|
|
|
|
slot = i;
|
|
|
|
break;
|
2011-09-11 10:39:47 +00:00
|
|
|
}
|
2012-07-04 02:33:27 +00:00
|
|
|
}
|
2011-09-11 10:39:47 +00:00
|
|
|
/* If in doubt, replace a random slot.
|
2012-07-04 02:33:27 +00:00
|
|
|
XXX - we should probably replace the lowest scoring slot instead, but random will work well
|
|
|
|
enough for now. */
|
|
|
|
if (slot == -1) {
|
|
|
|
slot = random() % OVERLAY_MAX_OBSERVATIONS;
|
|
|
|
if (debug & DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("allocate observation slot=%d", slot);
|
|
|
|
} else {
|
|
|
|
if (debug & DEBUG_OVERLAYROUTING)
|
|
|
|
DEBUGF("overwrite observation slot=%d (sender_prefix=%s interface=%u observed_score=%u rx_time=%lld)",
|
|
|
|
slot,
|
|
|
|
alloca_tohex(n->observations[slot].sender_prefix, OVERLAY_SENDER_PREFIX_LENGTH),
|
|
|
|
n->observations[slot].interface,
|
|
|
|
n->observations[slot].observed_score,
|
|
|
|
n->observations[slot].rx_time
|
|
|
|
);
|
|
|
|
}
|
2011-09-11 10:39:47 +00:00
|
|
|
|
2011-09-12 17:15:12 +00:00
|
|
|
n->observations[slot].observed_score=0;
|
2011-09-11 10:39:47 +00:00
|
|
|
n->observations[slot].gateways_en_route=gateways_en_route;
|
|
|
|
n->observations[slot].rx_time=now;
|
|
|
|
bcopy(via,n->observations[slot].sender_prefix,OVERLAY_SENDER_PREFIX_LENGTH);
|
2011-09-12 17:15:12 +00:00
|
|
|
n->observations[slot].observed_score=score;
|
2012-04-29 02:26:47 +00:00
|
|
|
n->observations[slot].interface=sender_interface;
|
2011-09-11 10:39:47 +00:00
|
|
|
|
|
|
|
/* Remember that we have seen an observation for this node.
|
|
|
|
XXX - This should actually be set to the time that the last first-hand
|
|
|
|
observation of the node was made, so that stale information doesn't build
|
|
|
|
false belief of reachability.
|
|
|
|
This is why the timestamp field is supplied, which is just copied from the
|
|
|
|
original selfannouncement ack. We just have to register it against our
|
|
|
|
local time to interpret it (XXX which comes with some risks related to
|
|
|
|
clock-skew, but we will deal with those in due course).
|
|
|
|
*/
|
|
|
|
n->last_observation_time_ms=now;
|
2012-04-29 02:26:47 +00:00
|
|
|
if (s2>n->last_first_hand_observation_time_millisec)
|
|
|
|
n->last_first_hand_observation_time_millisec=s2;
|
2011-09-11 10:39:47 +00:00
|
|
|
|
2011-09-12 20:12:32 +00:00
|
|
|
overlay_route_recalc_node_metrics(n,now);
|
2011-09-11 10:39:47 +00:00
|
|
|
|
2012-07-04 02:33:27 +00:00
|
|
|
if (debug & DEBUG_OVERLAYROUTEMONITOR)
|
|
|
|
overlay_route_dump();
|
2012-01-10 09:57:36 +00:00
|
|
|
|
2011-09-12 20:12:32 +00:00
|
|
|
return 0;
|
2011-09-11 10:39:47 +00:00
|
|
|
}
|
2011-09-12 14:19:55 +00:00
|
|
|
|
2012-01-08 23:25:21 +00:00
|
|
|
int overlay_address_is_local(unsigned char *s)
|
2012-04-12 23:55:03 +00:00
|
|
|
{
|
|
|
|
int cn=0,in=0,kp=0;
|
|
|
|
int found=keyring_find_sid(keyring,&cn,&in,&kp,s);
|
2012-01-08 23:25:21 +00:00
|
|
|
|
2012-04-12 23:55:03 +00:00
|
|
|
return found;
|
2012-01-08 23:25:21 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 17:15:12 +00:00
|
|
|
int overlay_route_dump()
|
2011-09-12 14:43:38 +00:00
|
|
|
{
|
2011-09-12 17:15:12 +00:00
|
|
|
int bin,slot,o,n,i;
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf b = strbuf_alloca(8192);
|
2011-09-12 14:43:38 +00:00
|
|
|
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b,"Overlay Local Identities\n------------------------\n");
|
2012-04-12 23:55:03 +00:00
|
|
|
int cn,in,kp;
|
|
|
|
for(cn=0;cn<keyring->context_count;cn++)
|
|
|
|
for(in=0;in<keyring->contexts[cn]->identity_count;in++)
|
|
|
|
for(kp=0;kp<keyring->contexts[cn]->identities[in]->keypair_count;kp++)
|
|
|
|
if (keyring->contexts[cn]->identities[in]->keypairs[kp]->type
|
|
|
|
==KEYTYPE_CRYPTOBOX)
|
|
|
|
{
|
|
|
|
for(i=0;i<SID_SIZE;i++)
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b,"%02x",keyring->contexts[cn]->identities[in]
|
2012-04-12 23:55:03 +00:00
|
|
|
->keypairs[kp]->public_key[i]);
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b,"\n");
|
2012-04-12 23:55:03 +00:00
|
|
|
}
|
2012-07-03 06:06:51 +00:00
|
|
|
DEBUG(strbuf_str(b));
|
2012-01-08 23:25:21 +00:00
|
|
|
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_reset(b);
|
|
|
|
strbuf_sprintf(b,"\nOverlay Neighbour Table\n------------------------\n");
|
2011-09-12 17:15:12 +00:00
|
|
|
for(n=0;n<overlay_neighbour_count;n++)
|
|
|
|
if (overlay_neighbours[n].node)
|
|
|
|
{
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b," %s* : %lldms ago :",
|
2012-07-04 01:00:46 +00:00
|
|
|
alloca_tohex(overlay_neighbours[n].node->sid, 7),
|
2012-08-09 02:44:32 +00:00
|
|
|
(long long)(now - overlay_neighbours[n].last_observation_time_ms));
|
2011-09-12 17:15:12 +00:00
|
|
|
for(i=0;i<OVERLAY_MAX_INTERFACES;i++)
|
|
|
|
if (overlay_neighbours[n].scores[i])
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b," %d(via #%d)",
|
2011-09-12 17:15:12 +00:00
|
|
|
overlay_neighbours[n].scores[i],i);
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b,"\n");
|
2011-09-12 17:15:12 +00:00
|
|
|
}
|
2012-07-03 06:06:51 +00:00
|
|
|
DEBUG(strbuf_str(b));
|
2011-09-12 14:19:55 +00:00
|
|
|
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_reset(b);
|
|
|
|
strbuf_sprintf(b,"Overlay Mesh Route Table\n------------------------\n");
|
2011-09-12 14:19:55 +00:00
|
|
|
for(bin=0;bin<overlay_bin_count;bin++)
|
|
|
|
for(slot=0;slot<overlay_bin_size;slot++)
|
|
|
|
{
|
|
|
|
if (!overlay_nodes[bin][slot].sid[0]) continue;
|
|
|
|
|
2012-07-04 01:00:46 +00:00
|
|
|
strbuf_sprintf(b," %s* : %d :", alloca_tohex(overlay_nodes[bin][slot].sid, 7),
|
2011-09-12 20:07:24 +00:00
|
|
|
overlay_nodes[bin][slot].best_link_score);
|
2011-09-12 14:19:55 +00:00
|
|
|
for(o=0;o<OVERLAY_MAX_OBSERVATIONS;o++)
|
|
|
|
{
|
2011-09-12 17:15:12 +00:00
|
|
|
if (overlay_nodes[bin][slot].observations[o].observed_score)
|
2011-09-12 14:19:55 +00:00
|
|
|
{
|
|
|
|
overlay_node_observation *ob=&overlay_nodes[bin][slot].observations[o];
|
2011-09-12 17:15:12 +00:00
|
|
|
if (ob->corrected_score)
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b," %d/%d via %s*",
|
2011-09-12 17:15:12 +00:00
|
|
|
ob->corrected_score,ob->gateways_en_route,
|
2012-07-04 01:00:46 +00:00
|
|
|
alloca_tohex(ob->sender_prefix, 7));
|
2011-09-12 14:19:55 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-03 06:06:51 +00:00
|
|
|
strbuf_sprintf(b,"\n");
|
2011-09-12 14:19:55 +00:00
|
|
|
}
|
2012-07-03 06:06:51 +00:00
|
|
|
DEBUG(strbuf_str(b));
|
2011-09-12 14:19:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-09-12 15:32:58 +00:00
|
|
|
|
|
|
|
int max(int a,int b)
|
|
|
|
{
|
|
|
|
if (a>b) return a; else return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
We want to progressivelly update all routes as we go along, updating a few nodes
|
|
|
|
every call, so that no one call takes too long. This is important since we don't
|
|
|
|
want to add any excessive delays that might upset delay-sensitive voice and video
|
|
|
|
traffic.
|
|
|
|
*/
|
|
|
|
int overlay_route_tick_next_neighbour_id=0;
|
|
|
|
int overlay_route_tick_neighbour_bundle_size=1;
|
|
|
|
int overlay_route_tick_next_node_bin_id=0;
|
|
|
|
int overlay_route_tick_node_bundle_size=1;
|
2012-07-02 03:49:54 +00:00
|
|
|
void overlay_route_tick(struct sched_ent *alarm)
|
2011-09-12 15:32:58 +00:00
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t start_time = gettime_ms();
|
2011-09-12 15:32:58 +00:00
|
|
|
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING)
|
2012-07-03 06:06:51 +00:00
|
|
|
DEBUGF("Neighbours: %d@%d, Nodes: %d@%d",
|
2011-09-12 15:32:58 +00:00
|
|
|
overlay_route_tick_neighbour_bundle_size,overlay_route_tick_next_neighbour_id,
|
|
|
|
overlay_route_tick_node_bundle_size,overlay_route_tick_next_node_bin_id);
|
|
|
|
|
|
|
|
/* Go through some of neighbour list */
|
2012-07-17 06:00:50 +00:00
|
|
|
|
|
|
|
// TODO This doesn't seem to be reliable
|
|
|
|
// note that neighbour metrics are now re-calculated in overlay_get_nexthop when we need them
|
2011-09-12 15:32:58 +00:00
|
|
|
n=overlay_route_tick_neighbour_bundle_size;
|
|
|
|
if (n<1) n=1;
|
|
|
|
while(n--)
|
|
|
|
{
|
2011-09-12 15:44:09 +00:00
|
|
|
overlay_route_tick_neighbour(overlay_route_tick_next_neighbour_id++,start_time);
|
|
|
|
if (overlay_route_tick_next_neighbour_id>=overlay_neighbour_count) overlay_route_tick_next_neighbour_id=0;
|
2011-09-12 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
2012-03-21 21:56:19 +00:00
|
|
|
/* Tweak neighbour bundle size to spread it out over the required time.
|
|
|
|
XXX Does this behave correctly when there are no neighbours? */
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t neighbour_time = gettime_ms() - start_time;
|
2011-09-12 15:32:58 +00:00
|
|
|
if (neighbour_time>2) overlay_route_tick_neighbour_bundle_size/=neighbour_time;
|
|
|
|
else if (neighbour_time==0) overlay_route_tick_neighbour_bundle_size*=2;
|
|
|
|
if (overlay_route_tick_neighbour_bundle_size<1) overlay_route_tick_neighbour_bundle_size=1;
|
2012-04-22 10:46:24 +00:00
|
|
|
if (overlay_route_tick_neighbour_bundle_size>overlay_neighbour_count)
|
|
|
|
overlay_route_tick_neighbour_bundle_size=overlay_neighbour_count;
|
2011-09-12 15:32:58 +00:00
|
|
|
|
|
|
|
/* Go through some of node list */
|
|
|
|
n=overlay_route_tick_node_bundle_size;
|
|
|
|
if (n<1) n=1;
|
|
|
|
while(n--)
|
|
|
|
{
|
|
|
|
int slot;
|
2012-01-09 05:58:44 +00:00
|
|
|
for(slot=0;slot<overlay_bin_size;slot++) {
|
2011-09-12 15:44:09 +00:00
|
|
|
overlay_route_tick_node(overlay_route_tick_next_node_bin_id,slot,start_time);
|
2012-01-09 05:58:44 +00:00
|
|
|
}
|
2011-09-12 15:32:58 +00:00
|
|
|
overlay_route_tick_next_node_bin_id++;
|
|
|
|
if (overlay_route_tick_next_node_bin_id>=overlay_bin_count) overlay_route_tick_next_node_bin_id=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tweak neighbour bundle size to spread it out over the required time.
|
|
|
|
Allow 2ms here instead of 1ms, as neighbour processing may have taken the
|
|
|
|
bulk of the tick. */
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t node_time = gettime_ms() - neighbour_time - start_time;
|
2012-04-22 10:46:24 +00:00
|
|
|
if (node_time>1) overlay_route_tick_node_bundle_size/=node_time;
|
2011-09-12 15:32:58 +00:00
|
|
|
else if (node_time==0) overlay_route_tick_node_bundle_size*=2;
|
|
|
|
if (overlay_route_tick_node_bundle_size<1) overlay_route_tick_node_bundle_size=1;
|
|
|
|
|
|
|
|
/* Limit bundle sizes to sanity */
|
2011-09-12 15:44:09 +00:00
|
|
|
if (overlay_route_tick_neighbour_bundle_size>overlay_neighbour_count
|
|
|
|
&&overlay_neighbour_count)
|
|
|
|
overlay_route_tick_neighbour_bundle_size=overlay_neighbour_count;
|
2011-09-12 15:32:58 +00:00
|
|
|
if (overlay_route_tick_node_bundle_size>overlay_bin_count)
|
|
|
|
overlay_route_tick_node_bundle_size=overlay_bin_count;
|
|
|
|
|
|
|
|
/* Work out how long to have between route ticks to make sure we update all route scores
|
|
|
|
every 5 seconds. */
|
2012-04-22 10:46:24 +00:00
|
|
|
int ticks=max(overlay_neighbour_count
|
|
|
|
?overlay_neighbour_count/overlay_route_tick_neighbour_bundle_size:0,
|
2011-09-12 15:32:58 +00:00
|
|
|
overlay_bin_count/overlay_route_tick_node_bundle_size);
|
|
|
|
if (ticks<1) ticks=1;
|
|
|
|
if (ticks>5000) ticks=5000;
|
|
|
|
int interval=5000/ticks;
|
|
|
|
|
2012-07-03 06:06:51 +00:00
|
|
|
if (debug&DEBUG_OVERLAYROUTING) DEBUGF("route tick interval = %dms (%d ticks per 5sec, neigh=%lldms, node=%lldms)",interval,ticks,neighbour_time,node_time);
|
2012-06-22 03:55:41 +00:00
|
|
|
|
|
|
|
/* Update callback interval based on how much work we have to do */
|
2012-07-30 07:52:38 +00:00
|
|
|
alarm->alarm = gettime_ms()+interval;
|
2012-07-12 00:45:16 +00:00
|
|
|
alarm->deadline = alarm->alarm+100;
|
2012-07-02 03:49:54 +00:00
|
|
|
schedule(alarm);
|
2012-06-22 03:55:41 +00:00
|
|
|
return;
|
2011-09-12 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 17:15:12 +00:00
|
|
|
/* Ticking neighbours is easy; we just pretend we have heard from them again,
|
|
|
|
and recalculate the score that way, which already includes a mechanism for
|
|
|
|
taking into account the age of the most recent observation */
|
2012-08-09 02:44:32 +00:00
|
|
|
int overlay_route_tick_neighbour(int neighbour_id, time_ms_t now)
|
2011-09-12 15:32:58 +00:00
|
|
|
{
|
2012-07-17 06:00:50 +00:00
|
|
|
if (neighbour_id>0)
|
|
|
|
if (overlay_route_recalc_neighbour_metrics(&overlay_neighbours[neighbour_id],now))
|
|
|
|
WHY("overlay_route_recalc_neighbour_metrics() failed");
|
2011-09-12 15:44:09 +00:00
|
|
|
|
2011-09-12 15:32:58 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-12 17:15:12 +00:00
|
|
|
/* Updating the route score to get to a node it trickier, as they might not be a
|
|
|
|
neighbour. Even if they are a neighbour, all we have to go on is the node's
|
|
|
|
observations.
|
|
|
|
From these we can work out a discounted score based on their age.
|
|
|
|
|
|
|
|
XXX This is where the discounting should be modified for nodes that are
|
|
|
|
updated less often as they exhibit score stability. Actually, for the
|
|
|
|
most part we can tolerate these without any special action, as their high
|
|
|
|
scores will keep them reachable for longer anyway.
|
|
|
|
*/
|
2012-08-09 02:44:32 +00:00
|
|
|
int overlay_route_tick_node(int bin,int slot, time_ms_t now)
|
2011-09-12 15:32:58 +00:00
|
|
|
{
|
2011-09-12 17:24:03 +00:00
|
|
|
return overlay_route_recalc_node_metrics(&overlay_nodes[bin][slot],now);
|
2011-09-12 15:32:58 +00:00
|
|
|
}
|
2011-09-12 17:24:03 +00:00
|
|
|
|
2012-04-25 21:44:01 +00:00
|
|
|
int overlay_route_node_info(overlay_mdp_frame *mdp,
|
|
|
|
struct sockaddr_un *addr,int addrlen)
|
|
|
|
{
|
|
|
|
int bin,slot,n;
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
2012-04-25 21:44:01 +00:00
|
|
|
|
2012-04-29 20:31:34 +00:00
|
|
|
if (0)
|
2012-07-03 06:06:51 +00:00
|
|
|
DEBUGF("Looking for node %s* (prefix len=0x%x)",
|
2012-07-04 01:00:46 +00:00
|
|
|
alloca_tohex(mdp->nodeinfo.sid, mdp->nodeinfo.sid_prefix_length),
|
2012-04-29 20:31:34 +00:00
|
|
|
mdp->nodeinfo.sid_prefix_length
|
|
|
|
);
|
2012-04-26 06:18:33 +00:00
|
|
|
|
2012-05-25 00:25:56 +00:00
|
|
|
mdp->nodeinfo.foundP=0;
|
|
|
|
|
2012-04-25 21:44:01 +00:00
|
|
|
/* check if it is a local identity */
|
|
|
|
int cn,in,kp;
|
|
|
|
for(cn=0;cn<keyring->context_count;cn++)
|
|
|
|
for(in=0;in<keyring->contexts[cn]->identity_count;in++)
|
|
|
|
for(kp=0;kp<keyring->contexts[cn]->identities[in]->keypair_count;kp++)
|
|
|
|
if (keyring->contexts[cn]->identities[in]->keypairs[kp]->type
|
|
|
|
==KEYTYPE_CRYPTOBOX)
|
|
|
|
{
|
2012-04-26 06:43:04 +00:00
|
|
|
if (!memcmp(&mdp->nodeinfo.sid[0],
|
|
|
|
&keyring->contexts[cn]->identities[in]
|
|
|
|
->keypairs[kp]->public_key[0],
|
|
|
|
mdp->nodeinfo.sid_prefix_length/2))
|
2012-04-25 21:44:01 +00:00
|
|
|
{
|
|
|
|
if (mdp->nodeinfo.count==mdp->nodeinfo.index)
|
|
|
|
{
|
|
|
|
mdp->nodeinfo.foundP=1;
|
|
|
|
mdp->nodeinfo.localP=1;
|
|
|
|
mdp->nodeinfo.neighbourP=0;
|
2012-08-09 02:44:32 +00:00
|
|
|
mdp->nodeinfo.time_since_last_observation = 0;
|
2012-04-25 21:44:01 +00:00
|
|
|
mdp->nodeinfo.score=256;
|
|
|
|
mdp->nodeinfo.interface_number=-1;
|
|
|
|
bcopy(&keyring->contexts[cn]->identities[in]
|
|
|
|
->keypairs[kp]->public_key[0],
|
|
|
|
&mdp->nodeinfo.sid[0],SID_SIZE);
|
|
|
|
|
|
|
|
mdp->nodeinfo.did[0]=0;
|
|
|
|
if (mdp->nodeinfo.resolve_did) {
|
|
|
|
mdp->nodeinfo.resolve_did=0;
|
|
|
|
int k2;
|
|
|
|
for(k2=0;k2<keyring->contexts[cn]->identities[in]
|
|
|
|
->keypair_count;k2++)
|
|
|
|
if (keyring->contexts[cn]->identities[in]->keypairs[k2]->type
|
|
|
|
==KEYTYPE_DID)
|
|
|
|
{
|
2012-04-26 06:18:33 +00:00
|
|
|
/* private key field has unpacked did */
|
|
|
|
bcopy(&keyring->contexts[cn]->identities[in]
|
|
|
|
->keypairs[k2]->private_key[0],
|
|
|
|
&mdp->nodeinfo.did[0],
|
|
|
|
keyring->contexts[cn]->identities[in]
|
|
|
|
->keypairs[k2]->private_key_len);
|
2012-05-01 05:08:09 +00:00
|
|
|
/* public key has name */
|
|
|
|
bcopy(&keyring->contexts[cn]->identities[in]
|
|
|
|
->keypairs[k2]->public_key[0],
|
|
|
|
&mdp->nodeinfo.name[0],
|
|
|
|
keyring->contexts[cn]->identities[in]
|
|
|
|
->keypairs[k2]->public_key_len);
|
2012-04-25 21:44:01 +00:00
|
|
|
mdp->nodeinfo.resolve_did=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mdp->nodeinfo.count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check neighbour table, i.e., if directly connected */
|
|
|
|
for(n=0;n<overlay_neighbour_count;n++)
|
|
|
|
if (overlay_neighbours[n].node)
|
|
|
|
{
|
2012-04-26 06:43:04 +00:00
|
|
|
if (!memcmp(&mdp->nodeinfo.sid[0],
|
|
|
|
&overlay_neighbours[n].node->sid[0],
|
|
|
|
mdp->nodeinfo.sid_prefix_length/2))
|
2012-04-25 21:44:01 +00:00
|
|
|
{
|
|
|
|
if (mdp->nodeinfo.count==mdp->nodeinfo.index)
|
|
|
|
{
|
|
|
|
mdp->nodeinfo.foundP=1;
|
|
|
|
mdp->nodeinfo.localP=0;
|
|
|
|
mdp->nodeinfo.neighbourP=1;
|
2012-08-09 02:44:32 +00:00
|
|
|
mdp->nodeinfo.time_since_last_observation = gettime_ms() - overlay_neighbours[n].last_observation_time_ms;
|
2012-04-25 21:44:01 +00:00
|
|
|
mdp->nodeinfo.score=-1;
|
|
|
|
mdp->nodeinfo.interface_number=-1;
|
2012-04-30 05:42:31 +00:00
|
|
|
mdp->nodeinfo.resolve_did=0;
|
2012-04-25 21:44:01 +00:00
|
|
|
int i;
|
|
|
|
for(i=0;i<OVERLAY_MAX_INTERFACES;i++)
|
|
|
|
if (overlay_neighbours[n].scores[i]>mdp->nodeinfo.score)
|
|
|
|
{
|
|
|
|
mdp->nodeinfo.score=overlay_neighbours[n].scores[i];
|
|
|
|
mdp->nodeinfo.interface_number=i;
|
|
|
|
}
|
|
|
|
|
|
|
|
bcopy(&overlay_neighbours[n].node->sid[0],
|
|
|
|
&mdp->nodeinfo.sid[0],SID_SIZE);
|
|
|
|
}
|
|
|
|
mdp->nodeinfo.count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check if it is an indirectly connected node that we know about */
|
|
|
|
for(bin=0;bin<overlay_bin_count;bin++)
|
|
|
|
for(slot=0;slot<overlay_bin_size;slot++)
|
|
|
|
{
|
|
|
|
if (!overlay_nodes[bin][slot].sid[0]) continue;
|
|
|
|
|
2012-04-26 06:43:04 +00:00
|
|
|
if (!memcmp(&mdp->nodeinfo.sid[0],
|
|
|
|
&overlay_nodes[bin][slot].sid[0],
|
|
|
|
mdp->nodeinfo.sid_prefix_length/2))
|
2012-04-25 21:44:01 +00:00
|
|
|
{
|
|
|
|
if (mdp->nodeinfo.count==mdp->nodeinfo.index)
|
|
|
|
{
|
|
|
|
mdp->nodeinfo.foundP=1;
|
|
|
|
mdp->nodeinfo.localP=0;
|
|
|
|
mdp->nodeinfo.neighbourP=0;
|
2012-08-09 02:44:32 +00:00
|
|
|
mdp->nodeinfo.time_since_last_observation = gettime_ms();
|
2012-04-25 21:44:01 +00:00
|
|
|
mdp->nodeinfo.score=-1;
|
|
|
|
mdp->nodeinfo.interface_number=-1;
|
2012-04-30 05:42:31 +00:00
|
|
|
mdp->nodeinfo.resolve_did=0;
|
2012-04-25 21:44:01 +00:00
|
|
|
int o;
|
|
|
|
for(o=0;o<OVERLAY_MAX_OBSERVATIONS;o++)
|
|
|
|
if (overlay_nodes[bin][slot].observations[o].observed_score)
|
|
|
|
{
|
|
|
|
overlay_node_observation *ob
|
|
|
|
=&overlay_nodes[bin][slot].observations[o];
|
|
|
|
if (ob->corrected_score>mdp->nodeinfo.score) {
|
|
|
|
mdp->nodeinfo.score=ob->corrected_score;
|
|
|
|
}
|
2012-08-09 02:44:32 +00:00
|
|
|
if (now - ob->rx_time < mdp->nodeinfo.time_since_last_observation)
|
|
|
|
mdp->nodeinfo.time_since_last_observation = now - ob->rx_time;
|
2012-04-25 21:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bcopy(&overlay_nodes[bin][slot].sid[0],
|
|
|
|
&mdp->nodeinfo.sid[0],SID_SIZE);
|
|
|
|
}
|
|
|
|
mdp->nodeinfo.count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-02 03:49:54 +00:00
|
|
|
return overlay_mdp_reply(mdp_named.poll.fd,addr,addrlen,mdp);
|
2012-04-25 21:44:01 +00:00
|
|
|
}
|