mirror of
https://github.com/python/cpython.git
synced 2025-10-13 10:23:28 +00:00
gh-125017: Fix crash on premature access to classmethod/staticmethod annotations (#125636)
This commit is contained in:
parent
04d6dd23e2
commit
f203d1cb52
3 changed files with 43 additions and 14 deletions
|
@ -1220,30 +1220,43 @@ functools_wraps(PyObject *wrapper, PyObject *wrapped)
|
|||
// Used for wrapping __annotations__ and __annotate__ on classmethod
|
||||
// and staticmethod objects.
|
||||
static PyObject *
|
||||
descriptor_get_wrapped_attribute(PyObject *wrapped, PyObject *dict, PyObject *name)
|
||||
descriptor_get_wrapped_attribute(PyObject *wrapped, PyObject *obj, PyObject *name)
|
||||
{
|
||||
PyObject *dict = PyObject_GenericGetDict(obj, NULL);
|
||||
if (dict == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
PyObject *res;
|
||||
if (PyDict_GetItemRef(dict, name, &res) < 0) {
|
||||
Py_DECREF(dict);
|
||||
return NULL;
|
||||
}
|
||||
if (res != NULL) {
|
||||
Py_DECREF(dict);
|
||||
return res;
|
||||
}
|
||||
res = PyObject_GetAttr(wrapped, name);
|
||||
if (res == NULL) {
|
||||
Py_DECREF(dict);
|
||||
return NULL;
|
||||
}
|
||||
if (PyDict_SetItem(dict, name, res) < 0) {
|
||||
Py_DECREF(dict);
|
||||
Py_DECREF(res);
|
||||
return NULL;
|
||||
}
|
||||
Py_DECREF(dict);
|
||||
return res;
|
||||
}
|
||||
|
||||
static int
|
||||
descriptor_set_wrapped_attribute(PyObject *dict, PyObject *name, PyObject *value,
|
||||
descriptor_set_wrapped_attribute(PyObject *oobj, PyObject *name, PyObject *value,
|
||||
char *type_name)
|
||||
{
|
||||
PyObject *dict = PyObject_GenericGetDict(oobj, NULL);
|
||||
if (dict == NULL) {
|
||||
return -1;
|
||||
}
|
||||
if (value == NULL) {
|
||||
if (PyDict_DelItem(dict, name) < 0) {
|
||||
if (PyErr_ExceptionMatches(PyExc_KeyError)) {
|
||||
|
@ -1251,14 +1264,18 @@ descriptor_set_wrapped_attribute(PyObject *dict, PyObject *name, PyObject *value
|
|||
PyErr_Format(PyExc_AttributeError,
|
||||
"'%.200s' object has no attribute '%U'",
|
||||
type_name, name);
|
||||
return -1;
|
||||
}
|
||||
else {
|
||||
Py_DECREF(dict);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
Py_DECREF(dict);
|
||||
return 0;
|
||||
}
|
||||
else {
|
||||
Py_DECREF(dict);
|
||||
return PyDict_SetItem(dict, name, value);
|
||||
}
|
||||
}
|
||||
|
@ -1380,28 +1397,26 @@ static PyObject *
|
|||
cm_get___annotations__(PyObject *self, void *closure)
|
||||
{
|
||||
classmethod *cm = _PyClassMethod_CAST(self);
|
||||
return descriptor_get_wrapped_attribute(cm->cm_callable, cm->cm_dict, &_Py_ID(__annotations__));
|
||||
return descriptor_get_wrapped_attribute(cm->cm_callable, self, &_Py_ID(__annotations__));
|
||||
}
|
||||
|
||||
static int
|
||||
cm_set___annotations__(PyObject *self, PyObject *value, void *closure)
|
||||
{
|
||||
classmethod *cm = _PyClassMethod_CAST(self);
|
||||
return descriptor_set_wrapped_attribute(cm->cm_dict, &_Py_ID(__annotations__), value, "classmethod");
|
||||
return descriptor_set_wrapped_attribute(self, &_Py_ID(__annotations__), value, "classmethod");
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
cm_get___annotate__(PyObject *self, void *closure)
|
||||
{
|
||||
classmethod *cm = _PyClassMethod_CAST(self);
|
||||
return descriptor_get_wrapped_attribute(cm->cm_callable, cm->cm_dict, &_Py_ID(__annotate__));
|
||||
return descriptor_get_wrapped_attribute(cm->cm_callable, self, &_Py_ID(__annotate__));
|
||||
}
|
||||
|
||||
static int
|
||||
cm_set___annotate__(PyObject *self, PyObject *value, void *closure)
|
||||
{
|
||||
classmethod *cm = _PyClassMethod_CAST(self);
|
||||
return descriptor_set_wrapped_attribute(cm->cm_dict, &_Py_ID(__annotate__), value, "classmethod");
|
||||
return descriptor_set_wrapped_attribute(self, &_Py_ID(__annotate__), value, "classmethod");
|
||||
}
|
||||
|
||||
|
||||
|
@ -1615,28 +1630,26 @@ static PyObject *
|
|||
sm_get___annotations__(PyObject *self, void *closure)
|
||||
{
|
||||
staticmethod *sm = _PyStaticMethod_CAST(self);
|
||||
return descriptor_get_wrapped_attribute(sm->sm_callable, sm->sm_dict, &_Py_ID(__annotations__));
|
||||
return descriptor_get_wrapped_attribute(sm->sm_callable, self, &_Py_ID(__annotations__));
|
||||
}
|
||||
|
||||
static int
|
||||
sm_set___annotations__(PyObject *self, PyObject *value, void *closure)
|
||||
{
|
||||
staticmethod *sm = _PyStaticMethod_CAST(self);
|
||||
return descriptor_set_wrapped_attribute(sm->sm_dict, &_Py_ID(__annotations__), value, "staticmethod");
|
||||
return descriptor_set_wrapped_attribute(self, &_Py_ID(__annotations__), value, "staticmethod");
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
sm_get___annotate__(PyObject *self, void *closure)
|
||||
{
|
||||
staticmethod *sm = _PyStaticMethod_CAST(self);
|
||||
return descriptor_get_wrapped_attribute(sm->sm_callable, sm->sm_dict, &_Py_ID(__annotate__));
|
||||
return descriptor_get_wrapped_attribute(sm->sm_callable, self, &_Py_ID(__annotate__));
|
||||
}
|
||||
|
||||
static int
|
||||
sm_set___annotate__(PyObject *self, PyObject *value, void *closure)
|
||||
{
|
||||
staticmethod *sm = _PyStaticMethod_CAST(self);
|
||||
return descriptor_set_wrapped_attribute(sm->sm_dict, &_Py_ID(__annotate__), value, "staticmethod");
|
||||
return descriptor_set_wrapped_attribute(self, &_Py_ID(__annotate__), value, "staticmethod");
|
||||
}
|
||||
|
||||
static PyGetSetDef sm_getsetlist[] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue