Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1558763 > unrolled thread

4.10-rc3, firmware loading via user space helper crashes if firmware not present

Started byJakub Kicinski <kubakici@wp.pl>
First post2017-01-13 22:50 +0100
Last post2017-01-14 04:50 +0100
Articles 2 — 1 participant

Back to article view | Back to linux.kernel


Contents

  4.10-rc3, firmware loading via user space helper crashes if  firmware not present Jakub Kicinski <kubakici@wp.pl> - 2017-01-13 22:50 +0100
    Re: 4.10-rc3, firmware loading via user space helper crashes if  firmware not present Jakub Kicinski <kubakici@wp.pl> - 2017-01-14 04:50 +0100

#1558763 — 4.10-rc3, firmware loading via user space helper crashes if firmware not present

FromJakub Kicinski <kubakici@wp.pl>
Date2017-01-13 22:50 +0100
Subject4.10-rc3, firmware loading via user space helper crashes if firmware not present
Message-ID<sZhTs-5ZM-19@gated-at.bofh.it>
Hi!

If one requests a FW which does not exist in the FS and the user space
helper is used then fw_load_abort() will be called twice which leads to
NULL-deref.

It will be called once in firmware_loading_store() (handling the -1
case) and then again in _request_firmware_load() because return value
from fw_state_wait_timeout() was negative.

I think this is introduced in by f52cc379423d ("firmware: refactor
loading status").

The simple fix would be to not "unlink" the buf by fw_load_abort() in
firmware_loading_store() and always rely on firmware_loading_store().

------->8------------------------------------

diff --git a/drivers/base/firmware_class.c
b/drivers/base/firmware_class.c index 4497d263209f..89eb9de81145 100644
--- a/drivers/base/firmware_class.c
+++ b/drivers/base/firmware_class.c
@@ -766,7 +770,7 @@ static ssize_t firmware_loading_store(struct device
*dev, dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
 		/* fallthrough */
 	case -1:
-		fw_load_abort(fw_priv);
+		fw_state_aborted(&fw_buf->fw_st);
 		break;
 	}
 out:

-------8<------------------------------------

Or should we fix up the ret code handling in __fw_state_wait_common()?

Kuba

[toc] | [next] | [standalone]


#1558836

FromJakub Kicinski <kubakici@wp.pl>
Date2017-01-14 04:50 +0100
Message-ID<sZnvQ-Zl-3@gated-at.bofh.it>
In reply to#1558763
On Fri, 13 Jan 2017 13:32:58 -0800, Jakub Kicinski wrote:
> If one requests a FW which does not exist in the FS and the user space
> helper is used then fw_load_abort() will be called twice which leads to
> NULL-deref.
> 
> It will be called once in firmware_loading_store() (handling the -1
> case) and then again in _request_firmware_load() because return value
> from fw_state_wait_timeout() was negative.
> 
> I think this is introduced in by f52cc379423d ("firmware: refactor
> loading status").
> 
> The simple fix would be to not "unlink" the buf by fw_load_abort() in
> firmware_loading_store() and always rely on firmware_loading_store().
> 
> ------->8------------------------------------  
> 
> diff --git a/drivers/base/firmware_class.c
> b/drivers/base/firmware_class.c index 4497d263209f..89eb9de81145 100644
> --- a/drivers/base/firmware_class.c
> +++ b/drivers/base/firmware_class.c
> @@ -766,7 +770,7 @@ static ssize_t firmware_loading_store(struct device
> *dev, dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
>  		/* fallthrough */
>  	case -1:
> -		fw_load_abort(fw_priv);
> +		fw_state_aborted(&fw_buf->fw_st);
>  		break;
>  	}
>  out:
> 
> -------8<------------------------------------
> 
> Or should we fix up the ret code handling in __fw_state_wait_common()?

I got this backwards, I blamed the wrong commit, it's the 5d47ec02c37e
("firmware: Correct handling of fw_state_wait() return value") in fact.
It made the assumption that all errors returned from
fw_state_wait_timeout() require calling the abort, while in fact abort
should only be called if user mode helper didn't do anything (either
it timed out or someone hit ^C).

I'm leaning towards this:

------->8------------------------------------

diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c
index 4497d263209f..ce142e6b2c72 100644
--- a/drivers/base/firmware_class.c
+++ b/drivers/base/firmware_class.c
@@ -1020,7 +1020,7 @@ static int _request_firmware_load(struct firmware_priv *fw_priv,
 	}
 
 	retval = fw_state_wait_timeout(&buf->fw_st, timeout);
-	if (retval < 0) {
+	if (retval == -ETIMEDOUT || retval == -ERESTARTSYS) {
 		mutex_lock(&fw_lock);
 		fw_load_abort(fw_priv);
 		mutex_unlock(&fw_lock);

-------8<------------------------------------

Unless advised otherwise I will submit this officially on Monday :)

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web