GNOME Bugzilla – Bug 767333
Uses the same thread for multiple clients and blocks them on media preparation, leads to deadlocks
Last modified: 2018-11-03 15:40:02 UTC
Currently when a client connects, a thread is assigned to this client and everything that happens with this client happens on that thread. By itself this is not a problem, but unfortunately from this very thread the rtsp-media is also waiting synchronously to be prepared. This means that while the media is being prepared, no other client that uses the same thread can send requests or get responses. And especially this can lead to various deadlock situations, for example: - two clients are connecting and creating a media (one for each) that is fed from an appsrc - the appsrcs are both fed from the same, other pipeline - the first client finishes preparing the media (-> the pipeline is blocked) - the second client starts preparing the media - the other pipeline is blocking because the first appsrc is blocked - the second appsrc never gets enough data to preroll, and the first appsrc is never unblocked because the client has no way to send its PLAY request to unblock the pipeline We should wait asynchronously for the media to be prepared, which unfortunately requires a few changes in the way how rtsp-client.c works. Currently request-response is a completely synchronous process.
Bug #767021 is also related to this.
-- GitLab Migration Automatic Message -- This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/gstreamer/gst-rtsp-server/issues/23.