gh-128714: Fix function object races in __annotate__, __annotations__ and __type_params__ in free-threading build (#129016)

This commit is contained in:
Xuanteng Huang 2025-02-06 22:40:50 +08:00 committed by GitHub
parent 63f0406d5a
commit 55f17b77c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 327 additions and 44 deletions

View file

@ -2,11 +2,11 @@
/* Function object implementation */
#include "Python.h"
#include "pycore_dict.h" // _Py_INCREF_DICT()
#include "pycore_long.h" // _PyLong_GetOne()
#include "pycore_modsupport.h" // _PyArg_NoKeywords()
#include "pycore_object.h" // _PyObject_GC_UNTRACK()
#include "pycore_pyerrors.h" // _PyErr_Occurred()
#include "pycore_dict.h" // _Py_INCREF_DICT()
#include "pycore_long.h" // _PyLong_GetOne()
#include "pycore_modsupport.h" // _PyArg_NoKeywords()
#include "pycore_object.h" // _PyObject_GC_UNTRACK()
#include "pycore_pyerrors.h" // _PyErr_Occurred()
static const char *
@ -635,6 +635,13 @@ static PyMemberDef func_memberlist[] = {
{NULL} /* Sentinel */
};
/*[clinic input]
class function "PyFunctionObject *" "&PyFunction_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=70af9c90aa2e71b0]*/
#include "clinic/funcobject.c.h"
static PyObject *
func_get_code(PyObject *self, void *Py_UNUSED(ignored))
{
@ -824,32 +831,46 @@ func_set_kwdefaults(PyObject *self, PyObject *value, void *Py_UNUSED(ignored))
return 0;
}
/*[clinic input]
@critical_section
@getter
function.__annotate__
Get the code object for a function.
[clinic start generated code]*/
static PyObject *
func_get_annotate(PyObject *self, void *Py_UNUSED(ignored))
function___annotate___get_impl(PyFunctionObject *self)
/*[clinic end generated code: output=5ec7219ff2bda9e6 input=7f3db11e3c3329f3]*/
{
PyFunctionObject *op = _PyFunction_CAST(self);
if (op->func_annotate == NULL) {
if (self->func_annotate == NULL) {
Py_RETURN_NONE;
}
return Py_NewRef(op->func_annotate);
return Py_NewRef(self->func_annotate);
}
/*[clinic input]
@critical_section
@setter
function.__annotate__
[clinic start generated code]*/
static int
func_set_annotate(PyObject *self, PyObject *value, void *Py_UNUSED(ignored))
function___annotate___set_impl(PyFunctionObject *self, PyObject *value)
/*[clinic end generated code: output=05b7dfc07ada66cd input=eb6225e358d97448]*/
{
PyFunctionObject *op = _PyFunction_CAST(self);
if (value == NULL) {
PyErr_SetString(PyExc_TypeError,
"__annotate__ cannot be deleted");
return -1;
}
if (Py_IsNone(value)) {
Py_XSETREF(op->func_annotate, value);
Py_XSETREF(self->func_annotate, value);
return 0;
}
else if (PyCallable_Check(value)) {
Py_XSETREF(op->func_annotate, Py_XNewRef(value));
Py_CLEAR(op->func_annotations);
Py_XSETREF(self->func_annotate, Py_XNewRef(value));
Py_CLEAR(self->func_annotations);
return 0;
}
else {
@ -859,24 +880,39 @@ func_set_annotate(PyObject *self, PyObject *value, void *Py_UNUSED(ignored))
}
}
/*[clinic input]
@critical_section
@getter
function.__annotations__
Dict of annotations in a function object.
[clinic start generated code]*/
static PyObject *
func_get_annotations(PyObject *self, void *Py_UNUSED(ignored))
function___annotations___get_impl(PyFunctionObject *self)
/*[clinic end generated code: output=a4cf4c884c934cbb input=92643d7186c1ad0c]*/
{
PyFunctionObject *op = _PyFunction_CAST(self);
if (op->func_annotations == NULL &&
(op->func_annotate == NULL || !PyCallable_Check(op->func_annotate))) {
op->func_annotations = PyDict_New();
if (op->func_annotations == NULL)
PyObject *d = NULL;
if (self->func_annotations == NULL &&
(self->func_annotate == NULL || !PyCallable_Check(self->func_annotate))) {
self->func_annotations = PyDict_New();
if (self->func_annotations == NULL)
return NULL;
}
PyObject *d = func_get_annotation_dict(op);
d = func_get_annotation_dict(self);
return Py_XNewRef(d);
}
/*[clinic input]
@critical_section
@setter
function.__annotations__
[clinic start generated code]*/
static int
func_set_annotations(PyObject *self, PyObject *value, void *Py_UNUSED(ignored))
function___annotations___set_impl(PyFunctionObject *self, PyObject *value)
/*[clinic end generated code: output=a61795d4a95eede4 input=5302641f686f0463]*/
{
PyFunctionObject *op = _PyFunction_CAST(self);
if (value == Py_None)
value = NULL;
/* Legal to del f.func_annotations.
@ -887,35 +923,49 @@ func_set_annotations(PyObject *self, PyObject *value, void *Py_UNUSED(ignored))
"__annotations__ must be set to a dict object");
return -1;
}
Py_XSETREF(op->func_annotations, Py_XNewRef(value));
Py_CLEAR(op->func_annotate);
Py_XSETREF(self->func_annotations, Py_XNewRef(value));
Py_CLEAR(self->func_annotate);
return 0;
}
/*[clinic input]
@critical_section
@getter
function.__type_params__
Get the declared type parameters for a function.
[clinic start generated code]*/
static PyObject *
func_get_type_params(PyObject *self, void *Py_UNUSED(ignored))
function___type_params___get_impl(PyFunctionObject *self)
/*[clinic end generated code: output=eb844d7ffca517a8 input=0864721484293724]*/
{
PyFunctionObject *op = _PyFunction_CAST(self);
if (op->func_typeparams == NULL) {
if (self->func_typeparams == NULL) {
return PyTuple_New(0);
}
assert(PyTuple_Check(op->func_typeparams));
return Py_NewRef(op->func_typeparams);
assert(PyTuple_Check(self->func_typeparams));
return Py_NewRef(self->func_typeparams);
}
/*[clinic input]
@critical_section
@setter
function.__type_params__
[clinic start generated code]*/
static int
func_set_type_params(PyObject *self, PyObject *value, void *Py_UNUSED(ignored))
function___type_params___set_impl(PyFunctionObject *self, PyObject *value)
/*[clinic end generated code: output=038b4cda220e56fb input=3862fbd4db2b70e8]*/
{
/* Not legal to del f.__type_params__ or to set it to anything
* other than a tuple object. */
PyFunctionObject *op = _PyFunction_CAST(self);
if (value == NULL || !PyTuple_Check(value)) {
PyErr_SetString(PyExc_TypeError,
"__type_params__ must be set to a tuple");
return -1;
}
Py_XSETREF(op->func_typeparams, Py_NewRef(value));
Py_XSETREF(self->func_typeparams, Py_NewRef(value));
return 0;
}
@ -934,22 +984,15 @@ static PyGetSetDef func_getsetlist[] = {
{"__code__", func_get_code, func_set_code},
{"__defaults__", func_get_defaults, func_set_defaults},
{"__kwdefaults__", func_get_kwdefaults, func_set_kwdefaults},
{"__annotations__", func_get_annotations, func_set_annotations},
{"__annotate__", func_get_annotate, func_set_annotate},
FUNCTION___ANNOTATIONS___GETSETDEF
FUNCTION___ANNOTATE___GETSETDEF
{"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict},
{"__name__", func_get_name, func_set_name},
{"__qualname__", func_get_qualname, func_set_qualname},
{"__type_params__", func_get_type_params, func_set_type_params},
FUNCTION___TYPE_PARAMS___GETSETDEF
{NULL} /* Sentinel */
};
/*[clinic input]
class function "PyFunctionObject *" "&PyFunction_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=70af9c90aa2e71b0]*/
#include "clinic/funcobject.c.h"
/* function.__new__() maintains the following invariants for closures.
The closure must correspond to the free variables of the code object.