Linux Audio

Check our new training course

Loading...
v3.15
 
   1/*
   2 * uprobes-based tracing events
   3 *
   4 * This program is free software; you can redistribute it and/or modify
   5 * it under the terms of the GNU General Public License version 2 as
   6 * published by the Free Software Foundation.
   7 *
   8 * This program is distributed in the hope that it will be useful,
   9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11 * GNU General Public License for more details.
  12 *
  13 * You should have received a copy of the GNU General Public License
  14 * along with this program; if not, write to the Free Software
  15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  16 *
  17 * Copyright (C) IBM Corporation, 2010-2012
  18 * Author:	Srikar Dronamraju <srikar@linux.vnet.ibm.com>
  19 */
 
  20
 
 
  21#include <linux/module.h>
  22#include <linux/uaccess.h>
  23#include <linux/uprobes.h>
  24#include <linux/namei.h>
  25#include <linux/string.h>
 
  26
 
  27#include "trace_probe.h"
 
  28
  29#define UPROBE_EVENT_SYSTEM	"uprobes"
  30
  31struct uprobe_trace_entry_head {
  32	struct trace_entry	ent;
  33	unsigned long		vaddr[];
  34};
  35
  36#define SIZEOF_TRACE_ENTRY(is_return)			\
  37	(sizeof(struct uprobe_trace_entry_head) +	\
  38	 sizeof(unsigned long) * (is_return ? 2 : 1))
  39
  40#define DATAOF_TRACE_ENTRY(entry, is_return)		\
  41	((void*)(entry) + SIZEOF_TRACE_ENTRY(is_return))
  42
  43struct trace_uprobe_filter {
  44	rwlock_t		rwlock;
  45	int			nr_systemwide;
  46	struct list_head	perf_events;
 
 
 
 
 
 
 
 
 
  47};
  48
  49/*
  50 * uprobe event core functions
  51 */
  52struct trace_uprobe {
  53	struct list_head		list;
  54	struct trace_uprobe_filter	filter;
  55	struct uprobe_consumer		consumer;
 
  56	struct inode			*inode;
  57	char				*filename;
  58	unsigned long			offset;
 
  59	unsigned long			nhit;
  60	struct trace_probe		tp;
  61};
  62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  63#define SIZEOF_TRACE_UPROBE(n)				\
  64	(offsetof(struct trace_uprobe, tp.args) +	\
  65	(sizeof(struct probe_arg) * (n)))
  66
  67static int register_uprobe_event(struct trace_uprobe *tu);
  68static int unregister_uprobe_event(struct trace_uprobe *tu);
  69
  70static DEFINE_MUTEX(uprobe_lock);
  71static LIST_HEAD(uprobe_list);
  72
  73struct uprobe_dispatch_data {
  74	struct trace_uprobe	*tu;
  75	unsigned long		bp_addr;
  76};
  77
  78static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs);
  79static int uretprobe_dispatcher(struct uprobe_consumer *con,
  80				unsigned long func, struct pt_regs *regs);
  81
  82#ifdef CONFIG_STACK_GROWSUP
  83static unsigned long adjust_stack_addr(unsigned long addr, unsigned int n)
  84{
  85	return addr - (n * sizeof(long));
  86}
  87#else
  88static unsigned long adjust_stack_addr(unsigned long addr, unsigned int n)
  89{
  90	return addr + (n * sizeof(long));
  91}
  92#endif
  93
  94static unsigned long get_user_stack_nth(struct pt_regs *regs, unsigned int n)
  95{
  96	unsigned long ret;
  97	unsigned long addr = user_stack_pointer(regs);
  98
  99	addr = adjust_stack_addr(addr, n);
 100
 101	if (copy_from_user(&ret, (void __force __user *) addr, sizeof(ret)))
 102		return 0;
 103
 104	return ret;
 105}
 106
 107/*
 108 * Uprobes-specific fetch functions
 109 */
 110#define DEFINE_FETCH_stack(type)					\
 111static __kprobes void FETCH_FUNC_NAME(stack, type)(struct pt_regs *regs,\
 112					  void *offset, void *dest)	\
 113{									\
 114	*(type *)dest = (type)get_user_stack_nth(regs,			\
 115					      ((unsigned long)offset)); \
 116}
 117DEFINE_BASIC_FETCH_FUNCS(stack)
 118/* No string on the stack entry */
 119#define fetch_stack_string	NULL
 120#define fetch_stack_string_size	NULL
 121
 122#define DEFINE_FETCH_memory(type)					\
 123static __kprobes void FETCH_FUNC_NAME(memory, type)(struct pt_regs *regs,\
 124						void *addr, void *dest) \
 125{									\
 126	type retval;							\
 127	void __user *vaddr = (void __force __user *) addr;		\
 128									\
 129	if (copy_from_user(&retval, vaddr, sizeof(type)))		\
 130		*(type *)dest = 0;					\
 131	else								\
 132		*(type *) dest = retval;				\
 133}
 134DEFINE_BASIC_FETCH_FUNCS(memory)
 135/*
 136 * Fetch a null-terminated string. Caller MUST set *(u32 *)dest with max
 137 * length and relative data location.
 138 */
 139static __kprobes void FETCH_FUNC_NAME(memory, string)(struct pt_regs *regs,
 140						      void *addr, void *dest)
 141{
 142	long ret;
 143	u32 rloc = *(u32 *)dest;
 144	int maxlen  = get_rloc_len(rloc);
 145	u8 *dst = get_rloc_data(dest);
 146	void __user *src = (void __force __user *) addr;
 147
 148	if (!maxlen)
 149		return;
 150
 151	ret = strncpy_from_user(dst, src, maxlen);
 152
 153	if (ret < 0) {	/* Failed to fetch string */
 154		((u8 *)get_rloc_data(dest))[0] = '\0';
 155		*(u32 *)dest = make_data_rloc(0, get_rloc_offs(rloc));
 156	} else {
 157		*(u32 *)dest = make_data_rloc(ret, get_rloc_offs(rloc));
 
 
 
 
 
 
 
 
 
 
 158	}
 
 
 159}
 160
 161static __kprobes void FETCH_FUNC_NAME(memory, string_size)(struct pt_regs *regs,
 162						      void *addr, void *dest)
 
 
 
 
 
 
 
 163{
 164	int len;
 165	void __user *vaddr = (void __force __user *) addr;
 166
 167	len = strnlen_user(vaddr, MAX_STRING_SIZE);
 168
 169	if (len == 0 || len > MAX_STRING_SIZE)  /* Failed to check length */
 170		*(u32 *)dest = 0;
 171	else
 172		*(u32 *)dest = len;
 
 
 
 
 
 
 
 
 173}
 174
 175static unsigned long translate_user_vaddr(void *file_offset)
 176{
 177	unsigned long base_addr;
 178	struct uprobe_dispatch_data *udd;
 179
 180	udd = (void *) current->utask->vaddr;
 181
 182	base_addr = udd->bp_addr - udd->tu->offset;
 183	return base_addr + (unsigned long)file_offset;
 184}
 185
 186#define DEFINE_FETCH_file_offset(type)					\
 187static __kprobes void FETCH_FUNC_NAME(file_offset, type)(struct pt_regs *regs,\
 188					void *offset, void *dest) 	\
 189{									\
 190	void *vaddr = (void *)translate_user_vaddr(offset);		\
 191									\
 192	FETCH_FUNC_NAME(memory, type)(regs, vaddr, dest);		\
 193}
 194DEFINE_BASIC_FETCH_FUNCS(file_offset)
 195DEFINE_FETCH_file_offset(string)
 196DEFINE_FETCH_file_offset(string_size)
 197
 198/* Fetch type information table */
 199const struct fetch_type uprobes_fetch_type_table[] = {
 200	/* Special types */
 201	[FETCH_TYPE_STRING] = __ASSIGN_FETCH_TYPE("string", string, string,
 202					sizeof(u32), 1, "__data_loc char[]"),
 203	[FETCH_TYPE_STRSIZE] = __ASSIGN_FETCH_TYPE("string_size", u32,
 204					string_size, sizeof(u32), 0, "u32"),
 205	/* Basic types */
 206	ASSIGN_FETCH_TYPE(u8,  u8,  0),
 207	ASSIGN_FETCH_TYPE(u16, u16, 0),
 208	ASSIGN_FETCH_TYPE(u32, u32, 0),
 209	ASSIGN_FETCH_TYPE(u64, u64, 0),
 210	ASSIGN_FETCH_TYPE(s8,  u8,  1),
 211	ASSIGN_FETCH_TYPE(s16, u16, 1),
 212	ASSIGN_FETCH_TYPE(s32, u32, 1),
 213	ASSIGN_FETCH_TYPE(s64, u64, 1),
 214
 215	ASSIGN_FETCH_TYPE_END
 216};
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 217
 218static inline void init_trace_uprobe_filter(struct trace_uprobe_filter *filter)
 219{
 220	rwlock_init(&filter->rwlock);
 221	filter->nr_systemwide = 0;
 222	INIT_LIST_HEAD(&filter->perf_events);
 223}
 224
 225static inline bool uprobe_filter_is_empty(struct trace_uprobe_filter *filter)
 226{
 227	return !filter->nr_systemwide && list_empty(&filter->perf_events);
 228}
 229
 230static inline bool is_ret_probe(struct trace_uprobe *tu)
 231{
 232	return tu->consumer.ret_handler != NULL;
 233}
 234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 235/*
 236 * Allocate new trace_uprobe and initialize it (including uprobes).
 237 */
 238static struct trace_uprobe *
 239alloc_trace_uprobe(const char *group, const char *event, int nargs, bool is_ret)
 240{
 241	struct trace_uprobe *tu;
 242
 243	if (!event || !is_good_name(event))
 244		return ERR_PTR(-EINVAL);
 245
 246	if (!group || !is_good_name(group))
 247		return ERR_PTR(-EINVAL);
 248
 249	tu = kzalloc(SIZEOF_TRACE_UPROBE(nargs), GFP_KERNEL);
 250	if (!tu)
 251		return ERR_PTR(-ENOMEM);
 252
 253	tu->tp.call.class = &tu->tp.class;
 254	tu->tp.call.name = kstrdup(event, GFP_KERNEL);
 255	if (!tu->tp.call.name)
 256		goto error;
 257
 258	tu->tp.class.system = kstrdup(group, GFP_KERNEL);
 259	if (!tu->tp.class.system)
 260		goto error;
 261
 262	INIT_LIST_HEAD(&tu->list);
 263	INIT_LIST_HEAD(&tu->tp.files);
 264	tu->consumer.handler = uprobe_dispatcher;
 265	if (is_ret)
 266		tu->consumer.ret_handler = uretprobe_dispatcher;
 267	init_trace_uprobe_filter(&tu->filter);
 268	tu->tp.call.flags |= TRACE_EVENT_FL_USE_CALL_FILTER;
 269	return tu;
 270
 271error:
 272	kfree(tu->tp.call.name);
 273	kfree(tu);
 274
 275	return ERR_PTR(-ENOMEM);
 276}
 277
 278static void free_trace_uprobe(struct trace_uprobe *tu)
 279{
 280	int i;
 281
 282	for (i = 0; i < tu->tp.nr_args; i++)
 283		traceprobe_free_probe_arg(&tu->tp.args[i]);
 284
 285	iput(tu->inode);
 286	kfree(tu->tp.call.class->system);
 287	kfree(tu->tp.call.name);
 288	kfree(tu->filename);
 289	kfree(tu);
 290}
 291
 292static struct trace_uprobe *find_probe_event(const char *event, const char *group)
 293{
 
 294	struct trace_uprobe *tu;
 295
 296	list_for_each_entry(tu, &uprobe_list, list)
 297		if (strcmp(ftrace_event_name(&tu->tp.call), event) == 0 &&
 298		    strcmp(tu->tp.call.class->system, group) == 0)
 299			return tu;
 300
 301	return NULL;
 302}
 303
 304/* Unregister a trace_uprobe and probe_event: call with locking uprobe_lock */
 305static int unregister_trace_uprobe(struct trace_uprobe *tu)
 306{
 307	int ret;
 308
 
 
 
 309	ret = unregister_uprobe_event(tu);
 310	if (ret)
 311		return ret;
 312
 313	list_del(&tu->list);
 
 
 314	free_trace_uprobe(tu);
 315	return 0;
 316}
 317
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 318/* Register a trace_uprobe and probe_event */
 319static int register_trace_uprobe(struct trace_uprobe *tu)
 320{
 321	struct trace_uprobe *old_tu;
 322	int ret;
 323
 324	mutex_lock(&uprobe_lock);
 
 
 
 
 325
 326	/* register as an event */
 327	old_tu = find_probe_event(ftrace_event_name(&tu->tp.call),
 328			tu->tp.call.class->system);
 329	if (old_tu) {
 330		/* delete old event */
 331		ret = unregister_trace_uprobe(old_tu);
 332		if (ret)
 333			goto end;
 
 
 
 
 334	}
 335
 336	ret = register_uprobe_event(tu);
 337	if (ret) {
 338		pr_warning("Failed to register probe event(%d)\n", ret);
 339		goto end;
 340	}
 341
 342	list_add_tail(&tu->list, &uprobe_list);
 343
 344end:
 345	mutex_unlock(&uprobe_lock);
 346
 347	return ret;
 348}
 349
 350/*
 351 * Argument syntax:
 352 *  - Add uprobe: p|r[:[GRP/]EVENT] PATH:OFFSET [FETCHARGS]
 353 *
 354 *  - Remove uprobe: -:[GRP/]EVENT
 355 */
 356static int create_trace_uprobe(int argc, char **argv)
 357{
 358	struct trace_uprobe *tu;
 359	struct inode *inode;
 360	char *arg, *event, *group, *filename;
 361	char buf[MAX_EVENT_NAME_LEN];
 362	struct path path;
 363	unsigned long offset;
 364	bool is_delete, is_return;
 365	int i, ret;
 366
 367	inode = NULL;
 368	ret = 0;
 369	is_delete = false;
 370	is_return = false;
 371	event = NULL;
 372	group = NULL;
 373
 374	/* argc must be >= 1 */
 375	if (argv[0][0] == '-')
 376		is_delete = true;
 377	else if (argv[0][0] == 'r')
 378		is_return = true;
 379	else if (argv[0][0] != 'p') {
 380		pr_info("Probe definition must be started with 'p', 'r' or '-'.\n");
 381		return -EINVAL;
 
 
 382	}
 383
 384	if (argv[0][1] == ':') {
 385		event = &argv[0][2];
 386		arg = strchr(event, '/');
 387
 388		if (arg) {
 389			group = event;
 390			event = arg + 1;
 391			event[-1] = '\0';
 392
 393			if (strlen(group) == 0) {
 394				pr_info("Group name is not specified\n");
 395				return -EINVAL;
 396			}
 397		}
 398		if (strlen(event) == 0) {
 399			pr_info("Event name is not specified\n");
 400			return -EINVAL;
 401		}
 402	}
 403	if (!group)
 404		group = UPROBE_EVENT_SYSTEM;
 405
 406	if (is_delete) {
 407		int ret;
 408
 409		if (!event) {
 410			pr_info("Delete command needs an event name.\n");
 411			return -EINVAL;
 412		}
 413		mutex_lock(&uprobe_lock);
 414		tu = find_probe_event(event, group);
 415
 416		if (!tu) {
 417			mutex_unlock(&uprobe_lock);
 418			pr_info("Event %s/%s doesn't exist.\n", group, event);
 419			return -ENOENT;
 420		}
 421		/* delete an event */
 422		ret = unregister_trace_uprobe(tu);
 423		mutex_unlock(&uprobe_lock);
 424		return ret;
 425	}
 426
 427	if (argc < 2) {
 428		pr_info("Probe point is not specified.\n");
 429		return -EINVAL;
 430	}
 431	if (isdigit(argv[1][0])) {
 432		pr_info("probe point must be have a filename.\n");
 433		return -EINVAL;
 434	}
 435	arg = strchr(argv[1], ':');
 436	if (!arg) {
 437		ret = -EINVAL;
 438		goto fail_address_parse;
 439	}
 440
 441	*arg++ = '\0';
 442	filename = argv[1];
 443	ret = kern_path(filename, LOOKUP_FOLLOW, &path);
 444	if (ret)
 
 
 
 
 
 
 
 
 445		goto fail_address_parse;
 
 446
 447	inode = igrab(path.dentry->d_inode);
 448	path_put(&path);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 449
 450	if (!inode || !S_ISREG(inode->i_mode)) {
 451		ret = -EINVAL;
 452		goto fail_address_parse;
 
 
 
 
 453	}
 454
 
 455	ret = kstrtoul(arg, 0, &offset);
 456	if (ret)
 
 457		goto fail_address_parse;
 458
 459	argc -= 2;
 460	argv += 2;
 461
 462	/* setup a probe */
 463	if (!event) {
 
 
 
 
 
 
 464		char *tail;
 465		char *ptr;
 466
 467		tail = kstrdup(kbasename(filename), GFP_KERNEL);
 468		if (!tail) {
 469			ret = -ENOMEM;
 470			goto fail_address_parse;
 471		}
 472
 473		ptr = strpbrk(tail, ".-_");
 474		if (ptr)
 475			*ptr = '\0';
 476
 477		snprintf(buf, MAX_EVENT_NAME_LEN, "%c_%s_0x%lx", 'p', tail, offset);
 478		event = buf;
 479		kfree(tail);
 480	}
 481
 
 
 
 482	tu = alloc_trace_uprobe(group, event, argc, is_return);
 483	if (IS_ERR(tu)) {
 484		pr_info("Failed to allocate trace_uprobe.(%d)\n", (int)PTR_ERR(tu));
 485		ret = PTR_ERR(tu);
 
 
 486		goto fail_address_parse;
 487	}
 488	tu->offset = offset;
 489	tu->inode = inode;
 490	tu->filename = kstrdup(filename, GFP_KERNEL);
 491
 492	if (!tu->filename) {
 493		pr_info("Failed to allocate filename.\n");
 494		ret = -ENOMEM;
 495		goto error;
 496	}
 497
 498	/* parse arguments */
 499	ret = 0;
 500	for (i = 0; i < argc && i < MAX_TRACE_ARGS; i++) {
 501		struct probe_arg *parg = &tu->tp.args[i];
 502
 503		/* Increment count for freeing args in error case */
 504		tu->tp.nr_args++;
 505
 506		/* Parse argument name */
 507		arg = strchr(argv[i], '=');
 508		if (arg) {
 509			*arg++ = '\0';
 510			parg->name = kstrdup(argv[i], GFP_KERNEL);
 511		} else {
 512			arg = argv[i];
 513			/* If argument name is omitted, set "argN" */
 514			snprintf(buf, MAX_EVENT_NAME_LEN, "arg%d", i + 1);
 515			parg->name = kstrdup(buf, GFP_KERNEL);
 516		}
 517
 518		if (!parg->name) {
 519			pr_info("Failed to allocate argument[%d] name.\n", i);
 520			ret = -ENOMEM;
 521			goto error;
 522		}
 523
 524		if (!is_good_name(parg->name)) {
 525			pr_info("Invalid argument[%d] name: %s\n", i, parg->name);
 526			ret = -EINVAL;
 527			goto error;
 528		}
 529
 530		if (traceprobe_conflict_field_name(parg->name, tu->tp.args, i)) {
 531			pr_info("Argument[%d] name '%s' conflicts with "
 532				"another field.\n", i, argv[i]);
 533			ret = -EINVAL;
 534			goto error;
 535		}
 536
 537		/* Parse fetch argument */
 538		ret = traceprobe_parse_probe_arg(arg, &tu->tp.size, parg,
 539						 is_return, false);
 540		if (ret) {
 541			pr_info("Parse error at argument[%d]. (%d)\n", i, ret);
 542			goto error;
 543		}
 544	}
 545
 546	ret = register_trace_uprobe(tu);
 547	if (ret)
 548		goto error;
 549	return 0;
 
 
 
 550
 551error:
 552	free_trace_uprobe(tu);
 
 
 553	return ret;
 554
 555fail_address_parse:
 556	if (inode)
 557		iput(inode);
 558
 559	pr_info("Failed to parse address or file.\n");
 560
 561	return ret;
 562}
 563
 564static int cleanup_all_probes(void)
 565{
 566	struct trace_uprobe *tu;
 567	int ret = 0;
 568
 569	mutex_lock(&uprobe_lock);
 570	while (!list_empty(&uprobe_list)) {
 571		tu = list_entry(uprobe_list.next, struct trace_uprobe, list);
 572		ret = unregister_trace_uprobe(tu);
 573		if (ret)
 574			break;
 575	}
 576	mutex_unlock(&uprobe_lock);
 577	return ret;
 578}
 579
 580/* Probes listing interfaces */
 581static void *probes_seq_start(struct seq_file *m, loff_t *pos)
 582{
 583	mutex_lock(&uprobe_lock);
 584	return seq_list_start(&uprobe_list, *pos);
 585}
 586
 587static void *probes_seq_next(struct seq_file *m, void *v, loff_t *pos)
 588{
 589	return seq_list_next(v, &uprobe_list, pos);
 590}
 591
 592static void probes_seq_stop(struct seq_file *m, void *v)
 593{
 594	mutex_unlock(&uprobe_lock);
 595}
 596
 597static int probes_seq_show(struct seq_file *m, void *v)
 
 598{
 599	struct trace_uprobe *tu = v;
 600	char c = is_ret_probe(tu) ? 'r' : 'p';
 601	int i;
 602
 603	seq_printf(m, "%c:%s/%s", c, tu->tp.call.class->system,
 604			ftrace_event_name(&tu->tp.call));
 605	seq_printf(m, " %s:0x%p", tu->filename, (void *)tu->offset);
 
 
 
 606
 607	for (i = 0; i < tu->tp.nr_args; i++)
 608		seq_printf(m, " %s=%s", tu->tp.args[i].name, tu->tp.args[i].comm);
 609
 610	seq_printf(m, "\n");
 611	return 0;
 612}
 613
 
 
 
 
 
 
 
 
 
 
 614static const struct seq_operations probes_seq_op = {
 615	.start	= probes_seq_start,
 616	.next	= probes_seq_next,
 617	.stop	= probes_seq_stop,
 618	.show	= probes_seq_show
 619};
 620
 621static int probes_open(struct inode *inode, struct file *file)
 622{
 623	int ret;
 624
 
 
 
 
 625	if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
 626		ret = cleanup_all_probes();
 627		if (ret)
 628			return ret;
 629	}
 630
 631	return seq_open(file, &probes_seq_op);
 632}
 633
 634static ssize_t probes_write(struct file *file, const char __user *buffer,
 635			    size_t count, loff_t *ppos)
 636{
 637	return traceprobe_probes_write(file, buffer, count, ppos, create_trace_uprobe);
 
 638}
 639
 640static const struct file_operations uprobe_events_ops = {
 641	.owner		= THIS_MODULE,
 642	.open		= probes_open,
 643	.read		= seq_read,
 644	.llseek		= seq_lseek,
 645	.release	= seq_release,
 646	.write		= probes_write,
 647};
 648
 649/* Probes profiling interfaces */
 650static int probes_profile_seq_show(struct seq_file *m, void *v)
 651{
 652	struct trace_uprobe *tu = v;
 
 
 
 
 653
 
 654	seq_printf(m, "  %s %-44s %15lu\n", tu->filename,
 655			ftrace_event_name(&tu->tp.call), tu->nhit);
 656	return 0;
 657}
 658
 659static const struct seq_operations profile_seq_op = {
 660	.start	= probes_seq_start,
 661	.next	= probes_seq_next,
 662	.stop	= probes_seq_stop,
 663	.show	= probes_profile_seq_show
 664};
 665
 666static int profile_open(struct inode *inode, struct file *file)
 667{
 
 
 
 
 
 
 668	return seq_open(file, &profile_seq_op);
 669}
 670
 671static const struct file_operations uprobe_profile_ops = {
 672	.owner		= THIS_MODULE,
 673	.open		= profile_open,
 674	.read		= seq_read,
 675	.llseek		= seq_lseek,
 676	.release	= seq_release,
 677};
 678
 679struct uprobe_cpu_buffer {
 680	struct mutex mutex;
 681	void *buf;
 682};
 683static struct uprobe_cpu_buffer __percpu *uprobe_cpu_buffer;
 684static int uprobe_buffer_refcnt;
 685
 686static int uprobe_buffer_init(void)
 687{
 688	int cpu, err_cpu;
 689
 690	uprobe_cpu_buffer = alloc_percpu(struct uprobe_cpu_buffer);
 691	if (uprobe_cpu_buffer == NULL)
 692		return -ENOMEM;
 693
 694	for_each_possible_cpu(cpu) {
 695		struct page *p = alloc_pages_node(cpu_to_node(cpu),
 696						  GFP_KERNEL, 0);
 697		if (p == NULL) {
 698			err_cpu = cpu;
 699			goto err;
 700		}
 701		per_cpu_ptr(uprobe_cpu_buffer, cpu)->buf = page_address(p);
 702		mutex_init(&per_cpu_ptr(uprobe_cpu_buffer, cpu)->mutex);
 703	}
 704
 705	return 0;
 706
 707err:
 708	for_each_possible_cpu(cpu) {
 709		if (cpu == err_cpu)
 710			break;
 711		free_page((unsigned long)per_cpu_ptr(uprobe_cpu_buffer, cpu)->buf);
 712	}
 713
 714	free_percpu(uprobe_cpu_buffer);
 715	return -ENOMEM;
 716}
 717
 718static int uprobe_buffer_enable(void)
 719{
 720	int ret = 0;
 721
 722	BUG_ON(!mutex_is_locked(&event_mutex));
 723
 724	if (uprobe_buffer_refcnt++ == 0) {
 725		ret = uprobe_buffer_init();
 726		if (ret < 0)
 727			uprobe_buffer_refcnt--;
 728	}
 729
 730	return ret;
 731}
 732
 733static void uprobe_buffer_disable(void)
 734{
 735	int cpu;
 736
 737	BUG_ON(!mutex_is_locked(&event_mutex));
 738
 739	if (--uprobe_buffer_refcnt == 0) {
 740		for_each_possible_cpu(cpu)
 741			free_page((unsigned long)per_cpu_ptr(uprobe_cpu_buffer,
 742							     cpu)->buf);
 743
 744		free_percpu(uprobe_cpu_buffer);
 745		uprobe_cpu_buffer = NULL;
 746	}
 747}
 748
 749static struct uprobe_cpu_buffer *uprobe_buffer_get(void)
 750{
 751	struct uprobe_cpu_buffer *ucb;
 752	int cpu;
 753
 754	cpu = raw_smp_processor_id();
 755	ucb = per_cpu_ptr(uprobe_cpu_buffer, cpu);
 756
 757	/*
 758	 * Use per-cpu buffers for fastest access, but we might migrate
 759	 * so the mutex makes sure we have sole access to it.
 760	 */
 761	mutex_lock(&ucb->mutex);
 762
 763	return ucb;
 764}
 765
 766static void uprobe_buffer_put(struct uprobe_cpu_buffer *ucb)
 767{
 768	mutex_unlock(&ucb->mutex);
 769}
 770
 771static void __uprobe_trace_func(struct trace_uprobe *tu,
 772				unsigned long func, struct pt_regs *regs,
 773				struct uprobe_cpu_buffer *ucb, int dsize,
 774				struct ftrace_event_file *ftrace_file)
 775{
 776	struct uprobe_trace_entry_head *entry;
 
 777	struct ring_buffer_event *event;
 778	struct ring_buffer *buffer;
 779	void *data;
 780	int size, esize;
 781	struct ftrace_event_call *call = &tu->tp.call;
 782
 783	WARN_ON(call != ftrace_file->event_call);
 784
 785	if (WARN_ON_ONCE(tu->tp.size + dsize > PAGE_SIZE))
 786		return;
 787
 788	if (ftrace_trigger_soft_disabled(ftrace_file))
 789		return;
 790
 791	esize = SIZEOF_TRACE_ENTRY(is_ret_probe(tu));
 792	size = esize + tu->tp.size + dsize;
 793	event = trace_event_buffer_lock_reserve(&buffer, ftrace_file,
 794						call->event.type, size, 0, 0);
 795	if (!event)
 796		return;
 797
 798	entry = ring_buffer_event_data(event);
 799	if (is_ret_probe(tu)) {
 800		entry->vaddr[0] = func;
 801		entry->vaddr[1] = instruction_pointer(regs);
 802		data = DATAOF_TRACE_ENTRY(entry, true);
 803	} else {
 804		entry->vaddr[0] = instruction_pointer(regs);
 805		data = DATAOF_TRACE_ENTRY(entry, false);
 806	}
 807
 808	memcpy(data, ucb->buf, tu->tp.size + dsize);
 809
 810	event_trigger_unlock_commit(ftrace_file, buffer, event, entry, 0, 0);
 811}
 812
 813/* uprobe handler */
 814static int uprobe_trace_func(struct trace_uprobe *tu, struct pt_regs *regs,
 815			     struct uprobe_cpu_buffer *ucb, int dsize)
 816{
 817	struct event_file_link *link;
 818
 819	if (is_ret_probe(tu))
 820		return 0;
 821
 822	rcu_read_lock();
 823	list_for_each_entry_rcu(link, &tu->tp.files, list)
 824		__uprobe_trace_func(tu, 0, regs, ucb, dsize, link->file);
 825	rcu_read_unlock();
 826
 827	return 0;
 828}
 829
 830static void uretprobe_trace_func(struct trace_uprobe *tu, unsigned long func,
 831				 struct pt_regs *regs,
 832				 struct uprobe_cpu_buffer *ucb, int dsize)
 833{
 834	struct event_file_link *link;
 835
 836	rcu_read_lock();
 837	list_for_each_entry_rcu(link, &tu->tp.files, list)
 838		__uprobe_trace_func(tu, func, regs, ucb, dsize, link->file);
 839	rcu_read_unlock();
 840}
 841
 842/* Event entry printers */
 843static enum print_line_t
 844print_uprobe_event(struct trace_iterator *iter, int flags, struct trace_event *event)
 845{
 846	struct uprobe_trace_entry_head *entry;
 847	struct trace_seq *s = &iter->seq;
 848	struct trace_uprobe *tu;
 849	u8 *data;
 850	int i;
 851
 852	entry = (struct uprobe_trace_entry_head *)iter->ent;
 853	tu = container_of(event, struct trace_uprobe, tp.call.event);
 
 
 
 854
 855	if (is_ret_probe(tu)) {
 856		if (!trace_seq_printf(s, "%s: (0x%lx <- 0x%lx)",
 857					ftrace_event_name(&tu->tp.call),
 858					entry->vaddr[1], entry->vaddr[0]))
 859			goto partial;
 860		data = DATAOF_TRACE_ENTRY(entry, true);
 861	} else {
 862		if (!trace_seq_printf(s, "%s: (0x%lx)",
 863					ftrace_event_name(&tu->tp.call),
 864					entry->vaddr[0]))
 865			goto partial;
 866		data = DATAOF_TRACE_ENTRY(entry, false);
 867	}
 868
 869	for (i = 0; i < tu->tp.nr_args; i++) {
 870		struct probe_arg *parg = &tu->tp.args[i];
 871
 872		if (!parg->type->print(s, parg->name, data + parg->offset, entry))
 873			goto partial;
 874	}
 875
 876	if (trace_seq_puts(s, "\n"))
 877		return TRACE_TYPE_HANDLED;
 878
 879partial:
 880	return TRACE_TYPE_PARTIAL_LINE;
 881}
 882
 883typedef bool (*filter_func_t)(struct uprobe_consumer *self,
 884				enum uprobe_filter_ctx ctx,
 885				struct mm_struct *mm);
 886
 887static int
 888probe_event_enable(struct trace_uprobe *tu, struct ftrace_event_file *file,
 889		   filter_func_t filter)
 890{
 891	bool enabled = trace_probe_is_enabled(&tu->tp);
 892	struct event_file_link *link = NULL;
 893	int ret;
 894
 895	if (file) {
 896		link = kmalloc(sizeof(*link), GFP_KERNEL);
 897		if (!link)
 898			return -ENOMEM;
 899
 900		link->file = file;
 901		list_add_tail_rcu(&link->list, &tu->tp.files);
 
 
 
 902
 903		tu->tp.flags |= TP_FLAG_TRACE;
 904	} else
 905		tu->tp.flags |= TP_FLAG_PROFILE;
 906
 907	ret = uprobe_buffer_enable();
 908	if (ret < 0)
 909		return ret;
 
 
 
 
 
 
 
 910
 911	WARN_ON(!uprobe_filter_is_empty(&tu->filter));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 912
 913	if (enabled)
 914		return 0;
 915
 916	tu->consumer.filter = filter;
 917	ret = uprobe_register(tu->inode, tu->offset, &tu->consumer);
 918	if (ret) {
 919		if (file) {
 920			list_del(&link->list);
 921			kfree(link);
 922			tu->tp.flags &= ~TP_FLAG_TRACE;
 923		} else
 924			tu->tp.flags &= ~TP_FLAG_PROFILE;
 
 
 925	}
 926
 
 
 
 
 
 
 
 
 
 
 
 927	return ret;
 928}
 929
 930static void
 931probe_event_disable(struct trace_uprobe *tu, struct ftrace_event_file *file)
 932{
 933	if (!trace_probe_is_enabled(&tu->tp))
 
 
 
 934		return;
 935
 936	if (file) {
 937		struct event_file_link *link;
 938
 939		link = find_event_file_link(&tu->tp, file);
 940		if (!link)
 941			return;
 942
 943		list_del_rcu(&link->list);
 944		/* synchronize with u{,ret}probe_trace_func */
 945		synchronize_sched();
 946		kfree(link);
 947
 948		if (!list_empty(&tu->tp.files))
 949			return;
 950	}
 951
 952	WARN_ON(!uprobe_filter_is_empty(&tu->filter));
 953
 954	uprobe_unregister(tu->inode, tu->offset, &tu->consumer);
 955	tu->tp.flags &= file ? ~TP_FLAG_TRACE : ~TP_FLAG_PROFILE;
 956
 
 957	uprobe_buffer_disable();
 958}
 959
 960static int uprobe_event_define_fields(struct ftrace_event_call *event_call)
 961{
 962	int ret, i, size;
 963	struct uprobe_trace_entry_head field;
 964	struct trace_uprobe *tu = event_call->data;
 
 
 
 
 965
 966	if (is_ret_probe(tu)) {
 967		DEFINE_FIELD(unsigned long, vaddr[0], FIELD_STRING_FUNC, 0);
 968		DEFINE_FIELD(unsigned long, vaddr[1], FIELD_STRING_RETIP, 0);
 969		size = SIZEOF_TRACE_ENTRY(true);
 970	} else {
 971		DEFINE_FIELD(unsigned long, vaddr[0], FIELD_STRING_IP, 0);
 972		size = SIZEOF_TRACE_ENTRY(false);
 973	}
 974	/* Set argument names as fields */
 975	for (i = 0; i < tu->tp.nr_args; i++) {
 976		struct probe_arg *parg = &tu->tp.args[i];
 977
 978		ret = trace_define_field(event_call, parg->type->fmttype,
 979					 parg->name, size + parg->offset,
 980					 parg->type->size, parg->type->is_signed,
 981					 FILTER_OTHER);
 982
 983		if (ret)
 984			return ret;
 985	}
 986	return 0;
 987}
 988
 989#ifdef CONFIG_PERF_EVENTS
 990static bool
 991__uprobe_perf_filter(struct trace_uprobe_filter *filter, struct mm_struct *mm)
 992{
 993	struct perf_event *event;
 994
 995	if (filter->nr_systemwide)
 996		return true;
 997
 998	list_for_each_entry(event, &filter->perf_events, hw.tp_list) {
 999		if (event->hw.tp_target->mm == mm)
1000			return true;
1001	}
1002
1003	return false;
1004}
1005
1006static inline bool
1007uprobe_filter_event(struct trace_uprobe *tu, struct perf_event *event)
 
 
 
 
 
 
 
1008{
1009	return __uprobe_perf_filter(&tu->filter, event->hw.tp_target->mm);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1010}
1011
1012static int uprobe_perf_open(struct trace_uprobe *tu, struct perf_event *event)
 
 
1013{
1014	bool done;
1015
1016	write_lock(&tu->filter.rwlock);
1017	if (event->hw.tp_target) {
1018		/*
1019		 * event->parent != NULL means copy_process(), we can avoid
1020		 * uprobe_apply(). current->mm must be probed and we can rely
1021		 * on dup_mmap() which preserves the already installed bp's.
1022		 *
1023		 * attr.enable_on_exec means that exec/mmap will install the
1024		 * breakpoints we need.
1025		 */
1026		done = tu->filter.nr_systemwide ||
1027			event->parent || event->attr.enable_on_exec ||
1028			uprobe_filter_event(tu, event);
1029		list_add(&event->hw.tp_list, &tu->filter.perf_events);
1030	} else {
1031		done = tu->filter.nr_systemwide;
1032		tu->filter.nr_systemwide++;
1033	}
1034	write_unlock(&tu->filter.rwlock);
1035
1036	if (!done)
1037		uprobe_apply(tu->inode, tu->offset, &tu->consumer, true);
1038
1039	return 0;
1040}
1041
1042static int uprobe_perf_close(struct trace_uprobe *tu, struct perf_event *event)
 
1043{
1044	bool done;
 
 
1045
1046	write_lock(&tu->filter.rwlock);
1047	if (event->hw.tp_target) {
1048		list_del(&event->hw.tp_list);
1049		done = tu->filter.nr_systemwide ||
1050			(event->hw.tp_target->flags & PF_EXITING) ||
1051			uprobe_filter_event(tu, event);
1052	} else {
1053		tu->filter.nr_systemwide--;
1054		done = tu->filter.nr_systemwide;
 
 
 
 
1055	}
1056	write_unlock(&tu->filter.rwlock);
1057
1058	if (!done)
1059		uprobe_apply(tu->inode, tu->offset, &tu->consumer, false);
1060
1061	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1062}
1063
1064static bool uprobe_perf_filter(struct uprobe_consumer *uc,
1065				enum uprobe_filter_ctx ctx, struct mm_struct *mm)
1066{
 
1067	struct trace_uprobe *tu;
1068	int ret;
1069
1070	tu = container_of(uc, struct trace_uprobe, consumer);
1071	read_lock(&tu->filter.rwlock);
1072	ret = __uprobe_perf_filter(&tu->filter, mm);
1073	read_unlock(&tu->filter.rwlock);
 
 
1074
1075	return ret;
1076}
1077
1078static void __uprobe_perf_func(struct trace_uprobe *tu,
1079			       unsigned long func, struct pt_regs *regs,
1080			       struct uprobe_cpu_buffer *ucb, int dsize)
1081{
1082	struct ftrace_event_call *call = &tu->tp.call;
1083	struct uprobe_trace_entry_head *entry;
1084	struct hlist_head *head;
1085	void *data;
1086	int size, esize;
1087	int rctx;
1088
 
 
 
 
 
 
 
 
 
 
1089	esize = SIZEOF_TRACE_ENTRY(is_ret_probe(tu));
1090
1091	size = esize + tu->tp.size + dsize;
1092	size = ALIGN(size + sizeof(u32), sizeof(u64)) - sizeof(u32);
1093	if (WARN_ONCE(size > PERF_MAX_TRACE_SIZE, "profile buffer not large enough"))
1094		return;
1095
1096	preempt_disable();
1097	head = this_cpu_ptr(call->perf_events);
1098	if (hlist_empty(head))
1099		goto out;
1100
1101	entry = perf_trace_buf_prepare(size, call->event.type, regs, &rctx);
1102	if (!entry)
1103		goto out;
1104
1105	if (is_ret_probe(tu)) {
1106		entry->vaddr[0] = func;
1107		entry->vaddr[1] = instruction_pointer(regs);
1108		data = DATAOF_TRACE_ENTRY(entry, true);
1109	} else {
1110		entry->vaddr[0] = instruction_pointer(regs);
1111		data = DATAOF_TRACE_ENTRY(entry, false);
1112	}
1113
1114	memcpy(data, ucb->buf, tu->tp.size + dsize);
1115
1116	if (size - esize > tu->tp.size + dsize) {
1117		int len = tu->tp.size + dsize;
1118
1119		memset(data + len, 0, size - esize - len);
1120	}
1121
1122	perf_trace_buf_submit(entry, size, rctx, 0, 1, regs, head, NULL);
 
1123 out:
1124	preempt_enable();
1125}
1126
1127/* uprobe profile handler */
1128static int uprobe_perf_func(struct trace_uprobe *tu, struct pt_regs *regs,
1129			    struct uprobe_cpu_buffer *ucb, int dsize)
1130{
1131	if (!uprobe_perf_filter(&tu->consumer, 0, current->mm))
1132		return UPROBE_HANDLER_REMOVE;
1133
1134	if (!is_ret_probe(tu))
1135		__uprobe_perf_func(tu, 0, regs, ucb, dsize);
1136	return 0;
1137}
1138
1139static void uretprobe_perf_func(struct trace_uprobe *tu, unsigned long func,
1140				struct pt_regs *regs,
1141				struct uprobe_cpu_buffer *ucb, int dsize)
1142{
1143	__uprobe_perf_func(tu, func, regs, ucb, dsize);
1144}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1145#endif	/* CONFIG_PERF_EVENTS */
1146
1147static int
1148trace_uprobe_register(struct ftrace_event_call *event, enum trace_reg type,
1149		      void *data)
1150{
1151	struct trace_uprobe *tu = event->data;
1152	struct ftrace_event_file *file = data;
1153
1154	switch (type) {
1155	case TRACE_REG_REGISTER:
1156		return probe_event_enable(tu, file, NULL);
1157
1158	case TRACE_REG_UNREGISTER:
1159		probe_event_disable(tu, file);
1160		return 0;
1161
1162#ifdef CONFIG_PERF_EVENTS
1163	case TRACE_REG_PERF_REGISTER:
1164		return probe_event_enable(tu, NULL, uprobe_perf_filter);
1165
1166	case TRACE_REG_PERF_UNREGISTER:
1167		probe_event_disable(tu, NULL);
1168		return 0;
1169
1170	case TRACE_REG_PERF_OPEN:
1171		return uprobe_perf_open(tu, data);
1172
1173	case TRACE_REG_PERF_CLOSE:
1174		return uprobe_perf_close(tu, data);
1175
1176#endif
1177	default:
1178		return 0;
1179	}
1180	return 0;
1181}
1182
1183static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs)
1184{
1185	struct trace_uprobe *tu;
1186	struct uprobe_dispatch_data udd;
1187	struct uprobe_cpu_buffer *ucb;
1188	int dsize, esize;
1189	int ret = 0;
1190
1191
1192	tu = container_of(con, struct trace_uprobe, consumer);
1193	tu->nhit++;
1194
1195	udd.tu = tu;
1196	udd.bp_addr = instruction_pointer(regs);
1197
1198	current->utask->vaddr = (unsigned long) &udd;
1199
1200#ifdef CONFIG_PERF_EVENTS
1201	if ((tu->tp.flags & TP_FLAG_TRACE) == 0 &&
1202	    !uprobe_perf_filter(&tu->consumer, 0, current->mm))
1203		return UPROBE_HANDLER_REMOVE;
1204#endif
1205
1206	if (WARN_ON_ONCE(!uprobe_cpu_buffer))
1207		return 0;
1208
1209	dsize = __get_data_size(&tu->tp, regs);
1210	esize = SIZEOF_TRACE_ENTRY(is_ret_probe(tu));
1211
1212	ucb = uprobe_buffer_get();
1213	store_trace_args(esize, &tu->tp, regs, ucb->buf, dsize);
1214
1215	if (tu->tp.flags & TP_FLAG_TRACE)
1216		ret |= uprobe_trace_func(tu, regs, ucb, dsize);
1217
1218#ifdef CONFIG_PERF_EVENTS
1219	if (tu->tp.flags & TP_FLAG_PROFILE)
1220		ret |= uprobe_perf_func(tu, regs, ucb, dsize);
1221#endif
1222	uprobe_buffer_put(ucb);
1223	return ret;
1224}
1225
1226static int uretprobe_dispatcher(struct uprobe_consumer *con,
1227				unsigned long func, struct pt_regs *regs)
1228{
1229	struct trace_uprobe *tu;
1230	struct uprobe_dispatch_data udd;
1231	struct uprobe_cpu_buffer *ucb;
1232	int dsize, esize;
1233
1234	tu = container_of(con, struct trace_uprobe, consumer);
1235
1236	udd.tu = tu;
1237	udd.bp_addr = func;
1238
1239	current->utask->vaddr = (unsigned long) &udd;
1240
1241	if (WARN_ON_ONCE(!uprobe_cpu_buffer))
1242		return 0;
1243
1244	dsize = __get_data_size(&tu->tp, regs);
1245	esize = SIZEOF_TRACE_ENTRY(is_ret_probe(tu));
1246
1247	ucb = uprobe_buffer_get();
1248	store_trace_args(esize, &tu->tp, regs, ucb->buf, dsize);
1249
1250	if (tu->tp.flags & TP_FLAG_TRACE)
1251		uretprobe_trace_func(tu, func, regs, ucb, dsize);
1252
1253#ifdef CONFIG_PERF_EVENTS
1254	if (tu->tp.flags & TP_FLAG_PROFILE)
1255		uretprobe_perf_func(tu, func, regs, ucb, dsize);
1256#endif
1257	uprobe_buffer_put(ucb);
1258	return 0;
1259}
1260
1261static struct trace_event_functions uprobe_funcs = {
1262	.trace		= print_uprobe_event
1263};
1264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1265static int register_uprobe_event(struct trace_uprobe *tu)
1266{
1267	struct ftrace_event_call *call = &tu->tp.call;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1268	int ret;
1269
1270	/* Initialize ftrace_event_call */
1271	INIT_LIST_HEAD(&call->class->fields);
1272	call->event.funcs = &uprobe_funcs;
1273	call->class->define_fields = uprobe_event_define_fields;
1274
1275	if (set_print_fmt(&tu->tp, is_ret_probe(tu)) < 0)
1276		return -ENOMEM;
 
 
1277
1278	ret = register_ftrace_event(&call->event);
1279	if (!ret) {
1280		kfree(call->print_fmt);
1281		return -ENODEV;
 
 
 
 
 
 
 
 
 
1282	}
1283	call->flags = 0;
1284	call->class->reg = trace_uprobe_register;
1285	call->data = tu;
1286	ret = trace_add_event_call(call);
1287
1288	if (ret) {
1289		pr_info("Failed to register uprobe event: %s\n",
1290			ftrace_event_name(call));
1291		kfree(call->print_fmt);
1292		unregister_ftrace_event(&call->event);
 
 
 
 
1293	}
1294
1295	return ret;
 
 
 
1296}
1297
1298static int unregister_uprobe_event(struct trace_uprobe *tu)
1299{
1300	int ret;
1301
1302	/* tu->event is unregistered in trace_remove_event_call() */
1303	ret = trace_remove_event_call(&tu->tp.call);
1304	if (ret)
1305		return ret;
1306	kfree(tu->tp.call.print_fmt);
1307	tu->tp.call.print_fmt = NULL;
1308	return 0;
1309}
 
1310
1311/* Make a trace interface for controling probe points */
1312static __init int init_uprobe_trace(void)
1313{
1314	struct dentry *d_tracer;
 
 
 
 
 
1315
1316	d_tracer = tracing_init_dentry();
1317	if (!d_tracer)
1318		return 0;
1319
1320	trace_create_file("uprobe_events", 0644, d_tracer,
1321				    NULL, &uprobe_events_ops);
1322	/* Profile interface */
1323	trace_create_file("uprobe_profile", 0444, d_tracer,
1324				    NULL, &uprobe_profile_ops);
1325	return 0;
1326}
1327
1328fs_initcall(init_uprobe_trace);
v5.9
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * uprobes-based tracing events
   4 *
 
 
 
 
 
 
 
 
 
 
 
 
 
   5 * Copyright (C) IBM Corporation, 2010-2012
   6 * Author:	Srikar Dronamraju <srikar@linux.vnet.ibm.com>
   7 */
   8#define pr_fmt(fmt)	"trace_uprobe: " fmt
   9
  10#include <linux/security.h>
  11#include <linux/ctype.h>
  12#include <linux/module.h>
  13#include <linux/uaccess.h>
  14#include <linux/uprobes.h>
  15#include <linux/namei.h>
  16#include <linux/string.h>
  17#include <linux/rculist.h>
  18
  19#include "trace_dynevent.h"
  20#include "trace_probe.h"
  21#include "trace_probe_tmpl.h"
  22
  23#define UPROBE_EVENT_SYSTEM	"uprobes"
  24
  25struct uprobe_trace_entry_head {
  26	struct trace_entry	ent;
  27	unsigned long		vaddr[];
  28};
  29
  30#define SIZEOF_TRACE_ENTRY(is_return)			\
  31	(sizeof(struct uprobe_trace_entry_head) +	\
  32	 sizeof(unsigned long) * (is_return ? 2 : 1))
  33
  34#define DATAOF_TRACE_ENTRY(entry, is_return)		\
  35	((void*)(entry) + SIZEOF_TRACE_ENTRY(is_return))
  36
  37static int trace_uprobe_create(int argc, const char **argv);
  38static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev);
  39static int trace_uprobe_release(struct dyn_event *ev);
  40static bool trace_uprobe_is_busy(struct dyn_event *ev);
  41static bool trace_uprobe_match(const char *system, const char *event,
  42			int argc, const char **argv, struct dyn_event *ev);
  43
  44static struct dyn_event_operations trace_uprobe_ops = {
  45	.create = trace_uprobe_create,
  46	.show = trace_uprobe_show,
  47	.is_busy = trace_uprobe_is_busy,
  48	.free = trace_uprobe_release,
  49	.match = trace_uprobe_match,
  50};
  51
  52/*
  53 * uprobe event core functions
  54 */
  55struct trace_uprobe {
  56	struct dyn_event		devent;
 
  57	struct uprobe_consumer		consumer;
  58	struct path			path;
  59	struct inode			*inode;
  60	char				*filename;
  61	unsigned long			offset;
  62	unsigned long			ref_ctr_offset;
  63	unsigned long			nhit;
  64	struct trace_probe		tp;
  65};
  66
  67static bool is_trace_uprobe(struct dyn_event *ev)
  68{
  69	return ev->ops == &trace_uprobe_ops;
  70}
  71
  72static struct trace_uprobe *to_trace_uprobe(struct dyn_event *ev)
  73{
  74	return container_of(ev, struct trace_uprobe, devent);
  75}
  76
  77/**
  78 * for_each_trace_uprobe - iterate over the trace_uprobe list
  79 * @pos:	the struct trace_uprobe * for each entry
  80 * @dpos:	the struct dyn_event * to use as a loop cursor
  81 */
  82#define for_each_trace_uprobe(pos, dpos)	\
  83	for_each_dyn_event(dpos)		\
  84		if (is_trace_uprobe(dpos) && (pos = to_trace_uprobe(dpos)))
  85
  86#define SIZEOF_TRACE_UPROBE(n)				\
  87	(offsetof(struct trace_uprobe, tp.args) +	\
  88	(sizeof(struct probe_arg) * (n)))
  89
  90static int register_uprobe_event(struct trace_uprobe *tu);
  91static int unregister_uprobe_event(struct trace_uprobe *tu);
  92
 
 
 
  93struct uprobe_dispatch_data {
  94	struct trace_uprobe	*tu;
  95	unsigned long		bp_addr;
  96};
  97
  98static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs);
  99static int uretprobe_dispatcher(struct uprobe_consumer *con,
 100				unsigned long func, struct pt_regs *regs);
 101
 102#ifdef CONFIG_STACK_GROWSUP
 103static unsigned long adjust_stack_addr(unsigned long addr, unsigned int n)
 104{
 105	return addr - (n * sizeof(long));
 106}
 107#else
 108static unsigned long adjust_stack_addr(unsigned long addr, unsigned int n)
 109{
 110	return addr + (n * sizeof(long));
 111}
 112#endif
 113
 114static unsigned long get_user_stack_nth(struct pt_regs *regs, unsigned int n)
 115{
 116	unsigned long ret;
 117	unsigned long addr = user_stack_pointer(regs);
 118
 119	addr = adjust_stack_addr(addr, n);
 120
 121	if (copy_from_user(&ret, (void __force __user *) addr, sizeof(ret)))
 122		return 0;
 123
 124	return ret;
 125}
 126
 127/*
 128 * Uprobes-specific fetch functions
 129 */
 130static nokprobe_inline int
 131probe_mem_read(void *dest, void *src, size_t size)
 132{
 133	void __user *vaddr = (void __force __user *)src;
 134
 135	return copy_from_user(dest, vaddr, size) ? -EFAULT : 0;
 136}
 137
 138static nokprobe_inline int
 139probe_mem_read_user(void *dest, void *src, size_t size)
 140{
 141	return probe_mem_read(dest, src, size);
 
 
 
 
 
 
 
 
 
 
 
 142}
 143
 144/*
 145 * Fetch a null-terminated string. Caller MUST set *(u32 *)dest with max
 146 * length and relative data location.
 147 */
 148static nokprobe_inline int
 149fetch_store_string(unsigned long addr, void *dest, void *base)
 150{
 151	long ret;
 152	u32 loc = *(u32 *)dest;
 153	int maxlen  = get_loc_len(loc);
 154	u8 *dst = get_loc_data(dest, base);
 155	void __user *src = (void __force __user *) addr;
 156
 157	if (unlikely(!maxlen))
 158		return -ENOMEM;
 
 
 159
 160	if (addr == FETCH_TOKEN_COMM)
 161		ret = strlcpy(dst, current->comm, maxlen);
 162	else
 163		ret = strncpy_from_user(dst, src, maxlen);
 164	if (ret >= 0) {
 165		if (ret == maxlen)
 166			dst[ret - 1] = '\0';
 167		else
 168			/*
 169			 * Include the terminating null byte. In this case it
 170			 * was copied by strncpy_from_user but not accounted
 171			 * for in ret.
 172			 */
 173			ret++;
 174		*(u32 *)dest = make_data_loc(ret, (void *)dst - base);
 175	}
 176
 177	return ret;
 178}
 179
 180static nokprobe_inline int
 181fetch_store_string_user(unsigned long addr, void *dest, void *base)
 182{
 183	return fetch_store_string(addr, dest, base);
 184}
 185
 186/* Return the length of string -- including null terminal byte */
 187static nokprobe_inline int
 188fetch_store_strlen(unsigned long addr)
 189{
 190	int len;
 191	void __user *vaddr = (void __force __user *) addr;
 192
 193	if (addr == FETCH_TOKEN_COMM)
 194		len = strlen(current->comm) + 1;
 
 
 195	else
 196		len = strnlen_user(vaddr, MAX_STRING_SIZE);
 197
 198	return (len > MAX_STRING_SIZE) ? 0 : len;
 199}
 200
 201static nokprobe_inline int
 202fetch_store_strlen_user(unsigned long addr)
 203{
 204	return fetch_store_strlen(addr);
 205}
 206
 207static unsigned long translate_user_vaddr(unsigned long file_offset)
 208{
 209	unsigned long base_addr;
 210	struct uprobe_dispatch_data *udd;
 211
 212	udd = (void *) current->utask->vaddr;
 213
 214	base_addr = udd->bp_addr - udd->tu->offset;
 215	return base_addr + file_offset;
 216}
 217
 218/* Note that we don't verify it, since the code does not come from user space */
 219static int
 220process_fetch_insn(struct fetch_insn *code, struct pt_regs *regs, void *dest,
 221		   void *base)
 222{
 223	unsigned long val;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 224
 225	/* 1st stage: get value from context */
 226	switch (code->op) {
 227	case FETCH_OP_REG:
 228		val = regs_get_register(regs, code->param);
 229		break;
 230	case FETCH_OP_STACK:
 231		val = get_user_stack_nth(regs, code->param);
 232		break;
 233	case FETCH_OP_STACKP:
 234		val = user_stack_pointer(regs);
 235		break;
 236	case FETCH_OP_RETVAL:
 237		val = regs_return_value(regs);
 238		break;
 239	case FETCH_OP_IMM:
 240		val = code->immediate;
 241		break;
 242	case FETCH_OP_COMM:
 243		val = FETCH_TOKEN_COMM;
 244		break;
 245	case FETCH_OP_DATA:
 246		val = (unsigned long)code->data;
 247		break;
 248	case FETCH_OP_FOFFS:
 249		val = translate_user_vaddr(code->immediate);
 250		break;
 251	default:
 252		return -EILSEQ;
 253	}
 254	code++;
 255
 256	return process_fetch_insn_bottom(code, val, dest, base);
 257}
 258NOKPROBE_SYMBOL(process_fetch_insn)
 259
 260static inline void init_trace_uprobe_filter(struct trace_uprobe_filter *filter)
 261{
 262	rwlock_init(&filter->rwlock);
 263	filter->nr_systemwide = 0;
 264	INIT_LIST_HEAD(&filter->perf_events);
 265}
 266
 267static inline bool uprobe_filter_is_empty(struct trace_uprobe_filter *filter)
 268{
 269	return !filter->nr_systemwide && list_empty(&filter->perf_events);
 270}
 271
 272static inline bool is_ret_probe(struct trace_uprobe *tu)
 273{
 274	return tu->consumer.ret_handler != NULL;
 275}
 276
 277static bool trace_uprobe_is_busy(struct dyn_event *ev)
 278{
 279	struct trace_uprobe *tu = to_trace_uprobe(ev);
 280
 281	return trace_probe_is_enabled(&tu->tp);
 282}
 283
 284static bool trace_uprobe_match_command_head(struct trace_uprobe *tu,
 285					    int argc, const char **argv)
 286{
 287	char buf[MAX_ARGSTR_LEN + 1];
 288	int len;
 289
 290	if (!argc)
 291		return true;
 292
 293	len = strlen(tu->filename);
 294	if (strncmp(tu->filename, argv[0], len) || argv[0][len] != ':')
 295		return false;
 296
 297	if (tu->ref_ctr_offset == 0)
 298		snprintf(buf, sizeof(buf), "0x%0*lx",
 299				(int)(sizeof(void *) * 2), tu->offset);
 300	else
 301		snprintf(buf, sizeof(buf), "0x%0*lx(0x%lx)",
 302				(int)(sizeof(void *) * 2), tu->offset,
 303				tu->ref_ctr_offset);
 304	if (strcmp(buf, &argv[0][len + 1]))
 305		return false;
 306
 307	argc--; argv++;
 308
 309	return trace_probe_match_command_args(&tu->tp, argc, argv);
 310}
 311
 312static bool trace_uprobe_match(const char *system, const char *event,
 313			int argc, const char **argv, struct dyn_event *ev)
 314{
 315	struct trace_uprobe *tu = to_trace_uprobe(ev);
 316
 317	return strcmp(trace_probe_name(&tu->tp), event) == 0 &&
 318	   (!system || strcmp(trace_probe_group_name(&tu->tp), system) == 0) &&
 319	   trace_uprobe_match_command_head(tu, argc, argv);
 320}
 321
 322static nokprobe_inline struct trace_uprobe *
 323trace_uprobe_primary_from_call(struct trace_event_call *call)
 324{
 325	struct trace_probe *tp;
 326
 327	tp = trace_probe_primary_from_call(call);
 328	if (WARN_ON_ONCE(!tp))
 329		return NULL;
 330
 331	return container_of(tp, struct trace_uprobe, tp);
 332}
 333
 334/*
 335 * Allocate new trace_uprobe and initialize it (including uprobes).
 336 */
 337static struct trace_uprobe *
 338alloc_trace_uprobe(const char *group, const char *event, int nargs, bool is_ret)
 339{
 340	struct trace_uprobe *tu;
 341	int ret;
 
 
 
 
 
 342
 343	tu = kzalloc(SIZEOF_TRACE_UPROBE(nargs), GFP_KERNEL);
 344	if (!tu)
 345		return ERR_PTR(-ENOMEM);
 346
 347	ret = trace_probe_init(&tu->tp, event, group, true);
 348	if (ret < 0)
 
 
 
 
 
 349		goto error;
 350
 351	dyn_event_init(&tu->devent, &trace_uprobe_ops);
 
 352	tu->consumer.handler = uprobe_dispatcher;
 353	if (is_ret)
 354		tu->consumer.ret_handler = uretprobe_dispatcher;
 355	init_trace_uprobe_filter(tu->tp.event->filter);
 
 356	return tu;
 357
 358error:
 
 359	kfree(tu);
 360
 361	return ERR_PTR(ret);
 362}
 363
 364static void free_trace_uprobe(struct trace_uprobe *tu)
 365{
 366	if (!tu)
 367		return;
 
 
 368
 369	path_put(&tu->path);
 370	trace_probe_cleanup(&tu->tp);
 
 371	kfree(tu->filename);
 372	kfree(tu);
 373}
 374
 375static struct trace_uprobe *find_probe_event(const char *event, const char *group)
 376{
 377	struct dyn_event *pos;
 378	struct trace_uprobe *tu;
 379
 380	for_each_trace_uprobe(tu, pos)
 381		if (strcmp(trace_probe_name(&tu->tp), event) == 0 &&
 382		    strcmp(trace_probe_group_name(&tu->tp), group) == 0)
 383			return tu;
 384
 385	return NULL;
 386}
 387
 388/* Unregister a trace_uprobe and probe_event */
 389static int unregister_trace_uprobe(struct trace_uprobe *tu)
 390{
 391	int ret;
 392
 393	if (trace_probe_has_sibling(&tu->tp))
 394		goto unreg;
 395
 396	ret = unregister_uprobe_event(tu);
 397	if (ret)
 398		return ret;
 399
 400unreg:
 401	dyn_event_remove(&tu->devent);
 402	trace_probe_unlink(&tu->tp);
 403	free_trace_uprobe(tu);
 404	return 0;
 405}
 406
 407static bool trace_uprobe_has_same_uprobe(struct trace_uprobe *orig,
 408					 struct trace_uprobe *comp)
 409{
 410	struct trace_probe_event *tpe = orig->tp.event;
 411	struct trace_probe *pos;
 412	struct inode *comp_inode = d_real_inode(comp->path.dentry);
 413	int i;
 414
 415	list_for_each_entry(pos, &tpe->probes, list) {
 416		orig = container_of(pos, struct trace_uprobe, tp);
 417		if (comp_inode != d_real_inode(orig->path.dentry) ||
 418		    comp->offset != orig->offset)
 419			continue;
 420
 421		/*
 422		 * trace_probe_compare_arg_type() ensured that nr_args and
 423		 * each argument name and type are same. Let's compare comm.
 424		 */
 425		for (i = 0; i < orig->tp.nr_args; i++) {
 426			if (strcmp(orig->tp.args[i].comm,
 427				   comp->tp.args[i].comm))
 428				break;
 429		}
 430
 431		if (i == orig->tp.nr_args)
 432			return true;
 433	}
 434
 435	return false;
 436}
 437
 438static int append_trace_uprobe(struct trace_uprobe *tu, struct trace_uprobe *to)
 439{
 440	int ret;
 441
 442	ret = trace_probe_compare_arg_type(&tu->tp, &to->tp);
 443	if (ret) {
 444		/* Note that argument starts index = 2 */
 445		trace_probe_log_set_index(ret + 1);
 446		trace_probe_log_err(0, DIFF_ARG_TYPE);
 447		return -EEXIST;
 448	}
 449	if (trace_uprobe_has_same_uprobe(to, tu)) {
 450		trace_probe_log_set_index(0);
 451		trace_probe_log_err(0, SAME_PROBE);
 452		return -EEXIST;
 453	}
 454
 455	/* Append to existing event */
 456	ret = trace_probe_append(&tu->tp, &to->tp);
 457	if (!ret)
 458		dyn_event_add(&tu->devent);
 459
 460	return ret;
 461}
 462
 463/*
 464 * Uprobe with multiple reference counter is not allowed. i.e.
 465 * If inode and offset matches, reference counter offset *must*
 466 * match as well. Though, there is one exception: If user is
 467 * replacing old trace_uprobe with new one(same group/event),
 468 * then we allow same uprobe with new reference counter as far
 469 * as the new one does not conflict with any other existing
 470 * ones.
 471 */
 472static int validate_ref_ctr_offset(struct trace_uprobe *new)
 473{
 474	struct dyn_event *pos;
 475	struct trace_uprobe *tmp;
 476	struct inode *new_inode = d_real_inode(new->path.dentry);
 477
 478	for_each_trace_uprobe(tmp, pos) {
 479		if (new_inode == d_real_inode(tmp->path.dentry) &&
 480		    new->offset == tmp->offset &&
 481		    new->ref_ctr_offset != tmp->ref_ctr_offset) {
 482			pr_warn("Reference counter offset mismatch.");
 483			return -EINVAL;
 484		}
 485	}
 486	return 0;
 487}
 488
 489/* Register a trace_uprobe and probe_event */
 490static int register_trace_uprobe(struct trace_uprobe *tu)
 491{
 492	struct trace_uprobe *old_tu;
 493	int ret;
 494
 495	mutex_lock(&event_mutex);
 496
 497	ret = validate_ref_ctr_offset(tu);
 498	if (ret)
 499		goto end;
 500
 501	/* register as an event */
 502	old_tu = find_probe_event(trace_probe_name(&tu->tp),
 503				  trace_probe_group_name(&tu->tp));
 504	if (old_tu) {
 505		if (is_ret_probe(tu) != is_ret_probe(old_tu)) {
 506			trace_probe_log_set_index(0);
 507			trace_probe_log_err(0, DIFF_PROBE_TYPE);
 508			ret = -EEXIST;
 509		} else {
 510			ret = append_trace_uprobe(tu, old_tu);
 511		}
 512		goto end;
 513	}
 514
 515	ret = register_uprobe_event(tu);
 516	if (ret) {
 517		pr_warn("Failed to register probe event(%d)\n", ret);
 518		goto end;
 519	}
 520
 521	dyn_event_add(&tu->devent);
 522
 523end:
 524	mutex_unlock(&event_mutex);
 525
 526	return ret;
 527}
 528
 529/*
 530 * Argument syntax:
 531 *  - Add uprobe: p|r[:[GRP/]EVENT] PATH:OFFSET [FETCHARGS]
 
 
 532 */
 533static int trace_uprobe_create(int argc, const char **argv)
 534{
 535	struct trace_uprobe *tu;
 536	const char *event = NULL, *group = UPROBE_EVENT_SYSTEM;
 537	char *arg, *filename, *rctr, *rctr_end, *tmp;
 538	char buf[MAX_EVENT_NAME_LEN];
 539	struct path path;
 540	unsigned long offset, ref_ctr_offset;
 541	bool is_return = false;
 542	int i, ret;
 543
 
 544	ret = 0;
 545	ref_ctr_offset = 0;
 
 
 
 546
 547	switch (argv[0][0]) {
 548	case 'r':
 
 
 549		is_return = true;
 550		break;
 551	case 'p':
 552		break;
 553	default:
 554		return -ECANCELED;
 555	}
 556
 557	if (argc < 2)
 558		return -ECANCELED;
 
 559
 560	if (argv[0][1] == ':')
 561		event = &argv[0][2];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 562
 563	if (!strchr(argv[1], '/'))
 564		return -ECANCELED;
 565
 566	filename = kstrdup(argv[1], GFP_KERNEL);
 567	if (!filename)
 568		return -ENOMEM;
 
 
 
 569
 570	/* Find the last occurrence, in case the path contains ':' too. */
 571	arg = strrchr(filename, ':');
 572	if (!arg || !isdigit(arg[1])) {
 573		kfree(filename);
 574		return -ECANCELED;
 
 
 
 
 575	}
 576
 577	trace_probe_log_init("trace_uprobe", argc, argv);
 578	trace_probe_log_set_index(1);	/* filename is the 2nd argument */
 
 
 
 
 
 
 
 
 
 
 
 579
 580	*arg++ = '\0';
 
 581	ret = kern_path(filename, LOOKUP_FOLLOW, &path);
 582	if (ret) {
 583		trace_probe_log_err(0, FILE_NOT_FOUND);
 584		kfree(filename);
 585		trace_probe_log_clear();
 586		return ret;
 587	}
 588	if (!d_is_reg(path.dentry)) {
 589		trace_probe_log_err(0, NO_REGULAR_FILE);
 590		ret = -EINVAL;
 591		goto fail_address_parse;
 592	}
 593
 594	/* Parse reference counter offset if specified. */
 595	rctr = strchr(arg, '(');
 596	if (rctr) {
 597		rctr_end = strchr(rctr, ')');
 598		if (!rctr_end) {
 599			ret = -EINVAL;
 600			rctr_end = rctr + strlen(rctr);
 601			trace_probe_log_err(rctr_end - filename,
 602					    REFCNT_OPEN_BRACE);
 603			goto fail_address_parse;
 604		} else if (rctr_end[1] != '\0') {
 605			ret = -EINVAL;
 606			trace_probe_log_err(rctr_end + 1 - filename,
 607					    BAD_REFCNT_SUFFIX);
 608			goto fail_address_parse;
 609		}
 610
 611		*rctr++ = '\0';
 612		*rctr_end = '\0';
 613		ret = kstrtoul(rctr, 0, &ref_ctr_offset);
 614		if (ret) {
 615			trace_probe_log_err(rctr - filename, BAD_REFCNT);
 616			goto fail_address_parse;
 617		}
 618	}
 619
 620	/* Parse uprobe offset. */
 621	ret = kstrtoul(arg, 0, &offset);
 622	if (ret) {
 623		trace_probe_log_err(arg - filename, BAD_UPROBE_OFFS);
 624		goto fail_address_parse;
 625	}
 
 
 626
 627	/* setup a probe */
 628	trace_probe_log_set_index(0);
 629	if (event) {
 630		ret = traceprobe_parse_event_name(&event, &group, buf,
 631						  event - argv[0]);
 632		if (ret)
 633			goto fail_address_parse;
 634	} else {
 635		char *tail;
 636		char *ptr;
 637
 638		tail = kstrdup(kbasename(filename), GFP_KERNEL);
 639		if (!tail) {
 640			ret = -ENOMEM;
 641			goto fail_address_parse;
 642		}
 643
 644		ptr = strpbrk(tail, ".-_");
 645		if (ptr)
 646			*ptr = '\0';
 647
 648		snprintf(buf, MAX_EVENT_NAME_LEN, "%c_%s_0x%lx", 'p', tail, offset);
 649		event = buf;
 650		kfree(tail);
 651	}
 652
 653	argc -= 2;
 654	argv += 2;
 655
 656	tu = alloc_trace_uprobe(group, event, argc, is_return);
 657	if (IS_ERR(tu)) {
 
 658		ret = PTR_ERR(tu);
 659		/* This must return -ENOMEM otherwise there is a bug */
 660		WARN_ON_ONCE(ret != -ENOMEM);
 661		goto fail_address_parse;
 662	}
 663	tu->offset = offset;
 664	tu->ref_ctr_offset = ref_ctr_offset;
 665	tu->path = path;
 666	tu->filename = filename;
 
 
 
 
 
 667
 668	/* parse arguments */
 
 669	for (i = 0; i < argc && i < MAX_TRACE_ARGS; i++) {
 670		tmp = kstrdup(argv[i], GFP_KERNEL);
 671		if (!tmp) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 672			ret = -ENOMEM;
 673			goto error;
 674		}
 675
 676		trace_probe_log_set_index(i + 2);
 677		ret = traceprobe_parse_probe_arg(&tu->tp, i, tmp,
 678					is_return ? TPARG_FL_RETURN : 0);
 679		kfree(tmp);
 680		if (ret)
 
 
 
 
 
 
 
 
 
 
 
 
 
 681			goto error;
 
 682	}
 683
 684	ret = traceprobe_set_print_fmt(&tu->tp, is_ret_probe(tu));
 685	if (ret < 0)
 686		goto error;
 687
 688	ret = register_trace_uprobe(tu);
 689	if (!ret)
 690		goto out;
 691
 692error:
 693	free_trace_uprobe(tu);
 694out:
 695	trace_probe_log_clear();
 696	return ret;
 697
 698fail_address_parse:
 699	trace_probe_log_clear();
 700	path_put(&path);
 701	kfree(filename);
 
 702
 703	return ret;
 704}
 705
 706static int create_or_delete_trace_uprobe(int argc, char **argv)
 707{
 708	int ret;
 
 709
 710	if (argv[0][0] == '-')
 711		return dyn_event_release(argc, argv, &trace_uprobe_ops);
 
 
 
 
 
 
 
 
 712
 713	ret = trace_uprobe_create(argc, (const char **)argv);
 714	return ret == -ECANCELED ? -EINVAL : ret;
 
 
 
 715}
 716
 717static int trace_uprobe_release(struct dyn_event *ev)
 718{
 719	struct trace_uprobe *tu = to_trace_uprobe(ev);
 
 720
 721	return unregister_trace_uprobe(tu);
 
 
 722}
 723
 724/* Probes listing interfaces */
 725static int trace_uprobe_show(struct seq_file *m, struct dyn_event *ev)
 726{
 727	struct trace_uprobe *tu = to_trace_uprobe(ev);
 728	char c = is_ret_probe(tu) ? 'r' : 'p';
 729	int i;
 730
 731	seq_printf(m, "%c:%s/%s %s:0x%0*lx", c, trace_probe_group_name(&tu->tp),
 732			trace_probe_name(&tu->tp), tu->filename,
 733			(int)(sizeof(void *) * 2), tu->offset);
 734
 735	if (tu->ref_ctr_offset)
 736		seq_printf(m, "(0x%lx)", tu->ref_ctr_offset);
 737
 738	for (i = 0; i < tu->tp.nr_args; i++)
 739		seq_printf(m, " %s=%s", tu->tp.args[i].name, tu->tp.args[i].comm);
 740
 741	seq_putc(m, '\n');
 742	return 0;
 743}
 744
 745static int probes_seq_show(struct seq_file *m, void *v)
 746{
 747	struct dyn_event *ev = v;
 748
 749	if (!is_trace_uprobe(ev))
 750		return 0;
 751
 752	return trace_uprobe_show(m, ev);
 753}
 754
 755static const struct seq_operations probes_seq_op = {
 756	.start  = dyn_event_seq_start,
 757	.next   = dyn_event_seq_next,
 758	.stop   = dyn_event_seq_stop,
 759	.show   = probes_seq_show
 760};
 761
 762static int probes_open(struct inode *inode, struct file *file)
 763{
 764	int ret;
 765
 766	ret = security_locked_down(LOCKDOWN_TRACEFS);
 767	if (ret)
 768		return ret;
 769
 770	if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
 771		ret = dyn_events_release_all(&trace_uprobe_ops);
 772		if (ret)
 773			return ret;
 774	}
 775
 776	return seq_open(file, &probes_seq_op);
 777}
 778
 779static ssize_t probes_write(struct file *file, const char __user *buffer,
 780			    size_t count, loff_t *ppos)
 781{
 782	return trace_parse_run_command(file, buffer, count, ppos,
 783					create_or_delete_trace_uprobe);
 784}
 785
 786static const struct file_operations uprobe_events_ops = {
 787	.owner		= THIS_MODULE,
 788	.open		= probes_open,
 789	.read		= seq_read,
 790	.llseek		= seq_lseek,
 791	.release	= seq_release,
 792	.write		= probes_write,
 793};
 794
 795/* Probes profiling interfaces */
 796static int probes_profile_seq_show(struct seq_file *m, void *v)
 797{
 798	struct dyn_event *ev = v;
 799	struct trace_uprobe *tu;
 800
 801	if (!is_trace_uprobe(ev))
 802		return 0;
 803
 804	tu = to_trace_uprobe(ev);
 805	seq_printf(m, "  %s %-44s %15lu\n", tu->filename,
 806			trace_probe_name(&tu->tp), tu->nhit);
 807	return 0;
 808}
 809
 810static const struct seq_operations profile_seq_op = {
 811	.start  = dyn_event_seq_start,
 812	.next   = dyn_event_seq_next,
 813	.stop   = dyn_event_seq_stop,
 814	.show	= probes_profile_seq_show
 815};
 816
 817static int profile_open(struct inode *inode, struct file *file)
 818{
 819	int ret;
 820
 821	ret = security_locked_down(LOCKDOWN_TRACEFS);
 822	if (ret)
 823		return ret;
 824
 825	return seq_open(file, &profile_seq_op);
 826}
 827
 828static const struct file_operations uprobe_profile_ops = {
 829	.owner		= THIS_MODULE,
 830	.open		= profile_open,
 831	.read		= seq_read,
 832	.llseek		= seq_lseek,
 833	.release	= seq_release,
 834};
 835
 836struct uprobe_cpu_buffer {
 837	struct mutex mutex;
 838	void *buf;
 839};
 840static struct uprobe_cpu_buffer __percpu *uprobe_cpu_buffer;
 841static int uprobe_buffer_refcnt;
 842
 843static int uprobe_buffer_init(void)
 844{
 845	int cpu, err_cpu;
 846
 847	uprobe_cpu_buffer = alloc_percpu(struct uprobe_cpu_buffer);
 848	if (uprobe_cpu_buffer == NULL)
 849		return -ENOMEM;
 850
 851	for_each_possible_cpu(cpu) {
 852		struct page *p = alloc_pages_node(cpu_to_node(cpu),
 853						  GFP_KERNEL, 0);
 854		if (p == NULL) {
 855			err_cpu = cpu;
 856			goto err;
 857		}
 858		per_cpu_ptr(uprobe_cpu_buffer, cpu)->buf = page_address(p);
 859		mutex_init(&per_cpu_ptr(uprobe_cpu_buffer, cpu)->mutex);
 860	}
 861
 862	return 0;
 863
 864err:
 865	for_each_possible_cpu(cpu) {
 866		if (cpu == err_cpu)
 867			break;
 868		free_page((unsigned long)per_cpu_ptr(uprobe_cpu_buffer, cpu)->buf);
 869	}
 870
 871	free_percpu(uprobe_cpu_buffer);
 872	return -ENOMEM;
 873}
 874
 875static int uprobe_buffer_enable(void)
 876{
 877	int ret = 0;
 878
 879	BUG_ON(!mutex_is_locked(&event_mutex));
 880
 881	if (uprobe_buffer_refcnt++ == 0) {
 882		ret = uprobe_buffer_init();
 883		if (ret < 0)
 884			uprobe_buffer_refcnt--;
 885	}
 886
 887	return ret;
 888}
 889
 890static void uprobe_buffer_disable(void)
 891{
 892	int cpu;
 893
 894	BUG_ON(!mutex_is_locked(&event_mutex));
 895
 896	if (--uprobe_buffer_refcnt == 0) {
 897		for_each_possible_cpu(cpu)
 898			free_page((unsigned long)per_cpu_ptr(uprobe_cpu_buffer,
 899							     cpu)->buf);
 900
 901		free_percpu(uprobe_cpu_buffer);
 902		uprobe_cpu_buffer = NULL;
 903	}
 904}
 905
 906static struct uprobe_cpu_buffer *uprobe_buffer_get(void)
 907{
 908	struct uprobe_cpu_buffer *ucb;
 909	int cpu;
 910
 911	cpu = raw_smp_processor_id();
 912	ucb = per_cpu_ptr(uprobe_cpu_buffer, cpu);
 913
 914	/*
 915	 * Use per-cpu buffers for fastest access, but we might migrate
 916	 * so the mutex makes sure we have sole access to it.
 917	 */
 918	mutex_lock(&ucb->mutex);
 919
 920	return ucb;
 921}
 922
 923static void uprobe_buffer_put(struct uprobe_cpu_buffer *ucb)
 924{
 925	mutex_unlock(&ucb->mutex);
 926}
 927
 928static void __uprobe_trace_func(struct trace_uprobe *tu,
 929				unsigned long func, struct pt_regs *regs,
 930				struct uprobe_cpu_buffer *ucb, int dsize,
 931				struct trace_event_file *trace_file)
 932{
 933	struct uprobe_trace_entry_head *entry;
 934	struct trace_buffer *buffer;
 935	struct ring_buffer_event *event;
 
 936	void *data;
 937	int size, esize;
 938	struct trace_event_call *call = trace_probe_event_call(&tu->tp);
 939
 940	WARN_ON(call != trace_file->event_call);
 941
 942	if (WARN_ON_ONCE(tu->tp.size + dsize > PAGE_SIZE))
 943		return;
 944
 945	if (trace_trigger_soft_disabled(trace_file))
 946		return;
 947
 948	esize = SIZEOF_TRACE_ENTRY(is_ret_probe(tu));
 949	size = esize + tu->tp.size + dsize;
 950	event = trace_event_buffer_lock_reserve(&buffer, trace_file,
 951						call->event.type, size, 0, 0);
 952	if (!event)
 953		return;
 954
 955	entry = ring_buffer_event_data(event);
 956	if (is_ret_probe(tu)) {
 957		entry->vaddr[0] = func;
 958		entry->vaddr[1] = instruction_pointer(regs);
 959		data = DATAOF_TRACE_ENTRY(entry, true);
 960	} else {
 961		entry->vaddr[0] = instruction_pointer(regs);
 962		data = DATAOF_TRACE_ENTRY(entry, false);
 963	}
 964
 965	memcpy(data, ucb->buf, tu->tp.size + dsize);
 966
 967	event_trigger_unlock_commit(trace_file, buffer, event, entry, 0, 0);
 968}
 969
 970/* uprobe handler */
 971static int uprobe_trace_func(struct trace_uprobe *tu, struct pt_regs *regs,
 972			     struct uprobe_cpu_buffer *ucb, int dsize)
 973{
 974	struct event_file_link *link;
 975
 976	if (is_ret_probe(tu))
 977		return 0;
 978
 979	rcu_read_lock();
 980	trace_probe_for_each_link_rcu(link, &tu->tp)
 981		__uprobe_trace_func(tu, 0, regs, ucb, dsize, link->file);
 982	rcu_read_unlock();
 983
 984	return 0;
 985}
 986
 987static void uretprobe_trace_func(struct trace_uprobe *tu, unsigned long func,
 988				 struct pt_regs *regs,
 989				 struct uprobe_cpu_buffer *ucb, int dsize)
 990{
 991	struct event_file_link *link;
 992
 993	rcu_read_lock();
 994	trace_probe_for_each_link_rcu(link, &tu->tp)
 995		__uprobe_trace_func(tu, func, regs, ucb, dsize, link->file);
 996	rcu_read_unlock();
 997}
 998
 999/* Event entry printers */
