* [RFC PATCH] firmware: qemu_fw_cfg.c: hold ACPI global lock during device access
@ 2016-03-07 23:55 Gabriel Somlo
[not found] ` <20160307235543.GD2049-h65ZQ0r4j6KKUezXOiBB2eW1CriLhL8O@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Gabriel Somlo @ 2016-03-07 23:55 UTC (permalink / raw)
To: Michael S. Tsirkin, gregkh, robh+dt, pawel.moll, mark.rutland,
ijc+devicetree, galak, arnd, lersek, ralf, rmk+kernel, eric,
hanjun.guo, zajec5, sudeep.holla, agross, linux-api, linux-kernel,
devicetree, qemu-devel, imammedo, peter.maydell, leif.lindholm,
ard.biesheuvel, pbonzini, kraxel, ehabkost, luto, stefanha, revol,
matt, rth
Allowing for the future possibility of implementing AML-based
(i.e., firmware-triggered) access to the QEMU fw_cfg device,
acquire the global ACPI lock when accessing the device on behalf
of the guest-side sysfs driver, to prevent any potential race
conditions.
Suggested-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Gabriel Somlo <somlo@cmu.edu>
---
Turns out, there *is* a way to acquire a global ACPI lock from within
a "random" kernel driver after all. Luckily I have a healthy dose of
respect for Michael's opinions :) so I kept circling back through
existing kernel sources for an example I can use, and I think this
might be it.
I'm posting as RFC because I'm not really confident about assessing
the likelihood of there ever being a race condition between the kernel
fw_cfg sysfs driver and firmware on my own. Obviously Michael has
concerns about it, but any additional opinions from the QEMU camp would
be much appreciated.
Thanks again,
--Gabriel
drivers/firmware/qemu_fw_cfg.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/drivers/firmware/qemu_fw_cfg.c b/drivers/firmware/qemu_fw_cfg.c
index 7bba76c..cc4c27a 100644
--- a/drivers/firmware/qemu_fw_cfg.c
+++ b/drivers/firmware/qemu_fw_cfg.c
@@ -77,12 +77,26 @@ static inline u16 fw_cfg_sel_endianness(u16 key)
static inline void fw_cfg_read_blob(u16 key,
void *buf, loff_t pos, size_t count)
{
+#ifdef CONFIG_ACPI
+ u32 glk;
+ int status;
+ status = acpi_acquire_global_lock(ACPI_WAIT_FOREVER, &glk);
+ if (ACPI_FAILURE(status)) {
+ /* Should never get here */
+ WARN(1, "fw_cfg_read_blob: Failed to lock ACPI!\n");
+ memset(buf, 0, count);
+ return;
+ }
+#endif
mutex_lock(&fw_cfg_dev_lock);
iowrite16(fw_cfg_sel_endianness(key), fw_cfg_reg_ctrl);
while (pos-- > 0)
ioread8(fw_cfg_reg_data);
ioread8_rep(fw_cfg_reg_data, buf, count);
mutex_unlock(&fw_cfg_dev_lock);
+#ifdef CONFIG_ACPI
+ acpi_release_global_lock(glk);
+#endif
}
/* clean up fw_cfg device i/o */
--
2.4.3
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <20160307235543.GD2049-h65ZQ0r4j6KKUezXOiBB2eW1CriLhL8O@public.gmane.org>]
* Re: [RFC PATCH] firmware: qemu_fw_cfg.c: hold ACPI global lock during device access [not found] ` <20160307235543.GD2049-h65ZQ0r4j6KKUezXOiBB2eW1CriLhL8O@public.gmane.org> @ 2016-03-08 0:02 ` Greg KH [not found] ` <20160308000215.GA11917-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Greg KH @ 2016-03-08 0:02 UTC (permalink / raw) To: Gabriel Somlo Cc: Michael S. Tsirkin, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, pawel.moll-5wv7dgnIgG8, mark.rutland-5wv7dgnIgG8, ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg, galak-sgV2jX0FEOL9JmXXK+q4OQ, arnd-r2nGTMty4D4, lersek-H+wXaHxf7aLQT0dZR+AlfA, ralf-6z/3iImG2C8G8FEW9MqTrA, rmk+kernel-lFZ/pmaqli7XmaaqVzeoHQ, eric-WhKQ6XTQaPysTnJN9+BGXg, hanjun.guo-QSEj5FYQhm4dnm+yROfE0A, zajec5-Re5JQEeQqe8AvxtiuMwx3w, sudeep.holla-5wv7dgnIgG8, agross-sgV2jX0FEOL9JmXXK+q4OQ, linux-api-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, qemu-devel-qX2TKyscuCcdnm+yROfE0A, imammedo-H+wXaHxf7aLQT0dZR+AlfA, peter.maydell-QSEj5FYQhm4dnm+yROfE0A, leif.lindholm-QSEj5FYQhm4dnm+yROfE0A, ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A, pbonzini-H+wXaHxf7aLQT0dZR+AlfA, kraxel-H+wXaHxf7aLQT0dZR+AlfA, ehabkost-H+wXaHxf7aLQT0dZR+AlfA, luto-kltTT9wpgjJwATOyAt5JVQ, stefanha-Re5JQEeQqe8AvxtiuMwx3w, revol-GANU6spQydw, matt-mF/unelCI9GS6iBeEJttW/XRex20P6io, rth-hL46jP5Bxq7R7s880joybQ On Mon, Mar 07, 2016 at 06:55:43PM -0500, Gabriel Somlo wrote: > Allowing for the future possibility of implementing AML-based > (i.e., firmware-triggered) access to the QEMU fw_cfg device, > acquire the global ACPI lock when accessing the device on behalf > of the guest-side sysfs driver, to prevent any potential race > conditions. > > Suggested-by: Michael S. Tsirkin <mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > Signed-off-by: Gabriel Somlo <somlo-D+Gtc/HYRWM@public.gmane.org> > --- > > Turns out, there *is* a way to acquire a global ACPI lock from within > a "random" kernel driver after all. Luckily I have a healthy dose of > respect for Michael's opinions :) so I kept circling back through > existing kernel sources for an example I can use, and I think this > might be it. > > I'm posting as RFC because I'm not really confident about assessing > the likelihood of there ever being a race condition between the kernel > fw_cfg sysfs driver and firmware on my own. Obviously Michael has > concerns about it, but any additional opinions from the QEMU camp would > be much appreciated. > > Thanks again, > --Gabriel > > drivers/firmware/qemu_fw_cfg.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/drivers/firmware/qemu_fw_cfg.c b/drivers/firmware/qemu_fw_cfg.c > index 7bba76c..cc4c27a 100644 > --- a/drivers/firmware/qemu_fw_cfg.c > +++ b/drivers/firmware/qemu_fw_cfg.c > @@ -77,12 +77,26 @@ static inline u16 fw_cfg_sel_endianness(u16 key) > static inline void fw_cfg_read_blob(u16 key, > void *buf, loff_t pos, size_t count) > { > +#ifdef CONFIG_ACPI > + u32 glk; > + int status; > + status = acpi_acquire_global_lock(ACPI_WAIT_FOREVER, &glk); Why not fix up the ACPI api to not require #ifdef here? It should be added to a .h file somewhere instead. > + if (ACPI_FAILURE(status)) { > + /* Should never get here */ > + WARN(1, "fw_cfg_read_blob: Failed to lock ACPI!\n"); > + memset(buf, 0, count); > + return; > + } > +#endif > mutex_lock(&fw_cfg_dev_lock); > iowrite16(fw_cfg_sel_endianness(key), fw_cfg_reg_ctrl); > while (pos-- > 0) > ioread8(fw_cfg_reg_data); > ioread8_rep(fw_cfg_reg_data, buf, count); > mutex_unlock(&fw_cfg_dev_lock); > +#ifdef CONFIG_ACPI > + acpi_release_global_lock(glk); Same here. thanks, greg k-h ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20160308000215.GA11917-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>]
* Re: [RFC PATCH] firmware: qemu_fw_cfg.c: hold ACPI global lock during device access [not found] ` <20160308000215.GA11917-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org> @ 2016-03-08 9:21 ` Michael S. Tsirkin 0 siblings, 0 replies; 3+ messages in thread From: Michael S. Tsirkin @ 2016-03-08 9:21 UTC (permalink / raw) To: Greg KH Cc: Gabriel Somlo, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, pawel.moll-5wv7dgnIgG8, mark.rutland-5wv7dgnIgG8, ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg, galak-sgV2jX0FEOL9JmXXK+q4OQ, arnd-r2nGTMty4D4, lersek-H+wXaHxf7aLQT0dZR+AlfA, ralf-6z/3iImG2C8G8FEW9MqTrA, rmk+kernel-lFZ/pmaqli7XmaaqVzeoHQ, eric-WhKQ6XTQaPysTnJN9+BGXg, hanjun.guo-QSEj5FYQhm4dnm+yROfE0A, zajec5-Re5JQEeQqe8AvxtiuMwx3w, sudeep.holla-5wv7dgnIgG8, agross-sgV2jX0FEOL9JmXXK+q4OQ, linux-api-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, qemu-devel-qX2TKyscuCcdnm+yROfE0A, imammedo-H+wXaHxf7aLQT0dZR+AlfA, peter.maydell-QSEj5FYQhm4dnm+yROfE0A, leif.lindholm-QSEj5FYQhm4dnm+yROfE0A, ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A, pbonzini-H+wXaHxf7aLQT0dZR+AlfA, kraxel-H+wXaHxf7aLQT0dZR+AlfA, ehabkost-H+wXaHxf7aLQT0dZR+AlfA, luto-kltTT9wpgjJwATOyAt5JVQ, stefanha-Re5JQEeQqe8AvxtiuMwx3w, revol-GANU6spQydw, matt-mF/unelCI9GS6iBeEJttW/XRex20P6io, rth-hL46jP5Bxq7R7s880joybQ On Mon, Mar 07, 2016 at 04:02:15PM -0800, Greg KH wrote: > On Mon, Mar 07, 2016 at 06:55:43PM -0500, Gabriel Somlo wrote: > > Allowing for the future possibility of implementing AML-based > > (i.e., firmware-triggered) access to the QEMU fw_cfg device, > > acquire the global ACPI lock when accessing the device on behalf > > of the guest-side sysfs driver, to prevent any potential race > > conditions. > > > > Suggested-by: Michael S. Tsirkin <mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > > Signed-off-by: Gabriel Somlo <somlo-D+Gtc/HYRWM@public.gmane.org> ACK, except for Gerd's comments below. > > --- > > > > Turns out, there *is* a way to acquire a global ACPI lock from within > > a "random" kernel driver after all. Luckily I have a healthy dose of > > respect for Michael's opinions :) so I kept circling back through > > existing kernel sources for an example I can use, and I think this > > might be it. > > > > I'm posting as RFC because I'm not really confident about assessing > > the likelihood of there ever being a race condition between the kernel > > fw_cfg sysfs driver and firmware on my own. Obviously Michael has > > concerns about it, but any additional opinions from the QEMU camp would > > be much appreciated. > > > > Thanks again, > > --Gabriel > > > > drivers/firmware/qemu_fw_cfg.c | 14 ++++++++++++++ > > 1 file changed, 14 insertions(+) > > > > diff --git a/drivers/firmware/qemu_fw_cfg.c b/drivers/firmware/qemu_fw_cfg.c > > index 7bba76c..cc4c27a 100644 > > --- a/drivers/firmware/qemu_fw_cfg.c > > +++ b/drivers/firmware/qemu_fw_cfg.c > > @@ -77,12 +77,26 @@ static inline u16 fw_cfg_sel_endianness(u16 key) > > static inline void fw_cfg_read_blob(u16 key, > > void *buf, loff_t pos, size_t count) > > { > > +#ifdef CONFIG_ACPI You should include linux/acpi.h if you use this, do not rely on some other header to pull this in. > > + u32 glk; > > + int status; > > + status = acpi_acquire_global_lock(ACPI_WAIT_FOREVER, &glk); > > Why not fix up the ACPI api to not require #ifdef here? It should be > added to a .h file somewhere instead. Indeed. In fact include/acpi/platform/aclinux.h already has this code: #ifndef CONFIG_ACPI /* External globals for __KERNEL__, stubs is needed */ #define ACPI_GLOBAL(t,a) #define ACPI_INIT_GLOBAL(t,a,b) /* Generating stubs for configurable ACPICA macros */ #define ACPI_NO_MEM_ALLOCATIONS /* Generating stubs for configurable ACPICA functions */ #define ACPI_NO_ERROR_MESSAGES #undef ACPI_DEBUG_OUTPUT /* External interface for __KERNEL__, stub is needed */ #define ACPI_EXTERNAL_RETURN_STATUS(prototype) \ static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);} #define ACPI_EXTERNAL_RETURN_OK(prototype) \ static ACPI_INLINE prototype {return(AE_OK);} #define ACPI_EXTERNAL_RETURN_VOID(prototype) \ static ACPI_INLINE prototype {return;} #define ACPI_EXTERNAL_RETURN_UINT32(prototype) \ static ACPI_INLINE prototype {return(0);} #define ACPI_EXTERNAL_RETURN_PTR(prototype) \ static ACPI_INLINE prototype {return(NULL);} #endif /* CONFIG_ACPI */ so it's just a question of testing the return code for AE_NOT_CONFIGURED. -- MST -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-03-08 9:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-07 23:55 [RFC PATCH] firmware: qemu_fw_cfg.c: hold ACPI global lock during device access Gabriel Somlo
[not found] ` <20160307235543.GD2049-h65ZQ0r4j6KKUezXOiBB2eW1CriLhL8O@public.gmane.org>
2016-03-08 0:02 ` Greg KH
[not found] ` <20160308000215.GA11917-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2016-03-08 9:21 ` Michael S. Tsirkin
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).