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  *
  18  *              This program is free software; you can redistribute it and/or
  19  *              modify it under the terms of the GNU General Public License
  20  *              as published by the Free Software Foundation; either version
  21  *              2 of the License, or (at your option) any later version.
  22  */
  23 #include <linux/config.h>
  24 #include <linux/kernel.h>
  25 #include <linux/sched.h>
  26 #include <linux/interrupt.h>
  27 #include <linux/fs.h>
  28 #include <linux/types.h>
  29 #include <linux/string.h>
  30 #include <linux/socket.h>
  31 #include <linux/errno.h>
  32 #include <linux/fcntl.h>
  33 #include <linux/in.h>
  34 #include <linux/if_ether.h>     /* For the statistics structure. */
  35 
  36 #include <asm/system.h>
  37 #include <asm/segment.h>
  38 #include <asm/io.h>
  39 
  40 #include <linux/inet.h>
  41 #include <linux/netdevice.h>
  42 #include <linux/etherdevice.h>
  43 #include <linux/skbuff.h>
  44 #include <net/sock.h>
  45 
  46 
  47 static int loopback_xmit(struct sk_buff *skb, struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
  48 {
  49         struct enet_statistics *stats = (struct enet_statistics *)dev->priv;
  50         unsigned long flags;
  51         int unlock=1;
  52   
  53         if (skb == NULL || dev == NULL) 
  54                 return(0);
  55 
  56         save_flags(flags);
  57         cli();
  58         if (dev->tbusy != 0) 
  59         {
  60                 restore_flags(flags);
  61                 stats->tx_errors++;
  62                 return(1);
  63         }
  64         dev->tbusy = 1;
  65         restore_flags(flags);
  66   
  67         /*
  68          *      Optimise so buffers with skb->free=1 are not copied but
  69          *      instead are lobbed from tx queue to rx queue 
  70          */
  71 
  72         if(skb->free==0)
  73         {
  74                 struct sk_buff *skb2=skb;
  75                 skb=skb_clone(skb, GFP_ATOMIC);         /* Clone the buffer */
  76                 if(skb==NULL)
  77                         return 1;
  78                 dev_kfree_skb(skb2, FREE_READ);
  79                 unlock=0;
  80         }
  81         else if(skb->sk)
  82         {
  83                 /*
  84                  *      Packet sent but looped back around. Cease to charge
  85                  *      the socket for the frame.
  86                  */
  87                 save_flags(flags);
  88                 cli();
  89                 skb->sk->wmem_alloc-=skb->mem_len;
  90                 skb->sk->write_space(skb->sk);
  91                 restore_flags(flags);
  92         }
  93 
  94         skb->protocol=eth_type_trans(skb,dev);
  95         skb->dev=dev;
  96         save_flags(flags);
  97         cli();
  98         netif_rx(skb);
  99         if(unlock)
 100                 skb_device_unlock(skb);
 101         restore_flags(flags);
 102   
 103         stats->tx_packets++;
 104 
 105         dev->tbusy = 0;
 106 
 107         return(0);
 108 }
 109 
 110 static struct enet_statistics *get_stats(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 111 {
 112         return (struct enet_statistics *)dev->priv;
 113 }
 114 
 115 static int loopback_open(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 116 {
 117         dev->flags|=IFF_LOOPBACK;
 118         return 0;
 119 }
 120 
 121 /* Initialize the rest of the LOOPBACK device. */
 122 int loopback_init(struct device *dev)
     /* [previous][next][first][last][top][bottom][index][help] */
 123 {
 124         int i;
 125 
 126         dev->mtu                = 2000;                 /* MTU                  */
 127         dev->tbusy              = 0;
 128         dev->hard_start_xmit    = loopback_xmit;
 129         dev->open               = NULL;
 130         dev->hard_header        = eth_header;
 131         dev->hard_header_len    = ETH_HLEN;             /* 14                   */
 132         dev->addr_len           = ETH_ALEN;             /* 6                    */
 133         dev->type               = ARPHRD_ETHER;         /* 0x0001               */
 134         dev->rebuild_header     = eth_rebuild_header;
 135         dev->open               = loopback_open;
 136         dev->flags              = IFF_LOOPBACK|IFF_BROADCAST;
 137         dev->family             = AF_INET;
 138 #ifdef CONFIG_INET    
 139         dev->pa_addr            = in_aton("127.0.0.1");
 140         dev->pa_brdaddr = in_aton("127.255.255.255");
 141         dev->pa_mask            = in_aton("255.0.0.0");
 142         dev->pa_alen            = sizeof(unsigned long);
 143 #endif  
 144         dev->priv = kmalloc(sizeof(struct enet_statistics), GFP_KERNEL);
 145         memset(dev->priv, 0, sizeof(struct enet_statistics));
 146         dev->get_stats = get_stats;
 147 
 148         /*
 149          *      Fill in the generic fields of the device structure. 
 150          */
 151    
 152         for (i = 0; i < DEV_NUMBUFFS; i++)
 153                 skb_queue_head_init(&dev->buffs[i]);
 154   
 155         return(0);
 156 };

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