1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_SH_CHECKSUM_H
3 #define __ASM_SH_CHECKSUM_H
6 * Copyright (C) 1999 by Kaz Kojima & Niibe Yutaka
12 * computes the checksum of a memory block at buff, length len,
13 * and adds in "sum" (32-bit)
15 * returns a 32-bit number suitable for feeding into itself
16 * or csum_tcpudp_magic
18 * this function must be called with even lengths, except
19 * for the last fragment, which may be odd
21 * it's best to have buff aligned on a 32-bit boundary
23 asmlinkage __wsum
csum_partial(const void *buff
, int len
, __wsum sum
);
26 * the same as csum_partial, but copies from src while it
27 * checksums, and handles user-space pointer exceptions correctly, when needed.
29 * here even more important to align src and dst on a 32-bit (or even
30 * better 64-bit) boundary
33 asmlinkage __wsum
csum_partial_copy_generic(const void *src
, void *dst
, int len
);
35 #define _HAVE_ARCH_CSUM_AND_COPY
37 * Note: when you get a NULL pointer exception here this means someone
38 * passed in an incorrect kernel address to one of these functions.
40 * If you use these functions directly please don't forget the
44 __wsum
csum_partial_copy_nocheck(const void *src
, void *dst
, int len
)
46 return csum_partial_copy_generic(src
, dst
, len
);
49 #define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
51 __wsum
csum_and_copy_from_user(const void __user
*src
, void *dst
, int len
)
53 if (!access_ok(src
, len
))
55 return csum_partial_copy_generic((__force
const void *)src
, dst
, len
);
59 * Fold a partial checksum
62 static inline __sum16
csum_fold(__wsum sum
)
65 __asm__("swap.w %0, %1\n\t"
72 : "=r" (sum
), "=&r" (__dummy
)
75 return (__force __sum16
)sum
;
79 * This is a version of ip_compute_csum() optimized for IP headers,
80 * which always checksum on 4 octet boundaries.
82 * i386 version by Jorge Cwik <jorge@laser.satlink.net>, adapted
83 * for linux by * Arnt Gulbrandsen.
85 static inline __sum16
ip_fast_csum(const void *iph
, unsigned int ihl
)
87 unsigned int sum
, __dummy0
, __dummy1
;
102 "addc %2, %0" /* Here %2 is 0, add carry-bit */
103 /* Since the input registers which are loaded with iph and ihl
104 are modified, we must also specify them as outputs, or gcc
105 will assume they contain their original values. */
106 : "=r" (sum
), "=r" (iph
), "=r" (ihl
), "=&r" (__dummy0
), "=&z" (__dummy1
)
107 : "1" (iph
), "2" (ihl
)
110 return csum_fold(sum
);
113 static inline __wsum
csum_tcpudp_nofold(__be32 saddr
, __be32 daddr
,
114 __u32 len
, __u8 proto
,
117 #ifdef __LITTLE_ENDIAN__
118 unsigned long len_proto
= (proto
+ len
) << 8;
120 unsigned long len_proto
= proto
+ len
;
128 : "=r" (sum
), "=r" (len_proto
)
129 : "r" (daddr
), "r" (saddr
), "1" (len_proto
), "0" (sum
)
136 * computes the checksum of the TCP/UDP pseudo-header
137 * returns a 16-bit checksum, already complemented
139 static inline __sum16
csum_tcpudp_magic(__be32 saddr
, __be32 daddr
,
140 __u32 len
, __u8 proto
,
143 return csum_fold(csum_tcpudp_nofold(saddr
, daddr
, len
, proto
, sum
));
147 * this routine is used for miscellaneous IP-like checksums, mainly
150 static inline __sum16
ip_compute_csum(const void *buff
, int len
)
152 return csum_fold(csum_partial(buff
, len
, 0));
155 #define _HAVE_ARCH_IPV6_CSUM
156 static inline __sum16
csum_ipv6_magic(const struct in6_addr
*saddr
,
157 const struct in6_addr
*daddr
,
158 __u32 len
, __u8 proto
, __wsum sum
)
160 unsigned int __dummy
;
162 "mov.l @(0,%2), %1\n\t"
164 "mov.l @(4,%2), %1\n\t"
166 "mov.l @(8,%2), %1\n\t"
168 "mov.l @(12,%2), %1\n\t"
170 "mov.l @(0,%3), %1\n\t"
172 "mov.l @(4,%3), %1\n\t"
174 "mov.l @(8,%3), %1\n\t"
176 "mov.l @(12,%3), %1\n\t"
182 : "=r" (sum
), "=&r" (__dummy
)
183 : "r" (saddr
), "r" (daddr
),
184 "r" (htonl(len
)), "r" (htonl(proto
)), "0" (sum
)
187 return csum_fold(sum
);
191 * Copy and checksum to user
193 #define HAVE_CSUM_COPY_USER
194 static inline __wsum
csum_and_copy_to_user(const void *src
,
198 if (!access_ok(dst
, len
))
200 return csum_partial_copy_generic((__force
const void *)src
, dst
, len
);
202 #endif /* __ASM_SH_CHECKSUM_H */