kprobes.h 10.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
#ifndef _LINUX_KPROBES_H
#define _LINUX_KPROBES_H
/*
 *  Kernel Probes (KProbes)
 *  include/linux/kprobes.h
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 * Copyright (C) IBM Corporation, 2002, 2004
 *
 * 2002-Oct	Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel
 *		Probes initial implementation ( includes suggestions from
 *		Rusty Russell).
 * 2004-July	Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes
 *		interface to access function arguments.
28 29 30
 * 2005-May	Hien Nguyen <hien@us.ibm.com> and Jim Keniston
 *		<jkenisto@us.ibm.com>  and Prasanna S Panchamukhi
 *		<prasanna@in.ibm.com> added function-return probes.
L
Linus Torvalds 已提交
31
 */
32
#include <linux/linkage.h>
L
Linus Torvalds 已提交
33 34 35
#include <linux/list.h>
#include <linux/notifier.h>
#include <linux/smp.h>
36
#include <linux/percpu.h>
37 38
#include <linux/spinlock.h>
#include <linux/rcupdate.h>
I
Ingo Molnar 已提交
39
#include <linux/mutex.h>
40

41
#ifdef CONFIG_KPROBES
L
Linus Torvalds 已提交
42 43
#include <asm/kprobes.h>

44 45 46 47 48 49
/* kprobe_status settings */
#define KPROBE_HIT_ACTIVE	0x00000001
#define KPROBE_HIT_SS		0x00000002
#define KPROBE_REENTER		0x00000004
#define KPROBE_HIT_SSDONE	0x00000008

50
/* Attach to insert probes on any functions which should be ignored*/
51
#define __kprobes	__attribute__((__section__(".kprobes.text"))) notrace
52 53 54 55 56 57 58
#else /* CONFIG_KPROBES */
typedef int kprobe_opcode_t;
struct arch_specific_insn {
	int dummy;
};
#define __kprobes	notrace
#endif /* CONFIG_KPROBES */
59

L
Linus Torvalds 已提交
60 61
struct kprobe;
struct pt_regs;
62 63
struct kretprobe;
struct kretprobe_instance;
L
Linus Torvalds 已提交
64 65 66 67 68 69
typedef int (*kprobe_pre_handler_t) (struct kprobe *, struct pt_regs *);
typedef int (*kprobe_break_handler_t) (struct kprobe *, struct pt_regs *);
typedef void (*kprobe_post_handler_t) (struct kprobe *, struct pt_regs *,
				       unsigned long flags);
typedef int (*kprobe_fault_handler_t) (struct kprobe *, struct pt_regs *,
				       int trapnr);
70 71 72
typedef int (*kretprobe_handler_t) (struct kretprobe_instance *,
				    struct pt_regs *);

L
Linus Torvalds 已提交
73 74 75
struct kprobe {
	struct hlist_node hlist;

76 77 78
	/* list of kprobes for multi-handler support */
	struct list_head list;

79 80 81
	/*count the number of times this probe was temporarily disarmed */
	unsigned long nmissed;

L
Linus Torvalds 已提交
82 83 84
	/* location of the probe point */
	kprobe_opcode_t *addr;

85
	/* Allow user to indicate symbol name of the probe point */
86
	const char *symbol_name;
87 88 89 90

	/* Offset into the symbol */
	unsigned int offset;

L
Linus Torvalds 已提交
91 92 93 94 95 96
	/* Called before addr is executed. */
	kprobe_pre_handler_t pre_handler;

	/* Called after addr is executed, unless... */
	kprobe_post_handler_t post_handler;

97 98 99 100
	/*
	 * ... called if executing addr causes a fault (eg. page fault).
	 * Return 1 if it handled fault, otherwise kernel will see it.
	 */
L
Linus Torvalds 已提交
101 102
	kprobe_fault_handler_t fault_handler;

103 104 105 106
	/*
	 * ... called if breakpoint trap occurs in probe handler.
	 * Return 1 if it handled break, otherwise kernel will see it.
	 */
L
Linus Torvalds 已提交
107 108 109 110 111 112 113
	kprobe_break_handler_t break_handler;

	/* Saved opcode (which has been replaced with breakpoint) */
	kprobe_opcode_t opcode;

	/* copy of the original instruction */
	struct arch_specific_insn ainsn;
114

115 116 117 118
	/*
	 * Indicates various status flags.
	 * Protected by kprobe_mutex after this kprobe is registered.
	 */
119
	u32 flags;
L
Linus Torvalds 已提交
120 121
};

122 123
/* Kprobe status flags */
#define KPROBE_FLAG_GONE	1 /* breakpoint has already gone */
124
#define KPROBE_FLAG_DISABLED	2 /* probe is temporarily disabled */
125

126
/* Has this kprobe gone ? */
127 128 129 130 131
static inline int kprobe_gone(struct kprobe *p)
{
	return p->flags & KPROBE_FLAG_GONE;
}

