blob: c718fef28617139661f33340071754eabf8d2a8f [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 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010036
Srikar Dronamraju2b144492012-02-09 14:56:42 +053037#include <linux/uprobes.h>
38
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +053039#define UINSNS_PER_PAGE (PAGE_SIZE/UPROBE_XOL_SLOT_BYTES)
40#define MAX_UPROBE_XOL_SLOTS UINSNS_PER_PAGE
41
Srikar Dronamraju2b144492012-02-09 14:56:42 +053042static struct rb_root uprobes_tree = RB_ROOT;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010043
Srikar Dronamraju2b144492012-02-09 14:56:42 +053044static DEFINE_SPINLOCK(uprobes_treelock); /* serialize rbtree access */
45
46#define UPROBES_HASH_SZ 13
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010047
Peter Zijlstrac5784de2012-06-15 17:43:39 +020048/*
49 * We need separate register/unregister and mmap/munmap lock hashes because
50 * of mmap_sem nesting.
51 *
52 * uprobe_register() needs to install probes on (potentially) all processes
53 * and thus needs to acquire multiple mmap_sems (consequtively, not
54 * concurrently), whereas uprobe_mmap() is called while holding mmap_sem
55 * for the particular process doing the mmap.
56 *
57 * uprobe_register()->register_for_each_vma() needs to drop/acquire mmap_sem
58 * because of lock order against i_mmap_mutex. This means there's a hole in
59 * the register vma iteration where a mmap() can happen.
60 *
61 * Thus uprobe_register() can race with uprobe_mmap() and we can try and
62 * install a probe where one is already installed.
63 */
64
Srikar Dronamraju2b144492012-02-09 14:56:42 +053065/* serialize (un)register */
66static struct mutex uprobes_mutex[UPROBES_HASH_SZ];
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010067
68#define uprobes_hash(v) (&uprobes_mutex[((unsigned long)(v)) % UPROBES_HASH_SZ])
Srikar Dronamraju2b144492012-02-09 14:56:42 +053069
70/* serialize uprobe->pending_list */
71static struct mutex uprobes_mmap_mutex[UPROBES_HASH_SZ];
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010072#define uprobes_mmap_hash(v) (&uprobes_mmap_mutex[((unsigned long)(v)) % UPROBES_HASH_SZ])
Srikar Dronamraju2b144492012-02-09 14:56:42 +053073
74/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010075 * uprobe_events allows us to skip the uprobe_mmap if there are no uprobe
Srikar Dronamraju2b144492012-02-09 14:56:42 +053076 * events active at this time. Probably a fine grained per inode count is
77 * better?
78 */
79static atomic_t uprobe_events = ATOMIC_INIT(0);
80
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053081struct uprobe {
82 struct rb_node rb_node; /* node in the rb tree */
83 atomic_t ref;
84 struct rw_semaphore consumer_rwsem;
85 struct list_head pending_list;
86 struct uprobe_consumer *consumers;
87 struct inode *inode; /* Also hold a ref to inode */
88 loff_t offset;
89 int flags;
90 struct arch_uprobe arch;
91};
92
Srikar Dronamraju2b144492012-02-09 14:56:42 +053093/*
94 * valid_vma: Verify if the specified vma is an executable vma
95 * Relax restrictions while unregistering: vm_flags might have
96 * changed after breakpoint was inserted.
97 * - is_register: indicates if we are in register context.
98 * - Return 1 if the specified virtual address is in an
99 * executable vma.
100 */
101static bool valid_vma(struct vm_area_struct *vma, bool is_register)
102{
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200103 vm_flags_t flags = VM_HUGETLB | VM_MAYEXEC | VM_SHARED;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530104
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200105 if (is_register)
106 flags |= VM_WRITE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530107
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200108 return vma->vm_file && (vma->vm_flags & flags) == VM_MAYEXEC;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530109}
110
Oleg Nesterov57683f72012-07-29 20:22:47 +0200111static unsigned long offset_to_vaddr(struct vm_area_struct *vma, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530112{
Oleg Nesterov57683f72012-07-29 20:22:47 +0200113 return vma->vm_start + offset - ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530114}
115
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200116static loff_t vaddr_to_offset(struct vm_area_struct *vma, unsigned long vaddr)
117{
118 return ((loff_t)vma->vm_pgoff << PAGE_SHIFT) + (vaddr - vma->vm_start);
119}
120
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530121/**
122 * __replace_page - replace page in vma by new page.
123 * based on replace_page in mm/ksm.c
124 *
125 * @vma: vma that holds the pte pointing to page
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200126 * @addr: address the old @page is mapped at
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530127 * @page: the cowed page we are replacing by kpage
128 * @kpage: the modified page we replace page by
129 *
130 * Returns 0 on success, -EFAULT on failure.
131 */
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200132static int __replace_page(struct vm_area_struct *vma, unsigned long addr,
133 struct page *page, struct page *kpage)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530134{
135 struct mm_struct *mm = vma->vm_mm;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200136 spinlock_t *ptl;
137 pte_t *ptep;
Oleg Nesterov9f924482012-07-29 20:22:20 +0200138 int err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530139
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200140 /* For try_to_free_swap() and munlock_vma_page() below */
Oleg Nesterov9f924482012-07-29 20:22:20 +0200141 lock_page(page);
142
143 err = -EAGAIN;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200144 ptep = page_check_address(page, mm, addr, &ptl, 0);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530145 if (!ptep)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200146 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530147
148 get_page(kpage);
149 page_add_new_anon_rmap(kpage, vma, addr);
150
Srikar Dronamraju7396fa82012-04-11 16:05:16 +0530151 if (!PageAnon(page)) {
152 dec_mm_counter(mm, MM_FILEPAGES);
153 inc_mm_counter(mm, MM_ANONPAGES);
154 }
155
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530156 flush_cache_page(vma, addr, pte_pfn(*ptep));
157 ptep_clear_flush(vma, addr, ptep);
158 set_pte_at_notify(mm, addr, ptep, mk_pte(kpage, vma->vm_page_prot));
159
160 page_remove_rmap(page);
161 if (!page_mapped(page))
162 try_to_free_swap(page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530163 pte_unmap_unlock(ptep, ptl);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530164
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200165 if (vma->vm_flags & VM_LOCKED)
166 munlock_vma_page(page);
167 put_page(page);
168
Oleg Nesterov9f924482012-07-29 20:22:20 +0200169 err = 0;
170 unlock:
171 unlock_page(page);
172 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530173}
174
175/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530176 * is_swbp_insn - check if instruction is breakpoint instruction.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530177 * @insn: instruction to be checked.
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530178 * Default implementation of is_swbp_insn
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530179 * Returns true if @insn is a breakpoint instruction.
180 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530181bool __weak is_swbp_insn(uprobe_opcode_t *insn)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530182{
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530183 return *insn == UPROBE_SWBP_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530184}
185
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200186static void copy_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *opcode)
187{
188 void *kaddr = kmap_atomic(page);
189 memcpy(opcode, kaddr + (vaddr & ~PAGE_MASK), UPROBE_SWBP_INSN_SIZE);
190 kunmap_atomic(kaddr);
191}
192
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200193static int verify_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *new_opcode)
194{
195 uprobe_opcode_t old_opcode;
196 bool is_swbp;
197
198 copy_opcode(page, vaddr, &old_opcode);
199 is_swbp = is_swbp_insn(&old_opcode);
200
201 if (is_swbp_insn(new_opcode)) {
202 if (is_swbp) /* register: already installed? */
203 return 0;
204 } else {
205 if (!is_swbp) /* unregister: was it changed by us? */
Oleg Nesterov076a3652012-09-30 18:54:53 +0200206 return 0;
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200207 }
208
209 return 1;
210}
211
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530212/*
213 * NOTE:
214 * Expect the breakpoint instruction to be the smallest size instruction for
215 * the architecture. If an arch has variable length instruction and the
216 * breakpoint instruction is not of the smallest length instruction
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200217 * supported by that architecture then we need to modify is_swbp_at_addr and
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530218 * write_opcode accordingly. This would never be a problem for archs that
219 * have fixed length instructions.
220 */
221
222/*
223 * write_opcode - write the opcode at a given virtual address.
224 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530225 * @vaddr: the virtual address to store the opcode.
226 * @opcode: opcode to be written at @vaddr.
227 *
228 * Called with mm->mmap_sem held (for read and with a reference to
229 * mm).
230 *
231 * For mm @mm, write the opcode at @vaddr.
232 * Return 0 (success) or a negative errno.
233 */
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200234static int write_opcode(struct mm_struct *mm, unsigned long vaddr,
235 uprobe_opcode_t opcode)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530236{
237 struct page *old_page, *new_page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530238 void *vaddr_old, *vaddr_new;
239 struct vm_area_struct *vma;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530240 int ret;
Oleg Nesterovf4030722012-07-29 20:22:12 +0200241
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200242retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530243 /* Read the page with vaddr into memory */
Oleg Nesterov75ed82e2012-09-16 17:20:06 +0200244 ret = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &old_page, &vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530245 if (ret <= 0)
246 return ret;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100247
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200248 ret = verify_opcode(old_page, vaddr, &opcode);
249 if (ret <= 0)
250 goto put_old;
251
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530252 ret = -ENOMEM;
253 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vaddr);
254 if (!new_page)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200255 goto put_old;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530256
257 __SetPageUptodate(new_page);
258
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530259 /* copy the page now that we've got it stable */
260 vaddr_old = kmap_atomic(old_page);
261 vaddr_new = kmap_atomic(new_page);
262
263 memcpy(vaddr_new, vaddr_old, PAGE_SIZE);
Oleg Nesterovd9c4a302012-06-15 17:43:50 +0200264 memcpy(vaddr_new + (vaddr & ~PAGE_MASK), &opcode, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530265
266 kunmap_atomic(vaddr_new);
267 kunmap_atomic(vaddr_old);
268
269 ret = anon_vma_prepare(vma);
270 if (ret)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200271 goto put_new;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530272
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200273 ret = __replace_page(vma, vaddr, old_page, new_page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530274
Oleg Nesterov9f924482012-07-29 20:22:20 +0200275put_new:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530276 page_cache_release(new_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200277put_old:
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100278 put_page(old_page);
279
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200280 if (unlikely(ret == -EAGAIN))
281 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530282 return ret;
283}
284
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530285/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530286 * set_swbp - store breakpoint at a given address.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530287 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530288 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530289 * @vaddr: the virtual address to insert the opcode.
290 *
291 * For mm @mm, store the breakpoint instruction at @vaddr.
292 * Return 0 (success) or a negative errno.
293 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530294int __weak set_swbp(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530295{
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200296 return write_opcode(mm, vaddr, UPROBE_SWBP_INSN);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530297}
298
299/**
300 * set_orig_insn - Restore the original instruction.
301 * @mm: the probed process address space.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530302 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530303 * @vaddr: the virtual address to insert the opcode.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530304 *
305 * For mm @mm, restore the original opcode (opcode) at @vaddr.
306 * Return 0 (success) or a negative errno.
307 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100308int __weak
Oleg Nesterovded86e72012-08-08 18:07:03 +0200309set_orig_insn(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530310{
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200311 return write_opcode(mm, vaddr, *(uprobe_opcode_t *)auprobe->insn);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530312}
313
314static int match_uprobe(struct uprobe *l, struct uprobe *r)
315{
316 if (l->inode < r->inode)
317 return -1;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100318
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530319 if (l->inode > r->inode)
320 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530321
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100322 if (l->offset < r->offset)
323 return -1;
324
325 if (l->offset > r->offset)
326 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530327
328 return 0;
329}
330
331static struct uprobe *__find_uprobe(struct inode *inode, loff_t offset)
332{
333 struct uprobe u = { .inode = inode, .offset = offset };
334 struct rb_node *n = uprobes_tree.rb_node;
335 struct uprobe *uprobe;
336 int match;
337
338 while (n) {
339 uprobe = rb_entry(n, struct uprobe, rb_node);
340 match = match_uprobe(&u, uprobe);
341 if (!match) {
342 atomic_inc(&uprobe->ref);
343 return uprobe;
344 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100345
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530346 if (match < 0)
347 n = n->rb_left;
348 else
349 n = n->rb_right;
350 }
351 return NULL;
352}
353
354/*
355 * Find a uprobe corresponding to a given inode:offset
356 * Acquires uprobes_treelock
357 */
358static struct uprobe *find_uprobe(struct inode *inode, loff_t offset)
359{
360 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530361
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200362 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530363 uprobe = __find_uprobe(inode, offset);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200364 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100365
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530366 return uprobe;
367}
368
369static struct uprobe *__insert_uprobe(struct uprobe *uprobe)
370{
371 struct rb_node **p = &uprobes_tree.rb_node;
372 struct rb_node *parent = NULL;
373 struct uprobe *u;
374 int match;
375
376 while (*p) {
377 parent = *p;
378 u = rb_entry(parent, struct uprobe, rb_node);
379 match = match_uprobe(uprobe, u);
380 if (!match) {
381 atomic_inc(&u->ref);
382 return u;
383 }
384
385 if (match < 0)
386 p = &parent->rb_left;
387 else
388 p = &parent->rb_right;
389
390 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100391
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530392 u = NULL;
393 rb_link_node(&uprobe->rb_node, parent, p);
394 rb_insert_color(&uprobe->rb_node, &uprobes_tree);
395 /* get access + creation ref */
396 atomic_set(&uprobe->ref, 2);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100397
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530398 return u;
399}
400
401/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100402 * Acquire uprobes_treelock.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530403 * Matching uprobe already exists in rbtree;
404 * increment (access refcount) and return the matching uprobe.
405 *
406 * No matching uprobe; insert the uprobe in rb_tree;
407 * get a double refcount (access + creation) and return NULL.
408 */
409static struct uprobe *insert_uprobe(struct uprobe *uprobe)
410{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530411 struct uprobe *u;
412
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200413 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530414 u = __insert_uprobe(uprobe);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200415 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100416
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530417 /* For now assume that the instruction need not be single-stepped */
418 uprobe->flags |= UPROBE_SKIP_SSTEP;
419
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530420 return u;
421}
422
423static void put_uprobe(struct uprobe *uprobe)
424{
425 if (atomic_dec_and_test(&uprobe->ref))
426 kfree(uprobe);
427}
428
429static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
430{
431 struct uprobe *uprobe, *cur_uprobe;
432
433 uprobe = kzalloc(sizeof(struct uprobe), GFP_KERNEL);
434 if (!uprobe)
435 return NULL;
436
437 uprobe->inode = igrab(inode);
438 uprobe->offset = offset;
439 init_rwsem(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530440
441 /* add to uprobes_tree, sorted on inode:offset */
442 cur_uprobe = insert_uprobe(uprobe);
443
444 /* a uprobe exists for this inode:offset combination */
445 if (cur_uprobe) {
446 kfree(uprobe);
447 uprobe = cur_uprobe;
448 iput(inode);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100449 } else {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530450 atomic_inc(&uprobe_events);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100451 }
452
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530453 return uprobe;
454}
455
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530456static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
457{
458 struct uprobe_consumer *uc;
459
460 if (!(uprobe->flags & UPROBE_RUN_HANDLER))
461 return;
462
463 down_read(&uprobe->consumer_rwsem);
464 for (uc = uprobe->consumers; uc; uc = uc->next) {
465 if (!uc->filter || uc->filter(uc, current))
466 uc->handler(uc, regs);
467 }
468 up_read(&uprobe->consumer_rwsem);
469}
470
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530471/* Returns the previous consumer */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100472static struct uprobe_consumer *
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530473consumer_add(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530474{
475 down_write(&uprobe->consumer_rwsem);
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530476 uc->next = uprobe->consumers;
477 uprobe->consumers = uc;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530478 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100479
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530480 return uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530481}
482
483/*
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530484 * For uprobe @uprobe, delete the consumer @uc.
485 * Return true if the @uc is deleted successfully
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530486 * or return false.
487 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530488static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530489{
490 struct uprobe_consumer **con;
491 bool ret = false;
492
493 down_write(&uprobe->consumer_rwsem);
494 for (con = &uprobe->consumers; *con; con = &(*con)->next) {
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530495 if (*con == uc) {
496 *con = uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530497 ret = true;
498 break;
499 }
500 }
501 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100502
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530503 return ret;
504}
505
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530506static int
Oleg Nesterovd4366152012-06-15 17:43:42 +0200507__copy_insn(struct address_space *mapping, struct file *filp, char *insn,
Oleg Nesterov593609a2012-06-15 17:43:59 +0200508 unsigned long nbytes, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530509{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530510 struct page *page;
511 void *vaddr;
Oleg Nesterov593609a2012-06-15 17:43:59 +0200512 unsigned long off;
513 pgoff_t idx;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530514
515 if (!filp)
516 return -EINVAL;
517
Oleg Nesterovcc359d12012-06-15 17:43:25 +0200518 if (!mapping->a_ops->readpage)
519 return -EIO;
520
Oleg Nesterov593609a2012-06-15 17:43:59 +0200521 idx = offset >> PAGE_CACHE_SHIFT;
522 off = offset & ~PAGE_MASK;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530523
524 /*
525 * Ensure that the page that has the original instruction is
526 * populated and in page-cache.
527 */
528 page = read_mapping_page(mapping, idx, filp);
529 if (IS_ERR(page))
530 return PTR_ERR(page);
531
532 vaddr = kmap_atomic(page);
Oleg Nesterov593609a2012-06-15 17:43:59 +0200533 memcpy(insn, vaddr + off, nbytes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530534 kunmap_atomic(vaddr);
535 page_cache_release(page);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100536
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530537 return 0;
538}
539
Oleg Nesterovd4366152012-06-15 17:43:42 +0200540static int copy_insn(struct uprobe *uprobe, struct file *filp)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530541{
542 struct address_space *mapping;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530543 unsigned long nbytes;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100544 int bytes;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530545
Oleg Nesterovd4366152012-06-15 17:43:42 +0200546 nbytes = PAGE_SIZE - (uprobe->offset & ~PAGE_MASK);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530547 mapping = uprobe->inode->i_mapping;
548
549 /* Instruction at end of binary; copy only available bytes */
550 if (uprobe->offset + MAX_UINSN_BYTES > uprobe->inode->i_size)
551 bytes = uprobe->inode->i_size - uprobe->offset;
552 else
553 bytes = MAX_UINSN_BYTES;
554
555 /* Instruction at the page-boundary; copy bytes in second page */
556 if (nbytes < bytes) {
Oleg Nesterovfc36f592012-06-15 17:43:44 +0200557 int err = __copy_insn(mapping, filp, uprobe->arch.insn + nbytes,
558 bytes - nbytes, uprobe->offset + nbytes);
559 if (err)
560 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530561 bytes = nbytes;
562 }
Oleg Nesterovd4366152012-06-15 17:43:42 +0200563 return __copy_insn(mapping, filp, uprobe->arch.insn, bytes, uprobe->offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530564}
565
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530566static int
567install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200568 struct vm_area_struct *vma, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530569{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200570 bool first_uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530571 int ret;
572
573 /*
574 * If probe is being deleted, unregister thread could be done with
575 * the vma-rmap-walk through. Adding a probe now can be fatal since
576 * nobody will be able to cleanup. Also we could be from fork or
577 * mremap path, where the probe might have already been inserted.
578 * Hence behave as if probe already existed.
579 */
580 if (!uprobe->consumers)
Oleg Nesterov78f74112012-08-08 17:35:08 +0200581 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530582
Srikar Dronamraju900771a2012-03-12 14:55:14 +0530583 if (!(uprobe->flags & UPROBE_COPY_INSN)) {
Oleg Nesterovd4366152012-06-15 17:43:42 +0200584 ret = copy_insn(uprobe, vma->vm_file);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530585 if (ret)
586 return ret;
587
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530588 if (is_swbp_insn((uprobe_opcode_t *)uprobe->arch.insn))
Oleg Nesterovc1914a02012-06-15 17:43:31 +0200589 return -ENOTSUPP;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530590
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200591 ret = arch_uprobe_analyze_insn(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530592 if (ret)
593 return ret;
594
Oleg Nesterovd9c4a302012-06-15 17:43:50 +0200595 /* write_opcode() assumes we don't cross page boundary */
596 BUG_ON((uprobe->offset & ~PAGE_MASK) +
597 UPROBE_SWBP_INSN_SIZE > PAGE_SIZE);
598
Oleg Nesterov142b18d2012-09-29 21:56:57 +0200599 smp_wmb(); /* pairs with rmb() in find_active_uprobe() */
Srikar Dronamraju900771a2012-03-12 14:55:14 +0530600 uprobe->flags |= UPROBE_COPY_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530601 }
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530602
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200603 /*
604 * set MMF_HAS_UPROBES in advance for uprobe_pre_sstep_notifier(),
605 * the task can hit this breakpoint right after __replace_page().
606 */
607 first_uprobe = !test_bit(MMF_HAS_UPROBES, &mm->flags);
608 if (first_uprobe)
609 set_bit(MMF_HAS_UPROBES, &mm->flags);
610
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200611 ret = set_swbp(&uprobe->arch, mm, vaddr);
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200612 if (!ret)
613 clear_bit(MMF_RECALC_UPROBES, &mm->flags);
614 else if (first_uprobe)
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200615 clear_bit(MMF_HAS_UPROBES, &mm->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530616
617 return ret;
618}
619
Oleg Nesterov076a3652012-09-30 18:54:53 +0200620static int
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200621remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530622{
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200623 /* can happen if uprobe_register() fails */
624 if (!test_bit(MMF_HAS_UPROBES, &mm->flags))
Oleg Nesterov076a3652012-09-30 18:54:53 +0200625 return 0;
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200626
627 set_bit(MMF_RECALC_UPROBES, &mm->flags);
Oleg Nesterov076a3652012-09-30 18:54:53 +0200628 return set_orig_insn(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530629}
630
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530631/*
Oleg Nesterov778b0322012-05-29 21:30:08 +0200632 * There could be threads that have already hit the breakpoint. They
633 * will recheck the current insn and restart if find_uprobe() fails.
634 * See find_active_uprobe().
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530635 */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530636static void delete_uprobe(struct uprobe *uprobe)
637{
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200638 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530639 rb_erase(&uprobe->rb_node, &uprobes_tree);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200640 spin_unlock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530641 iput(uprobe->inode);
642 put_uprobe(uprobe);
643 atomic_dec(&uprobe_events);
644}
645
Oleg Nesterov26872092012-06-15 17:43:33 +0200646struct map_info {
647 struct map_info *next;
648 struct mm_struct *mm;
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200649 unsigned long vaddr;
Oleg Nesterov26872092012-06-15 17:43:33 +0200650};
651
652static inline struct map_info *free_map_info(struct map_info *info)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530653{
Oleg Nesterov26872092012-06-15 17:43:33 +0200654 struct map_info *next = info->next;
655 kfree(info);
656 return next;
657}
658
659static struct map_info *
660build_map_info(struct address_space *mapping, loff_t offset, bool is_register)
661{
662 unsigned long pgoff = offset >> PAGE_SHIFT;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530663 struct prio_tree_iter iter;
664 struct vm_area_struct *vma;
Oleg Nesterov26872092012-06-15 17:43:33 +0200665 struct map_info *curr = NULL;
666 struct map_info *prev = NULL;
667 struct map_info *info;
668 int more = 0;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100669
Oleg Nesterov26872092012-06-15 17:43:33 +0200670 again:
671 mutex_lock(&mapping->i_mmap_mutex);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530672 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
673 if (!valid_vma(vma, is_register))
674 continue;
675
Oleg Nesterov7a5bfb62012-06-15 17:43:36 +0200676 if (!prev && !more) {
677 /*
678 * Needs GFP_NOWAIT to avoid i_mmap_mutex recursion through
679 * reclaim. This is optimistic, no harm done if it fails.
680 */
681 prev = kmalloc(sizeof(struct map_info),
682 GFP_NOWAIT | __GFP_NOMEMALLOC | __GFP_NOWARN);
683 if (prev)
684 prev->next = NULL;
685 }
Oleg Nesterov26872092012-06-15 17:43:33 +0200686 if (!prev) {
687 more++;
688 continue;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530689 }
690
Oleg Nesterov26872092012-06-15 17:43:33 +0200691 if (!atomic_inc_not_zero(&vma->vm_mm->mm_users))
692 continue;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100693
Oleg Nesterov26872092012-06-15 17:43:33 +0200694 info = prev;
695 prev = prev->next;
696 info->next = curr;
697 curr = info;
698
699 info->mm = vma->vm_mm;
Oleg Nesterov57683f72012-07-29 20:22:47 +0200700 info->vaddr = offset_to_vaddr(vma, offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530701 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530702 mutex_unlock(&mapping->i_mmap_mutex);
703
Oleg Nesterov26872092012-06-15 17:43:33 +0200704 if (!more)
705 goto out;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100706
Oleg Nesterov26872092012-06-15 17:43:33 +0200707 prev = curr;
708 while (curr) {
709 mmput(curr->mm);
710 curr = curr->next;
711 }
712
713 do {
714 info = kmalloc(sizeof(struct map_info), GFP_KERNEL);
715 if (!info) {
716 curr = ERR_PTR(-ENOMEM);
717 goto out;
718 }
719 info->next = prev;
720 prev = info;
721 } while (--more);
722
723 goto again;
724 out:
725 while (prev)
726 prev = free_map_info(prev);
727 return curr;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530728}
729
730static int register_for_each_vma(struct uprobe *uprobe, bool is_register)
731{
Oleg Nesterov26872092012-06-15 17:43:33 +0200732 struct map_info *info;
733 int err = 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530734
Oleg Nesterov26872092012-06-15 17:43:33 +0200735 info = build_map_info(uprobe->inode->i_mapping,
736 uprobe->offset, is_register);
737 if (IS_ERR(info))
738 return PTR_ERR(info);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100739
Oleg Nesterov26872092012-06-15 17:43:33 +0200740 while (info) {
741 struct mm_struct *mm = info->mm;
742 struct vm_area_struct *vma;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100743
Oleg Nesterov076a3652012-09-30 18:54:53 +0200744 if (err && is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200745 goto free;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100746
Oleg Nesterov77fc4af2012-05-29 21:29:28 +0200747 down_write(&mm->mmap_sem);
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200748 vma = find_vma(mm, info->vaddr);
749 if (!vma || !valid_vma(vma, is_register) ||
750 vma->vm_file->f_mapping->host != uprobe->inode)
Oleg Nesterov26872092012-06-15 17:43:33 +0200751 goto unlock;
752
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200753 if (vma->vm_start > info->vaddr ||
754 vaddr_to_offset(vma, info->vaddr) != uprobe->offset)
Oleg Nesterov26872092012-06-15 17:43:33 +0200755 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530756
Oleg Nesterov78f74112012-08-08 17:35:08 +0200757 if (is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200758 err = install_breakpoint(uprobe, mm, vma, info->vaddr);
Oleg Nesterov78f74112012-08-08 17:35:08 +0200759 else
Oleg Nesterov076a3652012-09-30 18:54:53 +0200760 err |= remove_breakpoint(uprobe, mm, info->vaddr);
Oleg Nesterov78f74112012-08-08 17:35:08 +0200761
Oleg Nesterov26872092012-06-15 17:43:33 +0200762 unlock:
763 up_write(&mm->mmap_sem);
764 free:
765 mmput(mm);
766 info = free_map_info(info);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530767 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100768
Oleg Nesterov26872092012-06-15 17:43:33 +0200769 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530770}
771
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100772static int __uprobe_register(struct uprobe *uprobe)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530773{
774 return register_for_each_vma(uprobe, true);
775}
776
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100777static void __uprobe_unregister(struct uprobe *uprobe)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530778{
779 if (!register_for_each_vma(uprobe, false))
780 delete_uprobe(uprobe);
781
782 /* TODO : cant unregister? schedule a worker thread */
783}
784
785/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100786 * uprobe_register - register a probe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530787 * @inode: the file in which the probe has to be placed.
788 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530789 * @uc: information on howto handle the probe..
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530790 *
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100791 * Apart from the access refcount, uprobe_register() takes a creation
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530792 * refcount (thro alloc_uprobe) if and only if this @uprobe is getting
793 * inserted into the rbtree (i.e first consumer for a @inode:@offset
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100794 * tuple). Creation refcount stops uprobe_unregister from freeing the
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530795 * @uprobe even before the register operation is complete. Creation
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530796 * refcount is released when the last @uc for the @uprobe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530797 * unregisters.
798 *
799 * Return errno if it cannot successully install probes
800 * else return 0 (success)
801 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530802int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530803{
804 struct uprobe *uprobe;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100805 int ret;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530806
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530807 if (!inode || !uc || uc->next)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100808 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530809
810 if (offset > i_size_read(inode))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100811 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530812
813 ret = 0;
814 mutex_lock(uprobes_hash(inode));
815 uprobe = alloc_uprobe(inode, offset);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100816
Oleg Nesterova5f658b2012-09-30 18:21:09 +0200817 if (!uprobe) {
818 ret = -ENOMEM;
819 } else if (!consumer_add(uprobe, uc)) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100820 ret = __uprobe_register(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530821 if (ret) {
822 uprobe->consumers = NULL;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100823 __uprobe_unregister(uprobe);
824 } else {
Srikar Dronamraju900771a2012-03-12 14:55:14 +0530825 uprobe->flags |= UPROBE_RUN_HANDLER;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100826 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530827 }
828
829 mutex_unlock(uprobes_hash(inode));
Sebastian Andrzej Siewior6d1d8df2012-08-30 19:26:22 +0200830 if (uprobe)
831 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530832
833 return ret;
834}
835
836/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100837 * uprobe_unregister - unregister a already registered probe.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530838 * @inode: the file in which the probe has to be removed.
839 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530840 * @uc: identify which probe if multiple probes are colocated.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530841 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530842void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530843{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100844 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530845
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530846 if (!inode || !uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530847 return;
848
849 uprobe = find_uprobe(inode, offset);
850 if (!uprobe)
851 return;
852
853 mutex_lock(uprobes_hash(inode));
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530854
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530855 if (consumer_del(uprobe, uc)) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100856 if (!uprobe->consumers) {
857 __uprobe_unregister(uprobe);
Srikar Dronamraju900771a2012-03-12 14:55:14 +0530858 uprobe->flags &= ~UPROBE_RUN_HANDLER;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100859 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530860 }
861
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530862 mutex_unlock(uprobes_hash(inode));
863 if (uprobe)
864 put_uprobe(uprobe);
865}
866
Oleg Nesterov891c3972012-07-29 20:22:40 +0200867static struct rb_node *
868find_node_in_range(struct inode *inode, loff_t min, loff_t max)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530869{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530870 struct rb_node *n = uprobes_tree.rb_node;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530871
872 while (n) {
Oleg Nesterov891c3972012-07-29 20:22:40 +0200873 struct uprobe *u = rb_entry(n, struct uprobe, rb_node);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100874
Oleg Nesterov891c3972012-07-29 20:22:40 +0200875 if (inode < u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530876 n = n->rb_left;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200877 } else if (inode > u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530878 n = n->rb_right;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200879 } else {
880 if (max < u->offset)
881 n = n->rb_left;
882 else if (min > u->offset)
883 n = n->rb_right;
884 else
885 break;
886 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530887 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100888
Oleg Nesterov891c3972012-07-29 20:22:40 +0200889 return n;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530890}
891
892/*
Oleg Nesterov891c3972012-07-29 20:22:40 +0200893 * For a given range in vma, build a list of probes that need to be inserted.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530894 */
Oleg Nesterov891c3972012-07-29 20:22:40 +0200895static void build_probe_list(struct inode *inode,
896 struct vm_area_struct *vma,
897 unsigned long start, unsigned long end,
898 struct list_head *head)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530899{
Oleg Nesterov891c3972012-07-29 20:22:40 +0200900 loff_t min, max;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200901 struct rb_node *n, *t;
902 struct uprobe *u;
903
904 INIT_LIST_HEAD(head);
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200905 min = vaddr_to_offset(vma, start);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200906 max = min + (end - start) - 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530907
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200908 spin_lock(&uprobes_treelock);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200909 n = find_node_in_range(inode, min, max);
910 if (n) {
911 for (t = n; t; t = rb_prev(t)) {
912 u = rb_entry(t, struct uprobe, rb_node);
913 if (u->inode != inode || u->offset < min)
914 break;
915 list_add(&u->pending_list, head);
916 atomic_inc(&u->ref);
917 }
918 for (t = n; (t = rb_next(t)); ) {
919 u = rb_entry(t, struct uprobe, rb_node);
920 if (u->inode != inode || u->offset > max)
921 break;
922 list_add(&u->pending_list, head);
923 atomic_inc(&u->ref);
924 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530925 }
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200926 spin_unlock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530927}
928
929/*
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200930 * Called from mmap_region/vma_adjust with mm->mmap_sem acquired.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530931 *
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200932 * Currently we ignore all errors and always return 0, the callers
933 * can't handle the failure anyway.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530934 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100935int uprobe_mmap(struct vm_area_struct *vma)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530936{
937 struct list_head tmp_list;
Oleg Nesterov665605a2012-07-29 20:22:29 +0200938 struct uprobe *uprobe, *u;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530939 struct inode *inode;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530940
941 if (!atomic_read(&uprobe_events) || !valid_vma(vma, true))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100942 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530943
944 inode = vma->vm_file->f_mapping->host;
945 if (!inode)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100946 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530947
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530948 mutex_lock(uprobes_mmap_hash(inode));
Oleg Nesterov891c3972012-07-29 20:22:40 +0200949 build_probe_list(inode, vma, vma->vm_start, vma->vm_end, &tmp_list);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100950
Oleg Nesterov665605a2012-07-29 20:22:29 +0200951 list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200952 if (!fatal_signal_pending(current)) {
Oleg Nesterov57683f72012-07-29 20:22:47 +0200953 unsigned long vaddr = offset_to_vaddr(vma, uprobe->offset);
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200954 install_breakpoint(uprobe, vma->vm_mm, vma, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530955 }
956 put_uprobe(uprobe);
957 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530958 mutex_unlock(uprobes_mmap_hash(inode));
959
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200960 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530961}
962
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200963static bool
964vma_has_uprobes(struct vm_area_struct *vma, unsigned long start, unsigned long end)
965{
966 loff_t min, max;
967 struct inode *inode;
968 struct rb_node *n;
969
970 inode = vma->vm_file->f_mapping->host;
971
972 min = vaddr_to_offset(vma, start);
973 max = min + (end - start) - 1;
974
975 spin_lock(&uprobes_treelock);
976 n = find_node_in_range(inode, min, max);
977 spin_unlock(&uprobes_treelock);
978
979 return !!n;
980}
981
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530982/*
983 * Called in context of a munmap of a vma.
984 */
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +0530985void uprobe_munmap(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530986{
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530987 if (!atomic_read(&uprobe_events) || !valid_vma(vma, false))
988 return;
989
Oleg Nesterov2fd611a2012-07-29 20:22:31 +0200990 if (!atomic_read(&vma->vm_mm->mm_users)) /* called by mmput() ? */
991 return;
992
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200993 if (!test_bit(MMF_HAS_UPROBES, &vma->vm_mm->flags) ||
994 test_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags))
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200995 return;
996
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200997 if (vma_has_uprobes(vma, start, end))
998 set_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags);
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530999}
1000
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301001/* Slot allocation for XOL */
1002static int xol_add_vma(struct xol_area *area)
1003{
1004 struct mm_struct *mm;
1005 int ret;
1006
1007 area->page = alloc_page(GFP_HIGHUSER);
1008 if (!area->page)
1009 return -ENOMEM;
1010
1011 ret = -EALREADY;
1012 mm = current->mm;
1013
1014 down_write(&mm->mmap_sem);
1015 if (mm->uprobes_state.xol_area)
1016 goto fail;
1017
1018 ret = -ENOMEM;
1019
1020 /* Try to map as high as possible, this is only a hint. */
1021 area->vaddr = get_unmapped_area(NULL, TASK_SIZE - PAGE_SIZE, PAGE_SIZE, 0, 0);
1022 if (area->vaddr & ~PAGE_MASK) {
1023 ret = area->vaddr;
1024 goto fail;
1025 }
1026
1027 ret = install_special_mapping(mm, area->vaddr, PAGE_SIZE,
1028 VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO, &area->page);
1029 if (ret)
1030 goto fail;
1031
1032 smp_wmb(); /* pairs with get_xol_area() */
1033 mm->uprobes_state.xol_area = area;
1034 ret = 0;
1035
1036fail:
1037 up_write(&mm->mmap_sem);
1038 if (ret)
1039 __free_page(area->page);
1040
1041 return ret;
1042}
1043
1044static struct xol_area *get_xol_area(struct mm_struct *mm)
1045{
1046 struct xol_area *area;
1047
1048 area = mm->uprobes_state.xol_area;
1049 smp_read_barrier_depends(); /* pairs with wmb in xol_add_vma() */
1050
1051 return area;
1052}
1053
1054/*
1055 * xol_alloc_area - Allocate process's xol_area.
1056 * This area will be used for storing instructions for execution out of
1057 * line.
1058 *
1059 * Returns the allocated area or NULL.
1060 */
1061static struct xol_area *xol_alloc_area(void)
1062{
1063 struct xol_area *area;
1064
1065 area = kzalloc(sizeof(*area), GFP_KERNEL);
1066 if (unlikely(!area))
1067 return NULL;
1068
1069 area->bitmap = kzalloc(BITS_TO_LONGS(UINSNS_PER_PAGE) * sizeof(long), GFP_KERNEL);
1070
1071 if (!area->bitmap)
1072 goto fail;
1073
1074 init_waitqueue_head(&area->wq);
1075 if (!xol_add_vma(area))
1076 return area;
1077
1078fail:
1079 kfree(area->bitmap);
1080 kfree(area);
1081
1082 return get_xol_area(current->mm);
1083}
1084
1085/*
1086 * uprobe_clear_state - Free the area allocated for slots.
1087 */
1088void uprobe_clear_state(struct mm_struct *mm)
1089{
1090 struct xol_area *area = mm->uprobes_state.xol_area;
1091
1092 if (!area)
1093 return;
1094
1095 put_page(area->page);
1096 kfree(area->bitmap);
1097 kfree(area);
1098}
1099
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001100void uprobe_dup_mmap(struct mm_struct *oldmm, struct mm_struct *newmm)
1101{
Oleg Nesterov61559a82012-08-08 17:17:46 +02001102 newmm->uprobes_state.xol_area = NULL;
1103
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001104 if (test_bit(MMF_HAS_UPROBES, &oldmm->flags)) {
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001105 set_bit(MMF_HAS_UPROBES, &newmm->flags);
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001106 /* unconditionally, dup_mmap() skips VM_DONTCOPY vmas */
1107 set_bit(MMF_RECALC_UPROBES, &newmm->flags);
1108 }
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001109}
1110
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301111/*
1112 * - search for a free slot.
1113 */
1114static unsigned long xol_take_insn_slot(struct xol_area *area)
1115{
1116 unsigned long slot_addr;
1117 int slot_nr;
1118
1119 do {
1120 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE);
1121 if (slot_nr < UINSNS_PER_PAGE) {
1122 if (!test_and_set_bit(slot_nr, area->bitmap))
1123 break;
1124
1125 slot_nr = UINSNS_PER_PAGE;
1126 continue;
1127 }
1128 wait_event(area->wq, (atomic_read(&area->slot_count) < UINSNS_PER_PAGE));
1129 } while (slot_nr >= UINSNS_PER_PAGE);
1130
1131 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES);
1132 atomic_inc(&area->slot_count);
1133
1134 return slot_addr;
1135}
1136
1137/*
1138 * xol_get_insn_slot - If was not allocated a slot, then
1139 * allocate a slot.
1140 * Returns the allocated slot address or 0.
1141 */
1142static unsigned long xol_get_insn_slot(struct uprobe *uprobe, unsigned long slot_addr)
1143{
1144 struct xol_area *area;
1145 unsigned long offset;
1146 void *vaddr;
1147
1148 area = get_xol_area(current->mm);
1149 if (!area) {
1150 area = xol_alloc_area();
1151 if (!area)
1152 return 0;
1153 }
1154 current->utask->xol_vaddr = xol_take_insn_slot(area);
1155
1156 /*
1157 * Initialize the slot if xol_vaddr points to valid
1158 * instruction slot.
1159 */
1160 if (unlikely(!current->utask->xol_vaddr))
1161 return 0;
1162
1163 current->utask->vaddr = slot_addr;
1164 offset = current->utask->xol_vaddr & ~PAGE_MASK;
1165 vaddr = kmap_atomic(area->page);
1166 memcpy(vaddr + offset, uprobe->arch.insn, MAX_UINSN_BYTES);
1167 kunmap_atomic(vaddr);
1168
1169 return current->utask->xol_vaddr;
1170}
1171
1172/*
1173 * xol_free_insn_slot - If slot was earlier allocated by
1174 * @xol_get_insn_slot(), make the slot available for
1175 * subsequent requests.
1176 */
1177static void xol_free_insn_slot(struct task_struct *tsk)
1178{
1179 struct xol_area *area;
1180 unsigned long vma_end;
1181 unsigned long slot_addr;
1182
1183 if (!tsk->mm || !tsk->mm->uprobes_state.xol_area || !tsk->utask)
1184 return;
1185
1186 slot_addr = tsk->utask->xol_vaddr;
1187
1188 if (unlikely(!slot_addr || IS_ERR_VALUE(slot_addr)))
1189 return;
1190
1191 area = tsk->mm->uprobes_state.xol_area;
1192 vma_end = area->vaddr + PAGE_SIZE;
1193 if (area->vaddr <= slot_addr && slot_addr < vma_end) {
1194 unsigned long offset;
1195 int slot_nr;
1196
1197 offset = slot_addr - area->vaddr;
1198 slot_nr = offset / UPROBE_XOL_SLOT_BYTES;
1199 if (slot_nr >= UINSNS_PER_PAGE)
1200 return;
1201
1202 clear_bit(slot_nr, area->bitmap);
1203 atomic_dec(&area->slot_count);
1204 if (waitqueue_active(&area->wq))
1205 wake_up(&area->wq);
1206
1207 tsk->utask->xol_vaddr = 0;
1208 }
1209}
1210
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301211/**
1212 * uprobe_get_swbp_addr - compute address of swbp given post-swbp regs
1213 * @regs: Reflects the saved state of the task after it has hit a breakpoint
1214 * instruction.
1215 * Return the address of the breakpoint instruction.
1216 */
1217unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs)
1218{
1219 return instruction_pointer(regs) - UPROBE_SWBP_INSN_SIZE;
1220}
1221
1222/*
1223 * Called with no locks held.
1224 * Called in context of a exiting or a exec-ing thread.
1225 */
1226void uprobe_free_utask(struct task_struct *t)
1227{
1228 struct uprobe_task *utask = t->utask;
1229
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301230 if (!utask)
1231 return;
1232
1233 if (utask->active_uprobe)
1234 put_uprobe(utask->active_uprobe);
1235
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301236 xol_free_insn_slot(t);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301237 kfree(utask);
1238 t->utask = NULL;
1239}
1240
1241/*
1242 * Called in context of a new clone/fork from copy_process.
1243 */
1244void uprobe_copy_process(struct task_struct *t)
1245{
1246 t->utask = NULL;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301247}
1248
1249/*
1250 * Allocate a uprobe_task object for the task.
1251 * Called when the thread hits a breakpoint for the first time.
1252 *
1253 * Returns:
1254 * - pointer to new uprobe_task on success
1255 * - NULL otherwise
1256 */
1257static struct uprobe_task *add_utask(void)
1258{
1259 struct uprobe_task *utask;
1260
1261 utask = kzalloc(sizeof *utask, GFP_KERNEL);
1262 if (unlikely(!utask))
1263 return NULL;
1264
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301265 current->utask = utask;
1266 return utask;
1267}
1268
1269/* Prepare to single-step probed instruction out of line. */
1270static int
1271pre_ssout(struct uprobe *uprobe, struct pt_regs *regs, unsigned long vaddr)
1272{
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301273 if (xol_get_insn_slot(uprobe, vaddr) && !arch_uprobe_pre_xol(&uprobe->arch, regs))
1274 return 0;
1275
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301276 return -EFAULT;
1277}
1278
1279/*
1280 * If we are singlestepping, then ensure this thread is not connected to
1281 * non-fatal signals until completion of singlestep. When xol insn itself
1282 * triggers the signal, restart the original insn even if the task is
1283 * already SIGKILL'ed (since coredump should report the correct ip). This
1284 * is even more important if the task has a handler for SIGSEGV/etc, The
1285 * _same_ instruction should be repeated again after return from the signal
1286 * handler, and SSTEP can never finish in this case.
1287 */
1288bool uprobe_deny_signal(void)
1289{
1290 struct task_struct *t = current;
1291 struct uprobe_task *utask = t->utask;
1292
1293 if (likely(!utask || !utask->active_uprobe))
1294 return false;
1295
1296 WARN_ON_ONCE(utask->state != UTASK_SSTEP);
1297
1298 if (signal_pending(t)) {
1299 spin_lock_irq(&t->sighand->siglock);
1300 clear_tsk_thread_flag(t, TIF_SIGPENDING);
1301 spin_unlock_irq(&t->sighand->siglock);
1302
1303 if (__fatal_signal_pending(t) || arch_uprobe_xol_was_trapped(t)) {
1304 utask->state = UTASK_SSTEP_TRAPPED;
1305 set_tsk_thread_flag(t, TIF_UPROBE);
1306 set_tsk_thread_flag(t, TIF_NOTIFY_RESUME);
1307 }
1308 }
1309
1310 return true;
1311}
1312
1313/*
1314 * Avoid singlestepping the original instruction if the original instruction
1315 * is a NOP or can be emulated.
1316 */
1317static bool can_skip_sstep(struct uprobe *uprobe, struct pt_regs *regs)
1318{
Oleg Nesterov0578a972012-09-14 18:31:23 +02001319 if (uprobe->flags & UPROBE_SKIP_SSTEP) {
1320 if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
1321 return true;
1322 uprobe->flags &= ~UPROBE_SKIP_SSTEP;
1323 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301324 return false;
1325}
1326
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001327static void mmf_recalc_uprobes(struct mm_struct *mm)
1328{
1329 struct vm_area_struct *vma;
1330
1331 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1332 if (!valid_vma(vma, false))
1333 continue;
1334 /*
1335 * This is not strictly accurate, we can race with
1336 * uprobe_unregister() and see the already removed
1337 * uprobe if delete_uprobe() was not yet called.
1338 */
1339 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end))
1340 return;
1341 }
1342
1343 clear_bit(MMF_HAS_UPROBES, &mm->flags);
1344}
1345
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001346static int is_swbp_at_addr(struct mm_struct *mm, unsigned long vaddr)
1347{
1348 struct page *page;
1349 uprobe_opcode_t opcode;
1350 int result;
1351
1352 pagefault_disable();
1353 result = __copy_from_user_inatomic(&opcode, (void __user*)vaddr,
1354 sizeof(opcode));
1355 pagefault_enable();
1356
1357 if (likely(result == 0))
1358 goto out;
1359
1360 result = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &page, NULL);
1361 if (result < 0)
1362 return result;
1363
1364 copy_opcode(page, vaddr, &opcode);
1365 put_page(page);
1366 out:
1367 return is_swbp_insn(&opcode);
1368}
1369
Oleg Nesterovd790d342012-05-29 21:29:14 +02001370static struct uprobe *find_active_uprobe(unsigned long bp_vaddr, int *is_swbp)
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001371{
1372 struct mm_struct *mm = current->mm;
1373 struct uprobe *uprobe = NULL;
1374 struct vm_area_struct *vma;
1375
1376 down_read(&mm->mmap_sem);
1377 vma = find_vma(mm, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001378 if (vma && vma->vm_start <= bp_vaddr) {
1379 if (valid_vma(vma, false)) {
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001380 struct inode *inode = vma->vm_file->f_mapping->host;
1381 loff_t offset = vaddr_to_offset(vma, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001382
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001383 uprobe = find_uprobe(inode, offset);
1384 }
Oleg Nesterovd790d342012-05-29 21:29:14 +02001385
1386 if (!uprobe)
1387 *is_swbp = is_swbp_at_addr(mm, bp_vaddr);
1388 } else {
1389 *is_swbp = -EFAULT;
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001390 }
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001391
1392 if (!uprobe && test_and_clear_bit(MMF_RECALC_UPROBES, &mm->flags))
1393 mmf_recalc_uprobes(mm);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001394 up_read(&mm->mmap_sem);
1395
1396 return uprobe;
1397}
1398
Sebastian Andrzej Siewior9d778782012-08-07 18:12:28 +02001399void __weak arch_uprobe_enable_step(struct arch_uprobe *arch)
1400{
1401 user_enable_single_step(current);
1402}
1403
1404void __weak arch_uprobe_disable_step(struct arch_uprobe *arch)
1405{
1406 user_disable_single_step(current);
1407}
1408
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301409/*
1410 * Run handler and ask thread to singlestep.
1411 * Ensure all non-fatal signals cannot interrupt thread while it singlesteps.
1412 */
1413static void handle_swbp(struct pt_regs *regs)
1414{
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301415 struct uprobe_task *utask;
1416 struct uprobe *uprobe;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301417 unsigned long bp_vaddr;
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001418 int uninitialized_var(is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301419
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301420 bp_vaddr = uprobe_get_swbp_addr(regs);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001421 uprobe = find_active_uprobe(bp_vaddr, &is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301422
1423 if (!uprobe) {
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001424 if (is_swbp > 0) {
1425 /* No matching uprobe; signal SIGTRAP. */
1426 send_sig(SIGTRAP, current, 0);
1427 } else {
1428 /*
1429 * Either we raced with uprobe_unregister() or we can't
1430 * access this memory. The latter is only possible if
1431 * another thread plays with our ->mm. In both cases
1432 * we can simply restart. If this vma was unmapped we
1433 * can pretend this insn was not executed yet and get
1434 * the (correct) SIGSEGV after restart.
1435 */
1436 instruction_pointer_set(regs, bp_vaddr);
1437 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301438 return;
1439 }
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001440 /*
1441 * TODO: move copy_insn/etc into _register and remove this hack.
1442 * After we hit the bp, _unregister + _register can install the
1443 * new and not-yet-analyzed uprobe at the same address, restart.
1444 */
1445 smp_rmb(); /* pairs with wmb() in install_breakpoint() */
1446 if (unlikely(!(uprobe->flags & UPROBE_COPY_INSN)))
1447 goto restart;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301448
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001449 utask = current->utask;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301450 if (!utask) {
1451 utask = add_utask();
1452 /* Cannot allocate; re-execute the instruction. */
1453 if (!utask)
Oleg Nesterov0578a972012-09-14 18:31:23 +02001454 goto restart;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301455 }
Oleg Nesterov746a9e62012-09-14 18:23:51 +02001456
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301457 handler_chain(uprobe, regs);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001458 if (can_skip_sstep(uprobe, regs))
1459 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301460
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301461 if (!pre_ssout(uprobe, regs, bp_vaddr)) {
Sebastian Andrzej Siewior9d778782012-08-07 18:12:28 +02001462 arch_uprobe_enable_step(&uprobe->arch);
Oleg Nesterov746a9e62012-09-14 18:23:51 +02001463 utask->active_uprobe = uprobe;
1464 utask->state = UTASK_SSTEP;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301465 return;
1466 }
1467
Oleg Nesterov0578a972012-09-14 18:31:23 +02001468restart:
1469 /*
1470 * cannot singlestep; cannot skip instruction;
1471 * re-execute the instruction.
1472 */
1473 instruction_pointer_set(regs, bp_vaddr);
1474out:
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001475 put_uprobe(uprobe);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301476}
1477
1478/*
1479 * Perform required fix-ups and disable singlestep.
1480 * Allow pending signals to take effect.
1481 */
1482static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
1483{
1484 struct uprobe *uprobe;
1485
1486 uprobe = utask->active_uprobe;
1487 if (utask->state == UTASK_SSTEP_ACK)
1488 arch_uprobe_post_xol(&uprobe->arch, regs);
1489 else if (utask->state == UTASK_SSTEP_TRAPPED)
1490 arch_uprobe_abort_xol(&uprobe->arch, regs);
1491 else
1492 WARN_ON_ONCE(1);
1493
Sebastian Andrzej Siewior9d778782012-08-07 18:12:28 +02001494 arch_uprobe_disable_step(&uprobe->arch);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301495 put_uprobe(uprobe);
1496 utask->active_uprobe = NULL;
1497 utask->state = UTASK_RUNNING;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301498 xol_free_insn_slot(current);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301499
1500 spin_lock_irq(&current->sighand->siglock);
1501 recalc_sigpending(); /* see uprobe_deny_signal() */
1502 spin_unlock_irq(&current->sighand->siglock);
1503}
1504
1505/*
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001506 * On breakpoint hit, breakpoint notifier sets the TIF_UPROBE flag and
1507 * allows the thread to return from interrupt. After that handle_swbp()
1508 * sets utask->active_uprobe.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301509 *
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001510 * On singlestep exception, singlestep notifier sets the TIF_UPROBE flag
1511 * and allows the thread to return from interrupt.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301512 *
1513 * While returning to userspace, thread notices the TIF_UPROBE flag and calls
1514 * uprobe_notify_resume().
1515 */
1516void uprobe_notify_resume(struct pt_regs *regs)
1517{
1518 struct uprobe_task *utask;
1519
Oleg Nesterovdb023ea2012-09-14 19:05:46 +02001520 clear_thread_flag(TIF_UPROBE);
1521
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301522 utask = current->utask;
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001523 if (utask && utask->active_uprobe)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301524 handle_singlestep(utask, regs);
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001525 else
1526 handle_swbp(regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301527}
1528
1529/*
1530 * uprobe_pre_sstep_notifier gets called from interrupt context as part of
1531 * notifier mechanism. Set TIF_UPROBE flag and indicate breakpoint hit.
1532 */
1533int uprobe_pre_sstep_notifier(struct pt_regs *regs)
1534{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001535 if (!current->mm || !test_bit(MMF_HAS_UPROBES, &current->mm->flags))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301536 return 0;
1537
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301538 set_thread_flag(TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301539 return 1;
1540}
1541
1542/*
1543 * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier
1544 * mechanism. Set TIF_UPROBE flag and indicate completion of singlestep.
1545 */
1546int uprobe_post_sstep_notifier(struct pt_regs *regs)
1547{
1548 struct uprobe_task *utask = current->utask;
1549
1550 if (!current->mm || !utask || !utask->active_uprobe)
1551 /* task is currently not uprobed */
1552 return 0;
1553
1554 utask->state = UTASK_SSTEP_ACK;
1555 set_thread_flag(TIF_UPROBE);
1556 return 1;
1557}
1558
1559static struct notifier_block uprobe_exception_nb = {
1560 .notifier_call = arch_uprobe_exception_notify,
1561 .priority = INT_MAX-1, /* notified after kprobes, kgdb */
1562};
1563
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301564static int __init init_uprobes(void)
1565{
1566 int i;
1567
1568 for (i = 0; i < UPROBES_HASH_SZ; i++) {
1569 mutex_init(&uprobes_mutex[i]);
1570 mutex_init(&uprobes_mmap_mutex[i]);
1571 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301572
1573 return register_die_notifier(&uprobe_exception_nb);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301574}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301575module_init(init_uprobes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301576
1577static void __exit exit_uprobes(void)
1578{
1579}
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301580module_exit(exit_uprobes);