From: Paul Hüber Date: Sun, 26 Feb 2017 16:58:19 +0000 (+0100) Subject: l2tp: avoid use-after-free caused by l2tp_ip_backlog_recv X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3475371514112e50da257ed505a5012abfc55094;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git l2tp: avoid use-after-free caused by l2tp_ip_backlog_recv commit 51fb60eb162ab84c5edf2ae9c63cf0b878e5547e upstream. l2tp_ip_backlog_recv may not return -1 if the packet gets dropped. The return value is passed up to ip_local_deliver_finish, which treats negative values as an IP protocol number for resubmission. Signed-off-by: Paul Hüber Signed-off-by: David S. Miller Signed-off-by: Willy Tarreau --- diff --git a/net/l2tp/l2tp_ip.c b/net/l2tp/l2tp_ip.c index f4d30b509cdf..1f65095c3217 100644 --- a/net/l2tp/l2tp_ip.c +++ b/net/l2tp/l2tp_ip.c @@ -382,7 +382,7 @@ static int l2tp_ip_backlog_recv(struct sock *sk, struct sk_buff *skb) drop: IP_INC_STATS(sock_net(sk), IPSTATS_MIB_INDISCARDS); kfree_skb(skb); - return -1; + return 0; } /* Userspace will call sendmsg() on the tunnel socket to send L2TP