132 133 134 135 136
/* Is this kprobe disabled ? */
static inline int kprobe_disabled(struct kprobe *p)
{
	return p->flags & (KPROBE_FLAG_DISABLED | KPROBE_FLAG_GONE);
}
L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144 145 146 147 148
/*
 * Special probe type that uses setjmp-longjmp type tricks to resume
 * execution at a specified entry with a matching prototype corresponding
 * to the probed function - a trick to enable arguments to become
 * accessible seamlessly by probe handling logic.
 * Note:
 * Because of the way compilers allocate stack space for local variables
 * etc upfront, regardless of sub-scopes within a function, this mirroring
 * principle currently works only for probes placed on function entry points.
 */
struct jprobe {
	struct kprobe kp;
149
	void *entry;	/* probe handling code to jump to */
L
Linus Torvalds 已提交
150 151
};

152 153 154
/* For backward compatibility with old code using JPROBE_ENTRY() */
#define JPROBE_ENTRY(handler)	(handler)

155 156 157 158 159 160 161 162 163 164 165 166 167
/*
 * Function-return probe -
 * Note:
 * User needs to provide a handler function, and initialize maxactive.
 * maxactive - The maximum number of instances of the probed function that
 * can be active concurrently.
 * nmissed - tracks the number of times the probed function's return was
 * ignored, due to maxactive being too low.
 *
 */
struct kretprobe {
	struct kprobe kp;
	kretprobe_handler_t handler;
168
	kretprobe_handler_t entry_handler;
169 170
	int maxactive;
	int nmissed;
171
	size_t data_size;
172
	struct hlist_head free_instances;
173
	spinlock_t lock;
174 175 176 177 178
};

struct kretprobe_instance {
	struct hlist_node hlist;
	struct kretprobe *rp;
179 180
	kprobe_opcode_t *ret_addr;
	struct task_struct *task;
181
	char data[0];
182 183
};

184 185 186 187
struct kretprobe_blackpoint {
	const char *name;
	void *addr;
};
188 189 190 191 192 193 194

struct kprobe_blackpoint {
	const char *name;
	unsigned long start_addr;
	unsigned long range;
};

195 196 197 198
#ifdef CONFIG_KPROBES
DECLARE_PER_CPU(struct kprobe *, current_kprobe);
DECLARE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);

199 200 201 202 203 204 205 206
/*
 * For #ifdef avoidance:
 */
static inline int kprobes_built_in(void)
{
	return 1;
}

207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
#ifdef CONFIG_KRETPROBES
extern void arch_prepare_kretprobe(struct kretprobe_instance *ri,
				   struct pt_regs *regs);
extern int arch_trampoline_kprobe(struct kprobe *p);
#else /* CONFIG_KRETPROBES */
static inline void arch_prepare_kretprobe(struct kretprobe *rp,
					struct pt_regs *regs)
{
}
static inline int arch_trampoline_kprobe(struct kprobe *p)
{
	return 0;
}
#endif /* CONFIG_KRETPROBES */

222 223
extern struct kretprobe_blackpoint kretprobe_blacklist[];

224 225 226 227 228 229 230 231 232 233
static inline void kretprobe_assert(struct kretprobe_instance *ri,
	unsigned long orig_ret_address, unsigned long trampoline_address)
{
	if (!orig_ret_address || (orig_ret_address == trampoline_address)) {
		printk("kretprobe BUG!: Processing kretprobe %p @ %p\n",
				ri->rp, ri->rp->kp.addr);
		BUG();
	}
}

234 235 236 237 238 239 240 241 242
#ifdef CONFIG_KPROBES_SANITY_TEST
extern int init_test_probes(void);
#else
static inline int init_test_probes(void)
{
	return 0;
}
#endif /* CONFIG_KPROBES_SANITY_TEST */

L
Linus Torvalds 已提交
243
extern int arch_prepare_kprobe(struct kprobe *p);
244 245
extern void arch_arm_kprobe(struct kprobe *p);
extern void arch_disarm_kprobe(struct kprobe *p);
246
extern int arch_init_kprobes(void);
L
Linus Torvalds 已提交
247
extern void show_registers(struct pt_regs *regs);
248
extern kprobe_opcode_t *get_insn_slot(void);
249
extern void free_insn_slot(kprobe_opcode_t *slot, int dirty);
250
extern void kprobes_inc_nmissed_count(struct kprobe *p);
L
Linus Torvalds 已提交
251

252
/* Get the kprobe at this addr (if any) - called with preemption disabled */
L
Linus Torvalds 已提交
253
struct kprobe *get_kprobe(void *addr);
254 255 256
void kretprobe_hash_lock(struct task_struct *tsk,
			 struct hlist_head **head, unsigned long *flags);
