hippi.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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. * Determine the packet's protocol ID.
  84. */
  85. __be16 hippi_type_trans(struct sk_buff *skb, struct net_device *dev)
  86. {
  87. struct hippi_hdr *hip;
  88. /*
  89. * This is actually wrong ... question is if we really should
  90. * set the raw address here.
  91. */
  92. skb->dev = dev;
  93. skb_reset_mac_header(skb);
  94. hip = (struct hippi_hdr *)skb_mac_header(skb);
  95. skb_pull(skb, HIPPI_HLEN);
  96. /*
  97. * No fancy promisc stuff here now.
  98. */
  99. return hip->snap.ethertype;
  100. }
  101. EXPORT_SYMBOL(hippi_type_trans);
  102. int hippi_change_mtu(struct net_device *dev, int new_mtu)
  103. {
  104. /*
  105. * HIPPI's got these nice large MTUs.
  106. */
  107. if ((new_mtu < 68) || (new_mtu > 65280))
  108. return -EINVAL;
  109. dev->mtu = new_mtu;
  110. return 0;
  111. }
  112. EXPORT_SYMBOL(hippi_change_mtu);
  113. /*
  114. * For HIPPI we will actually use the lower 4 bytes of the hardware
  115. * address as the I-FIELD rather than the actual hardware address.
  116. */
  117. int hippi_mac_addr(struct net_device *dev, void *p)
  118. {
  119. struct sockaddr *addr = p;
  120. if (netif_running(dev))
  121. return -EBUSY;
  122. memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
  123. return 0;
  124. }
  125. EXPORT_SYMBOL(hippi_mac_addr);
  126. int hippi_neigh_setup_dev(struct net_device *dev, struct neigh_parms *p)
  127. {
  128. /* Never send broadcast/multicast ARP messages */
  129. NEIGH_VAR_INIT(p, MCAST_PROBES, 0);
  130. /* In IPv6 unicast probes are valid even on NBMA,
  131. * because they are encapsulated in normal IPv6 protocol.
  132. * Should be a generic flag.
  133. */
  134. if (p->tbl->family != AF_INET6)
  135. NEIGH_VAR_INIT(p, UCAST_PROBES, 0);
  136. return 0;
  137. }
  138. EXPORT_SYMBOL(hippi_neigh_setup_dev);
  139. static const struct header_ops hippi_header_ops = {
  140. .create = hippi_header,
  141. };
  142. static void hippi_setup(struct net_device *dev)
  143. {
  144. dev->header_ops = &hippi_header_ops;
  145. /*
  146. * We don't support HIPPI `ARP' for the time being, and probably
  147. * never will unless someone else implements it. However we
  148. * still need a fake ARPHRD to make ifconfig and friends play ball.
  149. */
  150. dev->type = ARPHRD_HIPPI;
  151. dev->hard_header_len = HIPPI_HLEN;
  152. dev->mtu = 65280;
  153. dev->addr_len = HIPPI_ALEN;
  154. dev->tx_queue_len = 25 /* 5 */;
  155. memset(dev->broadcast, 0xFF, HIPPI_ALEN);
  156. /*
  157. * HIPPI doesn't support broadcast+multicast and we only use
  158. * static ARP tables. ARP is disabled by hippi_neigh_setup_dev.
  159. */
  160. dev->flags = 0;
  161. }
  162. /**
  163. * alloc_hippi_dev - Register HIPPI device
  164. * @sizeof_priv: Size of additional driver-private structure to be allocated
  165. * for this HIPPI device
  166. *
  167. * Fill in the fields of the device structure with HIPPI-generic values.
  168. *
  169. * Constructs a new net device, complete with a private data area of
  170. * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
  171. * this private data area.
  172. */
  173. struct net_device *alloc_hippi_dev(int sizeof_priv)
  174. {
  175. return alloc_netdev(sizeof_priv, "hip%d", NET_NAME_UNKNOWN,
  176. hippi_setup);
  177. }
  178. EXPORT_SYMBOL(alloc_hippi_dev);