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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * NET/ROM release 007
  3.  *
  4.  * This code REQUIRES 2.1.15 or higher/ NET3.038
  5.  *
  6.  * This module:
  7.  * This module is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  11.  *
  12.  * History
  13.  * NET/ROM 001 Jonathan(G4KLX) Cloned from loopback.c
  14.  * NET/ROM 002 Steve Whitehouse(GW7RRM) fixed the set_mac_address
  15.  * NET/ROM 003 Jonathan(G4KLX) Put nr_rebuild_header into line with
  16.  * ax25_rebuild_header
  17.  * NET/ROM 004 Jonathan(G4KLX) Callsign registration with AX.25.
  18.  * NET/ROM 006 Hans(PE1AYX) Fixed interface to IP layer.
  19.  */
  20. #include <linux/config.h>
  21. #define __NO_VERSION__
  22. #include <linux/module.h>
  23. #include <linux/proc_fs.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/sysctl.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 <asm/system.h>
  37. #include <asm/uaccess.h>
  38. #include <asm/io.h>
  39. #include <linux/inet.h>
  40. #include <linux/netdevice.h>
  41. #include <linux/etherdevice.h>
  42. #include <linux/if_arp.h>
  43. #include <linux/skbuff.h>
  44. #include <net/ip.h>
  45. #include <net/arp.h>
  46. #include <net/ax25.h>
  47. #include <net/netrom.h>
  48. #ifdef CONFIG_INET
  49. /*
  50.  * Only allow IP over NET/ROM frames through if the netrom device is up.
  51.  */
  52. int nr_rx_ip(struct sk_buff *skb, struct net_device *dev)
  53. {
  54. struct net_device_stats *stats = (struct net_device_stats *)dev->priv;
  55. if (!netif_running(dev)) {
  56. stats->rx_errors++;
  57. return 0;
  58. }
  59. stats->rx_packets++;
  60. stats->rx_bytes += skb->len;
  61. skb->protocol = htons(ETH_P_IP);
  62. /* Spoof incoming device */
  63. skb->dev      = dev;
  64. skb->h.raw    = skb->data;
  65. skb->nh.raw   = skb->data;
  66. skb->pkt_type = PACKET_HOST;
  67. ip_rcv(skb, skb->dev, NULL);
  68. return 1;
  69. }
  70. static int nr_rebuild_header(struct sk_buff *skb)
  71. {
  72. struct net_device *dev = skb->dev;
  73. struct net_device_stats *stats = (struct net_device_stats *)dev->priv;
  74. struct sk_buff *skbn;
  75. unsigned char *bp = skb->data;
  76. int len;
  77. if (arp_find(bp + 7, skb)) {
  78. return 1;
  79. }
  80. bp[6] &= ~AX25_CBIT;
  81. bp[6] &= ~AX25_EBIT;
  82. bp[6] |= AX25_SSSID_SPARE;
  83. bp    += AX25_ADDR_LEN;
  84. bp[6] &= ~AX25_CBIT;
  85. bp[6] |= AX25_EBIT;
  86. bp[6] |= AX25_SSSID_SPARE;
  87. if ((skbn = skb_clone(skb, GFP_ATOMIC)) == NULL) {
  88. kfree_skb(skb);
  89. return 1;
  90. }
  91. if (skb->sk != NULL)
  92. skb_set_owner_w(skbn, skb->sk);
  93. kfree_skb(skb);
  94. len = skbn->len;
  95. if (!nr_route_frame(skbn, NULL)) {
  96. kfree_skb(skbn);
  97. stats->tx_errors++;
  98. }
  99. stats->tx_packets++;
  100. stats->tx_bytes += len;
  101. return 1;
  102. }
  103. #else
  104. static int nr_rebuild_header(struct sk_buff *skb)
  105. {
  106. return 1;
  107. }
  108. #endif
  109. static int nr_header(struct sk_buff *skb, struct net_device *dev, unsigned short type,
  110. void *daddr, void *saddr, unsigned len)
  111. {
  112. unsigned char *buff = skb_push(skb, NR_NETWORK_LEN + NR_TRANSPORT_LEN);
  113. memcpy(buff, (saddr != NULL) ? saddr : dev->dev_addr, dev->addr_len);
  114. buff[6] &= ~AX25_CBIT;
  115. buff[6] &= ~AX25_EBIT;
  116. buff[6] |= AX25_SSSID_SPARE;
  117. buff    += AX25_ADDR_LEN;
  118. if (daddr != NULL)
  119. memcpy(buff, daddr, dev->addr_len);
  120. buff[6] &= ~AX25_CBIT;
  121. buff[6] |= AX25_EBIT;
  122. buff[6] |= AX25_SSSID_SPARE;
  123. buff    += AX25_ADDR_LEN;
  124. *buff++ = sysctl_netrom_network_ttl_initialiser;
  125. *buff++ = NR_PROTO_IP;
  126. *buff++ = NR_PROTO_IP;
  127. *buff++ = 0;
  128. *buff++ = 0;
  129. *buff++ = NR_PROTOEXT;
  130. if (daddr != NULL)
  131. return 37;
  132. return -37;
  133. }
  134. static int nr_set_mac_address(struct net_device *dev, void *addr)
  135. {
  136. struct sockaddr *sa = addr;
  137. ax25_listen_release((ax25_address *)dev->dev_addr, NULL);
  138. memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
  139. ax25_listen_register((ax25_address *)dev->dev_addr, NULL);
  140. return 0;
  141. }
  142. static int nr_open(struct net_device *dev)
  143. {
  144. MOD_INC_USE_COUNT;
  145. netif_start_queue(dev);
  146. ax25_listen_register((ax25_address *)dev->dev_addr, NULL);
  147. return 0;
  148. }
  149. static int nr_close(struct net_device *dev)
  150. {
  151. netif_stop_queue(dev);
  152. ax25_listen_release((ax25_address *)dev->dev_addr, NULL);
  153. MOD_DEC_USE_COUNT;
  154. return 0;
  155. }
  156. static int nr_xmit(struct sk_buff *skb, struct net_device *dev)
  157. {
  158. struct net_device_stats *stats = (struct net_device_stats *)dev->priv;
  159. dev_kfree_skb(skb);
  160. stats->tx_errors++;
  161. return 0;
  162. }
  163. static struct net_device_stats *nr_get_stats(struct net_device *dev)
  164. {
  165. return (struct net_device_stats *)dev->priv;
  166. }
  167. int nr_init(struct net_device *dev)
  168. {
  169. dev->mtu = NR_MAX_PACKET_SIZE;
  170. dev->hard_start_xmit = nr_xmit;
  171. dev->open = nr_open;
  172. dev->stop = nr_close;
  173. dev->hard_header = nr_header;
  174. dev->hard_header_len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + NR_NETWORK_LEN + NR_TRANSPORT_LEN;
  175. dev->addr_len = AX25_ADDR_LEN;
  176. dev->type = ARPHRD_NETROM;
  177. dev->rebuild_header = nr_rebuild_header;
  178. dev->set_mac_address    = nr_set_mac_address;
  179. /* New-style flags. */
  180. dev->flags = 0;
  181. if ((dev->priv = kmalloc(sizeof(struct net_device_stats), GFP_KERNEL)) == NULL)
  182. return -ENOMEM;
  183. memset(dev->priv, 0, sizeof(struct net_device_stats));
  184. dev->get_stats = nr_get_stats;
  185. return 0;
  186. };