blob: a567c8c7ef31fa8c7d9416c8a255717f6b978932 [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
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200176static void copy_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *opcode)
177{
178 void *kaddr = kmap_atomic(page);
179 memcpy(opcode, kaddr + (vaddr & ~PAGE_MASK), UPROBE_SWBP_INSN_SIZE);
180 kunmap_atomic(kaddr);
181}
182
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200183static int verify_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *new_opcode)
184{
185 uprobe_opcode_t old_opcode;
186 bool is_swbp;
187
188 copy_opcode(page, vaddr, &old_opcode);
189 is_swbp = is_swbp_insn(&old_opcode);
190
191 if (is_swbp_insn(new_opcode)) {
192 if (is_swbp) /* register: already installed? */
193 return 0;
194 } else {
195 if (!is_swbp) /* unregister: was it changed by us? */
Oleg Nesterov076a3652012-09-30 18:54:53 +0200196 return 0;
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200197 }
198
199 return 1;
200}
201
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530202/*
203 * NOTE:
204 * Expect the breakpoint instruction to be the smallest size instruction for
205 * the architecture. If an arch has variable length instruction and the
206 * breakpoint instruction is not of the smallest length instruction
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200207 * supported by that architecture then we need to modify is_swbp_at_addr and
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530208 * write_opcode accordingly. This would never be a problem for archs that
209 * have fixed length instructions.
210 */
211
212/*
213 * write_opcode - write the opcode at a given virtual address.
214 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530215 * @vaddr: the virtual address to store the opcode.
216 * @opcode: opcode to be written at @vaddr.
217 *
218 * Called with mm->mmap_sem held (for read and with a reference to
219 * mm).
220 *
221 * For mm @mm, write the opcode at @vaddr.
222 * Return 0 (success) or a negative errno.
223 */
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200224static int write_opcode(struct mm_struct *mm, unsigned long vaddr,
225 uprobe_opcode_t opcode)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530226{
227 struct page *old_page, *new_page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530228 void *vaddr_old, *vaddr_new;
229 struct vm_area_struct *vma;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530230 int ret;
Oleg Nesterovf4030722012-07-29 20:22:12 +0200231
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200232retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530233 /* Read the page with vaddr into memory */
Oleg Nesterov75ed82e2012-09-16 17:20:06 +0200234 ret = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &old_page, &vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530235 if (ret <= 0)
236 return ret;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100237
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200238 ret = verify_opcode(old_page, vaddr, &opcode);
239 if (ret <= 0)
240 goto put_old;
241
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530242 ret = -ENOMEM;
243 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vaddr);
244 if (!new_page)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200245 goto put_old;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530246
247 __SetPageUptodate(new_page);
248
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530249 /* copy the page now that we've got it stable */
250 vaddr_old = kmap_atomic(old_page);
251 vaddr_new = kmap_atomic(new_page);
252
253 memcpy(vaddr_new, vaddr_old, PAGE_SIZE);
Oleg Nesterovd9c4a302012-06-15 17:43:50 +0200254 memcpy(vaddr_new + (vaddr & ~PAGE_MASK), &opcode, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530255
256 kunmap_atomic(vaddr_new);
257 kunmap_atomic(vaddr_old);
258
259 ret = anon_vma_prepare(vma);
260 if (ret)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200261 goto put_new;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530262
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200263 ret = __replace_page(vma, vaddr, old_page, new_page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530264
Oleg Nesterov9f924482012-07-29 20:22:20 +0200265put_new:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530266 page_cache_release(new_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200267put_old:
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100268 put_page(old_page);
269
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200270 if (unlikely(ret == -EAGAIN))
271 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530272 return ret;
273}
274
275/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530276 * set_swbp - store breakpoint at a given address.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530277 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530278 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530279 * @vaddr: the virtual address to insert the opcode.
280 *
281 * For mm @mm, store the breakpoint instruction at @vaddr.
282 * Return 0 (success) or a negative errno.
283 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530284int __weak set_swbp(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530285{
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200286 return write_opcode(mm, vaddr, UPROBE_SWBP_INSN);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530287}
288
289/**
290 * set_orig_insn - Restore the original instruction.
291 * @mm: the probed process address space.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530292 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530293 * @vaddr: the virtual address to insert the opcode.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530294 *
295 * For mm @mm, restore the original opcode (opcode) at @vaddr.
296 * Return 0 (success) or a negative errno.
297 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100298int __weak
Oleg Nesterovded86e72012-08-08 18:07:03 +0200299set_orig_insn(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530300{
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200301 return write_opcode(mm, vaddr, *(uprobe_opcode_t *)auprobe->insn);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530302}
303
304static int match_uprobe(struct uprobe *l, struct uprobe *r)
305{
306 if (l->inode < r->inode)
307 return -1;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100308
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530309 if (l->inode > r->inode)
310 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530311
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100312 if (l->offset < r->offset)
313 return -1;
314
315 if (l->offset > r->offset)
316 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530317
318 return 0;
319}
320
321static struct uprobe *__find_uprobe(struct inode *inode, loff_t offset)
322{
323 struct uprobe u = { .inode = inode, .offset = offset };
324 struct rb_node *n = uprobes_tree.rb_node;
325 struct uprobe *uprobe;
326 int match;
327
328 while (n) {
329 uprobe = rb_entry(n, struct uprobe, rb_node);
330 match = match_uprobe(&u, uprobe);
331 if (!match) {
332 atomic_inc(&uprobe->ref);
333 return uprobe;
334 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100335
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530336 if (match < 0)
337 n = n->rb_left;
338 else
339 n = n->rb_right;
340 }
341 return NULL;
342}
343
344/*
345 * Find a uprobe corresponding to a given inode:offset
346 * Acquires uprobes_treelock
347 */
348static struct uprobe *find_uprobe(struct inode *inode, loff_t offset)
349{
350 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530351
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200352 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530353 uprobe = __find_uprobe(inode, offset);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200354 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100355
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530356 return uprobe;
357}
358
359static struct uprobe *__insert_uprobe(struct uprobe *uprobe)
360{
361 struct rb_node **p = &uprobes_tree.rb_node;
362 struct rb_node *parent = NULL;
363 struct uprobe *u;
364 int match;
365
366 while (*p) {
367 parent = *p;
368 u = rb_entry(parent, struct uprobe, rb_node);
369 match = match_uprobe(uprobe, u);
370 if (!match) {
371 atomic_inc(&u->ref);
372 return u;
373 }
374
375 if (match < 0)
376 p = &parent->rb_left;
377 else
378 p = &parent->rb_right;
379
380 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100381
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530382 u = NULL;
383 rb_link_node(&uprobe->rb_node, parent, p);
384 rb_insert_color(&uprobe->rb_node, &uprobes_tree);
385 /* get access + creation ref */
386 atomic_set(&uprobe->ref, 2);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100387
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530388 return u;
389}
390
391/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100392 * Acquire uprobes_treelock.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530393 * Matching uprobe already exists in rbtree;
394 * increment (access refcount) and return the matching uprobe.
395 *
396 * No matching uprobe; insert the uprobe in rb_tree;
397 * get a double refcount (access + creation) and return NULL.
398 */
399static struct uprobe *insert_uprobe(struct uprobe *uprobe)
400{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530401 struct uprobe *u;
402
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200403 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530404 u = __insert_uprobe(uprobe);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200405 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100406
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530407 return u;
408}
409
410static void put_uprobe(struct uprobe *uprobe)
411{
412 if (atomic_dec_and_test(&uprobe->ref))
413 kfree(uprobe);
414}
415
416static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
417{
418 struct uprobe *uprobe, *cur_uprobe;
419
420 uprobe = kzalloc(sizeof(struct uprobe), GFP_KERNEL);
421 if (!uprobe)
422 return NULL;
423
424 uprobe->inode = igrab(inode);
425 uprobe->offset = offset;
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100426 init_rwsem(&uprobe->register_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530427 init_rwsem(&uprobe->consumer_rwsem);
Oleg Nesterovbbc33d02012-11-21 16:55:38 +0100428 /* For now assume that the instruction need not be single-stepped */
429 __set_bit(UPROBE_SKIP_SSTEP, &uprobe->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530430
431 /* add to uprobes_tree, sorted on inode:offset */
432 cur_uprobe = insert_uprobe(uprobe);
433
434 /* a uprobe exists for this inode:offset combination */
435 if (cur_uprobe) {
436 kfree(uprobe);
437 uprobe = cur_uprobe;
438 iput(inode);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100439 }
440
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530441 return uprobe;
442}
443
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100444static void consumer_add(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530445{
446 down_write(&uprobe->consumer_rwsem);
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530447 uc->next = uprobe->consumers;
448 uprobe->consumers = uc;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530449 up_write(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530450}
451
452/*
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530453 * For uprobe @uprobe, delete the consumer @uc.
454 * Return true if the @uc is deleted successfully
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530455 * or return false.
456 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530457static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530458{
459 struct uprobe_consumer **con;
460 bool ret = false;
461
462 down_write(&uprobe->consumer_rwsem);
463 for (con = &uprobe->consumers; *con; con = &(*con)->next) {
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530464 if (*con == uc) {
465 *con = uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530466 ret = true;
467 break;
468 }
469 }
470 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100471
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530472 return ret;
473}
474
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530475static int
Oleg Nesterovd4366152012-06-15 17:43:42 +0200476__copy_insn(struct address_space *mapping, struct file *filp, char *insn,
Oleg Nesterov593609a2012-06-15 17:43:59 +0200477 unsigned long nbytes, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530478{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530479 struct page *page;
480 void *vaddr;
Oleg Nesterov593609a2012-06-15 17:43:59 +0200481 unsigned long off;
482 pgoff_t idx;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530483
484 if (!filp)
485 return -EINVAL;
486
Oleg Nesterovcc359d12012-06-15 17:43:25 +0200487 if (!mapping->a_ops->readpage)
488 return -EIO;
489
Oleg Nesterov593609a2012-06-15 17:43:59 +0200490 idx = offset >> PAGE_CACHE_SHIFT;
491 off = offset & ~PAGE_MASK;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530492
493 /*
494 * Ensure that the page that has the original instruction is
495 * populated and in page-cache.
496 */
497 page = read_mapping_page(mapping, idx, filp);
498 if (IS_ERR(page))
499 return PTR_ERR(page);
500
501 vaddr = kmap_atomic(page);
Oleg Nesterov593609a2012-06-15 17:43:59 +0200502 memcpy(insn, vaddr + off, nbytes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530503 kunmap_atomic(vaddr);
504 page_cache_release(page);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100505
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530506 return 0;
507}
508
Oleg Nesterovd4366152012-06-15 17:43:42 +0200509static int copy_insn(struct uprobe *uprobe, struct file *filp)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530510{
511 struct address_space *mapping;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530512 unsigned long nbytes;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100513 int bytes;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530514
Oleg Nesterovd4366152012-06-15 17:43:42 +0200515 nbytes = PAGE_SIZE - (uprobe->offset & ~PAGE_MASK);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530516 mapping = uprobe->inode->i_mapping;
517
518 /* Instruction at end of binary; copy only available bytes */
519 if (uprobe->offset + MAX_UINSN_BYTES > uprobe->inode->i_size)
520 bytes = uprobe->inode->i_size - uprobe->offset;
521 else
522 bytes = MAX_UINSN_BYTES;
523
524 /* Instruction at the page-boundary; copy bytes in second page */
525 if (nbytes < bytes) {
Oleg Nesterovfc36f592012-06-15 17:43:44 +0200526 int err = __copy_insn(mapping, filp, uprobe->arch.insn + nbytes,
527 bytes - nbytes, uprobe->offset + nbytes);
528 if (err)
529 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530530 bytes = nbytes;
531 }
Oleg Nesterovd4366152012-06-15 17:43:42 +0200532 return __copy_insn(mapping, filp, uprobe->arch.insn, bytes, uprobe->offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530533}
534
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200535static int prepare_uprobe(struct uprobe *uprobe, struct file *file,
536 struct mm_struct *mm, unsigned long vaddr)
537{
538 int ret = 0;
539
Oleg Nesterov71434f22012-09-30 21:12:44 +0200540 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200541 return ret;
542
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100543 /* TODO: move this into _register, until then we abuse this sem. */
544 down_write(&uprobe->consumer_rwsem);
Oleg Nesterov71434f22012-09-30 21:12:44 +0200545 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterov4710f052012-09-30 20:31:41 +0200546 goto out;
547
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200548 ret = copy_insn(uprobe, file);
549 if (ret)
550 goto out;
551
552 ret = -ENOTSUPP;
553 if (is_swbp_insn((uprobe_opcode_t *)uprobe->arch.insn))
554 goto out;
555
556 ret = arch_uprobe_analyze_insn(&uprobe->arch, mm, vaddr);
557 if (ret)
558 goto out;
559
560 /* write_opcode() assumes we don't cross page boundary */
561 BUG_ON((uprobe->offset & ~PAGE_MASK) +
562 UPROBE_SWBP_INSN_SIZE > PAGE_SIZE);
563
564 smp_wmb(); /* pairs with rmb() in find_active_uprobe() */
Oleg Nesterov71434f22012-09-30 21:12:44 +0200565 set_bit(UPROBE_COPY_INSN, &uprobe->flags);
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200566
567 out:
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100568 up_write(&uprobe->consumer_rwsem);
Oleg Nesterov4710f052012-09-30 20:31:41 +0200569
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200570 return ret;
571}
572
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100573static inline bool consumer_filter(struct uprobe_consumer *uc,
574 enum uprobe_filter_ctx ctx, struct mm_struct *mm)
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100575{
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100576 return !uc->filter || uc->filter(uc, ctx, mm);
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100577}
578
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100579static bool filter_chain(struct uprobe *uprobe,
580 enum uprobe_filter_ctx ctx, struct mm_struct *mm)
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100581{
Oleg Nesterov1ff6fee2012-11-24 18:15:46 +0100582 struct uprobe_consumer *uc;
583 bool ret = false;
584
585 down_read(&uprobe->consumer_rwsem);
586 for (uc = uprobe->consumers; uc; uc = uc->next) {
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100587 ret = consumer_filter(uc, ctx, mm);
Oleg Nesterov1ff6fee2012-11-24 18:15:46 +0100588 if (ret)
589 break;
590 }
591 up_read(&uprobe->consumer_rwsem);
592
593 return ret;
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100594}
595
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530596static int
597install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200598 struct vm_area_struct *vma, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530599{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200600 bool first_uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530601 int ret;
602
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200603 ret = prepare_uprobe(uprobe, vma->vm_file, mm, vaddr);
604 if (ret)
605 return ret;
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530606
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200607 /*
608 * set MMF_HAS_UPROBES in advance for uprobe_pre_sstep_notifier(),
609 * the task can hit this breakpoint right after __replace_page().
610 */
611 first_uprobe = !test_bit(MMF_HAS_UPROBES, &mm->flags);
612 if (first_uprobe)
613 set_bit(MMF_HAS_UPROBES, &mm->flags);
614
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200615 ret = set_swbp(&uprobe->arch, mm, vaddr);
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200616 if (!ret)
617 clear_bit(MMF_RECALC_UPROBES, &mm->flags);
618 else if (first_uprobe)
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200619 clear_bit(MMF_HAS_UPROBES, &mm->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530620
621 return ret;
622}
623
Oleg Nesterov076a3652012-09-30 18:54:53 +0200624static int
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200625remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530626{
Oleg Nesterov9f68f672012-08-19 16:15:09 +0200627 set_bit(MMF_RECALC_UPROBES, &mm->flags);
Oleg Nesterov076a3652012-09-30 18:54:53 +0200628 return set_orig_insn(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530629}
630
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100631static inline bool uprobe_is_active(struct uprobe *uprobe)
632{
633 return !RB_EMPTY_NODE(&uprobe->rb_node);
634}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530635/*
Oleg Nesterov778b0322012-05-29 21:30:08 +0200636 * There could be threads that have already hit the breakpoint. They
637 * will recheck the current insn and restart if find_uprobe() fails.
638 * See find_active_uprobe().
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530639 */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530640static void delete_uprobe(struct uprobe *uprobe)
641{
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100642 if (WARN_ON(!uprobe_is_active(uprobe)))
643 return;
644
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200645 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530646 rb_erase(&uprobe->rb_node, &uprobes_tree);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200647 spin_unlock(&uprobes_treelock);
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100648 RB_CLEAR_NODE(&uprobe->rb_node); /* for uprobe_is_active() */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530649 iput(uprobe->inode);
650 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530651}
652
Oleg Nesterov26872092012-06-15 17:43:33 +0200653struct map_info {
654 struct map_info *next;
655 struct mm_struct *mm;
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200656 unsigned long vaddr;
Oleg Nesterov26872092012-06-15 17:43:33 +0200657};
658
659static inline struct map_info *free_map_info(struct map_info *info)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530660{
Oleg Nesterov26872092012-06-15 17:43:33 +0200661 struct map_info *next = info->next;
662 kfree(info);
663 return next;
664}
665
666static struct map_info *
667build_map_info(struct address_space *mapping, loff_t offset, bool is_register)
668{
669 unsigned long pgoff = offset >> PAGE_SHIFT;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530670 struct vm_area_struct *vma;
Oleg Nesterov26872092012-06-15 17:43:33 +0200671 struct map_info *curr = NULL;
672 struct map_info *prev = NULL;
673 struct map_info *info;
674 int more = 0;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100675
Oleg Nesterov26872092012-06-15 17:43:33 +0200676 again:
677 mutex_lock(&mapping->i_mmap_mutex);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700678 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530679 if (!valid_vma(vma, is_register))
680 continue;
681
Oleg Nesterov7a5bfb62012-06-15 17:43:36 +0200682 if (!prev && !more) {
683 /*
684 * Needs GFP_NOWAIT to avoid i_mmap_mutex recursion through
685 * reclaim. This is optimistic, no harm done if it fails.
686 */
687 prev = kmalloc(sizeof(struct map_info),
688 GFP_NOWAIT | __GFP_NOMEMALLOC | __GFP_NOWARN);
689 if (prev)
690 prev->next = NULL;
691 }
Oleg Nesterov26872092012-06-15 17:43:33 +0200692 if (!prev) {
693 more++;
694 continue;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530695 }
696
Oleg Nesterov26872092012-06-15 17:43:33 +0200697 if (!atomic_inc_not_zero(&vma->vm_mm->mm_users))
698 continue;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100699
Oleg Nesterov26872092012-06-15 17:43:33 +0200700 info = prev;
701 prev = prev->next;
702 info->next = curr;
703 curr = info;
704
705 info->mm = vma->vm_mm;
Oleg Nesterov57683f72012-07-29 20:22:47 +0200706 info->vaddr = offset_to_vaddr(vma, offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530707 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530708 mutex_unlock(&mapping->i_mmap_mutex);
709
Oleg Nesterov26872092012-06-15 17:43:33 +0200710 if (!more)
711 goto out;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100712
Oleg Nesterov26872092012-06-15 17:43:33 +0200713 prev = curr;
714 while (curr) {
715 mmput(curr->mm);
716 curr = curr->next;
717 }
718
719 do {
720 info = kmalloc(sizeof(struct map_info), GFP_KERNEL);
721 if (!info) {
722 curr = ERR_PTR(-ENOMEM);
723 goto out;
724 }
725 info->next = prev;
726 prev = info;
727 } while (--more);
728
729 goto again;
730 out:
731 while (prev)
732 prev = free_map_info(prev);
733 return curr;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530734}
735
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100736static int
737register_for_each_vma(struct uprobe *uprobe, struct uprobe_consumer *new)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530738{
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100739 bool is_register = !!new;
Oleg Nesterov26872092012-06-15 17:43:33 +0200740 struct map_info *info;
741 int err = 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530742
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100743 percpu_down_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200744 info = build_map_info(uprobe->inode->i_mapping,
745 uprobe->offset, is_register);
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100746 if (IS_ERR(info)) {
747 err = PTR_ERR(info);
748 goto out;
749 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100750
Oleg Nesterov26872092012-06-15 17:43:33 +0200751 while (info) {
752 struct mm_struct *mm = info->mm;
753 struct vm_area_struct *vma;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100754
Oleg Nesterov076a3652012-09-30 18:54:53 +0200755 if (err && is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200756 goto free;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100757
Oleg Nesterov77fc4af2012-05-29 21:29:28 +0200758 down_write(&mm->mmap_sem);
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200759 vma = find_vma(mm, info->vaddr);
760 if (!vma || !valid_vma(vma, is_register) ||
761 vma->vm_file->f_mapping->host != uprobe->inode)
Oleg Nesterov26872092012-06-15 17:43:33 +0200762 goto unlock;
763
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200764 if (vma->vm_start > info->vaddr ||
765 vaddr_to_offset(vma, info->vaddr) != uprobe->offset)
Oleg Nesterov26872092012-06-15 17:43:33 +0200766 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530767
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100768 if (is_register) {
769 /* consult only the "caller", new consumer. */
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100770 if (consumer_filter(new,
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100771 UPROBE_FILTER_REGISTER, mm))
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100772 err = install_breakpoint(uprobe, mm, vma, info->vaddr);
773 } else if (test_bit(MMF_HAS_UPROBES, &mm->flags)) {
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100774 if (!filter_chain(uprobe,
775 UPROBE_FILTER_UNREGISTER, mm))
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100776 err |= remove_breakpoint(uprobe, mm, info->vaddr);
777 }
Oleg Nesterov78f74112012-08-08 17:35:08 +0200778
Oleg Nesterov26872092012-06-15 17:43:33 +0200779 unlock:
780 up_write(&mm->mmap_sem);
781 free:
782 mmput(mm);
783 info = free_map_info(info);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530784 }
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100785 out:
786 percpu_up_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200787 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530788}
789
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100790static int __uprobe_register(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530791{
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100792 consumer_add(uprobe, uc);
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100793 return register_for_each_vma(uprobe, uc);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530794}
795
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100796static void __uprobe_unregister(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530797{
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100798 int err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530799
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100800 if (!consumer_del(uprobe, uc)) /* WARN? */
801 return;
802
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100803 err = register_for_each_vma(uprobe, NULL);
Oleg Nesterovbb929282012-11-24 18:27:08 +0100804 /* TODO : cant unregister? schedule a worker thread */
805 if (!uprobe->consumers && !err)
806 delete_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530807}
808
809/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100810 * uprobe_register - register a probe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530811 * @inode: the file in which the probe has to be placed.
812 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530813 * @uc: information on howto handle the probe..
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530814 *
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100815 * Apart from the access refcount, uprobe_register() takes a creation
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530816 * refcount (thro alloc_uprobe) if and only if this @uprobe is getting
817 * inserted into the rbtree (i.e first consumer for a @inode:@offset
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100818 * tuple). Creation refcount stops uprobe_unregister from freeing the
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530819 * @uprobe even before the register operation is complete. Creation
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530820 * refcount is released when the last @uc for the @uprobe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530821 * unregisters.
822 *
823 * Return errno if it cannot successully install probes
824 * else return 0 (success)
825 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530826int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530827{
828 struct uprobe *uprobe;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100829 int ret;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530830
Oleg Nesterovf0744af2012-11-21 18:01:43 +0100831 /* Racy, just to catch the obvious mistakes */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530832 if (offset > i_size_read(inode))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100833 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530834
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100835 retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530836 uprobe = alloc_uprobe(inode, offset);
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100837 if (!uprobe)
838 return -ENOMEM;
839 /*
840 * We can race with uprobe_unregister()->delete_uprobe().
841 * Check uprobe_is_active() and retry if it is false.
842 */
843 down_write(&uprobe->register_rwsem);
844 ret = -EAGAIN;
845 if (likely(uprobe_is_active(uprobe))) {
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100846 ret = __uprobe_register(uprobe, uc);
847 if (ret)
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100848 __uprobe_unregister(uprobe, uc);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530849 }
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100850 up_write(&uprobe->register_rwsem);
851 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530852
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100853 if (unlikely(ret == -EAGAIN))
854 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530855 return ret;
856}
Josh Stonee8440c12013-01-13 19:03:34 +0100857EXPORT_SYMBOL_GPL(uprobe_register);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530858
859/*
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100860 * uprobe_apply - unregister a already registered probe.
861 * @inode: the file in which the probe has to be removed.
862 * @offset: offset from the start of the file.
863 * @uc: consumer which wants to add more or remove some breakpoints
864 * @add: add or remove the breakpoints
865 */
866int uprobe_apply(struct inode *inode, loff_t offset,
867 struct uprobe_consumer *uc, bool add)
868{
869 struct uprobe *uprobe;
870 struct uprobe_consumer *con;
871 int ret = -ENOENT;
872
873 uprobe = find_uprobe(inode, offset);
874 if (!uprobe)
875 return ret;
876
877 down_write(&uprobe->register_rwsem);
878 for (con = uprobe->consumers; con && con != uc ; con = con->next)
879 ;
880 if (con)
881 ret = register_for_each_vma(uprobe, add ? uc : NULL);
882 up_write(&uprobe->register_rwsem);
883 put_uprobe(uprobe);
884
885 return ret;
886}
887
888/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100889 * uprobe_unregister - unregister a already registered probe.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530890 * @inode: the file in which the probe has to be removed.
891 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530892 * @uc: identify which probe if multiple probes are colocated.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530893 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530894void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530895{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100896 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530897
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530898 uprobe = find_uprobe(inode, offset);
899 if (!uprobe)
900 return;
901
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100902 down_write(&uprobe->register_rwsem);
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100903 __uprobe_unregister(uprobe, uc);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100904 up_write(&uprobe->register_rwsem);
Sasha Levinc91368c2012-12-20 14:11:30 -0500905 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530906}
Josh Stonee8440c12013-01-13 19:03:34 +0100907EXPORT_SYMBOL_GPL(uprobe_unregister);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530908
Oleg Nesterovda1816b2012-12-29 17:49:11 +0100909static int unapply_uprobe(struct uprobe *uprobe, struct mm_struct *mm)
910{
911 struct vm_area_struct *vma;
912 int err = 0;
913
914 down_read(&mm->mmap_sem);
915 for (vma = mm->mmap; vma; vma = vma->vm_next) {
916 unsigned long vaddr;
917 loff_t offset;
918
919 if (!valid_vma(vma, false) ||
920 vma->vm_file->f_mapping->host != uprobe->inode)
921 continue;
922
923 offset = (loff_t)vma->vm_pgoff << PAGE_SHIFT;
924 if (uprobe->offset < offset ||
925 uprobe->offset >= offset + vma->vm_end - vma->vm_start)
926 continue;
927
928 vaddr = offset_to_vaddr(vma, uprobe->offset);
929 err |= remove_breakpoint(uprobe, mm, vaddr);
930 }
931 up_read(&mm->mmap_sem);
932
933 return err;
934}
935
Oleg Nesterov891c3972012-07-29 20:22:40 +0200936static struct rb_node *
937find_node_in_range(struct inode *inode, loff_t min, loff_t max)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530938{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530939 struct rb_node *n = uprobes_tree.rb_node;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530940
941 while (n) {
Oleg Nesterov891c3972012-07-29 20:22:40 +0200942 struct uprobe *u = rb_entry(n, struct uprobe, rb_node);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100943
Oleg Nesterov891c3972012-07-29 20:22:40 +0200944 if (inode < u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530945 n = n->rb_left;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200946 } else if (inode > u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530947 n = n->rb_right;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200948 } else {
949 if (max < u->offset)
950 n = n->rb_left;
951 else if (min > u->offset)
952 n = n->rb_right;
953 else
954 break;
955 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530956 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100957
Oleg Nesterov891c3972012-07-29 20:22:40 +0200958 return n;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530959}
960
961/*
Oleg Nesterov891c3972012-07-29 20:22:40 +0200962 * For a given range in vma, build a list of probes that need to be inserted.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530963 */
Oleg Nesterov891c3972012-07-29 20:22:40 +0200964static void build_probe_list(struct inode *inode,
965 struct vm_area_struct *vma,
966 unsigned long start, unsigned long end,
967 struct list_head *head)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530968{
Oleg Nesterov891c3972012-07-29 20:22:40 +0200969 loff_t min, max;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200970 struct rb_node *n, *t;
971 struct uprobe *u;
972
973 INIT_LIST_HEAD(head);
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200974 min = vaddr_to_offset(vma, start);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200975 max = min + (end - start) - 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530976
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200977 spin_lock(&uprobes_treelock);
Oleg Nesterov891c3972012-07-29 20:22:40 +0200978 n = find_node_in_range(inode, min, max);
979 if (n) {
980 for (t = n; t; t = rb_prev(t)) {
981 u = rb_entry(t, struct uprobe, rb_node);
982 if (u->inode != inode || u->offset < min)
983 break;
984 list_add(&u->pending_list, head);
985 atomic_inc(&u->ref);
986 }
987 for (t = n; (t = rb_next(t)); ) {
988 u = rb_entry(t, struct uprobe, rb_node);
989 if (u->inode != inode || u->offset > max)
990 break;
991 list_add(&u->pending_list, head);
992 atomic_inc(&u->ref);
993 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530994 }
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200995 spin_unlock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530996}
997
998/*
Oleg Nesterov5e5be712012-08-06 14:49:56 +0200999 * Called from mmap_region/vma_adjust with mm->mmap_sem acquired.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301000 *
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001001 * Currently we ignore all errors and always return 0, the callers
1002 * can't handle the failure anyway.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301003 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001004int uprobe_mmap(struct vm_area_struct *vma)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301005{
1006 struct list_head tmp_list;
Oleg Nesterov665605a2012-07-29 20:22:29 +02001007 struct uprobe *uprobe, *u;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301008 struct inode *inode;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301009
Oleg Nesterov441f1eb2012-11-25 19:54:29 +01001010 if (no_uprobe_events() || !valid_vma(vma, true))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001011 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301012
1013 inode = vma->vm_file->f_mapping->host;
1014 if (!inode)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001015 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301016
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301017 mutex_lock(uprobes_mmap_hash(inode));
Oleg Nesterov891c3972012-07-29 20:22:40 +02001018 build_probe_list(inode, vma, vma->vm_start, vma->vm_end, &tmp_list);
Oleg Nesterov806a98b2012-12-27 18:21:11 +01001019 /*
1020 * We can race with uprobe_unregister(), this uprobe can be already
1021 * removed. But in this case filter_chain() must return false, all
1022 * consumers have gone away.
1023 */
Oleg Nesterov665605a2012-07-29 20:22:29 +02001024 list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
Oleg Nesterov806a98b2012-12-27 18:21:11 +01001025 if (!fatal_signal_pending(current) &&
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +01001026 filter_chain(uprobe, UPROBE_FILTER_MMAP, vma->vm_mm)) {
Oleg Nesterov57683f72012-07-29 20:22:47 +02001027 unsigned long vaddr = offset_to_vaddr(vma, uprobe->offset);
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001028 install_breakpoint(uprobe, vma->vm_mm, vma, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301029 }
1030 put_uprobe(uprobe);
1031 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301032 mutex_unlock(uprobes_mmap_hash(inode));
1033
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001034 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301035}
1036
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001037static bool
1038vma_has_uprobes(struct vm_area_struct *vma, unsigned long start, unsigned long end)
1039{
1040 loff_t min, max;
1041 struct inode *inode;
1042 struct rb_node *n;
1043
1044 inode = vma->vm_file->f_mapping->host;
1045
1046 min = vaddr_to_offset(vma, start);
1047 max = min + (end - start) - 1;
1048
1049 spin_lock(&uprobes_treelock);
1050 n = find_node_in_range(inode, min, max);
1051 spin_unlock(&uprobes_treelock);
1052
1053 return !!n;
1054}
1055
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301056/*
1057 * Called in context of a munmap of a vma.
1058 */
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301059void uprobe_munmap(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301060{
Oleg Nesterov441f1eb2012-11-25 19:54:29 +01001061 if (no_uprobe_events() || !valid_vma(vma, false))
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301062 return;
1063
Oleg Nesterov2fd611a2012-07-29 20:22:31 +02001064 if (!atomic_read(&vma->vm_mm->mm_users)) /* called by mmput() ? */
1065 return;
1066
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001067 if (!test_bit(MMF_HAS_UPROBES, &vma->vm_mm->flags) ||
1068 test_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags))
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001069 return;
1070
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001071 if (vma_has_uprobes(vma, start, end))
1072 set_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags);
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301073}
1074
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301075/* Slot allocation for XOL */
1076static int xol_add_vma(struct xol_area *area)
1077{
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001078 struct mm_struct *mm = current->mm;
1079 int ret = -EALREADY;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301080
1081 down_write(&mm->mmap_sem);
1082 if (mm->uprobes_state.xol_area)
1083 goto fail;
1084
1085 ret = -ENOMEM;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301086 /* Try to map as high as possible, this is only a hint. */
1087 area->vaddr = get_unmapped_area(NULL, TASK_SIZE - PAGE_SIZE, PAGE_SIZE, 0, 0);
1088 if (area->vaddr & ~PAGE_MASK) {
1089 ret = area->vaddr;
1090 goto fail;
1091 }
1092
1093 ret = install_special_mapping(mm, area->vaddr, PAGE_SIZE,
1094 VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO, &area->page);
1095 if (ret)
1096 goto fail;
1097
1098 smp_wmb(); /* pairs with get_xol_area() */
1099 mm->uprobes_state.xol_area = area;
1100 ret = 0;
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001101 fail:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301102 up_write(&mm->mmap_sem);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301103
1104 return ret;
1105}
1106
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301107/*
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001108 * get_xol_area - Allocate process's xol_area if necessary.
1109 * This area will be used for storing instructions for execution out of line.
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301110 *
1111 * Returns the allocated area or NULL.
1112 */
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001113static struct xol_area *get_xol_area(void)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301114{
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001115 struct mm_struct *mm = current->mm;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301116 struct xol_area *area;
1117
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001118 area = mm->uprobes_state.xol_area;
1119 if (area)
1120 goto ret;
1121
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301122 area = kzalloc(sizeof(*area), GFP_KERNEL);
1123 if (unlikely(!area))
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001124 goto out;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301125
1126 area->bitmap = kzalloc(BITS_TO_LONGS(UINSNS_PER_PAGE) * sizeof(long), GFP_KERNEL);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301127 if (!area->bitmap)
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001128 goto free_area;
1129
1130 area->page = alloc_page(GFP_HIGHUSER);
1131 if (!area->page)
1132 goto free_bitmap;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301133
1134 init_waitqueue_head(&area->wq);
1135 if (!xol_add_vma(area))
1136 return area;
1137
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001138 __free_page(area->page);
1139 free_bitmap:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301140 kfree(area->bitmap);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001141 free_area:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301142 kfree(area);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001143 out:
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001144 area = mm->uprobes_state.xol_area;
1145 ret:
1146 smp_read_barrier_depends(); /* pairs with wmb in xol_add_vma() */
1147 return area;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301148}
1149
1150/*
1151 * uprobe_clear_state - Free the area allocated for slots.
1152 */
1153void uprobe_clear_state(struct mm_struct *mm)
1154{
1155 struct xol_area *area = mm->uprobes_state.xol_area;
1156
1157 if (!area)
1158 return;
1159
1160 put_page(area->page);
1161 kfree(area->bitmap);
1162 kfree(area);
1163}
1164
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001165void uprobe_start_dup_mmap(void)
1166{
1167 percpu_down_read(&dup_mmap_sem);
1168}
1169
1170void uprobe_end_dup_mmap(void)
1171{
1172 percpu_up_read(&dup_mmap_sem);
1173}
1174
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001175void uprobe_dup_mmap(struct mm_struct *oldmm, struct mm_struct *newmm)
1176{
Oleg Nesterov61559a82012-08-08 17:17:46 +02001177 newmm->uprobes_state.xol_area = NULL;
1178
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001179 if (test_bit(MMF_HAS_UPROBES, &oldmm->flags)) {
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001180 set_bit(MMF_HAS_UPROBES, &newmm->flags);
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001181 /* unconditionally, dup_mmap() skips VM_DONTCOPY vmas */
1182 set_bit(MMF_RECALC_UPROBES, &newmm->flags);
1183 }
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001184}
1185
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301186/*
1187 * - search for a free slot.
1188 */
1189static unsigned long xol_take_insn_slot(struct xol_area *area)
1190{
1191 unsigned long slot_addr;
1192 int slot_nr;
1193
1194 do {
1195 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE);
1196 if (slot_nr < UINSNS_PER_PAGE) {
1197 if (!test_and_set_bit(slot_nr, area->bitmap))
1198 break;
1199
1200 slot_nr = UINSNS_PER_PAGE;
1201 continue;
1202 }
1203 wait_event(area->wq, (atomic_read(&area->slot_count) < UINSNS_PER_PAGE));
1204 } while (slot_nr >= UINSNS_PER_PAGE);
1205
1206 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES);
1207 atomic_inc(&area->slot_count);
1208
1209 return slot_addr;
1210}
1211
1212/*
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001213 * xol_get_insn_slot - allocate a slot for xol.
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301214 * Returns the allocated slot address or 0.
1215 */
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001216static unsigned long xol_get_insn_slot(struct uprobe *uprobe)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301217{
1218 struct xol_area *area;
1219 unsigned long offset;
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001220 unsigned long xol_vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301221 void *vaddr;
1222
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001223 area = get_xol_area();
1224 if (!area)
1225 return 0;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301226
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001227 xol_vaddr = xol_take_insn_slot(area);
1228 if (unlikely(!xol_vaddr))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301229 return 0;
1230
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001231 /* Initialize the slot */
1232 offset = xol_vaddr & ~PAGE_MASK;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301233 vaddr = kmap_atomic(area->page);
1234 memcpy(vaddr + offset, uprobe->arch.insn, MAX_UINSN_BYTES);
1235 kunmap_atomic(vaddr);
Rabin Vincent65b6ecc2012-11-14 18:27:07 +01001236 /*
1237 * We probably need flush_icache_user_range() but it needs vma.
1238 * This should work on supported architectures too.
1239 */
1240 flush_dcache_page(area->page);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301241
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001242 return xol_vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301243}
1244
1245/*
1246 * xol_free_insn_slot - If slot was earlier allocated by
1247 * @xol_get_insn_slot(), make the slot available for
1248 * subsequent requests.
1249 */
1250static void xol_free_insn_slot(struct task_struct *tsk)
1251{
1252 struct xol_area *area;
1253 unsigned long vma_end;
1254 unsigned long slot_addr;
1255
1256 if (!tsk->mm || !tsk->mm->uprobes_state.xol_area || !tsk->utask)
1257 return;
1258
1259 slot_addr = tsk->utask->xol_vaddr;
Oleg Nesterovaf4355e2012-12-31 18:37:11 +01001260 if (unlikely(!slot_addr))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301261 return;
1262
1263 area = tsk->mm->uprobes_state.xol_area;
1264 vma_end = area->vaddr + PAGE_SIZE;
1265 if (area->vaddr <= slot_addr && slot_addr < vma_end) {
1266 unsigned long offset;
1267 int slot_nr;
1268
1269 offset = slot_addr - area->vaddr;
1270 slot_nr = offset / UPROBE_XOL_SLOT_BYTES;
1271 if (slot_nr >= UINSNS_PER_PAGE)
1272 return;
1273
1274 clear_bit(slot_nr, area->bitmap);
1275 atomic_dec(&area->slot_count);
1276 if (waitqueue_active(&area->wq))
1277 wake_up(&area->wq);
1278
1279 tsk->utask->xol_vaddr = 0;
1280 }
1281}
1282
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301283/**
1284 * uprobe_get_swbp_addr - compute address of swbp given post-swbp regs
1285 * @regs: Reflects the saved state of the task after it has hit a breakpoint
1286 * instruction.
1287 * Return the address of the breakpoint instruction.
1288 */
1289unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs)
1290{
1291 return instruction_pointer(regs) - UPROBE_SWBP_INSN_SIZE;
1292}
1293
1294/*
1295 * Called with no locks held.
1296 * Called in context of a exiting or a exec-ing thread.
1297 */
1298void uprobe_free_utask(struct task_struct *t)
1299{
1300 struct uprobe_task *utask = t->utask;
1301
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301302 if (!utask)
1303 return;
1304
1305 if (utask->active_uprobe)
1306 put_uprobe(utask->active_uprobe);
1307
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301308 xol_free_insn_slot(t);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301309 kfree(utask);
1310 t->utask = NULL;
1311}
1312
1313/*
1314 * Called in context of a new clone/fork from copy_process.
1315 */
1316void uprobe_copy_process(struct task_struct *t)
1317{
1318 t->utask = NULL;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301319}
1320
1321/*
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001322 * Allocate a uprobe_task object for the task if if necessary.
1323 * Called when the thread hits a breakpoint.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301324 *
1325 * Returns:
1326 * - pointer to new uprobe_task on success
1327 * - NULL otherwise
1328 */
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001329static struct uprobe_task *get_utask(void)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301330{
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001331 if (!current->utask)
1332 current->utask = kzalloc(sizeof(struct uprobe_task), GFP_KERNEL);
1333 return current->utask;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301334}
1335
1336/* Prepare to single-step probed instruction out of line. */
1337static int
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001338pre_ssout(struct uprobe *uprobe, struct pt_regs *regs, unsigned long bp_vaddr)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301339{
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001340 struct uprobe_task *utask;
1341 unsigned long xol_vaddr;
Oleg Nesterovaba51022012-12-31 18:12:48 +01001342 int err;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301343
Oleg Nesterov608e7422012-12-31 18:20:42 +01001344 utask = get_utask();
1345 if (!utask)
1346 return -ENOMEM;
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001347
1348 xol_vaddr = xol_get_insn_slot(uprobe);
1349 if (!xol_vaddr)
1350 return -ENOMEM;
1351
1352 utask->xol_vaddr = xol_vaddr;
1353 utask->vaddr = bp_vaddr;
1354
Oleg Nesterovaba51022012-12-31 18:12:48 +01001355 err = arch_uprobe_pre_xol(&uprobe->arch, regs);
1356 if (unlikely(err)) {
1357 xol_free_insn_slot(current);
1358 return err;
1359 }
1360
Oleg Nesterov608e7422012-12-31 18:20:42 +01001361 utask->active_uprobe = uprobe;
1362 utask->state = UTASK_SSTEP;
Oleg Nesterovaba51022012-12-31 18:12:48 +01001363 return 0;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301364}
1365
1366/*
1367 * If we are singlestepping, then ensure this thread is not connected to
1368 * non-fatal signals until completion of singlestep. When xol insn itself
1369 * triggers the signal, restart the original insn even if the task is
1370 * already SIGKILL'ed (since coredump should report the correct ip). This
1371 * is even more important if the task has a handler for SIGSEGV/etc, The
1372 * _same_ instruction should be repeated again after return from the signal
1373 * handler, and SSTEP can never finish in this case.
1374 */
1375bool uprobe_deny_signal(void)
1376{
1377 struct task_struct *t = current;
1378 struct uprobe_task *utask = t->utask;
1379
1380 if (likely(!utask || !utask->active_uprobe))
1381 return false;
1382
1383 WARN_ON_ONCE(utask->state != UTASK_SSTEP);
1384
1385 if (signal_pending(t)) {
1386 spin_lock_irq(&t->sighand->siglock);
1387 clear_tsk_thread_flag(t, TIF_SIGPENDING);
1388 spin_unlock_irq(&t->sighand->siglock);
1389
1390 if (__fatal_signal_pending(t) || arch_uprobe_xol_was_trapped(t)) {
1391 utask->state = UTASK_SSTEP_TRAPPED;
1392 set_tsk_thread_flag(t, TIF_UPROBE);
1393 set_tsk_thread_flag(t, TIF_NOTIFY_RESUME);
1394 }
1395 }
1396
1397 return true;
1398}
1399
1400/*
1401 * Avoid singlestepping the original instruction if the original instruction
1402 * is a NOP or can be emulated.
1403 */
1404static bool can_skip_sstep(struct uprobe *uprobe, struct pt_regs *regs)
1405{
Oleg Nesterov71434f22012-09-30 21:12:44 +02001406 if (test_bit(UPROBE_SKIP_SSTEP, &uprobe->flags)) {
Oleg Nesterov0578a972012-09-14 18:31:23 +02001407 if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
1408 return true;
Oleg Nesterov71434f22012-09-30 21:12:44 +02001409 clear_bit(UPROBE_SKIP_SSTEP, &uprobe->flags);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001410 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301411 return false;
1412}
1413
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001414static void mmf_recalc_uprobes(struct mm_struct *mm)
1415{
1416 struct vm_area_struct *vma;
1417
1418 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1419 if (!valid_vma(vma, false))
1420 continue;
1421 /*
1422 * This is not strictly accurate, we can race with
1423 * uprobe_unregister() and see the already removed
1424 * uprobe if delete_uprobe() was not yet called.
Oleg Nesterov63633cb2012-11-22 18:30:15 +01001425 * Or this uprobe can be filtered out.
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001426 */
1427 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end))
1428 return;
1429 }
1430
1431 clear_bit(MMF_HAS_UPROBES, &mm->flags);
1432}
1433
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001434static int is_swbp_at_addr(struct mm_struct *mm, unsigned long vaddr)
1435{
1436 struct page *page;
1437 uprobe_opcode_t opcode;
1438 int result;
1439
1440 pagefault_disable();
1441 result = __copy_from_user_inatomic(&opcode, (void __user*)vaddr,
1442 sizeof(opcode));
1443 pagefault_enable();
1444
1445 if (likely(result == 0))
1446 goto out;
1447
1448 result = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &page, NULL);
1449 if (result < 0)
1450 return result;
1451
1452 copy_opcode(page, vaddr, &opcode);
1453 put_page(page);
1454 out:
1455 return is_swbp_insn(&opcode);
1456}
1457
Oleg Nesterovd790d342012-05-29 21:29:14 +02001458static struct uprobe *find_active_uprobe(unsigned long bp_vaddr, int *is_swbp)
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001459{
1460 struct mm_struct *mm = current->mm;
1461 struct uprobe *uprobe = NULL;
1462 struct vm_area_struct *vma;
1463
1464 down_read(&mm->mmap_sem);
1465 vma = find_vma(mm, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001466 if (vma && vma->vm_start <= bp_vaddr) {
1467 if (valid_vma(vma, false)) {
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001468 struct inode *inode = vma->vm_file->f_mapping->host;
1469 loff_t offset = vaddr_to_offset(vma, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001470
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001471 uprobe = find_uprobe(inode, offset);
1472 }
Oleg Nesterovd790d342012-05-29 21:29:14 +02001473
1474 if (!uprobe)
1475 *is_swbp = is_swbp_at_addr(mm, bp_vaddr);
1476 } else {
1477 *is_swbp = -EFAULT;
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001478 }
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001479
1480 if (!uprobe && test_and_clear_bit(MMF_RECALC_UPROBES, &mm->flags))
1481 mmf_recalc_uprobes(mm);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001482 up_read(&mm->mmap_sem);
1483
1484 return uprobe;
1485}
1486
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001487static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
1488{
1489 struct uprobe_consumer *uc;
1490 int remove = UPROBE_HANDLER_REMOVE;
1491
1492 down_read(&uprobe->register_rwsem);
1493 for (uc = uprobe->consumers; uc; uc = uc->next) {
1494 int rc = uc->handler(uc, regs);
1495
1496 WARN(rc & ~UPROBE_HANDLER_MASK,
1497 "bad rc=0x%x from %pf()\n", rc, uc->handler);
1498 remove &= rc;
1499 }
1500
1501 if (remove && uprobe->consumers) {
1502 WARN_ON(!uprobe_is_active(uprobe));
1503 unapply_uprobe(uprobe, current->mm);
1504 }
1505 up_read(&uprobe->register_rwsem);
1506}
1507
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301508/*
1509 * Run handler and ask thread to singlestep.
1510 * Ensure all non-fatal signals cannot interrupt thread while it singlesteps.
1511 */
1512static void handle_swbp(struct pt_regs *regs)
1513{
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301514 struct uprobe *uprobe;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301515 unsigned long bp_vaddr;
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001516 int uninitialized_var(is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301517
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301518 bp_vaddr = uprobe_get_swbp_addr(regs);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001519 uprobe = find_active_uprobe(bp_vaddr, &is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301520
1521 if (!uprobe) {
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001522 if (is_swbp > 0) {
1523 /* No matching uprobe; signal SIGTRAP. */
1524 send_sig(SIGTRAP, current, 0);
1525 } else {
1526 /*
1527 * Either we raced with uprobe_unregister() or we can't
1528 * access this memory. The latter is only possible if
1529 * another thread plays with our ->mm. In both cases
1530 * we can simply restart. If this vma was unmapped we
1531 * can pretend this insn was not executed yet and get
1532 * the (correct) SIGSEGV after restart.
1533 */
1534 instruction_pointer_set(regs, bp_vaddr);
1535 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301536 return;
1537 }
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001538
1539 /* change it in advance for ->handler() and restart */
1540 instruction_pointer_set(regs, bp_vaddr);
1541
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001542 /*
1543 * TODO: move copy_insn/etc into _register and remove this hack.
1544 * After we hit the bp, _unregister + _register can install the
1545 * new and not-yet-analyzed uprobe at the same address, restart.
1546 */
1547 smp_rmb(); /* pairs with wmb() in install_breakpoint() */
Oleg Nesterov71434f22012-09-30 21:12:44 +02001548 if (unlikely(!test_bit(UPROBE_COPY_INSN, &uprobe->flags)))
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001549 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301550
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301551 handler_chain(uprobe, regs);
Oleg Nesterov0578a972012-09-14 18:31:23 +02001552 if (can_skip_sstep(uprobe, regs))
1553 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301554
Oleg Nesterov608e7422012-12-31 18:20:42 +01001555 if (!pre_ssout(uprobe, regs, bp_vaddr))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301556 return;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301557
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001558 /* can_skip_sstep() succeeded, or restart if can't singlestep */
Oleg Nesterov0578a972012-09-14 18:31:23 +02001559out:
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001560 put_uprobe(uprobe);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301561}
1562
1563/*
1564 * Perform required fix-ups and disable singlestep.
1565 * Allow pending signals to take effect.
1566 */
1567static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
1568{
1569 struct uprobe *uprobe;
1570
1571 uprobe = utask->active_uprobe;
1572 if (utask->state == UTASK_SSTEP_ACK)
1573 arch_uprobe_post_xol(&uprobe->arch, regs);
1574 else if (utask->state == UTASK_SSTEP_TRAPPED)
1575 arch_uprobe_abort_xol(&uprobe->arch, regs);
1576 else
1577 WARN_ON_ONCE(1);
1578
1579 put_uprobe(uprobe);
1580 utask->active_uprobe = NULL;
1581 utask->state = UTASK_RUNNING;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301582 xol_free_insn_slot(current);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301583
1584 spin_lock_irq(&current->sighand->siglock);
1585 recalc_sigpending(); /* see uprobe_deny_signal() */
1586 spin_unlock_irq(&current->sighand->siglock);
1587}
1588
1589/*
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001590 * On breakpoint hit, breakpoint notifier sets the TIF_UPROBE flag and
1591 * allows the thread to return from interrupt. After that handle_swbp()
1592 * sets utask->active_uprobe.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301593 *
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001594 * On singlestep exception, singlestep notifier sets the TIF_UPROBE flag
1595 * and allows the thread to return from interrupt.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301596 *
1597 * While returning to userspace, thread notices the TIF_UPROBE flag and calls
1598 * uprobe_notify_resume().
1599 */
1600void uprobe_notify_resume(struct pt_regs *regs)
1601{
1602 struct uprobe_task *utask;
1603
Oleg Nesterovdb023ea2012-09-14 19:05:46 +02001604 clear_thread_flag(TIF_UPROBE);
1605
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301606 utask = current->utask;
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001607 if (utask && utask->active_uprobe)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301608 handle_singlestep(utask, regs);
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001609 else
1610 handle_swbp(regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301611}
1612
1613/*
1614 * uprobe_pre_sstep_notifier gets called from interrupt context as part of
1615 * notifier mechanism. Set TIF_UPROBE flag and indicate breakpoint hit.
1616 */
1617int uprobe_pre_sstep_notifier(struct pt_regs *regs)
1618{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001619 if (!current->mm || !test_bit(MMF_HAS_UPROBES, &current->mm->flags))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301620 return 0;
1621
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301622 set_thread_flag(TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301623 return 1;
1624}
1625
1626/*
1627 * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier
1628 * mechanism. Set TIF_UPROBE flag and indicate completion of singlestep.
1629 */
1630int uprobe_post_sstep_notifier(struct pt_regs *regs)
1631{
1632 struct uprobe_task *utask = current->utask;
1633
1634 if (!current->mm || !utask || !utask->active_uprobe)
1635 /* task is currently not uprobed */
1636 return 0;
1637
1638 utask->state = UTASK_SSTEP_ACK;
1639 set_thread_flag(TIF_UPROBE);
1640 return 1;
1641}
1642
1643static struct notifier_block uprobe_exception_nb = {
1644 .notifier_call = arch_uprobe_exception_notify,
1645 .priority = INT_MAX-1, /* notified after kprobes, kgdb */
1646};
1647
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301648static int __init init_uprobes(void)
1649{
1650 int i;
1651
Oleg Nesterov66d06df2012-11-25 22:48:37 +01001652 for (i = 0; i < UPROBES_HASH_SZ; i++)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301653 mutex_init(&uprobes_mmap_mutex[i]);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301654
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001655 if (percpu_init_rwsem(&dup_mmap_sem))
1656 return -ENOMEM;
1657
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301658 return register_die_notifier(&uprobe_exception_nb);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301659}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301660module_init(init_uprobes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301661
1662static void __exit exit_uprobes(void)
1663{
1664}
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301665module_exit(exit_uprobes);