2 * Copyright 2002, 2003 Andi Kleen, SuSE Labs.
3 * Subject to the GNU Public License v.2
5 * Wrappers of assembly checksum functions for x86-64.
7 #include <asm/checksum.h>
8 #include <linux/module.h>
12 * csum_partial_copy_from_user - Copy and checksum from user space.
13 * @src: source address (user space)
14 * @dst: destination address
15 * @len: number of bytes to be copied.
16 * @isum: initial sum that is added into the result (32bit unfolded)
17 * @errp: set to -EFAULT for an bad source address.
19 * Returns an 32bit unfolded checksum of the buffer.
20 * src and dst are best aligned to 64bits.
23 csum_partial_copy_from_user(const void __user
*src
, void *dst
,
24 int len
, __wsum isum
, int *errp
)
29 if (!likely(access_ok(VERIFY_READ
, src
, len
)))
33 * Why 6, not 7? To handle odd addresses aligned we
34 * would need to do considerable complications to fix the
35 * checksum which is defined as an 16bit accumulator. The
36 * fix alignment code is primarily for performance
37 * compatibility with 32bit and that will handle odd
38 * addresses slowly too.
40 if (unlikely((unsigned long)src
& 6)) {
41 while (((unsigned long)src
& 6) && len
>= 2) {
44 *errp
= __get_user(val16
, (const __u16 __user
*)src
);
48 *(__u16
*)dst
= val16
;
49 isum
= (__force __wsum
)add32_with_carry(
50 (__force
unsigned)isum
, val16
);
57 isum
= csum_partial_copy_generic((__force
const void *)src
,
58 dst
, len
, isum
, errp
, NULL
);
71 EXPORT_SYMBOL(csum_partial_copy_from_user
);
74 * csum_partial_copy_to_user - Copy and checksum to user space.
75 * @src: source address
76 * @dst: destination address (user space)
77 * @len: number of bytes to be copied.
78 * @isum: initial sum that is added into the result (32bit unfolded)
79 * @errp: set to -EFAULT for an bad destination address.
81 * Returns an 32bit unfolded checksum of the buffer.
82 * src and dst are best aligned to 64bits.
85 csum_partial_copy_to_user(const void *src
, void __user
*dst
,
86 int len
, __wsum isum
, int *errp
)
92 if (unlikely(!access_ok(VERIFY_WRITE
, dst
, len
))) {
97 if (unlikely((unsigned long)dst
& 6)) {
98 while (((unsigned long)dst
& 6) && len
>= 2) {
99 __u16 val16
= *(__u16
*)src
;
101 isum
= (__force __wsum
)add32_with_carry(
102 (__force
unsigned)isum
, val16
);
103 *errp
= __put_user(val16
, (__u16 __user
*)dst
);
114 ret
= csum_partial_copy_generic(src
, (void __force
*)dst
,
115 len
, isum
, NULL
, errp
);
119 EXPORT_SYMBOL(csum_partial_copy_to_user
);
122 * csum_partial_copy_nocheck - Copy and checksum.
123 * @src: source address
124 * @dst: destination address
125 * @len: number of bytes to be copied.
126 * @sum: initial sum that is added into the result (32bit unfolded)
128 * Returns an 32bit unfolded checksum of the buffer.
131 csum_partial_copy_nocheck(const void *src
, void *dst
, int len
, __wsum sum
)
133 return csum_partial_copy_generic(src
, dst
, len
, sum
, NULL
, NULL
);
135 EXPORT_SYMBOL(csum_partial_copy_nocheck
);
137 __sum16
csum_ipv6_magic(const struct in6_addr
*saddr
,
138 const struct in6_addr
*daddr
,
139 __u32 len
, unsigned short proto
, __wsum sum
)
143 rest
= (__force __u64
)htonl(len
) + (__force __u64
)htons(proto
) +
146 asm(" addq (%[saddr]),%[sum]\n"
147 " adcq 8(%[saddr]),%[sum]\n"
148 " adcq (%[daddr]),%[sum]\n"
149 " adcq 8(%[daddr]),%[sum]\n"
153 : "[sum]" (rest
), [saddr
] "r" (saddr
), [daddr
] "r" (daddr
));
156 (__force __wsum
)add32_with_carry(sum64
& 0xffffffff, sum64
>>32));
158 EXPORT_SYMBOL(csum_ipv6_magic
);