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-05-10 04:37:11 +00:00
|
|
|
#include <time.h>
|
2012-02-23 02:15:42 +00:00
|
|
|
#include "serval.h"
|
2010-07-13 12:15:46 +00:00
|
|
|
|
2011-03-21 02:38:35 +00:00
|
|
|
struct reachable_peer {
|
|
|
|
unsigned char addr_len;
|
|
|
|
unsigned char addr[32];
|
|
|
|
unsigned char tq_avg;
|
|
|
|
};
|
|
|
|
|
2011-06-04 03:59:26 +00:00
|
|
|
#ifndef RTF_UP
|
|
|
|
/* Keep this in sync with /usr/src/linux/include/linux/route.h */
|
|
|
|
#define RTF_UP 0x0001 /* route usable */
|
|
|
|
#define RTF_GATEWAY 0x0002 /* destination is a gateway */
|
|
|
|
#define RTF_HOST 0x0004 /* host entry (net otherwise) */
|
|
|
|
#define RTF_REINSTATE 0x0008 /* reinstate route after tmout */
|
|
|
|
#define RTF_DYNAMIC 0x0010 /* created dyn. (by redirect) */
|
|
|
|
#define RTF_MODIFIED 0x0020 /* modified dyn. (by redirect) */
|
|
|
|
#define RTF_MTU 0x0040 /* specific MTU for this route */
|
|
|
|
#ifndef RTF_MSS
|
|
|
|
#define RTF_MSS RTF_MTU /* Compatibility :-( */
|
|
|
|
#endif
|
|
|
|
#define RTF_WINDOW 0x0080 /* per route window clamping */
|
|
|
|
#define RTF_IRTT 0x0100 /* Initial round trip time */
|
|
|
|
#define RTF_REJECT 0x0200 /* Reject route */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int readRoutingTable(struct in_addr peers[],int *peer_count,int peer_max){
|
|
|
|
char devname[64];
|
|
|
|
unsigned long d, g, m;
|
|
|
|
int flgs, ref, use, metric, mtu, win, ir;
|
|
|
|
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Reading routing table\n");
|
2011-06-04 03:59:26 +00:00
|
|
|
|
|
|
|
FILE *fp = fopen("/proc/net/route","r");
|
|
|
|
if (!fp) return -1;
|
|
|
|
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Skipping line\n");
|
2011-06-04 03:59:26 +00:00
|
|
|
if (fscanf(fp, "%*[^\n]\n") < 0)
|
|
|
|
goto ERROR;
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
int r;
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Reading next route\n");
|
2011-06-04 03:59:26 +00:00
|
|
|
r = fscanf(fp, "%63s%lx%lx%X%d%d%d%lx%d%d%d\n",
|
|
|
|
devname, &d, &g, &flgs, &ref, &use, &metric, &m,
|
|
|
|
&mtu, &win, &ir);
|
|
|
|
|
|
|
|
if (r != 11) {
|
|
|
|
if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"eof\n");
|
2011-06-04 03:59:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
ERROR:
|
|
|
|
fclose(fp);
|
2012-05-24 07:41:55 +00:00
|
|
|
return WHY("Unable to parse routing table");
|
2011-06-04 03:59:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flgs & RTF_UP)) { /* Skip interfaces that are down. */
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Skipping down interface %s\n",devname);
|
2011-06-04 03:59:26 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m!=0xFFFFFFFF){
|
2011-12-02 04:09:14 +00:00
|
|
|
/* Netmask indicates a network, so calculate broadcast address */
|
2011-12-02 04:49:27 +00:00
|
|
|
d=(d&m)|(0xffffffff^m);
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Adding broadcast address %08lx\n",d);
|
2011-06-04 03:59:26 +00:00
|
|
|
}
|
|
|
|
|
2011-12-02 06:46:26 +00:00
|
|
|
if (*peer_count<peer_max) peers[(*peer_count)++].s_addr=d;
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Found peer %08lx from routing table\n",d);
|
2011-12-02 06:46:26 +00:00
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int readArpTable(struct in_addr peers[],int *peer_count,int peer_max){
|
|
|
|
unsigned long d;
|
|
|
|
int q1,q2,q3,q4;
|
|
|
|
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Reading ARP table\n");
|
2011-12-02 06:46:26 +00:00
|
|
|
|
|
|
|
FILE *fp = fopen("/proc/net/arp","r");
|
|
|
|
if (!fp) return -1;
|
|
|
|
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Skipping line\n");
|
2011-12-02 06:46:26 +00:00
|
|
|
if (fscanf(fp, "%*[^\n]\n") < 0)
|
|
|
|
goto ERROR;
|
|
|
|
|
|
|
|
while(1){
|
|
|
|
int r;
|
2011-12-04 06:33:27 +00:00
|
|
|
r = fscanf(fp, "%d.%d.%d.%d%*[^\n]\n",
|
2011-12-02 06:46:26 +00:00
|
|
|
&q1,&q2,&q3,&q4);
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Reading next arp entry (r=%d, %d.%d.%d.%d)\n",r,q1,q2,q3,q4);
|
2011-12-02 06:46:26 +00:00
|
|
|
|
|
|
|
d = (q1&0xff)
|
|
|
|
+((q2&0xff)<<8)
|
|
|
|
+((q3&0xff)<<16)
|
|
|
|
+((q4&0xff)<<24);
|
|
|
|
|
|
|
|
if (r != 4) {
|
|
|
|
if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"eof\n");
|
2011-12-02 06:46:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
ERROR:
|
|
|
|
fclose(fp);
|
2012-05-24 07:41:55 +00:00
|
|
|
return WHY("Unable to parse arp table");
|
2011-12-02 06:46:26 +00:00
|
|
|
}
|
|
|
|
|
2011-06-04 03:59:26 +00:00
|
|
|
if (*peer_count<peer_max) peers[(*peer_count)++].s_addr=d;
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Found peer %08lx from ARP table\n",d);
|
2011-06-04 03:59:26 +00:00
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-04-27 11:48:09 +00:00
|
|
|
int readBatmanPeerFile(char *file_path,struct in_addr peers[],int *peer_count,int peer_max)
|
2011-03-21 02:38:35 +00:00
|
|
|
{
|
|
|
|
/* Shiny new code to read the flat file containing peer list */
|
|
|
|
FILE *f;
|
2011-03-30 05:04:23 +00:00
|
|
|
unsigned int offset=0;
|
|
|
|
unsigned int timestamp=0;
|
|
|
|
struct reachable_peer p;
|
|
|
|
|
2011-03-21 02:38:35 +00:00
|
|
|
f=fopen(file_path,"r");
|
|
|
|
if (!f) {
|
|
|
|
fprintf(stderr,"Failed to open peer list file `%s'\n",file_path);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fread(&offset,sizeof(offset),1,f)!=1) {
|
|
|
|
fprintf(stderr,"Failed to read peer list offset from `%s'\n",file_path);
|
|
|
|
fclose(f); return -1; }
|
|
|
|
offset=ntohl(offset);
|
|
|
|
|
|
|
|
if (fseek(f,offset,SEEK_SET)) {
|
|
|
|
fprintf(stderr,"Failed to seek to peer list offset 0x%x in `%s'\n",offset,file_path);
|
|
|
|
fclose(f); return -1; }
|
|
|
|
|
|
|
|
if (fread(×tamp,sizeof(timestamp),1,f)!=1) {
|
|
|
|
fprintf(stderr,"Failed to read peer list timestamp from `%s'\n",file_path);
|
|
|
|
fclose(f); return -1; }
|
|
|
|
timestamp=ntohl(timestamp);
|
|
|
|
|
|
|
|
if (timestamp<(time(0)-3)) {
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Ignoring stale BATMAN peer list (%d seconds old)\n",(int)(time(0)-timestamp));
|
2011-03-21 02:38:35 +00:00
|
|
|
fclose(f);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(fread(&p,sizeof(p),1,f)==1)
|
|
|
|
{
|
|
|
|
struct in_addr i;
|
|
|
|
if (!p.addr_len) break;
|
2012-05-10 04:37:11 +00:00
|
|
|
union { char c[4]; uint32_t ui32; } *u = (void*)&p.addr[0];
|
|
|
|
i.s_addr = u->ui32;
|
2011-03-30 05:04:23 +00:00
|
|
|
if (*peer_count<peer_max) peers[(*peer_count)++]=i;
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Found BATMAN peer '%s'\n",inet_ntoa(i));
|
2011-03-21 02:38:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
return 0;
|
|
|
|
}
|
2010-07-13 12:15:46 +00:00
|
|
|
|
2011-04-27 11:48:09 +00:00
|
|
|
int getBatmanPeerList(char *socket_path,struct in_addr peers[],int *peer_count,int peer_max)
|
2010-07-13 12:15:46 +00:00
|
|
|
{
|
2011-03-30 05:04:23 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
return -1;
|
|
|
|
#else
|
2010-07-13 12:15:46 +00:00
|
|
|
int sock;
|
|
|
|
struct sockaddr_un socket_address;
|
|
|
|
unsigned char buf[16384]; /* big enough for a gigabit jumbo frame or loopback godzilla-gram */
|
|
|
|
int ofs=0;
|
|
|
|
int bytes=0;
|
|
|
|
struct pollfd fds;
|
|
|
|
char cmd[30];
|
|
|
|
int notDone=1;
|
|
|
|
int res;
|
|
|
|
int tries=0;
|
|
|
|
|
|
|
|
askagain:
|
|
|
|
|
|
|
|
/* Make socket */
|
|
|
|
sock=socket(AF_LOCAL,SOCK_STREAM,0);
|
|
|
|
memset(&socket_address,0,sizeof(struct sockaddr_un));
|
|
|
|
socket_address.sun_family=AF_LOCAL;
|
2012-05-24 07:41:55 +00:00
|
|
|
if (strlen(socket_path)>256) return WHY("BATMAN socket path too long");
|
2010-07-13 12:15:46 +00:00
|
|
|
strcpy(socket_address.sun_path,socket_path);
|
|
|
|
|
|
|
|
/* Connect the socket */
|
|
|
|
if (connect(sock,(struct sockaddr*)&socket_address,sizeof(socket_address))<0)
|
2012-05-24 07:41:55 +00:00
|
|
|
return WHY("connect() to BATMAN socket failed.");
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
memset(&cmd[0],0,30);
|
|
|
|
snprintf(cmd,30,"d:%c",1);
|
|
|
|
if (write(sock,cmd,30)!=30)
|
2012-05-24 07:41:55 +00:00
|
|
|
{ close(sock); return WHY("write() command failed to BATMAN socket."); }
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
fds.fd=sock;
|
|
|
|
fds.events=POLLIN;
|
|
|
|
|
|
|
|
getmore:
|
|
|
|
|
|
|
|
while(notDone)
|
|
|
|
{
|
|
|
|
switch (poll(&fds,1,1500)) {
|
|
|
|
case 1: /* Excellent - we have a response */ break;
|
2012-01-10 05:26:40 +00:00
|
|
|
case 0: if (debug&DEBUG_PEERS) fprintf(stderr,"BATMAN did not respond to peer enquiry.\n");
|
2010-07-13 12:15:46 +00:00
|
|
|
close(sock);
|
|
|
|
if (tries++<=3) goto askagain;
|
2012-05-24 07:41:55 +00:00
|
|
|
return WHY("No response from BATMAN.");
|
2010-07-13 12:15:46 +00:00
|
|
|
default: /* some sort of error, e.g., lost connection */
|
|
|
|
close(sock);
|
2012-05-24 07:41:55 +00:00
|
|
|
return WHY("poll() of BATMAN socket failed.");
|
2010-07-13 12:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
res=read(sock,&buf[bytes],16383-bytes); close(sock);
|
|
|
|
ofs=0;
|
|
|
|
if (res<1) {
|
|
|
|
if (bytes)
|
|
|
|
{
|
|
|
|
/* Got a partial response, then a dead line.
|
|
|
|
Should probably ask again unless we have tried too many times.
|
|
|
|
*/
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Trying again after cold drop.\n");
|
2010-07-13 12:15:46 +00:00
|
|
|
close(sock);
|
|
|
|
bytes=0;
|
|
|
|
if (tries++<=3) goto askagain;
|
2012-05-24 07:41:55 +00:00
|
|
|
else return WHY("failed to read() from BATMAN socket (too many tries).");
|
2010-07-13 12:15:46 +00:00
|
|
|
}
|
2012-05-24 07:41:55 +00:00
|
|
|
return WHY("failed to read() from BATMAN socket.");
|
2010-07-13 12:15:46 +00:00
|
|
|
}
|
|
|
|
if (!res) return 0;
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"BATMAN has responded with %d bytes.\n",res);
|
2010-07-13 12:15:46 +00:00
|
|
|
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) dump("BATMAN says",&buf[bytes],res);
|
2010-07-13 12:15:46 +00:00
|
|
|
|
|
|
|
if (res<80 /*||buf[bytes]!='B' -- turns out we can't rely on this, either */
|
|
|
|
||buf[bytes+res-1]!=0x0a||buf[bytes+res-4]!='E')
|
|
|
|
{
|
|
|
|
/* Jolly BATMAN on Android sometimes sends us bung packets from time to
|
|
|
|
time. Sometimes it is fragmenting, other times it is just plain
|
|
|
|
odd.
|
|
|
|
If this happens, we should just ask again.
|
|
|
|
We should also try to reassemble fragments.
|
|
|
|
|
|
|
|
Sometimes we get cold-drops and resumes, too. Yay.
|
|
|
|
*/
|
|
|
|
if (buf[bytes+res-4]!='E') {
|
|
|
|
/* no end marker, so try adding record to the end. */
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Data has no end marker, accumulating.\n");
|
2010-07-13 12:15:46 +00:00
|
|
|
bytes+=res;
|
|
|
|
goto getmore;
|
|
|
|
}
|
|
|
|
close(sock);
|
|
|
|
goto askagain;
|
|
|
|
}
|
|
|
|
bytes+=res;
|
|
|
|
|
|
|
|
while(ofs<bytes)
|
|
|
|
{
|
2012-01-10 05:26:40 +00:00
|
|
|
if(debug&DEBUG_PEERS) fprintf(stderr,"New line @ %d\n",ofs);
|
2010-07-13 12:15:46 +00:00
|
|
|
/* Check for IP address of peers */
|
|
|
|
if (isdigit(buf[ofs]))
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i=0;ofs+i<bytes;i++)
|
|
|
|
if (buf[i+ofs]==' ') {
|
|
|
|
buf[i+ofs]=0;
|
2011-04-27 11:48:09 +00:00
|
|
|
if (*peer_count<peer_max) peers[(*peer_count)++].s_addr=inet_addr((char *)&buf[ofs]);
|
2012-01-10 05:26:40 +00:00
|
|
|
if (debug&DEBUG_PEERS) fprintf(stderr,"Found BATMAN peer '%s'\n",&buf[ofs]);
|
2010-07-13 12:15:46 +00:00
|
|
|
buf[ofs+i]=' ';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Check for end of transmission */
|
|
|
|
if (buf[ofs]=='E') { notDone=0; }
|
|
|
|
|
|
|
|
/* Skip to next line */
|
|
|
|
while(buf[ofs]>=' '&&(ofs<bytes)) ofs++;
|
|
|
|
while(buf[ofs]<' '&&(ofs<bytes)) ofs++;
|
|
|
|
}
|
|
|
|
bytes=0;
|
|
|
|
}
|
|
|
|
return 0;
|
2011-03-30 05:04:23 +00:00
|
|
|
#endif
|
2010-07-13 12:15:46 +00:00
|
|
|
}
|