All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Jia <ajia@redhat.com>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2] linux-user: fix memory leak in failure path
Date: Wed, 28 Sep 2011 18:37:51 +0800	[thread overview]
Message-ID: <4E82F8FF.3050809@redhat.com> (raw)
In-Reply-To: <CAFEAcA8639WfjLyshBnVj6N+=Wd0-WopLCPzRzzeho-Tsi8qJg@mail.gmail.com>

On 09/28/2011 05:43 PM, Peter Maydell wrote:
> On 28 September 2011 09:24,<ajia@redhat.com>  wrote:
>> From: Alex Jia<ajia@redhat.com>
>>
>> Haven't released memory of 'host_mb' in failure path, and calling malloc allocate
>> memory to 'host_array', however, memory hasn't been freed before the function
>> target_to_host_semarray returns.
>>
>> Signed-off-by: Alex Jia<ajia@redhat.com>
>> ---
>>   linux-user/syscall.c |    3 ++-
>>   1 files changed, 2 insertions(+), 1 deletions(-)
>>
>> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
>> index 7735008..22d4fcc 100644
>> --- a/linux-user/syscall.c
>> +++ b/linux-user/syscall.c
>> @@ -2466,6 +2466,7 @@ static inline abi_long target_to_host_semarray(int semid, unsigned short **host_
>>      for(i=0; i<nsems; i++) {
>>          __get_user((*host_array)[i],&array[i]);
>>      }
>> +    free(*host_array);
>>      unlock_user(array, target_addr, 0);
>>
>>      return 0;
> This is wrong -- you're freeing the array in the exit-success
> path, not the error path. And you're still not checking the
> return value from malloc().
>
> In fact, on closer examination, this code is pretty nasty:
> we allocate the array in target_to_host_semarray and then
> free it in host_to_target_semarray, and in both functions
> we make a syscall purely to figure out the length of the
> array -- so we end up doing that twice when we only need
> do it once. And the error exit cases in host_to_target_semarray
> don't free the host array either. It could probably be
> refactored to make it less ugly: have the code at the
> top level do the "find out size of array, malloc it, free"
Hi Peter,
You mean caller should free these allocated memory, right?
if so, is v1 patch okay?

Thanks for your nice comment.

Regards,
Alex
> work, and have host_to_target_semarray and
> target_to_host_semarray only do the copying work (this
> would match other target_to_host* helpers.)
>
> -- PMM
>

  reply	other threads:[~2011-09-28 10:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-28  8:24 [Qemu-devel] [PATCH v2] linux-user: fix memory leak in failure path ajia
2011-09-28  9:43 ` Peter Maydell
2011-09-28 10:37   ` Alex Jia [this message]
2011-09-28 10:58     ` Peter Maydell

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=4E82F8FF.3050809@redhat.com \
    --to=ajia@redhat.com \
    --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.