mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 08:34:20 +08:00
ipv6: Break up ip6_rt_copy()
This patch breaks up ip6_rt_copy() into ip6_rt_copy_init() and ip6_rt_cache_alloc(). In the later patch, we need to create a percpu rt6_info copy. Hence, refactor the common rt6_info init codes to ip6_rt_copy_init(). Signed-off-by: Martin KaFai Lau <kafai@fb.com> Cc: Hannes Frederic Sowa <hannes@stressinduktion.org> Cc: Steffen Klassert <steffen.klassert@secunet.com> Cc: Julian Anastasov <ja@ssi.bg> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8d0b94afdc
commit
83a09abd1a
@ -72,8 +72,7 @@ enum rt6_nud_state {
|
|||||||
RT6_NUD_SUCCEED = 1
|
RT6_NUD_SUCCEED = 1
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
|
static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort);
|
||||||
const struct in6_addr *dest);
|
|
||||||
static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
|
static struct dst_entry *ip6_dst_check(struct dst_entry *dst, u32 cookie);
|
||||||
static unsigned int ip6_default_advmss(const struct dst_entry *dst);
|
static unsigned int ip6_default_advmss(const struct dst_entry *dst);
|
||||||
static unsigned int ip6_mtu(const struct dst_entry *dst);
|
static unsigned int ip6_mtu(const struct dst_entry *dst);
|
||||||
@ -913,22 +912,32 @@ static struct rt6_info *ip6_rt_cache_alloc(struct rt6_info *ort,
|
|||||||
* Clone the route.
|
* Clone the route.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
rt = ip6_rt_copy(ort, daddr);
|
if (ort->rt6i_flags & RTF_CACHE)
|
||||||
|
ort = (struct rt6_info *)ort->dst.from;
|
||||||
|
|
||||||
if (rt) {
|
rt = ip6_dst_alloc(dev_net(ort->dst.dev), ort->dst.dev,
|
||||||
rt->rt6i_flags |= RTF_CACHE;
|
0, ort->rt6i_table);
|
||||||
|
|
||||||
if (!rt6_is_gw_or_nonexthop(ort)) {
|
if (!rt)
|
||||||
if (ort->rt6i_dst.plen != 128 &&
|
return NULL;
|
||||||
ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
|
|
||||||
rt->rt6i_flags |= RTF_ANYCAST;
|
ip6_rt_copy_init(rt, ort);
|
||||||
|
rt->rt6i_flags |= RTF_CACHE;
|
||||||
|
rt->rt6i_metric = 0;
|
||||||
|
rt->dst.flags |= DST_HOST;
|
||||||
|
rt->rt6i_dst.addr = *daddr;
|
||||||
|
rt->rt6i_dst.plen = 128;
|
||||||
|
|
||||||
|
if (!rt6_is_gw_or_nonexthop(ort)) {
|
||||||
|
if (ort->rt6i_dst.plen != 128 &&
|
||||||
|
ipv6_addr_equal(&ort->rt6i_dst.addr, daddr))
|
||||||
|
rt->rt6i_flags |= RTF_ANYCAST;
|
||||||
#ifdef CONFIG_IPV6_SUBTREES
|
#ifdef CONFIG_IPV6_SUBTREES
|
||||||
if (rt->rt6i_src.plen && saddr) {
|
if (rt->rt6i_src.plen && saddr) {
|
||||||
rt->rt6i_src.addr = *saddr;
|
rt->rt6i_src.addr = *saddr;
|
||||||
rt->rt6i_src.plen = 128;
|
rt->rt6i_src.plen = 128;
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
return rt;
|
return rt;
|
||||||
@ -1980,7 +1989,7 @@ static void rt6_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_bu
|
|||||||
NEIGH_UPDATE_F_ISROUTER))
|
NEIGH_UPDATE_F_ISROUTER))
|
||||||
);
|
);
|
||||||
|
|
||||||
nrt = ip6_rt_copy(rt, &msg->dest);
|
nrt = ip6_rt_cache_alloc(rt, &msg->dest, NULL);
|
||||||
if (!nrt)
|
if (!nrt)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
@ -2022,42 +2031,25 @@ static void rt6_set_from(struct rt6_info *rt, struct rt6_info *from)
|
|||||||
dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
|
dst_init_metrics(&rt->dst, dst_metrics_ptr(&from->dst), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
|
static void ip6_rt_copy_init(struct rt6_info *rt, struct rt6_info *ort)
|
||||||
const struct in6_addr *dest)
|
|
||||||
{
|
{
|
||||||
struct net *net = dev_net(ort->dst.dev);
|
rt->dst.input = ort->dst.input;
|
||||||
struct rt6_info *rt;
|
rt->dst.output = ort->dst.output;
|
||||||
|
rt->rt6i_dst = ort->rt6i_dst;
|
||||||
if (ort->rt6i_flags & RTF_CACHE)
|
rt->dst.error = ort->dst.error;
|
||||||
ort = (struct rt6_info *)ort->dst.from;
|
rt->rt6i_idev = ort->rt6i_idev;
|
||||||
|
if (rt->rt6i_idev)
|
||||||
rt = ip6_dst_alloc(net, ort->dst.dev, 0,
|
in6_dev_hold(rt->rt6i_idev);
|
||||||
ort->rt6i_table);
|
rt->dst.lastuse = jiffies;
|
||||||
|
rt->rt6i_gateway = ort->rt6i_gateway;
|
||||||
if (rt) {
|
rt->rt6i_flags = ort->rt6i_flags;
|
||||||
rt->dst.input = ort->dst.input;
|
rt6_set_from(rt, ort);
|
||||||
rt->dst.output = ort->dst.output;
|
rt->rt6i_metric = ort->rt6i_metric;
|
||||||
rt->dst.flags |= DST_HOST;
|
|
||||||
|
|
||||||
rt->rt6i_dst.addr = *dest;
|
|
||||||
rt->rt6i_dst.plen = 128;
|
|
||||||
rt->dst.error = ort->dst.error;
|
|
||||||
rt->rt6i_idev = ort->rt6i_idev;
|
|
||||||
if (rt->rt6i_idev)
|
|
||||||
in6_dev_hold(rt->rt6i_idev);
|
|
||||||
rt->dst.lastuse = jiffies;
|
|
||||||
rt->rt6i_gateway = ort->rt6i_gateway;
|
|
||||||
rt->rt6i_flags = ort->rt6i_flags;
|
|
||||||
rt6_set_from(rt, ort);
|
|
||||||
rt->rt6i_metric = 0;
|
|
||||||
|
|
||||||
#ifdef CONFIG_IPV6_SUBTREES
|
#ifdef CONFIG_IPV6_SUBTREES
|
||||||
memcpy(&rt->rt6i_src, &ort->rt6i_src, sizeof(struct rt6key));
|
rt->rt6i_src = ort->rt6i_src;
|
||||||
#endif
|
#endif
|
||||||
memcpy(&rt->rt6i_prefsrc, &ort->rt6i_prefsrc, sizeof(struct rt6key));
|
rt->rt6i_prefsrc = ort->rt6i_prefsrc;
|
||||||
rt->rt6i_table = ort->rt6i_table;
|
rt->rt6i_table = ort->rt6i_table;
|
||||||
}
|
|
||||||
return rt;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_IPV6_ROUTE_INFO
|
#ifdef CONFIG_IPV6_ROUTE_INFO
|
||||||
|
Loading…
Reference in New Issue
Block a user