2003-01-18 18:18:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001-2003 Swedish Institute of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
|
|
* SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
|
|
|
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
|
|
|
* OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the lwIP TCP/IP stack.
|
|
|
|
*
|
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-03-26 14:20:39 +00:00
|
|
|
#include "netif/tapif.h"
|
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "lwip/debug.h"
|
|
|
|
|
|
|
|
#include "lwip/opt.h"
|
|
|
|
#include "lwip/def.h"
|
|
|
|
#include "lwip/ip.h"
|
|
|
|
#include "lwip/mem.h"
|
|
|
|
#include "lwip/pbuf.h"
|
|
|
|
#include "lwip/sys.h"
|
|
|
|
|
|
|
|
#include "netif/etharp.h"
|
2011-08-24 18:00:08 +00:00
|
|
|
#include "lwip/ethip6.h"
|
2003-01-18 18:18:02 +00:00
|
|
|
|
2003-06-19 10:47:44 +00:00
|
|
|
#if defined(LWIP_DEBUG) && defined(LWIP_TCPDUMP)
|
|
|
|
#include "netif/tcpdump.h"
|
|
|
|
#endif /* LWIP_DEBUG && LWIP_TCPDUMP */
|
|
|
|
|
2010-03-26 14:20:39 +00:00
|
|
|
#define IFCONFIG_BIN "/sbin/ifconfig "
|
|
|
|
|
2005-11-08 12:00:45 +00:00
|
|
|
#if defined(linux)
|
2003-01-18 18:18:02 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <linux/if.h>
|
|
|
|
#include <linux/if_tun.h>
|
|
|
|
#define DEVTAP "/dev/net/tun"
|
2005-11-08 12:00:45 +00:00
|
|
|
#define IFCONFIG_ARGS "tap0 inet %d.%d.%d.%d"
|
|
|
|
#elif defined(openbsd)
|
|
|
|
#define DEVTAP "/dev/tun0"
|
|
|
|
#define IFCONFIG_ARGS "tun0 inet %d.%d.%d.%d link0"
|
|
|
|
#else /* others */
|
2003-01-18 18:18:02 +00:00
|
|
|
#define DEVTAP "/dev/tap0"
|
2005-11-08 12:00:45 +00:00
|
|
|
#define IFCONFIG_ARGS "tap0 inet %d.%d.%d.%d"
|
|
|
|
#endif
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
#define IFNAME0 't'
|
|
|
|
#define IFNAME1 'p'
|
|
|
|
|
2010-02-21 11:26:15 +00:00
|
|
|
#ifndef TAPIF_DEBUG
|
|
|
|
#define TAPIF_DEBUG LWIP_DBG_OFF
|
|
|
|
#endif
|
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
struct tapif {
|
|
|
|
struct eth_addr *ethaddr;
|
|
|
|
/* Add whatever per-interface state that is needed here. */
|
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Forward declarations. */
|
|
|
|
static void tapif_input(struct netif *netif);
|
|
|
|
|
|
|
|
static void tapif_thread(void *data);
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
low_level_init(struct netif *netif)
|
|
|
|
{
|
|
|
|
struct tapif *tapif;
|
2010-03-26 14:20:39 +00:00
|
|
|
char buf[sizeof(IFCONFIG_ARGS) + sizeof(IFCONFIG_BIN) + 50];
|
|
|
|
|
|
|
|
tapif = (struct tapif *)netif->state;
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
/* Obtain MAC address from network interface. */
|
|
|
|
|
|
|
|
/* (We just fake an address...) */
|
|
|
|
tapif->ethaddr->addr[0] = 0x1;
|
|
|
|
tapif->ethaddr->addr[1] = 0x2;
|
|
|
|
tapif->ethaddr->addr[2] = 0x3;
|
|
|
|
tapif->ethaddr->addr[3] = 0x4;
|
|
|
|
tapif->ethaddr->addr[4] = 0x5;
|
|
|
|
tapif->ethaddr->addr[5] = 0x6;
|
|
|
|
|
|
|
|
/* Do whatever else is needed to initialize interface. */
|
2010-03-26 14:20:39 +00:00
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
tapif->fd = open(DEVTAP, O_RDWR);
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(TAPIF_DEBUG, ("tapif_init: fd %d\n", tapif->fd));
|
2003-01-18 18:18:02 +00:00
|
|
|
if(tapif->fd == -1) {
|
2003-05-01 09:08:35 +00:00
|
|
|
#ifdef linux
|
|
|
|
perror("tapif_init: try running \"modprobe tun\" or rebuilding your kernel with CONFIG_TUN; cannot open "DEVTAP);
|
|
|
|
#else
|
|
|
|
perror("tapif_init: cannot open "DEVTAP);
|
|
|
|
#endif
|
2003-01-18 18:18:02 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef linux
|
|
|
|
{
|
|
|
|
struct ifreq ifr;
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
|
|
ifr.ifr_flags = IFF_TAP|IFF_NO_PI;
|
|
|
|
if (ioctl(tapif->fd, TUNSETIFF, (void *) &ifr) < 0) {
|
2003-05-01 09:08:35 +00:00
|
|
|
perror("tapif_init: "DEVTAP" ioctl TUNSETIFF");
|
2003-01-18 18:18:02 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* Linux */
|
|
|
|
|
2010-03-26 14:20:39 +00:00
|
|
|
sprintf(buf, IFCONFIG_BIN IFCONFIG_ARGS,
|
2003-01-18 18:18:02 +00:00
|
|
|
ip4_addr1(&(netif->gw)),
|
|
|
|
ip4_addr2(&(netif->gw)),
|
|
|
|
ip4_addr3(&(netif->gw)),
|
|
|
|
ip4_addr4(&(netif->gw)));
|
2010-03-26 14:20:39 +00:00
|
|
|
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(TAPIF_DEBUG, ("tapif_init: system(\"%s\");\n", buf));
|
2003-01-18 18:18:02 +00:00
|
|
|
system(buf);
|
2007-09-05 16:48:11 +00:00
|
|
|
sys_thread_new("tapif_thread", tapif_thread, netif, DEFAULT_THREAD_STACKSIZE, DEFAULT_THREAD_PRIO);
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
* low_level_output():
|
|
|
|
*
|
|
|
|
* Should do the actual transmission of the packet. The packet is
|
|
|
|
* contained in the pbuf that is passed to the function. This pbuf
|
|
|
|
* might be chained.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
static err_t
|
|
|
|
low_level_output(struct netif *netif, struct pbuf *p)
|
|
|
|
{
|
|
|
|
struct pbuf *q;
|
|
|
|
char buf[1514];
|
|
|
|
char *bufptr;
|
|
|
|
struct tapif *tapif;
|
|
|
|
|
2010-03-26 14:20:39 +00:00
|
|
|
tapif = (struct tapif *)netif->state;
|
|
|
|
#if 0
|
2003-01-18 18:18:02 +00:00
|
|
|
if(((double)rand()/(double)RAND_MAX) < 0.2) {
|
|
|
|
printf("drop output\n");
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
2010-03-26 14:20:39 +00:00
|
|
|
#endif
|
2003-01-18 18:18:02 +00:00
|
|
|
/* initiate transfer(); */
|
2010-03-26 14:20:39 +00:00
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
bufptr = &buf[0];
|
2010-03-26 14:20:39 +00:00
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
for(q = p; q != NULL; q = q->next) {
|
|
|
|
/* Send the data from the pbuf to the interface, one pbuf at a
|
|
|
|
time. The size of the data in each pbuf is kept in the ->len
|
2010-03-26 14:20:39 +00:00
|
|
|
variable. */
|
2003-01-18 18:18:02 +00:00
|
|
|
/* send data from(q->payload, q->len); */
|
|
|
|
memcpy(bufptr, q->payload, q->len);
|
|
|
|
bufptr += q->len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* signal that packet should be sent(); */
|
|
|
|
if(write(tapif->fd, buf, p->tot_len) == -1) {
|
|
|
|
perror("tapif: write");
|
|
|
|
}
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
* low_level_input():
|
|
|
|
*
|
|
|
|
* Should allocate a pbuf and transfer the bytes of the incoming
|
|
|
|
* packet from the interface into the pbuf.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
static struct pbuf *
|
|
|
|
low_level_input(struct tapif *tapif)
|
|
|
|
{
|
|
|
|
struct pbuf *p, *q;
|
|
|
|
u16_t len;
|
|
|
|
char buf[1514];
|
|
|
|
char *bufptr;
|
|
|
|
|
|
|
|
/* Obtain the size of the packet and put it into the "len"
|
|
|
|
variable. */
|
|
|
|
len = read(tapif->fd, buf, sizeof(buf));
|
|
|
|
#if 0
|
|
|
|
if(((double)rand()/(double)RAND_MAX) < 0.2) {
|
|
|
|
printf("drop\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2010-03-26 14:20:39 +00:00
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
/* We allocate a pbuf chain of pbufs from the pool. */
|
|
|
|
p = pbuf_alloc(PBUF_RAW, len, PBUF_POOL);
|
2010-03-26 14:20:39 +00:00
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
if(p != NULL) {
|
|
|
|
/* We iterate over the pbuf chain until we have read the entire
|
|
|
|
packet into the pbuf. */
|
|
|
|
bufptr = &buf[0];
|
|
|
|
for(q = p; q != NULL; q = q->next) {
|
|
|
|
/* Read enough bytes to fill this pbuf in the chain. The
|
|
|
|
available data in the pbuf is given by the q->len
|
|
|
|
variable. */
|
|
|
|
/* read data into(q->payload, q->len); */
|
|
|
|
memcpy(q->payload, bufptr, q->len);
|
|
|
|
bufptr += q->len;
|
|
|
|
}
|
|
|
|
/* acknowledge that packet has been read(); */
|
|
|
|
} else {
|
|
|
|
/* drop packet(); */
|
|
|
|
}
|
|
|
|
|
2010-03-26 14:20:39 +00:00
|
|
|
return p;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2010-03-26 14:20:39 +00:00
|
|
|
static void
|
2003-01-18 18:18:02 +00:00
|
|
|
tapif_thread(void *arg)
|
|
|
|
{
|
|
|
|
struct netif *netif;
|
|
|
|
struct tapif *tapif;
|
|
|
|
fd_set fdset;
|
|
|
|
int ret;
|
2010-03-26 14:20:39 +00:00
|
|
|
|
|
|
|
netif = (struct netif *)arg;
|
|
|
|
tapif = (struct tapif *)netif->state;
|
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
while(1) {
|
|
|
|
FD_ZERO(&fdset);
|
|
|
|
FD_SET(tapif->fd, &fdset);
|
|
|
|
|
|
|
|
/* Wait for a packet to arrive. */
|
|
|
|
ret = select(tapif->fd + 1, &fdset, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
if(ret == 1) {
|
|
|
|
/* Handle incoming packet. */
|
|
|
|
tapif_input(netif);
|
|
|
|
} else if(ret == -1) {
|
|
|
|
perror("tapif_thread: select");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
* tapif_input():
|
|
|
|
*
|
|
|
|
* This function should be called when a packet is ready to be read
|
|
|
|
* from the interface. It uses the function low_level_input() that
|
|
|
|
* should handle the actual reception of bytes from the network
|
|
|
|
* interface.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
tapif_input(struct netif *netif)
|
|
|
|
{
|
|
|
|
struct tapif *tapif;
|
|
|
|
struct eth_hdr *ethhdr;
|
2004-05-05 18:47:21 +00:00
|
|
|
struct pbuf *p;
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
|
2010-03-26 14:20:39 +00:00
|
|
|
tapif = (struct tapif *)netif->state;
|
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
p = low_level_input(tapif);
|
|
|
|
|
|
|
|
if(p == NULL) {
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(TAPIF_DEBUG, ("tapif_input: low_level_input returned NULL\n"));
|
2003-01-18 18:18:02 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-03-26 14:20:39 +00:00
|
|
|
ethhdr = (struct eth_hdr *)p->payload;
|
2003-01-18 18:18:02 +00:00
|
|
|
|
|
|
|
switch(htons(ethhdr->type)) {
|
2010-02-17 16:55:36 +00:00
|
|
|
/* IP or ARP packet? */
|
2003-01-18 18:18:02 +00:00
|
|
|
case ETHTYPE_IP:
|
|
|
|
case ETHTYPE_ARP:
|
2011-08-24 18:00:08 +00:00
|
|
|
#if LWIP_IPV6
|
|
|
|
case ETHTYPE_IPV6:
|
|
|
|
#endif /* LWIP_IPV6 */
|
2010-02-17 16:55:36 +00:00
|
|
|
#if PPPOE_SUPPORT
|
|
|
|
/* PPPoE packet? */
|
|
|
|
case ETHTYPE_PPPOEDISC:
|
|
|
|
case ETHTYPE_PPPOE:
|
|
|
|
#endif /* PPPOE_SUPPORT */
|
|
|
|
/* full packet send to tcpip_thread to process */
|
|
|
|
if (netif->input(p, netif) != ERR_OK) {
|
|
|
|
LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_input: IP input error\n"));
|
|
|
|
pbuf_free(p);
|
|
|
|
p = NULL;
|
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pbuf_free(p);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
* tapif_init():
|
|
|
|
*
|
|
|
|
* Should be called at the beginning of the program to set up the
|
|
|
|
* network interface. It calls the function low_level_init() to do the
|
|
|
|
* actual setup of the hardware.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2003-02-20 16:24:39 +00:00
|
|
|
err_t
|
2003-01-18 18:18:02 +00:00
|
|
|
tapif_init(struct netif *netif)
|
|
|
|
{
|
|
|
|
struct tapif *tapif;
|
2010-03-26 14:20:39 +00:00
|
|
|
|
|
|
|
tapif = (struct tapif *)mem_malloc(sizeof(struct tapif));
|
|
|
|
if (!tapif) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2003-01-18 18:18:02 +00:00
|
|
|
netif->state = tapif;
|
|
|
|
netif->name[0] = IFNAME0;
|
|
|
|
netif->name[1] = IFNAME1;
|
2007-06-08 22:52:59 +00:00
|
|
|
netif->output = etharp_output;
|
2011-08-24 18:00:08 +00:00
|
|
|
#if LWIP_IPV6
|
|
|
|
netif->output_ip6 = ethip6_output;
|
|
|
|
#endif /* LWIP_IPV6 */
|
2003-01-18 18:18:02 +00:00
|
|
|
netif->linkoutput = low_level_output;
|
2010-02-21 11:26:15 +00:00
|
|
|
netif->mtu = 1500;
|
2003-05-27 13:35:08 +00:00
|
|
|
/* hardware address length */
|
|
|
|
netif->hwaddr_len = 6;
|
2010-03-26 14:20:39 +00:00
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
tapif->ethaddr = (struct eth_addr *)&(netif->hwaddr[0]);
|
2010-07-16 12:49:02 +00:00
|
|
|
|
|
|
|
netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_IGMP;
|
|
|
|
|
2003-01-18 18:18:02 +00:00
|
|
|
low_level_init(netif);
|
2010-03-26 14:20:39 +00:00
|
|
|
|
2003-02-20 16:24:39 +00:00
|
|
|
return ERR_OK;
|
2003-01-18 18:18:02 +00:00
|
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|