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: _multiprocessing.Connection() doesn't check handle
Type: crash Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jnoller Nosy List: ajaksu2, amaury.forgeotdarc, jnoller, ocean-city, roudkerk, vstinner
Priority: critical Keywords: needs review, patch

Created on 2008-07-08 22:45 by vstinner, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue_3321.patch jnoller, 2009-01-19 15:10
Messages (19)
msg69446 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2008-07-08 22:45
_multiprocessing.Connection() allows to use any positive (or nul) 
number has socket handle. If you use an invalid file descriptor, 
poll() method may crash (especially for big positive integer). 
Example:

>>> import _multiprocessing
>>> obj = _multiprocessing.Connection(44977608)
>>> obj.poll()
Erreur de segmentation (core dumped)

Fix: use fstat() to make sure that the handle is valid. Attached patch 
implements this feature.

Another solution would be to reuse code from Modules/selectmodule.c.
msg69448 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2008-07-08 23:54
Ooops, there is a typo in my last patch: it's "struct stat statbuf;" 
and not "struct stat *statbuf;"! Here is a new version of the patch.
msg70425 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2008-07-30 12:06
From Victor:
Ok, here is a patch for test_multiprocessing.py.
- TestClosedFile.test_open() verify that Connection() rejects closed file
descriptor
- TestClosedFile.test_operations() verify that Connection() raises IOError 
for
operations on closed file

I don't know if Connection() is a socket or a pipe. Both should be tested.
msg70426 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2008-07-30 12:41
I'm quite sure that neither the patch nor the new test make sense on
Windows. A file handle is not a file descriptor!
msg73158 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2008-09-13 01:00
Without someone offering some windows help, I won't be able to do a patch. 
My windows fu is lacking.
msg73172 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2008-09-13 09:36
Note that Windows does not crash in such cases:

>>> import socket, _multiprocessing
>>> obj = _multiprocessing.Connection(44977608)
>>> obj.poll()
IOError: [Errno 10038] An operation was attempted on something that is
not a socket

>>> s = socket.socket()
>>> obj = _multiprocessing.Connection(s.fileno())
>>> obj.poll()
False
>>> s.close()
>>> obj.poll()
IOError: [Errno 10038] An operation was attempted on something that is
not a socket


So some "#ifndef MS_WINDOWS" should be enough...
msg73177 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2008-09-13 12:02
I thought socket handle on BeOS is not file descripter neighter. (I'm
not sure BeOS is still supported or not)

>Another solution would be to reuse code from Modules/selectmodule.c.

You mean this code?

if (v < 0 || v >= FD_SETSIZE) {
	PyErr_SetString(PyExc_ValueError,
		    "filedescriptor out of range in select()");
	goto finally;
}

