Linux Audio

Check our new training course

Loading...
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * trace_events_trigger - trace event triggers
   4 *
   5 * Copyright (C) 2013 Tom Zanussi <tom.zanussi@linux.intel.com>
   6 */
   7
   8#include <linux/security.h>
   9#include <linux/module.h>
  10#include <linux/ctype.h>
  11#include <linux/mutex.h>
  12#include <linux/slab.h>
  13#include <linux/rculist.h>
  14
  15#include "trace.h"
  16
  17static LIST_HEAD(trigger_commands);
  18static DEFINE_MUTEX(trigger_cmd_mutex);
  19
  20void trigger_data_free(struct event_trigger_data *data)
  21{
  22	if (data->cmd_ops->set_filter)
  23		data->cmd_ops->set_filter(NULL, data, NULL);
  24
  25	/* make sure current triggers exit before free */
  26	tracepoint_synchronize_unregister();
  27
  28	kfree(data);
  29}
  30
  31/**
  32 * event_triggers_call - Call triggers associated with a trace event
  33 * @file: The trace_event_file associated with the event
  34 * @buffer: The ring buffer that the event is being written to
  35 * @rec: The trace entry for the event, NULL for unconditional invocation
  36 * @event: The event meta data in the ring buffer
  37 *
  38 * For each trigger associated with an event, invoke the trigger
  39 * function registered with the associated trigger command.  If rec is
  40 * non-NULL, it means that the trigger requires further processing and
  41 * shouldn't be unconditionally invoked.  If rec is non-NULL and the
  42 * trigger has a filter associated with it, rec will checked against
  43 * the filter and if the record matches the trigger will be invoked.
  44 * If the trigger is a 'post_trigger', meaning it shouldn't be invoked
  45 * in any case until the current event is written, the trigger
  46 * function isn't invoked but the bit associated with the deferred
  47 * trigger is set in the return value.
  48 *
  49 * Returns an enum event_trigger_type value containing a set bit for
  50 * any trigger that should be deferred, ETT_NONE if nothing to defer.
  51 *
  52 * Called from tracepoint handlers (with rcu_read_lock_sched() held).
  53 *
  54 * Return: an enum event_trigger_type value containing a set bit for
  55 * any trigger that should be deferred, ETT_NONE if nothing to defer.
  56 */
  57enum event_trigger_type
  58event_triggers_call(struct trace_event_file *file,
  59		    struct trace_buffer *buffer, void *rec,
  60		    struct ring_buffer_event *event)
  61{
  62	struct event_trigger_data *data;
  63	enum event_trigger_type tt = ETT_NONE;
  64	struct event_filter *filter;
  65
  66	if (list_empty(&file->triggers))
  67		return tt;
  68
  69	list_for_each_entry_rcu(data, &file->triggers, list) {
  70		if (data->paused)
  71			continue;
  72		if (!rec) {
  73			data->ops->trigger(data, buffer, rec, event);
  74			continue;
  75		}
  76		filter = rcu_dereference_sched(data->filter);
  77		if (filter && !filter_match_preds(filter, rec))
  78			continue;
  79		if (event_command_post_trigger(data->cmd_ops)) {
  80			tt |= data->cmd_ops->trigger_type;
  81			continue;
  82		}
  83		data->ops->trigger(data, buffer, rec, event);
  84	}
  85	return tt;
  86}
  87EXPORT_SYMBOL_GPL(event_triggers_call);
  88
  89bool __trace_trigger_soft_disabled(struct trace_event_file *file)
  90{
  91	unsigned long eflags = file->flags;
  92
  93	if (eflags & EVENT_FILE_FL_TRIGGER_MODE)
  94		event_triggers_call(file, NULL, NULL, NULL);
  95	if (eflags & EVENT_FILE_FL_SOFT_DISABLED)
  96		return true;
  97	if (eflags & EVENT_FILE_FL_PID_FILTER)
  98		return trace_event_ignore_this_pid(file);
  99	return false;
 100}
 101EXPORT_SYMBOL_GPL(__trace_trigger_soft_disabled);
 102
 103/**
 104 * event_triggers_post_call - Call 'post_triggers' for a trace event
 105 * @file: The trace_event_file associated with the event
 106 * @tt: enum event_trigger_type containing a set bit for each trigger to invoke
 107 *
 108 * For each trigger associated with an event, invoke the trigger
 109 * function registered with the associated trigger command, if the
 110 * corresponding bit is set in the tt enum passed into this function.
 111 * See @event_triggers_call for details on how those bits are set.
 112 *
 113 * Called from tracepoint handlers (with rcu_read_lock_sched() held).
 114 */
 115void
 116event_triggers_post_call(struct trace_event_file *file,
 117			 enum event_trigger_type tt)
 118{
 119	struct event_trigger_data *data;
 120
 121	list_for_each_entry_rcu(data, &file->triggers, list) {
 122		if (data->paused)
 123			continue;
 124		if (data->cmd_ops->trigger_type & tt)
 125			data->ops->trigger(data, NULL, NULL, NULL);
 126	}
 127}
 128EXPORT_SYMBOL_GPL(event_triggers_post_call);
 129
 130#define SHOW_AVAILABLE_TRIGGERS	(void *)(1UL)
 131
 132static void *trigger_next(struct seq_file *m, void *t, loff_t *pos)
 133{
 134	struct trace_event_file *event_file = event_file_data(m->private);
 135
 136	if (t == SHOW_AVAILABLE_TRIGGERS) {
 137		(*pos)++;
 138		return NULL;
 139	}
 140	return seq_list_next(t, &event_file->triggers, pos);
 141}
 142
 143static bool check_user_trigger(struct trace_event_file *file)
 144{
 145	struct event_trigger_data *data;
 146
 147	list_for_each_entry_rcu(data, &file->triggers, list,
 148				lockdep_is_held(&event_mutex)) {
 149		if (data->flags & EVENT_TRIGGER_FL_PROBE)
 150			continue;
 151		return true;
 152	}
 153	return false;
 154}
 155
 156static void *trigger_start(struct seq_file *m, loff_t *pos)
 157{
 158	struct trace_event_file *event_file;
 159
 160	/* ->stop() is called even if ->start() fails */
 161	mutex_lock(&event_mutex);
 162	event_file = event_file_file(m->private);
 163	if (unlikely(!event_file))
 164		return ERR_PTR(-ENODEV);
 165
 166	if (list_empty(&event_file->triggers) || !check_user_trigger(event_file))
 167		return *pos == 0 ? SHOW_AVAILABLE_TRIGGERS : NULL;
 168
 169	return seq_list_start(&event_file->triggers, *pos);
 170}
 171
 172static void trigger_stop(struct seq_file *m, void *t)
 173{
 174	mutex_unlock(&event_mutex);
 175}
 176
 177static int trigger_show(struct seq_file *m, void *v)
 178{
 179	struct event_trigger_data *data;
 180	struct event_command *p;
 181
 182	if (v == SHOW_AVAILABLE_TRIGGERS) {
 183		seq_puts(m, "# Available triggers:\n");
 184		seq_putc(m, '#');
 185		mutex_lock(&trigger_cmd_mutex);
 186		list_for_each_entry_reverse(p, &trigger_commands, list)
 187			seq_printf(m, " %s", p->name);
 188		seq_putc(m, '\n');
 189		mutex_unlock(&trigger_cmd_mutex);
 190		return 0;
 191	}
 192
 193	data = list_entry(v, struct event_trigger_data, list);
 194	data->ops->print(m, data);
 195
 196	return 0;
 197}
 198
 199static const struct seq_operations event_triggers_seq_ops = {
 200	.start = trigger_start,
 201	.next = trigger_next,
 202	.stop = trigger_stop,
 203	.show = trigger_show,
 204};
 205
 206static int event_trigger_regex_open(struct inode *inode, struct file *file)
 207{
 208	int ret;
 209
 210	ret = security_locked_down(LOCKDOWN_TRACEFS);
 211	if (ret)
 212		return ret;
 213
 214	mutex_lock(&event_mutex);
 215
 216	if (unlikely(!event_file_file(file))) {
 217		mutex_unlock(&event_mutex);
 218		return -ENODEV;
 219	}
 220
 221	if ((file->f_mode & FMODE_WRITE) &&
 222	    (file->f_flags & O_TRUNC)) {
 223		struct trace_event_file *event_file;
 224		struct event_command *p;
 225
 226		event_file = event_file_data(file);
 227
 228		list_for_each_entry(p, &trigger_commands, list) {
 229			if (p->unreg_all)
 230				p->unreg_all(event_file);
 231		}
 232	}
 233
 234	if (file->f_mode & FMODE_READ) {
 235		ret = seq_open(file, &event_triggers_seq_ops);
 236		if (!ret) {
 237			struct seq_file *m = file->private_data;
 238			m->private = file;
 239		}
 240	}
 241
 242	mutex_unlock(&event_mutex);
 243
 244	return ret;
 245}
 246
 247int trigger_process_regex(struct trace_event_file *file, char *buff)
 248{
 249	char *command, *next;
 250	struct event_command *p;
 251	int ret = -EINVAL;
 252
 253	next = buff = skip_spaces(buff);
 254	command = strsep(&next, ": \t");
 255	if (next) {
 256		next = skip_spaces(next);
 257		if (!*next)
 258			next = NULL;
 259	}
 260	command = (command[0] != '!') ? command : command + 1;
 261
 262	mutex_lock(&trigger_cmd_mutex);
 263	list_for_each_entry(p, &trigger_commands, list) {
 264		if (strcmp(p->name, command) == 0) {
 265			ret = p->parse(p, file, buff, command, next);
 266			goto out_unlock;
 267		}
 268	}
 269 out_unlock:
 270	mutex_unlock(&trigger_cmd_mutex);
 271
 272	return ret;
 273}
 274
 275static ssize_t event_trigger_regex_write(struct file *file,
 276					 const char __user *ubuf,
 277					 size_t cnt, loff_t *ppos)
 278{
 279	struct trace_event_file *event_file;
 280	ssize_t ret;
 281	char *buf;
 282
 283	if (!cnt)
 284		return 0;
 285
 286	if (cnt >= PAGE_SIZE)
 287		return -EINVAL;
 288
 289	buf = memdup_user_nul(ubuf, cnt);
 290	if (IS_ERR(buf))
 291		return PTR_ERR(buf);
 292
 293	strim(buf);
 294
 295	mutex_lock(&event_mutex);
 296	event_file = event_file_file(file);
 297	if (unlikely(!event_file)) {
 298		mutex_unlock(&event_mutex);
 299		kfree(buf);
 300		return -ENODEV;
 301	}
 302	ret = trigger_process_regex(event_file, buf);
 303	mutex_unlock(&event_mutex);
 304
 305	kfree(buf);
 306	if (ret < 0)
 307		goto out;
 308
 309	*ppos += cnt;
 310	ret = cnt;
 311 out:
 312	return ret;
 313}
 314
 315static int event_trigger_regex_release(struct inode *inode, struct file *file)
 316{
 317	mutex_lock(&event_mutex);
 318
 319	if (file->f_mode & FMODE_READ)
 320		seq_release(inode, file);
 321
 322	mutex_unlock(&event_mutex);
 323
 324	return 0;
 325}
 326
 327static ssize_t
 328event_trigger_write(struct file *filp, const char __user *ubuf,
 329		    size_t cnt, loff_t *ppos)
 330{
 331	return event_trigger_regex_write(filp, ubuf, cnt, ppos);
 332}
 333
 334static int
 335event_trigger_open(struct inode *inode, struct file *filp)
 336{
 337	/* Checks for tracefs lockdown */
 338	return event_trigger_regex_open(inode, filp);
 339}
 340
 341static int
 342event_trigger_release(struct inode *inode, struct file *file)
 343{
 344	return event_trigger_regex_release(inode, file);
 345}
 346
 347const struct file_operations event_trigger_fops = {
 348	.open = event_trigger_open,
 349	.read = seq_read,
 350	.write = event_trigger_write,
 351	.llseek = tracing_lseek,
 352	.release = event_trigger_release,
 353};
 354
 355/*
 356 * Currently we only register event commands from __init, so mark this
 357 * __init too.
 358 */
 359__init int register_event_command(struct event_command *cmd)
 360{
 361	struct event_command *p;
 362	int ret = 0;
 363
 364	mutex_lock(&trigger_cmd_mutex);
 365	list_for_each_entry(p, &trigger_commands, list) {
 366		if (strcmp(cmd->name, p->name) == 0) {
 367			ret = -EBUSY;
 368			goto out_unlock;
 369		}
 370	}
 371	list_add(&cmd->list, &trigger_commands);
 372 out_unlock:
 373	mutex_unlock(&trigger_cmd_mutex);
 374
 375	return ret;
 376}
 377
 378/*
 379 * Currently we only unregister event commands from __init, so mark
 380 * this __init too.
 381 */
 382__init int unregister_event_command(struct event_command *cmd)
 383{
 384	struct event_command *p, *n;
 385	int ret = -ENODEV;
 386
 387	mutex_lock(&trigger_cmd_mutex);
 388	list_for_each_entry_safe(p, n, &trigger_commands, list) {
 389		if (strcmp(cmd->name, p->name) == 0) {
 390			ret = 0;
 391			list_del_init(&p->list);
 392			goto out_unlock;
 393		}
 394	}
 395 out_unlock:
 396	mutex_unlock(&trigger_cmd_mutex);
 397
 398	return ret;
 399}
 400
 401/**
 402 * event_trigger_print - Generic event_trigger_ops @print implementation
 403 * @name: The name of the event trigger
 404 * @m: The seq_file being printed to
 405 * @data: Trigger-specific data
 406 * @filter_str: filter_str to print, if present
 407 *
 408 * Common implementation for event triggers to print themselves.
 409 *
 410 * Usually wrapped by a function that simply sets the @name of the
 411 * trigger command and then invokes this.
 412 *
 413 * Return: 0 on success, errno otherwise
 414 */
 415static int
 416event_trigger_print(const char *name, struct seq_file *m,
 417		    void *data, char *filter_str)
 418{
 419	long count = (long)data;
 420
 421	seq_puts(m, name);
 422
 423	if (count == -1)
 424		seq_puts(m, ":unlimited");
 425	else
 426		seq_printf(m, ":count=%ld", count);
 427
 428	if (filter_str)
 429		seq_printf(m, " if %s\n", filter_str);
 430	else
 431		seq_putc(m, '\n');
 432
 433	return 0;
 434}
 435
 436/**
 437 * event_trigger_init - Generic event_trigger_ops @init implementation
 
 438 * @data: Trigger-specific data
 439 *
 440 * Common implementation of event trigger initialization.
 441 *
 442 * Usually used directly as the @init method in event trigger
 443 * implementations.
 444 *
 445 * Return: 0 on success, errno otherwise
 446 */
 447int event_trigger_init(struct event_trigger_data *data)
 
 448{
 449	data->ref++;
 450	return 0;
 451}
 452
 453/**
 454 * event_trigger_free - Generic event_trigger_ops @free implementation
 
 455 * @data: Trigger-specific data
 456 *
 457 * Common implementation of event trigger de-initialization.
 458 *
 459 * Usually used directly as the @free method in event trigger
 460 * implementations.
 461 */
 462static void
 463event_trigger_free(struct event_trigger_data *data)
 
 464{
 465	if (WARN_ON_ONCE(data->ref <= 0))
 466		return;
 467
 468	data->ref--;
 469	if (!data->ref)
 470		trigger_data_free(data);
 471}
 472
 473int trace_event_trigger_enable_disable(struct trace_event_file *file,
 474				       int trigger_enable)
 475{
 476	int ret = 0;
 477
 478	if (trigger_enable) {
 479		if (atomic_inc_return(&file->tm_ref) > 1)
 480			return ret;
 481		set_bit(EVENT_FILE_FL_TRIGGER_MODE_BIT, &file->flags);
 482		ret = trace_event_enable_disable(file, 1, 1);
 483	} else {
 484		if (atomic_dec_return(&file->tm_ref) > 0)
 485			return ret;
 486		clear_bit(EVENT_FILE_FL_TRIGGER_MODE_BIT, &file->flags);
 487		ret = trace_event_enable_disable(file, 0, 1);
 488	}
 489
 490	return ret;
 491}
 492
 493/**
 494 * clear_event_triggers - Clear all triggers associated with a trace array
 495 * @tr: The trace array to clear
 496 *
 497 * For each trigger, the triggering event has its tm_ref decremented
 498 * via trace_event_trigger_enable_disable(), and any associated event
 499 * (in the case of enable/disable_event triggers) will have its sm_ref
 500 * decremented via free()->trace_event_enable_disable().  That
 501 * combination effectively reverses the soft-mode/trigger state added
 502 * by trigger registration.
 503 *
 504 * Must be called with event_mutex held.
 505 */
 506void
 507clear_event_triggers(struct trace_array *tr)
 508{
 509	struct trace_event_file *file;
 510
 511	list_for_each_entry(file, &tr->events, list) {
 512		struct event_trigger_data *data, *n;
 513		list_for_each_entry_safe(data, n, &file->triggers, list) {
 514			trace_event_trigger_enable_disable(file, 0);
 515			list_del_rcu(&data->list);
 516			if (data->ops->free)
 517				data->ops->free(data);
 518		}
 519	}
 520}
 521
 522/**
 523 * update_cond_flag - Set or reset the TRIGGER_COND bit
 524 * @file: The trace_event_file associated with the event
 525 *
 526 * If an event has triggers and any of those triggers has a filter or
 527 * a post_trigger, trigger invocation needs to be deferred until after
 528 * the current event has logged its data, and the event should have
 529 * its TRIGGER_COND bit set, otherwise the TRIGGER_COND bit should be
 530 * cleared.
 531 */
 532void update_cond_flag(struct trace_event_file *file)
 533{
 534	struct event_trigger_data *data;
 535	bool set_cond = false;
 536
 537	lockdep_assert_held(&event_mutex);
 538
 539	list_for_each_entry(data, &file->triggers, list) {
 540		if (data->filter || event_command_post_trigger(data->cmd_ops) ||
 541		    event_command_needs_rec(data->cmd_ops)) {
 542			set_cond = true;
 543			break;
 544		}
 545	}
 546
 547	if (set_cond)
 548		set_bit(EVENT_FILE_FL_TRIGGER_COND_BIT, &file->flags);
 549	else
 550		clear_bit(EVENT_FILE_FL_TRIGGER_COND_BIT, &file->flags);
 551}
 552
 553/**
 554 * register_trigger - Generic event_command @reg implementation
 555 * @glob: The raw string used to register the trigger
 
 556 * @data: Trigger-specific data to associate with the trigger
 557 * @file: The trace_event_file associated with the event
 558 *
 559 * Common implementation for event trigger registration.
 560 *
 561 * Usually used directly as the @reg method in event command
 562 * implementations.
 563 *
 564 * Return: 0 on success, errno otherwise
 565 */
 566static int register_trigger(char *glob,
 567			    struct event_trigger_data *data,
 568			    struct trace_event_file *file)
 569{
 570	struct event_trigger_data *test;
 571	int ret = 0;
 572
 573	lockdep_assert_held(&event_mutex);
 574
 575	list_for_each_entry(test, &file->triggers, list) {
 576		if (test->cmd_ops->trigger_type == data->cmd_ops->trigger_type) {
 577			ret = -EEXIST;
 578			goto out;
 579		}
 580	}
 581
 582	if (data->ops->init) {
 583		ret = data->ops->init(data);
 584		if (ret < 0)
 585			goto out;
 586	}
 587
 588	list_add_rcu(&data->list, &file->triggers);
 
 589
 590	update_cond_flag(file);
 591	ret = trace_event_trigger_enable_disable(file, 1);
 592	if (ret < 0) {
 593		list_del_rcu(&data->list);
 594		update_cond_flag(file);
 
 595	}
 596out:
 597	return ret;
 598}
 599
 600/*
 601 * True if the trigger was found and unregistered, else false.
 602 */
 603static bool try_unregister_trigger(char *glob,
 604				   struct event_trigger_data *test,
 605				   struct trace_event_file *file)
 606{
 607	struct event_trigger_data *data = NULL, *iter;
 608
 609	lockdep_assert_held(&event_mutex);
 610
 611	list_for_each_entry(iter, &file->triggers, list) {
 612		if (iter->cmd_ops->trigger_type == test->cmd_ops->trigger_type) {
 613			data = iter;
 614			list_del_rcu(&data->list);
 615			trace_event_trigger_enable_disable(file, 0);
 616			update_cond_flag(file);
 617			break;
 618		}
 619	}
 620
 621	if (data) {
 622		if (data->ops->free)
 623			data->ops->free(data);
 624
 625		return true;
 626	}
 627
 628	return false;
 629}
 630
 631/**
 632 * unregister_trigger - Generic event_command @unreg implementation
 633 * @glob: The raw string used to register the trigger
 
 634 * @test: Trigger-specific data used to find the trigger to remove
 635 * @file: The trace_event_file associated with the event
 636 *
 637 * Common implementation for event trigger unregistration.
 638 *
 639 * Usually used directly as the @unreg method in event command
 640 * implementations.
 641 */
 642static void unregister_trigger(char *glob,
 643			       struct event_trigger_data *test,
 644			       struct trace_event_file *file)
 645{
 646	try_unregister_trigger(glob, test, file);
 647}
 648
 649/*
 650 * Event trigger parsing helper functions.
 651 *
 652 * These functions help make it easier to write an event trigger
 653 * parsing function i.e. the struct event_command.parse() callback
 654 * function responsible for parsing and registering a trigger command
 655 * written to the 'trigger' file.
 656 *
 657 * A trigger command (or just 'trigger' for short) takes the form:
 658 *   [trigger] [if filter]
 659 *
 660 * The struct event_command.parse() callback (and other struct
 661 * event_command functions) refer to several components of a trigger
 662 * command.  Those same components are referenced by the event trigger
 663 * parsing helper functions defined below.  These components are:
 664 *
 665 *   cmd               - the trigger command name
 666 *   glob              - the trigger command name optionally prefaced with '!'
 667 *   param_and_filter  - text following cmd and ':'
 668 *   param             - text following cmd and ':' and stripped of filter
 669 *   filter            - the optional filter text following (and including) 'if'
 670 *
 671 * To illustrate the use of these componenents, here are some concrete
 672 * examples. For the following triggers:
 673 *
 674 *   echo 'traceon:5 if pid == 0' > trigger
 675 *     - 'traceon' is both cmd and glob
 676 *     - '5 if pid == 0' is the param_and_filter
 677 *     - '5' is the param
 678 *     - 'if pid == 0' is the filter
 679 *
 680 *   echo 'enable_event:sys:event:n' > trigger
 681 *     - 'enable_event' is both cmd and glob
 682 *     - 'sys:event:n' is the param_and_filter
 683 *     - 'sys:event:n' is the param
 684 *     - there is no filter
 685 *
 686 *   echo 'hist:keys=pid if prio > 50' > trigger
 687 *     - 'hist' is both cmd and glob
 688 *     - 'keys=pid if prio > 50' is the param_and_filter
 689 *     - 'keys=pid' is the param
 690 *     - 'if prio > 50' is the filter
 691 *
 692 *   echo '!enable_event:sys:event:n' > trigger
 693 *     - 'enable_event' the cmd
 694 *     - '!enable_event' is the glob
 695 *     - 'sys:event:n' is the param_and_filter
 696 *     - 'sys:event:n' is the param
 697 *     - there is no filter
 698 *
 699 *   echo 'traceoff' > trigger
 700 *     - 'traceoff' is both cmd and glob
 701 *     - there is no param_and_filter
 702 *     - there is no param
 703 *     - there is no filter
 704 *
 705 * There are a few different categories of event trigger covered by
 706 * these helpers:
 707 *
 708 *  - triggers that don't require a parameter e.g. traceon
 709 *  - triggers that do require a parameter e.g. enable_event and hist
 710 *  - triggers that though they may not require a param may support an
 711 *    optional 'n' param (n = number of times the trigger should fire)
 712 *    e.g.: traceon:5 or enable_event:sys:event:n
 713 *  - triggers that do not support an 'n' param e.g. hist
 714 *
 715 * These functions can be used or ignored as necessary - it all
 716 * depends on the complexity of the trigger, and the granularity of
 717 * the functions supported reflects the fact that some implementations
 718 * may need to customize certain aspects of their implementations and
 719 * won't need certain functions.  For instance, the hist trigger
 720 * implementation doesn't use event_trigger_separate_filter() because
 721 * it has special requirements for handling the filter.
 722 */
 723
 724/**
 725 * event_trigger_check_remove - check whether an event trigger specifies remove
 726 * @glob: The trigger command string, with optional remove(!) operator
 727 *
 728 * The event trigger callback implementations pass in 'glob' as a
 729 * parameter.  This is the command name either with or without a
 730 * remove(!)  operator.  This function simply parses the glob and
 731 * determines whether the command corresponds to a trigger removal or
 732 * a trigger addition.
 733 *
 734 * Return: true if this is a remove command, false otherwise
 735 */
 736bool event_trigger_check_remove(const char *glob)
 737{
 738	return (glob && glob[0] == '!') ? true : false;
 739}
 740
 741/**
 742 * event_trigger_empty_param - check whether the param is empty
 743 * @param: The trigger param string
 
 
 
 
 744 *
 745 * The event trigger callback implementations pass in 'param' as a
 746 * parameter.  This corresponds to the string following the command
 747 * name minus the command name.  This function can be called by a
 748 * callback implementation for any command that requires a param; a
 749 * callback that doesn't require a param can ignore it.
 750 *
 751 * Return: true if this is an empty param, false otherwise
 752 */
 753bool event_trigger_empty_param(const char *param)
 754{
 755	return !param;
 756}
 757
 758/**
 759 * event_trigger_separate_filter - separate an event trigger from a filter
 760 * @param_and_filter: String containing trigger and possibly filter
 761 * @param: outparam, will be filled with a pointer to the trigger
 762 * @filter: outparam, will be filled with a pointer to the filter
 763 * @param_required: Specifies whether or not the param string is required
 764 *
 765 * Given a param string of the form '[trigger] [if filter]', this
 766 * function separates the filter from the trigger and returns the
 767 * trigger in @param and the filter in @filter.  Either the @param
 768 * or the @filter may be set to NULL by this function - if not set to
 769 * NULL, they will contain strings corresponding to the trigger and
 770 * filter.
 771 *
 772 * There are two cases that need to be handled with respect to the
 773 * passed-in param: either the param is required, or it is not
 774 * required.  If @param_required is set, and there's no param, it will
 775 * return -EINVAL.  If @param_required is not set and there's a param
 776 * that starts with a number, that corresponds to the case of a
 777 * trigger with :n (n = number of times the trigger should fire) and
 778 * the parsing continues normally; otherwise the function just returns
 779 * and assumes param just contains a filter and there's nothing else
 780 * to do.
 781 *
 782 * Return: 0 on success, errno otherwise
 783 */
 784int event_trigger_separate_filter(char *param_and_filter, char **param,
 785				  char **filter, bool param_required)
 786{
 787	int ret = 0;
 788
 789	*param = *filter = NULL;
 790
 791	if (!param_and_filter) {
 792		if (param_required)
 793			ret = -EINVAL;
 794		goto out;
 795	}
 796
 797	/*
 798	 * Here we check for an optional param. The only legal
 799	 * optional param is :n, and if that's the case, continue
 800	 * below. Otherwise we assume what's left is a filter and
 801	 * return it as the filter string for the caller to deal with.
 802	 */
 803	if (!param_required && param_and_filter && !isdigit(param_and_filter[0])) {
 804		*filter = param_and_filter;
 805		goto out;
 806	}
 807
 808	/*
 809	 * Separate the param from the filter (param [if filter]).
 810	 * Here we have either an optional :n param or a required
 811	 * param and an optional filter.
 812	 */
 813	*param = strsep(&param_and_filter, " \t");
 814
 815	/*
 816	 * Here we have a filter, though it may be empty.
 817	 */
 818	if (param_and_filter) {
 819		*filter = skip_spaces(param_and_filter);
 820		if (!**filter)
 821			*filter = NULL;
 822	}
 823out:
 824	return ret;
 825}
 826
 827/**
 828 * event_trigger_alloc - allocate and init event_trigger_data for a trigger
 829 * @cmd_ops: The event_command operations for the trigger
 830 * @cmd: The cmd string
 831 * @param: The param string
 832 * @private_data: User data to associate with the event trigger
 833 *
 834 * Allocate an event_trigger_data instance and initialize it.  The
 835 * @cmd_ops are used along with the @cmd and @param to get the
 836 * trigger_ops to assign to the event_trigger_data.  @private_data can
 837 * also be passed in and associated with the event_trigger_data.
 838 *
 839 * Use event_trigger_free() to free an event_trigger_data object.
 840 *
 841 * Return: The trigger_data object success, NULL otherwise
 842 */
 843struct event_trigger_data *event_trigger_alloc(struct event_command *cmd_ops,
 844					       char *cmd,
 845					       char *param,
 846					       void *private_data)
 847{
 848	struct event_trigger_data *trigger_data;
 849	struct event_trigger_ops *trigger_ops;
 
 
 
 850
 851	trigger_ops = cmd_ops->get_trigger_ops(cmd, param);
 
 
 
 
 
 
 
 
 852
 
 
 
 853	trigger_data = kzalloc(sizeof(*trigger_data), GFP_KERNEL);
 854	if (!trigger_data)
 855		return NULL;
 856
 857	trigger_data->count = -1;
 858	trigger_data->ops = trigger_ops;
 859	trigger_data->cmd_ops = cmd_ops;
 860	trigger_data->private_data = private_data;
 861
 862	INIT_LIST_HEAD(&trigger_data->list);
 863	INIT_LIST_HEAD(&trigger_data->named_list);
 864	RCU_INIT_POINTER(trigger_data->filter, NULL);
 865
 866	return trigger_data;
 867}
 868
 869/**
 870 * event_trigger_parse_num - parse and return the number param for a trigger
 871 * @param: The param string
 872 * @trigger_data: The trigger_data for the trigger
 873 *
 874 * Parse the :n (n = number of times the trigger should fire) param
 875 * and set the count variable in the trigger_data to the parsed count.
 876 *
 877 * Return: 0 on success, errno otherwise
 878 */
 879int event_trigger_parse_num(char *param,
 880			    struct event_trigger_data *trigger_data)
 881{
 882	char *number;
 883	int ret = 0;
 884
 885	if (param) {
 886		number = strsep(&param, ":");
 887
 
 888		if (!strlen(number))
 889			return -EINVAL;
 890
 891		/*
 892		 * We use the callback data field (which is a pointer)
 893		 * as our counter.
 894		 */
 895		ret = kstrtoul(number, 0, &trigger_data->count);
 
 
 896	}
 897
 898	return ret;
 899}
 900
 901/**
 902 * event_trigger_set_filter - set an event trigger's filter
 903 * @cmd_ops: The event_command operations for the trigger
 904 * @file: The event file for the trigger's event
 905 * @param: The string containing the filter
 906 * @trigger_data: The trigger_data for the trigger
 907 *
 908 * Set the filter for the trigger.  If the filter is NULL, just return
 909 * without error.
 910 *
 911 * Return: 0 on success, errno otherwise
 912 */
 913int event_trigger_set_filter(struct event_command *cmd_ops,
 914			     struct trace_event_file *file,
 915			     char *param,
 916			     struct event_trigger_data *trigger_data)
 917{
 918	if (param && cmd_ops->set_filter)
 919		return cmd_ops->set_filter(param, trigger_data, file);
 920
 921	return 0;
 922}
 923
 924/**
 925 * event_trigger_reset_filter - reset an event trigger's filter
 926 * @cmd_ops: The event_command operations for the trigger
 927 * @trigger_data: The trigger_data for the trigger
 928 *
 929 * Reset the filter for the trigger to no filter.
 930 */
 931void event_trigger_reset_filter(struct event_command *cmd_ops,
 932				struct event_trigger_data *trigger_data)
 933{
 934	if (cmd_ops->set_filter)
 935		cmd_ops->set_filter(NULL, trigger_data, NULL);
 936}
 937
 938/**
 939 * event_trigger_register - register an event trigger
 940 * @cmd_ops: The event_command operations for the trigger
 941 * @file: The event file for the trigger's event
 942 * @glob: The trigger command string, with optional remove(!) operator
 943 * @trigger_data: The trigger_data for the trigger
 944 *
 945 * Register an event trigger.  The @cmd_ops are used to call the
 946 * cmd_ops->reg() function which actually does the registration.
 947 *
 948 * Return: 0 on success, errno otherwise
 949 */
 950int event_trigger_register(struct event_command *cmd_ops,
 951			   struct trace_event_file *file,
 952			   char *glob,
 953			   struct event_trigger_data *trigger_data)
 954{
 955	return cmd_ops->reg(glob, trigger_data, file);
 956}
 957
 958/**
 959 * event_trigger_unregister - unregister an event trigger
 960 * @cmd_ops: The event_command operations for the trigger
 961 * @file: The event file for the trigger's event
 962 * @glob: The trigger command string, with optional remove(!) operator
 963 * @trigger_data: The trigger_data for the trigger
 964 *
 965 * Unregister an event trigger.  The @cmd_ops are used to call the
 966 * cmd_ops->unreg() function which actually does the unregistration.
 967 */
 968void event_trigger_unregister(struct event_command *cmd_ops,
 969			      struct trace_event_file *file,
 970			      char *glob,
 971			      struct event_trigger_data *trigger_data)
 972{
 973	cmd_ops->unreg(glob, trigger_data, file);
 974}
 975
 976/*
 977 * End event trigger parsing helper functions.
 978 */
 979
 980/**
 981 * event_trigger_parse - Generic event_command @parse implementation
 982 * @cmd_ops: The command ops, used for trigger registration
 983 * @file: The trace_event_file associated with the event
 984 * @glob: The raw string used to register the trigger
 985 * @cmd: The cmd portion of the string used to register the trigger
 986 * @param_and_filter: The param and filter portion of the string used to register the trigger
 987 *
 988 * Common implementation for event command parsing and trigger
 989 * instantiation.
 990 *
 991 * Usually used directly as the @parse method in event command
 992 * implementations.
 993 *
 994 * Return: 0 on success, errno otherwise
 995 */
 996static int
 997event_trigger_parse(struct event_command *cmd_ops,
 998		    struct trace_event_file *file,
 999		    char *glob, char *cmd, char *param_and_filter)
1000{
1001	struct event_trigger_data *trigger_data;
1002	char *param, *filter;
1003	bool remove;
1004	int ret;
1005
1006	remove = event_trigger_check_remove(glob);
1007
1008	ret = event_trigger_separate_filter(param_and_filter, &param, &filter, false);
1009	if (ret)
1010		return ret;
1011
1012	ret = -ENOMEM;
1013	trigger_data = event_trigger_alloc(cmd_ops, cmd, param, file);
1014	if (!trigger_data)
1015		goto out;
1016
1017	if (remove) {
1018		event_trigger_unregister(cmd_ops, file, glob+1, trigger_data);
1019		kfree(trigger_data);
1020		ret = 0;
1021		goto out;
1022	}
1023
1024	ret = event_trigger_parse_num(param, trigger_data);
1025	if (ret)
1026		goto out_free;
1027
1028	ret = event_trigger_set_filter(cmd_ops, file, filter, trigger_data);
1029	if (ret < 0)
1030		goto out_free;
1031
 
1032	/* Up the trigger_data count to make sure reg doesn't free it on failure */
1033	event_trigger_init(trigger_data);
1034
1035	ret = event_trigger_register(cmd_ops, file, glob, trigger_data);
1036	if (ret)
1037		goto out_free;
 
 
 
 
 
 
 
1038
1039	/* Down the counter of trigger_data or free it if not used anymore */
1040	event_trigger_free(trigger_data);
1041 out:
1042	return ret;
1043
1044 out_free:
1045	event_trigger_reset_filter(cmd_ops, trigger_data);
 
1046	kfree(trigger_data);
1047	goto out;
1048}
1049
1050/**
1051 * set_trigger_filter - Generic event_command @set_filter implementation
1052 * @filter_str: The filter string for the trigger, NULL to remove filter
1053 * @trigger_data: Trigger-specific data
1054 * @file: The trace_event_file associated with the event
1055 *
1056 * Common implementation for event command filter parsing and filter
1057 * instantiation.
1058 *
1059 * Usually used directly as the @set_filter method in event command
1060 * implementations.
1061 *
1062 * Also used to remove a filter (if filter_str = NULL).
1063 *
1064 * Return: 0 on success, errno otherwise
1065 */
1066int set_trigger_filter(char *filter_str,
1067		       struct event_trigger_data *trigger_data,
1068		       struct trace_event_file *file)
1069{
1070	struct event_trigger_data *data = trigger_data;
1071	struct event_filter *filter = NULL, *tmp;
1072	int ret = -EINVAL;
1073	char *s;
1074
1075	if (!filter_str) /* clear the current filter */
1076		goto assign;
1077
1078	s = strsep(&filter_str, " \t");
1079
1080	if (!strlen(s) || strcmp(s, "if") != 0)
1081		goto out;
1082
1083	if (!filter_str)
1084		goto out;
1085
1086	/* The filter is for the 'trigger' event, not the triggered event */
1087	ret = create_event_filter(file->tr, file->event_call,
1088				  filter_str, true, &filter);
1089
1090	/* Only enabled set_str for error handling */
1091	if (filter) {
1092		kfree(filter->filter_string);
1093		filter->filter_string = NULL;
1094	}
1095
1096	/*
1097	 * If create_event_filter() fails, filter still needs to be freed.
1098	 * Which the calling code will do with data->filter.
1099	 */
1100 assign:
1101	tmp = rcu_access_pointer(data->filter);
1102
1103	rcu_assign_pointer(data->filter, filter);
1104
1105	if (tmp) {
1106		/*
1107		 * Make sure the call is done with the filter.
1108		 * It is possible that a filter could fail at boot up,
1109		 * and then this path will be called. Avoid the synchronization
1110		 * in that case.
1111		 */
1112		if (system_state != SYSTEM_BOOTING)
1113			tracepoint_synchronize_unregister();
1114		free_event_filter(tmp);
1115	}
1116
1117	kfree(data->filter_str);
1118	data->filter_str = NULL;
1119
1120	if (filter_str) {
1121		data->filter_str = kstrdup(filter_str, GFP_KERNEL);
1122		if (!data->filter_str) {
1123			free_event_filter(rcu_access_pointer(data->filter));
1124			data->filter = NULL;
1125			ret = -ENOMEM;
1126		}
1127	}
1128 out:
1129	return ret;
1130}
1131
1132static LIST_HEAD(named_triggers);
1133
1134/**
1135 * find_named_trigger - Find the common named trigger associated with @name
1136 * @name: The name of the set of named triggers to find the common data for
1137 *
1138 * Named triggers are sets of triggers that share a common set of
1139 * trigger data.  The first named trigger registered with a given name
1140 * owns the common trigger data that the others subsequently
1141 * registered with the same name will reference.  This function
1142 * returns the common trigger data associated with that first
1143 * registered instance.
1144 *
1145 * Return: the common trigger data for the given named trigger on
1146 * success, NULL otherwise.
1147 */
1148struct event_trigger_data *find_named_trigger(const char *name)
1149{
1150	struct event_trigger_data *data;
1151
1152	if (!name)
1153		return NULL;
1154
1155	list_for_each_entry(data, &named_triggers, named_list) {
1156		if (data->named_data)
1157			continue;
1158		if (strcmp(data->name, name) == 0)
1159			return data;
1160	}
1161
1162	return NULL;
1163}
1164
1165/**
1166 * is_named_trigger - determine if a given trigger is a named trigger
1167 * @test: The trigger data to test
1168 *
1169 * Return: true if 'test' is a named trigger, false otherwise.
1170 */
1171bool is_named_trigger(struct event_trigger_data *test)
1172{
1173	struct event_trigger_data *data;
1174
1175	list_for_each_entry(data, &named_triggers, named_list) {
1176		if (test == data)
1177			return true;
1178	}
1179
1180	return false;
1181}
1182
1183/**
1184 * save_named_trigger - save the trigger in the named trigger list
1185 * @name: The name of the named trigger set
1186 * @data: The trigger data to save
1187 *
1188 * Return: 0 if successful, negative error otherwise.
1189 */
1190int save_named_trigger(const char *name, struct event_trigger_data *data)
1191{
1192	data->name = kstrdup(name, GFP_KERNEL);
1193	if (!data->name)
1194		return -ENOMEM;
1195
1196	list_add(&data->named_list, &named_triggers);
1197
1198	return 0;
1199}
1200
1201/**
1202 * del_named_trigger - delete a trigger from the named trigger list
1203 * @data: The trigger data to delete
1204 */
1205void del_named_trigger(struct event_trigger_data *data)
1206{
1207	kfree(data->name);
1208	data->name = NULL;
1209
1210	list_del(&data->named_list);
1211}
1212
1213static void __pause_named_trigger(struct event_trigger_data *data, bool pause)
1214{
1215	struct event_trigger_data *test;
1216
1217	list_for_each_entry(test, &named_triggers, named_list) {
1218		if (strcmp(test->name, data->name) == 0) {
1219			if (pause) {
1220				test->paused_tmp = test->paused;
1221				test->paused = true;
1222			} else {
1223				test->paused = test->paused_tmp;
1224			}
1225		}
1226	}
1227}
1228
1229/**
1230 * pause_named_trigger - Pause all named triggers with the same name
1231 * @data: The trigger data of a named trigger to pause
1232 *
1233 * Pauses a named trigger along with all other triggers having the
1234 * same name.  Because named triggers share a common set of data,
1235 * pausing only one is meaningless, so pausing one named trigger needs
1236 * to pause all triggers with the same name.
1237 */
1238void pause_named_trigger(struct event_trigger_data *data)
1239{
1240	__pause_named_trigger(data, true);
1241}
1242
1243/**
1244 * unpause_named_trigger - Un-pause all named triggers with the same name
1245 * @data: The trigger data of a named trigger to unpause
1246 *
1247 * Un-pauses a named trigger along with all other triggers having the
1248 * same name.  Because named triggers share a common set of data,
1249 * unpausing only one is meaningless, so unpausing one named trigger
1250 * needs to unpause all triggers with the same name.
1251 */
1252void unpause_named_trigger(struct event_trigger_data *data)
1253{
1254	__pause_named_trigger(data, false);
1255}
1256
1257/**
1258 * set_named_trigger_data - Associate common named trigger data
1259 * @data: The trigger data to associate
1260 * @named_data: The common named trigger to be associated
1261 *
1262 * Named triggers are sets of triggers that share a common set of
1263 * trigger data.  The first named trigger registered with a given name
1264 * owns the common trigger data that the others subsequently
1265 * registered with the same name will reference.  This function
1266 * associates the common trigger data from the first trigger with the
1267 * given trigger.
1268 */
1269void set_named_trigger_data(struct event_trigger_data *data,
1270			    struct event_trigger_data *named_data)
1271{
1272	data->named_data = named_data;
1273}
1274
1275struct event_trigger_data *
1276get_named_trigger_data(struct event_trigger_data *data)
1277{
1278	return data->named_data;
1279}
1280
1281static void
1282traceon_trigger(struct event_trigger_data *data,
1283		struct trace_buffer *buffer, void *rec,
1284		struct ring_buffer_event *event)
1285{
1286	struct trace_event_file *file = data->private_data;
1287
1288	if (file) {
1289		if (tracer_tracing_is_on(file->tr))
1290			return;
1291
1292		tracer_tracing_on(file->tr);
1293		return;
1294	}
1295
1296	if (tracing_is_on())
1297		return;
1298
1299	tracing_on();
1300}
1301
1302static void
1303traceon_count_trigger(struct event_trigger_data *data,
1304		      struct trace_buffer *buffer, void *rec,
1305		      struct ring_buffer_event *event)
1306{
1307	struct trace_event_file *file = data->private_data;
1308
1309	if (file) {
1310		if (tracer_tracing_is_on(file->tr))
1311			return;
1312	} else {
1313		if (tracing_is_on())
1314			return;
1315	}
1316
1317	if (!data->count)
1318		return;
1319
1320	if (data->count != -1)
1321		(data->count)--;
1322
1323	if (file)
1324		tracer_tracing_on(file->tr);
1325	else
1326		tracing_on();
1327}
1328
1329static void
1330traceoff_trigger(struct event_trigger_data *data,
1331		 struct trace_buffer *buffer, void *rec,
1332		 struct ring_buffer_event *event)
1333{
1334	struct trace_event_file *file = data->private_data;
1335
1336	if (file) {
1337		if (!tracer_tracing_is_on(file->tr))
1338			return;
1339
1340		tracer_tracing_off(file->tr);
1341		return;
1342	}
1343
1344	if (!tracing_is_on())
1345		return;
1346
1347	tracing_off();
1348}
1349
1350static void
1351traceoff_count_trigger(struct event_trigger_data *data,
1352		       struct trace_buffer *buffer, void *rec,
1353		       struct ring_buffer_event *event)
1354{
1355	struct trace_event_file *file = data->private_data;
1356
1357	if (file) {
1358		if (!tracer_tracing_is_on(file->tr))
1359			return;
1360	} else {
1361		if (!tracing_is_on())
1362			return;
1363	}
1364
1365	if (!data->count)
1366		return;
1367
1368	if (data->count != -1)
1369		(data->count)--;
1370
1371	if (file)
1372		tracer_tracing_off(file->tr);
1373	else
1374		tracing_off();
1375}
1376
1377static int
1378traceon_trigger_print(struct seq_file *m, struct event_trigger_data *data)
 
