From: Tomas Bortoli Date: Tue, 28 May 2019 13:42:58 +0000 (+0200) Subject: Bluetooth: hci_bcsp: Fix memory leak in rx_skb X-Git-Tag: v5.4-rc1~616^2~51^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4ce9146e0370fcd573f0372d9b4e5a211112567c;p=platform%2Fkernel%2Flinux-rpi.git Bluetooth: hci_bcsp: Fix memory leak in rx_skb Syzkaller found that it is possible to provoke a memory leak by never freeing rx_skb in struct bcsp_struct. Fix by freeing in bcsp_close() Signed-off-by: Tomas Bortoli Reported-by: syzbot+98162c885993b72f19c4@syzkaller.appspotmail.com Signed-off-by: Marcel Holtmann --- diff --git a/drivers/bluetooth/hci_bcsp.c b/drivers/bluetooth/hci_bcsp.c index 82b13fa..fe2e307 100644 --- a/drivers/bluetooth/hci_bcsp.c +++ b/drivers/bluetooth/hci_bcsp.c @@ -744,6 +744,11 @@ static int bcsp_close(struct hci_uart *hu) skb_queue_purge(&bcsp->rel); skb_queue_purge(&bcsp->unrel); + if (bcsp->rx_skb) { + kfree_skb(bcsp->rx_skb); + bcsp->rx_skb = NULL; + } + kfree(bcsp); return 0; }