blob: 3e2996b809be725a4b1e1b8e085555b67fcff2c5 [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{
103 if (!vma->vm_file)
104 return false;
105
106 if (!is_register)
107 return true;
108
Oleg Nesterovea131372012-06-15 17:43:22 +0200109 if ((vma->vm_flags & (VM_HUGETLB|VM_READ|VM_WRITE|VM_EXEC|VM_SHARED))
110 == (VM_READ|VM_EXEC))
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530111 return true;
112
113 return false;
114}
115
Oleg Nesterov57683f72012-07-29 20:22:47 +0200116static unsigned long offset_to_vaddr(struct vm_area_struct *vma, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530117{
Oleg Nesterov57683f72012-07-29 20:22:47 +0200118 return vma->vm_start + offset - ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530119}
120
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200121static loff_t vaddr_to_offset(struct vm_area_struct *vma, unsigned long vaddr)
122{
123 return ((loff_t)vma->vm_pgoff << PAGE_SHIFT) + (vaddr - vma->vm_start);
124}
125
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530126/**
127 * __replace_page - replace page in vma by new page.
128 * based on replace_page in mm/ksm.c
129 *
130 * @vma: vma that holds the pte pointing to page
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200131 * @addr: address the old @page is mapped at
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530132 * @page: the cowed page we are replacing by kpage
133 * @kpage: the modified page we replace page by
134 *
135 * Returns 0 on success, -EFAULT on failure.
136 */
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200137static int __replace_page(struct vm_area_struct *vma, unsigned long addr,
138 struct page *page, struct page *kpage)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530139{
140 struct mm_struct *mm = vma->vm_mm;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200141 spinlock_t *ptl;
142 pte_t *ptep;
Oleg Nesterov9f924482012-07-29 20:22:20 +0200143 int err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530144
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200145 /* For try_to_free_swap() and munlock_vma_page() below */
Oleg Nesterov9f924482012-07-29 20:22:20 +0200146 lock_page(page);
147
148 err = -EAGAIN;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200149 ptep = page_check_address(page, mm, addr, &ptl, 0);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530150 if (!ptep)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200151 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530152
153 get_page(kpage);
154 page_add_new_anon_rmap(kpage, vma, addr);
155
Srikar Dronamraju7396fa82012-04-11 16:05:16 +0530156 if (!PageAnon(page)) {
157 dec_mm_counter(mm, MM_FILEPAGES);
158 inc_mm_counter(mm, MM_ANONPAGES);
159 }
160
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530161 flush_cache_page(vma, addr, pte_pfn(*ptep));
162 ptep_clear_flush(vma, addr, ptep);
163 set_pte_at_notify(mm, addr, ptep, mk_pte(kpage, vma->vm_page_prot));
164
165 page_remove_rmap(page);
166 if (!page_mapped(page))
167 try_to_free_swap(page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530168 pte_unmap_unlock(ptep, ptl);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530169
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200170 if (vma->vm_flags & VM_LOCKED)
171 munlock_vma_page(page);
172 put_page(page);
173
Oleg Nesterov9f924482012-07-29 20:22:20 +0200174 err = 0;
175 unlock:
176 unlock_page(page);
177 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530178}
179
180/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530181 * is_swbp_insn - check if instruction is breakpoint instruction.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530182 * @insn: instruction to be checked.
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530183 * Default implementation of is_swbp_insn
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530184 * Returns true if @insn is a breakpoint instruction.
185 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530186bool __weak is_swbp_insn(uprobe_opcode_t *insn)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530187{
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530188 return *insn == UPROBE_SWBP_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530189}
190
191/*
192 * NOTE:
193 * Expect the breakpoint instruction to be the smallest size instruction for
194 * the architecture. If an arch has variable length instruction and the
195 * breakpoint instruction is not of the smallest length instruction
196 * supported by that architecture then we need to modify read_opcode /
197 * write_opcode accordingly. This would never be a problem for archs that
198 * have fixed length instructions.
199 */
200
201/*
202 * write_opcode - write the opcode at a given virtual address.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530203 * @auprobe: arch breakpointing information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530204 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530205 * @vaddr: the virtual address to store the opcode.
206 * @opcode: opcode to be written at @vaddr.
207 *
208 * Called with mm->mmap_sem held (for read and with a reference to
209 * mm).
210 *
211 * For mm @mm, write the opcode at @vaddr.
212 * Return 0 (success) or a negative errno.
213 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530214static int write_opcode(struct arch_uprobe *auprobe, struct mm_struct *mm,
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530215 unsigned long vaddr, uprobe_opcode_t opcode)
216{
217 struct page *old_page, *new_page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530218 void *vaddr_old, *vaddr_new;
219 struct vm_area_struct *vma;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530220 int ret;
Oleg Nesterovf4030722012-07-29 20:22:12 +0200221
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200222retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530223 /* Read the page with vaddr into memory */
224 ret = get_user_pages(NULL, mm, vaddr, 1, 0, 0, &old_page, &vma);
225 if (ret <= 0)
226 return ret;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100227
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530228 ret = -ENOMEM;
229 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vaddr);
230 if (!new_page)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200231 goto put_old;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530232
233 __SetPageUptodate(new_page);
234
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530235 /* copy the page now that we've got it stable */
236 vaddr_old = kmap_atomic(old_page);
237 vaddr_new = kmap_atomic(new_page);
238
239 memcpy(vaddr_new, vaddr_old, PAGE_SIZE);
Oleg Nesterovd9c4a302012-06-15 17:43:50 +0200240 memcpy(vaddr_new + (vaddr & ~PAGE_MASK), &opcode, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530241
242 kunmap_atomic(vaddr_new);
243 kunmap_atomic(vaddr_old);
244
245 ret = anon_vma_prepare(vma);
246 if (ret)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200247 goto put_new;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530248
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200249 ret = __replace_page(vma, vaddr, old_page, new_page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530250
Oleg Nesterov9f924482012-07-29 20:22:20 +0200251put_new:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530252 page_cache_release(new_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200253put_old:
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100254 put_page(old_page);
255
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200256 if (unlikely(ret == -EAGAIN))
257 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530258 return ret;
259}
260
261/**
262 * read_opcode - read the opcode at a given virtual address.
263 * @mm: the probed process address space.
264 * @vaddr: the virtual address to read the opcode.
265 * @opcode: location to store the read opcode.
266 *
267 * Called with mm->mmap_sem held (for read and with a reference to
268 * mm.
269 *
270 * For mm @mm, read the opcode at @vaddr and store it in @opcode.
271 * Return 0 (success) or a negative errno.
272 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100273static int read_opcode(struct mm_struct *mm, unsigned long vaddr, uprobe_opcode_t *opcode)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530274{
275 struct page *page;
276 void *vaddr_new;
277 int ret;
278
Oleg Nesterova3d7bb42012-05-29 21:27:59 +0200279 ret = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &page, NULL);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530280 if (ret <= 0)
281 return ret;
282
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530283 vaddr_new = kmap_atomic(page);
284 vaddr &= ~PAGE_MASK;
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530285 memcpy(opcode, vaddr_new + vaddr, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530286 kunmap_atomic(vaddr_new);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100287
288 put_page(page);
289
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530290 return 0;
291}
292
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530293static int is_swbp_at_addr(struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530294{
295 uprobe_opcode_t opcode;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100296 int result;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530297
Oleg Nesterovc00b2752012-05-29 21:27:44 +0200298 if (current->mm == mm) {
299 pagefault_disable();
300 result = __copy_from_user_inatomic(&opcode, (void __user*)vaddr,
301 sizeof(opcode));
302 pagefault_enable();
303
304 if (likely(result == 0))
305 goto out;
306 }
307
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100308 result = read_opcode(mm, vaddr, &opcode);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530309 if (result)
310 return result;
Oleg Nesterovc00b2752012-05-29 21:27:44 +0200311out:
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530312 if (is_swbp_insn(&opcode))
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530313 return 1;
314
315 return 0;
316}
317
318/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530319 * set_swbp - store breakpoint at a given address.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530320 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530321 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530322 * @vaddr: the virtual address to insert the opcode.
323 *
324 * For mm @mm, store the breakpoint instruction at @vaddr.
325 * Return 0 (success) or a negative errno.
326 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530327int __weak set_swbp(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530328{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100329 int result;
Peter Zijlstrac5784de2012-06-15 17:43:39 +0200330 /*
331 * See the comment near uprobes_hash().
332 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530333 result = is_swbp_at_addr(mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530334 if (result == 1)
Oleg Nesterov78f74112012-08-08 17:35:08 +0200335 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530336
337 if (result)
338 return result;
339
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530340 return write_opcode(auprobe, mm, vaddr, UPROBE_SWBP_INSN);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530341}
342
343/**
344 * set_orig_insn - Restore the original instruction.
345 * @mm: the probed process address space.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530346 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530347 * @vaddr: the virtual address to insert the opcode.
348 * @verify: if true, verify existance of breakpoint instruction.
349 *
350 * For mm @mm, restore the original opcode (opcode) at @vaddr.
351 * Return 0 (success) or a negative errno.
352 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100353int __weak
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530354set_orig_insn(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr, bool verify)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530355{
356 if (verify) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100357 int result;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530358
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530359 result = is_swbp_at_addr(mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530360 if (!result)
361 return -EINVAL;
362
363 if (result != 1)
364 return result;
365 }
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530366 return write_opcode(auprobe, mm, vaddr, *(uprobe_opcode_t *)auprobe->insn);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530367}
368
369static int match_uprobe(struct uprobe *l, struct uprobe *r)
370{
371 if (l->inode < r->inode)
372 return -1;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100373
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530374 if (l->inode > r->inode)
375 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530376
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100377 if (l->offset < r->offset)
378 return -1;
379
380 if (l->offset > r->offset)
381 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530382
383 return 0;
384}
385
386static struct uprobe *__find_uprobe(struct inode *inode, loff_t offset)
387{
388 struct uprobe u = { .inode = inode, .offset = offset };
389 struct rb_node *n = uprobes_tree.rb_node;
390 struct uprobe *uprobe;
391 int match;
392
393 while (n) {
394 uprobe = rb_entry(n, struct uprobe, rb_node);
395 match = match_uprobe(&u, uprobe);
396 if (!match) {
397 atomic_inc(&uprobe->ref);
398 return uprobe;
399 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100400
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530401 if (match < 0)
402 n = n->rb_left;
403 else
404 n = n->rb_right;
405 }
406 return NULL;
407}
408
409/*
410 * Find a uprobe corresponding to a given inode:offset
411 * Acquires uprobes_treelock
412 */
413static struct uprobe *find_uprobe(struct inode *inode, loff_t offset)
414{
415 struct uprobe *uprobe;
416 unsigned long flags;
417
418 spin_lock_irqsave(&uprobes_treelock, flags);
419 uprobe = __find_uprobe(inode, offset);
420 spin_unlock_irqrestore(&uprobes_treelock, flags);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100421
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530422 return uprobe;
423}
424
425static struct uprobe *__insert_uprobe(struct uprobe *uprobe)
426{
427 struct rb_node **p = &uprobes_tree.rb_node;
428 struct rb_node *parent = NULL;
429 struct uprobe *u;
430 int match;
431
432 while (*p) {
433 parent = *p;
434 u = rb_entry(parent, struct uprobe, rb_node);
435 match = match_uprobe(uprobe, u);
436 if (!match) {
437 atomic_inc(&u->ref);
438 return u;
439 }
440
441 if (match < 0)
442 p = &parent->rb_left;
443 else
444 p = &parent->rb_right;
445
446 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100447
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530448 u = NULL;
449 rb_link_node(&uprobe->rb_node, parent, p);
450 rb_insert_color(&uprobe->rb_node, &uprobes_tree);
451 /* get access + creation ref */
452 atomic_set(&uprobe->ref, 2);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100453
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530454 return u;
455}
456
457/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100458 * Acquire uprobes_treelock.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530459 * Matching uprobe already exists in rbtree;
460 * increment (access refcount) and return the matching uprobe.
461 *
462 * No matching uprobe; insert the uprobe in rb_tree;
463 * get a double refcount (access + creation) and return NULL.
464 */
465static struct uprobe *insert_uprobe(struct uprobe *uprobe)
466{
467 unsigned long flags;
468 struct uprobe *u;
469
470 spin_lock_irqsave(&uprobes_treelock, flags);
471 u = __insert_uprobe(uprobe);
472 spin_unlock_irqrestore(&uprobes_treelock, flags);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100473
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530474 /* For now assume that the instruction need not be single-stepped */
475 uprobe->flags |= UPROBE_SKIP_SSTEP;
476
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530477 return u;
478}
479
480static void put_uprobe(struct uprobe *uprobe)
481{
482 if (atomic_dec_and_test(&uprobe->ref))
483 kfree(uprobe);
484}
485
486static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
487{
488 struct uprobe *uprobe, *cur_uprobe;
489
490 uprobe = kzalloc(sizeof(struct uprobe), GFP_KERNEL);
491 if (!uprobe)
492 return NULL;
493
494 uprobe->inode = igrab(inode);
495 uprobe->offset = offset;
496 init_rwsem(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530497
498 /* add to uprobes_tree, sorted on inode:offset */
499 cur_uprobe = insert_uprobe(uprobe);
500
501 /* a uprobe exists for this inode:offset combination */
502 if (cur_uprobe) {
503 kfree(uprobe);
504 uprobe = cur_uprobe;
505 iput(inode);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100506 } else {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530507 atomic_inc(&uprobe_events);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100508 }
509
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530510 return uprobe;
511}
512
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530513static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
514{
515 struct uprobe_consumer *uc;
516
517 if (!(uprobe->flags & UPROBE_RUN_HANDLER))
518 return;
519
520 down_read(&uprobe->consumer_rwsem);
521 for (uc = uprobe->consumers; uc; uc = uc->next) {
522 if (!uc->filter || uc->filter(uc, current))
523 uc->handler(uc, regs);
524 }
525 up_read(&uprobe->consumer_rwsem);
526}
527
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530528/* Returns the previous consumer */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100529static struct uprobe_consumer *
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530530consumer_add(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530531{
532 down_write(&uprobe->consumer_rwsem);
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530533 uc->next = uprobe->consumers;
534 uprobe->consumers = uc;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530535 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100536
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530537 return uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530538}
539
540/*
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530541 * For uprobe @uprobe, delete the consumer @uc.
542 * Return true if the @uc is deleted successfully
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530543 * or return false.
544 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530545static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530546{
547 struct uprobe_consumer **con;
548 bool ret = false;
549
550 down_write(&uprobe->consumer_rwsem);
551 for (con = &uprobe->consumers; *con; con = &(*con)->next) {
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530552 if (*con == uc) {
553 *con = uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530554 ret = true;
555 break;
556 }
557 }
558 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100559
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530560 return ret;
561}
562
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530563static int
Oleg Nesterovd4366152012-06-15 17:43:42 +0200564__copy_insn(struct address_space *mapping, struct file *filp, char *insn,
Oleg Nesterov593609a2012-06-15 17:43:59 +0200565 unsigned long nbytes, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530566{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530567 struct page *page;
568 void *vaddr;
Oleg Nesterov593609a2012-06-15 17:43:59 +0200569 unsigned long off;
570 pgoff_t idx;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530571
572 if (!filp)
573 return -EINVAL;
574
Oleg Nesterovcc359d12012-06-15 17:43:25 +0200575 if (!mapping->a_ops->readpage)
576 return -EIO;
577
Oleg Nesterov593609a2012-06-15 17:43:59 +0200578 idx = offset >> PAGE_CACHE_SHIFT;
579 off = offset & ~PAGE_MASK;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530580
581 /*
582 * Ensure that the page that has the original instruction is
583 * populated and in page-cache.
584 */
585 page = read_mapping_page(mapping, idx, filp);
586 if (IS_ERR(page))
587 return PTR_ERR(page);
588
589 vaddr = kmap_atomic(page);
Oleg Nesterov593609a2012-06-15 17:43:59 +0200590 memcpy(insn, vaddr + off, nbytes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530591 kunmap_atomic(vaddr);
592 page_cache_release(page);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100593
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530594 return 0;
595}
596
Oleg Nesterovd4366152012-06-15 17:43:42 +0200597static int copy_insn(struct uprobe *uprobe, struct file *filp)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530598{
599 struct address_space *mapping;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530600 unsigned long nbytes;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100601 int bytes;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530602
Oleg Nesterovd4366152012-06-15 17:43:42 +0200603 nbytes = PAGE_SIZE - (uprobe->offset & ~PAGE_MASK);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530604 mapping = uprobe->inode->i_mapping;
605
606 /* Instruction at end of binary; copy only available bytes */
607 if (uprobe->offset + MAX_UINSN_BYTES > uprobe->inode->i_size)
608 bytes = uprobe->inode->i_size - uprobe->offset;
609 else
610 bytes = MAX_UINSN_BYTES;
611
612 /* Instruction at the page-boundary; copy bytes in second page */
613 if (nbytes < bytes) {
Oleg Nesterovfc36f592012-06-15 17:43:44 +0200614 int err = __copy_insn(mapping, filp, uprobe->arch.insn + nbytes,
615 bytes - nbytes, uprobe->offset + nbytes);
616 if (err)
617 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530618 bytes = nbytes;
619 }
Oleg Nesterovd4366152012-06-15 17:43:42 +0200620 return __copy_insn(mapping, filp, uprobe->arch.insn, bytes, uprobe->offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530621}
622
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530623/*
624 * How mm->uprobes_state.count gets updated
625 * uprobe_mmap() increments the count if
626 * - it successfully adds a breakpoint.
627 * - it cannot add a breakpoint, but sees that there is a underlying
628 * breakpoint (via a is_swbp_at_addr()).
629 *
630 * uprobe_munmap() decrements the count if
631 * - it sees a underlying breakpoint, (via is_swbp_at_addr)
632 * (Subsequent uprobe_unregister wouldnt find the breakpoint
633 * unless a uprobe_mmap kicks in, since the old vma would be
634 * dropped just after uprobe_munmap.)
635 *
636 * uprobe_register increments the count if:
637 * - it successfully adds a breakpoint.
638 *
639 * uprobe_unregister decrements the count if:
640 * - it sees a underlying breakpoint and removes successfully.
641 * (via is_swbp_at_addr)
642 * (Subsequent uprobe_munmap wouldnt find the breakpoint
643 * since there is no underlying breakpoint after the
644 * breakpoint removal.)
645 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530646static int
647install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200648 struct vm_area_struct *vma, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530649{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530650 int ret;
651
652 /*
653 * If probe is being deleted, unregister thread could be done with
654 * the vma-rmap-walk through. Adding a probe now can be fatal since
655 * nobody will be able to cleanup. Also we could be from fork or
656 * mremap path, where the probe might have already been inserted.
657 * Hence behave as if probe already existed.
658 */
659 if (!uprobe->consumers)
Oleg Nesterov78f74112012-08-08 17:35:08 +0200660 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530661
Srikar Dronamraju900771a2012-03-12 14:55:14 +0530662 if (!(uprobe->flags & UPROBE_COPY_INSN)) {
Oleg Nesterovd4366152012-06-15 17:43:42 +0200663 ret = copy_insn(uprobe, vma->vm_file);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530664 if (ret)
665 return ret;
666
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530667 if (is_swbp_insn((uprobe_opcode_t *)uprobe->arch.insn))
Oleg Nesterovc1914a02012-06-15 17:43:31 +0200668 return -ENOTSUPP;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530669
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200670 ret = arch_uprobe_analyze_insn(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530671 if (ret)
672 return ret;
673
Oleg Nesterovd9c4a302012-06-15 17:43:50 +0200674 /* write_opcode() assumes we don't cross page boundary */
675 BUG_ON((uprobe->offset & ~PAGE_MASK) +
676 UPROBE_SWBP_INSN_SIZE > PAGE_SIZE);
677
Srikar Dronamraju900771a2012-03-12 14:55:14 +0530678 uprobe->flags |= UPROBE_COPY_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530679 }
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530680
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200681 ret = set_swbp(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530682
683 return ret;
684}
685
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530686static void
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200687remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530688{
Oleg Nesterov647c42d2012-08-06 13:15:09 +0200689 set_orig_insn(&uprobe->arch, mm, vaddr, true);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530690}
691
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530692/*
Oleg Nesterov778b0322012-05-29 21:30:08 +0200693 * There could be threads that have already hit the breakpoint. They
694 * will recheck the current insn and restart if find_uprobe() fails.
695 * See find_active_uprobe().
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530696 */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530697static void delete_uprobe(struct uprobe *uprobe)
698{
699 unsigned long flags;
700
701 spin_lock_irqsave(&uprobes_treelock, flags);
702 rb_erase(&uprobe->rb_node, &uprobes_tree);
703 spin_unlock_irqrestore(&uprobes_treelock, flags);
704 iput(uprobe->inode);
705 put_uprobe(uprobe);
706 atomic_dec(&uprobe_events);
707}
708
Oleg Nesterov26872092012-06-15 17:43:33 +0200709struct map_info {
710 struct map_info *next;
711 struct mm_struct *mm;
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200712 unsigned long vaddr;
Oleg Nesterov26872092012-06-15 17:43:33 +0200713};
714
715static inline struct map_info *free_map_info(struct map_info *info)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530716{
Oleg Nesterov26872092012-06-15 17:43:33 +0200717 struct map_info *next = info->next;
718 kfree(info);
719 return next;
720}
721
722static struct map_info *
723build_map_info(struct address_space *mapping, loff_t offset, bool is_register)
724{
725 unsigned long pgoff = offset >> PAGE_SHIFT;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530726 struct prio_tree_iter iter;
727 struct vm_area_struct *vma;
Oleg Nesterov26872092012-06-15 17:43:33 +0200728 struct map_info *curr = NULL;
729 struct map_info *prev = NULL;
730 struct map_info *info;
731 int more = 0;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100732
Oleg Nesterov26872092012-06-15 17:43:33 +0200733 again:
734 mutex_lock(&mapping->i_mmap_mutex);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530735 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
736 if (!valid_vma(vma, is_register))
737 continue;
738
Oleg Nesterov7a5bfb62012-06-15 17:43:36 +0200739 if (!prev && !more) {
740 /*
741 * Needs GFP_NOWAIT to avoid i_mmap_mutex recursion through
742 * reclaim. This is optimistic, no harm done if it fails.
743 */
744 prev = kmalloc(sizeof(struct map_info),
745 GFP_NOWAIT | __GFP_NOMEMALLOC | __GFP_NOWARN);
746 if (prev)
747 prev->next = NULL;
748 }
Oleg Nesterov26872092012-06-15 17:43:33 +0200749 if (!prev) {
750 more++;
751 continue;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530752 }
753
Oleg Nesterov26872092012-06-15 17:43:33 +0200754 if (!atomic_inc_not_zero(&vma->vm_mm->mm_users))
755 continue;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100756
Oleg Nesterov26872092012-06-15 17:43:33 +0200757 info = prev;
758 prev = prev->next;
759 info->next = curr;
760 curr = info;
761
762 info->mm = vma->vm_mm;
Oleg Nesterov57683f72012-07-29 20:22:47 +0200763 info->vaddr = offset_to_vaddr(vma, offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530764 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530765 mutex_unlock(&mapping->i_mmap_mutex);
766
Oleg Nesterov26872092012-06-15 17:43:33 +0200767 if (!more)
768 goto out;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100769
Oleg Nesterov26872092012-06-15 17:43:33 +0200770 prev = curr;
771 while (curr) {
772 mmput(curr->mm);
773 curr = curr->next;
774 }
775
776 do {
777 info = kmalloc(sizeof(struct map_info), GFP_KERNEL);
778 if (!info) {
779 curr = ERR_PTR(-ENOMEM);
780 goto out;
781 }
782 info->next = prev;
783 prev = info;
784 } while (--more);
785
786 goto again;
787 out:
788 while (prev)
789 prev = free_map_info(prev);
790 return curr;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530791}
792
793static int register_for_each_vma(struct uprobe *uprobe, bool is_register)
794{
Oleg Nesterov26872092012-06-15 17:43:33 +0200795 struct map_info *info;
796 int err = 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530797
Oleg Nesterov26872092012-06-15 17:43:33 +0200798 info = build_map_info(uprobe->inode->i_mapping,
799 uprobe->offset, is_register);
800 if (IS_ERR(info))
801 return PTR_ERR(info);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100802
Oleg Nesterov26872092012-06-15 17:43:33 +0200803 while (info) {
804 struct mm_struct *mm = info->mm;
805 struct vm_area_struct *vma;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100806
Oleg Nesterov26872092012-06-15 17:43:33 +0200807 if (err)
808 goto free;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100809
Oleg Nesterov77fc4af2012-05-29 21:29:28 +0200810 down_write(&mm->mmap_sem);
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200811 vma = find_vma(mm, info->vaddr);
812 if (!vma || !valid_vma(vma, is_register) ||
813 vma->vm_file->f_mapping->host != uprobe->inode)
Oleg Nesterov26872092012-06-15 17:43:33 +0200814 goto unlock;
815
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200816 if (vma->vm_start > info->vaddr ||
817 vaddr_to_offset(vma, info->vaddr) != uprobe->offset)
Oleg Nesterov26872092012-06-15 17:43:33 +0200818 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530819
Oleg Nesterov78f74112012-08-08 17:35:08 +0200820 if (is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200821 err = install_breakpoint(uprobe, mm, vma, info->vaddr);
Oleg Nesterov78f74112012-08-08 17:35:08 +0200822 else
Oleg Nesterov26872092012-06-15 17:43:33 +0200823 remove_breakpoint(uprobe, mm, info->vaddr);
Oleg Nesterov78f74112012-08-08 17:35:08 +0200824
Oleg Nesterov26872092012-06-15 17:43:33 +0200825 unlock:
826 up_write(&mm->mmap_sem);
827 free:
828 mmput(mm);
829 info = free_map_info(info);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530830 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100831
Oleg Nesterov26872092012-06-15 17:43:33 +0200832 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530833}
834
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100835static int __uprobe_register(struct uprobe *uprobe)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530836{
837 return register_for_each_vma(uprobe, true);
838}
839
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100840static void __uprobe_unregister(struct uprobe *uprobe)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530841{
842 if (!register_for_each_vma(uprobe, false))
843 delete_uprobe(uprobe);
844
845 /* TODO : cant unregister? schedule a worker thread */
846}
847
848/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100849 * uprobe_register - register a probe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530850 * @inode: the file in which the probe has to be placed.
851 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530852 * @uc: information on howto handle the probe..
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530853 *
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100854 * Apart from the access refcount, uprobe_register() takes a creation
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530855 * refcount (thro alloc_uprobe) if and only if this @uprobe is getting
856 * inserted into the rbtree (i.e first consumer for a @inode:@offset
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100857 * tuple). Creation refcount stops uprobe_unregister from freeing the
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530858 * @uprobe even before the register operation is complete. Creation
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530859 * refcount is released when the last @uc for the @uprobe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530860 * unregisters.
861 *
862 * Return errno if it cannot successully install probes
863 * else return 0 (success)
864 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530865int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530866{
867 struct uprobe *uprobe;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100868 int ret;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530869
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530870 if (!inode || !uc || uc->next)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100871 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530872
873 if (offset > i_size_read(inode))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100874 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530875
876 ret = 0;
877 mutex_lock(uprobes_hash(inode));
878 uprobe = alloc_uprobe(inode, offset);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100879
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530880 if (uprobe && !consumer_add(uprobe, uc)) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100881 ret = __uprobe_register(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530882 if (ret) {
883 uprobe->consumers = NULL;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100884 __uprobe_unregister(uprobe);
885 } else {
Srikar Dronamraju900771a2012-03-12 14:55:14 +0530886 uprobe->flags |= UPROBE_RUN_HANDLER;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100887 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530888 }
889
890 mutex_unlock(uprobes_hash(inode));
891 put_uprobe(uprobe);
892
893 return ret;
894}
895
896/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100897 * uprobe_unregister - unregister a already registered probe.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530898 * @inode: the file in which the probe has to be removed.
899 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530900 * @uc: identify which probe if multiple probes are colocated.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530901 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530902void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530903{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100904 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530905
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530906 if (!inode || !uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530907 return;
908
909 uprobe = find_uprobe(inode, offset);
910 if (!uprobe)
911 return;
912
913 mutex_lock(uprobes_hash(inode));
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530914
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530915 if (consumer_del(uprobe, uc)) {
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100916 if (!uprobe->consumers) {
917 __uprobe_unregister(uprobe);
Srikar Dronamraju900771a2012-03-12 14:55:14 +0530918 uprobe->flags &= ~UPROBE_RUN_HANDLER;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100919 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530920 }
921
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530922 mutex_unlock(uprobes_hash(inode));
923 if (uprobe)
924 put_uprobe(uprobe);
925}
926
Oleg Nesterov891c3972012-07-29 20:22:40 +0200927static struct rb_node *
928find_node_in_range(struct inode *inode, loff_t min, loff_t max)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530929{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530930 struct rb_node *n = uprobes_tree.rb_node;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530931
932 while (n) {
Oleg Nesterov891c3972012-07-29 20:22:40 +0200933 struct uprobe *u = rb_entry(n, struct uprobe, rb_node);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100934
Oleg Nesterov891c3972012-07-29 20:22:40 +0200935 if (inode < u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530936 n = n->rb_left;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200937 } else if (inode > u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530938 n = n->rb_right;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200939 } else {
940 if (max < u->offset)
941 n = n->rb_left;
942 else if (min > u->offset)
943 n = n->rb_right;
944 else
945 break;
946 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530947 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100948
Oleg Nesterov891c3972012-07-29 20:22:40 +0200949 return n;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530950}
951
952/*
Oleg Nesterov891c3972012-07-29 20:22:40 +0200953 * For a given range in vma, build a list of probes that need to be inserted.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530954 */
Oleg Nesterov891c3972012-07-29 20:22:40 +0200955static void build_probe_list(struct inode *inode,
956 struct vm_area_struct *vma,
957 unsigned long start, unsigned long end,
958 struct list_head *head)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530959{
Oleg Nesterov891c3972012-07-29 20:22:40 +0200960 loff_t min, max;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530961 unsigned long flags;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200962 struct rb_node *n, *t;
963 struct uprobe *u;
964
965 INIT_LIST_HEAD(head);
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200966 min = vaddr_to_offset(vma, start);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200967 max = min + (end - start) - 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530968
969 spin_lock_irqsave(&uprobes_treelock, flags);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200970 n = find_node_in_range(inode, min, max);
971 if (n) {
972 for (t = n; t; t = rb_prev(t)) {
973 u = rb_entry(t, struct uprobe, rb_node);
974 if (u->inode != inode || u->offset < min)
975 break;
976 list_add(&u->pending_list, head);
977 atomic_inc(&u->ref);
978 }
979 for (t = n; (t = rb_next(t)); ) {
980 u = rb_entry(t, struct uprobe, rb_node);
981 if (u->inode != inode || u->offset > max)
982 break;
983 list_add(&u->pending_list, head);
984 atomic_inc(&u->ref);
985 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530986 }
987 spin_unlock_irqrestore(&uprobes_treelock, flags);
988}
989
990/*
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200991 * Called from mmap_region/vma_adjust with mm->mmap_sem acquired.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530992 *
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200993 * Currently we ignore all errors and always return 0, the callers
994 * can't handle the failure anyway.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530995 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100996int uprobe_mmap(struct vm_area_struct *vma)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530997{
998 struct list_head tmp_list;
Oleg Nesterov665605a2012-07-29 20:22:29 +0200999 struct uprobe *uprobe, *u;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301000 struct inode *inode;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301001
1002 if (!atomic_read(&uprobe_events) || !valid_vma(vma, true))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001003 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301004
1005 inode = vma->vm_file->f_mapping->host;
1006 if (!inode)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001007 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301008
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301009 mutex_lock(uprobes_mmap_hash(inode));
Oleg Nesterov891c3972012-07-29 20:22:40 +02001010 build_probe_list(inode, vma, vma->vm_start, vma->vm_end, &tmp_list);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001011
Oleg Nesterov665605a2012-07-29 20:22:29 +02001012 list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001013 if (!fatal_signal_pending(current)) {
Oleg Nesterov57683f72012-07-29 20:22:47 +02001014 unsigned long vaddr = offset_to_vaddr(vma, uprobe->offset);
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001015 install_breakpoint(uprobe, vma->vm_mm, vma, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301016 }
1017 put_uprobe(uprobe);
1018 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301019 mutex_unlock(uprobes_mmap_hash(inode));
1020
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001021 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301022}
1023
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301024/*
1025 * Called in context of a munmap of a vma.
1026 */
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301027void uprobe_munmap(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301028{
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301029 if (!atomic_read(&uprobe_events) || !valid_vma(vma, false))
1030 return;
1031
Oleg Nesterov2fd611a2012-07-29 20:22:31 +02001032 if (!atomic_read(&vma->vm_mm->mm_users)) /* called by mmput() ? */
1033 return;
1034
Oleg Nesterovf1a45d02012-08-06 14:13:23 +02001035 /* TODO: unmapping uprobe(s) will need more work */
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301036}
1037
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301038/* Slot allocation for XOL */
1039static int xol_add_vma(struct xol_area *area)
1040{
1041 struct mm_struct *mm;
1042 int ret;
1043
1044 area->page = alloc_page(GFP_HIGHUSER);
1045 if (!area->page)
1046 return -ENOMEM;
1047
1048 ret = -EALREADY;
1049 mm = current->mm;
1050
1051 down_write(&mm->mmap_sem);
1052 if (mm->uprobes_state.xol_area)
1053 goto fail;
1054
1055 ret = -ENOMEM;
1056
1057 /* Try to map as high as possible, this is only a hint. */
1058 area->vaddr = get_unmapped_area(NULL, TASK_SIZE - PAGE_SIZE, PAGE_SIZE, 0, 0);
1059 if (area->vaddr & ~PAGE_MASK) {
1060 ret = area->vaddr;
1061 goto fail;
1062 }
1063
1064 ret = install_special_mapping(mm, area->vaddr, PAGE_SIZE,
1065 VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO, &area->page);
1066 if (ret)
1067 goto fail;
1068
1069 smp_wmb(); /* pairs with get_xol_area() */
1070 mm->uprobes_state.xol_area = area;
1071 ret = 0;
1072
1073fail:
1074 up_write(&mm->mmap_sem);
1075 if (ret)
1076 __free_page(area->page);
1077
1078 return ret;
1079}
1080
1081static struct xol_area *get_xol_area(struct mm_struct *mm)
1082{
1083 struct xol_area *area;
1084
1085 area = mm->uprobes_state.xol_area;
1086 smp_read_barrier_depends(); /* pairs with wmb in xol_add_vma() */
1087
1088 return area;
1089}
1090
1091/*
1092 * xol_alloc_area - Allocate process's xol_area.
1093 * This area will be used for storing instructions for execution out of
1094 * line.
1095 *
1096 * Returns the allocated area or NULL.
1097 */
1098static struct xol_area *xol_alloc_area(void)
1099{
1100 struct xol_area *area;
1101
1102 area = kzalloc(sizeof(*area), GFP_KERNEL);
1103 if (unlikely(!area))
1104 return NULL;
1105
1106 area->bitmap = kzalloc(BITS_TO_LONGS(UINSNS_PER_PAGE) * sizeof(long), GFP_KERNEL);
1107
1108 if (!area->bitmap)
1109 goto fail;
1110
1111 init_waitqueue_head(&area->wq);
1112 if (!xol_add_vma(area))
1113 return area;
1114
1115fail:
1116 kfree(area->bitmap);
1117 kfree(area);
1118
1119 return get_xol_area(current->mm);
1120}
1121
1122/*
1123 * uprobe_clear_state - Free the area allocated for slots.
1124 */
1125void uprobe_clear_state(struct mm_struct *mm)
1126{
1127 struct xol_area *area = mm->uprobes_state.xol_area;
1128
1129 if (!area)
1130 return;
1131
1132 put_page(area->page);
1133 kfree(area->bitmap);
1134 kfree(area);
1135}
1136
1137/*
1138 * uprobe_reset_state - Free the area allocated for slots.
1139 */
1140void uprobe_reset_state(struct mm_struct *mm)
1141{
1142 mm->uprobes_state.xol_area = NULL;
1143}
1144
1145/*
1146 * - search for a free slot.
1147 */
1148static unsigned long xol_take_insn_slot(struct xol_area *area)
1149{
1150 unsigned long slot_addr;
1151 int slot_nr;
1152
1153 do {
1154 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE);
1155 if (slot_nr < UINSNS_PER_PAGE) {
1156 if (!test_and_set_bit(slot_nr, area->bitmap))
1157 break;
1158
1159 slot_nr = UINSNS_PER_PAGE;
1160 continue;
1161 }
1162 wait_event(area->wq, (atomic_read(&area->slot_count) < UINSNS_PER_PAGE));
1163 } while (slot_nr >= UINSNS_PER_PAGE);
1164
1165 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES);
1166 atomic_inc(&area->slot_count);
1167
1168 return slot_addr;
1169}
1170
1171/*
1172 * xol_get_insn_slot - If was not allocated a slot, then
1173 * allocate a slot.
1174 * Returns the allocated slot address or 0.
1175 */
1176static unsigned long xol_get_insn_slot(struct uprobe *uprobe, unsigned long slot_addr)
1177{
1178 struct xol_area *area;
1179 unsigned long offset;
1180 void *vaddr;
1181
1182 area = get_xol_area(current->mm);
1183 if (!area) {
1184 area = xol_alloc_area();
1185 if (!area)
1186 return 0;
1187 }
1188 current->utask->xol_vaddr = xol_take_insn_slot(area);
1189
1190 /*
1191 * Initialize the slot if xol_vaddr points to valid
1192 * instruction slot.
1193 */
1194 if (unlikely(!current->utask->xol_vaddr))
1195 return 0;
1196
1197 current->utask->vaddr = slot_addr;
1198 offset = current->utask->xol_vaddr & ~PAGE_MASK;
1199 vaddr = kmap_atomic(area->page);
1200 memcpy(vaddr + offset, uprobe->arch.insn, MAX_UINSN_BYTES);
1201 kunmap_atomic(vaddr);
1202
1203 return current->utask->xol_vaddr;
1204}
1205
1206/*
1207 * xol_free_insn_slot - If slot was earlier allocated by
1208 * @xol_get_insn_slot(), make the slot available for
1209 * subsequent requests.
1210 */
1211static void xol_free_insn_slot(struct task_struct *tsk)
1212{
1213 struct xol_area *area;
1214 unsigned long vma_end;
1215 unsigned long slot_addr;
1216
1217 if (!tsk->mm || !tsk->mm->uprobes_state.xol_area || !tsk->utask)
1218 return;
1219
1220 slot_addr = tsk->utask->xol_vaddr;
1221
1222 if (unlikely(!slot_addr || IS_ERR_VALUE(slot_addr)))
1223 return;
1224
1225 area = tsk->mm->uprobes_state.xol_area;
1226 vma_end = area->vaddr + PAGE_SIZE;
1227 if (area->vaddr <= slot_addr && slot_addr < vma_end) {
1228 unsigned long offset;
1229 int slot_nr;
1230
1231 offset = slot_addr - area->vaddr;
1232 slot_nr = offset / UPROBE_XOL_SLOT_BYTES;
1233 if (slot_nr >= UINSNS_PER_PAGE)
1234 return;
1235
1236 clear_bit(slot_nr, area->bitmap);
1237 atomic_dec(&area->slot_count);
1238 if (waitqueue_active(&area->wq))
1239 wake_up(&area->wq);
1240
1241 tsk->utask->xol_vaddr = 0;
1242 }
1243}
1244
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301245/**
1246 * uprobe_get_swbp_addr - compute address of swbp given post-swbp regs
1247 * @regs: Reflects the saved state of the task after it has hit a breakpoint
1248 * instruction.
1249 * Return the address of the breakpoint instruction.
1250 */
1251unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs)
1252{
1253 return instruction_pointer(regs) - UPROBE_SWBP_INSN_SIZE;
1254}
1255
1256/*
1257 * Called with no locks held.
1258 * Called in context of a exiting or a exec-ing thread.
1259 */
1260void uprobe_free_utask(struct task_struct *t)
1261{
1262 struct uprobe_task *utask = t->utask;
1263
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301264 if (!utask)
1265 return;
1266
1267 if (utask->active_uprobe)
1268 put_uprobe(utask->active_uprobe);
1269
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301270 xol_free_insn_slot(t);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301271 kfree(utask);
1272 t->utask = NULL;
1273}
1274
1275/*
1276 * Called in context of a new clone/fork from copy_process.
1277 */
1278void uprobe_copy_process(struct task_struct *t)
1279{
1280 t->utask = NULL;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301281}
1282
1283/*
1284 * Allocate a uprobe_task object for the task.
1285 * Called when the thread hits a breakpoint for the first time.
1286 *
1287 * Returns:
1288 * - pointer to new uprobe_task on success
1289 * - NULL otherwise
1290 */
1291static struct uprobe_task *add_utask(void)
1292{
1293 struct uprobe_task *utask;
1294
1295 utask = kzalloc(sizeof *utask, GFP_KERNEL);
1296 if (unlikely(!utask))
1297 return NULL;
1298
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301299 current->utask = utask;
1300 return utask;
1301}
1302
1303/* Prepare to single-step probed instruction out of line. */
1304static int
1305pre_ssout(struct uprobe *uprobe, struct pt_regs *regs, unsigned long vaddr)
1306{
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301307 if (xol_get_insn_slot(uprobe, vaddr) && !arch_uprobe_pre_xol(&uprobe->arch, regs))
1308 return 0;
1309
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301310 return -EFAULT;
1311}
1312
1313/*
1314 * If we are singlestepping, then ensure this thread is not connected to
1315 * non-fatal signals until completion of singlestep. When xol insn itself
1316 * triggers the signal, restart the original insn even if the task is
1317 * already SIGKILL'ed (since coredump should report the correct ip). This
1318 * is even more important if the task has a handler for SIGSEGV/etc, The
1319 * _same_ instruction should be repeated again after return from the signal
1320 * handler, and SSTEP can never finish in this case.
1321 */
1322bool uprobe_deny_signal(void)
1323{
1324 struct task_struct *t = current;
1325 struct uprobe_task *utask = t->utask;
1326
1327 if (likely(!utask || !utask->active_uprobe))
1328 return false;
1329
1330 WARN_ON_ONCE(utask->state != UTASK_SSTEP);
1331
1332 if (signal_pending(t)) {
1333 spin_lock_irq(&t->sighand->siglock);
1334 clear_tsk_thread_flag(t, TIF_SIGPENDING);
1335 spin_unlock_irq(&t->sighand->siglock);
1336
1337 if (__fatal_signal_pending(t) || arch_uprobe_xol_was_trapped(t)) {
1338 utask->state = UTASK_SSTEP_TRAPPED;
1339 set_tsk_thread_flag(t, TIF_UPROBE);
1340 set_tsk_thread_flag(t, TIF_NOTIFY_RESUME);
1341 }
1342 }
1343
1344 return true;
1345}
1346
1347/*
1348 * Avoid singlestepping the original instruction if the original instruction
1349 * is a NOP or can be emulated.
1350 */
1351static bool can_skip_sstep(struct uprobe *uprobe, struct pt_regs *regs)
1352{
1353 if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
1354 return true;
1355
1356 uprobe->flags &= ~UPROBE_SKIP_SSTEP;
1357 return false;
1358}
1359
Oleg Nesterovd790d342012-05-29 21:29:14 +02001360static struct uprobe *find_active_uprobe(unsigned long bp_vaddr, int *is_swbp)
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001361{
1362 struct mm_struct *mm = current->mm;
1363 struct uprobe *uprobe = NULL;
1364 struct vm_area_struct *vma;
1365
1366 down_read(&mm->mmap_sem);
1367 vma = find_vma(mm, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001368 if (vma && vma->vm_start <= bp_vaddr) {
1369 if (valid_vma(vma, false)) {
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001370 struct inode *inode = vma->vm_file->f_mapping->host;
1371 loff_t offset = vaddr_to_offset(vma, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001372
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001373 uprobe = find_uprobe(inode, offset);
1374 }
Oleg Nesterovd790d342012-05-29 21:29:14 +02001375
1376 if (!uprobe)
1377 *is_swbp = is_swbp_at_addr(mm, bp_vaddr);
1378 } else {
1379 *is_swbp = -EFAULT;
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001380 }
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001381 up_read(&mm->mmap_sem);
1382
1383 return uprobe;
1384}
1385
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301386/*
1387 * Run handler and ask thread to singlestep.
1388 * Ensure all non-fatal signals cannot interrupt thread while it singlesteps.
1389 */
1390static void handle_swbp(struct pt_regs *regs)
1391{
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301392 struct uprobe_task *utask;
1393 struct uprobe *uprobe;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301394 unsigned long bp_vaddr;
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001395 int uninitialized_var(is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301396
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301397 bp_vaddr = uprobe_get_swbp_addr(regs);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001398 uprobe = find_active_uprobe(bp_vaddr, &is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301399
1400 if (!uprobe) {
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001401 if (is_swbp > 0) {
1402 /* No matching uprobe; signal SIGTRAP. */
1403 send_sig(SIGTRAP, current, 0);
1404 } else {
1405 /*
1406 * Either we raced with uprobe_unregister() or we can't
1407 * access this memory. The latter is only possible if
1408 * another thread plays with our ->mm. In both cases
1409 * we can simply restart. If this vma was unmapped we
1410 * can pretend this insn was not executed yet and get
1411 * the (correct) SIGSEGV after restart.
1412 */
1413 instruction_pointer_set(regs, bp_vaddr);
1414 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301415 return;
1416 }
1417
1418 utask = current->utask;
1419 if (!utask) {
1420 utask = add_utask();
1421 /* Cannot allocate; re-execute the instruction. */
1422 if (!utask)
1423 goto cleanup_ret;
1424 }
1425 utask->active_uprobe = uprobe;
1426 handler_chain(uprobe, regs);
1427 if (uprobe->flags & UPROBE_SKIP_SSTEP && can_skip_sstep(uprobe, regs))
1428 goto cleanup_ret;
1429
1430 utask->state = UTASK_SSTEP;
1431 if (!pre_ssout(uprobe, regs, bp_vaddr)) {
1432 user_enable_single_step(current);
1433 return;
1434 }
1435
1436cleanup_ret:
1437 if (utask) {
1438 utask->active_uprobe = NULL;
1439 utask->state = UTASK_RUNNING;
1440 }
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001441 if (!(uprobe->flags & UPROBE_SKIP_SSTEP))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301442
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001443 /*
1444 * cannot singlestep; cannot skip instruction;
1445 * re-execute the instruction.
1446 */
1447 instruction_pointer_set(regs, bp_vaddr);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301448
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001449 put_uprobe(uprobe);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301450}
1451
1452/*
1453 * Perform required fix-ups and disable singlestep.
1454 * Allow pending signals to take effect.
1455 */
1456static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
1457{
1458 struct uprobe *uprobe;
1459
1460 uprobe = utask->active_uprobe;
1461 if (utask->state == UTASK_SSTEP_ACK)
1462 arch_uprobe_post_xol(&uprobe->arch, regs);
1463 else if (utask->state == UTASK_SSTEP_TRAPPED)
1464 arch_uprobe_abort_xol(&uprobe->arch, regs);
1465 else
1466 WARN_ON_ONCE(1);
1467
1468 put_uprobe(uprobe);
1469 utask->active_uprobe = NULL;
1470 utask->state = UTASK_RUNNING;
1471 user_disable_single_step(current);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301472 xol_free_insn_slot(current);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301473
1474 spin_lock_irq(&current->sighand->siglock);
1475 recalc_sigpending(); /* see uprobe_deny_signal() */
1476 spin_unlock_irq(&current->sighand->siglock);
1477}
1478
1479/*
1480 * On breakpoint hit, breakpoint notifier sets the TIF_UPROBE flag. (and on
1481 * subsequent probe hits on the thread sets the state to UTASK_BP_HIT) and
1482 * allows the thread to return from interrupt.
1483 *
1484 * On singlestep exception, singlestep notifier sets the TIF_UPROBE flag and
1485 * also sets the state to UTASK_SSTEP_ACK and allows the thread to return from
1486 * interrupt.
1487 *
1488 * While returning to userspace, thread notices the TIF_UPROBE flag and calls
1489 * uprobe_notify_resume().
1490 */
1491void uprobe_notify_resume(struct pt_regs *regs)
1492{
1493 struct uprobe_task *utask;
1494
1495 utask = current->utask;
1496 if (!utask || utask->state == UTASK_BP_HIT)
1497 handle_swbp(regs);
1498 else
1499 handle_singlestep(utask, regs);
1500}
1501
1502/*
1503 * uprobe_pre_sstep_notifier gets called from interrupt context as part of
1504 * notifier mechanism. Set TIF_UPROBE flag and indicate breakpoint hit.
1505 */
1506int uprobe_pre_sstep_notifier(struct pt_regs *regs)
1507{
1508 struct uprobe_task *utask;
1509
Oleg Nesterov647c42d2012-08-06 13:15:09 +02001510 if (!current->mm)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301511 return 0;
1512
1513 utask = current->utask;
1514 if (utask)
1515 utask->state = UTASK_BP_HIT;
1516
1517 set_thread_flag(TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301518
1519 return 1;
1520}
1521
1522/*
1523 * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier
1524 * mechanism. Set TIF_UPROBE flag and indicate completion of singlestep.
1525 */
1526int uprobe_post_sstep_notifier(struct pt_regs *regs)
1527{
1528 struct uprobe_task *utask = current->utask;
1529
1530 if (!current->mm || !utask || !utask->active_uprobe)
1531 /* task is currently not uprobed */
1532 return 0;
1533
1534 utask->state = UTASK_SSTEP_ACK;
1535 set_thread_flag(TIF_UPROBE);
1536 return 1;
1537}
1538
1539static struct notifier_block uprobe_exception_nb = {
1540 .notifier_call = arch_uprobe_exception_notify,
1541 .priority = INT_MAX-1, /* notified after kprobes, kgdb */
1542};
1543
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301544static int __init init_uprobes(void)
1545{
1546 int i;
1547
1548 for (i = 0; i < UPROBES_HASH_SZ; i++) {
1549 mutex_init(&uprobes_mutex[i]);
1550 mutex_init(&uprobes_mmap_mutex[i]);
1551 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301552
1553 return register_die_notifier(&uprobe_exception_nb);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301554}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301555module_init(init_uprobes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301556
1557static void __exit exit_uprobes(void)
1558{
1559}
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301560module_exit(exit_uprobes);