blob: c3b65d1c8443e28b79c547ec4364abc4b4628b40 [file] [log] [blame]
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01002 * User-space Probes (UProbes)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05303 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
Ingo Molnar35aa6212012-02-22 11:37:29 +010018 * Copyright (C) IBM Corporation, 2008-2012
Srikar Dronamraju2b144492012-02-09 14:56:42 +053019 * Authors:
20 * Srikar Dronamraju
21 * Jim Keniston
Ingo Molnar35aa6212012-02-22 11:37:29 +010022 * Copyright (C) 2011-2012 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Srikar Dronamraju2b144492012-02-09 14:56:42 +053023 */
24
25#include <linux/kernel.h>
26#include <linux/highmem.h>
27#include <linux/pagemap.h> /* read_mapping_page */
28#include <linux/slab.h>
29#include <linux/sched.h>
30#include <linux/rmap.h> /* anon_vma_prepare */
31#include <linux/mmu_notifier.h> /* set_pte_at_notify */
32#include <linux/swap.h> /* try_to_free_swap */
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +053033#include <linux/ptrace.h> /* user_enable_single_step */
34#include <linux/kdebug.h> /* notifier mechanism */
Oleg Nesterov194f8dc2012-07-29 20:22:49 +020035#include "../../mm/internal.h" /* munlock_vma_page */
Oleg Nesterov32cdba12012-11-14 19:03:42 +010036#include <linux/percpu-rwsem.h>
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010037
Srikar Dronamraju2b144492012-02-09 14:56:42 +053038#include <linux/uprobes.h>
39
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +053040#define UINSNS_PER_PAGE (PAGE_SIZE/UPROBE_XOL_SLOT_BYTES)
41#define MAX_UPROBE_XOL_SLOTS UINSNS_PER_PAGE
42
Srikar Dronamraju2b144492012-02-09 14:56:42 +053043static struct rb_root uprobes_tree = RB_ROOT;
Oleg Nesterov441f1eb2012-11-25 19:54:29 +010044/*
45 * allows us to skip the uprobe_mmap if there are no uprobe events active
46 * at this time. Probably a fine grained per inode count is better?
47 */
48#define no_uprobe_events() RB_EMPTY_ROOT(&uprobes_tree)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010049
Srikar Dronamraju2b144492012-02-09 14:56:42 +053050static DEFINE_SPINLOCK(uprobes_treelock); /* serialize rbtree access */
51
52#define UPROBES_HASH_SZ 13
Srikar Dronamraju2b144492012-02-09 14:56:42 +053053/* serialize uprobe->pending_list */
54static struct mutex uprobes_mmap_mutex[UPROBES_HASH_SZ];
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010055#define uprobes_mmap_hash(v) (&uprobes_mmap_mutex[((unsigned long)(v)) % UPROBES_HASH_SZ])
Srikar Dronamraju2b144492012-02-09 14:56:42 +053056
Oleg Nesterov32cdba12012-11-14 19:03:42 +010057static struct percpu_rw_semaphore dup_mmap_sem;
58
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020059/* Have a copy of original instruction */
Oleg Nesterov71434f22012-09-30 21:12:44 +020060#define UPROBE_COPY_INSN 0
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020061/* Can skip singlestep */
Oleg Nesterovbb929282012-11-24 18:27:08 +010062#define UPROBE_SKIP_SSTEP 1
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020063
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053064struct uprobe {
65 struct rb_node rb_node; /* node in the rb tree */
66 atomic_t ref;
Oleg Nesterove591c8d2012-11-24 17:29:40 +010067 struct rw_semaphore register_rwsem;
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053068 struct rw_semaphore consumer_rwsem;
69 struct list_head pending_list;
70 struct uprobe_consumer *consumers;
71 struct inode *inode; /* Also hold a ref to inode */
72 loff_t offset;
Oleg Nesterov71434f22012-09-30 21:12:44 +020073 unsigned long flags;
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053074 struct arch_uprobe arch;
75};
76
Srikar Dronamraju2b144492012-02-09 14:56:42 +053077/*
78 * valid_vma: Verify if the specified vma is an executable vma
79 * Relax restrictions while unregistering: vm_flags might have
80 * changed after breakpoint was inserted.
81 * - is_register: indicates if we are in register context.
82 * - Return 1 if the specified virtual address is in an
83 * executable vma.
84 */
85static bool valid_vma(struct vm_area_struct *vma, bool is_register)
86{
Oleg Nesterove40cfce2012-09-16 19:31:39 +020087 vm_flags_t flags = VM_HUGETLB | VM_MAYEXEC | VM_SHARED;
Srikar Dronamraju2b144492012-02-09 14:56:42 +053088
Oleg Nesterove40cfce2012-09-16 19:31:39 +020089 if (is_register)
90 flags |= VM_WRITE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +053091
Oleg Nesterove40cfce2012-09-16 19:31:39 +020092 return vma->vm_file && (vma->vm_flags & flags) == VM_MAYEXEC;
Srikar Dronamraju2b144492012-02-09 14:56:42 +053093}
94
Oleg Nesterov57683f72012-07-29 20:22:47 +020095static unsigned long offset_to_vaddr(struct vm_area_struct *vma, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +053096{
Oleg Nesterov57683f72012-07-29 20:22:47 +020097 return vma->vm_start + offset - ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +053098}
99
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200100static loff_t vaddr_to_offset(struct vm_area_struct *vma, unsigned long vaddr)
101{
102 return ((loff_t)vma->vm_pgoff << PAGE_SHIFT) + (vaddr - vma->vm_start);
103}
104
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530105/**
106 * __replace_page - replace page in vma by new page.
107 * based on replace_page in mm/ksm.c
108 *
109 * @vma: vma that holds the pte pointing to page
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200110 * @addr: address the old @page is mapped at
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530111 * @page: the cowed page we are replacing by kpage
112 * @kpage: the modified page we replace page by
113 *
114 * Returns 0 on success, -EFAULT on failure.
115 */
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200116static int __replace_page(struct vm_area_struct *vma, unsigned long addr,
117 struct page *page, struct page *kpage)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530118{
119 struct mm_struct *mm = vma->vm_mm;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200120 spinlock_t *ptl;
121 pte_t *ptep;
Oleg Nesterov9f924482012-07-29 20:22:20 +0200122 int err;
Haggai Eran6bdb9132012-10-08 16:33:35 -0700123 /* For mmu_notifiers */
124 const unsigned long mmun_start = addr;
125 const unsigned long mmun_end = addr + PAGE_SIZE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530126
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200127 /* For try_to_free_swap() and munlock_vma_page() below */
Oleg Nesterov9f924482012-07-29 20:22:20 +0200128 lock_page(page);
129
Haggai Eran6bdb9132012-10-08 16:33:35 -0700130 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200131 err = -EAGAIN;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200132 ptep = page_check_address(page, mm, addr, &ptl, 0);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530133 if (!ptep)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200134 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530135
136 get_page(kpage);
137 page_add_new_anon_rmap(kpage, vma, addr);
138
Srikar Dronamraju7396fa82012-04-11 16:05:16 +0530139 if (!PageAnon(page)) {
140 dec_mm_counter(mm, MM_FILEPAGES);
141 inc_mm_counter(mm, MM_ANONPAGES);
142 }
143
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530144 flush_cache_page(vma, addr, pte_pfn(*ptep));
145 ptep_clear_flush(vma, addr, ptep);
146 set_pte_at_notify(mm, addr, ptep, mk_pte(kpage, vma->vm_page_prot));
147
148 page_remove_rmap(page);
149 if (!page_mapped(page))
150 try_to_free_swap(page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530151 pte_unmap_unlock(ptep, ptl);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530152
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200153 if (vma->vm_flags & VM_LOCKED)
154 munlock_vma_page(page);
155 put_page(page);
156
Oleg Nesterov9f924482012-07-29 20:22:20 +0200157 err = 0;
158 unlock:
Haggai Eran6bdb9132012-10-08 16:33:35 -0700159 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200160 unlock_page(page);
161 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530162}
163
164/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530165 * is_swbp_insn - check if instruction is breakpoint instruction.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530166 * @insn: instruction to be checked.
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530167 * Default implementation of is_swbp_insn
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530168 * Returns true if @insn is a breakpoint instruction.
169 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530170bool __weak is_swbp_insn(uprobe_opcode_t *insn)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530171{
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530172 return *insn == UPROBE_SWBP_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530173}
174
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200175static void copy_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *opcode)
176{
177 void *kaddr = kmap_atomic(page);
178 memcpy(opcode, kaddr + (vaddr & ~PAGE_MASK), UPROBE_SWBP_INSN_SIZE);
179 kunmap_atomic(kaddr);
180}
181
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200182static int verify_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *new_opcode)
183{
184 uprobe_opcode_t old_opcode;
185 bool is_swbp;
186
187 copy_opcode(page, vaddr, &old_opcode);
188 is_swbp = is_swbp_insn(&old_opcode);
189
190 if (is_swbp_insn(new_opcode)) {
191 if (is_swbp) /* register: already installed? */
192 return 0;
193 } else {
194 if (!is_swbp) /* unregister: was it changed by us? */
Oleg Nesterov076a3652012-09-30 18:54:53 +0200195 return 0;
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200196 }
197
198 return 1;
199}
200
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530201/*
202 * NOTE:
203 * Expect the breakpoint instruction to be the smallest size instruction for
204 * the architecture. If an arch has variable length instruction and the
205 * breakpoint instruction is not of the smallest length instruction
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200206 * supported by that architecture then we need to modify is_swbp_at_addr and
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530207 * write_opcode accordingly. This would never be a problem for archs that
208 * have fixed length instructions.
209 */
210
211/*
212 * write_opcode - write the opcode at a given virtual address.
213 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530214 * @vaddr: the virtual address to store the opcode.
215 * @opcode: opcode to be written at @vaddr.
216 *
217 * Called with mm->mmap_sem held (for read and with a reference to
218 * mm).
219 *
220 * For mm @mm, write the opcode at @vaddr.
221 * Return 0 (success) or a negative errno.
222 */
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200223static int write_opcode(struct mm_struct *mm, unsigned long vaddr,
224 uprobe_opcode_t opcode)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530225{
226 struct page *old_page, *new_page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530227 void *vaddr_old, *vaddr_new;
228 struct vm_area_struct *vma;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530229 int ret;
Oleg Nesterovf4030722012-07-29 20:22:12 +0200230
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200231retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530232 /* Read the page with vaddr into memory */
Oleg Nesterov75ed82e2012-09-16 17:20:06 +0200233 ret = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &old_page, &vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530234 if (ret <= 0)
235 return ret;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100236
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200237 ret = verify_opcode(old_page, vaddr, &opcode);
238 if (ret <= 0)
239 goto put_old;
240
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530241 ret = -ENOMEM;
242 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vaddr);
243 if (!new_page)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200244 goto put_old;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530245
246 __SetPageUptodate(new_page);
247
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530248 /* copy the page now that we've got it stable */
249 vaddr_old = kmap_atomic(old_page);
250 vaddr_new = kmap_atomic(new_page);
251
252 memcpy(vaddr_new, vaddr_old, PAGE_SIZE);
Oleg Nesterovd9c4a302012-06-15 17:43:50 +0200253 memcpy(vaddr_new + (vaddr & ~PAGE_MASK), &opcode, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530254
255 kunmap_atomic(vaddr_new);
256 kunmap_atomic(vaddr_old);
257
258 ret = anon_vma_prepare(vma);
259 if (ret)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200260 goto put_new;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530261
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200262 ret = __replace_page(vma, vaddr, old_page, new_page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530263
Oleg Nesterov9f924482012-07-29 20:22:20 +0200264put_new:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530265 page_cache_release(new_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200266put_old:
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100267 put_page(old_page);
268
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200269 if (unlikely(ret == -EAGAIN))
270 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530271 return ret;
272}
273
274/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530275 * set_swbp - store breakpoint at a given address.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530276 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530277 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530278 * @vaddr: the virtual address to insert the opcode.
279 *
280 * For mm @mm, store the breakpoint instruction at @vaddr.
281 * Return 0 (success) or a negative errno.
282 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530283int __weak set_swbp(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530284{
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200285 return write_opcode(mm, vaddr, UPROBE_SWBP_INSN);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530286}
287
288/**
289 * set_orig_insn - Restore the original instruction.
290 * @mm: the probed process address space.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530291 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530292 * @vaddr: the virtual address to insert the opcode.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530293 *
294 * For mm @mm, restore the original opcode (opcode) at @vaddr.
295 * Return 0 (success) or a negative errno.
296 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100297int __weak
Oleg Nesterovded86e72012-08-08 18:07:03 +0200298set_orig_insn(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530299{
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200300 return write_opcode(mm, vaddr, *(uprobe_opcode_t *)auprobe->insn);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530301}
302
303static int match_uprobe(struct uprobe *l, struct uprobe *r)
304{
305 if (l->inode < r->inode)
306 return -1;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100307
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530308 if (l->inode > r->inode)
309 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530310
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100311 if (l->offset < r->offset)
312 return -1;
313
314 if (l->offset > r->offset)
315 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530316
317 return 0;
318}
319
320static struct uprobe *__find_uprobe(struct inode *inode, loff_t offset)
321{
322 struct uprobe u = { .inode = inode, .offset = offset };
323 struct rb_node *n = uprobes_tree.rb_node;
324 struct uprobe *uprobe;
325 int match;
326
327 while (n) {
328 uprobe = rb_entry(n, struct uprobe, rb_node);
329 match = match_uprobe(&u, uprobe);
330 if (!match) {
331 atomic_inc(&uprobe->ref);
332 return uprobe;
333 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100334
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530335 if (match < 0)
336 n = n->rb_left;
337 else
338 n = n->rb_right;
339 }
340 return NULL;
341}
342
343/*
344 * Find a uprobe corresponding to a given inode:offset
345 * Acquires uprobes_treelock
346 */
347static struct uprobe *find_uprobe(struct inode *inode, loff_t offset)
348{
349 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530350
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200351 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530352 uprobe = __find_uprobe(inode, offset);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200353 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100354
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530355 return uprobe;
356}
357
358static struct uprobe *__insert_uprobe(struct uprobe *uprobe)
359{
360 struct rb_node **p = &uprobes_tree.rb_node;
361 struct rb_node *parent = NULL;
362 struct uprobe *u;
363 int match;
364
365 while (*p) {
366 parent = *p;
367 u = rb_entry(parent, struct uprobe, rb_node);
368 match = match_uprobe(uprobe, u);
369 if (!match) {
370 atomic_inc(&u->ref);
371 return u;
372 }
373
374 if (match < 0)
375 p = &parent->rb_left;
376 else
377 p = &parent->rb_right;
378
379 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100380
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530381 u = NULL;
382 rb_link_node(&uprobe->rb_node, parent, p);
383 rb_insert_color(&uprobe->rb_node, &uprobes_tree);
384 /* get access + creation ref */
385 atomic_set(&uprobe->ref, 2);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100386
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530387 return u;
388}
389
390/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100391 * Acquire uprobes_treelock.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530392 * Matching uprobe already exists in rbtree;
393 * increment (access refcount) and return the matching uprobe.
394 *
395 * No matching uprobe; insert the uprobe in rb_tree;
396 * get a double refcount (access + creation) and return NULL.
397 */
398static struct uprobe *insert_uprobe(struct uprobe *uprobe)
399{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530400 struct uprobe *u;
401
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200402 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530403 u = __insert_uprobe(uprobe);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200404 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100405
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530406 return u;
407}
408
409static void put_uprobe(struct uprobe *uprobe)
410{
411 if (atomic_dec_and_test(&uprobe->ref))
412 kfree(uprobe);
413}
414
415static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
416{
417 struct uprobe *uprobe, *cur_uprobe;
418
419 uprobe = kzalloc(sizeof(struct uprobe), GFP_KERNEL);
420 if (!uprobe)
421 return NULL;
422
423 uprobe->inode = igrab(inode);
424 uprobe->offset = offset;
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100425 init_rwsem(&uprobe->register_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530426 init_rwsem(&uprobe->consumer_rwsem);
Oleg Nesterovbbc33d02012-11-21 16:55:38 +0100427 /* For now assume that the instruction need not be single-stepped */
428 __set_bit(UPROBE_SKIP_SSTEP, &uprobe->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530429
430 /* add to uprobes_tree, sorted on inode:offset */
431 cur_uprobe = insert_uprobe(uprobe);
432
433 /* a uprobe exists for this inode:offset combination */
434 if (cur_uprobe) {
435 kfree(uprobe);
436 uprobe = cur_uprobe;
437 iput(inode);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100438 }
439
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530440 return uprobe;
441}
442
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530443static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
444{
445 struct uprobe_consumer *uc;
446
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100447 down_read(&uprobe->register_rwsem);
Oleg Nesterovfe20d712012-11-21 17:32:30 +0100448 for (uc = uprobe->consumers; uc; uc = uc->next)
449 uc->handler(uc, regs);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100450 up_read(&uprobe->register_rwsem);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530451}
452
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100453static void consumer_add(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530454{
455 down_write(&uprobe->consumer_rwsem);
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530456 uc->next = uprobe->consumers;
457 uprobe->consumers = uc;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530458 up_write(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530459}
460
461/*
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530462 * For uprobe @uprobe, delete the consumer @uc.
463 * Return true if the @uc is deleted successfully
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530464 * or return false.
465 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530466static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530467{
468 struct uprobe_consumer **con;
469 bool ret = false;
470
471 down_write(&uprobe->consumer_rwsem);
472 for (con = &uprobe->consumers; *con; con = &(*con)->next) {
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530473 if (*con == uc) {
474 *con = uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530475 ret = true;
476 break;
477 }
478 }
479 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100480
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530481 return ret;
482}
483
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530484static int
Oleg Nesterovd4366152012-06-15 17:43:42 +0200485__copy_insn(struct address_space *mapping, struct file *filp, char *insn,
Oleg Nesterov593609a2012-06-15 17:43:59 +0200486 unsigned long nbytes, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530487{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530488 struct page *page;
489 void *vaddr;
Oleg Nesterov593609a2012-06-15 17:43:59 +0200490 unsigned long off;
491 pgoff_t idx;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530492
493 if (!filp)
494 return -EINVAL;
495
Oleg Nesterovcc359d12012-06-15 17:43:25 +0200496 if (!mapping->a_ops->readpage)
497 return -EIO;
498
Oleg Nesterov593609a2012-06-15 17:43:59 +0200499 idx = offset >> PAGE_CACHE_SHIFT;
500 off = offset & ~PAGE_MASK;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530501
502 /*
503 * Ensure that the page that has the original instruction is
504 * populated and in page-cache.
505 */
506 page = read_mapping_page(mapping, idx, filp);
507 if (IS_ERR(page))
508 return PTR_ERR(page);
509
510 vaddr = kmap_atomic(page);
Oleg Nesterov593609a2012-06-15 17:43:59 +0200511 memcpy(insn, vaddr + off, nbytes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530512 kunmap_atomic(vaddr);
513 page_cache_release(page);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100514
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530515 return 0;
516}
517
Oleg Nesterovd4366152012-06-15 17:43:42 +0200518static int copy_insn(struct uprobe *uprobe, struct file *filp)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530519{
520 struct address_space *mapping;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530521 unsigned long nbytes;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100522 int bytes;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530523
Oleg Nesterovd4366152012-06-15 17:43:42 +0200524 nbytes = PAGE_SIZE - (uprobe->offset & ~PAGE_MASK);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530525 mapping = uprobe->inode->i_mapping;
526
527 /* Instruction at end of binary; copy only available bytes */
528 if (uprobe->offset + MAX_UINSN_BYTES > uprobe->inode->i_size)
529 bytes = uprobe->inode->i_size - uprobe->offset;
530 else
531 bytes = MAX_UINSN_BYTES;
532
533 /* Instruction at the page-boundary; copy bytes in second page */
534 if (nbytes < bytes) {
Oleg Nesterovfc36f592012-06-15 17:43:44 +0200535 int err = __copy_insn(mapping, filp, uprobe->arch.insn + nbytes,
536 bytes - nbytes, uprobe->offset + nbytes);
537 if (err)
538 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530539 bytes = nbytes;
540 }
Oleg Nesterovd4366152012-06-15 17:43:42 +0200541 return __copy_insn(mapping, filp, uprobe->arch.insn, bytes, uprobe->offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530542}
543
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200544static int prepare_uprobe(struct uprobe *uprobe, struct file *file,
545 struct mm_struct *mm, unsigned long vaddr)
546{
547 int ret = 0;
548
Oleg Nesterov71434f22012-09-30 21:12:44 +0200549 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200550 return ret;
551
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100552 /* TODO: move this into _register, until then we abuse this sem. */
553 down_write(&uprobe->consumer_rwsem);
Oleg Nesterov71434f22012-09-30 21:12:44 +0200554 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterov4710f052012-09-30 20:31:41 +0200555 goto out;
556
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200557 ret = copy_insn(uprobe, file);
558 if (ret)
559 goto out;
560
561 ret = -ENOTSUPP;
562 if (is_swbp_insn((uprobe_opcode_t *)uprobe->arch.insn))
563 goto out;
564
565 ret = arch_uprobe_analyze_insn(&uprobe->arch, mm, vaddr);
566 if (ret)
567 goto out;
568
569 /* write_opcode() assumes we don't cross page boundary */
570 BUG_ON((uprobe->offset & ~PAGE_MASK) +
571 UPROBE_SWBP_INSN_SIZE > PAGE_SIZE);
572
573 smp_wmb(); /* pairs with rmb() in find_active_uprobe() */
Oleg Nesterov71434f22012-09-30 21:12:44 +0200574 set_bit(UPROBE_COPY_INSN, &uprobe->flags);
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200575
576 out:
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100577 up_write(&uprobe->consumer_rwsem);
Oleg Nesterov4710f052012-09-30 20:31:41 +0200578
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200579 return ret;
580}
581
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100582static bool filter_chain(struct uprobe *uprobe)
583{
Oleg Nesterov1ff6fee2012-11-24 18:15:46 +0100584 struct uprobe_consumer *uc;
585 bool ret = false;
586
587 down_read(&uprobe->consumer_rwsem);
588 for (uc = uprobe->consumers; uc; uc = uc->next) {
589 /* TODO: ret = uc->filter(...) */
590 ret = true;
591 if (ret)
592 break;
593 }
594 up_read(&uprobe->consumer_rwsem);
595
596 return ret;
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100597}
598
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530599static int
600install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200601 struct vm_area_struct *vma, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530602{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200603 bool first_uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530604 int ret;
605
606 /*
607 * If probe is being deleted, unregister thread could be done with
608 * the vma-rmap-walk through. Adding a probe now can be fatal since
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100609 * nobody will be able to cleanup. But in this case filter_chain()
610 * must return false, all consumers have gone away.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530611 */
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100612 if (!filter_chain(uprobe))
Oleg Nesterov78f74112012-08-08 17:35:08 +0200613 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530614
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200615 ret = prepare_uprobe(uprobe, vma->vm_file, mm, vaddr);
616 if (ret)
617 return ret;
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530618
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200619 /*
620 * set MMF_HAS_UPROBES in advance for uprobe_pre_sstep_notifier(),
621 * the task can hit this breakpoint right after __replace_page().
622 */
623 first_uprobe = !test_bit(MMF_HAS_UPROBES, &mm->flags);
624 if (first_uprobe)
625 set_bit(MMF_HAS_UPROBES, &mm->flags);
626
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200627 ret = set_swbp(&uprobe->arch, mm, vaddr);
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200628 if (!ret)
629 clear_bit(MMF_RECALC_UPROBES, &mm->flags);
630 else if (first_uprobe)
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200631 clear_bit(MMF_HAS_UPROBES, &mm->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530632
633 return ret;
634}
635
Oleg Nesterov076a3652012-09-30 18:54:53 +0200636static int
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200637remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530638{
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200639 if (!test_bit(MMF_HAS_UPROBES, &mm->flags))
Oleg Nesterov076a3652012-09-30 18:54:53 +0200640 return 0;
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200641
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100642 if (filter_chain(uprobe))
643 return 0;
644
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200645 set_bit(MMF_RECALC_UPROBES, &mm->flags);
Oleg Nesterov076a3652012-09-30 18:54:53 +0200646 return set_orig_insn(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530647}
648
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100649static inline bool uprobe_is_active(struct uprobe *uprobe)
650{
651 return !RB_EMPTY_NODE(&uprobe->rb_node);
652}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530653/*
Oleg Nesterov778b0322012-05-29 21:30:08 +0200654 * There could be threads that have already hit the breakpoint. They
655 * will recheck the current insn and restart if find_uprobe() fails.
656 * See find_active_uprobe().
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530657 */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530658static void delete_uprobe(struct uprobe *uprobe)
659{
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100660 if (WARN_ON(!uprobe_is_active(uprobe)))
661 return;
662
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200663 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530664 rb_erase(&uprobe->rb_node, &uprobes_tree);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200665 spin_unlock(&uprobes_treelock);
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100666 RB_CLEAR_NODE(&uprobe->rb_node); /* for uprobe_is_active() */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530667 iput(uprobe->inode);
668 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530669}
670
Oleg Nesterov26872092012-06-15 17:43:33 +0200671struct map_info {
672 struct map_info *next;
673 struct mm_struct *mm;
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200674 unsigned long vaddr;
Oleg Nesterov26872092012-06-15 17:43:33 +0200675};
676
677static inline struct map_info *free_map_info(struct map_info *info)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530678{
Oleg Nesterov26872092012-06-15 17:43:33 +0200679 struct map_info *next = info->next;
680 kfree(info);
681 return next;
682}
683
684static struct map_info *
685build_map_info(struct address_space *mapping, loff_t offset, bool is_register)
686{
687 unsigned long pgoff = offset >> PAGE_SHIFT;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530688 struct vm_area_struct *vma;
Oleg Nesterov26872092012-06-15 17:43:33 +0200689 struct map_info *curr = NULL;
690 struct map_info *prev = NULL;
691 struct map_info *info;
692 int more = 0;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100693
Oleg Nesterov26872092012-06-15 17:43:33 +0200694 again:
695 mutex_lock(&mapping->i_mmap_mutex);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700696 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530697 if (!valid_vma(vma, is_register))
698 continue;
699
Oleg Nesterov7a5bfb62012-06-15 17:43:36 +0200700 if (!prev && !more) {
701 /*
702 * Needs GFP_NOWAIT to avoid i_mmap_mutex recursion through
703 * reclaim. This is optimistic, no harm done if it fails.
704 */
705 prev = kmalloc(sizeof(struct map_info),
706 GFP_NOWAIT | __GFP_NOMEMALLOC | __GFP_NOWARN);
707 if (prev)
708 prev->next = NULL;
709 }
Oleg Nesterov26872092012-06-15 17:43:33 +0200710 if (!prev) {
711 more++;
712 continue;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530713 }
714
Oleg Nesterov26872092012-06-15 17:43:33 +0200715 if (!atomic_inc_not_zero(&vma->vm_mm->mm_users))
716 continue;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100717
Oleg Nesterov26872092012-06-15 17:43:33 +0200718 info = prev;
719 prev = prev->next;
720 info->next = curr;
721 curr = info;
722
723 info->mm = vma->vm_mm;
Oleg Nesterov57683f72012-07-29 20:22:47 +0200724 info->vaddr = offset_to_vaddr(vma, offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530725 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530726 mutex_unlock(&mapping->i_mmap_mutex);
727
Oleg Nesterov26872092012-06-15 17:43:33 +0200728 if (!more)
729 goto out;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100730
Oleg Nesterov26872092012-06-15 17:43:33 +0200731 prev = curr;
732 while (curr) {
733 mmput(curr->mm);
734 curr = curr->next;
735 }
736
737 do {
738 info = kmalloc(sizeof(struct map_info), GFP_KERNEL);
739 if (!info) {
740 curr = ERR_PTR(-ENOMEM);
741 goto out;
742 }
743 info->next = prev;
744 prev = info;
745 } while (--more);
746
747 goto again;
748 out:
749 while (prev)
750 prev = free_map_info(prev);
751 return curr;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530752}
753
754static int register_for_each_vma(struct uprobe *uprobe, bool is_register)
755{
Oleg Nesterov26872092012-06-15 17:43:33 +0200756 struct map_info *info;
757 int err = 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530758
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100759 percpu_down_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200760 info = build_map_info(uprobe->inode->i_mapping,
761 uprobe->offset, is_register);
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100762 if (IS_ERR(info)) {
763 err = PTR_ERR(info);
764 goto out;
765 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100766
Oleg Nesterov26872092012-06-15 17:43:33 +0200767 while (info) {
768 struct mm_struct *mm = info->mm;
769 struct vm_area_struct *vma;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100770
Oleg Nesterov076a3652012-09-30 18:54:53 +0200771 if (err && is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200772 goto free;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100773
Oleg Nesterov77fc4af2012-05-29 21:29:28 +0200774 down_write(&mm->mmap_sem);
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200775 vma = find_vma(mm, info->vaddr);
776 if (!vma || !valid_vma(vma, is_register) ||
777 vma->vm_file->f_mapping->host != uprobe->inode)
Oleg Nesterov26872092012-06-15 17:43:33 +0200778 goto unlock;
779
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200780 if (vma->vm_start > info->vaddr ||
781 vaddr_to_offset(vma, info->vaddr) != uprobe->offset)
Oleg Nesterov26872092012-06-15 17:43:33 +0200782 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530783
Oleg Nesterov78f74112012-08-08 17:35:08 +0200784 if (is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200785 err = install_breakpoint(uprobe, mm, vma, info->vaddr);
Oleg Nesterov78f74112012-08-08 17:35:08 +0200786 else
Oleg Nesterov076a3652012-09-30 18:54:53 +0200787 err |= remove_breakpoint(uprobe, mm, info->vaddr);
Oleg Nesterov78f74112012-08-08 17:35:08 +0200788
Oleg Nesterov26872092012-06-15 17:43:33 +0200789 unlock:
790 up_write(&mm->mmap_sem);
791 free:
792 mmput(mm);
793 info = free_map_info(info);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530794 }
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100795 out:
796 percpu_up_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200797 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530798}
799
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100800static int __uprobe_register(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530801{
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100802 consumer_add(uprobe, uc);
Oleg Nesterovbb929282012-11-24 18:27:08 +0100803 return register_for_each_vma(uprobe, true);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530804}
805
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100806static void __uprobe_unregister(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530807{
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100808 int err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530809
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100810 if (!consumer_del(uprobe, uc)) /* WARN? */
811 return;
812
813 err = register_for_each_vma(uprobe, false);
Oleg Nesterovbb929282012-11-24 18:27:08 +0100814 /* TODO : cant unregister? schedule a worker thread */
815 if (!uprobe->consumers && !err)
816 delete_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530817}
818
819/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100820 * uprobe_register - register a probe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530821 * @inode: the file in which the probe has to be placed.
822 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530823 * @uc: information on howto handle the probe..
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530824 *
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100825 * Apart from the access refcount, uprobe_register() takes a creation
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530826 * refcount (thro alloc_uprobe) if and only if this @uprobe is getting
827 * inserted into the rbtree (i.e first consumer for a @inode:@offset
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100828 * tuple). Creation refcount stops uprobe_unregister from freeing the
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530829 * @uprobe even before the register operation is complete. Creation
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530830 * refcount is released when the last @uc for the @uprobe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530831 * unregisters.
832 *
833 * Return errno if it cannot successully install probes
834 * else return 0 (success)
835 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530836int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530837{
838 struct uprobe *uprobe;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100839 int ret;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530840
Oleg Nesterovf0744af2012-11-21 18:01:43 +0100841 /* Racy, just to catch the obvious mistakes */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530842 if (offset > i_size_read(inode))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100843 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530844
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100845 retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530846 uprobe = alloc_uprobe(inode, offset);
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100847 if (!uprobe)
848 return -ENOMEM;
849 /*
850 * We can race with uprobe_unregister()->delete_uprobe().
851 * Check uprobe_is_active() and retry if it is false.
852 */
853 down_write(&uprobe->register_rwsem);
854 ret = -EAGAIN;
855 if (likely(uprobe_is_active(uprobe))) {
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100856 ret = __uprobe_register(uprobe, uc);
857 if (ret)
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100858 __uprobe_unregister(uprobe, uc);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530859 }
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100860 up_write(&uprobe->register_rwsem);
861 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530862
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100863 if (unlikely(ret == -EAGAIN))
864 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530865 return ret;
866}
867
868/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100869 * uprobe_unregister - unregister a already registered probe.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530870 * @inode: the file in which the probe has to be removed.
871 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530872 * @uc: identify which probe if multiple probes are colocated.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530873 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530874void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530875{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100876 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530877
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530878 uprobe = find_uprobe(inode, offset);
879 if (!uprobe)
880 return;
881
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100882 down_write(&uprobe->register_rwsem);
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100883 __uprobe_unregister(uprobe, uc);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100884 up_write(&uprobe->register_rwsem);
Sasha Levinc91368c2012-12-20 14:11:30 -0500885 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530886}
887
Oleg Nesterov891c3972012-07-29 20:22:40 +0200888static struct rb_node *
889find_node_in_range(struct inode *inode, loff_t min, loff_t max)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530890{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530891 struct rb_node *n = uprobes_tree.rb_node;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530892
893 while (n) {
Oleg Nesterov891c3972012-07-29 20:22:40 +0200894 struct uprobe *u = rb_entry(n, struct uprobe, rb_node);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100895
Oleg Nesterov891c3972012-07-29 20:22:40 +0200896 if (inode < u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530897 n = n->rb_left;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200898 } else if (inode > u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530899 n = n->rb_right;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200900 } else {
901 if (max < u->offset)
902 n = n->rb_left;
903 else if (min > u->offset)
904 n = n->rb_right;
905 else
906 break;
907 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530908 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100909
Oleg Nesterov891c3972012-07-29 20:22:40 +0200910 return n;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530911}
912
913/*
Oleg Nesterov891c3972012-07-29 20:22:40 +0200914 * For a given range in vma, build a list of probes that need to be inserted.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530915 */
Oleg Nesterov891c3972012-07-29 20:22:40 +0200916static void build_probe_list(struct inode *inode,
917 struct vm_area_struct *vma,
918 unsigned long start, unsigned long end,
919 struct list_head *head)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530920{
Oleg Nesterov891c3972012-07-29 20:22:40 +0200921 loff_t min, max;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200922 struct rb_node *n, *t;
923 struct uprobe *u;
924
925 INIT_LIST_HEAD(head);
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200926 min = vaddr_to_offset(vma, start);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200927 max = min + (end - start) - 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530928
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200929 spin_lock(&uprobes_treelock);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200930 n = find_node_in_range(inode, min, max);
931 if (n) {
932 for (t = n; t; t = rb_prev(t)) {
933 u = rb_entry(t, struct uprobe, rb_node);
934 if (u->inode != inode || u->offset < min)
935 break;
936 list_add(&u->pending_list, head);
937 atomic_inc(&u->ref);
938 }
939 for (t = n; (t = rb_next(t)); ) {
940 u = rb_entry(t, struct uprobe, rb_node);
941 if (u->inode != inode || u->offset > max)
942 break;
943 list_add(&u->pending_list, head);
944 atomic_inc(&u->ref);
945 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530946 }
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200947 spin_unlock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530948}
949
950/*
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200951 * Called from mmap_region/vma_adjust with mm->mmap_sem acquired.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530952 *
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200953 * Currently we ignore all errors and always return 0, the callers
954 * can't handle the failure anyway.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530955 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100956int uprobe_mmap(struct vm_area_struct *vma)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530957{
958 struct list_head tmp_list;
Oleg Nesterov665605a2012-07-29 20:22:29 +0200959 struct uprobe *uprobe, *u;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530960 struct inode *inode;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530961
Oleg Nesterov441f1eb2012-11-25 19:54:29 +0100962 if (no_uprobe_events() || !valid_vma(vma, true))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100963 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530964
965 inode = vma->vm_file->f_mapping->host;
966 if (!inode)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100967 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530968
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530969 mutex_lock(uprobes_mmap_hash(inode));
Oleg Nesterov891c3972012-07-29 20:22:40 +0200970 build_probe_list(inode, vma, vma->vm_start, vma->vm_end, &tmp_list);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100971
Oleg Nesterov665605a2012-07-29 20:22:29 +0200972 list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200973 if (!fatal_signal_pending(current)) {
Oleg Nesterov57683f72012-07-29 20:22:47 +0200974 unsigned long vaddr = offset_to_vaddr(vma, uprobe->offset);
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200975 install_breakpoint(uprobe, vma->vm_mm, vma, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530976 }
977 put_uprobe(uprobe);
978 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530979 mutex_unlock(uprobes_mmap_hash(inode));
980
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200981 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530982}
983
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200984static bool
985vma_has_uprobes(struct vm_area_struct *vma, unsigned long start, unsigned long end)
986{
987 loff_t min, max;
988 struct inode *inode;
989 struct rb_node *n;
990
991 inode = vma->vm_file->f_mapping->host;
992
993 min = vaddr_to_offset(vma, start);
994 max = min + (end - start) - 1;
995
996 spin_lock(&uprobes_treelock);
997 n = find_node_in_range(inode, min, max);
998 spin_unlock(&uprobes_treelock);
999
1000 return !!n;
1001}
1002
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301003/*
1004 * Called in context of a munmap of a vma.
1005 */
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301006void uprobe_munmap(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301007{
Oleg Nesterov441f1eb2012-11-25 19:54:29 +01001008 if (no_uprobe_events() || !valid_vma(vma, false))
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301009 return;
1010
Oleg Nesterov2fd611a2012-07-29 20:22:31 +02001011 if (!atomic_read(&vma->vm_mm->mm_users)) /* called by mmput() ? */
1012 return;
1013
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001014 if (!test_bit(MMF_HAS_UPROBES, &vma->vm_mm->flags) ||
1015 test_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags))
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001016 return;
1017
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001018 if (vma_has_uprobes(vma, start, end))
1019 set_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags);
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301020}
1021
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301022/* Slot allocation for XOL */
1023static int xol_add_vma(struct xol_area *area)
1024{
1025 struct mm_struct *mm;
1026 int ret;
1027
1028 area->page = alloc_page(GFP_HIGHUSER);
1029 if (!area->page)
1030 return -ENOMEM;
1031
1032 ret = -EALREADY;
1033 mm = current->mm;
1034
1035 down_write(&mm->mmap_sem);
1036 if (mm->uprobes_state.xol_area)
1037 goto fail;
1038
1039 ret = -ENOMEM;
1040
1041 /* Try to map as high as possible, this is only a hint. */
1042 area->vaddr = get_unmapped_area(NULL, TASK_SIZE - PAGE_SIZE, PAGE_SIZE, 0, 0);
1043 if (area->vaddr & ~PAGE_MASK) {
1044 ret = area->vaddr;
1045 goto fail;
1046 }
1047
1048 ret = install_special_mapping(mm, area->vaddr, PAGE_SIZE,
1049 VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO, &area->page);
1050 if (ret)
1051 goto fail;
1052
1053 smp_wmb(); /* pairs with get_xol_area() */
1054 mm->uprobes_state.xol_area = area;
1055 ret = 0;
1056
1057fail:
1058 up_write(&mm->mmap_sem);
1059 if (ret)
1060 __free_page(area->page);
1061
1062 return ret;
1063}
1064
1065static struct xol_area *get_xol_area(struct mm_struct *mm)
1066{
1067 struct xol_area *area;
1068
1069 area = mm->uprobes_state.xol_area;
1070 smp_read_barrier_depends(); /* pairs with wmb in xol_add_vma() */
1071
1072 return area;
1073}
1074
1075/*
1076 * xol_alloc_area - Allocate process's xol_area.
1077 * This area will be used for storing instructions for execution out of
1078 * line.
1079 *
1080 * Returns the allocated area or NULL.
1081 */
1082static struct xol_area *xol_alloc_area(void)
1083{
1084 struct xol_area *area;
1085
1086 area = kzalloc(sizeof(*area), GFP_KERNEL);
1087 if (unlikely(!area))
1088 return NULL;
1089
1090 area->bitmap = kzalloc(BITS_TO_LONGS(UINSNS_PER_PAGE) * sizeof(long), GFP_KERNEL);
1091
1092 if (!area->bitmap)
1093 goto fail;
1094
1095 init_waitqueue_head(&area->wq);
1096 if (!xol_add_vma(area))
1097 return area;
1098
1099fail:
1100 kfree(area->bitmap);
1101 kfree(area);
1102
1103 return get_xol_area(current->mm);
1104}
1105
1106/*
1107 * uprobe_clear_state - Free the area allocated for slots.
1108 */
1109void uprobe_clear_state(struct mm_struct *mm)
1110{
1111 struct xol_area *area = mm->uprobes_state.xol_area;
1112
1113 if (!area)
1114 return;
1115
1116 put_page(area->page);
1117 kfree(area->bitmap);
1118 kfree(area);
1119}
1120
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001121void uprobe_start_dup_mmap(void)
1122{
1123 percpu_down_read(&dup_mmap_sem);
1124}
1125
1126void uprobe_end_dup_mmap(void)
1127{
1128 percpu_up_read(&dup_mmap_sem);
1129}
1130
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001131void uprobe_dup_mmap(struct mm_struct *oldmm, struct mm_struct *newmm)
1132{
Oleg Nesterov61559a82012-08-08 17:17:46 +02001133 newmm->uprobes_state.xol_area = NULL;
1134
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001135 if (test_bit(MMF_HAS_UPROBES, &oldmm->flags)) {
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001136 set_bit(MMF_HAS_UPROBES, &newmm->flags);
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001137 /* unconditionally, dup_mmap() skips VM_DONTCOPY vmas */
1138 set_bit(MMF_RECALC_UPROBES, &newmm->flags);
1139 }
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001140}
1141
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301142/*
1143 * - search for a free slot.
1144 */
1145static unsigned long xol_take_insn_slot(struct xol_area *area)
1146{
1147 unsigned long slot_addr;
1148 int slot_nr;
1149
1150 do {
1151 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE);
1152 if (slot_nr < UINSNS_PER_PAGE) {
1153 if (!test_and_set_bit(slot_nr, area->bitmap))
1154 break;
1155
1156 slot_nr = UINSNS_PER_PAGE;
1157 continue;
1158 }
1159 wait_event(area->wq, (atomic_read(&area->slot_count) < UINSNS_PER_PAGE));
1160 } while (slot_nr >= UINSNS_PER_PAGE);
1161
1162 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES);
1163 atomic_inc(&area->slot_count);
1164
1165 return slot_addr;
1166}
1167
1168/*
1169 * xol_get_insn_slot - If was not allocated a slot, then
1170 * allocate a slot.
1171 * Returns the allocated slot address or 0.
1172 */
1173static unsigned long xol_get_insn_slot(struct uprobe *uprobe, unsigned long slot_addr)
1174{
1175 struct xol_area *area;
1176 unsigned long offset;
1177 void *vaddr;
1178
1179 area = get_xol_area(current->mm);
1180 if (!area) {
1181 area = xol_alloc_area();
1182 if (!area)
1183 return 0;
1184 }
1185 current->utask->xol_vaddr = xol_take_insn_slot(area);
1186
1187 /*
1188 * Initialize the slot if xol_vaddr points to valid
1189 * instruction slot.
1190 */
1191 if (unlikely(!current->utask->xol_vaddr))
1192 return 0;
1193
1194 current->utask->vaddr = slot_addr;
1195 offset = current->utask->xol_vaddr & ~PAGE_MASK;
1196 vaddr = kmap_atomic(area->page);
1197 memcpy(vaddr + offset, uprobe->arch.insn, MAX_UINSN_BYTES);
1198 kunmap_atomic(vaddr);
Rabin Vincent65b6ecc2012-11-14 18:27:07 +01001199 /*
1200 * We probably need flush_icache_user_range() but it needs vma.
1201 * This should work on supported architectures too.
1202 */
1203 flush_dcache_page(area->page);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301204
1205 return current->utask->xol_vaddr;
1206}
1207
1208/*
1209 * xol_free_insn_slot - If slot was earlier allocated by
1210 * @xol_get_insn_slot(), make the slot available for
1211 * subsequent requests.
1212 */
1213static void xol_free_insn_slot(struct task_struct *tsk)
1214{
1215 struct xol_area *area;
1216 unsigned long vma_end;
1217 unsigned long slot_addr;
1218
1219 if (!tsk->mm || !tsk->mm->uprobes_state.xol_area || !tsk->utask)
1220 return;
1221
1222 slot_addr = tsk->utask->xol_vaddr;
1223
1224 if (unlikely(!slot_addr || IS_ERR_VALUE(slot_addr)))
1225 return;
1226
1227 area = tsk->mm->uprobes_state.xol_area;
1228 vma_end = area->vaddr + PAGE_SIZE;
1229 if (area->vaddr <= slot_addr && slot_addr < vma_end) {
1230 unsigned long offset;
1231 int slot_nr;
1232
1233 offset = slot_addr - area->vaddr;
1234 slot_nr = offset / UPROBE_XOL_SLOT_BYTES;
1235 if (slot_nr >= UINSNS_PER_PAGE)
1236 return;
1237
1238 clear_bit(slot_nr, area->bitmap);
1239 atomic_dec(&area->slot_count);
1240 if (waitqueue_active(&area->wq))
1241 wake_up(&area->wq);
1242
1243 tsk->utask->xol_vaddr = 0;
1244 }
1245}
1246
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301247/**
1248 * uprobe_get_swbp_addr - compute address of swbp given post-swbp regs
1249 * @regs: Reflects the saved state of the task after it has hit a breakpoint
1250 * instruction.
1251 * Return the address of the breakpoint instruction.
1252 */
1253unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs)
1254{
1255 return instruction_pointer(regs) - UPROBE_SWBP_INSN_SIZE;
1256}
1257
1258/*
1259 * Called with no locks held.
1260 * Called in context of a exiting or a exec-ing thread.
1261 */
1262void uprobe_free_utask(struct task_struct *t)
1263{
1264 struct uprobe_task *utask = t->utask;
1265
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301266 if (!utask)
1267 return;
1268
1269 if (utask->active_uprobe)
1270 put_uprobe(utask->active_uprobe);
1271
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301272 xol_free_insn_slot(t);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301273 kfree(utask);
1274 t->utask = NULL;
1275}
1276
1277/*
1278 * Called in context of a new clone/fork from copy_process.
1279 */
1280void uprobe_copy_process(struct task_struct *t)
1281{
1282 t->utask = NULL;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301283}
1284
1285/*
1286 * Allocate a uprobe_task object for the task.
1287 * Called when the thread hits a breakpoint for the first time.
1288 *
1289 * Returns:
1290 * - pointer to new uprobe_task on success
1291 * - NULL otherwise
1292 */
1293static struct uprobe_task *add_utask(void)
1294{
1295 struct uprobe_task *utask;
1296
1297 utask = kzalloc(sizeof *utask, GFP_KERNEL);
1298 if (unlikely(!utask))
1299 return NULL;
1300
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301301 current->utask = utask;
1302 return utask;
1303}
1304
1305/* Prepare to single-step probed instruction out of line. */
1306static int
1307pre_ssout(struct uprobe *uprobe, struct pt_regs *regs, unsigned long vaddr)
1308{
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301309 if (xol_get_insn_slot(uprobe, vaddr) && !arch_uprobe_pre_xol(&uprobe->arch, regs))
1310 return 0;
1311
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301312 return -EFAULT;
1313}
1314
1315/*
1316 * If we are singlestepping, then ensure this thread is not connected to
1317 * non-fatal signals until completion of singlestep. When xol insn itself
1318 * triggers the signal, restart the original insn even if the task is
1319 * already SIGKILL'ed (since coredump should report the correct ip). This
1320 * is even more important if the task has a handler for SIGSEGV/etc, The
1321 * _same_ instruction should be repeated again after return from the signal
1322 * handler, and SSTEP can never finish in this case.
1323 */
1324bool uprobe_deny_signal(void)
1325{
1326 struct task_struct *t = current;
1327 struct uprobe_task *utask = t->utask;
1328
1329 if (likely(!utask || !utask->active_uprobe))
1330 return false;
1331
1332 WARN_ON_ONCE(utask->state != UTASK_SSTEP);
1333
1334 if (signal_pending(t)) {
1335 spin_lock_irq(&t->sighand->siglock);
1336 clear_tsk_thread_flag(t, TIF_SIGPENDING);
1337 spin_unlock_irq(&t->sighand->siglock);
1338
1339 if (__fatal_signal_pending(t) || arch_uprobe_xol_was_trapped(t)) {
1340 utask->state = UTASK_SSTEP_TRAPPED;
1341 set_tsk_thread_flag(t, TIF_UPROBE);
1342 set_tsk_thread_flag(t, TIF_NOTIFY_RESUME);
1343 }
1344 }
1345
1346 return true;
1347}
1348
1349/*
1350 * Avoid singlestepping the original instruction if the original instruction
1351 * is a NOP or can be emulated.
1352 */
1353static bool can_skip_sstep(struct uprobe *uprobe, struct pt_regs *regs)
1354{
Oleg Nesterov71434f22012-09-30 21:12:44 +02001355 if (test_bit(UPROBE_SKIP_SSTEP, &uprobe->flags)) {
Oleg Nesterov0578a972012-09-14 18:31:23 +02001356 if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
1357 return true;
Oleg Nesterov71434f22012-09-30 21:12:44 +02001358 clear_bit(UPROBE_SKIP_SSTEP, &uprobe->flags);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001359 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301360 return false;
1361}
1362
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001363static void mmf_recalc_uprobes(struct mm_struct *mm)
1364{
1365 struct vm_area_struct *vma;
1366
1367 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1368 if (!valid_vma(vma, false))
1369 continue;
1370 /*
1371 * This is not strictly accurate, we can race with
1372 * uprobe_unregister() and see the already removed
1373 * uprobe if delete_uprobe() was not yet called.
Oleg Nesterov63633cb2012-11-22 18:30:15 +01001374 * Or this uprobe can be filtered out.
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001375 */
1376 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end))
1377 return;
1378 }
1379
1380 clear_bit(MMF_HAS_UPROBES, &mm->flags);
1381}
1382
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001383static int is_swbp_at_addr(struct mm_struct *mm, unsigned long vaddr)
1384{
1385 struct page *page;
1386 uprobe_opcode_t opcode;
1387 int result;
1388
1389 pagefault_disable();
1390 result = __copy_from_user_inatomic(&opcode, (void __user*)vaddr,
1391 sizeof(opcode));
1392 pagefault_enable();
1393
1394 if (likely(result == 0))
1395 goto out;
1396
1397 result = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &page, NULL);
1398 if (result < 0)
1399 return result;
1400
1401 copy_opcode(page, vaddr, &opcode);
1402 put_page(page);
1403 out:
1404 return is_swbp_insn(&opcode);
1405}
1406
Oleg Nesterovd790d342012-05-29 21:29:14 +02001407static struct uprobe *find_active_uprobe(unsigned long bp_vaddr, int *is_swbp)
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001408{
1409 struct mm_struct *mm = current->mm;
1410 struct uprobe *uprobe = NULL;
1411 struct vm_area_struct *vma;
1412
1413 down_read(&mm->mmap_sem);
1414 vma = find_vma(mm, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001415 if (vma && vma->vm_start <= bp_vaddr) {
1416 if (valid_vma(vma, false)) {
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001417 struct inode *inode = vma->vm_file->f_mapping->host;
1418 loff_t offset = vaddr_to_offset(vma, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001419
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001420 uprobe = find_uprobe(inode, offset);
1421 }
Oleg Nesterovd790d342012-05-29 21:29:14 +02001422
1423 if (!uprobe)
1424 *is_swbp = is_swbp_at_addr(mm, bp_vaddr);
1425 } else {
1426 *is_swbp = -EFAULT;
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001427 }
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001428
1429 if (!uprobe && test_and_clear_bit(MMF_RECALC_UPROBES, &mm->flags))
1430 mmf_recalc_uprobes(mm);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001431 up_read(&mm->mmap_sem);
1432
1433 return uprobe;
1434}
1435
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301436/*
1437 * Run handler and ask thread to singlestep.
1438 * Ensure all non-fatal signals cannot interrupt thread while it singlesteps.
1439 */
1440static void handle_swbp(struct pt_regs *regs)
1441{
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301442 struct uprobe_task *utask;
1443 struct uprobe *uprobe;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301444 unsigned long bp_vaddr;
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001445 int uninitialized_var(is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301446
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301447 bp_vaddr = uprobe_get_swbp_addr(regs);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001448 uprobe = find_active_uprobe(bp_vaddr, &is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301449
1450 if (!uprobe) {
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001451 if (is_swbp > 0) {
1452 /* No matching uprobe; signal SIGTRAP. */
1453 send_sig(SIGTRAP, current, 0);
1454 } else {
1455 /*
1456 * Either we raced with uprobe_unregister() or we can't
1457 * access this memory. The latter is only possible if
1458 * another thread plays with our ->mm. In both cases
1459 * we can simply restart. If this vma was unmapped we
1460 * can pretend this insn was not executed yet and get
1461 * the (correct) SIGSEGV after restart.
1462 */
1463 instruction_pointer_set(regs, bp_vaddr);
1464 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301465 return;
1466 }
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001467 /*
1468 * TODO: move copy_insn/etc into _register and remove this hack.
1469 * After we hit the bp, _unregister + _register can install the
1470 * new and not-yet-analyzed uprobe at the same address, restart.
1471 */
1472 smp_rmb(); /* pairs with wmb() in install_breakpoint() */
Oleg Nesterov71434f22012-09-30 21:12:44 +02001473 if (unlikely(!test_bit(UPROBE_COPY_INSN, &uprobe->flags)))
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001474 goto restart;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301475
1476 utask = current->utask;
1477 if (!utask) {
1478 utask = add_utask();
1479 /* Cannot allocate; re-execute the instruction. */
1480 if (!utask)
Oleg Nesterov0578a972012-09-14 18:31:23 +02001481 goto restart;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301482 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301483
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301484 handler_chain(uprobe, regs);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001485 if (can_skip_sstep(uprobe, regs))
1486 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301487
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301488 if (!pre_ssout(uprobe, regs, bp_vaddr)) {
Oleg Nesterov746a9e62012-09-14 18:23:51 +02001489 utask->active_uprobe = uprobe;
1490 utask->state = UTASK_SSTEP;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301491 return;
1492 }
1493
Oleg Nesterov0578a972012-09-14 18:31:23 +02001494restart:
1495 /*
1496 * cannot singlestep; cannot skip instruction;
1497 * re-execute the instruction.
1498 */
1499 instruction_pointer_set(regs, bp_vaddr);
1500out:
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001501 put_uprobe(uprobe);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301502}
1503
1504/*
1505 * Perform required fix-ups and disable singlestep.
1506 * Allow pending signals to take effect.
1507 */
1508static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
1509{
1510 struct uprobe *uprobe;
1511
1512 uprobe = utask->active_uprobe;
1513 if (utask->state == UTASK_SSTEP_ACK)
1514 arch_uprobe_post_xol(&uprobe->arch, regs);
1515 else if (utask->state == UTASK_SSTEP_TRAPPED)
1516 arch_uprobe_abort_xol(&uprobe->arch, regs);
1517 else
1518 WARN_ON_ONCE(1);
1519
1520 put_uprobe(uprobe);
1521 utask->active_uprobe = NULL;
1522 utask->state = UTASK_RUNNING;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301523 xol_free_insn_slot(current);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301524
1525 spin_lock_irq(&current->sighand->siglock);
1526 recalc_sigpending(); /* see uprobe_deny_signal() */
1527 spin_unlock_irq(&current->sighand->siglock);
1528}
1529
1530/*
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001531 * On breakpoint hit, breakpoint notifier sets the TIF_UPROBE flag and
1532 * allows the thread to return from interrupt. After that handle_swbp()
1533 * sets utask->active_uprobe.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301534 *
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001535 * On singlestep exception, singlestep notifier sets the TIF_UPROBE flag
1536 * and allows the thread to return from interrupt.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301537 *
1538 * While returning to userspace, thread notices the TIF_UPROBE flag and calls
1539 * uprobe_notify_resume().
1540 */
1541void uprobe_notify_resume(struct pt_regs *regs)
1542{
1543 struct uprobe_task *utask;
1544
Oleg Nesterovdb023ea2012-09-14 19:05:46 +02001545 clear_thread_flag(TIF_UPROBE);
1546
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301547 utask = current->utask;
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001548 if (utask && utask->active_uprobe)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301549 handle_singlestep(utask, regs);
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001550 else
1551 handle_swbp(regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301552}
1553
1554/*
1555 * uprobe_pre_sstep_notifier gets called from interrupt context as part of
1556 * notifier mechanism. Set TIF_UPROBE flag and indicate breakpoint hit.
1557 */
1558int uprobe_pre_sstep_notifier(struct pt_regs *regs)
1559{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001560 if (!current->mm || !test_bit(MMF_HAS_UPROBES, &current->mm->flags))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301561 return 0;
1562
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301563 set_thread_flag(TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301564 return 1;
1565}
1566
1567/*
1568 * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier
1569 * mechanism. Set TIF_UPROBE flag and indicate completion of singlestep.
1570 */
1571int uprobe_post_sstep_notifier(struct pt_regs *regs)
1572{
1573 struct uprobe_task *utask = current->utask;
1574
1575 if (!current->mm || !utask || !utask->active_uprobe)
1576 /* task is currently not uprobed */
1577 return 0;
1578
1579 utask->state = UTASK_SSTEP_ACK;
1580 set_thread_flag(TIF_UPROBE);
1581 return 1;
1582}
1583
1584static struct notifier_block uprobe_exception_nb = {
1585 .notifier_call = arch_uprobe_exception_notify,
1586 .priority = INT_MAX-1, /* notified after kprobes, kgdb */
1587};
1588
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301589static int __init init_uprobes(void)
1590{
1591 int i;
1592
Oleg Nesterov66d06df2012-11-25 22:48:37 +01001593 for (i = 0; i < UPROBES_HASH_SZ; i++)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301594 mutex_init(&uprobes_mmap_mutex[i]);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301595
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001596 if (percpu_init_rwsem(&dup_mmap_sem))
1597 return -ENOMEM;
1598
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301599 return register_die_notifier(&uprobe_exception_nb);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301600}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301601module_init(init_uprobes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301602
1603static void __exit exit_uprobes(void)
1604{
1605}
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301606module_exit(exit_uprobes);