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 *src
, unsigned char *dst
, int len
,
38 unsigned int sum
, int *errp
);
41 * Copy and checksum to user
43 #define HAVE_CSUM_COPY_USER
44 static inline unsigned int csum_and_copy_to_user (const unsigned char *src
,
45 unsigned char __user
*dst
,
50 sum
= csum_partial(src
, len
, sum
);
52 if (copy_to_user(dst
, src
, len
)) {
61 * the same as csum_partial, but copies from user space (but on MIPS
62 * we have just one address space, so this is identical to the above)
64 unsigned int csum_partial_copy_nocheck(const unsigned char *src
, unsigned char *dst
,
65 int len
, unsigned int sum
);
68 * Fold a partial checksum without adding pseudo headers
70 static inline unsigned short int csum_fold(unsigned int sum
)
73 ".set\tnoat\t\t\t# csum_fold\n\t"
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 unsigned short ip_fast_csum(unsigned char *iph
, unsigned int ihl
)
96 unsigned int *word
= (unsigned int *) iph
;
97 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 unsigned int csum_tcpudp_nofold(unsigned long saddr
,
126 unsigned long daddr
, unsigned short len
, unsigned short proto
,
130 ".set\tnoat\t\t\t# csum_tcpudp_nofold\n\t"
133 "sltu\t$1, %0, %2\n\t"
137 "sltu\t$1, %0, %3\n\t"
141 "sltu\t$1, %0, %4\n\t"
148 "dsll32\t$1, %0, 0\n\t"
150 "dsrl32\t%0, %0, 0\n\t"
154 : "0" (daddr
), "r"(saddr
),
156 "r" (((unsigned long)htons(len
)<<16) + proto
*256),
158 "r" (((unsigned long)(proto
)<<16) + len
),
166 * computes the checksum of the TCP/UDP pseudo-header
167 * returns a 16-bit checksum, already complemented
169 static inline unsigned short int csum_tcpudp_magic(unsigned long saddr
,
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 unsigned short ip_compute_csum(unsigned char * buff
, int len
)
184 return csum_fold(csum_partial(buff
, len
, 0));
187 #define _HAVE_ARCH_IPV6_CSUM
188 static __inline__
unsigned short int csum_ipv6_magic(struct in6_addr
*saddr
,
189 struct in6_addr
*daddr
,
191 unsigned short proto
,
195 ".set\tpush\t\t\t# csum_ipv6_magic\n\t"
196 ".set\tnoreorder\n\t"
198 "addu\t%0, %5\t\t\t# proto (long in network byte order)\n\t"
199 "sltu\t$1, %0, %5\n\t"
202 "addu\t%0, %6\t\t\t# csum\n\t"
203 "sltu\t$1, %0, %6\n\t"
204 "lw\t%1, 0(%2)\t\t\t# four words source address\n\t"
207 "sltu\t$1, %0, %1\n\t"
212 "sltu\t$1, %0, %1\n\t"
217 "sltu\t$1, %0, %1\n\t"
222 "sltu\t$1, %0, %1\n\t"
227 "sltu\t$1, %0, %1\n\t"
232 "sltu\t$1, %0, %1\n\t"
237 "sltu\t$1, %0, %1\n\t"
242 "sltu\t$1, %0, %1\n\t"
244 "addu\t%0, $1\t\t\t# Add final carry\n\t"
246 : "=r" (sum
), "=r" (proto
)
247 : "r" (saddr
), "r" (daddr
),
248 "0" (htonl(len
)), "1" (htonl(proto
)), "r" (sum
));
250 return csum_fold(sum
);
253 #endif /* _ASM_CHECKSUM_H */