mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-19 13:17:56 +00:00
7b520e7a49
some debug tweaking etc.
417 lines
13 KiB
C
417 lines
13 KiB
C
/*
|
|
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.
|
|
*/
|
|
|
|
#include "serval.h"
|
|
|
|
int overlay_payload_verify(overlay_frame *p)
|
|
{
|
|
/* Make sure that an incoming payload has a valid signature from the sender.
|
|
This is used to prevent spoofing */
|
|
|
|
return WHY("function not implemented");
|
|
}
|
|
|
|
int op_append_type(overlay_buffer *headers,overlay_frame *p)
|
|
{
|
|
unsigned char c[3];
|
|
switch(p->type&OF_TYPE_FLAG_BITS)
|
|
{
|
|
case OF_TYPE_FLAG_NORMAL:
|
|
c[0]=p->type|p->modifiers;
|
|
if (debug&DEBUG_PACKETFORMATS) fprintf(stderr,"type resolves to %02x\n",c[0]);
|
|
if (ob_append_bytes(headers,c,1)) return -1;
|
|
break;
|
|
case OF_TYPE_FLAG_E12:
|
|
c[0]=(p->type&OF_MODIFIER_BITS)|OF_TYPE_EXTENDED12;
|
|
c[1]=(p->type>>4)&0xff;
|
|
if (debug&DEBUG_PACKETFORMATS) fprintf(stderr,"type resolves to %02x%02x\n",c[0],c[1]);
|
|
if (ob_append_bytes(headers,c,2)) return -1;
|
|
break;
|
|
case OF_TYPE_FLAG_E20:
|
|
c[0]=(p->type&OF_MODIFIER_BITS)|OF_TYPE_EXTENDED20;
|
|
c[1]=(p->type>>4)&0xff;
|
|
c[2]=(p->type>>12)&0xff;
|
|
if (debug&DEBUG_PACKETFORMATS) fprintf(stderr,"type resolves to %02x%02x%02x\n",c[0],c[1],c[2]);
|
|
if (ob_append_bytes(headers,c,3)) return -1;
|
|
break;
|
|
default:
|
|
/* Don't know this type of frame */
|
|
WHY("Asked for format frame with unknown TYPE_FLAG bits");
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
int overlay_frame_package_fmt1(overlay_frame *p,overlay_buffer *b)
|
|
{
|
|
/* Convert a payload (frame) structure into a series of bytes.
|
|
Assumes that any encryption etc has already been done.
|
|
Will pick a next hop if one has not been chosen.
|
|
*/
|
|
|
|
int nexthoplen=0;
|
|
|
|
overlay_buffer *headers=ob_new(256);
|
|
|
|
if (!headers) return WHY("could not allocate overlay buffer for headers");
|
|
if (!p) return WHY("p is NULL");
|
|
if (!b) return WHY("b is NULL");
|
|
|
|
if (debug&DEBUG_PACKETCONSTRUCTION)
|
|
dump_payload(p,"package_fmt1 stuffing into packet");
|
|
|
|
/* Build header */
|
|
int fail=0;
|
|
|
|
if (p->nexthop_address_status!=OA_RESOLVED) {
|
|
if (0) WHYF("next hop is NOT resolved for packet to %s",
|
|
overlay_render_sid(p->destination));
|
|
if (overlay_address_is_broadcast(p->destination)) {
|
|
/* Broadcast frames are broadcast rather than unicast to next hop.
|
|
Just check if the broadcast frame should be dropped first. */
|
|
if (overlay_broadcast_drop_check(p->destination))
|
|
return WHY("This broadcast packet ID has been seen recently");
|
|
int i;
|
|
/* Copy the broadcast address exactly so that we preserve the BPI */
|
|
for(i=0;i<SID_SIZE;i++) p->nexthop[i]=p->destination[i];
|
|
p->nexthop_address_status=OA_RESOLVED;
|
|
} else {
|
|
if (overlay_get_nexthop((unsigned char *)p->destination,p->nexthop,&nexthoplen,&p->nexthop_interface)) {
|
|
fail++;
|
|
return WHY("could not determine next hop address for payload");
|
|
}
|
|
else p->nexthop_address_status=OA_RESOLVED;
|
|
}
|
|
} else {
|
|
if (0) WHYF("next hop IS resolved for packet to %s",
|
|
overlay_render_sid(p->destination));
|
|
}
|
|
|
|
|
|
if (p->source[0]<0x10) {
|
|
// Make sure that addresses do not overload the special address spaces of 0x00*-0x0f*
|
|
fail++;
|
|
return WHY("packet source address begins with reserved value 0x00-0x0f");
|
|
}
|
|
if (p->destination[0]<0x10) {
|
|
// Make sure that addresses do not overload the special address spaces of 0x00*-0x0f*
|
|
fail++;
|
|
return WHY("packet destination address begins with reserved value 0x00-0x0f");
|
|
}
|
|
if (p->nexthop[0]<0x10) {
|
|
// Make sure that addresses do not overload the special address spaces of 0x00*-0x0f*
|
|
fail++;
|
|
return WHY("packet nexthop address begins with reserved value 0x00-0x0f");
|
|
}
|
|
|
|
/* Write fields into binary structure in correct order */
|
|
|
|
/* Write out type field byte(s) */
|
|
if (!fail) if (op_append_type(headers,p)) fail++;
|
|
|
|
/* Write out TTL */
|
|
if (!fail) if (ob_append_byte(headers,p->ttl)) fail++;
|
|
|
|
/* Length. This is the fun part, because we cannot calculate how many bytes we need until
|
|
we have abbreviated the addresses, and the length encoding we use varies according to the
|
|
length encoded. The simple option of running the abbreviations twice won't work because
|
|
we rely on context for abbreviating the addresses. So we write it initially and then patch it
|
|
after.
|
|
*/
|
|
if (!fail) {
|
|
int max_len=((SID_SIZE+3)*3+headers->length+p->payload->length);
|
|
if (debug&DEBUG_PACKETCONSTRUCTION)
|
|
fprintf(stderr,"Appending RFS for max_len=%d\n",max_len);
|
|
ob_append_rfs(headers,max_len);
|
|
|
|
int addrs_start=headers->length;
|
|
|
|
/* Write out addresses as abbreviated as possible */
|
|
overlay_abbreviate_append_address(headers,p->nexthop);
|
|
overlay_abbreviate_set_most_recent_address(p->nexthop);
|
|
overlay_abbreviate_append_address(headers,p->destination);
|
|
overlay_abbreviate_set_most_recent_address(p->destination);
|
|
overlay_abbreviate_append_address(headers,p->source);
|
|
overlay_abbreviate_set_most_recent_address(p->source);
|
|
|
|
int addrs_len=headers->length-addrs_start;
|
|
int actual_len=addrs_len+p->payload->length;
|
|
if (debug&DEBUG_PACKETCONSTRUCTION)
|
|
fprintf(stderr,"Patching RFS for actual_len=%d\n",actual_len);
|
|
ob_patch_rfs(headers,actual_len);
|
|
}
|
|
|
|
if (fail) {
|
|
ob_free(headers);
|
|
return WHY("failure count was non-zero");
|
|
}
|
|
|
|
/* Write payload format plus total length of header bits */
|
|
if (ob_makespace(b,2+headers->length+p->payload->length)) {
|
|
/* Not enough space free in output buffer */
|
|
ob_free(headers);
|
|
if (debug&DEBUG_PACKETFORMATS)
|
|
WHY("Could not make enough space free in output buffer");
|
|
return -1;
|
|
}
|
|
|
|
/* Package up headers and payload */
|
|
ob_checkpoint(b);
|
|
if (ob_append_bytes(b,headers->bytes,headers->length))
|
|
{ fail++; WHY("could not append header"); }
|
|
if (ob_append_bytes(b,p->payload->bytes,p->payload->length))
|
|
{ fail++; WHY("could not append payload"); }
|
|
|
|
/* XXX SIGN &/or ENCRYPT */
|
|
|
|
ob_free(headers);
|
|
|
|
if (fail) { ob_rewind(b); return WHY("failure count was non-zero"); } else return 0;
|
|
}
|
|
|
|
overlay_buffer *overlay_payload_unpackage(overlay_frame *b) {
|
|
/* Extract the payload at the current location in the buffer. */
|
|
|
|
WHY("not implemented");
|
|
return NULL;
|
|
}
|
|
|
|
int dump_queue(char *msg,int q)
|
|
{
|
|
overlay_txqueue *qq=&overlay_tx[q];
|
|
printf("Contents of TX queue #%d (%s):\n",q,msg);
|
|
printf(" length=%d, maxLength=%d\n",qq->length,qq->maxLength);
|
|
struct overlay_frame *f=qq->first,*l=qq->last;
|
|
|
|
printf(" head of queue = %p, tail of queue = %p\n",
|
|
f,l);
|
|
|
|
struct overlay_frame *n=f;
|
|
int count=0;
|
|
|
|
while(n) {
|
|
printf(" queue entry #%d : prev=%p, next=%p\n",
|
|
count,n->prev,n->next);
|
|
if (n==n->next) {
|
|
printf(" ERROR: loop in queue\n");
|
|
return -1;
|
|
}
|
|
n=n->next;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int dump_payload(overlay_frame *p,char *message)
|
|
{
|
|
fflush(stdout);
|
|
fprintf(stderr,
|
|
"+++++\nFrame from %s to %s of type 0x%02x %s:\n",
|
|
overlay_render_sid(p->source),
|
|
overlay_render_sid(p->destination),p->type,
|
|
message?message:"");
|
|
fprintf(stderr," next hop is %s\n",overlay_render_sid(p->nexthop));
|
|
fflush(stderr);
|
|
if (p->payload) dump("payload contents",
|
|
&p->payload->bytes[0],p->payload->length);
|
|
fflush(stdout); fflush(stderr);
|
|
fprintf(stderr,"-----\n");
|
|
return 0;
|
|
}
|
|
|
|
int overlay_payload_enqueue(int q,overlay_frame *p,int forceBroadcastP)
|
|
{
|
|
/* Add payload p to queue q.
|
|
|
|
Queues get scanned from first to last, so we should append new entries
|
|
on the end of the queue.
|
|
|
|
Complain if there are too many frames in the queue.
|
|
*/
|
|
if (q==OQ_ISOCHRONOUS_VOICE&&(!forceBroadcastP)) {
|
|
/* Dispatch voice data immediately. */
|
|
int interface=-1;
|
|
int nexthoplen=SID_SIZE;
|
|
|
|
overlay_abbreviate_clear_most_recent_address();
|
|
|
|
if (overlay_get_nexthop(p->destination,p->nexthop,&nexthoplen,
|
|
&interface)) {
|
|
return WHY("Failed to resolve nexthop for voice packet");
|
|
}
|
|
if (interface==-1) {
|
|
return WHY("Failed to determine interface for sending voice packet");
|
|
}
|
|
|
|
overlay_buffer *b=ob_new(overlay_interfaces[interface].mtu);
|
|
unsigned char bytes[]={/* Magic */ 'O',0x10,
|
|
/* Version */ 0x00,0x01};
|
|
if (ob_append_bytes(b,bytes,4)) {
|
|
ob_free(b);
|
|
return WHY("ob_append_bytes() refused to append magic bytes.");
|
|
}
|
|
if (overlay_frame_package_fmt1(p,b)) {
|
|
ob_free(b);
|
|
return WHY("could not package voice frame for immediate dispatch");
|
|
}
|
|
|
|
if (debug&DEBUG_OVERLAYINTERFACES)
|
|
WHYF("Sending %d byte voice packet",b->length);
|
|
if (!overlay_broadcast_ensemble(interface,NULL,b->bytes,b->length))
|
|
{
|
|
overlay_update_sequence_number();
|
|
if (debug&DEBUG_OVERLAYINTERFACES)
|
|
WHYF("Voice frame #%lld sent on interface #%d (%d bytes)",
|
|
(long long)overlay_sequence_number,interface,b->length);
|
|
ob_free(b);
|
|
return 0;
|
|
} else {
|
|
WHYF("Failed to send voice frame on interface #%d (%d bytes)",
|
|
interface,b->length);
|
|
ob_free(b);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if (q<0||q>=OQ_MAX) return WHY("Invalid queue specified");
|
|
if (!p) return WHY("Cannot queue NULL");
|
|
|
|
if (0) dump_payload(p,"queued for delivery");
|
|
|
|
if (overlay_tx[q].length>=overlay_tx[q].maxLength) return WHY("Queue congested");
|
|
|
|
if (0) dump_queue("before",q);
|
|
|
|
/* If the frame is broadcast, then mark it correctly so that it can be sent
|
|
via all interfaces. */
|
|
if (overlay_address_is_broadcast(p->destination)||forceBroadcastP)
|
|
{
|
|
p->isBroadcast=1;
|
|
int i;
|
|
for(i=0;i<OVERLAY_MAX_INTERFACES;i++) p->broadcast_sent_via[i]=0;
|
|
}
|
|
else p->isBroadcast=0;
|
|
|
|
overlay_frame *l=overlay_tx[q].last;
|
|
if (l) l->next=p;
|
|
p->prev=l;
|
|
p->next=NULL;
|
|
p->enqueued_at=overlay_gettime_ms();
|
|
|
|
overlay_tx[q].last=p;
|
|
if (!overlay_tx[q].first) overlay_tx[q].first=p;
|
|
overlay_tx[q].length++;
|
|
|
|
if (0) dump_queue("after",q);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int op_free(overlay_frame *p)
|
|
{
|
|
if (!p) return WHY("Asked to free NULL");
|
|
if (p->prev&&p->prev->next==p) return WHY("p->prev->next still points here");
|
|
if (p->next&&p->next->prev==p) return WHY("p->next->prev still points here");
|
|
p->prev=NULL;
|
|
p->next=NULL;
|
|
if (p->payload) ob_free(p->payload);
|
|
p->payload=NULL;
|
|
free(p);
|
|
return 0;
|
|
}
|
|
|
|
overlay_frame *op_dup(overlay_frame *in)
|
|
{
|
|
if (!in) return NULL;
|
|
|
|
/* clone the frame */
|
|
overlay_frame *out=malloc(sizeof(overlay_frame));
|
|
if (!out) WHYRETNULL("malloc() failed");
|
|
|
|
/* copy main data structure */
|
|
bcopy(in,out,sizeof(overlay_frame));
|
|
out->payload=ob_new(in->payload->length);
|
|
if (!out->payload) {
|
|
free(out);
|
|
WHYRETNULL("ob_new() failed");
|
|
}
|
|
if (ob_append_bytes(out->payload,&in->payload->bytes[0],in->payload->length))
|
|
{
|
|
op_free(out);
|
|
WHYRETNULL("could not duplicate payload bytes");
|
|
}
|
|
return out;
|
|
}
|
|
|
|
int overlay_frame_set_neighbour_as_source(overlay_frame *f,overlay_neighbour *n)
|
|
{
|
|
if (!n) return WHY("Neighbour was null");
|
|
bcopy(n->node->sid,f->source,SID_SIZE);
|
|
f->source_address_status=OA_RESOLVED;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int overlay_frame_set_neighbour_as_destination(overlay_frame *f,overlay_neighbour *n)
|
|
{
|
|
if (!n) return WHY("Neighbour was null");
|
|
bcopy(n->node->sid,f->destination,SID_SIZE);
|
|
f->destination_address_status=OA_RESOLVED;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int overlay_frame_set_broadcast_as_destination(overlay_frame *f)
|
|
{
|
|
overlay_broadcast_generate_address(f->destination);
|
|
f->destination_address_status=OA_RESOLVED;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
unsigned char *overlay_get_my_sid()
|
|
{
|
|
/* Make sure we can find our SID */
|
|
int kp;
|
|
if (!keyring)
|
|
{ WHY("keyring is null"); return NULL; }
|
|
if (!keyring->context_count)
|
|
{ WHY("No context zero in keyring"); return NULL; }
|
|
if (!keyring->contexts[0]->identity_count)
|
|
{ WHY("No identity in keyring context zero"); return NULL; }
|
|
|
|
for(kp=0;kp<keyring->contexts[0]->identities[0]->keypair_count;kp++)
|
|
if (keyring->contexts[0]->identities[0]->keypairs[kp]->type==KEYTYPE_CRYPTOBOX)
|
|
return keyring->contexts[0]->identities[0]->keypairs[kp]->public_key;
|
|
|
|
WHY("Could not find first entry in HLR"); return NULL;
|
|
}
|
|
|
|
int overlay_frame_set_me_as_source(overlay_frame *f)
|
|
{
|
|
unsigned char *sid=overlay_get_my_sid();
|
|
if (!sid) return WHY("overlay_get_my_sid() failed.");
|
|
bcopy(sid,f->source,SID_SIZE);
|
|
|
|
f->source_address_status=OA_RESOLVED;
|
|
|
|
return 0;
|
|
}
|