hippi.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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. * HIPPI-type device handling.
  7. *
  8. * Version: @(#)hippi.c 1.0.0 05/29/97
  9. *
  10. * Authors: Ross Biro
  11. * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12. * Mark Evans, <evansmp@uhura.aston.ac.uk>
  13. * Florian La Roche, <rzsfl@rz.uni-sb.de>
  14. * Alan Cox, <gw4pts@gw4pts.ampr.org>
  15. * Jes Sorensen, <Jes.Sorensen@cern.ch>
  16. *
  17. * This program is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU General Public License
  19. * as published by the Free Software Foundation; either version
  20. * 2 of the License, or (at your option) any later version.
  21. */
  22. #include <linux/module.h>
  23. #include <linux/types.h>
  24. #include <linux/kernel.h>
  25. #include <linux/string.h>
  26. #include <linux/mm.h>
  27. #include <linux/socket.h>
  28. #include <linux/in.h>
  29. #include <linux/inet.h>
  30. #include <linux/netdevice.h>
  31. #include <linux/hippidevice.h>
  32. #include <linux/skbuff.h>
  33. #include <linux/errno.h>
  34. #include <net/arp.h>
  35. #include <net/sock.h>
  36. #include <asm/uaccess.h>
  37. /*
  38. * Create the HIPPI MAC header for an arbitrary protocol layer
  39. *
  40. * saddr=NULL means use device source address
  41. * daddr=NULL means leave destination address (eg unresolved arp)
  42. */
  43. static int hippi_header(struct sk_buff *skb, struct net_device *dev,
  44. unsigned short type,
  45. const void *daddr, const void *saddr, unsigned int len)
  46. {
  47. struct hippi_hdr *hip = (struct hippi_hdr *)skb_push(skb, HIPPI_HLEN);
  48. struct hippi_cb *hcb = (struct hippi_cb *) skb->cb;
  49. if (!len){
  50. len = skb->len - HIPPI_HLEN;
  51. printk("hippi_header(): length not supplied\n");
  52. }
  53. /*
  54. * Due to the stupidity of the little endian byte-order we
  55. * have to set the fp field this way.
  56. */
  57. hip->fp.fixed = htonl(0x04800018);
  58. hip->fp.d2_size = htonl(len + 8);
  59. hip->le.fc = 0;
  60. hip->le.double_wide = 0; /* only HIPPI 800 for the time being */
  61. hip->le.message_type = 0; /* Data PDU */
  62. hip->le.dest_addr_type = 2; /* 12 bit SC address */
  63. hip->le.src_addr_type = 2; /* 12 bit SC address */
  64. memcpy(hip->le.src_switch_addr, dev->dev_addr + 3, 3);
  65. memset(&hip->le.reserved, 0, 16);
  66. hip->snap.dsap = HIPPI_EXTENDED_SAP;
  67. hip->snap.ssap = HIPPI_EXTENDED_SAP;
  68. hip->snap.ctrl = HIPPI_UI_CMD;
  69. hip->snap.oui[0] = 0x00;
  70. hip->snap.oui[1] = 0x00;
  71. hip->snap.oui[2] = 0x00;
  72. hip->snap.ethertype = htons(type);
  73. if (daddr)
  74. {
  75. memcpy(hip->le.dest_switch_addr, daddr + 3, 3);
  76. memcpy(&hcb->ifield, daddr + 2, 4);
  77. return HIPPI_HLEN;
  78. }
  79. hcb->ifield = 0;
  80. return -((int)HIPPI_HLEN);
  81. }
  82. /*
  83. * Rebuild the HIPPI MAC header. This is called after an ARP has
  84. * completed on this sk_buff. We now let ARP fill in the other fields.
  85. */
  86. static int hippi_rebuild_header(struct sk_buff *skb)
  87. {
  88. struct hippi_hdr *hip = (struct hippi_hdr *)skb->data;
  89. /*
  90. * Only IP is currently supported
  91. */
  92. if(hip->snap.ethertype != htons(ETH_P_IP))
  93. {
  94. printk(KERN_DEBUG "%s: unable to resolve type %X addresses.\n",skb->dev->name,ntohs(hip->snap.ethertype));
  95. return 0;
  96. }
  97. /*
  98. * We don't support dynamic ARP on HIPPI, but we use the ARP
  99. * static ARP tables to hold the I-FIELDs.
  100. */
  101. return arp_find(hip->le.daddr, skb);
  102. }
  103. /*
  104. * Determine the packet's protocol ID.
  105. */
  106. __be16 hippi_type_trans(struct sk_buff *skb, struct net_device *dev)
  107. {
  108. struct hippi_hdr *hip;
  109. /*
  110. * This is actually wrong ... question is if we really should
  111. * set the raw address here.
  112. */
  113. skb->dev = dev;
  114. skb_reset_mac_header(skb);
  115. hip = (struct hippi_hdr *)skb_mac_header(skb);
  116. skb_pull(skb, HIPPI_HLEN);
  117. /*
  118. * No fancy promisc stuff here now.
  119. */
  120. return hip->snap.ethertype;
  121. }
  122. EXPORT_SYMBOL(hippi_type_trans);
  123. int hippi_change_mtu(struct net_device *dev, int new_mtu)
  124. {
  125. /*
  126. * HIPPI's got these nice large MTUs.
  127. */
  128. if ((new_mtu < 68) || (new_mtu > 65280))
  129. return -EINVAL;
  130. dev->mtu = new_mtu;
  131. return 0;
  132. }
  133. EXPORT_SYMBOL(hippi_change_mtu);
  134. /*
  135. * For HIPPI we will actually use the lower 4 bytes of the hardware
  136. * address as the I-FIELD rather than the actual hardware address.
  137. */
  138. int hippi_mac_addr(struct net_device *dev, void *p)
  139. {
  140. struct sockaddr *addr = p;
  141. if (netif_running(dev))
  142. return -EBUSY;
  143. memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
  144. return 0;
  145. }
  146. EXPORT_SYMBOL(hippi_mac_addr);
  147. int hippi_neigh_setup_dev(struct net_device *dev, struct neigh_parms *p)
  148. {
  149. /* Never send broadcast/multicast ARP messages */
  150. p->mcast_probes = 0;
  151. /* In IPv6 unicast probes are valid even on NBMA,
  152. * because they are encapsulated in normal IPv6 protocol.
  153. * Should be a generic flag.
  154. */
  155. if (p->tbl->family != AF_INET6)
  156. p->ucast_probes = 0;
  157. return 0;
  158. }
  159. EXPORT_SYMBOL(hippi_neigh_setup_dev);
  160. static const struct header_ops hippi_header_ops = {
  161. .create = hippi_header,
  162. .rebuild = hippi_rebuild_header,
  163. };
  164. static void hippi_setup(struct net_device *dev)
  165. {
  166. dev->header_ops = &hippi_header_ops;
  167. /*
  168. * We don't support HIPPI `ARP' for the time being, and probably
  169. * never will unless someone else implements it. However we
  170. * still need a fake ARPHRD to make ifconfig and friends play ball.
  171. */
  172. dev->type = ARPHRD_HIPPI;
  173. dev->hard_header_len = HIPPI_HLEN;
  174. dev->mtu = 65280;
  175. dev->addr_len = HIPPI_ALEN;
  176. dev->tx_queue_len = 25 /* 5 */;
  177. memset(dev->broadcast, 0xFF, HIPPI_ALEN);
  178. /*
  179. * HIPPI doesn't support broadcast+multicast and we only use
  180. * static ARP tables. ARP is disabled by hippi_neigh_setup_dev.
  181. */
  182. dev->flags = 0;
  183. }
  184. /**
  185. * alloc_hippi_dev - Register HIPPI device
  186. * @sizeof_priv: Size of additional driver-private structure to be allocated
  187. * for this HIPPI device
  188. *
  189. * Fill in the fields of the device structure with HIPPI-generic values.
  190. *
  191. * Constructs a new net device, complete with a private data area of
  192. * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
  193. * this private data area.
  194. */
  195. struct net_device *alloc_hippi_dev(int sizeof_priv)
  196. {
  197. return alloc_netdev(sizeof_priv, "hip%d", hippi_setup);
  198. }
  199. EXPORT_SYMBOL(alloc_hippi_dev);