]> granicus.if.org Git - python/commitdiff
Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing
authorRichard Oudkerk <shibturn@gmail.com>
Tue, 14 Aug 2012 10:41:32 +0000 (11:41 +0100)
committerRichard Oudkerk <shibturn@gmail.com>
Tue, 14 Aug 2012 10:41:32 +0000 (11:41 +0100)
on Windows without the "if __name__ == '__main__'" idiom.

Lib/multiprocessing/forking.py
Lib/test/mp_fork_bomb.py [new file with mode: 0644]
Lib/test/test_multiprocessing.py
Misc/NEWS

index 4e24d6a10fa28dcfde4e9f9e0040108be8940d14..bc8ac44c22e0f9a1bc8a11a1e0139650b7840813 100644 (file)
@@ -331,7 +331,7 @@ else:
         '''
         Returns prefix of command line used for spawning a child process
         '''
-        if process.current_process()._identity==() and is_forking(sys.argv):
+        if getattr(process.current_process(), '_inheriting', False):
             raise RuntimeError('''
             Attempt to start a new process before the current process
             has finished its bootstrapping phase.
diff --git a/Lib/test/mp_fork_bomb.py b/Lib/test/mp_fork_bomb.py
new file mode 100644 (file)
index 0000000..908afe3
--- /dev/null
@@ -0,0 +1,13 @@
+import multiprocessing, sys
+
+def foo():
+    print("123")
+
+# Because "if __name__ == '__main__'" is missing this will not work
+# correctly on Windows.  However, we should get a RuntimeError rather
+# than the Windows equivalent of a fork bomb.
+
+p = multiprocessing.Process(target=foo)
+p.start()
+p.join()
+sys.exit(p.exitcode)
index 847deb41b2a26d348d75ff1bf345cfb4ea7e7e65..ab6d36a0f090dd42c855f6e8f5dda28c9d5168d3 100644 (file)
@@ -18,6 +18,7 @@ import socket
 import random
 import logging
 import test.support
+import test.script_helper
 
 
 # Skip tests if _multiprocessing wasn't built.
@@ -2429,9 +2430,29 @@ class TestTimeouts(unittest.TestCase):
         finally:
             socket.setdefaulttimeout(old_timeout)
 
+#
+# Test what happens with no "if __name__ == '__main__'"
+#
+
+class TestNoForkBomb(unittest.TestCase):
+    def test_noforkbomb(self):
+        name = os.path.join(os.path.dirname(__file__), 'mp_fork_bomb.py')
+        if WIN32:
+            rc, out, err = test.script_helper.assert_python_failure(name)
+            self.assertEqual('', out.decode('ascii'))
+            self.assertIn('RuntimeError', err.decode('ascii'))
+        else:
+            rc, out, err = test.script_helper.assert_python_ok(name)
+            self.assertEqual('123', out.decode('ascii').rstrip())
+            self.assertEqual('', err.decode('ascii'))
+
+#
+#
+#
+
 testcases_other = [OtherTest, TestInvalidHandle, TestInitializers,
                    TestStdinBadfiledescriptor, TestInvalidFamily,
-                   TestTimeouts]
+                   TestTimeouts, TestNoForkBomb]
 
 #
 #
index 30e6b967864e20891b57930099fc203902b67c80..5d69e955f61a7c7d559ea74296d9a5a8f4d03069 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -101,6 +101,10 @@ Core and Builtins
 Library
 -------
 
+- Issue #15646: Prevent equivalent of a fork bomb when using
+  multiprocessing on Windows without the "if __name__ == '__main__'"
+  idiom.
+
 - Issue #15424: Add a __sizeof__ implementation for array objects.
   Patch by Ludwig Hähne.