checksum.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: checksum.h,v 1.32 2001/10/30 04:32:24 davem Exp $ */
  2. #ifndef __SPARC_CHECKSUM_H
  3. #define __SPARC_CHECKSUM_H
  4. /*  checksum.h:  IP/UDP/TCP checksum routines on the Sparc.
  5.  *
  6.  *  Copyright(C) 1995 Linus Torvalds
  7.  *  Copyright(C) 1995 Miguel de Icaza
  8.  *  Copyright(C) 1996 David S. Miller
  9.  *  Copyright(C) 1996 Eddie C. Dost
  10.  *  Copyright(C) 1997 Jakub Jelinek
  11.  *
  12.  * derived from:
  13.  * Alpha checksum c-code
  14.  *      ix86 inline assembly
  15.  *      RFC1071 Computing the Internet Checksum
  16.  */
  17.  
  18. #include <linux/in6.h>
  19. #include <asm/uaccess.h>
  20. #include <asm/cprefix.h>
  21. /* computes the checksum of a memory block at buff, length len,
  22.  * and adds in "sum" (32-bit)
  23.  *
  24.  * returns a 32-bit number suitable for feeding into itself
  25.  * or csum_tcpudp_magic
  26.  *
  27.  * this function must be called with even lengths, except
  28.  * for the last fragment, which may be odd
  29.  *
  30.  * it's best to have buff aligned on a 32-bit boundary
  31.  */
  32. extern unsigned int csum_partial(const unsigned char * buff, int len, unsigned int sum);
  33. /* the same as csum_partial, but copies from fs:src while it
  34.  * checksums
  35.  *
  36.  * here even more important to align src and dst on a 32-bit (or even
  37.  * better 64-bit) boundary
  38.  */
  39. /* FIXME: Remove these two macros ASAP */
  40. #define csum_partial_copy(src, dst, len, sum) 
  41.          csum_partial_copy_nocheck(src,dst,len,sum)
  42. #define csum_partial_copy_fromuser(s, d, l, w)  
  43.                          csum_partial_copy((char *) (s), (d), (l), (w))
  44.   
  45. extern unsigned int __csum_partial_copy_sparc_generic (const char *, char *);
  46. extern __inline__ unsigned int 
  47. csum_partial_copy_nocheck (const char *src, char *dst, int len, 
  48.    unsigned int sum)
  49. {
  50. register unsigned int ret asm("o0") = (unsigned int)src;
  51. register char *d asm("o1") = dst;
  52. register int l asm("g1") = len;
  53. __asm__ __volatile__ (
  54. "call " C_LABEL_STR(__csum_partial_copy_sparc_generic) "nt"
  55. " mov %4, %%g7n"
  56. : "=r" (ret) : "0" (ret), "r" (d), "r" (l), "r" (sum) :
  57. "o1", "o2", "o3", "o4", "o5", "o7", "g1", "g2", "g3", "g4", "g5", "g7");
  58. return ret;
  59. }
  60. extern __inline__ unsigned int 
  61. csum_partial_copy_from_user(const char *src, char *dst, int len, 
  62.     unsigned int sum, int *err)
  63.   {
  64. if (!access_ok (VERIFY_READ, src, len)) {
  65. *err = -EFAULT;
  66. memset (dst, 0, len);
  67. return sum;
  68. } else {
  69. register unsigned int ret asm("o0") = (unsigned int)src;
  70. register char *d asm("o1") = dst;
  71. register int l asm("g1") = len;
  72. register unsigned int s asm("g7") = sum;
  73. __asm__ __volatile__ (
  74. ".section __ex_table,#allocnt"
  75. ".align 4nt"
  76. ".word 1f,2nt"
  77. ".previousn"
  78. "1:nt"
  79. "call " C_LABEL_STR(__csum_partial_copy_sparc_generic) "nt"
  80. " st %5, [%%sp + 64]n"
  81. : "=r" (ret) : "0" (ret), "r" (d), "r" (l), "r" (s), "r" (err) :
  82. "o1", "o2", "o3", "o4", "o5", "o7", "g1", "g2", "g3", "g4", "g5", "g7");
  83. return ret;
  84. }
  85.   }
  86.   
  87. extern __inline__ unsigned int 
  88. csum_partial_copy_to_user(const char *src, char *dst, int len, 
  89.   unsigned int sum, int *err)
  90. {
  91. if (!access_ok (VERIFY_WRITE, dst, len)) {
  92. *err = -EFAULT;
  93. return sum;
  94. } else {
  95. register unsigned int ret asm("o0") = (unsigned int)src;
  96. register char *d asm("o1") = dst;
  97. register int l asm("g1") = len;
  98. register unsigned int s asm("g7") = sum;
  99. __asm__ __volatile__ (
  100. ".section __ex_table,#allocnt"
  101. ".align 4nt"
  102. ".word 1f,1nt"
  103. ".previousn"
  104. "1:nt"
  105. "call " C_LABEL_STR(__csum_partial_copy_sparc_generic) "nt"
  106. " st %5, [%%sp + 64]n"
  107. : "=r" (ret) : "0" (ret), "r" (d), "r" (l), "r" (s), "r" (err) :
  108. "o1", "o2", "o3", "o4", "o5", "o7", "g1", "g2", "g3", "g4", "g5", "g7");
  109. return ret;
  110. }
  111. }
  112. #define HAVE_CSUM_COPY_USER
  113. #define csum_and_copy_to_user csum_partial_copy_to_user
  114. /* ihl is always 5 or greater, almost always is 5, and iph is word aligned
  115.  * the majority of the time.
  116.  */
  117. extern __inline__ unsigned short ip_fast_csum(__const__ unsigned char *iph,
  118.       unsigned int ihl)
  119. {
  120. unsigned short sum;
  121. /* Note: We must read %2 before we touch %0 for the first time,
  122.  *       because GCC can legitimately use the same register for
  123.  *       both operands.
  124.  */
  125. __asm__ __volatile__("subt%2, 4, %%g4nt"
  126.      "ldt[%1 + 0x00], %0nt"
  127.      "ldt[%1 + 0x04], %%g2nt"
  128.      "ldt[%1 + 0x08], %%g3nt"
  129.      "addcct%%g2, %0, %0nt"
  130.      "addxcct%%g3, %0, %0nt"
  131.      "ldt[%1 + 0x0c], %%g2nt"
  132.      "ldt[%1 + 0x10], %%g3nt"
  133.      "addxcct%%g2, %0, %0nt"
  134.      "addxt%0, %%g0, %0n"
  135.      "1:taddcct%%g3, %0, %0nt"
  136.      "addt%1, 4, %1nt"
  137.      "addxcct%0, %%g0, %0nt"
  138.      "subcct%%g4, 1, %%g4nt"
  139.      "be,at2fnt"
  140.      "sllt%0, 16, %%g2nt"
  141.      "bt1bnt"
  142.      "ldt[%1 + 0x10], %%g3n"
  143.      "2:taddcct%0, %%g2, %%g2nt"
  144.      "srlt%%g2, 16, %0nt"
  145.      "addxt%0, %%g0, %0nt"
  146.      "xnort%%g0, %0, %0"
  147.      : "=r" (sum), "=&r" (iph)
  148.      : "r" (ihl), "1" (iph)
  149.      : "g2", "g3", "g4", "cc");
  150. return sum;
  151. }
  152. /* Fold a partial checksum without adding pseudo headers. */
  153. extern __inline__ unsigned int csum_fold(unsigned int sum)
  154. {
  155. unsigned int tmp;
  156. __asm__ __volatile__("addcct%0, %1, %1nt"
  157.      "srlt%1, 16, %1nt"
  158.      "addxt%1, %%g0, %1nt"
  159.      "xnort%%g0, %1, %0"
  160.      : "=&r" (sum), "=r" (tmp)
  161.      : "0" (sum), "1" (sum<<16)
  162.      : "cc");
  163. return sum;
  164. }
  165. extern __inline__ unsigned long csum_tcpudp_nofold(unsigned long saddr,
  166.    unsigned long daddr,
  167.    unsigned int len,
  168.    unsigned short proto,
  169.    unsigned int sum)
  170. {
  171. __asm__ __volatile__("addcct%1, %0, %0nt"
  172.      "addxcct%2, %0, %0nt"
  173.      "addxcct%3, %0, %0nt"
  174.      "addxt%0, %%g0, %0nt"
  175.      : "=r" (sum), "=r" (saddr)
  176.      : "r" (daddr), "r" ((proto<<16)+len), "0" (sum),
  177.        "1" (saddr)
  178.      : "cc");
  179. return sum;
  180. }
  181. /*
  182.  * computes the checksum of the TCP/UDP pseudo-header
  183.  * returns a 16-bit checksum, already complemented
  184.  */
  185. static inline unsigned short int csum_tcpudp_magic(unsigned long saddr,
  186.    unsigned long daddr,
  187.    unsigned short len,
  188.    unsigned short proto,
  189.    unsigned int sum) 
  190. {
  191. return csum_fold(csum_tcpudp_nofold(saddr,daddr,len,proto,sum));
  192. }
  193. #define _HAVE_ARCH_IPV6_CSUM
  194. static __inline__ unsigned short int csum_ipv6_magic(struct in6_addr *saddr,
  195.      struct in6_addr *daddr,
  196.      __u32 len,
  197.      unsigned short proto,
  198.      unsigned int sum) 
  199. {
  200. __asm__ __volatile__ (
  201. "addcc %3, %4, %%g4nt"
  202. "addxcc %5, %%g4, %%g4nt"
  203. "ld [%2 + 0x0c], %%g2nt"
  204. "ld [%2 + 0x08], %%g3nt"
  205. "addxcc %%g2, %%g4, %%g4nt"
  206. "ld [%2 + 0x04], %%g2nt"
  207. "addxcc %%g3, %%g4, %%g4nt"
  208. "ld [%2 + 0x00], %%g3nt"
  209. "addxcc %%g2, %%g4, %%g4nt"
  210. "ld [%1 + 0x0c], %%g2nt"
  211. "addxcc %%g3, %%g4, %%g4nt"
  212. "ld [%1 + 0x08], %%g3nt"
  213. "addxcc %%g2, %%g4, %%g4nt"
  214. "ld [%1 + 0x04], %%g2nt"
  215. "addxcc %%g3, %%g4, %%g4nt"
  216. "ld [%1 + 0x00], %%g3nt"
  217. "addxcc %%g2, %%g4, %%g4nt"
  218. "addxcc %%g3, %%g4, %0nt"
  219. "addx 0, %0, %0n"
  220. : "=&r" (sum)
  221. : "r" (saddr), "r" (daddr), 
  222.   "r"(htonl(len)), "r"(htonl(proto)), "r"(sum)
  223. : "g2", "g3", "g4", "cc");
  224. return csum_fold(sum);
  225. }
  226. /* this routine is used for miscellaneous IP-like checksums, mainly in icmp.c */
  227. extern __inline__ unsigned short ip_compute_csum(unsigned char * buff, int len)
  228. {
  229. return csum_fold(csum_partial(buff, len, 0));
  230. }
  231. #endif /* !(__SPARC_CHECKSUM_H) */