dummy.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* dummy.c: a dummy net driver
  2. The purpose of this driver is to provide a device to point a
  3. route through, but not to actually transmit packets.
  4. Why?  If you have a machine whose only connection is an occasional
  5. PPP/SLIP/PLIP link, you can only connect to your own hostname
  6. when the link is up.  Otherwise you have to use localhost.
  7. This isn't very consistent.
  8. One solution is to set up a dummy link using PPP/SLIP/PLIP,
  9. but this seems (to me) too much overhead for too little gain.
  10. This driver provides a small alternative. Thus you can do
  11. [when not running slip]
  12. ifconfig dummy slip.addr.ess.here up
  13. [to go to slip]
  14. ifconfig dummy down
  15. dip whatever
  16. This was written by looking at Donald Becker's skeleton driver
  17. and the loopback driver.  I then threw away anything that didn't
  18. apply! Thanks to Alan Cox for the key clue on what to do with
  19. misguided packets.
  20. Nick Holloway, 27th May 1994
  21. [I tweaked this explanation a little but that's all]
  22. Alan Cox, 30th May 1994
  23. */
  24. /* To have statistics (just packets sent) define this */
  25. #include <linux/config.h>
  26. #include <linux/module.h>
  27. #include <linux/kernel.h>
  28. #include <linux/netdevice.h>
  29. #include <linux/init.h>
  30. static int dummy_xmit(struct sk_buff *skb, struct net_device *dev);
  31. static struct net_device_stats *dummy_get_stats(struct net_device *dev);
  32. /* fake multicast ability */
  33. static void set_multicast_list(struct net_device *dev)
  34. {
  35. }
  36. #ifdef CONFIG_NET_FASTROUTE
  37. static int dummy_accept_fastpath(struct net_device *dev, struct dst_entry *dst)
  38. {
  39. return -1;
  40. }
  41. #endif
  42. static int __init dummy_init(struct net_device *dev)
  43. {
  44. /* Initialize the device structure. */
  45. dev->priv = kmalloc(sizeof(struct net_device_stats), GFP_KERNEL);
  46. if (dev->priv == NULL)
  47. return -ENOMEM;
  48. memset(dev->priv, 0, sizeof(struct net_device_stats));
  49. dev->get_stats = dummy_get_stats;
  50. dev->hard_start_xmit = dummy_xmit;
  51. dev->set_multicast_list = set_multicast_list;
  52. #ifdef CONFIG_NET_FASTROUTE
  53. dev->accept_fastpath = dummy_accept_fastpath;
  54. #endif
  55. /* Fill in device structure with ethernet-generic values. */
  56. ether_setup(dev);
  57. dev->tx_queue_len = 0;
  58. dev->flags |= IFF_NOARP;
  59. dev->flags &= ~IFF_MULTICAST;
  60. return 0;
  61. }
  62. static int dummy_xmit(struct sk_buff *skb, struct net_device *dev)
  63. {
  64. struct net_device_stats *stats = dev->priv;
  65. stats->tx_packets++;
  66. stats->tx_bytes+=skb->len;
  67. dev_kfree_skb(skb);
  68. return 0;
  69. }
  70. static struct net_device_stats *dummy_get_stats(struct net_device *dev)
  71. {
  72. return dev->priv;
  73. }
  74. static struct net_device dev_dummy;
  75. static int __init dummy_init_module(void)
  76. {
  77. int err;
  78. dev_dummy.init = dummy_init;
  79. SET_MODULE_OWNER(&dev_dummy);
  80. /* Find a name for this unit */
  81. err=dev_alloc_name(&dev_dummy,"dummy%d");
  82. if(err<0)
  83. return err;
  84. err = register_netdev(&dev_dummy);
  85. if (err<0)
  86. return err;
  87. return 0;
  88. }
  89. static void __exit dummy_cleanup_module(void)
  90. {
  91. unregister_netdev(&dev_dummy);
  92. kfree(dev_dummy.priv);
  93. memset(&dev_dummy, 0, sizeof(dev_dummy));
  94. dev_dummy.init = dummy_init;
  95. }
  96. module_init(dummy_init_module);
  97. module_exit(dummy_cleanup_module);
  98. MODULE_LICENSE("GPL");