sink, source: remove some assumptions about stream "attached" state
authorTanu Kaskinen <tanuk@iki.fi>
Wed, 7 Dec 2016 23:59:04 +0000 (01:59 +0200)
committerTanu Kaskinen <tanuk@iki.fi>
Mon, 19 Dec 2016 23:38:17 +0000 (01:38 +0200)
commitd404d8d1abc7c92d62e3edf27dd36fac882852ca
tree9d3df2a7aba20368c298cce2976008e94eb54305
parentaf45c0e3cd5808aac712836e58a8e65189aa60a1
sink, source: remove some assumptions about stream "attached" state

Streams are detached when they are removed or moved away from a device,
or when a filter device that they're connected to is removed or moved.
If these cases overlap, a crash will happen due to "double-detaching".
This can happen if a filter sink is removed, and a stream connected to
that filter sink removes itself when its sink goes away.

Here are the steps in more detail: When a filter sink is unloaded, first
it will unlink its own sink input. This will cause the filter sink's
input to be detached. The filter sink propagates the detachment to all
inputs connected to it using pa_sink_detach_within_thread(). After the
filter sink is done unlinking its own sink input, it will unlink the
sink. This will cause at least module-combine-sink to remove its sink
input if it had one connected to the removed filter sink. When the
combine sink removes its sink input, that input will get detached again,
and a crash follows.

We can relax the assertions a bit, and skip the detach() call if the
sink input is already detached.

I think a better fix would be to unlink the sink before the sink input
when unloading a filter sink - that way we could avoid the
double-detaching - but that would be a much more complicated change. I
decided to go with this simple fix for now.

BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=98617
src/pulsecore/sink.c
src/pulsecore/source.c