All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next,v2] ipvs: orphan skb on LOCAL_IN path
@ 2015-01-29 21:25 Alex Gartrell
  2015-01-30  1:02 ` Simon Horman
  2015-01-30  8:18 ` Julian Anastasov
  0 siblings, 2 replies; 4+ messages in thread
From: Alex Gartrell @ 2015-01-29 21:25 UTC (permalink / raw)
  To: wensong, horms, ja; +Cc: lvs-devel, kernel-team, Alex Gartrell

skb->sk can be set in the early_demux path.  This can be problematic, as it
may be a time-wait socket, which will blow up in the ip6_output path when
we try to pull out the non-existant pinet6 pointer (the type-punning causes
that pointer to be garbage).

This patch orphans the skb if it's not a local socket, so we no longer have
to worry about running into the time-wait problem from early demux.  It
does this by checking for dev, which is unset in that path.

Signed-off-by: Alex Gartrell <agartrell@fb.com>
---
 net/netfilter/ipvs/ip_vs_xmit.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/net/netfilter/ipvs/ip_vs_xmit.c b/net/netfilter/ipvs/ip_vs_xmit.c
index 936fd29..9b8c3c4 100644
--- a/net/netfilter/ipvs/ip_vs_xmit.c
+++ b/net/netfilter/ipvs/ip_vs_xmit.c
@@ -484,6 +484,9 @@ static inline int ip_vs_tunnel_xmit_prepare(struct sk_buff *skb,
 	if (unlikely(cp->flags & IP_VS_CONN_F_NFCT))
 		ret = ip_vs_confirm_conntrack(skb);
 	if (ret == NF_ACCEPT) {
+		/* orphan on LOCAL_IN */
+		if (skb->dev)
+			skb_orphan(skb);
 		nf_reset(skb);
 		skb_forward_csum(skb);
 	}
@@ -502,6 +505,9 @@ static inline int ip_vs_nat_send_or_cont(int pf, struct sk_buff *skb,
 	else
 		ip_vs_update_conntrack(skb, cp, 1);
 	if (!local) {
+		/* orphan on LOCAL_IN */
+		if (skb->dev)
+			skb_orphan(skb);
 		skb_forward_csum(skb);
 		NF_HOOK(pf, NF_INET_LOCAL_OUT, skb, NULL, skb_dst(skb)->dev,
 			dst_output);
@@ -520,6 +526,9 @@ static inline int ip_vs_send_or_cont(int pf, struct sk_buff *skb,
 	if (likely(!(cp->flags & IP_VS_CONN_F_NFCT)))
 		ip_vs_notrack(skb);
 	if (!local) {
+		/* orphan on LOCAL_IN */
+		if (skb->dev)
+			skb_orphan(skb);
 		skb_forward_csum(skb);
 		NF_HOOK(pf, NF_INET_LOCAL_OUT, skb, NULL, skb_dst(skb)->dev,
 			dst_output);
-- 
Alex Gartrell <agartrell@fb.com>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-01-30  8:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-29 21:25 [PATCH net-next,v2] ipvs: orphan skb on LOCAL_IN path Alex Gartrell
2015-01-30  1:02 ` Simon Horman
2015-01-30  1:24   ` Alex Gartrell
2015-01-30  8:18 ` Julian Anastasov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.