1000static enum print_line_t
1001print_uprobe_event(struct trace_iterator *iter, int flags, struct trace_event *event)
1002{
1003	struct uprobe_trace_entry_head *entry;
1004	struct trace_seq *s = &iter->seq;
1005	struct trace_uprobe *tu;
1006	u8 *data;
 
1007
1008	entry = (struct uprobe_trace_entry_head *)iter->ent;
1009	tu = trace_uprobe_primary_from_call(
1010		container_of(event, struct trace_event_call, event));
1011	if (unlikely(!tu))
1012		goto out;
1013
1014	if (is_ret_probe(tu)) {
1015		trace_seq_printf(s, "%s: (0x%lx <- 0x%lx)",
1016				 trace_probe_name(&tu->tp),
1017				 entry->vaddr[1], entry->vaddr[0]);
 
1018		data = DATAOF_TRACE_ENTRY(entry, true);
1019	} else {
1020		trace_seq_printf(s, "%s: (0x%lx)",
1021				 trace_probe_name(&tu->tp),
1022				 entry->vaddr[0]);
 
1023		data = DATAOF_TRACE_ENTRY(entry, false);
1024	}
1025
1026	if (print_probe_args(s, tu->tp.args, tu->tp.nr_args, data, entry) < 0)
1027		goto out;
 
 
 
 
1028
1029	trace_seq_putc(s, '\n');
 
1030
1031 out:
1032	return trace_handle_return(s);
1033}
1034
1035typedef bool (*filter_func_t)(struct uprobe_consumer *self,
1036				enum uprobe_filter_ctx ctx,
1037				struct mm_struct *mm);
1038
1039static int trace_uprobe_enable(struct trace_uprobe *tu, filter_func_t filter)
 
 
1040{
 
 
1041	int ret;
1042
1043	tu->consumer.filter = filter;
1044	tu->inode = d_real_inode(tu->path.dentry);
 
 
1045
1046	if (tu->ref_ctr_offset)
1047		ret = uprobe_register_refctr(tu->inode, tu->offset,
1048				tu->ref_ctr_offset, &tu->consumer);
1049	else
1050		ret = uprobe_register(tu->inode, tu->offset, &tu->consumer);
1051
1052	if (ret)
1053		tu->inode = NULL;
 
1054
1055	return ret;
1056}
1057
1058static void __probe_event_disable(struct trace_probe *tp)
1059{
1060	struct trace_probe *pos;
1061	struct trace_uprobe *tu;
1062
1063	tu = container_of(tp, struct trace_uprobe, tp);
1064	WARN_ON(!uprobe_filter_is_empty(tu->tp.event->filter));
1065
1066	list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
1067		tu = container_of(pos, struct trace_uprobe, tp);
1068		if (!tu->inode)
1069			continue;
1070
1071		uprobe_unregister(tu->inode, tu->offset, &tu->consumer);
1072		tu->inode = NULL;
1073	}
1074}
1075
1076static int probe_event_enable(struct trace_event_call *call,
1077			struct trace_event_file *file, filter_func_t filter)
1078{
1079	struct trace_probe *pos, *tp;
1080	struct trace_uprobe *tu;
1081	bool enabled;
1082	int ret;
1083
1084	tp = trace_probe_primary_from_call(call);
1085	if (WARN_ON_ONCE(!tp))
1086		return -ENODEV;
1087	enabled = trace_probe_is_enabled(tp);
1088
1089	/* This may also change "enabled" state */
1090	if (file) {
1091		if (trace_probe_test_flag(tp, TP_FLAG_PROFILE))
1092			return -EINTR;
1093
1094		ret = trace_probe_add_file(tp, file);
1095		if (ret < 0)
1096			return ret;
1097	} else {
1098		if (trace_probe_test_flag(tp, TP_FLAG_TRACE))
1099			return -EINTR;
1100
1101		trace_probe_set_flag(tp, TP_FLAG_PROFILE);
1102	}
1103
1104	tu = container_of(tp, struct trace_uprobe, tp);
1105	WARN_ON(!uprobe_filter_is_empty(tu->tp.event->filter));
1106
1107	if (enabled)
1108		return 0;
1109
1110	ret = uprobe_buffer_enable();
1111	if (ret)
1112		goto err_flags;
1113
1114	list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
1115		tu = container_of(pos, struct trace_uprobe, tp);
1116		ret = trace_uprobe_enable(tu, filter);
1117		if (ret) {
1118			__probe_event_disable(tp);
1119			goto err_buffer;
1120		}
1121	}
1122
1123	return 0;
1124
1125 err_buffer:
1126	uprobe_buffer_disable();
1127
1128 err_flags:
1129	if (file)
1130		trace_probe_remove_file(tp, file);
1131	else
1132		trace_probe_clear_flag(tp, TP_FLAG_PROFILE);
1133
1134	return ret;
1135}
1136
1137static void probe_event_disable(struct trace_event_call *call,
1138				struct trace_event_file *file)
1139{
1140	struct trace_probe *tp;
1141
1142	tp = trace_probe_primary_from_call(call);
1143	if (WARN_ON_ONCE(!tp))
1144		return;
1145
1146	if (!trace_probe_is_enabled(tp))
1147		return;
1148
1149	if (file) {
1150		if (trace_probe_remove_file(tp, file) < 0)
1151			return;
1152
1153		if (trace_probe_is_enabled(tp))
 
 
 
 
 
1154			return;
1155	} else
1156		trace_probe_clear_flag(tp, TP_FLAG_PROFILE);
 
 
 
 
1157
1158	__probe_event_disable(tp);
1159	uprobe_buffer_disable();
1160}
1161
1162static int uprobe_event_define_fields(struct trace_event_call *event_call)
1163{
1164	int ret, size;
1165	struct uprobe_trace_entry_head field;
1166	struct trace_uprobe *tu;
1167
1168	tu = trace_uprobe_primary_from_call(event_call);
1169	if (unlikely(!tu))
1170		return -ENODEV;
1171
1172	if (is_ret_probe(tu)) {
1173		DEFINE_FIELD(unsigned long, vaddr[0], FIELD_STRING_FUNC, 0);
1174		DEFINE_FIELD(unsigned long, vaddr[1], FIELD_STRING_RETIP, 0);
1175		size = SIZEOF_TRACE_ENTRY(true);
1176	} else {
1177		DEFINE_FIELD(unsigned long, vaddr[0], FIELD_STRING_IP, 0);
1178		size = SIZEOF_TRACE_ENTRY(false);
1179	}
 
 
 
 
 
 
 
 
1180
1181	return traceprobe_define_arg_fields(event_call, size, &tu->tp);
 
 
 
1182}
1183
1184#ifdef CONFIG_PERF_EVENTS
1185static bool
1186__uprobe_perf_filter(struct trace_uprobe_filter *filter, struct mm_struct *mm)
1187{
1188	struct perf_event *event;
1189
1190	if (filter->nr_systemwide)
1191		return true;
1192
1193	list_for_each_entry(event, &filter->perf_events, hw.tp_list) {
1194		if (event->hw.target->mm == mm)
1195			return true;
1196	}
1197
1198	return false;
1199}
1200
1201static inline bool
1202trace_uprobe_filter_event(struct trace_uprobe_filter *filter,
1203			  struct perf_event *event)
1204{
1205	return __uprobe_perf_filter(filter, event->hw.target->mm);
1206}
1207
1208static bool trace_uprobe_filter_remove(struct trace_uprobe_filter *filter,
1209				       struct perf_event *event)
1210{
1211	bool done;
1212
1213	write_lock(&filter->rwlock);
1214	if (event->hw.target) {
1215		list_del(&event->hw.tp_list);
1216		done = filter->nr_systemwide ||
1217			(event->hw.target->flags & PF_EXITING) ||
1218			trace_uprobe_filter_event(filter, event);
1219	} else {
1220		filter->nr_systemwide--;
1221		done = filter->nr_systemwide;
1222	}
1223	write_unlock(&filter->rwlock);
1224
1225	return done;
1226}
1227
1228/* This returns true if the filter always covers target mm */
1229static bool trace_uprobe_filter_add(struct trace_uprobe_filter *filter,
1230				    struct perf_event *event)
1231{
1232	bool done;
1233
1234	write_lock(&filter->rwlock);
1235	if (event->hw.target) {
1236		/*
1237		 * event->parent != NULL means copy_process(), we can avoid
1238		 * uprobe_apply(). current->mm must be probed and we can rely
1239		 * on dup_mmap() which preserves the already installed bp's.
1240		 *
1241		 * attr.enable_on_exec means that exec/mmap will install the
1242		 * breakpoints we need.
1243		 */
1244		done = filter->nr_systemwide ||
1245			event->parent || event->attr.enable_on_exec ||
1246			trace_uprobe_filter_event(filter, event);
1247		list_add(&event->hw.tp_list, &filter->perf_events);
1248	} else {
1249		done = filter->nr_systemwide;
1250		filter->nr_systemwide++;
1251	}
1252	write_unlock(&filter->rwlock);
 
 
 
1253
1254	return done;
1255}
1256
1257static int uprobe_perf_close(struct trace_event_call *call,
1258			     struct perf_event *event)
1259{
1260	struct trace_probe *pos, *tp;
1261	struct trace_uprobe *tu;
1262	int ret = 0;
1263
1264	tp = trace_probe_primary_from_call(call);
1265	if (WARN_ON_ONCE(!tp))
1266		return -ENODEV;
1267
1268	tu = container_of(tp, struct trace_uprobe, tp);
1269	if (trace_uprobe_filter_remove(tu->tp.event->filter, event))
1270		return 0;
1271
1272	list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
1273		tu = container_of(pos, struct trace_uprobe, tp);
1274		ret = uprobe_apply(tu->inode, tu->offset, &tu->consumer, false);
1275		if (ret)
1276			break;
1277	}
 
