Skip to content

Commit

Permalink
maccess: always use strict semantics for probe_kernel_read
Browse files Browse the repository at this point in the history
Except for historical confusion in the kprobes/uprobes and bpf tracers,
which has been fixed now, there is no good reason to ever allow user
memory accesses from probe_kernel_read.  Switch probe_kernel_read to only
read from kernel memory.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Christoph Hellwig <[email protected]>
Cc: Alexei Starovoitov <[email protected]>
Cc: Daniel Borkmann <[email protected]>
Cc: "H. Peter Anvin" <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Masami Hiramatsu <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Stephen Rothwell <[email protected]>
  • Loading branch information
Christoph Hellwig authored and sfrothwell committed Jun 5, 2020
1 parent 3429f18 commit 970e493
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 49 deletions.
2 changes: 1 addition & 1 deletion arch/parisc/lib/memcpy.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void * memcpy(void * dst,const void *src, size_t count)
EXPORT_SYMBOL(raw_copy_in_user);
EXPORT_SYMBOL(memcpy);

bool probe_kernel_read_allowed(const void *unsafe_src, size_t size, bool strict)
bool probe_kernel_read_allowed(const void *unsafe_src, size_t size)
{
if ((unsigned long)unsafe_src < PAGE_SIZE)
return false;
Expand Down
2 changes: 1 addition & 1 deletion arch/um/kernel/maccess.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <linux/kernel.h>
#include <os.h>

bool probe_kernel_read_allowed(const void *src, size_t size, bool strict)
bool probe_kernel_read_allowed(const void *src, size_t size)
{
void *psrc = (void *)rounddown((unsigned long)src, PAGE_SIZE);

Expand Down
9 changes: 2 additions & 7 deletions arch/x86/mm/maccess.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,10 @@ static __always_inline u64 canonical_address(u64 vaddr, u8 vaddr_bits)
return ((s64)vaddr << (64 - vaddr_bits)) >> (64 - vaddr_bits);
}

bool probe_kernel_read_allowed(const void *unsafe_src, size_t size, bool strict)
bool probe_kernel_read_allowed(const void *unsafe_src, size_t size)
{
unsigned long vaddr = (unsigned long)unsafe_src;

if (!strict)
return true;

/*
* Range covering the highest possible canonical userspace address
* as well as non-canonical address range. For the canonical range
Expand All @@ -25,10 +22,8 @@ bool probe_kernel_read_allowed(const void *unsafe_src, size_t size, bool strict)
canonical_address(vaddr, boot_cpu_data.x86_virt_bits) == vaddr;
}
#else
bool probe_kernel_read_allowed(const void *unsafe_src, size_t size, bool strict)
bool probe_kernel_read_allowed(const void *unsafe_src, size_t size)
{
if (!strict)
return true;
return (unsigned long)unsafe_src >= TASK_SIZE_MAX;
}
#endif
4 changes: 1 addition & 3 deletions include/linux/uaccess.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,9 @@ copy_struct_from_user(void *dst, size_t ksize, const void __user *src,
return 0;
}

bool probe_kernel_read_allowed(const void *unsafe_src, size_t size,
bool strict);
bool probe_kernel_read_allowed(const void *unsafe_src, size_t size);

extern long probe_kernel_read(void *dst, const void *src, size_t size);
extern long probe_kernel_read_strict(void *dst, const void *src, size_t size);
extern long probe_user_read(void *dst, const void __user *src, size_t size);

extern long notrace probe_kernel_write(void *dst, const void *src, size_t size);
Expand Down
2 changes: 1 addition & 1 deletion kernel/trace/bpf_trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ bpf_probe_read_kernel_common(void *dst, u32 size, const void *unsafe_ptr)

if (unlikely(ret < 0))
goto fail;
ret = probe_kernel_read_strict(dst, unsafe_ptr, size);
ret = probe_kernel_read(dst, unsafe_ptr, size);
if (unlikely(ret < 0))
goto fail;
return ret;
Expand Down
4 changes: 2 additions & 2 deletions kernel/trace/trace_kprobe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,7 @@ fetch_store_strlen(unsigned long addr)
#endif

do {
ret = probe_kernel_read_strict(&c, (u8 *)addr + len, 1);
ret = probe_kernel_read(&c, (u8 *)addr + len, 1);
len++;
} while (c && ret == 0 && len < MAX_STRING_SIZE);

Expand Down Expand Up @@ -1300,7 +1300,7 @@ probe_mem_read(void *dest, void *src, size_t size)
if ((unsigned long)src < TASK_SIZE)
return probe_mem_read_user(dest, src, size);
#endif
return probe_kernel_read_strict(dest, src, size);
return probe_kernel_read(dest, src, size);
}

/* Note that we don't verify it, since the code does not come from user space */
Expand Down
40 changes: 6 additions & 34 deletions mm/maccess.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,36 +6,13 @@
#include <linux/mm.h>
#include <linux/uaccess.h>

static long __probe_kernel_read(void *dst, const void *src, size_t size,
bool strict);

bool __weak probe_kernel_read_allowed(const void *unsafe_src, size_t size,
bool strict)
bool __weak probe_kernel_read_allowed(const void *unsafe_src, size_t size)
{
return true;
}

/**
* probe_kernel_read(): safely attempt to read from any location
* @dst: pointer to the buffer that shall take the data
* @src: address to read from
* @size: size of the data chunk
*
* Same as probe_kernel_read_strict() except that for architectures with
* not fully separated user and kernel address spaces this function also works
* for user address tanges.
*
* DO NOT USE THIS FUNCTION - it is broken on architectures with entirely
* separate kernel and user address spaces, and also a bad idea otherwise.
*/
long probe_kernel_read(void *dst, const void *src, size_t size)
{
return __probe_kernel_read(dst, src, size, false);
}
EXPORT_SYMBOL_GPL(probe_kernel_read);

/**
* probe_kernel_read_strict(): safely attempt to read from kernel-space
* probe_kernel_read(): safely attempt to read from kernel-space
* @dst: pointer to the buffer that shall take the data
* @src: address to read from
* @size: size of the data chunk
Expand All @@ -48,18 +25,12 @@ EXPORT_SYMBOL_GPL(probe_kernel_read);
* probe_kernel_read() suitable for use within regions where the caller
* already holds mmap_lock, or other locks which nest inside mmap_lock.
*/
long probe_kernel_read_strict(void *dst, const void *src, size_t size)
{
return __probe_kernel_read(dst, src, size, true);
}

static long __probe_kernel_read(void *dst, const void *src, size_t size,
bool strict)
long probe_kernel_read(void *dst, const void *src, size_t size)
{
long ret;
mm_segment_t old_fs = get_fs();

if (!probe_kernel_read_allowed(src, size, strict))
if (!probe_kernel_read_allowed(src, size))
return -EFAULT;

set_fs(KERNEL_DS);
Expand All @@ -73,6 +44,7 @@ static long __probe_kernel_read(void *dst, const void *src, size_t size,
return -EFAULT;
return 0;
}
EXPORT_SYMBOL_GPL(probe_kernel_read);

/**
* probe_user_read(): safely attempt to read from a user-space location
Expand Down Expand Up @@ -180,7 +152,7 @@ long strncpy_from_kernel_nofault(char *dst, const void *unsafe_addr, long count)

if (unlikely(count <= 0))
return 0;
if (!probe_kernel_read_allowed(unsafe_addr, count, true))
if (!probe_kernel_read_allowed(unsafe_addr, count))
return -EFAULT;

set_fs(KERNEL_DS);
Expand Down

0 comments on commit 970e493

Please sign in to comment.