From: Greg Kurz <groug@kaod.org>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Markus Armbruster <armbru@redhat.com>,
Thomas Huth <thuth@redhat.com>,
qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH] spapr_pci: Robustify support of PCI bridges
Date: Thu, 16 Jul 2020 12:34:30 +0200 [thread overview]
Message-ID: <20200716123430.12918da6@bahia.lan> (raw)
In-Reply-To: <20200716025009-mutt-send-email-mst@kernel.org>
On Thu, 16 Jul 2020 02:53:07 -0400
"Michael S. Tsirkin" <mst@redhat.com> wrote:
> On Thu, Jul 09, 2020 at 07:12:47PM +0200, Greg Kurz wrote:
> > Some recent error handling cleanups unveiled issues with our support of
> > PCI bridges:
> >
> > 1) QEMU aborts when using non-standard PCI bridge types,
> > unveiled by commit 7ef1553dac "spapr_pci: Drop some dead error handling"
> >
> > $ qemu-system-ppc64 -M pseries -device pcie-pci-bridge
> > Unexpected error in object_property_find() at qom/object.c:1240:
> > qemu-system-ppc64: -device pcie-pci-bridge: Property '.chassis_nr' not found
> > Aborted (core dumped)
> >
> > This happens because we assume all PCI bridge types to have a "chassis_nr"
> > property. This property only exists with the standard PCI bridge type
> > "pci-bridge" actually. We could possibly revert 7ef1553dac but it seems
> > much simpler to check the presence of "chassis_nr" earlier.
> >
> > 2) QEMU abort if same "chassis_nr" value is used several times,
> > unveiled by commit d2623129a7de "qom: Drop parameter @errp of
> > object_property_add() & friends"
> >
> > $ qemu-system-ppc64 -M pseries -device pci-bridge,chassis_nr=1 \
> > -device pci-bridge,chassis_nr=1
> > Unexpected error in object_property_try_add() at qom/object.c:1167:
> > qemu-system-ppc64: -device pci-bridge,chassis_nr=1: attempt to add duplicate property '40000100' to object (type 'container')
> > Aborted (core dumped)
> >
> > This happens because we assume that "chassis_nr" values are unique, but
> > nobody enforces that and we end up generating duplicate DRC ids. The PCI
> > code doesn't really care for duplicate "chassis_nr" properties since it
> > is only used to initialize the "Chassis Number Register" of the bridge,
> > with no functional impact on QEMU. So, even if passing the same value
> > several times might look weird, it never broke anything before, so
> > I guess we don't necessarily want to enforce strict checking in the PCI
> > code now.
> >
> > Workaround both issues in the PAPR code: check that the bridge has a
> > unique and non null "chassis_nr" when plugging it into its parent bus.
> >
> > Fixes: 05929a6c5dfe ("spapr: Don't use bus number for building DRC ids")
> > Reported-by: Thomas Huth <thuth@redhat.com>
> > Signed-off-by: Greg Kurz <groug@kaod.org>
>
>
>
> > ---
> > hw/ppc/spapr_pci.c | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++
> > 1 file changed, 57 insertions(+)
> >
> > diff --git a/hw/ppc/spapr_pci.c b/hw/ppc/spapr_pci.c
> > index 329002ac040e..09d52ef7954d 100644
> > --- a/hw/ppc/spapr_pci.c
> > +++ b/hw/ppc/spapr_pci.c
> > @@ -1480,6 +1480,57 @@ static void spapr_pci_bridge_plug(SpaprPhbState *phb,
> > add_drcs(phb, bus);
> > }
> >
> > +/* Returns non-zero if the value of "chassis_nr" is already in use */
> > +static int check_chassis_nr(Object *obj, void *opaque)
> > +{
> > + int new_chassis_nr =
> > + object_property_get_uint(opaque, "chassis_nr", &error_abort);
> > + int chassis_nr =
> > + object_property_get_uint(obj, "chassis_nr", NULL);
> > +
> > + if (!object_dynamic_cast(obj, TYPE_PCI_BRIDGE)) {
> > + return 0;
> > + }
> > +
> > + /* Skip unsupported bridge types */
> > + if (!chassis_nr) {
> > + return 0;
> > + }
> > +
> > + /* Skip self */
> > + if (obj == opaque) {
> > + return 0;
> > + }
> > +
> > + return chassis_nr == new_chassis_nr;
> > +}
> > +
> > +static bool bridge_has_valid_chassis_nr(Object *bridge, Error **errp)
>
> I would rename this "bridge_has_unique_chassis_nr".
>
Right.
> > +{
> > + int chassis_nr =
> > + object_property_get_uint(bridge, "chassis_nr", NULL);
> > +
> > + /*
> > + * slotid_cap_init() already ensures that "chassis_nr" isn't null for
> > + * standard PCI bridges, so this really tells if "chassis_nr" is present
> > + * or not.
> > + */
> > + if (!chassis_nr) {
> > + error_setg(errp, "PCI Bridge lacks a \"chassis_nr\" property");
> > + error_append_hint(errp, "Try -device pci-bridge instead.\n");
> > + return false;
> > + }
> > +
> > + /* We want unique values for "chassis_nr" */
> > + if (object_child_foreach_recursive(object_get_root(), check_chassis_nr,
> > + bridge)) {
> > + error_setg(errp, "Bridge chassis %d already in use", chassis_nr);
> > + return false;
> > + }
> > +
> > + return true;
> > +}
> > +
> > static void spapr_pci_plug(HotplugHandler *plug_handler,
> > DeviceState *plugged_dev, Error **errp)
> > {
> > @@ -1491,6 +1542,12 @@ static void spapr_pci_plug(HotplugHandler *plug_handler,
> > PCIBus *bus = PCI_BUS(qdev_get_parent_bus(DEVICE(pdev)));
> > uint32_t slotnr = PCI_SLOT(pdev->devfn);
> >
> > + if (pc->is_bridge) {
> > + if (!bridge_has_valid_chassis_nr(OBJECT(plugged_dev), errp)) {
> > + return;
> > + }
> > + }
> > +
>
>
> Add a comment here explaning DRC ids are generated from chassis_nr and
> these need to be unique?
>
Makes sense.
>
> > /* if DR is disabled we don't need to do anything in the case of
> > * hotplug or coldplug callbacks
> > */
> >
>
> With above fixed:
>
> Acked-by: Michael S. Tsirkin <mst@redhat.com>
>
> Feel free to merge.
>
Thanks !
prev parent reply other threads:[~2020-07-16 10:35 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-09 17:12 [PATCH] spapr_pci: Robustify support of PCI bridges Greg Kurz
2020-07-16 4:45 ` David Gibson
2020-07-16 10:32 ` Greg Kurz
2020-07-16 13:11 ` David Gibson
2020-07-16 14:23 ` Markus Armbruster
2020-07-16 14:57 ` Greg Kurz
2020-07-16 23:57 ` David Gibson
2020-07-16 14:01 ` Markus Armbruster
2020-07-16 14:42 ` Greg Kurz
2020-07-16 23:50 ` David Gibson
2020-07-16 6:53 ` Michael S. Tsirkin
2020-07-16 10:34 ` Greg Kurz [this message]
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=20200716123430.12918da6@bahia.lan \
--to=groug@kaod.org \
--cc=armbru@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=thuth@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;
as well as URLs for NNTP newsgroup(s).