All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: qemu-devel@nongnu.org, blauwirbel@gmail.com, kvm@vger.kernel.org
Subject: Re: [PATCH v2] pci: cleanly backout of pci_qdev_init()
Date: Wed, 12 May 2010 02:00:53 +0300	[thread overview]
Message-ID: <20100511230052.GA11728@redhat.com> (raw)
In-Reply-To: <20100511104305.15360.71875.stgit@virtlab9.virt.bos.redhat.com>

On Tue, May 11, 2010 at 06:44:21AM -0400, Alex Williamson wrote:
> If the init function of a device fails, as might happen with device
> assignment, we never undo the work done by do_pci_register_device().
> This not only causes a bit of a memory leak, but also leaves a bogus
> pointer in the bus devices array that can cause a segfault or
> garbage data from 'info pci'.
> 
> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>

Thanks, applied.

> ---
> 
> v2: Remove extraneous return from do_pci_unregister_device()(
> 
>  hw/pci.c |   16 +++++++++++-----
>  1 files changed, 11 insertions(+), 5 deletions(-)
> 
> diff --git a/hw/pci.c b/hw/pci.c
> index f167436..3ca5f09 100644
> --- a/hw/pci.c
> +++ b/hw/pci.c
> @@ -625,6 +625,13 @@ static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus,
>      return pci_dev;
>  }
>  
> +static void do_pci_unregister_device(PCIDevice *pci_dev)
> +{
> +    qemu_free_irqs(pci_dev->irq);
> +    pci_dev->bus->devices[pci_dev->devfn] = NULL;
> +    pci_config_free(pci_dev);
> +}
> +
>  PCIDevice *pci_register_device(PCIBus *bus, const char *name,
>                                 int instance_size, int devfn,
>                                 PCIConfigReadFunc *config_read,
> @@ -680,10 +687,7 @@ static int pci_unregister_device(DeviceState *dev)
>          return ret;
>  
>      pci_unregister_io_regions(pci_dev);
> -
> -    qemu_free_irqs(pci_dev->irq);
> -    pci_dev->bus->devices[pci_dev->devfn] = NULL;
> -    pci_config_free(pci_dev);
> +    do_pci_unregister_device(pci_dev);
>      return 0;
>  }
>  
> @@ -1652,8 +1656,10 @@ static int pci_qdev_init(DeviceState *qdev, DeviceInfo *base)
>      if (pci_dev == NULL)
>          return -1;
>      rc = info->init(pci_dev);
> -    if (rc != 0)
> +    if (rc != 0) {
> +        do_pci_unregister_device(pci_dev);
>          return rc;
> +    }
>  
>      /* rom loading */
>      if (pci_dev->romfile == NULL && info->romfile != NULL)
> 
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: blauwirbel@gmail.com, qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: [Qemu-devel] Re: [PATCH v2] pci: cleanly backout of pci_qdev_init()
Date: Wed, 12 May 2010 02:00:53 +0300	[thread overview]
Message-ID: <20100511230052.GA11728@redhat.com> (raw)
In-Reply-To: <20100511104305.15360.71875.stgit@virtlab9.virt.bos.redhat.com>

On Tue, May 11, 2010 at 06:44:21AM -0400, Alex Williamson wrote:
> If the init function of a device fails, as might happen with device
> assignment, we never undo the work done by do_pci_register_device().
> This not only causes a bit of a memory leak, but also leaves a bogus
> pointer in the bus devices array that can cause a segfault or
> garbage data from 'info pci'.
> 
> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>

Thanks, applied.

> ---
> 
> v2: Remove extraneous return from do_pci_unregister_device()(
> 
>  hw/pci.c |   16 +++++++++++-----
>  1 files changed, 11 insertions(+), 5 deletions(-)
> 
> diff --git a/hw/pci.c b/hw/pci.c
> index f167436..3ca5f09 100644
> --- a/hw/pci.c
> +++ b/hw/pci.c
> @@ -625,6 +625,13 @@ static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus,
>      return pci_dev;
>  }
>  
> +static void do_pci_unregister_device(PCIDevice *pci_dev)
> +{
> +    qemu_free_irqs(pci_dev->irq);
> +    pci_dev->bus->devices[pci_dev->devfn] = NULL;
> +    pci_config_free(pci_dev);
> +}
> +
>  PCIDevice *pci_register_device(PCIBus *bus, const char *name,
>                                 int instance_size, int devfn,
>                                 PCIConfigReadFunc *config_read,
> @@ -680,10 +687,7 @@ static int pci_unregister_device(DeviceState *dev)
>          return ret;
>  
>      pci_unregister_io_regions(pci_dev);
> -
> -    qemu_free_irqs(pci_dev->irq);
> -    pci_dev->bus->devices[pci_dev->devfn] = NULL;
> -    pci_config_free(pci_dev);
> +    do_pci_unregister_device(pci_dev);
>      return 0;
>  }
>  
> @@ -1652,8 +1656,10 @@ static int pci_qdev_init(DeviceState *qdev, DeviceInfo *base)
>      if (pci_dev == NULL)
>          return -1;
>      rc = info->init(pci_dev);
> -    if (rc != 0)
> +    if (rc != 0) {
> +        do_pci_unregister_device(pci_dev);
>          return rc;
> +    }
>  
>      /* rom loading */
>      if (pci_dev->romfile == NULL && info->romfile != NULL)
> 
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2010-05-11 23:04 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-11 10:44 [PATCH v2] pci: cleanly backout of pci_qdev_init() Alex Williamson
2010-05-11 10:44 ` [Qemu-devel] " Alex Williamson
2010-05-11 23:00 ` Michael S. Tsirkin [this message]
2010-05-11 23:00   ` [Qemu-devel] " Michael S. Tsirkin

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=20100511230052.GA11728@redhat.com \
    --to=mst@redhat.com \
    --cc=alex.williamson@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=kvm@vger.kernel.org \
    --cc=qemu-devel@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 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.