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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1995, 1996, 1997, 1998, 1999 by Ralf Baechle
  7.  * Copyright (C) 1999 Silicon Graphics, Inc.
  8.  * Copyright (C) 2001 Thiemo Seufer.
  9.  */
  10. #ifndef _ASM_CHECKSUM_H
  11. #define _ASM_CHECKSUM_H
  12. #include <asm/uaccess.h>
  13. /*
  14.  * computes the checksum of a memory block at buff, length len,
  15.  * and adds in "sum" (32-bit)
  16.  *
  17.  * returns a 32-bit number suitable for feeding into itself
  18.  * or csum_tcpudp_magic
  19.  *
  20.  * this function must be called with even lengths, except
  21.  * for the last fragment, which may be odd
  22.  *
  23.  * it's best to have buff aligned on a 32-bit boundary
  24.  */
  25. unsigned int csum_partial(const unsigned char *buff, int len, unsigned int sum);
  26. /*
  27.  * this is a new version of the above that records errors it finds in *errp,
  28.  * but continues and zeros the rest of the buffer.
  29.  */
  30. #define csum_partial_copy_nocheck csum_partial_copy
  31. /*
  32.  * this is a new version of the above that records errors it finds in *errp,
  33.  * but continues and zeros the rest of the buffer.
  34.  */
  35. unsigned int csum_partial_copy_from_user(const char *src, char *dst, int len,
  36.                                          unsigned int sum, int *errp);
  37. /*
  38.  * Copy and checksum to user
  39.  */
  40. #define HAVE_CSUM_COPY_USER
  41. extern inline unsigned int csum_and_copy_to_user (const char *src, char *dst,
  42.   int len, int sum,
  43.   int *err_ptr)
  44. {
  45. sum = csum_partial(src, len, sum);
  46. if (copy_to_user(dst, src, len)) {
  47. *err_ptr = -EFAULT;
  48. return -1;
  49. }
  50. return sum;
  51. }
  52. /*
  53.  * the same as csum_partial, but copies from user space (but on MIPS
  54.  * we have just one address space, so this is identical to the above)
  55.  *
  56.  * this is obsolete and will go away.
  57.  */
  58. #define csum_partial_copy_fromuser csum_partial_copy
  59. unsigned int csum_partial_copy(const char *src, char *dst, int len,
  60.        unsigned int sum);
  61. /*
  62.  * Fold a partial checksum without adding pseudo headers
  63.  */
  64. static inline unsigned short int csum_fold(unsigned int sum)
  65. {
  66. __asm__(
  67. ".settnoatttt# csum_foldnt"
  68. "sllt$1,%0,16nt"
  69. "addut%0,$1nt"
  70. "sltut$1,%0,$1nt"
  71. "srlt%0,%0,16nt"
  72. "addut%0,$1nt"
  73. "xorit%0,0xffffnt"
  74. ".settat"
  75. : "=r" (sum)
  76. : "0" (sum)
  77. : "$1");
  78.   return sum;
  79. }
  80.  
  81. /*
  82.  * This is a version of ip_compute_csum() optimized for IP headers,
  83.  * which always checksum on 4 octet boundaries.
  84.  *
  85.  * By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by
  86.  * Arnt Gulbrandsen.
  87.  */
  88. static inline unsigned short ip_fast_csum(unsigned char *iph,
  89.   unsigned int ihl)
  90. {
  91. unsigned int sum;
  92. unsigned long dummy;
  93. /*
  94.  * This is for 32-bit processors ...  but works just fine for 64-bit
  95.  * processors for now ...  XXX
  96.  */
  97. __asm__ __volatile__(
  98. ".settnoreorderttt# ip_fast_csumnt"
  99. ".settnoatnt"
  100. "lwt%0, (%1)nt"
  101. "subut%2, 4nt"
  102. "dsllt%2, 2nt"
  103. "lwt%3, 4(%1)nt"
  104. "daddut%2, %1nt"
  105. "addut%0, %3nt"
  106. "sltut$1, %0, %3nt"
  107. "lwt%3, 8(%1)nt"
  108. "addut%0, $1nt"
  109. "addut%0, %3nt"
  110. "sltut$1, %0, %3nt"
  111. "lwt%3, 12(%1)nt"
  112. "addut%0, $1nt"
  113. "addut%0, %3nt"
  114. "sltut$1, %0, %3nt"
  115. "addut%0, $1n"
  116. "1:tlwt%3, 16(%1)nt"
  117. "daddiut%1, 4n"
  118. "addut%0, %3nt"
  119. "sltut$1, %0, %3nt"
  120. "bnet%2, %1, 1bnt"
  121. " addut%0, $1n"
  122. "2:t.settatnt"
  123. ".settreorder"
  124. : "=&r" (sum), "=&r" (iph), "=&r" (ihl), "=&r" (dummy)
  125. : "1" (iph), "2" (ihl)
  126. : "$1");
  127. return csum_fold(sum);
  128. }
  129. /*
  130.  * computes the checksum of the TCP/UDP pseudo-header
  131.  * returns a 16-bit checksum, already complemented
  132.  */
  133. static inline unsigned long csum_tcpudp_nofold(unsigned long saddr,
  134.        unsigned long daddr,
  135.        unsigned short len,
  136.        unsigned short proto,
  137.        unsigned int sum)
  138. {
  139. __asm__(
  140. ".settnoatttt# csum_tcpudp_nofoldnt"
  141. "daddut%0, %2nt"
  142. "daddut%0, %3nt"
  143. "daddut%0, %4nt"
  144. "dsll32t$1, %0, 0nt"
  145. "daddut%0, $1nt"
  146. "dsrl32t%0, %0, 0nt"
  147. ".settat"
  148. : "=r" (sum)
  149. : "0" (daddr), "r"(saddr),
  150. #ifdef __MIPSEL__
  151.   "r" ((ntohs(len)<<16)+proto*256),
  152. #else
  153.   "r" (((proto)<<16)+len),
  154. #endif
  155.   "r" (sum)
  156. : "$1");
  157. return sum;
  158. }
  159. /*
  160.  * computes the checksum of the TCP/UDP pseudo-header
  161.  * returns a 16-bit checksum, already complemented
  162.  */
  163. static inline unsigned short int csum_tcpudp_magic(unsigned long saddr,
  164.    unsigned long daddr,
  165.    unsigned short len,
  166.    unsigned short proto,
  167.    unsigned int sum)
  168. {
  169. return csum_fold(csum_tcpudp_nofold(saddr, daddr, len, proto, sum));
  170. }
  171. /*
  172.  * this routine is used for miscellaneous IP-like checksums, mainly
  173.  * in icmp.c
  174.  */
  175. static inline unsigned short ip_compute_csum(unsigned char * buff, int len)
  176. {
  177. return csum_fold(csum_partial(buff, len, 0));
  178. }
  179. #define _HAVE_ARCH_IPV6_CSUM
  180. static inline unsigned short int csum_ipv6_magic(struct in6_addr *saddr,
  181.  struct in6_addr *daddr,
  182.  __u32 len,
  183.  unsigned short proto,
  184.  unsigned int sum) 
  185. {
  186. __asm__(
  187. ".settnoreorderttt# csum_ipv6_magicnt"
  188. ".settnoatnt"
  189. "addut%0, %5ttt# proto (long in network byte order)nt"
  190. "sltut$1, %0, %5nt"
  191. "addut%0, $1nt"
  192. "addut%0, %6ttt# csumnt"
  193. "sltut$1, %0, %6nt"
  194. "lwt%1, 0(%2)ttt# four words source addressnt"
  195. "addut%0, $1nt"
  196. "addut%0, %1nt"
  197. "sltut$1, %0, $1nt"
  198. "lwt%1, 4(%2)nt"
  199. "addut%0, $1nt"
  200. "addut%0, %1nt"
  201. "sltut$1, %0, $1nt"
  202. "lwt%1, 8(%2)nt"
  203. "addut%0, $1nt"
  204. "addut%0, %1nt"
  205. "sltut$1, %0, $1nt"
  206. "lwt%1, 12(%2)nt"
  207. "addut%0, $1nt"
  208. "addut%0, %1nt"
  209. "sltut$1, %0, $1nt"
  210. "lwt%1, 0(%3)nt"
  211. "addut%0, $1nt"
  212. "addut%0, %1nt"
  213. "sltut$1, %0, $1nt"
  214. "lwt%1, 4(%3)nt"
  215. "addut%0, $1nt"
  216. "addut%0, %1nt"
  217. "sltut$1, %0, $1nt"
  218. "lwt%1, 8(%3)nt"
  219. "addut%0, $1nt"
  220. "addut%0, %1nt"
  221. "sltut$1, %0, $1nt"
  222. "lwt%1, 12(%3)nt"
  223. "addut%0, $1nt"
  224. "addut%0, %1nt"
  225. "sltut$1, %0, $1nt"
  226. ".settnoatnt"
  227. ".settnoreorder"
  228. : "=r" (sum), "=r" (proto)
  229. : "r" (saddr), "r" (daddr),
  230.   "0" (htonl(len)), "1" (htonl(proto)), "r" (sum)
  231. : "$1");
  232. return csum_fold(sum);
  233. }
  234. #endif /* _ASM_CHECKSUM_H */