blob: 4b8ac5f13320ddc26b9eff7b733d8a8eb46b040f [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>
Oleg Nesterovaa59c532013-10-13 21:18:44 +020038#include <linux/task_work.h>
Oleg Nesterov40814f62014-05-19 20:41:36 +020039#include <linux/shmem_fs.h>
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010040
Srikar Dronamraju2b144492012-02-09 14:56:42 +053041#include <linux/uprobes.h>
42
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +053043#define UINSNS_PER_PAGE (PAGE_SIZE/UPROBE_XOL_SLOT_BYTES)
44#define MAX_UPROBE_XOL_SLOTS UINSNS_PER_PAGE
45
Srikar Dronamraju2b144492012-02-09 14:56:42 +053046static struct rb_root uprobes_tree = RB_ROOT;
Oleg Nesterov441f1eb72012-11-25 19:54:29 +010047/*
48 * allows us to skip the uprobe_mmap if there are no uprobe events active
49 * at this time. Probably a fine grained per inode count is better?
50 */
51#define no_uprobe_events() RB_EMPTY_ROOT(&uprobes_tree)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010052
Srikar Dronamraju2b144492012-02-09 14:56:42 +053053static DEFINE_SPINLOCK(uprobes_treelock); /* serialize rbtree access */
54
55#define UPROBES_HASH_SZ 13
Srikar Dronamraju2b144492012-02-09 14:56:42 +053056/* serialize uprobe->pending_list */
57static struct mutex uprobes_mmap_mutex[UPROBES_HASH_SZ];
Ingo Molnar7b2d81d2012-02-17 09:27:41 +010058#define uprobes_mmap_hash(v) (&uprobes_mmap_mutex[((unsigned long)(v)) % UPROBES_HASH_SZ])
Srikar Dronamraju2b144492012-02-09 14:56:42 +053059
Oleg Nesterov32cdba12012-11-14 19:03:42 +010060static struct percpu_rw_semaphore dup_mmap_sem;
61
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +020062/* Have a copy of original instruction */
Oleg Nesterov71434f22012-09-30 21:12:44 +020063#define UPROBE_COPY_INSN 0
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;
Oleg Nesterovad439352013-11-19 17:20:21 +010075
76 /*
77 * The generic code assumes that it has two members of unknown type
78 * owned by the arch-specific code:
79 *
80 * insn - copy_insn() saves the original instruction here for
81 * arch_uprobe_analyze_insn().
82 *
83 * ixol - potentially modified instruction to execute out of
84 * line, copied to xol_area by xol_get_insn_slot().
85 */
Srikar Dronamraju3ff54ef2012-02-22 14:46:02 +053086 struct arch_uprobe arch;
87};
88
Srikar Dronamraju2b144492012-02-09 14:56:42 +053089/*
Oleg Nesterovad439352013-11-19 17:20:21 +010090 * Execute out of line area: anonymous executable mapping installed
91 * by the probed task to execute the copy of the original instruction
92 * mangled by set_swbp().
93 *
Oleg Nesterovc912dae2013-11-09 19:49:39 +010094 * On a breakpoint hit, thread contests for a slot. It frees the
95 * slot after singlestep. Currently a fixed number of slots are
96 * allocated.
97 */
98struct xol_area {
99 wait_queue_head_t wq; /* if all slots are busy */
100 atomic_t slot_count; /* number of in-use slots */
101 unsigned long *bitmap; /* 0 = free slot */
Oleg Nesterovf58bea22015-07-21 15:40:31 +0200102 struct page *pages[2];
Oleg Nesterovc912dae2013-11-09 19:49:39 +0100103
104 /*
105 * We keep the vma's vm_start rather than a pointer to the vma
106 * itself. The probed process or a naughty kernel module could make
107 * the vma go away, and we must handle that reasonably gracefully.
108 */
109 unsigned long vaddr; /* Page(s) of instruction slots */
110};
111
112/*
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530113 * valid_vma: Verify if the specified vma is an executable vma
114 * Relax restrictions while unregistering: vm_flags might have
115 * changed after breakpoint was inserted.
116 * - is_register: indicates if we are in register context.
117 * - Return 1 if the specified virtual address is in an
118 * executable vma.
119 */
120static bool valid_vma(struct vm_area_struct *vma, bool is_register)
121{
Oleg Nesterov13f59c52014-04-28 20:15:43 +0200122 vm_flags_t flags = VM_HUGETLB | VM_MAYEXEC | VM_MAYSHARE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530123
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200124 if (is_register)
125 flags |= VM_WRITE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530126
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200127 return vma->vm_file && (vma->vm_flags & flags) == VM_MAYEXEC;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530128}
129
Oleg Nesterov57683f72012-07-29 20:22:47 +0200130static unsigned long offset_to_vaddr(struct vm_area_struct *vma, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530131{
Oleg Nesterov57683f72012-07-29 20:22:47 +0200132 return vma->vm_start + offset - ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530133}
134
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200135static loff_t vaddr_to_offset(struct vm_area_struct *vma, unsigned long vaddr)
136{
137 return ((loff_t)vma->vm_pgoff << PAGE_SHIFT) + (vaddr - vma->vm_start);
138}
139
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530140/**
141 * __replace_page - replace page in vma by new page.
142 * based on replace_page in mm/ksm.c
143 *
144 * @vma: vma that holds the pte pointing to page
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200145 * @addr: address the old @page is mapped at
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530146 * @page: the cowed page we are replacing by kpage
147 * @kpage: the modified page we replace page by
148 *
149 * Returns 0 on success, -EFAULT on failure.
150 */
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200151static int __replace_page(struct vm_area_struct *vma, unsigned long addr,
152 struct page *page, struct page *kpage)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530153{
154 struct mm_struct *mm = vma->vm_mm;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200155 spinlock_t *ptl;
156 pte_t *ptep;
Oleg Nesterov9f924482012-07-29 20:22:20 +0200157 int err;
Haggai Eran6bdb9132012-10-08 16:33:35 -0700158 /* For mmu_notifiers */
159 const unsigned long mmun_start = addr;
160 const unsigned long mmun_end = addr + PAGE_SIZE;
Johannes Weiner00501b52014-08-08 14:19:20 -0700161 struct mem_cgroup *memcg;
162
163 err = mem_cgroup_try_charge(kpage, vma->vm_mm, GFP_KERNEL, &memcg);
164 if (err)
165 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530166
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200167 /* For try_to_free_swap() and munlock_vma_page() below */
Oleg Nesterov9f924482012-07-29 20:22:20 +0200168 lock_page(page);
169
Haggai Eran6bdb9132012-10-08 16:33:35 -0700170 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200171 err = -EAGAIN;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200172 ptep = page_check_address(page, mm, addr, &ptl, 0);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530173 if (!ptep)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200174 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530175
176 get_page(kpage);
177 page_add_new_anon_rmap(kpage, vma, addr);
Johannes Weiner00501b52014-08-08 14:19:20 -0700178 mem_cgroup_commit_charge(kpage, memcg, false);
179 lru_cache_add_active_or_unevictable(kpage, vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530180
Srikar Dronamraju7396fa82012-04-11 16:05:16 +0530181 if (!PageAnon(page)) {
182 dec_mm_counter(mm, MM_FILEPAGES);
183 inc_mm_counter(mm, MM_ANONPAGES);
184 }
185
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530186 flush_cache_page(vma, addr, pte_pfn(*ptep));
Joerg Roedel34ee6452014-11-13 13:46:09 +1100187 ptep_clear_flush_notify(vma, addr, ptep);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530188 set_pte_at_notify(mm, addr, ptep, mk_pte(kpage, vma->vm_page_prot));
189
190 page_remove_rmap(page);
191 if (!page_mapped(page))
192 try_to_free_swap(page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530193 pte_unmap_unlock(ptep, ptl);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530194
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200195 if (vma->vm_flags & VM_LOCKED)
196 munlock_vma_page(page);
197 put_page(page);
198
Oleg Nesterov9f924482012-07-29 20:22:20 +0200199 err = 0;
200 unlock:
Johannes Weiner00501b52014-08-08 14:19:20 -0700201 mem_cgroup_cancel_charge(kpage, memcg);
Haggai Eran6bdb9132012-10-08 16:33:35 -0700202 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200203 unlock_page(page);
204 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530205}
206
207/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530208 * is_swbp_insn - check if instruction is breakpoint instruction.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530209 * @insn: instruction to be checked.
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530210 * Default implementation of is_swbp_insn
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530211 * Returns true if @insn is a breakpoint instruction.
212 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530213bool __weak is_swbp_insn(uprobe_opcode_t *insn)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530214{
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530215 return *insn == UPROBE_SWBP_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530216}
217
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530218/**
219 * is_trap_insn - check if instruction is breakpoint instruction.
220 * @insn: instruction to be checked.
221 * Default implementation of is_trap_insn
222 * Returns true if @insn is a breakpoint instruction.
223 *
224 * This function is needed for the case where an architecture has multiple
225 * trap instructions (like powerpc).
226 */
227bool __weak is_trap_insn(uprobe_opcode_t *insn)
228{
229 return is_swbp_insn(insn);
230}
231
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100232static void copy_from_page(struct page *page, unsigned long vaddr, void *dst, int len)
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200233{
234 void *kaddr = kmap_atomic(page);
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100235 memcpy(dst, kaddr + (vaddr & ~PAGE_MASK), len);
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200236 kunmap_atomic(kaddr);
237}
238
Oleg Nesterov5669cce2013-03-24 18:58:04 +0100239static void copy_to_page(struct page *page, unsigned long vaddr, const void *src, int len)
240{
241 void *kaddr = kmap_atomic(page);
242 memcpy(kaddr + (vaddr & ~PAGE_MASK), src, len);
243 kunmap_atomic(kaddr);
244}
245
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200246static int verify_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *new_opcode)
247{
248 uprobe_opcode_t old_opcode;
249 bool is_swbp;
250
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530251 /*
252 * Note: We only check if the old_opcode is UPROBE_SWBP_INSN here.
253 * We do not check if it is any other 'trap variant' which could
254 * be conditional trap instruction such as the one powerpc supports.
255 *
256 * The logic is that we do not care if the underlying instruction
257 * is a trap variant; uprobes always wins over any other (gdb)
258 * breakpoint.
259 */
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100260 copy_from_page(page, vaddr, &old_opcode, UPROBE_SWBP_INSN_SIZE);
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200261 is_swbp = is_swbp_insn(&old_opcode);
262
263 if (is_swbp_insn(new_opcode)) {
264 if (is_swbp) /* register: already installed? */
265 return 0;
266 } else {
267 if (!is_swbp) /* unregister: was it changed by us? */
Oleg Nesterov076a3652012-09-30 18:54:53 +0200268 return 0;
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200269 }
270
271 return 1;
272}
273
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530274/*
275 * NOTE:
276 * Expect the breakpoint instruction to be the smallest size instruction for
277 * the architecture. If an arch has variable length instruction and the
278 * breakpoint instruction is not of the smallest length instruction
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530279 * supported by that architecture then we need to modify is_trap_at_addr and
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100280 * uprobe_write_opcode accordingly. This would never be a problem for archs
281 * that have fixed length instructions.
Oleg Nesterov29dedee2014-05-05 16:38:18 +0200282 *
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100283 * uprobe_write_opcode - write the opcode at a given virtual address.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530284 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530285 * @vaddr: the virtual address to store the opcode.
286 * @opcode: opcode to be written at @vaddr.
287 *
Oleg Nesterov29dedee2014-05-05 16:38:18 +0200288 * Called with mm->mmap_sem held for write.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530289 * Return 0 (success) or a negative errno.
290 */
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100291int uprobe_write_opcode(struct mm_struct *mm, unsigned long vaddr,
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200292 uprobe_opcode_t opcode)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530293{
294 struct page *old_page, *new_page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530295 struct vm_area_struct *vma;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530296 int ret;
Oleg Nesterovf4030722012-07-29 20:22:12 +0200297
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200298retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530299 /* Read the page with vaddr into memory */
Oleg Nesterov75ed82e2012-09-16 17:20:06 +0200300 ret = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &old_page, &vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530301 if (ret <= 0)
302 return ret;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100303
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200304 ret = verify_opcode(old_page, vaddr, &opcode);
305 if (ret <= 0)
306 goto put_old;
307
Oleg Nesterov29dedee2014-05-05 16:38:18 +0200308 ret = anon_vma_prepare(vma);
309 if (ret)
310 goto put_old;
311
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530312 ret = -ENOMEM;
313 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vaddr);
314 if (!new_page)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200315 goto put_old;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530316
Oleg Nesterov29dedee2014-05-05 16:38:18 +0200317 __SetPageUptodate(new_page);
Oleg Nesterov3f471072013-03-24 19:04:36 +0100318 copy_highpage(new_page, old_page);
319 copy_to_page(new_page, vaddr, &opcode, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530320
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200321 ret = __replace_page(vma, vaddr, old_page, new_page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530322 page_cache_release(new_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200323put_old:
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100324 put_page(old_page);
325
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200326 if (unlikely(ret == -EAGAIN))
327 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530328 return ret;
329}
330
331/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530332 * set_swbp - store breakpoint at a given address.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530333 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530334 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530335 * @vaddr: the virtual address to insert the opcode.
336 *
337 * For mm @mm, store the breakpoint instruction at @vaddr.
338 * Return 0 (success) or a negative errno.
339 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530340int __weak set_swbp(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530341{
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100342 return uprobe_write_opcode(mm, vaddr, UPROBE_SWBP_INSN);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530343}
344
345/**
346 * set_orig_insn - Restore the original instruction.
347 * @mm: the probed process address space.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530348 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530349 * @vaddr: the virtual address to insert the opcode.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530350 *
351 * For mm @mm, restore the original opcode (opcode) at @vaddr.
352 * Return 0 (success) or a negative errno.
353 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100354int __weak
Oleg Nesterovded86e72012-08-08 18:07:03 +0200355set_orig_insn(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530356{
Oleg Nesterov803200e2013-11-09 17:58:54 +0100357 return uprobe_write_opcode(mm, vaddr, *(uprobe_opcode_t *)&auprobe->insn);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530358}
359
Oleg Nesterovf2317222015-07-21 15:40:03 +0200360static struct uprobe *get_uprobe(struct uprobe *uprobe)
361{
362 atomic_inc(&uprobe->ref);
363 return uprobe;
364}
365
366static void put_uprobe(struct uprobe *uprobe)
367{
368 if (atomic_dec_and_test(&uprobe->ref))
369 kfree(uprobe);
370}
371
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530372static int match_uprobe(struct uprobe *l, struct uprobe *r)
373{
374 if (l->inode < r->inode)
375 return -1;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100376
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530377 if (l->inode > r->inode)
378 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530379
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100380 if (l->offset < r->offset)
381 return -1;
382
383 if (l->offset > r->offset)
384 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530385
386 return 0;
387}
388
389static struct uprobe *__find_uprobe(struct inode *inode, loff_t offset)
390{
391 struct uprobe u = { .inode = inode, .offset = offset };
392 struct rb_node *n = uprobes_tree.rb_node;
393 struct uprobe *uprobe;
394 int match;
395
396 while (n) {
397 uprobe = rb_entry(n, struct uprobe, rb_node);
398 match = match_uprobe(&u, uprobe);
Oleg Nesterovf2317222015-07-21 15:40:03 +0200399 if (!match)
400 return get_uprobe(uprobe);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100401
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530402 if (match < 0)
403 n = n->rb_left;
404 else
405 n = n->rb_right;
406 }
407 return NULL;
408}
409
410/*
411 * Find a uprobe corresponding to a given inode:offset
412 * Acquires uprobes_treelock
413 */
414static struct uprobe *find_uprobe(struct inode *inode, loff_t offset)
415{
416 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530417
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200418 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530419 uprobe = __find_uprobe(inode, offset);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200420 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100421
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530422 return uprobe;
423}
424
425static struct uprobe *__insert_uprobe(struct uprobe *uprobe)
426{
427 struct rb_node **p = &uprobes_tree.rb_node;
428 struct rb_node *parent = NULL;
429 struct uprobe *u;
430 int match;
431
432 while (*p) {
433 parent = *p;
434 u = rb_entry(parent, struct uprobe, rb_node);
435 match = match_uprobe(uprobe, u);
Oleg Nesterovf2317222015-07-21 15:40:03 +0200436 if (!match)
437 return get_uprobe(u);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530438
439 if (match < 0)
440 p = &parent->rb_left;
441 else
442 p = &parent->rb_right;
443
444 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100445
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530446 u = NULL;
447 rb_link_node(&uprobe->rb_node, parent, p);
448 rb_insert_color(&uprobe->rb_node, &uprobes_tree);
449 /* get access + creation ref */
450 atomic_set(&uprobe->ref, 2);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100451
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530452 return u;
453}
454
455/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100456 * Acquire uprobes_treelock.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530457 * Matching uprobe already exists in rbtree;
458 * increment (access refcount) and return the matching uprobe.
459 *
460 * No matching uprobe; insert the uprobe in rb_tree;
461 * get a double refcount (access + creation) and return NULL.
462 */
463static struct uprobe *insert_uprobe(struct uprobe *uprobe)
464{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530465 struct uprobe *u;
466
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200467 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530468 u = __insert_uprobe(uprobe);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200469 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100470
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530471 return u;
472}
473
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530474static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
475{
476 struct uprobe *uprobe, *cur_uprobe;
477
478 uprobe = kzalloc(sizeof(struct uprobe), GFP_KERNEL);
479 if (!uprobe)
480 return NULL;
481
482 uprobe->inode = igrab(inode);
483 uprobe->offset = offset;
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100484 init_rwsem(&uprobe->register_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530485 init_rwsem(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530486
487 /* add to uprobes_tree, sorted on inode:offset */
488 cur_uprobe = insert_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530489 /* a uprobe exists for this inode:offset combination */
490 if (cur_uprobe) {
491 kfree(uprobe);
492 uprobe = cur_uprobe;
493 iput(inode);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100494 }
495
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530496 return uprobe;
497}
498
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100499static void consumer_add(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530500{
501 down_write(&uprobe->consumer_rwsem);
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530502 uc->next = uprobe->consumers;
503 uprobe->consumers = uc;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530504 up_write(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530505}
506
507/*
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530508 * For uprobe @uprobe, delete the consumer @uc.
509 * Return true if the @uc is deleted successfully
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530510 * or return false.
511 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530512static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530513{
514 struct uprobe_consumer **con;
515 bool ret = false;
516
517 down_write(&uprobe->consumer_rwsem);
518 for (con = &uprobe->consumers; *con; con = &(*con)->next) {
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530519 if (*con == uc) {
520 *con = uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530521 ret = true;
522 break;
523 }
524 }
525 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100526
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530527 return ret;
528}
529
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100530static int __copy_insn(struct address_space *mapping, struct file *filp,
531 void *insn, int nbytes, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530532{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530533 struct page *page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530534 /*
Oleg Nesterov40814f62014-05-19 20:41:36 +0200535 * Ensure that the page that has the original instruction is populated
536 * and in page-cache. If ->readpage == NULL it must be shmem_mapping(),
537 * see uprobe_register().
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530538 */
Oleg Nesterov40814f62014-05-19 20:41:36 +0200539 if (mapping->a_ops->readpage)
540 page = read_mapping_page(mapping, offset >> PAGE_CACHE_SHIFT, filp);
541 else
542 page = shmem_read_mapping_page(mapping, offset >> PAGE_CACHE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530543 if (IS_ERR(page))
544 return PTR_ERR(page);
545
Oleg Nesterov2edb7b52013-03-24 18:37:48 +0100546 copy_from_page(page, offset, insn, nbytes);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530547 page_cache_release(page);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100548
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530549 return 0;
550}
551
Oleg Nesterovd4366152012-06-15 17:43:42 +0200552static int copy_insn(struct uprobe *uprobe, struct file *filp)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530553{
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100554 struct address_space *mapping = uprobe->inode->i_mapping;
555 loff_t offs = uprobe->offset;
Oleg Nesterov803200e2013-11-09 17:58:54 +0100556 void *insn = &uprobe->arch.insn;
557 int size = sizeof(uprobe->arch.insn);
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100558 int len, err = -EIO;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530559
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100560 /* Copy only available bytes, -EIO if nothing was read */
561 do {
562 if (offs >= i_size_read(uprobe->inode))
563 break;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530564
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100565 len = min_t(int, size, PAGE_SIZE - (offs & ~PAGE_MASK));
566 err = __copy_insn(mapping, filp, insn, len, offs);
Oleg Nesterovfc36f592012-06-15 17:43:44 +0200567 if (err)
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100568 break;
569
570 insn += len;
571 offs += len;
572 size -= len;
573 } while (size);
574
575 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530576}
577
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200578static int prepare_uprobe(struct uprobe *uprobe, struct file *file,
579 struct mm_struct *mm, unsigned long vaddr)
580{
581 int ret = 0;
582
Oleg Nesterov71434f22012-09-30 21:12:44 +0200583 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200584 return ret;
585
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100586 /* TODO: move this into _register, until then we abuse this sem. */
587 down_write(&uprobe->consumer_rwsem);
Oleg Nesterov71434f22012-09-30 21:12:44 +0200588 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterov4710f05f2012-09-30 20:31:41 +0200589 goto out;
590
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200591 ret = copy_insn(uprobe, file);
592 if (ret)
593 goto out;
594
595 ret = -ENOTSUPP;
Oleg Nesterov803200e2013-11-09 17:58:54 +0100596 if (is_trap_insn((uprobe_opcode_t *)&uprobe->arch.insn))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200597 goto out;
598
599 ret = arch_uprobe_analyze_insn(&uprobe->arch, mm, vaddr);
600 if (ret)
601 goto out;
602
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100603 /* uprobe_write_opcode() assumes we don't cross page boundary */
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200604 BUG_ON((uprobe->offset & ~PAGE_MASK) +
605 UPROBE_SWBP_INSN_SIZE > PAGE_SIZE);
606
607 smp_wmb(); /* pairs with rmb() in find_active_uprobe() */
Oleg Nesterov71434f22012-09-30 21:12:44 +0200608 set_bit(UPROBE_COPY_INSN, &uprobe->flags);
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200609
610 out:
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100611 up_write(&uprobe->consumer_rwsem);
Oleg Nesterov4710f05f2012-09-30 20:31:41 +0200612
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200613 return ret;
614}
615
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100616static inline bool consumer_filter(struct uprobe_consumer *uc,
617 enum uprobe_filter_ctx ctx, struct mm_struct *mm)
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100618{
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100619 return !uc->filter || uc->filter(uc, ctx, mm);
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100620}
621
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100622static bool filter_chain(struct uprobe *uprobe,
623 enum uprobe_filter_ctx ctx, struct mm_struct *mm)
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100624{
Oleg Nesterov1ff6fee2012-11-24 18:15:46 +0100625 struct uprobe_consumer *uc;
626 bool ret = false;
627
628 down_read(&uprobe->consumer_rwsem);
629 for (uc = uprobe->consumers; uc; uc = uc->next) {
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100630 ret = consumer_filter(uc, ctx, mm);
Oleg Nesterov1ff6fee2012-11-24 18:15:46 +0100631 if (ret)
632 break;
633 }
634 up_read(&uprobe->consumer_rwsem);
635
636 return ret;
Oleg Nesterov63633cb2012-11-22 18:30:15 +0100637}
638
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530639static int
640install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200641 struct vm_area_struct *vma, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530642{
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200643 bool first_uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530644 int ret;
645
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200646 ret = prepare_uprobe(uprobe, vma->vm_file, mm, vaddr);
647 if (ret)
648 return ret;
Srikar Dronamraju682968e2012-03-30 23:56:46 +0530649
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200650 /*
651 * set MMF_HAS_UPROBES in advance for uprobe_pre_sstep_notifier(),
652 * the task can hit this breakpoint right after __replace_page().
653 */
654 first_uprobe = !test_bit(MMF_HAS_UPROBES, &mm->flags);
655 if (first_uprobe)
656 set_bit(MMF_HAS_UPROBES, &mm->flags);
657
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200658 ret = set_swbp(&uprobe->arch, mm, vaddr);
Oleg Nesterov9f68f6722012-08-19 16:15:09 +0200659 if (!ret)
660 clear_bit(MMF_RECALC_UPROBES, &mm->flags);
661 else if (first_uprobe)
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +0200662 clear_bit(MMF_HAS_UPROBES, &mm->flags);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530663
664 return ret;
665}
666
Oleg Nesterov076a3652012-09-30 18:54:53 +0200667static int
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200668remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530669{
Oleg Nesterov9f68f6722012-08-19 16:15:09 +0200670 set_bit(MMF_RECALC_UPROBES, &mm->flags);
Oleg Nesterov076a3652012-09-30 18:54:53 +0200671 return set_orig_insn(&uprobe->arch, mm, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530672}
673
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100674static inline bool uprobe_is_active(struct uprobe *uprobe)
675{
676 return !RB_EMPTY_NODE(&uprobe->rb_node);
677}
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530678/*
Oleg Nesterov778b0322012-05-29 21:30:08 +0200679 * There could be threads that have already hit the breakpoint. They
680 * will recheck the current insn and restart if find_uprobe() fails.
681 * See find_active_uprobe().
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530682 */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530683static void delete_uprobe(struct uprobe *uprobe)
684{
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100685 if (WARN_ON(!uprobe_is_active(uprobe)))
686 return;
687
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200688 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530689 rb_erase(&uprobe->rb_node, &uprobes_tree);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200690 spin_unlock(&uprobes_treelock);
Oleg Nesterov06b7bcd2012-11-25 22:01:42 +0100691 RB_CLEAR_NODE(&uprobe->rb_node); /* for uprobe_is_active() */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530692 iput(uprobe->inode);
693 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530694}
695
Oleg Nesterov26872092012-06-15 17:43:33 +0200696struct map_info {
697 struct map_info *next;
698 struct mm_struct *mm;
Oleg Nesterov816c03f2012-06-15 17:43:55 +0200699 unsigned long vaddr;
Oleg Nesterov26872092012-06-15 17:43:33 +0200700};
701
702static inline struct map_info *free_map_info(struct map_info *info)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530703{
Oleg Nesterov26872092012-06-15 17:43:33 +0200704 struct map_info *next = info->next;
705 kfree(info);
706 return next;
707}
708
709static struct map_info *
710build_map_info(struct address_space *mapping, loff_t offset, bool is_register)
711{
712 unsigned long pgoff = offset >> PAGE_SHIFT;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530713 struct vm_area_struct *vma;
Oleg Nesterov26872092012-06-15 17:43:33 +0200714 struct map_info *curr = NULL;
715 struct map_info *prev = NULL;
716 struct map_info *info;
717 int more = 0;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100718
Oleg Nesterov26872092012-06-15 17:43:33 +0200719 again:
Davidlohr Bueso4a23717a2014-12-12 16:54:30 -0800720 i_mmap_lock_read(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700721 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530722 if (!valid_vma(vma, is_register))
723 continue;
724
Oleg Nesterov7a5bfb62012-06-15 17:43:36 +0200725 if (!prev && !more) {
726 /*
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800727 * Needs GFP_NOWAIT to avoid i_mmap_rwsem recursion through
Oleg Nesterov7a5bfb62012-06-15 17:43:36 +0200728 * reclaim. This is optimistic, no harm done if it fails.
729 */
730 prev = kmalloc(sizeof(struct map_info),
731 GFP_NOWAIT | __GFP_NOMEMALLOC | __GFP_NOWARN);
732 if (prev)
733 prev->next = NULL;
734 }
Oleg Nesterov26872092012-06-15 17:43:33 +0200735 if (!prev) {
736 more++;
737 continue;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530738 }
739
Oleg Nesterov26872092012-06-15 17:43:33 +0200740 if (!atomic_inc_not_zero(&vma->vm_mm->mm_users))
741 continue;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100742
Oleg Nesterov26872092012-06-15 17:43:33 +0200743 info = prev;
744 prev = prev->next;
745 info->next = curr;
746 curr = info;
747
748 info->mm = vma->vm_mm;
Oleg Nesterov57683f72012-07-29 20:22:47 +0200749 info->vaddr = offset_to_vaddr(vma, offset);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530750 }
Davidlohr Bueso4a23717a2014-12-12 16:54:30 -0800751 i_mmap_unlock_read(mapping);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530752
Oleg Nesterov26872092012-06-15 17:43:33 +0200753 if (!more)
754 goto out;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100755
Oleg Nesterov26872092012-06-15 17:43:33 +0200756 prev = curr;
757 while (curr) {
758 mmput(curr->mm);
759 curr = curr->next;
760 }
761
762 do {
763 info = kmalloc(sizeof(struct map_info), GFP_KERNEL);
764 if (!info) {
765 curr = ERR_PTR(-ENOMEM);
766 goto out;
767 }
768 info->next = prev;
769 prev = info;
770 } while (--more);
771
772 goto again;
773 out:
774 while (prev)
775 prev = free_map_info(prev);
776 return curr;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530777}
778
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100779static int
780register_for_each_vma(struct uprobe *uprobe, struct uprobe_consumer *new)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530781{
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100782 bool is_register = !!new;
Oleg Nesterov26872092012-06-15 17:43:33 +0200783 struct map_info *info;
784 int err = 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530785
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100786 percpu_down_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200787 info = build_map_info(uprobe->inode->i_mapping,
788 uprobe->offset, is_register);
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100789 if (IS_ERR(info)) {
790 err = PTR_ERR(info);
791 goto out;
792 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100793
Oleg Nesterov26872092012-06-15 17:43:33 +0200794 while (info) {
795 struct mm_struct *mm = info->mm;
796 struct vm_area_struct *vma;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100797
Oleg Nesterov076a3652012-09-30 18:54:53 +0200798 if (err && is_register)
Oleg Nesterov26872092012-06-15 17:43:33 +0200799 goto free;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100800
Oleg Nesterov77fc4af2012-05-29 21:29:28 +0200801 down_write(&mm->mmap_sem);
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200802 vma = find_vma(mm, info->vaddr);
803 if (!vma || !valid_vma(vma, is_register) ||
Oleg Nesterovf2817692013-03-17 18:54:44 +0100804 file_inode(vma->vm_file) != uprobe->inode)
Oleg Nesterov26872092012-06-15 17:43:33 +0200805 goto unlock;
806
Oleg Nesterovf4d6dfe2012-07-29 20:22:44 +0200807 if (vma->vm_start > info->vaddr ||
808 vaddr_to_offset(vma, info->vaddr) != uprobe->offset)
Oleg Nesterov26872092012-06-15 17:43:33 +0200809 goto unlock;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530810
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100811 if (is_register) {
812 /* consult only the "caller", new consumer. */
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100813 if (consumer_filter(new,
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100814 UPROBE_FILTER_REGISTER, mm))
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100815 err = install_breakpoint(uprobe, mm, vma, info->vaddr);
816 } else if (test_bit(MMF_HAS_UPROBES, &mm->flags)) {
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +0100817 if (!filter_chain(uprobe,
818 UPROBE_FILTER_UNREGISTER, mm))
Oleg Nesterov806a98b2012-12-27 18:21:11 +0100819 err |= remove_breakpoint(uprobe, mm, info->vaddr);
820 }
Oleg Nesterov78f74112012-08-08 17:35:08 +0200821
Oleg Nesterov26872092012-06-15 17:43:33 +0200822 unlock:
823 up_write(&mm->mmap_sem);
824 free:
825 mmput(mm);
826 info = free_map_info(info);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530827 }
Oleg Nesterov32cdba12012-11-14 19:03:42 +0100828 out:
829 percpu_up_write(&dup_mmap_sem);
Oleg Nesterov26872092012-06-15 17:43:33 +0200830 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530831}
832
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100833static int __uprobe_register(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530834{
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100835 consumer_add(uprobe, uc);
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100836 return register_for_each_vma(uprobe, uc);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530837}
838
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100839static void __uprobe_unregister(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530840{
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100841 int err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530842
Oleg Nesterov06d07132014-06-27 19:01:40 +0200843 if (WARN_ON(!consumer_del(uprobe, uc)))
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100844 return;
845
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100846 err = register_for_each_vma(uprobe, NULL);
Oleg Nesterovbb929282012-11-24 18:27:08 +0100847 /* TODO : cant unregister? schedule a worker thread */
848 if (!uprobe->consumers && !err)
849 delete_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530850}
851
852/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100853 * uprobe_register - register a probe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530854 * @inode: the file in which the probe has to be placed.
855 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530856 * @uc: information on howto handle the probe..
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530857 *
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100858 * Apart from the access refcount, uprobe_register() takes a creation
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530859 * refcount (thro alloc_uprobe) if and only if this @uprobe is getting
860 * inserted into the rbtree (i.e first consumer for a @inode:@offset
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100861 * tuple). Creation refcount stops uprobe_unregister from freeing the
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530862 * @uprobe even before the register operation is complete. Creation
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530863 * refcount is released when the last @uc for the @uprobe
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530864 * unregisters.
865 *
866 * Return errno if it cannot successully install probes
867 * else return 0 (success)
868 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530869int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530870{
871 struct uprobe *uprobe;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100872 int ret;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530873
Anton Arapovea024872013-04-03 18:00:31 +0200874 /* Uprobe must have at least one set consumer */
875 if (!uc->handler && !uc->ret_handler)
876 return -EINVAL;
877
Oleg Nesterov40814f62014-05-19 20:41:36 +0200878 /* copy_insn() uses read_mapping_page() or shmem_read_mapping_page() */
879 if (!inode->i_mapping->a_ops->readpage && !shmem_mapping(inode->i_mapping))
Oleg Nesterov41ccba02014-05-19 20:40:54 +0200880 return -EIO;
Oleg Nesterovf0744af2012-11-21 18:01:43 +0100881 /* Racy, just to catch the obvious mistakes */
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530882 if (offset > i_size_read(inode))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100883 return -EINVAL;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530884
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100885 retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530886 uprobe = alloc_uprobe(inode, offset);
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100887 if (!uprobe)
888 return -ENOMEM;
889 /*
890 * We can race with uprobe_unregister()->delete_uprobe().
891 * Check uprobe_is_active() and retry if it is false.
892 */
893 down_write(&uprobe->register_rwsem);
894 ret = -EAGAIN;
895 if (likely(uprobe_is_active(uprobe))) {
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100896 ret = __uprobe_register(uprobe, uc);
897 if (ret)
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100898 __uprobe_unregister(uprobe, uc);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530899 }
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100900 up_write(&uprobe->register_rwsem);
901 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530902
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100903 if (unlikely(ret == -EAGAIN))
904 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530905 return ret;
906}
Josh Stonee8440c12013-01-13 19:03:34 +0100907EXPORT_SYMBOL_GPL(uprobe_register);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530908
909/*
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100910 * uprobe_apply - unregister a already registered probe.
911 * @inode: the file in which the probe has to be removed.
912 * @offset: offset from the start of the file.
913 * @uc: consumer which wants to add more or remove some breakpoints
914 * @add: add or remove the breakpoints
915 */
916int uprobe_apply(struct inode *inode, loff_t offset,
917 struct uprobe_consumer *uc, bool add)
918{
919 struct uprobe *uprobe;
920 struct uprobe_consumer *con;
921 int ret = -ENOENT;
922
923 uprobe = find_uprobe(inode, offset);
Oleg Nesterov06d07132014-06-27 19:01:40 +0200924 if (WARN_ON(!uprobe))
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100925 return ret;
926
927 down_write(&uprobe->register_rwsem);
928 for (con = uprobe->consumers; con && con != uc ; con = con->next)
929 ;
930 if (con)
931 ret = register_for_each_vma(uprobe, add ? uc : NULL);
932 up_write(&uprobe->register_rwsem);
933 put_uprobe(uprobe);
934
935 return ret;
936}
937
938/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100939 * uprobe_unregister - unregister a already registered probe.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530940 * @inode: the file in which the probe has to be removed.
941 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530942 * @uc: identify which probe if multiple probes are colocated.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530943 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530944void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530945{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100946 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530947
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530948 uprobe = find_uprobe(inode, offset);
Oleg Nesterov06d07132014-06-27 19:01:40 +0200949 if (WARN_ON(!uprobe))
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530950 return;
951
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100952 down_write(&uprobe->register_rwsem);
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100953 __uprobe_unregister(uprobe, uc);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100954 up_write(&uprobe->register_rwsem);
Sasha Levinc91368c2012-12-20 14:11:30 -0500955 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530956}
Josh Stonee8440c12013-01-13 19:03:34 +0100957EXPORT_SYMBOL_GPL(uprobe_unregister);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530958
Oleg Nesterovda1816b2012-12-29 17:49:11 +0100959static int unapply_uprobe(struct uprobe *uprobe, struct mm_struct *mm)
960{
961 struct vm_area_struct *vma;
962 int err = 0;
963
964 down_read(&mm->mmap_sem);
965 for (vma = mm->mmap; vma; vma = vma->vm_next) {
966 unsigned long vaddr;
967 loff_t offset;
968
969 if (!valid_vma(vma, false) ||
Oleg Nesterovf2817692013-03-17 18:54:44 +0100970 file_inode(vma->vm_file) != uprobe->inode)
Oleg Nesterovda1816b2012-12-29 17:49:11 +0100971 continue;
972
973 offset = (loff_t)vma->vm_pgoff << PAGE_SHIFT;
974 if (uprobe->offset < offset ||
975 uprobe->offset >= offset + vma->vm_end - vma->vm_start)
976 continue;
977
978 vaddr = offset_to_vaddr(vma, uprobe->offset);
979 err |= remove_breakpoint(uprobe, mm, vaddr);
980 }
981 up_read(&mm->mmap_sem);
982
983 return err;
984}
985
Oleg Nesterov891c3972012-07-29 20:22:40 +0200986static struct rb_node *
987find_node_in_range(struct inode *inode, loff_t min, loff_t max)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530988{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530989 struct rb_node *n = uprobes_tree.rb_node;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530990
991 while (n) {
Oleg Nesterov891c3972012-07-29 20:22:40 +0200992 struct uprobe *u = rb_entry(n, struct uprobe, rb_node);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100993
Oleg Nesterov891c3972012-07-29 20:22:40 +0200994 if (inode < u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530995 n = n->rb_left;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200996 } else if (inode > u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530997 n = n->rb_right;
Oleg Nesterov891c3972012-07-29 20:22:40 +0200998 } else {
999 if (max < u->offset)
1000 n = n->rb_left;
1001 else if (min > u->offset)
1002 n = n->rb_right;
1003 else
1004 break;
1005 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301006 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001007
Oleg Nesterov891c3972012-07-29 20:22:40 +02001008 return n;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301009}
1010
1011/*
Oleg Nesterov891c3972012-07-29 20:22:40 +02001012 * For a given range in vma, build a list of probes that need to be inserted.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301013 */
Oleg Nesterov891c3972012-07-29 20:22:40 +02001014static void build_probe_list(struct inode *inode,
1015 struct vm_area_struct *vma,
1016 unsigned long start, unsigned long end,
1017 struct list_head *head)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301018{
Oleg Nesterov891c3972012-07-29 20:22:40 +02001019 loff_t min, max;
Oleg Nesterov891c3972012-07-29 20:22:40 +02001020 struct rb_node *n, *t;
1021 struct uprobe *u;
1022
1023 INIT_LIST_HEAD(head);
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001024 min = vaddr_to_offset(vma, start);
Oleg Nesterov891c3972012-07-29 20:22:40 +02001025 max = min + (end - start) - 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301026
Oleg Nesterov6f47caa2012-08-18 17:01:57 +02001027 spin_lock(&uprobes_treelock);
Oleg Nesterov891c3972012-07-29 20:22:40 +02001028 n = find_node_in_range(inode, min, max);
1029 if (n) {
1030 for (t = n; t; t = rb_prev(t)) {
1031 u = rb_entry(t, struct uprobe, rb_node);
1032 if (u->inode != inode || u->offset < min)
1033 break;
1034 list_add(&u->pending_list, head);
Oleg Nesterovf2317222015-07-21 15:40:03 +02001035 get_uprobe(u);
Oleg Nesterov891c3972012-07-29 20:22:40 +02001036 }
1037 for (t = n; (t = rb_next(t)); ) {
1038 u = rb_entry(t, struct uprobe, rb_node);
1039 if (u->inode != inode || u->offset > max)
1040 break;
1041 list_add(&u->pending_list, head);
Oleg Nesterovf2317222015-07-21 15:40:03 +02001042 get_uprobe(u);
Oleg Nesterov891c3972012-07-29 20:22:40 +02001043 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301044 }
Oleg Nesterov6f47caa2012-08-18 17:01:57 +02001045 spin_unlock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301046}
1047
1048/*
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001049 * Called from mmap_region/vma_adjust with mm->mmap_sem acquired.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301050 *
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001051 * Currently we ignore all errors and always return 0, the callers
1052 * can't handle the failure anyway.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301053 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001054int uprobe_mmap(struct vm_area_struct *vma)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301055{
1056 struct list_head tmp_list;
Oleg Nesterov665605a2012-07-29 20:22:29 +02001057 struct uprobe *uprobe, *u;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301058 struct inode *inode;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301059
Oleg Nesterov441f1eb72012-11-25 19:54:29 +01001060 if (no_uprobe_events() || !valid_vma(vma, true))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001061 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301062
Oleg Nesterovf2817692013-03-17 18:54:44 +01001063 inode = file_inode(vma->vm_file);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301064 if (!inode)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001065 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301066
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301067 mutex_lock(uprobes_mmap_hash(inode));
Oleg Nesterov891c3972012-07-29 20:22:40 +02001068 build_probe_list(inode, vma, vma->vm_start, vma->vm_end, &tmp_list);
Oleg Nesterov806a98b2012-12-27 18:21:11 +01001069 /*
1070 * We can race with uprobe_unregister(), this uprobe can be already
1071 * removed. But in this case filter_chain() must return false, all
1072 * consumers have gone away.
1073 */
Oleg Nesterov665605a2012-07-29 20:22:29 +02001074 list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
Oleg Nesterov806a98b2012-12-27 18:21:11 +01001075 if (!fatal_signal_pending(current) &&
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +01001076 filter_chain(uprobe, UPROBE_FILTER_MMAP, vma->vm_mm)) {
Oleg Nesterov57683f72012-07-29 20:22:47 +02001077 unsigned long vaddr = offset_to_vaddr(vma, uprobe->offset);
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001078 install_breakpoint(uprobe, vma->vm_mm, vma, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301079 }
1080 put_uprobe(uprobe);
1081 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301082 mutex_unlock(uprobes_mmap_hash(inode));
1083
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001084 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301085}
1086
Oleg Nesterov9f68f6722012-08-19 16:15:09 +02001087static bool
1088vma_has_uprobes(struct vm_area_struct *vma, unsigned long start, unsigned long end)
1089{
1090 loff_t min, max;
1091 struct inode *inode;
1092 struct rb_node *n;
1093
Oleg Nesterovf2817692013-03-17 18:54:44 +01001094 inode = file_inode(vma->vm_file);
Oleg Nesterov9f68f6722012-08-19 16:15:09 +02001095
1096 min = vaddr_to_offset(vma, start);
1097 max = min + (end - start) - 1;
1098
1099 spin_lock(&uprobes_treelock);
1100 n = find_node_in_range(inode, min, max);
1101 spin_unlock(&uprobes_treelock);
1102
1103 return !!n;
1104}
1105
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301106/*
1107 * Called in context of a munmap of a vma.
1108 */
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301109void uprobe_munmap(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301110{
Oleg Nesterov441f1eb72012-11-25 19:54:29 +01001111 if (no_uprobe_events() || !valid_vma(vma, false))
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301112 return;
1113
Oleg Nesterov2fd611a2012-07-29 20:22:31 +02001114 if (!atomic_read(&vma->vm_mm->mm_users)) /* called by mmput() ? */
1115 return;
1116
Oleg Nesterov9f68f6722012-08-19 16:15:09 +02001117 if (!test_bit(MMF_HAS_UPROBES, &vma->vm_mm->flags) ||
1118 test_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags))
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001119 return;
1120
Oleg Nesterov9f68f6722012-08-19 16:15:09 +02001121 if (vma_has_uprobes(vma, start, end))
1122 set_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags);
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301123}
1124
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301125/* Slot allocation for XOL */
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001126static int xol_add_vma(struct mm_struct *mm, struct xol_area *area)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301127{
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001128 int ret = -EALREADY;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301129
1130 down_write(&mm->mmap_sem);
1131 if (mm->uprobes_state.xol_area)
1132 goto fail;
1133
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001134 if (!area->vaddr) {
1135 /* Try to map as high as possible, this is only a hint. */
1136 area->vaddr = get_unmapped_area(NULL, TASK_SIZE - PAGE_SIZE,
1137 PAGE_SIZE, 0, 0);
1138 if (area->vaddr & ~PAGE_MASK) {
1139 ret = area->vaddr;
1140 goto fail;
1141 }
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301142 }
1143
1144 ret = install_special_mapping(mm, area->vaddr, PAGE_SIZE,
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001145 VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO, area->pages);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301146 if (ret)
1147 goto fail;
1148
1149 smp_wmb(); /* pairs with get_xol_area() */
1150 mm->uprobes_state.xol_area = area;
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001151 fail:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301152 up_write(&mm->mmap_sem);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301153
1154 return ret;
1155}
1156
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001157static struct xol_area *__create_xol_area(unsigned long vaddr)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301158{
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001159 struct mm_struct *mm = current->mm;
Anton Arapove78aebf2013-04-03 18:00:32 +02001160 uprobe_opcode_t insn = UPROBE_SWBP_INSN;
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001161 struct xol_area *area;
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001162
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001163 area = kmalloc(sizeof(*area), GFP_KERNEL);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301164 if (unlikely(!area))
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001165 goto out;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301166
1167 area->bitmap = kzalloc(BITS_TO_LONGS(UINSNS_PER_PAGE) * sizeof(long), GFP_KERNEL);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301168 if (!area->bitmap)
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001169 goto free_area;
1170
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001171 area->pages[0] = alloc_page(GFP_HIGHUSER);
1172 if (!area->pages[0])
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001173 goto free_bitmap;
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001174 area->pages[1] = NULL;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301175
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001176 area->vaddr = vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301177 init_waitqueue_head(&area->wq);
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001178 /* Reserve the 1st slot for get_trampoline_vaddr() */
1179 set_bit(0, area->bitmap);
1180 atomic_set(&area->slot_count, 1);
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001181 copy_to_page(area->pages[0], 0, &insn, UPROBE_SWBP_INSN_SIZE);
Anton Arapove78aebf2013-04-03 18:00:32 +02001182
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001183 if (!xol_add_vma(mm, area))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301184 return area;
1185
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001186 __free_page(area->pages[0]);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001187 free_bitmap:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301188 kfree(area->bitmap);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001189 free_area:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301190 kfree(area);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001191 out:
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001192 return NULL;
1193}
1194
1195/*
1196 * get_xol_area - Allocate process's xol_area if necessary.
1197 * This area will be used for storing instructions for execution out of line.
1198 *
1199 * Returns the allocated area or NULL.
1200 */
1201static struct xol_area *get_xol_area(void)
1202{
1203 struct mm_struct *mm = current->mm;
1204 struct xol_area *area;
1205
1206 if (!mm->uprobes_state.xol_area)
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001207 __create_xol_area(0);
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001208
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001209 area = mm->uprobes_state.xol_area;
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001210 smp_read_barrier_depends(); /* pairs with wmb in xol_add_vma() */
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001211 return area;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301212}
1213
1214/*
1215 * uprobe_clear_state - Free the area allocated for slots.
1216 */
1217void uprobe_clear_state(struct mm_struct *mm)
1218{
1219 struct xol_area *area = mm->uprobes_state.xol_area;
1220
1221 if (!area)
1222 return;
1223
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001224 put_page(area->pages[0]);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301225 kfree(area->bitmap);
1226 kfree(area);
1227}
1228
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001229void uprobe_start_dup_mmap(void)
1230{
1231 percpu_down_read(&dup_mmap_sem);
1232}
1233
1234void uprobe_end_dup_mmap(void)
1235{
1236 percpu_up_read(&dup_mmap_sem);
1237}
1238
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001239void uprobe_dup_mmap(struct mm_struct *oldmm, struct mm_struct *newmm)
1240{
Oleg Nesterov61559a82012-08-08 17:17:46 +02001241 newmm->uprobes_state.xol_area = NULL;
1242
Oleg Nesterov9f68f6722012-08-19 16:15:09 +02001243 if (test_bit(MMF_HAS_UPROBES, &oldmm->flags)) {
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001244 set_bit(MMF_HAS_UPROBES, &newmm->flags);
Oleg Nesterov9f68f6722012-08-19 16:15:09 +02001245 /* unconditionally, dup_mmap() skips VM_DONTCOPY vmas */
1246 set_bit(MMF_RECALC_UPROBES, &newmm->flags);
1247 }
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001248}
1249
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301250/*
1251 * - search for a free slot.
1252 */
1253static unsigned long xol_take_insn_slot(struct xol_area *area)
1254{
1255 unsigned long slot_addr;
1256 int slot_nr;
1257
1258 do {
1259 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE);
1260 if (slot_nr < UINSNS_PER_PAGE) {
1261 if (!test_and_set_bit(slot_nr, area->bitmap))
1262 break;
1263
1264 slot_nr = UINSNS_PER_PAGE;
1265 continue;
1266 }
1267 wait_event(area->wq, (atomic_read(&area->slot_count) < UINSNS_PER_PAGE));
1268 } while (slot_nr >= UINSNS_PER_PAGE);
1269
1270 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES);
1271 atomic_inc(&area->slot_count);
1272
1273 return slot_addr;
1274}
1275
1276/*
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001277 * xol_get_insn_slot - allocate a slot for xol.
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301278 * Returns the allocated slot address or 0.
1279 */
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001280static unsigned long xol_get_insn_slot(struct uprobe *uprobe)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301281{
1282 struct xol_area *area;
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001283 unsigned long xol_vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301284
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001285 area = get_xol_area();
1286 if (!area)
1287 return 0;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301288
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001289 xol_vaddr = xol_take_insn_slot(area);
1290 if (unlikely(!xol_vaddr))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301291 return 0;
1292
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001293 arch_uprobe_copy_ixol(area->pages[0], xol_vaddr,
Victor Kamensky72e6ae22014-04-29 04:20:52 +01001294 &uprobe->arch.ixol, sizeof(uprobe->arch.ixol));
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301295
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001296 return xol_vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301297}
1298
1299/*
1300 * xol_free_insn_slot - If slot was earlier allocated by
1301 * @xol_get_insn_slot(), make the slot available for
1302 * subsequent requests.
1303 */
1304static void xol_free_insn_slot(struct task_struct *tsk)
1305{
1306 struct xol_area *area;
1307 unsigned long vma_end;
1308 unsigned long slot_addr;
1309
1310 if (!tsk->mm || !tsk->mm->uprobes_state.xol_area || !tsk->utask)
1311 return;
1312
1313 slot_addr = tsk->utask->xol_vaddr;
Oleg Nesterovaf4355e2012-12-31 18:37:11 +01001314 if (unlikely(!slot_addr))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301315 return;
1316
1317 area = tsk->mm->uprobes_state.xol_area;
1318 vma_end = area->vaddr + PAGE_SIZE;
1319 if (area->vaddr <= slot_addr && slot_addr < vma_end) {
1320 unsigned long offset;
1321 int slot_nr;
1322
1323 offset = slot_addr - area->vaddr;
1324 slot_nr = offset / UPROBE_XOL_SLOT_BYTES;
1325 if (slot_nr >= UINSNS_PER_PAGE)
1326 return;
1327
1328 clear_bit(slot_nr, area->bitmap);
1329 atomic_dec(&area->slot_count);
1330 if (waitqueue_active(&area->wq))
1331 wake_up(&area->wq);
1332
1333 tsk->utask->xol_vaddr = 0;
1334 }
1335}
1336
Victor Kamensky72e6ae22014-04-29 04:20:52 +01001337void __weak arch_uprobe_copy_ixol(struct page *page, unsigned long vaddr,
1338 void *src, unsigned long len)
1339{
1340 /* Initialize the slot */
1341 copy_to_page(page, vaddr, src, len);
1342
1343 /*
1344 * We probably need flush_icache_user_range() but it needs vma.
1345 * This should work on most of architectures by default. If
1346 * architecture needs to do something different it can define
1347 * its own version of the function.
1348 */
1349 flush_dcache_page(page);
1350}
1351
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301352/**
1353 * uprobe_get_swbp_addr - compute address of swbp given post-swbp regs
1354 * @regs: Reflects the saved state of the task after it has hit a breakpoint
1355 * instruction.
1356 * Return the address of the breakpoint instruction.
1357 */
1358unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs)
1359{
1360 return instruction_pointer(regs) - UPROBE_SWBP_INSN_SIZE;
1361}
1362
Oleg Nesterovb02ef202014-05-12 18:24:45 +02001363unsigned long uprobe_get_trap_addr(struct pt_regs *regs)
1364{
1365 struct uprobe_task *utask = current->utask;
1366
1367 if (unlikely(utask && utask->active_uprobe))
1368 return utask->vaddr;
1369
1370 return instruction_pointer(regs);
1371}
1372
Oleg Nesterov2bb5e842015-07-21 15:40:06 +02001373static struct return_instance *free_ret_instance(struct return_instance *ri)
1374{
1375 struct return_instance *next = ri->next;
1376 put_uprobe(ri->uprobe);
1377 kfree(ri);
1378 return next;
1379}
1380
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301381/*
1382 * Called with no locks held.
1383 * Called in context of a exiting or a exec-ing thread.
1384 */
1385void uprobe_free_utask(struct task_struct *t)
1386{
1387 struct uprobe_task *utask = t->utask;
Oleg Nesterov2bb5e842015-07-21 15:40:06 +02001388 struct return_instance *ri;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301389
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301390 if (!utask)
1391 return;
1392
1393 if (utask->active_uprobe)
1394 put_uprobe(utask->active_uprobe);
1395
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001396 ri = utask->return_instances;
Oleg Nesterov2bb5e842015-07-21 15:40:06 +02001397 while (ri)
1398 ri = free_ret_instance(ri);
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001399
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301400 xol_free_insn_slot(t);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301401 kfree(utask);
1402 t->utask = NULL;
1403}
1404
1405/*
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001406 * Allocate a uprobe_task object for the task if if necessary.
1407 * Called when the thread hits a breakpoint.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301408 *
1409 * Returns:
1410 * - pointer to new uprobe_task on success
1411 * - NULL otherwise
1412 */
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001413static struct uprobe_task *get_utask(void)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301414{
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001415 if (!current->utask)
1416 current->utask = kzalloc(sizeof(struct uprobe_task), GFP_KERNEL);
1417 return current->utask;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301418}
1419
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001420static int dup_utask(struct task_struct *t, struct uprobe_task *o_utask)
1421{
1422 struct uprobe_task *n_utask;
1423 struct return_instance **p, *o, *n;
1424
1425 n_utask = kzalloc(sizeof(struct uprobe_task), GFP_KERNEL);
1426 if (!n_utask)
1427 return -ENOMEM;
1428 t->utask = n_utask;
1429
1430 p = &n_utask->return_instances;
1431 for (o = o_utask->return_instances; o; o = o->next) {
1432 n = kmalloc(sizeof(struct return_instance), GFP_KERNEL);
1433 if (!n)
1434 return -ENOMEM;
1435
1436 *n = *o;
Oleg Nesterovf2317222015-07-21 15:40:03 +02001437 get_uprobe(n->uprobe);
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001438 n->next = NULL;
1439
1440 *p = n;
1441 p = &n->next;
1442 n_utask->depth++;
1443 }
1444
1445 return 0;
1446}
1447
1448static void uprobe_warn(struct task_struct *t, const char *msg)
1449{
1450 pr_warn("uprobe: %s:%d failed to %s\n",
1451 current->comm, current->pid, msg);
1452}
1453
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001454static void dup_xol_work(struct callback_head *work)
1455{
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001456 if (current->flags & PF_EXITING)
1457 return;
1458
Oleg Nesterov32473432013-11-08 18:52:21 +01001459 if (!__create_xol_area(current->utask->dup_xol_addr))
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001460 uprobe_warn(current, "dup xol area");
1461}
1462
Anton Arapove78aebf2013-04-03 18:00:32 +02001463/*
Oleg Nesterovb68e0742013-10-13 21:18:31 +02001464 * Called in context of a new clone/fork from copy_process.
1465 */
Oleg Nesterov3ab67962013-10-16 19:39:37 +02001466void uprobe_copy_process(struct task_struct *t, unsigned long flags)
Oleg Nesterovb68e0742013-10-13 21:18:31 +02001467{
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001468 struct uprobe_task *utask = current->utask;
1469 struct mm_struct *mm = current->mm;
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001470 struct xol_area *area;
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001471
Oleg Nesterovb68e0742013-10-13 21:18:31 +02001472 t->utask = NULL;
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001473
Oleg Nesterov3ab67962013-10-16 19:39:37 +02001474 if (!utask || !utask->return_instances)
1475 return;
1476
1477 if (mm == t->mm && !(flags & CLONE_VFORK))
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001478 return;
1479
1480 if (dup_utask(t, utask))
1481 return uprobe_warn(t, "dup ret instances");
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001482
1483 /* The task can fork() after dup_xol_work() fails */
1484 area = mm->uprobes_state.xol_area;
1485 if (!area)
1486 return uprobe_warn(t, "dup xol area");
1487
Oleg Nesterov3ab67962013-10-16 19:39:37 +02001488 if (mm == t->mm)
1489 return;
1490
Oleg Nesterov32473432013-11-08 18:52:21 +01001491 t->utask->dup_xol_addr = area->vaddr;
1492 init_task_work(&t->utask->dup_xol_work, dup_xol_work);
1493 task_work_add(t, &t->utask->dup_xol_work, true);
Oleg Nesterovb68e0742013-10-13 21:18:31 +02001494}
1495
1496/*
Anton Arapove78aebf2013-04-03 18:00:32 +02001497 * Current area->vaddr notion assume the trampoline address is always
1498 * equal area->vaddr.
1499 *
1500 * Returns -1 in case the xol_area is not allocated.
1501 */
1502static unsigned long get_trampoline_vaddr(void)
1503{
1504 struct xol_area *area;
1505 unsigned long trampoline_vaddr = -1;
1506
1507 area = current->mm->uprobes_state.xol_area;
1508 smp_read_barrier_depends();
1509 if (area)
1510 trampoline_vaddr = area->vaddr;
1511
1512 return trampoline_vaddr;
1513}
1514
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001515static void cleanup_return_instances(struct uprobe_task *utask, bool chained,
1516 struct pt_regs *regs)
Oleg Nesterova5b7e1a2015-07-21 15:40:23 +02001517{
1518 struct return_instance *ri = utask->return_instances;
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001519 enum rp_check ctx = chained ? RP_CHECK_CHAIN_CALL : RP_CHECK_CALL;
Oleg Nesterov86dcb702015-07-21 15:40:26 +02001520
1521 while (ri && !arch_uretprobe_is_alive(ri, ctx, regs)) {
Oleg Nesterova5b7e1a2015-07-21 15:40:23 +02001522 ri = free_ret_instance(ri);
1523 utask->depth--;
1524 }
1525 utask->return_instances = ri;
1526}
1527
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001528static void prepare_uretprobe(struct uprobe *uprobe, struct pt_regs *regs)
1529{
1530 struct return_instance *ri;
1531 struct uprobe_task *utask;
1532 unsigned long orig_ret_vaddr, trampoline_vaddr;
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001533 bool chained;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001534
1535 if (!get_xol_area())
1536 return;
1537
1538 utask = get_utask();
1539 if (!utask)
1540 return;
1541
Anton Arapovded49c52013-04-03 18:00:37 +02001542 if (utask->depth >= MAX_URETPROBE_DEPTH) {
1543 printk_ratelimited(KERN_INFO "uprobe: omit uretprobe due to"
1544 " nestedness limit pid/tgid=%d/%d\n",
1545 current->pid, current->tgid);
1546 return;
1547 }
1548
Oleg Nesterov6c58d0e2015-07-21 15:40:10 +02001549 ri = kmalloc(sizeof(struct return_instance), GFP_KERNEL);
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001550 if (!ri)
Oleg Nesterov6c58d0e2015-07-21 15:40:10 +02001551 return;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001552
1553 trampoline_vaddr = get_trampoline_vaddr();
1554 orig_ret_vaddr = arch_uretprobe_hijack_return_addr(trampoline_vaddr, regs);
1555 if (orig_ret_vaddr == -1)
1556 goto fail;
1557
Oleg Nesterova5b7e1a2015-07-21 15:40:23 +02001558 /* drop the entries invalidated by longjmp() */
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001559 chained = (orig_ret_vaddr == trampoline_vaddr);
1560 cleanup_return_instances(utask, chained, regs);
Oleg Nesterova5b7e1a2015-07-21 15:40:23 +02001561
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001562 /*
1563 * We don't want to keep trampoline address in stack, rather keep the
1564 * original return address of first caller thru all the consequent
1565 * instances. This also makes breakpoint unwrapping easier.
1566 */
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001567 if (chained) {
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001568 if (!utask->return_instances) {
1569 /*
1570 * This situation is not possible. Likely we have an
1571 * attack from user-space.
1572 */
Oleg Nesterov6c58d0e2015-07-21 15:40:10 +02001573 uprobe_warn(current, "handle tail call");
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001574 goto fail;
1575 }
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001576 orig_ret_vaddr = utask->return_instances->orig_ret_vaddr;
1577 }
1578
Oleg Nesterovf2317222015-07-21 15:40:03 +02001579 ri->uprobe = get_uprobe(uprobe);
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001580 ri->func = instruction_pointer(regs);
Oleg Nesterov7b868e42015-07-21 15:40:18 +02001581 ri->stack = user_stack_pointer(regs);
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001582 ri->orig_ret_vaddr = orig_ret_vaddr;
1583 ri->chained = chained;
1584
Anton Arapovded49c52013-04-03 18:00:37 +02001585 utask->depth++;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001586 ri->next = utask->return_instances;
1587 utask->return_instances = ri;
1588
1589 return;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001590 fail:
1591 kfree(ri);
1592}
1593
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301594/* Prepare to single-step probed instruction out of line. */
1595static int
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001596pre_ssout(struct uprobe *uprobe, struct pt_regs *regs, unsigned long bp_vaddr)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301597{
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001598 struct uprobe_task *utask;
1599 unsigned long xol_vaddr;
Oleg Nesterovaba51022012-12-31 18:12:48 +01001600 int err;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301601
Oleg Nesterov608e7422012-12-31 18:20:42 +01001602 utask = get_utask();
1603 if (!utask)
1604 return -ENOMEM;
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001605
1606 xol_vaddr = xol_get_insn_slot(uprobe);
1607 if (!xol_vaddr)
1608 return -ENOMEM;
1609
1610 utask->xol_vaddr = xol_vaddr;
1611 utask->vaddr = bp_vaddr;
1612
Oleg Nesterovaba51022012-12-31 18:12:48 +01001613 err = arch_uprobe_pre_xol(&uprobe->arch, regs);
1614 if (unlikely(err)) {
1615 xol_free_insn_slot(current);
1616 return err;
1617 }
1618
Oleg Nesterov608e7422012-12-31 18:20:42 +01001619 utask->active_uprobe = uprobe;
1620 utask->state = UTASK_SSTEP;
Oleg Nesterovaba51022012-12-31 18:12:48 +01001621 return 0;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301622}
1623
1624/*
1625 * If we are singlestepping, then ensure this thread is not connected to
1626 * non-fatal signals until completion of singlestep. When xol insn itself
1627 * triggers the signal, restart the original insn even if the task is
1628 * already SIGKILL'ed (since coredump should report the correct ip). This
1629 * is even more important if the task has a handler for SIGSEGV/etc, The
1630 * _same_ instruction should be repeated again after return from the signal
1631 * handler, and SSTEP can never finish in this case.
1632 */
1633bool uprobe_deny_signal(void)
1634{
1635 struct task_struct *t = current;
1636 struct uprobe_task *utask = t->utask;
1637
1638 if (likely(!utask || !utask->active_uprobe))
1639 return false;
1640
1641 WARN_ON_ONCE(utask->state != UTASK_SSTEP);
1642
1643 if (signal_pending(t)) {
1644 spin_lock_irq(&t->sighand->siglock);
1645 clear_tsk_thread_flag(t, TIF_SIGPENDING);
1646 spin_unlock_irq(&t->sighand->siglock);
1647
1648 if (__fatal_signal_pending(t) || arch_uprobe_xol_was_trapped(t)) {
1649 utask->state = UTASK_SSTEP_TRAPPED;
1650 set_tsk_thread_flag(t, TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301651 }
1652 }
1653
1654 return true;
1655}
1656
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001657static void mmf_recalc_uprobes(struct mm_struct *mm)
1658{
1659 struct vm_area_struct *vma;
1660
1661 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1662 if (!valid_vma(vma, false))
1663 continue;
1664 /*
1665 * This is not strictly accurate, we can race with
1666 * uprobe_unregister() and see the already removed
1667 * uprobe if delete_uprobe() was not yet called.
Oleg Nesterov63633cb2012-11-22 18:30:15 +01001668 * Or this uprobe can be filtered out.
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001669 */
1670 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end))
1671 return;
1672 }
1673
1674 clear_bit(MMF_HAS_UPROBES, &mm->flags);
1675}
1676
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301677static int is_trap_at_addr(struct mm_struct *mm, unsigned long vaddr)
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001678{
1679 struct page *page;
1680 uprobe_opcode_t opcode;
1681 int result;
1682
1683 pagefault_disable();
1684 result = __copy_from_user_inatomic(&opcode, (void __user*)vaddr,
1685 sizeof(opcode));
1686 pagefault_enable();
1687
1688 if (likely(result == 0))
1689 goto out;
1690
1691 result = get_user_pages(NULL, mm, vaddr, 1, 0, 1, &page, NULL);
1692 if (result < 0)
1693 return result;
1694
Oleg Nesterovab0d8052013-03-24 18:24:37 +01001695 copy_from_page(page, vaddr, &opcode, UPROBE_SWBP_INSN_SIZE);
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001696 put_page(page);
1697 out:
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301698 /* This needs to return true for any variant of the trap insn */
1699 return is_trap_insn(&opcode);
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001700}
1701
Oleg Nesterovd790d342012-05-29 21:29:14 +02001702static struct uprobe *find_active_uprobe(unsigned long bp_vaddr, int *is_swbp)
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001703{
1704 struct mm_struct *mm = current->mm;
1705 struct uprobe *uprobe = NULL;
1706 struct vm_area_struct *vma;
1707
1708 down_read(&mm->mmap_sem);
1709 vma = find_vma(mm, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001710 if (vma && vma->vm_start <= bp_vaddr) {
1711 if (valid_vma(vma, false)) {
Oleg Nesterovf2817692013-03-17 18:54:44 +01001712 struct inode *inode = file_inode(vma->vm_file);
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001713 loff_t offset = vaddr_to_offset(vma, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001714
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001715 uprobe = find_uprobe(inode, offset);
1716 }
Oleg Nesterovd790d342012-05-29 21:29:14 +02001717
1718 if (!uprobe)
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301719 *is_swbp = is_trap_at_addr(mm, bp_vaddr);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001720 } else {
1721 *is_swbp = -EFAULT;
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001722 }
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001723
1724 if (!uprobe && test_and_clear_bit(MMF_RECALC_UPROBES, &mm->flags))
1725 mmf_recalc_uprobes(mm);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001726 up_read(&mm->mmap_sem);
1727
1728 return uprobe;
1729}
1730
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001731static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
1732{
1733 struct uprobe_consumer *uc;
1734 int remove = UPROBE_HANDLER_REMOVE;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001735 bool need_prep = false; /* prepare return uprobe, when needed */
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001736
1737 down_read(&uprobe->register_rwsem);
1738 for (uc = uprobe->consumers; uc; uc = uc->next) {
Anton Arapovea024872013-04-03 18:00:31 +02001739 int rc = 0;
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001740
Anton Arapovea024872013-04-03 18:00:31 +02001741 if (uc->handler) {
1742 rc = uc->handler(uc, regs);
1743 WARN(rc & ~UPROBE_HANDLER_MASK,
1744 "bad rc=0x%x from %pf()\n", rc, uc->handler);
1745 }
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001746
1747 if (uc->ret_handler)
1748 need_prep = true;
1749
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001750 remove &= rc;
1751 }
1752
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001753 if (need_prep && !remove)
1754 prepare_uretprobe(uprobe, regs); /* put bp at return */
1755
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001756 if (remove && uprobe->consumers) {
1757 WARN_ON(!uprobe_is_active(uprobe));
1758 unapply_uprobe(uprobe, current->mm);
1759 }
1760 up_read(&uprobe->register_rwsem);
1761}
1762
Anton Arapovfec88982013-04-03 18:00:36 +02001763static void
1764handle_uretprobe_chain(struct return_instance *ri, struct pt_regs *regs)
1765{
1766 struct uprobe *uprobe = ri->uprobe;
1767 struct uprobe_consumer *uc;
1768
1769 down_read(&uprobe->register_rwsem);
1770 for (uc = uprobe->consumers; uc; uc = uc->next) {
1771 if (uc->ret_handler)
1772 uc->ret_handler(uc, ri->func, regs);
1773 }
1774 up_read(&uprobe->register_rwsem);
1775}
1776
Oleg Nesterova83cfeb2015-07-21 15:40:13 +02001777static struct return_instance *find_next_ret_chain(struct return_instance *ri)
1778{
1779 bool chained;
1780
1781 do {
1782 chained = ri->chained;
1783 ri = ri->next; /* can't be NULL if chained */
1784 } while (chained);
1785
1786 return ri;
1787}
1788
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001789static void handle_trampoline(struct pt_regs *regs)
Anton Arapovfec88982013-04-03 18:00:36 +02001790{
1791 struct uprobe_task *utask;
Oleg Nesterova83cfeb2015-07-21 15:40:13 +02001792 struct return_instance *ri, *next;
Oleg Nesterov5eeb50d2015-07-21 15:40:21 +02001793 bool valid;
Anton Arapovfec88982013-04-03 18:00:36 +02001794
1795 utask = current->utask;
1796 if (!utask)
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001797 goto sigill;
Anton Arapovfec88982013-04-03 18:00:36 +02001798
1799 ri = utask->return_instances;
1800 if (!ri)
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001801 goto sigill;
Anton Arapovfec88982013-04-03 18:00:36 +02001802
Oleg Nesterova83cfeb2015-07-21 15:40:13 +02001803 do {
Oleg Nesterov5eeb50d2015-07-21 15:40:21 +02001804 /*
1805 * We should throw out the frames invalidated by longjmp().
1806 * If this chain is valid, then the next one should be alive
1807 * or NULL; the latter case means that nobody but ri->func
1808 * could hit this trampoline on return. TODO: sigaltstack().
1809 */
1810 next = find_next_ret_chain(ri);
Oleg Nesterov86dcb702015-07-21 15:40:26 +02001811 valid = !next || arch_uretprobe_is_alive(next, RP_CHECK_RET, regs);
Oleg Nesterov5eeb50d2015-07-21 15:40:21 +02001812
1813 instruction_pointer_set(regs, ri->orig_ret_vaddr);
1814 do {
1815 if (valid)
1816 handle_uretprobe_chain(ri, regs);
1817 ri = free_ret_instance(ri);
1818 utask->depth--;
1819 } while (ri != next);
1820 } while (!valid);
Anton Arapovfec88982013-04-03 18:00:36 +02001821
1822 utask->return_instances = ri;
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001823 return;
Anton Arapovfec88982013-04-03 18:00:36 +02001824
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001825 sigill:
1826 uprobe_warn(current, "handle uretprobe, sending SIGILL.");
1827 force_sig_info(SIGILL, SEND_SIG_FORCED, current);
1828
Anton Arapovfec88982013-04-03 18:00:36 +02001829}
1830
David A. Long6fe50a22014-02-03 14:25:49 -05001831bool __weak arch_uprobe_ignore(struct arch_uprobe *aup, struct pt_regs *regs)
1832{
1833 return false;
1834}
1835
Oleg Nesterov86dcb702015-07-21 15:40:26 +02001836bool __weak arch_uretprobe_is_alive(struct return_instance *ret, enum rp_check ctx,
1837 struct pt_regs *regs)
Oleg Nesterov97da8972015-07-21 15:40:16 +02001838{
1839 return true;
1840}
1841
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301842/*
1843 * Run handler and ask thread to singlestep.
1844 * Ensure all non-fatal signals cannot interrupt thread while it singlesteps.
1845 */
1846static void handle_swbp(struct pt_regs *regs)
1847{
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301848 struct uprobe *uprobe;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301849 unsigned long bp_vaddr;
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001850 int uninitialized_var(is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301851
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301852 bp_vaddr = uprobe_get_swbp_addr(regs);
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001853 if (bp_vaddr == get_trampoline_vaddr())
1854 return handle_trampoline(regs);
Anton Arapovfec88982013-04-03 18:00:36 +02001855
1856 uprobe = find_active_uprobe(bp_vaddr, &is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301857 if (!uprobe) {
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001858 if (is_swbp > 0) {
1859 /* No matching uprobe; signal SIGTRAP. */
1860 send_sig(SIGTRAP, current, 0);
1861 } else {
1862 /*
1863 * Either we raced with uprobe_unregister() or we can't
1864 * access this memory. The latter is only possible if
1865 * another thread plays with our ->mm. In both cases
1866 * we can simply restart. If this vma was unmapped we
1867 * can pretend this insn was not executed yet and get
1868 * the (correct) SIGSEGV after restart.
1869 */
1870 instruction_pointer_set(regs, bp_vaddr);
1871 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301872 return;
1873 }
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001874
1875 /* change it in advance for ->handler() and restart */
1876 instruction_pointer_set(regs, bp_vaddr);
1877
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001878 /*
1879 * TODO: move copy_insn/etc into _register and remove this hack.
1880 * After we hit the bp, _unregister + _register can install the
1881 * new and not-yet-analyzed uprobe at the same address, restart.
1882 */
1883 smp_rmb(); /* pairs with wmb() in install_breakpoint() */
Oleg Nesterov71434f22012-09-30 21:12:44 +02001884 if (unlikely(!test_bit(UPROBE_COPY_INSN, &uprobe->flags)))
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001885 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301886
Oleg Nesterov72fd2932013-11-26 09:35:25 +09001887 /* Tracing handlers use ->utask to communicate with fetch methods */
1888 if (!get_utask())
1889 goto out;
1890
David A. Long6fe50a22014-02-03 14:25:49 -05001891 if (arch_uprobe_ignore(&uprobe->arch, regs))
1892 goto out;
1893
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301894 handler_chain(uprobe, regs);
David A. Long6fe50a22014-02-03 14:25:49 -05001895
Oleg Nesterov8a6b1732014-03-30 18:56:22 +02001896 if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
Oleg Nesterov0578a972012-09-14 18:31:23 +02001897 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301898
Oleg Nesterov608e7422012-12-31 18:20:42 +01001899 if (!pre_ssout(uprobe, regs, bp_vaddr))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301900 return;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301901
Oleg Nesterov8a6b1732014-03-30 18:56:22 +02001902 /* arch_uprobe_skip_sstep() succeeded, or restart if can't singlestep */
Oleg Nesterov0578a972012-09-14 18:31:23 +02001903out:
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001904 put_uprobe(uprobe);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301905}
1906
1907/*
1908 * Perform required fix-ups and disable singlestep.
1909 * Allow pending signals to take effect.
1910 */
1911static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
1912{
1913 struct uprobe *uprobe;
Oleg Nesterov014940b2014-04-03 20:20:10 +02001914 int err = 0;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301915
1916 uprobe = utask->active_uprobe;
1917 if (utask->state == UTASK_SSTEP_ACK)
Oleg Nesterov014940b2014-04-03 20:20:10 +02001918 err = arch_uprobe_post_xol(&uprobe->arch, regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301919 else if (utask->state == UTASK_SSTEP_TRAPPED)
1920 arch_uprobe_abort_xol(&uprobe->arch, regs);
1921 else
1922 WARN_ON_ONCE(1);
1923
1924 put_uprobe(uprobe);
1925 utask->active_uprobe = NULL;
1926 utask->state = UTASK_RUNNING;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301927 xol_free_insn_slot(current);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301928
1929 spin_lock_irq(&current->sighand->siglock);
1930 recalc_sigpending(); /* see uprobe_deny_signal() */
1931 spin_unlock_irq(&current->sighand->siglock);
Oleg Nesterov014940b2014-04-03 20:20:10 +02001932
1933 if (unlikely(err)) {
1934 uprobe_warn(current, "execute the probed insn, sending SIGILL.");
1935 force_sig_info(SIGILL, SEND_SIG_FORCED, current);
1936 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301937}
1938
1939/*
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001940 * On breakpoint hit, breakpoint notifier sets the TIF_UPROBE flag and
1941 * allows the thread to return from interrupt. After that handle_swbp()
1942 * sets utask->active_uprobe.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301943 *
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001944 * On singlestep exception, singlestep notifier sets the TIF_UPROBE flag
1945 * and allows the thread to return from interrupt.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301946 *
1947 * While returning to userspace, thread notices the TIF_UPROBE flag and calls
1948 * uprobe_notify_resume().
1949 */
1950void uprobe_notify_resume(struct pt_regs *regs)
1951{
1952 struct uprobe_task *utask;
1953
Oleg Nesterovdb023ea2012-09-14 19:05:46 +02001954 clear_thread_flag(TIF_UPROBE);
1955
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301956 utask = current->utask;
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001957 if (utask && utask->active_uprobe)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301958 handle_singlestep(utask, regs);
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001959 else
1960 handle_swbp(regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301961}
1962
1963/*
1964 * uprobe_pre_sstep_notifier gets called from interrupt context as part of
1965 * notifier mechanism. Set TIF_UPROBE flag and indicate breakpoint hit.
1966 */
1967int uprobe_pre_sstep_notifier(struct pt_regs *regs)
1968{
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001969 if (!current->mm)
1970 return 0;
1971
1972 if (!test_bit(MMF_HAS_UPROBES, &current->mm->flags) &&
1973 (!current->utask || !current->utask->return_instances))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301974 return 0;
1975
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301976 set_thread_flag(TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301977 return 1;
1978}
1979
1980/*
1981 * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier
1982 * mechanism. Set TIF_UPROBE flag and indicate completion of singlestep.
1983 */
1984int uprobe_post_sstep_notifier(struct pt_regs *regs)
1985{
1986 struct uprobe_task *utask = current->utask;
1987
1988 if (!current->mm || !utask || !utask->active_uprobe)
1989 /* task is currently not uprobed */
1990 return 0;
1991
1992 utask->state = UTASK_SSTEP_ACK;
1993 set_thread_flag(TIF_UPROBE);
1994 return 1;
1995}
1996
1997static struct notifier_block uprobe_exception_nb = {
1998 .notifier_call = arch_uprobe_exception_notify,
1999 .priority = INT_MAX-1, /* notified after kprobes, kgdb */
2000};
2001
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302002static int __init init_uprobes(void)
2003{
2004 int i;
2005
Oleg Nesterov66d06df2012-11-25 22:48:37 +01002006 for (i = 0; i < UPROBES_HASH_SZ; i++)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302007 mutex_init(&uprobes_mmap_mutex[i]);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05302008
Oleg Nesterov32cdba12012-11-14 19:03:42 +01002009 if (percpu_init_rwsem(&dup_mmap_sem))
2010 return -ENOMEM;
2011
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05302012 return register_die_notifier(&uprobe_exception_nb);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302013}
Oleg Nesterov736e89d2013-10-31 19:28:22 +01002014__initcall(init_uprobes);