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

嵌入式Linux

开发平台:

Unix_Linux

  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, <bir7@leland.Stanford.Edu>
  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/types.h>
  23. #include <linux/kernel.h>
  24. #include <linux/sched.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. #include <asm/checksum.h>
  38. #include <asm/segment.h>
  39. #include <asm/system.h>
  40. /*
  41.  * hippi_net_init()
  42.  *
  43.  * Do nothing, this is just to pursuade the stupid linker to behave.
  44.  */
  45. void hippi_net_init(void)
  46. {
  47. return;
  48. }
  49. /*
  50.  * Create the HIPPI MAC header for an arbitrary protocol layer 
  51.  *
  52.  * saddr=NULL means use device source address
  53.  * daddr=NULL means leave destination address (eg unresolved arp)
  54.  */
  55. int hippi_header(struct sk_buff *skb, struct net_device *dev,
  56.  unsigned short type, void *daddr, void *saddr,
  57.  unsigned len)
  58. {
  59. struct hippi_hdr *hip = (struct hippi_hdr *)skb_push(skb, HIPPI_HLEN);
  60. if (!len){
  61. len = skb->len - HIPPI_HLEN;
  62. printk("hippi_header(): length not suppliedn");
  63. }
  64. /*
  65.  * Due to the stupidity of the little endian byte-order we
  66.  * have to set the fp field this way.
  67.  */
  68. hip->fp.fixed = __constant_htonl(0x04800018);
  69. hip->fp.d2_size = htonl(len + 8);
  70. hip->le.fc = 0;
  71. hip->le.double_wide = 0; /* only HIPPI 800 for the time being */
  72. hip->le.message_type = 0; /* Data PDU */
  73. hip->le.dest_addr_type = 2; /* 12 bit SC address */
  74. hip->le.src_addr_type = 2; /* 12 bit SC address */
  75. memcpy(hip->le.src_switch_addr, dev->dev_addr + 3, 3);
  76. memset(&hip->le.reserved, 0, 16);
  77. hip->snap.dsap = HIPPI_EXTENDED_SAP;
  78. hip->snap.ssap = HIPPI_EXTENDED_SAP;
  79. hip->snap.ctrl = HIPPI_UI_CMD;
  80. hip->snap.oui[0] = 0x00;
  81. hip->snap.oui[1] = 0x00;
  82. hip->snap.oui[2] = 0x00;
  83. hip->snap.ethertype = htons(type);
  84. if (daddr)
  85. {
  86. memcpy(hip->le.dest_switch_addr, daddr + 3, 3);
  87. memcpy(&skb->private.ifield, daddr + 2, 4);
  88. return HIPPI_HLEN;
  89. }
  90. return -((int)HIPPI_HLEN);
  91. }
  92. /*
  93.  * Rebuild the HIPPI MAC header. This is called after an ARP has
  94.  * completed on this sk_buff. We now let ARP fill in the other fields.
  95.  */
  96. int hippi_rebuild_header(struct sk_buff *skb)
  97. {
  98. struct hippi_hdr *hip = (struct hippi_hdr *)skb->data;
  99. /*
  100.  * Only IP is currently supported
  101.  */
  102.  
  103. if(hip->snap.ethertype != __constant_htons(ETH_P_IP)) 
  104. {
  105. printk(KERN_DEBUG "%s: unable to resolve type %X addresses.n",skb->dev->name,ntohs(hip->snap.ethertype));
  106. return 0;
  107. }
  108. /*
  109.  * We don't support dynamic ARP on HIPPI, but we use the ARP
  110.  * static ARP tables to hold the I-FIELDs.
  111.  */
  112. return arp_find(hip->le.daddr, skb);
  113. }
  114. /*
  115.  * Determine the packet's protocol ID.
  116.  */
  117.  
  118. unsigned short hippi_type_trans(struct sk_buff *skb, struct net_device *dev)
  119. {
  120. struct hippi_hdr *hip;
  121. hip = (struct hippi_hdr *) skb->data;
  122. /*
  123.  * This is actually wrong ... question is if we really should
  124.  * set the raw address here.
  125.  */
  126.  skb->mac.raw = skb->data;
  127.  skb_pull(skb, HIPPI_HLEN);
  128. /*
  129.  * No fancy promisc stuff here now.
  130.  */
  131. return hip->snap.ethertype;
  132. }