Bug 94074

Summary: Segmentation fault in xserver (git version)
Product: xorg Reporter: Jos van Wolput <wolput>
Component: Server/GeneralAssignee: Xorg Project Team <xorg-team>
Status: RESOLVED FIXED QA Contact: Xorg Project Team <xorg-team>
Severity: critical    
Priority: medium    
Version: git   
Hardware: x86-64 (AMD64)   
OS: Linux (All)   
Whiteboard:
i915 platform: i915 features:
Attachments:
Description Flags
xorg log none

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.