root/drivers/net/loopback.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. loopback_xmit
  2. get_stats
  3. loopback_open
  4. loopback_init

   1 /*
   2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
   3  *              operating system.  INET is implemented using the  BSD Socket
   4  *              interface as the means of communication with the user level.
   5  *
   6  *              Pseudo-driver for the loopback interface.
   7  *
   8  * Version:     @(#)loopback.c  1.0.4b  08/16/93
   9  *
  10  * Authors:     Ross Biro, <bir7@leland.Stanford.Edu>
  11  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12  *              Donald Becker, <becker@cesdis.gsfc.nasa.gov>
  13  *
  14  *              Alan Cox        :       Fixed oddments for NET3.014
  15  *              Alan Cox        :       Rejig for NET3.029 snap #3
  16  *              Alan Cox        :       Fixed NET3.029 bugs and sped up
  17  *              Larry McVoy     :       Tiny tweak to double performance
  18  *
  19  *              This program is free software; you can redistribute it and/or
  20  *              modify it under the terms of the GNU General Public License
  21  *              as published by the Free Software Foundation; either version
  22  *              2 of the License, or (at your option) any later version.
  23  */
  24 #include <linux/config.h>
  25 #include <linux/kernel.h>
  26 #include <linux/sched.h>
  27 #include <linux/interrupt.h>
  28 #include <linux/fs.h>
  29 #include <linux/types.h>
  30 #include <linux/string.h>
  31 #include <linux/socket.h>
  32 #include <linux/errno.h>
  33 #include <linux/fcntl.h>
  34 #include <linux/in.h>
  35 #include <linux/if_ether.h>     /* For the statistics structure. */
  36 #include <linux/if_arp.h>       /* For ARPHRD_ETHER */
  37 
  38 #include <asm/system.h>
  39 #include <asm/segment.h>
  40 #include <asm/io.h>
  41 
  42 #include <linux/inet.h>
  43 #include <linux/netdevice.h>
  44 #include <linux/etherdevice.h>
  45 #include <linux/skbuff.h>
  46 #include <net/sock.h>
  47 
  48 
  49 static int loopback_xmit(struct sk_buff *skb, struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
  50 {
  51         struct enet_statistics *stats = (struct enet_statistics *)dev->priv;
  52         unsigned long flags;
  53         int unlock=1;
  54   
  55         if (skb == NULL || dev == NULL) 
  56                 return(0);
  57 
  58         save_flags(flags);
  59         cli();
  60         if (dev->tbusy != 0) 
  61         {
  62                 restore_flags(flags);
  63                 stats->tx_errors++;
  64                 return(1);
  65         }
  66         dev->tbusy = 1;
  67         restore_flags(flags);
  68   
  69         /*
  70          *      Optimise so buffers with skb->free=1 are not copied but
  71          *      instead are lobbed from tx queue to rx queue 
  72          */
  73 
  74         if(skb->free==0)
  75         {
  76                 struct sk_buff *skb2=skb;
  77                 skb=skb_clone(skb, GFP_ATOMIC);         /* Clone the buffer */
  78                 if(skb==NULL)
  79                         return 1;
  80                 dev_kfree_skb(skb2, FREE_READ);
  81                 unlock=0;
  82         }
  83         else if(skb->sk)
  84         {
  85                 /*
  86                  *      Packet sent but looped back around. Cease to charge
  87                  *      the socket for the frame.
  88                  */
  89                 save_flags(flags);
  90                 cli();
  91                 skb->sk->wmem_alloc-=skb->truesize;
  92                 skb->sk->write_space(skb->sk);
  93                 restore_flags(flags);
  94         }
  95 
  96         skb->protocol=eth_type_trans(skb,dev);
  97         skb->dev=dev;
  98         save_flags(flags);
  99         cli();
 100         netif_rx(skb);
 101         if(unlock)
 102                 skb_device_unlock(skb);
 103         restore_flags(flags);
 104   
 105         stats->tx_packets++;
 106         stats->rx_packets++;
 107 
 108         dev->tbusy = 0;
 109 
 110         return(0);
 111 }
 112 
 113 static struct enet_statistics *get_stats(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 114 {
 115         return (struct enet_statistics *)dev->priv;
 116 }
 117 
 118 static int loopback_open(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 119 {
 120         dev->flags|=IFF_LOOPBACK;
 121         return 0;
 122 }
 123 
 124 /* Initialize the rest of the LOOPBACK device. */
 125 int loopback_init(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 126 {
 127         int i;
 128 
 129         dev->mtu                = 2000;                 /* MTU                  */
 130         dev->tbusy              = 0;
 131         dev->hard_start_xmit    = loopback_xmit;
 132         dev->open               = NULL;
 133         dev->hard_header        = eth_header;
 134         dev->hard_header_len    = ETH_HLEN;             /* 14                   */
 135         dev->addr_len           = ETH_ALEN;             /* 6                    */
 136         dev->type               = ARPHRD_ETHER;         /* 0x0001               */
 137         dev->rebuild_header     = eth_rebuild_header;
 138         dev->open               = loopback_open;
 139         dev->flags              = IFF_LOOPBACK|IFF_BROADCAST;
 140         dev->family             = AF_INET;
 141 #ifdef CONFIG_INET    
 142         dev->pa_addr            = in_aton("127.0.0.1");
 143         dev->pa_brdaddr = in_aton("127.255.255.255");
 144         dev->pa_mask            = in_aton("255.0.0.0");
 145         dev->pa_alen            = 4;
 146 #endif  
 147         dev->priv = kmalloc(sizeof(struct enet_statistics), GFP_KERNEL);
 148         if (dev->priv == NULL)
 149                         return -ENOMEM;
 150         memset(dev->priv, 0, sizeof(struct enet_statistics));
 151         dev->get_stats = get_stats;
 152 
 153         /*
 154          *      Fill in the generic fields of the device structure. 
 155          */
 156    
 157         for (i = 0; i < DEV_NUMBUFFS; i++)
 158                 skb_queue_head_init(&dev->buffs[i]);
 159   
 160         return(0);
 161 };

/* [previous][next][first][last][top][bottom][index][help] */