fc.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * NET3: Fibre Channel device handling subroutines
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version
  7. * 2 of the License, or (at your option) any later version.
  8. *
  9. * Vineet Abraham <vma@iol.unh.edu>
  10. * v 1.0 03/22/99
  11. */
  12. #include <asm/uaccess.h>
  13. #include <asm/system.h>
  14. #include <linux/types.h>
  15. #include <linux/kernel.h>
  16. #include <linux/sched.h>
  17. #include <linux/string.h>
  18. #include <linux/mm.h>
  19. #include <linux/socket.h>
  20. #include <linux/in.h>
  21. #include <linux/inet.h>
  22. #include <linux/netdevice.h>
  23. #include <linux/fcdevice.h>
  24. #include <linux/skbuff.h>
  25. #include <linux/errno.h>
  26. #include <linux/timer.h>
  27. #include <linux/net.h>
  28. #include <linux/proc_fs.h>
  29. #include <linux/init.h>
  30. #include <net/arp.h>
  31. /*
  32. * Put the headers on a Fibre Channel packet.
  33. */
  34. static int fc_header(struct sk_buff *skb, struct net_device *dev,
  35. unsigned short type,
  36. void *daddr, void *saddr, unsigned len)
  37. {
  38. struct fch_hdr *fch;
  39. int hdr_len;
  40. /*
  41. * Add the 802.2 SNAP header if IP as the IPv4 code calls
  42. * dev->hard_header directly.
  43. */
  44. if (type == ETH_P_IP || type == ETH_P_ARP)
  45. {
  46. struct fcllc *fcllc;
  47. hdr_len = sizeof(struct fch_hdr) + sizeof(struct fcllc);
  48. fch = (struct fch_hdr *)skb_push(skb, hdr_len);
  49. fcllc = (struct fcllc *)(fch+1);
  50. fcllc->dsap = fcllc->ssap = EXTENDED_SAP;
  51. fcllc->llc = UI_CMD;
  52. fcllc->protid[0] = fcllc->protid[1] = fcllc->protid[2] = 0x00;
  53. fcllc->ethertype = htons(type);
  54. }
  55. else
  56. {
  57. hdr_len = sizeof(struct fch_hdr);
  58. fch = (struct fch_hdr *)skb_push(skb, hdr_len);
  59. }
  60. if(saddr)
  61. memcpy(fch->saddr,saddr,dev->addr_len);
  62. else
  63. memcpy(fch->saddr,dev->dev_addr,dev->addr_len);
  64. if(daddr)
  65. {
  66. memcpy(fch->daddr,daddr,dev->addr_len);
  67. return(hdr_len);
  68. }
  69. return -hdr_len;
  70. }
  71. /*
  72. * A neighbour discovery of some species (eg arp) has completed. We
  73. * can now send the packet.
  74. */
  75. static int fc_rebuild_header(struct sk_buff *skb)
  76. {
  77. struct fch_hdr *fch=(struct fch_hdr *)skb->data;
  78. struct fcllc *fcllc=(struct fcllc *)(skb->data+sizeof(struct fch_hdr));
  79. if(fcllc->ethertype != htons(ETH_P_IP)) {
  80. printk("fc_rebuild_header: Don't know how to resolve type %04X addresses ?\n", ntohs(fcllc->ethertype));
  81. return 0;
  82. }
  83. #ifdef CONFIG_INET
  84. return arp_find(fch->daddr, skb);
  85. #else
  86. return 0;
  87. #endif
  88. }
  89. static void fc_setup(struct net_device *dev)
  90. {
  91. dev->hard_header = fc_header;
  92. dev->rebuild_header = fc_rebuild_header;
  93. dev->type = ARPHRD_IEEE802;
  94. dev->hard_header_len = FC_HLEN;
  95. dev->mtu = 2024;
  96. dev->addr_len = FC_ALEN;
  97. dev->tx_queue_len = 100; /* Long queues on fc */
  98. dev->flags = IFF_BROADCAST;
  99. memset(dev->broadcast, 0xFF, FC_ALEN);
  100. }
  101. /**
  102. * alloc_fcdev - Register fibre channel device
  103. * @sizeof_priv: Size of additional driver-private structure to be allocated
  104. * for this fibre channel device
  105. *
  106. * Fill in the fields of the device structure with fibre channel-generic values.
  107. *
  108. * Constructs a new net device, complete with a private data area of
  109. * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
  110. * this private data area.
  111. */
  112. struct net_device *alloc_fcdev(int sizeof_priv)
  113. {
  114. return alloc_netdev(sizeof_priv, "fc%d", fc_setup);
  115. }
  116. EXPORT_SYMBOL(alloc_fcdev);