rose_dev.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License as published by
  4. * the Free Software Foundation; either version 2 of the License, or
  5. * (at your option) any later version.
  6. *
  7. * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
  8. */
  9. #include <linux/config.h>
  10. #include <linux/module.h>
  11. #include <linux/proc_fs.h>
  12. #include <linux/kernel.h>
  13. #include <linux/sched.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/fs.h>
  16. #include <linux/types.h>
  17. #include <linux/sysctl.h>
  18. #include <linux/string.h>
  19. #include <linux/socket.h>
  20. #include <linux/errno.h>
  21. #include <linux/fcntl.h>
  22. #include <linux/in.h>
  23. #include <linux/if_ether.h>
  24. #include <asm/system.h>
  25. #include <asm/io.h>
  26. #include <linux/inet.h>
  27. #include <linux/netdevice.h>
  28. #include <linux/etherdevice.h>
  29. #include <linux/if_arp.h>
  30. #include <linux/skbuff.h>
  31. #include <net/ip.h>
  32. #include <net/arp.h>
  33. #include <net/ax25.h>
  34. #include <net/rose.h>
  35. static int rose_header(struct sk_buff *skb, struct net_device *dev, unsigned short type,
  36. void *daddr, void *saddr, unsigned len)
  37. {
  38. unsigned char *buff = skb_push(skb, ROSE_MIN_LEN + 2);
  39. *buff++ = ROSE_GFI | ROSE_Q_BIT;
  40. *buff++ = 0x00;
  41. *buff++ = ROSE_DATA;
  42. *buff++ = 0x7F;
  43. *buff++ = AX25_P_IP;
  44. if (daddr != NULL)
  45. return 37;
  46. return -37;
  47. }
  48. static int rose_rebuild_header(struct sk_buff *skb)
  49. {
  50. struct net_device *dev = skb->dev;
  51. struct net_device_stats *stats = netdev_priv(dev);
  52. unsigned char *bp = (unsigned char *)skb->data;
  53. struct sk_buff *skbn;
  54. #ifdef CONFIG_INET
  55. if (arp_find(bp + 7, skb)) {
  56. return 1;
  57. }
  58. if ((skbn = skb_clone(skb, GFP_ATOMIC)) == NULL) {
  59. kfree_skb(skb);
  60. return 1;
  61. }
  62. if (skb->sk != NULL)
  63. skb_set_owner_w(skbn, skb->sk);
  64. kfree_skb(skb);
  65. if (!rose_route_frame(skbn, NULL)) {
  66. kfree_skb(skbn);
  67. stats->tx_errors++;
  68. return 1;
  69. }
  70. stats->tx_packets++;
  71. stats->tx_bytes += skbn->len;
  72. #endif
  73. return 1;
  74. }
  75. static int rose_set_mac_address(struct net_device *dev, void *addr)
  76. {
  77. struct sockaddr *sa = addr;
  78. rose_del_loopback_node((rose_address *)dev->dev_addr);
  79. memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
  80. rose_add_loopback_node((rose_address *)dev->dev_addr);
  81. return 0;
  82. }
  83. static int rose_open(struct net_device *dev)
  84. {
  85. netif_start_queue(dev);
  86. rose_add_loopback_node((rose_address *)dev->dev_addr);
  87. return 0;
  88. }
  89. static int rose_close(struct net_device *dev)
  90. {
  91. netif_stop_queue(dev);
  92. rose_del_loopback_node((rose_address *)dev->dev_addr);
  93. return 0;
  94. }
  95. static int rose_xmit(struct sk_buff *skb, struct net_device *dev)
  96. {
  97. struct net_device_stats *stats = netdev_priv(dev);
  98. if (!netif_running(dev)) {
  99. printk(KERN_ERR "ROSE: rose_xmit - called when iface is down\n");
  100. return 1;
  101. }
  102. dev_kfree_skb(skb);
  103. stats->tx_errors++;
  104. return 0;
  105. }
  106. static struct net_device_stats *rose_get_stats(struct net_device *dev)
  107. {
  108. return netdev_priv(dev);
  109. }
  110. void rose_setup(struct net_device *dev)
  111. {
  112. SET_MODULE_OWNER(dev);
  113. dev->mtu = ROSE_MAX_PACKET_SIZE - 2;
  114. dev->hard_start_xmit = rose_xmit;
  115. dev->open = rose_open;
  116. dev->stop = rose_close;
  117. dev->hard_header = rose_header;
  118. dev->hard_header_len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN;
  119. dev->addr_len = ROSE_ADDR_LEN;
  120. dev->type = ARPHRD_ROSE;
  121. dev->rebuild_header = rose_rebuild_header;
  122. dev->set_mac_address = rose_set_mac_address;
  123. /* New-style flags. */
  124. dev->flags = IFF_NOARP;
  125. dev->get_stats = rose_get_stats;
  126. }