net: nfc: nci: fix a possible sleep-in-atomic-context bug in nci_uart_tty_receive()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Wed, 18 Dec 2019 09:21:55 +0000 (17:21 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 18 Dec 2019 19:57:33 +0000 (11:57 -0800)
commitb7ac893652cafadcf669f78452329727e4e255cc
tree10873b8b1c06ef6e5bf1b7eabc3d59f9480175bd
parentddd9b5e3e765d8ed5a35786a6cb00111713fe161
net: nfc: nci: fix a possible sleep-in-atomic-context bug in nci_uart_tty_receive()

The kernel may sleep while holding a spinlock.
The function call path (from bottom to top) in Linux 4.19 is:

net/nfc/nci/uart.c, 349:
nci_skb_alloc in nci_uart_default_recv_buf
net/nfc/nci/uart.c, 255:
(FUNC_PTR)nci_uart_default_recv_buf in nci_uart_tty_receive
net/nfc/nci/uart.c, 254:
spin_lock in nci_uart_tty_receive

nci_skb_alloc(GFP_KERNEL) can sleep at runtime.
(FUNC_PTR) means a function pointer is called.

To fix this bug, GFP_KERNEL is replaced with GFP_ATOMIC for
nci_skb_alloc().

This bug is found by a static analysis tool STCheck written by myself.

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/nfc/nci/uart.c