[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1271786247.7895.130.camel@edumazet-laptop>
Date: Tue, 20 Apr 2010 19:57:27 +0200
From: Eric Dumazet <eric.dumazet@...il.com>
To: Jiri Bohac <jbohac@...e.cz>
Cc: netdev@...r.kernel.org,
Hideaki YOSHIFUJI <yoshfuji@...ux-ipv6.org>,
David Miller <davem@...emloft.net>
Subject: Re: IPv6: race condition in __ipv6_ifa_notify() and dst_free() ?
Le mardi 20 avril 2010 à 19:44 +0200, Jiri Bohac a écrit :
> Hi,
>
> I found what I believe is a race condition in __ipv6_ifa_notify(), in the call
> to dst_free().
>
> __ipv6_ifa_notify() contains:
>
> case RTM_DELADDR:
> if (ifp->idev->cnf.forwarding)
> addrconf_leave_anycast(ifp);
> addrconf_leave_solict(ifp->idev, &ifp->addr);
> dst_hold(&ifp->rt->u.dst);
> if (ip6_del_rt(ifp->rt))
> dst_free(&ifp->rt->u.dst);
> break;
>
> AFAICT, ip6_del_rt() will call dst_free() itself if it finds and actually
> deletes the route:
> ip6_del_rt() -> __ip6_del_rt() -> fib6_del() -> fib6_del_route() ->
> -> rt6_release() -> dst_free()
>
> If it fails (like when it races with another invocation of ip6_del_rt()), it
> will return nonzero and this will cause the above code to call dst_free() on its own.
>
> dst_free() has no protection against concurrent invocation and if
Sorry ? of course dst_free() has a protection...
By definition, the dst_destroy() is called only by the last thread with
the final refcount on object.
> two invocations make it through the "if (dst->obsolete > 1)"
> check before one of them calls __dst_free(), the same dst_entry
> may end up either:
> 1) dst_destroy()ed and put on the dst_garbage.list, or
> 2) put on the dst_garbage.list twice
> both resulting in trouble once the GC is run.
>
> One possible code path leading to two invocations of __ipv6_ifa_notify() seems
> to be when two bonding slaves receive a NS/NA with the bonds IPv6 address when
> the bonding master is in the DAD phase with a tentative address:
>
> netif_receive_skb() gets invoked on two CPUs and sets skb->dev to the bonding master ...
> ... ip6_mc_input() -> ip6_input_finish() -> icmpv6_rcv() -> ndisc_rcv() ->
> -> ndisc_recv_ns() -> addrconf_dad_failure() -> ipv6_del_addr() -> ipv6_ifa_notify() ->
> -> __ipv6_ifa_notify
>
>
> What is the reason __ipv6_ifa_notify() calls dst_free() when
> ip6_del_rt() fails? I don't see a way ip6_del_rt() could fail
> with the dst still needing to be freed.
>
> I am just testing whether the following will help:
>
> --- a/net/ipv6/addrconf.c 2010-04-17 00:12:32.000000000 +0200
> +++ b/net/ipv6/addrconf.c 2010-04-20 19:07:35.000000000 +0200
> @@ -3974,8 +3974,7 @@ static void __ipv6_ifa_notify(int event,
> addrconf_leave_anycast(ifp);
> addrconf_leave_solict(ifp->idev, &ifp->addr);
> dst_hold(&ifp->rt->u.dst);
> - if (ip6_del_rt(ifp->rt))
> - dst_free(&ifp->rt->u.dst);
> + ip6_del_rt(ifp->rt);
> break;
> }
> }
>
I dont understand the problem Jiri.
We just did dst_hold(&ifp->rt->u.dst), so if ip6_del_rt() fails we must
dst_free(), or we leak a refcount.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists