public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Li Zefan <lizf@cn.fujitsu.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: LKML <linux-kernel@vger.kernel.org>, Ingo Molnar <mingo@elte.hu>,
	Andrew Morton <akpm@linux-foundation.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	Steven Rostedt <srostedt@redhat.com>
Subject: Re: [PATCH 2/6] tracing: increase size of number of possible events
Date: Mon, 04 May 2009 17:05:20 +0800	[thread overview]
Message-ID: <49FEAFD0.30106@cn.fujitsu.com> (raw)
In-Reply-To: <alpine.DEB.2.00.0904260919370.24293@gandalf.stny.rr.com>

(Sorry for the delayed reply)

Steven Rostedt wrote:
> Hi Li,
> 
> 
> On Sun, 26 Apr 2009, Li Zefan wrote:
> 
>> Steven Rostedt wrote:
>>> On Fri, 24 Apr 2009, Steven Rostedt wrote:
>>>
>>>> On Fri, 24 Apr 2009, Li Zefan wrote:
>>>>> console 1:
>>>>>  # cat /debug/tracing/trace_pipe
>>>>>
>>>>> console 2:
>>>>> while (1) {
>>>>> 	insmod trace-events-sample.ko
>>>>> 	echo foo_bar > /debug/tracing/set_event
>>>>> 	rmmod trace-events-sample.ko
>>>>> }
>>>>>
>>>>> I got this immediately:
>>>>>
>>>>> BUG: unable to handle kernel NULL pointer dereference at 0000006f
>>>>> IP: [<c05210f3>] bstr_printf+0x2ce/0x302
>>>>> ...
>>>>> Call Trace:
>>>>>  [<c0476d12>] ? trace_seq_bprintf+0x28/0x41
>>>>>  [<c0477569>] ? trace_bprint_print+0x58/0x6c
>>>>>  [<c0472ffc>] ? print_trace_line+0x2c5/0x2df
>>>>>  [<c0428a41>] ? sub_preempt_count+0x85/0xa0
>>>>>  [<c04758cf>] ? tracing_read_pipe+0x118/0x191
>>>>>  [<c04757b7>] ? tracing_read_pipe+0x0/0x191
>>>>>  [<c04b09f9>] ? vfs_read+0x8f/0x136
>>>>>  [<c04b0da3>] ? sys_read+0x40/0x65
>>>>>  [<c0402a68>] ? sysenter_do_call+0x12/0x36
>>>>>
>>>>> (We can even get other crashes..)
>>>>>
>>>> Can you send me your full bootlog and config. I'm not able to reproduce 
>>>> this.
>>> And the SHA1 of the HEAD of the git repo you are using.
>>>
>>> Thanks,
>>>
>> the HEAD: 9ce5424d75e56891905b77d1589924765e62059a + this patch
>>
>> (I commented out "hi" from the sample module)
> 
> I found that commenting out the "hi" too helped in causing races.
> 
>> I think it's because "type" is wrapped back to 0. I changed the test script
>> like this:
>>
>> while (foo_bar.id < 65536)
>> {
>> 	insmod trace-events-sample.ko
>> 	rmmod trace-events-sample.ko
>> }
>>
>> for ((; ;))
>> {
>>         insmod /home/lizf/linux-2.6-tip/samples/trace_events/*.ko
>>         echo trace-events-sample:foo_bar > /mnt/tracing/set_event
>>         sleep 1
>>         cat /mnt/tracing/trace
>>         rmmod /home/lizf/linux-2.6-tip/samples/trace_events/*.ko
>> }
>>
> 
> Could you try my git repo with my latest changes?
> 
> git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
> 
>  branch: rfc/debugfs
> 

The bug won't be triggered with your latest changes, but it has nothing
to do with the debugfs patch, it's because this patch:
	"tracing/events: reuse trace event ids after overflow"

But that patch just hides the bug not fixes it.. I thought I explained
the bug clearly. :(

I think the bug is triggered because a wrong trace_event->trace() is called.


Before the above patch:
   id overflowed
 =>foo_bar.id == 6 == TRACE_BPRINT
 =>echo foo_bar > set_event
 =>sleep N secs
 =>rmmod sample
 =>cat trace
   =>trace_bprint_event->trace() is called!!
     =>oops!!!


After the above patch:

   Suppose id 0 ~ 65534 are used, only 65535 is left, and we have 2 different
   sample module trace_event subsystems foo and bar.
 =>insmod foo.ko, and foo.id == 65535
 =>echo foo > set_event
 =>sleep N secs
 =>rmmod foo.ko
 =>insmod bar.ko, and bar.id == 65535
 =>cat trace
   =>bar->trace() will be called on events which were generated by foo!

So is it possible/sane to discard corresponding events from ring buffer when
we unload a module?

Correct me if I'm wrong..


  reply	other threads:[~2009-05-04  9:04 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-24  4:30 [PATCH 0/6] [GIT PULL] x86,ring_buffer,tracing: updates for tip Steven Rostedt
2009-04-24  4:30 ` [PATCH 1/6] tracing/wakeup: move access to wakeup_cpu into spinlock Steven Rostedt
2009-04-24  4:30 ` [PATCH 2/6] tracing: increase size of number of possible events Steven Rostedt
2009-04-24  6:02   ` Li Zefan
2009-04-24  7:09     ` Ingo Molnar
2009-04-24 12:29       ` Steven Rostedt
2009-04-24 12:27     ` Steven Rostedt
2009-04-24 14:04     ` Steven Rostedt
2009-04-24 14:05       ` Steven Rostedt
2009-04-26  6:53         ` Li Zefan
2009-04-26 13:44           ` Steven Rostedt
2009-05-04  9:05             ` Li Zefan [this message]
2009-05-04 14:12               ` Steven Rostedt
2009-05-05  1:32                 ` Li Zefan
2009-05-07  9:19               ` [tip:tracing/core] tracing: reset ring buffer when removing modules with events tip-bot for Steven Rostedt
2009-04-24  7:12   ` [PATCH 2/6] tracing: increase size of number of possible events Ingo Molnar
2009-04-24 12:30     ` Steven Rostedt
2009-04-24  4:30 ` [PATCH 3/6] tracing: add size checks for exported ftrace internal structures Steven Rostedt
2009-04-24  4:30 ` [PATCH 4/6] x86: use native register access for native tlb flushing Steven Rostedt
2009-04-24  4:30 ` [PATCH 5/6] tracing: fix cut and paste macro error Steven Rostedt
2009-04-24  4:30 ` [PATCH 6/6] ring_buffer: compressed event header Steven Rostedt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=49FEAFD0.30106@cn.fujitsu.com \
    --to=lizf@cn.fujitsu.com \
    --cc=akpm@linux-foundation.org \
    --cc=fweisbec@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=srostedt@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox