ipv6: add a wrapper for ip6_dst_store() with flowi6 checks
Move commonly used pattern of ip6_dst_store() usage to a separate function - ip6_sk_dst_store_flow(), which will check the addresses for equality using the flow information, before saving them. There is no functional changes in this patch. In addition, it will be used in the next patch, in ip6_sk_dst_lookup_flow(). Signed-off-by: Alexey Kodanev <alexey.kodanev@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
0d3ad8549c
Коммит
7d6850f7c6
|
@ -214,6 +214,9 @@ static inline void ip6_dst_store(struct sock *sk, struct dst_entry *dst,
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst,
|
||||||
|
const struct flowi6 *fl6);
|
||||||
|
|
||||||
static inline bool ipv6_unicast_destination(const struct sk_buff *skb)
|
static inline bool ipv6_unicast_destination(const struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
struct rt6_info *rt = (struct rt6_info *) skb_dst(skb);
|
struct rt6_info *rt = (struct rt6_info *) skb_dst(skb);
|
||||||
|
|
|
@ -106,14 +106,7 @@ int ip6_datagram_dst_update(struct sock *sk, bool fix_sk_saddr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ip6_dst_store(sk, dst,
|
ip6_sk_dst_store_flow(sk, dst, &fl6);
|
||||||
ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
|
|
||||||
&sk->sk_v6_daddr : NULL,
|
|
||||||
#ifdef CONFIG_IPV6_SUBTREES
|
|
||||||
ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
|
|
||||||
&np->saddr :
|
|
||||||
#endif
|
|
||||||
NULL);
|
|
||||||
|
|
||||||
out:
|
out:
|
||||||
fl6_sock_release(flowlabel);
|
fl6_sock_release(flowlabel);
|
||||||
|
|
|
@ -2229,6 +2229,23 @@ void ip6_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, __be32 mtu)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
|
EXPORT_SYMBOL_GPL(ip6_sk_update_pmtu);
|
||||||
|
|
||||||
|
void ip6_sk_dst_store_flow(struct sock *sk, struct dst_entry *dst,
|
||||||
|
const struct flowi6 *fl6)
|
||||||
|
{
|
||||||
|
#ifdef CONFIG_IPV6_SUBTREES
|
||||||
|
struct ipv6_pinfo *np = inet6_sk(sk);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
ip6_dst_store(sk, dst,
|
||||||
|
ipv6_addr_equal(&fl6->daddr, &sk->sk_v6_daddr) ?
|
||||||
|
&sk->sk_v6_daddr : NULL,
|
||||||
|
#ifdef CONFIG_IPV6_SUBTREES
|
||||||
|
ipv6_addr_equal(&fl6->saddr, &np->saddr) ?
|
||||||
|
&np->saddr :
|
||||||
|
#endif
|
||||||
|
NULL);
|
||||||
|
}
|
||||||
|
|
||||||
/* Handle redirects */
|
/* Handle redirects */
|
||||||
struct ip6rd_flowi {
|
struct ip6rd_flowi {
|
||||||
struct flowi6 fl6;
|
struct flowi6 fl6;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче