Skip to content

bpo-41194: The _ast module cannot be loaded more than once #21290

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix a crash in the ``_ast`` module: it can no longer be loaded more than once.
It now uses a global state rather than a module state.
71 changes: 32 additions & 39 deletions Parser/asdl_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ def visitModule(self, mod):
Py_ssize_t i, numfields = 0;
int res = -1;
PyObject *key, *value, *fields;
astmodulestate *state = astmodulestate_global;
astmodulestate *state = get_global_ast_state();
if (_PyObject_LookupAttr((PyObject*)Py_TYPE(self), state->_fields, &fields) < 0) {
goto cleanup;
}
Expand Down Expand Up @@ -760,7 +760,7 @@ def visitModule(self, mod):
static PyObject *
ast_type_reduce(PyObject *self, PyObject *unused)
{
astmodulestate *state = astmodulestate_global;
astmodulestate *state = get_global_ast_state();
PyObject *dict;
if (_PyObject_LookupAttr(self, state->__dict__, &dict) < 0) {
return NULL;
Expand Down Expand Up @@ -971,19 +971,7 @@ def visitModule(self, mod):

self.emit("static int init_types(void)",0)
self.emit("{", 0)
self.emit("PyObject *module = PyState_FindModule(&_astmodule);", 1)
self.emit("if (module == NULL) {", 1)
self.emit("module = PyModule_Create(&_astmodule);", 2)
self.emit("if (!module) {", 2)
self.emit("return 0;", 3)
self.emit("}", 2)
self.emit("if (PyState_AddModule(module, &_astmodule) < 0) {", 2)
self.emit("return 0;", 3)
self.emit("}", 2)
self.emit("}", 1)
self.emit("", 0)

self.emit("astmodulestate *state = get_ast_state(module);", 1)
self.emit("astmodulestate *state = get_global_ast_state();", 1)
self.emit("if (state->initialized) return 1;", 1)
self.emit("if (init_identifiers(state) < 0) return 0;", 1)
self.emit("state->AST_type = PyType_FromSpec(&AST_type_spec);", 1)
Expand Down Expand Up @@ -1061,13 +1049,16 @@ def visitModule(self, mod):
self.emit("PyMODINIT_FUNC", 0)
self.emit("PyInit__ast(void)", 0)
self.emit("{", 0)
self.emit("PyObject *m;", 1)
self.emit("if (!init_types()) return NULL;", 1)
self.emit('m = PyState_FindModule(&_astmodule);', 1)
self.emit("if (!m) return NULL;", 1)
self.emit("PyObject *m = PyModule_Create(&_astmodule);", 1)
self.emit("if (!m) {", 1)
self.emit("return NULL;", 2)
self.emit("}", 1)
self.emit('astmodulestate *state = get_ast_state(m);', 1)
self.emit('', 1)

self.emit("if (!init_types()) {", 1)
self.emit("goto error;", 2)
self.emit("}", 1)
self.emit('if (PyModule_AddObject(m, "AST", state->AST_type) < 0) {', 1)
self.emit('goto error;', 2)
self.emit('}', 1)
Expand All @@ -1084,6 +1075,7 @@ def visitModule(self, mod):
for dfn in mod.dfns:
self.visit(dfn)
self.emit("return m;", 1)
self.emit("", 0)
self.emit("error:", 0)
self.emit("Py_DECREF(m);", 1)
self.emit("return NULL;", 1)
Expand Down Expand Up @@ -1263,9 +1255,11 @@ class PartingShots(StaticVisitor):
CODE = """
PyObject* PyAST_mod2obj(mod_ty t)
{
if (!init_types())
if (!init_types()) {
return NULL;
astmodulestate *state = astmodulestate_global;
}

astmodulestate *state = get_global_ast_state();
return ast2obj_mod(state, t);
}

Expand All @@ -1279,16 +1273,17 @@ class PartingShots(StaticVisitor):
return NULL;
}

astmodulestate *state = astmodulestate_global;
astmodulestate *state = get_global_ast_state();
PyObject *req_type[3];
req_type[0] = state->Module_type;
req_type[1] = state->Expression_type;
req_type[2] = state->Interactive_type;

assert(0 <= mode && mode <= 2);

if (!init_types())
if (!init_types()) {
return NULL;
}

isinstance = PyObject_IsInstance(ast, req_type[mode]);
if (isinstance == -1)
Expand All @@ -1308,9 +1303,11 @@ class PartingShots(StaticVisitor):

int PyAST_Check(PyObject* obj)
{
if (!init_types())
if (!init_types()) {
return -1;
astmodulestate *state = astmodulestate_global;
}

astmodulestate *state = get_global_ast_state();
return PyObject_IsInstance(obj, state->AST_type);
}
"""
Expand Down Expand Up @@ -1361,13 +1358,12 @@ def generate_module_def(f, mod):
f.write(' PyObject *' + s + ';\n')
f.write('} astmodulestate;\n\n')
f.write("""
static astmodulestate global_ast_state;

static astmodulestate *
get_ast_state(PyObject *module)
get_ast_state(PyObject *Py_UNUSED(module))
{
assert(module != NULL);
void *state = PyModule_GetState(module);
assert(state != NULL);
return (astmodulestate *)state;
return &global_ast_state;
}

static int astmodule_clear(PyObject *module)
Expand Down Expand Up @@ -1396,17 +1392,14 @@ def generate_module_def(f, mod):

static struct PyModuleDef _astmodule = {
PyModuleDef_HEAD_INIT,
"_ast",
NULL,
sizeof(astmodulestate),
NULL,
NULL,
astmodule_traverse,
astmodule_clear,
astmodule_free,
.m_name = "_ast",
.m_size = -1,
.m_traverse = astmodule_traverse,
.m_clear = astmodule_clear,
.m_free = astmodule_free,
};

#define astmodulestate_global get_ast_state(PyState_FindModule(&_astmodule))
#define get_global_ast_state() (&global_ast_state)

""")
f.write('static int init_identifiers(astmodulestate *state)\n')
Expand Down
70 changes: 32 additions & 38 deletions Python/Python-ast.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.