From: Frederic Barrat <fbarrat@linux.ibm.com>
To: Yang Yingliang <yangyingliang@huawei.com>, linuxppc-dev@lists.ozlabs.org
Cc: gregkh@linuxfoundation.org, ajd@linux.ibm.com, arnd@arndb.de
Subject: Re: [PATCH] misc: ocxl: fix possible name leak in ocxl_file_register_afu()
Date: Mon, 14 Nov 2022 13:04:39 +0100 [thread overview]
Message-ID: <05ff2668-2be8-6a83-c690-b15d2724e03c@linux.ibm.com> (raw)
In-Reply-To: <1d06da75-e18c-8a0c-4900-f13adfa74a9f@huawei.com>
On 14/11/2022 12:46, Yang Yingliang wrote:
> Hi,
>
> On 2022/11/14 19:23, Frederic Barrat wrote:
>>
>>
>> On 11/11/2022 15:59, Yang Yingliang wrote:
>>> If device_register() returns error in ocxl_file_register_afu(),
>>> the name allocated by dev_set_name() need be freed. As comment
>>> of device_register() says, it should use put_device() to give
>>> up the reference in the error path. So fix this by calling
>>> put_device(), then the name can be freed in kobject_cleanup(),
>>> and info is freed in info_release().
>>>
>>> Fixes: 75ca758adbaf ("ocxl: Create a clear delineation between ocxl
>>> backend & frontend")
>>> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
>>> ---
>>> drivers/misc/ocxl/file.c | 7 +++++--
>>> 1 file changed, 5 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/drivers/misc/ocxl/file.c b/drivers/misc/ocxl/file.c
>>> index d46dba2df5a1..452d5777a0e4 100644
>>> --- a/drivers/misc/ocxl/file.c
>>> +++ b/drivers/misc/ocxl/file.c
>>> @@ -541,8 +541,11 @@ int ocxl_file_register_afu(struct ocxl_afu *afu)
>>> goto err_put;
>>> rc = device_register(&info->dev);
>>> - if (rc)
>>> - goto err_put;
>>> + if (rc) {
>>> + free_minor(info);
>>> + put_device(&info->dev);
>>> + return rc;
>>> + }
>>
>>
>> While I agree that a put_device() is needed on that error path, the
>> fix above is not correct as it forgets to release the afu reference
>> and the memory allocated in info. That was taken care of by the jump
>> to the err_put label, so it should be kept. Something like:
>>
>> - if (rc)
>> + if (rc) {
>> + put_device((&info->dev);
>> goto err_put;
>> + }
> The 'info' and the reference is released in info_release().
>
> Here is call chain:
> put_device()
> kobject_release()
> kobject_cleanup()
> device_release()
> info_release()
>
> static void info_release(struct device *dev)
> {
> struct ocxl_file_info *info = container_of(dev, struct
> ocxl_file_info, dev);
>
> ocxl_afu_put(info->afu);
> kfree(info);
> }
> So it don't need jump to the error label in this case.
You're right, I went too fast and the patch is correct.
So:
Acked-by: Frederic Barrat <fbarrat@linux.ibm.com>
Fred
next prev parent reply other threads:[~2022-11-14 12:05 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-11 14:59 [PATCH] misc: ocxl: fix possible name leak in ocxl_file_register_afu() Yang Yingliang
2022-11-14 11:23 ` Frederic Barrat
2022-11-14 11:46 ` Yang Yingliang
2022-11-14 12:04 ` Frederic Barrat [this message]
2022-11-21 5:52 ` Andrew Donnellan
2022-11-30 9:24 ` Michael Ellerman
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=05ff2668-2be8-6a83-c690-b15d2724e03c@linux.ibm.com \
--to=fbarrat@linux.ibm.com \
--cc=ajd@linux.ibm.com \
--cc=arnd@arndb.de \
--cc=gregkh@linuxfoundation.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=yangyingliang@huawei.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;
as well as URLs for NNTP newsgroup(s).