public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: KVM <kvm@vger.kernel.org>,
	linux-s390 <linux-s390@vger.kernel.org>,
	Cornelia Huck <cornelia.huck@de.ibm.com>,
	Thomas Huth <thuth@linux.vnet.ibm.com>
Subject: Re: [PULL 3/4] KVM: s390: Fix possible memory leak in SIGP functions
Date: Tue, 25 Mar 2014 15:02:42 +0100	[thread overview]
Message-ID: <53318C82.80600@redhat.com> (raw)
In-Reply-To: <1395754523-43697-4-git-send-email-borntraeger@de.ibm.com>

Il 25/03/2014 14:35, Christian Borntraeger ha scritto:
> From: Thomas Huth <thuth@linux.vnet.ibm.com>
>
> When kvm_get_vcpu() returned NULL for the destination CPU in
> __sigp_emergency() or __sigp_external_call(), the memory for the
> "inti" structure was not released anymore. This patch fixes this
> issue by moving the check for !dst_vcpu before the kzalloc() call.
>
> Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>

Should patch 2 and this one have a Cc: stable?

Paolo

> ---
>  arch/s390/kvm/sigp.c | 14 ++++++--------
>  1 file changed, 6 insertions(+), 8 deletions(-)
>
> diff --git a/arch/s390/kvm/sigp.c b/arch/s390/kvm/sigp.c
> index 3fe44c4..26caeb5 100644
> --- a/arch/s390/kvm/sigp.c
> +++ b/arch/s390/kvm/sigp.c
> @@ -58,7 +58,9 @@ static int __sigp_emergency(struct kvm_vcpu *vcpu, u16 cpu_addr)
>  	struct kvm_s390_interrupt_info *inti;
>  	struct kvm_vcpu *dst_vcpu = NULL;
>
> -	if (cpu_addr >= KVM_MAX_VCPUS)
> +	if (cpu_addr < KVM_MAX_VCPUS)
> +		dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_addr);
> +	if (!dst_vcpu)
>  		return SIGP_CC_NOT_OPERATIONAL;
>
>  	inti = kzalloc(sizeof(*inti), GFP_KERNEL);
> @@ -68,9 +70,6 @@ static int __sigp_emergency(struct kvm_vcpu *vcpu, u16 cpu_addr)
>  	inti->type = KVM_S390_INT_EMERGENCY;
>  	inti->emerg.code = vcpu->vcpu_id;
>
> -	dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_addr);
> -	if (!dst_vcpu)
> -		return SIGP_CC_NOT_OPERATIONAL;
>  	li = &dst_vcpu->arch.local_int;
>  	spin_lock_bh(&li->lock);
>  	list_add_tail(&inti->list, &li->list);
> @@ -121,7 +120,9 @@ static int __sigp_external_call(struct kvm_vcpu *vcpu, u16 cpu_addr)
>  	struct kvm_s390_interrupt_info *inti;
>  	struct kvm_vcpu *dst_vcpu = NULL;
>
> -	if (cpu_addr >= KVM_MAX_VCPUS)
> +	if (cpu_addr < KVM_MAX_VCPUS)
> +		dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_addr);
> +	if (!dst_vcpu)
>  		return SIGP_CC_NOT_OPERATIONAL;
>
>  	inti = kzalloc(sizeof(*inti), GFP_KERNEL);
> @@ -131,9 +132,6 @@ static int __sigp_external_call(struct kvm_vcpu *vcpu, u16 cpu_addr)
>  	inti->type = KVM_S390_INT_EXTERNAL_CALL;
>  	inti->extcall.code = vcpu->vcpu_id;
>
> -	dst_vcpu = kvm_get_vcpu(vcpu->kvm, cpu_addr);
> -	if (!dst_vcpu)
> -		return SIGP_CC_NOT_OPERATIONAL;
>  	li = &dst_vcpu->arch.local_int;
>  	spin_lock_bh(&li->lock);
>  	list_add_tail(&inti->list, &li->list);
>

  reply	other threads:[~2014-03-25 14:02 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-25 13:35 [PULL 0/4] KVM: s390: last fixes for next merge window Christian Borntraeger
2014-03-25 13:35 ` [PULL 1/4] KVM: s390: randomize sca address Christian Borntraeger
2014-03-25 13:53   ` Paolo Bonzini
2014-03-25 14:04     ` Christian Borntraeger
2014-03-25 13:35 ` [PULL 2/4] KVM: s390: fix calculation of idle_mask array size Christian Borntraeger
2014-03-25 13:55   ` Paolo Bonzini
2014-03-25 13:35 ` [PULL 3/4] KVM: s390: Fix possible memory leak in SIGP functions Christian Borntraeger
2014-03-25 14:02   ` Paolo Bonzini [this message]
2014-03-25 14:39     ` Christian Borntraeger
2014-03-25 14:43       ` Paolo Bonzini
2014-03-25 13:35 ` [PULL 4/4] KVM: s390: clear local interrupts at cpu initial reset Christian Borntraeger
2014-03-25 13:56   ` Paolo Bonzini
2014-03-25 14:18     ` Christian Borntraeger

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=53318C82.80600@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=borntraeger@de.ibm.com \
    --cc=cornelia.huck@de.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=thuth@linux.vnet.ibm.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