]> git.baikalelectronics.ru Git - kernel.git/commit
NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc
authorDuoming Zhou <duoming@zju.edu.cn>
Tue, 17 May 2022 01:25:30 +0000 (09:25 +0800)
committerJakub Kicinski <kuba@kernel.org>
Wed, 18 May 2022 00:55:53 +0000 (17:55 -0700)
commit9536b12010b10f5435f7d6e1c364a7e1d4fdbd3b
tree7a5c5ce71ec4c15d5e35d434cb55004059076a33
parent923582f1c39ecf4e4be2e384e817443a083af818
NFC: nci: fix sleep in atomic context bugs caused by nci_skb_alloc

There are sleep in atomic context bugs when the request to secure
element of st-nci is timeout. The root cause is that nci_skb_alloc
with GFP_KERNEL parameter is called in st_nci_se_wt_timeout which is
a timer handler. The call paths that could trigger bugs are shown below:

    (interrupt context 1)
st_nci_se_wt_timeout
  nci_hci_send_event
    nci_hci_send_data
      nci_skb_alloc(..., GFP_KERNEL) //may sleep

   (interrupt context 2)
st_nci_se_wt_timeout
  nci_hci_send_event
    nci_hci_send_data
      nci_send_data
        nci_queue_tx_data_frags
          nci_skb_alloc(..., GFP_KERNEL) //may sleep

This patch changes allocation mode of nci_skb_alloc from GFP_KERNEL to
GFP_ATOMIC in order to prevent atomic context sleeping. The GFP_ATOMIC
flag makes memory allocation operation could be used in atomic context.

Fixes: 2d59879f1b84 ("nfc: st-nci: Rename st21nfcb to st-nci")
Signed-off-by: Duoming Zhou <duoming@zju.edu.cn>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220517012530.75714-1-duoming@zju.edu.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/nfc/nci/data.c
net/nfc/nci/hci.c