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

嵌入式Linux

开发平台:

Unix_Linux

  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. /*
  19.  * Fixes:
  20.  *
  21.  * Ralf Baechle : generic ipv6 checksum
  22.  * <ralf@waldorf-gmbh.de>
  23.  */
  24. #ifndef _CHECKSUM_H
  25. #define _CHECKSUM_H
  26. #include <asm/types.h>
  27. #include <asm/byteorder.h>
  28. #include <net/ip.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/checksum.h>
  31. #ifndef _HAVE_ARCH_IPV6_CSUM
  32. static __inline__ unsigned short int csum_ipv6_magic(struct in6_addr *saddr,
  33.      struct in6_addr *daddr,
  34.      __u16 len,
  35.      unsigned short proto,
  36.      unsigned int csum) 
  37. {
  38. int carry;
  39. __u32 ulen;
  40. __u32 uproto;
  41. csum += saddr->s6_addr32[0];
  42. carry = (csum < saddr->s6_addr32[0]);
  43. csum += carry;
  44. csum += saddr->s6_addr32[1];
  45. carry = (csum < saddr->s6_addr32[1]);
  46. csum += carry;
  47. csum += saddr->s6_addr32[2];
  48. carry = (csum < saddr->s6_addr32[2]);
  49. csum += carry;
  50. csum += saddr->s6_addr32[3];
  51. carry = (csum < saddr->s6_addr32[3]);
  52. csum += carry;
  53. csum += daddr->s6_addr32[0];
  54. carry = (csum < daddr->s6_addr32[0]);
  55. csum += carry;
  56. csum += daddr->s6_addr32[1];
  57. carry = (csum < daddr->s6_addr32[1]);
  58. csum += carry;
  59. csum += daddr->s6_addr32[2];
  60. carry = (csum < daddr->s6_addr32[2]);
  61. csum += carry;
  62. csum += daddr->s6_addr32[3];
  63. carry = (csum < daddr->s6_addr32[3]);
  64. csum += carry;
  65. ulen = htonl((__u32) len);
  66. csum += ulen;
  67. carry = (csum < ulen);
  68. csum += carry;
  69. uproto = htonl(proto);
  70. csum += uproto;
  71. carry = (csum < uproto);
  72. csum += carry;
  73. return csum_fold(csum);
  74. }
  75. #endif
  76. #ifndef _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
  77. static inline
  78. unsigned int csum_and_copy_from_user (const char *src, char *dst,
  79.       int len, int sum, int *err_ptr)
  80. {
  81. if (verify_area(VERIFY_READ, src, len) == 0)
  82. return csum_partial_copy_from_user(src, dst, len, sum, err_ptr);
  83. if (len)
  84. *err_ptr = -EFAULT;
  85. return sum;
  86. }
  87. #endif
  88. #ifndef HAVE_CSUM_COPY_USER
  89. static __inline__ unsigned int csum_and_copy_to_user
  90. (const char *src, char *dst, int len, unsigned int sum, int *err_ptr)
  91. {
  92. sum = csum_partial(src, len, sum);
  93. if (access_ok(VERIFY_WRITE, dst, len)) {
  94. if (copy_to_user(dst, src, len) == 0)
  95. return sum;
  96. }
  97. if (len)
  98. *err_ptr = -EFAULT;
  99. return -1; /* invalid checksum */
  100. }
  101. #endif
  102. static inline unsigned int csum_add(unsigned int csum, unsigned int addend)
  103. {
  104. csum += addend;
  105. return csum + (csum < addend);
  106. }
  107. static inline unsigned int csum_sub(unsigned int csum, unsigned int addend)
  108. {
  109. return csum_add(csum, ~addend);
  110. }
  111. static inline unsigned int
  112. csum_block_add(unsigned int csum, unsigned int csum2, int offset)
  113. {
  114. if (offset&1)
  115. csum2 = ((csum2&0xFF00FF)<<8)+((csum2>>8)&0xFF00FF);
  116. return csum_add(csum, csum2);
  117. }
  118. static inline unsigned int
  119. csum_block_sub(unsigned int csum, unsigned int csum2, int offset)
  120. {
  121. if (offset&1)
  122. csum2 = ((csum2&0xFF00FF)<<8)+((csum2>>8)&0xFF00FF);
  123. return csum_sub(csum, csum2);
  124. }
  125. #endif