netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ipvs: Keep skb->sk when allocating headroom on tunnel xmit
@ 2014-11-05  0:37 Calvin Owens
  2014-11-05  9:21 ` Julian Anastasov
  0 siblings, 1 reply; 5+ messages in thread
From: Calvin Owens @ 2014-11-05  0:37 UTC (permalink / raw)
  To: Simon Horman, Julian Anastasov, Wensong Zhang
  Cc: lvs-devel, linux-kernel, netdev, agartrell, kernel-team,
	Calvin Owens

ip_vs_prepare_tunneled_skb() ignores ->sk when allocating a new
skb, either unconditionally setting ->sk to NULL or allowing
the uninitialized ->sk from a newly allocated skb to leak through
to the caller.

This patch properly copies ->sk and increments its reference count.

Signed-off-by: Calvin Owens <calvinowens@fb.com>
---
 net/netfilter/ipvs/ip_vs_xmit.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net/netfilter/ipvs/ip_vs_xmit.c b/net/netfilter/ipvs/ip_vs_xmit.c
index 437a366..bd90bf8 100644
--- a/net/netfilter/ipvs/ip_vs_xmit.c
+++ b/net/netfilter/ipvs/ip_vs_xmit.c
@@ -846,6 +846,8 @@ ip_vs_prepare_tunneled_skb(struct sk_buff *skb, int skb_af,
 		new_skb = skb_realloc_headroom(skb, max_headroom);
 		if (!new_skb)
 			goto error;
+		if (skb->sk)
+			skb_set_owner_w(new_skb, skb->sk);
 		consume_skb(skb);
 		skb = new_skb;
 	}
-- 
2.1.1

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

end of thread, other threads:[~2014-11-12  2:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-05  0:37 [PATCH] ipvs: Keep skb->sk when allocating headroom on tunnel xmit Calvin Owens
2014-11-05  9:21 ` Julian Anastasov
2014-11-07 22:12   ` Calvin Owens
2014-11-08  6:16     ` Julian Anastasov
2014-11-12  2:22       ` Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).