* [PATCH] kvm: fix coalesced_mmio leak on shutdown
@ 2009-05-27 16:41 Gregory Haskins
2009-05-27 20:29 ` Chris Wright
0 siblings, 1 reply; 4+ messages in thread
From: Gregory Haskins @ 2009-05-27 16:41 UTC (permalink / raw)
To: avi; +Cc: kvm, linux-kernel
It would appear that we are invoking kfree() on the wrong pointer in the
destructor for the coalesced_mmio device. This would result in a potential
leak during shutdown.
Signed-off-by: Gregory Haskins <ghaskins@novell.com>
---
virt/kvm/coalesced_mmio.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/virt/kvm/coalesced_mmio.c b/virt/kvm/coalesced_mmio.c
index 5ae620d..03ea280 100644
--- a/virt/kvm/coalesced_mmio.c
+++ b/virt/kvm/coalesced_mmio.c
@@ -80,7 +80,10 @@ static void coalesced_mmio_write(struct kvm_io_device *this,
static void coalesced_mmio_destructor(struct kvm_io_device *this)
{
- kfree(this);
+ struct kvm_coalesced_mmio_dev *dev =
+ (struct kvm_coalesced_mmio_dev *)this->private;
+
+ kfree(dev);
}
int kvm_coalesced_mmio_init(struct kvm *kvm)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] kvm: fix coalesced_mmio leak on shutdown
2009-05-27 16:41 [PATCH] kvm: fix coalesced_mmio leak on shutdown Gregory Haskins
@ 2009-05-27 20:29 ` Chris Wright
2009-05-27 20:32 ` Gregory Haskins
0 siblings, 1 reply; 4+ messages in thread
From: Chris Wright @ 2009-05-27 20:29 UTC (permalink / raw)
To: Gregory Haskins; +Cc: avi, kvm, linux-kernel
* Gregory Haskins (ghaskins@novell.com) wrote:
> It would appear that we are invoking kfree() on the wrong pointer in the
> destructor for the coalesced_mmio device. This would result in a potential
> leak during shutdown.
Happens to work and not leak:
struct kvm_coalesced_mmio_dev {
struct kvm_io_device dev;
struct kvm *kvm;
int nb_zones;
struct kvm_coalesced_mmio_zone zone[KVM_COALESCED_MMIO_ZONE_MAX];
};
> Signed-off-by: Gregory Haskins <ghaskins@novell.com>
> ---
>
> virt/kvm/coalesced_mmio.c | 5 ++++-
> 1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/virt/kvm/coalesced_mmio.c b/virt/kvm/coalesced_mmio.c
> index 5ae620d..03ea280 100644
> --- a/virt/kvm/coalesced_mmio.c
> +++ b/virt/kvm/coalesced_mmio.c
> @@ -80,7 +80,10 @@ static void coalesced_mmio_write(struct kvm_io_device *this,
>
> static void coalesced_mmio_destructor(struct kvm_io_device *this)
> {
> - kfree(this);
> + struct kvm_coalesced_mmio_dev *dev =
> + (struct kvm_coalesced_mmio_dev *)this->private;
I think container_of() makes more sense here.
thanks,
-chris
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] kvm: fix coalesced_mmio leak on shutdown
2009-05-27 20:29 ` Chris Wright
@ 2009-05-27 20:32 ` Gregory Haskins
2009-05-27 20:35 ` Chris Wright
0 siblings, 1 reply; 4+ messages in thread
From: Gregory Haskins @ 2009-05-27 20:32 UTC (permalink / raw)
To: Chris Wright; +Cc: Gregory Haskins, avi, kvm, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1489 bytes --]
Chris Wright wrote:
> * Gregory Haskins (ghaskins@novell.com) wrote:
>
>> It would appear that we are invoking kfree() on the wrong pointer in the
>> destructor for the coalesced_mmio device. This would result in a potential
>> leak during shutdown.
>>
>
> Happens to work and not leak:
>
> struct kvm_coalesced_mmio_dev {
> struct kvm_io_device dev;
> struct kvm *kvm;
> int nb_zones;
> struct kvm_coalesced_mmio_zone zone[KVM_COALESCED_MMIO_ZONE_MAX];
> };
>
>
Ah, yes. That explains it. Still sloppy, tho.
>> Signed-off-by: Gregory Haskins <ghaskins@novell.com>
>> ---
>>
>> virt/kvm/coalesced_mmio.c | 5 ++++-
>> 1 files changed, 4 insertions(+), 1 deletions(-)
>>
>> diff --git a/virt/kvm/coalesced_mmio.c b/virt/kvm/coalesced_mmio.c
>> index 5ae620d..03ea280 100644
>> --- a/virt/kvm/coalesced_mmio.c
>> +++ b/virt/kvm/coalesced_mmio.c
>> @@ -80,7 +80,10 @@ static void coalesced_mmio_write(struct kvm_io_device *this,
>>
>> static void coalesced_mmio_destructor(struct kvm_io_device *this)
>> {
>> - kfree(this);
>> + struct kvm_coalesced_mmio_dev *dev =
>> + (struct kvm_coalesced_mmio_dev *)this->private;
>>
>
> I think container_of() makes more sense here.
>
I was working on that patch when I noticed the "leak" above. Figured I
should send the fix out first, in case my container_of patch is shot down.
Just polishing it up now. Will send out soon.
-Greg
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 266 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] kvm: fix coalesced_mmio leak on shutdown
2009-05-27 20:32 ` Gregory Haskins
@ 2009-05-27 20:35 ` Chris Wright
0 siblings, 0 replies; 4+ messages in thread
From: Chris Wright @ 2009-05-27 20:35 UTC (permalink / raw)
To: Gregory Haskins; +Cc: Chris Wright, Gregory Haskins, avi, kvm, linux-kernel
* Gregory Haskins (gregory.haskins@gmail.com) wrote:
> Chris Wright wrote:
> > * Gregory Haskins (ghaskins@novell.com) wrote:
> >> It would appear that we are invoking kfree() on the wrong pointer in the
> >> destructor for the coalesced_mmio device. This would result in a potential
> >> leak during shutdown.
> >
> > Happens to work and not leak:
> >
> > struct kvm_coalesced_mmio_dev {
> > struct kvm_io_device dev;
> > struct kvm *kvm;
> > int nb_zones;
> > struct kvm_coalesced_mmio_zone zone[KVM_COALESCED_MMIO_ZONE_MAX];
> > };
> >
> >
> Ah, yes. That explains it. Still sloppy, tho.
Definitely.
> >> static void coalesced_mmio_destructor(struct kvm_io_device *this)
> >> {
> >> - kfree(this);
> >> + struct kvm_coalesced_mmio_dev *dev =
> >> + (struct kvm_coalesced_mmio_dev *)this->private;
> >>
> >
> > I think container_of() makes more sense here.
>
> I was working on that patch when I noticed the "leak" above. Figured I
> should send the fix out first, in case my container_of patch is shot down.
>
> Just polishing it up now. Will send out soon.
Sounds good.
thanks,
-chris
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-05-27 20:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-27 16:41 [PATCH] kvm: fix coalesced_mmio leak on shutdown Gregory Haskins
2009-05-27 20:29 ` Chris Wright
2009-05-27 20:32 ` Gregory Haskins
2009-05-27 20:35 ` Chris Wright
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox