From: Jon Maloy <jmaloy@redhat.com>
To: Dan Carpenter <dan.carpenter@oracle.com>,
Richard Alpe <richard.alpe@ericsson.com>
Cc: Ying Xue <ying.xue@windriver.com>,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
Erik Hugne <erik.hugne@ericsson.com>,
netdev@vger.kernel.org, tipc-discussion@lists.sourceforge.net,
kernel-janitors@vger.kernel.org
Subject: Re: [PATCH net] tipc: Fix end of loop tests for list_for_each_entry()
Date: Thu, 24 Feb 2022 10:26:41 -0500 [thread overview]
Message-ID: <a733fc64-0c59-f495-5f12-d90750fd32d7@redhat.com> (raw)
In-Reply-To: <20220222134311.GA2716@kili>
On 2/22/22 08:43, Dan Carpenter wrote:
> These tests are supposed to check if the loop exited via a break or not.
> However the tests are wrong because if we did not exit via a break then
> "p" is not a valid pointer. In that case, it's the equivalent of
> "if (*(u32 *)sr == *last_key) {". That's going to work most of the time,
> but there is a potential for those to be equal.
>
> Fixes: 1593123a6a49 ("tipc: add name table dump to new netlink api")
> Fixes: 1a1a143daf84 ("tipc: add publication dump to new netlink api")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
> net/tipc/name_table.c | 2 +-
> net/tipc/socket.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/net/tipc/name_table.c b/net/tipc/name_table.c
> index 01396dd1c899..1d8ba233d047 100644
> --- a/net/tipc/name_table.c
> +++ b/net/tipc/name_table.c
> @@ -967,7 +967,7 @@ static int __tipc_nl_add_nametable_publ(struct tipc_nl_msg *msg,
> list_for_each_entry(p, &sr->all_publ, all_publ)
> if (p->key == *last_key)
> break;
> - if (p->key != *last_key)
> + if (list_entry_is_head(p, &sr->all_publ, all_publ))
> return -EPIPE;
> } else {
> p = list_first_entry(&sr->all_publ,
> diff --git a/net/tipc/socket.c b/net/tipc/socket.c
> index 3e63c83e641c..7545321c3440 100644
> --- a/net/tipc/socket.c
> +++ b/net/tipc/socket.c
> @@ -3749,7 +3749,7 @@ static int __tipc_nl_list_sk_publ(struct sk_buff *skb,
> if (p->key == *last_publ)
> break;
> }
> - if (p->key != *last_publ) {
> + if (list_entry_is_head(p, &tsk->publications, binding_sock)) {
> /* We never set seq or call nl_dump_check_consistent()
> * this means that setting prev_seq here will cause the
> * consistence check to fail in the netlink callback
Acked-by: Jon Maloy <jmaloy@redhat.com>
prev parent reply other threads:[~2022-02-24 15:27 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-22 13:43 [PATCH net] tipc: Fix end of loop tests for list_for_each_entry() Dan Carpenter
2022-02-23 12:40 ` patchwork-bot+netdevbpf
2022-02-24 15:26 ` Jon Maloy [this message]
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=a733fc64-0c59-f495-5f12-d90750fd32d7@redhat.com \
--to=jmaloy@redhat.com \
--cc=dan.carpenter@oracle.com \
--cc=davem@davemloft.net \
--cc=erik.hugne@ericsson.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=richard.alpe@ericsson.com \
--cc=tipc-discussion@lists.sourceforge.net \
--cc=ying.xue@windriver.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;
as well as URLs for NNTP newsgroup(s).