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 763273 - Avoid dropping the main context when p2p socket configuration fails
Avoid dropping the main context when p2p socket configuration fails
Status: RESOLVED FIXED
Product: at-spi
Classification: Platform
Component: at-spi2-atk
unspecified
Other Linux
: Normal normal
: ---
Assigned To: ATK maintainer(s)
ATK maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2016-03-08 00:18 UTC by Samuel Thibault
Modified: 2016-03-08 19:13 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
proposed fix (410 bytes, patch)
2016-03-08 00:18 UTC, Samuel Thibault
none Details | Review

Description Samuel Thibault 2016-03-08 00:18:01 UTC
Created attachment 323332 [details] [review]
proposed fix

Hello,

We're trying to make the debian graphical installer accessible, and stumbled on initialization issues. The symptom is that multithreaded applications are completely stuck, with this kind of backtrace:

- g_mutex_lock_slowpath
- g_mutex_lock
- gdk_event_prepare
- g_main_context_prepare(context=0x13ac1c0)
- g_main_context_iterate(context=0x13ac1c0)
- g_main_loop_run
- send_and_allow_reentry
- Accessibility_DeviceEventController_NotifyListenersSync
- spi_atk_bridge_key_listener
- gail
- gtk_invoke_key_snoopers
- IA__gtk_main_do_event
- gdk_event_dispatch
- g_main_dispatch(context=0x13ac1c0)
- g_main_context_dispatch(context=0x13ac1c0)
- g_main_context_iterate(context=0x13ac1c0)
- g_main_loop_run
...

So what happens is that send_and_allow_reentry ends up running the glib main loop with the same context as the main application. Since gdk_event_dispatch does GDK_THREADS_ENTER/LEAVE around calling the gdk_event_funcs, the gdk thread mutex is busy, and thus gtk_event_prepare can't acquire it, we have a deadlock.

Usually there is no such problem because send_and_allow_reentry switches to another context before entering the glib main loop. It happens that in or debian graphical installer case, spi_global_app_data->main_context was NULL!

This happens because spi_atk_create_socket dropped it because it couldn't establish the p2p socket (because the cache path was not available, which is another issue that I'll file separately). I don't see why spi_atk_create_socket drops that context just because it couldn't establish the p2p socket: when configured with --disable-p2p, that function would just return -1 without dropping that context, and even with p2p, if the temporary directory can't be built in the user's runtime directory or other such errors, -1 is just returned without dropping the context.

I'd thus recommend applying the attached patch, which avoids dropping the context when the p2p socket can't be established. With it we don't have stuck multithreaded applications in our testcase.

Samuel
Comment 1 Samuel Thibault 2016-03-08 00:19:15 UTC
oops, sorry, wrong component, fixing that
Comment 2 Mike Gorse 2016-03-08 19:13:22 UTC
Thanks for the patch. I tested the orca preferences dialog briefly along with navigating gnome-shell in orca, since applications that are also ATs do not use p2p connections, and I didn't see any problems, so I committed the patch.

master: 4b9c9e