Skip to content

Commit 0ef38d7

Browse files
Mikulas Patockamattst88
authored andcommitted
alpha: fix broken network checksum
The patch 3ddc5b4 breaks networking on alpha (there is a follow-up fix 5cfe8f1, but networking is still broken even with the second patch). The patch 3ddc5b4 makes csum_partial_copy_from_user check the pointer with access_ok. However, csum_partial_copy_from_user is called also from csum_partial_copy_nocheck and csum_partial_copy_nocheck is called on kernel pointers and it is supposed not to check pointer validity. This bug results in ssh session hangs if the system is loaded and bulk data are printed to ssh terminal. This patch fixes csum_partial_copy_nocheck to call set_fs(KERNEL_DS), so that access_ok in csum_partial_copy_from_user accepts kernel-space addresses. Cc: stable@vger.kernel.org Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Signed-off-by: Matt Turner <mattst88@gmail.com>
1 parent a9302e8 commit 0ef38d7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

arch/alpha/lib/csum_partial_copy.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,11 @@ csum_partial_copy_from_user(const void __user *src, void *dst, int len,
378378
__wsum
379379
csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum)
380380
{
381-
return csum_partial_copy_from_user((__force const void __user *)src,
382-
dst, len, sum, NULL);
381+
__wsum checksum;
382+
mm_segment_t oldfs = get_fs();
383+
set_fs(KERNEL_DS);
384+
checksum = csum_partial_copy_from_user((__force const void __user *)src,
385+
dst, len, sum, NULL);
386+
set_fs(oldfs);
387+
return checksum;
383388
}

0 commit comments

Comments
 (0)