Skip to content

Commit 7b9c691

Browse files
sashalevinbwhacks
authored andcommitted
net: l2tp: unlock socket lock before returning from l2tp_ip_sendmsg
[ Upstream commit 84768ed ] l2tp_ip_sendmsg could return without releasing socket lock, making it all the way to userspace, and generating the following warning: [ 130.891594] ================================================ [ 130.894569] [ BUG: lock held when returning to user space! ] [ 130.897257] 3.4.0-rc5-next-20120501-sasha raspberrypi#104 Tainted: G W [ 130.900336] ------------------------------------------------ [ 130.902996] trinity/8384 is leaving the kernel with locks still held! [ 130.906106] 1 lock held by trinity/8384: [ 130.907924] #0: (sk_lock-AF_INET){+.+.+.}, at: [<ffffffff82b9503f>] l2tp_ip_sendmsg+0x2f/0x550 Introduced by commit 2f16270 ("l2tp: Fix locking in l2tp_ip.c"). Signed-off-by: Sasha Levin <[email protected]> Acked-by: Eric Dumazet <[email protected]> Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Ben Hutchings <[email protected]>
1 parent 4b3bd83 commit 7b9c691

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

net/l2tp/l2tp_ip.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,9 @@ static int l2tp_ip_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *m
441441

442442
daddr = lip->l2tp_addr.s_addr;
443443
} else {
444+
rc = -EDESTADDRREQ;
444445
if (sk->sk_state != TCP_ESTABLISHED)
445-
return -EDESTADDRREQ;
446+
goto out;
446447

447448
daddr = inet->inet_daddr;
448449
connected = 1;

0 commit comments

Comments
 (0)