Skip to content

Commit

Permalink
[IPV6] ROUTE: Search subtree when backtracking.
Browse files Browse the repository at this point in the history
Based on MIPL2 kernel patch.

Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: Ville Nuorvala <vnuorval@tcs.hut.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
YOSHIFUJI Hideaki authored and David S. Miller committed Sep 22, 2006
1 parent 7fc3316 commit 982f56f
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions net/ipv6/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -481,17 +481,23 @@ int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
}
#endif

#define BACKTRACK() \
if (rt == &ip6_null_entry && flags & RT6_F_STRICT) { \
while ((fn = fn->parent) != NULL) { \
if (fn->fn_flags & RTN_TL_ROOT) { \
dst_hold(&rt->u.dst); \
goto out; \
#define BACKTRACK(saddr) \
do { \
if (rt == &ip6_null_entry) { \
struct fib6_node *pn; \
while (fn) { \
if (fn->fn_flags & RTN_TL_ROOT) \
goto out; \
pn = fn->parent; \
if (FIB6_SUBTREE(pn) && FIB6_SUBTREE(pn) != fn) \
fn = fib6_lookup(pn->subtree, NULL, saddr); \
else \
fn = pn; \
if (fn->fn_flags & RTN_RTINFO) \
goto restart; \
} \
if (fn->fn_flags & RTN_RTINFO) \
goto restart; \
} \
}
} while(0)

static struct rt6_info *ip6_pol_route_lookup(struct fib6_table *table,
struct flowi *fl, int flags)
Expand All @@ -504,7 +510,7 @@ static struct rt6_info *ip6_pol_route_lookup(struct fib6_table *table,
restart:
rt = fn->leaf;
rt = rt6_device_match(rt, fl->oif, flags & RT6_F_STRICT);
BACKTRACK();
BACKTRACK(&fl->fl6_src);
dst_hold(&rt->u.dst);
out:
read_unlock_bh(&table->tb6_lock);
Expand Down Expand Up @@ -638,7 +644,7 @@ static struct rt6_info *ip6_pol_route_input(struct fib6_table *table,

restart:
rt = rt6_select(&fn->leaf, fl->iif, strict | reachable);
BACKTRACK();
BACKTRACK(&fl->fl6_src);
if (rt == &ip6_null_entry ||
rt->rt6i_flags & RTF_CACHE)
goto out;
Expand Down Expand Up @@ -733,7 +739,7 @@ static struct rt6_info *ip6_pol_route_output(struct fib6_table *table,

restart:
rt = rt6_select(&fn->leaf, fl->oif, strict | reachable);
BACKTRACK();
BACKTRACK(&fl->fl6_src);
if (rt == &ip6_null_entry ||
rt->rt6i_flags & RTF_CACHE)
goto out;
Expand Down

0 comments on commit 982f56f

Please sign in to comment.