checksum.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * INET An implementation of the TCP/IP protocol suite for the LINUX
  3. * operating system. INET is implemented using the BSD Socket
  4. * interface as the means of communication with the user level.
  5. *
  6. * Checksumming functions for IP, TCP, UDP and so on
  7. *
  8. * Authors: Jorge Cwik, <jorge@laser.satlink.net>
  9. * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
  10. * Borrows very liberally from tcp.c and ip.c, see those
  11. * files for more names.
  12. *
  13. * This program is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU General Public License
  15. * as published by the Free Software Foundation; either version
  16. * 2 of the License, or (at your option) any later version.
  17. */
  18. #ifndef _CHECKSUM_H
  19. #define _CHECKSUM_H
  20. #include <linux/errno.h>
  21. #include <asm/types.h>
  22. #include <asm/byteorder.h>
  23. #include <asm/uaccess.h>
  24. #include <asm/checksum.h>
  25. #ifndef _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
  26. static inline
  27. __wsum csum_and_copy_from_user (const void __user *src, void *dst,
  28. int len, __wsum sum, int *err_ptr)
  29. {
  30. if (access_ok(VERIFY_READ, src, len))
  31. return csum_partial_copy_from_user(src, dst, len, sum, err_ptr);
  32. if (len)
  33. *err_ptr = -EFAULT;
  34. return sum;
  35. }
  36. #endif
  37. #ifndef HAVE_CSUM_COPY_USER
  38. static __inline__ __wsum csum_and_copy_to_user
  39. (const void *src, void __user *dst, int len, __wsum sum, int *err_ptr)
  40. {
  41. sum = csum_partial(src, len, sum);
  42. if (access_ok(VERIFY_WRITE, dst, len)) {
  43. if (copy_to_user(dst, src, len) == 0)
  44. return sum;
  45. }
  46. if (len)
  47. *err_ptr = -EFAULT;
  48. return (__force __wsum)-1; /* invalid checksum */
  49. }
  50. #endif
  51. #ifndef HAVE_ARCH_CSUM_ADD
  52. static inline __wsum csum_add(__wsum csum, __wsum addend)
  53. {
  54. u32 res = (__force u32)csum;
  55. res += (__force u32)addend;
  56. return (__force __wsum)(res + (res < (__force u32)addend));
  57. }
  58. #endif
  59. static inline __wsum csum_sub(__wsum csum, __wsum addend)
  60. {
  61. return csum_add(csum, ~addend);
  62. }
  63. static inline __sum16 csum16_add(__sum16 csum, __be16 addend)
  64. {
  65. u16 res = (__force u16)csum;
  66. res += (__force u16)addend;
  67. return (__force __sum16)(res + (res < (__force u16)addend));
  68. }
  69. static inline __sum16 csum16_sub(__sum16 csum, __be16 addend)
  70. {
  71. return csum16_add(csum, ~addend);
  72. }
  73. static inline __wsum
  74. csum_block_add(__wsum csum, __wsum csum2, int offset)
  75. {
  76. u32 sum = (__force u32)csum2;
  77. /* rotate sum to align it with a 16b boundary */
  78. if (offset & 1)
  79. sum = ror32(sum, 8);
  80. return csum_add(csum, (__force __wsum)sum);
  81. }
  82. static inline __wsum
  83. csum_block_add_ext(__wsum csum, __wsum csum2, int offset, int len)
  84. {
  85. return csum_block_add(csum, csum2, offset);
  86. }
  87. static inline __wsum
  88. csum_block_sub(__wsum csum, __wsum csum2, int offset)
  89. {
  90. return csum_block_add(csum, ~csum2, offset);
  91. }
  92. static inline __wsum csum_unfold(__sum16 n)
  93. {
  94. return (__force __wsum)n;
  95. }
  96. static inline __wsum csum_partial_ext(const void *buff, int len, __wsum sum)
  97. {
  98. return csum_partial(buff, len, sum);
  99. }
  100. #define CSUM_MANGLED_0 ((__force __sum16)0xffff)
  101. static inline void csum_replace_by_diff(__sum16 *sum, __wsum diff)
  102. {
  103. *sum = csum_fold(csum_add(diff, ~csum_unfold(*sum)));
  104. }
  105. static inline void csum_replace4(__sum16 *sum, __be32 from, __be32 to)
  106. {
  107. __wsum tmp = csum_sub(~csum_unfold(*sum), (__force __wsum)from);
  108. *sum = csum_fold(csum_add(tmp, (__force __wsum)to));
  109. }
  110. /* Implements RFC 1624 (Incremental Internet Checksum)
  111. * 3. Discussion states :
  112. * HC' = ~(~HC + ~m + m')
  113. * m : old value of a 16bit field
  114. * m' : new value of a 16bit field
  115. */
  116. static inline void csum_replace2(__sum16 *sum, __be16 old, __be16 new)
  117. {
  118. *sum = ~csum16_add(csum16_sub(~(*sum), old), new);
  119. }
  120. struct sk_buff;
  121. void inet_proto_csum_replace4(__sum16 *sum, struct sk_buff *skb,
  122. __be32 from, __be32 to, bool pseudohdr);
  123. void inet_proto_csum_replace16(__sum16 *sum, struct sk_buff *skb,
  124. const __be32 *from, const __be32 *to,
  125. bool pseudohdr);
  126. void inet_proto_csum_replace_by_diff(__sum16 *sum, struct sk_buff *skb,
  127. __wsum diff, bool pseudohdr);
  128. static inline void inet_proto_csum_replace2(__sum16 *sum, struct sk_buff *skb,
  129. __be16 from, __be16 to,
  130. bool pseudohdr)
  131. {
  132. inet_proto_csum_replace4(sum, skb, (__force __be32)from,
  133. (__force __be32)to, pseudohdr);
  134. }
  135. static inline __wsum remcsum_adjust(void *ptr, __wsum csum,
  136. int start, int offset)
  137. {
  138. __sum16 *psum = (__sum16 *)(ptr + offset);
  139. __wsum delta;
  140. /* Subtract out checksum up to start */
  141. csum = csum_sub(csum, csum_partial(ptr, start, 0));
  142. /* Set derived checksum in packet */
  143. delta = csum_sub((__force __wsum)csum_fold(csum),
  144. (__force __wsum)*psum);
  145. *psum = csum_fold(csum);
  146. return delta;
  147. }
  148. static inline void remcsum_unadjust(__sum16 *psum, __wsum delta)
  149. {
  150. *psum = csum_fold(csum_sub(delta, *psum));
  151. }
  152. #endif