Skip to content

Commit efe35db

Browse files
sherllygregkh
authored andcommitted
net/l2tp: Fix reference count leak in l2tp_udp_recv_core
commit 9b6ff7e upstream. The reference count leak issue may take place in an error handling path. If both conditions of tunnel->version == L2TP_HDR_VER_3 and the return value of l2tp_v3_ensure_opt_in_linear is nonzero, the function would directly jump to label invalid, without decrementing the reference count of the l2tp_session object session increased earlier by l2tp_tunnel_get_session(). This may result in refcount leaks. Fix this issue by decrease the reference count before jumping to the label invalid. Fixes: 4522a70 ("l2tp: fix reading optional fields of L2TPv3") Signed-off-by: Xiyu Yang <xiyuyang19@fudan.edu.cn> Signed-off-by: Xin Xiong <xiongx18@fudan.edu.cn> Signed-off-by: Xin Tan <tanxin.ctf@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 5ab04a4 commit efe35db

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

net/l2tp/l2tp_core.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,8 +886,10 @@ static int l2tp_udp_recv_core(struct l2tp_tunnel *tunnel, struct sk_buff *skb)
886886
}
887887

888888
if (tunnel->version == L2TP_HDR_VER_3 &&
889-
l2tp_v3_ensure_opt_in_linear(session, skb, &ptr, &optr))
889+
l2tp_v3_ensure_opt_in_linear(session, skb, &ptr, &optr)) {
890+
l2tp_session_dec_refcount(session);
890891
goto error;
892+
}
891893

892894
l2tp_recv_common(session, skb, ptr, optr, hdrflags, length);
893895
l2tp_session_dec_refcount(session);

0 commit comments

Comments
 (0)