/* Copyright 2005 Renzo Davoli - VDE-2
* --pidfile/-p and cleanup management by Mattia Belletti (C) 2004.
* Licensed under the GPLv2
* Modified by Ludovico Gardenghi 2005 (OSX tuntap support)
*/
#include <config.h>
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <syslog.h>
#include <stdlib.h>
#include <libgen.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <stdarg.h>
#define _GNU_SOURCE
#include <getopt.h>
#include <vde.h>
#ifdef VDE_LINUX
#include <net/if.h>
#include <linux/if_tun.h>
#endif
#ifdef VDE_DARWIN
#define TAP_PREFIX "/dev/"
#endif
#include <port.h>
#include <switch.h>
#include <consmgmt.h>
#define MAXCMD 128
#define MODULENAME "tuntap"
static struct swmodule swmi;
static struct mod_support modfun;
static unsigned int tap_type;
struct init_tap {
char *tap_dev;
struct init_tap *next;
};
struct init_tap *hinit_tap=NULL;
static int send_tap(int fd, int ctl_fd, void *packet, int len, void *unused, int port)
{
int n;
n = len - write(ctl_fd, packet, len);
if(n){
int rv=errno;
#ifndef VDE_PQ
if(errno != EAGAIN) printlog(LOG_WARNING,"send_tap port %d: %s",port,strerror(errno));
#endif
if (n > len)
return -rv;
else
return n;
}
return 0;
}
static void closeport(int fd, int portno)
{
if (fd>0)
remove_fd(fd);
}
static void handle_input(unsigned char type,int fd,int revents,int *arg)
{
struct bipacket packet;
int len=read(fd, &(packet.p), sizeof(struct packet));
if(len < 0){
if(errno != EAGAIN) printlog(LOG_WARNING,"Reading tap data: %s",strerror(errno));
}
else if(len == 0) {
if(errno != EAGAIN) printlog(LOG_WARNING,"EOF tap data port: %s",strerror(errno));
/* close tap! */
} else if (len >= ETH_HEADER_SIZE)
handle_in_packet(*arg, &(packet.p), len);
}
static void cleanup(unsigned char type,int fd,int arg)
{
if (fd >= 0)
close(fd);
}
static struct option long_options[] = {
{"tap", 1, 0, 't'},
};
#define Nlong_options (sizeof(long_options)/sizeof(struct option));
static void usage(void)
{
printf(
"(opts from tuntap module)\n"
" -t, --tap TAP Enable routing through TAP tap interface\n"
#ifdef VDE_DARWIN
" TAP can be an absolute file name or a relative\n"
" one (and will be prefixed with %s). The TAP\n"
" device must already exist.\n", TAP_PREFIX
#endif
);
}
static struct init_tap *add_init_tap(struct init_tap *p,char *arg)
{
if (p == NULL) {
p=malloc(sizeof(struct init_tap));
if (p==NULL)
printlog(LOG_WARNING,"Malloc Tap init:%s\n",strerror(errno));
else {
p->tap_dev=strdup(optarg);
p->next=NULL;
}
} else
p->next=add_init_tap(p->next,arg);
return(p);
}
static struct init_tap *free_init_tap(struct init_tap *p)
{
if (p != NULL) {
free_init_tap(p->next);
free(p);
}
return NULL;
}
static int parseopt(int c, char *optarg)
{
int outc=0;
switch (c) {
case 't':
hinit_tap=add_init_tap(hinit_tap,optarg);
break;
default:
outc=c;
}
return outc;
}
#ifdef VDE_LINUX
int open_tap(char *dev)
{
struct ifreq ifr;
int fd;
if((fd = open("/dev/net/tun", O_RDWR)) < 0){
printlog(LOG_ERR,"Failed to open /dev/net/tun %s",strerror(errno));
return(-1);
}
memset(&ifr, 0, sizeof(ifr));
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
strncpy(ifr.ifr_name, dev, sizeof(ifr.ifr_name) - 1);
/*printf("dev=\"%s\", ifr.ifr_name=\"%s\"\n", ifr.ifr_name, dev);*/
if(ioctl(fd, TUNSETIFF, (void *) &ifr) < 0){
printlog(LOG_ERR,"TUNSETIFF failed %s",strerror(errno));
close(fd);
return(-1);
}
return(fd);
}
#endif
#ifdef VDE_DARWIN
int open_tap(char *dev)
{
int fd;
int prefixlen = strlen(TAP_PREFIX);
char *path = NULL;
if (*dev == '/')
fd=open(dev, O_RDWR);
else
{
path = malloc(strlen(dev) + prefixlen + 1);
if (path != NULL)
{
snprintf(path, strlen(dev) + prefixlen + 1, "%s%s", TAP_PREFIX, dev);
fd=open(path, O_RDWR);
free(path);
}
else
fd = -1;
}
if (fd < 0)
{
printlog(LOG_ERR,"Failed to open tap device %s: %s", (*dev == '/') ? dev : path, strerror(errno));
return(-1);
}
return fd;
}
#endif
static int newport(int fd, int portno)
{
return fd;
}
static int newtap(char *dev)
{
int tap_fd;
tap_fd = open_tap(dev);
if (tap_fd>0) {
int portno=setup_ep(0,tap_fd,NULL,&modfun);
if (portno >= 0) {
setup_description(portno,tap_fd,dev);
add_fd(tap_fd,tap_type,portno);
return portno;
} else
return -1;
} else
return -1;
}
static void init(void)
{
if(hinit_tap != NULL) {
struct init_tap *p;
tap_type=add_type(&swmi,1);
for(p=hinit_tap;p != NULL;p=p->next) {
if (newtap(p->tap_dev) < 0)
printlog(LOG_ERR,"ERROR OPENING tap interface: %s",p->tap_dev);
}
hinit_tap=free_init_tap(hinit_tap);
}
}
static void delep (int fd, void* data, void *descr)
{
if (descr) free(descr);
}
void start_tuntap(void)
{
modfun.modname=swmi.swmname=MODULENAME;
swmi.swmnopts=Nlong_options;
swmi.swmopts=long_options;
swmi.usage=usage;
swmi.parseopt=parseopt;
swmi.init=init;
swmi.handle_input=handle_input;
swmi.cleanup=cleanup;
modfun.sender=send_tap;
modfun.newport=newport;
modfun.delep=delep;
modfun.delport=closeport;
add_swm(&swmi);
}
syntax highlighted by Code2HTML, v. 0.9.1