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 724504 - If engine can't be launched, gnome-chess tries to kill some poor random process
If engine can't be launched, gnome-chess tries to kill some poor random process
Status: RESOLVED FIXED
Product: gnome-chess
Classification: Applications
Component: General
3.11.x
Other Linux
: Normal minor
: ---
Assigned To: Sahil Sareen
gnome-chess-maint
Depends on:
Blocks:
 
 
Reported: 2014-02-16 21:35 UTC by Michael Catanzaro
Modified: 2015-07-23 18:41 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix broken chess engine launch (796 bytes, patch)
2015-07-19 14:40 UTC, Sahil Sareen
none Details | Review
Add some preconditions to chess-engine.vala (2.87 KB, patch)
2015-07-19 15:41 UTC, Michael Catanzaro
committed Details | Review
Fix broken engine launch (725 bytes, patch)
2015-07-19 16:47 UTC, Sahil Sareen
committed Details | Review
Fix various mistakes in ChessEngine (3.80 KB, patch)
2015-07-19 18:58 UTC, Michael Catanzaro
committed Details | Review
Remove unused parameters from engine_stopped_cb (853 bytes, patch)
2015-07-20 04:02 UTC, Sahil Sareen
accepted-commit_now Details | Review
Add sanity check to stop chess engine (897 bytes, patch)
2015-07-20 04:11 UTC, Sahil Sareen
needs-work Details | Review
Disconnect engine_stopped_cb when stopping the engine (2.87 KB, patch)
2015-07-20 18:40 UTC, Michael Catanzaro
committed Details | Review
Assert that the ChessEngine has been stopped before it is destroyed (845 bytes, patch)
2015-07-20 18:48 UTC, Michael Catanzaro
none Details | Review
Assert that the ChessEngine has been stopped before it is destroyed (794 bytes, patch)
2015-07-20 18:49 UTC, Michael Catanzaro
committed Details | Review
ChessEngine: unset stdout_watch_id (831 bytes, patch)
2015-07-23 18:41 UTC, Michael Catanzaro
committed Details | Review
Revert "Don't shadow variable pid of higher-scope" (919 bytes, patch)
2015-07-23 18:41 UTC, Michael Catanzaro
committed Details | Review

Description Michael Catanzaro 2014-02-16 21:35:35 UTC
* Play a game against Fairy-Max, launching gnome-chess from a directory that doesn't contain fmax.ini, causing Fairy-Max to quit.
* Note in the terminal output the warning indicating that we tried to kill a nonexistant process.
Comment 1 Sahil Sareen 2015-07-19 14:40:50 UTC
Created attachment 307681 [details] [review]
Fix broken chess engine launch

Looking at some debug output the right PID(of the chess-engine) was attempted to be killed twice.

engine_stopped_cb () was closing the process and 
setting the *local variable* pid to 0 and
then stop () tried to close the already closed engine process.
Comment 2 Michael Catanzaro 2015-07-19 15:40:32 UTC
Review of attachment 307681 [details] [review]:

Ooops! A good example of why it's a bad idea to shadow variables of higher-scope....

Your fix is good; I would just change the commit message since it's rather confusing. Launching the chess engine is not broken; what's broken is that we attempt to kill the same process twice.

I will follow-up with some contracts for the functions, to clarify the code and help catch future bugs.
Comment 3 Michael Catanzaro 2015-07-19 15:41:37 UTC
Created attachment 307684 [details] [review]
Add some preconditions to chess-engine.vala

Help avoid future mistakes here.

Also, avoid a case where we could call Source.remove(0) in the event of
an engine error.
Comment 4 Sahil Sareen 2015-07-19 16:47:16 UTC
Created attachment 307689 [details] [review]
Fix broken engine launch

Fix commit message.
Comment 5 Sahil Sareen 2015-07-19 18:11:19 UTC
Attachment 307689 [details] pushed to master.

To ssh://ssareen@git.gnome.org/git/gnome-chess
   7133909..97263dd  master -> master
Comment 6 Michael Catanzaro 2015-07-19 18:18:23 UTC
Attachment 307684 [details] pushed as cf425b0 - Add some preconditions to chess-engine.vala
Comment 7 Sahil Sareen 2015-07-19 18:32:01 UTC
Michael needs to fix the fairy engine issue with the last patch.
Comment 8 Michael Catanzaro 2015-07-19 18:58:13 UTC
The following fix has been pushed:
fe2a655 Fix various mistakes in ChessEngine
Comment 9 Michael Catanzaro 2015-07-19 18:58:16 UTC
Created attachment 307697 [details] [review]
Fix various mistakes in ChessEngine

fds can be 0 (hi stdin!). Various resource leaks due to not calling
stop() when the engine stops itself. Be careful to unset all values from
the previous engine in stop(), since they're now checked to ensure
they're not overwritten as a precondition of start(). Expect
engine_stopped_cb() to be called after stop().
Comment 10 Sahil Sareen 2015-07-20 04:02:01 UTC
Created attachment 307703 [details] [review]
Remove unused parameters from engine_stopped_cb

pid and status aren't used by the function and can be removed.
Comment 11 Sahil Sareen 2015-07-20 04:11:47 UTC
Created attachment 307704 [details] [review]
Add sanity check to stop chess engine

We should either clean up the parameters assuming the pid would always be this.pid due to the childWatch and remove the unused parameters(previous patch) or ensure that the pid we get is that of the chess engine and we aren't killing the engine for a random process.
Comment 12 Michael Catanzaro 2015-07-20 18:34:28 UTC
Review of attachment 307704 [details] [review]:

The problem is that when ChessEngine.stop() is called, ChessEngine.engine_stopped_cb() will be run some time later, but the pid will not be correct at that point.

There is also a theoretical race here (bug in the current code): it's possible ChessEngine.start() would be called before ChessEngine.engine_stopped_cb(), which would kill the newly-started engine! Oops. Wow, this code was harder to get right than I expected.

I will follow-up with a fix.
Comment 13 Michael Catanzaro 2015-07-20 18:40:23 UTC
Created attachment 307775 [details] [review]
Disconnect engine_stopped_cb when stopping the engine

Sahil, does this look OK to you?
Comment 14 Michael Catanzaro 2015-07-20 18:48:02 UTC
Created attachment 307778 [details] [review]
Assert that the ChessEngine has been stopped before it is destroyed

https://bugzilla.gnome.org/show_bug.cgi?id=142980
Comment 15 Michael Catanzaro 2015-07-20 18:49:26 UTC
Created attachment 307780 [details] [review]
Assert that the ChessEngine has been stopped before it is destroyed

(Removed the bogus bug reference. That was the ID of a WebKit bug I had open in another tab.)
Comment 16 Sahil Sareen 2015-07-21 05:25:06 UTC
(In reply to Michael Catanzaro from comment #15)
> Created attachment 307780 [details] [review] [review]
> Assert that the ChessEngine has been stopped before it is destroyed
> 
> (Removed the bogus bug reference. That was the ID of a WebKit bug I had open
> in another tab.)

Thanks for looking into it Michael, 
I want to take 2 days to test this properly and look for other potential issues around it before we commit.
Comment 17 Sahil Sareen 2015-07-23 16:12:50 UTC
Review of attachment 307775 [details] [review]:

Works perfectly. Thanks. :D

::: src/chess-engine.vala
@@ -105,2 +107,4 @@
 
-    private void engine_stopped_cb (Pid pid, int status)
+    private void engine_stopped_cb (Pid pid)
+        requires (pid == this.pid)
+        requires (started)

IMO we should check started first and then pid == this.pid as engine being started is the primary condition post which the pid should be enforced.
Comment 18 Sahil Sareen 2015-07-23 17:54:40 UTC
Review of attachment 307775 [details] [review]:

(In reply to Michael Catanzaro from comment #13)
> Created attachment 307775 [details] [review] [review]
> Disconnect engine_stopped_cb when stopping the engine
> 
> Sahil, does this look OK to you?

Thanks pushed to master.
To ssh://ssareen@git.gnome.org/git/gnome-chess
   5a1786a..8ba6bcb  master -> master
Comment 19 Michael Catanzaro 2015-07-23 17:59:37 UTC
Comment on attachment 307780 [details] [review]
Assert that the ChessEngine has been stopped before it is destroyed

Attachment 307780 [details] pushed as 48202d6 - Assert that the ChessEngine has been stopped before it is destroyed
Comment 20 Sahil Sareen 2015-07-23 18:27:24 UTC
We forgot to fix the problem that caused the original issue!

I renamed local pid to pid_engine in engine_stopped_cb and pushed to master.

To ssh://ssareen@git.gnome.org/git/gnome-chess
   0a6163d..e251b68  master -> master
Comment 21 Michael Catanzaro 2015-07-23 18:37:44 UTC
(In reply to Sahil Sareen from comment #20)
> We forgot to fix the problem that caused the original issue!
> 
> I renamed local pid to pid_engine in engine_stopped_cb and pushed to master.

But that variable is no longer used in the function, except in the contract. :) So I would revert that commit.
Comment 22 Michael Catanzaro 2015-07-23 18:41:07 UTC
I'll do it, since I found yet another mistake... oops.

The following fixes have been pushed:
b2aa1d0 ChessEngine: unset stdout_watch_id
530c4d5 Revert "Don't shadow variable pid of higher-scope"
Comment 23 Michael Catanzaro 2015-07-23 18:41:10 UTC
Created attachment 308023 [details] [review]
ChessEngine: unset stdout_watch_id
Comment 24 Michael Catanzaro 2015-07-23 18:41:14 UTC
Created attachment 308024 [details] [review]
Revert "Don't shadow variable pid of higher-scope"

This reverts commit e251b6801bed97ce2d17a4946cb864ae0396c8e4.

It doesn't matter anymore.