From: Sasha Levin <sasha.levin@oracle.com> To: Peter Zijlstra <peterz@infradead.org> Cc: Ingo Molnar <mingo@kernel.org>, Arnaldo Carvalho de Melo <acme@kernel.org>, LKML <linux-kernel@vger.kernel.org> Subject: Re: perf/ring-buffer: Undefined behaviour in kernel/events/ring_buffer.c:685:22 Date: Thu, 21 Jan 2016 18:34:53 -0500 [thread overview] Message-ID: <56A16B1D.3050003@oracle.com> (raw) In-Reply-To: <20160119143111.GH6344@twins.programming.kicks-ass.net> On 01/19/2016 09:31 AM, Peter Zijlstra wrote: > On Sun, Jan 10, 2016 at 03:55:13PM -0500, Sasha Levin wrote: >> Hi all, >> >> While fuzzing with trinity inside a KVM tools guest, running the latest -next >> kernel, I've hit the following warning: >> >> [ 3494.030114] UBSAN: Undefined behaviour in kernel/events/ring_buffer.c:685:22 >> [ 3494.030647] shift exponent -1 is negative > > That's rb->page_order == -1, which should 'never' happen, curious! > > Funny though that rb::page_order is the exact field _after_ rb::work, ho > humm. > I've tested your theory using: diff --git a/kernel/events/internal.h b/kernel/events/internal.h index 2bbad9c..f627a40 100644 --- a/kernel/events/internal.h +++ b/kernel/events/internal.h @@ -14,6 +14,7 @@ struct ring_buffer { struct irq_work irq_work; #ifdef CONFIG_PERF_USE_VMALLOC struct work_struct work; + unsigned long dummy; int page_order; /* allocation order */ #endif int nr_pages; /* nr of data pages */ diff --git a/kernel/events/ring_buffer.c b/kernel/events/ring_buffer.c index adfdc05..65346f8 100644 --- a/kernel/events/ring_buffer.c +++ b/kernel/events/ring_buffer.c @@ -682,6 +682,8 @@ void rb_free(struct ring_buffer *rb) #else static int data_page_nr(struct ring_buffer *rb) { + if (page_order(rb) < 0 || rb->dummy) + pr_emerg("*** %lx\n", rb->dummy); return rb->nr_pages << page_order(rb); } But the output I'm seeing indicates that dummy isn't corrupted: [ 758.806091] *** 0 [ 758.806821] ================================================================================ [ 758.807961] UBSAN: Undefined behaviour in kernel/events/ring_buffer.c:687:22 [ 758.808833] shift exponent -1 is negative [...] Thanks, Sasha
next prev parent reply other threads:[~2016-01-21 23:35 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2016-01-10 20:55 Sasha Levin 2016-01-19 14:31 ` Peter Zijlstra 2016-01-21 23:34 ` Sasha Levin [this message] 2016-01-22 12:48 ` Andrey Ryabinin 2016-01-29 14:17 ` Peter Zijlstra 2016-03-21 9:51 ` [tip:perf/urgent] perf/core: Fix Undefined behaviour in rb_alloc() tip-bot for Peter Zijlstra
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=56A16B1D.3050003@oracle.com \ --to=sasha.levin@oracle.com \ --cc=acme@kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=mingo@kernel.org \ --cc=peterz@infradead.org \ --subject='Re: perf/ring-buffer: Undefined behaviour in kernel/events/ring_buffer.c:685:22' \ /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
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.