Skip to content

Commit

Permalink
net/nfc: Avoid stalls when nfc_alloc_send_skb() returned NULL.
Browse files Browse the repository at this point in the history
syzbot is reporting stalls at nfc_llcp_send_ui_frame() [1]. This is
because nfc_llcp_send_ui_frame() is retrying the loop without any delay
when nonblocking nfc_alloc_send_skb() returned NULL.

Since there is no need to use MSG_DONTWAIT if we retry until
sock_alloc_send_pskb() succeeds, let's use blocking call.
Also, in case an unexpected error occurred, let's break the loop
if blocking nfc_alloc_send_skb() failed.

[1] https://syzkaller.appspot.com/bug?id=4a131cc571c3733e0eff6bc673f4e36ae48f19c6

Signed-off-by: Tetsuo Handa <[email protected]>
Reported-by: syzbot <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Tetsuo Handa authored and davem330 committed Jul 18, 2018
1 parent 83ed7d1 commit 3bc53be
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions net/nfc/llcp_commands.c
Original file line number Diff line number Diff line change
Expand Up @@ -752,11 +752,14 @@ int nfc_llcp_send_ui_frame(struct nfc_llcp_sock *sock, u8 ssap, u8 dsap,
pr_debug("Fragment %zd bytes remaining %zd",
frag_len, remaining_len);

pdu = nfc_alloc_send_skb(sock->dev, &sock->sk, MSG_DONTWAIT,
pdu = nfc_alloc_send_skb(sock->dev, &sock->sk, 0,
frag_len + LLCP_HEADER_SIZE, &err);
if (pdu == NULL) {
pr_err("Could not allocate PDU\n");
continue;
pr_err("Could not allocate PDU (error=%d)\n", err);
len -= remaining_len;
if (len == 0)
len = err;
break;
}

pdu = llcp_add_header(pdu, dsap, ssap, LLCP_PDU_UI);
Expand Down

0 comments on commit 3bc53be

Please sign in to comment.