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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _PARISC_CHECKSUM_H
  2. #define _PARISC_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. extern unsigned int csum_partial(const unsigned char *, int, unsigned int);
  16. /*
  17.  * the same as csum_partial, but copies from src while it
  18.  * checksums
  19.  *
  20.  * here even more important to align src and dst on a 32-bit (or even
  21.  * better 64-bit) boundary
  22.  */
  23. extern unsigned int csum_partial_copy(const char *, char *, int, unsigned int);
  24. /*
  25.  * the same as csum_partial, but copies from user space
  26.  *
  27.  * this is obsolete and will go away.
  28.  */
  29. #define csum_partial_copy_fromuser csum_partial_copy
  30. /*
  31.  * this is a new version of the above that records errors it finds in *errp,
  32.  * but continues and zeros the rest of the buffer.
  33.  */
  34. unsigned int csum_partial_copy_from_user(const char *src, char *dst, int len, unsigned int sum, int *errp);
  35. /*
  36.  * Note: when you get a NULL pointer exception here this means someone
  37.  * passed in an incorrect kernel address to one of these functions. 
  38.  *
  39.  * If you use these functions directly please don't forget the 
  40.  * verify_area().
  41.  */
  42. extern __inline__
  43. unsigned int csum_partial_copy_nocheck (const char *src, char *dst,
  44. int len, int sum)
  45. {
  46. return csum_partial_copy (src, dst, len, sum);
  47. }
  48. /*
  49.  * Optimized for IP headers, which always checksum on 4 octet boundaries.
  50.  *
  51.  * Written by Randolph Chung <tausq@debian.org>
  52.  */
  53. static inline unsigned short ip_fast_csum(unsigned char * iph,
  54.   unsigned int ihl) {
  55. unsigned int sum;
  56. __asm__ __volatile__ ("
  57. ldws,ma 4(%1), %0
  58. addi -4, %2, %2
  59. comib,>= 0, %2, 2f
  60. ldws,ma 4(%1), %%r19
  61. add %0, %%r19, %0
  62. ldws,ma 4(%1), %%r19
  63. addc %0, %%r19, %0
  64. ldws,ma 4(%1), %%r19
  65. addc %0, %%r19, %0
  66. 1: ldws,ma 4(%1), %%r19
  67. addib,<> -1, %2, 1b
  68. addc %0, %%r19, %0
  69. addc %0, %%r0, %0
  70. zdepi -1, 31, 16, %%r19
  71. and %0, %%r19, %%r20
  72. extru %0, 15, 16, %%r21
  73. add %%r20, %%r21, %0
  74. and %0, %%r19, %%r20
  75. extru %0, 15, 16, %%r21
  76. add %%r20, %%r21, %0
  77. subi -1, %0, %0
  78. 2:
  79. "
  80. : "=r" (sum), "=r" (iph), "=r" (ihl)
  81. : "1" (iph), "2" (ihl)
  82. : "r19", "r20", "r21" );
  83. return(sum);
  84. }
  85. /*
  86.  * Fold a partial checksum
  87.  */
  88. static inline unsigned int csum_fold(unsigned int sum)
  89. {
  90. sum = (sum & 0xffff) + (sum >> 16);
  91. sum = (sum & 0xffff) + (sum >> 16);
  92. return ~sum;
  93. }
  94.  
  95. static inline unsigned long csum_tcpudp_nofold(unsigned long saddr,
  96.        unsigned long daddr,
  97.        unsigned short len,
  98.        unsigned short proto,
  99.        unsigned int sum) 
  100. {
  101. __asm__("
  102. add  %1, %0, %0
  103. addc %2, %0, %0
  104. addc %3, %0, %0
  105. addc %%r0, %0, %0 "
  106. : "=r" (sum)
  107. : "r" (daddr), "r"(saddr), "r"((proto<<16)+len), "0"(sum));
  108.     return sum;
  109. }
  110. /*
  111.  * computes the checksum of the TCP/UDP pseudo-header
  112.  * returns a 16-bit checksum, already complemented
  113.  */
  114. static inline unsigned short int csum_tcpudp_magic(unsigned long saddr,
  115.    unsigned long daddr,
  116.    unsigned short len,
  117.    unsigned short proto,
  118.    unsigned int sum) 
  119. {
  120. return csum_fold(csum_tcpudp_nofold(saddr,daddr,len,proto,sum));
  121. }
  122. /*
  123.  * this routine is used for miscellaneous IP-like checksums, mainly
  124.  * in icmp.c
  125.  */
  126. static inline unsigned short ip_compute_csum(unsigned char * buf, int len) {
  127.  return csum_fold (csum_partial(buf, len, 0));
  128. }
  129. #define _HAVE_ARCH_IPV6_CSUM
  130. static __inline__ unsigned short int csum_ipv6_magic(struct in6_addr *saddr,
  131.      struct in6_addr *daddr,
  132.      __u16 len,
  133.      unsigned short proto,
  134.      unsigned int sum) 
  135. {
  136. BUG();
  137. return csum_fold(sum);
  138. }
  139. /* 
  140.  * Copy and checksum to user
  141.  */
  142. #define HAVE_CSUM_COPY_USER
  143. static __inline__ unsigned int csum_and_copy_to_user (const char *src, char *dst,
  144.     int len, int sum, int *err_ptr)
  145. {
  146. /* code stolen from include/asm-mips64 */
  147. sum = csum_partial(src, len, sum);
  148.  
  149. if (copy_to_user(dst, src, len)) {
  150. *err_ptr = -EFAULT;
  151. return -1;
  152. }
  153. return sum;
  154. }
  155. #endif