2010-07-13 12:15:46 +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-04-20 09:56:08 +00:00
|
|
|
// #define MALLOC_PARANOIA
|
2012-04-20 06:11:13 +00:00
|
|
|
|
2010-07-13 12:15:46 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
2012-05-10 03:23:57 +00:00
|
|
|
#include <stdarg.h>
|
2010-07-13 12:15:46 +00:00
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
#include <strings.h>
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
2011-12-01 19:14:32 +00:00
|
|
|
#include <signal.h>
|
2012-05-14 09:02:10 +00:00
|
|
|
#include <sys/types.h>
|
2011-03-30 05:04:23 +00:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#include "win32/win32.h"
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
2011-10-16 21:41:05 +00:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NET_ROUTE_H
|
|
|
|
#include <net/route.h>
|
|
|
|
#endif
|
2012-04-28 11:14:20 +00:00
|
|
|
#ifdef HAVE_LINUX_IF_H
|
|
|
|
#include <linux/if.h>
|
|
|
|
#else
|
2011-07-08 05:06:54 +00:00
|
|
|
#ifdef HAVE_NET_IF_H
|
|
|
|
#include <net/if.h>
|
|
|
|
#endif
|
2012-04-28 11:14:20 +00:00
|
|
|
#endif
|
2011-07-08 05:06:54 +00:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LINUX_NETLINK_H
|
|
|
|
#include <linux/netlink.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LINUX_RTNETLINK_H
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_IFADDRS_H
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
#endif
|
2012-05-21 02:52:50 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_UCRED_H
|
|
|
|
#include <sys/ucred.h>
|
|
|
|
#endif
|
2011-03-30 05:04:23 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(FORASTERISK) && !defined(s_addr)
|
2010-07-13 12:15:46 +00:00
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#else
|
|
|
|
typedef unsigned int in_addr_t;
|
|
|
|
struct in_addr {
|
|
|
|
in_addr_t s_addr;
|
|
|
|
};
|
|
|
|
#endif
|
2011-03-21 02:38:35 +00:00
|
|
|
#endif
|
2011-03-30 05:04:23 +00:00
|
|
|
|
2010-07-13 12:15:46 +00:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_POLL_H
|
|
|
|
#include <poll.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CTYPE_H
|
|
|
|
#include <ctype.h>
|
|
|
|
#endif
|
2011-03-30 05:04:23 +00:00
|
|
|
|
|
|
|
#ifndef WIN32
|
2010-07-13 12:15:46 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/un.h>
|
2011-03-30 05:04:23 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-13 12:15:46 +00:00
|
|
|
#include <fcntl.h>
|
2011-03-30 05:04:23 +00:00
|
|
|
//FIXME #include <getopt.h>
|
2010-07-13 12:15:46 +00:00
|
|
|
#include <ctype.h>
|
2012-05-10 07:28:25 +00:00
|
|
|
#include <sys/stat.h>
|
2010-07-13 12:15:46 +00:00
|
|
|
|
2012-02-16 14:33:59 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
#define DEFAULT_INSTANCE_PATH "/data/data/org.servalproject/var/serval-node"
|
|
|
|
#else
|
|
|
|
#define DEFAULT_INSTANCE_PATH "/var/serval-node"
|
|
|
|
#endif
|
|
|
|
|
2012-05-14 09:02:10 +00:00
|
|
|
/* bzero(3) is deprecated in favour of memset(3). */
|
|
|
|
#define bzero(addr,len) memset((addr), 0, (len))
|
|
|
|
|
2011-08-08 14:41:46 +00:00
|
|
|
/* UDP Port numbers for various Serval services.
|
|
|
|
The overlay mesh works over DNA */
|
2011-04-27 11:48:09 +00:00
|
|
|
#define PORT_DNA 4110
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
/* OpenWRT libc doesn't have bcopy, but has memmove */
|
|
|
|
#define bcopy(A,B,C) memmove(B,A,C)
|
|
|
|
|
|
|
|
#define BATCH 1
|
|
|
|
#define NONBATCH 0
|
|
|
|
|
|
|
|
#define REQ_SERIAL 0
|
|
|
|
#define REQ_PARALLEL -1
|
|
|
|
#define REQ_FIRSTREPLY -2
|
|
|
|
#define REQ_REPLY -101
|
|
|
|
|
|
|
|
|
|
|
|
#define SET_NOREPLACE 1
|
|
|
|
#define SET_REPLACE 2
|
|
|
|
#define SET_NOCREATE 3
|
|
|
|
#define SET_FRAGMENT 0x80
|
|
|
|
|
|
|
|
#define WITHDATA 1
|
|
|
|
#define WITHOUTDATA 0
|
|
|
|
|
|
|
|
/* Limit packet payloads to minimise packet loss of big packets in mesh networks */
|
|
|
|
#define MAX_DATA_BYTES 256
|
|
|
|
|
|
|
|
extern int debug;
|
2012-05-21 02:50:05 +00:00
|
|
|
extern int dnatimeout;
|
2010-07-13 12:15:46 +00:00
|
|
|
extern int hlr_size;
|
|
|
|
extern unsigned char *hlr;
|
|
|
|
|
|
|
|
double simulatedBER;
|
|
|
|
|
|
|
|
extern int serverMode;
|
2012-03-04 22:57:31 +00:00
|
|
|
extern int servalShutdown;
|
2010-07-13 12:15:46 +00:00
|
|
|
|
2011-12-04 07:18:51 +00:00
|
|
|
extern int returnMultiVars;
|
|
|
|
|
2011-08-10 13:38:59 +00:00
|
|
|
extern char *gatewayspec;
|
2011-05-06 02:27:33 +00:00
|
|
|
|
2012-05-15 03:26:10 +00:00
|
|
|
int rhizome_enabled();
|
|
|
|
const char *rhizome_datastore_path();
|
2011-12-17 01:41:32 +00:00
|
|
|
|
2010-07-13 12:15:46 +00:00
|
|
|
extern struct in_addr client_addr;
|
|
|
|
extern int client_port;
|
|
|
|
|
|
|
|
#define MAX_PEERS 1024
|
|
|
|
extern int peer_count;
|
2011-04-27 11:48:09 +00:00
|
|
|
extern struct in_addr peers[MAX_PEERS];
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
struct mphlr_variable {
|
|
|
|
unsigned char id;
|
|
|
|
char *name;
|
|
|
|
char *desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern char *outputtemplate;
|
2011-05-05 09:10:38 +00:00
|
|
|
extern char *instrumentation_file;
|
2010-07-13 12:15:46 +00:00
|
|
|
extern char *batman_socket;
|
2011-03-21 02:38:35 +00:00
|
|
|
extern char *batman_peerfile;
|
2010-07-13 12:15:46 +00:00
|
|
|
|
2012-04-12 23:55:03 +00:00
|
|
|
|
|
|
|
typedef struct keypair {
|
|
|
|
int type;
|
|
|
|
unsigned char *private_key;
|
|
|
|
int private_key_len;
|
|
|
|
unsigned char *public_key;
|
|
|
|
int public_key_len;
|
|
|
|
} keypair;
|
|
|
|
|
|
|
|
/* Contains just the list of private:public key pairs and types,
|
|
|
|
the pin used to extract them, and the slot in the keyring file
|
|
|
|
(so that it can be replaced/rewritten as required). */
|
|
|
|
#define PKR_MAX_KEYPAIRS 64
|
|
|
|
#define PKR_SALT_BYTES 32
|
|
|
|
#define PKR_MAC_BYTES 64
|
|
|
|
typedef struct keyring_identity {
|
|
|
|
char *PKRPin;
|
|
|
|
unsigned int slot;
|
|
|
|
int keypair_count;
|
|
|
|
keypair *keypairs[PKR_MAX_KEYPAIRS];
|
|
|
|
} keyring_identity;
|
|
|
|
|
|
|
|
/* 64K identities, can easily be increased should the need arise,
|
|
|
|
but keep it low-ish for now so that the 64K pointers don't eat too
|
|
|
|
much ram on a small device. Should probably think about having
|
|
|
|
small and large device settings for some of these things */
|
|
|
|
#define KEYRING_MAX_IDENTITIES 65536
|
|
|
|
typedef struct keyring_context {
|
|
|
|
char *KeyRingPin;
|
|
|
|
unsigned char *KeyRingSalt;
|
|
|
|
int KeyRingSaltLen;
|
|
|
|
|
|
|
|
int identity_count;
|
|
|
|
keyring_identity *identities[KEYRING_MAX_IDENTITIES];
|
|
|
|
} keyring_context;
|
|
|
|
|
|
|
|
#define KEYRING_PAGE_SIZE 4096LL
|
|
|
|
#define KEYRING_BAM_BYTES 2048LL
|
|
|
|
#define KEYRING_BAM_BITS (KEYRING_BAM_BYTES<<3)
|
|
|
|
#define KEYRING_SLAB_SIZE (KEYRING_PAGE_SIZE*KEYRING_BAM_BITS)
|
|
|
|
typedef struct keyring_bam {
|
|
|
|
off_t file_offset;
|
|
|
|
unsigned char bitmap[KEYRING_BAM_BYTES];
|
|
|
|
struct keyring_bam *next;
|
|
|
|
} keyring_bam;
|
|
|
|
|
|
|
|
#define KEYRING_MAX_CONTEXTS 256
|
|
|
|
typedef struct keyring_file {
|
|
|
|
int context_count;
|
|
|
|
keyring_bam *bam;
|
|
|
|
keyring_context *contexts[KEYRING_MAX_CONTEXTS];
|
|
|
|
FILE *file;
|
|
|
|
off_t file_size;
|
|
|
|
} keyring_file;
|
|
|
|
|
|
|
|
void keyring_free(keyring_file *k);
|
|
|
|
void keyring_free_context(keyring_context *c);
|
|
|
|
void keyring_free_identity(keyring_identity *id);
|
|
|
|
void keyring_free_keypair(keypair *kp);
|
|
|
|
int keyring_identity_mac(keyring_context *c,keyring_identity *id,
|
|
|
|
unsigned char *pkrsalt,unsigned char *mac);
|
|
|
|
#define KEYTYPE_CRYPTOBOX 0x01
|
|
|
|
#define KEYTYPE_CRYPTOSIGN 0x02
|
|
|
|
#define KEYTYPE_RHIZOME 0x03
|
|
|
|
/* DIDs aren't really keys, but the keyring is a real handy place to keep them,
|
|
|
|
and keep them private if people so desire */
|
|
|
|
#define KEYTYPE_DID 0x04
|
|
|
|
|
|
|
|
/* handle to keyring file for use in running instance */
|
|
|
|
extern keyring_file *keyring;
|
|
|
|
|
|
|
|
/* Public calls to keyring management */
|
|
|
|
keyring_file *keyring_open(char *file);
|
2012-04-23 07:42:10 +00:00
|
|
|
keyring_file *keyring_open_with_pins(const char *pinlist);
|
|
|
|
int keyring_enter_pin(keyring_file *k, const char *pin);
|
|
|
|
int keyring_enter_pins(keyring_file *k, const char *pinlist);
|
2012-05-01 05:08:09 +00:00
|
|
|
int keyring_set_did(keyring_identity *id,char *did,char *name);
|
2012-04-13 00:53:59 +00:00
|
|
|
int keyring_sanitise_position(keyring_file *k,int *cn,int *in,int *kp);
|
2012-04-12 23:55:03 +00:00
|
|
|
int keyring_next_identity(keyring_file *k,int *cn,int *in,int *kp);
|
|
|
|
int keyring_find_did(keyring_file *k,int *cn,int *in,int *kp,char *did);
|
|
|
|
int keyring_find_sid(keyring_file *k,int *cn,int *in,int *kp,unsigned char *sid);
|
2012-04-15 20:36:43 +00:00
|
|
|
unsigned char *keyring_find_sas_private(keyring_file *k,unsigned char *sid,
|
|
|
|
unsigned char **sas_public);
|
2012-04-14 17:47:36 +00:00
|
|
|
unsigned char *keyring_find_sas_public(keyring_file *k,unsigned char *sid);
|
|
|
|
|
2012-04-12 23:55:03 +00:00
|
|
|
int keyring_commit(keyring_file *k);
|
|
|
|
keyring_identity *keyring_create_identity(keyring_file *k,keyring_context *c,
|
|
|
|
char *pin);
|
|
|
|
int keyring_seed(keyring_file *k);
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
/* Packet format:
|
|
|
|
|
|
|
|
16 bit - Magic value 0x4110
|
|
|
|
16 bit - Version number (0001 initially)
|
|
|
|
16 bit - Payload length
|
|
|
|
16 bit - Cipher method (0000 = clear text)
|
|
|
|
|
|
|
|
Ciphered payload follows:
|
|
|
|
(needs to have no predictable data to protect against known plain-text attacks)
|
|
|
|
|
|
|
|
64bit transaction id (random)
|
|
|
|
8bit - payload rotation (random, to help protect encryption from cribs)
|
|
|
|
|
|
|
|
Remainder of payload, after correcting for rotation:
|
|
|
|
|
|
|
|
33byte did|subscriber id
|
|
|
|
16byte salt
|
|
|
|
16byte hash of PIN+salt
|
|
|
|
|
|
|
|
Remainder of packet is interpretted as a series of operations
|
|
|
|
|
|
|
|
8 bit operation:
|
|
|
|
00 = get, 01 = set, 02 = delete, 03 = update,
|
|
|
|
80 = decline, 81 = okay (+optional result),
|
|
|
|
f0 = xfer HLR record
|
|
|
|
fe = random padding follows (to help protect cryptography from cribs)
|
|
|
|
ff = end of transaction
|
|
|
|
|
|
|
|
get - 8 bit variable value
|
|
|
|
|
|
|
|
*/
|
|
|
|
#define SID_SIZE 32
|
|
|
|
#define DID_MAXSIZE 32
|
|
|
|
#define SIDDIDFIELD_LEN (SID_SIZE+1)
|
|
|
|
#define PINFIELD_LEN 32
|
|
|
|
#define HEADERFIELDS_LEN (2+2+2+2+8+1)
|
|
|
|
#define OFS_TRANSIDFIELD (2+2+2+2)
|
|
|
|
#define TRANSID_SIZE 8
|
|
|
|
#define OFS_ROTATIONFIELD (OFS_TRANSIDFIELD+TRANSID_SIZE)
|
|
|
|
#define OFS_SIDDIDFIELD HEADERFIELDS_LEN
|
|
|
|
#define OFS_PINFIELD (OFS_SIDDIDFIELD+SIDDIDFIELD_LEN)
|
|
|
|
#define OFS_PAYLOAD (OFS_PINFIELD+16+16)
|
|
|
|
|
2012-03-13 08:01:29 +00:00
|
|
|
#define SID_STRLEN (SID_SIZE*2)
|
|
|
|
|
2010-07-13 12:15:46 +00:00
|
|
|
struct response {
|
|
|
|
int code;
|
2012-03-13 08:01:29 +00:00
|
|
|
unsigned char sid[SID_SIZE];
|
2010-07-13 12:15:46 +00:00
|
|
|
struct in_addr sender;
|
2012-02-05 05:45:19 +00:00
|
|
|
int recvttl;
|
2010-07-13 12:15:46 +00:00
|
|
|
unsigned char *response;
|
|
|
|
int response_len;
|
|
|
|
int var_id;
|
|
|
|
int var_instance;
|
|
|
|
int value_len;
|
|
|
|
int value_offset;
|
|
|
|
int value_bytes;
|
|
|
|
struct response *next,*prev;
|
|
|
|
|
|
|
|
/* who sent it? */
|
|
|
|
unsigned short peer_id;
|
|
|
|
/* have we checked it to see if it allows us to stop requesting? */
|
|
|
|
unsigned char checked;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct response_set {
|
|
|
|
struct response *responses;
|
|
|
|
struct response *last_response;
|
|
|
|
int response_count;
|
|
|
|
|
|
|
|
/* Bit mask of peers who have replied */
|
|
|
|
unsigned char *reply_bitmask;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Array of variables that can be placed in an MPHLR */
|
|
|
|
#define VAR_EOR 0x00
|
|
|
|
#define VAR_CREATETIME 0x01
|
|
|
|
#define VAR_CREATOR 0x02
|
|
|
|
#define VAR_REVISION 0x03
|
|
|
|
#define VAR_REVISOR 0x04
|
|
|
|
#define VAR_PIN 0x05
|
|
|
|
#define VAR_VOICESIG 0x08
|
|
|
|
#define VAR_HLRMASTER 0x0f
|
2012-03-06 00:51:10 +00:00
|
|
|
#define VAR_NAME 0x10
|
2010-07-13 12:15:46 +00:00
|
|
|
#define VAR_DIDS 0x80
|
|
|
|
#define VAR_LOCATIONS 0x81
|
|
|
|
#define VAR_IEMIS 0x82
|
|
|
|
#define VAR_TEMIS 0x83
|
|
|
|
#define VAR_CALLS_IN 0x90
|
|
|
|
#define VAR_CALLS_MISSED 0x91
|
|
|
|
#define VAR_CALLS_OUT 0x92
|
|
|
|
#define VAR_SMESSAGES 0xa0
|
|
|
|
#define VAR_DID2SUBSCRIBER 0xb0
|
|
|
|
#define VAR_HLRBACKUPS 0xf0
|
|
|
|
#define VAR_NOTE 0xff
|
|
|
|
extern struct mphlr_variable vars[];
|
|
|
|
|
|
|
|
#define ACTION_GET 0x00
|
|
|
|
#define ACTION_SET 0x01
|
|
|
|
#define ACTION_DEL 0x02
|
|
|
|
#define ACTION_INSERT 0x03
|
2011-05-23 11:35:15 +00:00
|
|
|
#define ACTION_DIGITALTELEGRAM 0x04
|
2010-07-13 12:15:46 +00:00
|
|
|
#define ACTION_CREATEHLR 0x0f
|
|
|
|
|
2011-05-02 13:02:38 +00:00
|
|
|
#define ACTION_STATS 0x40
|
|
|
|
|
2010-07-13 12:15:46 +00:00
|
|
|
#define ACTION_DONE 0x7e
|
|
|
|
#define ACTION_ERROR 0x7f
|
|
|
|
|
|
|
|
#define ACTION_DECLINED 0x80
|
|
|
|
#define ACTION_OKAY 0x81
|
|
|
|
#define ACTION_DATA 0x82
|
|
|
|
#define ACTION_WROTE 0x83
|
|
|
|
|
|
|
|
#define ACTION_XFER 0xf0
|
2012-02-05 05:45:19 +00:00
|
|
|
#define ACTION_RECVTTL 0xfd
|
2010-07-13 12:15:46 +00:00
|
|
|
#define ACTION_PAD 0xfe
|
|
|
|
#define ACTION_EOT 0xff
|
|
|
|
|
|
|
|
extern int hexdigit[16];
|
|
|
|
|
|
|
|
/* Make sure we have space to put bytes of the packet as we go along */
|
2012-05-24 07:41:55 +00:00
|
|
|
#define CHECK_PACKET_LEN(B) {if (((*packet_len)+(B))>=packet_maxlen) { return WHY("Packet composition ran out of space."); } }
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
extern int sock;
|
|
|
|
|
2012-05-15 03:26:10 +00:00
|
|
|
const char *confValueGet(const char *var, const char *defaultValue);
|
|
|
|
int confValueGetBoolean(const char *var, int defaultValue);
|
2012-05-14 09:02:10 +00:00
|
|
|
void confSetDebugFlags();
|
2012-05-15 03:26:10 +00:00
|
|
|
int confParseBoolean(const char *text, const char *option_name);
|
|
|
|
|
2012-02-05 05:45:19 +00:00
|
|
|
int recvwithttl(int sock,unsigned char *buffer,int bufferlen,int *ttl,
|
|
|
|
struct sockaddr *recvaddr,unsigned int *recvaddrlen);
|
2012-04-19 08:33:04 +00:00
|
|
|
int validateSid(const char *sid);
|
|
|
|
int stowSid(unsigned char *packet, int ofs, const char *sid);
|
2012-05-15 10:34:41 +00:00
|
|
|
int stowBytes(unsigned char *packet, const char *in,int count);
|
2010-07-13 12:15:46 +00:00
|
|
|
int stowDid(unsigned char *packet,int *ofs,char *did);
|
|
|
|
int isFieldZeroP(unsigned char *packet,int start,int count);
|
|
|
|
void srandomdev();
|
2012-04-12 23:55:03 +00:00
|
|
|
int respondSimple(keyring_identity *id,
|
|
|
|
int action,unsigned char *action_text,int action_len,
|
2012-02-05 05:45:19 +00:00
|
|
|
unsigned char *transaction_id,int recvttl,
|
|
|
|
struct sockaddr *recvaddr,int cryptoFlags);
|
2010-07-13 12:15:46 +00:00
|
|
|
int requestItem(char *did,char *sid,char *item,int instance,unsigned char *buffer,int buffer_length,int *len,
|
|
|
|
unsigned char *transaction_id);
|
2012-02-05 05:45:19 +00:00
|
|
|
int requestNewHLR(char *did,char *pin,char *sid,int recvttl,struct sockaddr *recvaddr);
|
2012-05-11 01:08:46 +00:00
|
|
|
long long gettime_ms();
|
2012-05-08 01:53:43 +00:00
|
|
|
int server_pid();
|
2012-05-09 09:36:44 +00:00
|
|
|
void server_save_argv(int argc, const char *const *argv);
|
2012-05-07 09:21:05 +00:00
|
|
|
int server(char *backing_file);
|
2012-05-08 01:53:43 +00:00
|
|
|
void server_shutdown_check();
|
2012-05-08 02:49:52 +00:00
|
|
|
int server_create_stopfile();
|
2012-05-08 03:23:59 +00:00
|
|
|
int server_remove_stopfile();
|
2012-05-08 02:49:52 +00:00
|
|
|
int server_check_stopfile();
|
|
|
|
void serverCleanUp();
|
2012-03-01 03:06:36 +00:00
|
|
|
int isTransactionInCache(unsigned char *transaction_id);
|
|
|
|
void insertTransactionInCache(unsigned char *transaction_id);
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
int hexvalue(unsigned char c);
|
2012-05-23 06:34:00 +00:00
|
|
|
char *str_toupper_inplace(char *s);
|
2012-02-05 05:45:19 +00:00
|
|
|
int packetOk(int interface,unsigned char *packet,int len,
|
|
|
|
unsigned char *transaction_id, int recvttl,
|
2011-08-12 19:34:38 +00:00
|
|
|
struct sockaddr *recvaddr,int recvaddrlen,int parseP);
|
2012-02-05 05:45:19 +00:00
|
|
|
int process_packet(unsigned char *packet,int len,
|
|
|
|
int recvttl,struct sockaddr *sender,int sender_len);
|
2011-09-01 07:34:25 +00:00
|
|
|
int packetMakeHeader(unsigned char *packet,int packet_maxlen,int *packet_len,unsigned char *transaction_id,int cryptoflags);
|
2010-07-13 12:15:46 +00:00
|
|
|
int packetSetDid(unsigned char *packet,int packet_maxlen,int *packet_len,char *did);
|
2012-04-12 23:55:03 +00:00
|
|
|
// Deprecated
|
|
|
|
// int packetSetSid(unsigned char *packet,int packet_maxlen,int *packet_len,char *sid);
|
|
|
|
int packetSetSidFromId(unsigned char *packet,int packet_maxlen,int *packet_len,
|
|
|
|
keyring_identity *id);
|
2012-02-05 05:45:19 +00:00
|
|
|
int packetFinalise(unsigned char *packet,int packet_maxlen,int recvttl,
|
|
|
|
int *packet_len,int cryptoflags);
|
2010-07-13 12:15:46 +00:00
|
|
|
int packetAddHLRCreateRequest(unsigned char *packet,int packet_maxlen,int *packet_len);
|
|
|
|
int extractResponses(struct in_addr sender,unsigned char *buffer,int len,struct response_set *responses);
|
|
|
|
int packetAddVariableRequest(unsigned char *packet,int packet_maxlen,int *packet_len,
|
|
|
|
char *item,int instance,int start_offset,int max_offset);
|
|
|
|
int packetGetID(unsigned char *packet,int len,char *did,char *sid);
|
|
|
|
int getPeerList();
|
|
|
|
int sendToPeers(unsigned char *packet,int packet_len,int method,int peerId,struct response_set *responses);
|
2011-08-12 19:34:38 +00:00
|
|
|
int getReplyPackets(int method,int peer,int batchP,struct response_set *responses,
|
|
|
|
unsigned char *transaction_id,struct sockaddr *recvaddr,int timeout);
|
2010-07-13 12:15:46 +00:00
|
|
|
int clearResponse(struct response **response);
|
2012-04-12 23:55:03 +00:00
|
|
|
int packageVariableSegment(unsigned char *data,int *dlen,
|
|
|
|
struct response *h,
|
2010-07-13 12:15:46 +00:00
|
|
|
int offset,int buffer_size);
|
|
|
|
int packetDecipher(unsigned char *packet,int len,int cipher);
|
|
|
|
int safeZeroField(unsigned char *packet,int start,int count);
|
|
|
|
int unpackageVariableSegment(unsigned char *data,int dlen,int flags,struct response *r);
|
|
|
|
int extractSid(unsigned char *packet,int *ofs,char *sid);
|
|
|
|
int hlrSetVariable(unsigned char *hlr,int hofs,int varid,int varinstance,
|
|
|
|
unsigned char *value,int len);
|
|
|
|
int extractDid(unsigned char *packet,int *ofs,char *did);
|
2012-03-13 08:01:29 +00:00
|
|
|
char *hlrSid(unsigned char *hlr, int ofs, char *sid);
|
2011-08-12 19:34:38 +00:00
|
|
|
int writeItem(char *sid,int var_id,int instance,unsigned char *value,
|
2012-02-05 05:45:19 +00:00
|
|
|
int value_start,int value_length,int flags,
|
|
|
|
int recvttl,struct sockaddr *recvaddr);
|
2010-07-13 12:15:46 +00:00
|
|
|
int packetAddVariableWrite(unsigned char *packet,int packet_maxlen,int *packet_len,
|
|
|
|
int itemId,int instance,unsigned char *value,int start_offset,int value_len,int flags);
|
|
|
|
int processRequest(unsigned char *packet,int len,struct sockaddr *sender,int sender_len,
|
2012-02-05 05:45:19 +00:00
|
|
|
unsigned char *transaction_id,int recvttl,char *did,char *sid);
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
int extractRequest(unsigned char *packet,int *packet_ofs,int packet_len,
|
|
|
|
int *itemId,int *instance,unsigned char *value,
|
|
|
|
int *start_offset,int *max_offset,int *flags);
|
|
|
|
int hlrGetVariable(unsigned char *hlr,int hofs,int varid,int varinstance,
|
|
|
|
unsigned char *value,int *len);
|
|
|
|
int dumpResponses(struct response_set *responses);
|
|
|
|
int eraseLastResponse(struct response_set *responses);
|
|
|
|
int dropPacketP(int packet_len);
|
|
|
|
int clearResponses(struct response_set *responses);
|
|
|
|
int responseFromPeerP(struct response_set *responses,int peerId);
|
|
|
|
int responseFromPeer(struct response_set *responses,int peerId);
|
|
|
|
int additionalPeer(char *peer);
|
2011-06-04 03:59:26 +00:00
|
|
|
int readRoutingTable(struct in_addr peers[],int *peer_count,int peer_max);
|
2011-04-27 11:48:09 +00:00
|
|
|
int readBatmanPeerFile(char *file_path,struct in_addr peers[],int *peer_count,int peer_max);
|
|
|
|
int getBatmanPeerList(char *socket_path,struct in_addr peers[],int *peer_count,int peer_max);
|
2010-07-13 12:15:46 +00:00
|
|
|
int hlrDump(unsigned char *hlr,int hofs);
|
2011-03-22 06:01:02 +00:00
|
|
|
int peerAddress(char *did,char *sid,int flags);
|
2011-03-30 13:39:42 +00:00
|
|
|
int fixResponses(struct response_set *responses);
|
2011-05-06 02:27:33 +00:00
|
|
|
int importHlr(char *textfile);
|
|
|
|
int exportHlr(unsigned char *hlr,char *text);
|
|
|
|
int openHlrFile(char *backing_file,int size);
|
2011-05-23 21:52:43 +00:00
|
|
|
int runCommand(char *cmd);
|
|
|
|
int asteriskObtainGateway(char *requestor_sid,char *did,char *uri_out);
|
2011-08-12 19:34:38 +00:00
|
|
|
int packetOkDNA(unsigned char *packet,int len,unsigned char *transaction_id,
|
2012-02-05 05:45:19 +00:00
|
|
|
int recvttl,struct sockaddr *recvaddr,int recvaddrlen,int parseP);
|
|
|
|
int packetOkOverlay(int interface,unsigned char *packet,int len,
|
|
|
|
unsigned char *transaction_id,int recvttl,
|
2011-08-12 19:34:38 +00:00
|
|
|
struct sockaddr *recvaddr,int recvaddrlen,int parseP);
|
2011-08-12 19:05:11 +00:00
|
|
|
int prepareGateway(char *gatewayspec);
|
2011-08-12 19:34:38 +00:00
|
|
|
int packetSendRequest(int method,unsigned char *packet,int packet_len,int batchP,
|
|
|
|
unsigned char *transaction_id,struct sockaddr *recvaddr,
|
|
|
|
struct response_set *responses);
|
2012-01-03 04:16:22 +00:00
|
|
|
int readArpTable(struct in_addr peers[],int *peer_count,int peer_max);
|
|
|
|
|
2012-04-13 18:36:08 +00:00
|
|
|
#define OVERLAY_MAX_INTERFACES 16
|
2011-08-12 19:34:38 +00:00
|
|
|
|
2011-09-12 20:07:24 +00:00
|
|
|
typedef struct overlay_address_table {
|
|
|
|
unsigned char epoch;
|
|
|
|
char sids[256][SID_SIZE];
|
|
|
|
/* 0x00 = not set, which thus limits us to using only 255 (0x01-0xff) of the indexes for
|
|
|
|
storing addresses.
|
|
|
|
By spending an extra 256 bytes we reduce, but not eliminate the problem of collisions.
|
|
|
|
Will think about a complete solution later.
|
|
|
|
*/
|
|
|
|
unsigned char byfirstbyte[256][2];
|
|
|
|
/* next free entry in sid[] */
|
|
|
|
unsigned char next_free;
|
|
|
|
} overlay_address_table;
|
|
|
|
|
|
|
|
typedef struct sid {
|
|
|
|
unsigned char b[SID_SIZE];
|
|
|
|
} sid;
|
|
|
|
|
|
|
|
typedef struct overlay_address_cache {
|
|
|
|
int size;
|
|
|
|
int shift; /* Used to calculat lookup function, which is (b[0].b[1].b[2]>>shift) */
|
|
|
|
sid *sids; /* one entry per bucket, to keep things simple. */
|
|
|
|
/* XXX Should have a means of changing the hash function so that naughty people can't try
|
|
|
|
to force our cache to flush with duplicate addresses?
|
|
|
|
But we must use only the first 24 bits of the address due to abbreviation policies,
|
|
|
|
so our options are limited.
|
|
|
|
For now the hash will be the first k bits.
|
|
|
|
*/
|
|
|
|
} overlay_address_cache;
|
|
|
|
|
|
|
|
extern sid overlay_abbreviate_current_sender;
|
2011-08-12 19:05:11 +00:00
|
|
|
|
2011-08-17 01:22:17 +00:00
|
|
|
typedef struct overlay_frame {
|
|
|
|
struct overlay_frame *prev;
|
|
|
|
struct overlay_frame *next;
|
|
|
|
|
|
|
|
unsigned int type;
|
|
|
|
unsigned int modifiers;
|
|
|
|
|
|
|
|
unsigned char ttl;
|
2012-04-14 13:42:45 +00:00
|
|
|
unsigned char dequeue;
|
2011-08-17 01:22:17 +00:00
|
|
|
|
2012-04-13 18:36:08 +00:00
|
|
|
/* Mark which interfaces the frame has been sent on,
|
|
|
|
so that we can ensure that broadcast frames get sent
|
|
|
|
exactly once on each interface */
|
|
|
|
int isBroadcast;
|
|
|
|
unsigned char broadcast_sent_via[OVERLAY_MAX_INTERFACES];
|
|
|
|
|
2011-08-17 01:22:17 +00:00
|
|
|
unsigned char nexthop[32];
|
|
|
|
int nexthop_address_status;
|
2011-09-05 04:00:17 +00:00
|
|
|
int nexthop_interface; /* which interface the next hop should be attempted on */
|
2011-08-17 01:22:17 +00:00
|
|
|
|
|
|
|
unsigned char destination[32];
|
|
|
|
int destination_address_status;
|
|
|
|
|
|
|
|
unsigned char source[32];
|
|
|
|
int source_address_status;
|
|
|
|
|
2012-01-12 06:17:24 +00:00
|
|
|
/* IPv4 node frame was received from (if applicable) */
|
|
|
|
struct sockaddr *recvaddr;
|
|
|
|
|
2011-08-17 01:22:17 +00:00
|
|
|
/* Frame content from destination address onwards */
|
2011-09-07 01:56:26 +00:00
|
|
|
int bytecount;
|
2011-08-17 01:22:17 +00:00
|
|
|
unsigned char *bytes;
|
|
|
|
|
|
|
|
/* Actual payload */
|
2011-09-05 02:49:53 +00:00
|
|
|
struct overlay_buffer *payload;
|
2011-08-17 01:22:17 +00:00
|
|
|
|
|
|
|
int rfs; /* remainder of frame size */
|
2011-09-05 07:00:50 +00:00
|
|
|
|
2011-08-17 01:22:17 +00:00
|
|
|
long long enqueued_at;
|
|
|
|
|
|
|
|
} overlay_frame;
|
|
|
|
|
|
|
|
int overlay_frame_process(int interface,overlay_frame *f);
|
|
|
|
int overlay_frame_resolve_addresses(int interface,overlay_frame *f);
|
|
|
|
|
2011-05-16 07:28:25 +00:00
|
|
|
|
|
|
|
#define CRYPT_CIPHERED 1
|
|
|
|
#define CRYPT_SIGNED 2
|
|
|
|
#define CRYPT_PUBLIC 4
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2011-08-08 14:41:46 +00:00
|
|
|
extern int overlayMode;
|
2011-08-08 06:41:05 +00:00
|
|
|
#define OVERLAY_INTERFACE_UNKNOWN 0
|
|
|
|
#define OVERLAY_INTERFACE_ETHERNET 1
|
|
|
|
#define OVERLAY_INTERFACE_WIFI 2
|
|
|
|
#define OVERLAY_INTERFACE_PACKETRADIO 3
|
2012-04-13 18:36:08 +00:00
|
|
|
|
2011-08-08 06:41:05 +00:00
|
|
|
typedef struct overlay_interface {
|
2011-08-12 07:47:29 +00:00
|
|
|
char name[80];
|
2011-08-13 11:17:49 +00:00
|
|
|
int fd;
|
2011-08-14 08:36:39 +00:00
|
|
|
int offset;
|
|
|
|
int fileP;
|
2011-08-08 06:41:05 +00:00
|
|
|
int bits_per_second;
|
|
|
|
int port;
|
|
|
|
int type;
|
|
|
|
/* Number of milli-seconds per tick for this interface, which is basically related to the
|
|
|
|
the typical TX range divided by the maximum expected speed of nodes in the network.
|
|
|
|
This means that short-range communications has a higher bandwidth requirement than
|
|
|
|
long-range communications because the tick interval has to be shorter to still allow
|
|
|
|
fast-convergence time to allow for mobility.
|
|
|
|
|
|
|
|
For wifi (nominal range 100m) it is usually 500ms.
|
|
|
|
For ~100K ISM915MHz (nominal range 1000m) it will probably be about 5000ms.
|
|
|
|
For ~10K ISM915MHz (nominal range ~3000m) it will probably be about 15000ms.
|
|
|
|
These figures will be refined over time, and we will allow people to set them per-interface.
|
|
|
|
*/
|
2011-08-20 09:36:15 +00:00
|
|
|
int tick_ms; /* milliseconds per tick */
|
|
|
|
|
2011-08-08 14:41:46 +00:00
|
|
|
/* The time of the last tick on this interface in milli seconds */
|
|
|
|
long long last_tick_ms;
|
2011-08-15 07:27:29 +00:00
|
|
|
/* How many times have we abbreviated our address since we last announced it in full? */
|
|
|
|
int ticks_since_sent_full_address;
|
2011-08-08 14:41:46 +00:00
|
|
|
|
2012-05-14 06:14:36 +00:00
|
|
|
/* sequence number of last packet sent on this interface.
|
|
|
|
Used to allow NACKs that can request retransmission of recent packets.
|
|
|
|
*/
|
2011-08-12 06:34:56 +00:00
|
|
|
int sequence_number;
|
2012-05-14 06:14:36 +00:00
|
|
|
/* XXX need recent packet buffers to support the above */
|
2011-08-12 06:34:56 +00:00
|
|
|
|
2012-06-08 07:01:59 +00:00
|
|
|
/* Broadcast address and netmask, if known
|
|
|
|
We really only case about distinct broadcast addresses on interfaces.
|
|
|
|
Also simplifies aliases on interfaces. */
|
2011-08-08 14:41:46 +00:00
|
|
|
struct sockaddr_in broadcast_address;
|
|
|
|
|
|
|
|
/* Not necessarily the real MTU, but the largest frame size we are willing to TX on this interface.
|
|
|
|
For radio links the actual maximum and the maximum that is likely to be delivered reliably are
|
|
|
|
potentially two quite different values. */
|
|
|
|
int mtu;
|
2011-08-12 07:47:29 +00:00
|
|
|
|
|
|
|
/* If the interface still exists on the local machine.
|
|
|
|
If not, it we keep track of it for a few seconds before purging it, incase of flapping, e.g.,
|
|
|
|
due to DHCP renewal */
|
2012-05-14 06:14:36 +00:00
|
|
|
int observed;
|
2011-08-08 06:41:05 +00:00
|
|
|
} overlay_interface;
|
|
|
|
|
|
|
|
/* Maximum interface count is rather arbitrary.
|
|
|
|
Memory consumption is O(n) with respect to this parameter, so let's not make it too big for now.
|
|
|
|
*/
|
|
|
|
extern overlay_interface overlay_interfaces[OVERLAY_MAX_INTERFACES];
|
2012-01-08 17:49:52 +00:00
|
|
|
extern int overlay_last_interface_number; // used to remember where a packet came from
|
2011-08-20 09:36:15 +00:00
|
|
|
extern unsigned int overlay_sequence_number;
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2011-08-15 10:51:00 +00:00
|
|
|
/* Has someone sent us an abbreviation of an unknown type recently? If so remind them
|
|
|
|
that we don't accept these.
|
|
|
|
XXX - This method assumes bidirectional links. We should consider sending direct
|
|
|
|
to the perpetuator. We will deal with that in time, the main thing is that we have
|
|
|
|
a message type that can be used for the purpose.
|
|
|
|
*/
|
|
|
|
extern int overlay_interface_repeat_abbreviation_policy[OVERLAY_MAX_INTERFACES];
|
|
|
|
|
2011-08-08 06:41:05 +00:00
|
|
|
/*
|
|
|
|
For each peer we need to keep track of the routes that we know to reach it.
|
|
|
|
|
|
|
|
We want to use static sized data structures as much as we can to keep things efficient by
|
|
|
|
allowing computed memory address lookups instead of following linked lists and other
|
|
|
|
non-deterministic means.
|
|
|
|
|
|
|
|
The tricky part of doing all this is that each interface may have a different maximum number
|
|
|
|
of peers based on the bandwidth of the link, as we do not want mesh traffic to consume all
|
|
|
|
available bandwidth. In particular, we need to reserve at least enough bandwidth for one
|
|
|
|
call.
|
|
|
|
|
|
|
|
Related to this, if we are in a mesh larger than the per-interface limit allows, then we need to
|
|
|
|
only track the highest-scoring peers. This sounds simple, but how to we tell when to replace a
|
|
|
|
low-scoring peer with another one which has a better reachability score, if we are not tracking
|
|
|
|
the reachability score of that node?
|
|
|
|
|
|
|
|
The answer to this is that we track as many nodes as we can, but only announce the highest
|
|
|
|
scoring nodes on each interface as bandwidth allows.
|
|
|
|
|
|
|
|
This also keeps our memory usage fixed.
|
|
|
|
|
|
|
|
XXX - At present we are setting OVERLAY_MAX_PEERS at compile time.
|
|
|
|
With a bit of work we can change this to be a run-time option.
|
|
|
|
|
|
|
|
Memory consumption of OVERLAY_MAX_PEERS=n is O(n^2).
|
|
|
|
XXX We could and should improve this down the track by only monitoring the top k routes, and replacing the worst route
|
|
|
|
option when a better one comes along. This would get the memory usage down to O(n).
|
|
|
|
|
|
|
|
*/
|
|
|
|
#define OVERLAY_MAX_PEERS 500
|
|
|
|
|
|
|
|
typedef struct overlay_peer {
|
|
|
|
unsigned char address[SIDDIDFIELD_LEN];
|
|
|
|
|
|
|
|
/* Scores and score update times for reaching this node via various interfaces */
|
|
|
|
int known_routes[OVERLAY_MAX_INTERFACES];
|
|
|
|
unsigned short scores[OVERLAY_MAX_INTERFACES][OVERLAY_MAX_PEERS];
|
|
|
|
|
|
|
|
/* last_regeneration is the time that this peer was created/replaced with another peer.
|
|
|
|
lastupdate[] indicates the time that another peer's reachability report
|
|
|
|
caused us to update our score to reach via that peer.
|
|
|
|
If lastupdate[x][y] is older than last_regeneration[y], then we must
|
|
|
|
ignore the entry, because the lastupdate[x][y] entry references a previous
|
|
|
|
generation of that peer, i.e., not to the peer we think it does.
|
|
|
|
|
|
|
|
This slight convolution allows us to replace peers without having to touch the
|
|
|
|
records of every other peer in our list.
|
|
|
|
*/
|
|
|
|
int last_regeneration;
|
|
|
|
unsigned int lastupdate[OVERLAY_MAX_INTERFACES][OVERLAY_MAX_PEERS];
|
|
|
|
} overlay_peer;
|
|
|
|
|
|
|
|
extern overlay_peer overlay_peers[OVERLAY_MAX_PEERS];
|
|
|
|
|
|
|
|
typedef struct overlay_buffer {
|
|
|
|
unsigned char *bytes;
|
|
|
|
int length;
|
|
|
|
int allocSize;
|
|
|
|
int checkpointLength;
|
|
|
|
int sizeLimit;
|
2011-08-17 01:22:17 +00:00
|
|
|
int var_length_offset;
|
|
|
|
int var_length_bytes;
|
2011-08-08 06:41:05 +00:00
|
|
|
} overlay_buffer;
|
|
|
|
|
|
|
|
int ob_unlimitsize(overlay_buffer *b);
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct overlay_txqueue {
|
2011-08-17 01:22:17 +00:00
|
|
|
struct overlay_frame *first;
|
|
|
|
struct overlay_frame *last;
|
2011-09-05 03:19:37 +00:00
|
|
|
int length; /* # frames in queue */
|
|
|
|
int maxLength; /* max # frames in queue before we consider ourselves congested */
|
|
|
|
|
2011-08-08 06:41:05 +00:00
|
|
|
/* Latency target in ms for this traffic class.
|
|
|
|
Frames older than the latency target will get dropped. */
|
|
|
|
int latencyTarget;
|
|
|
|
|
|
|
|
/* XXX Need to initialise these:
|
|
|
|
Real-time queue for voice (<200ms ?)
|
|
|
|
Real-time queue for video (<200ms ?) (lower priority than voice)
|
|
|
|
Ordinary service queue (<3 sec ?)
|
|
|
|
Rhizome opportunistic queue (infinity)
|
|
|
|
|
|
|
|
(Mesh management doesn't need a queue, as each overlay packet is tagged with some mesh management information)
|
|
|
|
*/
|
|
|
|
} overlay_txqueue;
|
|
|
|
|
2011-09-05 03:04:54 +00:00
|
|
|
|
|
|
|
#define OQ_ISOCHRONOUS_VOICE 0
|
|
|
|
#define OQ_MESH_MANAGEMENT 1
|
|
|
|
#define OQ_ISOCHRONOUS_VIDEO 2
|
|
|
|
#define OQ_ORDINARY 3
|
|
|
|
#define OQ_OPPORTUNISTIC 4
|
|
|
|
#define OQ_MAX 5
|
|
|
|
extern overlay_txqueue overlay_tx[OQ_MAX];
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2012-05-10 03:23:57 +00:00
|
|
|
#define LOG_LEVEL_DEBUG (0)
|
|
|
|
#define LOG_LEVEL_INFO (1)
|
|
|
|
#define LOG_LEVEL_WARN (2)
|
|
|
|
#define LOG_LEVEL_ERROR (3)
|
|
|
|
#define LOG_LEVEL_FATAL (4)
|
|
|
|
|
2012-05-24 07:41:55 +00:00
|
|
|
void logMessage(int level, const char *file, unsigned int line, const char *function, const char *fmt, ...);
|
|
|
|
void vlogMessage(int level, const char *file, unsigned int line, const char *function, const char *fmt, va_list);
|
2012-05-14 09:02:10 +00:00
|
|
|
long long debugFlagMask(const char *flagname);
|
2012-05-20 14:38:31 +00:00
|
|
|
char *catv(const char *data, char *buf, size_t len);
|
2012-05-14 09:02:10 +00:00
|
|
|
int dump(char *name,unsigned char *addr,int len);
|
2012-05-10 03:23:57 +00:00
|
|
|
|
2012-05-23 08:34:10 +00:00
|
|
|
const char *trimbuildpath(const char *s);
|
2012-05-22 00:24:10 +00:00
|
|
|
|
2012-05-24 07:41:55 +00:00
|
|
|
#define LOGF(L,F,...) logMessage(L, __FILE__, __LINE__, __FUNCTION__, F, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define FATALF(F,...) do { logMessage(LOG_LEVEL_FATAL, __FILE__, __LINE__, __FUNCTION__, F, ##__VA_ARGS__); exit(-1); } while (1)
|
2012-05-11 01:08:46 +00:00
|
|
|
#define FATAL(X) FATALF("%s", (X))
|
|
|
|
#define FATAL_perror(X) FATALF("%s: %s [errno=%d]", (X), strerror(errno), errno)
|
|
|
|
|
2012-05-24 07:41:55 +00:00
|
|
|
#define WHYF(F,...) (LOGF(LOG_LEVEL_ERROR, F, ##__VA_ARGS__), -1)
|
|
|
|
#define WHY(X) WHYF("%s", (X))
|
|
|
|
#define WHYNULL(X) (LOGF(LOG_LEVEL_ERROR, "%s", X), NULL)
|
|
|
|
#define WHY_perror(X) WHYF("%s: %s [errno=%d]", (X), strerror(errno), errno)
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2012-05-24 07:41:55 +00:00
|
|
|
#define WARNF(F,...) logMessage(LOG_LEVEL_WARN, __FILE__, __LINE__, __FUNCTION__, F, ##__VA_ARGS__)
|
2012-05-14 09:02:10 +00:00
|
|
|
#define WARN(X) WARNF("%s", (X))
|
|
|
|
#define WARN_perror(X) WARNF("%s: %s [errno=%d]", (X), strerror(errno), errno)
|
|
|
|
|
2012-05-24 07:41:55 +00:00
|
|
|
#define INFOF(F,...) logMessage(LOG_LEVEL_INFO, __FILE__, __LINE__, __FUNCTION__, F, ##__VA_ARGS__)
|
2012-05-20 06:36:32 +00:00
|
|
|
#define INFO(X) INFOF("%s", (X))
|
|
|
|
|
2012-05-24 07:41:55 +00:00
|
|
|
#define DEBUGF(F,...) logMessage(LOG_LEVEL_DEBUG, __FILE__, __LINE__, __FUNCTION__, F, ##__VA_ARGS__)
|
2012-05-14 09:02:10 +00:00
|
|
|
#define DEBUG(X) DEBUGF("%s", (X))
|
|
|
|
#define DEBUG_perror(X) DEBUGF("%s: %s [errno=%d]", (X), strerror(errno), errno)
|
2012-05-10 03:23:57 +00:00
|
|
|
#define D DEBUG("D")
|
|
|
|
|
2011-08-08 06:41:05 +00:00
|
|
|
overlay_buffer *ob_new(int size);
|
|
|
|
int ob_free(overlay_buffer *b);
|
|
|
|
int ob_checkpoint(overlay_buffer *b);
|
|
|
|
int ob_rewind(overlay_buffer *b);
|
|
|
|
int ob_limitsize(overlay_buffer *b,int bytes);
|
|
|
|
int ob_unlimitsize(overlay_buffer *b);
|
|
|
|
int ob_makespace(overlay_buffer *b,int bytes);
|
2011-09-03 21:06:39 +00:00
|
|
|
int ob_append_byte(overlay_buffer *b,unsigned char byte);
|
2011-08-08 06:41:05 +00:00
|
|
|
int ob_append_bytes(overlay_buffer *b,unsigned char *bytes,int count);
|
2012-04-13 16:44:41 +00:00
|
|
|
unsigned char *ob_append_space(overlay_buffer *b,int count);
|
2011-08-08 06:41:05 +00:00
|
|
|
int ob_append_short(overlay_buffer *b,unsigned short v);
|
|
|
|
int ob_append_int(overlay_buffer *b,unsigned int v);
|
2011-08-17 01:22:17 +00:00
|
|
|
int ob_patch_rfs(overlay_buffer *b,int l);
|
|
|
|
int ob_indel_space(overlay_buffer *b,int offset,int shift);
|
|
|
|
int ob_append_rfs(overlay_buffer *b,int l);
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2011-08-17 01:22:17 +00:00
|
|
|
int op_free(overlay_frame *p);
|
2012-04-14 01:26:03 +00:00
|
|
|
overlay_frame *op_dup(overlay_frame *f);
|
2011-08-08 14:41:46 +00:00
|
|
|
|
2011-08-08 06:41:05 +00:00
|
|
|
long long parse_quantity(char *q);
|
|
|
|
|
2011-08-12 07:47:29 +00:00
|
|
|
int overlay_interface_init(char *name,struct sockaddr_in src_addr,struct sockaddr_in broadcast,
|
2012-04-28 02:55:19 +00:00
|
|
|
int speed_in_bits,int port,int type);
|
|
|
|
int overlay_interface_init_socket(int i,struct sockaddr_in src_addr,struct sockaddr_in broadcast);
|
2011-08-08 14:41:46 +00:00
|
|
|
int overlay_interface_discover();
|
|
|
|
int overlay_interface_discover();
|
|
|
|
long long overlay_time_until_next_tick();
|
|
|
|
int overlay_rx_messages();
|
|
|
|
int overlay_check_ticks();
|
|
|
|
int overlay_add_selfannouncement();
|
2011-08-17 01:22:17 +00:00
|
|
|
int overlay_frame_package_fmt1(overlay_frame *p,overlay_buffer *b);
|
2012-05-07 04:19:38 +00:00
|
|
|
int overlay_interface_args(const char *arg);
|
2011-09-05 05:25:44 +00:00
|
|
|
int overlay_get_nexthop(unsigned char *d,unsigned char *nexthop,int *nexthoplen,
|
|
|
|
int *interface);
|
2012-01-08 17:49:52 +00:00
|
|
|
int overlay_sendto(struct sockaddr_in *recipientaddr,unsigned char *bytes,int len);
|
2012-01-08 18:27:13 +00:00
|
|
|
int overlay_rhizome_add_advertisements(int interface_number,overlay_buffer *e);
|
2012-01-08 23:25:21 +00:00
|
|
|
int overlay_add_local_identity(unsigned char *s);
|
|
|
|
int overlay_address_is_local(unsigned char *s);
|
2011-08-08 14:41:46 +00:00
|
|
|
|
|
|
|
extern int overlay_interface_count;
|
2011-08-12 06:15:26 +00:00
|
|
|
|
2012-01-08 23:25:21 +00:00
|
|
|
#define OVERLAY_MAX_LOCAL_IDENTITIES 256
|
|
|
|
extern int overlay_local_identity_count;
|
|
|
|
extern unsigned char *overlay_local_identities[OVERLAY_MAX_LOCAL_IDENTITIES];
|
|
|
|
|
2011-08-15 07:27:29 +00:00
|
|
|
/* Overlay mesh packet codes */
|
|
|
|
#define OF_TYPE_BITS 0xf0
|
|
|
|
#define OF_TYPE_SELFANNOUNCE 0x10 /* BATMAN style announcement frames */
|
|
|
|
#define OF_TYPE_SELFANNOUNCE_ACK 0x20 /* BATMAN style "I saw your announcment" frames */
|
|
|
|
#define OF_TYPE_DATA 0x30 /* Ordinary data frame.
|
|
|
|
Upto MTU bytes of payload.
|
2012-03-16 22:32:37 +00:00
|
|
|
32 bit channel/port indicator for each end.
|
2011-08-15 07:27:29 +00:00
|
|
|
*/
|
|
|
|
#define OF_TYPE_DATA_VOICE 0x40 /* Voice data frame.
|
|
|
|
Limited to 255 bytes of payload.
|
|
|
|
1 byte channel/port indicator for each end */
|
|
|
|
#define OF_TYPE_RHIZOME_ADVERT 0x50 /* Advertisment of file availability via Rhizome */
|
2011-08-15 10:51:00 +00:00
|
|
|
#define OF_TYPE_PLEASEEXPLAIN 0x60 /* Request for resolution of an abbreviated address */
|
2011-09-12 19:22:52 +00:00
|
|
|
#define OF_TYPE_NODEANNOUNCE 0x70
|
2012-04-02 23:50:47 +00:00
|
|
|
#define OF_TYPE_IDENTITYENQUIRY 0x80
|
2011-08-15 07:27:29 +00:00
|
|
|
#define OF_TYPE_RESERVED_09 0x90
|
|
|
|
#define OF_TYPE_RESERVED_0a 0xa0
|
|
|
|
#define OF_TYPE_RESERVED_0b 0xb0
|
|
|
|
#define OF_TYPE_RESERVED_0c 0xc0
|
|
|
|
#define OF_TYPE_RESERVED_0d 0xd0
|
|
|
|
#define OF_TYPE_EXTENDED12 0xe0 /* modifier bits and next byte provide 12 bits extended format
|
|
|
|
(for future expansion, just allows us to skip the frame) */
|
|
|
|
#define OF_TYPE_EXTENDED20 0xf0 /* modifier bits and next 2 bytes provide 20 bits extended format
|
|
|
|
(for future expansion, just allows us to skip the frame) */
|
|
|
|
/* Flags used to control the interpretation of the resolved type field */
|
|
|
|
#define OF_TYPE_FLAG_BITS 0xf0000000
|
|
|
|
#define OF_TYPE_FLAG_NORMAL 0x0
|
|
|
|
#define OF_TYPE_FLAG_E12 0x10000000
|
2011-08-17 01:22:17 +00:00
|
|
|
#define OF_TYPE_FLAG_E20 0x20000000
|
2011-08-15 07:27:29 +00:00
|
|
|
|
|
|
|
/* Modifiers that indicate the disposition of the frame */
|
|
|
|
#define OF_MODIFIER_BITS 0x0f
|
|
|
|
|
|
|
|
/* Crypto/security options */
|
|
|
|
#define OF_CRYPTO_BITS 0x0c
|
|
|
|
#define OF_CRYPTO_NONE 0x00
|
|
|
|
#define OF_CRYPTO_CIPHERED 0x04 /* Encrypted frame */
|
2012-03-21 02:27:24 +00:00
|
|
|
#define OF_CRYPTO_SIGNED 0x08 /* signed frame */
|
|
|
|
/* The following was previously considered, but is not being implemented at this
|
|
|
|
time.
|
|
|
|
#define OF_CRYPTO_PARANOID 0x0c Encrypted and digitally signed frame, with final destination address also encrypted. */
|
2011-08-15 07:27:29 +00:00
|
|
|
|
|
|
|
/* Data compression */
|
|
|
|
#define OF_COMPRESS_BITS 0x03
|
|
|
|
#define OF_COMPRESS_NONE 0x00
|
|
|
|
#define OF_COMPRESS_GZIP 0x01 /* Frame compressed with gzip */
|
|
|
|
#define OF_COMPRESS_BZIP2 0x02 /* bzip2 */
|
|
|
|
#define OF_COMPRESS_RESERVED 0x03 /* Reserved for another compression system */
|
2011-08-14 18:44:11 +00:00
|
|
|
|
|
|
|
#define OVERLAY_ADDRESS_CACHE_SIZE 1024
|
2011-09-03 21:18:41 +00:00
|
|
|
int overlay_abbreviate_address(unsigned char *in,unsigned char *out,int *ofs);
|
2011-08-17 01:22:17 +00:00
|
|
|
int overlay_abbreviate_append_address(overlay_buffer *b,unsigned char *a);
|
|
|
|
|
2011-08-15 11:10:37 +00:00
|
|
|
int overlay_abbreviate_expand_address(int interface,unsigned char *in,int *inofs,unsigned char *out,int *ofs);
|
2011-08-15 14:22:29 +00:00
|
|
|
int overlay_abbreviate_cache_address(unsigned char *sid);
|
2011-08-14 18:44:11 +00:00
|
|
|
int overlay_abbreviate_cache_lookup(unsigned char *in,unsigned char *out,int *ofs,
|
|
|
|
int prefix_bytes,int index_bytes);
|
|
|
|
int overlay_abbreviate_remember_index(int index_byte_count,unsigned char *in,unsigned char *index_bytes);
|
2011-08-15 10:51:00 +00:00
|
|
|
extern int overlay_abbreviate_repeat_policy;
|
2011-08-15 11:50:30 +00:00
|
|
|
int overlay_abbreviate_set_most_recent_address(unsigned char *in);
|
2012-05-06 23:01:53 +00:00
|
|
|
int overlay_abbreviate_clear_most_recent_address();
|
2011-08-14 18:44:11 +00:00
|
|
|
|
2011-08-15 07:27:29 +00:00
|
|
|
/* Return codes for resolution of abbreviated addressses */
|
|
|
|
#define OA_UNINITIALISED 0 /* Nothing has been written into the field */
|
|
|
|
#define OA_RESOLVED 1 /* We expanded the abbreviation successfully */
|
2011-08-15 10:51:00 +00:00
|
|
|
#define OA_PLEASEEXPLAIN 2 /* We need the sender to explain their abbreviation */
|
2011-08-15 07:27:29 +00:00
|
|
|
#define OA_UNSUPPORTED 3 /* We cannot expand the abbreviation as we do not understand this code */
|
|
|
|
|
|
|
|
/* Codes used to describe abbreviated addresses.
|
|
|
|
Values 0x10 - 0xff are the first byte of, and implicit indicators of addresses written in full */
|
2011-09-12 19:22:52 +00:00
|
|
|
#define OA_CODE_SELF 0x00
|
2011-08-15 07:27:29 +00:00
|
|
|
#define OA_CODE_INDEX 0x01
|
|
|
|
#define OA_CODE_02 0x02
|
|
|
|
#define OA_CODE_PREVIOUS 0x03
|
|
|
|
#define OA_CODE_04 0x04
|
|
|
|
#define OA_CODE_PREFIX3 0x05
|
|
|
|
#define OA_CODE_PREFIX7 0x06
|
|
|
|
#define OA_CODE_PREFIX11 0x07
|
|
|
|
#define OA_CODE_FULL_INDEX1 0x08
|
|
|
|
#define OA_CODE_PREFIX3_INDEX1 0x09
|
|
|
|
#define OA_CODE_PREFIX7_INDEX1 0x0a
|
|
|
|
#define OA_CODE_PREFIX11_INDEX1 0x0b
|
|
|
|
#define OA_CODE_0C 0x0c
|
|
|
|
#define OA_CODE_PREFIX11_INDEX2 0x0d
|
|
|
|
#define OA_CODE_FULL_INDEX2 0x0e
|
|
|
|
/* The TTL field in a frame is used to differentiate between link-local and wide-area broadcasts */
|
|
|
|
#define OA_CODE_BROADCAST 0x0f
|
|
|
|
|
2011-08-17 01:22:17 +00:00
|
|
|
#define RFS_PLUS250 0xfa
|
|
|
|
#define RFS_PLUS456 0xfb
|
|
|
|
#define RFS_PLUS762 0xfc
|
|
|
|
#define RFS_PLUS1018 0xfd
|
|
|
|
#define RFS_PLUS1274 0xfe
|
|
|
|
#define RFS_3BYTE 0xff
|
|
|
|
int rfs_length(int l);
|
|
|
|
int rfs_encode(int l,unsigned char *b);
|
|
|
|
int rfs_decode(unsigned char *b,int *offset);
|
2011-08-15 07:27:29 +00:00
|
|
|
|
2011-09-01 13:14:30 +00:00
|
|
|
typedef struct overlay_neighbour_observation {
|
2011-08-29 06:50:27 +00:00
|
|
|
/* Sequence numbers are handled as ranges because the tick
|
|
|
|
rate can vary between interfaces, and we want to be able to
|
|
|
|
estimate the reliability of links to nodes that may have
|
|
|
|
several available interfaces.
|
|
|
|
We don't want sequence numbers to wrap too often, but we
|
|
|
|
would also like to support fairly fast ticking interfaces,
|
|
|
|
e.g., for gigabit type links. So lets go with 1ms granularity. */
|
2011-09-01 13:14:30 +00:00
|
|
|
unsigned int s1;
|
|
|
|
unsigned int s2;
|
|
|
|
long long time_ms;
|
2011-09-01 13:52:08 +00:00
|
|
|
unsigned char sender_interface;
|
|
|
|
unsigned char valid;
|
2011-09-01 13:14:30 +00:00
|
|
|
} overlay_neighbour_observation;
|
|
|
|
|
|
|
|
#define OVERLAY_SENDER_PREFIX_LENGTH 12
|
|
|
|
typedef struct overlay_node_observation {
|
2011-09-12 17:15:12 +00:00
|
|
|
unsigned char observed_score; /* serves as validty check also */
|
|
|
|
unsigned char corrected_score;
|
2011-09-11 10:39:47 +00:00
|
|
|
unsigned char gateways_en_route;
|
2011-09-12 17:24:03 +00:00
|
|
|
unsigned char RESERVED; /* for alignment */
|
2012-04-29 02:26:47 +00:00
|
|
|
unsigned char interface;
|
2011-08-29 06:50:27 +00:00
|
|
|
long long rx_time;
|
|
|
|
unsigned char sender_prefix[OVERLAY_SENDER_PREFIX_LENGTH];
|
|
|
|
} overlay_node_observation;
|
|
|
|
|
|
|
|
/* Keep track of last 32 observations of a node.
|
2011-09-04 07:08:54 +00:00
|
|
|
Hopefully this is enough, if not, we will increase.
|
2011-09-11 10:39:47 +00:00
|
|
|
To keep the requirement down we will collate contigious neighbour observations on each interface.
|
|
|
|
For node observations we can just replace old observations with new ones.
|
|
|
|
*/
|
2011-08-29 06:50:27 +00:00
|
|
|
#define OVERLAY_MAX_OBSERVATIONS 32
|
|
|
|
|
|
|
|
typedef struct overlay_node {
|
|
|
|
unsigned char sid[SID_SIZE];
|
|
|
|
int neighbour_id; /* 0=not a neighbour */
|
|
|
|
int most_recent_observation_id;
|
2011-09-12 17:49:54 +00:00
|
|
|
int best_link_score;
|
|
|
|
int best_observation;
|
2012-04-29 02:26:47 +00:00
|
|
|
unsigned int last_first_hand_observation_time_millisec;
|
2011-09-12 17:49:54 +00:00
|
|
|
long long last_observation_time_ms;
|
|
|
|
/* When did we last advertise this node on each interface, and what score
|
|
|
|
did we advertise? */
|
|
|
|
long long most_recent_advertisment[OVERLAY_MAX_INTERFACES];
|
|
|
|
unsigned char most_recent_advertised_score[OVERLAY_MAX_INTERFACES];
|
2011-08-29 06:50:27 +00:00
|
|
|
overlay_node_observation observations[OVERLAY_MAX_OBSERVATIONS];
|
|
|
|
} overlay_node;
|
|
|
|
|
2011-09-01 13:14:30 +00:00
|
|
|
typedef struct overlay_neighbour {
|
2011-09-01 13:52:08 +00:00
|
|
|
long long last_observation_time_ms;
|
2012-04-22 10:46:48 +00:00
|
|
|
long long last_metric_update;
|
2011-09-01 13:52:08 +00:00
|
|
|
int most_recent_observation_id;
|
2011-09-01 13:14:30 +00:00
|
|
|
overlay_neighbour_observation observations[OVERLAY_MAX_OBSERVATIONS];
|
2011-09-01 13:52:08 +00:00
|
|
|
overlay_node *node;
|
2011-09-04 07:08:54 +00:00
|
|
|
|
|
|
|
/* Scores of visibility from each of the neighbours interfaces.
|
|
|
|
This is so that the sender knows which interface to use to reach us.
|
|
|
|
*/
|
|
|
|
unsigned char scores[OVERLAY_MAX_INTERFACES];
|
2011-09-05 07:00:50 +00:00
|
|
|
|
|
|
|
/* One-byte index entries for address abbreviation */
|
|
|
|
unsigned char one_byte_index_address_prefixes[256][OVERLAY_SENDER_PREFIX_LENGTH];
|
2011-09-01 13:14:30 +00:00
|
|
|
} overlay_neighbour;
|
2011-09-05 07:00:50 +00:00
|
|
|
extern overlay_neighbour *overlay_neighbours;
|
2011-09-01 13:14:30 +00:00
|
|
|
|
2011-08-29 06:50:27 +00:00
|
|
|
long long overlay_gettime_ms();
|
|
|
|
int overlay_route_init(int mb_ram);
|
2011-09-03 21:18:41 +00:00
|
|
|
int overlay_route_saw_selfannounce_ack(int interface,overlay_frame *f,long long now);
|
2011-09-04 07:08:54 +00:00
|
|
|
int overlay_route_recalc_node_metrics(overlay_node *n,long long now);
|
|
|
|
int overlay_route_recalc_neighbour_metrics(overlay_neighbour *n,long long now);
|
2011-09-03 21:18:41 +00:00
|
|
|
int overlay_route_saw_selfannounce(int interface,overlay_frame *f,long long now);
|
2012-05-17 07:37:46 +00:00
|
|
|
overlay_node *overlay_route_find_node(unsigned char *sid,int prefixLen,int createP);
|
2011-08-29 06:50:27 +00:00
|
|
|
unsigned int overlay_route_hash_sid(unsigned char *sid);
|
2011-08-17 19:00:13 +00:00
|
|
|
int overlay_route_init(int mb_ram);
|
2011-09-05 05:28:12 +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
|
|
|
unsigned char *overlay_get_my_sid();
|
|
|
|
int overlay_frame_set_me_as_source(overlay_frame *f);
|
2011-09-05 06:25:59 +00:00
|
|
|
int overlay_frame_set_neighbour_as_source(overlay_frame *f,overlay_neighbour *n);
|
|
|
|
int overlay_frame_set_neighbour_as_destination(overlay_frame *f,overlay_neighbour *n);
|
2012-03-21 02:27:24 +00:00
|
|
|
int overlay_frame_set_broadcast_as_destination(overlay_frame *f);
|
|
|
|
int overlay_broadcast_generate_address(unsigned char *a);
|
2011-09-05 02:49:53 +00:00
|
|
|
int overlay_update_sequence_number();
|
|
|
|
int packetEncipher(unsigned char *packet,int maxlen,int *len,int cryptoflags);
|
2011-09-05 03:04:54 +00:00
|
|
|
int overlayServerMode();
|
2012-04-28 08:39:58 +00:00
|
|
|
int overlay_payload_enqueue(int q,overlay_frame *p,int forceBroadcastP);
|
2011-09-05 03:49:00 +00:00
|
|
|
long long overlay_time_in_ms();
|
2011-09-05 07:00:50 +00:00
|
|
|
int overlay_abbreviate_lookup_sender_id();
|
2011-09-07 03:39:54 +00:00
|
|
|
int ob_dump(overlay_buffer *b,char *desc);
|
2011-09-11 07:51:09 +00:00
|
|
|
unsigned int ob_get_int(overlay_buffer *b,int offset);
|
|
|
|
char *overlay_render_sid(unsigned char *sid);
|
2012-04-29 02:26:47 +00:00
|
|
|
int overlay_route_record_link(long long now,unsigned char *to,
|
|
|
|
unsigned char *via,int sender_interface,
|
|
|
|
unsigned int s1,unsigned int s2,int score,int gateways_en_route);
|
2011-09-12 14:19:55 +00:00
|
|
|
int overlay_route_dump();
|
2011-09-12 15:32:58 +00:00
|
|
|
int overlay_route_tick();
|
2011-09-12 15:44:09 +00:00
|
|
|
int overlay_route_tick_neighbour(int neighbour_id,long long now);
|
|
|
|
int overlay_route_tick_node(int bin,int slot,long long now);
|
2011-09-12 18:03:45 +00:00
|
|
|
int overlay_route_add_advertisements(int interface,overlay_buffer *e);
|
2011-09-12 19:22:52 +00:00
|
|
|
int ovleray_route_please_advertise(overlay_node *n);
|
|
|
|
int overlay_abbreviate_set_current_sender(unsigned char *in);
|
|
|
|
|
|
|
|
extern int overlay_bin_count;
|
|
|
|
extern int overlay_bin_size; /* associativity, i.e., entries per bin */
|
|
|
|
extern int overlay_bin_bytes;
|
|
|
|
extern overlay_node **overlay_nodes;
|
2011-09-12 20:07:24 +00:00
|
|
|
|
|
|
|
int overlay_route_saw_advertisements(int i,overlay_frame *f, long long now);
|
2012-01-08 22:47:54 +00:00
|
|
|
int overlay_rhizome_saw_advertisements(int i,overlay_frame *f, long long now);
|
2011-09-12 20:10:23 +00:00
|
|
|
int overlay_route_please_advertise(overlay_node *n);
|
2011-12-22 11:28:18 +00:00
|
|
|
int rhizome_server_get_fds(struct pollfd *fds,int *fdcount,int fdmax);
|
|
|
|
int rhizome_server_poll();
|
2012-05-22 03:35:29 +00:00
|
|
|
int rhizome_saw_voice_traffic();
|
2012-03-27 08:55:38 +00:00
|
|
|
int overlay_saw_mdp_containing_frame(int interface,overlay_frame *f,long long now);
|
2011-10-16 21:41:05 +00:00
|
|
|
|
|
|
|
#include "nacl.h"
|
2012-01-09 05:58:44 +00:00
|
|
|
|
2012-05-14 09:02:10 +00:00
|
|
|
#define DEBUG_PACKETRX (1 << 0)
|
|
|
|
#define DEBUG_OVERLAYINTERFACES (1 << 1)
|
|
|
|
#define DEBUG_VERBOSE (1 << 2)
|
|
|
|
#define DEBUG_VERBOSE_IO (1 << 3)
|
|
|
|
#define DEBUG_PEERS (1 << 4)
|
|
|
|
#define DEBUG_DNARESPONSES (1 << 5)
|
|
|
|
#define DEBUG_DNAREQUESTS (1 << 6)
|
|
|
|
#define DEBUG_SIMULATION (1 << 7)
|
|
|
|
#define DEBUG_DNAVARS (1 << 8)
|
|
|
|
#define DEBUG_PACKETFORMATS (1 << 9)
|
|
|
|
#define DEBUG_GATEWAY (1 << 10)
|
|
|
|
#define DEBUG_HLR (1 << 11)
|
|
|
|
#define DEBUG_IO (1 << 12)
|
|
|
|
#define DEBUG_OVERLAYFRAMES (1 << 13)
|
|
|
|
#define DEBUG_OVERLAYABBREVIATIONS (1 << 14)
|
|
|
|
#define DEBUG_OVERLAYROUTING (1 << 15)
|
|
|
|
#define DEBUG_SECURITY (1 << 16)
|
|
|
|
#define DEBUG_RHIZOME (1 << 17)
|
|
|
|
#define DEBUG_OVERLAYROUTEMONITOR (1 << 18)
|
|
|
|
#define DEBUG_QUEUES (1 << 19)
|
|
|
|
#define DEBUG_BROADCASTS (1 << 20)
|
|
|
|
#define DEBUG_RHIZOMESYNC (1 << 21)
|
2012-05-15 03:26:10 +00:00
|
|
|
#define DEBUG_PACKETTX (1 << 22)
|
|
|
|
#define DEBUG_PACKETCONSTRUCTION (1 << 23)
|
2012-05-25 07:31:56 +00:00
|
|
|
#define DEBUG_MANIFESTS (1 << 24)
|
2012-01-10 03:35:26 +00:00
|
|
|
|
|
|
|
int serval_packetvisualise(FILE *f,char *message,unsigned char *packet,int plen);
|
2012-01-10 11:26:07 +00:00
|
|
|
|
|
|
|
int overlay_broadcast_drop_check(unsigned char *a);
|
|
|
|
int overlay_address_is_broadcast(unsigned char *a);
|
|
|
|
int overlay_broadcast_generate_address(unsigned char *a);
|
2012-01-10 20:46:22 +00:00
|
|
|
int overlay_abbreviate_unset_current_sender();
|
2012-02-15 13:08:23 +00:00
|
|
|
int rhizome_fetching_get_fds(struct pollfd *fds,int *fdcount,int fdmax);
|
|
|
|
int rhizome_fetch_poll();
|
2012-03-04 22:57:31 +00:00
|
|
|
int rhizome_opendb();
|
2012-01-10 11:26:07 +00:00
|
|
|
|
2012-02-16 14:08:33 +00:00
|
|
|
typedef struct dna_identity_status {
|
2012-03-13 08:01:29 +00:00
|
|
|
char sid[SID_STRLEN];
|
2012-02-16 14:08:33 +00:00
|
|
|
char did[64+1];
|
|
|
|
char name[255+1];
|
|
|
|
|
|
|
|
int initialisedP;
|
|
|
|
time_t startofvalidity;
|
|
|
|
time_t endofvalidity;
|
|
|
|
int verifier_count;
|
|
|
|
#define MAX_SIGNATURES 16
|
|
|
|
/* Dynamically allocate these so that we don't waste a memory
|
|
|
|
(well, if we are talking about running on a feature phone, 4KB per entry
|
|
|
|
(16*256 bytes) is best avoided if we can.) */
|
|
|
|
unsigned char *verifiers[MAX_SIGNATURES];
|
|
|
|
#define IDENTITY_VERIFIED (1<<0)
|
|
|
|
#define IDENTITY_VERIFIEDBYME (1<<1)
|
|
|
|
#define IDENTITY_NOTVERIFIED (1<<2)
|
|
|
|
/* The value below is for caching negative results */
|
|
|
|
#define IDENTITY_UNKNOWN (1<<3)
|
2012-03-13 01:54:57 +00:00
|
|
|
int verificationStatus;
|
|
|
|
|
|
|
|
/* Set if we know that there are no duplicates of this DID/name
|
|
|
|
combination, as it allows us to avoid a database lookup. */
|
|
|
|
int uniqueDidAndName;
|
2012-02-16 14:08:33 +00:00
|
|
|
} dna_identity_status;
|
|
|
|
|
2012-04-23 07:42:10 +00:00
|
|
|
int parseCommandLine(int argc, const char *const *argv);
|
2012-02-23 02:09:31 +00:00
|
|
|
|
2012-05-15 01:39:21 +00:00
|
|
|
int parseOldCommandLine(int argc, char **argv);
|
|
|
|
int parseAssignment(unsigned char *text, int *var_id, unsigned char *value, int *value_len);
|
|
|
|
|
2012-03-16 22:32:37 +00:00
|
|
|
dna_identity_status *dnacache_lookup(char *did,char *name,char *sid);
|
|
|
|
dna_identity_status *dnacache_lookup_next();
|
2012-02-16 14:08:33 +00:00
|
|
|
int dnacache_update_verification(char *did,char *sid,char *name,
|
|
|
|
char *signature,int revokeVerificationP);
|
|
|
|
int dnacache_vouch_for_identity(char *did,char *sid,char *name);
|
|
|
|
|
|
|
|
#undef DEBUG_MEM_ABUSE
|
2012-02-15 13:08:23 +00:00
|
|
|
#ifdef DEBUG_MEM_ABUSE
|
|
|
|
int memabuseInit();
|
2012-02-16 14:08:33 +00:00
|
|
|
int _memabuseCheck(const char *func,const char *file,const int line);
|
|
|
|
#define memabuseCheck() _memabuseCheck(__FUNCTION__,__FILE__,__LINE__)
|
2012-02-15 13:08:23 +00:00
|
|
|
#else
|
|
|
|
#define memabuseInit() /* */
|
2012-02-16 14:08:33 +00:00
|
|
|
#define memabuseCheck() /* */
|
2012-02-15 13:08:23 +00:00
|
|
|
#endif
|
2012-03-16 22:32:37 +00:00
|
|
|
|
2012-04-23 07:42:10 +00:00
|
|
|
const char *thisinstancepath;
|
|
|
|
const char *serval_instancepath();
|
2012-03-29 03:37:07 +00:00
|
|
|
int form_serval_instance_path(char * buf, size_t bufsiz, const char *path);
|
2012-03-29 04:33:17 +00:00
|
|
|
int create_serval_instance_dir();
|
2012-03-29 03:37:07 +00:00
|
|
|
|
2012-05-14 09:02:10 +00:00
|
|
|
int mkdirs(const char *path, mode_t mode);
|
|
|
|
int mkdirsn(const char *path, size_t len, mode_t mode);
|
2012-05-14 06:02:28 +00:00
|
|
|
|
2012-03-29 03:37:07 +00:00
|
|
|
/* Handy statement for forming a path to an instance file in a char buffer whose declaration
|
|
|
|
* is in scope (so that sizeof(buf) will work). Evaluates to true if the pathname fitted into
|
|
|
|
* the provided buffer, false (0) otherwise (after printing a message to stderr). */
|
|
|
|
#define FORM_SERVAL_INSTANCE_PATH(buf, path) (form_serval_instance_path(buf, sizeof(buf), (path)))
|
2012-03-17 02:32:09 +00:00
|
|
|
|
|
|
|
int overlay_mdp_get_fds(struct pollfd *fds,int *fdcount,int fdmax);
|
|
|
|
int overlay_mdp_poll();
|
2012-04-19 12:23:40 +00:00
|
|
|
int overlay_mdp_reply_error(int sock,
|
|
|
|
struct sockaddr_un *recvaddr,int recvaddrlen,
|
|
|
|
int error_number,char *message);
|
|
|
|
extern int mdp_abstract_socket;
|
|
|
|
extern int mdp_named_socket;
|
|
|
|
|
2012-03-19 05:36:34 +00:00
|
|
|
|
|
|
|
typedef struct sockaddr_mdp {
|
|
|
|
unsigned char sid[SID_SIZE];
|
|
|
|
unsigned int port;
|
|
|
|
} sockaddr_mdp;
|
2012-04-13 16:44:41 +00:00
|
|
|
unsigned char *keyring_get_nm_bytes(sockaddr_mdp *priv,sockaddr_mdp *pub);
|
2012-03-19 05:36:34 +00:00
|
|
|
|
2012-04-24 20:47:26 +00:00
|
|
|
#define MDP_PORT_ECHO 0x00000007
|
2012-04-15 20:36:43 +00:00
|
|
|
#define MDP_PORT_KEYMAPREQUEST 0x10000001
|
2012-04-18 22:04:12 +00:00
|
|
|
#define MDP_PORT_VOMP 0x10000002
|
2012-04-24 20:47:26 +00:00
|
|
|
#define MDP_PORT_DNALOOKUP 0x10000003
|
2012-04-14 17:47:36 +00:00
|
|
|
|
2012-03-20 06:41:58 +00:00
|
|
|
#define MDP_TYPE_MASK 0xff
|
|
|
|
#define MDP_FLAG_MASK 0xff00
|
|
|
|
#define MDP_FORCE 0x0100
|
2012-03-21 02:27:24 +00:00
|
|
|
#define MDP_NOCRYPT 0x0200
|
|
|
|
#define MDP_NOSIGN 0x0400
|
2012-03-19 05:36:34 +00:00
|
|
|
#define MDP_TX 1
|
2012-04-10 03:25:46 +00:00
|
|
|
typedef struct overlay_mdp_data_frame {
|
2012-03-27 08:55:38 +00:00
|
|
|
sockaddr_mdp src;
|
2012-03-19 05:36:34 +00:00
|
|
|
sockaddr_mdp dst;
|
|
|
|
unsigned short payload_length;
|
2012-04-10 03:25:46 +00:00
|
|
|
#define MDP_MTU 2000
|
|
|
|
unsigned char payload[MDP_MTU-100];
|
2012-03-28 00:58:04 +00:00
|
|
|
} overlay_mdp_data_frame;
|
2012-03-19 05:36:34 +00:00
|
|
|
|
|
|
|
#define MDP_BIND 3
|
|
|
|
typedef struct overlay_mdp_bind_request {
|
|
|
|
unsigned int port_number;
|
2012-03-20 06:41:58 +00:00
|
|
|
unsigned char sid[SID_SIZE];
|
2012-03-19 05:36:34 +00:00
|
|
|
} overlay_mdp_bind_request;
|
|
|
|
|
|
|
|
#define MDP_ERROR 4
|
|
|
|
typedef struct overlay_mdp_error {
|
|
|
|
unsigned int error;
|
2012-03-20 06:41:58 +00:00
|
|
|
char message[128];
|
2012-03-19 05:36:34 +00:00
|
|
|
} overlay_mdp_error;
|
|
|
|
|
2012-03-27 08:55:38 +00:00
|
|
|
#define MDP_GETADDRS 5
|
|
|
|
#define MDP_ADDRLIST 6
|
|
|
|
typedef struct overlay_mdp_addrlist {
|
2012-04-25 20:28:16 +00:00
|
|
|
int selfP;
|
2012-03-27 08:55:38 +00:00
|
|
|
unsigned int server_sid_count;
|
|
|
|
unsigned int first_sid;
|
|
|
|
unsigned int last_sid;
|
2012-04-20 06:11:13 +00:00
|
|
|
unsigned int frame_sid_count; /* how many of the following 59 slots are
|
2012-03-27 08:55:38 +00:00
|
|
|
populated */
|
2012-04-10 03:25:46 +00:00
|
|
|
/* 59*32 < (MDP_MTU-100), so up to 59 SIDs in a single reply.
|
2012-03-27 08:55:38 +00:00
|
|
|
Multiple replies can be used to respond with more. */
|
|
|
|
#define MDP_MAX_SID_REQUEST 59
|
|
|
|
unsigned char sids[MDP_MAX_SID_REQUEST][SID_SIZE];
|
|
|
|
} overlay_mdp_addrlist;
|
|
|
|
|
2012-04-18 23:04:57 +00:00
|
|
|
#define MDP_VOMPEVENT 7
|
2012-04-19 20:14:51 +00:00
|
|
|
#define VOMP_MAX_CALLS 16
|
2012-05-16 02:22:22 +00:00
|
|
|
/* Maximum amount of audio to cram into a VoMP audio packet.
|
|
|
|
More lets us include preemptive retransmissions.
|
|
|
|
Less reduces the chance of packets getting lost, and reduces
|
|
|
|
the bandwidth used. */
|
2012-05-18 04:28:31 +00:00
|
|
|
#define VOMP_STUFF_BYTES 800
|
2012-04-23 23:41:57 +00:00
|
|
|
/* elements sorted by size for alignment */
|
2012-04-18 23:04:57 +00:00
|
|
|
typedef struct overlay_mdp_vompevent {
|
2012-04-19 19:49:42 +00:00
|
|
|
/* Once a call has been established, this is how the MDP/VoMP server
|
|
|
|
and user-end process talk about the call. */
|
|
|
|
unsigned int call_session_token;
|
2012-04-18 23:04:57 +00:00
|
|
|
unsigned long long audio_sample_endtime;
|
2012-04-23 23:41:57 +00:00
|
|
|
unsigned long long audio_sample_starttime;
|
2012-04-18 23:04:57 +00:00
|
|
|
unsigned long long last_activity;
|
|
|
|
#define VOMPEVENT_RINGING (1<<0)
|
|
|
|
#define VOMPEVENT_CALLENDED (1<<1)
|
|
|
|
#define VOMPEVENT_CALLREJECT (1<<2)
|
2012-04-19 12:23:40 +00:00
|
|
|
#define VOMPEVENT_HANGUP VOMPEVENT_CALLREJECT
|
2012-04-18 23:04:57 +00:00
|
|
|
#define VOMPEVENT_TIMEOUT (1<<3)
|
|
|
|
#define VOMPEVENT_ERROR (1<<4)
|
|
|
|
#define VOMPEVENT_AUDIOSTREAMING (1<<5)
|
|
|
|
#define VOMPEVENT_DIAL (1<<6)
|
2012-04-19 12:23:40 +00:00
|
|
|
#define VOMPEVENT_REGISTERINTEREST (1<<7)
|
|
|
|
#define VOMPEVENT_WITHDRAWINTEREST (1<<8)
|
2012-04-19 19:49:42 +00:00
|
|
|
#define VOMPEVENT_CALLCREATED (1<<9)
|
2012-04-19 19:55:48 +00:00
|
|
|
#define VOMPEVENT_PICKUP (1<<10)
|
2012-04-19 20:08:45 +00:00
|
|
|
#define VOMPEVENT_CALLINFO (1<<11)
|
2012-04-24 01:34:29 +00:00
|
|
|
#define VOMPEVENT_AUDIOPACKET (1<<12)
|
2012-04-18 23:04:57 +00:00
|
|
|
unsigned int flags;
|
|
|
|
unsigned short audio_sample_bytes;
|
2012-04-23 23:41:57 +00:00
|
|
|
unsigned char audio_sample_codec;
|
2012-04-18 23:04:57 +00:00
|
|
|
unsigned char local_state;
|
|
|
|
unsigned char remote_state;
|
2012-04-23 04:25:17 +00:00
|
|
|
/* list of codecs the registering party is willing to support
|
|
|
|
(for VOMPEVENT_REGISTERINTEREST) */
|
|
|
|
unsigned char supported_codecs[257];
|
2012-04-19 19:49:42 +00:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
/* Used to precisely define the call end points during call
|
|
|
|
setup. */
|
2012-04-21 23:18:23 +00:00
|
|
|
char local_did[64];
|
|
|
|
char remote_did[64];
|
2012-04-19 19:49:42 +00:00
|
|
|
unsigned char local_sid[SID_SIZE];
|
|
|
|
unsigned char remote_sid[SID_SIZE];
|
2012-04-19 20:14:51 +00:00
|
|
|
/* session numbers of other calls in progress
|
|
|
|
(for VOMPEVENT_CALLINFO) */
|
|
|
|
unsigned int other_calls_sessions[VOMP_MAX_CALLS];
|
|
|
|
unsigned char other_calls_states[VOMP_MAX_CALLS];
|
2012-04-19 19:49:42 +00:00
|
|
|
};
|
2012-04-23 04:25:17 +00:00
|
|
|
#define MAX_AUDIO_BYTES 1024
|
|
|
|
unsigned char audio_bytes[MAX_AUDIO_BYTES];
|
2012-04-19 19:49:42 +00:00
|
|
|
};
|
2012-04-18 23:04:57 +00:00
|
|
|
} overlay_mdp_vompevent;
|
|
|
|
|
2012-04-25 21:44:01 +00:00
|
|
|
#define MDP_NODEINFO 8
|
|
|
|
typedef struct overlay_mdp_nodeinfo {
|
|
|
|
unsigned char sid[SID_SIZE];
|
|
|
|
int sid_prefix_length; /* allow wildcard matching */
|
|
|
|
char did[64];
|
2012-05-01 05:08:09 +00:00
|
|
|
char name[64];
|
2012-04-25 21:44:01 +00:00
|
|
|
int foundP;
|
|
|
|
int localP;
|
|
|
|
int neighbourP;
|
|
|
|
int score;
|
|
|
|
int interface_number;
|
|
|
|
int resolve_did;
|
|
|
|
unsigned long long time_since_last_observation;
|
|
|
|
int index; /* which record to return or was returned (incase there are multiple matches) */
|
|
|
|
int count; /* number of matching records */
|
|
|
|
} overlay_mdp_nodeinfo;
|
|
|
|
|
2012-04-30 20:40:47 +00:00
|
|
|
#define MDP_GOODBYE 9
|
2012-03-19 05:36:34 +00:00
|
|
|
typedef struct overlay_mdp_frame {
|
2012-04-18 23:04:57 +00:00
|
|
|
#define MDP_AWAITREPLY 9999
|
2012-03-19 05:36:34 +00:00
|
|
|
unsigned int packetTypeAndFlags;
|
|
|
|
union {
|
2012-03-28 00:58:04 +00:00
|
|
|
overlay_mdp_data_frame out;
|
|
|
|
overlay_mdp_data_frame in;
|
2012-03-19 05:36:34 +00:00
|
|
|
overlay_mdp_bind_request bind;
|
2012-03-27 08:55:38 +00:00
|
|
|
overlay_mdp_addrlist addrlist;
|
2012-04-18 23:04:57 +00:00
|
|
|
overlay_mdp_vompevent vompevent;
|
2012-04-25 21:44:01 +00:00
|
|
|
overlay_mdp_nodeinfo nodeinfo;
|
2012-03-19 05:36:34 +00:00
|
|
|
overlay_mdp_error error;
|
|
|
|
/* 2048 is too large (causes EMSGSIZE errors on OSX, but probably fine on
|
|
|
|
Linux) */
|
2012-04-10 03:25:46 +00:00
|
|
|
char raw[MDP_MTU];
|
2012-03-19 05:36:34 +00:00
|
|
|
};
|
|
|
|
} overlay_mdp_frame;
|
|
|
|
|
2012-04-14 17:47:36 +00:00
|
|
|
int keyring_mapping_request(keyring_file *k,overlay_mdp_frame *req);
|
|
|
|
|
2012-03-28 00:58:04 +00:00
|
|
|
/* Client-side MDP function */
|
|
|
|
extern int mdp_client_socket;
|
2012-03-20 16:30:39 +00:00
|
|
|
int overlay_mdp_client_init();
|
|
|
|
int overlay_mdp_client_done();
|
2012-03-20 16:57:47 +00:00
|
|
|
int overlay_mdp_client_poll(long long timeout_ms);
|
2012-03-20 17:25:13 +00:00
|
|
|
int overlay_mdp_recv(overlay_mdp_frame *mdp,int *ttl);
|
2012-03-28 00:58:04 +00:00
|
|
|
int overlay_mdp_send(overlay_mdp_frame *mdp,int flags,int timeout_ms);
|
|
|
|
|
|
|
|
/* Server-side MDP functions */
|
|
|
|
int overlay_saw_mdp_frame(int interface, overlay_mdp_frame *mdp,long long now);
|
2012-04-15 20:36:43 +00:00
|
|
|
int overlay_mdp_swap_src_dst(overlay_mdp_frame *mdp);
|
2012-03-27 08:55:38 +00:00
|
|
|
int overlay_mdp_reply(int sock,struct sockaddr_un *recvaddr,int recvaddrlen,
|
|
|
|
overlay_mdp_frame *mdpreply);
|
|
|
|
int overlay_mdp_relevant_bytes(overlay_mdp_frame *mdp);
|
2012-04-14 00:08:55 +00:00
|
|
|
int overlay_mdp_dispatch(overlay_mdp_frame *mdp,int userGeneratedFrameP,
|
2012-03-28 00:58:04 +00:00
|
|
|
struct sockaddr_un *recvaddr,int recvaddlen);
|
2012-03-20 17:25:13 +00:00
|
|
|
|
2012-03-22 06:03:25 +00:00
|
|
|
int ob_bcopy(overlay_buffer *b,int from, int to, int len);
|
|
|
|
int ob_setbyte(overlay_buffer *b,int ofs,unsigned char value);
|
2012-03-22 06:40:27 +00:00
|
|
|
|
2012-04-15 20:36:43 +00:00
|
|
|
char *overlay_render_sid(unsigned char *sid);
|
|
|
|
char *overlay_render_sid_prefix(unsigned char *sid,int l);
|
|
|
|
int dump_payload(overlay_frame *p,char *message);
|
|
|
|
|
2012-04-13 16:44:41 +00:00
|
|
|
int urandombytes(unsigned char *x,unsigned long long xlen);
|
|
|
|
|
2012-03-22 06:45:51 +00:00
|
|
|
#ifdef MALLOC_PARANOIA
|
2012-03-22 06:40:27 +00:00
|
|
|
#define malloc(X) _serval_debug_malloc(X,__FILE__,__FUNCTION__,__LINE__)
|
|
|
|
#define calloc(X,Y) _serval_debug_calloc(X,Y,__FILE__,__FUNCTION__,__LINE__)
|
|
|
|
#define free(X) _serval_debug_free(X,__FILE__,__FUNCTION__,__LINE__)
|
|
|
|
|
|
|
|
void *_serval_debug_malloc(unsigned int bytes,char *file,const char *func,int line);
|
|
|
|
void *_serval_debug_calloc(unsigned int bytes,unsigned int count,char *file,const char *func,int line);
|
|
|
|
void _serval_debug_free(void *p,char *file,const char *func,int line);
|
2012-03-22 06:45:51 +00:00
|
|
|
#endif
|
2012-04-18 22:04:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct vomp_call_half {
|
|
|
|
unsigned char sid[SID_SIZE];
|
2012-04-19 19:49:42 +00:00
|
|
|
unsigned char did[64];
|
2012-04-18 22:04:12 +00:00
|
|
|
unsigned char state;
|
2012-05-03 18:28:34 +00:00
|
|
|
unsigned char last_state; // last state communicated to monitoring parties
|
2012-04-18 22:04:12 +00:00
|
|
|
unsigned char codec;
|
|
|
|
unsigned int session;
|
|
|
|
#define VOMP_SESSION_MASK 0xffffff
|
|
|
|
unsigned int sequence;
|
|
|
|
/* the following is from call creation, not start of audio flow */
|
|
|
|
unsigned long long milliseconds_since_call_start;
|
|
|
|
} vomp_call_half;
|
|
|
|
|
2012-04-24 11:19:59 +00:00
|
|
|
typedef struct vomp_sample_block {
|
|
|
|
unsigned int codec;
|
|
|
|
unsigned long long starttime;
|
|
|
|
unsigned long long endtime;
|
|
|
|
unsigned char bytes[1024];
|
|
|
|
} vomp_sample_block;
|
|
|
|
|
|
|
|
#define VOMP_MAX_RECENT_SAMPLES 8
|
2012-04-21 11:51:26 +00:00
|
|
|
typedef struct vomp_call_state {
|
2012-04-18 22:04:12 +00:00
|
|
|
vomp_call_half local;
|
|
|
|
vomp_call_half remote;
|
|
|
|
int ringing;
|
2012-05-10 22:30:09 +00:00
|
|
|
int fast_audio;
|
2012-04-19 22:32:03 +00:00
|
|
|
unsigned long long create_time;
|
2012-04-18 22:04:12 +00:00
|
|
|
unsigned long long last_activity;
|
2012-04-24 20:08:45 +00:00
|
|
|
unsigned long long audio_clock;
|
2012-05-14 06:54:58 +00:00
|
|
|
long long next_status_time;
|
2012-04-18 22:04:12 +00:00
|
|
|
int audio_started;
|
2012-04-21 11:06:26 +00:00
|
|
|
int last_sent_status;
|
2012-04-23 04:00:22 +00:00
|
|
|
unsigned char remote_codec_list[256];
|
2012-04-24 11:19:59 +00:00
|
|
|
int recent_sample_rotor;
|
|
|
|
vomp_sample_block recent_samples[VOMP_MAX_RECENT_SAMPLES];
|
2012-04-18 22:04:12 +00:00
|
|
|
} vomp_call_state;
|
|
|
|
|
2012-05-02 17:30:34 +00:00
|
|
|
extern int vomp_call_count;
|
|
|
|
extern int vomp_active_call;
|
|
|
|
extern vomp_call_state vomp_call_states[VOMP_MAX_CALLS];
|
|
|
|
|
|
|
|
|
2012-04-19 22:32:03 +00:00
|
|
|
#define VOMP_CODEC_NONE 0x00
|
2012-04-18 22:04:12 +00:00
|
|
|
#define VOMP_CODEC_CODEC2_2400 0x01
|
|
|
|
#define VOMP_CODEC_CODEC2_1400 0x02
|
2012-04-23 04:00:22 +00:00
|
|
|
#define VOMP_CODEC_GSMHALF 0x03
|
|
|
|
#define VOMP_CODEC_GSMFULL 0x04
|
|
|
|
#define VOMP_CODEC_16SIGNED 0x05
|
|
|
|
#define VOMP_CODEC_8ULAW 0x06
|
|
|
|
#define VOMP_CODEC_8ALAW 0x07
|
2012-05-06 11:42:31 +00:00
|
|
|
#define VOMP_CODEC_PCM 0x08
|
2012-04-19 12:23:40 +00:00
|
|
|
#define VOMP_CODEC_DTMF 0x80
|
|
|
|
#define VOMP_CODEC_ENGAGED 0x81
|
2012-04-23 04:00:22 +00:00
|
|
|
#define VOMP_CODEC_ONHOLD 0x82
|
|
|
|
#define VOMP_CODEC_CALLERID 0x83
|
2012-04-18 22:04:12 +00:00
|
|
|
#define VOMP_CODEC_CODECSISUPPORT 0xfe
|
|
|
|
#define VOMP_CODEC_CHANGEYOURCODECTO 0xff
|
|
|
|
|
|
|
|
#define VOMP_STATE_NOCALL 1
|
|
|
|
#define VOMP_STATE_CALLPREP 2
|
|
|
|
#define VOMP_STATE_RINGINGOUT 3
|
|
|
|
#define VOMP_STATE_RINGINGIN 4
|
|
|
|
#define VOMP_STATE_INCALL 5
|
|
|
|
#define VOMP_STATE_CALLENDED 6
|
2012-04-21 11:51:26 +00:00
|
|
|
|
|
|
|
/* in milliseconds of inactivity */
|
|
|
|
#define VOMP_CALL_TIMEOUT 120000
|
|
|
|
#define VOMP_CALL_STATUS_INTERVAL 1000
|
2012-05-02 16:58:39 +00:00
|
|
|
|
|
|
|
#define VOMP_TELLINTERESTED (1<<0)
|
|
|
|
#define VOMP_TELLREMOTE (1<<1)
|
|
|
|
#define VOMP_NEWCALL (1<<2)
|
|
|
|
#define VOMP_FORCETELLREMOTE ((1<<3)|VOMP_TELLREMOTE)
|
|
|
|
#define VOMP_TELLCODECS (1<<4)
|
|
|
|
#define VOMP_SENDAUDIO (1<<5)
|
|
|
|
|
|
|
|
vomp_call_state *vomp_find_call_by_session(int session_token);
|
2012-04-18 23:17:59 +00:00
|
|
|
int vomp_mdp_event(overlay_mdp_frame *mdp,
|
|
|
|
struct sockaddr_un *recvaddr,int recvaddrlen);
|
|
|
|
int vomp_mdp_received(overlay_mdp_frame *mdp);
|
2012-04-20 23:37:36 +00:00
|
|
|
char *vomp_describe_state(int state);
|
2012-04-23 07:22:10 +00:00
|
|
|
char *vomp_describe_codec(int c);
|
2012-04-21 11:51:26 +00:00
|
|
|
int vomp_tick();
|
|
|
|
int vomp_tick_interval();
|
2012-04-24 05:57:20 +00:00
|
|
|
int vomp_sample_size(int c);
|
2012-04-24 11:19:59 +00:00
|
|
|
int vomp_codec_timespan(int c);
|
2012-05-02 18:07:03 +00:00
|
|
|
int vomp_send_status(vomp_call_state *call,int flags,overlay_mdp_frame *arg);
|
2012-05-03 18:14:41 +00:00
|
|
|
int vomp_parse_dtmf_digit(char c);
|
2012-04-20 06:11:13 +00:00
|
|
|
|
|
|
|
typedef struct command_line_option {
|
2012-04-23 07:42:10 +00:00
|
|
|
int (*function)(int argc, const char *const *argv, struct command_line_option *o);
|
2012-05-03 05:08:30 +00:00
|
|
|
const char *words[32]; // 32 words should be plenty!
|
2012-04-20 06:11:13 +00:00
|
|
|
unsigned long long flags;
|
|
|
|
#define CLIFLAG_NONOVERLAY (1<<0) /* Uses a legacy IPv4 DNA call instead of overlay mnetwork */
|
|
|
|
#define CLIFLAG_STANDALONE (1<<1) /* Cannot be issued to a running instance */
|
2012-05-03 05:08:30 +00:00
|
|
|
const char *description; // describe this invocation
|
2012-04-20 06:11:13 +00:00
|
|
|
} command_line_option;
|
|
|
|
|
|
|
|
extern command_line_option command_line_options[];
|
2012-04-23 07:42:10 +00:00
|
|
|
int cli_arg(int argc, const char *const *argv, command_line_option *o, char *argname, const char **dst, int (*validator)(const char *arg), char *defaultvalue);
|
2012-04-24 08:20:27 +00:00
|
|
|
int cli_putchar(char c);
|
|
|
|
int cli_puts(const char *str);
|
|
|
|
int cli_printf(const char *fmt, ...);
|
|
|
|
int cli_delim(const char *opt);
|
2012-04-20 06:11:13 +00:00
|
|
|
|
|
|
|
int overlay_mdp_getmyaddr(int index,unsigned char *sid);
|
2012-04-25 10:54:08 +00:00
|
|
|
int overlay_mdp_bind(unsigned char *localaddr,int port);
|
2012-04-25 21:44:01 +00:00
|
|
|
int overlay_route_node_info(overlay_mdp_frame *mdp,
|
|
|
|
struct sockaddr_un *addr,int addrlen);
|
2012-05-10 04:37:11 +00:00
|
|
|
int overlay_interface_register(unsigned char *name,
|
|
|
|
struct sockaddr_in local,
|
|
|
|
struct sockaddr_in broadcast);
|
|
|
|
int overlay_queue_dump(overlay_txqueue *q);
|
|
|
|
int overlay_broadcast_ensemble(int interface_number,
|
|
|
|
struct sockaddr_in *recipientaddr /* NULL == broadcast */,
|
|
|
|
unsigned char *bytes,int len);
|
2012-04-20 06:11:13 +00:00
|
|
|
|
2012-04-23 07:42:10 +00:00
|
|
|
int app_vomp_status(int argc, const char *const *argv, struct command_line_option *o);
|
|
|
|
int app_vomp_dial(int argc, const char *const *argv, struct command_line_option *o);
|
|
|
|
int app_vomp_pickup(int argc, const char *const *argv, struct command_line_option *o);
|
|
|
|
int app_vomp_hangup(int argc, const char *const *argv, struct command_line_option *o);
|
|
|
|
int app_vomp_monitor(int argc, const char *const *argv, struct command_line_option *o);
|
2012-04-23 11:28:28 +00:00
|
|
|
#ifdef HAVE_VOIPTEST
|
|
|
|
int app_pa_phone(int argc, const char *const *argv, struct command_line_option *o);
|
|
|
|
#endif
|
2012-04-24 02:44:53 +00:00
|
|
|
int app_vomp_dtmf(int argc, const char *const *argv, struct command_line_option *o);
|
2012-05-08 05:10:39 +00:00
|
|
|
int app_monitor_cli(int argc, const char *const *argv, struct command_line_option *o);
|
2012-05-02 16:58:39 +00:00
|
|
|
|
|
|
|
int monitor_get_fds(struct pollfd *fds,int *fdcount,int fdmax);
|
|
|
|
|
|
|
|
int monitor_setup_sockets();
|
|
|
|
int monitor_poll();
|
|
|
|
int monitor_get_fds(struct pollfd *fds,int *fdcount,int fdmax);
|
2012-05-02 17:30:34 +00:00
|
|
|
int monitor_call_status(vomp_call_state *call);
|
|
|
|
int monitor_send_audio(vomp_call_state *call,overlay_mdp_frame *audio);
|
2012-05-18 10:50:18 +00:00
|
|
|
int monitor_announce_peer(unsigned char *sid);
|
2012-05-21 03:17:19 +00:00
|
|
|
int monitor_tell_clients(unsigned char *msg,int msglen,int mask);
|
2012-05-02 17:30:34 +00:00
|
|
|
extern int monitor_socket_count;
|
2012-05-09 18:16:27 +00:00
|
|
|
|
2012-05-10 07:28:25 +00:00
|
|
|
|
|
|
|
typedef struct monitor_audio {
|
|
|
|
char name[128];
|
|
|
|
int (*start)();
|
|
|
|
int (*stop)();
|
|
|
|
int (*poll_fds)(struct pollfd *,int);
|
|
|
|
int (*read)(unsigned char *,int);
|
|
|
|
int (*write)(unsigned char *,int);
|
|
|
|
} monitor_audio;
|
|
|
|
extern monitor_audio *audev;
|
|
|
|
|
|
|
|
monitor_audio *audio_msm_g1_detect();
|
|
|
|
monitor_audio *audio_alsa_detect();
|
2012-05-10 22:30:09 +00:00
|
|
|
monitor_audio *audio_reflector_detect();
|
2012-05-09 18:16:27 +00:00
|
|
|
int detectAudioDevice();
|
2012-05-10 08:59:00 +00:00
|
|
|
int getAudioPlayFd();
|
|
|
|
int getAudioRecordFd();
|
2012-05-09 18:16:27 +00:00
|
|
|
int getAudioBytes(unsigned char *buffer,
|
|
|
|
int offset,
|
|
|
|
int bufferSize);
|
|
|
|
int encodeAndDispatchRecordedAudio(int fd,int callSessionToken,
|
|
|
|
int recordCodec,
|
|
|
|
unsigned char *sampleData,
|
|
|
|
int sampleBytes);
|
2012-05-10 04:37:11 +00:00
|
|
|
int scrapeProcNetRoute();
|
2012-05-28 05:24:33 +00:00
|
|
|
int lsif();
|
2012-06-08 07:01:59 +00:00
|
|
|
int doifaddrs();
|
2012-05-10 22:30:09 +00:00
|
|
|
int bufferAudioForPlayback(int codec,long long start_time,long long end_time,
|
|
|
|
unsigned char *data,int dataLen);
|
|
|
|
int startAudio();
|
|
|
|
int stopAudio();
|
2012-05-21 11:15:07 +00:00
|
|
|
|
|
|
|
#define SERVER_UNKNOWN 1
|
|
|
|
#define SERVER_NOTRESPONDING 2
|
|
|
|
#define SERVER_NOTRUNNING 3
|
|
|
|
#define SERVER_RUNNING 4
|
|
|
|
int server_probe(int *pid);
|