提交 707a2ca4 编写于 作者: T Tom Herbert 提交者: David S. Miller

ila: Perform only one translation in forwarding path

When setting up ILA in a router we noticed that the the encapsulation
is invoked twice: once in the route input path and again upon route
output. To resolve this we add a flag set_csum_neutral for the
ila_update_ipv6_locator. If this flag is set and the checksum
neutral bit is also set we assume that checksum-neutral translation
has already been performed and take no further action. The
flag is set only in ila_output path. The flag is not set for ila_input and
ila_xlat.

Tested:

Used 3 netns to set to emulate a router and two hosts. The router
translates SIR addresses between the two destinations in other two netns.
Verified ping and netperf are functional.
Signed-off-by: NTom Herbert <tom@herbertland.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 e00431bc
...@@ -109,7 +109,8 @@ static inline bool ila_csum_neutral_set(struct ila_identifier ident) ...@@ -109,7 +109,8 @@ static inline bool ila_csum_neutral_set(struct ila_identifier ident)
return !!(ident.csum_neutral); return !!(ident.csum_neutral);
} }
void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p); void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p,
bool set_csum_neutral);
void ila_init_saved_csum(struct ila_params *p); void ila_init_saved_csum(struct ila_params *p);
......
...@@ -103,7 +103,8 @@ static void ila_csum_adjust_transport(struct sk_buff *skb, ...@@ -103,7 +103,8 @@ static void ila_csum_adjust_transport(struct sk_buff *skb,
iaddr->loc = p->locator; iaddr->loc = p->locator;
} }
void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p) void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p,
bool set_csum_neutral)
{ {
struct ipv6hdr *ip6h = ipv6_hdr(skb); struct ipv6hdr *ip6h = ipv6_hdr(skb);
struct ila_addr *iaddr = ila_a2i(&ip6h->daddr); struct ila_addr *iaddr = ila_a2i(&ip6h->daddr);
...@@ -114,7 +115,8 @@ void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p) ...@@ -114,7 +115,8 @@ void ila_update_ipv6_locator(struct sk_buff *skb, struct ila_params *p)
* is a locator being translated to a SIR address. * is a locator being translated to a SIR address.
* Perform (receiver) checksum-neutral translation. * Perform (receiver) checksum-neutral translation.
*/ */
ila_csum_do_neutral(iaddr, p); if (!set_csum_neutral)
ila_csum_do_neutral(iaddr, p);
} else { } else {
switch (p->csum_mode) { switch (p->csum_mode) {
case ILA_CSUM_ADJUST_TRANSPORT: case ILA_CSUM_ADJUST_TRANSPORT:
......
...@@ -26,7 +26,7 @@ static int ila_output(struct net *net, struct sock *sk, struct sk_buff *skb) ...@@ -26,7 +26,7 @@ static int ila_output(struct net *net, struct sock *sk, struct sk_buff *skb)
if (skb->protocol != htons(ETH_P_IPV6)) if (skb->protocol != htons(ETH_P_IPV6))
goto drop; goto drop;
ila_update_ipv6_locator(skb, ila_params_lwtunnel(dst->lwtstate)); ila_update_ipv6_locator(skb, ila_params_lwtunnel(dst->lwtstate), true);
return dst->lwtstate->orig_output(net, sk, skb); return dst->lwtstate->orig_output(net, sk, skb);
...@@ -42,7 +42,7 @@ static int ila_input(struct sk_buff *skb) ...@@ -42,7 +42,7 @@ static int ila_input(struct sk_buff *skb)
if (skb->protocol != htons(ETH_P_IPV6)) if (skb->protocol != htons(ETH_P_IPV6))
goto drop; goto drop;
ila_update_ipv6_locator(skb, ila_params_lwtunnel(dst->lwtstate)); ila_update_ipv6_locator(skb, ila_params_lwtunnel(dst->lwtstate), false);
return dst->lwtstate->orig_input(skb); return dst->lwtstate->orig_input(skb);
......
...@@ -210,14 +210,14 @@ static void ila_free_cb(void *ptr, void *arg) ...@@ -210,14 +210,14 @@ static void ila_free_cb(void *ptr, void *arg)
} }
} }
static int ila_xlat_addr(struct sk_buff *skb); static int ila_xlat_addr(struct sk_buff *skb, bool set_csum_neutral);
static unsigned int static unsigned int
ila_nf_input(void *priv, ila_nf_input(void *priv,
struct sk_buff *skb, struct sk_buff *skb,
const struct nf_hook_state *state) const struct nf_hook_state *state)
{ {
ila_xlat_addr(skb); ila_xlat_addr(skb, false);
return NF_ACCEPT; return NF_ACCEPT;
} }
...@@ -597,7 +597,7 @@ static struct pernet_operations ila_net_ops = { ...@@ -597,7 +597,7 @@ static struct pernet_operations ila_net_ops = {
.size = sizeof(struct ila_net), .size = sizeof(struct ila_net),
}; };
static int ila_xlat_addr(struct sk_buff *skb) static int ila_xlat_addr(struct sk_buff *skb, bool set_csum_neutral)
{ {
struct ila_map *ila; struct ila_map *ila;
struct ipv6hdr *ip6h = ipv6_hdr(skb); struct ipv6hdr *ip6h = ipv6_hdr(skb);
...@@ -616,7 +616,7 @@ static int ila_xlat_addr(struct sk_buff *skb) ...@@ -616,7 +616,7 @@ static int ila_xlat_addr(struct sk_buff *skb)
ila = ila_lookup_wildcards(iaddr, skb->dev->ifindex, ilan); ila = ila_lookup_wildcards(iaddr, skb->dev->ifindex, ilan);
if (ila) if (ila)
ila_update_ipv6_locator(skb, &ila->xp.ip); ila_update_ipv6_locator(skb, &ila->xp.ip, set_csum_neutral);
rcu_read_unlock(); rcu_read_unlock();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册