summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorDino Viehland <dinoviehland@meta.com>2024-05-06 23:31:09 (GMT)
committerGitHub <noreply@github.com>2024-05-06 23:31:09 (GMT)
commit636b8d94c91324c7e49a7cfe914f162690adf488 (patch)
treef0c2496f522a9493d50ce09483c96a3187162c0f /Objects
parent430945db4c5589197c6d18462e89ca5ae9e38ba6 (diff)
downloadcpython-636b8d94c91324c7e49a7cfe914f162690adf488.zip
cpython-636b8d94c91324c7e49a7cfe914f162690adf488.tar.gz
cpython-636b8d94c91324c7e49a7cfe914f162690adf488.tar.bz2
gh-112075: Fix race in constructing dict for instance (#118499)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c140
-rw-r--r--Objects/object.c4
2 files changed, 74 insertions, 70 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 3e662e0..b0fce09 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -924,16 +924,15 @@ new_dict(PyInterpreterState *interp,
return (PyObject *)mp;
}
-/* Consumes a reference to the keys object */
static PyObject *
new_dict_with_shared_keys(PyInterpreterState *interp, PyDictKeysObject *keys)
{
size_t size = shared_keys_usable_size(keys);
PyDictValues *values = new_values(size);
if (values == NULL) {
- dictkeys_decref(interp, keys, false);
return PyErr_NoMemory();
}
+ dictkeys_incref(keys);
for (size_t i = 0; i < size; i++) {
values->values[i] = NULL;
}
@@ -6693,8 +6692,6 @@ materialize_managed_dict_lock_held(PyObject *obj)
{
_Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(obj);
- OBJECT_STAT_INC(dict_materialized_on_request);
-
PyDictValues *values = _PyObject_InlineValues(obj);
PyInterpreterState *interp = _PyInterpreterState_GET();
PyDictKeysObject *keys = CACHED_KEYS(Py_TYPE(obj));
@@ -7186,35 +7183,77 @@ _PyDict_DetachFromObject(PyDictObject *mp, PyObject *obj)
return 0;
}
-PyObject *
-PyObject_GenericGetDict(PyObject *obj, void *context)
+static inline PyObject *
+ensure_managed_dict(PyObject *obj)
{
- PyInterpreterState *interp = _PyInterpreterState_GET();
- PyTypeObject *tp = Py_TYPE(obj);
- PyDictObject *dict;
- if (_PyType_HasFeature(tp, Py_TPFLAGS_MANAGED_DICT)) {
- dict = _PyObject_GetManagedDict(obj);
- if (dict == NULL &&
- (tp->tp_flags & Py_TPFLAGS_INLINE_VALUES) &&
+ PyDictObject *dict = _PyObject_GetManagedDict(obj);
+ if (dict == NULL) {
+ PyTypeObject *tp = Py_TYPE(obj);
+ if ((tp->tp_flags & Py_TPFLAGS_INLINE_VALUES) &&
FT_ATOMIC_LOAD_UINT8(_PyObject_InlineValues(obj)->valid)) {
dict = _PyObject_MaterializeManagedDict(obj);
}
- else if (dict == NULL) {
- Py_BEGIN_CRITICAL_SECTION(obj);
-
+ else {
+#ifdef Py_GIL_DISABLED
// Check again that we're not racing with someone else creating the dict
+ Py_BEGIN_CRITICAL_SECTION(obj);
dict = _PyObject_GetManagedDict(obj);
- if (dict == NULL) {
- OBJECT_STAT_INC(dict_materialized_on_request);
- dictkeys_incref(CACHED_KEYS(tp));
- dict = (PyDictObject *)new_dict_with_shared_keys(interp, CACHED_KEYS(tp));
- FT_ATOMIC_STORE_PTR_RELEASE(_PyObject_ManagedDictPointer(obj)->dict,
- (PyDictObject *)dict);
+ if (dict != NULL) {
+ goto done;
}
+#endif
+ dict = (PyDictObject *)new_dict_with_shared_keys(_PyInterpreterState_GET(),
+ CACHED_KEYS(tp));
+ FT_ATOMIC_STORE_PTR_RELEASE(_PyObject_ManagedDictPointer(obj)->dict,
+ (PyDictObject *)dict);
+#ifdef Py_GIL_DISABLED
+done:
Py_END_CRITICAL_SECTION();
+#endif
}
- return Py_XNewRef((PyObject *)dict);
+ }
+ return (PyObject *)dict;
+}
+
+static inline PyObject *
+ensure_nonmanaged_dict(PyObject *obj, PyObject **dictptr)
+{
+ PyDictKeysObject *cached;
+
+ PyObject *dict = FT_ATOMIC_LOAD_PTR_ACQUIRE(*dictptr);
+ if (dict == NULL) {
+#ifdef Py_GIL_DISABLED
+ Py_BEGIN_CRITICAL_SECTION(obj);
+ dict = *dictptr;
+ if (dict != NULL) {
+ goto done;
+ }
+#endif
+ PyTypeObject *tp = Py_TYPE(obj);
+ if (_PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE) && (cached = CACHED_KEYS(tp))) {
+ PyInterpreterState *interp = _PyInterpreterState_GET();
+ assert(!_PyType_HasFeature(tp, Py_TPFLAGS_INLINE_VALUES));
+ dict = new_dict_with_shared_keys(interp, cached);
+ }
+ else {
+ dict = PyDict_New();
+ }
+ FT_ATOMIC_STORE_PTR_RELEASE(*dictptr, dict);
+#ifdef Py_GIL_DISABLED
+done:
+ Py_END_CRITICAL_SECTION();
+#endif
+ }
+ return dict;
+}
+
+PyObject *
+PyObject_GenericGetDict(PyObject *obj, void *context)
+{
+ PyTypeObject *tp = Py_TYPE(obj);
+ if (_PyType_HasFeature(tp, Py_TPFLAGS_MANAGED_DICT)) {
+ return Py_XNewRef(ensure_managed_dict(obj));
}
else {
PyObject **dictptr = _PyObject_ComputedDictPointer(obj);
@@ -7223,65 +7262,28 @@ PyObject_GenericGetDict(PyObject *obj, void *context)
"This object has no __dict__");
return NULL;
}
- PyObject *dict = *dictptr;
- if (dict == NULL) {
- PyTypeObject *tp = Py_TYPE(obj);
- if (_PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE) && CACHED_KEYS(tp)) {
- dictkeys_incref(CACHED_KEYS(tp));
- *dictptr = dict = new_dict_with_shared_keys(
- interp, CACHED_KEYS(tp));
- }
- else {
- *dictptr = dict = PyDict_New();
- }
- }
- return Py_XNewRef(dict);
+
+ return Py_XNewRef(ensure_nonmanaged_dict(obj, dictptr));
}
}
int
-_PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr,
+_PyObjectDict_SetItem(PyTypeObject *tp, PyObject *obj, PyObject **dictptr,
PyObject *key, PyObject *value)
{
PyObject *dict;
int res;
- PyDictKeysObject *cached;
- PyInterpreterState *interp = _PyInterpreterState_GET();
assert(dictptr != NULL);
- if ((tp->tp_flags & Py_TPFLAGS_HEAPTYPE) && (cached = CACHED_KEYS(tp))) {
- assert(dictptr != NULL);
- dict = *dictptr;
- if (dict == NULL) {
- assert(!_PyType_HasFeature(tp, Py_TPFLAGS_INLINE_VALUES));
- dictkeys_incref(cached);
- dict = new_dict_with_shared_keys(interp, cached);
- if (dict == NULL)
- return -1;
- *dictptr = dict;
- }
- if (value == NULL) {
- res = PyDict_DelItem(dict, key);
- }
- else {
- res = PyDict_SetItem(dict, key, value);
- }
- } else {
- dict = *dictptr;
- if (dict == NULL) {
- dict = PyDict_New();
- if (dict == NULL)
- return -1;
- *dictptr = dict;
- }
- if (value == NULL) {
- res = PyDict_DelItem(dict, key);
- } else {
- res = PyDict_SetItem(dict, key, value);
- }
+ dict = ensure_nonmanaged_dict(obj, dictptr);
+ if (dict == NULL) {
+ return -1;
}
+ Py_BEGIN_CRITICAL_SECTION(dict);
+ res = _PyDict_SetItem_LockHeld((PyDictObject *)dict, key, value);
ASSERT_CONSISTENT(dict);
+ Py_END_CRITICAL_SECTION();
return res;
}
diff --git a/Objects/object.c b/Objects/object.c
index effbd51..8ad0389 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1731,7 +1731,7 @@ _PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name,
goto done;
}
else {
- res = _PyObjectDict_SetItem(tp, dictptr, name, value);
+ res = _PyObjectDict_SetItem(tp, obj, dictptr, name, value);
}
}
else {
@@ -1789,7 +1789,9 @@ PyObject_GenericSetDict(PyObject *obj, PyObject *value, void *context)
"not a '%.200s'", Py_TYPE(value)->tp_name);
return -1;
}
+ Py_BEGIN_CRITICAL_SECTION(obj);
Py_XSETREF(*dictptr, Py_NewRef(value));
+ Py_END_CRITICAL_SECTION();
return 0;
}