2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 * Copyright (C) IBM Corporation, 2010
18 * Author: Anton Blanchard <anton@au.ibm.com>
20 #include <linux/export.h>
21 #include <linux/compiler.h>
22 #include <linux/types.h>
23 #include <asm/checksum.h>
24 #include <asm/uaccess.h>
26 __wsum
csum_and_copy_from_user(const void __user
*src
, void *dst
,
27 int len
, __wsum sum
, int *err_ptr
)
40 if (unlikely((len
< 0) || !access_ok(VERIFY_READ
, src
, len
))) {
42 csum
= (__force
unsigned int)sum
;
46 csum
= csum_partial_copy_generic((void __force
*)src
, dst
,
47 len
, sum
, err_ptr
, NULL
);
49 if (unlikely(*err_ptr
)) {
50 int missing
= __copy_from_user(dst
, src
, len
);
53 memset(dst
+ len
- missing
, 0, missing
);
59 csum
= csum_partial(dst
, len
, sum
);
63 return (__force __wsum
)csum
;
65 EXPORT_SYMBOL(csum_and_copy_from_user
);
67 __wsum
csum_and_copy_to_user(const void *src
, void __user
*dst
, int len
,
68 __wsum sum
, int *err_ptr
)
81 if (unlikely((len
< 0) || !access_ok(VERIFY_WRITE
, dst
, len
))) {
83 csum
= -1; /* invalid checksum */
87 csum
= csum_partial_copy_generic(src
, (void __force
*)dst
,
88 len
, sum
, NULL
, err_ptr
);
90 if (unlikely(*err_ptr
)) {
91 csum
= csum_partial(src
, len
, sum
);
93 if (copy_to_user(dst
, src
, len
)) {
95 csum
= -1; /* invalid checksum */
100 return (__force __wsum
)csum
;
102 EXPORT_SYMBOL(csum_and_copy_to_user
);