Cygwin's thread is somewhat troublesome, so I'm not sure I can test this
issue on cygwin but, (I'm now building python --with-threads) if clash
happens in conn_poll(_multiprocessing/connection.h)'s FD_SET, I think
this kind of check is needed... (At least safer)
msg73192 - (view) Author: Hirokazu Yamamoto (ocean-city) * (Python committer) Date: 2008-09-13 15:44
I've implemented "another solution". test_open() in
test_multithreading.patch won't pass though.... It'll raise error in
conn.poll() not in constructor.

$ ./dummy.exe b.py
Traceback (most recent call last):
  File "b.py", line 6, in <module>
    conn.poll()
IOError: [Errno 9] Bad file descriptor

test_operations() will pass.
msg80169 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-19 14:46
Attached is a patch+test for this condition, which is not used if we're 
running on windows.
msg80170 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-19 14:56
Curse you hard-tabs. Here's the new patch w/ fixed comment
msg80174 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-19 15:10
Removed raise TestSkip per code review from bpeterson
msg80175 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-19 15:12
Committed patch as r68768 to python-trunk
msg80177 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2009-01-19 15:22
@jnoller: Hey, you removed my patch! My patch used fstat() in 
Connection constructor, whereas your just check file descriptor bounds 
in the poll() method. And what is the "save" new argument? Is it 
related to this issue?
msg80178 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-19 15:24
The save was needed for the Py_BLOCK_THREADS call.
msg80179 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-19 15:26
Ugh, I didn't mean to chuck your original patch, but it also wasn't 
correct for win32

Additionally, if you close the handle from underneath it, it behaves 
properly:

>>> obj.poll()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IOError: [Errno 9] Bad file descriptor
>>>
msg80184 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2009-01-19 15:47
Why don't you check the file descriptor directly in connection_new()? 
conn->handle is read only and so can't be changed before the call to 
poll(). So other methods will also be "protected" and the error will 
be raised earlier.
msg80185 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-19 15:49
That's an enhancement - not a bad idea, I just noticed that this issue is 
pretty close to issue http://bugs.python.org/issue3311 as well.
msg80186 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2009-01-19 15:56
jnoller> issue #3311

Oh, I forgot this issue :-) But the fix doesn't solve #3311, because 
it is disabled on Windows and only protect poll() method.
msg80187 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-01-19 16:05
Oh, I agree - I think we should update 3311 with the enhancement to move 
the check to connection_new
History
Date User Action Args
2022-04-11 14:56:36adminsetgithub: 47571
2009-01-19 16:05:33jnollersetmessages: + msg80187
2009-01-19 15:56:19vstinnersetmessages: + msg80186
2009-01-19 15:49:03jnollersetmessages: + msg80185
2009-01-19 15:47:13vstinnersetmessages: + msg80184
2009-01-19 15:41:40jnollersetstatus: open -> closed
resolution: fixed
2009-01-19 15:26:35jnollersetmessages: + msg80179
2009-01-19 15:24:15jnollersetmessages: + msg80178
2009-01-19 15:22:23vstinnersetmessages: + msg80177
2009-01-19 15:12:46jnollersetmessages: + msg80175
2009-01-19 15:10:50jnollersetfiles: - issue_3321.patch
2009-01-19 15:10:45jnollersetfiles: + issue_3321.patch
messages: + msg80174
2009-01-19 14:56:25jnollersetfiles: - issue_3321.patch
2009-01-19 14:56:18jnollersetfiles: + issue_3321.patch
messages: + msg80170
2009-01-19 14:46:47jnollersetfiles: - another_solution.patch
2009-01-19 14:46:43jnollersetfiles: - test_multiprocessing.patch
2009-01-19 14:46:40jnollersetfiles: - _multiprocessing_connection.patch
2009-01-19 14:46:22jnollersetfiles: + issue_3321.patch
messages: + msg80169
2008-09-13 15:44:12ocean-citysetfiles: + another_solution.patch
messages: + msg73192
2008-09-13 12:10:33ocean-citysetkeywords: + needs review
2008-09-13 12:02:20ocean-citysetkeywords: - needs review
nosy: + ocean-city
messages: + msg73177
2008-09-13 09:36:04amaury.forgeotdarcsetmessages: + msg73172
2008-09-13 01:00:41jnollersetmessages: + msg73158
2008-09-13 00:46:36benjamin.petersonsetpriority: high -> critical
keywords: + needs review
2008-09-12 23:51:17ajaksu2setnosy: + ajaksu2
2008-07-30 12:41:19amaury.forgeotdarcsetnosy: + amaury.forgeotdarc
messages: + msg70426
2008-07-30 12:06:16jnollersetfiles: + test_multiprocessing.patch
messages: + msg70425
2008-07-19 13:02:56georg.brandlsetpriority: high
2008-07-15 13:34:45jnollersetnosy: + roudkerk
2008-07-15 13:34:36jnollersetassignee: jnoller
nosy: + jnoller
2008-07-14 13:01:05vstinnersetfiles: - _multiprocessing_connection.patch
2008-07-08 23:54:38vstinnersetfiles: + _multiprocessing_connection.patch
messages: + msg69448
2008-07-08 22:45:18vstinnersettype: crash
2008-07-08 22:45:09vstinnercreate