aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/lib/checksum_wrappers.c
blob: b895166afc8283b8f4dbbc753a17d331f10cff1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *
 * Copyright (C) IBM Corporation, 2010
 *
 * Author: Anton Blanchard <anton@au.ibm.com>
 */
#include <linux/export.h>
#include <linux/compiler.h>
#include <linux/types.h>
#include <asm/checksum.h>
#include <linux/uaccess.h>

__wsum csum_and_copy_from_user(const void __user *src, void *dst,
			       int len)
{
	__wsum csum;

	might_sleep();

	if (unlikely(!access_ok(src, len)))
		return 0;

	allow_read_from_user(src, len);

	csum = csum_partial_copy_generic((void __force *)src, dst, len);

	prevent_read_from_user(src, len);
	return csum;
}
EXPORT_SYMBOL(csum_and_copy_from_user);

__wsum csum_and_copy_to_user(const void *src, void __user *dst, int len)
{
	__wsum csum;

	might_sleep();
	if (unlikely(!access_ok(dst, len)))
		return 0;

	allow_write_to_user(dst, len);

	csum = csum_partial_copy_generic(src, (void __force *)dst, len);

	prevent_write_to_user(dst, len);
	return csum;
}
EXPORT_SYMBOL(csum_and_copy_to_user);