hippi.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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 <linux/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 = 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. /*
  103. * For HIPPI we will actually use the lower 4 bytes of the hardware
  104. * address as the I-FIELD rather than the actual hardware address.
  105. */
  106. int hippi_mac_addr(struct net_device *dev, void *p)
  107. {
  108. struct sockaddr *addr = p;
  109. if (netif_running(dev))
  110. return -EBUSY;
  111. memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
  112. return 0;
  113. }
  114. EXPORT_SYMBOL(hippi_mac_addr);
  115. int hippi_neigh_setup_dev(struct net_device *dev, struct neigh_parms *p)
  116. {
  117. /* Never send broadcast/multicast ARP messages */
  118. NEIGH_VAR_INIT(p, MCAST_PROBES, 0);
  119. /* In IPv6 unicast probes are valid even on NBMA,
  120. * because they are encapsulated in normal IPv6 protocol.
  121. * Should be a generic flag.
  122. */
  123. if (p->tbl->family != AF_INET6)
  124. NEIGH_VAR_INIT(p, UCAST_PROBES, 0);
  125. return 0;
  126. }
  127. EXPORT_SYMBOL(hippi_neigh_setup_dev);
  128. static const struct header_ops hippi_header_ops = {
  129. .create = hippi_header,
  130. };
  131. static void hippi_setup(struct net_device *dev)
  132. {
  133. dev->header_ops = &hippi_header_ops;
  134. /*
  135. * We don't support HIPPI `ARP' for the time being, and probably
  136. * never will unless someone else implements it. However we
  137. * still need a fake ARPHRD to make ifconfig and friends play ball.
  138. */
  139. dev->type = ARPHRD_HIPPI;
  140. dev->hard_header_len = HIPPI_HLEN;
  141. dev->mtu = 65280;
  142. dev->min_mtu = 68;
  143. dev->max_mtu = 65280;
  144. dev->addr_len = HIPPI_ALEN;
  145. dev->tx_queue_len = 25 /* 5 */;
  146. memset(dev->broadcast, 0xFF, HIPPI_ALEN);
  147. /*
  148. * HIPPI doesn't support broadcast+multicast and we only use
  149. * static ARP tables. ARP is disabled by hippi_neigh_setup_dev.
  150. */
  151. dev->flags = 0;
  152. }
  153. /**
  154. * alloc_hippi_dev - Register HIPPI device
  155. * @sizeof_priv: Size of additional driver-private structure to be allocated
  156. * for this HIPPI device
  157. *
  158. * Fill in the fields of the device structure with HIPPI-generic values.
  159. *
  160. * Constructs a new net device, complete with a private data area of
  161. * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
  162. * this private data area.
  163. */
  164. struct net_device *alloc_hippi_dev(int sizeof_priv)
  165. {
  166. return alloc_netdev(sizeof_priv, "hip%d", NET_NAME_UNKNOWN,
  167. hippi_setup);
  168. }
  169. EXPORT_SYMBOL(alloc_hippi_dev);