checksum.h 3.8 KB

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