aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/trace/trace_output.c
diff options
context:
space:
mode:
authorLai Jiangshan <laijs@cn.fujitsu.com>2009-05-18 07:35:34 -0400
committerFrederic Weisbecker <fweisbec@gmail.com>2009-05-25 17:53:41 -0400
commit4f5359685af6de7dca101393dc606620adbe963f (patch)
tree1f9dc3fb9299008daa6a5fb6f03945008ea4a4f9 /kernel/trace/trace_output.c
parent5537937696c55530447c20aa27daccb8d0d29b33 (diff)
tracing: add trace_event_read_lock()
I found that there is nothing to protect event_hash in ftrace_find_event(). Rcu protects the event hashlist but not the event itself while we use it after its extraction through ftrace_find_event(). This lack of a proper locking in this spot opens a race window between any event dereferencing and module removal. Eg: --Task A-- print_trace_line(trace) { event = find_ftrace_event(trace) --Task B-- trace_module_remove_events(mod) { list_trace_events_module(ev, mod) { unregister_ftrace_event(ev->event) { hlist_del(ev->event->node) list_del(....) } } } |--> module removed, the event has been dropped --Task A-- event->print(trace); // Dereferencing freed memory If the event retrieved belongs to a module and this module is concurrently removed, we may end up dereferencing a data from a freed module. RCU could solve this, but it would add latency to the kernel and forbid tracers output callbacks to call any sleepable code. So this fix converts 'trace_event_mutex' to a read/write semaphore, and adds trace_event_read_lock() to protect ftrace_find_event(). [ Impact: fix possible freed memory dereference in ftrace ] Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com> Acked-by: Steven Rostedt <rostedt@goodmis.org> LKML-Reference: <4A114806.7090302@cn.fujitsu.com> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'kernel/trace/trace_output.c')
-rw-r--r--kernel/trace/trace_output.c25
1 files changed, 18 insertions, 7 deletions
diff --git a/kernel/trace/trace_output.c b/kernel/trace/trace_output.c
index 489c0e8ada09..7136420603aa 100644
--- a/kernel/trace/trace_output.c
+++ b/kernel/trace/trace_output.c
@@ -14,7 +14,7 @@
14/* must be a power of 2 */ 14/* must be a power of 2 */
15#define EVENT_HASHSIZE 128 15#define EVENT_HASHSIZE 128
16 16
17static DEFINE_MUTEX(trace_event_mutex); 17static DECLARE_RWSEM(trace_event_mutex);
18static struct hlist_head event_hash[EVENT_HASHSIZE] __read_mostly; 18static struct hlist_head event_hash[EVENT_HASHSIZE] __read_mostly;
19 19
20static int next_event_type = __TRACE_LAST_TYPE + 1; 20static int next_event_type = __TRACE_LAST_TYPE + 1;
@@ -466,6 +466,7 @@ static int task_state_char(unsigned long state)
466 * @type: the type of event to look for 466 * @type: the type of event to look for
467 * 467 *
468 * Returns an event of type @type otherwise NULL 468 * Returns an event of type @type otherwise NULL
469 * Called with trace_event_read_lock() held.
469 */ 470 */
470struct trace_event *ftrace_find_event(int type) 471struct trace_event *ftrace_find_event(int type)
471{ 472{
@@ -475,7 +476,7 @@ struct trace_event *ftrace_find_event(int type)
475 476
476 key = type & (EVENT_HASHSIZE - 1); 477 key = type & (EVENT_HASHSIZE - 1);
477 478
478 hlist_for_each_entry_rcu(event, n, &event_hash[key], node) { 479 hlist_for_each_entry(event, n, &event_hash[key], node) {
479 if (event->type == type) 480 if (event->type == type)
480 return event; 481 return event;
481 } 482 }
@@ -513,6 +514,16 @@ static int trace_search_list(struct list_head **list)
513 return last + 1; 514 return last + 1;
514} 515}
515 516
517void trace_event_read_lock(void)
518{
519 down_read(&trace_event_mutex);
520}
521
522void trace_event_read_unlock(void)
523{
524 up_read(&trace_event_mutex);
525}
526
516/** 527/**
517 * register_ftrace_event - register output for an event type 528 * register_ftrace_event - register output for an event type
518 * @event: the event type to register 529 * @event: the event type to register
@@ -533,7 +544,7 @@ int register_ftrace_event(struct trace_event *event)
533 unsigned key; 544 unsigned key;
534 int ret = 0; 545 int ret = 0;
535 546
536 mutex_lock(&trace_event_mutex); 547 down_write(&trace_event_mutex);
537 548
538 if (WARN_ON(!event)) 549 if (WARN_ON(!event))
539 goto out; 550 goto out;
@@ -581,11 +592,11 @@ int register_ftrace_event(struct trace_event *event)
581 592
582 key = event->type & (EVENT_HASHSIZE - 1); 593 key = event->type & (EVENT_HASHSIZE - 1);
583 594
584 hlist_add_head_rcu(&event->node, &event_hash[key]); 595 hlist_add_head(&event->node, &event_hash[key]);
585 596
586 ret = event->type; 597 ret = event->type;
587 out: 598 out:
588 mutex_unlock(&trace_event_mutex); 599 up_write(&trace_event_mutex);
589 600
590 return ret; 601 return ret;
591} 602}
@@ -597,10 +608,10 @@ EXPORT_SYMBOL_GPL(register_ftrace_event);
597 */ 608 */
598int unregister_ftrace_event(struct trace_event *event) 609int unregister_ftrace_event(struct trace_event *event)
599{ 610{
600 mutex_lock(&trace_event_mutex); 611 down_write(&trace_event_mutex);
601 hlist_del(&event->node); 612 hlist_del(&event->node);
602 list_del(&event->list); 613 list_del(&event->list);
603 mutex_unlock(&trace_event_mutex); 614 up_write(&trace_event_mutex);
604 615
605 return 0; 616 return 0;
606} 617}