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