summaryrefslogtreecommitdiffstats
path: root/Python/frame.c
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-10-07 00:36:39 (GMT)
committerGitHub <noreply@github.com>2022-10-07 00:36:39 (GMT)
commit89e9474327c372d84f465a6949d58a65f1e38719 (patch)
tree25502889955acb5a13975ddf5eee2d55c23c324f /Python/frame.c
parentae2ab478205921cd2f006388c8300bc9272515f3 (diff)
downloadcpython-89e9474327c372d84f465a6949d58a65f1e38719.zip
cpython-89e9474327c372d84f465a6949d58a65f1e38719.tar.gz
cpython-89e9474327c372d84f465a6949d58a65f1e38719.tar.bz2
[3.11] GH-97002: Prevent _PyInterpreterFrames from backing more than one PyFrameObject (GH-98002)
(cherry picked from commit 21a2d9ff550977f2668e2cf1cc15793bf27fa109)
Diffstat (limited to 'Python/frame.c')
-rw-r--r--Python/frame.c29
1 files changed, 23 insertions, 6 deletions
diff --git a/Python/frame.c b/Python/frame.c
index 9f58c20..d8f2f80 100644
--- a/Python/frame.c
+++ b/Python/frame.c
@@ -35,14 +35,31 @@ _PyFrame_MakeAndSetFrameObject(_PyInterpreterFrame *frame)
Py_XDECREF(error_type);
Py_XDECREF(error_value);
Py_XDECREF(error_traceback);
+ return NULL;
}
- else {
- assert(frame->owner != FRAME_OWNED_BY_FRAME_OBJECT);
- assert(frame->owner != FRAME_CLEARED);
- f->f_frame = frame;
- frame->frame_obj = f;
- PyErr_Restore(error_type, error_value, error_traceback);
+ PyErr_Restore(error_type, error_value, error_traceback);
+ if (frame->frame_obj) {
+ // GH-97002: How did we get into this horrible situation? Most likely,
+ // allocating f triggered a GC collection, which ran some code that
+ // *also* created the same frame... while we were in the middle of
+ // creating it! See test_sneaky_frame_object in test_frame.py for a
+ // concrete example.
+ //
+ // Regardless, just throw f away and use that frame instead, since it's
+ // already been exposed to user code. It's actually a bit tricky to do
+ // this, since we aren't backed by a real _PyInterpreterFrame anymore.
+ // Just pretend that we have an owned, cleared frame so frame_dealloc
+ // doesn't make the situation worse:
+ f->f_frame = (_PyInterpreterFrame *)f->_f_frame_data;
+ f->f_frame->owner = FRAME_CLEARED;
+ f->f_frame->frame_obj = f;
+ Py_DECREF(f);
+ return frame->frame_obj;
}
+ assert(frame->owner != FRAME_OWNED_BY_FRAME_OBJECT);
+ assert(frame->owner != FRAME_CLEARED);
+ f->f_frame = frame;
+ frame->frame_obj = f;
return f;
}