blob: d345b7c6cb2dce5d435fece4474def421c1bfe88 [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>
Josh Stonee8440c12013-01-13 19:03:34 +010030#include <linux/export.h>
Srikar Dronamraju2b144492012-02-09 14:56:42 +053031#include <linux/rmap.h> /* anon_vma_prepare */
32#include <linux/mmu_notifier.h> /* set_pte_at_notify */
33#include <linux/swap.h> /* try_to_free_swap */
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +053034#include <linux/ptrace.h> /* user_enable_single_step */
35#include <linux/kdebug.h> /* notifier mechanism */
Oleg Nesterov194f8dc2012-07-29 20:22:49 +020036#include "../../mm/internal.h" /* munlock_vma_page */
Oleg Nesterov32cdba12012-11-14 19:03:42 +010037#include <linux/percpu-rwsem.h>
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010038
Srikar Dronamraju2b144492012-02-09 14:56:42 +053039#include <linux/uprobes.h>
40
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +053041#define UINSNS_PER_PAGE (PAGE_SIZE/UPROBE_XOL_SLOT_BYTES)
42#define MAX_UPROBE_XOL_SLOTS UINSNS_PER_PAGE
43
Srikar Dronamraju2b144492012-02-09 14:56:42 +053044static struct rb_root uprobes_tree = RB_ROOT;
Oleg Nesterov441f1eb2012-11-25 19:54:29 +010045/*
46 * allows us to skip the uprobe_mmap if there are no uprobe events active
47 * at this time. Probably a fine grained per inode count is better?
48 */
49#define no_uprobe_events() RB_EMPTY_ROOT(&uprobes_tree)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010050
Srikar Dronamraju2b144492012-02-09 14:56:42 +053051static DEFINE_SPINLOCK(uprobes_treelock); /* serialize rbtree access */
52
53#define UPROBES_HASH_SZ 13
Srikar Dronamraju2b144492012-02-09 14:56:42 +053054/* serialize uprobe->pending_list */
55static struct mutex uprobes_mmap_mutex[UPROBES_HASH_SZ];
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010056#define uprobes_mmap_hash(v) (&uprobes_mmap_mutex[((unsigned long)(v)) % UPROBES_HASH_SZ])
Srikar Dronamraju2b144492012-02-09 14:56:42 +053057
Oleg Nesterov32cdba12012-11-14 19:03:42 +010058static struct percpu_rw_semaphore dup_mmap_sem;
59
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020060/* Have a copy of original instruction */
Oleg Nesterov71434f22012-09-30 21:12:44 +020061#define UPROBE_COPY_INSN 0
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020062/* Can skip singlestep */
Oleg Nesterovbb929282012-11-24 18:27:08 +010063#define UPROBE_SKIP_SSTEP 1
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020064
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053065struct uprobe {
66 struct rb_node rb_node; /* node in the rb tree */
67 atomic_t ref;
Oleg Nesterove591c8d2012-11-24 17:29:40 +010068 struct rw_semaphore register_rwsem;
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053069 struct rw_semaphore consumer_rwsem;
70 struct list_head pending_list;
71 struct uprobe_consumer *consumers;
72 struct inode *inode; /* Also hold a ref to inode */
73 loff_t offset;
Oleg Nesterov71434f22012-09-30 21:12:44 +020074 unsigned long flags;
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053075 struct arch_uprobe arch;
76};
77
Srikar Dronamraju2b144492012-02-09 14:56:42 +053078/*
79 * valid_vma: Verify if the specified vma is an executable vma
80 * Relax restrictions while unregistering: vm_flags might have
81 * changed after breakpoint was inserted.
82 * - is_register: indicates if we are in register context.
83 * - Return 1 if the specified virtual address is in an
84 * executable vma.
85 */
86static bool valid_vma(struct vm_area_struct *vma, bool is_register)
87{
Oleg Nesterove40cfce2012-09-16 19:31:39 +020088 vm_flags_t flags = VM_HUGETLB | VM_MAYEXEC | VM_SHARED;
Srikar Dronamraju2b144492012-02-09 14:56:42 +053089
Oleg Nesterove40cfce2012-09-16 19:31:39 +020090 if (is_register)
91 flags |= VM_WRITE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +053092
Oleg Nesterove40cfce2012-09-16 19:31:39 +020093 return vma->vm_file && (vma->vm_flags & flags) == VM_MAYEXEC;
Srikar Dronamraju2b144492012-02-09 14:56:42 +053094}
95
Oleg Nesterov57683f72012-07-29 20:22:47 +020096static unsigned long offset_to_vaddr(struct vm_area_struct *vma, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +053097{
Oleg Nesterov57683f72012-07-29 20:22:47 +020098 return vma->vm_start + offset - ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +053099}
100
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200101static loff_t vaddr_to_offset(struct vm_area_struct *vma, unsigned long vaddr)
102{
103 return ((loff_t)vma->vm_pgoff << PAGE_SHIFT) + (vaddr - vma->vm_start);
104}
105
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530106/**
107 * __replace_page - replace page in vma by new page.
108 * based on replace_page in mm/ksm.c
109 *
110 * @vma: vma that holds the pte pointing to page
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200111 * @addr: address the old @page is mapped at
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530112 * @page: the cowed page we are replacing by kpage
113 * @kpage: the modified page we replace page by
114 *
115 * Returns 0 on success, -EFAULT on failure.
116 */
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200117static int __replace_page(struct vm_area_struct *vma, unsigned long addr,
118 struct page *page, struct page *kpage)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530119{
120 struct mm_struct *mm = vma->vm_mm;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200121 spinlock_t *ptl;
122 pte_t *ptep;
Oleg Nesterov9f924482012-07-29 20:22:20 +0200123 int err;
Haggai Eran6bdb9132012-10-08 16:33:35 -0700124 /* For mmu_notifiers */
125 const unsigned long mmun_start = addr;
126 const unsigned long mmun_end = addr + PAGE_SIZE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530127
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200128 /* For try_to_free_swap() and munlock_vma_page() below */
Oleg Nesterov9f924482012-07-29 20:22:20 +0200129 lock_page(page);
130
Haggai Eran6bdb9132012-10-08 16:33:35 -0700131 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200132 err = -EAGAIN;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200133 ptep = page_check_address(page, mm, addr, &ptl, 0);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530134 if (!ptep)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200135 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530136
137 get_page(kpage);
138 page_add_new_anon_rmap(kpage, vma, addr);
139
Srikar Dronamraju7396fa82012-04-11 16:05:16 +0530140 if (!PageAnon(page)) {
141 dec_mm_counter(mm, MM_FILEPAGES);
142 inc_mm_counter(mm, MM_ANONPAGES);
143 }
144
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530145 flush_cache_page(vma, addr, pte_pfn(*ptep));
146 ptep_clear_flush(vma, addr, ptep);
147 set_pte_at_notify(mm, addr, ptep, mk_pte(kpage, vma->vm_page_prot));
148
149 page_remove_rmap(page);
150 if (!page_mapped(page))
151 try_to_free_swap(page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530152 pte_unmap_unlock(ptep, ptl);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530153
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200154 if (vma->vm_flags & VM_LOCKED)
155 munlock_vma_page(page);
156 put_page(page);
157
Oleg Nesterov9f924482012-07-29 20:22:20 +0200158 err = 0;
159 unlock:
Haggai Eran6bdb9132012-10-08 16:33:35 -0700160 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200161 unlock_page(page);
162 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530163}
164
165/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530166 * is_swbp_insn - check if instruction is breakpoint instruction.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530167 * @insn: instruction to be checked.
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530168 * Default implementation of is_swbp_insn
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530169 * Returns true if @insn is a breakpoint instruction.
170 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530171bool __weak is_swbp_insn(uprobe_opcode_t *insn)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530172{
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530173 return *insn == UPROBE_SWBP_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530174}
175
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530176/**
177 * is_trap_insn - check if instruction is breakpoint instruction.
178 * @insn: instruction to be checked.
179 * Default implementation of is_trap_insn
180 * Returns true if @insn is a breakpoint instruction.
181 *
182 * This function is needed for the case where an architecture has multiple
183 * trap instructions (like powerpc).
184 */
185bool __weak is_trap_insn(uprobe_opcode_t *insn)
186{
187 return is_swbp_insn(insn);
188}
189
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100190static void copy_from_page(struct page *page, unsigned long vaddr, void *dst, int len)
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200191{
192 void *kaddr = kmap_atomic(page);
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100193 memcpy(dst, kaddr + (vaddr & ~PAGE_MASK), len);
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200194 kunmap_atomic(kaddr);
195}
196
Oleg Nesterov5669cce2013-03-24 18:58:04 +0100197static void copy_to_page(struct page *page, unsigned long vaddr, const void *src, int len)
198{
199 void *kaddr = kmap_atomic(page);
200 memcpy(kaddr + (vaddr & ~PAGE_MASK), src, len);
201 kunmap_atomic(kaddr);
202}
203
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200204static int verify_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *new_opcode)
205{
206 uprobe_opcode_t old_opcode;
207 bool is_swbp;
208
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530209 /*
210 * Note: We only check if the old_opcode is UPROBE_SWBP_INSN here.
211 * We do not check if it is any other 'trap variant' which could
212 * be conditional trap instruction such as the one powerpc supports.
213 *
214 * The logic is that we do not care if the underlying instruction
215 * is a trap variant; uprobes always wins over any other (gdb)
216 * breakpoint.
217 */
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100218 copy_from_page(page, vaddr, &old_opcode, UPROBE_SWBP_INSN_SIZE);
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200219 is_swbp = is_swbp_insn(&old_opcode);
220
221 if (is_swbp_insn(new_opcode)) {
222 if (is_swbp) /* register: already installed? */
223 return 0;
224 } else {
225 if (!is_swbp) /* unregister: was it changed by us? */
Oleg Nesterov076a3652012-09-30 18:54:53 +0200226 return 0;
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200227 }
228
229 return 1;
230}
231
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530232/*
233 * NOTE:
234 * Expect the breakpoint instruction to be the smallest size instruction for
235 * the architecture. If an arch has variable length instruction and the
236 * breakpoint instruction is not of the smallest length instruction
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530237 * supported by that architecture then we need to modify is_trap_at_addr and
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530238 * write_opcode accordingly. This would never be a problem for archs that
239 * have fixed length instructions.
240 */
241
242/*
243 * write_opcode - write the opcode at a given virtual address.
244 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530245 * @vaddr: the virtual address to store the opcode.
246 * @opcode: opcode to be written at @vaddr.
247 *
248 * Called with mm->mmap_sem held (for read and with a reference to
249 * mm).
250 *
251 * For mm @mm, write the opcode at @vaddr.
252 * Return 0 (success) or a negative errno.
253 */
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200254static int write_opcode(struct mm_struct *mm, unsigned long vaddr,
255 uprobe_opcode_t opcode)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530256{
257 struct page *old_page, *new_page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530258 struct vm_area_struct *vma;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530259 int ret;
Oleg Nesterovf4030722012-07-29 20:22:12 +0200260
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200261retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530262 /* Read the page with vaddr into memory */
Oleg Nesterov75ed82e2012-09-16 17:20:06 +0200263 ret = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &old_page, &vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530264 if (ret <= 0)
265 return ret;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100266
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200267 ret = verify_opcode(old_page, vaddr, &opcode);
268 if (ret <= 0)
269 goto put_old;
270
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530271 ret = -ENOMEM;
272 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vaddr);
273 if (!new_page)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200274 goto put_old;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530275
276 __SetPageUptodate(new_page);
277
Oleg Nesterov3f471072013-03-24 19:04:36 +0100278 copy_highpage(new_page, old_page);
279 copy_to_page(new_page, vaddr, &opcode, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530280
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
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100466static void consumer_add(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530467{
468 down_write(&uprobe->consumer_rwsem);
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530469 uc->next = uprobe->consumers;
470 uprobe->consumers = uc;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530471 up_write(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530472}
473
474/*
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530475 * For uprobe @uprobe, delete the consumer @uc.
476 * Return true if the @uc is deleted successfully
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530477 * or return false.
478 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530479static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530480{
481 struct uprobe_consumer **con;
482 bool ret = false;
483
484 down_write(&uprobe->consumer_rwsem);
485 for (con = &uprobe->consumers; *con; con = &(*con)->next) {
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530486 if (*con == uc) {
487 *con = uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530488 ret = true;
489 break;
490 }
491 }
492 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100493
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530494 return ret;
495}
496
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530497static int
Oleg Nesterovd4366152012-06-15 17:43:42 +0200498__copy_insn(struct address_space *mapping, struct file *filp, char *insn,
Oleg Nesterov593609a2012-06-15 17:43:59 +0200499 unsigned long nbytes, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530500{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530501 struct page *page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530502
Oleg Nesterovcc359d12012-06-15 17:43:25 +0200503 if (!mapping->a_ops->readpage)
504 return -EIO;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530505 /*
506 * Ensure that the page that has the original instruction is
507 * populated and in page-cache.
508 */
Oleg Nesterov2edb7b52013-03-24 18:37:48 +0100509 page = read_mapping_page(mapping, offset >> PAGE_CACHE_SHIFT, filp);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530510 if (IS_ERR(page))
511 return PTR_ERR(page);
512
Oleg Nesterov2edb7b52013-03-24 18:37:48 +0100513 copy_from_page(page, offset, insn, nbytes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530514 page_cache_release(page);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100515
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530516 return 0;
517}
518
Oleg Nesterovd4366152012-06-15 17:43:42 +0200519static int copy_insn(struct uprobe *uprobe, struct file *filp)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530520{
521 struct address_space *mapping;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530522 unsigned long nbytes;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100523 int bytes;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530524
Oleg Nesterovd4366152012-06-15 17:43:42 +0200525 nbytes = PAGE_SIZE - (uprobe->offset & ~PAGE_MASK);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530526 mapping = uprobe->inode->i_mapping;
527
528 /* Instruction at end of binary; copy only available bytes */
529 if (uprobe->offset + MAX_UINSN_BYTES > uprobe->inode->i_size)
530 bytes = uprobe->inode->i_size - uprobe->offset;
531 else
532 bytes = MAX_UINSN_BYTES;
533
534 /* Instruction at the page-boundary; copy bytes in second page */
535 if (nbytes < bytes) {
Oleg Nesterovfc36f592012-06-15 17:43:44 +0200536 int err = __copy_insn(mapping, filp, uprobe->arch.insn + nbytes,
537 bytes - nbytes, uprobe->offset + nbytes);
538 if (err)
539 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530540 bytes = nbytes;
541 }
Oleg Nesterovd4366152012-06-15 17:43:42 +0200542 return __copy_insn(mapping, filp, uprobe->arch.insn, bytes, uprobe->offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530543}
544
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200545static int prepare_uprobe(struct uprobe *uprobe, struct file *file,
546 struct mm_struct *mm, unsigned long vaddr)
547{
548 int ret = 0;
549
Oleg Nesterov71434f22012-09-30 21:12:44 +0200550 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200551 return ret;
552
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100553 /* TODO: move this into _register, until then we abuse this sem. */
554 down_write(&uprobe->consumer_rwsem);
Oleg Nesterov71434f22012-09-30 21:12:44 +0200555 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterov4710f052012-09-30 20:31:41 +0200556 goto out;
557
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200558 ret = copy_insn(uprobe, file);
559 if (ret)
560 goto out;
561
562 ret = -ENOTSUPP;
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530563 if (is_trap_insn((uprobe_opcode_t *)uprobe->arch.insn))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200564 goto out;
565
566 ret = arch_uprobe_analyze_insn(&uprobe->arch, mm, vaddr);
567 if (ret)
568 goto out;
569
570 /* write_opcode() assumes we don't cross page boundary */
571 BUG_ON((uprobe->offset & ~PAGE_MASK) +
572 UPROBE_SWBP_INSN_SIZE > PAGE_SIZE);
573
574 smp_wmb(); /* pairs with rmb() in find_active_uprobe() */
Oleg Nesterov71434f22012-09-30 21:12:44 +0200575 set_bit(UPROBE_COPY_INSN, &uprobe->flags);
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200576
577 out:
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100578 up_write(&uprobe->consumer_rwsem);
Oleg Nesterov4710f052012-09-30 20:31:41 +0200579
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200580 return ret;
581}
582
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100583static inline bool consumer_filter(struct uprobe_consumer *uc,
584 enum uprobe_filter_ctx ctx, struct mm_struct *mm)
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100585{
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100586 return !uc->filter || uc->filter(uc, ctx, mm);
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100587}
588
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100589static bool filter_chain(struct uprobe *uprobe,
590 enum uprobe_filter_ctx ctx, struct mm_struct *mm)
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100591{
Oleg Nesterov1ff6fee2012-11-24 18:15:46 +0100592 struct uprobe_consumer *uc;
593 bool ret = false;
594
595 down_read(&uprobe->consumer_rwsem);
596 for (uc = uprobe->consumers; uc; uc = uc->next) {
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100597 ret = consumer_filter(uc, ctx, mm);
Oleg Nesterov1ff6fee2012-11-24 18:15:46 +0100598 if (ret)
599 break;
600 }
601 up_read(&uprobe->consumer_rwsem);
602
603 return ret;
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100604}
605
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530606static int
607install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200608 struct vm_area_struct *vma, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530609{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200610 bool first_uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530611 int ret;
612
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200613 ret = prepare_uprobe(uprobe, vma->vm_file, mm, vaddr);
614 if (ret)
615 return ret;
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530616
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200617 /*
618 * set MMF_HAS_UPROBES in advance for uprobe_pre_sstep_notifier(),
619 * the task can hit this breakpoint right after __replace_page().
620 */
621 first_uprobe = !test_bit(MMF_HAS_UPROBES, &mm->flags);
622 if (first_uprobe)
623 set_bit(MMF_HAS_UPROBES, &mm->flags);
624
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200625 ret = set_swbp(&uprobe->arch, mm, vaddr);
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200626 if (!ret)
627 clear_bit(MMF_RECALC_UPROBES, &mm->flags);
628 else if (first_uprobe)
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200629 clear_bit(MMF_HAS_UPROBES, &mm->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530630
631 return ret;
632}
633
Oleg Nesterov076a3652012-09-30 18:54:53 +0200634static int
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200635remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530636{
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200637 set_bit(MMF_RECALC_UPROBES, &mm->flags);
Oleg Nesterov076a3652012-09-30 18:54:53 +0200638 return set_orig_insn(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530639}
640
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100641static inline bool uprobe_is_active(struct uprobe *uprobe)
642{
643 return !RB_EMPTY_NODE(&uprobe->rb_node);
644}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530645/*
Oleg Nesterov778b0322012-05-29 21:30:08 +0200646 * There could be threads that have already hit the breakpoint. They
647 * will recheck the current insn and restart if find_uprobe() fails.
648 * See find_active_uprobe().
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530649 */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530650static void delete_uprobe(struct uprobe *uprobe)
651{
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100652 if (WARN_ON(!uprobe_is_active(uprobe)))
653 return;
654
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200655 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530656 rb_erase(&uprobe->rb_node, &uprobes_tree);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200657 spin_unlock(&uprobes_treelock);
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100658 RB_CLEAR_NODE(&uprobe->rb_node); /* for uprobe_is_active() */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530659 iput(uprobe->inode);
660 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530661}
662
Oleg Nesterov26872092012-06-15 17:43:33 +0200663struct map_info {
664 struct map_info *next;
665 struct mm_struct *mm;
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200666 unsigned long vaddr;
Oleg Nesterov26872092012-06-15 17:43:33 +0200667};
668
669static inline struct map_info *free_map_info(struct map_info *info)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530670{
Oleg Nesterov26872092012-06-15 17:43:33 +0200671 struct map_info *next = info->next;
672 kfree(info);
673 return next;
674}
675
676static struct map_info *
677build_map_info(struct address_space *mapping, loff_t offset, bool is_register)
678{
679 unsigned long pgoff = offset >> PAGE_SHIFT;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530680 struct vm_area_struct *vma;
Oleg Nesterov26872092012-06-15 17:43:33 +0200681 struct map_info *curr = NULL;
682 struct map_info *prev = NULL;
683 struct map_info *info;
684 int more = 0;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100685
Oleg Nesterov26872092012-06-15 17:43:33 +0200686 again:
687 mutex_lock(&mapping->i_mmap_mutex);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700688 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530689 if (!valid_vma(vma, is_register))
690 continue;
691
Oleg Nesterov7a5bfb62012-06-15 17:43:36 +0200692 if (!prev && !more) {
693 /*
694 * Needs GFP_NOWAIT to avoid i_mmap_mutex recursion through
695 * reclaim. This is optimistic, no harm done if it fails.
696 */
697 prev = kmalloc(sizeof(struct map_info),
698 GFP_NOWAIT | __GFP_NOMEMALLOC | __GFP_NOWARN);
699 if (prev)
700 prev->next = NULL;
701 }
Oleg Nesterov26872092012-06-15 17:43:33 +0200702 if (!prev) {
703 more++;
704 continue;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530705 }
706
Oleg Nesterov26872092012-06-15 17:43:33 +0200707 if (!atomic_inc_not_zero(&vma->vm_mm->mm_users))
708 continue;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100709
Oleg Nesterov26872092012-06-15 17:43:33 +0200710 info = prev;
711 prev = prev->next;
712 info->next = curr;
713 curr = info;
714
715 info->mm = vma->vm_mm;
Oleg Nesterov57683f72012-07-29 20:22:47 +0200716 info->vaddr = offset_to_vaddr(vma, offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530717 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530718 mutex_unlock(&mapping->i_mmap_mutex);
719
Oleg Nesterov26872092012-06-15 17:43:33 +0200720 if (!more)
721 goto out;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100722
Oleg Nesterov26872092012-06-15 17:43:33 +0200723 prev = curr;
724 while (curr) {
725 mmput(curr->mm);
726 curr = curr->next;
727 }
728
729 do {
730 info = kmalloc(sizeof(struct map_info), GFP_KERNEL);
731 if (!info) {
732 curr = ERR_PTR(-ENOMEM);
733 goto out;
734 }
735 info->next = prev;
736 prev = info;
737 } while (--more);
738
739 goto again;
740 out:
741 while (prev)
742 prev = free_map_info(prev);
743 return curr;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530744}
745
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100746static int
747register_for_each_vma(struct uprobe *uprobe, struct uprobe_consumer *new)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530748{
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100749 bool is_register = !!new;
Oleg Nesterov26872092012-06-15 17:43:33 +0200750 struct map_info *info;
751 int err = 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530752
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100753 percpu_down_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200754 info = build_map_info(uprobe->inode->i_mapping,
755 uprobe->offset, is_register);
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100756 if (IS_ERR(info)) {
757 err = PTR_ERR(info);
758 goto out;
759 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100760
Oleg Nesterov26872092012-06-15 17:43:33 +0200761 while (info) {
762 struct mm_struct *mm = info->mm;
763 struct vm_area_struct *vma;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100764
Oleg Nesterov076a3652012-09-30 18:54:53 +0200765 if (err && is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200766 goto free;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100767
Oleg Nesterov77fc4af2012-05-29 21:29:28 +0200768 down_write(&mm->mmap_sem);
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200769 vma = find_vma(mm, info->vaddr);
770 if (!vma || !valid_vma(vma, is_register) ||
Oleg Nesterovf2817692013-03-17 18:54:44 +0100771 file_inode(vma->vm_file) != uprobe->inode)
Oleg Nesterov26872092012-06-15 17:43:33 +0200772 goto unlock;
773
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200774 if (vma->vm_start > info->vaddr ||
775 vaddr_to_offset(vma, info->vaddr) != uprobe->offset)
Oleg Nesterov26872092012-06-15 17:43:33 +0200776 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530777
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100778 if (is_register) {
779 /* consult only the "caller", new consumer. */
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100780 if (consumer_filter(new,
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100781 UPROBE_FILTER_REGISTER, mm))
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100782 err = install_breakpoint(uprobe, mm, vma, info->vaddr);
783 } else if (test_bit(MMF_HAS_UPROBES, &mm->flags)) {
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100784 if (!filter_chain(uprobe,
785 UPROBE_FILTER_UNREGISTER, mm))
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100786 err |= remove_breakpoint(uprobe, mm, info->vaddr);
787 }
Oleg Nesterov78f74112012-08-08 17:35:08 +0200788
Oleg Nesterov26872092012-06-15 17:43:33 +0200789 unlock:
790 up_write(&mm->mmap_sem);
791 free:
792 mmput(mm);
793 info = free_map_info(info);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530794 }
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100795 out:
796 percpu_up_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200797 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530798}
799
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100800static int __uprobe_register(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530801{
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100802 consumer_add(uprobe, uc);
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100803 return register_for_each_vma(uprobe, uc);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530804}
805
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100806static void __uprobe_unregister(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530807{
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100808 int err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530809
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100810 if (!consumer_del(uprobe, uc)) /* WARN? */
811 return;
812
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100813 err = register_for_each_vma(uprobe, NULL);
Oleg Nesterovbb929282012-11-24 18:27:08 +0100814 /* TODO : cant unregister? schedule a worker thread */
815 if (!uprobe->consumers && !err)
816 delete_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530817}
818
819/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100820 * uprobe_register - register a probe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530821 * @inode: the file in which the probe has to be placed.
822 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530823 * @uc: information on howto handle the probe..
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530824 *
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100825 * Apart from the access refcount, uprobe_register() takes a creation
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530826 * refcount (thro alloc_uprobe) if and only if this @uprobe is getting
827 * inserted into the rbtree (i.e first consumer for a @inode:@offset
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100828 * tuple). Creation refcount stops uprobe_unregister from freeing the
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530829 * @uprobe even before the register operation is complete. Creation
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530830 * refcount is released when the last @uc for the @uprobe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530831 * unregisters.
832 *
833 * Return errno if it cannot successully install probes
834 * else return 0 (success)
835 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530836int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530837{
838 struct uprobe *uprobe;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100839 int ret;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530840
Anton Arapovea024872013-04-03 18:00:31 +0200841 /* Uprobe must have at least one set consumer */
842 if (!uc->handler && !uc->ret_handler)
843 return -EINVAL;
844
845 /* TODO: Implement return probes */
846 if (uc->ret_handler)
847 return -ENOSYS;
848
Oleg Nesterovf0744af2012-11-21 18:01:43 +0100849 /* Racy, just to catch the obvious mistakes */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530850 if (offset > i_size_read(inode))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100851 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530852
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100853 retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530854 uprobe = alloc_uprobe(inode, offset);
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100855 if (!uprobe)
856 return -ENOMEM;
857 /*
858 * We can race with uprobe_unregister()->delete_uprobe().
859 * Check uprobe_is_active() and retry if it is false.
860 */
861 down_write(&uprobe->register_rwsem);
862 ret = -EAGAIN;
863 if (likely(uprobe_is_active(uprobe))) {
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100864 ret = __uprobe_register(uprobe, uc);
865 if (ret)
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100866 __uprobe_unregister(uprobe, uc);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530867 }
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100868 up_write(&uprobe->register_rwsem);
869 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530870
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100871 if (unlikely(ret == -EAGAIN))
872 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530873 return ret;
874}
Josh Stonee8440c12013-01-13 19:03:34 +0100875EXPORT_SYMBOL_GPL(uprobe_register);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530876
877/*
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100878 * uprobe_apply - unregister a already registered probe.
879 * @inode: the file in which the probe has to be removed.
880 * @offset: offset from the start of the file.
881 * @uc: consumer which wants to add more or remove some breakpoints
882 * @add: add or remove the breakpoints
883 */
884int uprobe_apply(struct inode *inode, loff_t offset,
885 struct uprobe_consumer *uc, bool add)
886{
887 struct uprobe *uprobe;
888 struct uprobe_consumer *con;
889 int ret = -ENOENT;
890
891 uprobe = find_uprobe(inode, offset);
892 if (!uprobe)
893 return ret;
894
895 down_write(&uprobe->register_rwsem);
896 for (con = uprobe->consumers; con && con != uc ; con = con->next)
897 ;
898 if (con)
899 ret = register_for_each_vma(uprobe, add ? uc : NULL);
900 up_write(&uprobe->register_rwsem);
901 put_uprobe(uprobe);
902
903 return ret;
904}
905
906/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100907 * uprobe_unregister - unregister a already registered probe.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530908 * @inode: the file in which the probe has to be removed.
909 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530910 * @uc: identify which probe if multiple probes are colocated.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530911 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530912void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530913{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100914 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530915
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530916 uprobe = find_uprobe(inode, offset);
917 if (!uprobe)
918 return;
919
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100920 down_write(&uprobe->register_rwsem);
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100921 __uprobe_unregister(uprobe, uc);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100922 up_write(&uprobe->register_rwsem);
Sasha Levinc91368c2012-12-20 14:11:30 -0500923 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530924}
Josh Stonee8440c12013-01-13 19:03:34 +0100925EXPORT_SYMBOL_GPL(uprobe_unregister);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530926
Oleg Nesterovda1816b2012-12-29 17:49:11 +0100927static int unapply_uprobe(struct uprobe *uprobe, struct mm_struct *mm)
928{
929 struct vm_area_struct *vma;
930 int err = 0;
931
932 down_read(&mm->mmap_sem);
933 for (vma = mm->mmap; vma; vma = vma->vm_next) {
934 unsigned long vaddr;
935 loff_t offset;
936
937 if (!valid_vma(vma, false) ||
Oleg Nesterovf2817692013-03-17 18:54:44 +0100938 file_inode(vma->vm_file) != uprobe->inode)
Oleg Nesterovda1816b2012-12-29 17:49:11 +0100939 continue;
940
941 offset = (loff_t)vma->vm_pgoff << PAGE_SHIFT;
942 if (uprobe->offset < offset ||
943 uprobe->offset >= offset + vma->vm_end - vma->vm_start)
944 continue;
945
946 vaddr = offset_to_vaddr(vma, uprobe->offset);
947 err |= remove_breakpoint(uprobe, mm, vaddr);
948 }
949 up_read(&mm->mmap_sem);
950
951 return err;
952}
953
Oleg Nesterov891c3972012-07-29 20:22:40 +0200954static struct rb_node *
955find_node_in_range(struct inode *inode, loff_t min, loff_t max)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530956{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530957 struct rb_node *n = uprobes_tree.rb_node;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530958
959 while (n) {
Oleg Nesterov891c3972012-07-29 20:22:40 +0200960 struct uprobe *u = rb_entry(n, struct uprobe, rb_node);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100961
Oleg Nesterov891c3972012-07-29 20:22:40 +0200962 if (inode < u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530963 n = n->rb_left;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200964 } else if (inode > u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530965 n = n->rb_right;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200966 } else {
967 if (max < u->offset)
968 n = n->rb_left;
969 else if (min > u->offset)
970 n = n->rb_right;
971 else
972 break;
973 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530974 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100975
Oleg Nesterov891c3972012-07-29 20:22:40 +0200976 return n;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530977}
978
979/*
Oleg Nesterov891c3972012-07-29 20:22:40 +0200980 * For a given range in vma, build a list of probes that need to be inserted.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530981 */
Oleg Nesterov891c3972012-07-29 20:22:40 +0200982static void build_probe_list(struct inode *inode,
983 struct vm_area_struct *vma,
984 unsigned long start, unsigned long end,
985 struct list_head *head)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530986{
Oleg Nesterov891c3972012-07-29 20:22:40 +0200987 loff_t min, max;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200988 struct rb_node *n, *t;
989 struct uprobe *u;
990
991 INIT_LIST_HEAD(head);
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200992 min = vaddr_to_offset(vma, start);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200993 max = min + (end - start) - 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530994
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200995 spin_lock(&uprobes_treelock);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200996 n = find_node_in_range(inode, min, max);
997 if (n) {
998 for (t = n; t; t = rb_prev(t)) {
999 u = rb_entry(t, struct uprobe, rb_node);
1000 if (u->inode != inode || u->offset < min)
1001 break;
1002 list_add(&u->pending_list, head);
1003 atomic_inc(&u->ref);
1004 }
1005 for (t = n; (t = rb_next(t)); ) {
1006 u = rb_entry(t, struct uprobe, rb_node);
1007 if (u->inode != inode || u->offset > max)
1008 break;
1009 list_add(&u->pending_list, head);
1010 atomic_inc(&u->ref);
1011 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301012 }
Oleg Nesterov6f47caa2012-08-18 17:01:57 +02001013 spin_unlock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301014}
1015
1016/*
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001017 * Called from mmap_region/vma_adjust with mm->mmap_sem acquired.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301018 *
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001019 * Currently we ignore all errors and always return 0, the callers
1020 * can't handle the failure anyway.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301021 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001022int uprobe_mmap(struct vm_area_struct *vma)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301023{
1024 struct list_head tmp_list;
Oleg Nesterov665605a2012-07-29 20:22:29 +02001025 struct uprobe *uprobe, *u;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301026 struct inode *inode;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301027
Oleg Nesterov441f1eb2012-11-25 19:54:29 +01001028 if (no_uprobe_events() || !valid_vma(vma, true))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001029 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301030
Oleg Nesterovf2817692013-03-17 18:54:44 +01001031 inode = file_inode(vma->vm_file);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301032 if (!inode)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001033 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301034
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301035 mutex_lock(uprobes_mmap_hash(inode));
Oleg Nesterov891c3972012-07-29 20:22:40 +02001036 build_probe_list(inode, vma, vma->vm_start, vma->vm_end, &tmp_list);
Oleg Nesterov806a98b2012-12-27 18:21:11 +01001037 /*
1038 * We can race with uprobe_unregister(), this uprobe can be already
1039 * removed. But in this case filter_chain() must return false, all
1040 * consumers have gone away.
1041 */
Oleg Nesterov665605a2012-07-29 20:22:29 +02001042 list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
Oleg Nesterov806a98b2012-12-27 18:21:11 +01001043 if (!fatal_signal_pending(current) &&
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +01001044 filter_chain(uprobe, UPROBE_FILTER_MMAP, vma->vm_mm)) {
Oleg Nesterov57683f72012-07-29 20:22:47 +02001045 unsigned long vaddr = offset_to_vaddr(vma, uprobe->offset);
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001046 install_breakpoint(uprobe, vma->vm_mm, vma, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301047 }
1048 put_uprobe(uprobe);
1049 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301050 mutex_unlock(uprobes_mmap_hash(inode));
1051
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001052 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301053}
1054
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001055static bool
1056vma_has_uprobes(struct vm_area_struct *vma, unsigned long start, unsigned long end)
1057{
1058 loff_t min, max;
1059 struct inode *inode;
1060 struct rb_node *n;
1061
Oleg Nesterovf2817692013-03-17 18:54:44 +01001062 inode = file_inode(vma->vm_file);
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001063
1064 min = vaddr_to_offset(vma, start);
1065 max = min + (end - start) - 1;
1066
1067 spin_lock(&uprobes_treelock);
1068 n = find_node_in_range(inode, min, max);
1069 spin_unlock(&uprobes_treelock);
1070
1071 return !!n;
1072}
1073
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301074/*
1075 * Called in context of a munmap of a vma.
1076 */
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301077void uprobe_munmap(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301078{
Oleg Nesterov441f1eb2012-11-25 19:54:29 +01001079 if (no_uprobe_events() || !valid_vma(vma, false))
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301080 return;
1081
Oleg Nesterov2fd611a2012-07-29 20:22:31 +02001082 if (!atomic_read(&vma->vm_mm->mm_users)) /* called by mmput() ? */
1083 return;
1084
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001085 if (!test_bit(MMF_HAS_UPROBES, &vma->vm_mm->flags) ||
1086 test_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags))
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001087 return;
1088
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001089 if (vma_has_uprobes(vma, start, end))
1090 set_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags);
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301091}
1092
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301093/* Slot allocation for XOL */
1094static int xol_add_vma(struct xol_area *area)
1095{
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001096 struct mm_struct *mm = current->mm;
1097 int ret = -EALREADY;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301098
1099 down_write(&mm->mmap_sem);
1100 if (mm->uprobes_state.xol_area)
1101 goto fail;
1102
1103 ret = -ENOMEM;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301104 /* Try to map as high as possible, this is only a hint. */
1105 area->vaddr = get_unmapped_area(NULL, TASK_SIZE - PAGE_SIZE, PAGE_SIZE, 0, 0);
1106 if (area->vaddr & ~PAGE_MASK) {
1107 ret = area->vaddr;
1108 goto fail;
1109 }
1110
1111 ret = install_special_mapping(mm, area->vaddr, PAGE_SIZE,
1112 VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO, &area->page);
1113 if (ret)
1114 goto fail;
1115
1116 smp_wmb(); /* pairs with get_xol_area() */
1117 mm->uprobes_state.xol_area = area;
1118 ret = 0;
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001119 fail:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301120 up_write(&mm->mmap_sem);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301121
1122 return ret;
1123}
1124
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301125/*
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001126 * get_xol_area - Allocate process's xol_area if necessary.
1127 * This area will be used for storing instructions for execution out of line.
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301128 *
1129 * Returns the allocated area or NULL.
1130 */
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001131static struct xol_area *get_xol_area(void)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301132{
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001133 struct mm_struct *mm = current->mm;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301134 struct xol_area *area;
Anton Arapove78aebf2013-04-03 18:00:32 +02001135 uprobe_opcode_t insn = UPROBE_SWBP_INSN;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301136
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001137 area = mm->uprobes_state.xol_area;
1138 if (area)
1139 goto ret;
1140
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301141 area = kzalloc(sizeof(*area), GFP_KERNEL);
1142 if (unlikely(!area))
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001143 goto out;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301144
1145 area->bitmap = kzalloc(BITS_TO_LONGS(UINSNS_PER_PAGE) * sizeof(long), GFP_KERNEL);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301146 if (!area->bitmap)
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001147 goto free_area;
1148
1149 area->page = alloc_page(GFP_HIGHUSER);
1150 if (!area->page)
1151 goto free_bitmap;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301152
Anton Arapove78aebf2013-04-03 18:00:32 +02001153 /* allocate first slot of task's xol_area for the return probes */
1154 set_bit(0, area->bitmap);
1155 copy_to_page(area->page, 0, &insn, UPROBE_SWBP_INSN_SIZE);
1156 atomic_set(&area->slot_count, 1);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301157 init_waitqueue_head(&area->wq);
Anton Arapove78aebf2013-04-03 18:00:32 +02001158
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301159 if (!xol_add_vma(area))
1160 return area;
1161
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001162 __free_page(area->page);
1163 free_bitmap:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301164 kfree(area->bitmap);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001165 free_area:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301166 kfree(area);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001167 out:
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001168 area = mm->uprobes_state.xol_area;
1169 ret:
1170 smp_read_barrier_depends(); /* pairs with wmb in xol_add_vma() */
1171 return area;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301172}
1173
1174/*
1175 * uprobe_clear_state - Free the area allocated for slots.
1176 */
1177void uprobe_clear_state(struct mm_struct *mm)
1178{
1179 struct xol_area *area = mm->uprobes_state.xol_area;
1180
1181 if (!area)
1182 return;
1183
1184 put_page(area->page);
1185 kfree(area->bitmap);
1186 kfree(area);
1187}
1188
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001189void uprobe_start_dup_mmap(void)
1190{
1191 percpu_down_read(&dup_mmap_sem);
1192}
1193
1194void uprobe_end_dup_mmap(void)
1195{
1196 percpu_up_read(&dup_mmap_sem);
1197}
1198
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001199void uprobe_dup_mmap(struct mm_struct *oldmm, struct mm_struct *newmm)
1200{
Oleg Nesterov61559a82012-08-08 17:17:46 +02001201 newmm->uprobes_state.xol_area = NULL;
1202
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001203 if (test_bit(MMF_HAS_UPROBES, &oldmm->flags)) {
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001204 set_bit(MMF_HAS_UPROBES, &newmm->flags);
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001205 /* unconditionally, dup_mmap() skips VM_DONTCOPY vmas */
1206 set_bit(MMF_RECALC_UPROBES, &newmm->flags);
1207 }
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001208}
1209
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301210/*
1211 * - search for a free slot.
1212 */
1213static unsigned long xol_take_insn_slot(struct xol_area *area)
1214{
1215 unsigned long slot_addr;
1216 int slot_nr;
1217
1218 do {
1219 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE);
1220 if (slot_nr < UINSNS_PER_PAGE) {
1221 if (!test_and_set_bit(slot_nr, area->bitmap))
1222 break;
1223
1224 slot_nr = UINSNS_PER_PAGE;
1225 continue;
1226 }
1227 wait_event(area->wq, (atomic_read(&area->slot_count) < UINSNS_PER_PAGE));
1228 } while (slot_nr >= UINSNS_PER_PAGE);
1229
1230 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES);
1231 atomic_inc(&area->slot_count);
1232
1233 return slot_addr;
1234}
1235
1236/*
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001237 * xol_get_insn_slot - allocate a slot for xol.
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301238 * Returns the allocated slot address or 0.
1239 */
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001240static unsigned long xol_get_insn_slot(struct uprobe *uprobe)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301241{
1242 struct xol_area *area;
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001243 unsigned long xol_vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301244
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001245 area = get_xol_area();
1246 if (!area)
1247 return 0;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301248
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001249 xol_vaddr = xol_take_insn_slot(area);
1250 if (unlikely(!xol_vaddr))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301251 return 0;
1252
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001253 /* Initialize the slot */
Oleg Nesterov5669cce2013-03-24 18:58:04 +01001254 copy_to_page(area->page, xol_vaddr, uprobe->arch.insn, MAX_UINSN_BYTES);
Rabin Vincent65b6ecc2012-11-14 18:27:07 +01001255 /*
1256 * We probably need flush_icache_user_range() but it needs vma.
1257 * This should work on supported architectures too.
1258 */
1259 flush_dcache_page(area->page);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301260
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001261 return xol_vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301262}
1263
1264/*
1265 * xol_free_insn_slot - If slot was earlier allocated by
1266 * @xol_get_insn_slot(), make the slot available for
1267 * subsequent requests.
1268 */
1269static void xol_free_insn_slot(struct task_struct *tsk)
1270{
1271 struct xol_area *area;
1272 unsigned long vma_end;
1273 unsigned long slot_addr;
1274
1275 if (!tsk->mm || !tsk->mm->uprobes_state.xol_area || !tsk->utask)
1276 return;
1277
1278 slot_addr = tsk->utask->xol_vaddr;
Oleg Nesterovaf4355e2012-12-31 18:37:11 +01001279 if (unlikely(!slot_addr))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301280 return;
1281
1282 area = tsk->mm->uprobes_state.xol_area;
1283 vma_end = area->vaddr + PAGE_SIZE;
1284 if (area->vaddr <= slot_addr && slot_addr < vma_end) {
1285 unsigned long offset;
1286 int slot_nr;
1287
1288 offset = slot_addr - area->vaddr;
1289 slot_nr = offset / UPROBE_XOL_SLOT_BYTES;
1290 if (slot_nr >= UINSNS_PER_PAGE)
1291 return;
1292
1293 clear_bit(slot_nr, area->bitmap);
1294 atomic_dec(&area->slot_count);
1295 if (waitqueue_active(&area->wq))
1296 wake_up(&area->wq);
1297
1298 tsk->utask->xol_vaddr = 0;
1299 }
1300}
1301
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301302/**
1303 * uprobe_get_swbp_addr - compute address of swbp given post-swbp regs
1304 * @regs: Reflects the saved state of the task after it has hit a breakpoint
1305 * instruction.
1306 * Return the address of the breakpoint instruction.
1307 */
1308unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs)
1309{
1310 return instruction_pointer(regs) - UPROBE_SWBP_INSN_SIZE;
1311}
1312
1313/*
1314 * Called with no locks held.
1315 * Called in context of a exiting or a exec-ing thread.
1316 */
1317void uprobe_free_utask(struct task_struct *t)
1318{
1319 struct uprobe_task *utask = t->utask;
1320
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301321 if (!utask)
1322 return;
1323
1324 if (utask->active_uprobe)
1325 put_uprobe(utask->active_uprobe);
1326
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301327 xol_free_insn_slot(t);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301328 kfree(utask);
1329 t->utask = NULL;
1330}
1331
1332/*
1333 * Called in context of a new clone/fork from copy_process.
1334 */
1335void uprobe_copy_process(struct task_struct *t)
1336{
1337 t->utask = NULL;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301338}
1339
1340/*
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001341 * Allocate a uprobe_task object for the task if if necessary.
1342 * Called when the thread hits a breakpoint.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301343 *
1344 * Returns:
1345 * - pointer to new uprobe_task on success
1346 * - NULL otherwise
1347 */
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001348static struct uprobe_task *get_utask(void)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301349{
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001350 if (!current->utask)
1351 current->utask = kzalloc(sizeof(struct uprobe_task), GFP_KERNEL);
1352 return current->utask;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301353}
1354
Anton Arapove78aebf2013-04-03 18:00:32 +02001355/*
1356 * Current area->vaddr notion assume the trampoline address is always
1357 * equal area->vaddr.
1358 *
1359 * Returns -1 in case the xol_area is not allocated.
1360 */
1361static unsigned long get_trampoline_vaddr(void)
1362{
1363 struct xol_area *area;
1364 unsigned long trampoline_vaddr = -1;
1365
1366 area = current->mm->uprobes_state.xol_area;
1367 smp_read_barrier_depends();
1368 if (area)
1369 trampoline_vaddr = area->vaddr;
1370
1371 return trampoline_vaddr;
1372}
1373
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301374/* Prepare to single-step probed instruction out of line. */
1375static int
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001376pre_ssout(struct uprobe *uprobe, struct pt_regs *regs, unsigned long bp_vaddr)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301377{
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001378 struct uprobe_task *utask;
1379 unsigned long xol_vaddr;
Oleg Nesterovaba51022012-12-31 18:12:48 +01001380 int err;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301381
Oleg Nesterov608e7422012-12-31 18:20:42 +01001382 utask = get_utask();
1383 if (!utask)
1384 return -ENOMEM;
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001385
1386 xol_vaddr = xol_get_insn_slot(uprobe);
1387 if (!xol_vaddr)
1388 return -ENOMEM;
1389
1390 utask->xol_vaddr = xol_vaddr;
1391 utask->vaddr = bp_vaddr;
1392
Oleg Nesterovaba51022012-12-31 18:12:48 +01001393 err = arch_uprobe_pre_xol(&uprobe->arch, regs);
1394 if (unlikely(err)) {
1395 xol_free_insn_slot(current);
1396 return err;
1397 }
1398
Oleg Nesterov608e7422012-12-31 18:20:42 +01001399 utask->active_uprobe = uprobe;
1400 utask->state = UTASK_SSTEP;
Oleg Nesterovaba51022012-12-31 18:12:48 +01001401 return 0;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301402}
1403
1404/*
1405 * If we are singlestepping, then ensure this thread is not connected to
1406 * non-fatal signals until completion of singlestep. When xol insn itself
1407 * triggers the signal, restart the original insn even if the task is
1408 * already SIGKILL'ed (since coredump should report the correct ip). This
1409 * is even more important if the task has a handler for SIGSEGV/etc, The
1410 * _same_ instruction should be repeated again after return from the signal
1411 * handler, and SSTEP can never finish in this case.
1412 */
1413bool uprobe_deny_signal(void)
1414{
1415 struct task_struct *t = current;
1416 struct uprobe_task *utask = t->utask;
1417
1418 if (likely(!utask || !utask->active_uprobe))
1419 return false;
1420
1421 WARN_ON_ONCE(utask->state != UTASK_SSTEP);
1422
1423 if (signal_pending(t)) {
1424 spin_lock_irq(&t->sighand->siglock);
1425 clear_tsk_thread_flag(t, TIF_SIGPENDING);
1426 spin_unlock_irq(&t->sighand->siglock);
1427
1428 if (__fatal_signal_pending(t) || arch_uprobe_xol_was_trapped(t)) {
1429 utask->state = UTASK_SSTEP_TRAPPED;
1430 set_tsk_thread_flag(t, TIF_UPROBE);
1431 set_tsk_thread_flag(t, TIF_NOTIFY_RESUME);
1432 }
1433 }
1434
1435 return true;
1436}
1437
1438/*
1439 * Avoid singlestepping the original instruction if the original instruction
1440 * is a NOP or can be emulated.
1441 */
1442static bool can_skip_sstep(struct uprobe *uprobe, struct pt_regs *regs)
1443{
Oleg Nesterov71434f22012-09-30 21:12:44 +02001444 if (test_bit(UPROBE_SKIP_SSTEP, &uprobe->flags)) {
Oleg Nesterov0578a972012-09-14 18:31:23 +02001445 if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
1446 return true;
Oleg Nesterov71434f22012-09-30 21:12:44 +02001447 clear_bit(UPROBE_SKIP_SSTEP, &uprobe->flags);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001448 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301449 return false;
1450}
1451
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001452static void mmf_recalc_uprobes(struct mm_struct *mm)
1453{
1454 struct vm_area_struct *vma;
1455
1456 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1457 if (!valid_vma(vma, false))
1458 continue;
1459 /*
1460 * This is not strictly accurate, we can race with
1461 * uprobe_unregister() and see the already removed
1462 * uprobe if delete_uprobe() was not yet called.
Oleg Nesterov63633cb2012-11-22 18:30:15 +01001463 * Or this uprobe can be filtered out.
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001464 */
1465 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end))
1466 return;
1467 }
1468
1469 clear_bit(MMF_HAS_UPROBES, &mm->flags);
1470}
1471
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301472static int is_trap_at_addr(struct mm_struct *mm, unsigned long vaddr)
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001473{
1474 struct page *page;
1475 uprobe_opcode_t opcode;
1476 int result;
1477
1478 pagefault_disable();
1479 result = __copy_from_user_inatomic(&opcode, (void __user*)vaddr,
1480 sizeof(opcode));
1481 pagefault_enable();
1482
1483 if (likely(result == 0))
1484 goto out;
1485
1486 result = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &page, NULL);
1487 if (result < 0)
1488 return result;
1489
Oleg Nesterovab0d8052013-03-24 18:24:37 +01001490 copy_from_page(page, vaddr, &opcode, UPROBE_SWBP_INSN_SIZE);
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001491 put_page(page);
1492 out:
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301493 /* This needs to return true for any variant of the trap insn */
1494 return is_trap_insn(&opcode);
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001495}
1496
Oleg Nesterovd790d342012-05-29 21:29:14 +02001497static struct uprobe *find_active_uprobe(unsigned long bp_vaddr, int *is_swbp)
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001498{
1499 struct mm_struct *mm = current->mm;
1500 struct uprobe *uprobe = NULL;
1501 struct vm_area_struct *vma;
1502
1503 down_read(&mm->mmap_sem);
1504 vma = find_vma(mm, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001505 if (vma && vma->vm_start <= bp_vaddr) {
1506 if (valid_vma(vma, false)) {
Oleg Nesterovf2817692013-03-17 18:54:44 +01001507 struct inode *inode = file_inode(vma->vm_file);
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001508 loff_t offset = vaddr_to_offset(vma, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001509
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001510 uprobe = find_uprobe(inode, offset);
1511 }
Oleg Nesterovd790d342012-05-29 21:29:14 +02001512
1513 if (!uprobe)
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301514 *is_swbp = is_trap_at_addr(mm, bp_vaddr);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001515 } else {
1516 *is_swbp = -EFAULT;
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001517 }
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001518
1519 if (!uprobe && test_and_clear_bit(MMF_RECALC_UPROBES, &mm->flags))
1520 mmf_recalc_uprobes(mm);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001521 up_read(&mm->mmap_sem);
1522
1523 return uprobe;
1524}
1525
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001526static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
1527{
1528 struct uprobe_consumer *uc;
1529 int remove = UPROBE_HANDLER_REMOVE;
1530
1531 down_read(&uprobe->register_rwsem);
1532 for (uc = uprobe->consumers; uc; uc = uc->next) {
Anton Arapovea024872013-04-03 18:00:31 +02001533 int rc = 0;
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001534
Anton Arapovea024872013-04-03 18:00:31 +02001535 if (uc->handler) {
1536 rc = uc->handler(uc, regs);
1537 WARN(rc & ~UPROBE_HANDLER_MASK,
1538 "bad rc=0x%x from %pf()\n", rc, uc->handler);
1539 }
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001540 remove &= rc;
1541 }
1542
1543 if (remove && uprobe->consumers) {
1544 WARN_ON(!uprobe_is_active(uprobe));
1545 unapply_uprobe(uprobe, current->mm);
1546 }
1547 up_read(&uprobe->register_rwsem);
1548}
1549
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301550/*
1551 * Run handler and ask thread to singlestep.
1552 * Ensure all non-fatal signals cannot interrupt thread while it singlesteps.
1553 */
1554static void handle_swbp(struct pt_regs *regs)
1555{
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301556 struct uprobe *uprobe;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301557 unsigned long bp_vaddr;
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001558 int uninitialized_var(is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301559
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301560 bp_vaddr = uprobe_get_swbp_addr(regs);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001561 uprobe = find_active_uprobe(bp_vaddr, &is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301562
1563 if (!uprobe) {
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001564 if (is_swbp > 0) {
1565 /* No matching uprobe; signal SIGTRAP. */
1566 send_sig(SIGTRAP, current, 0);
1567 } else {
1568 /*
1569 * Either we raced with uprobe_unregister() or we can't
1570 * access this memory. The latter is only possible if
1571 * another thread plays with our ->mm. In both cases
1572 * we can simply restart. If this vma was unmapped we
1573 * can pretend this insn was not executed yet and get
1574 * the (correct) SIGSEGV after restart.
1575 */
1576 instruction_pointer_set(regs, bp_vaddr);
1577 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301578 return;
1579 }
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001580
1581 /* change it in advance for ->handler() and restart */
1582 instruction_pointer_set(regs, bp_vaddr);
1583
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001584 /*
1585 * TODO: move copy_insn/etc into _register and remove this hack.
1586 * After we hit the bp, _unregister + _register can install the
1587 * new and not-yet-analyzed uprobe at the same address, restart.
1588 */
1589 smp_rmb(); /* pairs with wmb() in install_breakpoint() */
Oleg Nesterov71434f22012-09-30 21:12:44 +02001590 if (unlikely(!test_bit(UPROBE_COPY_INSN, &uprobe->flags)))
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001591 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301592
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301593 handler_chain(uprobe, regs);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001594 if (can_skip_sstep(uprobe, regs))
1595 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301596
Oleg Nesterov608e7422012-12-31 18:20:42 +01001597 if (!pre_ssout(uprobe, regs, bp_vaddr))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301598 return;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301599
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001600 /* can_skip_sstep() succeeded, or restart if can't singlestep */
Oleg Nesterov0578a972012-09-14 18:31:23 +02001601out:
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001602 put_uprobe(uprobe);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301603}
1604
1605/*
1606 * Perform required fix-ups and disable singlestep.
1607 * Allow pending signals to take effect.
1608 */
1609static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
1610{
1611 struct uprobe *uprobe;
1612
1613 uprobe = utask->active_uprobe;
1614 if (utask->state == UTASK_SSTEP_ACK)
1615 arch_uprobe_post_xol(&uprobe->arch, regs);
1616 else if (utask->state == UTASK_SSTEP_TRAPPED)
1617 arch_uprobe_abort_xol(&uprobe->arch, regs);
1618 else
1619 WARN_ON_ONCE(1);
1620
1621 put_uprobe(uprobe);
1622 utask->active_uprobe = NULL;
1623 utask->state = UTASK_RUNNING;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301624 xol_free_insn_slot(current);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301625
1626 spin_lock_irq(&current->sighand->siglock);
1627 recalc_sigpending(); /* see uprobe_deny_signal() */
1628 spin_unlock_irq(&current->sighand->siglock);
1629}
1630
1631/*
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001632 * On breakpoint hit, breakpoint notifier sets the TIF_UPROBE flag and
1633 * allows the thread to return from interrupt. After that handle_swbp()
1634 * sets utask->active_uprobe.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301635 *
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001636 * On singlestep exception, singlestep notifier sets the TIF_UPROBE flag
1637 * and allows the thread to return from interrupt.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301638 *
1639 * While returning to userspace, thread notices the TIF_UPROBE flag and calls
1640 * uprobe_notify_resume().
1641 */
1642void uprobe_notify_resume(struct pt_regs *regs)
1643{
1644 struct uprobe_task *utask;
1645
Oleg Nesterovdb023ea2012-09-14 19:05:46 +02001646 clear_thread_flag(TIF_UPROBE);
1647
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301648 utask = current->utask;
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001649 if (utask && utask->active_uprobe)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301650 handle_singlestep(utask, regs);
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001651 else
1652 handle_swbp(regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301653}
1654
1655/*
1656 * uprobe_pre_sstep_notifier gets called from interrupt context as part of
1657 * notifier mechanism. Set TIF_UPROBE flag and indicate breakpoint hit.
1658 */
1659int uprobe_pre_sstep_notifier(struct pt_regs *regs)
1660{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001661 if (!current->mm || !test_bit(MMF_HAS_UPROBES, &current->mm->flags))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301662 return 0;
1663
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301664 set_thread_flag(TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301665 return 1;
1666}
1667
1668/*
1669 * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier
1670 * mechanism. Set TIF_UPROBE flag and indicate completion of singlestep.
1671 */
1672int uprobe_post_sstep_notifier(struct pt_regs *regs)
1673{
1674 struct uprobe_task *utask = current->utask;
1675
1676 if (!current->mm || !utask || !utask->active_uprobe)
1677 /* task is currently not uprobed */
1678 return 0;
1679
1680 utask->state = UTASK_SSTEP_ACK;
1681 set_thread_flag(TIF_UPROBE);
1682 return 1;
1683}
1684
1685static struct notifier_block uprobe_exception_nb = {
1686 .notifier_call = arch_uprobe_exception_notify,
1687 .priority = INT_MAX-1, /* notified after kprobes, kgdb */
1688};
1689
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301690static int __init init_uprobes(void)
1691{
1692 int i;
1693
Oleg Nesterov66d06df2012-11-25 22:48:37 +01001694 for (i = 0; i < UPROBES_HASH_SZ; i++)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301695 mutex_init(&uprobes_mmap_mutex[i]);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301696
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001697 if (percpu_init_rwsem(&dup_mmap_sem))
1698 return -ENOMEM;
1699
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301700 return register_die_notifier(&uprobe_exception_nb);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301701}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301702module_init(init_uprobes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301703
1704static void __exit exit_uprobes(void)
1705{
1706}
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301707module_exit(exit_uprobes);