Commit c9b88e95 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'trace-3.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

Pull tracing filter cleanups from Steven Rostedt:
 "Oleg Nesterov did several clean ups with the tracing filter code.  As
  he found some small bugs that went into 3.16, and these changes were
  based on that, I had to apply his changes to a separate branch than my
  main development branch.

  This was based on work that was already pulled into 3.16, and is a
  separate pull request to keep from having local merges in my pull
  request"

* tag 'trace-3.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
  tracing: Kill "filter_string" arg of replace_preds()
  tracing: Change apply_subsystem_event_filter() paths to check file->system == dir
  tracing: Kill ftrace_event_call->files
  tracing/uprobes: Kill the dead TRACE_EVENT_FL_USE_CALL_FILTER logic
  tracing: Kill call_filter_disable()
  tracing: Kill destroy_call_preds()
  tracing: Kill destroy_preds() and destroy_file_preds()
parents b8c0aa46 6355d544
...@@ -272,7 +272,6 @@ struct ftrace_event_call { ...@@ -272,7 +272,6 @@ struct ftrace_event_call {
struct trace_event event; struct trace_event event;
const char *print_fmt; const char *print_fmt;
struct event_filter *filter; struct event_filter *filter;
struct list_head *files;
void *mod; void *mod;
void *data; void *data;
/* /*
...@@ -404,8 +403,6 @@ enum event_trigger_type { ...@@ -404,8 +403,6 @@ enum event_trigger_type {
ETT_EVENT_ENABLE = (1 << 3), ETT_EVENT_ENABLE = (1 << 3),
}; };
extern void destroy_preds(struct ftrace_event_file *file);
extern void destroy_call_preds(struct ftrace_event_call *call);
extern int filter_match_preds(struct event_filter *filter, void *rec); extern int filter_match_preds(struct event_filter *filter, void *rec);
extern int filter_check_discard(struct ftrace_event_file *file, void *rec, extern int filter_check_discard(struct ftrace_event_file *file, void *rec,
......
...@@ -1621,7 +1621,6 @@ static void event_remove(struct ftrace_event_call *call) ...@@ -1621,7 +1621,6 @@ static void event_remove(struct ftrace_event_call *call)
if (file->event_call != call) if (file->event_call != call)
continue; continue;
ftrace_event_enable_disable(file, 0); ftrace_event_enable_disable(file, 0);
destroy_preds(file);
/* /*
* The do_for_each_event_file() is * The do_for_each_event_file() is
* a double loop. After finding the call for this * a double loop. After finding the call for this
...@@ -1748,7 +1747,8 @@ static void __trace_remove_event_call(struct ftrace_event_call *call) ...@@ -1748,7 +1747,8 @@ static void __trace_remove_event_call(struct ftrace_event_call *call)
{ {
event_remove(call); event_remove(call);
trace_destroy_fields(call); trace_destroy_fields(call);
destroy_call_preds(call); free_event_filter(call->filter);
call->filter = NULL;
} }
static int probe_remove_event_call(struct ftrace_event_call *call) static int probe_remove_event_call(struct ftrace_event_call *call)
......
...@@ -774,17 +774,12 @@ static void __free_preds(struct event_filter *filter) ...@@ -774,17 +774,12 @@ static void __free_preds(struct event_filter *filter)
filter->n_preds = 0; filter->n_preds = 0;
} }
static void call_filter_disable(struct ftrace_event_call *call)
{
call->flags &= ~TRACE_EVENT_FL_FILTERED;
}
static void filter_disable(struct ftrace_event_file *file) static void filter_disable(struct ftrace_event_file *file)
{ {
struct ftrace_event_call *call = file->event_call; struct ftrace_event_call *call = file->event_call;
if (call->flags & TRACE_EVENT_FL_USE_CALL_FILTER) if (call->flags & TRACE_EVENT_FL_USE_CALL_FILTER)
call_filter_disable(call); call->flags &= ~TRACE_EVENT_FL_FILTERED;
else else
file->flags &= ~FTRACE_EVENT_FL_FILTERED; file->flags &= ~FTRACE_EVENT_FL_FILTERED;
} }
...@@ -804,32 +799,6 @@ void free_event_filter(struct event_filter *filter) ...@@ -804,32 +799,6 @@ void free_event_filter(struct event_filter *filter)
__free_filter(filter); __free_filter(filter);
} }
void destroy_call_preds(struct ftrace_event_call *call)
{
__free_filter(call->filter);
call->filter = NULL;
}
static void destroy_file_preds(struct ftrace_event_file *file)
{
__free_filter(file->filter);
file->filter = NULL;
}
/*
* Called when destroying the ftrace_event_file.
* The file is being freed, so we do not need to worry about
* the file being currently used. This is for module code removing
* the tracepoints from within it.
*/
void destroy_preds(struct ftrace_event_file *file)
{
if (file->event_call->flags & TRACE_EVENT_FL_USE_CALL_FILTER)
destroy_call_preds(file->event_call);
else
destroy_file_preds(file);
}
static struct event_filter *__alloc_filter(void) static struct event_filter *__alloc_filter(void)
{ {
struct event_filter *filter; struct event_filter *filter;
...@@ -873,17 +842,14 @@ static inline void __remove_filter(struct ftrace_event_file *file) ...@@ -873,17 +842,14 @@ static inline void __remove_filter(struct ftrace_event_file *file)
remove_filter_string(file->filter); remove_filter_string(file->filter);
} }
static void filter_free_subsystem_preds(struct event_subsystem *system, static void filter_free_subsystem_preds(struct ftrace_subsystem_dir *dir,
struct trace_array *tr) struct trace_array *tr)
{ {
struct ftrace_event_file *file; struct ftrace_event_file *file;
struct ftrace_event_call *call;
list_for_each_entry(file, &tr->events, list) { list_for_each_entry(file, &tr->events, list) {
call = file->event_call; if (file->system != dir)
if (strcmp(call->class->system, system->name) != 0)
continue; continue;
__remove_filter(file); __remove_filter(file);
} }
} }
...@@ -901,15 +867,13 @@ static inline void __free_subsystem_filter(struct ftrace_event_file *file) ...@@ -901,15 +867,13 @@ static inline void __free_subsystem_filter(struct ftrace_event_file *file)
} }
} }
static void filter_free_subsystem_filters(struct event_subsystem *system, static void filter_free_subsystem_filters(struct ftrace_subsystem_dir *dir,
struct trace_array *tr) struct trace_array *tr)
{ {
struct ftrace_event_file *file; struct ftrace_event_file *file;
struct ftrace_event_call *call;
list_for_each_entry(file, &tr->events, list) { list_for_each_entry(file, &tr->events, list) {
call = file->event_call; if (file->system != dir)
if (strcmp(call->class->system, system->name) != 0)
continue; continue;
__free_subsystem_filter(file); __free_subsystem_filter(file);
} }
...@@ -1582,7 +1546,6 @@ static int fold_pred_tree(struct event_filter *filter, ...@@ -1582,7 +1546,6 @@ static int fold_pred_tree(struct event_filter *filter,
static int replace_preds(struct ftrace_event_call *call, static int replace_preds(struct ftrace_event_call *call,
struct event_filter *filter, struct event_filter *filter,
struct filter_parse_state *ps, struct filter_parse_state *ps,
char *filter_string,
bool dry_run) bool dry_run)
{ {
char *operand1 = NULL, *operand2 = NULL; char *operand1 = NULL, *operand2 = NULL;
...@@ -1755,13 +1718,12 @@ struct filter_list { ...@@ -1755,13 +1718,12 @@ struct filter_list {
struct event_filter *filter; struct event_filter *filter;
}; };
static int replace_system_preds(struct event_subsystem *system, static int replace_system_preds(struct ftrace_subsystem_dir *dir,
struct trace_array *tr, struct trace_array *tr,
struct filter_parse_state *ps, struct filter_parse_state *ps,
char *filter_string) char *filter_string)
{ {
struct ftrace_event_file *file; struct ftrace_event_file *file;
struct ftrace_event_call *call;
struct filter_list *filter_item; struct filter_list *filter_item;
struct filter_list *tmp; struct filter_list *tmp;
LIST_HEAD(filter_list); LIST_HEAD(filter_list);
...@@ -1769,15 +1731,14 @@ static int replace_system_preds(struct event_subsystem *system, ...@@ -1769,15 +1731,14 @@ static int replace_system_preds(struct event_subsystem *system,
int err; int err;
list_for_each_entry(file, &tr->events, list) { list_for_each_entry(file, &tr->events, list) {
call = file->event_call; if (file->system != dir)
if (strcmp(call->class->system, system->name) != 0)
continue; continue;
/* /*
* Try to see if the filter can be applied * Try to see if the filter can be applied
* (filter arg is ignored on dry_run) * (filter arg is ignored on dry_run)
*/ */
err = replace_preds(call, NULL, ps, filter_string, true); err = replace_preds(file->event_call, NULL, ps, true);
if (err) if (err)
event_set_no_set_filter_flag(file); event_set_no_set_filter_flag(file);
else else
...@@ -1787,9 +1748,7 @@ static int replace_system_preds(struct event_subsystem *system, ...@@ -1787,9 +1748,7 @@ static int replace_system_preds(struct event_subsystem *system,
list_for_each_entry(file, &tr->events, list) { list_for_each_entry(file, &tr->events, list) {
struct event_filter *filter; struct event_filter *filter;
call = file->event_call; if (file->system != dir)
if (strcmp(call->class->system, system->name) != 0)
continue; continue;
if (event_no_set_filter_flag(file)) if (event_no_set_filter_flag(file))
...@@ -1811,7 +1770,7 @@ static int replace_system_preds(struct event_subsystem *system, ...@@ -1811,7 +1770,7 @@ static int replace_system_preds(struct event_subsystem *system,
if (err) if (err)
goto fail_mem; goto fail_mem;
err = replace_preds(call, filter, ps, filter_string, false); err = replace_preds(file->event_call, filter, ps, false);
if (err) { if (err) {
filter_disable(file); filter_disable(file);
parse_error(ps, FILT_ERR_BAD_SUBSYS_FILTER, 0); parse_error(ps, FILT_ERR_BAD_SUBSYS_FILTER, 0);
...@@ -1933,7 +1892,7 @@ static int create_filter(struct ftrace_event_call *call, ...@@ -1933,7 +1892,7 @@ static int create_filter(struct ftrace_event_call *call,
err = create_filter_start(filter_str, set_str, &ps, &filter); err = create_filter_start(filter_str, set_str, &ps, &filter);
if (!err) { if (!err) {
err = replace_preds(call, filter, ps, filter_str, false); err = replace_preds(call, filter, ps, false);
if (err && set_str) if (err && set_str)
append_filter_err(ps, filter); append_filter_err(ps, filter);
} }
...@@ -1959,7 +1918,7 @@ int create_event_filter(struct ftrace_event_call *call, ...@@ -1959,7 +1918,7 @@ int create_event_filter(struct ftrace_event_call *call,
* Identical to create_filter() except that it creates a subsystem filter * Identical to create_filter() except that it creates a subsystem filter
* and always remembers @filter_str. * and always remembers @filter_str.
*/ */
static int create_system_filter(struct event_subsystem *system, static int create_system_filter(struct ftrace_subsystem_dir *dir,
struct trace_array *tr, struct trace_array *tr,
char *filter_str, struct event_filter **filterp) char *filter_str, struct event_filter **filterp)
{ {
...@@ -1969,7 +1928,7 @@ static int create_system_filter(struct event_subsystem *system, ...@@ -1969,7 +1928,7 @@ static int create_system_filter(struct event_subsystem *system,
err = create_filter_start(filter_str, true, &ps, &filter); err = create_filter_start(filter_str, true, &ps, &filter);
if (!err) { if (!err) {
err = replace_system_preds(system, tr, ps, filter_str); err = replace_system_preds(dir, tr, ps, filter_str);
if (!err) { if (!err) {
/* System filters just show a default message */ /* System filters just show a default message */
kfree(filter->filter_string); kfree(filter->filter_string);
...@@ -2053,18 +2012,18 @@ int apply_subsystem_event_filter(struct ftrace_subsystem_dir *dir, ...@@ -2053,18 +2012,18 @@ int apply_subsystem_event_filter(struct ftrace_subsystem_dir *dir,
} }
if (!strcmp(strstrip(filter_string), "0")) { if (!strcmp(strstrip(filter_string), "0")) {
filter_free_subsystem_preds(system, tr); filter_free_subsystem_preds(dir, tr);
remove_filter_string(system->filter); remove_filter_string(system->filter);
filter = system->filter; filter = system->filter;
system->filter = NULL; system->filter = NULL;
/* Ensure all filters are no longer used */ /* Ensure all filters are no longer used */
synchronize_sched(); synchronize_sched();
filter_free_subsystem_filters(system, tr); filter_free_subsystem_filters(dir, tr);
__free_filter(filter); __free_filter(filter);
goto out_unlock; goto out_unlock;
} }
err = create_system_filter(system, tr, filter_string, &filter); err = create_system_filter(dir, tr, filter_string, &filter);
if (filter) { if (filter) {
/* /*
* No event actually uses the system filter * No event actually uses the system filter
......
...@@ -265,7 +265,6 @@ alloc_trace_uprobe(const char *group, const char *event, int nargs, bool is_ret) ...@@ -265,7 +265,6 @@ alloc_trace_uprobe(const char *group, const char *event, int nargs, bool is_ret)
if (is_ret) if (is_ret)
tu->consumer.ret_handler = uretprobe_dispatcher; tu->consumer.ret_handler = uretprobe_dispatcher;
init_trace_uprobe_filter(&tu->filter); init_trace_uprobe_filter(&tu->filter);
tu->tp.call.flags |= TRACE_EVENT_FL_USE_CALL_FILTER;
return tu; return tu;
error: error:
...@@ -1292,7 +1291,7 @@ static int register_uprobe_event(struct trace_uprobe *tu) ...@@ -1292,7 +1291,7 @@ static int register_uprobe_event(struct trace_uprobe *tu)
kfree(call->print_fmt); kfree(call->print_fmt);
return -ENODEV; return -ENODEV;
} }
call->flags = 0;
call->class->reg = trace_uprobe_register; call->class->reg = trace_uprobe_register;
call->data = tu; call->data = tu;
ret = trace_add_event_call(call); ret = trace_add_event_call(call);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment