2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1995, 96, 97, 98, 99, 2001 by Ralf Baechle
7 * Copyright (C) 1999 Silicon Graphics, Inc.
8 * Copyright (C) 2001 Thiemo Seufer.
9 * Copyright (C) 2002 Maciej W. Rozycki
11 #ifndef _ASM_CHECKSUM_H
12 #define _ASM_CHECKSUM_H
14 #include <linux/in6.h>
16 #include <asm/uaccess.h>
19 * computes the checksum of a memory block at buff, length len,
20 * and adds in "sum" (32-bit)
22 * returns a 32-bit number suitable for feeding into itself
23 * or csum_tcpudp_magic
25 * this function must be called with even lengths, except
26 * for the last fragment, which may be odd
28 * it's best to have buff aligned on a 32-bit boundary
30 __wsum
csum_partial(const void *buff
, int len
, __wsum sum
);
33 * this is a new version of the above that records errors it finds in *errp,
34 * but continues and zeros the rest of the buffer.
36 __wsum
csum_partial_copy_from_user(const void __user
*src
,
38 __wsum sum
, int *errp
);
41 * Copy and checksum to user
43 #define HAVE_CSUM_COPY_USER
44 static inline __wsum
csum_and_copy_to_user (const void *src
, void __user
*dst
,
49 sum
= csum_partial(src
, len
, sum
);
51 if (copy_to_user(dst
, src
, len
)) {
53 return (__force __wsum
)-1;
60 * the same as csum_partial, but copies from user space (but on MIPS
61 * we have just one address space, so this is identical to the above)
63 __wsum
csum_partial_copy_nocheck(const void *src
, void *dst
,
67 * Fold a partial checksum without adding pseudo headers
69 static inline __sum16
csum_fold(__wsum sum
)
72 " .set push # csum_fold\n"
84 return (__force __sum16
)sum
;
88 * This is a version of ip_compute_csum() optimized for IP headers,
89 * which always checksum on 4 octet boundaries.
91 * By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by
94 static inline __sum16
ip_fast_csum(const void *iph
, unsigned int ihl
)
96 const unsigned int *word
= iph
;
97 const unsigned int *stop
= word
+ ihl
;
103 carry
= (csum
< word
[1]);
107 carry
= (csum
< word
[2]);
111 carry
= (csum
< word
[3]);
117 carry
= (csum
< *word
);
120 } while (word
!= stop
);
122 return csum_fold(csum
);
125 static inline __wsum
csum_tcpudp_nofold(__be32 saddr
,
126 __be32 daddr
, unsigned short len
, unsigned short proto
,
130 " .set push # csum_tcpudp_nofold\n"
134 " sltu $1, %0, %2 \n"
138 " sltu $1, %0, %3 \n"
142 " sltu $1, %0, %4 \n"
149 " dsll32 $1, %0, 0 \n"
151 " dsra32 %0, %0, 0 \n"
155 : "0" (daddr
), "r"(saddr
),
157 "r" ((proto
+ len
) << 8),
167 * computes the checksum of the TCP/UDP pseudo-header
168 * returns a 16-bit checksum, already complemented
170 static inline __sum16
csum_tcpudp_magic(__be32 saddr
, __be32 daddr
,
172 unsigned short proto
,
175 return csum_fold(csum_tcpudp_nofold(saddr
, daddr
, len
, proto
, sum
));
179 * this routine is used for miscellaneous IP-like checksums, mainly
182 static inline __sum16
ip_compute_csum(const void *buff
, int len
)
184 return csum_fold(csum_partial(buff
, len
, 0));
187 #define _HAVE_ARCH_IPV6_CSUM
188 static __inline__ __sum16
csum_ipv6_magic(const struct in6_addr
*saddr
,
189 const struct in6_addr
*daddr
,
190 __u32 len
, unsigned short proto
,
194 " .set push # csum_ipv6_magic\n"
197 " addu %0, %5 # proto (long in network byte order)\n"
198 " sltu $1, %0, %5 \n"
201 " addu %0, %6 # csum\n"
202 " sltu $1, %0, %6 \n"
203 " lw %1, 0(%2) # four words source address\n"
206 " sltu $1, %0, %1 \n"
211 " sltu $1, %0, %1 \n"
216 " sltu $1, %0, %1 \n"
221 " sltu $1, %0, %1 \n"
226 " sltu $1, %0, %1 \n"
231 " sltu $1, %0, %1 \n"
236 " sltu $1, %0, %1 \n"
241 " sltu $1, %0, %1 \n"
243 " addu %0, $1 # Add final carry\n"
245 : "=r" (sum
), "=r" (proto
)
246 : "r" (saddr
), "r" (daddr
),
247 "0" (htonl(len
)), "1" (htonl(proto
)), "r" (sum
));
249 return csum_fold(sum
);
252 #endif /* _ASM_CHECKSUM_H */