2 * arch/sh64/lib/c-checksum.c
4 * This file contains network checksum routines that are better done
5 * in an architecture-specific manner due to speed..
10 #include <linux/string.h>
11 #include <linux/errno.h>
12 #include <linux/kernel.h>
13 #include <asm/byteorder.h>
14 #include <asm/uaccess.h>
16 static inline unsigned short from64to16(unsigned long long x)
18 /* add up 32-bit words for 33 bits */
19 x = (x & 0xffffffff) + (x >> 32);
20 /* add up 16-bit and 17-bit words for 17+c bits */
21 x = (x & 0xffff) + (x >> 16);
22 /* add up 16-bit and 2-bit for 16+c bit */
23 x = (x & 0xffff) + (x >> 16);
25 x = (x & 0xffff) + (x >> 16);
29 static inline unsigned short foldto16(unsigned long x)
31 /* add up 16-bit for 17 bits */
32 x = (x & 0xffff) + (x >> 16);
34 x = (x & 0xffff) + (x >> 16);
38 static inline unsigned short myfoldto16(unsigned long long x)
40 /* Fold down to 32-bits so we don't loose in the typedef-less
43 x = (x & 0xffffffff) + (x >> 32);
45 x = (x & 0xffffffff) + (x >> 32);
47 /* add up 16-bit for 17 bits */
48 x = (x & 0xffff) + (x >> 16);
50 x = (x & 0xffff) + (x >> 16);
54 #define odd(x) ((x)&1)
55 #define U16(x) ntohs(x)
57 static unsigned long do_csum(const unsigned char *buff, int len)
60 unsigned long result = 0;
62 pr_debug("do_csum buff %p, len %d (0x%x)\n", buff, len, len);
64 for (i = 0; i < len; i++) {
67 printk("%02X ", buff[i]);
74 odd = 1 & (unsigned long) buff;
80 count = len >> 1; /* nr of 16-bit words.. */
82 if (2 & (unsigned long) buff) {
83 result += *(unsigned short *) buff;
88 count >>= 1; /* nr of 32-bit words.. */
90 unsigned long carry = 0;
92 unsigned long w = *(unsigned long *) buff;
100 result = (result & 0xffff) + (result >> 16);
103 result += *(unsigned short *) buff;
109 result = foldto16(result);
111 result = ((result >> 8) & 0xff) | ((result & 0xff) << 8);
113 pr_debug("\nCHECKSUM is 0x%x\n", result);
119 /* computes the checksum of a memory block at buff, length len,
120 and adds in "sum" (32-bit) */
121 __wsum csum_partial(const void *buff, int len, __wsum sum)
123 unsigned long long result = do_csum(buff, len);
125 /* add in old sum, and carry.. */
126 result += (__force u32)sum;
127 /* 32+c bits -> 32 bits */
128 result = (result & 0xffffffff) + (result >> 32);
130 pr_debug("csum_partial, buff %p len %d sum 0x%x result=0x%016Lx\n",
131 buff, len, sum, result);
133 return (__force __wsum)result;
136 /* Copy while checksumming, otherwise like csum_partial. */
138 csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum)
140 sum = csum_partial(src, len, sum);
141 memcpy(dst, src, len);
146 /* Copy from userspace and compute checksum. If we catch an exception
147 then zero the rest of the buffer. */
149 csum_partial_copy_from_user(const void __user *src, void *dst, int len,
150 __wsum sum, int *err_ptr)
155 ("csum_partial_copy_from_user src %p, dest %p, len %d, sum %08x, err_ptr %p\n",
156 src, dst, len, sum, err_ptr);
157 missing = copy_from_user(dst, src, len);
158 pr_debug(" access_ok %d\n", __access_ok((unsigned long) src, len));
159 pr_debug(" missing %d\n", missing);
161 memset(dst + len - missing, 0, missing);
165 return csum_partial(dst, len, sum);
168 /* Copy to userspace and compute checksum. */
170 csum_partial_copy_to_user(const unsigned char *src, unsigned char *dst, int len,
171 __wsum sum, int *err_ptr)
173 sum = csum_partial(src, len, sum);
175 if (copy_to_user(dst, src, len))
182 * This is a version of ip_compute_csum() optimized for IP headers,
183 * which always checksum on 4 octet boundaries.
185 __sum16 ip_fast_csum(const void *iph, unsigned int ihl)
187 pr_debug("ip_fast_csum %p,%d\n", iph, ihl);
189 return (__force __sum16)~do_csum(iph, ihl * 4);
192 __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
194 unsigned short proto, __wsum sum)
196 unsigned long long result;
198 pr_debug("ntohs(0x%x)=0x%x\n", 0xdead, ntohs(0xdead));
199 pr_debug("htons(0x%x)=0x%x\n", 0xdead, htons(0xdead));
201 result = (__force u64) saddr + (__force u64) daddr +
202 (__force u64) sum + ((len + proto) << 8);
204 /* Fold down to 32-bits so we don't loose in the typedef-less
207 result = (result & 0xffffffff) + (result >> 32);
209 result = (result & 0xffffffff) + (result >> 32);
211 pr_debug("%s saddr %x daddr %x len %x proto %x sum %x result %08Lx\n",
212 __FUNCTION__, saddr, daddr, len, proto, sum, result);
214 return (__wsum)result;
216 EXPORT_SYMBOL(csum_tcpudp_nofold);