Bug 94074 - Segmentation fault in xserver (git version)
Summary: Segmentation fault in xserver (git version)
Status: RESOLVED FIXED
Alias: None
Product: xorg
Classification: Unclassified
Component: Server/General (show other bugs)
Version: git
Hardware: x86-64 (AMD64) Linux (All)
: medium critical
Assignee: Xorg Project Team
QA Contact: Xorg Project Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-02-10 09:17 UTC by Jos van Wolput
Modified: 2016-02-11 21:21 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments
xorg log (47.60 KB, text/plain)
2016-02-10 09:17 UTC, Jos van Wolput
no flags Details

Description Jos van Wolput 2016-02-10 09:17:47 UTC
Created attachment 121640 [details]
xorg log

After make install xserver git version b3e9c5...
and executing glxgears xserver caught signal 11 (Segmentation fault).
See the attached Xorg.0.log.
This issue did not occur in versions prior today (or yesterday).
Comment 1 Chris Wilson 2016-02-10 09:25:15 UTC
Try reverting:

commit e43abdce964f5ed9689cf908af8c305b39a5dd36
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date:   Wed Feb 3 09:54:46 2016 +0000

    dri2: Unblock Clients on Drawable release
Comment 2 Chris Wilson 2016-02-10 09:28:42 UTC
And please try:

diff --git a/dix/dispatch.c b/dix/dispatch.c
index 53032dc..6257369 100644
--- a/dix/dispatch.c
+++ b/dix/dispatch.c
@@ -3414,6 +3414,8 @@ CloseDownClient(ClientPtr client)
     }
 
     if (really_close_down) {
+        client->ignoreCount++;
+
         if (client->clientState == ClientStateRunning && nClients == 0)
             dispatchException |= dispatchExceptionAtReset;
Comment 3 Jos van Wolput 2016-02-10 10:02:17 UTC
(In reply to Chris Wilson from comment #2)
> And please try:
> 
> diff --git a/dix/dispatch.c b/dix/dispatch.c
> index 53032dc..6257369 100644
> --- a/dix/dispatch.c
> +++ b/dix/dispatch.c
> @@ -3414,6 +3414,8 @@ CloseDownClient(ClientPtr client)
>      }
>  
>      if (really_close_down) {
> +        client->ignoreCount++;
> +
>          if (client->clientState == ClientStateRunning && nClients == 0)
>              dispatchException |= dispatchExceptionAtReset;

At your request I added 'client->ignoreCount++;' in /dix/dispatch.c
but after make install and new login I still get the same segmentation fault.
Comment 4 Chris Wilson 2016-02-10 10:55:38 UTC
Hmm, I think you also need

diff --git a/os/connection.c b/os/connection.c
index 4c1ba4b..0a7056f 100644
--- a/os/connection.c
+++ b/os/connection.c
@@ -1291,12 +1291,13 @@ void
 AttendClient(ClientPtr client)
 {
     OsCommPtr oc = (OsCommPtr) client->osPrivate;
-    int connection = oc->fd;
+    int connection;
 
     client->ignoreCount--;
     if (client->ignoreCount)
         return;
 
+    connection = oc->fd;
     if (!GrabInProgress || GrabInProgress == client->index ||
         FD_ISSET(connection, &GrabImperviousClients)) {
         FD_SET(connection, &AllClients);

as well as the previous dix/dispatch.c chunk
Comment 5 Jos van Wolput 2016-02-10 11:11:44 UTC
(In reply to Chris Wilson from comment #4)
> Hmm, I think you also need
> 
> diff --git a/os/connection.c b/os/connection.c
> index 4c1ba4b..0a7056f 100644
> --- a/os/connection.c
> +++ b/os/connection.c
> @@ -1291,12 +1291,13 @@ void
>  AttendClient(ClientPtr client)
>  {
>      OsCommPtr oc = (OsCommPtr) client->osPrivate;
> -    int connection = oc->fd;
> +    int connection;
>  
>      client->ignoreCount--;
>      if (client->ignoreCount)
>          return;
>  
> +    connection = oc->fd;
>      if (!GrabInProgress || GrabInProgress == client->index ||
>          FD_ISSET(connection, &GrabImperviousClients)) {
>          FD_SET(connection, &AllClients);
> 
> as well as the previous dix/dispatch.c chunk

You'r right, I applied your patches and this bug is fixed, thanks!
Comment 6 Chris Wilson 2016-02-10 12:08:22 UTC
Successfully reproduced using XKillClient.

https://patchwork.freedesktop.org/patch/73115/
https://patchwork.freedesktop.org/patch/73116/
Comment 7 Chris Wilson 2016-02-11 21:21:29 UTC
commit eddf848c44349c7ebc7da9957bffb3630f3faaa9
Author: Adam Jackson <ajax@redhat.com>
Date:   Wed Feb 10 11:13:04 2016 -0500

    dri2: Use the work queue to manage client sleeps


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.