1278
1279	return ret;
1280}
1281
1282static int uprobe_perf_open(struct trace_event_call *call,
1283			    struct perf_event *event)
1284{
1285	struct trace_probe *pos, *tp;
1286	struct trace_uprobe *tu;
1287	int err = 0;
1288
1289	tp = trace_probe_primary_from_call(call);
1290	if (WARN_ON_ONCE(!tp))
1291		return -ENODEV;
1292
1293	tu = container_of(tp, struct trace_uprobe, tp);
1294	if (trace_uprobe_filter_add(tu->tp.event->filter, event))
1295		return 0;
1296
1297	list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
1298		err = uprobe_apply(tu->inode, tu->offset, &tu->consumer, true);
1299		if (err) {
1300			uprobe_perf_close(call, event);
1301			break;
1302		}
1303	}
1304
1305	return err;
1306}
1307
1308static bool uprobe_perf_filter(struct uprobe_consumer *uc,
1309				enum uprobe_filter_ctx ctx, struct mm_struct *mm)
1310{
1311	struct trace_uprobe_filter *filter;
1312	struct trace_uprobe *tu;
1313	int ret;
1314
1315	tu = container_of(uc, struct trace_uprobe, consumer);
1316	filter = tu->tp.event->filter;
1317
1318	read_lock(&filter->rwlock);
1319	ret = __uprobe_perf_filter(filter, mm);
1320	read_unlock(&filter->rwlock);
1321
1322	return ret;
1323}
1324
1325static void __uprobe_perf_func(struct trace_uprobe *tu,
1326			       unsigned long func, struct pt_regs *regs,
1327			       struct uprobe_cpu_buffer *ucb, int dsize)
1328{
1329	struct trace_event_call *call = trace_probe_event_call(&tu->tp);
1330	struct uprobe_trace_entry_head *entry;
1331	struct hlist_head *head;
1332	void *data;
1333	int size, esize;
1334	int rctx;
1335
1336	if (bpf_prog_array_valid(call)) {
1337		u32 ret;
1338
1339		preempt_disable();
1340		ret = trace_call_bpf(call, regs);
1341		preempt_enable();
1342		if (!ret)
1343			return;
1344	}
1345
1346	esize = SIZEOF_TRACE_ENTRY(is_ret_probe(tu));
1347
1348	size = esize + tu->tp.size + dsize;
1349	size = ALIGN(size + sizeof(u32), sizeof(u64)) - sizeof(u32);
1350	if (WARN_ONCE(size > PERF_MAX_TRACE_SIZE, "profile buffer not large enough"))
1351		return;
1352
1353	preempt_disable();
1354	head = this_cpu_ptr(call->perf_events);
1355	if (hlist_empty(head))
1356		goto out;
1357
1358	entry = perf_trace_buf_alloc(size, NULL, &rctx);
1359	if (!entry)
1360		goto out;
1361
1362	if (is_ret_probe(tu)) {
1363		entry->vaddr[0] = func;
1364		entry->vaddr[1] = instruction_pointer(regs);
1365		data = DATAOF_TRACE_ENTRY(entry, true);
1366	} else {
1367		entry->vaddr[0] = instruction_pointer(regs);
1368		data = DATAOF_TRACE_ENTRY(entry, false);
1369	}
1370
1371	memcpy(data, ucb->buf, tu->tp.size + dsize);
1372
1373	if (size - esize > tu->tp.size + dsize) {
1374		int len = tu->tp.size + dsize;
1375
1376		memset(data + len, 0, size - esize - len);
1377	}
1378
1379	perf_trace_buf_submit(entry, size, rctx, call->event.type, 1, regs,
1380			      head, NULL);
1381 out:
1382	preempt_enable();
1383}
1384
1385/* uprobe profile handler */
1386static int uprobe_perf_func(struct trace_uprobe *tu, struct pt_regs *regs,
1387			    struct uprobe_cpu_buffer *ucb, int dsize)
1388{
1389	if (!uprobe_perf_filter(&tu->consumer, 0, current->mm))
1390		return UPROBE_HANDLER_REMOVE;
1391
1392	if (!is_ret_probe(tu))
1393		__uprobe_perf_func(tu, 0, regs, ucb, dsize);
1394	return 0;
1395}
1396
1397static void uretprobe_perf_func(struct trace_uprobe *tu, unsigned long func,
1398				struct pt_regs *regs,
1399				struct uprobe_cpu_buffer *ucb, int dsize)
1400{
1401	__uprobe_perf_func(tu, func, regs, ucb, dsize);
1402}
1403
1404int bpf_get_uprobe_info(const struct perf_event *event, u32 *fd_type,
1405			const char **filename, u64 *probe_offset,
1406			bool perf_type_tracepoint)
1407{
1408	const char *pevent = trace_event_name(event->tp_event);
1409	const char *group = event->tp_event->class->system;
1410	struct trace_uprobe *tu;
1411
1412	if (perf_type_tracepoint)
1413		tu = find_probe_event(pevent, group);
1414	else
1415		tu = trace_uprobe_primary_from_call(event->tp_event);
1416	if (!tu)
1417		return -EINVAL;
1418
1419	*fd_type = is_ret_probe(tu) ? BPF_FD_TYPE_URETPROBE
1420				    : BPF_FD_TYPE_UPROBE;
1421	*filename = tu->filename;
1422	*probe_offset = tu->offset;
1423	return 0;
1424}
1425#endif	/* CONFIG_PERF_EVENTS */
1426
1427static int
1428trace_uprobe_register(struct trace_event_call *event, enum trace_reg type,
1429		      void *data)
1430{
1431	struct trace_event_file *file = data;
 
1432
1433	switch (type) {
1434	case TRACE_REG_REGISTER:
1435		return probe_event_enable(event, file, NULL);
1436
1437	case TRACE_REG_UNREGISTER:
1438		probe_event_disable(event, file);
1439		return 0;
1440
1441#ifdef CONFIG_PERF_EVENTS
1442	case TRACE_REG_PERF_REGISTER:
1443		return probe_event_enable(event, NULL, uprobe_perf_filter);
1444
1445	case TRACE_REG_PERF_UNREGISTER:
1446		probe_event_disable(event, NULL);
1447		return 0;
1448
1449	case TRACE_REG_PERF_OPEN:
1450		return uprobe_perf_open(event, data);
1451
1452	case TRACE_REG_PERF_CLOSE:
1453		return uprobe_perf_close(event, data);
1454
1455#endif
1456	default:
1457		return 0;
1458	}
 
1459}
1460
1461static int uprobe_dispatcher(struct uprobe_consumer *con, struct pt_regs *regs)
1462{
1463	struct trace_uprobe *tu;
1464	struct uprobe_dispatch_data udd;
1465	struct uprobe_cpu_buffer *ucb;
1466	int dsize, esize;
1467	int ret = 0;
1468
1469
1470	tu = container_of(con, struct trace_uprobe, consumer);
1471	tu->nhit++;
1472
1473	udd.tu = tu;
1474	udd.bp_addr = instruction_pointer(regs);
1475
1476	current->utask->vaddr = (unsigned long) &udd;
1477
 
 
 
 
 
 
1478	if (WARN_ON_ONCE(!uprobe_cpu_buffer))
1479		return 0;
1480
1481	dsize = __get_data_size(&tu->tp, regs);
1482	esize = SIZEOF_TRACE_ENTRY(is_ret_probe(tu));
1483
1484	ucb = uprobe_buffer_get();
1485	store_trace_args(ucb->buf, &tu->tp, regs, esize, dsize);
1486
1487	if (trace_probe_test_flag(&tu->tp, TP_FLAG_TRACE))
1488		ret |= uprobe_trace_func(tu, regs, ucb, dsize);
1489
1490#ifdef CONFIG_PERF_EVENTS
1491	if (trace_probe_test_flag(&tu->tp, TP_FLAG_PROFILE))
1492		ret |= uprobe_perf_func(tu, regs, ucb, dsize);
1493#endif
1494	uprobe_buffer_put(ucb);
1495	return ret;
1496}
1497
1498static int uretprobe_dispatcher(struct uprobe_consumer *con,
1499				unsigned long func, struct pt_regs *regs)
1500{
1501	struct trace_uprobe *tu;
1502	struct uprobe_dispatch_data udd;
1503	struct uprobe_cpu_buffer *ucb;
1504	int dsize, esize;
1505
1506	tu = container_of(con, struct trace_uprobe, consumer);
1507
1508	udd.tu = tu;
1509	udd.bp_addr = func;
1510
1511	current->utask->vaddr = (unsigned long) &udd;
1512
1513	if (WARN_ON_ONCE(!uprobe_cpu_buffer))
1514		return 0;
1515
1516	dsize = __get_data_size(&tu->tp, regs);
1517	esize = SIZEOF_TRACE_ENTRY(is_ret_probe(tu));
1518
1519	ucb = uprobe_buffer_get();
1520	store_trace_args(ucb->buf, &tu->tp, regs, esize, dsize);
1521
1522	if (trace_probe_test_flag(&tu->tp, TP_FLAG_TRACE))
1523		uretprobe_trace_func(tu, func, regs, ucb, dsize);
1524
1525#ifdef CONFIG_PERF_EVENTS
1526	if (trace_probe_test_flag(&tu->tp, TP_FLAG_PROFILE))
1527		uretprobe_perf_func(tu, func, regs, ucb, dsize);
1528#endif
1529	uprobe_buffer_put(ucb);
1530	return 0;
1531}
1532
1533static struct trace_event_functions uprobe_funcs = {
1534	.trace		= print_uprobe_event
1535};
1536
1537static struct trace_event_fields uprobe_fields_array[] = {
1538	{ .type = TRACE_FUNCTION_TYPE,
1539	  .define_fields = uprobe_event_define_fields },
1540	{}
1541};
1542
1543static inline void init_trace_event_call(struct trace_uprobe *tu)
1544{
1545	struct trace_event_call *call = trace_probe_event_call(&tu->tp);
1546	call->event.funcs = &uprobe_funcs;
1547	call->class->fields_array = uprobe_fields_array;
1548
1549	call->flags = TRACE_EVENT_FL_UPROBE | TRACE_EVENT_FL_CAP_ANY;
1550	call->class->reg = trace_uprobe_register;
1551}
1552
1553static int register_uprobe_event(struct trace_uprobe *tu)
1554{
1555	init_trace_event_call(tu);
1556
1557	return trace_probe_register_event_call(&tu->tp);
1558}
1559
1560static int unregister_uprobe_event(struct trace_uprobe *tu)
1561{
1562	return trace_probe_unregister_event_call(&tu->tp);
1563}
1564
1565#ifdef CONFIG_PERF_EVENTS
1566struct trace_event_call *
1567create_local_trace_uprobe(char *name, unsigned long offs,
1568			  unsigned long ref_ctr_offset, bool is_return)
1569{
1570	struct trace_uprobe *tu;
1571	struct path path;
1572	int ret;
1573
1574	ret = kern_path(name, LOOKUP_FOLLOW, &path);
1575	if (ret)
1576		return ERR_PTR(ret);
 
1577
1578	if (!d_is_reg(path.dentry)) {
1579		path_put(&path);
1580		return ERR_PTR(-EINVAL);
1581	}
1582
1583	/*
1584	 * local trace_kprobes are not added to dyn_event, so they are never
1585	 * searched in find_trace_kprobe(). Therefore, there is no concern of
1586	 * duplicated name "DUMMY_EVENT" here.
1587	 */
1588	tu = alloc_trace_uprobe(UPROBE_EVENT_SYSTEM, "DUMMY_EVENT", 0,
1589				is_return);
1590
1591	if (IS_ERR(tu)) {
1592		pr_info("Failed to allocate trace_uprobe.(%d)\n",
1593			(int)PTR_ERR(tu));
1594		path_put(&path);
1595		return ERR_CAST(tu);
1596	}
 
 
 
 
1597
1598	tu->offset = offs;
1599	tu->path = path;
1600	tu->ref_ctr_offset = ref_ctr_offset;
1601	tu->filename = kstrdup(name, GFP_KERNEL);
1602	init_trace_event_call(tu);
1603
1604	if (traceprobe_set_print_fmt(&tu->tp, is_ret_probe(tu)) < 0) {
1605		ret = -ENOMEM;
1606		goto error;
1607	}
1608
1609	return trace_probe_event_call(&tu->tp);
1610error:
1611	free_trace_uprobe(tu);
1612	return ERR_PTR(ret);
1613}
1614
1615void destroy_local_trace_uprobe(struct trace_event_call *event_call)
1616{
1617	struct trace_uprobe *tu;
1618
1619	tu = trace_uprobe_primary_from_call(event_call);
1620
1621	free_trace_uprobe(tu);
 
 
 
 
1622}
1623#endif /* CONFIG_PERF_EVENTS */
1624
1625/* Make a trace interface for controling probe points */
1626static __init int init_uprobe_trace(void)
1627{
1628	struct dentry *d_tracer;
1629	int ret;
1630
1631	ret = dyn_event_register(&trace_uprobe_ops);
1632	if (ret)
1633		return ret;
1634
1635	d_tracer = tracing_init_dentry();
1636	if (IS_ERR(d_tracer))
1637		return 0;
1638
1639	trace_create_file("uprobe_events", 0644, d_tracer,
1640				    NULL, &uprobe_events_ops);
1641	/* Profile interface */
1642	trace_create_file("uprobe_profile", 0444, d_tracer,
1643				    NULL, &uprobe_profile_ops);
1644	return 0;
1645}
1646
1647fs_initcall(init_uprobe_trace);