linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [question] Is it possible to remove an active port (without shutdown)?
@ 2021-06-11  9:33 Saubhik Mukherjee
  2021-06-11  9:47 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Saubhik Mukherjee @ 2021-06-11  9:33 UTC (permalink / raw)
  To: gregkh, jirislaby; +Cc: linux-serial, ldv-project, andrianov

Consider the following events involving drivers/tty/serial/owl-uart.c:

Suppose the driver is registered, and the owl_uart_probe() was called.
Then uart_startup() can be called in serial core. This calls
owl_uart_startup() which registers the interrupt handler owl_uart_irq.

Now suppose uart_remove_one_port() in serial core is called. This
detaches port from the core. This calls owl_uart_release_port(port).
This writes NULL to port->membase after iounmap of port->membase from
port->dev.

During this point, an interrupt is triggered and the interrupt callback
owl_uart_irq() is called (parallel with uart_remove_one_port()). This
tries to read port->membase to send or receive chars (with spinlock on
port->lock). This introduces a race condition on port->membase.

QUESTION: Is it possible to remove an active port (without shutdown)?

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

end of thread, other threads:[~2021-06-14 10:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-11  9:33 [question] Is it possible to remove an active port (without shutdown)? Saubhik Mukherjee
2021-06-11  9:47 ` Greg KH
2021-06-14  9:57   ` Saubhik Mukherjee
2021-06-14 10:01     ` Greg KH

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).