From: Jarkko Nikula <jarkko.nikula@linux.intel.com>
To: Logan Gunthorpe <logang@deltatee.com>,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org,
Bjorn Helgaas <bhelgaas@google.com>
Cc: Stephen Bates <sbates@raithlin.com>
Subject: Re: [PATCH] PCI: fix using __initdata memory after free in disable_acs_redir parameter
Date: Wed, 16 Jan 2019 11:37:46 +0200 [thread overview]
Message-ID: <48a93172-25a2-d6a6-e908-7d27249f1bc2@linux.intel.com> (raw)
In-Reply-To: <20190115173203.14850-1-logang@deltatee.com>
Hi
On 1/15/19 7:32 PM, Logan Gunthorpe wrote:
> The disable_acs_redir parameter stores a pointer to the string passed to
> pci_setup(). However, the string passed to PCI setup is actually a
> temporary copy allocated in static __initdata memory. After init, once
> the memory is freed, it is no longer valid to reference this pointer.
>
> This bug was noticed in v5.0-rc1 after a change in commit c5eb1190074c
> ("PCI / PM: Allow runtime PM without callback functions") caused
> pci_disable_acs_redir() to be called during shutdown which manifested
> as an unable to handle kernel paging request at:
>
> RIP: 0010:pci_enable_acs+0x3f/0x1e0
> Call Trace:
> pci_restore_state.part.44+0x159/0x3c0
> pci_restore_standard_config+0x33/0x40
> pci_pm_runtime_resume+0x2b/0xd0
> ? pci_restore_standard_config+0x40/0x40
> __rpm_callback+0xbc/0x1b0
> rpm_callback+0x1f/0x70
> ? pci_restore_standard_config+0x40/0x40
> rpm_resume+0x4f9/0x710
> ? pci_conf1_read+0xb6/0xf0
> ? pci_conf1_write+0xb2/0xe0
> __pm_runtime_resume+0x47/0x70
> pci_device_shutdown+0x1e/0x60
So this doesn't happen if you revert c5eb1190074c?
I guess this is due dev->state_saved being true set by
pci_pm_runtime_suspend() -> pci_save_state() after my patch and now
pci_pm_runtime_resume() -> pci_restore_standard_config() ->
pci_restore_state() reach the pci_enable_acs(). I think this is possible
to trigger also before my patch if device has the runtime PM callback
defined?
> It was also likely possible to trigger this bug when hotplugging PCI
> devices.
>
> To fix this, instead of storing a pointer, we use kstrdup to copy the
> disable_acs_redir_param to its own buffer which will never be freed.
>
I wasn't able to trigger this but I saw
"PCI: Can't parse disable_acs_redir parameter: " followed by a few lines
of junk during boot when I defined pci=disable_acs_redir=0000:00:xy.z
which disappear after your patch.
Tested-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Reviewed-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
next prev parent reply other threads:[~2019-01-16 9:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-15 17:32 [PATCH] PCI: fix using __initdata memory after free in disable_acs_redir parameter Logan Gunthorpe
2019-01-16 9:37 ` Jarkko Nikula [this message]
2019-01-16 18:30 ` Logan Gunthorpe
2019-01-17 14:47 ` Bjorn Helgaas
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=48a93172-25a2-d6a6-e908-7d27249f1bc2@linux.intel.com \
--to=jarkko.nikula@linux.intel.com \
--cc=bhelgaas@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=logang@deltatee.com \
--cc=sbates@raithlin.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