From: Michael Tokarev <mjt@tls.msk.ru>
To: arei.gonglei@huawei.com, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, pbonzini@redhat.com,
weidong.huang@huawei.com, peter.huangpeng@huawei.com,
zhang.zhanghailiang@huawei.com
Subject: Re: [Qemu-trivial] [PATCH 1/9] l2tpv3: fix fd leak
Date: Mon, 17 Nov 2014 19:58:25 +0300 [thread overview]
Message-ID: <546A2931.20209@msgid.tls.msk.ru> (raw)
In-Reply-To: <1416046008-7880-2-git-send-email-arei.gonglei@huawei.com>
15.11.2014 13:06, arei.gonglei@huawei.com wrote:
> From: Gonglei <arei.gonglei@huawei.com>
>
> In this false branch, fd will leak when it is zero.
> Change the testing condition.
Why fd==0 is a concern here? It is a very unlikely
situation that fd0 will be picked - firstly because
fd0 is almost always open, and second - even if it
isn't open, it will be picked much earlier than this
code path, ie, some other file will use fd0 before.
But even if the concern is real (after all, better
stay correct than spread bad code pattern, even if
in reality we don't care as this can't happen), why
not add 0 to the equality?
Why people especially compare with -1? Any negative
value is illegal here and in lots of other places,
and many software packages used to return -errno in
error cases, which is definitely != -1. I'm not
saying that comparing with -1 is bad in _this_
particular case, but why not do it generally in
all cases?
More, comparing with 0 is faster and shorter than
comparing with -1...
So if it were me, I'd change it to >= 0, not to
== -1. Here and in all other millions of places
in qemu code where it compares with -1... ;)
Thanks,
/mjt
> Signed-off-by: Gonglei <arei.gonglei@huawei.com>
> ---
> net/l2tpv3.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/l2tpv3.c b/net/l2tpv3.c
> index 528d95b..b2b0fc0 100644
> --- a/net/l2tpv3.c
> +++ b/net/l2tpv3.c
> @@ -746,7 +746,7 @@ int net_init_l2tpv3(const NetClientOptions *opts,
> return 0;
> outerr:
> qemu_del_net_client(nc);
> - if (fd > 0) {
> + if (fd != -1) {
> close(fd);
> }
> if (result) {
>
WARNING: multiple messages have this Message-ID (diff)
From: Michael Tokarev <mjt@tls.msk.ru>
To: arei.gonglei@huawei.com, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, pbonzini@redhat.com,
weidong.huang@huawei.com, peter.huangpeng@huawei.com,
zhang.zhanghailiang@huawei.com
Subject: Re: [Qemu-devel] [PATCH 1/9] l2tpv3: fix fd leak
Date: Mon, 17 Nov 2014 19:58:25 +0300 [thread overview]
Message-ID: <546A2931.20209@msgid.tls.msk.ru> (raw)
In-Reply-To: <1416046008-7880-2-git-send-email-arei.gonglei@huawei.com>
15.11.2014 13:06, arei.gonglei@huawei.com wrote:
> From: Gonglei <arei.gonglei@huawei.com>
>
> In this false branch, fd will leak when it is zero.
> Change the testing condition.
Why fd==0 is a concern here? It is a very unlikely
situation that fd0 will be picked - firstly because
fd0 is almost always open, and second - even if it
isn't open, it will be picked much earlier than this
code path, ie, some other file will use fd0 before.
But even if the concern is real (after all, better
stay correct than spread bad code pattern, even if
in reality we don't care as this can't happen), why
not add 0 to the equality?
Why people especially compare with -1? Any negative
value is illegal here and in lots of other places,
and many software packages used to return -errno in
error cases, which is definitely != -1. I'm not
saying that comparing with -1 is bad in _this_
particular case, but why not do it generally in
all cases?
More, comparing with 0 is faster and shorter than
comparing with -1...
So if it were me, I'd change it to >= 0, not to
== -1. Here and in all other millions of places
in qemu code where it compares with -1... ;)
Thanks,
/mjt
> Signed-off-by: Gonglei <arei.gonglei@huawei.com>
> ---
> net/l2tpv3.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/l2tpv3.c b/net/l2tpv3.c
> index 528d95b..b2b0fc0 100644
> --- a/net/l2tpv3.c
> +++ b/net/l2tpv3.c
> @@ -746,7 +746,7 @@ int net_init_l2tpv3(const NetClientOptions *opts,
> return 0;
> outerr:
> qemu_del_net_client(nc);
> - if (fd > 0) {
> + if (fd != -1) {
> close(fd);
> }
> if (result) {
>
next prev parent reply other threads:[~2014-11-17 16:58 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-15 10:06 [Qemu-trivial] [PATCH 0/9] Fix Coverity warning reports arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 1/9] l2tpv3: fix fd leak arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-17 16:51 ` [Qemu-trivial] " Stefan Hajnoczi
2014-11-17 16:51 ` Stefan Hajnoczi
2014-11-17 16:58 ` Michael Tokarev [this message]
2014-11-17 16:58 ` Michael Tokarev
2014-11-18 7:50 ` [Qemu-trivial] " Markus Armbruster
2014-11-18 7:50 ` Markus Armbruster
2014-11-18 8:07 ` [Qemu-trivial] " Gonglei
2014-11-18 8:07 ` Gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 2/9] mips_mipssim: fix use-after-free for filename arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 3/9] qga: fix false negative argument passing arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 4/9] loader: fix NEGATIVE_RETURNS arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 5/9] nvme: remove superfluous check arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-17 16:55 ` [Qemu-trivial] " Stefan Hajnoczi
2014-11-17 16:55 ` Stefan Hajnoczi
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 6/9] acl: fix memory leak arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-17 10:48 ` [Qemu-trivial] " Paolo Bonzini
2014-11-17 10:48 ` [Qemu-devel] " Paolo Bonzini
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 7/9] qemu-char: fix MISSING_COMMA arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 8/9] shpc: fix dead code arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 9/9] hcd-musb: fix dereference null return value arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-17 10:58 ` [Qemu-trivial] " Paolo Bonzini
2014-11-17 10:58 ` [Qemu-devel] " Paolo Bonzini
2014-11-17 11:18 ` [Qemu-trivial] " Gonglei
2014-11-17 11:18 ` [Qemu-devel] " Gonglei
2014-11-17 12:55 ` [Qemu-trivial] " Gonglei
2014-11-17 12:55 ` [Qemu-devel] " Gonglei
2014-11-17 13:36 ` [Qemu-trivial] " Gerd Hoffmann
2014-11-17 13:36 ` [Qemu-devel] " Gerd Hoffmann
2014-11-17 13:39 ` [Qemu-trivial] " Paolo Bonzini
2014-11-17 13:39 ` [Qemu-devel] " Paolo Bonzini
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=546A2931.20209@msgid.tls.msk.ru \
--to=mjt@tls.msk.ru \
--cc=arei.gonglei@huawei.com \
--cc=pbonzini@redhat.com \
--cc=peter.huangpeng@huawei.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=weidong.huang@huawei.com \
--cc=zhang.zhanghailiang@huawei.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 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.