mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Wen Yang <wenyang@linux.alibaba.com>
To: Sudeep Holla <sudeep.holla@arm.com>
Cc: Arnd Bergmann <arnd@arndb.de>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] firmware: arm_scmi: avoid double free in error flow
Date: Tue, 26 Nov 2019 18:24:47 +0800	[thread overview]
Message-ID: <21f4f7d6-9085-382d-42d3-a63484aca8a2@linux.alibaba.com> (raw)
In-Reply-To: <20191125161313.GA1157@bogus>



On 2019/11/26 12:13 上午, Sudeep Holla wrote:
> On Mon, Nov 25, 2019 at 11:54:09PM +0800, Wen Yang wrote:
>> If device_register() fails, both put_device() and kfree()
>> are called, ending with a double free of the scmi_dev.
>>
> 
> Correct.
> 
>> Calling kfree() is needed only when a failure happens between the
>> allocation of the scmi_dev and its registration, so move it to
>> there and remove it from the error flow.
>>
> 
> kstrdup_const can fail and in that case device is not yet registered,
> so we need to free. Since device_register() calls put_device() on failure
> too, I would just drop it as it's unnecessary, not sure why I have added
> it in the first place. Can you re-spin the patch dropping put_device
> and renaming put_dev label to something like free_const.
> 
> --
> Regards,
> Sudeep
> 

Hi Sudeep,
Thanks for your comments.
Let's check the code like this:

int device_register(struct device *dev)
{
         device_initialize(dev);   --> Initialize kobj-> kref to 1
         return device_add(dev);
}

int device_add(struct device *dev)
{
...
         dev = get_device(dev);  --> kobj-> kref increases by 1
...
done:
         put_device(dev);  --> kobj-> kref decreases by 1 and is now 1
         return error;
...
}

So we also need to call put_device (),
and the original patch should be fine.
Please kindly help to check again, thank you.

--
Regards,
Wen









  reply	other threads:[~2019-11-26 10:25 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-25 15:54 Wen Yang
2019-11-25 16:13 ` Sudeep Holla
2019-11-26 10:24   ` Wen Yang [this message]
2019-11-26 10:48     ` Sudeep Holla

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=21f4f7d6-9085-382d-42d3-a63484aca8a2@linux.alibaba.com \
    --to=wenyang@linux.alibaba.com \
    --cc=arnd@arndb.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sudeep.holla@arm.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

Powered by JetHome