#include <linux/bitops.h> #include <linux/in6.h> /* * Computes the checksum of a memory block at src, length len, * and adds in "sum" (32-bit), while copying the block to dst. * If an access exception occurs on src or dst, it stores -EFAULT * to *src_err or *dst_err respectively (if that pointer is not * NULL), and, for an error on src, zeroes the rest of dst. * * Like csum_partial, this must be called with even lengths, * except for the last fragment.
*/ extern __wsum csum_partial_copy_generic(constvoid *src, void *dst, int len);
/* * turns a 32-bit partial checksum (e.g. from csum_partial) into a * 1's complement 16-bit checksum.
*/ staticinline __sum16 csum_fold(__wsum sum)
{
u32 tmp = (__force u32)sum;
/* * swap the two 16-bit halves of sum * if there is a carry from adding the two 16-bit halves, * it will carry from the lower half into the upper half, * giving us the correct sum in the upper half.
*/ return (__force __sum16)(~(tmp + rol32(tmp, 16)) >> 16);
}
#define HAVE_ARCH_CSUM_SHIFT static __always_inline __wsum csum_shift(__wsum sum, int offset)
{ /* rotate sum to align it with a 16b boundary */ return (__force __wsum)rol32((__force u32)sum, (offset & 1) << 3);
}
/* * This is a version of ip_compute_csum() optimized for IP headers, * which always checksum on 4 octet boundaries. ihl is the number * of 32-bit words and is always >= 5.
*/ staticinline __wsum ip_fast_csum_nofold(constvoid *iph, unsignedint ihl)
{ const u32 *ptr = (const u32 *)iph + 1; #ifdef __powerpc64__ unsignedint i;
u64 s = *(const u32 *)iph;
for (i = 0; i < ihl - 1; i++, ptr++)
s += *ptr; return (__force __wsum)from64to32(s); #else
__wsum sum, tmp;
/* * computes the checksum of a memory block at buff, length len, * and adds in "sum" (32-bit) * * returns a 32-bit number suitable for feeding into itself * or csum_tcpudp_magic * * this function must be called with even lengths, except * for the last fragment, which may be odd * * it's best to have buff aligned on a 32-bit boundary
*/
__wsum __csum_partial(constvoid *buff, int len, __wsum sum);
static __always_inline __wsum csum_partial(constvoid *buff, int len, __wsum sum)
{ if (__builtin_constant_p(len) && len <= 16 && (len & 1) == 0) { if (len == 2)
sum = csum_add(sum, (__force __wsum)*(const u16 *)buff); if (len >= 4)
sum = csum_add(sum, (__force __wsum)*(const u32 *)buff); if (len == 6)
sum = csum_add(sum, (__force __wsum)
*(const u16 *)(buff + 4)); if (len >= 8)
sum = csum_add(sum, (__force __wsum)
*(const u32 *)(buff + 4)); if (len == 10)
sum = csum_add(sum, (__force __wsum)
*(const u16 *)(buff + 8)); if (len >= 12)
sum = csum_add(sum, (__force __wsum)
*(const u32 *)(buff + 8)); if (len == 14)
sum = csum_add(sum, (__force __wsum)
*(const u16 *)(buff + 12)); if (len >= 16)
sum = csum_add(sum, (__force __wsum)
*(const u32 *)(buff + 12));
} elseif (__builtin_constant_p(len) && (len & 3) == 0) {
sum = csum_add(sum, ip_fast_csum_nofold(buff, len >> 2));
} else {
sum = __csum_partial(buff, len, sum);
} return sum;
}
/* * this routine is used for miscellaneous IP-like checksums, mainly * in icmp.c
*/ staticinline __sum16 ip_compute_csum(constvoid *buff, int len)
{ return csum_fold(csum_partial(buff, len, 0));
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.