[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20140123141124.GJ7269@order.stressinduktion.org>
Date: Thu, 23 Jan 2014 15:11:24 +0100
From: Hannes Frederic Sowa <hannes@...essinduktion.org>
To: Gao feng <gaofeng@...fujitsu.com>
Cc: Sabrina Dubroca <sd@...asysnail.net>, netdev@...r.kernel.org
Subject: Re: [RFC PATCH net] IPv6: Fix broken IPv6 routing table after loopback down-up
On Thu, Jan 23, 2014 at 02:23:27PM +0800, Gao feng wrote:
> >
> > -static int fib6_ifdown(struct rt6_info *rt, void *arg)
> > +static int __fib6_match_or_update_if(struct rt6_info *rt, void *arg)
> > {
> > const struct arg_dev_net *adn = arg;
> > const struct net_device *dev = adn->dev;
> >
> > if ((rt->dst.dev == dev || !dev) &&
> > - rt != adn->net->ipv6.ip6_null_entry)
> > - return -1;
> > + rt != adn->net->ipv6.ip6_null_entry) {
> > + switch (adn->action) {
> > + case ARG_DEV_NET_REMOVE:
> > + /* remove rt */
> > + return -1;
> > + case ARG_DEV_NET_DISABLE:
> > + WARN_ON(rt->rt6i_flags & RTF_DEAD);
> > + rt->rt6i_flags |= RTF_DEAD;
> > + return 0;
> > + case ARG_DEV_NET_ENABLE:
> > + WARN_ON(!(rt->rt6i_flags & RTF_DEAD));
>
> I think this may happen, think a new router is cloned from this rt but hasn't been inserted
> into the router tree on other CPU at the same time.
Yes, there are still some problems with this patch. I actually shuffeled
the code around to purge all those RTF_CACHE RTF_DEAD routes yesterday
while holding the same write_lock on the table.
Regarding the problem you addressed, I tried to validate the route
using dst.from on insert while holding write_lock, somehow like we do
for checking expire time. But I really dislike this.
Thanks,
Hannes
--
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