blob: 1fcaa174ed32957927bbe7a028159e594a14487a [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
Peter Zijlstra90eec102015-11-16 11:08:45 +010022 * Copyright (C) 2011-2012 Red Hat, Inc., Peter Zijlstra
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 Nesterov441f1eb2012-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 {
Oleg Nesterov704bde32015-07-21 15:40:33 +020099 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 Nesterovc912dae2013-11-09 19:49:39 +0100102
Oleg Nesterov704bde32015-07-21 15:40:33 +0200103 struct vm_special_mapping xol_mapping;
104 struct page *pages[2];
Oleg Nesterovc912dae2013-11-09 19:49:39 +0100105 /*
106 * We keep the vma's vm_start rather than a pointer to the vma
107 * itself. The probed process or a naughty kernel module could make
108 * the vma go away, and we must handle that reasonably gracefully.
109 */
Oleg Nesterov704bde32015-07-21 15:40:33 +0200110 unsigned long vaddr; /* Page(s) of instruction slots */
Oleg Nesterovc912dae2013-11-09 19:49:39 +0100111};
112
113/*
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530114 * valid_vma: Verify if the specified vma is an executable vma
115 * Relax restrictions while unregistering: vm_flags might have
116 * changed after breakpoint was inserted.
117 * - is_register: indicates if we are in register context.
118 * - Return 1 if the specified virtual address is in an
119 * executable vma.
120 */
121static bool valid_vma(struct vm_area_struct *vma, bool is_register)
122{
Oleg Nesterov13f59c52014-04-28 20:15:43 +0200123 vm_flags_t flags = VM_HUGETLB | VM_MAYEXEC | VM_MAYSHARE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530124
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200125 if (is_register)
126 flags |= VM_WRITE;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530127
Oleg Nesterove40cfce2012-09-16 19:31:39 +0200128 return vma->vm_file && (vma->vm_flags & flags) == VM_MAYEXEC;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530129}
130
Oleg Nesterov57683f72012-07-29 20:22:47 +0200131static unsigned long offset_to_vaddr(struct vm_area_struct *vma, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530132{
Oleg Nesterov57683f72012-07-29 20:22:47 +0200133 return vma->vm_start + offset - ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530134}
135
Oleg Nesterovcb113b42012-07-29 20:22:42 +0200136static loff_t vaddr_to_offset(struct vm_area_struct *vma, unsigned long vaddr)
137{
138 return ((loff_t)vma->vm_pgoff << PAGE_SHIFT) + (vaddr - vma->vm_start);
139}
140
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530141/**
142 * __replace_page - replace page in vma by new page.
143 * based on replace_page in mm/ksm.c
144 *
145 * @vma: vma that holds the pte pointing to page
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200146 * @addr: address the old @page is mapped at
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530147 * @page: the cowed page we are replacing by kpage
148 * @kpage: the modified page we replace page by
149 *
150 * Returns 0 on success, -EFAULT on failure.
151 */
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200152static int __replace_page(struct vm_area_struct *vma, unsigned long addr,
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200153 struct page *old_page, struct page *new_page)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530154{
155 struct mm_struct *mm = vma->vm_mm;
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200156 spinlock_t *ptl;
157 pte_t *ptep;
Oleg Nesterov9f924482012-07-29 20:22:20 +0200158 int err;
Haggai Eran6bdb9132012-10-08 16:33:35 -0700159 /* For mmu_notifiers */
160 const unsigned long mmun_start = addr;
161 const unsigned long mmun_end = addr + PAGE_SIZE;
Johannes Weiner00501b52014-08-08 14:19:20 -0700162 struct mem_cgroup *memcg;
163
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200164 err = mem_cgroup_try_charge(new_page, vma->vm_mm, GFP_KERNEL, &memcg,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800165 false);
Johannes Weiner00501b52014-08-08 14:19:20 -0700166 if (err)
167 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530168
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200169 /* For try_to_free_swap() and munlock_vma_page() below */
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200170 lock_page(old_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200171
Haggai Eran6bdb9132012-10-08 16:33:35 -0700172 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200173 err = -EAGAIN;
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200174 ptep = page_check_address(old_page, mm, addr, &ptl, 0);
Oleg Nesterov6c4687c2016-08-17 17:36:29 +0200175 if (!ptep) {
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200176 mem_cgroup_cancel_charge(new_page, memcg, false);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200177 goto unlock;
Oleg Nesterov6c4687c2016-08-17 17:36:29 +0200178 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530179
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200180 get_page(new_page);
181 page_add_new_anon_rmap(new_page, vma, addr, false);
182 mem_cgroup_commit_charge(new_page, memcg, false, false);
183 lru_cache_add_active_or_unevictable(new_page, vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530184
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200185 if (!PageAnon(old_page)) {
186 dec_mm_counter(mm, mm_counter_file(old_page));
Srikar Dronamraju7396fa82012-04-11 16:05:16 +0530187 inc_mm_counter(mm, MM_ANONPAGES);
188 }
189
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530190 flush_cache_page(vma, addr, pte_pfn(*ptep));
Joerg Roedel34ee6452014-11-13 13:46:09 +1100191 ptep_clear_flush_notify(vma, addr, ptep);
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200192 set_pte_at_notify(mm, addr, ptep, mk_pte(new_page, vma->vm_page_prot));
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530193
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200194 page_remove_rmap(old_page, false);
195 if (!page_mapped(old_page))
196 try_to_free_swap(old_page);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530197 pte_unmap_unlock(ptep, ptl);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530198
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200199 if (vma->vm_flags & VM_LOCKED)
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200200 munlock_vma_page(old_page);
201 put_page(old_page);
Oleg Nesterov194f8dc2012-07-29 20:22:49 +0200202
Oleg Nesterov9f924482012-07-29 20:22:20 +0200203 err = 0;
204 unlock:
Haggai Eran6bdb9132012-10-08 16:33:35 -0700205 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Oleg Nesterovbdfaa2e2016-08-17 17:37:04 +0200206 unlock_page(old_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200207 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530208}
209
210/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530211 * is_swbp_insn - check if instruction is breakpoint instruction.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530212 * @insn: instruction to be checked.
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530213 * Default implementation of is_swbp_insn
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530214 * Returns true if @insn is a breakpoint instruction.
215 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530216bool __weak is_swbp_insn(uprobe_opcode_t *insn)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530217{
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530218 return *insn == UPROBE_SWBP_INSN;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530219}
220
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530221/**
222 * is_trap_insn - check if instruction is breakpoint instruction.
223 * @insn: instruction to be checked.
224 * Default implementation of is_trap_insn
225 * Returns true if @insn is a breakpoint instruction.
226 *
227 * This function is needed for the case where an architecture has multiple
228 * trap instructions (like powerpc).
229 */
230bool __weak is_trap_insn(uprobe_opcode_t *insn)
231{
232 return is_swbp_insn(insn);
233}
234
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100235static void copy_from_page(struct page *page, unsigned long vaddr, void *dst, int len)
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200236{
237 void *kaddr = kmap_atomic(page);
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100238 memcpy(dst, kaddr + (vaddr & ~PAGE_MASK), len);
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200239 kunmap_atomic(kaddr);
240}
241
Oleg Nesterov5669cce2013-03-24 18:58:04 +0100242static void copy_to_page(struct page *page, unsigned long vaddr, const void *src, int len)
243{
244 void *kaddr = kmap_atomic(page);
245 memcpy(kaddr + (vaddr & ~PAGE_MASK), src, len);
246 kunmap_atomic(kaddr);
247}
248
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200249static int verify_opcode(struct page *page, unsigned long vaddr, uprobe_opcode_t *new_opcode)
250{
251 uprobe_opcode_t old_opcode;
252 bool is_swbp;
253
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530254 /*
255 * Note: We only check if the old_opcode is UPROBE_SWBP_INSN here.
256 * We do not check if it is any other 'trap variant' which could
257 * be conditional trap instruction such as the one powerpc supports.
258 *
259 * The logic is that we do not care if the underlying instruction
260 * is a trap variant; uprobes always wins over any other (gdb)
261 * breakpoint.
262 */
Oleg Nesterovab0d8052013-03-24 18:24:37 +0100263 copy_from_page(page, vaddr, &old_opcode, UPROBE_SWBP_INSN_SIZE);
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200264 is_swbp = is_swbp_insn(&old_opcode);
265
266 if (is_swbp_insn(new_opcode)) {
267 if (is_swbp) /* register: already installed? */
268 return 0;
269 } else {
270 if (!is_swbp) /* unregister: was it changed by us? */
Oleg Nesterov076a3652012-09-30 18:54:53 +0200271 return 0;
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200272 }
273
274 return 1;
275}
276
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530277/*
278 * NOTE:
279 * Expect the breakpoint instruction to be the smallest size instruction for
280 * the architecture. If an arch has variable length instruction and the
281 * breakpoint instruction is not of the smallest length instruction
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +0530282 * supported by that architecture then we need to modify is_trap_at_addr and
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100283 * uprobe_write_opcode accordingly. This would never be a problem for archs
284 * that have fixed length instructions.
Oleg Nesterov29dedee2014-05-05 16:38:18 +0200285 *
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100286 * uprobe_write_opcode - write the opcode at a given virtual address.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530287 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530288 * @vaddr: the virtual address to store the opcode.
289 * @opcode: opcode to be written at @vaddr.
290 *
Oleg Nesterov29dedee2014-05-05 16:38:18 +0200291 * Called with mm->mmap_sem held for write.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530292 * Return 0 (success) or a negative errno.
293 */
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100294int uprobe_write_opcode(struct mm_struct *mm, unsigned long vaddr,
Oleg Nesterovcceb55a2012-09-23 21:10:18 +0200295 uprobe_opcode_t opcode)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530296{
297 struct page *old_page, *new_page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530298 struct vm_area_struct *vma;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530299 int ret;
Oleg Nesterovf4030722012-07-29 20:22:12 +0200300
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200301retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530302 /* Read the page with vaddr into memory */
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +0100303 ret = get_user_pages_remote(NULL, mm, vaddr, 1, FOLL_FORCE, &old_page,
304 &vma);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530305 if (ret <= 0)
306 return ret;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100307
Oleg Nesteroved6f6a52012-09-23 21:30:44 +0200308 ret = verify_opcode(old_page, vaddr, &opcode);
309 if (ret <= 0)
310 goto put_old;
311
Oleg Nesterov29dedee2014-05-05 16:38:18 +0200312 ret = anon_vma_prepare(vma);
313 if (ret)
314 goto put_old;
315
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530316 ret = -ENOMEM;
317 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, vaddr);
318 if (!new_page)
Oleg Nesterov9f924482012-07-29 20:22:20 +0200319 goto put_old;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530320
Oleg Nesterov29dedee2014-05-05 16:38:18 +0200321 __SetPageUptodate(new_page);
Oleg Nesterov3f471072013-03-24 19:04:36 +0100322 copy_highpage(new_page, old_page);
323 copy_to_page(new_page, vaddr, &opcode, UPROBE_SWBP_INSN_SIZE);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530324
Oleg Nesterovc517ee72012-07-29 20:22:16 +0200325 ret = __replace_page(vma, vaddr, old_page, new_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300326 put_page(new_page);
Oleg Nesterov9f924482012-07-29 20:22:20 +0200327put_old:
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100328 put_page(old_page);
329
Oleg Nesterov5323ce72012-06-15 17:43:28 +0200330 if (unlikely(ret == -EAGAIN))
331 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530332 return ret;
333}
334
335/**
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530336 * set_swbp - store breakpoint at a given address.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530337 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530338 * @mm: the probed process address space.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530339 * @vaddr: the virtual address to insert the opcode.
340 *
341 * For mm @mm, store the breakpoint instruction at @vaddr.
342 * Return 0 (success) or a negative errno.
343 */
Srikar Dronamraju5cb4ac32012-03-12 14:55:45 +0530344int __weak set_swbp(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530345{
Oleg Nesterovf72d41f2013-11-05 19:50:39 +0100346 return uprobe_write_opcode(mm, vaddr, UPROBE_SWBP_INSN);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530347}
348
349/**
350 * set_orig_insn - Restore the original instruction.
351 * @mm: the probed process address space.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530352 * @auprobe: arch specific probepoint information.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530353 * @vaddr: the virtual address to insert the opcode.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530354 *
355 * For mm @mm, restore the original opcode (opcode) at @vaddr.
356 * Return 0 (success) or a negative errno.
357 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100358int __weak
Oleg Nesterovded86e72012-08-08 18:07:03 +0200359set_orig_insn(struct arch_uprobe *auprobe, struct mm_struct *mm, unsigned long vaddr)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530360{
Oleg Nesterov803200e2013-11-09 17:58:54 +0100361 return uprobe_write_opcode(mm, vaddr, *(uprobe_opcode_t *)&auprobe->insn);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530362}
363
Oleg Nesterovf2317222015-07-21 15:40:03 +0200364static struct uprobe *get_uprobe(struct uprobe *uprobe)
365{
366 atomic_inc(&uprobe->ref);
367 return uprobe;
368}
369
370static void put_uprobe(struct uprobe *uprobe)
371{
372 if (atomic_dec_and_test(&uprobe->ref))
373 kfree(uprobe);
374}
375
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530376static int match_uprobe(struct uprobe *l, struct uprobe *r)
377{
378 if (l->inode < r->inode)
379 return -1;
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100380
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530381 if (l->inode > r->inode)
382 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530383
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100384 if (l->offset < r->offset)
385 return -1;
386
387 if (l->offset > r->offset)
388 return 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530389
390 return 0;
391}
392
393static struct uprobe *__find_uprobe(struct inode *inode, loff_t offset)
394{
395 struct uprobe u = { .inode = inode, .offset = offset };
396 struct rb_node *n = uprobes_tree.rb_node;
397 struct uprobe *uprobe;
398 int match;
399
400 while (n) {
401 uprobe = rb_entry(n, struct uprobe, rb_node);
402 match = match_uprobe(&u, uprobe);
Oleg Nesterovf2317222015-07-21 15:40:03 +0200403 if (!match)
404 return get_uprobe(uprobe);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100405
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530406 if (match < 0)
407 n = n->rb_left;
408 else
409 n = n->rb_right;
410 }
411 return NULL;
412}
413
414/*
415 * Find a uprobe corresponding to a given inode:offset
416 * Acquires uprobes_treelock
417 */
418static struct uprobe *find_uprobe(struct inode *inode, loff_t offset)
419{
420 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530421
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200422 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530423 uprobe = __find_uprobe(inode, offset);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200424 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100425
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530426 return uprobe;
427}
428
429static struct uprobe *__insert_uprobe(struct uprobe *uprobe)
430{
431 struct rb_node **p = &uprobes_tree.rb_node;
432 struct rb_node *parent = NULL;
433 struct uprobe *u;
434 int match;
435
436 while (*p) {
437 parent = *p;
438 u = rb_entry(parent, struct uprobe, rb_node);
439 match = match_uprobe(uprobe, u);
Oleg Nesterovf2317222015-07-21 15:40:03 +0200440 if (!match)
441 return get_uprobe(u);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530442
443 if (match < 0)
444 p = &parent->rb_left;
445 else
446 p = &parent->rb_right;
447
448 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100449
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530450 u = NULL;
451 rb_link_node(&uprobe->rb_node, parent, p);
452 rb_insert_color(&uprobe->rb_node, &uprobes_tree);
453 /* get access + creation ref */
454 atomic_set(&uprobe->ref, 2);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100455
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530456 return u;
457}
458
459/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100460 * Acquire uprobes_treelock.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530461 * Matching uprobe already exists in rbtree;
462 * increment (access refcount) and return the matching uprobe.
463 *
464 * No matching uprobe; insert the uprobe in rb_tree;
465 * get a double refcount (access + creation) and return NULL.
466 */
467static struct uprobe *insert_uprobe(struct uprobe *uprobe)
468{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530469 struct uprobe *u;
470
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200471 spin_lock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530472 u = __insert_uprobe(uprobe);
Oleg Nesterov6f47caa2012-08-18 17:01:57 +0200473 spin_unlock(&uprobes_treelock);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100474
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530475 return u;
476}
477
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530478static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
479{
480 struct uprobe *uprobe, *cur_uprobe;
481
482 uprobe = kzalloc(sizeof(struct uprobe), GFP_KERNEL);
483 if (!uprobe)
484 return NULL;
485
486 uprobe->inode = igrab(inode);
487 uprobe->offset = offset;
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100488 init_rwsem(&uprobe->register_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530489 init_rwsem(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530490
491 /* add to uprobes_tree, sorted on inode:offset */
492 cur_uprobe = insert_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530493 /* a uprobe exists for this inode:offset combination */
494 if (cur_uprobe) {
495 kfree(uprobe);
496 uprobe = cur_uprobe;
497 iput(inode);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100498 }
499
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530500 return uprobe;
501}
502
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100503static void consumer_add(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530504{
505 down_write(&uprobe->consumer_rwsem);
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530506 uc->next = uprobe->consumers;
507 uprobe->consumers = uc;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530508 up_write(&uprobe->consumer_rwsem);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530509}
510
511/*
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530512 * For uprobe @uprobe, delete the consumer @uc.
513 * Return true if the @uc is deleted successfully
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530514 * or return false.
515 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530516static bool consumer_del(struct uprobe *uprobe, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530517{
518 struct uprobe_consumer **con;
519 bool ret = false;
520
521 down_write(&uprobe->consumer_rwsem);
522 for (con = &uprobe->consumers; *con; con = &(*con)->next) {
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530523 if (*con == uc) {
524 *con = uc->next;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530525 ret = true;
526 break;
527 }
528 }
529 up_write(&uprobe->consumer_rwsem);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100530
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530531 return ret;
532}
533
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100534static int __copy_insn(struct address_space *mapping, struct file *filp,
535 void *insn, int nbytes, loff_t offset)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530536{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530537 struct page *page;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530538 /*
Oleg Nesterov40814f62014-05-19 20:41:36 +0200539 * Ensure that the page that has the original instruction is populated
540 * and in page-cache. If ->readpage == NULL it must be shmem_mapping(),
541 * see uprobe_register().
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530542 */
Oleg Nesterov40814f62014-05-19 20:41:36 +0200543 if (mapping->a_ops->readpage)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300544 page = read_mapping_page(mapping, offset >> PAGE_SHIFT, filp);
Oleg Nesterov40814f62014-05-19 20:41:36 +0200545 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300546 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530547 if (IS_ERR(page))
548 return PTR_ERR(page);
549
Oleg Nesterov2edb7b52013-03-24 18:37:48 +0100550 copy_from_page(page, offset, insn, nbytes);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300551 put_page(page);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100552
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530553 return 0;
554}
555
Oleg Nesterovd4366152012-06-15 17:43:42 +0200556static int copy_insn(struct uprobe *uprobe, struct file *filp)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530557{
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100558 struct address_space *mapping = uprobe->inode->i_mapping;
559 loff_t offs = uprobe->offset;
Oleg Nesterov803200e2013-11-09 17:58:54 +0100560 void *insn = &uprobe->arch.insn;
561 int size = sizeof(uprobe->arch.insn);
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100562 int len, err = -EIO;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530563
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100564 /* Copy only available bytes, -EIO if nothing was read */
565 do {
566 if (offs >= i_size_read(uprobe->inode))
567 break;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530568
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100569 len = min_t(int, size, PAGE_SIZE - (offs & ~PAGE_MASK));
570 err = __copy_insn(mapping, filp, insn, len, offs);
Oleg Nesterovfc36f592012-06-15 17:43:44 +0200571 if (err)
Oleg Nesterov2ded0982013-11-07 19:41:57 +0100572 break;
573
574 insn += len;
575 offs += len;
576 size -= len;
577 } while (size);
578
579 return err;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530580}
581
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200582static int prepare_uprobe(struct uprobe *uprobe, struct file *file,
583 struct mm_struct *mm, unsigned long vaddr)
584{
585 int ret = 0;
586
Oleg Nesterov71434f22012-09-30 21:12:44 +0200587 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200588 return ret;
589
Oleg Nesterovd4d3ccc2012-11-24 18:51:34 +0100590 /* TODO: move this into _register, until then we abuse this sem. */
591 down_write(&uprobe->consumer_rwsem);
Oleg Nesterov71434f22012-09-30 21:12:44 +0200592 if (test_bit(UPROBE_COPY_INSN, &uprobe->flags))
Oleg Nesterov4710f05f2012-09-30 20:31:41 +0200593 goto out;
594
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200595 ret = copy_insn(uprobe, file);
596 if (ret)
597 goto out;
598
599 ret = -ENOTSUPP;
Oleg Nesterov803200e2013-11-09 17:58:54 +0100600 if (is_trap_insn((uprobe_opcode_t *)&uprobe->arch.insn))
Oleg Nesterovcb9a19f2012-09-30 20:11:45 +0200601 goto out;
602
603 ret = arch_uprobe_analyze_insn(&uprobe->arch, mm, vaddr);
604 if (ret)
605 goto out;
606
Andrea Parri0b58d902018-11-22 17:10:31 +0100607 smp_wmb(); /* pairs with the smp_rmb() in handle_swbp() */
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 Nesterov9f68f672012-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 Nesterov9f68f672012-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 Nesterov41ccba022014-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 Nesterov5ec850f2020-05-04 18:47:25 +0200885 /*
886 * This ensures that copy_from_page() and copy_to_page()
887 * can't cross page boundary.
888 */
889 if (!IS_ALIGNED(offset, UPROBE_SWBP_INSN_SIZE))
890 return -EINVAL;
891
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100892 retry:
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530893 uprobe = alloc_uprobe(inode, offset);
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100894 if (!uprobe)
895 return -ENOMEM;
896 /*
897 * We can race with uprobe_unregister()->delete_uprobe().
898 * Check uprobe_is_active() and retry if it is false.
899 */
900 down_write(&uprobe->register_rwsem);
901 ret = -EAGAIN;
902 if (likely(uprobe_is_active(uprobe))) {
Oleg Nesterov9a98e032012-11-23 20:15:17 +0100903 ret = __uprobe_register(uprobe, uc);
904 if (ret)
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100905 __uprobe_unregister(uprobe, uc);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530906 }
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100907 up_write(&uprobe->register_rwsem);
908 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530909
Oleg Nesterov66d06df2012-11-25 22:48:37 +0100910 if (unlikely(ret == -EAGAIN))
911 goto retry;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530912 return ret;
913}
Josh Stonee8440c12013-01-13 19:03:34 +0100914EXPORT_SYMBOL_GPL(uprobe_register);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530915
916/*
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100917 * uprobe_apply - unregister a already registered probe.
918 * @inode: the file in which the probe has to be removed.
919 * @offset: offset from the start of the file.
920 * @uc: consumer which wants to add more or remove some breakpoints
921 * @add: add or remove the breakpoints
922 */
923int uprobe_apply(struct inode *inode, loff_t offset,
924 struct uprobe_consumer *uc, bool add)
925{
926 struct uprobe *uprobe;
927 struct uprobe_consumer *con;
928 int ret = -ENOENT;
929
930 uprobe = find_uprobe(inode, offset);
Oleg Nesterov06d07132014-06-27 19:01:40 +0200931 if (WARN_ON(!uprobe))
Oleg Nesterovbdf86472013-02-03 19:21:12 +0100932 return ret;
933
934 down_write(&uprobe->register_rwsem);
935 for (con = uprobe->consumers; con && con != uc ; con = con->next)
936 ;
937 if (con)
938 ret = register_for_each_vma(uprobe, add ? uc : NULL);
939 up_write(&uprobe->register_rwsem);
940 put_uprobe(uprobe);
941
942 return ret;
943}
944
945/*
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100946 * uprobe_unregister - unregister a already registered probe.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530947 * @inode: the file in which the probe has to be removed.
948 * @offset: offset from the start of the file.
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530949 * @uc: identify which probe if multiple probes are colocated.
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530950 */
Srikar Dronamrajue3343e62012-03-12 14:55:30 +0530951void uprobe_unregister(struct inode *inode, loff_t offset, struct uprobe_consumer *uc)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530952{
Ingo Molnar7b2d81d2012-02-17 09:27:41 +0100953 struct uprobe *uprobe;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530954
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530955 uprobe = find_uprobe(inode, offset);
Oleg Nesterov06d07132014-06-27 19:01:40 +0200956 if (WARN_ON(!uprobe))
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530957 return;
958
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100959 down_write(&uprobe->register_rwsem);
Oleg Nesterov04aab9b2012-11-23 19:43:50 +0100960 __uprobe_unregister(uprobe, uc);
Oleg Nesterove591c8d2012-11-24 17:29:40 +0100961 up_write(&uprobe->register_rwsem);
Sasha Levinc91368c2012-12-20 14:11:30 -0500962 put_uprobe(uprobe);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530963}
Josh Stonee8440c12013-01-13 19:03:34 +0100964EXPORT_SYMBOL_GPL(uprobe_unregister);
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530965
Oleg Nesterovda1816b2012-12-29 17:49:11 +0100966static int unapply_uprobe(struct uprobe *uprobe, struct mm_struct *mm)
967{
968 struct vm_area_struct *vma;
969 int err = 0;
970
971 down_read(&mm->mmap_sem);
972 for (vma = mm->mmap; vma; vma = vma->vm_next) {
973 unsigned long vaddr;
974 loff_t offset;
975
976 if (!valid_vma(vma, false) ||
Oleg Nesterovf2817692013-03-17 18:54:44 +0100977 file_inode(vma->vm_file) != uprobe->inode)
Oleg Nesterovda1816b2012-12-29 17:49:11 +0100978 continue;
979
980 offset = (loff_t)vma->vm_pgoff << PAGE_SHIFT;
981 if (uprobe->offset < offset ||
982 uprobe->offset >= offset + vma->vm_end - vma->vm_start)
983 continue;
984
985 vaddr = offset_to_vaddr(vma, uprobe->offset);
986 err |= remove_breakpoint(uprobe, mm, vaddr);
987 }
988 up_read(&mm->mmap_sem);
989
990 return err;
991}
992
Oleg Nesterov891c3972012-07-29 20:22:40 +0200993static struct rb_node *
994find_node_in_range(struct inode *inode, loff_t min, loff_t max)
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530995{
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530996 struct rb_node *n = uprobes_tree.rb_node;
Srikar Dronamraju2b144492012-02-09 14:56:42 +0530997
998 while (n) {
Oleg Nesterov891c3972012-07-29 20:22:40 +0200999 struct uprobe *u = rb_entry(n, struct uprobe, rb_node);
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001000
Oleg Nesterov891c3972012-07-29 20:22:40 +02001001 if (inode < u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301002 n = n->rb_left;
Oleg Nesterov891c3972012-07-29 20:22:40 +02001003 } else if (inode > u->inode) {
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301004 n = n->rb_right;
Oleg Nesterov891c3972012-07-29 20:22:40 +02001005 } else {
1006 if (max < u->offset)
1007 n = n->rb_left;
1008 else if (min > u->offset)
1009 n = n->rb_right;
1010 else
1011 break;
1012 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301013 }
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001014
Oleg Nesterov891c3972012-07-29 20:22:40 +02001015 return n;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301016}
1017
1018/*
Oleg Nesterov891c3972012-07-29 20:22:40 +02001019 * For a given range in vma, build a list of probes that need to be inserted.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301020 */
Oleg Nesterov891c3972012-07-29 20:22:40 +02001021static void build_probe_list(struct inode *inode,
1022 struct vm_area_struct *vma,
1023 unsigned long start, unsigned long end,
1024 struct list_head *head)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301025{
Oleg Nesterov891c3972012-07-29 20:22:40 +02001026 loff_t min, max;
Oleg Nesterov891c3972012-07-29 20:22:40 +02001027 struct rb_node *n, *t;
1028 struct uprobe *u;
1029
1030 INIT_LIST_HEAD(head);
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001031 min = vaddr_to_offset(vma, start);
Oleg Nesterov891c3972012-07-29 20:22:40 +02001032 max = min + (end - start) - 1;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301033
Oleg Nesterov6f47caa2012-08-18 17:01:57 +02001034 spin_lock(&uprobes_treelock);
Oleg Nesterov891c3972012-07-29 20:22:40 +02001035 n = find_node_in_range(inode, min, max);
1036 if (n) {
1037 for (t = n; t; t = rb_prev(t)) {
1038 u = rb_entry(t, struct uprobe, rb_node);
1039 if (u->inode != inode || u->offset < min)
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 }
1044 for (t = n; (t = rb_next(t)); ) {
1045 u = rb_entry(t, struct uprobe, rb_node);
1046 if (u->inode != inode || u->offset > max)
1047 break;
1048 list_add(&u->pending_list, head);
Oleg Nesterovf2317222015-07-21 15:40:03 +02001049 get_uprobe(u);
Oleg Nesterov891c3972012-07-29 20:22:40 +02001050 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301051 }
Oleg Nesterov6f47caa2012-08-18 17:01:57 +02001052 spin_unlock(&uprobes_treelock);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301053}
1054
1055/*
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001056 * Called from mmap_region/vma_adjust with mm->mmap_sem acquired.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301057 *
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001058 * Currently we ignore all errors and always return 0, the callers
1059 * can't handle the failure anyway.
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301060 */
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001061int uprobe_mmap(struct vm_area_struct *vma)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301062{
1063 struct list_head tmp_list;
Oleg Nesterov665605a2012-07-29 20:22:29 +02001064 struct uprobe *uprobe, *u;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301065 struct inode *inode;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301066
Oleg Nesterov441f1eb2012-11-25 19:54:29 +01001067 if (no_uprobe_events() || !valid_vma(vma, true))
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001068 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301069
Oleg Nesterovf2817692013-03-17 18:54:44 +01001070 inode = file_inode(vma->vm_file);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301071 if (!inode)
Ingo Molnar7b2d81d2012-02-17 09:27:41 +01001072 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301073
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301074 mutex_lock(uprobes_mmap_hash(inode));
Oleg Nesterov891c3972012-07-29 20:22:40 +02001075 build_probe_list(inode, vma, vma->vm_start, vma->vm_end, &tmp_list);
Oleg Nesterov806a98b2012-12-27 18:21:11 +01001076 /*
1077 * We can race with uprobe_unregister(), this uprobe can be already
1078 * removed. But in this case filter_chain() must return false, all
1079 * consumers have gone away.
1080 */
Oleg Nesterov665605a2012-07-29 20:22:29 +02001081 list_for_each_entry_safe(uprobe, u, &tmp_list, pending_list) {
Oleg Nesterov806a98b2012-12-27 18:21:11 +01001082 if (!fatal_signal_pending(current) &&
Oleg Nesterov8a7f2fa2012-12-28 17:58:38 +01001083 filter_chain(uprobe, UPROBE_FILTER_MMAP, vma->vm_mm)) {
Oleg Nesterov57683f72012-07-29 20:22:47 +02001084 unsigned long vaddr = offset_to_vaddr(vma, uprobe->offset);
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001085 install_breakpoint(uprobe, vma->vm_mm, vma, vaddr);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301086 }
1087 put_uprobe(uprobe);
1088 }
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301089 mutex_unlock(uprobes_mmap_hash(inode));
1090
Oleg Nesterov5e5be712012-08-06 14:49:56 +02001091 return 0;
Srikar Dronamraju2b144492012-02-09 14:56:42 +05301092}
1093
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001094static bool
1095vma_has_uprobes(struct vm_area_struct *vma, unsigned long start, unsigned long end)
1096{
1097 loff_t min, max;
1098 struct inode *inode;
1099 struct rb_node *n;
1100
Oleg Nesterovf2817692013-03-17 18:54:44 +01001101 inode = file_inode(vma->vm_file);
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001102
1103 min = vaddr_to_offset(vma, start);
1104 max = min + (end - start) - 1;
1105
1106 spin_lock(&uprobes_treelock);
1107 n = find_node_in_range(inode, min, max);
1108 spin_unlock(&uprobes_treelock);
1109
1110 return !!n;
1111}
1112
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301113/*
1114 * Called in context of a munmap of a vma.
1115 */
Srikar Dronamrajucbc91f72012-04-11 16:05:27 +05301116void uprobe_munmap(struct vm_area_struct *vma, unsigned long start, unsigned long end)
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301117{
Oleg Nesterov441f1eb2012-11-25 19:54:29 +01001118 if (no_uprobe_events() || !valid_vma(vma, false))
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301119 return;
1120
Oleg Nesterov2fd611a2012-07-29 20:22:31 +02001121 if (!atomic_read(&vma->vm_mm->mm_users)) /* called by mmput() ? */
1122 return;
1123
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001124 if (!test_bit(MMF_HAS_UPROBES, &vma->vm_mm->flags) ||
1125 test_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags))
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001126 return;
1127
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001128 if (vma_has_uprobes(vma, start, end))
1129 set_bit(MMF_RECALC_UPROBES, &vma->vm_mm->flags);
Srikar Dronamraju682968e2012-03-30 23:56:46 +05301130}
1131
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301132/* Slot allocation for XOL */
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001133static int xol_add_vma(struct mm_struct *mm, struct xol_area *area)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301134{
Oleg Nesterov704bde32015-07-21 15:40:33 +02001135 struct vm_area_struct *vma;
1136 int ret;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301137
Michal Hocko598fdc12016-05-23 16:26:08 -07001138 if (down_write_killable(&mm->mmap_sem))
1139 return -EINTR;
1140
Oleg Nesterov704bde32015-07-21 15:40:33 +02001141 if (mm->uprobes_state.xol_area) {
1142 ret = -EALREADY;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301143 goto fail;
Oleg Nesterov704bde32015-07-21 15:40:33 +02001144 }
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301145
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001146 if (!area->vaddr) {
1147 /* Try to map as high as possible, this is only a hint. */
1148 area->vaddr = get_unmapped_area(NULL, TASK_SIZE - PAGE_SIZE,
1149 PAGE_SIZE, 0, 0);
1150 if (area->vaddr & ~PAGE_MASK) {
1151 ret = area->vaddr;
1152 goto fail;
1153 }
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301154 }
1155
Oleg Nesterov704bde32015-07-21 15:40:33 +02001156 vma = _install_special_mapping(mm, area->vaddr, PAGE_SIZE,
1157 VM_EXEC|VM_MAYEXEC|VM_DONTCOPY|VM_IO,
1158 &area->xol_mapping);
1159 if (IS_ERR(vma)) {
1160 ret = PTR_ERR(vma);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301161 goto fail;
Oleg Nesterov704bde32015-07-21 15:40:33 +02001162 }
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301163
Oleg Nesterov704bde32015-07-21 15:40:33 +02001164 ret = 0;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301165 smp_wmb(); /* pairs with get_xol_area() */
1166 mm->uprobes_state.xol_area = area;
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001167 fail:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301168 up_write(&mm->mmap_sem);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301169
1170 return ret;
1171}
1172
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001173static struct xol_area *__create_xol_area(unsigned long vaddr)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301174{
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001175 struct mm_struct *mm = current->mm;
Anton Arapove78aebf2013-04-03 18:00:32 +02001176 uprobe_opcode_t insn = UPROBE_SWBP_INSN;
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001177 struct xol_area *area;
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001178
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001179 area = kmalloc(sizeof(*area), GFP_KERNEL);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301180 if (unlikely(!area))
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001181 goto out;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301182
1183 area->bitmap = kzalloc(BITS_TO_LONGS(UINSNS_PER_PAGE) * sizeof(long), GFP_KERNEL);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301184 if (!area->bitmap)
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001185 goto free_area;
1186
Oleg Nesterov704bde32015-07-21 15:40:33 +02001187 area->xol_mapping.name = "[uprobes]";
Oleg Nesterov869ae762016-02-27 23:11:28 +01001188 area->xol_mapping.fault = NULL;
Oleg Nesterov704bde32015-07-21 15:40:33 +02001189 area->xol_mapping.pages = area->pages;
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001190 area->pages[0] = alloc_page(GFP_HIGHUSER);
1191 if (!area->pages[0])
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001192 goto free_bitmap;
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001193 area->pages[1] = NULL;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301194
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001195 area->vaddr = vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301196 init_waitqueue_head(&area->wq);
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001197 /* Reserve the 1st slot for get_trampoline_vaddr() */
1198 set_bit(0, area->bitmap);
1199 atomic_set(&area->slot_count, 1);
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001200 copy_to_page(area->pages[0], 0, &insn, UPROBE_SWBP_INSN_SIZE);
Anton Arapove78aebf2013-04-03 18:00:32 +02001201
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001202 if (!xol_add_vma(mm, area))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301203 return area;
1204
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001205 __free_page(area->pages[0]);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001206 free_bitmap:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301207 kfree(area->bitmap);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001208 free_area:
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301209 kfree(area);
Oleg Nesterovc8a82532012-12-30 17:40:39 +01001210 out:
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001211 return NULL;
1212}
1213
1214/*
1215 * get_xol_area - Allocate process's xol_area if necessary.
1216 * This area will be used for storing instructions for execution out of line.
1217 *
1218 * Returns the allocated area or NULL.
1219 */
1220static struct xol_area *get_xol_area(void)
1221{
1222 struct mm_struct *mm = current->mm;
1223 struct xol_area *area;
1224
1225 if (!mm->uprobes_state.xol_area)
Oleg Nesterovaf0d95a2013-10-13 21:18:38 +02001226 __create_xol_area(0);
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001227
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001228 area = mm->uprobes_state.xol_area;
Oleg Nesterov6441ec82013-10-13 21:18:35 +02001229 smp_read_barrier_depends(); /* pairs with wmb in xol_add_vma() */
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001230 return area;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301231}
1232
1233/*
1234 * uprobe_clear_state - Free the area allocated for slots.
1235 */
1236void uprobe_clear_state(struct mm_struct *mm)
1237{
1238 struct xol_area *area = mm->uprobes_state.xol_area;
1239
1240 if (!area)
1241 return;
1242
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001243 put_page(area->pages[0]);
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301244 kfree(area->bitmap);
1245 kfree(area);
1246}
1247
Oleg Nesterov32cdba12012-11-14 19:03:42 +01001248void uprobe_start_dup_mmap(void)
1249{
1250 percpu_down_read(&dup_mmap_sem);
1251}
1252
1253void uprobe_end_dup_mmap(void)
1254{
1255 percpu_up_read(&dup_mmap_sem);
1256}
1257
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001258void uprobe_dup_mmap(struct mm_struct *oldmm, struct mm_struct *newmm)
1259{
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001260 if (test_bit(MMF_HAS_UPROBES, &oldmm->flags)) {
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001261 set_bit(MMF_HAS_UPROBES, &newmm->flags);
Oleg Nesterov9f68f672012-08-19 16:15:09 +02001262 /* unconditionally, dup_mmap() skips VM_DONTCOPY vmas */
1263 set_bit(MMF_RECALC_UPROBES, &newmm->flags);
1264 }
Oleg Nesterovf8ac4ec2012-08-08 17:11:42 +02001265}
1266
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301267/*
1268 * - search for a free slot.
1269 */
1270static unsigned long xol_take_insn_slot(struct xol_area *area)
1271{
1272 unsigned long slot_addr;
1273 int slot_nr;
1274
1275 do {
1276 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE);
1277 if (slot_nr < UINSNS_PER_PAGE) {
1278 if (!test_and_set_bit(slot_nr, area->bitmap))
1279 break;
1280
1281 slot_nr = UINSNS_PER_PAGE;
1282 continue;
1283 }
1284 wait_event(area->wq, (atomic_read(&area->slot_count) < UINSNS_PER_PAGE));
1285 } while (slot_nr >= UINSNS_PER_PAGE);
1286
1287 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES);
1288 atomic_inc(&area->slot_count);
1289
1290 return slot_addr;
1291}
1292
1293/*
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001294 * xol_get_insn_slot - allocate a slot for xol.
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301295 * Returns the allocated slot address or 0.
1296 */
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001297static unsigned long xol_get_insn_slot(struct uprobe *uprobe)
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301298{
1299 struct xol_area *area;
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001300 unsigned long xol_vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301301
Oleg Nesterov9b545df2012-12-31 16:39:49 +01001302 area = get_xol_area();
1303 if (!area)
1304 return 0;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301305
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001306 xol_vaddr = xol_take_insn_slot(area);
1307 if (unlikely(!xol_vaddr))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301308 return 0;
1309
Oleg Nesterovf58bea22015-07-21 15:40:31 +02001310 arch_uprobe_copy_ixol(area->pages[0], xol_vaddr,
Victor Kamensky72e6ae22014-04-29 04:20:52 +01001311 &uprobe->arch.ixol, sizeof(uprobe->arch.ixol));
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301312
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001313 return xol_vaddr;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301314}
1315
1316/*
1317 * xol_free_insn_slot - If slot was earlier allocated by
1318 * @xol_get_insn_slot(), make the slot available for
1319 * subsequent requests.
1320 */
1321static void xol_free_insn_slot(struct task_struct *tsk)
1322{
1323 struct xol_area *area;
1324 unsigned long vma_end;
1325 unsigned long slot_addr;
1326
1327 if (!tsk->mm || !tsk->mm->uprobes_state.xol_area || !tsk->utask)
1328 return;
1329
1330 slot_addr = tsk->utask->xol_vaddr;
Oleg Nesterovaf4355e2012-12-31 18:37:11 +01001331 if (unlikely(!slot_addr))
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301332 return;
1333
1334 area = tsk->mm->uprobes_state.xol_area;
1335 vma_end = area->vaddr + PAGE_SIZE;
1336 if (area->vaddr <= slot_addr && slot_addr < vma_end) {
1337 unsigned long offset;
1338 int slot_nr;
1339
1340 offset = slot_addr - area->vaddr;
1341 slot_nr = offset / UPROBE_XOL_SLOT_BYTES;
1342 if (slot_nr >= UINSNS_PER_PAGE)
1343 return;
1344
1345 clear_bit(slot_nr, area->bitmap);
1346 atomic_dec(&area->slot_count);
Oleg Nesterov2a742ce2015-07-21 15:40:36 +02001347 smp_mb__after_atomic(); /* pairs with prepare_to_wait() */
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301348 if (waitqueue_active(&area->wq))
1349 wake_up(&area->wq);
1350
1351 tsk->utask->xol_vaddr = 0;
1352 }
1353}
1354
Victor Kamensky72e6ae22014-04-29 04:20:52 +01001355void __weak arch_uprobe_copy_ixol(struct page *page, unsigned long vaddr,
1356 void *src, unsigned long len)
1357{
1358 /* Initialize the slot */
1359 copy_to_page(page, vaddr, src, len);
1360
1361 /*
1362 * We probably need flush_icache_user_range() but it needs vma.
1363 * This should work on most of architectures by default. If
1364 * architecture needs to do something different it can define
1365 * its own version of the function.
1366 */
1367 flush_dcache_page(page);
1368}
1369
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301370/**
1371 * uprobe_get_swbp_addr - compute address of swbp given post-swbp regs
1372 * @regs: Reflects the saved state of the task after it has hit a breakpoint
1373 * instruction.
1374 * Return the address of the breakpoint instruction.
1375 */
1376unsigned long __weak uprobe_get_swbp_addr(struct pt_regs *regs)
1377{
1378 return instruction_pointer(regs) - UPROBE_SWBP_INSN_SIZE;
1379}
1380
Oleg Nesterovb02ef202014-05-12 18:24:45 +02001381unsigned long uprobe_get_trap_addr(struct pt_regs *regs)
1382{
1383 struct uprobe_task *utask = current->utask;
1384
1385 if (unlikely(utask && utask->active_uprobe))
1386 return utask->vaddr;
1387
1388 return instruction_pointer(regs);
1389}
1390
Oleg Nesterov2bb5e842015-07-21 15:40:06 +02001391static struct return_instance *free_ret_instance(struct return_instance *ri)
1392{
1393 struct return_instance *next = ri->next;
1394 put_uprobe(ri->uprobe);
1395 kfree(ri);
1396 return next;
1397}
1398
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301399/*
1400 * Called with no locks held.
1401 * Called in context of a exiting or a exec-ing thread.
1402 */
1403void uprobe_free_utask(struct task_struct *t)
1404{
1405 struct uprobe_task *utask = t->utask;
Oleg Nesterov2bb5e842015-07-21 15:40:06 +02001406 struct return_instance *ri;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301407
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301408 if (!utask)
1409 return;
1410
1411 if (utask->active_uprobe)
1412 put_uprobe(utask->active_uprobe);
1413
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001414 ri = utask->return_instances;
Oleg Nesterov2bb5e842015-07-21 15:40:06 +02001415 while (ri)
1416 ri = free_ret_instance(ri);
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001417
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301418 xol_free_insn_slot(t);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301419 kfree(utask);
1420 t->utask = NULL;
1421}
1422
1423/*
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001424 * Allocate a uprobe_task object for the task if if necessary.
1425 * Called when the thread hits a breakpoint.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301426 *
1427 * Returns:
1428 * - pointer to new uprobe_task on success
1429 * - NULL otherwise
1430 */
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001431static struct uprobe_task *get_utask(void)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301432{
Oleg Nesterov5a2df662012-12-31 17:03:32 +01001433 if (!current->utask)
1434 current->utask = kzalloc(sizeof(struct uprobe_task), GFP_KERNEL);
1435 return current->utask;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301436}
1437
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001438static int dup_utask(struct task_struct *t, struct uprobe_task *o_utask)
1439{
1440 struct uprobe_task *n_utask;
1441 struct return_instance **p, *o, *n;
1442
1443 n_utask = kzalloc(sizeof(struct uprobe_task), GFP_KERNEL);
1444 if (!n_utask)
1445 return -ENOMEM;
1446 t->utask = n_utask;
1447
1448 p = &n_utask->return_instances;
1449 for (o = o_utask->return_instances; o; o = o->next) {
1450 n = kmalloc(sizeof(struct return_instance), GFP_KERNEL);
1451 if (!n)
1452 return -ENOMEM;
1453
1454 *n = *o;
Oleg Nesterovf2317222015-07-21 15:40:03 +02001455 get_uprobe(n->uprobe);
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001456 n->next = NULL;
1457
1458 *p = n;
1459 p = &n->next;
1460 n_utask->depth++;
1461 }
1462
1463 return 0;
1464}
1465
1466static void uprobe_warn(struct task_struct *t, const char *msg)
1467{
1468 pr_warn("uprobe: %s:%d failed to %s\n",
1469 current->comm, current->pid, msg);
1470}
1471
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001472static void dup_xol_work(struct callback_head *work)
1473{
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001474 if (current->flags & PF_EXITING)
1475 return;
1476
Michal Hocko598fdc12016-05-23 16:26:08 -07001477 if (!__create_xol_area(current->utask->dup_xol_addr) &&
1478 !fatal_signal_pending(current))
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001479 uprobe_warn(current, "dup xol area");
1480}
1481
Anton Arapove78aebf2013-04-03 18:00:32 +02001482/*
Oleg Nesterovb68e0742013-10-13 21:18:31 +02001483 * Called in context of a new clone/fork from copy_process.
1484 */
Oleg Nesterov3ab67962013-10-16 19:39:37 +02001485void uprobe_copy_process(struct task_struct *t, unsigned long flags)
Oleg Nesterovb68e0742013-10-13 21:18:31 +02001486{
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001487 struct uprobe_task *utask = current->utask;
1488 struct mm_struct *mm = current->mm;
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001489 struct xol_area *area;
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001490
Oleg Nesterovb68e0742013-10-13 21:18:31 +02001491 t->utask = NULL;
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001492
Oleg Nesterov3ab67962013-10-16 19:39:37 +02001493 if (!utask || !utask->return_instances)
1494 return;
1495
1496 if (mm == t->mm && !(flags & CLONE_VFORK))
Oleg Nesterov248d3a72013-10-13 21:18:41 +02001497 return;
1498
1499 if (dup_utask(t, utask))
1500 return uprobe_warn(t, "dup ret instances");
Oleg Nesterovaa59c532013-10-13 21:18:44 +02001501
1502 /* The task can fork() after dup_xol_work() fails */
1503 area = mm->uprobes_state.xol_area;
1504 if (!area)
1505 return uprobe_warn(t, "dup xol area");
1506
Oleg Nesterov3ab67962013-10-16 19:39:37 +02001507 if (mm == t->mm)
1508 return;
1509
Oleg Nesterov32473432013-11-08 18:52:21 +01001510 t->utask->dup_xol_addr = area->vaddr;
1511 init_task_work(&t->utask->dup_xol_work, dup_xol_work);
1512 task_work_add(t, &t->utask->dup_xol_work, true);
Oleg Nesterovb68e0742013-10-13 21:18:31 +02001513}
1514
1515/*
Anton Arapove78aebf2013-04-03 18:00:32 +02001516 * Current area->vaddr notion assume the trampoline address is always
1517 * equal area->vaddr.
1518 *
1519 * Returns -1 in case the xol_area is not allocated.
1520 */
1521static unsigned long get_trampoline_vaddr(void)
1522{
1523 struct xol_area *area;
1524 unsigned long trampoline_vaddr = -1;
1525
1526 area = current->mm->uprobes_state.xol_area;
1527 smp_read_barrier_depends();
1528 if (area)
1529 trampoline_vaddr = area->vaddr;
1530
1531 return trampoline_vaddr;
1532}
1533
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001534static void cleanup_return_instances(struct uprobe_task *utask, bool chained,
1535 struct pt_regs *regs)
Oleg Nesterova5b7e1a2015-07-21 15:40:23 +02001536{
1537 struct return_instance *ri = utask->return_instances;
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001538 enum rp_check ctx = chained ? RP_CHECK_CHAIN_CALL : RP_CHECK_CALL;
Oleg Nesterov86dcb702015-07-21 15:40:26 +02001539
1540 while (ri && !arch_uretprobe_is_alive(ri, ctx, regs)) {
Oleg Nesterova5b7e1a2015-07-21 15:40:23 +02001541 ri = free_ret_instance(ri);
1542 utask->depth--;
1543 }
1544 utask->return_instances = ri;
1545}
1546
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001547static void prepare_uretprobe(struct uprobe *uprobe, struct pt_regs *regs)
1548{
1549 struct return_instance *ri;
1550 struct uprobe_task *utask;
1551 unsigned long orig_ret_vaddr, trampoline_vaddr;
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001552 bool chained;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001553
1554 if (!get_xol_area())
1555 return;
1556
1557 utask = get_utask();
1558 if (!utask)
1559 return;
1560
Anton Arapovded49c52013-04-03 18:00:37 +02001561 if (utask->depth >= MAX_URETPROBE_DEPTH) {
1562 printk_ratelimited(KERN_INFO "uprobe: omit uretprobe due to"
1563 " nestedness limit pid/tgid=%d/%d\n",
1564 current->pid, current->tgid);
1565 return;
1566 }
1567
Oleg Nesterov6c58d0e2015-07-21 15:40:10 +02001568 ri = kmalloc(sizeof(struct return_instance), GFP_KERNEL);
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001569 if (!ri)
Oleg Nesterov6c58d0e2015-07-21 15:40:10 +02001570 return;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001571
1572 trampoline_vaddr = get_trampoline_vaddr();
1573 orig_ret_vaddr = arch_uretprobe_hijack_return_addr(trampoline_vaddr, regs);
1574 if (orig_ret_vaddr == -1)
1575 goto fail;
1576
Oleg Nesterova5b7e1a2015-07-21 15:40:23 +02001577 /* drop the entries invalidated by longjmp() */
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001578 chained = (orig_ret_vaddr == trampoline_vaddr);
1579 cleanup_return_instances(utask, chained, regs);
Oleg Nesterova5b7e1a2015-07-21 15:40:23 +02001580
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001581 /*
1582 * We don't want to keep trampoline address in stack, rather keep the
1583 * original return address of first caller thru all the consequent
1584 * instances. This also makes breakpoint unwrapping easier.
1585 */
Oleg Nesterovdb087ef2015-07-21 15:40:28 +02001586 if (chained) {
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001587 if (!utask->return_instances) {
1588 /*
1589 * This situation is not possible. Likely we have an
1590 * attack from user-space.
1591 */
Oleg Nesterov6c58d0e2015-07-21 15:40:10 +02001592 uprobe_warn(current, "handle tail call");
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001593 goto fail;
1594 }
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001595 orig_ret_vaddr = utask->return_instances->orig_ret_vaddr;
1596 }
1597
Oleg Nesterovf2317222015-07-21 15:40:03 +02001598 ri->uprobe = get_uprobe(uprobe);
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001599 ri->func = instruction_pointer(regs);
Oleg Nesterov7b868e42015-07-21 15:40:18 +02001600 ri->stack = user_stack_pointer(regs);
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001601 ri->orig_ret_vaddr = orig_ret_vaddr;
1602 ri->chained = chained;
1603
Anton Arapovded49c52013-04-03 18:00:37 +02001604 utask->depth++;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001605 ri->next = utask->return_instances;
1606 utask->return_instances = ri;
1607
1608 return;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001609 fail:
1610 kfree(ri);
1611}
1612
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301613/* Prepare to single-step probed instruction out of line. */
1614static int
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001615pre_ssout(struct uprobe *uprobe, struct pt_regs *regs, unsigned long bp_vaddr)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301616{
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001617 struct uprobe_task *utask;
1618 unsigned long xol_vaddr;
Oleg Nesterovaba51022012-12-31 18:12:48 +01001619 int err;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301620
Oleg Nesterov608e7422012-12-31 18:20:42 +01001621 utask = get_utask();
1622 if (!utask)
1623 return -ENOMEM;
Oleg Nesterova6cb3f62012-12-31 18:00:06 +01001624
1625 xol_vaddr = xol_get_insn_slot(uprobe);
1626 if (!xol_vaddr)
1627 return -ENOMEM;
1628
1629 utask->xol_vaddr = xol_vaddr;
1630 utask->vaddr = bp_vaddr;
1631
Oleg Nesterovaba51022012-12-31 18:12:48 +01001632 err = arch_uprobe_pre_xol(&uprobe->arch, regs);
1633 if (unlikely(err)) {
1634 xol_free_insn_slot(current);
1635 return err;
1636 }
1637
Oleg Nesterov608e7422012-12-31 18:20:42 +01001638 utask->active_uprobe = uprobe;
1639 utask->state = UTASK_SSTEP;
Oleg Nesterovaba51022012-12-31 18:12:48 +01001640 return 0;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301641}
1642
1643/*
1644 * If we are singlestepping, then ensure this thread is not connected to
1645 * non-fatal signals until completion of singlestep. When xol insn itself
1646 * triggers the signal, restart the original insn even if the task is
1647 * already SIGKILL'ed (since coredump should report the correct ip). This
1648 * is even more important if the task has a handler for SIGSEGV/etc, The
1649 * _same_ instruction should be repeated again after return from the signal
1650 * handler, and SSTEP can never finish in this case.
1651 */
1652bool uprobe_deny_signal(void)
1653{
1654 struct task_struct *t = current;
1655 struct uprobe_task *utask = t->utask;
1656
1657 if (likely(!utask || !utask->active_uprobe))
1658 return false;
1659
1660 WARN_ON_ONCE(utask->state != UTASK_SSTEP);
1661
1662 if (signal_pending(t)) {
1663 spin_lock_irq(&t->sighand->siglock);
1664 clear_tsk_thread_flag(t, TIF_SIGPENDING);
1665 spin_unlock_irq(&t->sighand->siglock);
1666
1667 if (__fatal_signal_pending(t) || arch_uprobe_xol_was_trapped(t)) {
1668 utask->state = UTASK_SSTEP_TRAPPED;
1669 set_tsk_thread_flag(t, TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301670 }
1671 }
1672
1673 return true;
1674}
1675
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001676static void mmf_recalc_uprobes(struct mm_struct *mm)
1677{
1678 struct vm_area_struct *vma;
1679
1680 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1681 if (!valid_vma(vma, false))
1682 continue;
1683 /*
1684 * This is not strictly accurate, we can race with
1685 * uprobe_unregister() and see the already removed
1686 * uprobe if delete_uprobe() was not yet called.
Oleg Nesterov63633cb2012-11-22 18:30:15 +01001687 * Or this uprobe can be filtered out.
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001688 */
1689 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end))
1690 return;
1691 }
1692
1693 clear_bit(MMF_HAS_UPROBES, &mm->flags);
1694}
1695
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301696static int is_trap_at_addr(struct mm_struct *mm, unsigned long vaddr)
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001697{
1698 struct page *page;
1699 uprobe_opcode_t opcode;
1700 int result;
1701
Oleg Nesterov5ec850f2020-05-04 18:47:25 +02001702 if (WARN_ON_ONCE(!IS_ALIGNED(vaddr, UPROBE_SWBP_INSN_SIZE)))
1703 return -EINVAL;
1704
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001705 pagefault_disable();
Linus Torvaldsbd28b142016-05-22 17:21:27 -07001706 result = __get_user(opcode, (uprobe_opcode_t __user *)vaddr);
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001707 pagefault_enable();
1708
1709 if (likely(result == 0))
1710 goto out;
1711
Dave Hansen1e987792016-02-12 13:01:54 -08001712 /*
1713 * The NULL 'tsk' here ensures that any faults that occur here
1714 * will not be accounted to the task. 'mm' *is* current->mm,
1715 * but we treat this as a 'remote' access since it is
1716 * essentially a kernel access to the memory.
1717 */
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +01001718 result = get_user_pages_remote(NULL, mm, vaddr, 1, FOLL_FORCE, &page,
1719 NULL);
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001720 if (result < 0)
1721 return result;
1722
Oleg Nesterovab0d8052013-03-24 18:24:37 +01001723 copy_from_page(page, vaddr, &opcode, UPROBE_SWBP_INSN_SIZE);
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001724 put_page(page);
1725 out:
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301726 /* This needs to return true for any variant of the trap insn */
1727 return is_trap_insn(&opcode);
Oleg Nesterovec75fba2012-09-23 21:55:19 +02001728}
1729
Oleg Nesterovd790d342012-05-29 21:29:14 +02001730static struct uprobe *find_active_uprobe(unsigned long bp_vaddr, int *is_swbp)
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001731{
1732 struct mm_struct *mm = current->mm;
1733 struct uprobe *uprobe = NULL;
1734 struct vm_area_struct *vma;
1735
1736 down_read(&mm->mmap_sem);
1737 vma = find_vma(mm, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001738 if (vma && vma->vm_start <= bp_vaddr) {
1739 if (valid_vma(vma, false)) {
Oleg Nesterovf2817692013-03-17 18:54:44 +01001740 struct inode *inode = file_inode(vma->vm_file);
Oleg Nesterovcb113b42012-07-29 20:22:42 +02001741 loff_t offset = vaddr_to_offset(vma, bp_vaddr);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001742
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001743 uprobe = find_uprobe(inode, offset);
1744 }
Oleg Nesterovd790d342012-05-29 21:29:14 +02001745
1746 if (!uprobe)
Ananth N Mavinakayanahalli0908ad62013-03-22 20:46:27 +05301747 *is_swbp = is_trap_at_addr(mm, bp_vaddr);
Oleg Nesterovd790d342012-05-29 21:29:14 +02001748 } else {
1749 *is_swbp = -EFAULT;
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001750 }
Oleg Nesterov499a4f32012-08-19 17:41:34 +02001751
1752 if (!uprobe && test_and_clear_bit(MMF_RECALC_UPROBES, &mm->flags))
1753 mmf_recalc_uprobes(mm);
Oleg Nesterov3a9ea052012-05-29 21:28:57 +02001754 up_read(&mm->mmap_sem);
1755
1756 return uprobe;
1757}
1758
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001759static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
1760{
1761 struct uprobe_consumer *uc;
1762 int remove = UPROBE_HANDLER_REMOVE;
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001763 bool need_prep = false; /* prepare return uprobe, when needed */
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001764
1765 down_read(&uprobe->register_rwsem);
1766 for (uc = uprobe->consumers; uc; uc = uc->next) {
Anton Arapovea024872013-04-03 18:00:31 +02001767 int rc = 0;
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001768
Anton Arapovea024872013-04-03 18:00:31 +02001769 if (uc->handler) {
1770 rc = uc->handler(uc, regs);
1771 WARN(rc & ~UPROBE_HANDLER_MASK,
1772 "bad rc=0x%x from %pf()\n", rc, uc->handler);
1773 }
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001774
1775 if (uc->ret_handler)
1776 need_prep = true;
1777
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001778 remove &= rc;
1779 }
1780
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02001781 if (need_prep && !remove)
1782 prepare_uretprobe(uprobe, regs); /* put bp at return */
1783
Oleg Nesterovda1816b2012-12-29 17:49:11 +01001784 if (remove && uprobe->consumers) {
1785 WARN_ON(!uprobe_is_active(uprobe));
1786 unapply_uprobe(uprobe, current->mm);
1787 }
1788 up_read(&uprobe->register_rwsem);
1789}
1790
Anton Arapovfec88982013-04-03 18:00:36 +02001791static void
1792handle_uretprobe_chain(struct return_instance *ri, struct pt_regs *regs)
1793{
1794 struct uprobe *uprobe = ri->uprobe;
1795 struct uprobe_consumer *uc;
1796
1797 down_read(&uprobe->register_rwsem);
1798 for (uc = uprobe->consumers; uc; uc = uc->next) {
1799 if (uc->ret_handler)
1800 uc->ret_handler(uc, ri->func, regs);
1801 }
1802 up_read(&uprobe->register_rwsem);
1803}
1804
Oleg Nesterova83cfeb2015-07-21 15:40:13 +02001805static struct return_instance *find_next_ret_chain(struct return_instance *ri)
1806{
1807 bool chained;
1808
1809 do {
1810 chained = ri->chained;
1811 ri = ri->next; /* can't be NULL if chained */
1812 } while (chained);
1813
1814 return ri;
1815}
1816
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001817static void handle_trampoline(struct pt_regs *regs)
Anton Arapovfec88982013-04-03 18:00:36 +02001818{
1819 struct uprobe_task *utask;
Oleg Nesterova83cfeb2015-07-21 15:40:13 +02001820 struct return_instance *ri, *next;
Oleg Nesterov5eeb50d2015-07-21 15:40:21 +02001821 bool valid;
Anton Arapovfec88982013-04-03 18:00:36 +02001822
1823 utask = current->utask;
1824 if (!utask)
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001825 goto sigill;
Anton Arapovfec88982013-04-03 18:00:36 +02001826
1827 ri = utask->return_instances;
1828 if (!ri)
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001829 goto sigill;
Anton Arapovfec88982013-04-03 18:00:36 +02001830
Oleg Nesterova83cfeb2015-07-21 15:40:13 +02001831 do {
Oleg Nesterov5eeb50d2015-07-21 15:40:21 +02001832 /*
1833 * We should throw out the frames invalidated by longjmp().
1834 * If this chain is valid, then the next one should be alive
1835 * or NULL; the latter case means that nobody but ri->func
1836 * could hit this trampoline on return. TODO: sigaltstack().
1837 */
1838 next = find_next_ret_chain(ri);
Oleg Nesterov86dcb702015-07-21 15:40:26 +02001839 valid = !next || arch_uretprobe_is_alive(next, RP_CHECK_RET, regs);
Oleg Nesterov5eeb50d2015-07-21 15:40:21 +02001840
1841 instruction_pointer_set(regs, ri->orig_ret_vaddr);
1842 do {
1843 if (valid)
1844 handle_uretprobe_chain(ri, regs);
1845 ri = free_ret_instance(ri);
1846 utask->depth--;
1847 } while (ri != next);
1848 } while (!valid);
Anton Arapovfec88982013-04-03 18:00:36 +02001849
1850 utask->return_instances = ri;
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001851 return;
Anton Arapovfec88982013-04-03 18:00:36 +02001852
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001853 sigill:
1854 uprobe_warn(current, "handle uretprobe, sending SIGILL.");
Eric W. Biedermandbe380a2018-07-19 20:33:53 -05001855 force_sig(SIGILL, current);
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001856
Anton Arapovfec88982013-04-03 18:00:36 +02001857}
1858
David A. Long6fe50a22014-02-03 14:25:49 -05001859bool __weak arch_uprobe_ignore(struct arch_uprobe *aup, struct pt_regs *regs)
1860{
1861 return false;
1862}
1863
Oleg Nesterov86dcb702015-07-21 15:40:26 +02001864bool __weak arch_uretprobe_is_alive(struct return_instance *ret, enum rp_check ctx,
1865 struct pt_regs *regs)
Oleg Nesterov97da8972015-07-21 15:40:16 +02001866{
1867 return true;
1868}
1869
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301870/*
1871 * Run handler and ask thread to singlestep.
1872 * Ensure all non-fatal signals cannot interrupt thread while it singlesteps.
1873 */
1874static void handle_swbp(struct pt_regs *regs)
1875{
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301876 struct uprobe *uprobe;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301877 unsigned long bp_vaddr;
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001878 int uninitialized_var(is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301879
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301880 bp_vaddr = uprobe_get_swbp_addr(regs);
Oleg Nesterov0b5256c2015-07-21 15:40:08 +02001881 if (bp_vaddr == get_trampoline_vaddr())
1882 return handle_trampoline(regs);
Anton Arapovfec88982013-04-03 18:00:36 +02001883
1884 uprobe = find_active_uprobe(bp_vaddr, &is_swbp);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301885 if (!uprobe) {
Oleg Nesterov56bb4cf2012-05-29 21:29:47 +02001886 if (is_swbp > 0) {
1887 /* No matching uprobe; signal SIGTRAP. */
1888 send_sig(SIGTRAP, current, 0);
1889 } else {
1890 /*
1891 * Either we raced with uprobe_unregister() or we can't
1892 * access this memory. The latter is only possible if
1893 * another thread plays with our ->mm. In both cases
1894 * we can simply restart. If this vma was unmapped we
1895 * can pretend this insn was not executed yet and get
1896 * the (correct) SIGSEGV after restart.
1897 */
1898 instruction_pointer_set(regs, bp_vaddr);
1899 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301900 return;
1901 }
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001902
1903 /* change it in advance for ->handler() and restart */
1904 instruction_pointer_set(regs, bp_vaddr);
1905
Oleg Nesterov142b18d2012-09-29 21:56:57 +02001906 /*
1907 * TODO: move copy_insn/etc into _register and remove this hack.
1908 * After we hit the bp, _unregister + _register can install the
1909 * new and not-yet-analyzed uprobe at the same address, restart.
1910 */
Oleg Nesterov71434f22012-09-30 21:12:44 +02001911 if (unlikely(!test_bit(UPROBE_COPY_INSN, &uprobe->flags)))
Oleg Nesterov74e59df2012-12-30 15:54:08 +01001912 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301913
Andrea Parri0b58d902018-11-22 17:10:31 +01001914 /*
1915 * Pairs with the smp_wmb() in prepare_uprobe().
1916 *
1917 * Guarantees that if we see the UPROBE_COPY_INSN bit set, then
1918 * we must also see the stores to &uprobe->arch performed by the
1919 * prepare_uprobe() call.
1920 */
1921 smp_rmb();
1922
Oleg Nesterov72fd2932013-11-26 09:35:25 +09001923 /* Tracing handlers use ->utask to communicate with fetch methods */
1924 if (!get_utask())
1925 goto out;
1926
David A. Long6fe50a22014-02-03 14:25:49 -05001927 if (arch_uprobe_ignore(&uprobe->arch, regs))
1928 goto out;
1929
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301930 handler_chain(uprobe, regs);
David A. Long6fe50a22014-02-03 14:25:49 -05001931
Oleg Nesterov8a6b1732014-03-30 18:56:22 +02001932 if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
Oleg Nesterov0578a972012-09-14 18:31:23 +02001933 goto out;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301934
Oleg Nesterov608e7422012-12-31 18:20:42 +01001935 if (!pre_ssout(uprobe, regs, bp_vaddr))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301936 return;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301937
Oleg Nesterov8a6b1732014-03-30 18:56:22 +02001938 /* arch_uprobe_skip_sstep() succeeded, or restart if can't singlestep */
Oleg Nesterov0578a972012-09-14 18:31:23 +02001939out:
Sebastian Andrzej Siewior8bd87442012-08-07 18:12:30 +02001940 put_uprobe(uprobe);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301941}
1942
1943/*
1944 * Perform required fix-ups and disable singlestep.
1945 * Allow pending signals to take effect.
1946 */
1947static void handle_singlestep(struct uprobe_task *utask, struct pt_regs *regs)
1948{
1949 struct uprobe *uprobe;
Oleg Nesterov014940b2014-04-03 20:20:10 +02001950 int err = 0;
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301951
1952 uprobe = utask->active_uprobe;
1953 if (utask->state == UTASK_SSTEP_ACK)
Oleg Nesterov014940b2014-04-03 20:20:10 +02001954 err = arch_uprobe_post_xol(&uprobe->arch, regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301955 else if (utask->state == UTASK_SSTEP_TRAPPED)
1956 arch_uprobe_abort_xol(&uprobe->arch, regs);
1957 else
1958 WARN_ON_ONCE(1);
1959
1960 put_uprobe(uprobe);
1961 utask->active_uprobe = NULL;
1962 utask->state = UTASK_RUNNING;
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +05301963 xol_free_insn_slot(current);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301964
1965 spin_lock_irq(&current->sighand->siglock);
1966 recalc_sigpending(); /* see uprobe_deny_signal() */
1967 spin_unlock_irq(&current->sighand->siglock);
Oleg Nesterov014940b2014-04-03 20:20:10 +02001968
1969 if (unlikely(err)) {
1970 uprobe_warn(current, "execute the probed insn, sending SIGILL.");
Eric W. Biedermandbe380a2018-07-19 20:33:53 -05001971 force_sig(SIGILL, current);
Oleg Nesterov014940b2014-04-03 20:20:10 +02001972 }
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301973}
1974
1975/*
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001976 * On breakpoint hit, breakpoint notifier sets the TIF_UPROBE flag and
1977 * allows the thread to return from interrupt. After that handle_swbp()
1978 * sets utask->active_uprobe.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301979 *
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001980 * On singlestep exception, singlestep notifier sets the TIF_UPROBE flag
1981 * and allows the thread to return from interrupt.
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301982 *
1983 * While returning to userspace, thread notices the TIF_UPROBE flag and calls
1984 * uprobe_notify_resume().
1985 */
1986void uprobe_notify_resume(struct pt_regs *regs)
1987{
1988 struct uprobe_task *utask;
1989
Oleg Nesterovdb023ea2012-09-14 19:05:46 +02001990 clear_thread_flag(TIF_UPROBE);
1991
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301992 utask = current->utask;
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001993 if (utask && utask->active_uprobe)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301994 handle_singlestep(utask, regs);
Oleg Nesterov1b08e9072012-09-14 18:52:10 +02001995 else
1996 handle_swbp(regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05301997}
1998
1999/*
2000 * uprobe_pre_sstep_notifier gets called from interrupt context as part of
2001 * notifier mechanism. Set TIF_UPROBE flag and indicate breakpoint hit.
2002 */
2003int uprobe_pre_sstep_notifier(struct pt_regs *regs)
2004{
Anton Arapov0dfd0eb2013-04-03 18:00:35 +02002005 if (!current->mm)
2006 return 0;
2007
2008 if (!test_bit(MMF_HAS_UPROBES, &current->mm->flags) &&
2009 (!current->utask || !current->utask->return_instances))
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05302010 return 0;
2011
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05302012 set_thread_flag(TIF_UPROBE);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05302013 return 1;
2014}
2015
2016/*
2017 * uprobe_post_sstep_notifier gets called in interrupt context as part of notifier
2018 * mechanism. Set TIF_UPROBE flag and indicate completion of singlestep.
2019 */
2020int uprobe_post_sstep_notifier(struct pt_regs *regs)
2021{
2022 struct uprobe_task *utask = current->utask;
2023
2024 if (!current->mm || !utask || !utask->active_uprobe)
2025 /* task is currently not uprobed */
2026 return 0;
2027
2028 utask->state = UTASK_SSTEP_ACK;
2029 set_thread_flag(TIF_UPROBE);
2030 return 1;
2031}
2032
2033static struct notifier_block uprobe_exception_nb = {
2034 .notifier_call = arch_uprobe_exception_notify,
2035 .priority = INT_MAX-1, /* notified after kprobes, kgdb */
2036};
2037
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302038static int __init init_uprobes(void)
2039{
2040 int i;
2041
Oleg Nesterov66d06df2012-11-25 22:48:37 +01002042 for (i = 0; i < UPROBES_HASH_SZ; i++)
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302043 mutex_init(&uprobes_mmap_mutex[i]);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05302044
Oleg Nesterov32cdba12012-11-14 19:03:42 +01002045 if (percpu_init_rwsem(&dup_mmap_sem))
2046 return -ENOMEM;
2047
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +05302048 return register_die_notifier(&uprobe_exception_nb);
Srikar Dronamraju2b144492012-02-09 14:56:42 +05302049}
Oleg Nesterov736e89d2013-10-31 19:28:22 +01002050__initcall(init_uprobes);