Bug 101962 - Can't use Mesa through proxied X11 connection?
Summary: Can't use Mesa through proxied X11 connection?
Status: CLOSED NOTOURBUG
Alias: None
Product: Mesa
Classification: Unclassified
Component: Mesa core (show other bugs)
Version: 17.1
Hardware: Other All
: medium normal
Assignee: mesa-dev
QA Contact: mesa-dev
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-07-28 15:05 UTC by Vladimir Panteleev
Modified: 2017-07-28 21:38 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments

Description Vladimir Panteleev 2017-07-28 15:05:59 UTC
First, steps to reproduce:

1. Run:

 socat UNIX-LISTEN:/tmp/.X11-unix/X1,fork UNIX-CONNECT:/tmp/.X11-unix/X0

2. Run:

 DISPLAY=:1 glxgears

Expected behaviour:

glxgears works as expected.

Actual behaviour:

glxgears hangs at startup.

The system I can reproduce this problem on is a Sony Vaio SVS15123CXB laptop with a Core i5-3210M and "Intel Corporation 3rd Gen Core processor Graphics Controller", running Arch Linux with Linux 4.11.9-1-ARCH, mesa 17.1.5-1 and libxcb 1.12-1.

glxgears runs fine through socat on my desktop machine with an NVIDIA card.

Stack trace of hanging glxgears:

#0  0x00007fb5d9103e80 in __poll_nocancel () from /usr/lib/libc.so.6
#1  0x00007fb5d82e7857 in poll (__timeout=-1, __nfds=1, __fds=0x7ffe40792438) at /usr/include/bits/poll2.h:46
#2  _xcb_conn_wait (c=c@entry=0x55a1e2187030, cond=cond@entry=0x7ffe40792550, vector=vector@entry=0x0, count=count@entry=0x0) at xcb_conn.c:479
#3  0x00007fb5d82e933f in wait_for_reply (c=c@entry=0x55a1e2187030, request=26, e=e@entry=0x0) at xcb_in.c:516
#4  0x00007fb5d82e9450 in xcb_wait_for_reply (c=c@entry=0x55a1e2187030, request=26, e=e@entry=0x0) at xcb_in.c:546
#5  0x00007fb5d7828005 in xcb_dri3_open_reply (c=c@entry=0x55a1e2187030, cookie=..., e=e@entry=0x0) at dri3.c:146
#6  0x00007fb5d7cacaca in loader_dri3_open (conn=conn@entry=0x55a1e2187030, root=<optimized out>, provider=provider@entry=0) at loader_dri3_helper.c:779
#7  0x00007fb5d7ca6eb0 in dri3_create_screen (screen=0, priv=0x55a1e2197d20) at dri3_glx.c:801
#8  0x00007fb5d7c7b2a6 in AllocAndFetchScreenConfigs (priv=0x55a1e2197d20, dpy=0x55a1e2185d00) at glxext.c:806
#9  __glXInitialize (dpy=dpy@entry=0x55a1e2185d00) at glxext.c:932
#10 0x00007fb5d7c76a44 in GetGLXPrivScreenConfig (dpy=dpy@entry=0x55a1e2185d00, scrn=scrn@entry=0, ppriv=ppriv@entry=0x7ffe40792710, ppsc=ppsc@entry=0x7ffe40792718) at glxcmds.c:173
#11 0x00007fb5d7c77905 in glXChooseVisual (dpy=0x55a1e2185d00, screen=0, attribList=0x7ffe40792970) at glxcmds.c:1246
#12 0x000055a1e149359b in make_window (dpy=0x55a1e2185d00, x=0, y=0, width=300, height=300, winRet=0x7ffe40792af0, ctxRet=0x7ffe40792af8, visRet=0x7ffe40792b00, name=0x55a1e1493b1f "glxgears") at glxgears.c:520
#13 0x000055a1e1491a97 in main (argc=<optimized out>, argv=<optimized out>) at glxgears.c:777

My wild guess is that something in mesa or xcb is treating the X11 connection as datagram-oriented, instead of stream-oriented, and either discards additional data that was received in one recv call, or does not keep trying to read more data if not enough data was received in one recv call.
Comment 1 Vladimir Panteleev 2017-07-28 15:52:24 UTC
(In reply to Vladimir Panteleev from comment #0)
> glxgears runs fine through socat on my desktop machine with an NVIDIA card.
(using the proprietary drivers from NVIDIA)
Comment 2 Christian König 2017-07-28 18:55:04 UTC
The problem is most likely that socat doesn't support forwarding file descriptors on UNIX domain sockets.

This is mandatory for DRI3.
Comment 3 Vladimir Panteleev 2017-07-28 21:38:34 UTC
Thanks, Christian! That set me on the right path:

https://github.com/CyberShadow/hax11/commit/03ced845f4b2724e3f50b5998b8c9dc3b2b77356


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.