After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 767333 - Uses the same thread for multiple clients and blocks them on media preparation, leads to deadlocks
Uses the same thread for multiple clients and blocks them on media preparatio...
Status: RESOLVED OBSOLETE
Product: GStreamer
Classification: Platform
Component: gst-rtsp-server
1.8.1
Other Linux
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2016-06-07 12:22 UTC by Sebastian Dröge (slomo)
Modified: 2018-11-03 15:40 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Sebastian Dröge (slomo) 2016-06-07 12:22:42 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.
Comment 1 Xavier Claessens 2016-06-07 14:00:28 UTC
Bug #767021 is also related to this.
Comment 2 GStreamer system administrator 2018-11-03 15:40:02 UTC
-- 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.