Skip to content

Commit 79e61bf

Browse files
committed
Remove unsafe _PyObject_GC_Malloc() function.
1 parent 48d6a58 commit 79e61bf

File tree

5 files changed

+14
-36
lines changed

5 files changed

+14
-36
lines changed

Include/cpython/objimpl.h

-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ PyAPI_FUNC(int) PyObject_IS_GC(PyObject *obj);
9090
# define _PyGC_FINALIZED(o) PyObject_GC_IsFinalized(o)
9191
#endif
9292

93-
PyAPI_FUNC(PyObject *) _PyObject_GC_Malloc(size_t size);
94-
9593

9694
/* Test if a type supports weak references */
9795
#define PyType_SUPPORTS_WEAKREFS(t) ((t)->tp_weaklistoffset > 0)

Lib/test/test_stable_abi_ctypes.py

-1
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,6 @@ def test_available_symbols(self):
817817
"_PyErr_BadInternalCall",
818818
"_PyObject_CallFunction_SizeT",
819819
"_PyObject_CallMethod_SizeT",
820-
"_PyObject_GC_Malloc",
821820
"_PyObject_GC_New",
822821
"_PyObject_GC_NewVar",
823822
"_PyObject_GC_Resize",

Misc/stable_abi.txt

-3
Original file line numberDiff line numberDiff line change
@@ -1577,9 +1577,6 @@ function _PyObject_CallFunction_SizeT
15771577
function _PyObject_CallMethod_SizeT
15781578
added 3.2
15791579
abi_only
1580-
function _PyObject_GC_Malloc
1581-
added 3.2
1582-
abi_only
15831580
function _PyObject_GC_New
15841581
added 3.2
15851582
abi_only

Modules/gcmodule.c

+14-29
Original file line numberDiff line numberDiff line change
@@ -2254,46 +2254,30 @@ _PyObject_GC_Link(PyObject *op)
22542254
}
22552255
}
22562256

2257-
2258-
2259-
PyObject *
2260-
_PyObject_GC_Malloc(size_t basicsize)
2257+
static PyObject *
2258+
gc_alloc(size_t basicsize, size_t presize)
22612259
{
22622260
PyThreadState *tstate = _PyThreadState_GET();
2263-
GCState *gcstate = &tstate->interp->gc;
2264-
if (basicsize > PY_SSIZE_T_MAX - sizeof(PyGC_Head)) {
2261+
if (basicsize > PY_SSIZE_T_MAX - presize) {
22652262
return _PyErr_NoMemory(tstate);
22662263
}
2267-
size_t size = sizeof(PyGC_Head) + basicsize;
2268-
2269-
PyGC_Head *g = (PyGC_Head *)PyObject_Malloc(size);
2270-
if (g == NULL) {
2264+
size_t size = presize + basicsize;
2265+
char *mem = PyObject_Malloc(size);
2266+
if (mem == NULL) {
22712267
return _PyErr_NoMemory(tstate);
22722268
}
2273-
assert(((uintptr_t)g & sizeof(uintptr_t)) == 0); // g must be correctly aligned
2274-
2275-
g->_gc_next = 0;
2276-
g->_gc_prev = 0;
2277-
gcstate->generations[0].count++; /* number of allocated GC objects */
2278-
if (gcstate->generations[0].count > gcstate->generations[0].threshold &&
2279-
gcstate->enabled &&
2280-
gcstate->generations[0].threshold &&
2281-
!gcstate->collecting &&
2282-
!_PyErr_Occurred(tstate))
2283-
{
2284-
gcstate->collecting = 1;
2285-
gc_collect_generations(tstate);
2286-
gcstate->collecting = 0;
2287-
}
2288-
PyObject *op = FROM_GC(g);
2269+
((PyObject **)mem)[0] = NULL;
2270+
((PyObject **)mem)[1] = NULL;
2271+
PyObject *op = (PyObject *)(mem + presize);
2272+
_PyObject_GC_Link(op);
22892273
return op;
22902274
}
22912275

2292-
22932276
PyObject *
22942277
_PyObject_GC_New(PyTypeObject *tp)
22952278
{
2296-
PyObject *op = _PyObject_GC_Malloc(_PyObject_SIZE(tp));
2279+
size_t presize = _PyType_PreHeaderSize(tp);
2280+
PyObject *op = gc_alloc(_PyObject_SIZE(tp), presize);
22972281
if (op == NULL) {
22982282
return NULL;
22992283
}
@@ -2311,8 +2295,9 @@ _PyObject_GC_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
23112295
PyErr_BadInternalCall();
23122296
return NULL;
23132297
}
2298+
size_t presize = _PyType_PreHeaderSize(tp);
23142299
size = _PyObject_VAR_SIZE(tp, nitems);
2315-
op = (PyVarObject *) _PyObject_GC_Malloc(size);
2300+
op = (PyVarObject *)gc_alloc(size, presize);
23162301
if (op == NULL) {
23172302
return NULL;
23182303
}

PC/python3dll.c

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ EXPORT_FUNC(_PyArg_VaParseTupleAndKeywords_SizeT)
2828
EXPORT_FUNC(_PyErr_BadInternalCall)
2929
EXPORT_FUNC(_PyObject_CallFunction_SizeT)
3030
EXPORT_FUNC(_PyObject_CallMethod_SizeT)
31-
EXPORT_FUNC(_PyObject_GC_Malloc)
3231
EXPORT_FUNC(_PyObject_GC_New)
3332
EXPORT_FUNC(_PyObject_GC_NewVar)
3433
EXPORT_FUNC(_PyObject_GC_Resize)

0 commit comments

Comments
 (0)