GNOME Bugzilla – Bug 724504
If engine can't be launched, gnome-chess tries to kill some poor random process
Last modified: 2015-07-23 18:41:14 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.
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.
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.
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.
Created attachment 307689 [details] [review] Fix broken engine launch Fix commit message.
Attachment 307689 [details] pushed to master. To ssh://ssareen@git.gnome.org/git/gnome-chess 7133909..97263dd master -> master
Attachment 307684 [details] pushed as cf425b0 - Add some preconditions to chess-engine.vala
Michael needs to fix the fairy engine issue with the last patch.
The following fix has been pushed: fe2a655 Fix various mistakes in ChessEngine
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().
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.
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.
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.
Created attachment 307775 [details] [review] Disconnect engine_stopped_cb when stopping the engine Sahil, does this look OK to you?
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
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.)
(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.
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.
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 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
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
(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.
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"
Created attachment 308023 [details] [review] ChessEngine: unset stdout_watch_id
Created attachment 308024 [details] [review] Revert "Don't shadow variable pid of higher-scope" This reverts commit e251b6801bed97ce2d17a4946cb864ae0396c8e4. It doesn't matter anymore.