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/config.h>
15 #include <linux/in6.h>
17 #include <asm/uaccess.h>
20 * computes the checksum of a memory block at buff, length len,
21 * and adds in "sum" (32-bit)
23 * returns a 32-bit number suitable for feeding into itself
24 * or csum_tcpudp_magic
26 * this function must be called with even lengths, except
27 * for the last fragment, which may be odd
29 * it's best to have buff aligned on a 32-bit boundary
31 unsigned int csum_partial(const unsigned char *buff
, int len
, unsigned int sum
);
34 * this is a new version of the above that records errors it finds in *errp,
35 * but continues and zeros the rest of the buffer.
37 unsigned int csum_partial_copy_from_user(const unsigned char __user
*src
,
38 unsigned char *dst
, int len
,
39 unsigned int sum
, int *errp
);
42 * Copy and checksum to user
44 #define HAVE_CSUM_COPY_USER
45 static inline unsigned int csum_and_copy_to_user (const unsigned char *src
,
46 unsigned char __user
*dst
,
51 sum
= csum_partial(src
, len
, sum
);
53 if (copy_to_user(dst
, src
, len
)) {
62 * the same as csum_partial, but copies from user space (but on MIPS
63 * we have just one address space, so this is identical to the above)
65 unsigned int csum_partial_copy_nocheck(const unsigned char *src
, unsigned char *dst
,
66 int len
, unsigned int sum
);
69 * Fold a partial checksum without adding pseudo headers
71 static inline unsigned short int csum_fold(unsigned int sum
)
74 " .set push # csum_fold\n"
90 * This is a version of ip_compute_csum() optimized for IP headers,
91 * which always checksum on 4 octet boundaries.
93 * By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by
96 static inline unsigned short ip_fast_csum(unsigned char *iph
, unsigned int ihl
)
98 unsigned int *word
= (unsigned int *) iph
;
99 unsigned int *stop
= word
+ ihl
;
105 carry
= (csum
< word
[1]);
109 carry
= (csum
< word
[2]);
113 carry
= (csum
< word
[3]);
119 carry
= (csum
< *word
);
122 } while (word
!= stop
);
124 return csum_fold(csum
);
127 static inline unsigned int csum_tcpudp_nofold(unsigned long saddr
,
128 unsigned long daddr
, unsigned short len
, unsigned short proto
,
132 " .set push # csum_tcpudp_nofold\n"
136 " sltu $1, %0, %2 \n"
140 " sltu $1, %0, %3 \n"
144 " sltu $1, %0, %4 \n"
151 " dsll32 $1, %0, 0 \n"
153 " dsra32 %0, %0, 0 \n"
157 : "0" (daddr
), "r"(saddr
),
159 "r" (((unsigned long)htons(len
)<<16) + proto
*256),
161 "r" (((unsigned long)(proto
)<<16) + len
),
169 * computes the checksum of the TCP/UDP pseudo-header
170 * returns a 16-bit checksum, already complemented
172 static inline unsigned short int csum_tcpudp_magic(unsigned long saddr
,
175 unsigned short proto
,
178 return csum_fold(csum_tcpudp_nofold(saddr
, daddr
, len
, proto
, sum
));
182 * this routine is used for miscellaneous IP-like checksums, mainly
185 static inline unsigned short ip_compute_csum(unsigned char * buff
, int len
)
187 return csum_fold(csum_partial(buff
, len
, 0));
190 #define _HAVE_ARCH_IPV6_CSUM
191 static __inline__
unsigned short int csum_ipv6_magic(struct in6_addr
*saddr
,
192 struct in6_addr
*daddr
,
194 unsigned short proto
,
198 " .set push # csum_ipv6_magic\n"
201 " addu %0, %5 # proto (long in network byte order)\n"
202 " sltu $1, %0, %5 \n"
205 " addu %0, %6 # csum\n"
206 " sltu $1, %0, %6 \n"
207 " lw %1, 0(%2) # four words source address\n"
210 " sltu $1, %0, %1 \n"
215 " sltu $1, %0, %1 \n"
220 " sltu $1, %0, %1 \n"
225 " sltu $1, %0, %1 \n"
230 " sltu $1, %0, %1 \n"
235 " sltu $1, %0, %1 \n"
240 " sltu $1, %0, %1 \n"
245 " sltu $1, %0, %1 \n"
247 " addu %0, $1 # Add final carry\n"
249 : "=r" (sum
), "=r" (proto
)
250 : "r" (saddr
), "r" (daddr
),
251 "0" (htonl(len
)), "1" (htonl(proto
)), "r" (sum
));
253 return csum_fold(sum
);
256 #endif /* _ASM_CHECKSUM_H */