linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: Jiri Kosina <jkosina@suse.com>,
	linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
	sre@kernel.org, linux-pm@vger.kernel.org,
	"H.J. Lu" <hjl.tools@gmail.com>,
	stable@vger.kernel.org
Subject: Re: [PATCH v3] HID: hid-input: Fix accessing freed memory during device disconnect
Date: Mon, 3 Aug 2015 13:31:32 -0700	[thread overview]
Message-ID: <20150803203132.GE38878@dtor-ws> (raw)
In-Reply-To: <1438581450-20728-1-git-send-email-k.kozlowski@samsung.com>

On Mon, Aug 03, 2015 at 02:57:30PM +0900, Krzysztof Kozlowski wrote:
> During unbinding the driver was dereferencing a pointer to memory
> already freed by power_supply_unregister().
> 
> Driver was freeing its internal description of battery through pointers
> stored in power_supply structure. However, because the core owns the
> power supply instance, after calling power_supply_unregister() this
> memory is freed and the driver cannot access these members.
> 
> Fix this by storing the pointer to internal description of battery in a
> local variable before calling power_supply_unregister(), so the pointer
> remains valid.
> 
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> Reported-by: H.J. Lu <hjl.tools@gmail.com>
> Fixes: 297d716f6260 ("power_supply: Change ownership from driver to core")
> Cc: <stable@vger.kernel.org>
> 

FWIW:

Reviewed-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

> ---
> Changes since v2:
> 1. Add missing 'const'.
> 
> Changes since v1:
> 1. Re-work idea, use local variable instead of devm-like functions
>    (pointed out by Dmitry Torokhov).
> 2. Adjusted subject and commit message.
> ---
>  drivers/hid/hid-input.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c
> index 14aebe483219..53aeaf6252c7 100644
> --- a/drivers/hid/hid-input.c
> +++ b/drivers/hid/hid-input.c
> @@ -462,12 +462,15 @@ out:
>  
>  static void hidinput_cleanup_battery(struct hid_device *dev)
>  {
> +	const struct power_supply_desc *psy_desc;
> +
>  	if (!dev->battery)
>  		return;
>  
> +	psy_desc = dev->battery->desc;
>  	power_supply_unregister(dev->battery);
> -	kfree(dev->battery->desc->name);
> -	kfree(dev->battery->desc);
> +	kfree(psy_desc->name);
> +	kfree(psy_desc);
>  	dev->battery = NULL;
>  }
>  #else  /* !CONFIG_HID_BATTERY_STRENGTH */
> -- 
> 1.9.1
> 

-- 
Dmitry

  reply	other threads:[~2015-08-03 20:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-03  5:57 [PATCH v3] HID: hid-input: Fix accessing freed memory during device disconnect Krzysztof Kozlowski
2015-08-03 20:31 ` Dmitry Torokhov [this message]
2015-08-04 13:47 ` Jiri Kosina

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=20150803203132.GE38878@dtor-ws \
    --to=dmitry.torokhov@gmail.com \
    --cc=hjl.tools@gmail.com \
    --cc=jkosina@suse.com \
    --cc=k.kozlowski@samsung.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=sre@kernel.org \
    --cc=stable@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).