blob: c62969dc1bbb4aefea5d146e30887ac5f6cbe1eb [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * Copyright 2004-2009 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Robin Getz96f10502009-09-24 14:11:24 +00004 * Licensed under the GPL-2 or later.
Bryan Wu1394f032007-05-06 14:50:22 -07005 *
Robin Getz96f10502009-09-24 14:11:24 +00006 * An implementation of the TCP/IP protocol suite for the LINUX operating
7 * system. INET is implemented using the BSD Socket interface as the
8 * means of communication with the user level.
Bryan Wu1394f032007-05-06 14:50:22 -07009 *
Bryan Wu1394f032007-05-06 14:50:22 -070010 */
11
Mike Frysingerfe8015c2008-10-28 11:07:15 +080012#include <linux/module.h>
Bryan Wu1394f032007-05-06 14:50:22 -070013#include <net/checksum.h>
14#include <asm/checksum.h>
15
16#ifdef CONFIG_IP_CHECKSUM_L1
17static unsigned short do_csum(const unsigned char *buff, int len)__attribute__((l1_text));
18#endif
19
20static unsigned short do_csum(const unsigned char *buff, int len)
21{
22 register unsigned long sum = 0;
23 int swappem = 0;
24
25 if (1 & (unsigned long)buff) {
26 sum = *buff << 8;
27 buff++;
28 len--;
29 ++swappem;
30 }
31
32 while (len > 1) {
33 sum += *(unsigned short *)buff;
34 buff += 2;
35 len -= 2;
36 }
37
38 if (len > 0)
39 sum += *buff;
40
41 /* Fold 32-bit sum to 16 bits */
42 while (sum >> 16)
43 sum = (sum & 0xffff) + (sum >> 16);
44
45 if (swappem)
46 sum = ((sum & 0xff00) >> 8) + ((sum & 0x00ff) << 8);
47
48 return sum;
49
50}
51
52/*
53 * This is a version of ip_compute_csum() optimized for IP headers,
54 * which always checksum on 4 octet boundaries.
55 */
Al Viro45b39472008-05-12 11:55:10 +080056__sum16 ip_fast_csum(unsigned char *iph, unsigned int ihl)
Bryan Wu1394f032007-05-06 14:50:22 -070057{
Al Viro45b39472008-05-12 11:55:10 +080058 return (__force __sum16)~do_csum(iph, ihl * 4);
Bryan Wu1394f032007-05-06 14:50:22 -070059}
Mike Frysingerfe8015c2008-10-28 11:07:15 +080060EXPORT_SYMBOL(ip_fast_csum);
Bryan Wu1394f032007-05-06 14:50:22 -070061
62/*
63 * computes the checksum of a memory block at buff, length len,
64 * and adds in "sum" (32-bit)
65 *
66 * returns a 32-bit number suitable for feeding into itself
67 * or csum_tcpudp_magic
68 *
69 * this function must be called with even lengths, except
70 * for the last fragment, which may be odd
71 *
72 * it's best to have buff aligned on a 32-bit boundary
73 */
Al Viro45b39472008-05-12 11:55:10 +080074__wsum csum_partial(const void *buff, int len, __wsum sum)
Bryan Wu1394f032007-05-06 14:50:22 -070075{
76 /*
77 * Just in case we get nasty checksum data...
78 * Like 0xffff6ec3 in the case of our IPv6 multicast header.
79 * We fold to begin with, as well as at the end.
80 */
81 sum = (sum & 0xffff) + (sum >> 16);
82
83 sum += do_csum(buff, len);
84
85 sum = (sum & 0xffff) + (sum >> 16);
86
87 return sum;
88}
Mike Frysingerfe8015c2008-10-28 11:07:15 +080089EXPORT_SYMBOL(csum_partial);
Bryan Wu1394f032007-05-06 14:50:22 -070090
91/*
92 * this routine is used for miscellaneous IP-like checksums, mainly
93 * in icmp.c
94 */
Al Viro45b39472008-05-12 11:55:10 +080095__sum16 ip_compute_csum(const void *buff, int len)
Bryan Wu1394f032007-05-06 14:50:22 -070096{
Al Viro45b39472008-05-12 11:55:10 +080097 return (__force __sum16)~do_csum(buff, len);
Bryan Wu1394f032007-05-06 14:50:22 -070098}
Mike Frysingeraa286ba2009-06-05 16:43:39 +000099EXPORT_SYMBOL(ip_compute_csum);
Bryan Wu1394f032007-05-06 14:50:22 -0700100
101/*
102 * copy from fs while checksumming, otherwise like csum_partial
103 */
104
Al Viro45b39472008-05-12 11:55:10 +0800105__wsum
106csum_partial_copy_from_user(const void __user *src, void *dst,
107 int len, __wsum sum, int *csum_err)
Bryan Wu1394f032007-05-06 14:50:22 -0700108{
109 if (csum_err)
110 *csum_err = 0;
Al Viro45b39472008-05-12 11:55:10 +0800111 memcpy(dst, (__force void *)src, len);
Bryan Wu1394f032007-05-06 14:50:22 -0700112 return csum_partial(dst, len, sum);
113}
Mike Frysingeraa286ba2009-06-05 16:43:39 +0000114EXPORT_SYMBOL(csum_partial_copy_from_user);
Bryan Wu1394f032007-05-06 14:50:22 -0700115
116/*
117 * copy from ds while checksumming, otherwise like csum_partial
118 */
119
Al Viro45b39472008-05-12 11:55:10 +0800120__wsum csum_partial_copy(const void *src, void *dst, int len, __wsum sum)
Bryan Wu1394f032007-05-06 14:50:22 -0700121{
122 memcpy(dst, src, len);
123 return csum_partial(dst, len, sum);
124}
Mike Frysingerfe8015c2008-10-28 11:07:15 +0800125EXPORT_SYMBOL(csum_partial_copy);