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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.checksum.h 1.8 05/17/01 18:14:24 cort
  3.  */
  4. #ifdef __KERNEL__
  5. #ifndef _PPC_CHECKSUM_H
  6. #define _PPC_CHECKSUM_H
  7. /*
  8.  * computes the checksum of a memory block at buff, length len,
  9.  * and adds in "sum" (32-bit)
  10.  *
  11.  * returns a 32-bit number suitable for feeding into itself
  12.  * or csum_tcpudp_magic
  13.  *
  14.  * this function must be called with even lengths, except
  15.  * for the last fragment, which may be odd
  16.  *
  17.  * it's best to have buff aligned on a 32-bit boundary
  18.  */
  19. extern unsigned int csum_partial(const unsigned char * buff, int len,
  20.  unsigned int sum);
  21. /*
  22.  * Computes the checksum of a memory block at src, length len,
  23.  * and adds in "sum" (32-bit), while copying the block to dst.
  24.  * If an access exception occurs on src or dst, it stores -EFAULT
  25.  * to *src_err or *dst_err respectively (if that pointer is not
  26.  * NULL), and, for an error on src, zeroes the rest of dst.
  27.  *
  28.  * Like csum_partial, this must be called with even lengths,
  29.  * except for the last fragment.
  30.  */
  31. extern unsigned int csum_partial_copy_generic(const char *src, char *dst,
  32.       int len, unsigned int sum,
  33.       int *src_err, int *dst_err);
  34. #define csum_partial_copy_from_user(src, dst, len, sum, errp)
  35. csum_partial_copy_generic((src), (dst), (len), (sum), (errp), 0)
  36. /* FIXME: this needs to be written to really do no check -- Cort */
  37. #define csum_partial_copy_nocheck(src, dst, len, sum)
  38. csum_partial_copy_generic((src), (dst), (len), (sum), 0, 0)     
  39. /*
  40.  * Old versions which ignore errors.
  41.  */
  42. #define csum_partial_copy(src, dst, len, sum)
  43. csum_partial_copy_generic((src), (dst), (len), (sum), 0, 0)
  44. #define csum_partial_copy_fromuser(src, dst, len, sum)
  45. csum_partial_copy_generic((src), (dst), (len), (sum), 0, 0)
  46. /*
  47.  * turns a 32-bit partial checksum (e.g. from csum_partial) into a
  48.  * 1's complement 16-bit checksum.
  49.  */
  50. static inline unsigned int csum_fold(unsigned int sum)
  51. {
  52. unsigned int tmp;
  53. /* swap the two 16-bit halves of sum */
  54. __asm__("rlwinm %0,%1,16,0,31" : "=r" (tmp) : "r" (sum));
  55. /* if there is a carry from adding the two 16-bit halves,
  56.    it will carry from the lower half into the upper half,
  57.    giving us the correct sum in the upper half. */
  58. sum = ~(sum + tmp) >> 16;
  59. return sum;
  60. }
  61. /*
  62.  * this routine is used for miscellaneous IP-like checksums, mainly
  63.  * in icmp.c
  64.  */
  65. static inline unsigned short ip_compute_csum(unsigned char * buff, int len)
  66. {
  67. return csum_fold(csum_partial(buff, len, 0));
  68. }
  69. /*
  70.  * FIXME: I swiped this one from the sparc and made minor modifications.
  71.  * It may not be correct.  -- Cort
  72.  */
  73. static inline unsigned long csum_tcpudp_nofold(unsigned long saddr,
  74.    unsigned long daddr,
  75.    unsigned short len,
  76.    unsigned short proto,
  77.    unsigned int sum) 
  78. {
  79.     __asm__("n
  80. addc %0,%0,%1 n
  81. adde %0,%0,%2 n
  82. adde %0,%0,%3 n
  83. addze %0,%0 n
  84. "
  85. : "=r" (sum)
  86. : "r" (daddr), "r"(saddr), "r"((proto<<16)+len), "0"(sum));
  87.     return sum;
  88. }
  89. /*
  90.  * This is a version of ip_compute_csum() optimized for IP headers,
  91.  * which always checksum on 4 octet boundaries.  ihl is the number
  92.  * of 32-bit words and is always >= 5.
  93.  */
  94. extern unsigned short ip_fast_csum(unsigned char * iph, unsigned int ihl);
  95. /*
  96.  * computes the checksum of the TCP/UDP pseudo-header
  97.  * returns a 16-bit checksum, already complemented
  98.  */
  99. extern unsigned short csum_tcpudp_magic(unsigned long saddr,
  100. unsigned long daddr,
  101. unsigned short len,
  102. unsigned short proto,
  103. unsigned int sum);
  104. #endif
  105. #endif /* __KERNEL__ */