2019-05-29 01:10:25 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2008-02-17 23:48:25 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2002, 2003 Andi Kleen, SuSE Labs.
|
2008-02-17 21:56:50 +08:00
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Wrappers of assembly checksum functions for x86-64.
|
|
|
|
*/
|
|
|
|
#include <asm/checksum.h>
|
2016-07-14 08:18:57 +08:00
|
|
|
#include <linux/export.h>
|
2016-07-15 04:22:57 +08:00
|
|
|
#include <linux/uaccess.h>
|
2013-08-31 06:43:03 +08:00
|
|
|
#include <asm/smap.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-02-17 21:56:50 +08:00
|
|
|
/**
|
2020-02-17 05:50:00 +08:00
|
|
|
* csum_and_copy_from_user - Copy and checksum from user space.
|
2008-02-17 21:56:50 +08:00
|
|
|
* @src: source address (user space)
|
2005-04-17 06:20:36 +08:00
|
|
|
* @dst: destination address
|
|
|
|
* @len: number of bytes to be copied.
|
|
|
|
* @isum: initial sum that is added into the result (32bit unfolded)
|
|
|
|
* @errp: set to -EFAULT for an bad source address.
|
2008-02-17 21:56:50 +08:00
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Returns an 32bit unfolded checksum of the buffer.
|
2008-02-17 21:56:50 +08:00
|
|
|
* src and dst are best aligned to 64bits.
|
|
|
|
*/
|
2006-11-15 13:20:08 +08:00
|
|
|
__wsum
|
2020-07-20 09:56:07 +08:00
|
|
|
csum_and_copy_from_user(const void __user *src, void *dst, int len)
|
2008-02-17 21:56:50 +08:00
|
|
|
{
|
2020-07-20 09:56:07 +08:00
|
|
|
__wsum sum;
|
2020-07-11 12:27:49 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
might_sleep();
|
2020-02-17 03:56:36 +08:00
|
|
|
if (!user_access_begin(src, len))
|
2020-07-11 12:27:49 +08:00
|
|
|
return 0;
|
2020-07-20 09:56:07 +08:00
|
|
|
sum = csum_partial_copy_generic((__force const void *)src, dst, len);
|
2020-02-17 03:56:36 +08:00
|
|
|
user_access_end();
|
2020-07-20 09:56:07 +08:00
|
|
|
return sum;
|
2008-02-17 21:56:50 +08:00
|
|
|
}
|
2020-02-17 05:50:00 +08:00
|
|
|
EXPORT_SYMBOL(csum_and_copy_from_user);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-02-17 21:56:50 +08:00
|
|
|
/**
|
2020-03-20 01:19:34 +08:00
|
|
|
* csum_and_copy_to_user - Copy and checksum to user space.
|
2005-04-17 06:20:36 +08:00
|
|
|
* @src: source address
|
|
|
|
* @dst: destination address (user space)
|
|
|
|
* @len: number of bytes to be copied.
|
|
|
|
* @isum: initial sum that is added into the result (32bit unfolded)
|
|
|
|
* @errp: set to -EFAULT for an bad destination address.
|
2008-02-17 21:56:50 +08:00
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Returns an 32bit unfolded checksum of the buffer.
|
|
|
|
* src and dst are best aligned to 64bits.
|
2008-02-17 21:56:50 +08:00
|
|
|
*/
|
2006-11-15 13:20:08 +08:00
|
|
|
__wsum
|
2020-07-20 09:56:07 +08:00
|
|
|
csum_and_copy_to_user(const void *src, void __user *dst, int len)
|
2008-02-17 21:56:50 +08:00
|
|
|
{
|
2020-07-20 09:56:07 +08:00
|
|
|
__wsum sum;
|
2013-08-31 06:43:03 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
might_sleep();
|
2020-07-11 12:27:49 +08:00
|
|
|
if (!user_access_begin(dst, len))
|
2008-02-17 21:56:50 +08:00
|
|
|
return 0;
|
2020-07-20 09:56:07 +08:00
|
|
|
sum = csum_partial_copy_generic(src, (void __force *)dst, len);
|
2020-02-17 03:56:36 +08:00
|
|
|
user_access_end();
|
2020-07-20 09:56:07 +08:00
|
|
|
return sum;
|
2008-02-17 21:56:50 +08:00
|
|
|
}
|
2020-03-20 01:19:34 +08:00
|
|
|
EXPORT_SYMBOL(csum_and_copy_to_user);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-02-17 21:56:50 +08:00
|
|
|
/**
|
2005-04-17 06:20:36 +08:00
|
|
|
* csum_partial_copy_nocheck - Copy and checksum.
|
|
|
|
* @src: source address
|
|
|
|
* @dst: destination address
|
|
|
|
* @len: number of bytes to be copied.
|
2012-06-12 12:53:21 +08:00
|
|
|
* @sum: initial sum that is added into the result (32bit unfolded)
|
2008-02-17 21:56:50 +08:00
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Returns an 32bit unfolded checksum of the buffer.
|
2008-02-17 21:56:50 +08:00
|
|
|
*/
|
2006-11-15 13:20:08 +08:00
|
|
|
__wsum
|
2020-07-11 12:12:07 +08:00
|
|
|
csum_partial_copy_nocheck(const void *src, void *dst, int len)
|
2008-02-17 21:56:50 +08:00
|
|
|
{
|
2020-07-20 09:56:07 +08:00
|
|
|
return csum_partial_copy_generic(src, dst, len);
|
2008-02-17 21:56:50 +08:00
|
|
|
}
|
2006-06-26 19:59:44 +08:00
|
|
|
EXPORT_SYMBOL(csum_partial_copy_nocheck);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-11-15 13:20:08 +08:00
|
|
|
__sum16 csum_ipv6_magic(const struct in6_addr *saddr,
|
|
|
|
const struct in6_addr *daddr,
|
2016-03-12 06:05:41 +08:00
|
|
|
__u32 len, __u8 proto, __wsum sum)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
__u64 rest, sum64;
|
2008-02-17 21:56:50 +08:00
|
|
|
|
2006-11-15 13:20:08 +08:00
|
|
|
rest = (__force __u64)htonl(len) + (__force __u64)htons(proto) +
|
|
|
|
(__force __u64)sum;
|
2008-02-17 23:48:25 +08:00
|
|
|
|
|
|
|
asm(" addq (%[saddr]),%[sum]\n"
|
|
|
|
" adcq 8(%[saddr]),%[sum]\n"
|
|
|
|
" adcq (%[daddr]),%[sum]\n"
|
|
|
|
" adcq 8(%[daddr]),%[sum]\n"
|
|
|
|
" adcq $0,%[sum]\n"
|
|
|
|
|
2008-02-17 21:56:50 +08:00
|
|
|
: [sum] "=r" (sum64)
|
|
|
|
: "[sum]" (rest), [saddr] "r" (saddr), [daddr] "r" (daddr));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-02-17 23:48:25 +08:00
|
|
|
return csum_fold(
|
|
|
|
(__force __wsum)add32_with_carry(sum64 & 0xffffffff, sum64>>32));
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
EXPORT_SYMBOL(csum_ipv6_magic);
|