From: Bjorn Helgaas <helgaas@kernel.org>
To: Todd Kjos <tkjos@google.com>
Cc: kernel-team@android.com, bhelgaas@google.com,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] PCI: fix memory leak in reset_method_store()
Date: Wed, 2 Oct 2024 16:37:41 -0500 [thread overview]
Message-ID: <20241002213741.GA280235@bhelgaas> (raw)
In-Reply-To: <20241001231147.3583649-1-tkjos@google.com>
On Tue, Oct 01, 2024 at 11:11:47PM +0000, Todd Kjos wrote:
> In reset_method_store(), a string is allocated via kstrndup()
> and assigned to the local "options". options is then used
> in with strsep() to find spaces:
>
> while ((name = strsep(&options, " ")) != NULL) {
>
> If there are no remaining spaces, then options is set to NULL
> by strsep(), so the subsequent kfree(options) doesn't free the
> memory allocated via kstrndup().
>
> Fix by using a separate tmp_options to iterate with
> strsep() so options is preserved.
>
> Fixes: d88f521da3ef ("PCI: Allow userspace to query and set device reset mechanism")
> Signed-off-by: Todd Kjos <tkjos@google.com>
Applied to pci/misc for v6.13, thank you!
> ---
> drivers/pci/pci.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
> index 7d85c04fbba2..0e6562ff3dcf 100644
> --- a/drivers/pci/pci.c
> +++ b/drivers/pci/pci.c
> @@ -5244,7 +5244,7 @@ static ssize_t reset_method_store(struct device *dev,
> const char *buf, size_t count)
> {
> struct pci_dev *pdev = to_pci_dev(dev);
> - char *options, *name;
> + char *options, *tmp_options, *name;
> int m, n;
> u8 reset_methods[PCI_NUM_RESET_METHODS] = { 0 };
>
> @@ -5264,7 +5264,8 @@ static ssize_t reset_method_store(struct device *dev,
> return -ENOMEM;
>
> n = 0;
> - while ((name = strsep(&options, " ")) != NULL) {
> + tmp_options = options;
> + while ((name = strsep(&tmp_options, " ")) != NULL) {
> if (sysfs_streq(name, ""))
> continue;
>
> --
> 2.46.1.824.gd892dcdcdd-goog
>
prev parent reply other threads:[~2024-10-02 21:37 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-01 23:11 [PATCH] PCI: fix memory leak in reset_method_store() Todd Kjos
2024-10-02 21:37 ` Bjorn Helgaas [this message]
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=20241002213741.GA280235@bhelgaas \
--to=helgaas@kernel.org \
--cc=bhelgaas@google.com \
--cc=kernel-team@android.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=tkjos@google.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).