blob: 358baddc8ac2e2d7eb189841fb511757e3e9c174 [file] [log] [blame]
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01002 * User-space Probes (UProbes)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05303 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
Ingo Molnar35aa6212012-02-22 11:37:29 +010018 * Copyright (C) IBM Corporation, 2008-2012
Srikar Dronamraju2b144492012-02-09 14:56:42 +053019 * Authors:
20 * Srikar Dronamraju
21 * Jim Keniston
Ingo Molnar35aa6212012-02-22 11:37:29 +010022 * Copyright (C) 2011-2012 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Srikar Dronamraju2b144492012-02-09 14:56:42 +053023 */
24
25#include <linux/kernel.h>
26#include <linux/highmem.h>
27#include <linux/pagemap.h> /* read_mapping_page */
28#include <linux/slab.h>
29#include <linux/sched.h>
30#include <linux/rmap.h> /* anon_vma_prepare */
31#include <linux/mmu_notifier.h> /* set_pte_at_notify */
32#include <linux/swap.h> /* try_to_free_swap */
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +053033#include <linux/ptrace.h> /* user_enable_single_step */
34#include <linux/kdebug.h> /* notifier mechanism */
Oleg Nesterov194f8dc2012-07-29 20:22:49 +020035#include "../../mm/internal.h" /* munlock_vma_page */
Oleg Nesterov32cdba12012-11-14 19:03:42 +010036#include <linux/percpu-rwsem.h>
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010037
Srikar Dronamraju2b144492012-02-09 14:56:42 +053038#include <linux/uprobes.h>
39
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +053040#define UINSNS_PER_PAGE (PAGE_SIZE/UPROBE_XOL_SLOT_BYTES)
41#define MAX_UPROBE_XOL_SLOTS UINSNS_PER_PAGE
42
Srikar Dronamraju2b144492012-02-09 14:56:42 +053043static struct rb_root uprobes_tree = RB_ROOT;
Oleg Nesterov441f1eb2012-11-25 19:54:29 +010044/*
45 * allows us to skip the uprobe_mmap if there are no uprobe events active
46 * at this time. Probably a fine grained per inode count is better?
47 */
48#define no_uprobe_events() RB_EMPTY_ROOT(&uprobes_tree)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010049
Srikar Dronamraju2b144492012-02-09 14:56:42 +053050static DEFINE_SPINLOCK(uprobes_treelock); /* serialize rbtree access */
51
52#define UPROBES_HASH_SZ 13
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010053
Peter Zijlstrac5784de2012-06-15 17:43:39 +020054/*
55 * We need separate register/unregister and mmap/munmap lock hashes because
56 * of mmap_sem nesting.
57 *
58 * uprobe_register() needs to install probes on (potentially) all processes
59 * and thus needs to acquire multiple mmap_sems (consequtively, not
60 * concurrently), whereas uprobe_mmap() is called while holding mmap_sem
61 * for the particular process doing the mmap.
62 *
63 * uprobe_register()->register_for_each_vma() needs to drop/acquire mmap_sem
64 * because of lock order against i_mmap_mutex. This means there's a hole in
65 * the register vma iteration where a mmap() can happen.
66 *
67 * Thus uprobe_register() can race with uprobe_mmap() and we can try and
68 * install a probe where one is already installed.
69 */
70
Srikar Dronamraju2b144492012-02-09 14:56:42 +053071/* serialize (un)register */
72static struct mutex uprobes_mutex[UPROBES_HASH_SZ];
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010073
74#define uprobes_hash(v) (&uprobes_mutex[((unsigned long)(v)) % UPROBES_HASH_SZ])
Srikar Dronamraju2b144492012-02-09 14:56:42 +053075
76/* serialize uprobe->pending_list */
77static struct mutex uprobes_mmap_mutex[UPROBES_HASH_SZ];
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010078#define uprobes_mmap_hash(v) (&uprobes_mmap_mutex[((unsigned long)(v)) % UPROBES_HASH_SZ])
Srikar Dronamraju2b144492012-02-09 14:56:42 +053079
Oleg Nesterov32cdba12012-11-14 19:03:42 +010080static struct percpu_rw_semaphore dup_mmap_sem;
81
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020082/* Have a copy of original instruction */
Oleg Nesterov71434f22012-09-30 21:12:44 +020083#define UPROBE_COPY_INSN 0
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020084/* Can skip singlestep */
Oleg Nesterovbb929282012-11-24 18:27:08 +010085#define UPROBE_SKIP_SSTEP 1
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020086
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053087struct uprobe {
88 struct rb_node rb_node; /* node in the rb tree */
89 atomic_t ref;
Oleg Nesterove591c8d2012-11-24 17:29:40 +010090 struct rw_semaphore register_rwsem;
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053091 struct rw_semaphore consumer_rwsem;
92 struct list_head pending_list;
93 struct uprobe_consumer *consumers;
94 struct inode *inode; /* Also hold a ref to inode */
95 loff_t offset;
Oleg Nesterov71434f22012-09-30 21:12:44 +020096 unsigned long flags;
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053097 struct arch_uprobe arch;
98};
99
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530100/*
101 * valid_vma: Verify if the specified vma is an executable vma
102 * Relax restrictions while unregistering: vm_flags might have
103 * changed after breakpoint was inserted.
104 * - is_register: indicates if we are in register context.
105 * - Return 1 if the specified virtual address is in an
106 * executable vma.
107 */
108static bool valid_vma(struct vm_area_struct *vma, bool is_register)
109{
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200110 vm_flags_t flags = VM_HUGETLB | VM_MAYEXEC | VM_SHARED;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530111
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200112 if (is_register)
113 flags |= VM_WRITE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530114
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200115 return vma->vm_file && (vma->vm_flags & flags) == VM_MAYEXEC;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530116}
117
Oleg Nesterov57683f72012-07-29 20:22:47 +0200118static unsigned long offset_to_vaddr(struct vm_area_struct *vma, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530119{
Oleg Nesterov57683f72012-07-29 20:22:47 +0200120 return vma->vm_start + offset - ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530121}
122
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200123static loff_t vaddr_to_offset(struct vm_area_struct *vma, unsigned long vaddr)
124{
125 return ((loff_t)vma->vm_pgoff << PAGE_SHIFT) + (vaddr - vma->vm_start);
126}
127
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530128/**
129 * __replace_page - replace page in vma by new page.
130 * based on replace_page in mm/ksm.c
131 *
132 * @vma: vma that holds the pte pointing to page
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200133 * @addr: address the old @page is mapped at
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530134 * @page: the cowed page we are replacing by kpage
135 * @kpage: the modified page we replace page by
136 *
137 * Returns 0 on success, -EFAULT on failure.
138 */
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200139static int __replace_page(struct vm_area_struct *vma, unsigned long addr,
140 struct page *page, struct page *kpage)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530141{
142 struct mm_struct *mm = vma->vm_mm;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200143 spinlock_t *ptl;
144 pte_t *ptep;
Oleg Nesterov9f924482012-07-29 20:22:20 +0200145 int err;
Haggai Eran6bdb9132012-10-08 16:33:35 -0700146 /* For mmu_notifiers */
147 const unsigned long mmun_start = addr;
148 const unsigned long mmun_end = addr + PAGE_SIZE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530149
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200150 /* For try_to_free_swap() and munlock_vma_page() below */
Oleg Nesterov9f924482012-07-29 20:22:20 +0200151 lock_page(page);
152
Haggai Eran6bdb9132012-10-08 16:33:35 -0700153 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200154 err = -EAGAIN;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200155 ptep = page_check_address(page, mm, addr, &ptl, 0);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530156 if (!ptep)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200157 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530158
159 get_page(kpage);
160 page_add_new_anon_rmap(kpage, vma, addr);
161
Srikar Dronamraju7396fa82012-04-11 16:05:16 +0530162 if (!PageAnon(page)) {
163 dec_mm_counter(mm, MM_FILEPAGES);
164 inc_mm_counter(mm, MM_ANONPAGES);
165 }
166
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530167 flush_cache_page(vma, addr, pte_pfn(*ptep));
168 ptep_clear_flush(vma, addr, ptep);
169 set_pte_at_notify(mm, addr, ptep, mk_pte(kpage, vma->vm_page_prot));
170
171 page_remove_rmap(page);
172 if (!page_mapped(page))
173 try_to_free_swap(page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530174 pte_unmap_unlock(ptep, ptl);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530175
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200176 if (vma->vm_flags & VM_LOCKED)
177 munlock_vma_page(page);
178 put_page(page);
179
Oleg Nesterov9f924482012-07-29 20:22:20 +0200180 err = 0;
181 unlock:
Haggai Eran6bdb9132012-10-08 16:33:35 -0700182 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200183 unlock_page(page);
184 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530185}
186
187/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530188 * is_swbp_insn - check if instruction is breakpoint instruction.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530189 * @insn: instruction to be checked.
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530190 * Default implementation of is_swbp_insn
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530191 * Returns true if @insn is a breakpoint instruction.
192 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530193bool __weak is_swbp_insn(uprobe_opcode_t *insn)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530194{
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530195 return *insn == UPROBE_SWBP_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530196}
197
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200198static void copy_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *opcode)
199{
200 void *kaddr = kmap_atomic(page);
201 memcpy(opcode, kaddr + (vaddr & ~PAGE_MASK), UPROBE_SWBP_INSN_SIZE);
202 kunmap_atomic(kaddr);
203}
204
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200205static int verify_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *new_opcode)
206{
207 uprobe_opcode_t old_opcode;
208 bool is_swbp;
209
210 copy_opcode(page, vaddr, &old_opcode);
211 is_swbp = is_swbp_insn(&old_opcode);
212
213 if (is_swbp_insn(new_opcode)) {
214 if (is_swbp) /* register: already installed? */
215 return 0;
216 } else {
217 if (!is_swbp) /* unregister: was it changed by us? */
Oleg Nesterov076a3652012-09-30 18:54:53 +0200218 return 0;
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200219 }
220
221 return 1;
222}
223
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530224/*
225 * NOTE:
226 * Expect the breakpoint instruction to be the smallest size instruction for
227 * the architecture. If an arch has variable length instruction and the
228 * breakpoint instruction is not of the smallest length instruction
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200229 * supported by that architecture then we need to modify is_swbp_at_addr and
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530230 * write_opcode accordingly. This would never be a problem for archs that
231 * have fixed length instructions.
232 */
233
234/*
235 * write_opcode - write the opcode at a given virtual address.
236 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530237 * @vaddr: the virtual address to store the opcode.
238 * @opcode: opcode to be written at @vaddr.
239 *
240 * Called with mm->mmap_sem held (for read and with a reference to
241 * mm).
242 *
243 * For mm @mm, write the opcode at @vaddr.
244 * Return 0 (success) or a negative errno.
245 */
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200246static int write_opcode(struct mm_struct *mm, unsigned long vaddr,
247 uprobe_opcode_t opcode)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530248{
249 struct page *old_page, *new_page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530250 void *vaddr_old, *vaddr_new;
251 struct vm_area_struct *vma;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530252 int ret;
Oleg Nesterovf4030722012-07-29 20:22:12 +0200253
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200254retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530255 /* Read the page with vaddr into memory */
Oleg Nesterov75ed82e2012-09-16 17:20:06 +0200256 ret = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &old_page, &vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530257 if (ret <= 0)
258 return ret;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100259
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200260 ret = verify_opcode(old_page, vaddr, &opcode);
261 if (ret <= 0)
262 goto put_old;
263
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530264 ret = -ENOMEM;
265 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vaddr);
266 if (!new_page)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200267 goto put_old;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530268
269 __SetPageUptodate(new_page);
270
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530271 /* copy the page now that we've got it stable */
272 vaddr_old = kmap_atomic(old_page);
273 vaddr_new = kmap_atomic(new_page);
274
275 memcpy(vaddr_new, vaddr_old, PAGE_SIZE);
Oleg Nesterovd9c4a302012-06-15 17:43:50 +0200276 memcpy(vaddr_new + (vaddr & ~PAGE_MASK), &opcode, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530277
278 kunmap_atomic(vaddr_new);
279 kunmap_atomic(vaddr_old);
280
281 ret = anon_vma_prepare(vma);
282 if (ret)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200283 goto put_new;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530284
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200285 ret = __replace_page(vma, vaddr, old_page, new_page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530286
Oleg Nesterov9f924482012-07-29 20:22:20 +0200287put_new:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530288 page_cache_release(new_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200289put_old:
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100290 put_page(old_page);
291
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200292 if (unlikely(ret == -EAGAIN))
293 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530294 return ret;
295}
296
297/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530298 * set_swbp - store breakpoint at a given address.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530299 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530300 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530301 * @vaddr: the virtual address to insert the opcode.
302 *
303 * For mm @mm, store the breakpoint instruction at @vaddr.
304 * Return 0 (success) or a negative errno.
305 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530306int __weak set_swbp(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530307{
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200308 return write_opcode(mm, vaddr, UPROBE_SWBP_INSN);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530309}
310
311/**
312 * set_orig_insn - Restore the original instruction.
313 * @mm: the probed process address space.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530314 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530315 * @vaddr: the virtual address to insert the opcode.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530316 *
317 * For mm @mm, restore the original opcode (opcode) at @vaddr.
318 * Return 0 (success) or a negative errno.
319 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100320int __weak
Oleg Nesterovded86e72012-08-08 18:07:03 +0200321set_orig_insn(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530322{
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200323 return write_opcode(mm, vaddr, *(uprobe_opcode_t *)auprobe->insn);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530324}
325
326static int match_uprobe(struct uprobe *l, struct uprobe *r)
327{
328 if (l->inode < r->inode)
329 return -1;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100330
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530331 if (l->inode > r->inode)
332 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530333
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100334 if (l->offset < r->offset)
335 return -1;
336
337 if (l->offset > r->offset)
338 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530339
340 return 0;
341}
342
343static struct uprobe *__find_uprobe(struct inode *inode, loff_t offset)
344{
345 struct uprobe u = { .inode = inode, .offset = offset };
346 struct rb_node *n = uprobes_tree.rb_node;
347 struct uprobe *uprobe;
348 int match;
349
350 while (n) {
351 uprobe = rb_entry(n, struct uprobe, rb_node);
352 match = match_uprobe(&u, uprobe);
353 if (!match) {
354 atomic_inc(&uprobe->ref);
355 return uprobe;
356 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100357
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530358 if (match < 0)
359 n = n->rb_left;
360 else
361 n = n->rb_right;
362 }
363 return NULL;
364}
365
366/*
367 * Find a uprobe corresponding to a given inode:offset
368 * Acquires uprobes_treelock
369 */
370static struct uprobe *find_uprobe(struct inode *inode, loff_t offset)
371{
372 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530373
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200374 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530375 uprobe = __find_uprobe(inode, offset);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200376 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100377
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530378 return uprobe;
379}
380
381static struct uprobe *__insert_uprobe(struct uprobe *uprobe)
382{
383 struct rb_node **p = &uprobes_tree.rb_node;
384 struct rb_node *parent = NULL;
385 struct uprobe *u;
386 int match;
387
388 while (*p) {
389 parent = *p;
390 u = rb_entry(parent, struct uprobe, rb_node);
391 match = match_uprobe(uprobe, u);
392 if (!match) {
393 atomic_inc(&u->ref);
394 return u;
395 }
396
397 if (match < 0)
398 p = &parent->rb_left;
399 else
400 p = &parent->rb_right;
401
402 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100403
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530404 u = NULL;
405 rb_link_node(&uprobe->rb_node, parent, p);
406 rb_insert_color(&uprobe->rb_node, &uprobes_tree);
407 /* get access + creation ref */
408 atomic_set(&uprobe->ref, 2);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100409
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530410 return u;
411}
412
413/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100414 * Acquire uprobes_treelock.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530415 * Matching uprobe already exists in rbtree;
416 * increment (access refcount) and return the matching uprobe.
417 *
418 * No matching uprobe; insert the uprobe in rb_tree;
419 * get a double refcount (access + creation) and return NULL.
420 */
421static struct uprobe *insert_uprobe(struct uprobe *uprobe)
422{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530423 struct uprobe *u;
424
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200425 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530426 u = __insert_uprobe(uprobe);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200427 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100428
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530429 return u;
430}
431
432static void put_uprobe(struct uprobe *uprobe)
433{
434 if (atomic_dec_and_test(&uprobe->ref))
435 kfree(uprobe);
436}
437
438static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
439{
440 struct uprobe *uprobe, *cur_uprobe;
441
442 uprobe = kzalloc(sizeof(struct uprobe), GFP_KERNEL);
443 if (!uprobe)
444 return NULL;
445
446 uprobe->inode = igrab(inode);
447 uprobe->offset = offset;
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100448 init_rwsem(&uprobe->register_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530449 init_rwsem(&uprobe->consumer_rwsem);
Oleg Nesterovbbc33d02012-11-21 16:55:38 +0100450 /* For now assume that the instruction need not be single-stepped */
451 __set_bit(UPROBE_SKIP_SSTEP, &uprobe->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530452
453 /* add to uprobes_tree, sorted on inode:offset */
454 cur_uprobe = insert_uprobe(uprobe);
455
456 /* a uprobe exists for this inode:offset combination */
457 if (cur_uprobe) {
458 kfree(uprobe);
459 uprobe = cur_uprobe;
460 iput(inode);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100461 }
462
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530463 return uprobe;
464}
465
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530466static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
467{
468 struct uprobe_consumer *uc;
469
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100470 down_read(&uprobe->register_rwsem);
Oleg Nesterovfe20d712012-11-21 17:32:30 +0100471 for (uc = uprobe->consumers; uc; uc = uc->next)
472 uc->handler(uc, regs);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100473 up_read(&uprobe->register_rwsem);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530474}
475
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100476static void consumer_add(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530477{
478 down_write(&uprobe->consumer_rwsem);
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530479 uc->next = uprobe->consumers;
480 uprobe->consumers = uc;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530481 up_write(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530482}
483
484/*
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530485 * For uprobe @uprobe, delete the consumer @uc.
486 * Return true if the @uc is deleted successfully
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530487 * or return false.
488 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530489static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530490{
491 struct uprobe_consumer **con;
492 bool ret = false;
493
494 down_write(&uprobe->consumer_rwsem);
495 for (con = &uprobe->consumers; *con; con = &(*con)->next) {
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530496 if (*con == uc) {
497 *con = uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530498 ret = true;
499 break;
500 }
501 }
502 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100503
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530504 return ret;
505}
506
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530507static int
Oleg Nesterovd4366152012-06-15 17:43:42 +0200508__copy_insn(struct address_space *mapping, struct file *filp, char *insn,
Oleg Nesterov593609a2012-06-15 17:43:59 +0200509 unsigned long nbytes, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530510{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530511 struct page *page;
512 void *vaddr;
Oleg Nesterov593609a2012-06-15 17:43:59 +0200513 unsigned long off;
514 pgoff_t idx;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530515
516 if (!filp)
517 return -EINVAL;
518
Oleg Nesterovcc359d12012-06-15 17:43:25 +0200519 if (!mapping->a_ops->readpage)
520 return -EIO;
521
Oleg Nesterov593609a2012-06-15 17:43:59 +0200522 idx = offset >> PAGE_CACHE_SHIFT;
523 off = offset & ~PAGE_MASK;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530524
525 /*
526 * Ensure that the page that has the original instruction is
527 * populated and in page-cache.
528 */
529 page = read_mapping_page(mapping, idx, filp);
530 if (IS_ERR(page))
531 return PTR_ERR(page);
532
533 vaddr = kmap_atomic(page);
Oleg Nesterov593609a2012-06-15 17:43:59 +0200534 memcpy(insn, vaddr + off, nbytes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530535 kunmap_atomic(vaddr);
536 page_cache_release(page);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100537
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530538 return 0;
539}
540
Oleg Nesterovd4366152012-06-15 17:43:42 +0200541static int copy_insn(struct uprobe *uprobe, struct file *filp)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530542{
543 struct address_space *mapping;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530544 unsigned long nbytes;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100545 int bytes;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530546
Oleg Nesterovd4366152012-06-15 17:43:42 +0200547 nbytes = PAGE_SIZE - (uprobe->offset & ~PAGE_MASK);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530548 mapping = uprobe->inode->i_mapping;
549
550 /* Instruction at end of binary; copy only available bytes */
551 if (uprobe->offset + MAX_UINSN_BYTES > uprobe->inode->i_size)
552 bytes = uprobe->inode->i_size - uprobe->offset;
553 else
554 bytes = MAX_UINSN_BYTES;
555
556 /* Instruction at the page-boundary; copy bytes in second page */
557 if (nbytes < bytes) {
Oleg Nesterovfc36f592012-06-15 17:43:44 +0200558 int err = __copy_insn(mapping, filp, uprobe->arch.insn + nbytes,
559 bytes - nbytes, uprobe->offset + nbytes);
560 if (err)
561 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530562 bytes = nbytes;
563 }
Oleg Nesterovd4366152012-06-15 17:43:42 +0200564 return __copy_insn(mapping, filp, uprobe->arch.insn, bytes, uprobe->offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530565}
566
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200567static int prepare_uprobe(struct uprobe *uprobe, struct file *file,
568 struct mm_struct *mm, unsigned long vaddr)
569{
570 int ret = 0;
571
Oleg Nesterov71434f22012-09-30 21:12:44 +0200572 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200573 return ret;
574
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100575 /* TODO: move this into _register, until then we abuse this sem. */
576 down_write(&uprobe->consumer_rwsem);
Oleg Nesterov71434f22012-09-30 21:12:44 +0200577 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterov4710f052012-09-30 20:31:41 +0200578 goto out;
579
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200580 ret = copy_insn(uprobe, file);
581 if (ret)
582 goto out;
583
584 ret = -ENOTSUPP;
585 if (is_swbp_insn((uprobe_opcode_t *)uprobe->arch.insn))
586 goto out;
587
588 ret = arch_uprobe_analyze_insn(&uprobe->arch, mm, vaddr);
589 if (ret)
590 goto out;
591
592 /* write_opcode() assumes we don't cross page boundary */
593 BUG_ON((uprobe->offset & ~PAGE_MASK) +
594 UPROBE_SWBP_INSN_SIZE > PAGE_SIZE);
595
596 smp_wmb(); /* pairs with rmb() in find_active_uprobe() */
Oleg Nesterov71434f22012-09-30 21:12:44 +0200597 set_bit(UPROBE_COPY_INSN, &uprobe->flags);
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200598
599 out:
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100600 up_write(&uprobe->consumer_rwsem);
Oleg Nesterov4710f052012-09-30 20:31:41 +0200601
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200602 return ret;
603}
604
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100605static bool filter_chain(struct uprobe *uprobe)
606{
Oleg Nesterov1ff6fee2012-11-24 18:15:46 +0100607 struct uprobe_consumer *uc;
608 bool ret = false;
609
610 down_read(&uprobe->consumer_rwsem);
611 for (uc = uprobe->consumers; uc; uc = uc->next) {
612 /* TODO: ret = uc->filter(...) */
613 ret = true;
614 if (ret)
615 break;
616 }
617 up_read(&uprobe->consumer_rwsem);
618
619 return ret;
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100620}
621
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530622static int
623install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200624 struct vm_area_struct *vma, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530625{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200626 bool first_uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530627 int ret;
628
629 /*
630 * If probe is being deleted, unregister thread could be done with
631 * the vma-rmap-walk through. Adding a probe now can be fatal since
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100632 * nobody will be able to cleanup. But in this case filter_chain()
633 * must return false, all consumers have gone away.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530634 */
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100635 if (!filter_chain(uprobe))
Oleg Nesterov78f74112012-08-08 17:35:08 +0200636 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530637
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200638 ret = prepare_uprobe(uprobe, vma->vm_file, mm, vaddr);
639 if (ret)
640 return ret;
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530641
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200642 /*
643 * set MMF_HAS_UPROBES in advance for uprobe_pre_sstep_notifier(),
644 * the task can hit this breakpoint right after __replace_page().
645 */
646 first_uprobe = !test_bit(MMF_HAS_UPROBES, &mm->flags);
647 if (first_uprobe)
648 set_bit(MMF_HAS_UPROBES, &mm->flags);
649
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200650 ret = set_swbp(&uprobe->arch, mm, vaddr);
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200651 if (!ret)
652 clear_bit(MMF_RECALC_UPROBES, &mm->flags);
653 else if (first_uprobe)
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200654 clear_bit(MMF_HAS_UPROBES, &mm->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530655
656 return ret;
657}
658
Oleg Nesterov076a3652012-09-30 18:54:53 +0200659static int
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200660remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530661{
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200662 if (!test_bit(MMF_HAS_UPROBES, &mm->flags))
Oleg Nesterov076a3652012-09-30 18:54:53 +0200663 return 0;
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200664
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100665 if (filter_chain(uprobe))
666 return 0;
667
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200668 set_bit(MMF_RECALC_UPROBES, &mm->flags);
Oleg Nesterov076a3652012-09-30 18:54:53 +0200669 return set_orig_insn(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530670}
671
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100672static inline bool uprobe_is_active(struct uprobe *uprobe)
673{
674 return !RB_EMPTY_NODE(&uprobe->rb_node);
675}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530676/*
Oleg Nesterov778b0322012-05-29 21:30:08 +0200677 * There could be threads that have already hit the breakpoint. They
678 * will recheck the current insn and restart if find_uprobe() fails.
679 * See find_active_uprobe().
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530680 */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530681static void delete_uprobe(struct uprobe *uprobe)
682{
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100683 if (WARN_ON(!uprobe_is_active(uprobe)))
684 return;
685
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200686 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530687 rb_erase(&uprobe->rb_node, &uprobes_tree);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200688 spin_unlock(&uprobes_treelock);
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100689 RB_CLEAR_NODE(&uprobe->rb_node); /* for uprobe_is_active() */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530690 iput(uprobe->inode);
691 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530692}
693
Oleg Nesterov26872092012-06-15 17:43:33 +0200694struct map_info {
695 struct map_info *next;
696 struct mm_struct *mm;
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200697 unsigned long vaddr;
Oleg Nesterov26872092012-06-15 17:43:33 +0200698};
699
700static inline struct map_info *free_map_info(struct map_info *info)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530701{
Oleg Nesterov26872092012-06-15 17:43:33 +0200702 struct map_info *next = info->next;
703 kfree(info);
704 return next;
705}
706
707static struct map_info *
708build_map_info(struct address_space *mapping, loff_t offset, bool is_register)
709{
710 unsigned long pgoff = offset >> PAGE_SHIFT;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530711 struct vm_area_struct *vma;
Oleg Nesterov26872092012-06-15 17:43:33 +0200712 struct map_info *curr = NULL;
713 struct map_info *prev = NULL;
714 struct map_info *info;
715 int more = 0;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100716
Oleg Nesterov26872092012-06-15 17:43:33 +0200717 again:
718 mutex_lock(&mapping->i_mmap_mutex);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700719 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530720 if (!valid_vma(vma, is_register))
721 continue;
722
Oleg Nesterov7a5bfb62012-06-15 17:43:36 +0200723 if (!prev && !more) {
724 /*
725 * Needs GFP_NOWAIT to avoid i_mmap_mutex recursion through
726 * reclaim. This is optimistic, no harm done if it fails.
727 */
728 prev = kmalloc(sizeof(struct map_info),
729 GFP_NOWAIT | __GFP_NOMEMALLOC | __GFP_NOWARN);
730 if (prev)
731 prev->next = NULL;
732 }
Oleg Nesterov26872092012-06-15 17:43:33 +0200733 if (!prev) {
734 more++;
735 continue;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530736 }
737
Oleg Nesterov26872092012-06-15 17:43:33 +0200738 if (!atomic_inc_not_zero(&vma->vm_mm->mm_users))
739 continue;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100740
Oleg Nesterov26872092012-06-15 17:43:33 +0200741 info = prev;
742 prev = prev->next;
743 info->next = curr;
744 curr = info;
745
746 info->mm = vma->vm_mm;
Oleg Nesterov57683f72012-07-29 20:22:47 +0200747 info->vaddr = offset_to_vaddr(vma, offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530748 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530749 mutex_unlock(&mapping->i_mmap_mutex);
750
Oleg Nesterov26872092012-06-15 17:43:33 +0200751 if (!more)
752 goto out;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100753
Oleg Nesterov26872092012-06-15 17:43:33 +0200754 prev = curr;
755 while (curr) {
756 mmput(curr->mm);
757 curr = curr->next;
758 }
759
760 do {
761 info = kmalloc(sizeof(struct map_info), GFP_KERNEL);
762 if (!info) {
763 curr = ERR_PTR(-ENOMEM);
764 goto out;
765 }
766 info->next = prev;
767 prev = info;
768 } while (--more);
769
770 goto again;
771 out:
772 while (prev)
773 prev = free_map_info(prev);
774 return curr;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530775}
776
777static int register_for_each_vma(struct uprobe *uprobe, bool is_register)
778{
Oleg Nesterov26872092012-06-15 17:43:33 +0200779 struct map_info *info;
780 int err = 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530781
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100782 percpu_down_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200783 info = build_map_info(uprobe->inode->i_mapping,
784 uprobe->offset, is_register);
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100785 if (IS_ERR(info)) {
786 err = PTR_ERR(info);
787 goto out;
788 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100789
Oleg Nesterov26872092012-06-15 17:43:33 +0200790 while (info) {
791 struct mm_struct *mm = info->mm;
792 struct vm_area_struct *vma;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100793
Oleg Nesterov076a3652012-09-30 18:54:53 +0200794 if (err && is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200795 goto free;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100796
Oleg Nesterov77fc4af2012-05-29 21:29:28 +0200797 down_write(&mm->mmap_sem);
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200798 vma = find_vma(mm, info->vaddr);
799 if (!vma || !valid_vma(vma, is_register) ||
800 vma->vm_file->f_mapping->host != uprobe->inode)
Oleg Nesterov26872092012-06-15 17:43:33 +0200801 goto unlock;
802
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200803 if (vma->vm_start > info->vaddr ||
804 vaddr_to_offset(vma, info->vaddr) != uprobe->offset)
Oleg Nesterov26872092012-06-15 17:43:33 +0200805 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530806
Oleg Nesterov78f74112012-08-08 17:35:08 +0200807 if (is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200808 err = install_breakpoint(uprobe, mm, vma, info->vaddr);
Oleg Nesterov78f74112012-08-08 17:35:08 +0200809 else
Oleg Nesterov076a3652012-09-30 18:54:53 +0200810 err |= remove_breakpoint(uprobe, mm, info->vaddr);
Oleg Nesterov78f74112012-08-08 17:35:08 +0200811
Oleg Nesterov26872092012-06-15 17:43:33 +0200812 unlock:
813 up_write(&mm->mmap_sem);
814 free:
815 mmput(mm);
816 info = free_map_info(info);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530817 }
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100818 out:
819 percpu_up_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200820 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530821}
822
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100823static int __uprobe_register(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530824{
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100825 consumer_add(uprobe, uc);
Oleg Nesterovbb929282012-11-24 18:27:08 +0100826 return register_for_each_vma(uprobe, true);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530827}
828
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100829static void __uprobe_unregister(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530830{
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100831 int err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530832
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100833 if (!consumer_del(uprobe, uc)) /* WARN? */
834 return;
835
836 err = register_for_each_vma(uprobe, false);
Oleg Nesterovbb929282012-11-24 18:27:08 +0100837 /* TODO : cant unregister? schedule a worker thread */
838 if (!uprobe->consumers && !err)
839 delete_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530840}
841
842/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100843 * uprobe_register - register a probe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530844 * @inode: the file in which the probe has to be placed.
845 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530846 * @uc: information on howto handle the probe..
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530847 *
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100848 * Apart from the access refcount, uprobe_register() takes a creation
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530849 * refcount (thro alloc_uprobe) if and only if this @uprobe is getting
850 * inserted into the rbtree (i.e first consumer for a @inode:@offset
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100851 * tuple). Creation refcount stops uprobe_unregister from freeing the
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530852 * @uprobe even before the register operation is complete. Creation
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530853 * refcount is released when the last @uc for the @uprobe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530854 * unregisters.
855 *
856 * Return errno if it cannot successully install probes
857 * else return 0 (success)
858 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530859int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530860{
861 struct uprobe *uprobe;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100862 int ret;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530863
Oleg Nesterovf0744af2012-11-21 18:01:43 +0100864 /* Racy, just to catch the obvious mistakes */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530865 if (offset > i_size_read(inode))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100866 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530867
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100868 ret = -ENOMEM;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530869 mutex_lock(uprobes_hash(inode));
870 uprobe = alloc_uprobe(inode, offset);
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100871 if (uprobe) {
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100872 down_write(&uprobe->register_rwsem);
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100873 ret = __uprobe_register(uprobe, uc);
874 if (ret)
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100875 __uprobe_unregister(uprobe, uc);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100876 up_write(&uprobe->register_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530877 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530878 mutex_unlock(uprobes_hash(inode));
Sebastian Andrzej Siewior6d1d8df2012-08-30 19:26:22 +0200879 if (uprobe)
880 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530881
882 return ret;
883}
884
885/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100886 * uprobe_unregister - unregister a already registered probe.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530887 * @inode: the file in which the probe has to be removed.
888 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530889 * @uc: identify which probe if multiple probes are colocated.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530890 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530891void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530892{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100893 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530894
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530895 uprobe = find_uprobe(inode, offset);
896 if (!uprobe)
897 return;
898
899 mutex_lock(uprobes_hash(inode));
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100900 down_write(&uprobe->register_rwsem);
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100901 __uprobe_unregister(uprobe, uc);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100902 up_write(&uprobe->register_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530903 mutex_unlock(uprobes_hash(inode));
Sasha Levinc91368c2012-12-20 14:11:30 -0500904 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530905}
906
Oleg Nesterov891c3972012-07-29 20:22:40 +0200907static struct rb_node *
908find_node_in_range(struct inode *inode, loff_t min, loff_t max)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530909{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530910 struct rb_node *n = uprobes_tree.rb_node;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530911
912 while (n) {
Oleg Nesterov891c3972012-07-29 20:22:40 +0200913 struct uprobe *u = rb_entry(n, struct uprobe, rb_node);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100914
Oleg Nesterov891c3972012-07-29 20:22:40 +0200915 if (inode < u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530916 n = n->rb_left;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200917 } else if (inode > u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530918 n = n->rb_right;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200919 } else {
920 if (max < u->offset)
921 n = n->rb_left;
922 else if (min > u->offset)
923 n = n->rb_right;
924 else
925 break;
926 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530927 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100928
Oleg Nesterov891c3972012-07-29 20:22:40 +0200929 return n;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530930}
931
932/*
Oleg Nesterov891c3972012-07-29 20:22:40 +0200933 * For a given range in vma, build a list of probes that need to be inserted.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530934 */
Oleg Nesterov891c3972012-07-29 20:22:40 +0200935static void build_probe_list(struct inode *inode,
936 struct vm_area_struct *vma,
937 unsigned long start, unsigned long end,
938 struct list_head *head)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530939{
Oleg Nesterov891c3972012-07-29 20:22:40 +0200940 loff_t min, max;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200941 struct rb_node *n, *t;
942 struct uprobe *u;
943
944 INIT_LIST_HEAD(head);
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200945 min = vaddr_to_offset(vma, start);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200946 max = min + (end - start) - 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530947
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200948 spin_lock(&uprobes_treelock);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200949 n = find_node_in_range(inode, min, max);
950 if (n) {
951 for (t = n; t; t = rb_prev(t)) {
952 u = rb_entry(t, struct uprobe, rb_node);
953 if (u->inode != inode || u->offset < min)
954 break;
955 list_add(&u->pending_list, head);
956 atomic_inc(&u->ref);
957 }
958 for (t = n; (t = rb_next(t)); ) {
959 u = rb_entry(t, struct uprobe, rb_node);
960 if (u->inode != inode || u->offset > max)
961 break;
962 list_add(&u->pending_list, head);
963 atomic_inc(&u->ref);
964 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530965 }
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200966 spin_unlock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530967}
968
969/*
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200970 * Called from mmap_region/vma_adjust with mm->mmap_sem acquired.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530971 *
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200972 * Currently we ignore all errors and always return 0, the callers
973 * can't handle the failure anyway.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530974 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100975int uprobe_mmap(struct vm_area_struct *vma)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530976{
977 struct list_head tmp_list;
Oleg Nesterov665605a2012-07-29 20:22:29 +0200978 struct uprobe *uprobe, *u;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530979 struct inode *inode;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530980
Oleg Nesterov441f1eb2012-11-25 19:54:29 +0100981 if (no_uprobe_events() || !valid_vma(vma, true))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100982 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530983
984 inode = vma->vm_file->f_mapping->host;
985 if (!inode)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100986 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530987
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530988 mutex_lock(uprobes_mmap_hash(inode));
Oleg Nesterov891c3972012-07-29 20:22:40 +0200989 build_probe_list(inode, vma, vma->vm_start, vma->vm_end, &tmp_list);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100990
Oleg Nesterov665605a2012-07-29 20:22:29 +0200991 list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200992 if (!fatal_signal_pending(current)) {
Oleg Nesterov57683f72012-07-29 20:22:47 +0200993 unsigned long vaddr = offset_to_vaddr(vma, uprobe->offset);
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200994 install_breakpoint(uprobe, vma->vm_mm, vma, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530995 }
996 put_uprobe(uprobe);
997 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530998 mutex_unlock(uprobes_mmap_hash(inode));
999
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001000 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301001}
1002
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001003static bool
1004vma_has_uprobes(struct vm_area_struct *vma, unsigned long start, unsigned long end)
1005{
1006 loff_t min, max;
1007 struct inode *inode;
1008 struct rb_node *n;
1009
1010 inode = vma->vm_file->f_mapping->host;
1011
1012 min = vaddr_to_offset(vma, start);
1013 max = min + (end - start) - 1;
1014
1015 spin_lock(&uprobes_treelock);
1016 n = find_node_in_range(inode, min, max);
1017 spin_unlock(&uprobes_treelock);
1018
1019 return !!n;
1020}
1021
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301022/*
1023 * Called in context of a munmap of a vma.
1024 */
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301025void uprobe_munmap(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301026{
Oleg Nesterov441f1eb2012-11-25 19:54:29 +01001027 if (no_uprobe_events() || !valid_vma(vma, false))
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301028 return;
1029
Oleg Nesterov2fd611a2012-07-29 20:22:31 +02001030 if (!atomic_read(&vma->vm_mm->mm_users)) /* called by mmput() ? */
1031 return;
1032
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001033 if (!test_bit(MMF_HAS_UPROBES, &vma->vm_mm->flags) ||
1034 test_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags))
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001035 return;
1036
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001037 if (vma_has_uprobes(vma, start, end))
1038 set_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags);
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301039}
1040
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301041/* Slot allocation for XOL */
1042static int xol_add_vma(struct xol_area *area)
1043{
1044 struct mm_struct *mm;
1045 int ret;
1046
1047 area->page = alloc_page(GFP_HIGHUSER);
1048 if (!area->page)
1049 return -ENOMEM;
1050
1051 ret = -EALREADY;
1052 mm = current->mm;
1053
1054 down_write(&mm->mmap_sem);
1055 if (mm->uprobes_state.xol_area)
1056 goto fail;
1057
1058 ret = -ENOMEM;
1059
1060 /* Try to map as high as possible, this is only a hint. */
1061 area->vaddr = get_unmapped_area(NULL, TASK_SIZE - PAGE_SIZE, PAGE_SIZE, 0, 0);
1062 if (area->vaddr & ~PAGE_MASK) {
1063 ret = area->vaddr;
1064 goto fail;
1065 }
1066
1067 ret = install_special_mapping(mm, area->vaddr, PAGE_SIZE,
1068 VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO, &area->page);
1069 if (ret)
1070 goto fail;
1071
1072 smp_wmb(); /* pairs with get_xol_area() */
1073 mm->uprobes_state.xol_area = area;
1074 ret = 0;
1075
1076fail:
1077 up_write(&mm->mmap_sem);
1078 if (ret)
1079 __free_page(area->page);
1080
1081 return ret;
1082}
1083
1084static struct xol_area *get_xol_area(struct mm_struct *mm)
1085{
1086 struct xol_area *area;
1087
1088 area = mm->uprobes_state.xol_area;
1089 smp_read_barrier_depends(); /* pairs with wmb in xol_add_vma() */
1090
1091 return area;
1092}
1093
1094/*
1095 * xol_alloc_area - Allocate process's xol_area.
1096 * This area will be used for storing instructions for execution out of
1097 * line.
1098 *
1099 * Returns the allocated area or NULL.
1100 */
1101static struct xol_area *xol_alloc_area(void)
1102{
1103 struct xol_area *area;
1104
1105 area = kzalloc(sizeof(*area), GFP_KERNEL);
1106 if (unlikely(!area))
1107 return NULL;
1108
1109 area->bitmap = kzalloc(BITS_TO_LONGS(UINSNS_PER_PAGE) * sizeof(long), GFP_KERNEL);
1110
1111 if (!area->bitmap)
1112 goto fail;
1113
1114 init_waitqueue_head(&area->wq);
1115 if (!xol_add_vma(area))
1116 return area;
1117
1118fail:
1119 kfree(area->bitmap);
1120 kfree(area);
1121
1122 return get_xol_area(current->mm);
1123}
1124
1125/*
1126 * uprobe_clear_state - Free the area allocated for slots.
1127 */
1128void uprobe_clear_state(struct mm_struct *mm)
1129{
1130 struct xol_area *area = mm->uprobes_state.xol_area;
1131
1132 if (!area)
1133 return;
1134
1135 put_page(area->page);
1136 kfree(area->bitmap);
1137 kfree(area);
1138}
1139
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001140void uprobe_start_dup_mmap(void)
1141{
1142 percpu_down_read(&dup_mmap_sem);
1143}
1144
1145void uprobe_end_dup_mmap(void)
1146{
1147 percpu_up_read(&dup_mmap_sem);
1148}
1149
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001150void uprobe_dup_mmap(struct mm_struct *oldmm, struct mm_struct *newmm)
1151{
Oleg Nesterov61559a82012-08-08 17:17:46 +02001152 newmm->uprobes_state.xol_area = NULL;
1153
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001154 if (test_bit(MMF_HAS_UPROBES, &oldmm->flags)) {
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001155 set_bit(MMF_HAS_UPROBES, &newmm->flags);
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001156 /* unconditionally, dup_mmap() skips VM_DONTCOPY vmas */
1157 set_bit(MMF_RECALC_UPROBES, &newmm->flags);
1158 }
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001159}
1160
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301161/*
1162 * - search for a free slot.
1163 */
1164static unsigned long xol_take_insn_slot(struct xol_area *area)
1165{
1166 unsigned long slot_addr;
1167 int slot_nr;
1168
1169 do {
1170 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE);
1171 if (slot_nr < UINSNS_PER_PAGE) {
1172 if (!test_and_set_bit(slot_nr, area->bitmap))
1173 break;
1174
1175 slot_nr = UINSNS_PER_PAGE;
1176 continue;
1177 }
1178 wait_event(area->wq, (atomic_read(&area->slot_count) < UINSNS_PER_PAGE));
1179 } while (slot_nr >= UINSNS_PER_PAGE);
1180
1181 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES);
1182 atomic_inc(&area->slot_count);
1183
1184 return slot_addr;
1185}
1186
1187/*
1188 * xol_get_insn_slot - If was not allocated a slot, then
1189 * allocate a slot.
1190 * Returns the allocated slot address or 0.
1191 */
1192static unsigned long xol_get_insn_slot(struct uprobe *uprobe, unsigned long slot_addr)
1193{
1194 struct xol_area *area;
1195 unsigned long offset;
1196 void *vaddr;
1197
1198 area = get_xol_area(current->mm);
1199 if (!area) {
1200 area = xol_alloc_area();
1201 if (!area)
1202 return 0;
1203 }
1204 current->utask->xol_vaddr = xol_take_insn_slot(area);
1205
1206 /*
1207 * Initialize the slot if xol_vaddr points to valid
1208 * instruction slot.
1209 */
1210 if (unlikely(!current->utask->xol_vaddr))
1211 return 0;
1212
1213 current->utask->vaddr = slot_addr;
1214 offset = current->utask->xol_vaddr & ~PAGE_MASK;
1215 vaddr = kmap_atomic(area->page);
1216 memcpy(vaddr + offset, uprobe->arch.insn, MAX_UINSN_BYTES);
1217 kunmap_atomic(vaddr);
Rabin Vincent65b6ecc2012-11-14 18:27:07 +01001218 /*
1219 * We probably need flush_icache_user_range() but it needs vma.
1220 * This should work on supported architectures too.
1221 */
1222 flush_dcache_page(area->page);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301223
1224 return current->utask->xol_vaddr;
1225}
1226
1227/*
1228 * xol_free_insn_slot - If slot was earlier allocated by
1229 * @xol_get_insn_slot(), make the slot available for
1230 * subsequent requests.
1231 */
1232static void xol_free_insn_slot(struct task_struct *tsk)
1233{
1234 struct xol_area *area;
1235 unsigned long vma_end;
1236 unsigned long slot_addr;
1237
1238 if (!tsk->mm || !tsk->mm->uprobes_state.xol_area || !tsk->utask)
1239 return;
1240
1241 slot_addr = tsk->utask->xol_vaddr;
1242
1243 if (unlikely(!slot_addr || IS_ERR_VALUE(slot_addr)))
1244 return;
1245
1246 area = tsk->mm->uprobes_state.xol_area;
1247 vma_end = area->vaddr + PAGE_SIZE;
1248 if (area->vaddr <= slot_addr && slot_addr < vma_end) {
1249 unsigned long offset;
1250 int slot_nr;
1251
1252 offset = slot_addr - area->vaddr;
1253 slot_nr = offset / UPROBE_XOL_SLOT_BYTES;
1254 if (slot_nr >= UINSNS_PER_PAGE)
1255 return;
1256
1257 clear_bit(slot_nr, area->bitmap);
1258 atomic_dec(&area->slot_count);
1259 if (waitqueue_active(&area->wq))
1260 wake_up(&area->wq);
1261
1262 tsk->utask->xol_vaddr = 0;
1263 }
1264}
1265
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301266/**
1267 * uprobe_get_swbp_addr - compute address of swbp given post-swbp regs
1268 * @regs: Reflects the saved state of the task after it has hit a breakpoint
1269 * instruction.
1270 * Return the address of the breakpoint instruction.
1271 */
1272unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs)
1273{
1274 return instruction_pointer(regs) - UPROBE_SWBP_INSN_SIZE;
1275}
1276
1277/*
1278 * Called with no locks held.
1279 * Called in context of a exiting or a exec-ing thread.
1280 */
1281void uprobe_free_utask(struct task_struct *t)
1282{
1283 struct uprobe_task *utask = t->utask;
1284
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301285 if (!utask)
1286 return;
1287
1288 if (utask->active_uprobe)
1289 put_uprobe(utask->active_uprobe);
1290
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301291 xol_free_insn_slot(t);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301292 kfree(utask);
1293 t->utask = NULL;
1294}
1295
1296/*
1297 * Called in context of a new clone/fork from copy_process.
1298 */
1299void uprobe_copy_process(struct task_struct *t)
1300{
1301 t->utask = NULL;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301302}
1303
1304/*
1305 * Allocate a uprobe_task object for the task.
1306 * Called when the thread hits a breakpoint for the first time.
1307 *
1308 * Returns:
1309 * - pointer to new uprobe_task on success
1310 * - NULL otherwise
1311 */
1312static struct uprobe_task *add_utask(void)
1313{
1314 struct uprobe_task *utask;
1315
1316 utask = kzalloc(sizeof *utask, GFP_KERNEL);
1317 if (unlikely(!utask))
1318 return NULL;
1319
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301320 current->utask = utask;
1321 return utask;
1322}
1323
1324/* Prepare to single-step probed instruction out of line. */
1325static int
1326pre_ssout(struct uprobe *uprobe, struct pt_regs *regs, unsigned long vaddr)
1327{
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301328 if (xol_get_insn_slot(uprobe, vaddr) && !arch_uprobe_pre_xol(&uprobe->arch, regs))
1329 return 0;
1330
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301331 return -EFAULT;
1332}
1333
1334/*
1335 * If we are singlestepping, then ensure this thread is not connected to
1336 * non-fatal signals until completion of singlestep. When xol insn itself
1337 * triggers the signal, restart the original insn even if the task is
1338 * already SIGKILL'ed (since coredump should report the correct ip). This
1339 * is even more important if the task has a handler for SIGSEGV/etc, The
1340 * _same_ instruction should be repeated again after return from the signal
1341 * handler, and SSTEP can never finish in this case.
1342 */
1343bool uprobe_deny_signal(void)
1344{
1345 struct task_struct *t = current;
1346 struct uprobe_task *utask = t->utask;
1347
1348 if (likely(!utask || !utask->active_uprobe))
1349 return false;
1350
1351 WARN_ON_ONCE(utask->state != UTASK_SSTEP);
1352
1353 if (signal_pending(t)) {
1354 spin_lock_irq(&t->sighand->siglock);
1355 clear_tsk_thread_flag(t, TIF_SIGPENDING);
1356 spin_unlock_irq(&t->sighand->siglock);
1357
1358 if (__fatal_signal_pending(t) || arch_uprobe_xol_was_trapped(t)) {
1359 utask->state = UTASK_SSTEP_TRAPPED;
1360 set_tsk_thread_flag(t, TIF_UPROBE);
1361 set_tsk_thread_flag(t, TIF_NOTIFY_RESUME);
1362 }
1363 }
1364
1365 return true;
1366}
1367
1368/*
1369 * Avoid singlestepping the original instruction if the original instruction
1370 * is a NOP or can be emulated.
1371 */
1372static bool can_skip_sstep(struct uprobe *uprobe, struct pt_regs *regs)
1373{
Oleg Nesterov71434f22012-09-30 21:12:44 +02001374 if (test_bit(UPROBE_SKIP_SSTEP, &uprobe->flags)) {
Oleg Nesterov0578a972012-09-14 18:31:23 +02001375 if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
1376 return true;
Oleg Nesterov71434f22012-09-30 21:12:44 +02001377 clear_bit(UPROBE_SKIP_SSTEP, &uprobe->flags);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001378 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301379 return false;
1380}
1381
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001382static void mmf_recalc_uprobes(struct mm_struct *mm)
1383{
1384 struct vm_area_struct *vma;
1385
1386 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1387 if (!valid_vma(vma, false))
1388 continue;
1389 /*
1390 * This is not strictly accurate, we can race with
1391 * uprobe_unregister() and see the already removed
1392 * uprobe if delete_uprobe() was not yet called.
Oleg Nesterov63633cb2012-11-22 18:30:15 +01001393 * Or this uprobe can be filtered out.
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001394 */
1395 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end))
1396 return;
1397 }
1398
1399 clear_bit(MMF_HAS_UPROBES, &mm->flags);
1400}
1401
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001402static int is_swbp_at_addr(struct mm_struct *mm, unsigned long vaddr)
1403{
1404 struct page *page;
1405 uprobe_opcode_t opcode;
1406 int result;
1407
1408 pagefault_disable();
1409 result = __copy_from_user_inatomic(&opcode, (void __user*)vaddr,
1410 sizeof(opcode));
1411 pagefault_enable();
1412
1413 if (likely(result == 0))
1414 goto out;
1415
1416 result = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &page, NULL);
1417 if (result < 0)
1418 return result;
1419
1420 copy_opcode(page, vaddr, &opcode);
1421 put_page(page);
1422 out:
1423 return is_swbp_insn(&opcode);
1424}
1425
Oleg Nesterovd790d342012-05-29 21:29:14 +02001426static struct uprobe *find_active_uprobe(unsigned long bp_vaddr, int *is_swbp)
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001427{
1428 struct mm_struct *mm = current->mm;
1429 struct uprobe *uprobe = NULL;
1430 struct vm_area_struct *vma;
1431
1432 down_read(&mm->mmap_sem);
1433 vma = find_vma(mm, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001434 if (vma && vma->vm_start <= bp_vaddr) {
1435 if (valid_vma(vma, false)) {
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001436 struct inode *inode = vma->vm_file->f_mapping->host;
1437 loff_t offset = vaddr_to_offset(vma, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001438
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001439 uprobe = find_uprobe(inode, offset);
1440 }
Oleg Nesterovd790d342012-05-29 21:29:14 +02001441
1442 if (!uprobe)
1443 *is_swbp = is_swbp_at_addr(mm, bp_vaddr);
1444 } else {
1445 *is_swbp = -EFAULT;
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001446 }
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001447
1448 if (!uprobe && test_and_clear_bit(MMF_RECALC_UPROBES, &mm->flags))
1449 mmf_recalc_uprobes(mm);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001450 up_read(&mm->mmap_sem);
1451
1452 return uprobe;
1453}
1454
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301455/*
1456 * Run handler and ask thread to singlestep.
1457 * Ensure all non-fatal signals cannot interrupt thread while it singlesteps.
1458 */
1459static void handle_swbp(struct pt_regs *regs)
1460{
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301461 struct uprobe_task *utask;
1462 struct uprobe *uprobe;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301463 unsigned long bp_vaddr;
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001464 int uninitialized_var(is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301465
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301466 bp_vaddr = uprobe_get_swbp_addr(regs);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001467 uprobe = find_active_uprobe(bp_vaddr, &is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301468
1469 if (!uprobe) {
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001470 if (is_swbp > 0) {
1471 /* No matching uprobe; signal SIGTRAP. */
1472 send_sig(SIGTRAP, current, 0);
1473 } else {
1474 /*
1475 * Either we raced with uprobe_unregister() or we can't
1476 * access this memory. The latter is only possible if
1477 * another thread plays with our ->mm. In both cases
1478 * we can simply restart. If this vma was unmapped we
1479 * can pretend this insn was not executed yet and get
1480 * the (correct) SIGSEGV after restart.
1481 */
1482 instruction_pointer_set(regs, bp_vaddr);
1483 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301484 return;
1485 }
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001486 /*
1487 * TODO: move copy_insn/etc into _register and remove this hack.
1488 * After we hit the bp, _unregister + _register can install the
1489 * new and not-yet-analyzed uprobe at the same address, restart.
1490 */
1491 smp_rmb(); /* pairs with wmb() in install_breakpoint() */
Oleg Nesterov71434f22012-09-30 21:12:44 +02001492 if (unlikely(!test_bit(UPROBE_COPY_INSN, &uprobe->flags)))
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001493 goto restart;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301494
1495 utask = current->utask;
1496 if (!utask) {
1497 utask = add_utask();
1498 /* Cannot allocate; re-execute the instruction. */
1499 if (!utask)
Oleg Nesterov0578a972012-09-14 18:31:23 +02001500 goto restart;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301501 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301502
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301503 handler_chain(uprobe, regs);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001504 if (can_skip_sstep(uprobe, regs))
1505 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301506
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301507 if (!pre_ssout(uprobe, regs, bp_vaddr)) {
Oleg Nesterov746a9e62012-09-14 18:23:51 +02001508 utask->active_uprobe = uprobe;
1509 utask->state = UTASK_SSTEP;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301510 return;
1511 }
1512
Oleg Nesterov0578a972012-09-14 18:31:23 +02001513restart:
1514 /*
1515 * cannot singlestep; cannot skip instruction;
1516 * re-execute the instruction.
1517 */
1518 instruction_pointer_set(regs, bp_vaddr);
1519out:
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001520 put_uprobe(uprobe);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301521}
1522
1523/*
1524 * Perform required fix-ups and disable singlestep.
1525 * Allow pending signals to take effect.
1526 */
1527static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
1528{
1529 struct uprobe *uprobe;
1530
1531 uprobe = utask->active_uprobe;
1532 if (utask->state == UTASK_SSTEP_ACK)
1533 arch_uprobe_post_xol(&uprobe->arch, regs);
1534 else if (utask->state == UTASK_SSTEP_TRAPPED)
1535 arch_uprobe_abort_xol(&uprobe->arch, regs);
1536 else
1537 WARN_ON_ONCE(1);
1538
1539 put_uprobe(uprobe);
1540 utask->active_uprobe = NULL;
1541 utask->state = UTASK_RUNNING;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301542 xol_free_insn_slot(current);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301543
1544 spin_lock_irq(&current->sighand->siglock);
1545 recalc_sigpending(); /* see uprobe_deny_signal() */
1546 spin_unlock_irq(&current->sighand->siglock);
1547}
1548
1549/*
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001550 * On breakpoint hit, breakpoint notifier sets the TIF_UPROBE flag and
1551 * allows the thread to return from interrupt. After that handle_swbp()
1552 * sets utask->active_uprobe.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301553 *
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001554 * On singlestep exception, singlestep notifier sets the TIF_UPROBE flag
1555 * and allows the thread to return from interrupt.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301556 *
1557 * While returning to userspace, thread notices the TIF_UPROBE flag and calls
1558 * uprobe_notify_resume().
1559 */
1560void uprobe_notify_resume(struct pt_regs *regs)
1561{
1562 struct uprobe_task *utask;
1563
Oleg Nesterovdb023ea2012-09-14 19:05:46 +02001564 clear_thread_flag(TIF_UPROBE);
1565
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301566 utask = current->utask;
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001567 if (utask && utask->active_uprobe)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301568 handle_singlestep(utask, regs);
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001569 else
1570 handle_swbp(regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301571}
1572
1573/*
1574 * uprobe_pre_sstep_notifier gets called from interrupt context as part of
1575 * notifier mechanism. Set TIF_UPROBE flag and indicate breakpoint hit.
1576 */
1577int uprobe_pre_sstep_notifier(struct pt_regs *regs)
1578{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001579 if (!current->mm || !test_bit(MMF_HAS_UPROBES, &current->mm->flags))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301580 return 0;
1581
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301582 set_thread_flag(TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301583 return 1;
1584}
1585
1586/*
1587 * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier
1588 * mechanism. Set TIF_UPROBE flag and indicate completion of singlestep.
1589 */
1590int uprobe_post_sstep_notifier(struct pt_regs *regs)
1591{
1592 struct uprobe_task *utask = current->utask;
1593
1594 if (!current->mm || !utask || !utask->active_uprobe)
1595 /* task is currently not uprobed */
1596 return 0;
1597
1598 utask->state = UTASK_SSTEP_ACK;
1599 set_thread_flag(TIF_UPROBE);
1600 return 1;
1601}
1602
1603static struct notifier_block uprobe_exception_nb = {
1604 .notifier_call = arch_uprobe_exception_notify,
1605 .priority = INT_MAX-1, /* notified after kprobes, kgdb */
1606};
1607
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301608static int __init init_uprobes(void)
1609{
1610 int i;
1611
1612 for (i = 0; i < UPROBES_HASH_SZ; i++) {
1613 mutex_init(&uprobes_mutex[i]);
1614 mutex_init(&uprobes_mmap_mutex[i]);
1615 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301616
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001617 if (percpu_init_rwsem(&dup_mmap_sem))
1618 return -ENOMEM;
1619
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301620 return register_die_notifier(&uprobe_exception_nb);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301621}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301622module_init(init_uprobes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301623
1624static void __exit exit_uprobes(void)
1625{
1626}
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301627module_exit(exit_uprobes);