1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_CHECKSUM_32_H
3 #define _ASM_X86_CHECKSUM_32_H
6 #include <linux/uaccess.h>
9 * computes the checksum of a memory block at buff, length len,
10 * and adds in "sum" (32-bit)
12 * returns a 32-bit number suitable for feeding into itself
13 * or csum_tcpudp_magic
15 * this function must be called with even lengths, except
16 * for the last fragment, which may be odd
18 * it's best to have buff aligned on a 32-bit boundary
20 asmlinkage __wsum
csum_partial(const void *buff
, int len
, __wsum sum
);
23 * the same as csum_partial, but copies from src while it
24 * checksums, and handles user-space pointer exceptions correctly, when needed.
26 * here even more important to align src and dst on a 32-bit (or even
27 * better 64-bit) boundary
30 asmlinkage __wsum
csum_partial_copy_generic(const void *src
, void *dst
, int len
);
33 * Note: when you get a NULL pointer exception here this means someone
34 * passed in an incorrect kernel address to one of these functions.
36 * If you use these functions directly please don't forget the
39 static inline __wsum
csum_partial_copy_nocheck(const void *src
, void *dst
, int len
)
41 return csum_partial_copy_generic(src
, dst
, len
);
44 static inline __wsum
csum_and_copy_from_user(const void __user
*src
,
50 if (!user_access_begin(src
, len
))
52 ret
= csum_partial_copy_generic((__force
void *)src
, dst
, len
);
59 * This is a version of ip_compute_csum() optimized for IP headers,
60 * which always checksum on 4 octet boundaries.
62 * By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by
65 static inline __sum16
ip_fast_csum(const void *iph
, unsigned int ihl
)
69 asm volatile("movl (%1), %0 ;\n"
75 "1: adcl 16(%1), %0 ;\n"
86 /* Since the input registers which are loaded with iph and ihl
87 are modified, we must also specify them as outputs, or gcc
88 will assume they contain their original values. */
89 : "=r" (sum
), "=r" (iph
), "=r" (ihl
)
90 : "1" (iph
), "2" (ihl
)
92 return (__force __sum16
)sum
;
96 * Fold a partial checksum
99 static inline __sum16
csum_fold(__wsum sum
)
101 asm("addl %1, %0 ;\n"
102 "adcl $0xffff, %0 ;\n"
104 : "r" ((__force u32
)sum
<< 16),
105 "0" ((__force u32
)sum
& 0xffff0000));
106 return (__force __sum16
)(~(__force u32
)sum
>> 16);
109 static inline __wsum
csum_tcpudp_nofold(__be32 saddr
, __be32 daddr
,
110 __u32 len
, __u8 proto
,
113 asm("addl %1, %0 ;\n"
118 : "g" (daddr
), "g"(saddr
),
119 "g" ((len
+ proto
) << 8), "0" (sum
));
124 * computes the checksum of the TCP/UDP pseudo-header
125 * returns a 16-bit checksum, already complemented
127 static inline __sum16
csum_tcpudp_magic(__be32 saddr
, __be32 daddr
,
128 __u32 len
, __u8 proto
,
131 return csum_fold(csum_tcpudp_nofold(saddr
, daddr
, len
, proto
, sum
));
135 * this routine is used for miscellaneous IP-like checksums, mainly
139 static inline __sum16
ip_compute_csum(const void *buff
, int len
)
141 return csum_fold(csum_partial(buff
, len
, 0));
144 #define _HAVE_ARCH_IPV6_CSUM
145 static inline __sum16
csum_ipv6_magic(const struct in6_addr
*saddr
,
146 const struct in6_addr
*daddr
,
147 __u32 len
, __u8 proto
, __wsum sum
)
149 asm("addl 0(%1), %0 ;\n"
152 "adcl 12(%1), %0 ;\n"
156 "adcl 12(%2), %0 ;\n"
161 : "r" (saddr
), "r" (daddr
),
162 "r" (htonl(len
)), "r" (htonl(proto
)), "0" (sum
)
165 return csum_fold(sum
);
169 * Copy and checksum to user
171 static inline __wsum
csum_and_copy_to_user(const void *src
,
178 if (!user_access_begin(dst
, len
))
181 ret
= csum_partial_copy_generic(src
, (__force
void *)dst
, len
);
186 #endif /* _ASM_X86_CHECKSUM_32_H */