2022-02-08 14:14:49

by Johannes Berg

[permalink] [raw]
Subject: [PATCH] iwlwifi: fix use-after-free

From: Johannes Berg <[email protected]>

If no firmware was present at all (or, presumably, all of the
firmware files failed to parse), we end up unbinding by calling
device_release_driver(), which calls remove(), which then in
iwlwifi calls iwl_drv_stop(), freeing the 'drv' struct. However
the new code I added will still erroneously access it after it
was freed.

Set 'failure=false' in this case to avoid the access, all data
was already freed anyway.

Cc: [email protected]
Reported-by: Stefan Agner <[email protected]>
Reported-by: Wolfgang Walter <[email protected]>
Reported-by: Jason Self <[email protected]>
Reported-by: Dominik Behr <[email protected]>
Reported-by: Marek Marczykowski-Górecki <[email protected]>
Fixes: ab07506b0454 ("iwlwifi: fix leaks/bad data after failed firmware load")
Signed-off-by: Johannes Berg <[email protected]>
---
drivers/net/wireless/intel/iwlwifi/iwl-drv.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
index 83e3b731ad29..6651e78b39ec 100644
--- a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
+++ b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
@@ -1707,6 +1707,8 @@ static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
out_unbind:
complete(&drv->request_firmware_complete);
device_release_driver(drv->trans->dev);
+ /* drv has just been freed by the release */
+ failure = false;
free:
if (failure)
iwl_dealloc_ucode(drv);
--
2.34.1



Subject: Re: [PATCH] iwlwifi: fix use-after-free

On Tue, Feb 08, 2022 at 11:47:30AM +0100, Johannes Berg wrote:
> From: Johannes Berg <[email protected]>
>
> If no firmware was present at all (or, presumably, all of the
> firmware files failed to parse), we end up unbinding by calling
> device_release_driver(), which calls remove(), which then in
> iwlwifi calls iwl_drv_stop(), freeing the 'drv' struct. However
> the new code I added will still erroneously access it after it
> was freed.
>
> Set 'failure=false' in this case to avoid the access, all data
> was already freed anyway.
>
> Cc: [email protected]
> Reported-by: Stefan Agner <[email protected]>
> Reported-by: Wolfgang Walter <[email protected]>
> Reported-by: Jason Self <[email protected]>
> Reported-by: Dominik Behr <[email protected]>
> Reported-by: Marek Marczykowski-Górecki <[email protected]>
> Fixes: ab07506b0454 ("iwlwifi: fix leaks/bad data after failed firmware load")
> Signed-off-by: Johannes Berg <[email protected]>

Tested-by: Marek Marczykowski-Górecki <[email protected]>

Thanks!

> ---
> drivers/net/wireless/intel/iwlwifi/iwl-drv.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
> index 83e3b731ad29..6651e78b39ec 100644
> --- a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
> +++ b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
> @@ -1707,6 +1707,8 @@ static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
> out_unbind:
> complete(&drv->request_firmware_complete);
> device_release_driver(drv->trans->dev);
> + /* drv has just been freed by the release */
> + failure = false;
> free:
> if (failure)
> iwl_dealloc_ucode(drv);
> --
> 2.34.1
>

--
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab


Attachments:
(No filename) (1.86 kB)
signature.asc (499.00 B)
Download all attachments

2022-02-10 10:35:55

by Kalle Valo

[permalink] [raw]
Subject: Re: [PATCH] iwlwifi: fix use-after-free

Johannes Berg <[email protected]> wrote:

> From: Johannes Berg <[email protected]>
>
> If no firmware was present at all (or, presumably, all of the
> firmware files failed to parse), we end up unbinding by calling
> device_release_driver(), which calls remove(), which then in
> iwlwifi calls iwl_drv_stop(), freeing the 'drv' struct. However
> the new code I added will still erroneously access it after it
> was freed.
>
> Set 'failure=false' in this case to avoid the access, all data
> was already freed anyway.
>
> Cc: [email protected]
> Reported-by: Stefan Agner <[email protected]>
> Reported-by: Wolfgang Walter <[email protected]>
> Reported-by: Jason Self <[email protected]>
> Reported-by: Dominik Behr <[email protected]>
> Reported-by: Marek Marczykowski-Górecki <[email protected]>
> Fixes: ab07506b0454 ("iwlwifi: fix leaks/bad data after failed firmware load")
> Signed-off-by: Johannes Berg <[email protected]>

Patch applied to wireless.git, thanks.

bea2662e7818 iwlwifi: fix use-after-free

--
https://patchwork.kernel.org/project/linux-wireless/patch/20220208114728.e6b514cf4c85.Iffb575ca2a623d7859b542c33b2a507d01554251@changeid/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches