Linux PCI subsystem development
 help / color / mirror / Atom feed
* [PATCH] PCI/pwrctrl: Check the device node exist before device removal
@ 2024-11-29 14:30 Saurabh Sengar
  2024-11-29 16:38 ` Manivannan Sadhasivam
  0 siblings, 1 reply; 2+ messages in thread
From: Saurabh Sengar @ 2024-11-29 14:30 UTC (permalink / raw)
  To: bhelgaas, kwilczynski, bartosz.golaszewski, manivannan.sadhasivam,
	linux-pci, linux-kernel
  Cc: ssengar

There can be scenarios where device node is NULL, in such cases
of_node_clear_flag accessing the _flags object will cause a NULL
pointer dereference.

Add a check for NULL device node to fix this.

[  226.227601] Unable to handle kernel NULL pointer dereference at virtual address 00000000000000c0
[  226.330031] pc : pci_stop_bus_device+0xe4/0x178
[  226.333117] lr : pci_stop_bus_device+0xd4/0x178
[  226.389703] Call trace:
[  226.391463]  pci_stop_bus_device+0xe4/0x178 (P)
[  226.394579]  pci_stop_bus_device+0xd4/0x178 (L)
[  226.397691]  pci_stop_and_remove_bus_device_locked+0x2c/0x58
[  226.401717]  remove_store+0xac/0xc8
[  226.404359]  dev_attr_store+0x24/0x48
[  226.406929]  sysfs_kf_write+0x50/0x70
[  226.409553]  kernfs_fop_write_iter+0x144/0x1e0
[  226.412682]  vfs_write+0x250/0x3c0
[  226.415003]  ksys_write+0x7c/0x120
[  226.417827]  __arm64_sys_write+0x28/0x40
[  226.420828]  invoke_syscall+0x74/0x108
[  226.423681]  el0_svc_common.constprop.0+0x4c/0x100
[  226.427205]  do_el0_svc+0x28/0x40
[  226.429748]  el0_svc+0x40/0x148
[  226.432295]  el0t_64_sync_handler+0x114/0x140
[  226.435528]  el0t_64_sync+0x1b8/0x1c0

Cc: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Cc: Krishna chaitanya chundru <quic_krichai@quicinc.com>
Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Krzysztof Wilczyński <kwilczynski@kernel.org>
Fixes: 681725afb6b9 ("PCI/pwrctl: Remove pwrctl device without iterating over all children of pwrctl parent")
Signed-off-by: Saurabh Sengar <ssengar@linux.microsoft.com>
---
 drivers/pci/remove.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/pci/remove.c b/drivers/pci/remove.c
index 963b8d2855c1..474ec2453e4b 100644
--- a/drivers/pci/remove.c
+++ b/drivers/pci/remove.c
@@ -21,6 +21,9 @@ static void pci_pwrctrl_unregister(struct device *dev)
 {
 	struct platform_device *pdev;
 
+	if (!dev_of_node(dev))
+		return;
+
 	pdev = of_find_device_by_node(dev_of_node(dev));
 	if (!pdev)
 		return;
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-11-29 16:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-29 14:30 [PATCH] PCI/pwrctrl: Check the device node exist before device removal Saurabh Sengar
2024-11-29 16:38 ` Manivannan Sadhasivam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox