Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when the list is being resized concurrently.
This commit is contained in:
parent
aaef34483c
commit
44d5214927
|
@ -319,6 +319,16 @@ def L(seqn):
|
||||||
return chain(map(lambda x:x, R(Ig(G(seqn)))))
|
return chain(map(lambda x:x, R(Ig(G(seqn)))))
|
||||||
|
|
||||||
|
|
||||||
|
class SideEffectLT:
|
||||||
|
def __init__(self, value, heap):
|
||||||
|
self.value = value
|
||||||
|
self.heap = heap
|
||||||
|
|
||||||
|
def __lt__(self, other):
|
||||||
|
self.heap[:] = []
|
||||||
|
return self.value < other.value
|
||||||
|
|
||||||
|
|
||||||
class TestErrorHandling(TestCase):
|
class TestErrorHandling(TestCase):
|
||||||
module = None
|
module = None
|
||||||
|
|
||||||
|
@ -370,6 +380,22 @@ class TestErrorHandling(TestCase):
|
||||||
self.assertRaises(TypeError, f, 2, N(s))
|
self.assertRaises(TypeError, f, 2, N(s))
|
||||||
self.assertRaises(ZeroDivisionError, f, 2, E(s))
|
self.assertRaises(ZeroDivisionError, f, 2, E(s))
|
||||||
|
|
||||||
|
# Issue #17278: the heap may change size while it's being walked.
|
||||||
|
|
||||||
|
def test_heappush_mutating_heap(self):
|
||||||
|
heap = []
|
||||||
|
heap.extend(SideEffectLT(i, heap) for i in range(200))
|
||||||
|
# Python version raises IndexError, C version RuntimeError
|
||||||
|
with self.assertRaises((IndexError, RuntimeError)):
|
||||||
|
self.module.heappush(heap, SideEffectLT(5, heap))
|
||||||
|
|
||||||
|
def test_heappop_mutating_heap(self):
|
||||||
|
heap = []
|
||||||
|
heap.extend(SideEffectLT(i, heap) for i in range(200))
|
||||||
|
# Python version raises IndexError, C version RuntimeError
|
||||||
|
with self.assertRaises((IndexError, RuntimeError)):
|
||||||
|
self.module.heappop(heap)
|
||||||
|
|
||||||
|
|
||||||
class TestErrorHandlingPython(TestErrorHandling):
|
class TestErrorHandlingPython(TestErrorHandling):
|
||||||
module = py_heapq
|
module = py_heapq
|
||||||
|
|
|
@ -233,6 +233,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when
|
||||||
|
the list is being resized concurrently.
|
||||||
|
|
||||||
- Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
|
- Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
|
||||||
|
|
||||||
- Issue #14720: sqlite3: Convert datetime microseconds correctly.
|
- Issue #14720: sqlite3: Convert datetime microseconds correctly.
|
||||||
|
|
|
@ -11,12 +11,14 @@ annotated by François Pinard, and converted to C by Raymond Hettinger.
|
||||||
static int
|
static int
|
||||||
_siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
|
_siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
|
||||||
{
|
{
|
||||||
PyObject *newitem, *parent;
|
PyObject *newitem, *parent, *olditem;
|
||||||
int cmp;
|
int cmp;
|
||||||
Py_ssize_t parentpos;
|
Py_ssize_t parentpos;
|
||||||
|
Py_ssize_t size;
|
||||||
|
|
||||||
assert(PyList_Check(heap));
|
assert(PyList_Check(heap));
|
||||||
if (pos >= PyList_GET_SIZE(heap)) {
|
size = PyList_GET_SIZE(heap);
|
||||||
|
if (pos >= size) {
|
||||||
PyErr_SetString(PyExc_IndexError, "index out of range");
|
PyErr_SetString(PyExc_IndexError, "index out of range");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
@ -33,12 +35,24 @@ _siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
|
||||||
Py_DECREF(newitem);
|
Py_DECREF(newitem);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
if (size != PyList_GET_SIZE(heap)) {
|
||||||
|
Py_DECREF(newitem);
|
||||||
|
PyErr_SetString(PyExc_RuntimeError,
|
||||||
|
"list changed size during iteration");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
if (cmp == 0)
|
if (cmp == 0)
|
||||||
break;
|
break;
|
||||||
Py_INCREF(parent);
|
Py_INCREF(parent);
|
||||||
Py_DECREF(PyList_GET_ITEM(heap, pos));
|
olditem = PyList_GET_ITEM(heap, pos);
|
||||||
PyList_SET_ITEM(heap, pos, parent);
|
PyList_SET_ITEM(heap, pos, parent);
|
||||||
|
Py_DECREF(olditem);
|
||||||
pos = parentpos;
|
pos = parentpos;
|
||||||
|
if (size != PyList_GET_SIZE(heap)) {
|
||||||
|
PyErr_SetString(PyExc_RuntimeError,
|
||||||
|
"list changed size during iteration");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Py_DECREF(PyList_GET_ITEM(heap, pos));
|
Py_DECREF(PyList_GET_ITEM(heap, pos));
|
||||||
PyList_SET_ITEM(heap, pos, newitem);
|
PyList_SET_ITEM(heap, pos, newitem);
|
||||||
|
@ -50,10 +64,12 @@ _siftup(PyListObject *heap, Py_ssize_t pos)
|
||||||
{
|
{
|
||||||
Py_ssize_t startpos, endpos, childpos, rightpos;
|
Py_ssize_t startpos, endpos, childpos, rightpos;
|
||||||
int cmp;
|
int cmp;
|
||||||
PyObject *newitem, *tmp;
|
PyObject *newitem, *tmp, *olditem;
|
||||||
|
Py_ssize_t size;
|
||||||
|
|
||||||
assert(PyList_Check(heap));
|
assert(PyList_Check(heap));
|
||||||
endpos = PyList_GET_SIZE(heap);
|
size = PyList_GET_SIZE(heap);
|
||||||
|
endpos = size;
|
||||||
startpos = pos;
|
startpos = pos;
|
||||||
if (pos >= endpos) {
|
if (pos >= endpos) {
|
||||||
PyErr_SetString(PyExc_IndexError, "index out of range");
|
PyErr_SetString(PyExc_IndexError, "index out of range");
|
||||||
|
@ -79,13 +95,25 @@ _siftup(PyListObject *heap, Py_ssize_t pos)
|
||||||
if (cmp == 0)
|
if (cmp == 0)
|
||||||
childpos = rightpos;
|
childpos = rightpos;
|
||||||
}
|
}
|
||||||
|
if (size != PyList_GET_SIZE(heap)) {
|
||||||
|
Py_DECREF(newitem);
|
||||||
|
PyErr_SetString(PyExc_RuntimeError,
|
||||||
|
"list changed size during iteration");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
/* Move the smaller child up. */
|
/* Move the smaller child up. */
|
||||||
tmp = PyList_GET_ITEM(heap, childpos);
|
tmp = PyList_GET_ITEM(heap, childpos);
|
||||||
Py_INCREF(tmp);
|
Py_INCREF(tmp);
|
||||||
Py_DECREF(PyList_GET_ITEM(heap, pos));
|
olditem = PyList_GET_ITEM(heap, pos);
|
||||||
PyList_SET_ITEM(heap, pos, tmp);
|
PyList_SET_ITEM(heap, pos, tmp);
|
||||||
|
Py_DECREF(olditem);
|
||||||
pos = childpos;
|
pos = childpos;
|
||||||
childpos = 2*pos + 1;
|
childpos = 2*pos + 1;
|
||||||
|
if (size != PyList_GET_SIZE(heap)) {
|
||||||
|
PyErr_SetString(PyExc_RuntimeError,
|
||||||
|
"list changed size during iteration");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The leaf at pos is empty now. Put newitem there, and and bubble
|
/* The leaf at pos is empty now. Put newitem there, and and bubble
|
||||||
|
|
Loading…
Reference in New Issue