Issue 31404: undefined behavior and crashes in case of a bad sys.modules (original) (raw)

Created on 2017-09-09 17:36 by Oren Milman, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 3565 merged eric.snow,2017-09-14 06:23
PR 3606 open eric.snow,2017-09-15 22:51
Messages (7)
msg301783 - (view) Author: Oren Milman (Oren Milman) * Date: 2017-09-09 17:36
at least on my Windows, the following code: import sys sys.modules = [] - when run interactively, causes weird behavior, e.g. exit() doesn't exit the interpreter, and print() doesn't print. then, pressing Ctrl+C causes 'Assertion failed: !PyErr_Occurred(), file ..\Objects\call.c, line 803' - when run as a script, causes PyImport_Cleanup() to raise a negative ref count Fatal Python error. (this is because PyImport_Cleanup() (in Python/import.c) assumes that PyImport_GetModuleDict() returned a dict.) IIUC, this bug was introduced in https://github.com/python/cpython/pull/1638 (which resolved #28411).
msg301926 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2017-09-11 23:20
I'm looking into this.
msg301936 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2017-09-12 02:47
This is pretty messy. :( Ideally we would disallow setting sys.modules to anything except a dict (or perhaps any mapping). However, we don't have that option currently (see https://github.com/ericsnowcurrently/cpython/tree/sys-module). In the meantime we have to fix up all the places that are expecting a mapping. Part of the problem here is that a number of places fail silently, as evidenced by the failures Oren pointed out...
msg301949 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-09-12 11:18
I haven't finished reviewing PR 1638. I'm not sure that this change is worth. It breaks a code that assumes that sys.module is a dict, and I afraid it slows down importing. Maybe revert this change until resolving all problems?
msg302001 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2017-09-12 22:54
> I haven't finished reviewing PR 1638. I'm not sure that this change > is worth. It breaks a code that assumes that sys.module is a dict, > and I afraid it slows down importing. Maybe revert this change until > resolving all problems? Yeah, I'm leaning that way myself. I'll take another look later today or tomorrow. FWIW, the likelihood of this causing problems to actual users is extremely low, so the urgency to fix this isn't high. Still, I don't want this to linger. As I said before, ideally we would prevent non-mappings from getting assigned to sys.modules. One alternative would be to introduce sys.__modules__ and fall back to it if sys.modules is invalid.
msg302027 - (view) Author: Alyssa Coghlan (ncoghlan) * (Python committer) Date: 2017-09-13 01:55
Introducing sys.__modules__ doesn't solve the problem, since you'd be able to recreate the problems Oren reports just by messing with that as well as with sys.modules. And we try reasonable hard to protect users from completely breaking the interpreter just by assigning nonsense to sys module attributes. So my recommendation would be to revert #28411, and make it clearer that the purpose of the interpreter state attribute is to defend against nonsensical rebinding of sys.modules, and that it can't be removed unless/until the sys module is switched to a custom type that enforces type checks on some of its attributes.
msg302147 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2017-09-14 06:46
New changeset 93c92f7d1dbb6e7e472f1d0444c6968858113de2 by Eric Snow in branch 'master': bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) https://github.com/python/cpython/commit/93c92f7d1dbb6e7e472f1d0444c6968858113de2
History
Date User Action Args
2022-04-11 14:58:52 admin set github: 75585
2017-09-15 22:51:14 eric.snow set pull_requests: + <pull%5Frequest3597>
2017-09-15 22:50:59 eric.snow set status: open -> closedresolution: fixedstage: patch review -> resolved
2017-09-14 06:46:06 eric.snow set messages: +
2017-09-14 06:23:47 eric.snow set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest3554>
2017-09-13 01:55:24 ncoghlan set messages: +
2017-09-12 22:54:23 eric.snow set nosy: + brett.cannon, ncoghlanmessages: +
2017-09-12 11🔞22 serhiy.storchaka set messages: +
2017-09-12 02:47:28 eric.snow set messages: +
2017-09-11 23:20:51 eric.snow set assignee: eric.snowmessages: +
2017-09-09 19:24:37 serhiy.storchaka set nosy: + eric.snow, serhiy.storchaka
2017-09-09 17:36:25 Oren Milman create