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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _I386_CHECKSUM_H
  2. #define _I386_CHECKSUM_H
  3. /*
  4.  * computes the checksum of a memory block at buff, length len,
  5.  * and adds in "sum" (32-bit)
  6.  *
  7.  * returns a 32-bit number suitable for feeding into itself
  8.  * or csum_tcpudp_magic
  9.  *
  10.  * this function must be called with even lengths, except
  11.  * for the last fragment, which may be odd
  12.  *
  13.  * it's best to have buff aligned on a 32-bit boundary
  14.  */
  15. asmlinkage unsigned int csum_partial(const unsigned char * buff, int len, unsigned int sum);
  16. /*
  17.  * the same as csum_partial, but copies from src while it
  18.  * checksums, and handles user-space pointer exceptions correctly, when needed.
  19.  *
  20.  * here even more important to align src and dst on a 32-bit (or even
  21.  * better 64-bit) boundary
  22.  */
  23. asmlinkage unsigned int csum_partial_copy_generic( const char *src, char *dst, int len, int sum,
  24.    int *src_err_ptr, int *dst_err_ptr);
  25. /*
  26.  * Note: when you get a NULL pointer exception here this means someone
  27.  * passed in an incorrect kernel address to one of these functions. 
  28.  *
  29.  * If you use these functions directly please don't forget the 
  30.  * verify_area().
  31.  */
  32. static __inline__
  33. unsigned int csum_partial_copy_nocheck ( const char *src, char *dst,
  34. int len, int sum)
  35. {
  36. return csum_partial_copy_generic ( src, dst, len, sum, NULL, NULL);
  37. }
  38. static __inline__
  39. unsigned int csum_partial_copy_from_user ( const char *src, char *dst,
  40. int len, int sum, int *err_ptr)
  41. {
  42. return csum_partial_copy_generic ( src, dst, len, sum, err_ptr, NULL);
  43. }
  44. /*
  45.  * These are the old (and unsafe) way of doing checksums, a warning message will be
  46.  * printed if they are used and an exeption occurs.
  47.  *
  48.  * these functions should go away after some time.
  49.  */
  50. #define csum_partial_copy_fromuser csum_partial_copy
  51. unsigned int csum_partial_copy( const char *src, char *dst, int len, int sum);
  52. /*
  53.  * This is a version of ip_compute_csum() optimized for IP headers,
  54.  * which always checksum on 4 octet boundaries.
  55.  *
  56.  * By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by
  57.  * Arnt Gulbrandsen.
  58.  */
  59. static inline unsigned short ip_fast_csum(unsigned char * iph,
  60.   unsigned int ihl) {
  61. unsigned int sum;
  62. __asm__ __volatile__("
  63.     movl (%1), %0
  64.     subl $4, %2
  65.     jbe 2f
  66.     addl 4(%1), %0
  67.     adcl 8(%1), %0
  68.     adcl 12(%1), %0
  69. 1:     adcl 16(%1), %0
  70.     lea 4(%1), %1
  71.     decl %2
  72.     jne 1b
  73.     adcl $0, %0
  74.     movl %0, %2
  75.     shrl $16, %0
  76.     addw %w2, %w0
  77.     adcl $0, %0
  78.     notl %0
  79. 2:
  80.     "
  81. /* Since the input registers which are loaded with iph and ipl
  82.    are modified, we must also specify them as outputs, or gcc
  83.    will assume they contain their original values. */
  84. : "=r" (sum), "=r" (iph), "=r" (ihl)
  85. : "1" (iph), "2" (ihl));
  86. return(sum);
  87. }
  88. /*
  89.  * Fold a partial checksum
  90.  */
  91. static inline unsigned int csum_fold(unsigned int sum)
  92. {
  93. __asm__("
  94. addl %1, %0
  95. adcl $0xffff, %0
  96. "
  97. : "=r" (sum)
  98. : "r" (sum << 16), "0" (sum & 0xffff0000)
  99. );
  100. return (~sum) >> 16;
  101. }
  102.  
  103. static inline unsigned long csum_tcpudp_nofold(unsigned long saddr,
  104.    unsigned long daddr,
  105.    unsigned short len,
  106.    unsigned short proto,
  107.    unsigned int sum) 
  108. {
  109.     __asm__("
  110. addl %1, %0
  111. adcl %2, %0
  112. adcl %3, %0
  113. adcl $0, %0
  114. "
  115. : "=r" (sum)
  116. : "g" (daddr), "g"(saddr), "g"((ntohs(len)<<16)+proto*256), "0"(sum));
  117.     return sum;
  118. }
  119. /*
  120.  * computes the checksum of the TCP/UDP pseudo-header
  121.  * returns a 16-bit checksum, already complemented
  122.  */
  123. static inline unsigned short int csum_tcpudp_magic(unsigned long saddr,
  124.    unsigned long daddr,
  125.    unsigned short len,
  126.    unsigned short proto,
  127.    unsigned int sum) 
  128. {
  129. return csum_fold(csum_tcpudp_nofold(saddr,daddr,len,proto,sum));
  130. }
  131. /*
  132.  * this routine is used for miscellaneous IP-like checksums, mainly
  133.  * in icmp.c
  134.  */
  135. static inline unsigned short ip_compute_csum(unsigned char * buff, int len) {
  136.     return csum_fold (csum_partial(buff, len, 0));
  137. }
  138. #define _HAVE_ARCH_IPV6_CSUM
  139. static __inline__ unsigned short int csum_ipv6_magic(struct in6_addr *saddr,
  140.      struct in6_addr *daddr,
  141.      __u32 len,
  142.      unsigned short proto,
  143.      unsigned int sum) 
  144. {
  145. __asm__("
  146. addl 0(%1), %0
  147. adcl 4(%1), %0
  148. adcl 8(%1), %0
  149. adcl 12(%1), %0
  150. adcl 0(%2), %0
  151. adcl 4(%2), %0
  152. adcl 8(%2), %0
  153. adcl 12(%2), %0
  154. adcl %3, %0
  155. adcl %4, %0
  156. adcl $0, %0
  157. "
  158. : "=&r" (sum)
  159. : "r" (saddr), "r" (daddr), 
  160.   "r"(htonl(len)), "r"(htonl(proto)), "0"(sum));
  161. return csum_fold(sum);
  162. }
  163. /* 
  164.  * Copy and checksum to user
  165.  */
  166. #define HAVE_CSUM_COPY_USER
  167. static __inline__ unsigned int csum_and_copy_to_user (const char *src, char *dst,
  168.     int len, int sum, int *err_ptr)
  169. {
  170. if (access_ok(VERIFY_WRITE, dst, len))
  171. return csum_partial_copy_generic(src, dst, len, sum, NULL, err_ptr);
  172. if (len)
  173. *err_ptr = -EFAULT;
  174. return -1; /* invalid checksum */
  175. }
  176. #endif