Skip to content

Commit

Permalink
Merge branch 'tracing-fixes-for-linus' of git://git.kernel.org/pub/sc…
Browse files Browse the repository at this point in the history
…m/linux/kernel/git/tip/linux-2.6-tip

* 'tracing-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
  modules, tracing: Remove stale struct marker signature from module_layout()
  tracing/workqueue: Use %pf in workqueue trace events
  tracing: Fix a comment and a trivial format issue in tracepoint.h
  tracing: Fix failure path in ftrace_regex_open()
  tracing: Fix failure path in ftrace_graph_write()
  tracing: Check the return value of trace_get_user()
  tracing: Fix off-by-one in trace_get_user()
  • Loading branch information
torvalds committed Sep 26, 2009
2 parents 5bb241b + 115e8a2 commit 4187e7e
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion include/linux/tracepoint.h
Expand Up @@ -36,7 +36,7 @@ struct tracepoint {
#ifndef DECLARE_TRACE

#define TP_PROTO(args...) args
#define TP_ARGS(args...) args
#define TP_ARGS(args...) args

#ifdef CONFIG_TRACEPOINTS

Expand Down
4 changes: 2 additions & 2 deletions include/trace/events/workqueue.h
Expand Up @@ -26,7 +26,7 @@ TRACE_EVENT(workqueue_insertion,
__entry->func = work->func;
),

TP_printk("thread=%s:%d func=%pF", __entry->thread_comm,
TP_printk("thread=%s:%d func=%pf", __entry->thread_comm,
__entry->thread_pid, __entry->func)
);

Expand All @@ -48,7 +48,7 @@ TRACE_EVENT(workqueue_execution,
__entry->func = work->func;
),

TP_printk("thread=%s:%d func=%pF", __entry->thread_comm,
TP_printk("thread=%s:%d func=%pf", __entry->thread_comm,
__entry->thread_pid, __entry->func)
);

Expand Down
1 change: 0 additions & 1 deletion kernel/module.c
Expand Up @@ -3091,7 +3091,6 @@ void module_layout(struct module *mod,
struct modversion_info *ver,
struct kernel_param *kp,
struct kernel_symbol *ks,
struct marker *marker,
struct tracepoint *tp)
{
}
Expand Down
23 changes: 13 additions & 10 deletions kernel/trace/ftrace.c
Expand Up @@ -1621,8 +1621,10 @@ ftrace_regex_open(struct inode *inode, struct file *file, int enable)
if (!ret) {
struct seq_file *m = file->private_data;
m->private = iter;
} else
} else {
trace_parser_put(&iter->parser);
kfree(iter);
}
} else
file->private_data = iter;
mutex_unlock(&ftrace_regex_lock);
Expand Down Expand Up @@ -2202,7 +2204,7 @@ ftrace_regex_write(struct file *file, const char __user *ubuf,
struct trace_parser *parser;
ssize_t ret, read;

if (!cnt || cnt < 0)
if (!cnt)
return 0;

mutex_lock(&ftrace_regex_lock);
Expand All @@ -2216,7 +2218,7 @@ ftrace_regex_write(struct file *file, const char __user *ubuf,
parser = &iter->parser;
read = trace_get_user(parser, ubuf, cnt, ppos);

if (trace_parser_loaded(parser) &&
if (read >= 0 && trace_parser_loaded(parser) &&
!trace_parser_cont(parser)) {
ret = ftrace_process_regex(parser->buffer,
parser->idx, enable);
Expand Down Expand Up @@ -2552,8 +2554,7 @@ ftrace_graph_write(struct file *file, const char __user *ubuf,
size_t cnt, loff_t *ppos)
{
struct trace_parser parser;
size_t read = 0;
ssize_t ret;
ssize_t read, ret;

if (!cnt || cnt < 0)
return 0;
Expand All @@ -2562,29 +2563,31 @@ ftrace_graph_write(struct file *file, const char __user *ubuf,

if (ftrace_graph_count >= FTRACE_GRAPH_MAX_FUNCS) {
ret = -EBUSY;
goto out;
goto out_unlock;
}

if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
ret = -ENOMEM;
goto out;
goto out_unlock;
}

read = trace_get_user(&parser, ubuf, cnt, ppos);

if (trace_parser_loaded((&parser))) {
if (read >= 0 && trace_parser_loaded((&parser))) {
parser.buffer[parser.idx] = 0;

/* we allow only one expression at a time */
ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
parser.buffer);
if (ret)
goto out;
goto out_free;
}

ret = read;
out:

out_free:
trace_parser_put(&parser);
out_unlock:
mutex_unlock(&graph_lock);

return ret;
Expand Down
2 changes: 1 addition & 1 deletion kernel/trace/trace.c
Expand Up @@ -415,7 +415,7 @@ int trace_get_user(struct trace_parser *parser, const char __user *ubuf,

/* read the non-space input */
while (cnt && !isspace(ch)) {
if (parser->idx < parser->size)
if (parser->idx < parser->size - 1)
parser->buffer[parser->idx++] = ch;
else {
ret = -EINVAL;
Expand Down
7 changes: 3 additions & 4 deletions kernel/trace/trace_events.c
Expand Up @@ -232,10 +232,9 @@ ftrace_event_write(struct file *file, const char __user *ubuf,
size_t cnt, loff_t *ppos)
{
struct trace_parser parser;
size_t read = 0;
ssize_t ret;
ssize_t read, ret;

if (!cnt || cnt < 0)
if (!cnt)
return 0;

ret = tracing_update_buffers();
Expand All @@ -247,7 +246,7 @@ ftrace_event_write(struct file *file, const char __user *ubuf,

read = trace_get_user(&parser, ubuf, cnt, ppos);

if (trace_parser_loaded((&parser))) {
if (read >= 0 && trace_parser_loaded((&parser))) {
int set = 1;

if (*parser.buffer == '!')
Expand Down

0 comments on commit 4187e7e

Please sign in to comment.