1379{
1380	return event_trigger_print("traceon", m, (void *)data->count,
1381				   data->filter_str);
1382}
1383
1384static int
1385traceoff_trigger_print(struct seq_file *m, struct event_trigger_data *data)
 
1386{
1387	return event_trigger_print("traceoff", m, (void *)data->count,
1388				   data->filter_str);
1389}
1390
1391static struct event_trigger_ops traceon_trigger_ops = {
1392	.trigger		= traceon_trigger,
1393	.print			= traceon_trigger_print,
1394	.init			= event_trigger_init,
1395	.free			= event_trigger_free,
1396};
1397
1398static struct event_trigger_ops traceon_count_trigger_ops = {
1399	.trigger		= traceon_count_trigger,
1400	.print			= traceon_trigger_print,
1401	.init			= event_trigger_init,
1402	.free			= event_trigger_free,
1403};
1404
1405static struct event_trigger_ops traceoff_trigger_ops = {
1406	.trigger		= traceoff_trigger,
1407	.print			= traceoff_trigger_print,
1408	.init			= event_trigger_init,
1409	.free			= event_trigger_free,
1410};
1411
1412static struct event_trigger_ops traceoff_count_trigger_ops = {
1413	.trigger		= traceoff_count_trigger,
1414	.print			= traceoff_trigger_print,
1415	.init			= event_trigger_init,
1416	.free			= event_trigger_free,
1417};
1418
1419static struct event_trigger_ops *
1420onoff_get_trigger_ops(char *cmd, char *param)
1421{
1422	struct event_trigger_ops *ops;
1423
1424	/* we register both traceon and traceoff to this callback */
1425	if (strcmp(cmd, "traceon") == 0)
1426		ops = param ? &traceon_count_trigger_ops :
1427			&traceon_trigger_ops;
1428	else
1429		ops = param ? &traceoff_count_trigger_ops :
1430			&traceoff_trigger_ops;
1431
1432	return ops;
1433}
1434
1435static struct event_command trigger_traceon_cmd = {
1436	.name			= "traceon",
1437	.trigger_type		= ETT_TRACE_ONOFF,
1438	.parse			= event_trigger_parse,
1439	.reg			= register_trigger,
1440	.unreg			= unregister_trigger,
1441	.get_trigger_ops	= onoff_get_trigger_ops,
1442	.set_filter		= set_trigger_filter,
1443};
1444
1445static struct event_command trigger_traceoff_cmd = {
1446	.name			= "traceoff",
1447	.trigger_type		= ETT_TRACE_ONOFF,
1448	.flags			= EVENT_CMD_FL_POST_TRIGGER,
1449	.parse			= event_trigger_parse,
1450	.reg			= register_trigger,
1451	.unreg			= unregister_trigger,
1452	.get_trigger_ops	= onoff_get_trigger_ops,
1453	.set_filter		= set_trigger_filter,
1454};
1455
1456#ifdef CONFIG_TRACER_SNAPSHOT
1457static void
1458snapshot_trigger(struct event_trigger_data *data,
1459		 struct trace_buffer *buffer, void *rec,
1460		 struct ring_buffer_event *event)
1461{
1462	struct trace_event_file *file = data->private_data;
1463
1464	if (file)
1465		tracing_snapshot_instance(file->tr);
1466	else
1467		tracing_snapshot();
1468}
1469
1470static void
1471snapshot_count_trigger(struct event_trigger_data *data,
1472		       struct trace_buffer *buffer, void *rec,
1473		       struct ring_buffer_event *event)
1474{
1475	if (!data->count)
1476		return;
1477
1478	if (data->count != -1)
1479		(data->count)--;
1480
1481	snapshot_trigger(data, buffer, rec, event);
1482}
1483
1484static int
1485register_snapshot_trigger(char *glob,
1486			  struct event_trigger_data *data,
1487			  struct trace_event_file *file)
1488{
1489	int ret = tracing_arm_snapshot(file->tr);
1490
1491	if (ret < 0)
1492		return ret;
1493
1494	ret = register_trigger(glob, data, file);
1495	if (ret < 0)
1496		tracing_disarm_snapshot(file->tr);
1497	return ret;
1498}
1499
1500static void unregister_snapshot_trigger(char *glob,
1501					struct event_trigger_data *data,
1502					struct trace_event_file *file)
1503{
1504	if (try_unregister_trigger(glob, data, file))
1505		tracing_disarm_snapshot(file->tr);
1506}
1507
1508static int
1509snapshot_trigger_print(struct seq_file *m, struct event_trigger_data *data)
 
