checksum.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _PPC64_CHECKSUM_H
  2. #define _PPC64_CHECKSUM_H
  3. /*
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version
  7.  * 2 of the License, or (at your option) any later version.
  8.  */
  9. /*
  10.  * This is a version of ip_compute_csum() optimized for IP headers,
  11.  * which always checksum on 4 octet boundaries.  ihl is the number
  12.  * of 32-bit words and is always >= 5.
  13.  */
  14. extern unsigned short ip_fast_csum(unsigned char * iph, unsigned int ihl);
  15. /*
  16.  * computes the checksum of the TCP/UDP pseudo-header
  17.  * returns a 16-bit checksum, already complemented
  18.  */
  19. extern unsigned short csum_tcpudp_magic(unsigned long saddr,
  20. unsigned long daddr,
  21. unsigned short len,
  22. unsigned short proto,
  23. unsigned int sum);
  24. /*
  25.  * computes the checksum of a memory block at buff, length len,
  26.  * and adds in "sum" (32-bit)
  27.  *
  28.  * returns a 32-bit number suitable for feeding into itself
  29.  * or csum_tcpudp_magic
  30.  *
  31.  * this function must be called with even lengths, except
  32.  * for the last fragment, which may be odd
  33.  *
  34.  * it's best to have buff aligned on a 32-bit boundary
  35.  */
  36. extern unsigned int csum_partial(const unsigned char * buff, int len,
  37.  unsigned int sum);
  38. /*
  39.  * the same as csum_partial, but copies from src to dst while it
  40.  * checksums
  41.  */
  42. unsigned int csum_partial_copy(const char *src, char *dst, 
  43.        int len, unsigned int sum);
  44. extern unsigned int csum_partial_copy_generic(const char *src, char *dst,
  45.       int len, unsigned int sum,
  46.       int *src_err, int *dst_err);
  47. /*
  48.  * the same as csum_partial, but copies from user space.
  49.  */
  50. unsigned int csum_partial_copy_fromuser(const char *src, 
  51. char *dst, 
  52. int len, 
  53. unsigned int sum,
  54. int *src_err);
  55. unsigned int csum_partial_copy_nocheck(const char *src, 
  56.        char *dst, 
  57.        int len, 
  58.        unsigned int sum);
  59. /*
  60.  * turns a 32-bit partial checksum (e.g. from csum_partial) into a
  61.  * 1's complement 16-bit checksum.
  62.  */
  63. static inline unsigned int csum_fold(unsigned int sum)
  64. {
  65. unsigned int tmp;
  66. /* swap the two 16-bit halves of sum */
  67. __asm__("rlwinm %0,%1,16,0,31" : "=r" (tmp) : "r" (sum));
  68. /* if there is a carry from adding the two 16-bit halves,
  69.    it will carry from the lower half into the upper half,
  70.    giving us the correct sum in the upper half. */
  71. sum = ~(sum + tmp) >> 16;
  72. return sum;
  73. }
  74. /*
  75.  * this routine is used for miscellaneous IP-like checksums, mainly
  76.  * in icmp.c
  77.  */
  78. static inline unsigned short ip_compute_csum(unsigned char * buff, int len)
  79. {
  80. return csum_fold(csum_partial(buff, len, 0));
  81. }
  82. #define csum_partial_copy_from_user(src, dst, len, sum, errp)   
  83.         csum_partial_copy_generic((src), (dst), (len), (sum), (errp), 0)
  84. #define csum_partial_copy_nocheck(src, dst, len, sum)   
  85.         csum_partial_copy_generic((src), (dst), (len), (sum), 0, 0)
  86. static inline u32 csum_tcpudp_nofold(u32 saddr,
  87.                                      u32 daddr,
  88.                                      unsigned short len,
  89.                                      unsigned short proto,
  90.                                      unsigned int sum)
  91. {
  92. unsigned long s = sum;
  93. s += saddr;
  94. s += daddr;
  95. s += (proto << 16) + len;
  96. s += (s >> 32);
  97. return (u32) s;
  98. }
  99. #endif