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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/checksum.h
  3.  *
  4.  * IP checksum routines
  5.  *
  6.  * Copyright (C) Original authors of ../asm-i386/checksum.h
  7.  * Copyright (C) 1996-1999 Russell King
  8.  */
  9. #ifndef __ASM_ARM_CHECKSUM_H
  10. #define __ASM_ARM_CHECKSUM_H
  11. /*
  12.  * computes the checksum of a memory block at buff, length len,
  13.  * and adds in "sum" (32-bit)
  14.  *
  15.  * returns a 32-bit number suitable for feeding into itself
  16.  * or csum_tcpudp_magic
  17.  *
  18.  * this function must be called with even lengths, except
  19.  * for the last fragment, which may be odd
  20.  *
  21.  * it's best to have buff aligned on a 32-bit boundary
  22.  */
  23. unsigned int csum_partial(const unsigned char * buff, int len, unsigned int sum);
  24. /*
  25.  * the same as csum_partial, but copies from src while it
  26.  * checksums, and handles user-space pointer exceptions correctly, when needed.
  27.  *
  28.  * here even more important to align src and dst on a 32-bit (or even
  29.  * better 64-bit) boundary
  30.  */
  31. unsigned int
  32. csum_partial_copy_nocheck(const char *src, char *dst, int len, int sum);
  33. unsigned int
  34. csum_partial_copy_from_user(const char *src, char *dst, int len, int sum, int *err_ptr);
  35. /*
  36.  * These are the old (and unsafe) way of doing checksums, a warning message will be
  37.  * printed if they are used and an exception occurs.
  38.  *
  39.  * these functions should go away after some time.
  40.  */
  41. #define csum_partial_copy(src,dst,len,sum) csum_partial_copy_nocheck(src,dst,len,sum)
  42. /*
  43.  * This is a version of ip_compute_csum() optimized for IP headers,
  44.  * which always checksum on 4 octet boundaries.
  45.  */
  46. static inline unsigned short
  47. ip_fast_csum(unsigned char * iph, unsigned int ihl)
  48. {
  49. unsigned int sum, tmp1;
  50. __asm__ __volatile__(
  51. "ldr %0, [%1], #4 @ ip_fast_csum n
  52. ldr %3, [%1], #4 n
  53. sub %2, %2, #5 n
  54. adds %0, %0, %3 n
  55. ldr %3, [%1], #4 n
  56. adcs %0, %0, %3 n
  57. ldr %3, [%1], #4 n
  58. 1: adcs %0, %0, %3 n
  59. ldr %3, [%1], #4 n
  60. tst %2, #15 @ do this carefully n
  61. subne %2, %2, #1 @ without destroying n
  62. bne 1b @ the carry flag n
  63. adcs %0, %0, %3 n
  64. adc %0, %0, #0 n
  65. adds %0, %0, %0, lsl #16 n
  66. addcs %0, %0, #0x10000 n
  67. mvn %0, %0 n
  68. mov %0, %0, lsr #16"
  69. : "=r" (sum), "=r" (iph), "=r" (ihl), "=r" (tmp1)
  70. : "1" (iph), "2" (ihl)
  71. : "cc");
  72. return sum;
  73. }
  74. /*
  75.  *  Fold a partial checksum without adding pseudo headers
  76.  */
  77. static inline unsigned int
  78. csum_fold(unsigned int sum)
  79. {
  80. __asm__(
  81. "adds %0, %1, %1, lsl #16 @ csum_fold n
  82. addcs %0, %0, #0x10000"
  83. : "=r" (sum)
  84. : "r" (sum)
  85. : "cc");
  86. return (~sum) >> 16;
  87. }
  88. static inline unsigned int
  89. csum_tcpudp_nofold(unsigned long saddr, unsigned long daddr, unsigned short len,
  90.    unsigned int proto, unsigned int sum)
  91. {
  92. __asm__(
  93. "adds %0, %1, %2 @ csum_tcpudp_nofold n
  94. adcs %0, %0, %3 n
  95. adcs %0, %0, %4 n
  96. adcs %0, %0, %5 n
  97. adc %0, %0, #0"
  98. : "=&r"(sum)
  99. : "r" (sum), "r" (daddr), "r" (saddr), "r" (ntohs(len) << 16), "Ir" (proto << 8)
  100. : "cc");
  101. return sum;
  102. }
  103. /*
  104.  * computes the checksum of the TCP/UDP pseudo-header
  105.  * returns a 16-bit checksum, already complemented
  106.  */
  107. static inline unsigned short int
  108. csum_tcpudp_magic(unsigned long saddr, unsigned long daddr, unsigned short len,
  109.   unsigned int proto, unsigned int sum)
  110. {
  111. __asm__(
  112. "adds %0, %1, %2 @ csum_tcpudp_magic n
  113. adcs %0, %0, %3 n
  114. adcs %0, %0, %4 n
  115. adcs %0, %0, %5 n
  116. adc %0, %0, #0 n
  117. adds %0, %0, %0, lsl #16 n
  118. addcs %0, %0, #0x10000 n
  119. mvn %0, %0"
  120. : "=&r"(sum)
  121. : "r" (sum), "r" (daddr), "r" (saddr), "r" (ntohs(len)), "Ir" (proto << 8)
  122. : "cc");
  123. return sum >> 16;
  124. }
  125. /*
  126.  * this routine is used for miscellaneous IP-like checksums, mainly
  127.  * in icmp.c
  128.  */
  129. static inline unsigned short
  130. ip_compute_csum(unsigned char * buff, int len)
  131. {
  132. return csum_fold(csum_partial(buff, len, 0));
  133. }
  134. #define _HAVE_ARCH_IPV6_CSUM
  135. extern unsigned long
  136. __csum_ipv6_magic(struct in6_addr *saddr, struct in6_addr *daddr, __u32 len,
  137. __u32 proto, unsigned int sum);
  138. static inline unsigned short int
  139. csum_ipv6_magic(struct in6_addr *saddr, struct in6_addr *daddr, __u32 len,
  140. unsigned short proto, unsigned int sum)
  141. {
  142. return csum_fold(__csum_ipv6_magic(saddr, daddr, htonl(len),
  143.    htonl(proto), sum));
  144. }
  145. #endif