checksum.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. #ifdef CONFIG_GENERIC_CSUM
  16. #include <asm-generic/checksum.h>
  17. #else
  18. extern __sum16 ip_fast_csum(const void *iph, unsigned int ihl);
  19. /*
  20. * computes the checksum of a memory block at buff, length len,
  21. * and adds in "sum" (32-bit)
  22. *
  23. * returns a 32-bit number suitable for feeding into itself
  24. * or csum_tcpudp_magic
  25. *
  26. * this function must be called with even lengths, except
  27. * for the last fragment, which may be odd
  28. *
  29. * it's best to have buff aligned on a 32-bit boundary
  30. */
  31. extern __wsum csum_partial(const void *buff, int len, __wsum sum);
  32. /*
  33. * Computes the checksum of a memory block at src, length len,
  34. * and adds in "sum" (32-bit), while copying the block to dst.
  35. * If an access exception occurs on src or dst, it stores -EFAULT
  36. * to *src_err or *dst_err respectively (if that pointer is not
  37. * NULL), and, for an error on src, zeroes the rest of dst.
  38. *
  39. * Like csum_partial, this must be called with even lengths,
  40. * except for the last fragment.
  41. */
  42. extern __wsum csum_partial_copy_generic(const void *src, void *dst,
  43. int len, __wsum sum,
  44. int *src_err, int *dst_err);
  45. #ifdef __powerpc64__
  46. #define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
  47. extern __wsum csum_and_copy_from_user(const void __user *src, void *dst,
  48. int len, __wsum sum, int *err_ptr);
  49. #define HAVE_CSUM_COPY_USER
  50. extern __wsum csum_and_copy_to_user(const void *src, void __user *dst,
  51. int len, __wsum sum, int *err_ptr);
  52. #else
  53. /*
  54. * the same as csum_partial, but copies from src to dst while it
  55. * checksums.
  56. */
  57. #define csum_partial_copy_from_user(src, dst, len, sum, errp) \
  58. csum_partial_copy_generic((__force const void *)(src), (dst), (len), (sum), (errp), NULL)
  59. #endif
  60. #define csum_partial_copy_nocheck(src, dst, len, sum) \
  61. csum_partial_copy_generic((src), (dst), (len), (sum), NULL, NULL)
  62. /*
  63. * turns a 32-bit partial checksum (e.g. from csum_partial) into a
  64. * 1's complement 16-bit checksum.
  65. */
  66. static inline __sum16 csum_fold(__wsum sum)
  67. {
  68. unsigned int tmp;
  69. /* swap the two 16-bit halves of sum */
  70. __asm__("rlwinm %0,%1,16,0,31" : "=r" (tmp) : "r" (sum));
  71. /* if there is a carry from adding the two 16-bit halves,
  72. it will carry from the lower half into the upper half,
  73. giving us the correct sum in the upper half. */
  74. return (__force __sum16)(~((__force u32)sum + tmp) >> 16);
  75. }
  76. /*
  77. * this routine is used for miscellaneous IP-like checksums, mainly
  78. * in icmp.c
  79. */
  80. static inline __sum16 ip_compute_csum(const void *buff, int len)
  81. {
  82. return csum_fold(csum_partial(buff, len, 0));
  83. }
  84. static inline __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
  85. unsigned short len,
  86. unsigned short proto,
  87. __wsum sum)
  88. {
  89. #ifdef __powerpc64__
  90. unsigned long s = (__force u32)sum;
  91. s += (__force u32)saddr;
  92. s += (__force u32)daddr;
  93. s += proto + len;
  94. s += (s >> 32);
  95. return (__force __wsum) s;
  96. #else
  97. __asm__("\n\
  98. addc %0,%0,%1 \n\
  99. adde %0,%0,%2 \n\
  100. adde %0,%0,%3 \n\
  101. addze %0,%0 \n\
  102. "
  103. : "=r" (sum)
  104. : "r" (daddr), "r"(saddr), "r"(proto + len), "0"(sum));
  105. return sum;
  106. #endif
  107. }
  108. /*
  109. * computes the checksum of the TCP/UDP pseudo-header
  110. * returns a 16-bit checksum, already complemented
  111. */
  112. static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr,
  113. unsigned short len,
  114. unsigned short proto,
  115. __wsum sum)
  116. {
  117. return csum_fold(csum_tcpudp_nofold(saddr, daddr, len, proto, sum));
  118. }
  119. #define HAVE_ARCH_CSUM_ADD
  120. static inline __wsum csum_add(__wsum csum, __wsum addend)
  121. {
  122. #ifdef __powerpc64__
  123. u64 res = (__force u64)csum;
  124. res += (__force u64)addend;
  125. return (__force __wsum)((u32)res + (res >> 32));
  126. #else
  127. asm("addc %0,%0,%1;"
  128. "addze %0,%0;"
  129. : "+r" (csum) : "r" (addend));
  130. return csum;
  131. #endif
  132. }
  133. #endif
  134. #endif /* __KERNEL__ */
  135. #endif