2011-12-21 09:55:05 +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-09-05 09:23:22 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
2012-06-15 05:34:36 +00:00
|
|
|
#include <assert.h>
|
2012-05-10 04:37:11 +00:00
|
|
|
#include <time.h>
|
2012-12-04 03:42:28 +00:00
|
|
|
#include <fnmatch.h>
|
2012-02-23 02:15:42 +00:00
|
|
|
#include "serval.h"
|
2012-12-04 03:42:28 +00:00
|
|
|
#include "conf.h"
|
2012-06-28 08:04:21 +00:00
|
|
|
#include "strbuf.h"
|
2012-12-04 03:42:28 +00:00
|
|
|
#include "strbuf_helpers.h"
|
2012-08-22 00:51:38 +00:00
|
|
|
#include "overlay_buffer.h"
|
2012-08-27 00:34:59 +00:00
|
|
|
#include "overlay_packet.h"
|
2012-10-31 07:46:05 +00:00
|
|
|
#include "str.h"
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2011-08-08 14:41:46 +00:00
|
|
|
#ifdef HAVE_IFADDRS_H
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
#endif
|
|
|
|
|
2011-08-08 06:41:05 +00:00
|
|
|
int overlay_ready=0;
|
|
|
|
int overlay_interface_count=0;
|
|
|
|
overlay_interface overlay_interfaces[OVERLAY_MAX_INTERFACES];
|
2012-01-08 17:49:52 +00:00
|
|
|
int overlay_last_interface_number=-1;
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2012-07-02 06:34:00 +00:00
|
|
|
struct profile_total interface_poll_stats;
|
|
|
|
struct profile_total dummy_poll_stats;
|
2012-07-02 05:50:30 +00:00
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
struct sched_ent sock_any;
|
2012-08-24 05:51:23 +00:00
|
|
|
struct sockaddr_in sock_any_addr;
|
2012-08-08 05:27:27 +00:00
|
|
|
struct profile_total sock_any_stats;
|
|
|
|
|
2012-08-31 02:41:31 +00:00
|
|
|
static void overlay_interface_poll(struct sched_ent *alarm);
|
2012-10-16 06:16:52 +00:00
|
|
|
static void logServalPacket(int level, struct __sourceloc __whence, const char *message, const unsigned char *packet, size_t len);
|
|
|
|
|
|
|
|
#define DEBUG_packet_visualise(M,P,N) logServalPacket(LOG_LEVEL_DEBUG, __WHENCE__, (M), (P), (N))
|
2012-07-06 00:28:54 +00:00
|
|
|
|
2012-08-31 02:41:31 +00:00
|
|
|
static void
|
|
|
|
overlay_interface_close(overlay_interface *interface){
|
2012-08-08 05:27:27 +00:00
|
|
|
if (interface->fileP){
|
|
|
|
INFOF("Interface %s is down", interface->name);
|
|
|
|
}else{
|
|
|
|
INFOF("Interface %s addr %s is down", interface->name, inet_ntoa(interface->broadcast_address.sin_addr));
|
|
|
|
}
|
2012-07-25 07:23:44 +00:00
|
|
|
unschedule(&interface->alarm);
|
|
|
|
unwatch(&interface->alarm);
|
|
|
|
close(interface->alarm.poll.fd);
|
|
|
|
interface->alarm.poll.fd=-1;
|
|
|
|
interface->state=INTERFACE_STATE_DOWN;
|
|
|
|
}
|
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
// create a socket with options common to all our UDP sockets
|
2012-08-31 02:41:31 +00:00
|
|
|
static int
|
|
|
|
overlay_bind_socket(const struct sockaddr *addr, size_t addr_size, char *interface_name){
|
2012-08-08 05:27:27 +00:00
|
|
|
int fd;
|
|
|
|
int reuseP = 1;
|
|
|
|
int broadcastP = 1;
|
2012-07-02 03:49:54 +00:00
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
fd = socket(PF_INET,SOCK_DGRAM,0);
|
|
|
|
if (fd < 0) {
|
|
|
|
WHY_perror("Error creating socket");
|
|
|
|
return -1;
|
2012-07-25 07:23:44 +00:00
|
|
|
}
|
2012-08-08 05:27:27 +00:00
|
|
|
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuseP, sizeof(reuseP)) < 0) {
|
2012-07-25 07:23:44 +00:00
|
|
|
WHY_perror("setsockopt(SO_REUSEADR)");
|
|
|
|
goto error;
|
|
|
|
}
|
2012-08-08 05:27:27 +00:00
|
|
|
|
|
|
|
#ifdef SO_REUSEPORT
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &reuseP, sizeof(reuseP)) < 0) {
|
|
|
|
WHY_perror("setsockopt(SO_REUSEPORT)");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_BROADCAST, &broadcastP, sizeof(broadcastP)) < 0) {
|
2012-07-25 07:23:44 +00:00
|
|
|
WHY_perror("setsockopt(SO_BROADCAST)");
|
2012-06-08 08:59:27 +00:00
|
|
|
goto error;
|
|
|
|
}
|
2012-08-08 05:27:27 +00:00
|
|
|
|
2012-02-23 01:27:46 +00:00
|
|
|
/* Automatically close socket on calls to exec().
|
2012-08-08 05:27:27 +00:00
|
|
|
This makes life easier when we restart with an exec after receiving
|
|
|
|
a bad signal. */
|
2012-09-05 09:23:22 +00:00
|
|
|
fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, NULL) |
|
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
FD_CLOEXEC
|
|
|
|
#else
|
|
|
|
O_CLOEXEC
|
|
|
|
#endif
|
|
|
|
);
|
2012-08-08 05:27:27 +00:00
|
|
|
|
2012-07-25 07:23:44 +00:00
|
|
|
#ifdef SO_BINDTODEVICE
|
|
|
|
/*
|
|
|
|
Limit incoming and outgoing packets to this interface, no matter what the routing table says.
|
|
|
|
This should allow for a device with multiple interfaces on the same subnet.
|
2012-08-08 05:27:27 +00:00
|
|
|
Don't abort if this fails, I believe it requires root, just log it.
|
2012-07-25 07:23:44 +00:00
|
|
|
*/
|
2012-08-08 05:27:27 +00:00
|
|
|
if (interface_name && setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, interface_name, strlen(interface_name)+1) < 0) {
|
2012-07-25 07:23:44 +00:00
|
|
|
WHY_perror("setsockopt(SO_BINDTODEVICE)");
|
|
|
|
}
|
|
|
|
#endif
|
2012-08-08 05:27:27 +00:00
|
|
|
|
|
|
|
if (bind(fd, addr, addr_size)) {
|
|
|
|
WHY_perror("Bind failed");
|
2012-06-08 08:59:27 +00:00
|
|
|
goto error;
|
2011-08-08 06:41:05 +00:00
|
|
|
}
|
2012-08-08 05:27:27 +00:00
|
|
|
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
error:
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-12-07 05:34:40 +00:00
|
|
|
overlay_interface * overlay_interface_get_default(){
|
|
|
|
int i;
|
|
|
|
for (i=0;i<OVERLAY_MAX_INTERFACES;i++){
|
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_UP && overlay_interfaces[i].default_route)
|
|
|
|
return &overlay_interfaces[i];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
overlay_interface * overlay_interface_find(struct in_addr addr, int return_default){
|
2012-08-30 00:04:52 +00:00
|
|
|
int i;
|
2012-12-04 04:17:57 +00:00
|
|
|
overlay_interface *ret = NULL;
|
2012-08-30 00:04:52 +00:00
|
|
|
for (i=0;i<OVERLAY_MAX_INTERFACES;i++){
|
|
|
|
if (overlay_interfaces[i].state!=INTERFACE_STATE_UP)
|
|
|
|
continue;
|
2012-12-04 04:17:57 +00:00
|
|
|
|
2012-08-30 00:04:52 +00:00
|
|
|
if ((overlay_interfaces[i].netmask.s_addr & addr.s_addr) == (overlay_interfaces[i].netmask.s_addr & overlay_interfaces[i].address.sin_addr.s_addr)){
|
|
|
|
return &overlay_interfaces[i];
|
|
|
|
}
|
2012-12-04 04:17:57 +00:00
|
|
|
|
|
|
|
// check if this is a default interface
|
2012-12-07 05:34:40 +00:00
|
|
|
if (return_default && overlay_interfaces[i].default_route)
|
2012-12-04 04:17:57 +00:00
|
|
|
ret=&overlay_interfaces[i];
|
2012-08-30 00:04:52 +00:00
|
|
|
}
|
|
|
|
|
2012-12-04 04:17:57 +00:00
|
|
|
return ret;
|
2012-08-30 00:04:52 +00:00
|
|
|
}
|
|
|
|
|
2012-09-14 02:20:45 +00:00
|
|
|
overlay_interface * overlay_interface_find_name(const char *name){
|
|
|
|
int i;
|
|
|
|
for (i=0;i<OVERLAY_MAX_INTERFACES;i++){
|
|
|
|
if (overlay_interfaces[i].state!=INTERFACE_STATE_UP)
|
|
|
|
continue;
|
2012-12-05 05:17:14 +00:00
|
|
|
if (strcasecmp(name, overlay_interfaces[i].name) == 0)
|
2012-09-14 02:20:45 +00:00
|
|
|
return &overlay_interfaces[i];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
// OSX doesn't recieve broadcast packets on sockets bound to an interface's address
|
|
|
|
// So we have to bind a socket to INADDR_ANY to receive these packets.
|
2012-08-31 02:41:31 +00:00
|
|
|
static void
|
|
|
|
overlay_interface_read_any(struct sched_ent *alarm){
|
2012-08-22 05:20:14 +00:00
|
|
|
if (alarm->poll.revents & POLLIN) {
|
|
|
|
int plen=0;
|
|
|
|
int recvttl=1;
|
|
|
|
unsigned char packet[16384];
|
|
|
|
overlay_interface *interface=NULL;
|
|
|
|
struct sockaddr src_addr;
|
|
|
|
socklen_t addrlen = sizeof(src_addr);
|
2012-08-27 00:34:59 +00:00
|
|
|
|
2012-08-22 05:20:14 +00:00
|
|
|
/* Read only one UDP packet per call to share resources more fairly, and also
|
|
|
|
enable stats to accurately count packets received */
|
|
|
|
plen = recvwithttl(alarm->poll.fd, packet, sizeof(packet), &recvttl, &src_addr, &addrlen);
|
|
|
|
if (plen == -1) {
|
|
|
|
WHY_perror("recvwithttl(c)");
|
|
|
|
unwatch(alarm);
|
|
|
|
close(alarm->poll.fd);
|
|
|
|
return;
|
|
|
|
}
|
2012-08-27 00:34:59 +00:00
|
|
|
|
2012-08-22 05:20:14 +00:00
|
|
|
struct in_addr src = ((struct sockaddr_in *)&src_addr)->sin_addr;
|
2012-08-27 00:34:59 +00:00
|
|
|
|
2012-08-22 05:20:14 +00:00
|
|
|
/* Try to identify the real interface that the packet arrived on */
|
2012-12-07 05:34:40 +00:00
|
|
|
interface = overlay_interface_find(src, 0);
|
2012-08-27 00:34:59 +00:00
|
|
|
|
2012-08-30 00:04:52 +00:00
|
|
|
/* Drop the packet if we don't find a match */
|
2012-08-22 05:20:14 +00:00
|
|
|
if (!interface){
|
|
|
|
if (debug&DEBUG_OVERLAYINTERFACES)
|
|
|
|
DEBUGF("Could not find matching interface for packet received from %s", inet_ntoa(src));
|
|
|
|
return;
|
|
|
|
}
|
2012-08-27 00:34:59 +00:00
|
|
|
|
2012-08-22 05:20:14 +00:00
|
|
|
/* We have a frame from this interface */
|
|
|
|
if (debug&DEBUG_PACKETRX)
|
|
|
|
DEBUG_packet_visualise("Read from real interface", packet,plen);
|
2012-11-28 03:43:25 +00:00
|
|
|
if (debug&DEBUG_OVERLAYINTERFACES)
|
2012-09-10 01:01:01 +00:00
|
|
|
DEBUGF("Received %d bytes from %s on interface %s (ANY)",plen,
|
2012-11-28 03:43:25 +00:00
|
|
|
inet_ntoa(src),
|
2012-09-10 01:01:01 +00:00
|
|
|
interface->name);
|
2012-11-21 05:00:20 +00:00
|
|
|
|
|
|
|
if (packetOkOverlay(interface, packet, plen, recvttl, &src_addr, addrlen)) {
|
2012-08-22 05:20:14 +00:00
|
|
|
WHY("Malformed packet");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (alarm->poll.revents & (POLLHUP | POLLERR)) {
|
|
|
|
INFO("Closing broadcast socket due to error");
|
|
|
|
unwatch(alarm);
|
|
|
|
close(alarm->poll.fd);
|
|
|
|
alarm->poll.fd=-1;
|
2012-08-27 00:34:59 +00:00
|
|
|
}
|
2012-08-08 05:27:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// bind a socket to INADDR_ANY:port
|
|
|
|
// for now, we don't have a graceful close for this interface but it should go away when the process dies
|
2012-12-04 03:42:28 +00:00
|
|
|
static int overlay_interface_init_any(int port)
|
|
|
|
{
|
2012-08-08 05:27:27 +00:00
|
|
|
struct sockaddr_in addr;
|
|
|
|
|
|
|
|
if (sock_any.poll.fd>0){
|
2012-08-24 05:51:23 +00:00
|
|
|
// Check the port number matches
|
2012-09-01 02:51:32 +00:00
|
|
|
if (sock_any_addr.sin_port != htons(port))
|
|
|
|
return WHYF("Unable to listen to broadcast packets for ports %d & %d", port, ntohs(sock_any_addr.sin_port));
|
2012-08-24 05:51:23 +00:00
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
addr.sin_family = AF_INET;
|
|
|
|
addr.sin_port = htons(port);
|
|
|
|
addr.sin_addr.s_addr = INADDR_ANY;
|
2012-08-24 05:51:23 +00:00
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
sock_any.poll.fd = overlay_bind_socket((const struct sockaddr *)&addr, sizeof(addr), NULL);
|
|
|
|
if (sock_any.poll.fd<0)
|
|
|
|
return -1;
|
|
|
|
|
2012-08-24 05:51:23 +00:00
|
|
|
sock_any_addr = addr;
|
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
sock_any.poll.events=POLLIN;
|
|
|
|
sock_any.function = overlay_interface_read_any;
|
|
|
|
|
|
|
|
sock_any_stats.name="overlay_interface_read_any";
|
|
|
|
sock_any.stats=&sock_any_stats;
|
|
|
|
watch(&sock_any);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-31 02:41:31 +00:00
|
|
|
static int
|
2012-08-08 05:27:27 +00:00
|
|
|
overlay_interface_init_socket(int interface_index)
|
|
|
|
{
|
|
|
|
overlay_interface *const interface = &overlay_interfaces[interface_index];
|
|
|
|
interface->fileP = 0;
|
|
|
|
|
|
|
|
/*
|
2012-09-11 05:50:44 +00:00
|
|
|
On linux you can bind to the broadcast address to receive broadcast packets per interface [or subnet],
|
|
|
|
but then you can't receive unicast packets on the same socket.
|
|
|
|
|
|
|
|
On osx, you can only receive broadcast packets if you bind to INADDR_ANY.
|
|
|
|
|
|
|
|
So the most portable way to do this is to bind to each interface's IP address for sending broadcasts
|
|
|
|
and receiving unicasts, and bind a separate socket to INADDR_ANY just for receiving broadcast packets.
|
|
|
|
|
|
|
|
Sending packets from INADDR_ANY would probably work, but gives us less control over which interfaces are sending packets.
|
|
|
|
But there may be some platforms that need some other combination for everything to work.
|
2012-08-08 05:27:27 +00:00
|
|
|
*/
|
2012-09-11 05:50:44 +00:00
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
overlay_interface_init_any(interface->port);
|
2012-09-11 05:50:44 +00:00
|
|
|
|
|
|
|
const struct sockaddr *addr = (const struct sockaddr *)&interface->address;
|
2012-08-08 05:27:27 +00:00
|
|
|
|
|
|
|
interface->alarm.poll.fd = overlay_bind_socket(addr, sizeof(interface->broadcast_address), interface->name);
|
|
|
|
if (interface->alarm.poll.fd<0){
|
|
|
|
interface->state=INTERFACE_STATE_DOWN;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (debug & (DEBUG_PACKETRX | DEBUG_IO)){
|
|
|
|
char srctxt[INET_ADDRSTRLEN];
|
|
|
|
if (inet_ntop(AF_INET, (const void *)&interface->broadcast_address.sin_addr, srctxt, INET_ADDRSTRLEN))
|
|
|
|
DEBUGF("Bound to %s:%d", srctxt, ntohs(interface->broadcast_address.sin_port));
|
2012-07-31 08:19:24 +00:00
|
|
|
}
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->alarm.poll.events=POLLIN;
|
|
|
|
interface->alarm.function = overlay_interface_poll;
|
2012-07-02 05:50:30 +00:00
|
|
|
|
|
|
|
interface_poll_stats.name="overlay_interface_poll";
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->alarm.stats=&interface_poll_stats;
|
|
|
|
watch(&interface->alarm);
|
2012-07-06 00:28:54 +00:00
|
|
|
|
2012-08-30 00:04:52 +00:00
|
|
|
if (interface->tick_ms>0){
|
|
|
|
// run the first tick asap
|
|
|
|
interface->alarm.alarm=gettime_ms();
|
|
|
|
interface->alarm.deadline=interface->alarm.alarm+10;
|
|
|
|
schedule(&interface->alarm);
|
|
|
|
}
|
2012-07-02 03:49:54 +00:00
|
|
|
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->state=INTERFACE_STATE_UP;
|
2012-07-25 07:23:44 +00:00
|
|
|
|
2012-12-10 03:54:52 +00:00
|
|
|
INFOF("Interface %s addr %s:%d, is up",interface->name,
|
|
|
|
inet_ntoa(interface->address.sin_addr), ntohs(interface->address.sin_port));
|
2012-09-07 00:31:34 +00:00
|
|
|
|
2012-09-19 00:22:14 +00:00
|
|
|
directory_registration();
|
2012-09-14 02:20:45 +00:00
|
|
|
|
2011-08-12 07:47:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-31 02:41:31 +00:00
|
|
|
static int
|
2012-12-04 03:42:28 +00:00
|
|
|
overlay_interface_init(const char *name, struct in_addr src_addr, struct in_addr netmask, struct in_addr broadcast,
|
|
|
|
const struct config_network_interface *ifconfig)
|
2011-08-12 07:47:29 +00:00
|
|
|
{
|
|
|
|
/* Too many interfaces */
|
|
|
|
if (overlay_interface_count>=OVERLAY_MAX_INTERFACES) return WHY("Too many interfaces -- Increase OVERLAY_MAX_INTERFACES");
|
|
|
|
|
2012-07-31 08:19:24 +00:00
|
|
|
overlay_interface *const interface = &overlay_interfaces[overlay_interface_count];
|
2011-08-12 07:47:29 +00:00
|
|
|
|
2012-11-09 03:10:55 +00:00
|
|
|
strncpy(interface->name, name, sizeof interface->name);
|
|
|
|
|
2011-08-09 04:45:24 +00:00
|
|
|
/* Pick a reasonable default MTU.
|
|
|
|
This will ultimately get tuned by the bandwidth and other properties of the interface */
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->mtu=1200;
|
|
|
|
interface->state=INTERFACE_STATE_DOWN;
|
2012-12-04 03:42:28 +00:00
|
|
|
interface->bits_per_second = ifconfig->speed;
|
|
|
|
interface->port= ifconfig->port;
|
|
|
|
interface->type= ifconfig->type;
|
2012-12-07 03:39:55 +00:00
|
|
|
interface->default_route = ifconfig->default_route;
|
2012-12-10 03:54:52 +00:00
|
|
|
DEBUGF("interface->default_route=%d",interface->default_route);
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->last_tick_ms= -1; // not ticked yet
|
|
|
|
interface->alarm.poll.fd=0;
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2012-12-04 03:42:28 +00:00
|
|
|
// How often do we announce ourselves on this interface?
|
|
|
|
int32_t tick_ms = ifconfig->mdp_tick_ms;
|
|
|
|
if (tick_ms < 0) {
|
|
|
|
int i = config_mdp_iftypelist__get(&config.mdp.iftype, &ifconfig->type);
|
|
|
|
if (i != -1)
|
|
|
|
tick_ms = config.mdp.iftype.av[i].value.tick_ms;
|
2012-08-30 00:04:52 +00:00
|
|
|
}
|
2012-12-04 03:42:28 +00:00
|
|
|
if (tick_ms < 0) {
|
|
|
|
switch (ifconfig->type) {
|
|
|
|
case OVERLAY_INTERFACE_PACKETRADIO:
|
|
|
|
tick_ms = 15000;
|
|
|
|
break;
|
|
|
|
case OVERLAY_INTERFACE_ETHERNET:
|
|
|
|
tick_ms = 500;
|
|
|
|
break;
|
|
|
|
case OVERLAY_INTERFACE_WIFI:
|
|
|
|
tick_ms = 500;
|
|
|
|
break;
|
|
|
|
case OVERLAY_INTERFACE_UNKNOWN:
|
|
|
|
tick_ms = 500;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return WHYF("Unsupported interface type %d", ifconfig->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(tick_ms >= 0);
|
|
|
|
interface->tick_ms = tick_ms;
|
|
|
|
|
|
|
|
// disable announcements and other broadcasts if tick_ms=0.
|
|
|
|
if (interface->tick_ms > 0)
|
2012-08-30 00:04:52 +00:00
|
|
|
interface->send_broadcasts=1;
|
2012-09-19 00:22:14 +00:00
|
|
|
else{
|
2012-08-30 00:04:52 +00:00
|
|
|
interface->send_broadcasts=0;
|
2012-09-19 00:22:14 +00:00
|
|
|
INFOF("Interface %s is running tickless", name);
|
|
|
|
}
|
2012-12-04 03:42:28 +00:00
|
|
|
if (ifconfig->dummy[0]) {
|
|
|
|
interface->fileP = 1;
|
2012-03-19 05:36:34 +00:00
|
|
|
char dummyfile[1024];
|
2012-12-04 03:42:28 +00:00
|
|
|
strbuf d = strbuf_local(dummyfile, sizeof dummyfile);
|
|
|
|
strbuf_path_join(d, serval_instancepath(), config.server.dummy_interface_dir, ifconfig->dummy, NULL);
|
|
|
|
if (strbuf_overrun(d))
|
|
|
|
return WHYF("dummy interface file name overrun: %s", alloca_str_toprint(strbuf_str(d)));
|
2012-07-31 08:19:24 +00:00
|
|
|
if ((interface->alarm.poll.fd = open(dummyfile,O_APPEND|O_RDWR)) < 1) {
|
2012-09-19 00:22:14 +00:00
|
|
|
return WHYF("could not open dummy interface file %s for append", dummyfile);
|
2012-06-21 06:22:44 +00:00
|
|
|
}
|
|
|
|
|
2012-12-10 03:54:52 +00:00
|
|
|
bzero(&interface->address, sizeof(interface->address));
|
2012-12-04 04:17:57 +00:00
|
|
|
interface->address.sin_family=AF_INET;
|
2012-12-08 04:39:41 +00:00
|
|
|
interface->address.sin_port = htons(PORT_DNA);
|
|
|
|
interface->address.sin_addr = ifconfig->dummy_address;
|
2012-12-04 04:17:57 +00:00
|
|
|
|
2012-12-08 04:39:41 +00:00
|
|
|
interface->netmask=ifconfig->dummy_netmask;
|
2012-12-04 04:17:57 +00:00
|
|
|
|
2012-12-10 03:54:52 +00:00
|
|
|
bzero(&interface->broadcast_address, sizeof(interface->address));
|
2012-12-04 04:17:57 +00:00
|
|
|
interface->broadcast_address.sin_family=AF_INET;
|
2012-12-08 04:39:41 +00:00
|
|
|
interface->broadcast_address.sin_port = htons(PORT_DNA);
|
2012-12-04 04:17:57 +00:00
|
|
|
interface->broadcast_address.sin_addr.s_addr = interface->address.sin_addr.s_addr | ~interface->netmask.s_addr;
|
2012-12-08 04:39:41 +00:00
|
|
|
interface->drop_broadcasts = ifconfig->dummy_filter_broadcasts;
|
2012-12-04 04:17:57 +00:00
|
|
|
|
2011-08-13 11:17:49 +00:00
|
|
|
/* Seek to end of file as initial reading point */
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->recv_offset = lseek(interface->alarm.poll.fd,0,SEEK_END);
|
2011-08-13 11:17:49 +00:00
|
|
|
/* XXX later add pretend location information so that we can decide which "packets" to receive
|
|
|
|
based on closeness */
|
2012-07-02 03:49:54 +00:00
|
|
|
|
|
|
|
// schedule an alarm for this interface
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->alarm.function=overlay_dummy_poll;
|
|
|
|
interface->alarm.alarm=gettime_ms()+10;
|
|
|
|
interface->alarm.deadline=interface->alarm.alarm;
|
2012-07-02 05:50:30 +00:00
|
|
|
dummy_poll_stats.name="overlay_dummy_poll";
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->alarm.stats=&dummy_poll_stats;
|
|
|
|
schedule(&interface->alarm);
|
2012-07-25 07:23:44 +00:00
|
|
|
|
2012-07-31 08:19:24 +00:00
|
|
|
interface->state=INTERFACE_STATE_UP;
|
2012-12-10 03:54:52 +00:00
|
|
|
INFOF("Dummy interface %s addr %s:%d, is up",interface->name,
|
|
|
|
inet_ntoa(interface->address.sin_addr), ntohs(interface->address.sin_port));
|
2012-07-25 07:23:44 +00:00
|
|
|
|
2012-09-19 00:22:14 +00:00
|
|
|
directory_registration();
|
|
|
|
|
2011-08-13 11:17:49 +00:00
|
|
|
} else {
|
2012-08-08 05:27:27 +00:00
|
|
|
|
|
|
|
interface->netmask = netmask;
|
|
|
|
|
|
|
|
interface->address.sin_addr = src_addr;
|
|
|
|
interface->address.sin_family = AF_INET;
|
|
|
|
interface->address.sin_port = htons(interface->port);
|
|
|
|
|
|
|
|
interface->broadcast_address.sin_addr = broadcast;
|
|
|
|
interface->broadcast_address.sin_family = AF_INET;
|
|
|
|
interface->broadcast_address.sin_port = htons(interface->port);
|
|
|
|
|
2012-07-25 07:23:44 +00:00
|
|
|
if (overlay_interface_init_socket(overlay_interface_count))
|
2011-08-13 11:17:49 +00:00
|
|
|
return WHY("overlay_interface_init_socket() failed");
|
|
|
|
}
|
2011-08-12 07:47:29 +00:00
|
|
|
|
2011-08-08 06:41:05 +00:00
|
|
|
overlay_interface_count++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-31 02:41:31 +00:00
|
|
|
static void overlay_interface_poll(struct sched_ent *alarm)
|
2011-08-08 06:41:05 +00:00
|
|
|
{
|
2012-07-02 03:49:54 +00:00
|
|
|
struct overlay_interface *interface = (overlay_interface *)alarm;
|
2012-07-06 00:28:54 +00:00
|
|
|
|
|
|
|
if (alarm->poll.revents==0){
|
2012-07-25 07:23:44 +00:00
|
|
|
|
2012-08-30 00:04:52 +00:00
|
|
|
if (interface->state==INTERFACE_STATE_UP && interface->tick_ms>0){
|
2012-07-25 07:23:44 +00:00
|
|
|
// tick the interface
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
2012-07-25 07:23:44 +00:00
|
|
|
int i = (interface - overlay_interfaces);
|
|
|
|
overlay_tick_interface(i, now);
|
|
|
|
alarm->alarm=now+interface->tick_ms;
|
|
|
|
alarm->deadline=alarm->alarm+interface->tick_ms/2;
|
|
|
|
schedule(alarm);
|
|
|
|
}
|
|
|
|
|
2012-07-06 00:28:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-07-02 03:49:54 +00:00
|
|
|
|
2012-08-22 05:20:14 +00:00
|
|
|
if (alarm->poll.revents & POLLIN) {
|
|
|
|
int plen=0;
|
|
|
|
unsigned char packet[16384];
|
|
|
|
|
|
|
|
struct sockaddr src_addr;
|
|
|
|
socklen_t addrlen = sizeof(src_addr);
|
|
|
|
|
|
|
|
|
|
|
|
/* Read only one UDP packet per call to share resources more fairly, and also
|
|
|
|
enable stats to accurately count packets received */
|
|
|
|
int recvttl=1;
|
|
|
|
plen = recvwithttl(alarm->poll.fd,packet, sizeof(packet), &recvttl, &src_addr, &addrlen);
|
|
|
|
if (plen == -1) {
|
|
|
|
WHY_perror("recvwithttl(c)");
|
|
|
|
overlay_interface_close(interface);
|
|
|
|
return;
|
|
|
|
}
|
2012-08-27 00:34:59 +00:00
|
|
|
|
2012-08-22 05:20:14 +00:00
|
|
|
/* We have a frame from this interface */
|
|
|
|
if (debug&DEBUG_PACKETRX)
|
|
|
|
DEBUG_packet_visualise("Read from real interface", packet,plen);
|
2012-11-28 03:43:25 +00:00
|
|
|
if (debug&DEBUG_OVERLAYINTERFACES) {
|
|
|
|
struct in_addr src = ((struct sockaddr_in *)&src_addr)->sin_addr; // avoid strict-alias warning on Solaris (gcc 4.4)
|
|
|
|
DEBUGF("Received %d bytes from %s on interface %s",plen,
|
|
|
|
inet_ntoa(src),
|
2012-09-10 01:01:01 +00:00
|
|
|
interface->name);
|
2012-11-28 03:43:25 +00:00
|
|
|
}
|
2012-11-21 05:00:20 +00:00
|
|
|
if (packetOkOverlay(interface, packet, plen, recvttl, &src_addr, addrlen)) {
|
2012-08-22 05:20:14 +00:00
|
|
|
WHY("Malformed packet");
|
|
|
|
// Do we really want to attempt to parse it again?
|
|
|
|
//DEBUG_packet_visualise("Malformed packet", packet,plen);
|
|
|
|
}
|
2012-07-25 07:23:44 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 05:20:14 +00:00
|
|
|
if (alarm->poll.revents & (POLLHUP | POLLERR)) {
|
|
|
|
overlay_interface_close(interface);
|
2012-08-27 00:34:59 +00:00
|
|
|
}
|
2012-06-22 03:55:41 +00:00
|
|
|
}
|
2012-06-21 07:32:36 +00:00
|
|
|
|
2012-12-08 04:39:41 +00:00
|
|
|
struct dummy_packet{
|
|
|
|
struct sockaddr_in src_addr;
|
|
|
|
struct sockaddr_in dst_addr;
|
|
|
|
int pid;
|
|
|
|
int payload_length;
|
|
|
|
|
|
|
|
/* TODO ? ;
|
|
|
|
half-power beam height (uint16)
|
|
|
|
half-power beam width (uint16)
|
|
|
|
range in metres, centre beam (uint32)
|
|
|
|
latitude (uint32)
|
|
|
|
longitude (uint32)
|
|
|
|
X/Z direction (uint16)
|
|
|
|
Y direction (uint16)
|
|
|
|
speed in metres per second (uint16)
|
|
|
|
TX frequency in Hz, uncorrected for doppler (which must be done at the receiving end to take into account
|
|
|
|
relative motion)
|
|
|
|
coding method (use for doppler response etc) null terminated string
|
|
|
|
*/
|
|
|
|
|
|
|
|
unsigned char payload[1400];
|
|
|
|
};
|
|
|
|
|
2012-07-02 03:49:54 +00:00
|
|
|
void overlay_dummy_poll(struct sched_ent *alarm)
|
2011-08-08 06:41:05 +00:00
|
|
|
{
|
2012-07-02 03:49:54 +00:00
|
|
|
overlay_interface *interface = (overlay_interface *)alarm;
|
2011-08-08 06:41:05 +00:00
|
|
|
/* Grab packets, unpackage and dispatch frames to consumers */
|
2012-12-08 04:39:41 +00:00
|
|
|
struct dummy_packet packet;
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
2012-06-22 03:55:41 +00:00
|
|
|
|
2012-07-02 03:49:54 +00:00
|
|
|
/* Read from dummy interface file */
|
|
|
|
long long length=lseek(alarm->poll.fd,0,SEEK_END);
|
2012-09-19 23:48:41 +00:00
|
|
|
|
|
|
|
int new_packets = (length - interface->recv_offset) / sizeof packet;
|
|
|
|
if (new_packets > 20)
|
|
|
|
WARNF("Getting behind, there are %d unread packets", new_packets);
|
|
|
|
|
2012-07-31 08:19:24 +00:00
|
|
|
if (interface->recv_offset >= length) {
|
|
|
|
/* if there's no input, while we want to check for more soon,
|
|
|
|
we need to allow all other low priority alarms to fire first,
|
|
|
|
otherwise we'll dominate the scheduler without accomplishing anything */
|
2012-09-19 07:02:25 +00:00
|
|
|
alarm->alarm = gettime_ms() + 5;
|
2012-07-31 08:19:24 +00:00
|
|
|
if (interface->last_tick_ms != -1 && alarm->alarm > interface->last_tick_ms + interface->tick_ms)
|
|
|
|
alarm->alarm = interface->last_tick_ms + interface->tick_ms;
|
|
|
|
alarm->deadline = alarm->alarm + 10000;
|
|
|
|
} else {
|
2012-12-08 04:39:41 +00:00
|
|
|
|
|
|
|
if (lseek(alarm->poll.fd,interface->recv_offset,SEEK_SET) == -1){
|
2012-07-31 08:19:24 +00:00
|
|
|
WHY_perror("lseek");
|
2012-12-08 04:39:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (debug&DEBUG_OVERLAYINTERFACES)
|
|
|
|
DEBUGF("Read interface %s (size=%lld) at offset=%d",interface->name, length, interface->recv_offset);
|
|
|
|
|
|
|
|
ssize_t nread = read(alarm->poll.fd, &packet, sizeof packet);
|
|
|
|
if (nread == -1){
|
|
|
|
WHY_perror("read");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nread == sizeof packet) {
|
|
|
|
interface->recv_offset += nread;
|
|
|
|
|
|
|
|
if (debug&DEBUG_PACKETRX)
|
|
|
|
DEBUG_packet_visualise("Read from dummy interface", packet.payload, packet.payload_length);
|
|
|
|
|
|
|
|
if (memcmp(&packet.dst_addr, &interface->address, sizeof(packet.dst_addr))==0 ||
|
|
|
|
((!interface->drop_broadcasts) &&
|
|
|
|
memcmp(&packet.dst_addr, &interface->broadcast_address, sizeof(packet.dst_addr))==0)){
|
|
|
|
|
|
|
|
if (packetOkOverlay(interface, packet.payload, packet.payload_length, -1,
|
|
|
|
(struct sockaddr*)&packet.src_addr, sizeof(packet.src_addr))) {
|
|
|
|
WARN("Unsupported packet from dummy interface");
|
2012-06-20 05:59:46 +00:00
|
|
|
}
|
2012-12-10 03:54:52 +00:00
|
|
|
}else
|
|
|
|
DEBUGF("Ignoring packet addressed to %s:%d", inet_ntoa(packet.dst_addr.sin_addr), ntohs(packet.dst_addr.sin_port));
|
2012-01-10 03:35:26 +00:00
|
|
|
}
|
2012-12-08 04:39:41 +00:00
|
|
|
|
2012-07-31 08:19:24 +00:00
|
|
|
/* keep reading new packets as fast as possible,
|
2012-09-19 07:02:25 +00:00
|
|
|
but don't completely prevent other high priority alarms */
|
|
|
|
if (interface->recv_offset >= length)
|
|
|
|
alarm->alarm = gettime_ms() + 5;
|
|
|
|
else
|
|
|
|
alarm->alarm = gettime_ms();
|
|
|
|
alarm->deadline = alarm->alarm + 100;
|
2012-07-31 08:19:24 +00:00
|
|
|
}
|
2012-07-02 03:49:54 +00:00
|
|
|
|
2012-09-19 23:48:41 +00:00
|
|
|
// only tick the interface if we've caught up reading all the packets
|
|
|
|
if (interface->recv_offset >= length &&
|
|
|
|
interface->tick_ms>0 &&
|
|
|
|
(interface->last_tick_ms == -1 || now >= interface->last_tick_ms + interface->tick_ms)) {
|
|
|
|
// tick the interface
|
|
|
|
int i = (interface - overlay_interfaces);
|
|
|
|
overlay_tick_interface(i, now);
|
|
|
|
}
|
|
|
|
|
2012-07-02 03:49:54 +00:00
|
|
|
schedule(alarm);
|
2012-06-21 07:32:36 +00:00
|
|
|
|
2012-06-22 03:55:41 +00:00
|
|
|
return ;
|
2011-08-08 06:41:05 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 06:11:06 +00:00
|
|
|
int
|
2012-08-31 02:41:31 +00:00
|
|
|
overlay_broadcast_ensemble(int interface_number,
|
2012-08-30 02:17:13 +00:00
|
|
|
struct sockaddr_in *recipientaddr,
|
2012-08-31 02:41:31 +00:00
|
|
|
unsigned char *bytes,int len)
|
2011-08-08 06:41:05 +00:00
|
|
|
{
|
2012-04-13 20:56:20 +00:00
|
|
|
if (debug&DEBUG_PACKETTX)
|
|
|
|
{
|
2012-06-28 08:04:21 +00:00
|
|
|
DEBUGF("Sending this packet via interface #%d",interface_number);
|
2012-08-01 08:24:02 +00:00
|
|
|
DEBUG_packet_visualise(NULL,bytes,len);
|
2012-04-13 20:56:20 +00:00
|
|
|
}
|
|
|
|
|
2012-07-03 06:06:51 +00:00
|
|
|
overlay_interface *interface = &overlay_interfaces[interface_number];
|
|
|
|
|
2012-07-25 07:23:44 +00:00
|
|
|
if (interface->state!=INTERFACE_STATE_UP){
|
|
|
|
return WHYF("Cannot send to interface %s as it is down", interface->name);
|
|
|
|
}
|
2011-08-08 06:41:05 +00:00
|
|
|
|
2012-07-03 06:06:51 +00:00
|
|
|
if (interface->fileP)
|
2011-08-12 07:47:29 +00:00
|
|
|
{
|
2012-12-08 04:39:41 +00:00
|
|
|
|
|
|
|
struct dummy_packet packet={
|
|
|
|
.src_addr = interface->address,
|
|
|
|
.dst_addr = *recipientaddr,
|
|
|
|
.pid = getpid(),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (len > sizeof(packet.payload)){
|
|
|
|
WARN("Truncating long packet to fit within MTU byte limit for dummy interface");
|
|
|
|
len = sizeof(packet.payload);
|
2011-08-14 15:58:27 +00:00
|
|
|
}
|
2012-12-08 04:39:41 +00:00
|
|
|
packet.payload_length=len;
|
|
|
|
bcopy(bytes, packet.payload, len);
|
2012-07-03 06:06:51 +00:00
|
|
|
/* This lseek() is unneccessary because the dummy file is opened in O_APPEND mode. It's
|
|
|
|
only purpose is to find out the offset to print in the DEBUG statement. It is vulnerable
|
|
|
|
to a race condition with other processes appending to the same file. */
|
|
|
|
off_t fsize = lseek(interface->alarm.poll.fd, (off_t) 0, SEEK_END);
|
|
|
|
if (fsize == -1)
|
|
|
|
return WHY_perror("lseek");
|
|
|
|
if (debug&DEBUG_OVERLAYINTERFACES)
|
2012-07-31 08:19:24 +00:00
|
|
|
DEBUGF("Write to interface %s at offset=%d", interface->name, fsize);
|
2012-12-08 04:39:41 +00:00
|
|
|
ssize_t nwrite = write(interface->alarm.poll.fd, &packet, sizeof(packet));
|
2012-07-03 06:06:51 +00:00
|
|
|
if (nwrite == -1)
|
|
|
|
return WHY_perror("write");
|
2012-12-08 04:39:41 +00:00
|
|
|
if (nwrite != sizeof(packet))
|
|
|
|
return WHYF("only wrote %lld of %lld bytes", nwrite, sizeof(packet));
|
2012-07-03 06:06:51 +00:00
|
|
|
return 0;
|
2011-08-12 07:47:29 +00:00
|
|
|
}
|
2011-08-08 06:41:05 +00:00
|
|
|
else
|
2011-08-13 11:17:49 +00:00
|
|
|
{
|
2012-09-11 05:50:44 +00:00
|
|
|
if (debug&DEBUG_OVERLAYINTERFACES)
|
|
|
|
DEBUGF("Sending %d byte overlay frame on %s to %s",len,interface->name,inet_ntoa(recipientaddr->sin_addr));
|
2012-07-03 06:06:51 +00:00
|
|
|
if(sendto(interface->alarm.poll.fd,
|
2012-08-30 00:04:52 +00:00
|
|
|
bytes, len, 0, (struct sockaddr *)recipientaddr, sizeof(struct sockaddr_in)) != len){
|
2012-11-12 04:11:14 +00:00
|
|
|
int e=errno;
|
2012-07-25 07:23:44 +00:00
|
|
|
WHY_perror("sendto(c)");
|
2012-11-12 04:11:14 +00:00
|
|
|
// only close the interface on some kinds of errors
|
|
|
|
if (e==ENETDOWN || e==EINVAL)
|
|
|
|
overlay_interface_close(interface);
|
2012-07-25 07:23:44 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2012-07-03 06:06:51 +00:00
|
|
|
return 0;
|
2011-08-13 11:17:49 +00:00
|
|
|
}
|
2011-08-08 06:41:05 +00:00
|
|
|
}
|
2011-08-08 14:41:46 +00:00
|
|
|
|
2012-12-04 03:42:28 +00:00
|
|
|
/* Register the real interface, or update the existing interface registration. */
|
2012-06-08 08:59:27 +00:00
|
|
|
int
|
|
|
|
overlay_interface_register(char *name,
|
2012-08-08 05:27:27 +00:00
|
|
|
struct in_addr addr,
|
2012-12-04 03:42:28 +00:00
|
|
|
struct in_addr mask)
|
|
|
|
{
|
2012-08-08 05:27:27 +00:00
|
|
|
struct in_addr broadcast = {.s_addr = addr.s_addr | ~mask.s_addr};
|
2012-12-04 03:42:28 +00:00
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
if (debug & DEBUG_OVERLAYINTERFACES) {
|
|
|
|
// note, inet_ntop doesn't seem to behave on android
|
|
|
|
DEBUGF("%s address: %s", name, inet_ntoa(addr));
|
|
|
|
DEBUGF("%s broadcast address: %s", name, inet_ntoa(broadcast));
|
|
|
|
}
|
2012-12-04 03:42:28 +00:00
|
|
|
|
|
|
|
// Find the matching non-dummy interface rule.
|
|
|
|
const struct config_network_interface *ifconfig = NULL;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < config.interfaces.ac; ++i, ifconfig = NULL) {
|
|
|
|
ifconfig = &config.interfaces.av[i].value;
|
|
|
|
if (!ifconfig->dummy[0]) {
|
|
|
|
int j;
|
|
|
|
for (j = 0; j < ifconfig->match.patc; ++j)
|
|
|
|
if (fnmatch(ifconfig->match.patv[j], name, 0) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ifconfig == NULL) {
|
2012-06-08 08:59:27 +00:00
|
|
|
if (debug & DEBUG_OVERLAYINTERFACES)
|
2012-12-04 03:42:28 +00:00
|
|
|
DEBUGF("Interface %s does not match any rule", name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ifconfig->exclude) {
|
|
|
|
if (debug & DEBUG_OVERLAYINTERFACES)
|
|
|
|
DEBUGF("Interface %s is explicitly excluded", name);
|
2012-06-08 08:59:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-25 07:23:44 +00:00
|
|
|
/* Search in the exist list of interfaces */
|
2012-12-04 03:42:28 +00:00
|
|
|
int found_interface= -1;
|
2012-07-25 07:23:44 +00:00
|
|
|
for(i = 0; i < overlay_interface_count; i++){
|
|
|
|
int broadcast_match = 0;
|
|
|
|
int name_match =0;
|
|
|
|
|
2012-12-04 03:42:28 +00:00
|
|
|
if (overlay_interfaces[i].broadcast_address.sin_addr.s_addr == broadcast.s_addr)
|
2012-07-25 07:23:44 +00:00
|
|
|
broadcast_match = 1;
|
|
|
|
|
|
|
|
name_match = !strcasecmp(overlay_interfaces[i].name, name);
|
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
// if we find an exact match we can stop searching
|
2012-07-25 07:23:44 +00:00
|
|
|
if (name_match && broadcast_match){
|
|
|
|
// mark this interface as still alive
|
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_DETECTING)
|
|
|
|
overlay_interfaces[i].state=INTERFACE_STATE_UP;
|
|
|
|
|
2012-08-08 05:27:27 +00:00
|
|
|
// try to bring the interface back up again even if the address has changed
|
2012-07-25 07:23:44 +00:00
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_DOWN){
|
2012-08-08 05:27:27 +00:00
|
|
|
overlay_interfaces[i].address.sin_addr = addr;
|
2012-07-25 07:23:44 +00:00
|
|
|
overlay_interface_init_socket(i);
|
2012-06-08 08:59:27 +00:00
|
|
|
}
|
2012-07-25 07:23:44 +00:00
|
|
|
|
|
|
|
// we already know about this interface, and it's up so stop looking immediately
|
|
|
|
return 0;
|
2012-04-28 02:55:19 +00:00
|
|
|
}
|
2012-07-25 07:23:44 +00:00
|
|
|
|
|
|
|
// remember this slot to bring the interface back up again, even if the address has changed
|
|
|
|
if (name_match && overlay_interfaces[i].state==INTERFACE_STATE_DOWN)
|
|
|
|
found_interface=i;
|
2012-04-28 02:55:19 +00:00
|
|
|
}
|
2012-07-25 07:23:44 +00:00
|
|
|
|
|
|
|
if (found_interface>=0){
|
2012-08-08 05:27:27 +00:00
|
|
|
// try to reactivate the existing interface
|
2012-09-06 00:27:36 +00:00
|
|
|
overlay_interfaces[found_interface].address.sin_addr = addr;
|
|
|
|
overlay_interfaces[found_interface].broadcast_address.sin_addr = broadcast;
|
|
|
|
overlay_interfaces[found_interface].netmask = mask;
|
|
|
|
return overlay_interface_init_socket(found_interface);
|
2012-07-25 07:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* New interface, so register it */
|
2012-12-04 03:42:28 +00:00
|
|
|
if (overlay_interface_init(name, addr, mask, broadcast, ifconfig))
|
2012-07-25 07:23:44 +00:00
|
|
|
return WHYF("Could not initialise newly seen interface %s", name);
|
|
|
|
else
|
|
|
|
if (debug & DEBUG_OVERLAYINTERFACES) DEBUGF("Registered interface %s", name);
|
2012-06-08 08:59:27 +00:00
|
|
|
|
2012-04-28 02:55:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-04 03:42:28 +00:00
|
|
|
void overlay_interface_discover(struct sched_ent *alarm)
|
|
|
|
{
|
2012-07-25 07:23:44 +00:00
|
|
|
/* Mark all UP interfaces as DETECTING, so we can tell which interfaces are new, and which are dead */
|
2012-12-04 03:42:28 +00:00
|
|
|
int i;
|
2012-07-30 09:05:28 +00:00
|
|
|
for (i = 0; i < overlay_interface_count; i++)
|
2012-07-25 07:23:44 +00:00
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_UP)
|
|
|
|
overlay_interfaces[i].state=INTERFACE_STATE_DETECTING;
|
2011-08-12 07:47:29 +00:00
|
|
|
|
2012-12-04 03:42:28 +00:00
|
|
|
/* Register new dummy interfaces */
|
|
|
|
int detect_real_interfaces = 0;
|
|
|
|
const struct config_network_interface *ifconfig = NULL;
|
|
|
|
for (i = 0; i < config.interfaces.ac; ++i, ifconfig = NULL) {
|
|
|
|
ifconfig = &config.interfaces.av[i].value;
|
|
|
|
if (!ifconfig->dummy[0]) {
|
2012-07-25 07:23:44 +00:00
|
|
|
detect_real_interfaces = 1;
|
2012-06-15 05:34:36 +00:00
|
|
|
continue;
|
2012-07-25 07:23:44 +00:00
|
|
|
}
|
2012-07-30 09:05:28 +00:00
|
|
|
for (i = 0; i < overlay_interface_count; i++)
|
2012-12-04 03:42:28 +00:00
|
|
|
if (strcasecmp(overlay_interfaces[i].name, ifconfig->dummy) == 0) {
|
2012-07-25 07:23:44 +00:00
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_DETECTING)
|
|
|
|
overlay_interfaces[i].state=INTERFACE_STATE_UP;
|
2012-06-15 05:34:36 +00:00
|
|
|
break;
|
2012-07-25 07:23:44 +00:00
|
|
|
}
|
2012-12-04 03:42:28 +00:00
|
|
|
if (i >= overlay_interface_count) {
|
|
|
|
// New dummy interface, so register it.
|
|
|
|
struct in_addr dummyaddr = (struct in_addr){htonl(INADDR_NONE)};
|
|
|
|
overlay_interface_init(ifconfig->dummy, dummyaddr, dummyaddr, dummyaddr, ifconfig);
|
2011-08-13 11:17:49 +00:00
|
|
|
}
|
|
|
|
}
|
2012-06-15 05:34:36 +00:00
|
|
|
|
2012-12-04 03:42:28 +00:00
|
|
|
// Register new real interfaces
|
|
|
|
if (detect_real_interfaces) {
|
2012-07-25 07:23:44 +00:00
|
|
|
int no_route = 1;
|
2012-06-08 07:01:59 +00:00
|
|
|
#ifdef HAVE_IFADDRS_H
|
2012-07-25 07:23:44 +00:00
|
|
|
if (no_route != 0)
|
|
|
|
no_route = doifaddrs();
|
2012-06-08 07:01:59 +00:00
|
|
|
#endif
|
2012-05-28 05:24:33 +00:00
|
|
|
#ifdef SIOCGIFCONF
|
2012-07-25 07:23:44 +00:00
|
|
|
if (no_route != 0)
|
|
|
|
no_route = lsif();
|
2012-05-03 13:16:00 +00:00
|
|
|
#endif
|
2012-05-28 05:24:33 +00:00
|
|
|
#ifdef linux
|
2012-07-25 07:23:44 +00:00
|
|
|
if (no_route != 0)
|
|
|
|
no_route = scrapeProcNetRoute();
|
2012-05-28 05:24:33 +00:00
|
|
|
#endif
|
2012-07-25 07:23:44 +00:00
|
|
|
if (no_route != 0) {
|
|
|
|
FATAL("Unable to get any interface information");
|
|
|
|
}
|
2012-04-28 02:55:19 +00:00
|
|
|
}
|
2012-12-04 03:42:28 +00:00
|
|
|
|
|
|
|
// Close any interfaces that have gone away.
|
2012-07-25 07:23:44 +00:00
|
|
|
for(i = 0; i < overlay_interface_count; i++)
|
|
|
|
if (overlay_interfaces[i].state==INTERFACE_STATE_DETECTING)
|
|
|
|
overlay_interface_close(&overlay_interfaces[i]);
|
2012-12-04 03:42:28 +00:00
|
|
|
|
2012-07-30 07:52:38 +00:00
|
|
|
alarm->alarm = gettime_ms()+5000;
|
2012-07-12 00:45:16 +00:00
|
|
|
alarm->deadline = alarm->alarm + 10000;
|
2012-07-02 03:49:54 +00:00
|
|
|
schedule(alarm);
|
2012-06-22 03:55:41 +00:00
|
|
|
return;
|
2011-08-08 14:41:46 +00:00
|
|
|
}
|
|
|
|
|
2012-08-31 02:41:31 +00:00
|
|
|
static void
|
2012-10-16 06:16:52 +00:00
|
|
|
logServalPacket(int level, struct __sourceloc __whence, const char *message, const unsigned char *packet, size_t len) {
|
2012-08-03 07:14:05 +00:00
|
|
|
struct mallocbuf mb = STRUCT_MALLOCBUF_NULL;
|
|
|
|
if (serval_packetvisualise(XPRINTF_MALLOCBUF(&mb), message, packet, len) == -1)
|
2012-08-01 08:24:02 +00:00
|
|
|
WHY("serval_packetvisualise() failed");
|
2012-08-03 07:14:05 +00:00
|
|
|
else if (mb.buffer == NULL)
|
2012-08-03 09:38:44 +00:00
|
|
|
WHYF("serval_packetvisualise() output buffer missing, message=%s packet=%p len=%lu", alloca_toprint(-1, message, strlen(message)), packet, len);
|
2012-08-01 08:24:02 +00:00
|
|
|
else
|
2012-10-16 06:16:52 +00:00
|
|
|
logString(level, __whence, mb.buffer);
|
2012-08-03 07:14:05 +00:00
|
|
|
if (mb.buffer)
|
|
|
|
free(mb.buffer);
|
2012-08-01 08:24:02 +00:00
|
|
|
}
|