/* Serval DNA MDP overlay network Copyright (C) 2012-2013 Serval Project Inc. Copyright (C) 2010-2012 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. */ /* Portions Copyright (C) 2013 Petter Reinholdtsen Some rights reserved Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include "serval.h" #include "conf.h" #include "str.h" #include "strbuf.h" #include "strbuf_helpers.h" #include "overlay_buffer.h" #include "overlay_address.h" #include "overlay_interface.h" #include "overlay_packet.h" #include "mdp_client.h" #include "crypto.h" #include "keyring.h" #include "socket.h" #include "server.h" static void overlay_mdp_poll(struct sched_ent *alarm); static void mdp_poll2(struct sched_ent *alarm); static int overlay_mdp_releasebindings(struct socket_address *client); static struct profile_total mdp_stats = { .name="overlay_mdp_poll" }; static struct sched_ent mdp_sock = { .function = overlay_mdp_poll, .stats = &mdp_stats, .poll={.fd = -1}, }; static struct profile_total mdp_stats2 = { .name="mdp_poll2" }; static struct sched_ent mdp_sock2 = { .function = mdp_poll2, .stats = &mdp_stats2, .poll={.fd = -1}, }; static struct sched_ent mdp_sock2_inet = { .function = mdp_poll2, .stats = &mdp_stats2, .poll={.fd = -1}, }; static int overlay_saw_mdp_frame( struct internal_mdp_header *header, struct overlay_buffer *payload); static int mdp_send2(const struct socket_address *client, const struct mdp_header *header, const uint8_t *payload, size_t payload_len); /* Delete all UNIX socket files in instance directory. */ void overlay_mdp_clean_socket_files() { char path[PATH_MAX]; if (FORMF_SERVAL_RUN_PATH(path, NULL)) { DIR *dir; struct dirent *dp; if ((dir = opendir(path)) == NULL) { WARNF_perror("opendir(%s)", alloca_str_toprint(path)); return; } while ((dp = readdir(dir)) != NULL) { path[0] = '\0'; if (!FORMF_SERVAL_RUN_PATH(path, "%s", dp->d_name)) continue; struct stat st; if (lstat(path, &st)) { WARNF_perror("stat(%s)", alloca_str_toprint(path)); continue; } if (S_ISSOCK(st.st_mode)) unlink(path); } closedir(dir); } } static void overlay_mdp_fill_legacy( const struct internal_mdp_header *header, struct overlay_buffer *payload, overlay_mdp_frame *mdp) { mdp->out.src.sid = header->source->sid; mdp->out.src.port = header->source_port; mdp->out.dst.sid = header->destination?header->destination->sid:SID_BROADCAST; mdp->out.dst.port = header->destination_port; mdp->out.payload_length = ob_remaining(payload); ob_get_bytes(payload, mdp->out.payload, mdp->out.payload_length); mdp->out.ttl = header->ttl; mdp->out.queue = header->qos; mdp->packetTypeAndFlags=MDP_TX; if (header->crypt_flags & MDP_FLAG_NO_CRYPT) mdp->packetTypeAndFlags|=MDP_NOCRYPT; if (header->crypt_flags & MDP_FLAG_NO_SIGN) mdp->packetTypeAndFlags|=MDP_NOSIGN; } static int mdp_bind_socket(const char *name) { struct socket_address addr; int sock; if (make_local_sockaddr(&addr, "%s", name) == -1) return -1; if ((sock = esocket(addr.addr.sa_family, SOCK_DGRAM, 0)) == -1) return -1; if (socket_set_reuseaddr(sock, 1) == -1) WARN("Could not set socket to reuse addresses"); if (socket_bind(sock, &addr) == -1) { close(sock); return -1; } socket_set_rcvbufsize(sock, 64 * 1024); INFOF("Socket %s: fd=%d %s", name, sock, alloca_socket_address(&addr)); return sock; } int overlay_mdp_setup_sockets() { /* Delete stale socket files from instance directory. */ overlay_mdp_clean_socket_files(); if (mdp_sock.poll.fd == -1) { mdp_sock.poll.fd = mdp_bind_socket("mdp.socket"); if (mdp_sock.poll.fd == -1) return -1; mdp_sock.poll.events = POLLIN; watch(&mdp_sock); } if (mdp_sock2.poll.fd == -1) { mdp_sock2.poll.fd = mdp_bind_socket("mdp.2.socket"); if (mdp_sock2.poll.fd == -1) return -1; mdp_sock2.poll.events = POLLIN; watch(&mdp_sock2); } if (mdp_sock2_inet.poll.fd == -1 && config.mdp.enable_inet) { int fd = esocket(PF_INET, SOCK_DGRAM, 0); if (fd>=0){ // try to find a free UDP port somewhere between 4210 & 4260 uint16_t start_port = 4210; struct socket_address addr; addr.addrlen = sizeof(addr.inet); addr.inet.sin_family = AF_INET; addr.inet.sin_addr.s_addr = htonl(INADDR_LOOPBACK); const char *port_str = getenv("SERVAL_MDP_INET_PORT"); if (port_str) start_port = atoi(port_str); uint16_t end_port = start_port+50; uint16_t port; for (port = start_port; port<=end_port; port++){ addr.inet.sin_port = htons(port); if (bind(fd, &addr.addr, addr.addrlen)!=-1){ mdp_sock2_inet.poll.fd = fd; fd = -1; mdp_sock2_inet.poll.events = POLLIN; watch(&mdp_sock2_inet); server_write_proc_state("mdp_inet_port", "%d", port); INFOF("Socket mdp.2.inet: fd=%d %s", fd, alloca_socket_address(&addr)); break; } if (errno != EADDRINUSE) WHY_perror("bind"); } if (fd!=-1){ close(fd); return -1; } } } return 0; } #define MDP_MAX_BINDINGS 100 #define MDP_MAX_SOCKET_NAME_LEN 110 struct mdp_binding{ struct subscriber *subscriber; mdp_port_t port; int version; int (*internal)(struct internal_mdp_header *header, struct overlay_buffer *payload); struct socket_address client; time_ms_t binding_time; }; struct mdp_binding mdp_bindings[MDP_MAX_BINDINGS]; int mdp_bindings_initialised=0; mdp_port_t next_port_binding=256; static int overlay_mdp_reply(int sock, struct socket_address *client, overlay_mdp_frame *mdpreply) { if (!client) return WHY("No reply address"); ssize_t replylen = overlay_mdp_relevant_bytes(mdpreply); if (replylen<0) return WHY("Invalid MDP frame (could not compute length)"); ssize_t r=sendto(sock,(char *)mdpreply,replylen,0, &client->addr, client->addrlen); if (r == -1){ WHYF_perror("sendto(fd=%d,len=%zu,addr=%s)", sock, (size_t)replylen, alloca_socket_address(client)); if (errno == ENOENT){ /* far-end of socket has died, so drop binding */ INFOF("Closing dead MDP client '%s'", alloca_socket_address(client)); overlay_mdp_releasebindings(client); } return -1; } if (r != replylen) return WHYF("sendto() sent %zu bytes of MDP reply (%zu) to %s", (size_t)r, (size_t)replylen, alloca_socket_address(client)); return 0; } static int overlay_mdp_reply_error(int sock, struct socket_address *client, int error_number, char *message) { overlay_mdp_frame mdpreply; mdpreply.packetTypeAndFlags=MDP_ERROR; mdpreply.error.error=error_number; if (error_number) WHYF("MDP error, code #%d %s",error_number, message); if (error_number==0||message) snprintf(&mdpreply.error.message[0],128,"%s",message?message:"Success"); else{ snprintf(&mdpreply.error.message[0],128,"Error code #%d",error_number); } mdpreply.error.message[127]=0; return overlay_mdp_reply(sock, client, &mdpreply); } static int overlay_mdp_reply_ok(int sock, struct socket_address *client, char *message) { return overlay_mdp_reply_error(sock, client, 0, message); } static int overlay_mdp_releasebindings(struct socket_address *client) { /* Free up any MDP bindings held by this client. */ int i; for(i=0;isid) : "NULL", port); if (port == 0){ return WHYF("Port %d cannot be bound", port); } if (!mdp_bindings_initialised) { /* Mark all slots as unused */ int i; for(i=0;iaddrlen; memcpy(&mdp_bindings[free].client.addr, &client->addr, client->addrlen); mdp_bindings[free].binding_time=gettime_ms(); return 0; } int mdp_bind_internal(struct subscriber *subscriber, mdp_port_t port, int (*internal)(struct internal_mdp_header *header, struct overlay_buffer *payload)) { int i; struct mdp_binding *free_slot=NULL; if (!mdp_bindings_initialised) { /* Mark all slots as unused */ int i; for(i=0;isubscriber=subscriber; free_slot->port=port; free_slot->version=1; free_slot->internal=internal; free_slot->binding_time=gettime_ms(); return 0; } int mdp_unbind_internal(struct subscriber *subscriber, mdp_port_t port, int (*internal)(struct internal_mdp_header *header, struct overlay_buffer *payload)) { int i; for(i=0;i>=1; header->destination_port = port; if (!same) port = ob_get_packed_ui32(buff); header->source_port = port; } static struct overlay_buffer *overlay_mdp_decrypt(struct internal_mdp_header *header, struct overlay_buffer *payload) { IN(); /* Indicate MDP message type */ struct overlay_buffer *ret=NULL; switch(header->crypt_flags) { case MDP_FLAG_NO_CRYPT|MDP_FLAG_NO_SIGN: /* nothing to do, b already points to the plain text */ overlay_mdp_decode_header(header, payload); ret = ob_slice(payload, ob_position(payload), ob_remaining(payload)); ob_limitsize(ret, ob_remaining(payload)); break; default: case MDP_FLAG_NO_SIGN: WHY("decryption not implemented"); break; case MDP_FLAG_NO_CRYPT: { int len = ob_remaining(payload); if (crypto_verify_message(header->source, ob_current_ptr(payload), &len)) break; ret = ob_slice(payload, ob_position(payload), len); ob_limitsize(ret, len); overlay_mdp_decode_header(header, ret); break; } case 0: { //int nm=crypto_box_curve25519xsalsa20poly1305_BEFORENMBYTES; int nb=crypto_box_curve25519xsalsa20poly1305_NONCEBYTES; int zb=crypto_box_curve25519xsalsa20poly1305_ZEROBYTES; int cz=crypto_box_curve25519xsalsa20poly1305_BOXZEROBYTES; unsigned char *k=keyring_get_nm_bytes(&header->destination->sid, &header->source->sid); if (!k){ WHY("I don't have the private key required to decrypt that"); break; } unsigned char *nonce=ob_get_bytes_ptr(payload, nb); if (!nonce){ WHYF("Expected %d bytes of nonce", nb); break; } int cipher_len=ob_remaining(payload); unsigned char *cipher_text=ob_get_bytes_ptr(payload, cipher_len); if (!cipher_text){ WHYF("Expected %d bytes of cipher text", cipher_len); break; } struct overlay_buffer *plaintext = ob_new(); if (!ob_makespace(plaintext, cipher_len+cz)){ ob_free(plaintext); break; } ob_limitsize(plaintext, cipher_len+cz); unsigned char *plain_block = ob_ptr(plaintext); bzero(plain_block, cz); bcopy(cipher_text, &plain_block[cz], cipher_len); cipher_len+=cz; if (crypto_box_curve25519xsalsa20poly1305_open_afternm (plain_block,plain_block,cipher_len,nonce,k)) { ob_free(plaintext); WHYF("crypto_box_open_afternm() failed (from %s, to %s, len %d)", alloca_tohex_sid_t(header->source->sid), alloca_tohex_sid_t(header->destination->sid), cipher_len); break; } // consume leading zero bytes ob_get_bytes_ptr(plaintext, zb); overlay_mdp_decode_header(header, plaintext); ret=plaintext; break; } } RETURN(ret); OUT(); } int overlay_saw_mdp_containing_frame(struct overlay_frame *f) { IN(); /* Take frame source and destination and use them to populate mdp->in->{src,dst} SIDs. Take ports from mdp frame itself. Take payload from mdp frame itself. */ overlay_mdp_frame mdp; bzero(&mdp, sizeof(overlay_mdp_frame)); struct internal_mdp_header header; bzero(&header, sizeof header); header.qos = mdp.out.queue = f->queue; header.ttl = mdp.out.ttl = f->ttl; header.source = f->source; header.destination = f->destination; header.receive_interface = f->interface; if (!(f->modifiers & OF_CRYPTO_CIPHERED)) header.crypt_flags |= MDP_FLAG_NO_CRYPT; if (!(f->modifiers & OF_CRYPTO_SIGNED)) header.crypt_flags |= MDP_FLAG_NO_SIGN; /* Get source and destination addresses */ mdp.out.dst.sid = (f->destination) ? f->destination->sid : SID_BROADCAST; mdp.out.src.sid = f->source->sid; /* copy crypto flags from frame so that we know if we need to decrypt or verify it */ struct overlay_buffer *mdp_payload = overlay_mdp_decrypt(&header, f->payload); if (mdp_payload==NULL) RETURN(-1); /* and do something with it! */ int ret=overlay_saw_mdp_frame(&header, mdp_payload); ob_free(mdp_payload); RETURN(ret); OUT(); } void mdp_init_response(const struct internal_mdp_header *in, struct internal_mdp_header *out) { out->source = in->destination ? in->destination : my_subscriber; out->source_port = in->destination_port; out->destination = in->source; out->destination_port = in->source_port; out->ttl = 0; out->qos = in->qos; } static int overlay_saw_mdp_frame( struct internal_mdp_header *header, struct overlay_buffer *payload) { IN(); if (!allow_inbound_packet(header)) RETURN(0); /* Regular MDP frame addressed to us. Look for matching port binding, and if available, push to client. Else do nothing, or if we feel nice send back a connection refused type message? Silence is probably the more prudent path. */ if (config.debug.mdprequests) DEBUGF("Received packet (MDP ports: src=%s*:%"PRImdp_port_t", dst=%"PRImdp_port_t")", alloca_tohex_sid_t_trunc(header->source->sid, 14), header->source_port, header->destination_port); int match=-1; int i; for(i=0;idestination_port) continue; if ((!header->destination) || mdp_bindings[i].subscriber == header->destination){ /* exact match, so stop searching */ match=i; break; }else if (!mdp_bindings[i].subscriber){ /* If we find an "ANY" binding, remember it. But we will prefer an exact match if we find one */ match=i; } } if (match>-1) { switch(mdp_bindings[match].version){ case 0: { overlay_mdp_frame mdp; bzero(&mdp, sizeof mdp); ob_checkpoint(payload); overlay_mdp_fill_legacy(header, payload, &mdp); ob_rewind(payload); ssize_t len = overlay_mdp_relevant_bytes(&mdp); if (len < 0) RETURN(WHY("unsupported MDP packet type")); struct socket_address *client = &mdp_bindings[match].client; if (config.debug.mdprequests) DEBUGF("Forwarding packet to client %s", alloca_socket_address(client)); ssize_t r = sendto(mdp_sock.poll.fd, &mdp, len, 0, &client->addr, client->addrlen); if (r == -1){ WHYF_perror("sendto(fd=%d,len=%zu,addr=%s)", mdp_sock.poll.fd, (size_t)len, alloca_socket_address(client)); if (errno == ENOENT){ /* far-end of socket has died, so drop binding */ INFOF("Closing dead MDP client '%s'", alloca_socket_address(client)); overlay_mdp_releasebindings(client); } RETURN(-1); } if (r != len) RETURN(WHYF("sendto() sent %zu bytes of MDP reply (%zu) to %s", (size_t)r, (size_t)len, alloca_socket_address(client))); RETURN(0); } case 1: { if (mdp_bindings[match].internal) RETURN(mdp_bindings[match].internal(header, payload)); struct socket_address *client = &mdp_bindings[match].client; struct mdp_header client_header; client_header.local.sid=header->destination?header->destination->sid:SID_BROADCAST; client_header.local.port=header->destination_port; client_header.remote.sid=header->source->sid; client_header.remote.port=header->source_port; client_header.qos=header->qos; client_header.ttl=header->ttl; client_header.flags=header->crypt_flags; if (config.debug.mdprequests) DEBUGF("Forwarding packet to client v2 %s", alloca_socket_address(client)); size_t len = ob_remaining(payload); const uint8_t *ptr = ob_get_bytes_ptr(payload, len); RETURN(mdp_send2(client, &client_header, ptr, len)); } } } else { /* 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", header->source_port, header->destination_port)); } RETURN(0); OUT(); } int overlay_mdp_dnalookup_reply(struct subscriber *dest, mdp_port_t dest_port, struct subscriber *resolved_sid, const char *uri, const char *did, const char *name) { if (config.debug.mdprequests) DEBUGF("MDP_PORT_DNALOOKUP resolved_sid=%s uri=%s did=%s name=%s", alloca_tohex_sid_t(resolved_sid->sid), alloca_str_toprint(uri), alloca_str_toprint(did), alloca_str_toprint(name) ); struct internal_mdp_header header; bzero(&header, sizeof header); header.qos = OQ_ORDINARY; header.source = resolved_sid; header.source_port = MDP_PORT_DNALOOKUP; header.destination = dest; header.destination_port = dest_port; /* build reply as TOKEN|URI|DID|NAME| */ char buff[256]; strbuf b = strbuf_local(buff, sizeof buff); strbuf_tohex(b, SID_STRLEN, resolved_sid->sid.binary); strbuf_sprintf(b, "|%s|%s|%s|", uri, did, name?name:""); if (strbuf_overrun(b)) return WHY("MDP payload overrun"); struct overlay_buffer *payload = ob_static((unsigned char*)buff, sizeof buff); ob_limitsize(payload, strlen(buff)); int ret = overlay_send_frame(&header, payload); ob_free(payload); return ret; } static int overlay_mdp_check_binding(struct subscriber *subscriber, mdp_port_t port, struct socket_address *client) { /* System generated frames can send anything they want */ if (!client) return 0; /* Check if the address is in the list of bound addresses, and that the recvaddr matches. */ int i; for(i = 0; i < MDP_MAX_BINDINGS; ++i) { if (mdp_bindings[i].port != port) continue; if ((!mdp_bindings[i].subscriber) || mdp_bindings[i].subscriber == subscriber) { /* Binding matches, now make sure the sockets match */ if (cmp_sockaddr(&mdp_bindings[i].client, client)==0) { /* Everything matches, so this unix socket and MDP address combination is valid */ return 0; } } } return WHYF("No matching binding: addr=%s port=%"PRImdp_port_t" -- possible spoofing attack", alloca_tohex_sid_t(subscriber->sid), port ); } void overlay_mdp_encode_ports(struct overlay_buffer *plaintext, mdp_port_t dst_port, mdp_port_t src_port) { mdp_port_t port = dst_port << 1; if (dst_port == src_port) port |= 1; ob_append_packed_ui32(plaintext, port); if (dst_port != src_port) ob_append_packed_ui32(plaintext, src_port); } static struct overlay_buffer * encrypt_payload( struct subscriber *source, struct subscriber *dest, const unsigned char *buffer, int cipher_len) { int zb=crypto_box_curve25519xsalsa20poly1305_ZEROBYTES; int nb=crypto_box_curve25519xsalsa20poly1305_NONCEBYTES; int cz=crypto_box_curve25519xsalsa20poly1305_BOXZEROBYTES; // generate plain message with leading zero bytes and get ready to cipher it // TODO, add support for leading zero's in overlay_buffer's, so we don't need to copy the plain text unsigned char plain[zb+cipher_len]; /* zero bytes */ bzero(&plain[0],zb); bcopy(buffer,&plain[zb],cipher_len); cipher_len+=zb; struct overlay_buffer *ret = ob_new(); if (ret == NULL) return NULL; unsigned char *nonce = ob_append_space(ret, nb+cipher_len); if (!nonce){ ob_free(ret); return NULL; } unsigned char *cipher_text = nonce + nb; if (generate_nonce(nonce,nb)){ ob_free(ret); WHY("generate_nonce() failed to generate nonce"); return NULL; } // reserve the high bit of the nonce as a flag for transmitting a shorter nonce. nonce[0]&=0x7f; /* get pre-computed PKxSK bytes (the slow part of auth-cryption that can be retained and reused, and use that to do the encryption quickly. */ unsigned char *k=keyring_get_nm_bytes(&source->sid, &dest->sid); if (!k) { ob_free(ret); WHY("could not compute Curve25519(NxM)"); return NULL; } /* Actually authcrypt the payload */ if (crypto_box_curve25519xsalsa20poly1305_afternm(cipher_text, plain,cipher_len, nonce, k)) { ob_free(ret); WHY("crypto_box_afternm() failed"); return NULL; } #if 0 if (config.debug.crypto) { DEBUG("authcrypted mdp frame"); dump("nm",k,crypto_box_curve25519xsalsa20poly1305_BEFORENMBYTES); dump("plain text",plain,sizeof(plain)); dump("nonce",nonce,nb); dump("cipher text",cipher_text,cipher_len); } #endif /* now shuffle down to get rid of the temporary space that crypto_box uses. TODO extend overlay buffer so we don't need this. */ bcopy(&cipher_text[cz],&cipher_text[0],cipher_len-cz); ret->position-=cz; #if 0 if (config.debug.crypto) dump("frame", &ret->bytes[0], ret->position); #endif return ret; } // encrypt or sign the plaintext, then queue the frame for transmission. // Note, the position of the payload MUST be at the start of the data, the limit MUST be used to specify the end int _overlay_send_frame(struct __sourceloc whence, struct internal_mdp_header *header, struct overlay_buffer *payload) { if ((!header->destination) || header->destination->reachable == REACHABLE_SELF){ ob_checkpoint(payload); overlay_saw_mdp_frame(header, payload); ob_rewind(payload); if (header->destination) { /* Is local, and is not broadcast, so shouldn't get sent out on the wire. */ if (config.debug.mdprequests) DEBUGF("Local packet, not transmitting"); return 0; } } if (!allow_outbound_packet(header)) return 0; if (header->ttl == 0) header->ttl = PAYLOAD_TTL_DEFAULT; else if (header->ttl > PAYLOAD_TTL_MAX) return WHYF("Invalid TTL"); if (header->qos == 0) header->qos = OQ_ORDINARY; if (!header->source) return WHYF("No source specified"); if (config.debug.mdprequests) DEBUGF("Attempting to queue mdp packet from %s:%d to %s:%d", alloca_tohex_sid_t(header->source->sid), header->source_port, header->destination?alloca_tohex_sid_t(header->destination->sid):"broadcast", header->destination_port); /* Prepare the overlay frame for dispatch */ struct overlay_frame *frame = emalloc_zero(sizeof(struct overlay_frame)); if (!frame) return -1; frame->source = header->source; frame->destination = header->destination; frame->ttl = header->ttl; frame->queue = header->qos; frame->type = OF_TYPE_DATA; if (!(header->crypt_flags & MDP_FLAG_NO_CRYPT)) frame->modifiers |= OF_CRYPTO_CIPHERED; if (!(header->crypt_flags & MDP_FLAG_NO_SIGN)) frame->modifiers |= OF_CRYPTO_SIGNED; // copy the plain text message into a new buffer, with the wire encoded port numbers struct overlay_buffer *plaintext=ob_new(); if (!plaintext){ op_free(frame); return -1; } overlay_mdp_encode_ports(plaintext, header->destination_port, header->source_port); if (payload && ob_remaining(payload)){ ob_append_bytes(plaintext, ob_current_ptr(payload), ob_remaining(payload)); } if (ob_overrun(plaintext)) { if (config.debug.mdprequests) DEBUGF("Frame overrun: position=%zu allocSize=%zu sizeLimit=%zu", plaintext->position, plaintext->allocSize, plaintext->sizeLimit); op_free(frame); ob_free(plaintext); return -1; } if (config.debug.mdprequests) { DEBUGF("Send frame %zu bytes", ob_position(plaintext)); if (config.debug.verbose) dump("Frame plaintext", ob_ptr(plaintext), ob_position(plaintext)); } /* Work out the disposition of the frame-> For now we are only worried about the crypto matters, and not compression that may be applied before encryption (since applying it after is useless as ciphered text should have maximum entropy). */ switch(header->crypt_flags) { case 0: if (!frame->destination){ ob_free(plaintext); op_free(frame); return WHY("Cannot encrypt to broadcast destinations"); } /* crypted and signed (using CryptoBox authcryption primitive) */ frame->payload = encrypt_payload(frame->source, frame->destination, ob_ptr(plaintext), ob_position(plaintext)); if (!frame->payload){ ob_free(plaintext); op_free(frame); return -1; } #if 0 if (config.debug.crypto) dump("Frame signed ciphertext", ob_ptr(frame->payload), ob_position(frame->payload)); #endif break; case MDP_FLAG_NO_CRYPT: // Lets just append some space into the existing payload buffer for the signature, without copying it. frame->payload = plaintext; if ( !ob_makespace(frame->payload, SIGNATURE_BYTES) || crypto_sign_message(frame->source->identity, ob_ptr(frame->payload), frame->payload->allocSize, &frame->payload->position) == -1 ) { op_free(frame); return -1; } #if 0 if (config.debug.crypto) dump("Frame signed plaintext", ob_ptr(frame->payload), ob_position(frame->payload)); #endif break; case MDP_FLAG_NO_CRYPT|MDP_FLAG_NO_SIGN: /* clear text and no signature */ frame->payload = plaintext; break; default: ob_free(plaintext); op_free(frame); return WHY("Invalid encrypt / sign combination"); } if (!frame->destination && frame->ttl>1) overlay_broadcast_generate_address(&frame->broadcast_id); if (_overlay_payload_enqueue(whence, frame)){ op_free(frame); return -1; } return 0; } /* Construct MDP packet frame from overlay_mdp_frame structure (need to add return address from bindings list, and copy payload etc). This is for use by the SERVER. Clients should use overlay_mdp_send() */ static int overlay_mdp_dispatch(overlay_mdp_frame *mdp, struct socket_address *client) { IN(); unsigned __d = 0; if (config.debug.mdprequests) { __d = fd_depth(); DEBUGF("[%u] src=%s*:%"PRImdp_port_t", dst=%s*:%"PRImdp_port_t", recv=%s", __d, alloca_tohex_sid_t_trunc(mdp->out.src.sid, 14), mdp->out.src.port, alloca_tohex_sid_t_trunc(mdp->out.dst.sid, 14), mdp->out.dst.port, client ? alloca_socket_address(client) : "NULL" ); } if (mdp->out.payload_length > sizeof(mdp->out.payload)) FATAL("Payload length is past the end of the buffer"); struct internal_mdp_header header; bzero(&header, sizeof(header)); header.source_port = mdp->out.src.port; header.destination_port = mdp->out.dst.port; header.ttl = mdp->out.ttl; header.qos = mdp->out.queue; if (is_sid_t_any(mdp->out.src.sid)){ /* set source to ourselves */ header.source = my_subscriber; mdp->out.src.sid = header.source->sid; }else if (is_sid_t_broadcast(mdp->out.src.sid)){ /* Nope, I'm sorry but we simply can't send packets from * broadcast addresses. */ RETURN(WHY("Packet had broadcast address as source address")); }else{ // assume all local identities have already been unlocked and marked as SELF. header.source = find_subscriber(mdp->out.src.sid.binary, SID_SIZE, 0); if (!header.source){ RETURN(WHYF("Possible spoofing attempt, tried to send a packet from %s, which is an unknown SID", alloca_tohex_sid_t(mdp->out.src.sid))); } if (header.source->reachable!=REACHABLE_SELF){ RETURN(WHYF("Possible spoofing attempt, tried to send a packet from %s", alloca_tohex_sid_t(mdp->out.src.sid))); } } if (overlay_mdp_check_binding(header.source, header.source_port, client)){ RETURN(overlay_mdp_reply_error (mdp_sock.poll.fd, client,8, "Source address is invalid (you must bind to a source address before" " you can send packets")); } /* Work out if destination is broadcast or not */ if (is_sid_t_broadcast(mdp->out.dst.sid)){ if (config.debug.mdprequests) DEBUGF("[%u] Broadcast packet", __d); /* broadcast packets cannot be encrypted, so complain if MDP_NOCRYPT flag is not set. Also, MDP_NOSIGN must also be applied, until NaCl cryptobox keys can be used for signing. */ if (!(mdp->packetTypeAndFlags&MDP_NOCRYPT)) RETURN(overlay_mdp_reply_error(mdp_sock.poll.fd, client,5, "Broadcast packets cannot be encrypted ")); }else{ header.destination = find_subscriber(mdp->out.dst.sid.binary, SID_SIZE, 1); // should we reply with an error if the destination is not currently routable? } if (header.ttl > PAYLOAD_TTL_MAX) { RETURN(overlay_mdp_reply_error(mdp_sock.poll.fd, client, 9, "TTL out of range")); } if (config.debug.mdprequests) DEBUGF("[%u] destination->sid=%s", __d, header.destination ? alloca_tohex_sid_t(header.destination->sid) : "NULL"); if (mdp->packetTypeAndFlags&MDP_NOCRYPT) header.crypt_flags |= MDP_FLAG_NO_CRYPT; if (mdp->packetTypeAndFlags&MDP_NOSIGN) header.crypt_flags |= MDP_FLAG_NO_SIGN; struct overlay_buffer *buff = ob_static(mdp->out.payload, mdp->out.payload_length); ob_limitsize(buff, mdp->out.payload_length); int ret=overlay_send_frame(&header, buff); ob_free(buff); RETURN(ret); OUT(); } static int search_subscribers(struct subscriber *subscriber, void *context){ struct overlay_mdp_addrlist *response = context; if (response->mode == MDP_ADDRLIST_MODE_SELF && subscriber->reachable != REACHABLE_SELF){ return 0; } if (response->mode == MDP_ADDRLIST_MODE_ROUTABLE_PEERS && (!(subscriber->reachable &REACHABLE))){ return 0; } if (response->mode == MDP_ADDRLIST_MODE_ALL_PEERS && subscriber->reachable == REACHABLE_SELF){ return 0; } if (response->server_sid_count++ >= response->first_sid && response->frame_sid_count < MDP_MAX_SID_REQUEST) response->sids[response->frame_sid_count++] = subscriber->sid; return 0; } int overlay_mdp_address_list(struct overlay_mdp_addrlist *request, struct overlay_mdp_addrlist *response) { if (config.debug.mdprequests) DEBUGF("MDP_GETADDRS first_sid=%u mode=%d", request->first_sid, request->mode); /* Prepare reply packet */ response->mode = request->mode; response->first_sid = request->first_sid; response->frame_sid_count = 0; /* Populate with SIDs */ enum_subscribers(NULL, search_subscribers, response); response->last_sid = response->first_sid + response->frame_sid_count - 1; if (config.debug.mdprequests) DEBUGF("reply MDP_ADDRLIST first_sid=%u last_sid=%u frame_sid_count=%u server_sid_count=%u", response->first_sid, response->last_sid, response->frame_sid_count, response->server_sid_count ); return 0; } struct routing_state{ struct socket_address *client; }; static int routing_table(struct subscriber *subscriber, void *context) { struct routing_state *state = (struct routing_state *)context; overlay_mdp_frame reply; bzero(&reply, sizeof(overlay_mdp_frame)); struct overlay_route_record *r=(struct overlay_route_record *)&reply.out.payload; reply.packetTypeAndFlags=MDP_TX; reply.out.payload_length=sizeof(struct overlay_route_record); r->sid = subscriber->sid; r->reachable = subscriber->reachable; if (subscriber->reachable==REACHABLE_INDIRECT && subscriber->next_hop) r->neighbour = subscriber->next_hop->sid; if (subscriber->reachable & REACHABLE_DIRECT && subscriber->destination && subscriber->destination->interface) strcpy(r->interface_name, subscriber->destination->interface->name); else r->interface_name[0]=0; overlay_mdp_reply(mdp_sock.poll.fd, state->client, &reply); return 0; } struct scan_state{ struct sched_ent alarm; overlay_interface *interface; uint32_t current; uint32_t last; }; struct scan_state scans[OVERLAY_MAX_INTERFACES]; static void overlay_mdp_scan(struct sched_ent *alarm) { struct socket_address addr; bzero(&addr, sizeof(addr)); addr.addrlen = sizeof(addr.inet); addr.inet.sin_family=AF_INET; addr.inet.sin_port=htons(PORT_DNA); struct scan_state *state = (struct scan_state *)alarm; uint32_t stop = state->last; if (stop - state->current > 25) stop = state->current+25; while(state->current <= stop){ addr.inet.sin_addr.s_addr=htonl(state->current); if (addr.inet.sin_addr.s_addr != state->interface->address.inet.sin_addr.s_addr){ struct network_destination *destination = create_unicast_destination(&addr, state->interface); if (!destination) break; int ret = overlay_send_probe(NULL, destination, OQ_ORDINARY); release_destination_ref(destination); if (ret) break; } state->current++; } if (state->current <= state->last){ time_ms_t now = gettime_ms(); RESCHEDULE(alarm, now+500, now+500, TIME_MS_NEVER_WILL); }else{ DEBUG("Scan completed"); state->interface=NULL; state->current=0; state->last=0; } } static int mdp_reply2(const struct socket_address *client, const struct mdp_header *header, int flags, const unsigned char *payload, size_t payload_len) { struct mdp_header response_header; bcopy(header, &response_header, sizeof(response_header)); response_header.flags = flags; return mdp_send2(client, &response_header, payload, payload_len); } #define mdp_reply_error(A,B) mdp_reply2(A,B,MDP_FLAG_ERROR,NULL,0) #define mdp_reply_ok(A,B) mdp_reply2(A,B,MDP_FLAG_CLOSE,NULL,0) static int mdp_process_identity_request(struct socket_address *client, struct mdp_header *header, struct overlay_buffer *payload) { if (ob_remaining(payload)context_count; cn > 0;) { keyring_context *cx = keyring->contexts[--cn]; unsigned in; for (in = cx->identity_count; in > 0;) { keyring_identity *id = cx->identities[--in]; if (id->subscriber != my_subscriber && strcmp(id->PKRPin, pin) == 0) keyring_release_identity(keyring, cn, in); } } } } break; case TYPE_SID: while(1){ const sid_t *sid=(const sid_t*)ob_get_bytes_ptr(payload,SID_SIZE); if (sid==NULL) break; keyring_release_subscriber(keyring, sid); } break; default: mdp_reply_error(client, header); return WHY("Unknown request type"); } break; case ACTION_UNLOCK: { if (request.type!=TYPE_PIN){ mdp_reply_error(client, header); return WHY("Unknown request type"); } int unlock_count=0; while(1){ const char *pin = ob_get_str_ptr(payload); if (!pin) break; unlock_count += keyring_enter_pin(keyring, pin); } } break; default: mdp_reply_error(client, header); return WHY("Unknown request action"); } mdp_reply_ok(client, header); return 0; } // return one response per matching identity static int mdp_search_identities(struct socket_address *client, struct mdp_header *header, struct overlay_buffer *payload) { unsigned cn=0, in=0, kp=0; const char *tag=NULL; const unsigned char *value=NULL; size_t value_len=0; size_t payload_len = ob_remaining(payload); if (payload_len){ if (keyring_unpack_tag(ob_ptr(payload), payload_len, &tag, &value, &value_len)){ mdp_reply_error(client, header); return -1; } } while(1){ if (value_len){ if (config.debug.mdprequests) DEBUGF("Looking for next %s tag & value", tag); if (!keyring_find_public_tag_value(keyring, &cn, &in, &kp, tag, value, value_len)) break; }else if(tag){ if (config.debug.mdprequests) DEBUGF("Looking for next %s tag", tag); if (!keyring_find_public_tag(keyring, &cn, &in, &kp, tag, NULL, NULL)) break; }else{ if (config.debug.mdprequests) DEBUGF("Looking for next identity"); if (!keyring_next_identity(keyring, &cn, &in, &kp)) break; } keyring_identity *id = keyring->contexts[cn]->identities[in]; unsigned char reply_payload[1200]; size_t ofs=0; bcopy(id->subscriber->sid.binary, &reply_payload[ofs], sizeof(id->subscriber->sid)); ofs+=sizeof(id->subscriber->sid); // TODO return other details of this identity mdp_reply2(client, header, 0, reply_payload, ofs); kp++; } mdp_reply_ok(client, header); return 0; } static void mdp_process_packet(struct socket_address *client, struct mdp_header *header, struct overlay_buffer *payload) { struct internal_mdp_header internal_header; bzero(&internal_header, sizeof(internal_header)); if ((header->flags & MDP_FLAG_CLOSE) && header->local.port==0){ int i; for(i=0;isid):"All", mdp_bindings[i].port, alloca_socket_address(client)); mdp_bindings[i].port=0; } } // should we expect clients to wait? return; } // find local sid if (is_sid_t_broadcast(header->local.sid)){ // leave source NULL to indicate listening on all local SID's // note that attempting anything else will fail }else if (is_sid_t_any(header->local.sid)){ // leaving the sid blank indicates that we should use our main identity internal_header.source = my_subscriber; header->local.sid = my_subscriber->sid; }else{ // find the matching sid from our keyring internal_header.source = find_subscriber(header->local.sid.binary, sizeof(header->local.sid), 0); if (!internal_header.source || internal_header.source->reachable != REACHABLE_SELF){ WHY("Subscriber is not local"); mdp_reply_error(client, header); return; } } struct mdp_binding *binding=NULL, *free_slot=NULL; // assign the next available port number if (header->local.port==0 && header->flags & MDP_FLAG_BIND){ again: if (next_port_binding > 32*1024) next_port_binding=256; else next_port_binding++; unsigned i; for(i=0;ilocal.port=next_port_binding; } internal_header.source_port = header->local.port; internal_header.destination_port = header->remote.port; internal_header.ttl = header->ttl; internal_header.qos = header->qos; // find matching binding { unsigned i; for(i=0;ilocal.port && mdp_bindings[i].subscriber == internal_header.source){ binding = &mdp_bindings[i]; break; } } } if (header->flags & MDP_FLAG_BIND){ if (binding){ WHYF("Port %d already bound", header->local.port); mdp_reply_error(client, header); return; } if (!free_slot){ WHY("Max supported bindings reached"); mdp_reply_error(client, header); return; } if (config.debug.mdprequests) DEBUGF("Bind MDP %s:%d to %s", alloca_tohex_sid_t(header->local.sid), header->local.port, alloca_socket_address(client)); // claim binding binding = free_slot; binding->port = header->local.port; binding->subscriber = internal_header.source; bcopy(&client->addr, &binding->client.addr, client->addrlen); binding->client.addrlen = client->addrlen; binding->binding_time=gettime_ms(); binding->version=1; // tell the client what we actually bound (with flags & MDP_FLAG_BIND still set) mdp_reply2(client, header, MDP_FLAG_BIND, NULL, 0); } if (is_sid_t_any(header->remote.sid)){ // process local commands switch(header->remote.port){ case MDP_LISTEN: // double check that this binding belongs to this connection if (!binding || binding->internal || cmp_sockaddr(&binding->client, client)!=0){ WHYF("Already bound by someone else? %s vs %s", alloca_socket_address(&binding->client), alloca_socket_address(client)); mdp_reply_error(client, header); } break; case MDP_IDENTITY: if (config.debug.mdprequests) DEBUGF("Processing MDP_IDENTITY from %s", alloca_socket_address(client)); mdp_process_identity_request(client, header, payload); break; // seach unlocked identities case MDP_SEARCH_IDS: if (config.debug.mdprequests) DEBUGF("Processing MDP_SEARCH_IDS from %s", alloca_socket_address(client)); mdp_search_identities(client, header, payload); break; case MDP_SYNC_CONFIG: if (config.debug.mdprequests) DEBUGF("Processing MDP_SYNC_CONFIG from %s", alloca_socket_address(client)); server_config_reload(NULL); mdp_reply_ok(client, header); break; default: WHYF("Unknown command port %d", header->remote.port); mdp_reply_error(client, header); break; } }else{ // double check that this binding belongs to this connection if (!binding || binding->internal || !internal_header.source || header->local.port == 0 || cmp_sockaddr(&binding->client, client)!=0){ WHY("Can't send data packet, no matching port binding!"); mdp_reply_error(client, header); return; } if (!is_sid_t_broadcast(header->remote.sid)) internal_header.destination = find_subscriber(header->remote.sid.binary, SID_SIZE, 1); internal_header.crypt_flags = header->flags & (MDP_FLAG_NO_CRYPT|MDP_FLAG_NO_SIGN); // construct, encrypt, sign and queue the packet if (overlay_send_frame( &internal_header, payload)){ mdp_reply_error(client, header); return; } } // remove binding if (binding && !binding->internal && header->flags & MDP_FLAG_CLOSE && cmp_sockaddr(&binding->client, client)==0){ if (config.debug.mdprequests) DEBUGF("Unbind MDP %s:%d from %s", binding->subscriber?alloca_tohex_sid_t(binding->subscriber->sid):"All", binding->port, alloca_socket_address(client)); binding->port=0; binding=NULL; } } static int mdp_send2(const struct socket_address *client, const struct mdp_header *header, const uint8_t *payload, size_t payload_len) { struct iovec iov[]={ { .iov_base = (void *)header, .iov_len = sizeof(struct mdp_header) }, { .iov_base = (void *)payload, .iov_len = payload_len } }; struct msghdr hdr={ .msg_name=(struct sockaddr*)&client->addr, .msg_namelen=client->addrlen, .msg_iov=iov, .msg_iovlen=2, }; int fd=-1; switch(client->addr.sa_family){ case AF_UNIX: fd = mdp_sock2.poll.fd; break; case AF_INET: fd = mdp_sock2_inet.poll.fd; break; } if (fd==-1) return WHYF("Unhandled client family %d", client->addr.sa_family); if (sendmsg(fd, &hdr, 0)<0) return WHY_perror("sendmsg"); return 0; } static void mdp_poll2(struct sched_ent *alarm) { if (alarm->poll.revents & POLLIN) { uint8_t payload[1200]; struct mdp_header header; struct socket_address client; bzero(&client, sizeof client); client.addrlen=sizeof(client.addr); struct iovec iov[]={ { .iov_base = (void *)&header, .iov_len = sizeof header }, { .iov_base = (void *)payload, .iov_len = sizeof payload } }; struct msghdr hdr={ .msg_name=&client.addr, .msg_namelen=sizeof(client.store), .msg_iov=iov, .msg_iovlen=2, }; ssize_t len = recvmsg(alarm->poll.fd, &hdr, 0); if (len == -1){ WHYF_perror("recvmsg(%d,%p,0)", alarm->poll.fd, &hdr); return; } if ((size_t)len < sizeof header) { WHYF("Expected length %zu, got %zu from %s", sizeof header, (size_t)len, alloca_socket_address(&client)); return; } client.addrlen = hdr.msg_namelen; size_t payload_len = (size_t)(len - sizeof header); struct overlay_buffer *buff = ob_static(payload, payload_len); ob_limitsize(buff, payload_len); mdp_process_packet(&client, &header, buff); ob_free(buff); } } static void overlay_mdp_poll(struct sched_ent *alarm) { if (alarm->poll.revents & POLLIN) { unsigned char buffer[16384]; int ttl; struct socket_address client; client.addrlen = sizeof client.store; ttl=-1; ssize_t len = recvwithttl(alarm->poll.fd,buffer,sizeof(buffer),&ttl, &client); if (len == -1) WHYF_perror("recvwithttl(%d,%p,%zu,&%d,%p(%s))", alarm->poll.fd, buffer, sizeof buffer, ttl, &client, alloca_socket_address(&client) ); if ((size_t)len > 0) { if (client.addrlen <= sizeof(sa_family_t)) WHYF("got client.addrlen=%d too short -- ignoring frame len=%zu", (int)client.addrlen, (size_t)len); else { /* Look at overlay_mdp_frame we have received */ overlay_mdp_frame *mdp=(overlay_mdp_frame *)&buffer[0]; unsigned int mdp_type = mdp->packetTypeAndFlags & MDP_TYPE_MASK; switch (mdp_type) { case MDP_GOODBYE: if (config.debug.mdprequests) DEBUGF("MDP_GOODBYE from %s", alloca_socket_address(&client)); overlay_mdp_releasebindings(&client); return; case MDP_ROUTING_TABLE: if (config.debug.mdprequests) DEBUGF("MDP_ROUTING_TABLE from %s", alloca_socket_address(&client)); { struct routing_state state={ .client = &client, }; enum_subscribers(NULL, routing_table, &state); } return; case MDP_GETADDRS: if (config.debug.mdprequests) DEBUGF("MDP_GETADDRS from %s", alloca_socket_address(&client)); { overlay_mdp_frame mdpreply; bzero(&mdpreply, sizeof(overlay_mdp_frame)); mdpreply.packetTypeAndFlags = MDP_ADDRLIST; if (!overlay_mdp_address_list(&mdp->addrlist, &mdpreply.addrlist)) /* Send back to caller */ overlay_mdp_reply(alarm->poll.fd, &client, &mdpreply); return; } break; case MDP_TX: /* Send payload (and don't treat it as system privileged) */ if (config.debug.mdprequests) DEBUGF("MDP_TX from %s", alloca_socket_address(&client)); // Dont allow mdp clients to send very high priority payloads if (mdp->out.queue<=OQ_MESH_MANAGEMENT) mdp->out.queue=OQ_ORDINARY; overlay_mdp_dispatch(mdp, &client); return; break; case MDP_BIND: /* Bind to port */ if (config.debug.mdprequests) DEBUGF("MDP_BIND from %s", alloca_socket_address(&client)); { struct subscriber *subscriber=NULL; /* Make sure source address is either all zeros (listen on all), or a valid local address */ if (!is_sid_t_any(mdp->bind.sid)){ subscriber = find_subscriber(mdp->bind.sid.binary, SID_SIZE, 0); if ((!subscriber) || subscriber->reachable != REACHABLE_SELF){ WHYF("Invalid bind request for sid=%s", alloca_tohex_sid_t(mdp->bind.sid)); /* Source address is invalid */ overlay_mdp_reply_error(alarm->poll.fd, &client, 7, "Bind address is not valid (must be a local MDP address, or all zeroes)."); return; } } if (overlay_mdp_process_bind_request(subscriber, mdp->bind.port, mdp->packetTypeAndFlags, &client)) overlay_mdp_reply_error(alarm->poll.fd, &client, 3, "Port already in use"); else overlay_mdp_reply_ok(alarm->poll.fd, &client, "Port bound"); return; } break; case MDP_SCAN: if (config.debug.mdprequests) DEBUGF("MDP_SCAN from %s", alloca_socket_address(&client)); { struct overlay_mdp_scan *scan = (struct overlay_mdp_scan *)&mdp->raw; time_ms_t start=gettime_ms(); if (scan->addr.s_addr==0){ int i=0; for (i=0;istate!=INTERFACE_STATE_UP) continue; if (interface->address.addr.sa_family!=AF_INET) continue; scans[i].interface = interface; scans[i].current = ntohl(interface->address.inet.sin_addr.s_addr & ~interface->netmask.s_addr)+1; scans[i].last = ntohl(interface->destination->address.inet.sin_addr.s_addr)-1; if (scans[i].last - scans[i].current>0x10000){ INFOF("Skipping scan on interface %s as the address space is too large (%04x %04x)", interface->name, scans[i].last, scans[i].current); continue; } scans[i].alarm.function=overlay_mdp_scan; RESCHEDULE(&scans[i].alarm, start, start, start+500); start+=100; } }else{ struct overlay_interface *interface = overlay_interface_find(scan->addr, 1); if (!interface){ overlay_mdp_reply_error(alarm->poll.fd, &client, 1, "Unable to find matching interface"); return; } int i = interface - overlay_interfaces; if (!scans[i].interface){ scans[i].interface = interface; scans[i].current = ntohl(scan->addr.s_addr); scans[i].last = ntohl(scan->addr.s_addr); scans[i].alarm.function=overlay_mdp_scan; RESCHEDULE(&scans[i].alarm, start, start, start+500); } } overlay_mdp_reply_ok(alarm->poll.fd, &client, "Scan initiated"); } break; default: /* Client is not allowed to send any other frame type */ WARNF("Unsupported MDP frame type [%d] from %s", mdp_type, alloca_socket_address(&client)); overlay_mdp_reply_error(alarm->poll.fd, &client, 2, "Illegal request type. Clients may use only MDP_TX or MDP_BIND."); } } } } if (alarm->poll.revents & (POLLHUP | POLLERR)) { INFO("Error on mdp socket"); } return; }