1 #ifndef _ASM_X86_CHECKSUM_32_H
2 #define _ASM_X86_CHECKSUM_32_H
5 #include <linux/uaccess.h>
8 * computes the checksum of a memory block at buff, length len,
9 * and adds in "sum" (32-bit)
11 * returns a 32-bit number suitable for feeding into itself
12 * or csum_tcpudp_magic
14 * this function must be called with even lengths, except
15 * for the last fragment, which may be odd
17 * it's best to have buff aligned on a 32-bit boundary
19 asmlinkage __wsum
csum_partial(const void *buff
, int len
, __wsum sum
);
22 * the same as csum_partial, but copies from src while it
23 * checksums, and handles user-space pointer exceptions correctly, when needed.
25 * here even more important to align src and dst on a 32-bit (or even
26 * better 64-bit) boundary
29 asmlinkage __wsum
csum_partial_copy_generic(const void *src
, void *dst
,
31 int *src_err_ptr
, int *dst_err_ptr
);
34 * Note: when you get a NULL pointer exception here this means someone
35 * passed in an incorrect kernel address to one of these functions.
37 * If you use these functions directly please don't forget the
40 static inline __wsum
csum_partial_copy_nocheck(const void *src
, void *dst
,
43 return csum_partial_copy_generic(src
, dst
, len
, sum
, NULL
, NULL
);
46 static inline __wsum
csum_partial_copy_from_user(const void __user
*src
,
55 ret
= csum_partial_copy_generic((__force
void *)src
, dst
,
56 len
, sum
, err_ptr
, NULL
);
63 * This is a version of ip_compute_csum() optimized for IP headers,
64 * which always checksum on 4 octet boundaries.
66 * By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by
69 static inline __sum16
ip_fast_csum(const void *iph
, unsigned int ihl
)
73 asm volatile("movl (%1), %0 ;\n"
79 "1: adcl 16(%1), %0 ;\n"
90 /* Since the input registers which are loaded with iph and ihl
91 are modified, we must also specify them as outputs, or gcc
92 will assume they contain their original values. */
93 : "=r" (sum
), "=r" (iph
), "=r" (ihl
)
94 : "1" (iph
), "2" (ihl
)
96 return (__force __sum16
)sum
;
100 * Fold a partial checksum
103 static inline __sum16
csum_fold(__wsum sum
)
105 asm("addl %1, %0 ;\n"
106 "adcl $0xffff, %0 ;\n"
108 : "r" ((__force u32
)sum
<< 16),
109 "0" ((__force u32
)sum
& 0xffff0000));
110 return (__force __sum16
)(~(__force u32
)sum
>> 16);
113 static inline __wsum
csum_tcpudp_nofold(__be32 saddr
, __be32 daddr
,
114 __u32 len
, __u8 proto
,
117 asm("addl %1, %0 ;\n"
122 : "g" (daddr
), "g"(saddr
),
123 "g" ((len
+ proto
) << 8), "0" (sum
));
128 * computes the checksum of the TCP/UDP pseudo-header
129 * returns a 16-bit checksum, already complemented
131 static inline __sum16
csum_tcpudp_magic(__be32 saddr
, __be32 daddr
,
132 __u32 len
, __u8 proto
,
135 return csum_fold(csum_tcpudp_nofold(saddr
, daddr
, len
, proto
, sum
));
139 * this routine is used for miscellaneous IP-like checksums, mainly
143 static inline __sum16
ip_compute_csum(const void *buff
, int len
)
145 return csum_fold(csum_partial(buff
, len
, 0));
148 #define _HAVE_ARCH_IPV6_CSUM
149 static inline __sum16
csum_ipv6_magic(const struct in6_addr
*saddr
,
150 const struct in6_addr
*daddr
,
151 __u32 len
, __u8 proto
, __wsum sum
)
153 asm("addl 0(%1), %0 ;\n"
156 "adcl 12(%1), %0 ;\n"
160 "adcl 12(%2), %0 ;\n"
165 : "r" (saddr
), "r" (daddr
),
166 "r" (htonl(len
)), "r" (htonl(proto
)), "0" (sum
)
169 return csum_fold(sum
);
173 * Copy and checksum to user
175 #define HAVE_CSUM_COPY_USER
176 static inline __wsum
csum_and_copy_to_user(const void *src
,
184 if (access_ok(VERIFY_WRITE
, dst
, len
)) {
186 ret
= csum_partial_copy_generic(src
, (__force
void *)dst
,
187 len
, sum
, NULL
, err_ptr
);
195 return (__force __wsum
)-1; /* invalid checksum */
198 #endif /* _ASM_X86_CHECKSUM_32_H */