Commit 2ded0980 authored by Oleg Nesterov's avatar Oleg Nesterov

uprobes: Fix the memory out of bound overwrite in copy_insn()

1. copy_insn() doesn't look very nice, all calculations are
   confusing and it is not immediately clear why do we read
   the 2nd page first.

2. The usage of inode->i_size is wrong on 32-bit machines.

3. "Instruction at end of binary" logic is simply wrong, it
   doesn't handle the case when uprobe->offset > inode->i_size.

   In this case "bytes" overflows, and __copy_insn() writes to
   the memory outside of uprobe->arch.insn.

   Yes, uprobe_register() checks i_size_read(), but this file
   can be truncated after that. All i_size checks are racy, we
   do this only to catch the obvious mistakes.

Change copy_insn() to call __copy_insn() in a loop, simplify
and fix the bytes/nbytes calculations.

Note: we do not care if we read extra bytes after inode->i_size
if we got the valid page. This is fine because the task gets the
same page after page-fault, and arch_uprobe_analyze_insn() can't
know how many bytes were actually read anyway.
Signed-off-by: default avatarOleg Nesterov <oleg@redhat.com>
parent 70d7f987
...@@ -504,9 +504,8 @@ static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc) ...@@ -504,9 +504,8 @@ static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
return ret; return ret;
} }
static int static int __copy_insn(struct address_space *mapping, struct file *filp,
__copy_insn(struct address_space *mapping, struct file *filp, char *insn, void *insn, int nbytes, loff_t offset)
unsigned long nbytes, loff_t offset)
{ {
struct page *page; struct page *page;
...@@ -528,28 +527,28 @@ __copy_insn(struct address_space *mapping, struct file *filp, char *insn, ...@@ -528,28 +527,28 @@ __copy_insn(struct address_space *mapping, struct file *filp, char *insn,
static int copy_insn(struct uprobe *uprobe, struct file *filp) static int copy_insn(struct uprobe *uprobe, struct file *filp)
{ {
struct address_space *mapping; struct address_space *mapping = uprobe->inode->i_mapping;
unsigned long nbytes; loff_t offs = uprobe->offset;
int bytes; void *insn = uprobe->arch.insn;
int size = MAX_UINSN_BYTES;
nbytes = PAGE_SIZE - (uprobe->offset & ~PAGE_MASK); int len, err = -EIO;
mapping = uprobe->inode->i_mapping;
/* Instruction at end of binary; copy only available bytes */ /* Copy only available bytes, -EIO if nothing was read */
if (uprobe->offset + MAX_UINSN_BYTES > uprobe->inode->i_size) do {
bytes = uprobe->inode->i_size - uprobe->offset; if (offs >= i_size_read(uprobe->inode))
else break;
bytes = MAX_UINSN_BYTES;
/* Instruction at the page-boundary; copy bytes in second page */ len = min_t(int, size, PAGE_SIZE - (offs & ~PAGE_MASK));
if (nbytes < bytes) { err = __copy_insn(mapping, filp, insn, len, offs);
int err = __copy_insn(mapping, filp, uprobe->arch.insn + nbytes,
bytes - nbytes, uprobe->offset + nbytes);
if (err) if (err)
return err; break;
bytes = nbytes;
} insn += len;
return __copy_insn(mapping, filp, uprobe->arch.insn, bytes, uprobe->offset); offs += len;
size -= len;
} while (size);
return err;
} }
static int prepare_uprobe(struct uprobe *uprobe, struct file *file, static int prepare_uprobe(struct uprobe *uprobe, struct file *file,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment