From: Kalle Valo <kvalo@kernel.org>
To: Duoming Zhou <duoming@zju.edu.cn>
Cc: linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org,
briannorris@chromium.org, johannes@sipsolutions.net,
rafael@kernel.org, amitkarwar@gmail.com, ganapathi017@gmail.com,
sharvari.harisangam@nxp.com, huxinming820@gmail.com,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, linux-wireless@vger.kernel.org,
netdev@vger.kernel.org, Duoming Zhou <duoming@zju.edu.cn>
Subject: Re: [PATCH v8 2/2 RESEND] mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv
Date: Thu, 22 Sep 2022 06:08:27 +0000 (UTC) [thread overview]
Message-ID: <166382690326.9021.14393283458097744964.kvalo@kernel.org> (raw)
In-Reply-To: <5cfa5c473ff6d069cb67760ffa04a2f84ef450a8.1661252818.git.duoming@zju.edu.cn>
Duoming Zhou <duoming@zju.edu.cn> wrote:
> There are sleep in atomic context bugs when uploading device dump
> data in mwifiex. The root cause is that dev_coredumpv could not
> be used in atomic contexts, because it calls dev_set_name which
> include operations that may sleep. The call tree shows execution
> paths that could lead to bugs:
>
> (Interrupt context)
> fw_dump_timer_fn
> mwifiex_upload_device_dump
> dev_coredumpv(..., GFP_KERNEL)
> dev_coredumpm()
> kzalloc(sizeof(*devcd), gfp); //may sleep
> dev_set_name
> kobject_set_name_vargs
> kvasprintf_const(GFP_KERNEL, ...); //may sleep
> kstrdup(s, GFP_KERNEL); //may sleep
>
> The corresponding fail log is shown below:
>
> [ 135.275938] usb 1-1: == mwifiex dump information to /sys/class/devcoredump start
> [ 135.281029] BUG: sleeping function called from invalid context at include/linux/sched/mm.h:265
> ...
> [ 135.293613] Call Trace:
> [ 135.293613] <IRQ>
> [ 135.293613] dump_stack_lvl+0x57/0x7d
> [ 135.293613] __might_resched.cold+0x138/0x173
> [ 135.293613] ? dev_coredumpm+0xca/0x2e0
> [ 135.293613] kmem_cache_alloc_trace+0x189/0x1f0
> [ 135.293613] ? devcd_match_failing+0x30/0x30
> [ 135.293613] dev_coredumpm+0xca/0x2e0
> [ 135.293613] ? devcd_freev+0x10/0x10
> [ 135.293613] dev_coredumpv+0x1c/0x20
> [ 135.293613] ? devcd_match_failing+0x30/0x30
> [ 135.293613] mwifiex_upload_device_dump+0x65/0xb0
> [ 135.293613] ? mwifiex_dnld_fw+0x1b0/0x1b0
> [ 135.293613] call_timer_fn+0x122/0x3d0
> [ 135.293613] ? msleep_interruptible+0xb0/0xb0
> [ 135.293613] ? lock_downgrade+0x3c0/0x3c0
> [ 135.293613] ? __next_timer_interrupt+0x13c/0x160
> [ 135.293613] ? lockdep_hardirqs_on_prepare+0xe/0x220
> [ 135.293613] ? mwifiex_dnld_fw+0x1b0/0x1b0
> [ 135.293613] __run_timers.part.0+0x3f8/0x540
> [ 135.293613] ? call_timer_fn+0x3d0/0x3d0
> [ 135.293613] ? arch_restore_msi_irqs+0x10/0x10
> [ 135.293613] ? lapic_next_event+0x31/0x40
> [ 135.293613] run_timer_softirq+0x4f/0xb0
> [ 135.293613] __do_softirq+0x1c2/0x651
> ...
> [ 135.293613] RIP: 0010:default_idle+0xb/0x10
> [ 135.293613] RSP: 0018:ffff888006317e68 EFLAGS: 00000246
> [ 135.293613] RAX: ffffffff82ad8d10 RBX: ffff888006301cc0 RCX: ffffffff82ac90e1
> [ 135.293613] RDX: ffffed100d9ff1b4 RSI: ffffffff831ad140 RDI: ffffffff82ad8f20
> [ 135.293613] RBP: 0000000000000003 R08: 0000000000000000 R09: ffff88806cff8d9b
> [ 135.293613] R10: ffffed100d9ff1b3 R11: 0000000000000001 R12: ffffffff84593410
> [ 135.293613] R13: 0000000000000000 R14: 0000000000000000 R15: 1ffff11000c62fd2
> ...
> [ 135.389205] usb 1-1: == mwifiex dump information to /sys/class/devcoredump end
>
> This patch uses delayed work to replace timer and moves the operations
> that may sleep into a delayed work in order to mitigate bugs, it was
> tested on Marvell 88W8801 chip whose port is usb and the firmware is
> usb8801_uapsta.bin. The following is the result after using delayed
> work to replace timer.
>
> [ 134.936453] usb 1-1: == mwifiex dump information to /sys/class/devcoredump start
> [ 135.043344] usb 1-1: == mwifiex dump information to /sys/class/devcoredump end
>
> As we can see, there is no bug now.
>
> Fixes: f5ecd02a8b20 ("mwifiex: device dump support for usb interface")
> Signed-off-by: Duoming Zhou <duoming@zju.edu.cn>
> Reviewed-by: Brian Norris <briannorris@chromium.org>
> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Patch applied to wireless-next.git, thanks.
551e4745c7f2 mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv
--
https://patchwork.kernel.org/project/linux-wireless/patch/5cfa5c473ff6d069cb67760ffa04a2f84ef450a8.1661252818.git.duoming@zju.edu.cn/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
next prev parent reply other threads:[~2022-09-22 6:08 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-23 11:21 [PATCH v8 0/2] Add new APIs of devcoredump and fix bugs Duoming Zhou
2022-08-23 11:21 ` [PATCH v8 1/2] devcoredump: add new APIs to support migration of users from old device coredump related APIs Duoming Zhou
2022-08-23 11:21 ` [PATCH v8 2/2 RESEND] mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv Duoming Zhou
2022-09-22 6:08 ` Kalle Valo [this message]
2022-08-24 20:42 ` [PATCH v8 0/2] Add new APIs of devcoredump and fix bugs Brian Norris
2022-08-25 0:44 ` duoming
2022-08-25 5:59 ` Greg Kroah-Hartman
2022-08-25 6:59 ` duoming
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=166382690326.9021.14393283458097744964.kvalo@kernel.org \
--to=kvalo@kernel.org \
--cc=amitkarwar@gmail.com \
--cc=briannorris@chromium.org \
--cc=davem@davemloft.net \
--cc=duoming@zju.edu.cn \
--cc=edumazet@google.com \
--cc=ganapathi017@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=huxinming820@gmail.com \
--cc=johannes@sipsolutions.net \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=rafael@kernel.org \
--cc=sharvari.harisangam@nxp.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®