1510{
1511	return event_trigger_print("snapshot", m, (void *)data->count,
1512				   data->filter_str);
1513}
1514
1515static struct event_trigger_ops snapshot_trigger_ops = {
1516	.trigger		= snapshot_trigger,
1517	.print			= snapshot_trigger_print,
1518	.init			= event_trigger_init,
1519	.free			= event_trigger_free,
1520};
1521
1522static struct event_trigger_ops snapshot_count_trigger_ops = {
1523	.trigger		= snapshot_count_trigger,
1524	.print			= snapshot_trigger_print,
1525	.init			= event_trigger_init,
1526	.free			= event_trigger_free,
1527};
1528
1529static struct event_trigger_ops *
1530snapshot_get_trigger_ops(char *cmd, char *param)
1531{
1532	return param ? &snapshot_count_trigger_ops : &snapshot_trigger_ops;
1533}
1534
1535static struct event_command trigger_snapshot_cmd = {
1536	.name			= "snapshot",
1537	.trigger_type		= ETT_SNAPSHOT,
1538	.parse			= event_trigger_parse,
1539	.reg			= register_snapshot_trigger,
1540	.unreg			= unregister_snapshot_trigger,
1541	.get_trigger_ops	= snapshot_get_trigger_ops,
1542	.set_filter		= set_trigger_filter,
1543};
1544
1545static __init int register_trigger_snapshot_cmd(void)
1546{
1547	int ret;
1548
1549	ret = register_event_command(&trigger_snapshot_cmd);
1550	WARN_ON(ret < 0);
1551
1552	return ret;
1553}
1554#else
1555static __init int register_trigger_snapshot_cmd(void) { return 0; }
1556#endif /* CONFIG_TRACER_SNAPSHOT */
1557
1558#ifdef CONFIG_STACKTRACE
1559#ifdef CONFIG_UNWINDER_ORC
1560/* Skip 2:
1561 *   event_triggers_post_call()
1562 *   trace_event_raw_event_xxx()
1563 */
1564# define STACK_SKIP 2
1565#else
1566/*
1567 * Skip 4:
1568 *   stacktrace_trigger()
1569 *   event_triggers_post_call()
1570 *   trace_event_buffer_commit()
1571 *   trace_event_raw_event_xxx()
1572 */
1573#define STACK_SKIP 4
1574#endif
1575
1576static void
1577stacktrace_trigger(struct event_trigger_data *data,
1578		   struct trace_buffer *buffer,  void *rec,
1579		   struct ring_buffer_event *event)
1580{
1581	struct trace_event_file *file = data->private_data;
1582
1583	if (file)
1584		__trace_stack(file->tr, tracing_gen_ctx(), STACK_SKIP);
1585	else
1586		trace_dump_stack(STACK_SKIP);
1587}
1588
1589static void
1590stacktrace_count_trigger(struct event_trigger_data *data,
1591			 struct trace_buffer *buffer, void *rec,
1592			 struct ring_buffer_event *event)
1593{
1594	if (!data->count)
1595		return;
1596
1597	if (data->count != -1)
1598		(data->count)--;
1599
1600	stacktrace_trigger(data, buffer, rec, event);
1601}
1602
1603static int
1604stacktrace_trigger_print(struct seq_file *m, struct event_trigger_data *data)
 
1605{
1606	return event_trigger_print("stacktrace", m, (void *)data->count,
1607				   data->filter_str);
1608}
1609
1610static struct event_trigger_ops stacktrace_trigger_ops = {
1611	.trigger		= stacktrace_trigger,
1612	.print			= stacktrace_trigger_print,
1613	.init			= event_trigger_init,
1614	.free			= event_trigger_free,
1615};
1616
1617static struct event_trigger_ops stacktrace_count_trigger_ops = {
1618	.trigger		= stacktrace_count_trigger,
1619	.print			= stacktrace_trigger_print,
1620	.init			= event_trigger_init,
1621	.free			= event_trigger_free,
1622};
1623
1624static struct event_trigger_ops *
1625stacktrace_get_trigger_ops(char *cmd, char *param)
1626{
1627	return param ? &stacktrace_count_trigger_ops : &stacktrace_trigger_ops;
1628}
1629
1630static struct event_command trigger_stacktrace_cmd = {
1631	.name			= "stacktrace",
1632	.trigger_type		= ETT_STACKTRACE,
1633	.flags			= EVENT_CMD_FL_POST_TRIGGER,
1634	.parse			= event_trigger_parse,
1635	.reg			= register_trigger,
1636	.unreg			= unregister_trigger,
1637	.get_trigger_ops	= stacktrace_get_trigger_ops,
1638	.set_filter		= set_trigger_filter,
1639};
1640
1641static __init int register_trigger_stacktrace_cmd(void)
1642{
1643	int ret;
1644
1645	ret = register_event_command(&trigger_stacktrace_cmd);
1646	WARN_ON(ret < 0);
1647
1648	return ret;
1649}
1650#else
1651static __init int register_trigger_stacktrace_cmd(void) { return 0; }
1652#endif /* CONFIG_STACKTRACE */
1653
1654static __init void unregister_trigger_traceon_traceoff_cmds(void)
1655{
1656	unregister_event_command(&trigger_traceon_cmd);
1657	unregister_event_command(&trigger_traceoff_cmd);
1658}
1659
1660static void
1661event_enable_trigger(struct event_trigger_data *data,
1662		     struct trace_buffer *buffer,  void *rec,
1663		     struct ring_buffer_event *event)
1664{
1665	struct enable_trigger_data *enable_data = data->private_data;
1666
1667	if (enable_data->enable)
1668		clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &enable_data->file->flags);
1669	else
1670		set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &enable_data->file->flags);
1671}
1672
1673static void
1674event_enable_count_trigger(struct event_trigger_data *data,
1675			   struct trace_buffer *buffer,  void *rec,
1676			   struct ring_buffer_event *event)
1677{
1678	struct enable_trigger_data *enable_data = data->private_data;
1679
1680	if (!data->count)
1681		return;
1682
1683	/* Skip if the event is in a state we want to switch to */
1684	if (enable_data->enable == !(enable_data->file->flags & EVENT_FILE_FL_SOFT_DISABLED))
1685		return;
1686
1687	if (data->count != -1)
1688		(data->count)--;
1689
1690	event_enable_trigger(data, buffer, rec, event);
1691}
1692
1693int event_enable_trigger_print(struct seq_file *m,
 
1694			       struct event_trigger_data *data)
1695{
1696	struct enable_trigger_data *enable_data = data->private_data;
1697
1698	seq_printf(m, "%s:%s:%s",
1699		   enable_data->hist ?
1700		   (enable_data->enable ? ENABLE_HIST_STR : DISABLE_HIST_STR) :
1701		   (enable_data->enable ? ENABLE_EVENT_STR : DISABLE_EVENT_STR),
1702		   enable_data->file->event_call->class->system,
1703		   trace_event_name(enable_data->file->event_call));
1704
1705	if (data->count == -1)
1706		seq_puts(m, ":unlimited");
1707	else
1708		seq_printf(m, ":count=%ld", data->count);
1709
1710	if (data->filter_str)
1711		seq_printf(m, " if %s\n", data->filter_str);
1712	else
1713		seq_putc(m, '\n');
1714
1715	return 0;
1716}
1717
1718void event_enable_trigger_free(struct event_trigger_data *data)
 
1719{
1720	struct enable_trigger_data *enable_data = data->private_data;
1721
1722	if (WARN_ON_ONCE(data->ref <= 0))
1723		return;
1724
1725	data->ref--;
1726	if (!data->ref) {
1727		/* Remove the SOFT_MODE flag */
1728		trace_event_enable_disable(enable_data->file, 0, 1);
1729		trace_event_put_ref(enable_data->file->event_call);
1730		trigger_data_free(data);
1731		kfree(enable_data);
1732	}
1733}
1734
1735static struct event_trigger_ops event_enable_trigger_ops = {
1736	.trigger		= event_enable_trigger,
1737	.print			= event_enable_trigger_print,
1738	.init			= event_trigger_init,
1739	.free			= event_enable_trigger_free,
1740};
1741
1742static struct event_trigger_ops event_enable_count_trigger_ops = {
1743	.trigger		= event_enable_count_trigger,
1744	.print			= event_enable_trigger_print,
1745	.init			= event_trigger_init,
1746	.free			= event_enable_trigger_free,
1747};
1748
1749static struct event_trigger_ops event_disable_trigger_ops = {
1750	.trigger		= event_enable_trigger,
1751	.print			= event_enable_trigger_print,
1752	.init			= event_trigger_init,
1753	.free			= event_enable_trigger_free,
1754};
1755
1756static struct event_trigger_ops event_disable_count_trigger_ops = {
1757	.trigger		= event_enable_count_trigger,
1758	.print			= event_enable_trigger_print,
1759	.init			= event_trigger_init,
1760	.free			= event_enable_trigger_free,
1761};
1762
1763int event_enable_trigger_parse(struct event_command *cmd_ops,
1764			       struct trace_event_file *file,
1765			       char *glob, char *cmd, char *param_and_filter)
1766{
1767	struct trace_event_file *event_enable_file;
1768	struct enable_trigger_data *enable_data;
1769	struct event_trigger_data *trigger_data;
 
1770	struct trace_array *tr = file->tr;
1771	char *param, *filter;
1772	bool enable, remove;
1773	const char *system;
1774	const char *event;
1775	bool hist = false;
 
 
 
1776	int ret;
1777
1778	remove = event_trigger_check_remove(glob);
1779
1780	if (event_trigger_empty_param(param_and_filter))
1781		return -EINVAL;
1782
1783	ret = event_trigger_separate_filter(param_and_filter, &param, &filter, true);
1784	if (ret)
1785		return ret;
 
 
 
 
 
 
1786
1787	system = strsep(&param, ":");
1788	if (!param)
1789		return -EINVAL;
1790
1791	event = strsep(&param, ":");
1792
1793	ret = -EINVAL;
1794	event_enable_file = find_event_file(tr, system, event);
1795	if (!event_enable_file)
1796		goto out;
1797
1798#ifdef CONFIG_HIST_TRIGGERS
1799	hist = ((strcmp(cmd, ENABLE_HIST_STR) == 0) ||
1800		(strcmp(cmd, DISABLE_HIST_STR) == 0));
1801
1802	enable = ((strcmp(cmd, ENABLE_EVENT_STR) == 0) ||
1803		  (strcmp(cmd, ENABLE_HIST_STR) == 0));
1804#else
1805	enable = strcmp(cmd, ENABLE_EVENT_STR) == 0;
1806#endif
 
 
1807	ret = -ENOMEM;
 
 
 
1808
1809	enable_data = kzalloc(sizeof(*enable_data), GFP_KERNEL);
1810	if (!enable_data)
 
1811		goto out;
 
 
 
 
 
 
 
1812
1813	enable_data->hist = hist;
1814	enable_data->enable = enable;
1815	enable_data->file = event_enable_file;
 
1816
1817	trigger_data = event_trigger_alloc(cmd_ops, cmd, param, enable_data);
1818	if (!trigger_data) {
1819		kfree(enable_data);
1820		goto out;
1821	}
1822
1823	if (remove) {
1824		event_trigger_unregister(cmd_ops, file, glob+1, trigger_data);
1825		kfree(trigger_data);
1826		kfree(enable_data);
1827		ret = 0;
1828		goto out;
1829	}
1830
1831	/* Up the trigger_data count to make sure nothing frees it on failure */
1832	event_trigger_init(trigger_data);
1833
1834	ret = event_trigger_parse_num(param, trigger_data);
1835	if (ret)
1836		goto out_free;
 
 
 
1837
1838	ret = event_trigger_set_filter(cmd_ops, file, filter, trigger_data);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1839	if (ret < 0)
1840		goto out_free;
1841
 
1842	/* Don't let event modules unload while probe registered */
1843	ret = trace_event_try_get_ref(event_enable_file->event_call);
1844	if (!ret) {
1845		ret = -EBUSY;
1846		goto out_free;
1847	}
1848
1849	ret = trace_event_enable_disable(event_enable_file, 1, 1);
1850	if (ret < 0)
1851		goto out_put;
1852
1853	ret = event_trigger_register(cmd_ops, file, glob, trigger_data);
1854	if (ret)
 
 
 
 
 
1855		goto out_disable;
1856
1857	event_trigger_free(trigger_data);
 
 
 
1858 out:
1859	return ret;
 
1860 out_disable:
1861	trace_event_enable_disable(event_enable_file, 0, 1);
1862 out_put:
1863	trace_event_put_ref(event_enable_file->event_call);
1864 out_free:
1865	event_trigger_reset_filter(cmd_ops, trigger_data);
1866	event_trigger_free(trigger_data);
 
1867	kfree(enable_data);
1868
1869	goto out;
1870}
1871
1872int event_enable_register_trigger(char *glob,
 
1873				  struct event_trigger_data *data,
1874				  struct trace_event_file *file)
1875{
1876	struct enable_trigger_data *enable_data = data->private_data;
1877	struct enable_trigger_data *test_enable_data;
1878	struct event_trigger_data *test;
1879	int ret = 0;
1880
1881	lockdep_assert_held(&event_mutex);
1882
1883	list_for_each_entry(test, &file->triggers, list) {
1884		test_enable_data = test->private_data;
1885		if (test_enable_data &&
1886		    (test->cmd_ops->trigger_type ==
1887		     data->cmd_ops->trigger_type) &&
1888		    (test_enable_data->file == enable_data->file)) {
1889			ret = -EEXIST;
1890			goto out;
1891		}
1892	}
1893
1894	if (data->ops->init) {
1895		ret = data->ops->init(data);
1896		if (ret < 0)
1897			goto out;
1898	}
1899
1900	list_add_rcu(&data->list, &file->triggers);
 
1901
1902	update_cond_flag(file);
1903	ret = trace_event_trigger_enable_disable(file, 1);
1904	if (ret < 0) {
1905		list_del_rcu(&data->list);
1906		update_cond_flag(file);
 
1907	}
1908out:
1909	return ret;
1910}
1911
1912void event_enable_unregister_trigger(char *glob,
 
1913				     struct event_trigger_data *test,
1914				     struct trace_event_file *file)
1915{
1916	struct enable_trigger_data *test_enable_data = test->private_data;
1917	struct event_trigger_data *data = NULL, *iter;
1918	struct enable_trigger_data *enable_data;
 
 
1919
1920	lockdep_assert_held(&event_mutex);
1921
1922	list_for_each_entry(iter, &file->triggers, list) {
1923		enable_data = iter->private_data;
1924		if (enable_data &&
1925		    (iter->cmd_ops->trigger_type ==
1926		     test->cmd_ops->trigger_type) &&
1927		    (enable_data->file == test_enable_data->file)) {
1928			data = iter;
1929			list_del_rcu(&data->list);
1930			trace_event_trigger_enable_disable(file, 0);
1931			update_cond_flag(file);
1932			break;
1933		}
1934	}
1935
1936	if (data && data->ops->free)
1937		data->ops->free(data);
1938}
1939
1940static struct event_trigger_ops *
1941event_enable_get_trigger_ops(char *cmd, char *param)
1942{
1943	struct event_trigger_ops *ops;
1944	bool enable;
1945
1946#ifdef CONFIG_HIST_TRIGGERS
1947	enable = ((strcmp(cmd, ENABLE_EVENT_STR) == 0) ||
1948		  (strcmp(cmd, ENABLE_HIST_STR) == 0));
1949#else
1950	enable = strcmp(cmd, ENABLE_EVENT_STR) == 0;
1951#endif
1952	if (enable)
1953		ops = param ? &event_enable_count_trigger_ops :
1954			&event_enable_trigger_ops;
1955	else
1956		ops = param ? &event_disable_count_trigger_ops :
1957			&event_disable_trigger_ops;
1958
1959	return ops;
1960}
1961
1962static struct event_command trigger_enable_cmd = {
1963	.name			= ENABLE_EVENT_STR,
1964	.trigger_type		= ETT_EVENT_ENABLE,
1965	.parse			= event_enable_trigger_parse,
1966	.reg			= event_enable_register_trigger,
1967	.unreg			= event_enable_unregister_trigger,
1968	.get_trigger_ops	= event_enable_get_trigger_ops,
1969	.set_filter		= set_trigger_filter,
1970};
1971
1972static struct event_command trigger_disable_cmd = {
1973	.name			= DISABLE_EVENT_STR,
1974	.trigger_type		= ETT_EVENT_ENABLE,
1975	.parse			= event_enable_trigger_parse,
1976	.reg			= event_enable_register_trigger,
1977	.unreg			= event_enable_unregister_trigger,
1978	.get_trigger_ops	= event_enable_get_trigger_ops,
1979	.set_filter		= set_trigger_filter,
1980};
1981
1982static __init void unregister_trigger_enable_disable_cmds(void)
1983{
1984	unregister_event_command(&trigger_enable_cmd);
1985	unregister_event_command(&trigger_disable_cmd);
1986}
1987
1988static __init int register_trigger_enable_disable_cmds(void)
1989{
1990	int ret;
1991
1992	ret = register_event_command(&trigger_enable_cmd);
1993	if (WARN_ON(ret < 0))
1994		return ret;
1995	ret = register_event_command(&trigger_disable_cmd);
1996	if (WARN_ON(ret < 0))
1997		unregister_trigger_enable_disable_cmds();
1998
1999	return ret;
2000}
2001
2002static __init int register_trigger_traceon_traceoff_cmds(void)
2003{
2004	int ret;
2005
2006	ret = register_event_command(&trigger_traceon_cmd);
2007	if (WARN_ON(ret < 0))
2008		return ret;
2009	ret = register_event_command(&trigger_traceoff_cmd);
2010	if (WARN_ON(ret < 0))
2011		unregister_trigger_traceon_traceoff_cmds();
2012
2013	return ret;
2014}
2015
2016__init int register_trigger_cmds(void)
2017{
2018	register_trigger_traceon_traceoff_cmds();
2019	register_trigger_snapshot_cmd();
2020	register_trigger_stacktrace_cmd();
2021	register_trigger_enable_disable_cmds();
2022	register_trigger_hist_enable_disable_cmds();
2023	register_trigger_hist_cmd();
2024
2025	return 0;
2026}
v5.14.15
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * trace_events_trigger - trace event triggers
   4 *
   5 * Copyright (C) 2013 Tom Zanussi <tom.zanussi@linux.intel.com>
   6 */
   7
   8#include <linux/security.h>
   9#include <linux/module.h>
  10#include <linux/ctype.h>
  11#include <linux/mutex.h>
  12#include <linux/slab.h>
  13#include <linux/rculist.h>
  14
  15#include "trace.h"
  16
  17static LIST_HEAD(trigger_commands);
  18static DEFINE_MUTEX(trigger_cmd_mutex);
  19
  20void trigger_data_free(struct event_trigger_data *data)
  21{
  22	if (data->cmd_ops->set_filter)
  23		data->cmd_ops->set_filter(NULL, data, NULL);
  24
  25	/* make sure current triggers exit before free */
  26	tracepoint_synchronize_unregister();
  27
  28	kfree(data);
  29}
  30
  31/**
  32 * event_triggers_call - Call triggers associated with a trace event
  33 * @file: The trace_event_file associated with the event
 
  34 * @rec: The trace entry for the event, NULL for unconditional invocation
 
  35 *
  36 * For each trigger associated with an event, invoke the trigger
  37 * function registered with the associated trigger command.  If rec is
  38 * non-NULL, it means that the trigger requires further processing and
  39 * shouldn't be unconditionally invoked.  If rec is non-NULL and the
  40 * trigger has a filter associated with it, rec will checked against
  41 * the filter and if the record matches the trigger will be invoked.
  42 * If the trigger is a 'post_trigger', meaning it shouldn't be invoked
  43 * in any case until the current event is written, the trigger
  44 * function isn't invoked but the bit associated with the deferred
  45 * trigger is set in the return value.
  46 *
  47 * Returns an enum event_trigger_type value containing a set bit for
  48 * any trigger that should be deferred, ETT_NONE if nothing to defer.
  49 *
  50 * Called from tracepoint handlers (with rcu_read_lock_sched() held).
  51 *
  52 * Return: an enum event_trigger_type value containing a set bit for
  53 * any trigger that should be deferred, ETT_NONE if nothing to defer.
  54 */
  55enum event_trigger_type
  56event_triggers_call(struct trace_event_file *file,
  57		    struct trace_buffer *buffer, void *rec,
  58		    struct ring_buffer_event *event)
  59{
  60	struct event_trigger_data *data;
  61	enum event_trigger_type tt = ETT_NONE;
  62	struct event_filter *filter;
  63
  64	if (list_empty(&file->triggers))
  65		return tt;
  66
  67	list_for_each_entry_rcu(data, &file->triggers, list) {
  68		if (data->paused)
  69			continue;
  70		if (!rec) {
  71			data->ops->func(data, buffer, rec, event);
  72			continue;
  73		}
  74		filter = rcu_dereference_sched(data->filter);
  75		if (filter && !filter_match_preds(filter, rec))
  76			continue;
  77		if (event_command_post_trigger(data->cmd_ops)) {
  78			tt |= data->cmd_ops->trigger_type;
  79			continue;
  80		}
  81		data->ops->func(data, buffer, rec, event);
  82	}
  83	return tt;
  84}
  85EXPORT_SYMBOL_GPL(event_triggers_call);
  86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  87/**
  88 * event_triggers_post_call - Call 'post_triggers' for a trace event
  89 * @file: The trace_event_file associated with the event
  90 * @tt: enum event_trigger_type containing a set bit for each trigger to invoke
  91 *
  92 * For each trigger associated with an event, invoke the trigger
  93 * function registered with the associated trigger command, if the
  94 * corresponding bit is set in the tt enum passed into this function.
  95 * See @event_triggers_call for details on how those bits are set.
  96 *
  97 * Called from tracepoint handlers (with rcu_read_lock_sched() held).
  98 */
  99void
 100event_triggers_post_call(struct trace_event_file *file,
 101			 enum event_trigger_type tt)
 102{
 103	struct event_trigger_data *data;
 104
 105	list_for_each_entry_rcu(data, &file->triggers, list) {
 106		if (data->paused)
 107			continue;
 108		if (data->cmd_ops->trigger_type & tt)
 109			data->ops->func(data, NULL, NULL, NULL);
 110	}
 111}
 112EXPORT_SYMBOL_GPL(event_triggers_post_call);
 113
 114#define SHOW_AVAILABLE_TRIGGERS	(void *)(1UL)
 115
 116static void *trigger_next(struct seq_file *m, void *t, loff_t *pos)
 117{
 118	struct trace_event_file *event_file = event_file_data(m->private);
 119
 120	if (t == SHOW_AVAILABLE_TRIGGERS) {
 121		(*pos)++;
 122		return NULL;
 123	}
 124	return seq_list_next(t, &event_file->triggers, pos);
 125}
 126
 
 
 
 
 
 
 
 
 
 
 
 
 
 127static void *trigger_start(struct seq_file *m, loff_t *pos)
 128{
 129	struct trace_event_file *event_file;
 130
 131	/* ->stop() is called even if ->start() fails */
 132	mutex_lock(&event_mutex);
 133	event_file = event_file_data(m->private);
 134	if (unlikely(!event_file))
 135		return ERR_PTR(-ENODEV);
 136
 137	if (list_empty(&event_file->triggers))
 138		return *pos == 0 ? SHOW_AVAILABLE_TRIGGERS : NULL;
 139
 140	return seq_list_start(&event_file->triggers, *pos);
 141}
 142
 143static void trigger_stop(struct seq_file *m, void *t)
 144{
 145	mutex_unlock(&event_mutex);
 146}
 147
 148static int trigger_show(struct seq_file *m, void *v)
 149{
 150	struct event_trigger_data *data;
 151	struct event_command *p;
 152
 153	if (v == SHOW_AVAILABLE_TRIGGERS) {
 154		seq_puts(m, "# Available triggers:\n");
 155		seq_putc(m, '#');
 156		mutex_lock(&trigger_cmd_mutex);
 157		list_for_each_entry_reverse(p, &trigger_commands, list)
 158			seq_printf(m, " %s", p->name);
 159		seq_putc(m, '\n');
 160		mutex_unlock(&trigger_cmd_mutex);
 161		return 0;
 162	}
 163
 164	data = list_entry(v, struct event_trigger_data, list);
 165	data->ops->print(m, data->ops, data);
 166
 167	return 0;
 168}
 169
 170static const struct seq_operations event_triggers_seq_ops = {
 171	.start = trigger_start,
 172	.next = trigger_next,
 173	.stop = trigger_stop,
 174	.show = trigger_show,
 175};
 176
 177static int event_trigger_regex_open(struct inode *inode, struct file *file)
 178{
 179	int ret;
 180
 181	ret = security_locked_down(LOCKDOWN_TRACEFS);
 182	if (ret)
 183		return ret;
 184
 185	mutex_lock(&event_mutex);
 186
 187	if (unlikely(!event_file_data(file))) {
 188		mutex_unlock(&event_mutex);
 189		return -ENODEV;
 190	}
 191
 192	if ((file->f_mode & FMODE_WRITE) &&
 193	    (file->f_flags & O_TRUNC)) {
 194		struct trace_event_file *event_file;
 195		struct event_command *p;
 196
 197		event_file = event_file_data(file);
 198
 199		list_for_each_entry(p, &trigger_commands, list) {
 200			if (p->unreg_all)
 201				p->unreg_all(event_file);
 202		}
 203	}
 204
 205	if (file->f_mode & FMODE_READ) {
 206		ret = seq_open(file, &event_triggers_seq_ops);
 207		if (!ret) {
 208			struct seq_file *m = file->private_data;
 209			m->private = file;
 210		}
 211	}
 212
 213	mutex_unlock(&event_mutex);
 214
 215	return ret;
 216}
 217
 218int trigger_process_regex(struct trace_event_file *file, char *buff)
 219{
 220	char *command, *next;
 221	struct event_command *p;
 222	int ret = -EINVAL;
 223
 224	next = buff = skip_spaces(buff);
 225	command = strsep(&next, ": \t");
 226	if (next) {
 227		next = skip_spaces(next);
 228		if (!*next)
 229			next = NULL;
 230	}
 231	command = (command[0] != '!') ? command : command + 1;
 232
 233	mutex_lock(&trigger_cmd_mutex);
 234	list_for_each_entry(p, &trigger_commands, list) {
 235		if (strcmp(p->name, command) == 0) {
 236			ret = p->func(p, file, buff, command, next);
 237			goto out_unlock;
 238		}
 239	}
 240 out_unlock:
 241	mutex_unlock(&trigger_cmd_mutex);
 242
 243	return ret;
 244}
 245
 246static ssize_t event_trigger_regex_write(struct file *file,
 247					 const char __user *ubuf,
 248					 size_t cnt, loff_t *ppos)
 249{
 250	struct trace_event_file *event_file;
 251	ssize_t ret;
 252	char *buf;
 253
 254	if (!cnt)
 255		return 0;
 256
 257	if (cnt >= PAGE_SIZE)
 258		return -EINVAL;
 259
 260	buf = memdup_user_nul(ubuf, cnt);
 261	if (IS_ERR(buf))
 262		return PTR_ERR(buf);
 263
 264	strim(buf);
 265
 266	mutex_lock(&event_mutex);
 267	event_file = event_file_data(file);
 268	if (unlikely(!event_file)) {
 269		mutex_unlock(&event_mutex);
 270		kfree(buf);
 271		return -ENODEV;
 272	}
 273	ret = trigger_process_regex(event_file, buf);
 274	mutex_unlock(&event_mutex);
 275
 276	kfree(buf);
 277	if (ret < 0)
 278		goto out;
 279
 280	*ppos += cnt;
 281	ret = cnt;
 282 out:
 283	return ret;
 284}
 285
 286static int event_trigger_regex_release(struct inode *inode, struct file *file)
 287{
 288	mutex_lock(&event_mutex);
 289
 290	if (file->f_mode & FMODE_READ)
 291		seq_release(inode, file);
 292
 293	mutex_unlock(&event_mutex);
 294
 295	return 0;
 296}
 297
 298static ssize_t
 299event_trigger_write(struct file *filp, const char __user *ubuf,
 300		    size_t cnt, loff_t *ppos)
 301{
 302	return event_trigger_regex_write(filp, ubuf, cnt, ppos);
 303}
 304
 305static int
 306event_trigger_open(struct inode *inode, struct file *filp)
 307{
 308	/* Checks for tracefs lockdown */
 309	return event_trigger_regex_open(inode, filp);
 310}
 311
 312static int
 313event_trigger_release(struct inode *inode, struct file *file)
 314{
 315	return event_trigger_regex_release(inode, file);
 316}
 317
 318const struct file_operations event_trigger_fops = {
 319	.open = event_trigger_open,
 320	.read = seq_read,
 321	.write = event_trigger_write,
 322	.llseek = tracing_lseek,
 323	.release = event_trigger_release,
 324};
 325
 326/*
 327 * Currently we only register event commands from __init, so mark this
 328 * __init too.
 329 */
 330__init int register_event_command(struct event_command *cmd)
 331{
 332	struct event_command *p;
 333	int ret = 0;
 334
 335	mutex_lock(&trigger_cmd_mutex);
 336	list_for_each_entry(p, &trigger_commands, list) {
 337		if (strcmp(cmd->name, p->name) == 0) {
 338			ret = -EBUSY;
 339			goto out_unlock;
 340		}
 341	}
 342	list_add(&cmd->list, &trigger_commands);
 343 out_unlock:
 344	mutex_unlock(&trigger_cmd_mutex);
 345
 346	return ret;
 347}
 348
 349/*
 350 * Currently we only unregister event commands from __init, so mark
 351 * this __init too.
 352 */
 353__init int unregister_event_command(struct event_command *cmd)
 354{
 355	struct event_command *p, *n;
 356	int ret = -ENODEV;
 357
 358	mutex_lock(&trigger_cmd_mutex);
 359	list_for_each_entry_safe(p, n, &trigger_commands, list) {
 360		if (strcmp(cmd->name, p->name) == 0) {
 361			ret = 0;
 362			list_del_init(&p->list);
 363			goto out_unlock;
 364		}
 365	}
 366 out_unlock:
 367	mutex_unlock(&trigger_cmd_mutex);
 368
 369	return ret;
 370}
 371
 372/**
 373 * event_trigger_print - Generic event_trigger_ops @print implementation
 374 * @name: The name of the event trigger
 375 * @m: The seq_file being printed to
 376 * @data: Trigger-specific data
 377 * @filter_str: filter_str to print, if present
 378 *
 379 * Common implementation for event triggers to print themselves.
 380 *
 381 * Usually wrapped by a function that simply sets the @name of the
 382 * trigger command and then invokes this.
 383 *
 384 * Return: 0 on success, errno otherwise
 385 */
 386static int
 387event_trigger_print(const char *name, struct seq_file *m,
 388		    void *data, char *filter_str)
 389{
 390	long count = (long)data;
 391
 392	seq_puts(m, name);
 393
 394	if (count == -1)
 395		seq_puts(m, ":unlimited");
 396	else
 397		seq_printf(m, ":count=%ld", count);
 398
 399	if (filter_str)
 400		seq_printf(m, " if %s\n", filter_str);
 401	else
 402		seq_putc(m, '\n');
 403
 404	return 0;
 405}
 406
 407/**
 408 * event_trigger_init - Generic event_trigger_ops @init implementation
 409 * @ops: The trigger ops associated with the trigger
 410 * @data: Trigger-specific data
 411 *
 412 * Common implementation of event trigger initialization.
 413 *
 414 * Usually used directly as the @init method in event trigger
 415 * implementations.
 416 *
 417 * Return: 0 on success, errno otherwise
 418 */
 419int event_trigger_init(struct event_trigger_ops *ops,
 420		       struct event_trigger_data *data)
 421{
 422	data->ref++;
 423	return 0;
 424}
 425
 426/**
 427 * event_trigger_free - Generic event_trigger_ops @free implementation
 428 * @ops: The trigger ops associated with the trigger
 429 * @data: Trigger-specific data
 430 *
 431 * Common implementation of event trigger de-initialization.
 432 *
 433 * Usually used directly as the @free method in event trigger
 434 * implementations.
 435 */
 436static void
 437event_trigger_free(struct event_trigger_ops *ops,
 438		   struct event_trigger_data *data)
 439{
 440	if (WARN_ON_ONCE(data->ref <= 0))
 441		return;
 442
 443	data->ref--;
 444	if (!data->ref)
 445		trigger_data_free(data);
 446}
 447
 448int trace_event_trigger_enable_disable(struct trace_event_file *file,
 449				       int trigger_enable)
 450{
 451	int ret = 0;
 452
 453	if (trigger_enable) {
 454		if (atomic_inc_return(&file->tm_ref) > 1)
 455			return ret;
 456		set_bit(EVENT_FILE_FL_TRIGGER_MODE_BIT, &file->flags);
 457		ret = trace_event_enable_disable(file, 1, 1);
 458	} else {
 459		if (atomic_dec_return(&file->tm_ref) > 0)
 460			return ret;
 461		clear_bit(EVENT_FILE_FL_TRIGGER_MODE_BIT, &file->flags);
 462		ret = trace_event_enable_disable(file, 0, 1);
 463	}
 464
 465	return ret;
 466}
 467
 468/**
 469 * clear_event_triggers - Clear all triggers associated with a trace array
 470 * @tr: The trace array to clear
 471 *
 472 * For each trigger, the triggering event has its tm_ref decremented
 473 * via trace_event_trigger_enable_disable(), and any associated event
 474 * (in the case of enable/disable_event triggers) will have its sm_ref
 475 * decremented via free()->trace_event_enable_disable().  That
 476 * combination effectively reverses the soft-mode/trigger state added
 477 * by trigger registration.
 478 *
 479 * Must be called with event_mutex held.
 480 */
 481void
 482clear_event_triggers(struct trace_array *tr)
 483{
 484	struct trace_event_file *file;
 485
 486	list_for_each_entry(file, &tr->events, list) {
 487		struct event_trigger_data *data, *n;
 488		list_for_each_entry_safe(data, n, &file->triggers, list) {
 489			trace_event_trigger_enable_disable(file, 0);
 490			list_del_rcu(&data->list);
 491			if (data->ops->free)
 492				data->ops->free(data->ops, data);
 493		}
 494	}
 495}
 496
 497/**
 498 * update_cond_flag - Set or reset the TRIGGER_COND bit
 499 * @file: The trace_event_file associated with the event
 500 *
 501 * If an event has triggers and any of those triggers has a filter or
 502 * a post_trigger, trigger invocation needs to be deferred until after
 503 * the current event has logged its data, and the event should have
 504 * its TRIGGER_COND bit set, otherwise the TRIGGER_COND bit should be
 505 * cleared.
 506 */
 507void update_cond_flag(struct trace_event_file *file)
 508{
 509	struct event_trigger_data *data;
 510	bool set_cond = false;
 511
 512	lockdep_assert_held(&event_mutex);
 513
 514	list_for_each_entry(data, &file->triggers, list) {
 515		if (data->filter || event_command_post_trigger(data->cmd_ops) ||
 516		    event_command_needs_rec(data->cmd_ops)) {
 517			set_cond = true;
 518			break;
 519		}
 520	}
 521
 522	if (set_cond)
 523		set_bit(EVENT_FILE_FL_TRIGGER_COND_BIT, &file->flags);
 524	else
 525		clear_bit(EVENT_FILE_FL_TRIGGER_COND_BIT, &file->flags);
 526}
 527
 528/**
 529 * register_trigger - Generic event_command @reg implementation
 530 * @glob: The raw string used to register the trigger
 531 * @ops: The trigger ops associated with the trigger
 532 * @data: Trigger-specific data to associate with the trigger
 533 * @file: The trace_event_file associated with the event
 534 *
 535 * Common implementation for event trigger registration.
 536 *
 537 * Usually used directly as the @reg method in event command
 538 * implementations.
 539 *
 540 * Return: 0 on success, errno otherwise
 541 */
 542static int register_trigger(char *glob, struct event_trigger_ops *ops,
 543			    struct event_trigger_data *data,
 544			    struct trace_event_file *file)
 545{
 546	struct event_trigger_data *test;
 547	int ret = 0;
 548
 549	lockdep_assert_held(&event_mutex);
 550
 551	list_for_each_entry(test, &file->triggers, list) {
 552		if (test->cmd_ops->trigger_type == data->cmd_ops->trigger_type) {
 553			ret = -EEXIST;
 554			goto out;
 555		}
 556	}
 557
 558	if (data->ops->init) {
 559		ret = data->ops->init(data->ops, data);
 560		if (ret < 0)
 561			goto out;
 562	}
 563
 564	list_add_rcu(&data->list, &file->triggers);
 565	ret++;
 566
 567	update_cond_flag(file);
 568	if (trace_event_trigger_enable_disable(file, 1) < 0) {
 
 569		list_del_rcu(&data->list);
 570		update_cond_flag(file);
 571		ret--;
 572	}
 573out:
 574	return ret;
 575}
 576
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 577/**
 578 * unregister_trigger - Generic event_command @unreg implementation
 579 * @glob: The raw string used to register the trigger
 580 * @ops: The trigger ops associated with the trigger
 581 * @test: Trigger-specific data used to find the trigger to remove
 582 * @file: The trace_event_file associated with the event
 583 *
 584 * Common implementation for event trigger unregistration.
 585 *
 586 * Usually used directly as the @unreg method in event command
 587 * implementations.
 588 */
 589static void unregister_trigger(char *glob, struct event_trigger_ops *ops,
 590			       struct event_trigger_data *test,
 591			       struct trace_event_file *file)
 592{
 593	struct event_trigger_data *data;
 594	bool unregistered = false;
 595
 596	lockdep_assert_held(&event_mutex);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 597
 598	list_for_each_entry(data, &file->triggers, list) {
 599		if (data->cmd_ops->trigger_type == test->cmd_ops->trigger_type) {
 600			unregistered = true;
 601			list_del_rcu(&data->list);
 602			trace_event_trigger_enable_disable(file, 0);
 603			update_cond_flag(file);
 604			break;
 605		}
 606	}
 607
 608	if (unregistered && data->ops->free)
 609		data->ops->free(data->ops, data);
 
 
 
 610}
 611
 612/**
 613 * event_trigger_callback - Generic event_command @func implementation
 614 * @cmd_ops: The command ops, used for trigger registration
 615 * @file: The trace_event_file associated with the event
 616 * @glob: The raw string used to register the trigger
 617 * @cmd: The cmd portion of the string used to register the trigger
 618 * @param: The params portion of the string used to register the trigger
 619 *
 620 * Common implementation for event command parsing and trigger
 621 * instantiation.
 
 
 
 622 *
 623 * Usually used directly as the @func method in event command
 624 * implementations.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 625 *
 626 * Return: 0 on success, errno otherwise
 627 */
 628static int
 629event_trigger_callback(struct event_command *cmd_ops,
 630		       struct trace_event_file *file,
 631		       char *glob, char *cmd, char *param)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 632{
 633	struct event_trigger_data *trigger_data;
 634	struct event_trigger_ops *trigger_ops;
 635	char *trigger = NULL;
 636	char *number;
 637	int ret;
 638
 639	/* separate the trigger from the filter (t:n [if filter]) */
 640	if (param && isdigit(param[0])) {
 641		trigger = strsep(&param, " \t");
 642		if (param) {
 643			param = skip_spaces(param);
 644			if (!*param)
 645				param = NULL;
 646		}
 647	}
 648
 649	trigger_ops = cmd_ops->get_trigger_ops(cmd, trigger);
 650
 651	ret = -ENOMEM;
 652	trigger_data = kzalloc(sizeof(*trigger_data), GFP_KERNEL);
 653	if (!trigger_data)
 654		goto out;
 655
 656	trigger_data->count = -1;
 657	trigger_data->ops = trigger_ops;
 658	trigger_data->cmd_ops = cmd_ops;
 659	trigger_data->private_data = file;
 
 660	INIT_LIST_HEAD(&trigger_data->list);
 661	INIT_LIST_HEAD(&trigger_data->named_list);
 
 662
 663	if (glob[0] == '!') {
 664		cmd_ops->unreg(glob+1, trigger_ops, trigger_data, file);
 665		kfree(trigger_data);
 666		ret = 0;
 667		goto out;
 668	}
 
 
 
 
 
 
 
 
 
 
 
 
 669
 670	if (trigger) {
 671		number = strsep(&trigger, ":");
 672
 673		ret = -EINVAL;
 674		if (!strlen(number))
 675			goto out_free;
 676
 677		/*
 678		 * We use the callback data field (which is a pointer)
 679		 * as our counter.
 680		 */
 681		ret = kstrtoul(number, 0, &trigger_data->count);
 682		if (ret)
 683			goto out_free;
 684	}
 685
 686	if (!param) /* if param is non-empty, it's supposed to be a filter */
 687		goto out_reg;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 688
 689	if (!cmd_ops->set_filter)
 690		goto out_reg;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 691
 692	ret = cmd_ops->set_filter(param, trigger_data, file);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 693	if (ret < 0)
 694		goto out_free;
 695
 696 out_reg:
 697	/* Up the trigger_data count to make sure reg doesn't free it on failure */
 698	event_trigger_init(trigger_ops, trigger_data);
 699	ret = cmd_ops->reg(glob, trigger_ops, trigger_data, file);
 700	/*
 701	 * The above returns on success the # of functions enabled,
 702	 * but if it didn't find any functions it returns zero.
 703	 * Consider no functions a failure too.
 704	 */
 705	if (!ret) {
 706		cmd_ops->unreg(glob, trigger_ops, trigger_data, file);
 707		ret = -ENOENT;
 708	} else if (ret > 0)
 709		ret = 0;
 710
 711	/* Down the counter of trigger_data or free it if not used anymore */
 712	event_trigger_free(trigger_ops, trigger_data);
 713 out:
 714	return ret;
 715
 716 out_free:
 717	if (cmd_ops->set_filter)
 718		cmd_ops->set_filter(NULL, trigger_data, NULL);
 719	kfree(trigger_data);
 720	goto out;
 721}
 722
 723/**
 724 * set_trigger_filter - Generic event_command @set_filter implementation
 725 * @filter_str: The filter string for the trigger, NULL to remove filter
 726 * @trigger_data: Trigger-specific data
 727 * @file: The trace_event_file associated with the event
 728 *
 729 * Common implementation for event command filter parsing and filter
 730 * instantiation.
 731 *
 732 * Usually used directly as the @set_filter method in event command
 733 * implementations.
 734 *
 735 * Also used to remove a filter (if filter_str = NULL).
 736 *
 737 * Return: 0 on success, errno otherwise
 738 */
 739int set_trigger_filter(char *filter_str,
 740		       struct event_trigger_data *trigger_data,
 741		       struct trace_event_file *file)
 742{
 743	struct event_trigger_data *data = trigger_data;
 744	struct event_filter *filter = NULL, *tmp;
 745	int ret = -EINVAL;
 746	char *s;
 747
 748	if (!filter_str) /* clear the current filter */
 749		goto assign;
 750
 751	s = strsep(&filter_str, " \t");
 752
 753	if (!strlen(s) || strcmp(s, "if") != 0)
 754		goto out;
 755
 756	if (!filter_str)
 757		goto out;
 758
 759	/* The filter is for the 'trigger' event, not the triggered event */
 760	ret = create_event_filter(file->tr, file->event_call,
 761				  filter_str, false, &filter);
 
 
 
 
 
 
 
 762	/*
 763	 * If create_event_filter() fails, filter still needs to be freed.
 764	 * Which the calling code will do with data->filter.
 765	 */
 766 assign:
 767	tmp = rcu_access_pointer(data->filter);
 768
 769	rcu_assign_pointer(data->filter, filter);
 770
 771	if (tmp) {
 772		/* Make sure the call is done with the filter */
 773		tracepoint_synchronize_unregister();
 
 
 
 
 
 
 774		free_event_filter(tmp);
 775	}
 776
 777	kfree(data->filter_str);
 778	data->filter_str = NULL;
 779
 780	if (filter_str) {
 781		data->filter_str = kstrdup(filter_str, GFP_KERNEL);
 782		if (!data->filter_str) {
 783			free_event_filter(rcu_access_pointer(data->filter));
 784			data->filter = NULL;
 785			ret = -ENOMEM;
 786		}
 787	}
 788 out:
 789	return ret;
 790}
 791
 792static LIST_HEAD(named_triggers);
 793
 794/**
 795 * find_named_trigger - Find the common named trigger associated with @name
 796 * @name: The name of the set of named triggers to find the common data for
 797 *
 798 * Named triggers are sets of triggers that share a common set of
 799 * trigger data.  The first named trigger registered with a given name
 800 * owns the common trigger data that the others subsequently
 801 * registered with the same name will reference.  This function
 802 * returns the common trigger data associated with that first
 803 * registered instance.
 804 *
 805 * Return: the common trigger data for the given named trigger on
 806 * success, NULL otherwise.
 807 */
 808struct event_trigger_data *find_named_trigger(const char *name)
 809{
 810	struct event_trigger_data *data;
 811
 812	if (!name)
 813		return NULL;
 814
 815	list_for_each_entry(data, &named_triggers, named_list) {
 816		if (data->named_data)
 817			continue;
 818		if (strcmp(data->name, name) == 0)
 819			return data;
 820	}
 821
 822	return NULL;
 823}
 824
 825/**
 826 * is_named_trigger - determine if a given trigger is a named trigger
 827 * @test: The trigger data to test
 828 *
 829 * Return: true if 'test' is a named trigger, false otherwise.
 830 */
 831bool is_named_trigger(struct event_trigger_data *test)
 832{
 833	struct event_trigger_data *data;
 834
 835	list_for_each_entry(data, &named_triggers, named_list) {
 836		if (test == data)
 837			return true;
 838	}
 839
 840	return false;
 841}
 842
 843/**
 844 * save_named_trigger - save the trigger in the named trigger list
 845 * @name: The name of the named trigger set
 846 * @data: The trigger data to save
 847 *
 848 * Return: 0 if successful, negative error otherwise.
 849 */
 850int save_named_trigger(const char *name, struct event_trigger_data *data)
 851{
 852	data->name = kstrdup(name, GFP_KERNEL);
 853	if (!data->name)
 854		return -ENOMEM;
 855
 856	list_add(&data->named_list, &named_triggers);
 857
 858	return 0;
 859}
 860
 861/**
 862 * del_named_trigger - delete a trigger from the named trigger list
 863 * @data: The trigger data to delete
 864 */
 865void del_named_trigger(struct event_trigger_data *data)
 866{
 867	kfree(data->name);
 868	data->name = NULL;
 869
 870	list_del(&data->named_list);
 871}
 872
 873static void __pause_named_trigger(struct event_trigger_data *data, bool pause)
 874{
 875	struct event_trigger_data *test;
 876
 877	list_for_each_entry(test, &named_triggers, named_list) {
 878		if (strcmp(test->name, data->name) == 0) {
 879			if (pause) {
 880				test->paused_tmp = test->paused;
 881				test->paused = true;
 882			} else {
 883				test->paused = test->paused_tmp;
 884			}
 885		}
 886	}
 887}
 888
 889/**
 890 * pause_named_trigger - Pause all named triggers with the same name
 891 * @data: The trigger data of a named trigger to pause
 892 *
 893 * Pauses a named trigger along with all other triggers having the
 894 * same name.  Because named triggers share a common set of data,
 895 * pausing only one is meaningless, so pausing one named trigger needs
 896 * to pause all triggers with the same name.
 897 */
 898void pause_named_trigger(struct event_trigger_data *data)
 899{
 900	__pause_named_trigger(data, true);
 901}
 902
 903/**
 904 * unpause_named_trigger - Un-pause all named triggers with the same name
 905 * @data: The trigger data of a named trigger to unpause
 906 *
 907 * Un-pauses a named trigger along with all other triggers having the
 908 * same name.  Because named triggers share a common set of data,
 909 * unpausing only one is meaningless, so unpausing one named trigger
 910 * needs to unpause all triggers with the same name.
 911 */
 912void unpause_named_trigger(struct event_trigger_data *data)
 913{
 914	__pause_named_trigger(data, false);
 915}
 916
 917/**
 918 * set_named_trigger_data - Associate common named trigger data
 919 * @data: The trigger data to associate
 920 * @named_data: The common named trigger to be associated
 921 *
 922 * Named triggers are sets of triggers that share a common set of
 923 * trigger data.  The first named trigger registered with a given name
 924 * owns the common trigger data that the others subsequently
 925 * registered with the same name will reference.  This function
 926 * associates the common trigger data from the first trigger with the
 927 * given trigger.
 928 */
 929void set_named_trigger_data(struct event_trigger_data *data,
 930			    struct event_trigger_data *named_data)
 931{
 932	data->named_data = named_data;
 933}
 934
 935struct event_trigger_data *
 936get_named_trigger_data(struct event_trigger_data *data)
 937{
 938	return data->named_data;
 939}
 940
 941static void
 942traceon_trigger(struct event_trigger_data *data,
 943		struct trace_buffer *buffer, void *rec,
 944		struct ring_buffer_event *event)
 945{
 
 
 
 
 
 
 
 
 
 
 946	if (tracing_is_on())
 947		return;
 948
 949	tracing_on();
 950}
 951
 952static void
 953traceon_count_trigger(struct event_trigger_data *data,
 954		      struct trace_buffer *buffer, void *rec,
 955		      struct ring_buffer_event *event)
 956{
 957	if (tracing_is_on())
 958		return;
 
 
 
 
 
 
 
 959
 960	if (!data->count)
 961		return;
 962
 963	if (data->count != -1)
 964		(data->count)--;
 965
 966	tracing_on();
 
 
 
 967}
 968
 969static void
 970traceoff_trigger(struct event_trigger_data *data,
 971		 struct trace_buffer *buffer, void *rec,
 972		 struct ring_buffer_event *event)
 973{
 
 
 
 
 
 
 
 
 
 
 974	if (!tracing_is_on())
 975		return;
 976
 977	tracing_off();
 978}
 979
 980static void
 981traceoff_count_trigger(struct event_trigger_data *data,
 982		       struct trace_buffer *buffer, void *rec,
 983		       struct ring_buffer_event *event)
 984{
 985	if (!tracing_is_on())
 986		return;
 
 
 
 
 
 
 
 987
 988	if (!data->count)
 989		return;
 990
 991	if (data->count != -1)
 992		(data->count)--;
 993
 994	tracing_off();
 
 
 
 995}
 996
 997static int
 998traceon_trigger_print(struct seq_file *m, struct event_trigger_ops *ops,
 999		      struct event_trigger_data *data)
1000{
1001	return event_trigger_print("traceon", m, (void *)data->count,
1002				   data->filter_str);
1003}
1004
1005static int
1006traceoff_trigger_print(struct seq_file *m, struct event_trigger_ops *ops,
1007		       struct event_trigger_data *data)
1008{
1009	return event_trigger_print("traceoff", m, (void *)data->count,
1010				   data->filter_str);
1011}
1012
1013static struct event_trigger_ops traceon_trigger_ops = {
1014	.func			= traceon_trigger,
1015	.print			= traceon_trigger_print,
1016	.init			= event_trigger_init,
1017	.free			= event_trigger_free,
1018};
1019
1020static struct event_trigger_ops traceon_count_trigger_ops = {
1021	.func			= traceon_count_trigger,
1022	.print			= traceon_trigger_print,
1023	.init			= event_trigger_init,
1024	.free			= event_trigger_free,
1025};
1026
1027static struct event_trigger_ops traceoff_trigger_ops = {
1028	.func			= traceoff_trigger,
1029	.print			= traceoff_trigger_print,
1030	.init			= event_trigger_init,
1031	.free			= event_trigger_free,
1032};
1033
1034static struct event_trigger_ops traceoff_count_trigger_ops = {
1035	.func			= traceoff_count_trigger,
1036	.print			= traceoff_trigger_print,
1037	.init			= event_trigger_init,
1038	.free			= event_trigger_free,
1039};
1040
1041static struct event_trigger_ops *
1042onoff_get_trigger_ops(char *cmd, char *param)
1043{
1044	struct event_trigger_ops *ops;
1045
1046	/* we register both traceon and traceoff to this callback */
1047	if (strcmp(cmd, "traceon") == 0)
1048		ops = param ? &traceon_count_trigger_ops :
1049			&traceon_trigger_ops;
1050	else
1051		ops = param ? &traceoff_count_trigger_ops :
1052			&traceoff_trigger_ops;
1053
1054	return ops;
1055}
1056
1057static struct event_command trigger_traceon_cmd = {
1058	.name			= "traceon",
1059	.trigger_type		= ETT_TRACE_ONOFF,
1060	.func			= event_trigger_callback,
1061	.reg			= register_trigger,
1062	.unreg			= unregister_trigger,
1063	.get_trigger_ops	= onoff_get_trigger_ops,
1064	.set_filter		= set_trigger_filter,
1065};
1066
1067static struct event_command trigger_traceoff_cmd = {
1068	.name			= "traceoff",
1069	.trigger_type		= ETT_TRACE_ONOFF,
1070	.flags			= EVENT_CMD_FL_POST_TRIGGER,
1071	.func			= event_trigger_callback,
1072	.reg			= register_trigger,
1073	.unreg			= unregister_trigger,
1074	.get_trigger_ops	= onoff_get_trigger_ops,
1075	.set_filter		= set_trigger_filter,
1076};
1077
1078#ifdef CONFIG_TRACER_SNAPSHOT
1079static void
1080snapshot_trigger(struct event_trigger_data *data,
1081		 struct trace_buffer *buffer, void *rec,
1082		 struct ring_buffer_event *event)
1083{
1084	struct trace_event_file *file = data->private_data;
1085
1086	if (file)
1087		tracing_snapshot_instance(file->tr);
1088	else
1089		tracing_snapshot();
1090}
1091
1092static void
1093snapshot_count_trigger(struct event_trigger_data *data,
1094		       struct trace_buffer *buffer, void *rec,
1095		       struct ring_buffer_event *event)
1096{
1097	if (!data->count)
1098		return;
1099
1100	if (data->count != -1)
1101		(data->count)--;
1102
1103	snapshot_trigger(data, buffer, rec, event);
1104}
1105
1106static int
1107register_snapshot_trigger(char *glob, struct event_trigger_ops *ops,
1108			  struct event_trigger_data *data,
1109			  struct trace_event_file *file)
1110{
1111	if (tracing_alloc_snapshot_instance(file->tr) != 0)
1112		return 0;
 
 
 
 
 
 
 
 
1113
1114	return register_trigger(glob, ops, data, file);
 
 
 
 
 
1115}
1116
1117static int
1118snapshot_trigger_print(struct seq_file *m, struct event_trigger_ops *ops,
1119		       struct event_trigger_data *data)
1120{
1121	return event_trigger_print("snapshot", m, (void *)data->count,
1122				   data->filter_str);
1123}
1124
1125static struct event_trigger_ops snapshot_trigger_ops = {
1126	.func			= snapshot_trigger,
1127	.print			= snapshot_trigger_print,
1128	.init			= event_trigger_init,
1129	.free			= event_trigger_free,
1130};
1131
1132static struct event_trigger_ops snapshot_count_trigger_ops = {
1133	.func			= snapshot_count_trigger,
1134	.print			= snapshot_trigger_print,
1135	.init			= event_trigger_init,
1136	.free			= event_trigger_free,
1137};
1138
1139static struct event_trigger_ops *
1140snapshot_get_trigger_ops(char *cmd, char *param)
1141{
1142	return param ? &snapshot_count_trigger_ops : &snapshot_trigger_ops;
1143}
1144
1145static struct event_command trigger_snapshot_cmd = {
1146	.name			= "snapshot",
1147	.trigger_type		= ETT_SNAPSHOT,
1148	.func			= event_trigger_callback,
1149	.reg			= register_snapshot_trigger,
1150	.unreg			= unregister_trigger,
1151	.get_trigger_ops	= snapshot_get_trigger_ops,
1152	.set_filter		= set_trigger_filter,
1153};
1154
1155static __init int register_trigger_snapshot_cmd(void)
1156{
1157	int ret;
1158
1159	ret = register_event_command(&trigger_snapshot_cmd);
1160	WARN_ON(ret < 0);
1161
1162	return ret;
1163}
1164#else
1165static __init int register_trigger_snapshot_cmd(void) { return 0; }
1166#endif /* CONFIG_TRACER_SNAPSHOT */
1167
1168#ifdef CONFIG_STACKTRACE
1169#ifdef CONFIG_UNWINDER_ORC
1170/* Skip 2:
1171 *   event_triggers_post_call()
1172 *   trace_event_raw_event_xxx()
1173 */
1174# define STACK_SKIP 2
1175#else
1176/*
1177 * Skip 4:
1178 *   stacktrace_trigger()
1179 *   event_triggers_post_call()
1180 *   trace_event_buffer_commit()
1181 *   trace_event_raw_event_xxx()
1182 */
1183#define STACK_SKIP 4
1184#endif
1185
1186static void
1187stacktrace_trigger(struct event_trigger_data *data,
1188		   struct trace_buffer *buffer,  void *rec,
1189		   struct ring_buffer_event *event)
1190{
1191	trace_dump_stack(STACK_SKIP);
 
 
 
 
 
1192}
1193
1194static void
1195stacktrace_count_trigger(struct event_trigger_data *data,
1196			 struct trace_buffer *buffer, void *rec,
1197			 struct ring_buffer_event *event)
1198{
1199	if (!data->count)
1200		return;
1201
1202	if (data->count != -1)
1203		(data->count)--;
1204
1205	stacktrace_trigger(data, buffer, rec, event);
1206}
1207
1208static int
1209stacktrace_trigger_print(struct seq_file *m, struct event_trigger_ops *ops,
1210			 struct event_trigger_data *data)
1211{
1212	return event_trigger_print("stacktrace", m, (void *)data->count,
1213				   data->filter_str);
1214}
1215
1216static struct event_trigger_ops stacktrace_trigger_ops = {
1217	.func			= stacktrace_trigger,
1218	.print			= stacktrace_trigger_print,
1219	.init			= event_trigger_init,
1220	.free			= event_trigger_free,
1221};
1222
1223static struct event_trigger_ops stacktrace_count_trigger_ops = {
1224	.func			= stacktrace_count_trigger,
1225	.print			= stacktrace_trigger_print,
1226	.init			= event_trigger_init,
1227	.free			= event_trigger_free,
1228};
1229
1230static struct event_trigger_ops *
1231stacktrace_get_trigger_ops(char *cmd, char *param)
1232{
1233	return param ? &stacktrace_count_trigger_ops : &stacktrace_trigger_ops;
1234}
1235
1236static struct event_command trigger_stacktrace_cmd = {
1237	.name			= "stacktrace",
1238	.trigger_type		= ETT_STACKTRACE,
1239	.flags			= EVENT_CMD_FL_POST_TRIGGER,
1240	.func			= event_trigger_callback,
1241	.reg			= register_trigger,
1242	.unreg			= unregister_trigger,
1243	.get_trigger_ops	= stacktrace_get_trigger_ops,
1244	.set_filter		= set_trigger_filter,
1245};
1246
1247static __init int register_trigger_stacktrace_cmd(void)
1248{
1249	int ret;
1250
1251	ret = register_event_command(&trigger_stacktrace_cmd);
1252	WARN_ON(ret < 0);
1253
1254	return ret;
1255}
1256#else
1257static __init int register_trigger_stacktrace_cmd(void) { return 0; }
1258#endif /* CONFIG_STACKTRACE */
1259
1260static __init void unregister_trigger_traceon_traceoff_cmds(void)
1261{
1262	unregister_event_command(&trigger_traceon_cmd);
1263	unregister_event_command(&trigger_traceoff_cmd);
1264}
1265
1266static void
1267event_enable_trigger(struct event_trigger_data *data,
1268		     struct trace_buffer *buffer,  void *rec,
1269		     struct ring_buffer_event *event)
1270{
1271	struct enable_trigger_data *enable_data = data->private_data;
1272
1273	if (enable_data->enable)
1274		clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &enable_data->file->flags);
1275	else
1276		set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &enable_data->file->flags);
1277}
1278
1279static void
1280event_enable_count_trigger(struct event_trigger_data *data,
1281			   struct trace_buffer *buffer,  void *rec,
1282			   struct ring_buffer_event *event)
1283{
1284	struct enable_trigger_data *enable_data = data->private_data;
1285
1286	if (!data->count)
1287		return;
1288
1289	/* Skip if the event is in a state we want to switch to */
1290	if (enable_data->enable == !(enable_data->file->flags & EVENT_FILE_FL_SOFT_DISABLED))
1291		return;
1292
1293	if (data->count != -1)
1294		(data->count)--;
1295
1296	event_enable_trigger(data, buffer, rec, event);
1297}
1298
1299int event_enable_trigger_print(struct seq_file *m,
1300			       struct event_trigger_ops *ops,
1301			       struct event_trigger_data *data)
1302{
1303	struct enable_trigger_data *enable_data = data->private_data;
1304
1305	seq_printf(m, "%s:%s:%s",
1306		   enable_data->hist ?
1307		   (enable_data->enable ? ENABLE_HIST_STR : DISABLE_HIST_STR) :
1308		   (enable_data->enable ? ENABLE_EVENT_STR : DISABLE_EVENT_STR),
1309		   enable_data->file->event_call->class->system,
1310		   trace_event_name(enable_data->file->event_call));
1311
1312	if (data->count == -1)
1313		seq_puts(m, ":unlimited");
1314	else
1315		seq_printf(m, ":count=%ld", data->count);
1316
1317	if (data->filter_str)
1318		seq_printf(m, " if %s\n", data->filter_str);
1319	else
1320		seq_putc(m, '\n');
1321
1322	return 0;
1323}
1324
1325void event_enable_trigger_free(struct event_trigger_ops *ops,
1326			       struct event_trigger_data *data)
1327{
1328	struct enable_trigger_data *enable_data = data->private_data;
1329
1330	if (WARN_ON_ONCE(data->ref <= 0))
1331		return;
1332
1333	data->ref--;
1334	if (!data->ref) {
1335		/* Remove the SOFT_MODE flag */
1336		trace_event_enable_disable(enable_data->file, 0, 1);
1337		module_put(enable_data->file->event_call->mod);
1338		trigger_data_free(data);
1339		kfree(enable_data);
1340	}
1341}
1342
1343static struct event_trigger_ops event_enable_trigger_ops = {
1344	.func			= event_enable_trigger,
1345	.print			= event_enable_trigger_print,
1346	.init			= event_trigger_init,
1347	.free			= event_enable_trigger_free,
1348};
1349
1350static struct event_trigger_ops event_enable_count_trigger_ops = {
1351	.func			= event_enable_count_trigger,
1352	.print			= event_enable_trigger_print,
1353	.init			= event_trigger_init,
1354	.free			= event_enable_trigger_free,
1355};
1356
1357static struct event_trigger_ops event_disable_trigger_ops = {
1358	.func			= event_enable_trigger,
1359	.print			= event_enable_trigger_print,
1360	.init			= event_trigger_init,
1361	.free			= event_enable_trigger_free,
1362};
1363
1364static struct event_trigger_ops event_disable_count_trigger_ops = {
1365	.func			= event_enable_count_trigger,
1366	.print			= event_enable_trigger_print,
1367	.init			= event_trigger_init,
1368	.free			= event_enable_trigger_free,
1369};
1370
1371int event_enable_trigger_func(struct event_command *cmd_ops,
1372			      struct trace_event_file *file,
1373			      char *glob, char *cmd, char *param)
1374{
1375	struct trace_event_file *event_enable_file;
1376	struct enable_trigger_data *enable_data;
1377	struct event_trigger_data *trigger_data;
1378	struct event_trigger_ops *trigger_ops;
1379	struct trace_array *tr = file->tr;
 
 
1380	const char *system;
1381	const char *event;
1382	bool hist = false;
1383	char *trigger;
1384	char *number;
1385	bool enable;
1386	int ret;
1387
1388	if (!param)
 
 
1389		return -EINVAL;
1390
1391	/* separate the trigger from the filter (s:e:n [if filter]) */
1392	trigger = strsep(&param, " \t");
1393	if (!trigger)
1394		return -EINVAL;
1395	if (param) {
1396		param = skip_spaces(param);
1397		if (!*param)
1398			param = NULL;
1399	}
1400
1401	system = strsep(&trigger, ":");
1402	if (!trigger)
1403		return -EINVAL;
1404
1405	event = strsep(&trigger, ":");
1406
1407	ret = -EINVAL;
1408	event_enable_file = find_event_file(tr, system, event);
1409	if (!event_enable_file)
1410		goto out;
1411
1412#ifdef CONFIG_HIST_TRIGGERS
1413	hist = ((strcmp(cmd, ENABLE_HIST_STR) == 0) ||
1414		(strcmp(cmd, DISABLE_HIST_STR) == 0));
1415
1416	enable = ((strcmp(cmd, ENABLE_EVENT_STR) == 0) ||
1417		  (strcmp(cmd, ENABLE_HIST_STR) == 0));
1418#else
1419	enable = strcmp(cmd, ENABLE_EVENT_STR) == 0;
1420#endif
1421	trigger_ops = cmd_ops->get_trigger_ops(cmd, trigger);
1422
1423	ret = -ENOMEM;
1424	trigger_data = kzalloc(sizeof(*trigger_data), GFP_KERNEL);
1425	if (!trigger_data)
1426		goto out;
1427
1428	enable_data = kzalloc(sizeof(*enable_data), GFP_KERNEL);
1429	if (!enable_data) {
1430		kfree(trigger_data);
1431		goto out;
1432	}
1433
1434	trigger_data->count = -1;
1435	trigger_data->ops = trigger_ops;
1436	trigger_data->cmd_ops = cmd_ops;
1437	INIT_LIST_HEAD(&trigger_data->list);
1438	RCU_INIT_POINTER(trigger_data->filter, NULL);
1439
1440	enable_data->hist = hist;
1441	enable_data->enable = enable;
1442	enable_data->file = event_enable_file;
1443	trigger_data->private_data = enable_data;
1444
1445	if (glob[0] == '!') {
1446		cmd_ops->unreg(glob+1, trigger_ops, trigger_data, file);
 
 
 
 
 
 
1447		kfree(trigger_data);
1448		kfree(enable_data);
1449		ret = 0;
1450		goto out;
1451	}
1452
1453	/* Up the trigger_data count to make sure nothing frees it on failure */
1454	event_trigger_init(trigger_ops, trigger_data);
1455
1456	if (trigger) {
1457		number = strsep(&trigger, ":");
1458
1459		ret = -EINVAL;
1460		if (!strlen(number))
1461			goto out_free;
1462
1463		/*
1464		 * We use the callback data field (which is a pointer)
1465		 * as our counter.
1466		 */
1467		ret = kstrtoul(number, 0, &trigger_data->count);
1468		if (ret)
1469			goto out_free;
1470	}
1471
1472	if (!param) /* if param is non-empty, it's supposed to be a filter */
1473		goto out_reg;
1474
1475	if (!cmd_ops->set_filter)
1476		goto out_reg;
1477
1478	ret = cmd_ops->set_filter(param, trigger_data, file);
1479	if (ret < 0)
1480		goto out_free;
1481
1482 out_reg:
1483	/* Don't let event modules unload while probe registered */
1484	ret = try_module_get(event_enable_file->event_call->mod);
1485	if (!ret) {
1486		ret = -EBUSY;
1487		goto out_free;
1488	}
1489
1490	ret = trace_event_enable_disable(event_enable_file, 1, 1);
1491	if (ret < 0)
1492		goto out_put;
1493	ret = cmd_ops->reg(glob, trigger_ops, trigger_data, file);
1494	/*
1495	 * The above returns on success the # of functions enabled,
1496	 * but if it didn't find any functions it returns zero.
1497	 * Consider no functions a failure too.
1498	 */
1499	if (!ret) {
1500		ret = -ENOENT;
1501		goto out_disable;
1502	} else if (ret < 0)
1503		goto out_disable;
1504	/* Just return zero, not the number of enabled functions */
1505	ret = 0;
1506	event_trigger_free(trigger_ops, trigger_data);
1507 out:
1508	return ret;
1509
1510 out_disable:
1511	trace_event_enable_disable(event_enable_file, 0, 1);
1512 out_put:
1513	module_put(event_enable_file->event_call->mod);
1514 out_free:
1515	if (cmd_ops->set_filter)
1516		cmd_ops->set_filter(NULL, trigger_data, NULL);
1517	event_trigger_free(trigger_ops, trigger_data);
1518	kfree(enable_data);
 
1519	goto out;
1520}
1521
1522int event_enable_register_trigger(char *glob,
1523				  struct event_trigger_ops *ops,
1524				  struct event_trigger_data *data,
1525				  struct trace_event_file *file)
1526{
1527	struct enable_trigger_data *enable_data = data->private_data;
1528	struct enable_trigger_data *test_enable_data;
1529	struct event_trigger_data *test;
1530	int ret = 0;
1531
1532	lockdep_assert_held(&event_mutex);
1533
1534	list_for_each_entry(test, &file->triggers, list) {
1535		test_enable_data = test->private_data;
1536		if (test_enable_data &&
1537		    (test->cmd_ops->trigger_type ==
1538		     data->cmd_ops->trigger_type) &&
1539		    (test_enable_data->file == enable_data->file)) {
1540			ret = -EEXIST;
1541			goto out;
1542		}
1543	}
1544
1545	if (data->ops->init) {
1546		ret = data->ops->init(data->ops, data);
1547		if (ret < 0)
1548			goto out;
1549	}
1550
1551	list_add_rcu(&data->list, &file->triggers);
1552	ret++;
1553
1554	update_cond_flag(file);
1555	if (trace_event_trigger_enable_disable(file, 1) < 0) {
 
1556		list_del_rcu(&data->list);
1557		update_cond_flag(file);
1558		ret--;
1559	}
1560out:
1561	return ret;
1562}
1563
1564void event_enable_unregister_trigger(char *glob,
1565				     struct event_trigger_ops *ops,
1566				     struct event_trigger_data *test,
1567				     struct trace_event_file *file)
1568{
1569	struct enable_trigger_data *test_enable_data = test->private_data;
 
1570	struct enable_trigger_data *enable_data;
1571	struct event_trigger_data *data;
1572	bool unregistered = false;
1573
1574	lockdep_assert_held(&event_mutex);
1575
1576	list_for_each_entry(data, &file->triggers, list) {
1577		enable_data = data->private_data;
1578		if (enable_data &&
1579		    (data->cmd_ops->trigger_type ==
1580		     test->cmd_ops->trigger_type) &&
1581		    (enable_data->file == test_enable_data->file)) {
1582			unregistered = true;
1583			list_del_rcu(&data->list);
1584			trace_event_trigger_enable_disable(file, 0);
1585			update_cond_flag(file);
1586			break;
1587		}
1588	}
1589
1590	if (unregistered && data->ops->free)
1591		data->ops->free(data->ops, data);
1592}
1593
1594static struct event_trigger_ops *
1595event_enable_get_trigger_ops(char *cmd, char *param)
1596{
1597	struct event_trigger_ops *ops;
1598	bool enable;
1599
1600#ifdef CONFIG_HIST_TRIGGERS
1601	enable = ((strcmp(cmd, ENABLE_EVENT_STR) == 0) ||
1602		  (strcmp(cmd, ENABLE_HIST_STR) == 0));
1603#else
1604	enable = strcmp(cmd, ENABLE_EVENT_STR) == 0;
1605#endif
1606	if (enable)
1607		ops = param ? &event_enable_count_trigger_ops :
1608			&event_enable_trigger_ops;
1609	else
1610		ops = param ? &event_disable_count_trigger_ops :
1611			&event_disable_trigger_ops;
1612
1613	return ops;
1614}
1615
1616static struct event_command trigger_enable_cmd = {
1617	.name			= ENABLE_EVENT_STR,
1618	.trigger_type		= ETT_EVENT_ENABLE,
1619	.func			= event_enable_trigger_func,
1620	.reg			= event_enable_register_trigger,
1621	.unreg			= event_enable_unregister_trigger,
1622	.get_trigger_ops	= event_enable_get_trigger_ops,
1623	.set_filter		= set_trigger_filter,
1624};
1625
1626static struct event_command trigger_disable_cmd = {
1627	.name			= DISABLE_EVENT_STR,
1628	.trigger_type		= ETT_EVENT_ENABLE,
1629	.func			= event_enable_trigger_func,
1630	.reg			= event_enable_register_trigger,
1631	.unreg			= event_enable_unregister_trigger,
1632	.get_trigger_ops	= event_enable_get_trigger_ops,
1633	.set_filter		= set_trigger_filter,
1634};
1635
1636static __init void unregister_trigger_enable_disable_cmds(void)
1637{
1638	unregister_event_command(&trigger_enable_cmd);
1639	unregister_event_command(&trigger_disable_cmd);
1640}
1641
1642static __init int register_trigger_enable_disable_cmds(void)
1643{
1644	int ret;
1645
1646	ret = register_event_command(&trigger_enable_cmd);
1647	if (WARN_ON(ret < 0))
1648		return ret;
1649	ret = register_event_command(&trigger_disable_cmd);
1650	if (WARN_ON(ret < 0))
1651		unregister_trigger_enable_disable_cmds();
1652
1653	return ret;
1654}
1655
1656static __init int register_trigger_traceon_traceoff_cmds(void)
1657{
1658	int ret;
1659
1660	ret = register_event_command(&trigger_traceon_cmd);
1661	if (WARN_ON(ret < 0))
1662		return ret;
1663	ret = register_event_command(&trigger_traceoff_cmd);
1664	if (WARN_ON(ret < 0))
1665		unregister_trigger_traceon_traceoff_cmds();
1666
1667	return ret;
1668}
1669
1670__init int register_trigger_cmds(void)
1671{
1672	register_trigger_traceon_traceoff_cmds();
1673	register_trigger_snapshot_cmd();
1674	register_trigger_stacktrace_cmd();
1675	register_trigger_enable_disable_cmds();
1676	register_trigger_hist_enable_disable_cmds();
1677	register_trigger_hist_cmd();
1678
1679	return 0;
1680}