blob: 88f398af57fa20ccb2b0fad6dba38ecaf1d294fe [file] [log] [blame]
Tom Zanussi85f2b082013-10-24 08:59:24 -05001/*
2 * trace_events_trigger - trace event triggers
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * Copyright (C) 2013 Tom Zanussi <tom.zanussi@linux.intel.com>
19 */
20
21#include <linux/module.h>
22#include <linux/ctype.h>
23#include <linux/mutex.h>
24#include <linux/slab.h>
25
26#include "trace.h"
27
28static LIST_HEAD(trigger_commands);
29static DEFINE_MUTEX(trigger_cmd_mutex);
30
Tom Zanussiab4bf002015-12-10 12:50:44 -060031void trigger_data_free(struct event_trigger_data *data)
Tom Zanussi2a2df322013-10-24 08:59:25 -050032{
Tom Zanussibac5fb92013-10-24 08:59:29 -050033 if (data->cmd_ops->set_filter)
34 data->cmd_ops->set_filter(NULL, data, NULL);
35
Tom Zanussi2a2df322013-10-24 08:59:25 -050036 synchronize_sched(); /* make sure current triggers exit before free */
37 kfree(data);
38}
39
Tom Zanussi85f2b082013-10-24 08:59:24 -050040/**
41 * event_triggers_call - Call triggers associated with a trace event
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -040042 * @file: The trace_event_file associated with the event
Tom Zanussibac5fb92013-10-24 08:59:29 -050043 * @rec: The trace entry for the event, NULL for unconditional invocation
Tom Zanussi85f2b082013-10-24 08:59:24 -050044 *
45 * For each trigger associated with an event, invoke the trigger
Tom Zanussibac5fb92013-10-24 08:59:29 -050046 * function registered with the associated trigger command. If rec is
47 * non-NULL, it means that the trigger requires further processing and
48 * shouldn't be unconditionally invoked. If rec is non-NULL and the
49 * trigger has a filter associated with it, rec will checked against
50 * the filter and if the record matches the trigger will be invoked.
51 * If the trigger is a 'post_trigger', meaning it shouldn't be invoked
52 * in any case until the current event is written, the trigger
53 * function isn't invoked but the bit associated with the deferred
54 * trigger is set in the return value.
55 *
56 * Returns an enum event_trigger_type value containing a set bit for
57 * any trigger that should be deferred, ETT_NONE if nothing to defer.
Tom Zanussi85f2b082013-10-24 08:59:24 -050058 *
59 * Called from tracepoint handlers (with rcu_read_lock_sched() held).
60 *
61 * Return: an enum event_trigger_type value containing a set bit for
62 * any trigger that should be deferred, ETT_NONE if nothing to defer.
63 */
Tom Zanussibac5fb92013-10-24 08:59:29 -050064enum event_trigger_type
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -040065event_triggers_call(struct trace_event_file *file, void *rec)
Tom Zanussibac5fb92013-10-24 08:59:29 -050066{
67 struct event_trigger_data *data;
68 enum event_trigger_type tt = ETT_NONE;
Steven Rostedt (Red Hat)d8a30f22013-12-21 21:55:17 -050069 struct event_filter *filter;
Tom Zanussibac5fb92013-10-24 08:59:29 -050070
71 if (list_empty(&file->triggers))
72 return tt;
73
74 list_for_each_entry_rcu(data, &file->triggers, list) {
Tom Zanussi104f2812015-12-10 12:50:47 -060075 if (data->paused)
76 continue;
Tom Zanussibac5fb92013-10-24 08:59:29 -050077 if (!rec) {
Tom Zanussic4a59232015-12-10 12:50:45 -060078 data->ops->func(data, rec);
Tom Zanussibac5fb92013-10-24 08:59:29 -050079 continue;
80 }
Steven Rostedt (Red Hat)561a4fe2014-05-02 13:30:04 -040081 filter = rcu_dereference_sched(data->filter);
Steven Rostedt (Red Hat)d8a30f22013-12-21 21:55:17 -050082 if (filter && !filter_match_preds(filter, rec))
Tom Zanussibac5fb92013-10-24 08:59:29 -050083 continue;
Steven Rostedt (Red Hat)353206f2016-02-22 15:55:09 -050084 if (event_command_post_trigger(data->cmd_ops)) {
Tom Zanussibac5fb92013-10-24 08:59:29 -050085 tt |= data->cmd_ops->trigger_type;
86 continue;
87 }
Tom Zanussic4a59232015-12-10 12:50:45 -060088 data->ops->func(data, rec);
Tom Zanussibac5fb92013-10-24 08:59:29 -050089 }
90 return tt;
91}
92EXPORT_SYMBOL_GPL(event_triggers_call);
93
94/**
95 * event_triggers_post_call - Call 'post_triggers' for a trace event
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -040096 * @file: The trace_event_file associated with the event
Tom Zanussibac5fb92013-10-24 08:59:29 -050097 * @tt: enum event_trigger_type containing a set bit for each trigger to invoke
Tom Zanussic4a59232015-12-10 12:50:45 -060098 * @rec: The trace entry for the event
Tom Zanussibac5fb92013-10-24 08:59:29 -050099 *
100 * For each trigger associated with an event, invoke the trigger
101 * function registered with the associated trigger command, if the
102 * corresponding bit is set in the tt enum passed into this function.
103 * See @event_triggers_call for details on how those bits are set.
104 *
105 * Called from tracepoint handlers (with rcu_read_lock_sched() held).
106 */
107void
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400108event_triggers_post_call(struct trace_event_file *file,
Tom Zanussic4a59232015-12-10 12:50:45 -0600109 enum event_trigger_type tt,
110 void *rec)
Tom Zanussi85f2b082013-10-24 08:59:24 -0500111{
112 struct event_trigger_data *data;
113
Tom Zanussibac5fb92013-10-24 08:59:29 -0500114 list_for_each_entry_rcu(data, &file->triggers, list) {
Tom Zanussi104f2812015-12-10 12:50:47 -0600115 if (data->paused)
116 continue;
Tom Zanussibac5fb92013-10-24 08:59:29 -0500117 if (data->cmd_ops->trigger_type & tt)
Tom Zanussic4a59232015-12-10 12:50:45 -0600118 data->ops->func(data, rec);
Tom Zanussibac5fb92013-10-24 08:59:29 -0500119 }
Tom Zanussi85f2b082013-10-24 08:59:24 -0500120}
Tom Zanussibac5fb92013-10-24 08:59:29 -0500121EXPORT_SYMBOL_GPL(event_triggers_post_call);
Tom Zanussi85f2b082013-10-24 08:59:24 -0500122
Steven Rostedt (Red Hat)dd97b952014-01-07 10:31:04 -0500123#define SHOW_AVAILABLE_TRIGGERS (void *)(1UL)
124
Tom Zanussi85f2b082013-10-24 08:59:24 -0500125static void *trigger_next(struct seq_file *m, void *t, loff_t *pos)
126{
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400127 struct trace_event_file *event_file = event_file_data(m->private);
Tom Zanussi85f2b082013-10-24 08:59:24 -0500128
Steven Rostedt (Red Hat)dd97b952014-01-07 10:31:04 -0500129 if (t == SHOW_AVAILABLE_TRIGGERS)
130 return NULL;
131
Tom Zanussi85f2b082013-10-24 08:59:24 -0500132 return seq_list_next(t, &event_file->triggers, pos);
133}
134
135static void *trigger_start(struct seq_file *m, loff_t *pos)
136{
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400137 struct trace_event_file *event_file;
Tom Zanussi85f2b082013-10-24 08:59:24 -0500138
139 /* ->stop() is called even if ->start() fails */
140 mutex_lock(&event_mutex);
141 event_file = event_file_data(m->private);
142 if (unlikely(!event_file))
143 return ERR_PTR(-ENODEV);
144
Steven Rostedt (Red Hat)dd97b952014-01-07 10:31:04 -0500145 if (list_empty(&event_file->triggers))
146 return *pos == 0 ? SHOW_AVAILABLE_TRIGGERS : NULL;
147
Tom Zanussi85f2b082013-10-24 08:59:24 -0500148 return seq_list_start(&event_file->triggers, *pos);
149}
150
151static void trigger_stop(struct seq_file *m, void *t)
152{
153 mutex_unlock(&event_mutex);
154}
155
156static int trigger_show(struct seq_file *m, void *v)
157{
158 struct event_trigger_data *data;
Steven Rostedt (Red Hat)dd97b952014-01-07 10:31:04 -0500159 struct event_command *p;
160
161 if (v == SHOW_AVAILABLE_TRIGGERS) {
162 seq_puts(m, "# Available triggers:\n");
163 seq_putc(m, '#');
164 mutex_lock(&trigger_cmd_mutex);
165 list_for_each_entry_reverse(p, &trigger_commands, list)
166 seq_printf(m, " %s", p->name);
167 seq_putc(m, '\n');
168 mutex_unlock(&trigger_cmd_mutex);
169 return 0;
170 }
Tom Zanussi85f2b082013-10-24 08:59:24 -0500171
172 data = list_entry(v, struct event_trigger_data, list);
173 data->ops->print(m, data->ops, data);
174
175 return 0;
176}
177
178static const struct seq_operations event_triggers_seq_ops = {
179 .start = trigger_start,
180 .next = trigger_next,
181 .stop = trigger_stop,
182 .show = trigger_show,
183};
184
185static int event_trigger_regex_open(struct inode *inode, struct file *file)
186{
187 int ret = 0;
188
189 mutex_lock(&event_mutex);
190
191 if (unlikely(!event_file_data(file))) {
192 mutex_unlock(&event_mutex);
193 return -ENODEV;
194 }
195
Tom Zanussia88e1cf2015-12-10 12:50:49 -0600196 if ((file->f_mode & FMODE_WRITE) &&
197 (file->f_flags & O_TRUNC)) {
198 struct trace_event_file *event_file;
199 struct event_command *p;
200
201 event_file = event_file_data(file);
202
203 list_for_each_entry(p, &trigger_commands, list) {
204 if (p->unreg_all)
205 p->unreg_all(event_file);
206 }
207 }
208
Tom Zanussi85f2b082013-10-24 08:59:24 -0500209 if (file->f_mode & FMODE_READ) {
210 ret = seq_open(file, &event_triggers_seq_ops);
211 if (!ret) {
212 struct seq_file *m = file->private_data;
213 m->private = file;
214 }
215 }
216
217 mutex_unlock(&event_mutex);
218
219 return ret;
220}
221
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400222static int trigger_process_regex(struct trace_event_file *file, char *buff)
Tom Zanussi85f2b082013-10-24 08:59:24 -0500223{
224 char *command, *next = buff;
225 struct event_command *p;
226 int ret = -EINVAL;
227
228 command = strsep(&next, ": \t");
229 command = (command[0] != '!') ? command : command + 1;
230
231 mutex_lock(&trigger_cmd_mutex);
232 list_for_each_entry(p, &trigger_commands, list) {
233 if (strcmp(p->name, command) == 0) {
234 ret = p->func(p, file, buff, command, next);
235 goto out_unlock;
236 }
237 }
238 out_unlock:
239 mutex_unlock(&trigger_cmd_mutex);
240
241 return ret;
242}
243
244static ssize_t event_trigger_regex_write(struct file *file,
245 const char __user *ubuf,
246 size_t cnt, loff_t *ppos)
247{
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400248 struct trace_event_file *event_file;
Tom Zanussi85f2b082013-10-24 08:59:24 -0500249 ssize_t ret;
250 char *buf;
251
252 if (!cnt)
253 return 0;
254
255 if (cnt >= PAGE_SIZE)
256 return -EINVAL;
257
Al Viro70f6cbb2015-12-24 00:13:10 -0500258 buf = memdup_user_nul(ubuf, cnt);
259 if (IS_ERR(buf))
260 return PTR_ERR(buf);
Tom Zanussi85f2b082013-10-24 08:59:24 -0500261
Tom Zanussi85f2b082013-10-24 08:59:24 -0500262 strim(buf);
263
264 mutex_lock(&event_mutex);
265 event_file = event_file_data(file);
266 if (unlikely(!event_file)) {
267 mutex_unlock(&event_mutex);
Al Viro70f6cbb2015-12-24 00:13:10 -0500268 kfree(buf);
Tom Zanussi85f2b082013-10-24 08:59:24 -0500269 return -ENODEV;
270 }
271 ret = trigger_process_regex(event_file, buf);
272 mutex_unlock(&event_mutex);
273
Al Viro70f6cbb2015-12-24 00:13:10 -0500274 kfree(buf);
Tom Zanussi85f2b082013-10-24 08:59:24 -0500275 if (ret < 0)
276 goto out;
277
278 *ppos += cnt;
279 ret = cnt;
280 out:
281 return ret;
282}
283
284static int event_trigger_regex_release(struct inode *inode, struct file *file)
285{
286 mutex_lock(&event_mutex);
287
288 if (file->f_mode & FMODE_READ)
289 seq_release(inode, file);
290
291 mutex_unlock(&event_mutex);
292
293 return 0;
294}
295
296static ssize_t
297event_trigger_write(struct file *filp, const char __user *ubuf,
298 size_t cnt, loff_t *ppos)
299{
300 return event_trigger_regex_write(filp, ubuf, cnt, ppos);
301}
302
303static int
304event_trigger_open(struct inode *inode, struct file *filp)
305{
306 return event_trigger_regex_open(inode, filp);
307}
308
309static int
310event_trigger_release(struct inode *inode, struct file *file)
311{
312 return event_trigger_regex_release(inode, file);
313}
314
315const struct file_operations event_trigger_fops = {
316 .open = event_trigger_open,
317 .read = seq_read,
318 .write = event_trigger_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -0500319 .llseek = tracing_lseek,
Tom Zanussi85f2b082013-10-24 08:59:24 -0500320 .release = event_trigger_release,
321};
322
Tom Zanussi2a2df322013-10-24 08:59:25 -0500323/*
324 * Currently we only register event commands from __init, so mark this
325 * __init too.
326 */
Tom Zanussiab4bf002015-12-10 12:50:44 -0600327__init int register_event_command(struct event_command *cmd)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500328{
329 struct event_command *p;
330 int ret = 0;
331
332 mutex_lock(&trigger_cmd_mutex);
333 list_for_each_entry(p, &trigger_commands, list) {
334 if (strcmp(cmd->name, p->name) == 0) {
335 ret = -EBUSY;
336 goto out_unlock;
337 }
338 }
339 list_add(&cmd->list, &trigger_commands);
340 out_unlock:
341 mutex_unlock(&trigger_cmd_mutex);
342
343 return ret;
344}
345
346/*
347 * Currently we only unregister event commands from __init, so mark
348 * this __init too.
349 */
Tom Zanussid0bad492016-03-03 12:54:55 -0600350__init int unregister_event_command(struct event_command *cmd)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500351{
352 struct event_command *p, *n;
353 int ret = -ENODEV;
354
355 mutex_lock(&trigger_cmd_mutex);
356 list_for_each_entry_safe(p, n, &trigger_commands, list) {
357 if (strcmp(cmd->name, p->name) == 0) {
358 ret = 0;
359 list_del_init(&p->list);
360 goto out_unlock;
361 }
362 }
363 out_unlock:
364 mutex_unlock(&trigger_cmd_mutex);
365
366 return ret;
367}
368
369/**
370 * event_trigger_print - Generic event_trigger_ops @print implementation
371 * @name: The name of the event trigger
372 * @m: The seq_file being printed to
373 * @data: Trigger-specific data
374 * @filter_str: filter_str to print, if present
375 *
376 * Common implementation for event triggers to print themselves.
377 *
378 * Usually wrapped by a function that simply sets the @name of the
379 * trigger command and then invokes this.
380 *
381 * Return: 0 on success, errno otherwise
382 */
383static int
384event_trigger_print(const char *name, struct seq_file *m,
385 void *data, char *filter_str)
386{
387 long count = (long)data;
388
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100389 seq_puts(m, name);
Tom Zanussi2a2df322013-10-24 08:59:25 -0500390
391 if (count == -1)
392 seq_puts(m, ":unlimited");
393 else
394 seq_printf(m, ":count=%ld", count);
395
396 if (filter_str)
397 seq_printf(m, " if %s\n", filter_str);
398 else
Rasmus Villemoes1177e432014-11-08 21:42:12 +0100399 seq_putc(m, '\n');
Tom Zanussi2a2df322013-10-24 08:59:25 -0500400
401 return 0;
402}
403
404/**
405 * event_trigger_init - Generic event_trigger_ops @init implementation
406 * @ops: The trigger ops associated with the trigger
407 * @data: Trigger-specific data
408 *
409 * Common implementation of event trigger initialization.
410 *
411 * Usually used directly as the @init method in event trigger
412 * implementations.
413 *
414 * Return: 0 on success, errno otherwise
415 */
Tom Zanussiab4bf002015-12-10 12:50:44 -0600416int event_trigger_init(struct event_trigger_ops *ops,
417 struct event_trigger_data *data)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500418{
419 data->ref++;
420 return 0;
421}
422
423/**
424 * event_trigger_free - Generic event_trigger_ops @free implementation
425 * @ops: The trigger ops associated with the trigger
426 * @data: Trigger-specific data
427 *
428 * Common implementation of event trigger de-initialization.
429 *
430 * Usually used directly as the @free method in event trigger
431 * implementations.
432 */
433static void
434event_trigger_free(struct event_trigger_ops *ops,
435 struct event_trigger_data *data)
436{
437 if (WARN_ON_ONCE(data->ref <= 0))
438 return;
439
440 data->ref--;
441 if (!data->ref)
442 trigger_data_free(data);
443}
444
Tom Zanussiab4bf002015-12-10 12:50:44 -0600445int trace_event_trigger_enable_disable(struct trace_event_file *file,
446 int trigger_enable)
Tom Zanussi85f2b082013-10-24 08:59:24 -0500447{
448 int ret = 0;
449
450 if (trigger_enable) {
451 if (atomic_inc_return(&file->tm_ref) > 1)
452 return ret;
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400453 set_bit(EVENT_FILE_FL_TRIGGER_MODE_BIT, &file->flags);
Tom Zanussi85f2b082013-10-24 08:59:24 -0500454 ret = trace_event_enable_disable(file, 1, 1);
455 } else {
456 if (atomic_dec_return(&file->tm_ref) > 0)
457 return ret;
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400458 clear_bit(EVENT_FILE_FL_TRIGGER_MODE_BIT, &file->flags);
Tom Zanussi85f2b082013-10-24 08:59:24 -0500459 ret = trace_event_enable_disable(file, 0, 1);
460 }
461
462 return ret;
463}
464
465/**
466 * clear_event_triggers - Clear all triggers associated with a trace array
467 * @tr: The trace array to clear
468 *
469 * For each trigger, the triggering event has its tm_ref decremented
470 * via trace_event_trigger_enable_disable(), and any associated event
471 * (in the case of enable/disable_event triggers) will have its sm_ref
472 * decremented via free()->trace_event_enable_disable(). That
473 * combination effectively reverses the soft-mode/trigger state added
474 * by trigger registration.
475 *
476 * Must be called with event_mutex held.
477 */
478void
479clear_event_triggers(struct trace_array *tr)
480{
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400481 struct trace_event_file *file;
Tom Zanussi85f2b082013-10-24 08:59:24 -0500482
483 list_for_each_entry(file, &tr->events, list) {
Steven Rostedt (VMware)dfc80dc2018-05-27 20:54:44 -0400484 struct event_trigger_data *data, *n;
485 list_for_each_entry_safe(data, n, &file->triggers, list) {
Tom Zanussi85f2b082013-10-24 08:59:24 -0500486 trace_event_trigger_enable_disable(file, 0);
Steven Rostedt (VMware)dfc80dc2018-05-27 20:54:44 -0400487 list_del_rcu(&data->list);
Tom Zanussi85f2b082013-10-24 08:59:24 -0500488 if (data->ops->free)
489 data->ops->free(data->ops, data);
490 }
491 }
492}
493
Tom Zanussi2a2df322013-10-24 08:59:25 -0500494/**
Tom Zanussibac5fb92013-10-24 08:59:29 -0500495 * update_cond_flag - Set or reset the TRIGGER_COND bit
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400496 * @file: The trace_event_file associated with the event
Tom Zanussibac5fb92013-10-24 08:59:29 -0500497 *
498 * If an event has triggers and any of those triggers has a filter or
499 * a post_trigger, trigger invocation needs to be deferred until after
500 * the current event has logged its data, and the event should have
501 * its TRIGGER_COND bit set, otherwise the TRIGGER_COND bit should be
502 * cleared.
503 */
Tom Zanussiab4bf002015-12-10 12:50:44 -0600504void update_cond_flag(struct trace_event_file *file)
Tom Zanussibac5fb92013-10-24 08:59:29 -0500505{
506 struct event_trigger_data *data;
507 bool set_cond = false;
508
509 list_for_each_entry_rcu(data, &file->triggers, list) {
Steven Rostedt (Red Hat)353206f2016-02-22 15:55:09 -0500510 if (data->filter || event_command_post_trigger(data->cmd_ops) ||
511 event_command_needs_rec(data->cmd_ops)) {
Tom Zanussibac5fb92013-10-24 08:59:29 -0500512 set_cond = true;
513 break;
514 }
515 }
516
517 if (set_cond)
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400518 set_bit(EVENT_FILE_FL_TRIGGER_COND_BIT, &file->flags);
Tom Zanussibac5fb92013-10-24 08:59:29 -0500519 else
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -0400520 clear_bit(EVENT_FILE_FL_TRIGGER_COND_BIT, &file->flags);
Tom Zanussibac5fb92013-10-24 08:59:29 -0500521}
522
523/**
Tom Zanussi2a2df322013-10-24 08:59:25 -0500524 * register_trigger - Generic event_command @reg implementation
525 * @glob: The raw string used to register the trigger
526 * @ops: The trigger ops associated with the trigger
527 * @data: Trigger-specific data to associate with the trigger
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400528 * @file: The trace_event_file associated with the event
Tom Zanussi2a2df322013-10-24 08:59:25 -0500529 *
530 * Common implementation for event trigger registration.
531 *
532 * Usually used directly as the @reg method in event command
533 * implementations.
534 *
535 * Return: 0 on success, errno otherwise
536 */
537static int register_trigger(char *glob, struct event_trigger_ops *ops,
538 struct event_trigger_data *data,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400539 struct trace_event_file *file)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500540{
541 struct event_trigger_data *test;
542 int ret = 0;
543
544 list_for_each_entry_rcu(test, &file->triggers, list) {
545 if (test->cmd_ops->trigger_type == data->cmd_ops->trigger_type) {
546 ret = -EEXIST;
547 goto out;
548 }
549 }
550
551 if (data->ops->init) {
552 ret = data->ops->init(data->ops, data);
553 if (ret < 0)
554 goto out;
555 }
556
557 list_add_rcu(&data->list, &file->triggers);
558 ret++;
559
Tom Zanussi4e4a4d72015-11-23 13:51:16 -0600560 update_cond_flag(file);
Tom Zanussi2a2df322013-10-24 08:59:25 -0500561 if (trace_event_trigger_enable_disable(file, 1) < 0) {
562 list_del_rcu(&data->list);
Tom Zanussi4e4a4d72015-11-23 13:51:16 -0600563 update_cond_flag(file);
Tom Zanussi2a2df322013-10-24 08:59:25 -0500564 ret--;
565 }
566out:
567 return ret;
568}
569
570/**
571 * unregister_trigger - Generic event_command @unreg implementation
572 * @glob: The raw string used to register the trigger
573 * @ops: The trigger ops associated with the trigger
574 * @test: Trigger-specific data used to find the trigger to remove
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400575 * @file: The trace_event_file associated with the event
Tom Zanussi2a2df322013-10-24 08:59:25 -0500576 *
577 * Common implementation for event trigger unregistration.
578 *
579 * Usually used directly as the @unreg method in event command
580 * implementations.
581 */
Tom Zanussiab4bf002015-12-10 12:50:44 -0600582void unregister_trigger(char *glob, struct event_trigger_ops *ops,
583 struct event_trigger_data *test,
584 struct trace_event_file *file)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500585{
586 struct event_trigger_data *data;
587 bool unregistered = false;
588
589 list_for_each_entry_rcu(data, &file->triggers, list) {
590 if (data->cmd_ops->trigger_type == test->cmd_ops->trigger_type) {
591 unregistered = true;
592 list_del_rcu(&data->list);
593 trace_event_trigger_enable_disable(file, 0);
Tom Zanussi4e4a4d72015-11-23 13:51:16 -0600594 update_cond_flag(file);
Tom Zanussi2a2df322013-10-24 08:59:25 -0500595 break;
596 }
597 }
598
599 if (unregistered && data->ops->free)
600 data->ops->free(data->ops, data);
601}
602
603/**
604 * event_trigger_callback - Generic event_command @func implementation
605 * @cmd_ops: The command ops, used for trigger registration
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400606 * @file: The trace_event_file associated with the event
Tom Zanussi2a2df322013-10-24 08:59:25 -0500607 * @glob: The raw string used to register the trigger
608 * @cmd: The cmd portion of the string used to register the trigger
609 * @param: The params portion of the string used to register the trigger
610 *
611 * Common implementation for event command parsing and trigger
612 * instantiation.
613 *
614 * Usually used directly as the @func method in event command
615 * implementations.
616 *
617 * Return: 0 on success, errno otherwise
618 */
619static int
620event_trigger_callback(struct event_command *cmd_ops,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400621 struct trace_event_file *file,
Tom Zanussi2a2df322013-10-24 08:59:25 -0500622 char *glob, char *cmd, char *param)
623{
624 struct event_trigger_data *trigger_data;
625 struct event_trigger_ops *trigger_ops;
626 char *trigger = NULL;
627 char *number;
628 int ret;
629
630 /* separate the trigger from the filter (t:n [if filter]) */
631 if (param && isdigit(param[0]))
632 trigger = strsep(&param, " \t");
633
634 trigger_ops = cmd_ops->get_trigger_ops(cmd, trigger);
635
636 ret = -ENOMEM;
637 trigger_data = kzalloc(sizeof(*trigger_data), GFP_KERNEL);
638 if (!trigger_data)
639 goto out;
640
641 trigger_data->count = -1;
642 trigger_data->ops = trigger_ops;
643 trigger_data->cmd_ops = cmd_ops;
644 INIT_LIST_HEAD(&trigger_data->list);
Tom Zanussidb1388b2016-03-03 12:54:58 -0600645 INIT_LIST_HEAD(&trigger_data->named_list);
Tom Zanussi2a2df322013-10-24 08:59:25 -0500646
647 if (glob[0] == '!') {
648 cmd_ops->unreg(glob+1, trigger_ops, trigger_data, file);
649 kfree(trigger_data);
650 ret = 0;
651 goto out;
652 }
653
654 if (trigger) {
655 number = strsep(&trigger, ":");
656
657 ret = -EINVAL;
658 if (!strlen(number))
659 goto out_free;
660
661 /*
662 * We use the callback data field (which is a pointer)
663 * as our counter.
664 */
665 ret = kstrtoul(number, 0, &trigger_data->count);
666 if (ret)
667 goto out_free;
668 }
669
670 if (!param) /* if param is non-empty, it's supposed to be a filter */
671 goto out_reg;
672
673 if (!cmd_ops->set_filter)
674 goto out_reg;
675
676 ret = cmd_ops->set_filter(param, trigger_data, file);
677 if (ret < 0)
678 goto out_free;
679
680 out_reg:
681 ret = cmd_ops->reg(glob, trigger_ops, trigger_data, file);
682 /*
683 * The above returns on success the # of functions enabled,
684 * but if it didn't find any functions it returns zero.
685 * Consider no functions a failure too.
686 */
687 if (!ret) {
688 ret = -ENOENT;
689 goto out_free;
690 } else if (ret < 0)
691 goto out_free;
692 ret = 0;
693 out:
694 return ret;
695
696 out_free:
Tom Zanussibac5fb92013-10-24 08:59:29 -0500697 if (cmd_ops->set_filter)
698 cmd_ops->set_filter(NULL, trigger_data, NULL);
Tom Zanussi2a2df322013-10-24 08:59:25 -0500699 kfree(trigger_data);
700 goto out;
701}
702
Tom Zanussibac5fb92013-10-24 08:59:29 -0500703/**
704 * set_trigger_filter - Generic event_command @set_filter implementation
705 * @filter_str: The filter string for the trigger, NULL to remove filter
706 * @trigger_data: Trigger-specific data
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400707 * @file: The trace_event_file associated with the event
Tom Zanussibac5fb92013-10-24 08:59:29 -0500708 *
709 * Common implementation for event command filter parsing and filter
710 * instantiation.
711 *
712 * Usually used directly as the @set_filter method in event command
713 * implementations.
714 *
715 * Also used to remove a filter (if filter_str = NULL).
716 *
717 * Return: 0 on success, errno otherwise
718 */
Tom Zanussiab4bf002015-12-10 12:50:44 -0600719int set_trigger_filter(char *filter_str,
720 struct event_trigger_data *trigger_data,
721 struct trace_event_file *file)
Tom Zanussibac5fb92013-10-24 08:59:29 -0500722{
723 struct event_trigger_data *data = trigger_data;
724 struct event_filter *filter = NULL, *tmp;
725 int ret = -EINVAL;
726 char *s;
727
728 if (!filter_str) /* clear the current filter */
729 goto assign;
730
731 s = strsep(&filter_str, " \t");
732
733 if (!strlen(s) || strcmp(s, "if") != 0)
734 goto out;
735
736 if (!filter_str)
737 goto out;
738
739 /* The filter is for the 'trigger' event, not the triggered event */
740 ret = create_event_filter(file->event_call, filter_str, false, &filter);
741 if (ret)
742 goto out;
743 assign:
Steven Rostedt (Red Hat)d8a30f22013-12-21 21:55:17 -0500744 tmp = rcu_access_pointer(data->filter);
Tom Zanussibac5fb92013-10-24 08:59:29 -0500745
746 rcu_assign_pointer(data->filter, filter);
747
748 if (tmp) {
749 /* Make sure the call is done with the filter */
750 synchronize_sched();
751 free_event_filter(tmp);
752 }
753
754 kfree(data->filter_str);
755 data->filter_str = NULL;
756
757 if (filter_str) {
758 data->filter_str = kstrdup(filter_str, GFP_KERNEL);
759 if (!data->filter_str) {
Steven Rostedt (Red Hat)d8a30f22013-12-21 21:55:17 -0500760 free_event_filter(rcu_access_pointer(data->filter));
Tom Zanussibac5fb92013-10-24 08:59:29 -0500761 data->filter = NULL;
762 ret = -ENOMEM;
763 }
764 }
765 out:
766 return ret;
767}
768
Tom Zanussidb1388b2016-03-03 12:54:58 -0600769static LIST_HEAD(named_triggers);
770
771/**
772 * find_named_trigger - Find the common named trigger associated with @name
773 * @name: The name of the set of named triggers to find the common data for
774 *
775 * Named triggers are sets of triggers that share a common set of
776 * trigger data. The first named trigger registered with a given name
777 * owns the common trigger data that the others subsequently
778 * registered with the same name will reference. This function
779 * returns the common trigger data associated with that first
780 * registered instance.
781 *
782 * Return: the common trigger data for the given named trigger on
783 * success, NULL otherwise.
784 */
785struct event_trigger_data *find_named_trigger(const char *name)
786{
787 struct event_trigger_data *data;
788
789 if (!name)
790 return NULL;
791
792 list_for_each_entry(data, &named_triggers, named_list) {
793 if (data->named_data)
794 continue;
795 if (strcmp(data->name, name) == 0)
796 return data;
797 }
798
799 return NULL;
800}
801
802/**
803 * is_named_trigger - determine if a given trigger is a named trigger
804 * @test: The trigger data to test
805 *
806 * Return: true if 'test' is a named trigger, false otherwise.
807 */
808bool is_named_trigger(struct event_trigger_data *test)
809{
810 struct event_trigger_data *data;
811
812 list_for_each_entry(data, &named_triggers, named_list) {
813 if (test == data)
814 return true;
815 }
816
817 return false;
818}
819
820/**
821 * save_named_trigger - save the trigger in the named trigger list
822 * @name: The name of the named trigger set
823 * @data: The trigger data to save
824 *
825 * Return: 0 if successful, negative error otherwise.
826 */
827int save_named_trigger(const char *name, struct event_trigger_data *data)
828{
829 data->name = kstrdup(name, GFP_KERNEL);
830 if (!data->name)
831 return -ENOMEM;
832
833 list_add(&data->named_list, &named_triggers);
834
835 return 0;
836}
837
838/**
839 * del_named_trigger - delete a trigger from the named trigger list
840 * @data: The trigger data to delete
841 */
842void del_named_trigger(struct event_trigger_data *data)
843{
844 kfree(data->name);
845 data->name = NULL;
846
847 list_del(&data->named_list);
848}
849
850static void __pause_named_trigger(struct event_trigger_data *data, bool pause)
851{
852 struct event_trigger_data *test;
853
854 list_for_each_entry(test, &named_triggers, named_list) {
855 if (strcmp(test->name, data->name) == 0) {
856 if (pause) {
857 test->paused_tmp = test->paused;
858 test->paused = true;
859 } else {
860 test->paused = test->paused_tmp;
861 }
862 }
863 }
864}
865
866/**
867 * pause_named_trigger - Pause all named triggers with the same name
868 * @data: The trigger data of a named trigger to pause
869 *
870 * Pauses a named trigger along with all other triggers having the
871 * same name. Because named triggers share a common set of data,
872 * pausing only one is meaningless, so pausing one named trigger needs
873 * to pause all triggers with the same name.
874 */
875void pause_named_trigger(struct event_trigger_data *data)
876{
877 __pause_named_trigger(data, true);
878}
879
880/**
881 * unpause_named_trigger - Un-pause all named triggers with the same name
882 * @data: The trigger data of a named trigger to unpause
883 *
884 * Un-pauses a named trigger along with all other triggers having the
885 * same name. Because named triggers share a common set of data,
886 * unpausing only one is meaningless, so unpausing one named trigger
887 * needs to unpause all triggers with the same name.
888 */
889void unpause_named_trigger(struct event_trigger_data *data)
890{
891 __pause_named_trigger(data, false);
892}
893
894/**
895 * set_named_trigger_data - Associate common named trigger data
896 * @data: The trigger data of a named trigger to unpause
897 *
898 * Named triggers are sets of triggers that share a common set of
899 * trigger data. The first named trigger registered with a given name
900 * owns the common trigger data that the others subsequently
901 * registered with the same name will reference. This function
902 * associates the common trigger data from the first trigger with the
903 * given trigger.
904 */
905void set_named_trigger_data(struct event_trigger_data *data,
906 struct event_trigger_data *named_data)
907{
908 data->named_data = named_data;
909}
910
Tom Zanussi2a2df322013-10-24 08:59:25 -0500911static void
Tom Zanussic4a59232015-12-10 12:50:45 -0600912traceon_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500913{
914 if (tracing_is_on())
915 return;
916
917 tracing_on();
918}
919
920static void
Tom Zanussic4a59232015-12-10 12:50:45 -0600921traceon_count_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500922{
Steven Rostedt (Red Hat)e8dc6372014-01-06 22:25:50 -0500923 if (tracing_is_on())
924 return;
925
Tom Zanussi2a2df322013-10-24 08:59:25 -0500926 if (!data->count)
927 return;
928
929 if (data->count != -1)
930 (data->count)--;
931
Steven Rostedt (Red Hat)e8dc6372014-01-06 22:25:50 -0500932 tracing_on();
Tom Zanussi2a2df322013-10-24 08:59:25 -0500933}
934
935static void
Tom Zanussic4a59232015-12-10 12:50:45 -0600936traceoff_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500937{
938 if (!tracing_is_on())
939 return;
940
941 tracing_off();
942}
943
944static void
Tom Zanussic4a59232015-12-10 12:50:45 -0600945traceoff_count_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussi2a2df322013-10-24 08:59:25 -0500946{
Steven Rostedt (Red Hat)e8dc6372014-01-06 22:25:50 -0500947 if (!tracing_is_on())
948 return;
949
Tom Zanussi2a2df322013-10-24 08:59:25 -0500950 if (!data->count)
951 return;
952
953 if (data->count != -1)
954 (data->count)--;
955
Steven Rostedt (Red Hat)e8dc6372014-01-06 22:25:50 -0500956 tracing_off();
Tom Zanussi2a2df322013-10-24 08:59:25 -0500957}
958
959static int
960traceon_trigger_print(struct seq_file *m, struct event_trigger_ops *ops,
961 struct event_trigger_data *data)
962{
963 return event_trigger_print("traceon", m, (void *)data->count,
964 data->filter_str);
965}
966
967static int
968traceoff_trigger_print(struct seq_file *m, struct event_trigger_ops *ops,
969 struct event_trigger_data *data)
970{
971 return event_trigger_print("traceoff", m, (void *)data->count,
972 data->filter_str);
973}
974
975static struct event_trigger_ops traceon_trigger_ops = {
976 .func = traceon_trigger,
977 .print = traceon_trigger_print,
978 .init = event_trigger_init,
979 .free = event_trigger_free,
980};
981
982static struct event_trigger_ops traceon_count_trigger_ops = {
983 .func = traceon_count_trigger,
984 .print = traceon_trigger_print,
985 .init = event_trigger_init,
986 .free = event_trigger_free,
987};
988
989static struct event_trigger_ops traceoff_trigger_ops = {
990 .func = traceoff_trigger,
991 .print = traceoff_trigger_print,
992 .init = event_trigger_init,
993 .free = event_trigger_free,
994};
995
996static struct event_trigger_ops traceoff_count_trigger_ops = {
997 .func = traceoff_count_trigger,
998 .print = traceoff_trigger_print,
999 .init = event_trigger_init,
1000 .free = event_trigger_free,
1001};
1002
1003static struct event_trigger_ops *
1004onoff_get_trigger_ops(char *cmd, char *param)
1005{
1006 struct event_trigger_ops *ops;
1007
1008 /* we register both traceon and traceoff to this callback */
1009 if (strcmp(cmd, "traceon") == 0)
1010 ops = param ? &traceon_count_trigger_ops :
1011 &traceon_trigger_ops;
1012 else
1013 ops = param ? &traceoff_count_trigger_ops :
1014 &traceoff_trigger_ops;
1015
1016 return ops;
1017}
1018
1019static struct event_command trigger_traceon_cmd = {
1020 .name = "traceon",
1021 .trigger_type = ETT_TRACE_ONOFF,
1022 .func = event_trigger_callback,
1023 .reg = register_trigger,
1024 .unreg = unregister_trigger,
1025 .get_trigger_ops = onoff_get_trigger_ops,
Tom Zanussibac5fb92013-10-24 08:59:29 -05001026 .set_filter = set_trigger_filter,
Tom Zanussi2a2df322013-10-24 08:59:25 -05001027};
1028
1029static struct event_command trigger_traceoff_cmd = {
1030 .name = "traceoff",
1031 .trigger_type = ETT_TRACE_ONOFF,
Masami Hiramatsua0d0c622016-09-09 01:05:45 +09001032 .flags = EVENT_CMD_FL_POST_TRIGGER,
Tom Zanussi2a2df322013-10-24 08:59:25 -05001033 .func = event_trigger_callback,
1034 .reg = register_trigger,
1035 .unreg = unregister_trigger,
1036 .get_trigger_ops = onoff_get_trigger_ops,
Tom Zanussibac5fb92013-10-24 08:59:29 -05001037 .set_filter = set_trigger_filter,
Tom Zanussi2a2df322013-10-24 08:59:25 -05001038};
1039
Tom Zanussi93e31ff2013-10-24 08:59:26 -05001040#ifdef CONFIG_TRACER_SNAPSHOT
1041static void
Tom Zanussic4a59232015-12-10 12:50:45 -06001042snapshot_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussi93e31ff2013-10-24 08:59:26 -05001043{
1044 tracing_snapshot();
1045}
1046
1047static void
Tom Zanussic4a59232015-12-10 12:50:45 -06001048snapshot_count_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussi93e31ff2013-10-24 08:59:26 -05001049{
1050 if (!data->count)
1051 return;
1052
1053 if (data->count != -1)
1054 (data->count)--;
1055
Tom Zanussic4a59232015-12-10 12:50:45 -06001056 snapshot_trigger(data, rec);
Tom Zanussi93e31ff2013-10-24 08:59:26 -05001057}
1058
1059static int
1060register_snapshot_trigger(char *glob, struct event_trigger_ops *ops,
1061 struct event_trigger_data *data,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001062 struct trace_event_file *file)
Tom Zanussi93e31ff2013-10-24 08:59:26 -05001063{
1064 int ret = register_trigger(glob, ops, data, file);
1065
1066 if (ret > 0 && tracing_alloc_snapshot() != 0) {
1067 unregister_trigger(glob, ops, data, file);
1068 ret = 0;
1069 }
1070
1071 return ret;
1072}
1073
1074static int
1075snapshot_trigger_print(struct seq_file *m, struct event_trigger_ops *ops,
1076 struct event_trigger_data *data)
1077{
1078 return event_trigger_print("snapshot", m, (void *)data->count,
1079 data->filter_str);
1080}
1081
1082static struct event_trigger_ops snapshot_trigger_ops = {
1083 .func = snapshot_trigger,
1084 .print = snapshot_trigger_print,
1085 .init = event_trigger_init,
1086 .free = event_trigger_free,
1087};
1088
1089static struct event_trigger_ops snapshot_count_trigger_ops = {
1090 .func = snapshot_count_trigger,
1091 .print = snapshot_trigger_print,
1092 .init = event_trigger_init,
1093 .free = event_trigger_free,
1094};
1095
1096static struct event_trigger_ops *
1097snapshot_get_trigger_ops(char *cmd, char *param)
1098{
1099 return param ? &snapshot_count_trigger_ops : &snapshot_trigger_ops;
1100}
1101
1102static struct event_command trigger_snapshot_cmd = {
1103 .name = "snapshot",
1104 .trigger_type = ETT_SNAPSHOT,
1105 .func = event_trigger_callback,
1106 .reg = register_snapshot_trigger,
1107 .unreg = unregister_trigger,
1108 .get_trigger_ops = snapshot_get_trigger_ops,
Tom Zanussibac5fb92013-10-24 08:59:29 -05001109 .set_filter = set_trigger_filter,
Tom Zanussi93e31ff2013-10-24 08:59:26 -05001110};
1111
1112static __init int register_trigger_snapshot_cmd(void)
1113{
1114 int ret;
1115
1116 ret = register_event_command(&trigger_snapshot_cmd);
1117 WARN_ON(ret < 0);
1118
1119 return ret;
1120}
1121#else
1122static __init int register_trigger_snapshot_cmd(void) { return 0; }
1123#endif /* CONFIG_TRACER_SNAPSHOT */
1124
Tom Zanussif21ecbb2013-10-24 08:59:27 -05001125#ifdef CONFIG_STACKTRACE
1126/*
1127 * Skip 3:
1128 * stacktrace_trigger()
1129 * event_triggers_post_call()
Steven Rostedt (Red Hat)a7237762015-05-13 15:27:47 -04001130 * trace_event_raw_event_xxx()
Tom Zanussif21ecbb2013-10-24 08:59:27 -05001131 */
1132#define STACK_SKIP 3
1133
1134static void
Tom Zanussic4a59232015-12-10 12:50:45 -06001135stacktrace_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussif21ecbb2013-10-24 08:59:27 -05001136{
1137 trace_dump_stack(STACK_SKIP);
1138}
1139
1140static void
Tom Zanussic4a59232015-12-10 12:50:45 -06001141stacktrace_count_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussif21ecbb2013-10-24 08:59:27 -05001142{
1143 if (!data->count)
1144 return;
1145
1146 if (data->count != -1)
1147 (data->count)--;
1148
Tom Zanussic4a59232015-12-10 12:50:45 -06001149 stacktrace_trigger(data, rec);
Tom Zanussif21ecbb2013-10-24 08:59:27 -05001150}
1151
1152static int
1153stacktrace_trigger_print(struct seq_file *m, struct event_trigger_ops *ops,
1154 struct event_trigger_data *data)
1155{
1156 return event_trigger_print("stacktrace", m, (void *)data->count,
1157 data->filter_str);
1158}
1159
1160static struct event_trigger_ops stacktrace_trigger_ops = {
1161 .func = stacktrace_trigger,
1162 .print = stacktrace_trigger_print,
1163 .init = event_trigger_init,
1164 .free = event_trigger_free,
1165};
1166
1167static struct event_trigger_ops stacktrace_count_trigger_ops = {
1168 .func = stacktrace_count_trigger,
1169 .print = stacktrace_trigger_print,
1170 .init = event_trigger_init,
1171 .free = event_trigger_free,
1172};
1173
1174static struct event_trigger_ops *
1175stacktrace_get_trigger_ops(char *cmd, char *param)
1176{
1177 return param ? &stacktrace_count_trigger_ops : &stacktrace_trigger_ops;
1178}
1179
1180static struct event_command trigger_stacktrace_cmd = {
1181 .name = "stacktrace",
1182 .trigger_type = ETT_STACKTRACE,
Steven Rostedt (Red Hat)353206f2016-02-22 15:55:09 -05001183 .flags = EVENT_CMD_FL_POST_TRIGGER,
Tom Zanussif21ecbb2013-10-24 08:59:27 -05001184 .func = event_trigger_callback,
1185 .reg = register_trigger,
1186 .unreg = unregister_trigger,
1187 .get_trigger_ops = stacktrace_get_trigger_ops,
Tom Zanussibac5fb92013-10-24 08:59:29 -05001188 .set_filter = set_trigger_filter,
Tom Zanussif21ecbb2013-10-24 08:59:27 -05001189};
1190
1191static __init int register_trigger_stacktrace_cmd(void)
1192{
1193 int ret;
1194
1195 ret = register_event_command(&trigger_stacktrace_cmd);
1196 WARN_ON(ret < 0);
1197
1198 return ret;
1199}
1200#else
1201static __init int register_trigger_stacktrace_cmd(void) { return 0; }
1202#endif /* CONFIG_STACKTRACE */
1203
Tom Zanussi2a2df322013-10-24 08:59:25 -05001204static __init void unregister_trigger_traceon_traceoff_cmds(void)
1205{
1206 unregister_event_command(&trigger_traceon_cmd);
1207 unregister_event_command(&trigger_traceoff_cmd);
1208}
1209
Tom Zanussi7862ad12013-10-24 08:59:28 -05001210static void
Tom Zanussic4a59232015-12-10 12:50:45 -06001211event_enable_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussi7862ad12013-10-24 08:59:28 -05001212{
1213 struct enable_trigger_data *enable_data = data->private_data;
1214
1215 if (enable_data->enable)
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -04001216 clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &enable_data->file->flags);
Tom Zanussi7862ad12013-10-24 08:59:28 -05001217 else
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -04001218 set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &enable_data->file->flags);
Tom Zanussi7862ad12013-10-24 08:59:28 -05001219}
1220
1221static void
Tom Zanussic4a59232015-12-10 12:50:45 -06001222event_enable_count_trigger(struct event_trigger_data *data, void *rec)
Tom Zanussi7862ad12013-10-24 08:59:28 -05001223{
1224 struct enable_trigger_data *enable_data = data->private_data;
1225
1226 if (!data->count)
1227 return;
1228
1229 /* Skip if the event is in a state we want to switch to */
Steven Rostedt (Red Hat)5d6ad962015-05-13 15:12:33 -04001230 if (enable_data->enable == !(enable_data->file->flags & EVENT_FILE_FL_SOFT_DISABLED))
Tom Zanussi7862ad12013-10-24 08:59:28 -05001231 return;
1232
1233 if (data->count != -1)
1234 (data->count)--;
1235
Tom Zanussic4a59232015-12-10 12:50:45 -06001236 event_enable_trigger(data, rec);
Tom Zanussi7862ad12013-10-24 08:59:28 -05001237}
1238
Tom Zanussid0bad492016-03-03 12:54:55 -06001239int event_enable_trigger_print(struct seq_file *m,
1240 struct event_trigger_ops *ops,
1241 struct event_trigger_data *data)
Tom Zanussi7862ad12013-10-24 08:59:28 -05001242{
1243 struct enable_trigger_data *enable_data = data->private_data;
1244
1245 seq_printf(m, "%s:%s:%s",
Tom Zanussid0bad492016-03-03 12:54:55 -06001246 enable_data->hist ?
1247 (enable_data->enable ? ENABLE_HIST_STR : DISABLE_HIST_STR) :
1248 (enable_data->enable ? ENABLE_EVENT_STR : DISABLE_EVENT_STR),
Tom Zanussi7862ad12013-10-24 08:59:28 -05001249 enable_data->file->event_call->class->system,
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -04001250 trace_event_name(enable_data->file->event_call));
Tom Zanussi7862ad12013-10-24 08:59:28 -05001251
1252 if (data->count == -1)
1253 seq_puts(m, ":unlimited");
1254 else
1255 seq_printf(m, ":count=%ld", data->count);
1256
1257 if (data->filter_str)
1258 seq_printf(m, " if %s\n", data->filter_str);
1259 else
Rasmus Villemoes1177e432014-11-08 21:42:12 +01001260 seq_putc(m, '\n');
Tom Zanussi7862ad12013-10-24 08:59:28 -05001261
1262 return 0;
1263}
1264
Tom Zanussid0bad492016-03-03 12:54:55 -06001265void event_enable_trigger_free(struct event_trigger_ops *ops,
1266 struct event_trigger_data *data)
Tom Zanussi7862ad12013-10-24 08:59:28 -05001267{
1268 struct enable_trigger_data *enable_data = data->private_data;
1269
1270 if (WARN_ON_ONCE(data->ref <= 0))
1271 return;
1272
1273 data->ref--;
1274 if (!data->ref) {
1275 /* Remove the SOFT_MODE flag */
1276 trace_event_enable_disable(enable_data->file, 0, 1);
1277 module_put(enable_data->file->event_call->mod);
1278 trigger_data_free(data);
1279 kfree(enable_data);
1280 }
1281}
1282
1283static struct event_trigger_ops event_enable_trigger_ops = {
1284 .func = event_enable_trigger,
1285 .print = event_enable_trigger_print,
1286 .init = event_trigger_init,
1287 .free = event_enable_trigger_free,
1288};
1289
1290static struct event_trigger_ops event_enable_count_trigger_ops = {
1291 .func = event_enable_count_trigger,
1292 .print = event_enable_trigger_print,
1293 .init = event_trigger_init,
1294 .free = event_enable_trigger_free,
1295};
1296
1297static struct event_trigger_ops event_disable_trigger_ops = {
1298 .func = event_enable_trigger,
1299 .print = event_enable_trigger_print,
1300 .init = event_trigger_init,
1301 .free = event_enable_trigger_free,
1302};
1303
1304static struct event_trigger_ops event_disable_count_trigger_ops = {
1305 .func = event_enable_count_trigger,
1306 .print = event_enable_trigger_print,
1307 .init = event_trigger_init,
1308 .free = event_enable_trigger_free,
1309};
1310
Tom Zanussid0bad492016-03-03 12:54:55 -06001311int event_enable_trigger_func(struct event_command *cmd_ops,
1312 struct trace_event_file *file,
1313 char *glob, char *cmd, char *param)
Tom Zanussi7862ad12013-10-24 08:59:28 -05001314{
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001315 struct trace_event_file *event_enable_file;
Tom Zanussi7862ad12013-10-24 08:59:28 -05001316 struct enable_trigger_data *enable_data;
1317 struct event_trigger_data *trigger_data;
1318 struct event_trigger_ops *trigger_ops;
1319 struct trace_array *tr = file->tr;
1320 const char *system;
1321 const char *event;
Tom Zanussid0bad492016-03-03 12:54:55 -06001322 bool hist = false;
Tom Zanussi7862ad12013-10-24 08:59:28 -05001323 char *trigger;
1324 char *number;
1325 bool enable;
1326 int ret;
1327
1328 if (!param)
1329 return -EINVAL;
1330
1331 /* separate the trigger from the filter (s:e:n [if filter]) */
1332 trigger = strsep(&param, " \t");
1333 if (!trigger)
1334 return -EINVAL;
1335
1336 system = strsep(&trigger, ":");
1337 if (!trigger)
1338 return -EINVAL;
1339
1340 event = strsep(&trigger, ":");
1341
1342 ret = -EINVAL;
1343 event_enable_file = find_event_file(tr, system, event);
1344 if (!event_enable_file)
1345 goto out;
1346
Tom Zanussid0bad492016-03-03 12:54:55 -06001347#ifdef CONFIG_HIST_TRIGGERS
1348 hist = ((strcmp(cmd, ENABLE_HIST_STR) == 0) ||
1349 (strcmp(cmd, DISABLE_HIST_STR) == 0));
Tom Zanussi7862ad12013-10-24 08:59:28 -05001350
Tom Zanussid0bad492016-03-03 12:54:55 -06001351 enable = ((strcmp(cmd, ENABLE_EVENT_STR) == 0) ||
1352 (strcmp(cmd, ENABLE_HIST_STR) == 0));
1353#else
1354 enable = strcmp(cmd, ENABLE_EVENT_STR) == 0;
1355#endif
Tom Zanussi7862ad12013-10-24 08:59:28 -05001356 trigger_ops = cmd_ops->get_trigger_ops(cmd, trigger);
1357
1358 ret = -ENOMEM;
1359 trigger_data = kzalloc(sizeof(*trigger_data), GFP_KERNEL);
1360 if (!trigger_data)
1361 goto out;
1362
1363 enable_data = kzalloc(sizeof(*enable_data), GFP_KERNEL);
1364 if (!enable_data) {
1365 kfree(trigger_data);
1366 goto out;
1367 }
1368
1369 trigger_data->count = -1;
1370 trigger_data->ops = trigger_ops;
1371 trigger_data->cmd_ops = cmd_ops;
1372 INIT_LIST_HEAD(&trigger_data->list);
1373 RCU_INIT_POINTER(trigger_data->filter, NULL);
1374
Tom Zanussid0bad492016-03-03 12:54:55 -06001375 enable_data->hist = hist;
Tom Zanussi7862ad12013-10-24 08:59:28 -05001376 enable_data->enable = enable;
1377 enable_data->file = event_enable_file;
1378 trigger_data->private_data = enable_data;
1379
1380 if (glob[0] == '!') {
1381 cmd_ops->unreg(glob+1, trigger_ops, trigger_data, file);
1382 kfree(trigger_data);
1383 kfree(enable_data);
1384 ret = 0;
1385 goto out;
1386 }
1387
1388 if (trigger) {
1389 number = strsep(&trigger, ":");
1390
1391 ret = -EINVAL;
1392 if (!strlen(number))
1393 goto out_free;
1394
1395 /*
1396 * We use the callback data field (which is a pointer)
1397 * as our counter.
1398 */
1399 ret = kstrtoul(number, 0, &trigger_data->count);
1400 if (ret)
1401 goto out_free;
1402 }
1403
1404 if (!param) /* if param is non-empty, it's supposed to be a filter */
1405 goto out_reg;
1406
1407 if (!cmd_ops->set_filter)
1408 goto out_reg;
1409
1410 ret = cmd_ops->set_filter(param, trigger_data, file);
1411 if (ret < 0)
1412 goto out_free;
1413
1414 out_reg:
1415 /* Don't let event modules unload while probe registered */
1416 ret = try_module_get(event_enable_file->event_call->mod);
1417 if (!ret) {
1418 ret = -EBUSY;
1419 goto out_free;
1420 }
1421
1422 ret = trace_event_enable_disable(event_enable_file, 1, 1);
1423 if (ret < 0)
1424 goto out_put;
1425 ret = cmd_ops->reg(glob, trigger_ops, trigger_data, file);
1426 /*
1427 * The above returns on success the # of functions enabled,
1428 * but if it didn't find any functions it returns zero.
1429 * Consider no functions a failure too.
1430 */
1431 if (!ret) {
1432 ret = -ENOENT;
1433 goto out_disable;
1434 } else if (ret < 0)
1435 goto out_disable;
1436 /* Just return zero, not the number of enabled functions */
1437 ret = 0;
1438 out:
1439 return ret;
1440
1441 out_disable:
1442 trace_event_enable_disable(event_enable_file, 0, 1);
1443 out_put:
1444 module_put(event_enable_file->event_call->mod);
1445 out_free:
Tom Zanussibac5fb92013-10-24 08:59:29 -05001446 if (cmd_ops->set_filter)
1447 cmd_ops->set_filter(NULL, trigger_data, NULL);
Tom Zanussi7862ad12013-10-24 08:59:28 -05001448 kfree(trigger_data);
1449 kfree(enable_data);
1450 goto out;
1451}
1452
Tom Zanussid0bad492016-03-03 12:54:55 -06001453int event_enable_register_trigger(char *glob,
1454 struct event_trigger_ops *ops,
1455 struct event_trigger_data *data,
1456 struct trace_event_file *file)
Tom Zanussi7862ad12013-10-24 08:59:28 -05001457{
1458 struct enable_trigger_data *enable_data = data->private_data;
1459 struct enable_trigger_data *test_enable_data;
1460 struct event_trigger_data *test;
1461 int ret = 0;
1462
1463 list_for_each_entry_rcu(test, &file->triggers, list) {
1464 test_enable_data = test->private_data;
1465 if (test_enable_data &&
Tom Zanussid0bad492016-03-03 12:54:55 -06001466 (test->cmd_ops->trigger_type ==
1467 data->cmd_ops->trigger_type) &&
Tom Zanussi7862ad12013-10-24 08:59:28 -05001468 (test_enable_data->file == enable_data->file)) {
1469 ret = -EEXIST;
1470 goto out;
1471 }
1472 }
1473
1474 if (data->ops->init) {
1475 ret = data->ops->init(data->ops, data);
1476 if (ret < 0)
1477 goto out;
1478 }
1479
1480 list_add_rcu(&data->list, &file->triggers);
1481 ret++;
1482
Tom Zanussi4e4a4d72015-11-23 13:51:16 -06001483 update_cond_flag(file);
Tom Zanussi7862ad12013-10-24 08:59:28 -05001484 if (trace_event_trigger_enable_disable(file, 1) < 0) {
1485 list_del_rcu(&data->list);
Tom Zanussi4e4a4d72015-11-23 13:51:16 -06001486 update_cond_flag(file);
Tom Zanussi7862ad12013-10-24 08:59:28 -05001487 ret--;
1488 }
1489out:
1490 return ret;
1491}
1492
Tom Zanussid0bad492016-03-03 12:54:55 -06001493void event_enable_unregister_trigger(char *glob,
1494 struct event_trigger_ops *ops,
1495 struct event_trigger_data *test,
1496 struct trace_event_file *file)
Tom Zanussi7862ad12013-10-24 08:59:28 -05001497{
1498 struct enable_trigger_data *test_enable_data = test->private_data;
1499 struct enable_trigger_data *enable_data;
1500 struct event_trigger_data *data;
1501 bool unregistered = false;
1502
1503 list_for_each_entry_rcu(data, &file->triggers, list) {
1504 enable_data = data->private_data;
1505 if (enable_data &&
Tom Zanussid0bad492016-03-03 12:54:55 -06001506 (data->cmd_ops->trigger_type ==
1507 test->cmd_ops->trigger_type) &&
Tom Zanussi7862ad12013-10-24 08:59:28 -05001508 (enable_data->file == test_enable_data->file)) {
1509 unregistered = true;
1510 list_del_rcu(&data->list);
1511 trace_event_trigger_enable_disable(file, 0);
Tom Zanussi4e4a4d72015-11-23 13:51:16 -06001512 update_cond_flag(file);
Tom Zanussi7862ad12013-10-24 08:59:28 -05001513 break;
1514 }
1515 }
1516
1517 if (unregistered && data->ops->free)
1518 data->ops->free(data->ops, data);
1519}
1520
1521static struct event_trigger_ops *
1522event_enable_get_trigger_ops(char *cmd, char *param)
1523{
1524 struct event_trigger_ops *ops;
1525 bool enable;
1526
Tom Zanussid0bad492016-03-03 12:54:55 -06001527#ifdef CONFIG_HIST_TRIGGERS
1528 enable = ((strcmp(cmd, ENABLE_EVENT_STR) == 0) ||
1529 (strcmp(cmd, ENABLE_HIST_STR) == 0));
1530#else
Tom Zanussi7862ad12013-10-24 08:59:28 -05001531 enable = strcmp(cmd, ENABLE_EVENT_STR) == 0;
Tom Zanussid0bad492016-03-03 12:54:55 -06001532#endif
Tom Zanussi7862ad12013-10-24 08:59:28 -05001533 if (enable)
1534 ops = param ? &event_enable_count_trigger_ops :
1535 &event_enable_trigger_ops;
1536 else
1537 ops = param ? &event_disable_count_trigger_ops :
1538 &event_disable_trigger_ops;
1539
1540 return ops;
1541}
1542
1543static struct event_command trigger_enable_cmd = {
1544 .name = ENABLE_EVENT_STR,
1545 .trigger_type = ETT_EVENT_ENABLE,
1546 .func = event_enable_trigger_func,
1547 .reg = event_enable_register_trigger,
1548 .unreg = event_enable_unregister_trigger,
1549 .get_trigger_ops = event_enable_get_trigger_ops,
Tom Zanussibac5fb92013-10-24 08:59:29 -05001550 .set_filter = set_trigger_filter,
Tom Zanussi7862ad12013-10-24 08:59:28 -05001551};
1552
1553static struct event_command trigger_disable_cmd = {
1554 .name = DISABLE_EVENT_STR,
1555 .trigger_type = ETT_EVENT_ENABLE,
1556 .func = event_enable_trigger_func,
1557 .reg = event_enable_register_trigger,
1558 .unreg = event_enable_unregister_trigger,
1559 .get_trigger_ops = event_enable_get_trigger_ops,
Tom Zanussibac5fb92013-10-24 08:59:29 -05001560 .set_filter = set_trigger_filter,
Tom Zanussi7862ad12013-10-24 08:59:28 -05001561};
1562
1563static __init void unregister_trigger_enable_disable_cmds(void)
1564{
1565 unregister_event_command(&trigger_enable_cmd);
1566 unregister_event_command(&trigger_disable_cmd);
1567}
1568
1569static __init int register_trigger_enable_disable_cmds(void)
1570{
1571 int ret;
1572
1573 ret = register_event_command(&trigger_enable_cmd);
1574 if (WARN_ON(ret < 0))
1575 return ret;
1576 ret = register_event_command(&trigger_disable_cmd);
1577 if (WARN_ON(ret < 0))
1578 unregister_trigger_enable_disable_cmds();
1579
1580 return ret;
1581}
1582
Tom Zanussi2a2df322013-10-24 08:59:25 -05001583static __init int register_trigger_traceon_traceoff_cmds(void)
1584{
1585 int ret;
1586
1587 ret = register_event_command(&trigger_traceon_cmd);
1588 if (WARN_ON(ret < 0))
1589 return ret;
1590 ret = register_event_command(&trigger_traceoff_cmd);
1591 if (WARN_ON(ret < 0))
1592 unregister_trigger_traceon_traceoff_cmds();
1593
1594 return ret;
1595}
1596
Tom Zanussi85f2b082013-10-24 08:59:24 -05001597__init int register_trigger_cmds(void)
1598{
Tom Zanussi2a2df322013-10-24 08:59:25 -05001599 register_trigger_traceon_traceoff_cmds();
Tom Zanussi93e31ff2013-10-24 08:59:26 -05001600 register_trigger_snapshot_cmd();
Tom Zanussif21ecbb2013-10-24 08:59:27 -05001601 register_trigger_stacktrace_cmd();
Tom Zanussi7862ad12013-10-24 08:59:28 -05001602 register_trigger_enable_disable_cmds();
Tom Zanussid0bad492016-03-03 12:54:55 -06001603 register_trigger_hist_enable_disable_cmds();
Tom Zanussi7ef224d2016-03-03 12:54:42 -06001604 register_trigger_hist_cmd();
Tom Zanussi2a2df322013-10-24 08:59:25 -05001605
Tom Zanussi85f2b082013-10-24 08:59:24 -05001606 return 0;
1607}