亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? tapif.c

?? lwip ---vc移植
?? C
字號:
/*
 * Copyright (c) 2001, 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. Neither the name of the Institute nor the names of its contributors 
 *    may be used to endorse or promote products derived from this software 
 *    without specific prior written permission. 
 *
 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``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 INSTITUTE OR CONTRIBUTORS 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>
 *
 * $Id: tapif.c,v 1.8 2002/01/09 21:29:24 adam Exp $
 */

#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/arp.h"

#ifdef linux
#include <sys/ioctl.h>
#include <linux/if.h>
#include <linux/if_tun.h>
#define DEVTAP "/dev/net/tun"
#else  /* linux */
#define DEVTAP "/dev/tap0"
#endif /* linux */

#define IFNAME0 't'
#define IFNAME1 'p'

static const struct eth_addr ethbroadcast = {{0xff,0xff,0xff,0xff,0xff,0xff}};

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 err_t tapif_output(struct netif *netif, struct pbuf *p,
			       struct ip_addr *ipaddr);

static void tapif_thread(void *data);

/*-----------------------------------------------------------------------------------*/
static void
low_level_init(struct netif *netif)
{
  struct tapif *tapif;
  char buf[100];

  tapif = netif->state;
  
  /* 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. */
  
  tapif->fd = open(DEVTAP, O_RDWR);
  DEBUGF(TAPIF_DEBUG, ("tapif_init: fd %d\n", tapif->fd));
  if(tapif->fd == -1) {
    perror("tapif_init");
    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) {
      perror(buf);
      exit(1);
    }
  }
