qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 5/8] qemu-bridge-helper: Fix fd leak in main()


From: Gonglei (Arei)
Subject: Re: [Qemu-devel] [PATCH 5/8] qemu-bridge-helper: Fix fd leak in main()
Date: Wed, 28 May 2014 12:04:06 +0000

> -----Original Message-----
> From: Stefan Hajnoczi [mailto:address@hidden
> Sent: Tuesday, May 27, 2014 7:32 PM
> To: Gonglei (Arei)
> Cc: address@hidden; address@hidden; address@hidden;
> address@hidden; address@hidden; address@hidden;
> address@hidden; address@hidden; address@hidden;
> address@hidden; Huangweidong (C); address@hidden;
> address@hidden; address@hidden; address@hidden;
> address@hidden; Luonengjun
> Subject: Re: [PATCH 5/8] qemu-bridge-helper: Fix fd leak in main()
> 
> On Tue, May 27, 2014 at 09:40:02AM +0800, address@hidden wrote:
> > From: Gonglei <address@hidden>
> >
> > Signed-off-by: Gonglei <address@hidden>
> > ---
> >  qemu-bridge-helper.c | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> >
> > diff --git a/qemu-bridge-helper.c b/qemu-bridge-helper.c
> > index 6a0974e..dce5abc 100644
> > --- a/qemu-bridge-helper.c
> > +++ b/qemu-bridge-helper.c
> > @@ -436,7 +436,12 @@ int main(int argc, char **argv)
> >      /* profit! */
> >
> >  cleanup:
> > -
> > +    if (fd >= 0) {
> > +        close(fd);
> > +    }
> > +    if (ctlfd >= 0) {
> > +        close(ctlfd);
> > +    }
> 
> fd and ctlfd are uninitialized:
> 
>   int fd, ctlfd, unixfd = -1;
> 
> This patch introduces a read of uninitialized memory and could close a
> random file descriptor.
> 
> There wasn't a real leak since this is the main() function and the
> kernel frees resources when the process terminates.
> 
> Please either drop this patch or fix it carefully.

OK, Thanks.

Best regards,
-Gonglei




reply via email to

[Prev in Thread] Current Thread [Next in Thread]