2012-11-30 01:18:00 +00:00
|
|
|
/*
|
2013-12-04 06:26:55 +00:00
|
|
|
Copyright (C) 2010-2012 Paul Gardner-Stephen
|
|
|
|
Copyright (C) 2010-2013 Serval Project Inc.
|
2012-11-30 01:18:00 +00:00
|
|
|
|
|
|
|
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 <sys/stat.h>
|
|
|
|
#include "serval.h"
|
2012-12-11 05:29:46 +00:00
|
|
|
#include "conf.h"
|
2012-11-30 01:18:00 +00:00
|
|
|
#include "str.h"
|
|
|
|
#include "strbuf.h"
|
|
|
|
#include "overlay_buffer.h"
|
|
|
|
#include "overlay_address.h"
|
|
|
|
#include "overlay_packet.h"
|
|
|
|
#include "mdp_client.h"
|
2012-11-30 04:17:27 +00:00
|
|
|
#include "rhizome.h"
|
2012-11-30 01:18:00 +00:00
|
|
|
#include "crypto.h"
|
2012-11-30 10:38:06 +00:00
|
|
|
#include "log.h"
|
2013-10-16 03:00:00 +00:00
|
|
|
#include "keyring.h"
|
2013-11-25 02:39:54 +00:00
|
|
|
#include "dataformats.h"
|
2012-11-30 01:18:00 +00:00
|
|
|
|
2013-10-03 13:46:45 +00:00
|
|
|
int rhizome_mdp_send_block(struct subscriber *dest, const rhizome_bid_t *bid, uint64_t version, uint64_t fileOffset, uint32_t bitmap, uint16_t blockLength)
|
2012-11-30 03:47:05 +00:00
|
|
|
{
|
|
|
|
IN();
|
2013-08-20 23:51:40 +00:00
|
|
|
if (!is_rhizome_mdp_server_running())
|
|
|
|
RETURN(-1);
|
|
|
|
if (blockLength<=0 || blockLength>1024)
|
|
|
|
RETURN(WHYF("Invalid block length %d", blockLength));
|
2012-12-01 00:22:08 +00:00
|
|
|
|
2013-02-15 03:44:50 +00:00
|
|
|
if (config.debug.rhizome_tx)
|
2014-01-23 06:01:56 +00:00
|
|
|
DEBUGF("Requested blocks for bid=%s, ver=%"PRIu64" @%"PRIx64" bitmap %x", alloca_tohex_rhizome_bid_t(*bid), version, fileOffset, bitmap);
|
2013-08-16 05:27:28 +00:00
|
|
|
|
|
|
|
overlay_mdp_frame reply;
|
|
|
|
bzero(&reply,sizeof(reply));
|
|
|
|
// Reply is broadcast, so we cannot authcrypt, and signing is too time consuming
|
|
|
|
// for low devices. The result is that an attacker can prevent rhizome transfers
|
|
|
|
// if they want to by injecting fake blocks. The alternative is to not broadcast
|
|
|
|
// back replies, and then we can authcrypt.
|
|
|
|
// multiple receivers starting at different times, we really need merkle-tree hashing.
|
|
|
|
// so multiple receivers is not realistic for now. So use non-broadcast unicode
|
|
|
|
// for now would seem the safest. But that would stop us from allowing multiple
|
|
|
|
// receivers in the special case where additional nodes begin listening in from the
|
|
|
|
// beginning.
|
|
|
|
reply.packetTypeAndFlags=MDP_TX|MDP_NOCRYPT|MDP_NOSIGN;
|
2013-10-09 08:24:21 +00:00
|
|
|
reply.out.src.sid = my_subscriber->sid;
|
2013-08-16 05:27:28 +00:00
|
|
|
reply.out.src.port=MDP_PORT_RHIZOME_RESPONSE;
|
2013-01-29 02:12:34 +00:00
|
|
|
|
2013-08-20 23:51:40 +00:00
|
|
|
if (dest && (dest->reachable==REACHABLE_UNICAST || dest->reachable==REACHABLE_INDIRECT)){
|
2013-08-16 05:27:28 +00:00
|
|
|
// if we get a request from a peer that we can only talk to via unicast, send data via unicast too.
|
2013-10-09 08:24:21 +00:00
|
|
|
reply.out.dst.sid = dest->sid;
|
2013-08-16 05:27:28 +00:00
|
|
|
}else{
|
|
|
|
// send replies to broadcast so that others can hear blocks and record them
|
|
|
|
// (not that preemptive listening is implemented yet).
|
2013-10-09 08:24:21 +00:00
|
|
|
reply.out.dst.sid = SID_BROADCAST;
|
2013-08-16 05:27:28 +00:00
|
|
|
reply.out.ttl=1;
|
|
|
|
}
|
2013-01-29 02:12:34 +00:00
|
|
|
|
2013-08-16 05:27:28 +00:00
|
|
|
reply.out.dst.port=MDP_PORT_RHIZOME_RESPONSE;
|
|
|
|
reply.out.queue=OQ_OPPORTUNISTIC;
|
|
|
|
reply.out.payload[0]='B'; // reply contains blocks
|
|
|
|
// include 16 bytes of BID prefix for identification
|
2013-10-03 13:46:45 +00:00
|
|
|
bcopy(bid->binary, &reply.out.payload[1], 16);
|
2013-08-25 12:38:40 +00:00
|
|
|
// and version of manifest (in the correct byte order)
|
|
|
|
// bcopy(&version, &reply.out.payload[1+16], sizeof(uint64_t));
|
|
|
|
write_uint64(&reply.out.payload[1+16],version);
|
2013-01-29 02:12:34 +00:00
|
|
|
|
2013-08-16 05:27:28 +00:00
|
|
|
int i;
|
|
|
|
for(i=0;i<32;i++){
|
|
|
|
if (bitmap&(1<<(31-i)))
|
|
|
|
continue;
|
2013-02-20 03:59:08 +00:00
|
|
|
|
2013-08-16 05:27:28 +00:00
|
|
|
if (overlay_queue_remaining(reply.out.queue) < 10)
|
|
|
|
break;
|
2013-02-20 03:59:08 +00:00
|
|
|
|
2013-08-16 05:27:28 +00:00
|
|
|
// calculate and set offset of block
|
|
|
|
uint64_t offset = fileOffset+i*blockLength;
|
2013-02-20 03:59:08 +00:00
|
|
|
|
2013-08-16 05:27:28 +00:00
|
|
|
write_uint64(&reply.out.payload[1+16+8], offset);
|
|
|
|
|
2013-12-27 18:56:22 +00:00
|
|
|
ssize_t bytes_read = rhizome_read_cached(bid, version, gettime_ms()+5000, offset, &reply.out.payload[1+16+8+8], blockLength);
|
2013-08-16 05:27:28 +00:00
|
|
|
if (bytes_read<=0)
|
|
|
|
break;
|
|
|
|
|
2013-12-27 18:56:22 +00:00
|
|
|
reply.out.payload_length=1+16+8+8+(size_t)bytes_read;
|
2013-08-16 05:27:28 +00:00
|
|
|
|
|
|
|
// Mark the last block of the file, if required
|
2013-12-27 18:56:22 +00:00
|
|
|
if ((size_t)bytes_read < blockLength)
|
2013-08-16 05:27:28 +00:00
|
|
|
reply.out.payload[0]='T';
|
|
|
|
|
|
|
|
// send packet
|
2013-11-25 01:45:20 +00:00
|
|
|
if (overlay_mdp_dispatch(&reply, NULL))
|
2013-08-16 05:27:28 +00:00
|
|
|
break;
|
2013-02-20 03:59:08 +00:00
|
|
|
}
|
2012-11-30 03:47:05 +00:00
|
|
|
|
2013-08-16 05:27:28 +00:00
|
|
|
RETURN(0);
|
2013-02-16 17:47:24 +00:00
|
|
|
OUT();
|
2012-11-30 03:47:05 +00:00
|
|
|
}
|
|
|
|
|
2014-01-23 06:01:56 +00:00
|
|
|
int overlay_mdp_service_rhizomerequest(struct internal_mdp_header *header, struct overlay_buffer *payload)
|
2013-07-12 01:26:24 +00:00
|
|
|
{
|
2014-01-23 06:01:56 +00:00
|
|
|
const rhizome_bid_t *bidp = (const rhizome_bid_t *) ob_get_bytes_ptr(payload, sizeof bidp->binary);
|
|
|
|
// Note, was originally built using read_uint64 which has reverse byte order of ob_get_ui64
|
|
|
|
uint64_t version = ob_get_ui64_rv(payload);
|
|
|
|
uint64_t fileOffset = ob_get_ui64_rv(payload);
|
|
|
|
uint32_t bitmap = ob_get_ui32_rv(payload);
|
|
|
|
uint16_t blockLength = ob_get_ui16_rv(payload);
|
|
|
|
if (ob_overrun(payload))
|
|
|
|
return -1;
|
|
|
|
return rhizome_mdp_send_block(header->source, bidp, version, fileOffset, bitmap, blockLength);
|
2013-07-12 01:26:24 +00:00
|
|
|
}
|
|
|
|
|
2014-01-29 06:23:19 +00:00
|
|
|
int overlay_mdp_service_rhizomeresponse(struct internal_mdp_header *UNUSED(header), struct overlay_buffer *payload)
|
2012-11-30 03:47:05 +00:00
|
|
|
{
|
|
|
|
IN();
|
2012-11-30 11:32:10 +00:00
|
|
|
|
2014-01-23 06:01:56 +00:00
|
|
|
int type=ob_get(payload);
|
2013-08-25 11:46:33 +00:00
|
|
|
|
|
|
|
if (config.debug.rhizome_mdp_rx)
|
|
|
|
DEBUGF("Received Rhizome over MDP block, type=%02x",type);
|
|
|
|
|
2012-11-30 11:32:10 +00:00
|
|
|
switch (type) {
|
|
|
|
case 'B': /* data block */
|
2012-11-30 12:12:28 +00:00
|
|
|
case 'T': /* terminal data block */
|
2012-11-30 11:32:10 +00:00
|
|
|
{
|
2014-01-23 06:01:56 +00:00
|
|
|
unsigned char *bidprefix=ob_get_bytes_ptr(payload, 16);
|
|
|
|
uint64_t version=ob_get_ui64_rv(payload);
|
|
|
|
uint64_t offset=ob_get_ui64_rv(payload);
|
|
|
|
if (ob_overrun(payload))
|
2013-08-20 23:51:40 +00:00
|
|
|
RETURN(WHYF("Payload too short"));
|
2014-01-23 06:01:56 +00:00
|
|
|
size_t count = ob_remaining(payload);
|
|
|
|
unsigned char *bytes=ob_current_ptr(payload);
|
|
|
|
|
2013-08-25 11:46:33 +00:00
|
|
|
if (config.debug.rhizome_mdp_rx)
|
Refactor manifest: specific setter functions
Replace generic rhizome_manifest_set() and rhizome_manifest_set_ll()
with per-field setter functions, eg, rhizome_manifest_set_filesize().
Struct rhizome_manifest elements for all known fields, to replace the
use of rhizome_manifest_get() and rhizome_manifest_get_ll() everywhere:
sender, recipient, service, name, date, bundle_key.
Add boolean validity flags for binary blob types, to avoid having to compare
with many bytes of all-zero to detect presence, eg, has_sender, has_recipient,
has_author, has_bundle_key. These maintained by the setter functions.
Rename existing manifest struct elements to be the same as their field
names: fileLength -> filesize, journalTail -> tail.
More use of unsigned int, size_t and uint64_t for payload sizes, offsets, byte
counts, etc. especially in rhizome_store.c and meshms.c. More uniform use of
size_t to dimension memory buffers. Fix some printf(3) style format strings
for 64-bit correctness on 32-bit systems. Use new constant RHIZOME_SIZE_UNSET
instead of -1 to indicate unknown dimension, and explicitly assert its absence
before comparisons and arithmetic, for safety.
Replace some 'int' loop variables with 'unsigned' where appropriate.
Fix bugs discovered in MeshMS bundle private/public key generation and
bundle secret key handling for export/extract commands.
Instrument the first MeshMS test case to aid debugging.
New debug config flag: debug.manifest logs all modifications to all manifest
fields by setter functions.
Rename debug config flag: debug.rhizome_bind -> debug.rhizome_sql_bind.
2013-10-30 12:52:19 +00:00
|
|
|
DEBUGF("bidprefix=%02x%02x%02x%02x*, offset=%"PRId64", count=%zu",
|
2013-08-25 11:46:33 +00:00
|
|
|
bidprefix[0],bidprefix[1],bidprefix[2],bidprefix[3],offset,count);
|
|
|
|
|
2012-11-30 11:56:31 +00:00
|
|
|
/* Now see if there is a slot that matches. If so, then
|
|
|
|
see if the bytes are in the window, and write them.
|
|
|
|
|
|
|
|
If there is not matching slot, then consider setting
|
|
|
|
a slot to capture this files as it is being requested
|
|
|
|
by someone else.
|
|
|
|
*/
|
2013-12-09 07:52:18 +00:00
|
|
|
rhizome_received_content(bidprefix,version,offset, count, bytes);
|
2012-11-30 11:56:31 +00:00
|
|
|
|
2013-08-20 23:51:40 +00:00
|
|
|
RETURN(0);
|
2012-11-30 11:32:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-11-30 03:47:05 +00:00
|
|
|
RETURN(-1);
|
2013-02-16 17:47:24 +00:00
|
|
|
OUT();
|
2012-11-30 03:47:05 +00:00
|
|
|
}
|
2012-11-30 01:18:00 +00:00
|
|
|
|
|
|
|
int overlay_mdp_service_dnalookup(overlay_mdp_frame *mdp)
|
|
|
|
{
|
|
|
|
IN();
|
2013-12-10 06:04:35 +00:00
|
|
|
unsigned cn=0, in=0, kp=0;
|
2012-11-30 01:18:00 +00:00
|
|
|
char did[64+1];
|
|
|
|
int pll=mdp->out.payload_length;
|
|
|
|
if (pll>64) pll=64;
|
|
|
|
/* get did from the packet */
|
|
|
|
if (mdp->out.payload_length<1) {
|
|
|
|
RETURN(WHY("Empty DID in DNA resolution request")); }
|
|
|
|
bcopy(&mdp->out.payload[0],&did[0],pll);
|
|
|
|
did[pll]=0;
|
|
|
|
|
2012-12-11 05:29:46 +00:00
|
|
|
if (config.debug.mdprequests)
|
2012-11-30 01:18:00 +00:00
|
|
|
DEBUG("MDP_PORT_DNALOOKUP");
|
|
|
|
|
|
|
|
int results=0;
|
|
|
|
while(keyring_find_did(keyring,&cn,&in,&kp,did))
|
|
|
|
{
|
|
|
|
/* package DID and Name into reply (we include the DID because
|
|
|
|
it could be a wild-card DID search, but the SID is implied
|
|
|
|
in the source address of our reply). */
|
|
|
|
if (keyring->contexts[cn]->identities[in]->keypairs[kp]->private_key_len > DID_MAXSIZE)
|
|
|
|
/* skip excessively long DID records */
|
|
|
|
continue;
|
2013-10-09 08:24:21 +00:00
|
|
|
const sid_t *sidp = (const sid_t *) keyring->contexts[cn]->identities[in]->keypairs[0]->public_key;
|
2012-11-30 01:18:00 +00:00
|
|
|
const char *unpackedDid = (const char *) keyring->contexts[cn]->identities[in]->keypairs[kp]->private_key;
|
|
|
|
const char *name = (const char *)keyring->contexts[cn]->identities[in]->keypairs[kp]->public_key;
|
|
|
|
// URI is sid://SIDHEX/DID
|
|
|
|
strbuf b = strbuf_alloca(SID_STRLEN + DID_MAXSIZE + 10);
|
|
|
|
strbuf_puts(b, "sid://");
|
2013-10-09 08:24:21 +00:00
|
|
|
strbuf_tohex(b, SID_STRLEN, sidp->binary);
|
2012-11-30 01:18:00 +00:00
|
|
|
strbuf_puts(b, "/local/");
|
|
|
|
strbuf_puts(b, unpackedDid);
|
2013-10-09 08:24:21 +00:00
|
|
|
overlay_mdp_dnalookup_reply(&mdp->out.src, sidp, strbuf_str(b), unpackedDid, name);
|
2012-11-30 01:18:00 +00:00
|
|
|
kp++;
|
|
|
|
results++;
|
|
|
|
}
|
|
|
|
if (!results) {
|
|
|
|
/* No local results, so see if servald has been configured to use
|
|
|
|
a DNA-helper that can provide additional mappings. This provides
|
|
|
|
a generalised interface for resolving telephone numbers into URIs.
|
|
|
|
The first use will be for resolving DIDs to SIP addresses for
|
|
|
|
OpenBTS boxes run by the OTI/Commotion project.
|
|
|
|
|
|
|
|
The helper is run asynchronously, and the replies will be delivered
|
|
|
|
when results become available, so this function will return
|
|
|
|
immediately, so as not to cause blockages and delays in servald.
|
|
|
|
*/
|
2013-10-09 08:24:21 +00:00
|
|
|
dna_helper_enqueue(mdp, did, &mdp->out.src.sid);
|
2012-11-30 01:18:00 +00:00
|
|
|
monitor_tell_formatted(MONITOR_DNAHELPER, "LOOKUP:%s:%d:%s\n",
|
2013-10-09 08:24:21 +00:00
|
|
|
alloca_tohex_sid_t(mdp->out.src.sid), mdp->out.src.port,
|
2012-11-30 01:18:00 +00:00
|
|
|
did);
|
|
|
|
}
|
|
|
|
RETURN(0);
|
|
|
|
}
|
|
|
|
|
2014-01-29 05:09:12 +00:00
|
|
|
int overlay_mdp_service_echo(struct internal_mdp_header *header, struct overlay_buffer *payload)
|
2012-11-30 01:18:00 +00:00
|
|
|
{
|
|
|
|
/* Echo is easy: we swap the sender and receiver addresses (and thus port
|
|
|
|
numbers) and send the frame back. */
|
|
|
|
IN();
|
|
|
|
|
|
|
|
/* Prevent echo:echo connections and the resulting denial of service from triggering endless pongs. */
|
2014-01-29 05:09:12 +00:00
|
|
|
if (header->source_port == MDP_PORT_ECHO)
|
2012-11-30 01:18:00 +00:00
|
|
|
RETURN(WHY("echo loop averted"));
|
2014-01-29 05:09:12 +00:00
|
|
|
|
|
|
|
struct internal_mdp_header response_header;
|
|
|
|
bzero(&response_header, sizeof response_header);
|
|
|
|
|
|
|
|
response_header.source = header->destination;
|
|
|
|
response_header.source_port = MDP_PORT_ECHO;
|
|
|
|
response_header.destination = header->source;
|
|
|
|
response_header.destination_port = header->source_port;
|
|
|
|
response_header.qos = header->qos;
|
2012-11-30 01:18:00 +00:00
|
|
|
|
|
|
|
/* Always send PONGs auth-crypted so that the receipient knows
|
|
|
|
that they are genuine, and so that we avoid the extra cost
|
|
|
|
of signing (which is slower than auth-crypting) */
|
2014-01-29 05:09:12 +00:00
|
|
|
response_header.modifiers = OF_CRYPTO_CIPHERED|OF_CRYPTO_SIGNED;
|
2012-11-30 01:18:00 +00:00
|
|
|
|
2014-01-29 05:09:12 +00:00
|
|
|
/* If the packet was sent to broadcast, then replace broadcast address
|
|
|
|
with our local address. */
|
|
|
|
if (!response_header.source)
|
|
|
|
response_header.source = my_subscriber;
|
|
|
|
|
|
|
|
RETURN(overlay_send_frame(&response_header, payload));
|
|
|
|
OUT();
|
2012-11-30 01:18:00 +00:00
|
|
|
}
|
|
|
|
|
2013-02-18 04:01:01 +00:00
|
|
|
static int overlay_mdp_service_trace(overlay_mdp_frame *mdp){
|
|
|
|
IN();
|
|
|
|
int ret=0;
|
|
|
|
|
|
|
|
struct overlay_buffer *b = ob_static(mdp->out.payload, sizeof(mdp->out.payload));
|
|
|
|
ob_limitsize(b, mdp->out.payload_length);
|
|
|
|
|
|
|
|
struct subscriber *src=NULL, *dst=NULL, *last=NULL, *next=NULL;
|
|
|
|
struct decode_context context;
|
|
|
|
bzero(&context, sizeof context);
|
|
|
|
|
|
|
|
if (overlay_address_parse(&context, b, &src)){
|
|
|
|
ret=WHYF("Invalid trace packet");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (overlay_address_parse(&context, b, &dst)){
|
|
|
|
ret=WHYF("Invalid trace packet");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (context.invalid_addresses){
|
|
|
|
ret=WHYF("Invalid address in trace packet");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2013-10-09 08:24:21 +00:00
|
|
|
INFOF("Trace from %s to %s", alloca_tohex_sid_t(src->sid), alloca_tohex_sid_t(dst->sid));
|
2013-02-18 04:01:01 +00:00
|
|
|
|
|
|
|
while(ob_remaining(b)>0){
|
|
|
|
struct subscriber *trace=NULL;
|
|
|
|
if (overlay_address_parse(&context, b, &trace)){
|
|
|
|
ret=WHYF("Invalid trace packet");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (context.invalid_addresses){
|
|
|
|
ret=WHYF("Invalid address in trace packet");
|
|
|
|
goto end;
|
|
|
|
}
|
2013-10-09 08:24:21 +00:00
|
|
|
INFOF("Via %s", alloca_tohex_sid_t(trace->sid));
|
2013-02-18 04:01:01 +00:00
|
|
|
|
|
|
|
if (trace->reachable==REACHABLE_SELF && !next)
|
|
|
|
// We're already in this trace, send the next packet to the node before us in the list
|
|
|
|
next = last;
|
|
|
|
last = trace;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (src->reachable==REACHABLE_SELF && last){
|
|
|
|
// it came back to us, we can send the reply to our mdp client...
|
|
|
|
next=src;
|
|
|
|
mdp->out.dst.port=mdp->out.src.port;
|
|
|
|
mdp->out.src.port=MDP_PORT_TRACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!next){
|
|
|
|
// destination is our neighbour?
|
|
|
|
if (dst->reachable & REACHABLE_DIRECT)
|
|
|
|
next = dst;
|
|
|
|
// destination is indirect?
|
|
|
|
else if (dst->reachable & REACHABLE_INDIRECT)
|
|
|
|
next = dst->next_hop;
|
|
|
|
// destination is not reachable or is ourselves? bounce back to the previous node or the sender.
|
|
|
|
else if (last)
|
|
|
|
next = last;
|
|
|
|
else
|
|
|
|
next = src;
|
|
|
|
}
|
|
|
|
|
2013-10-09 08:24:21 +00:00
|
|
|
INFOF("Next node is %s", alloca_tohex_sid_t(next->sid));
|
2013-02-18 04:01:01 +00:00
|
|
|
|
|
|
|
ob_unlimitsize(b);
|
|
|
|
// always write a full sid into the payload
|
|
|
|
my_subscriber->send_full=1;
|
2013-11-25 06:13:32 +00:00
|
|
|
overlay_address_append(&context, b, my_subscriber);
|
|
|
|
if (ob_overrun(b)) {
|
2013-02-18 04:01:01 +00:00
|
|
|
ret = WHYF("Unable to append my address to the trace");
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
mdp->out.payload_length = ob_position(b);
|
2013-10-09 08:24:21 +00:00
|
|
|
mdp->out.src.sid = my_subscriber->sid;
|
|
|
|
mdp->out.dst.sid = next->sid;
|
2013-11-25 01:45:20 +00:00
|
|
|
ret = overlay_mdp_dispatch(mdp, NULL);
|
2013-02-18 04:01:01 +00:00
|
|
|
end:
|
|
|
|
ob_free(b);
|
|
|
|
RETURN(ret);
|
|
|
|
}
|
|
|
|
|
2014-01-23 06:01:56 +00:00
|
|
|
static int overlay_mdp_service_manifest_requests(struct internal_mdp_header *header, struct overlay_buffer *payload)
|
2013-10-03 13:46:45 +00:00
|
|
|
{
|
2014-01-23 06:01:56 +00:00
|
|
|
while (ob_remaining(payload)) {
|
|
|
|
const unsigned char *bar = ob_get_bytes_ptr(payload, RHIZOME_BAR_BYTES);
|
|
|
|
if (!bar)
|
|
|
|
break;
|
2013-06-18 03:57:26 +00:00
|
|
|
rhizome_manifest *m = rhizome_new_manifest();
|
|
|
|
if (!m)
|
|
|
|
return WHY("Unable to allocate manifest");
|
2013-10-03 13:46:45 +00:00
|
|
|
if (!rhizome_retrieve_manifest_by_prefix(&bar[RHIZOME_BAR_PREFIX_OFFSET], RHIZOME_BAR_PREFIX_BYTES, m)){
|
2014-01-23 06:01:56 +00:00
|
|
|
rhizome_advertise_manifest(header->source, m);
|
2013-08-20 23:51:40 +00:00
|
|
|
// pre-emptively send the payload if it will fit in a single packet
|
Refactor manifest: specific setter functions
Replace generic rhizome_manifest_set() and rhizome_manifest_set_ll()
with per-field setter functions, eg, rhizome_manifest_set_filesize().
Struct rhizome_manifest elements for all known fields, to replace the
use of rhizome_manifest_get() and rhizome_manifest_get_ll() everywhere:
sender, recipient, service, name, date, bundle_key.
Add boolean validity flags for binary blob types, to avoid having to compare
with many bytes of all-zero to detect presence, eg, has_sender, has_recipient,
has_author, has_bundle_key. These maintained by the setter functions.
Rename existing manifest struct elements to be the same as their field
names: fileLength -> filesize, journalTail -> tail.
More use of unsigned int, size_t and uint64_t for payload sizes, offsets, byte
counts, etc. especially in rhizome_store.c and meshms.c. More uniform use of
size_t to dimension memory buffers. Fix some printf(3) style format strings
for 64-bit correctness on 32-bit systems. Use new constant RHIZOME_SIZE_UNSET
instead of -1 to indicate unknown dimension, and explicitly assert its absence
before comparisons and arithmetic, for safety.
Replace some 'int' loop variables with 'unsigned' where appropriate.
Fix bugs discovered in MeshMS bundle private/public key generation and
bundle secret key handling for export/extract commands.
Instrument the first MeshMS test case to aid debugging.
New debug config flag: debug.manifest logs all modifications to all manifest
fields by setter functions.
Rename debug config flag: debug.rhizome_bind -> debug.rhizome_sql_bind.
2013-10-30 12:52:19 +00:00
|
|
|
if (m->filesize > 0 && m->filesize <= 1024)
|
2014-01-23 06:01:56 +00:00
|
|
|
rhizome_mdp_send_block(header->source, &m->cryptoSignPublic, m->version, 0, 0, m->filesize);
|
2013-02-12 00:04:04 +00:00
|
|
|
}
|
2013-06-18 03:57:26 +00:00
|
|
|
rhizome_manifest_free(m);
|
2013-02-12 00:04:04 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-23 06:01:56 +00:00
|
|
|
void overlay_mdp_bind_internal_services()
|
|
|
|
{
|
|
|
|
mdp_bind_internal(NULL, MDP_PORT_LINKSTATE, link_receive);
|
2014-01-29 05:09:12 +00:00
|
|
|
mdp_bind_internal(NULL, MDP_PORT_ECHO, overlay_mdp_service_echo);
|
2014-01-23 06:01:56 +00:00
|
|
|
mdp_bind_internal(NULL, MDP_PORT_RHIZOME_REQUEST, overlay_mdp_service_rhizomerequest);
|
|
|
|
mdp_bind_internal(NULL, MDP_PORT_RHIZOME_MANIFEST_REQUEST, overlay_mdp_service_manifest_requests);
|
|
|
|
mdp_bind_internal(NULL, MDP_PORT_RHIZOME_SYNC, overlay_mdp_service_rhizome_sync);
|
2014-01-29 06:23:19 +00:00
|
|
|
mdp_bind_internal(NULL, MDP_PORT_RHIZOME_RESPONSE, overlay_mdp_service_rhizomeresponse);
|
|
|
|
mdp_bind_internal(NULL, MDP_PORT_PROBE, overlay_mdp_service_probe);
|
|
|
|
mdp_bind_internal(NULL, MDP_PORT_STUNREQ, overlay_mdp_service_stun_req);
|
|
|
|
mdp_bind_internal(NULL, MDP_PORT_STUN, overlay_mdp_service_stun);
|
2014-01-23 06:01:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int overlay_mdp_try_internal_services(
|
|
|
|
struct internal_mdp_header *header, struct overlay_buffer *payload)
|
2012-11-30 01:18:00 +00:00
|
|
|
{
|
|
|
|
IN();
|
2014-01-23 06:01:56 +00:00
|
|
|
overlay_mdp_frame mdp;
|
|
|
|
|
|
|
|
// TODO convert to internal bindings
|
|
|
|
switch(header->destination_port) {
|
|
|
|
case MDP_PORT_VOMP:
|
|
|
|
overlay_mdp_fill_legacy(header, payload, &mdp);
|
|
|
|
RETURN(vomp_mdp_received(&mdp));
|
|
|
|
case MDP_PORT_KEYMAPREQUEST:
|
|
|
|
overlay_mdp_fill_legacy(header, payload, &mdp);
|
|
|
|
RETURN(keyring_mapping_request(keyring, header, &mdp));
|
|
|
|
case MDP_PORT_DNALOOKUP:
|
|
|
|
overlay_mdp_fill_legacy(header, payload, &mdp);
|
|
|
|
RETURN(overlay_mdp_service_dnalookup(&mdp));
|
|
|
|
case MDP_PORT_TRACE:
|
|
|
|
overlay_mdp_fill_legacy(header, payload, &mdp);
|
|
|
|
RETURN(overlay_mdp_service_trace(&mdp));
|
2012-11-30 01:18:00 +00:00
|
|
|
}
|
2012-11-30 04:17:27 +00:00
|
|
|
|
|
|
|
/* Unbound socket. We won't be sending ICMP style connection refused
|
|
|
|
messages, partly because they are a waste of bandwidth. */
|
|
|
|
RETURN(WHYF("Received packet for which no listening process exists (MDP ports: src=%d, dst=%d",
|
2014-01-23 06:01:56 +00:00
|
|
|
header->source_port, header->destination_port));
|
2012-11-30 01:18:00 +00:00
|
|
|
}
|