mirror of
https://github.com/python/cpython.git
synced 2025-08-17 23:31:09 +00:00
Merged revisions 73708,73738 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73708 | jesse.noller | 2009-06-30 13:11:52 -0400 (Tue, 30 Jun 2009) | 1 line Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes in processes ........ r73738 | r.david.murray | 2009-06-30 22:49:10 -0400 (Tue, 30 Jun 2009) | 2 lines Make punctuation prettier and break up run-on sentence. ........
This commit is contained in:
parent
f37b563c72
commit
17438dc26c
5 changed files with 109 additions and 2 deletions
|
@ -2087,6 +2087,38 @@ Explicitly pass resources to child processes
|
||||||
for i in range(10):
|
for i in range(10):
|
||||||
Process(target=f, args=(lock,)).start()
|
Process(target=f, args=(lock,)).start()
|
||||||
|
|
||||||
|
Beware replacing sys.stdin with a "file like object"
|
||||||
|
|
||||||
|
:mod:`multiprocessing` originally unconditionally called::
|
||||||
|
|
||||||
|
os.close(sys.stdin.fileno())
|
||||||
|
|
||||||
|
in the :meth:`multiprocessing.Process._bootstrap` method --- this resulted
|
||||||
|
in issues with processes-in-processes. This has been changed to::
|
||||||
|
|
||||||
|
sys.stdin.close()
|
||||||
|
sys.stdin = open(os.devnull)
|
||||||
|
|
||||||
|
Which solves the fundamental issue of processes colliding with each other
|
||||||
|
resulting in a bad file descriptor error, but introduces a potential danger
|
||||||
|
to applications which replace :func:`sys.stdin` with a "file-like object"
|
||||||
|
with output buffering. This danger is that if multiple processes call
|
||||||
|
:func:`close()` on this file-like object, it could result in the same
|
||||||
|
data being flushed to the object multiple times, resulting in corruption.
|
||||||
|
|
||||||
|
If you write a file-like object and implement your own caching, you can
|
||||||
|
make it fork-safe by storing the pid whenever you append to the cache,
|
||||||
|
and discarding the cache when the pid changes. For example::
|
||||||
|
|
||||||
|
@property
|
||||||
|
def cache(self):
|
||||||
|
pid = os.getpid()
|
||||||
|
if pid != self._pid:
|
||||||
|
self._pid = pid
|
||||||
|
self._cache = []
|
||||||
|
return self._cache
|
||||||
|
|
||||||
|
For more information, see :issue:`5155`, :issue:`5313` and :issue:`5331`
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
|
@ -220,7 +220,8 @@ class Process(object):
|
||||||
self._children = set()
|
self._children = set()
|
||||||
self._counter = itertools.count(1)
|
self._counter = itertools.count(1)
|
||||||
try:
|
try:
|
||||||
os.close(sys.stdin.fileno())
|
sys.stdin.close()
|
||||||
|
sys.stdin = open(os.devnull)
|
||||||
except (OSError, ValueError):
|
except (OSError, ValueError):
|
||||||
pass
|
pass
|
||||||
_current_process = self
|
_current_process = self
|
||||||
|
|
|
@ -17,6 +17,7 @@ import copy
|
||||||
import socket
|
import socket
|
||||||
import random
|
import random
|
||||||
import logging
|
import logging
|
||||||
|
from StringIO import StringIO
|
||||||
|
|
||||||
|
|
||||||
# Work around broken sem_open implementations
|
# Work around broken sem_open implementations
|
||||||
|
@ -1829,7 +1830,73 @@ class OtherTest(unittest.TestCase):
|
||||||
multiprocessing.connection.answer_challenge,
|
multiprocessing.connection.answer_challenge,
|
||||||
_FakeConnection(), b'abc')
|
_FakeConnection(), b'abc')
|
||||||
|
|
||||||
testcases_other = [OtherTest, TestInvalidHandle]
|
#
|
||||||
|
# Issue 5155, 5313, 5331: Test process in processes
|
||||||
|
# Verifies os.close(sys.stdin.fileno) vs. sys.stdin.close() behavior
|
||||||
|
#
|
||||||
|
|
||||||
|
def _ThisSubProcess(q):
|
||||||
|
try:
|
||||||
|
item = q.get(block=False)
|
||||||
|
except Queue.Empty:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def _TestProcess(q):
|
||||||
|
queue = multiprocessing.Queue()
|
||||||
|
subProc = multiprocessing.Process(target=_ThisSubProcess, args=(queue,))
|
||||||
|
subProc.start()
|
||||||
|
subProc.join()
|
||||||
|
|
||||||
|
def _afunc(x):
|
||||||
|
return x*x
|
||||||
|
|
||||||
|
def pool_in_process():
|
||||||
|
pool = multiprocessing.Pool(processes=4)
|
||||||
|
x = pool.map(_afunc, [1, 2, 3, 4, 5, 6, 7])
|
||||||
|
|
||||||
|
class _file_like(object):
|
||||||
|
def __init__(self, delegate):
|
||||||
|
self._delegate = delegate
|
||||||
|
self._pid = None
|
||||||
|
|
||||||
|
@property
|
||||||
|
def cache(self):
|
||||||
|
pid = os.getpid()
|
||||||
|
# There are no race conditions since fork keeps only the running thread
|
||||||
|
if pid != self._pid:
|
||||||
|
self._pid = pid
|
||||||
|
self._cache = []
|
||||||
|
return self._cache
|
||||||
|
|
||||||
|
def write(self, data):
|
||||||
|
self.cache.append(data)
|
||||||
|
|
||||||
|
def flush(self):
|
||||||
|
self._delegate.write(''.join(self.cache))
|
||||||
|
self._cache = []
|
||||||
|
|
||||||
|
class TestStdinBadfiledescriptor(unittest.TestCase):
|
||||||
|
|
||||||
|
def test_queue_in_process(self):
|
||||||
|
queue = multiprocessing.Queue()
|
||||||
|
proc = multiprocessing.Process(target=_TestProcess, args=(queue,))
|
||||||
|
proc.start()
|
||||||
|
proc.join()
|
||||||
|
|
||||||
|
def test_pool_in_process(self):
|
||||||
|
p = multiprocessing.Process(target=pool_in_process)
|
||||||
|
p.start()
|
||||||
|
p.join()
|
||||||
|
|
||||||
|
def test_flushing(self):
|
||||||
|
sio = StringIO()
|
||||||
|
flike = _file_like(sio)
|
||||||
|
flike.write('foo')
|
||||||
|
proc = multiprocessing.Process(target=lambda: flike.flush())
|
||||||
|
flike.flush()
|
||||||
|
assert sio.getvalue() == 'foo'
|
||||||
|
|
||||||
|
testcases_other = [OtherTest, TestInvalidHandle, TestStdinBadfiledescriptor]
|
||||||
|
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
|
@ -45,6 +45,7 @@ Des Barry
|
||||||
Ulf Bartelt
|
Ulf Bartelt
|
||||||
Nick Bastin
|
Nick Bastin
|
||||||
Jeff Bauer
|
Jeff Bauer
|
||||||
|
Mike Bayer
|
||||||
Michael R Bax
|
Michael R Bax
|
||||||
Anthony Baxter
|
Anthony Baxter
|
||||||
Samuel L. Bayer
|
Samuel L. Bayer
|
||||||
|
@ -178,6 +179,7 @@ Cesar Douady
|
||||||
Dean Draayer
|
Dean Draayer
|
||||||
John DuBois
|
John DuBois
|
||||||
Paul Dubois
|
Paul Dubois
|
||||||
|
Graham Dumpleton
|
||||||
Quinn Dunkan
|
Quinn Dunkan
|
||||||
Robin Dunn
|
Robin Dunn
|
||||||
Luke Dunstan
|
Luke Dunstan
|
||||||
|
@ -536,6 +538,7 @@ Steven Pemberton
|
||||||
Santiago Peresón
|
Santiago Peresón
|
||||||
Mark Perrego
|
Mark Perrego
|
||||||
Trevor Perrin
|
Trevor Perrin
|
||||||
|
Gabriel de Perthuis
|
||||||
Tim Peters
|
Tim Peters
|
||||||
Benjamin Peterson
|
Benjamin Peterson
|
||||||
Chris Petrilli
|
Chris Petrilli
|
||||||
|
|
|
@ -65,6 +65,10 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issues #5155, 5313, 5331: multiprocessing.Process._bootstrap was
|
||||||
|
unconditionally calling "os.close(sys.stdin.fileno())" resulting in file
|
||||||
|
descriptor errors
|
||||||
|
|
||||||
- Issue #6415: Fixed warnings.warn sagfault on bad formatted string.
|
- Issue #6415: Fixed warnings.warn sagfault on bad formatted string.
|
||||||
|
|
||||||
- Issue #6344: Fixed a crash of mmap.read() when passed a negative argument.
|
- Issue #6344: Fixed a crash of mmap.read() when passed a negative argument.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue