From: Zhu Yanjun <yanjun.zhu@linux.dev>
To: Liu Jian <liujian56@huawei.com>,
davem@davemloft.net, dsahern@kernel.org, edumazet@google.com,
kuba@kernel.org, pabeni@redhat.com, hadi@cyberus.ca,
netdev@vger.kernel.org
Subject: Re: [PATCH net] net: ipv4: fix one memleak in __inet_del_ifa()
Date: Tue, 5 Sep 2023 23:57:27 +0800 [thread overview]
Message-ID: <5e06cdbc-b3aa-3809-5e47-6d92e5c4274e@linux.dev> (raw)
In-Reply-To: <20230905135554.1958156-1-liujian56@huawei.com>
在 2023/9/5 21:55, Liu Jian 写道:
> I got the below warning when do fuzzing test:
> unregister_netdevice: waiting for bond0 to become free. Usage count = 2
>
> It can be repoduced via:
>
> ip link add bond0 type bond
> sysctl -w net.ipv4.conf.bond0.promote_secondaries=1
> ip addr add 4.117.174.103/0 scope 0x40 dev bond0
> ip addr add 192.168.100.111/255.255.255.254 scope 0 dev bond0
> ip addr add 0.0.0.4/0 scope 0x40 secondary dev bond0
> ip addr del 4.117.174.103/0 scope 0x40 dev bond0
> ip link delete bond0 type bond
>
> In this reproduction test case, an incorrect 'last_prim' is found in
> __inet_del_ifa(), as a result, the secondary address(0.0.0.4/0 scope 0x40)
> is lost. The memory of the secondary address is leaked and the reference of
> in_device and net_device is leaked.
>
> Fix this problem by modifying the PROMOTE_SECONDANCE behavior as follows:
> 1. Traverse in_dev->ifa_list to search for the actual 'last_prim'.
> 2. When last_prim is empty, move 'promote' to the in_dev->ifa_list header.
>
> Fixes: 0ff60a45678e ("[IPV4]: Fix secondary IP addresses after promotion")
> Signed-off-by: Liu Jian <liujian56@huawei.com>
> ---
> net/ipv4/devinet.c | 26 ++++++++++++++++++++------
> 1 file changed, 20 insertions(+), 6 deletions(-)
>
> diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c
> index 9cf64ee47dd2..99278f4b58e0 100644
> --- a/net/ipv4/devinet.c
> +++ b/net/ipv4/devinet.c
> @@ -355,14 +355,13 @@ static void __inet_del_ifa(struct in_device *in_dev,
> {
> struct in_ifaddr *promote = NULL;
> struct in_ifaddr *ifa, *ifa1;
> - struct in_ifaddr *last_prim;
> + struct in_ifaddr *last_prim = NULL;
> struct in_ifaddr *prev_prom = NULL;
> int do_promote = IN_DEV_PROMOTE_SECONDARIES(in_dev);
>
> ASSERT_RTNL();
>
> ifa1 = rtnl_dereference(*ifap);
> - last_prim = rtnl_dereference(in_dev->ifa_list);
> if (in_dev->dead)
> goto no_promotions;
>
> @@ -371,7 +370,16 @@ static void __inet_del_ifa(struct in_device *in_dev,
> **/
>
> if (!(ifa1->ifa_flags & IFA_F_SECONDARY)) {
> - struct in_ifaddr __rcu **ifap1 = &ifa1->ifa_next;
> + struct in_ifaddr __rcu **ifap1 = &in_dev->ifa_list;
> +
> + while ((ifa = rtnl_dereference(*ifap1)) != NULL) {
while ((ifa = rtnl_dereference(*ifap1))) should be enough.
Zhu Yanjun
> + if (ifa1 == ifa)
> + break;
> + last_prim = ifa;
> + ifap1 = &ifa->ifa_next;
> + }
> +
> + ifap1 = &ifa1->ifa_next;
>
> while ((ifa = rtnl_dereference(*ifap1)) != NULL) {
> if (!(ifa->ifa_flags & IFA_F_SECONDARY) &&
> @@ -440,9 +448,15 @@ static void __inet_del_ifa(struct in_device *in_dev,
>
> rcu_assign_pointer(prev_prom->ifa_next, next_sec);
>
> - last_sec = rtnl_dereference(last_prim->ifa_next);
> - rcu_assign_pointer(promote->ifa_next, last_sec);
> - rcu_assign_pointer(last_prim->ifa_next, promote);
> + if (last_prim) {
> + last_sec = rtnl_dereference(last_prim->ifa_next);
> + rcu_assign_pointer(promote->ifa_next, last_sec);
> + rcu_assign_pointer(last_prim->ifa_next, promote);
> + } else {
> + rcu_assign_pointer(promote->ifa_next,
> + rtnl_dereference(in_dev->ifa_list));
> + rcu_assign_pointer(in_dev->ifa_list, promote);
> + }
> }
>
> promote->ifa_flags &= ~IFA_F_SECONDARY;
next prev parent reply other threads:[~2023-09-05 15:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-05 13:55 [PATCH net] net: ipv4: fix one memleak in __inet_del_ifa() Liu Jian
2023-09-05 15:57 ` Zhu Yanjun [this message]
2023-09-05 17:20 ` Julian Anastasov
2023-09-06 3:39 ` liujian (CE)
2023-09-06 10:30 ` Julian Anastasov
2023-09-07 2:54 ` liujian (CE)
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=5e06cdbc-b3aa-3809-5e47-6d92e5c4274e@linux.dev \
--to=yanjun.zhu@linux.dev \
--cc=davem@davemloft.net \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=hadi@cyberus.ca \
--cc=kuba@kernel.org \
--cc=liujian56@huawei.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.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).