mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
There are no remaining callers of set_fs(), so CONFIG_SET_FS can be removed globally, along with the thread_info field and any references to it. This turns access_ok() into a cheaper check against TASK_SIZE_MAX. As CONFIG_SET_FS is now gone, drop all remaining references to set_fs()/get_fs(), mm_segment_t, user_addr_max() and uaccess_kernel(). Acked-by: Sam Ravnborg <sam@ravnborg.org> # for sparc32 changes Acked-by: "Eric W. Biederman" <ebiederm@xmission.com> Tested-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com> # for arc changes Acked-by: Stafford Horne <shorne@gmail.com> # [openrisc, asm-generic] Acked-by: Dinh Nguyen <dinguyen@kernel.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
57 lines
1.5 KiB
C
57 lines
1.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Optimized memory copy routines.
|
|
*
|
|
* Copyright (C) 2004 Randolph Chung <tausq@debian.org>
|
|
* Copyright (C) 2013-2017 Helge Deller <deller@gmx.de>
|
|
*
|
|
* Portions derived from the GNU C Library
|
|
* Copyright (C) 1991, 1997, 2003 Free Software Foundation, Inc.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/compiler.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#define get_user_space() (mfsp(3))
|
|
#define get_kernel_space() (0)
|
|
|
|
/* Returns 0 for success, otherwise, returns number of bytes not transferred. */
|
|
extern unsigned long pa_memcpy(void *dst, const void *src,
|
|
unsigned long len);
|
|
|
|
unsigned long raw_copy_to_user(void __user *dst, const void *src,
|
|
unsigned long len)
|
|
{
|
|
mtsp(get_kernel_space(), 1);
|
|
mtsp(get_user_space(), 2);
|
|
return pa_memcpy((void __force *)dst, src, len);
|
|
}
|
|
EXPORT_SYMBOL(raw_copy_to_user);
|
|
|
|
unsigned long raw_copy_from_user(void *dst, const void __user *src,
|
|
unsigned long len)
|
|
{
|
|
mtsp(get_user_space(), 1);
|
|
mtsp(get_kernel_space(), 2);
|
|
return pa_memcpy(dst, (void __force *)src, len);
|
|
}
|
|
EXPORT_SYMBOL(raw_copy_from_user);
|
|
|
|
void * memcpy(void * dst,const void *src, size_t count)
|
|
{
|
|
mtsp(get_kernel_space(), 1);
|
|
mtsp(get_kernel_space(), 2);
|
|
pa_memcpy(dst, src, count);
|
|
return dst;
|
|
}
|
|
|
|
EXPORT_SYMBOL(memcpy);
|
|
|
|
bool copy_from_kernel_nofault_allowed(const void *unsafe_src, size_t size)
|
|
{
|
|
if ((unsigned long)unsafe_src < PAGE_SIZE)
|
|
return false;
|
|
/* check for I/O space F_EXTEND(0xfff00000) access as well? */
|
|
return true;
|
|
}
|