#endif /* Linux */

  snprintf(buf, sizeof(buf), "ifconfig tap0 inet %d.%d.%d.%d",
           ip4_addr1(&(netif->gw)),
           ip4_addr2(&(netif->gw)),
           ip4_addr3(&(netif->gw)),
           ip4_addr4(&(netif->gw)));
  
  DEBUGF(TAPIF_DEBUG, ("tapif_init: system(\"%s\");\n", buf));
  system(buf);
  sys_thread_new(tapif_thread, netif);

}
/*-----------------------------------------------------------------------------------*/
/*
 * 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 tapif *tapif, struct pbuf *p)
{
  struct pbuf *q;
  char buf[1500];
  char *bufptr;
  
  /* initiate transfer(); */
  
  bufptr = &buf[0];
  
  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
       variable. */    
    /* send data from(q->payload, q->len); */
    bcopy(q->payload, bufptr, 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[1500];
  char *bufptr;

  /* Obtain the size of the packet and put it into the "len"
     variable. */
  len = read(tapif->fd, buf, sizeof(buf));

  /*  if(((double)rand()/(double)RAND_MAX) < 0.1) {
    printf("drop\n");
    return NULL;
    }*/

  
  /* We allocate a pbuf chain of pbufs from the pool. */
  p = pbuf_alloc(PBUF_LINK, len, PBUF_POOL);
  
  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
         avaliable data in the pbuf is given by the q->len
         variable. */
      /* read data into(q->payload, q->len); */
      bcopy(bufptr, q->payload, q->len);
      bufptr += q->len;
    }
    /* acknowledge that packet has been read(); */
  } else {
    /* drop packet(); */
  }

  return p;  
}
/*-----------------------------------------------------------------------------------*/
static void 
tapif_thread(void *arg)
{
  struct netif *netif;
  struct tapif *tapif;
  fd_set fdset;
  int ret;
  
  netif = arg;
  tapif = netif->state;
  
  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_output():
 *
 * This function is called by the TCP/IP stack when an IP packet
 * should be sent. It calls the function called low_level_output() to
 * do the actuall transmission of the packet.
 *
 */
/*-----------------------------------------------------------------------------------*/
static err_t
tapif_output(struct netif *netif, struct pbuf *p,
		  struct ip_addr *ipaddr)
{
  struct tapif *tapif;
  struct pbuf *q;
  struct eth_hdr *ethhdr;
  struct eth_addr *dest, mcastaddr;
  struct ip_addr *queryaddr;
  err_t err;
  u8_t i;
  
  tapif = netif->state;

  /* Make room for Ethernet header. */
  if(pbuf_header(p, sizeof(struct eth_hdr)) != 0) {
    /* The pbuf_header() call shouldn't fail, but we allocate an extra
       pbuf just in case. */
    q = pbuf_alloc(PBUF_LINK, sizeof(struct eth_hdr), PBUF_RAM);
    if(q == NULL) {
      return ERR_MEM;
    }
    pbuf_chain(q, p);
    p = q;
  }

  /* Construct Ethernet header. Start with looking up deciding which
     MAC address to use as a destination address. Broadcasts and
     multicasts are special, all other addresses are looked up in the
     ARP table. */
  queryaddr = ipaddr;
  if(ip_addr_isany(ipaddr) ||
     ip_addr_isbroadcast(ipaddr, &(netif->netmask))) {
    dest = (struct eth_addr *)&ethbroadcast;
  } else if(ip_addr_ismulticast(ipaddr)) {
    /* Hash IP multicast address to MAC address. */
    mcastaddr.addr[0] = 0x01;
    mcastaddr.addr[1] = 0x0;
    mcastaddr.addr[2] = 0x5e;
    mcastaddr.addr[3] = ip4_addr2(ipaddr) & 0x7f;
    mcastaddr.addr[4] = ip4_addr3(ipaddr);
    mcastaddr.addr[5] = ip4_addr4(ipaddr);
    dest = &mcastaddr;
  } else {
    if(ip_addr_maskcmp(ipaddr, &(netif->ip_addr), &(netif->netmask))) {
      /* Use destination IP address if the destination is on the same
         subnet as we are. */
      queryaddr = ipaddr;
    } else {
      /* Otherwise we use the default router as the address to send
         the Ethernet frame to. */
      queryaddr = &(netif->gw);
    }
    dest = arp_lookup(queryaddr);
  }


  /* If the arp_lookup() didn't find an address, we send out an ARP
     query for the IP address. */
  if(dest == NULL) {
    q = arp_query(netif, tapif->ethaddr, queryaddr);
    if(q != NULL) {
      printf("Sending ARP after query\n");
      err = low_level_output(tapif, q);
      pbuf_free(q);
      return err;
    }
    return ERR_MEM;
  }
  ethhdr = p->payload;
  
  for(i = 0; i < 6; i++) {
    ethhdr->dest.addr[i] = dest->addr[i];
    ethhdr->src.addr[i] = tapif->ethaddr->addr[i];
  }
  
  ethhdr->type = htons(ETHTYPE_IP);
  
  return low_level_output(tapif, p);

}
/*-----------------------------------------------------------------------------------*/
/*
 * 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;
  struct pbuf *p;


  tapif = netif->state;
  
  p = low_level_input(tapif);

  if(p == NULL) {
    DEBUGF(TAPIF_DEBUG, ("tapif_input: low_level_input returned NULL\n"));
    return;
  }
  ethhdr = p->payload;

  switch(htons(ethhdr->type)) {
  case ETHTYPE_IP:
    DEBUGF(TAPIF_DEBUG, ("tapif_input: IP packet\n"));
    arp_ip_input(netif, p);
    pbuf_header(p, -14);
    if(ip_lookup(p->payload, netif)) {
      netif->input(p, netif);
    } else {
      printf("tapif_input: lookup failed!\n");
    }
    break;
  case ETHTYPE_ARP:
    DEBUGF(TAPIF_DEBUG, ("tapif_input: ARP packet\n"));
    p = arp_arp_input(netif, tapif->ethaddr, p);
    if(p != NULL) {
      DEBUGF(TAPIF_DEBUG, ("tapif_input: Sending ARP reply\n"));
      low_level_output(tapif, p);
      pbuf_free(p);
    }
    break;
  default:
    pbuf_free(p);
    break;
  }
}
/*-----------------------------------------------------------------------------------*/
static void
arp_timer(void *arg)
{
  arp_tmr();
  sys_timeout(ARP_TMR_INTERVAL, (sys_timeout_handler)arp_timer, NULL);
}
/*-----------------------------------------------------------------------------------*/
/*
 * 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.
 *
 */
/*-----------------------------------------------------------------------------------*/
void
tapif_init(struct netif *netif)
{
  struct tapif *tapif;
    
  tapif = mem_malloc(sizeof(struct tapif));
  netif->state = tapif;
  netif->name[0] = IFNAME0;
  netif->name[1] = IFNAME1;
  netif->output = tapif_output;
  
  tapif->ethaddr = (struct eth_addr *)&(netif->hwaddr[0]);
  
  low_level_init(netif);
  arp_init();
  
  sys_timeout(ARP_TMR_INTERVAL, (sys_timeout_handler)arp_timer, NULL);
}
/*-----------------------------------------------------------------------------------*/

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人欧美一区二区三区小说| 91麻豆国产福利精品| 91精品国产综合久久精品麻豆| 亚洲欧美韩国综合色| 在线观看免费亚洲| 亚洲国产精品影院| 欧美精品日日鲁夜夜添| 久久国产成人午夜av影院| www国产精品av| 高清成人在线观看| 1000部国产精品成人观看| 欧美又粗又大又爽| 免费不卡在线视频| 久久精品人人做人人综合| 成人亚洲一区二区一| 亚洲同性同志一二三专区| 欧美午夜精品一区二区三区| 奇米色777欧美一区二区| 久久久亚洲国产美女国产盗摄| 成人黄色国产精品网站大全在线免费观看| 亚洲同性gay激情无套| 91精品国产综合久久精品| 精东粉嫩av免费一区二区三区| 国产精品视频一二三区| 欧美视频第二页| 国产一区二区在线免费观看| 亚洲三级电影全部在线观看高清| 欧美丰满嫩嫩电影| 国产91精品一区二区| 亚洲一区二区精品久久av| 欧美一级搡bbbb搡bbbb| jiyouzz国产精品久久| 丝袜亚洲精品中文字幕一区| 久久久精品中文字幕麻豆发布| 色噜噜狠狠成人网p站| 美腿丝袜一区二区三区| 国产精品久久久久久久蜜臀| 欧美肥胖老妇做爰| 色综合久久久久综合体桃花网| 青青草97国产精品免费观看无弹窗版 | 久久男人中文字幕资源站| 99麻豆久久久国产精品免费| 日本麻豆一区二区三区视频| 最新欧美精品一区二区三区| 日韩美女一区二区三区四区| 一本一道综合狠狠老| 九色综合国产一区二区三区| 一区二区三区四区不卡在线| 26uuu另类欧美亚洲曰本| www欧美成人18+| 欧美日韩一级二级| 丁香一区二区三区| 麻豆精品新av中文字幕| 亚洲精品免费播放| 中文子幕无线码一区tr| 欧美大片一区二区三区| 欧美影院午夜播放| 99re成人精品视频| 国产成人午夜视频| 国产一区二区三区在线观看免费视频 | 亚洲成人自拍一区| 一区在线播放视频| 国产欧美一二三区| www国产亚洲精品久久麻豆| 4438x亚洲最大成人网| 欧美午夜一区二区| 91久久国产最好的精华液| 不卡一区二区中文字幕| 国产美女在线观看一区| 乱一区二区av| 蜜桃视频免费观看一区| 日日摸夜夜添夜夜添国产精品| 亚洲国产精品久久不卡毛片| 亚洲欧美二区三区| 亚洲天堂a在线| 亚洲靠逼com| 亚洲精品免费在线播放| 亚洲制服丝袜一区| 一区二区三区精品在线观看| 亚洲美女屁股眼交| 亚洲综合自拍偷拍| 亚洲成人综合网站| 日韩电影在线一区| 蜜臀av一区二区在线免费观看 | 午夜一区二区三区视频| 亚洲国产精品久久人人爱| 亚洲国产日韩a在线播放| 亚洲一区二区视频在线观看| 亚洲成人av中文| 热久久免费视频| 另类专区欧美蜜桃臀第一页| 国产一区91精品张津瑜| 成人毛片老司机大片| 色综合中文综合网| av一区二区三区在线| 91一区一区三区| 欧美天堂一区二区三区| 欧美一区二区三区色| 精品国产自在久精品国产| 久久网这里都是精品| 中文字幕日韩欧美一区二区三区| 亚洲人成网站影音先锋播放| 亚洲一区二区三区视频在线播放| 日韩高清不卡在线| 国产乱子轮精品视频| 成人ar影院免费观看视频| 欧美亚洲禁片免费| 日韩欧美国产wwwww| 欧美激情一区二区三区| 亚洲激情欧美激情| 久久机这里只有精品| 床上的激情91.| 欧美熟乱第一页| 久久夜色精品一区| 亚洲日韩欧美一区二区在线| 青青草成人在线观看| 波波电影院一区二区三区| 欧美日韩视频一区二区| 久久免费看少妇高潮| 亚洲综合色在线| 国模一区二区三区白浆| 91精品91久久久中77777| 欧美变态凌虐bdsm| 一区二区三区中文字幕| 精品一区二区三区香蕉蜜桃| 91麻豆蜜桃一区二区三区| 欧美大片在线观看一区| 一区二区三区四区在线播放| 久久99国产精品麻豆| 日本精品免费观看高清观看| 精品日韩欧美在线| 一区二区在线观看免费| 国产麻豆精品在线| 欧美精品成人一区二区三区四区| 日本一区二区三区视频视频| 视频一区二区不卡| 色婷婷亚洲综合| 欧美国产精品v| 久久精品久久久精品美女| 在线观看欧美日本| 国产精品不卡在线| 国产精品一线二线三线| 欧美一区二区视频在线观看| 亚洲免费观看高清完整版在线观看 | 日韩影院精彩在线| 97成人超碰视| 国产欧美一区二区精品性| 免费成人深夜小野草| 欧美日韩精品一区二区天天拍小说| 欧美激情一区三区| 欧美三级在线视频| 国产精品成人免费在线| 国产传媒欧美日韩成人| 精品免费99久久| 免费久久99精品国产| 欧美日韩国产一区| 一区二区三区影院| 91麻豆自制传媒国产之光| 国产精品三级电影| 国产成人免费网站| 久久新电视剧免费观看| 精品综合久久久久久8888| 欧美日韩国产欧美日美国产精品| 亚洲精品videosex极品| 一本大道久久a久久综合婷婷| 中文字幕一区二区三区不卡在线| 国产成人精品午夜视频免费| 久久免费看少妇高潮| 国产大陆亚洲精品国产| 久久久.com| 成人黄色电影在线| 综合久久一区二区三区| 99国产精品久久| 亚洲欧美日本在线| 在线观看日韩电影| 五月天欧美精品| 日韩免费看的电影| 国产乱对白刺激视频不卡| 国产拍欧美日韩视频二区| 成人小视频免费观看| 国产精品对白交换视频| 色欧美片视频在线观看| 一区二区国产视频| 91精品久久久久久久久99蜜臂| 日本免费在线视频不卡一不卡二| 日韩欧美在线网站| 国产精品一二三四| 亚洲欧洲精品天堂一级| 日本电影欧美片| 日产国产欧美视频一区精品| 日韩欧美一级精品久久| 国产精一品亚洲二区在线视频| 中文在线一区二区| 色婷婷久久综合| 日韩影院免费视频| 国产目拍亚洲精品99久久精品| av电影在线观看不卡| 午夜精品久久久| 国产视频一区在线观看| 在线视频亚洲一区|