This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: subprocess.Popen.terminate can raise exception on Posix
Type: behavior Stage: needs patch
Components: Library (Lib) Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: duplicate
Dependencies: Superseder: subprocess.Popen.send_signal doesn't check whether the process has terminated
View: 6973
Assigned To: gregory.p.smith Nosy List: BreamoreBoy, gregory.p.smith, martin.panter, siona
Priority: normal Keywords:

Created on 2013-02-05 09:54 by siona, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (6)
msg181425 - (view) Author: S Arrowsmith (siona) Date: 2013-02-05 09:54
Compare this with the script in #14252:

p = Popen(['/bin/sleep', '1'])
time.sleep(1)
p.terminate()
print p.poll()
p.terminate()

Output is:

0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.6/subprocess.py", line 1269, in terminate
    self.send_signal(signal.SIGTERM)
  File "/usr/lib/python2.6/subprocess.py", line 1264, in send_signal
    os.kill(self.pid, sig)
OSError: [Errno 3] No such process

The 0 return from poll() indicates that the subprocess ran to completion, rather than being terminated by the first terminate. So the first terminate does nothing, but the second terminate raises an exception. In http://bugs.python.org/issue14252#msg155396 :

"Raising an exception on terminate is a bug."
msg223365 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-07-17 19:56
@Siona sorry about the delay in getting back to you.  Can someone try this please as I've only got Windows.
msg223437 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2014-07-18 21:28
issue14252 appears to have been a fix for the windows side only.

On Posix the best that could be done here is to catch OSError within Popen.terminate() and Popen.kill() and ignore the problem if there was an error.

We do not have a way to know if the child process exists any longer or even to know if the process with the PID this call is sending the signal to is this Popen instances' child process or if the PID has already been recycled by the OS and used by another unfortunate process.

the bigger question is... should we.  this seems like an API change rather than a bugfix so I'm more inclined to do this in 2.5 only in case someone was relying on the exception to tell them that the process had already died.
msg223495 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2014-07-20 02:42
For Posix (dunno about Windows), calling terminate or kill at the OS level after a poll or wait has already succeeded is a bad idea, because the PID may have been recycled. It is essentially operating on a released resource, similar to calling “os.close” on a closed FD, or freeing unallocated memory.

There is a way to know if the PID is still valid though. Just make sure that successful poll and wait calls invalidate the PID. Then calling terminate or kill, or any other operation that requires the PID, would no longer be valid (or could do nothing if that is more appropriate). Similar to the behaviour of file objects after they are closed: subsequent close calls do nothing; other operations raise an exception.
msg223525 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2014-07-20 17:28
agreed, we could at least do that for the Popen methods.
msg225482 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2014-08-18 05:49
This is more or less a dupe of Issue 6973, which also has a potential patch.
History
Date User Action Args
2022-04-11 14:57:41adminsetgithub: 61333
2015-11-15 22:42:28gregory.p.smithsetstatus: open -> closed
superseder: subprocess.Popen.send_signal doesn't check whether the process has terminated
resolution: duplicate
2014-08-18 05:49:45martin.pantersetmessages: + msg225482
2014-07-20 17:29:02gregory.p.smithsetassignee: gregory.p.smith
stage: needs patch
2014-07-20 17:28:09gregory.p.smithsetmessages: + msg223525
2014-07-20 02:42:50martin.pantersetnosy: + martin.panter
messages: + msg223495
2014-07-18 21:28:38gregory.p.smithsetmessages: + msg223437
2014-07-17 20:16:04ned.deilysetnosy: + gregory.p.smith
2014-07-17 19:56:27BreamoreBoysetnosy: + BreamoreBoy

messages: + msg223365
versions: + Python 3.4, Python 3.5, - Python 2.6, Python 3.2
2013-02-05 09:54:59sionacreate