void kretprobe_hash_unlock(struct task_struct *tsk, unsigned long *flags);
257
struct hlist_head * kretprobe_inst_table_head(struct task_struct *tsk);
L
Linus Torvalds 已提交
258

259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
/* kprobe_running() will just return the current_kprobe on this CPU */
static inline struct kprobe *kprobe_running(void)
{
	return (__get_cpu_var(current_kprobe));
}

static inline void reset_current_kprobe(void)
{
	__get_cpu_var(current_kprobe) = NULL;
}

static inline struct kprobe_ctlblk *get_kprobe_ctlblk(void)
{
	return (&__get_cpu_var(kprobe_ctlblk));
}

L
Linus Torvalds 已提交
275 276
int register_kprobe(struct kprobe *p);
void unregister_kprobe(struct kprobe *p);
277 278
int register_kprobes(struct kprobe **kps, int num);
void unregister_kprobes(struct kprobe **kps, int num);
L
Linus Torvalds 已提交
279 280 281 282
int setjmp_pre_handler(struct kprobe *, struct pt_regs *);
int longjmp_break_handler(struct kprobe *, struct pt_regs *);
int register_jprobe(struct jprobe *p);
void unregister_jprobe(struct jprobe *p);
283 284
int register_jprobes(struct jprobe **jps, int num);
void unregister_jprobes(struct jprobe **jps, int num);
L
Linus Torvalds 已提交
285
void jprobe_return(void);
286
unsigned long arch_deref_entry_point(void *);
L
Linus Torvalds 已提交
287

288 289
int register_kretprobe(struct kretprobe *rp);
void unregister_kretprobe(struct kretprobe *rp);
290 291
int register_kretprobes(struct kretprobe **rps, int num);
void unregister_kretprobes(struct kretprobe **rps, int num);
292 293

void kprobe_flush_task(struct task_struct *tk);
294
void recycle_rp_inst(struct kretprobe_instance *ri, struct hlist_head *head);
295

296 297 298
int disable_kprobe(struct kprobe *kp);
int enable_kprobe(struct kprobe *kp);

299
#else /* !CONFIG_KPROBES: */
300

301 302 303 304 305 306 307 308
static inline int kprobes_built_in(void)
{
	return 0;
}
static inline int kprobe_fault_handler(struct pt_regs *regs, int trapnr)
{
	return 0;
}
309 310 311 312
static inline struct kprobe *get_kprobe(void *addr)
{
	return NULL;
}
313
static inline struct kprobe *kprobe_running(void)
L
Linus Torvalds 已提交
314
{
315
	return NULL;
L
Linus Torvalds 已提交
316 317 318 319 320
}
static inline int register_kprobe(struct kprobe *p)
{
	return -ENOSYS;
}
321 322 323 324
static inline int register_kprobes(struct kprobe **kps, int num)
{
	return -ENOSYS;
}
L
Linus Torvalds 已提交
325 326 327
static inline void unregister_kprobe(struct kprobe *p)
{
}
328 329 330
static inline void unregister_kprobes(struct kprobe **kps, int num)
{
}
L
Linus Torvalds 已提交
331 332 333 334
static inline int register_jprobe(struct jprobe *p)
{
	return -ENOSYS;
}
335 336 337 338
static inline int register_jprobes(struct jprobe **jps, int num)
{
	return -ENOSYS;
}
L
Linus Torvalds 已提交
339 340 341
static inline void unregister_jprobe(struct jprobe *p)
{
}
342 343 344
static inline void unregister_jprobes(struct jprobe **jps, int num)
{
}
L
Linus Torvalds 已提交
345 346 347
static inline void jprobe_return(void)
{
}
348 349 350 351
static inline int register_kretprobe(struct kretprobe *rp)
{
	return -ENOSYS;
}
352 353 354 355
static inline int register_kretprobes(struct kretprobe **rps, int num)
{
	return -ENOSYS;
}
356 357 358
static inline void unregister_kretprobe(struct kretprobe *rp)
{
}
359 360 361
static inline void unregister_kretprobes(struct kretprobe **rps, int num)
{
}
362 363 364
static inline void kprobe_flush_task(struct task_struct *tk)
{
}
365 366 367 368 369 370 371 372
static inline int disable_kprobe(struct kprobe *kp)
{
	return -ENOSYS;
}
static inline int enable_kprobe(struct kprobe *kp)
{
	return -ENOSYS;
}
373
#endif /* CONFIG_KPROBES */
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
static inline int disable_kretprobe(struct kretprobe *rp)
{
	return disable_kprobe(&rp->kp);
}
static inline int enable_kretprobe(struct kretprobe *rp)
{
	return enable_kprobe(&rp->kp);
}
static inline int disable_jprobe(struct jprobe *jp)
{
	return disable_kprobe(&jp->kp);
}
static inline int enable_jprobe(struct jprobe *jp)
{
	return enable_kprobe(&jp->kp);
}

391
#endif /* _LINUX_KPROBES_H */