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>
11 * csum_partial_copy_from_user - Copy and checksum from user space.
12 * @src: source address (user space)
13 * @dst: destination address
14 * @len: number of bytes to be copied.
15 * @isum: initial sum that is added into the result (32bit unfolded)
16 * @errp: set to -EFAULT for an bad source address.
18 * Returns an 32bit unfolded checksum of the buffer.
19 * src and dst are best aligned to 64bits.
22 csum_partial_copy_from_user(const void __user
*src
, void *dst
,
23 int len
, __wsum isum
, int *errp
)
28 if (!likely(access_ok(VERIFY_READ
, src
, len
)))
32 * Why 6, not 7? To handle odd addresses aligned we
33 * would need to do considerable complications to fix the
34 * checksum which is defined as an 16bit accumulator. The
35 * fix alignment code is primarily for performance
36 * compatibility with 32bit and that will handle odd
37 * addresses slowly too.
39 if (unlikely((unsigned long)src
& 6)) {
40 while (((unsigned long)src
& 6) && len
>= 2) {
43 *errp
= __get_user(val16
, (const __u16 __user
*)src
);
47 *(__u16
*)dst
= val16
;
48 isum
= (__force __wsum
)add32_with_carry(
49 (__force
unsigned)isum
, val16
);
55 isum
= csum_partial_copy_generic((__force
const void *)src
,
56 dst
, len
, isum
, errp
, NULL
);
68 EXPORT_SYMBOL(csum_partial_copy_from_user
);
71 * csum_partial_copy_to_user - Copy and checksum to user space.
72 * @src: source address
73 * @dst: destination address (user space)
74 * @len: number of bytes to be copied.
75 * @isum: initial sum that is added into the result (32bit unfolded)
76 * @errp: set to -EFAULT for an bad destination address.
78 * Returns an 32bit unfolded checksum of the buffer.
79 * src and dst are best aligned to 64bits.
82 csum_partial_copy_to_user(const void *src
, void __user
*dst
,
83 int len
, __wsum isum
, int *errp
)
87 if (unlikely(!access_ok(VERIFY_WRITE
, dst
, len
))) {
92 if (unlikely((unsigned long)dst
& 6)) {
93 while (((unsigned long)dst
& 6) && len
>= 2) {
94 __u16 val16
= *(__u16
*)src
;
96 isum
= (__force __wsum
)add32_with_carry(
97 (__force
unsigned)isum
, val16
);
98 *errp
= __put_user(val16
, (__u16 __user
*)dst
);
108 return csum_partial_copy_generic(src
, (void __force
*)dst
,
109 len
, isum
, NULL
, errp
);
111 EXPORT_SYMBOL(csum_partial_copy_to_user
);
114 * csum_partial_copy_nocheck - Copy and checksum.
115 * @src: source address
116 * @dst: destination address
117 * @len: number of bytes to be copied.
118 * @sum: initial sum that is added into the result (32bit unfolded)
120 * Returns an 32bit unfolded checksum of the buffer.
123 csum_partial_copy_nocheck(const void *src
, void *dst
, int len
, __wsum sum
)
125 return csum_partial_copy_generic(src
, dst
, len
, sum
, NULL
, NULL
);
127 EXPORT_SYMBOL(csum_partial_copy_nocheck
);
129 __sum16
csum_ipv6_magic(const struct in6_addr
*saddr
,
130 const struct in6_addr
*daddr
,
131 __u32 len
, unsigned short proto
, __wsum sum
)
135 rest
= (__force __u64
)htonl(len
) + (__force __u64
)htons(proto
) +
138 asm(" addq (%[saddr]),%[sum]\n"
139 " adcq 8(%[saddr]),%[sum]\n"
140 " adcq (%[daddr]),%[sum]\n"
141 " adcq 8(%[daddr]),%[sum]\n"
145 : "[sum]" (rest
), [saddr
] "r" (saddr
), [daddr
] "r" (daddr
));
148 (__force __wsum
)add32_with_carry(sum64
& 0xffffffff, sum64
>>32));
150 EXPORT_SYMBOL(csum_ipv6_magic
);