Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 48FDFC43381 for ; Tue, 26 Feb 2019 08:53:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 15FC8217F5 for ; Tue, 26 Feb 2019 08:53:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726950AbfBZIxb convert rfc822-to-8bit (ORCPT ); Tue, 26 Feb 2019 03:53:31 -0500 Received: from coyote.holtmann.net ([212.227.132.17]:45547 "EHLO mail.holtmann.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725977AbfBZIxa (ORCPT ); Tue, 26 Feb 2019 03:53:30 -0500 Received: from marcel-macpro.fritz.box (p4FF9F361.dip0.t-ipconnect.de [79.249.243.97]) by mail.holtmann.org (Postfix) with ESMTPSA id 6021ECF2A3; Tue, 26 Feb 2019 10:01:23 +0100 (CET) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 12.2 \(3445.102.3\)) Subject: Re: [PATCH] Bluetooth: hci_bcm: fix double-free irq on removal From: Marcel Holtmann In-Reply-To: <20190225195010.32277-1-andreas@kemnade.info> Date: Tue, 26 Feb 2019 09:53:27 +0100 Cc: Johan Hedberg , linux-bluetooth@vger.kernel.org, linux-kernel@vger.kernel.org, josua.mayer@jm0.eu Content-Transfer-Encoding: 8BIT Message-Id: References: <20190225195010.32277-1-andreas@kemnade.info> To: Andreas Kemnade X-Mailer: Apple Mail (2.3445.102.3) Sender: linux-bluetooth-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org Hi Andreas, > after rmmod hci_uart a warning about doubly freed > interrupts appears, so do it only once. Instead disable it. > It is already implicitely freed by the devm framework. > > [ 230.782948] ------------[ cut here ]------------ > [ 230.787708] WARNING: CPU: 0 PID: 2715 at kernel/irq/devres.c:146 devm_free_irq+0x59/0x60 > [ 230.798345] Modules linked in: usb_f_ecm u_ether libcomposite spidev hidp rfcomm hci_uart(-) btbcm bluetooth ecdh_generic brcmfmac brcmutil cfg80211 rfkill evdev sun8i_codec_analog sun8i_adda_pr_regmap snd_soc_core snd_pcm_dmaengine pwrseq_simple snd_pcm snd_timer snd soundcore hih6130 cpufreq_dt uio_pdrv_genirq gpio_keys uio thermal_sys > [ 230.828282] CPU: 0 PID: 2715 Comm: rmmod Not tainted 5.0.0-rc8+ #14 > [ 230.834540] Hardware name: Allwinner sun8i Family > [ 230.839266] [] (unwind_backtrace) from [] (show_stack+0x11/0x14) > [ 230.847014] [] (show_stack) from [] (dump_stack+0x67/0x74) > [ 230.854240] [] (dump_stack) from [] (__warn+0xb9/0xcc) > [ 230.861115] [] (__warn) from [] (warn_slowpath_null+0x2f/0x34) > [ 230.868681] [] (warn_slowpath_null) from [] (devm_free_irq+0x59/0x60) > [ 230.876881] [] (devm_free_irq) from [] (bcm_close+0x35/0xa8 [hci_uart]) > [ 230.885264] [] (bcm_close [hci_uart]) from [] (hci_uart_unregister_device+0x33/0x3c [hci_uart]) > [ 230.895708] [] (hci_uart_unregister_device [hci_uart]) from [] (bcm_serdev_remove+0xf/0x10 [hci_uart]) > [ 230.906755] [] (bcm_serdev_remove [hci_uart]) from [] (serdev_drv_remove+0x13/0x20) > [ 230.916150] [] (serdev_drv_remove) from [] (device_release_driver_internal+0xf7/0x158) > [ 230.925799] [] (device_release_driver_internal) from [] (driver_detach+0x49/0x78) > [ 230.935013] [] (driver_detach) from [] (bus_remove_driver+0x31/0x70) > [ 230.943108] [] (bus_remove_driver) from [] (bcm_deinit+0x1b/0xcc4 [hci_uart]) > [ 230.951994] [] (bcm_deinit [hci_uart]) from [] (hci_uart_exit+0x1b/0x34 [hci_uart]) > [ 230.961389] [] (hci_uart_exit [hci_uart]) from [] (sys_delete_module+0x135/0x178) > [ 230.970603] [] (sys_delete_module) from [] (ret_fast_syscall+0x1/0x62) > [ 230.978855] Exception stack(0xd66b7fa8 to 0xd66b7ff0) > [ 230.983906] 7fa0: 00c3dd00 00000000 00c3dd3c 00000800 88297c00 88297c00 > [ 230.992078] 7fc0: 00c3dd00 00000000 bef05e82 00000081 bef05b88 00000001 bef05d7c 00000000 > [ 231.000245] 7fe0: 0045bf6c bef05b24 00441303 b6edab26 > [ 231.005332] ---[ end trace dc4caa46c945c790 ]--- > [ 231.009946] ------------[ cut here ]------------ > [ 231.014567] WARNING: CPU: 0 PID: 2715 at kernel/irq/manage.c:1600 __free_irq+0x83/0x20c > [ 231.025070] Trying to free already-free IRQ 92 > [ 231.029505] Modules linked in: usb_f_ecm u_ether libcomposite spidev hidp rfcomm hci_uart(-) btbcm bluetooth ecdh_generic brcmfmac brcmutil cfg80211 rfkill evdev sun8i_codec_analog sun8i_adda_pr_regmap snd_soc_core snd_pcm_dmaengine pwrseq_simple snd_pcm snd_timer snd soundcore hih6130 cpufreq_dt uio_pdrv_genirq gpio_keys uio thermal_sys > [ 231.059389] CPU: 0 PID: 2715 Comm: rmmod Tainted: G W 5.0.0-rc8+ #14 > [ 231.067032] Hardware name: Allwinner sun8i Family > [ 231.071740] [] (unwind_backtrace) from [] (show_stack+0x11/0x14) > [ 231.079481] [] (show_stack) from [] (dump_stack+0x67/0x74) > [ 231.086701] [] (dump_stack) from [] (__warn+0xb9/0xcc) > [ 231.093574] [] (__warn) from [] (warn_slowpath_fmt+0x33/0x48) > [ 231.101054] [] (warn_slowpath_fmt) from [] (__free_irq+0x83/0x20c) > [ 231.108966] [] (__free_irq) from [] (free_irq+0x27/0x5c) > [ 231.116012] [] (free_irq) from [] (devm_free_irq+0x3f/0x60) > [ 231.123326] [] (devm_free_irq) from [] (bcm_close+0x35/0xa8 [hci_uart]) > [ 231.131690] [] (bcm_close [hci_uart]) from [] (hci_uart_unregister_device+0x33/0x3c [hci_uart]) > [ 231.142133] [] (hci_uart_unregister_device [hci_uart]) from [] (bcm_serdev_remove+0xf/0x10 [hci_uart]) > [ 231.153174] [] (bcm_serdev_remove [hci_uart]) from [] (serdev_drv_remove+0x13/0x20) > [ 231.162562] [] (serdev_drv_remove) from [] (device_release_driver_internal+0xf7/0x158) > [ 231.172209] [] (device_release_driver_internal) from [] (driver_detach+0x49/0x78) > [ 231.181422] [] (driver_detach) from [] (bus_remove_driver+0x31/0x70) > [ 231.189517] [] (bus_remove_driver) from [] (bcm_deinit+0x1b/0xcc4 [hci_uart]) > [ 231.198399] [] (bcm_deinit [hci_uart]) from [] (hci_uart_exit+0x1b/0x34 [hci_uart]) > [ 231.207793] [] (hci_uart_exit [hci_uart]) from [] (sys_delete_module+0x135/0x178) > [ 231.217005] [] (sys_delete_module) from [] (ret_fast_syscall+0x1/0x62) > [ 231.225256] Exception stack(0xd66b7fa8 to 0xd66b7ff0) > [ 231.230305] 7fa0: 00c3dd00 00000000 00c3dd3c 00000800 88297c00 88297c00 > [ 231.238476] 7fc0: 00c3dd00 00000000 bef05e82 00000081 bef05b88 00000001 bef05d7c 00000000 > [ 231.246644] 7fe0: 0045bf6c bef05b24 00441303 b6edab26 > [ 231.251688] ---[ end trace dc4caa46c945c791 ]--- > > Signed-off-by: Andreas Kemnade > --- > drivers/bluetooth/hci_bcm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/bluetooth/hci_bcm.c b/drivers/bluetooth/hci_bcm.c > index ddbe518c3e5b..97a8ba607d0c 100644 > --- a/drivers/bluetooth/hci_bcm.c > +++ b/drivers/bluetooth/hci_bcm.c > @@ -488,7 +488,7 @@ static int bcm_close(struct hci_uart *hu) > > if (bdev) { > if (IS_ENABLED(CONFIG_PM) && bdev->irq > 0) { > - devm_free_irq(bdev->dev, bdev->irq, bdev); > + disable_irq(bdev->irq); > device_init_wakeup(bdev->dev, false); > pm_runtime_disable(bdev->dev); > } this fix is too simplistic I think. If we don’t free it here, then subsequent calls to btattach will leave an IRQ around. Or driver unbind/rebind action might trigger this as well. Regards Marcel