qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Scott Wood <scottwood@freescale.com>
To: Alexander Graf <agraf@suse.de>
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH 13/15] openpic: add some bounds checking for IRQ numbers
Date: Thu, 3 Jan 2013 15:20:22 -0600	[thread overview]
Message-ID: <1357248022.22404.11@snotra> (raw)
In-Reply-To: <FE5FD1AE-F53F-4954-93DC-E42DE1EEF500@suse.de> (from agraf@suse.de on Thu Jan  3 15:07:49 2013)

On 01/03/2013 03:07:49 PM, Alexander Graf wrote:
> 
> On 03.01.2013, at 20:54, Scott Wood wrote:
> 
> > On 01/03/2013 12:55:26 PM, Alexander Graf wrote:
> >> On 22.12.2012, at 03:15, Scott Wood wrote:
> >> > The two checks with abort() guard against potential QEMU-internal
> >> > problems, but the EOI check stops the guest from causing updates  
> to queue
> >> > position -1 and other havoc if it writes EOI with no interrupt in
> >> > service.
> >> >
> >> > Signed-off-by: Scott Wood <scottwood@freescale.com>
> >> Did you ever actually experience this?
> >
> > Which one?  EOI with no interrupt in service can be triggered by  
> bad guest behavior, and I did see it happen when the guest was  
> confused by another bug in QEMU's openpic (which is fixed elsewhere),  
> resulting in an IRQ number of -1 being thrown around.
> 
> That's the last hunk, which as I said is fine :).

I would have found the issue in that hunk faster if I had array bounds  
checking elsewhere, which was what led me to add it in certain places.   
I'm not sure why I didn't add it in the place that would have helped  
find the EOI bug, though (IRQ_resetbit). :-P

> > The other checks were to try to be more robust against bad IRQ  
> numbers in general.
> >
> >> MAX_IRQ should match the memory region size, so we shouldn't be  
> able to receive any interrupt above it.
> >
> > Right, that's why I didn't add checking to the MMIO code.  In  
> IRQ_check it could happen due to bad bitmap contents (e.g. after a  
> checkpoint restore), and in openpic_set_irq() it could happen if some  
> device raises an IRQ that is out of bounds.
> 
> How would a device raise an IRQ that is out of bounds? Devices can  
> only raise IRQs that are passed down from the init function and that  
> only creates MAX_INT irq lines.

OK, so it looks like there would need to be a bug in the qdev gpio  
mechanism rather than the devices -- but the interface boundary of  
openpic.c does take an int rather than a pointer.

> >> I might be inclined to accept an assert() there for internal  
> sanity checking though. The last hunk looks fine.
> >
> > Assert instead of abort is fine (there seem to be plenty of uses of  
> both in QEMU), though for the openpic_set_irq() case it would be nice  
> to be able to print the bad IRQ number before dying.
> 
> Well, that's why I was asking where you've seen this happen. It  
> really shouldn't. Ever. :)

That's why it's assert/abort and not some less severe form of error  
handling. :-)

-Scott

  reply	other threads:[~2013-01-03 21:20 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-22  2:15 [Qemu-devel] [PATCH 00/15] openpic: cleanups and fixes Scott Wood
2012-12-22  2:15 ` [Qemu-devel] [PATCH 01/15] openpic: fix debug prints Scott Wood
2013-01-03 17:31   ` Alexander Graf
2013-01-03 19:41     ` Scott Wood
2012-12-22  2:15 ` [Qemu-devel] [PATCH 02/15] openpic: lower interrupt when reading the MSI register Scott Wood
2013-01-03 17:52   ` Alexander Graf
2012-12-22  2:15 ` [Qemu-devel] [PATCH 03/15] openpic: fix sense and priority bits Scott Wood
2013-01-03 17:51   ` Alexander Graf
2013-01-03 20:12     ` Scott Wood
2012-12-22  2:15 ` [Qemu-devel] [PATCH 04/15] ppc/booke: fix crit/mcheck/debug exceptions Scott Wood
2013-01-03 17:57   ` Alexander Graf
2012-12-22  2:15 ` [Qemu-devel] [PATCH 05/15] openpic: make register names correspond better with hw docs Scott Wood
2013-01-03 18:18   ` Alexander Graf
2012-12-22  2:15 ` [Qemu-devel] [PATCH 06/15] openpic: rework critical interrupt support Scott Wood
2013-01-03 18:31   ` Alexander Graf
2013-01-03 23:07     ` Scott Wood
2013-01-04  8:04       ` Alexander Graf
2013-01-04 20:46       ` [Qemu-devel] [Qemu-ppc] " Blue Swirl
2013-01-04 20:49         ` Scott Wood
2013-01-04 21:17           ` Blue Swirl
2013-01-04 21:25             ` Scott Wood
2012-12-22  2:15 ` [Qemu-devel] [PATCH 07/15] openpic: make ctpr signed Scott Wood
2013-01-03 18:33   ` Alexander Graf
2012-12-22  2:15 ` [Qemu-devel] [PATCH 08/15] openpic/fsl: critical interrupts ignore mask before v4.1 Scott Wood
2013-01-03 18:37   ` Alexander Graf
2012-12-22  2:15 ` [Qemu-devel] [PATCH 09/15] openpic: always call IRQ_check from IRQ_get_next Scott Wood
2013-01-03 18:42   ` Alexander Graf
2013-01-03 20:09     ` Scott Wood
2012-12-22  2:15 ` [Qemu-devel] [PATCH 10/15] Revert "openpic: Accelerate pending irq search" Scott Wood
2012-12-22  2:15 ` [Qemu-devel] [PATCH 11/15] openpic: use standard bitmap operations Scott Wood
2013-01-03 18:49   ` Alexander Graf
2012-12-22  2:15 ` [Qemu-devel] [PATCH 12/15] openpic: IRQ_check: search the queue a word at a time Scott Wood
2013-01-03 18:53   ` Alexander Graf
2013-01-03 20:07     ` Scott Wood
2013-01-03 20:31       ` Alexander Graf
2013-01-03 20:32         ` Scott Wood
2013-01-03 20:57           ` Alexander Graf
2013-01-03 21:52             ` Scott Wood
2012-12-22  2:15 ` [Qemu-devel] [PATCH 13/15] openpic: add some bounds checking for IRQ numbers Scott Wood
2013-01-03 18:55   ` Alexander Graf
2013-01-03 19:54     ` [Qemu-devel] [Qemu-ppc] " Scott Wood
2013-01-03 21:07       ` Alexander Graf
2013-01-03 21:20         ` Scott Wood [this message]
2012-12-22  2:15 ` [Qemu-devel] [PATCH 14/15] openpic: move IACK to its own function Scott Wood
2013-01-03 18:59   ` Alexander Graf
2012-12-22  2:15 ` [Qemu-devel] [PATCH 15/15] openpic: fix CTPR and de-assertion of interrupts Scott Wood
2013-01-03 19:00   ` Alexander Graf

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=1357248022.22404.11@snotra \
    --to=scottwood@freescale.com \
    --cc=agraf@suse.de \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /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;
as well as URLs for NNTP newsgroup(s).