mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 15:11:16 +00:00
Various fixes in tracing:
- Tracepoints should not give warning on OOM failures - Use special field for function pointer in trace event - Fix igrab issues in uprobes - Fixes to the new histogram triggers -----BEGIN PGP SIGNATURE----- iIoEABYIADIWIQRRSw7ePDh/lE+zeZMp5XQQmuv6qgUCWuoYdBQccm9zdGVkdEBn b29kbWlzLm9yZwAKCRAp5XQQmuv6qtFnAP9X4+AVDQH0VfsMLSc9D+rK6WmcRIhv q8J2gNPv3anM+AD/SFXWGO4ihN+0KDw/TqmJxESNEybq47vTZ/s5lM6A4gQ= =fQbj -----END PGP SIGNATURE----- Merge tag 'trace-v4.17-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace Pull tracing fixes from Steven Rostedt: "Various fixes in tracing: - Tracepoints should not give warning on OOM failures - Use special field for function pointer in trace event - Fix igrab issues in uprobes - Fixes to the new histogram triggers" * tag 'trace-v4.17-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace: tracepoint: Do not warn on ENOMEM tracing: Add field modifier parsing hist error for hist triggers tracing: Add field parsing hist error for hist triggers tracing: Restore proper field flag printing when displaying triggers tracing: initcall: Ordered comparison of function pointers tracing: Remove igrab() iput() call from uprobes.c tracing: Fix bad use of igrab in trace_uprobe.c
This commit is contained in:
commit
f4ef6a438c
5 changed files with 42 additions and 30 deletions
|
@ -31,7 +31,11 @@ TRACE_EVENT(initcall_start,
|
||||||
TP_ARGS(func),
|
TP_ARGS(func),
|
||||||
|
|
||||||
TP_STRUCT__entry(
|
TP_STRUCT__entry(
|
||||||
__field(initcall_t, func)
|
/*
|
||||||
|
* Use field_struct to avoid is_signed_type()
|
||||||
|
* comparison of a function pointer
|
||||||
|
*/
|
||||||
|
__field_struct(initcall_t, func)
|
||||||
),
|
),
|
||||||
|
|
||||||
TP_fast_assign(
|
TP_fast_assign(
|
||||||
|
@ -48,7 +52,11 @@ TRACE_EVENT(initcall_finish,
|
||||||
TP_ARGS(func, ret),
|
TP_ARGS(func, ret),
|
||||||
|
|
||||||
TP_STRUCT__entry(
|
TP_STRUCT__entry(
|
||||||
__field(initcall_t, func)
|
/*
|
||||||
|
* Use field_struct to avoid is_signed_type()
|
||||||
|
* comparison of a function pointer
|
||||||
|
*/
|
||||||
|
__field_struct(initcall_t, func)
|
||||||
__field(int, ret)
|
__field(int, ret)
|
||||||
),
|
),
|
||||||
|
|
||||||
|
|
|
@ -491,7 +491,7 @@ static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
|
||||||
if (!uprobe)
|
if (!uprobe)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
uprobe->inode = igrab(inode);
|
uprobe->inode = inode;
|
||||||
uprobe->offset = offset;
|
uprobe->offset = offset;
|
||||||
init_rwsem(&uprobe->register_rwsem);
|
init_rwsem(&uprobe->register_rwsem);
|
||||||
init_rwsem(&uprobe->consumer_rwsem);
|
init_rwsem(&uprobe->consumer_rwsem);
|
||||||
|
@ -502,7 +502,6 @@ static struct uprobe *alloc_uprobe(struct inode *inode, loff_t offset)
|
||||||
if (cur_uprobe) {
|
if (cur_uprobe) {
|
||||||
kfree(uprobe);
|
kfree(uprobe);
|
||||||
uprobe = cur_uprobe;
|
uprobe = cur_uprobe;
|
||||||
iput(inode);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return uprobe;
|
return uprobe;
|
||||||
|
@ -701,7 +700,6 @@ static void delete_uprobe(struct uprobe *uprobe)
|
||||||
rb_erase(&uprobe->rb_node, &uprobes_tree);
|
rb_erase(&uprobe->rb_node, &uprobes_tree);
|
||||||
spin_unlock(&uprobes_treelock);
|
spin_unlock(&uprobes_treelock);
|
||||||
RB_CLEAR_NODE(&uprobe->rb_node); /* for uprobe_is_active() */
|
RB_CLEAR_NODE(&uprobe->rb_node); /* for uprobe_is_active() */
|
||||||
iput(uprobe->inode);
|
|
||||||
put_uprobe(uprobe);
|
put_uprobe(uprobe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -873,7 +871,8 @@ static void __uprobe_unregister(struct uprobe *uprobe, struct uprobe_consumer *u
|
||||||
* tuple). Creation refcount stops uprobe_unregister from freeing the
|
* tuple). Creation refcount stops uprobe_unregister from freeing the
|
||||||
* @uprobe even before the register operation is complete. Creation
|
* @uprobe even before the register operation is complete. Creation
|
||||||
* refcount is released when the last @uc for the @uprobe
|
* refcount is released when the last @uc for the @uprobe
|
||||||
* unregisters.
|
* unregisters. Caller of uprobe_register() is required to keep @inode
|
||||||
|
* (and the containing mount) referenced.
|
||||||
*
|
*
|
||||||
* Return errno if it cannot successully install probes
|
* Return errno if it cannot successully install probes
|
||||||
* else return 0 (success)
|
* else return 0 (success)
|
||||||
|
|
|
@ -2466,6 +2466,7 @@ parse_field(struct hist_trigger_data *hist_data, struct trace_event_file *file,
|
||||||
else if (strcmp(modifier, "usecs") == 0)
|
else if (strcmp(modifier, "usecs") == 0)
|
||||||
*flags |= HIST_FIELD_FL_TIMESTAMP_USECS;
|
*flags |= HIST_FIELD_FL_TIMESTAMP_USECS;
|
||||||
else {
|
else {
|
||||||
|
hist_err("Invalid field modifier: ", modifier);
|
||||||
field = ERR_PTR(-EINVAL);
|
field = ERR_PTR(-EINVAL);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
@ -2481,6 +2482,7 @@ parse_field(struct hist_trigger_data *hist_data, struct trace_event_file *file,
|
||||||
else {
|
else {
|
||||||
field = trace_find_event_field(file->event_call, field_name);
|
field = trace_find_event_field(file->event_call, field_name);
|
||||||
if (!field || !field->size) {
|
if (!field || !field->size) {
|
||||||
|
hist_err("Couldn't find field: ", field_name);
|
||||||
field = ERR_PTR(-EINVAL);
|
field = ERR_PTR(-EINVAL);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
@ -4913,6 +4915,16 @@ static void hist_field_print(struct seq_file *m, struct hist_field *hist_field)
|
||||||
seq_printf(m, "%s", field_name);
|
seq_printf(m, "%s", field_name);
|
||||||
} else if (hist_field->flags & HIST_FIELD_FL_TIMESTAMP)
|
} else if (hist_field->flags & HIST_FIELD_FL_TIMESTAMP)
|
||||||
seq_puts(m, "common_timestamp");
|
seq_puts(m, "common_timestamp");
|
||||||
|
|
||||||
|
if (hist_field->flags) {
|
||||||
|
if (!(hist_field->flags & HIST_FIELD_FL_VAR_REF) &&
|
||||||
|
!(hist_field->flags & HIST_FIELD_FL_EXPR)) {
|
||||||
|
const char *flags = get_hist_field_flags(hist_field);
|
||||||
|
|
||||||
|
if (flags)
|
||||||
|
seq_printf(m, ".%s", flags);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int event_hist_trigger_print(struct seq_file *m,
|
static int event_hist_trigger_print(struct seq_file *m,
|
||||||
|
|
|
@ -55,6 +55,7 @@ struct trace_uprobe {
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
struct trace_uprobe_filter filter;
|
struct trace_uprobe_filter filter;
|
||||||
struct uprobe_consumer consumer;
|
struct uprobe_consumer consumer;
|
||||||
|
struct path path;
|
||||||
struct inode *inode;
|
struct inode *inode;
|
||||||
char *filename;
|
char *filename;
|
||||||
unsigned long offset;
|
unsigned long offset;
|
||||||
|
@ -289,7 +290,7 @@ static void free_trace_uprobe(struct trace_uprobe *tu)
|
||||||
for (i = 0; i < tu->tp.nr_args; i++)
|
for (i = 0; i < tu->tp.nr_args; i++)
|
||||||
traceprobe_free_probe_arg(&tu->tp.args[i]);
|
traceprobe_free_probe_arg(&tu->tp.args[i]);
|
||||||
|
|
||||||
iput(tu->inode);
|
path_put(&tu->path);
|
||||||
kfree(tu->tp.call.class->system);
|
kfree(tu->tp.call.class->system);
|
||||||
kfree(tu->tp.call.name);
|
kfree(tu->tp.call.name);
|
||||||
kfree(tu->filename);
|
kfree(tu->filename);
|
||||||
|
@ -363,7 +364,6 @@ end:
|
||||||
static int create_trace_uprobe(int argc, char **argv)
|
static int create_trace_uprobe(int argc, char **argv)
|
||||||
{
|
{
|
||||||
struct trace_uprobe *tu;
|
struct trace_uprobe *tu;
|
||||||
struct inode *inode;
|
|
||||||
char *arg, *event, *group, *filename;
|
char *arg, *event, *group, *filename;
|
||||||
char buf[MAX_EVENT_NAME_LEN];
|
char buf[MAX_EVENT_NAME_LEN];
|
||||||
struct path path;
|
struct path path;
|
||||||
|
@ -371,7 +371,6 @@ static int create_trace_uprobe(int argc, char **argv)
|
||||||
bool is_delete, is_return;
|
bool is_delete, is_return;
|
||||||
int i, ret;
|
int i, ret;
|
||||||
|
|
||||||
inode = NULL;
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
is_delete = false;
|
is_delete = false;
|
||||||
is_return = false;
|
is_return = false;
|
||||||
|
@ -437,21 +436,16 @@ static int create_trace_uprobe(int argc, char **argv)
|
||||||
}
|
}
|
||||||
/* Find the last occurrence, in case the path contains ':' too. */
|
/* Find the last occurrence, in case the path contains ':' too. */
|
||||||
arg = strrchr(argv[1], ':');
|
arg = strrchr(argv[1], ':');
|
||||||
if (!arg) {
|
if (!arg)
|
||||||
ret = -EINVAL;
|
return -EINVAL;
|
||||||
goto fail_address_parse;
|
|
||||||
}
|
|
||||||
|
|
||||||
*arg++ = '\0';
|
*arg++ = '\0';
|
||||||
filename = argv[1];
|
filename = argv[1];
|
||||||
ret = kern_path(filename, LOOKUP_FOLLOW, &path);
|
ret = kern_path(filename, LOOKUP_FOLLOW, &path);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto fail_address_parse;
|
return ret;
|
||||||
|
|
||||||
inode = igrab(d_real_inode(path.dentry));
|
if (!d_is_reg(path.dentry)) {
|
||||||
path_put(&path);
|
|
||||||
|
|
||||||
if (!inode || !S_ISREG(inode->i_mode)) {
|
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto fail_address_parse;
|
goto fail_address_parse;
|
||||||
}
|
}
|
||||||
|
@ -490,7 +484,7 @@ static int create_trace_uprobe(int argc, char **argv)
|
||||||
goto fail_address_parse;
|
goto fail_address_parse;
|
||||||
}
|
}
|
||||||
tu->offset = offset;
|
tu->offset = offset;
|
||||||
tu->inode = inode;
|
tu->path = path;
|
||||||
tu->filename = kstrdup(filename, GFP_KERNEL);
|
tu->filename = kstrdup(filename, GFP_KERNEL);
|
||||||
|
|
||||||
if (!tu->filename) {
|
if (!tu->filename) {
|
||||||
|
@ -558,7 +552,7 @@ error:
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
fail_address_parse:
|
fail_address_parse:
|
||||||
iput(inode);
|
path_put(&path);
|
||||||
|
|
||||||
pr_info("Failed to parse address or file.\n");
|
pr_info("Failed to parse address or file.\n");
|
||||||
|
|
||||||
|
@ -922,6 +916,7 @@ probe_event_enable(struct trace_uprobe *tu, struct trace_event_file *file,
|
||||||
goto err_flags;
|
goto err_flags;
|
||||||
|
|
||||||
tu->consumer.filter = filter;
|
tu->consumer.filter = filter;
|
||||||
|
tu->inode = d_real_inode(tu->path.dentry);
|
||||||
ret = uprobe_register(tu->inode, tu->offset, &tu->consumer);
|
ret = uprobe_register(tu->inode, tu->offset, &tu->consumer);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err_buffer;
|
goto err_buffer;
|
||||||
|
@ -967,6 +962,7 @@ probe_event_disable(struct trace_uprobe *tu, struct trace_event_file *file)
|
||||||
WARN_ON(!uprobe_filter_is_empty(&tu->filter));
|
WARN_ON(!uprobe_filter_is_empty(&tu->filter));
|
||||||
|
|
||||||
uprobe_unregister(tu->inode, tu->offset, &tu->consumer);
|
uprobe_unregister(tu->inode, tu->offset, &tu->consumer);
|
||||||
|
tu->inode = NULL;
|
||||||
tu->tp.flags &= file ? ~TP_FLAG_TRACE : ~TP_FLAG_PROFILE;
|
tu->tp.flags &= file ? ~TP_FLAG_TRACE : ~TP_FLAG_PROFILE;
|
||||||
|
|
||||||
uprobe_buffer_disable();
|
uprobe_buffer_disable();
|
||||||
|
@ -1337,7 +1333,6 @@ struct trace_event_call *
|
||||||
create_local_trace_uprobe(char *name, unsigned long offs, bool is_return)
|
create_local_trace_uprobe(char *name, unsigned long offs, bool is_return)
|
||||||
{
|
{
|
||||||
struct trace_uprobe *tu;
|
struct trace_uprobe *tu;
|
||||||
struct inode *inode;
|
|
||||||
struct path path;
|
struct path path;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -1345,11 +1340,8 @@ create_local_trace_uprobe(char *name, unsigned long offs, bool is_return)
|
||||||
if (ret)
|
if (ret)
|
||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
|
|
||||||
inode = igrab(d_inode(path.dentry));
|
if (!d_is_reg(path.dentry)) {
|
||||||
path_put(&path);
|
path_put(&path);
|
||||||
|
|
||||||
if (!inode || !S_ISREG(inode->i_mode)) {
|
|
||||||
iput(inode);
|
|
||||||
return ERR_PTR(-EINVAL);
|
return ERR_PTR(-EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1364,11 +1356,12 @@ create_local_trace_uprobe(char *name, unsigned long offs, bool is_return)
|
||||||
if (IS_ERR(tu)) {
|
if (IS_ERR(tu)) {
|
||||||
pr_info("Failed to allocate trace_uprobe.(%d)\n",
|
pr_info("Failed to allocate trace_uprobe.(%d)\n",
|
||||||
(int)PTR_ERR(tu));
|
(int)PTR_ERR(tu));
|
||||||
|
path_put(&path);
|
||||||
return ERR_CAST(tu);
|
return ERR_CAST(tu);
|
||||||
}
|
}
|
||||||
|
|
||||||
tu->offset = offs;
|
tu->offset = offs;
|
||||||
tu->inode = inode;
|
tu->path = path;
|
||||||
tu->filename = kstrdup(name, GFP_KERNEL);
|
tu->filename = kstrdup(name, GFP_KERNEL);
|
||||||
init_trace_event_call(tu, &tu->tp.call);
|
init_trace_event_call(tu, &tu->tp.call);
|
||||||
|
|
||||||
|
|
|
@ -207,7 +207,7 @@ static int tracepoint_add_func(struct tracepoint *tp,
|
||||||
lockdep_is_held(&tracepoints_mutex));
|
lockdep_is_held(&tracepoints_mutex));
|
||||||
old = func_add(&tp_funcs, func, prio);
|
old = func_add(&tp_funcs, func, prio);
|
||||||
if (IS_ERR(old)) {
|
if (IS_ERR(old)) {
|
||||||
WARN_ON_ONCE(1);
|
WARN_ON_ONCE(PTR_ERR(old) != -ENOMEM);
|
||||||
return PTR_ERR(old);
|
return PTR_ERR(old);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -239,7 +239,7 @@ static int tracepoint_remove_func(struct tracepoint *tp,
|
||||||
lockdep_is_held(&tracepoints_mutex));
|
lockdep_is_held(&tracepoints_mutex));
|
||||||
old = func_remove(&tp_funcs, func);
|
old = func_remove(&tp_funcs, func);
|
||||||
if (IS_ERR(old)) {
|
if (IS_ERR(old)) {
|
||||||
WARN_ON_ONCE(1);
|
WARN_ON_ONCE(PTR_ERR(old) != -ENOMEM);
|
||||||
return PTR_ERR(old);
|
return PTR_ERR(old);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue