qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd
@ 2011-10-13 17:45 Peter Maydell
  2011-10-14  7:44 ` Stefan Hajnoczi
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Peter Maydell @ 2011-10-13 17:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: patches

Don't pass a NULL pointer in to SYS_signalfd in qemu_signalfd_available():
this isn't valid and Valgrind complains about it.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 compatfd.c |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/compatfd.c b/compatfd.c
index 31654c6..02306a4 100644
--- a/compatfd.c
+++ b/compatfd.c
@@ -119,9 +119,17 @@ int qemu_signalfd(const sigset_t *mask)
 bool qemu_signalfd_available(void)
 {
 #ifdef CONFIG_SIGNALFD
+    sigset_t mask;
+    int fd;
+    bool ok;
+    sigemptyset(&mask);
     errno = 0;
-    syscall(SYS_signalfd, -1, NULL, _NSIG / 8);
-    return errno != ENOSYS;
+    fd = syscall(SYS_signalfd, -1, &mask, _NSIG / 8);
+    ok = (errno != ENOSYS);
+    if (fd >= 0) {
+        close(fd);
+    }
+    return ok;
 #else
     return false;
 #endif
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd
  2011-10-13 17:45 [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd Peter Maydell
@ 2011-10-14  7:44 ` Stefan Hajnoczi
  2011-10-14 17:20 ` Stefan Weil
  2011-10-21 15:53 ` andrzej zaborowski
  2 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2011-10-14  7:44 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-devel, patches

On Thu, Oct 13, 2011 at 06:45:37PM +0100, Peter Maydell wrote:
> Don't pass a NULL pointer in to SYS_signalfd in qemu_signalfd_available():
> this isn't valid and Valgrind complains about it.
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
>  compatfd.c |   12 ++++++++++--
>  1 files changed, 10 insertions(+), 2 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd
  2011-10-13 17:45 [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd Peter Maydell
  2011-10-14  7:44 ` Stefan Hajnoczi
@ 2011-10-14 17:20 ` Stefan Weil
  2011-10-14 17:33   ` Peter Maydell
  2011-10-21 15:53 ` andrzej zaborowski
  2 siblings, 1 reply; 5+ messages in thread
From: Stefan Weil @ 2011-10-14 17:20 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-devel, patches

Am 13.10.2011 19:45, schrieb Peter Maydell:
> Don't pass a NULL pointer in to SYS_signalfd in qemu_signalfd_available():
> this isn't valid and Valgrind complains about it.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> compatfd.c | 12 ++++++++++--
> 1 files changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/compatfd.c b/compatfd.c
> index 31654c6..02306a4 100644
> --- a/compatfd.c
> +++ b/compatfd.c
> @@ -119,9 +119,17 @@ int qemu_signalfd(const sigset_t *mask)
> bool qemu_signalfd_available(void)
> {
> #ifdef CONFIG_SIGNALFD
> + sigset_t mask;
> + int fd;
> + bool ok;
> + sigemptyset(&mask);
> errno = 0;
> - syscall(SYS_signalfd, -1, NULL, _NSIG / 8);
> - return errno != ENOSYS;
> + fd = syscall(SYS_signalfd, -1, &mask, _NSIG / 8);
> + ok = (errno != ENOSYS);
> + if (fd >= 0) {

Maybe better: fd != -1

> + close(fd);
> + }
> + return ok;
> #else
> return false;
> #endif

The variable 'ok' is not needed, simply returning
errno != ENOSYS would work, too.

Regards,
Stefan W.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd
  2011-10-14 17:20 ` Stefan Weil
@ 2011-10-14 17:33   ` Peter Maydell
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2011-10-14 17:33 UTC (permalink / raw)
  To: Stefan Weil; +Cc: qemu-devel, patches

On 14 October 2011 18:20, Stefan Weil <sw@weilnetz.de> wrote:
> Am 13.10.2011 19:45, schrieb Peter Maydell:
>>
>> Don't pass a NULL pointer in to SYS_signalfd in qemu_signalfd_available():
>> this isn't valid and Valgrind complains about it.
>>
>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
>> ---
>> compatfd.c | 12 ++++++++++--
>> 1 files changed, 10 insertions(+), 2 deletions(-)
>>
>> diff --git a/compatfd.c b/compatfd.c
>> index 31654c6..02306a4 100644
>> --- a/compatfd.c
>> +++ b/compatfd.c
>> @@ -119,9 +119,17 @@ int qemu_signalfd(const sigset_t *mask)
>> bool qemu_signalfd_available(void)
>> {
>> #ifdef CONFIG_SIGNALFD
>> + sigset_t mask;
>> + int fd;
>> + bool ok;
>> + sigemptyset(&mask);
>> errno = 0;
>> - syscall(SYS_signalfd, -1, NULL, _NSIG / 8);
>> - return errno != ENOSYS;
>> + fd = syscall(SYS_signalfd, -1, &mask, _NSIG / 8);
>> + ok = (errno != ENOSYS);
>> + if (fd >= 0) {
>
> Maybe better: fd != -1

Style issue -- I prefer the >= 0; if you do a
'git grep -A2 open' you'll see that mostly the existing
codebase does 'is it less than zero or not' comparisons
for "did this thing returning an fd fail?" checks, rather
than 'is it equal to -1 or not'.

>> + close(fd);
>> + }
>> + return ok;
>> #else
>> return false;
>> #endif
>
> The variable 'ok' is not needed, simply returning
> errno != ENOSYS would work, too.

The call to close() might have trashed errno (although
admittedly the chances of close() returning ENOSYS are
rather low I think it's clearer to return the result
of checking the errno for the syscall we care about rather
than the one we don't).

-- PMM

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd
  2011-10-13 17:45 [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd Peter Maydell
  2011-10-14  7:44 ` Stefan Hajnoczi
  2011-10-14 17:20 ` Stefan Weil
@ 2011-10-21 15:53 ` andrzej zaborowski
  2 siblings, 0 replies; 5+ messages in thread
From: andrzej zaborowski @ 2011-10-21 15:53 UTC (permalink / raw)
  To: Peter Maydell; +Cc: qemu-devel, patches

On 13 October 2011 19:45, Peter Maydell <peter.maydell@linaro.org> wrote:
> Don't pass a NULL pointer in to SYS_signalfd in qemu_signalfd_available():
> this isn't valid and Valgrind complains about it.

Also pushed this patch.

Cheers

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-10-21 15:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-13 17:45 [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd Peter Maydell
2011-10-14  7:44 ` Stefan Hajnoczi
2011-10-14 17:20 ` Stefan Weil
2011-10-14 17:33   ` Peter Maydell
2011-10-21 15:53 ` andrzej zaborowski

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).