Skip to content

Commit 885386b

Browse files
[3.13] gh-67877: Fix memory leaks in terminated RE matching (GH-126840) (GH-126960)
If SRE(match) function terminates abruptly, either because of a signal or because memory allocation fails, allocated SRE_REPEAT blocks might be never released. Co-authored-by: <wjssz@users.noreply.github.com> (cherry picked from commit 7538e7f)
1 parent 2b2ad24 commit 885386b

File tree

6 files changed

+248
-14
lines changed

6 files changed

+248
-14
lines changed

Lib/test/test_re.py

+41
Original file line numberDiff line numberDiff line change
@@ -2664,6 +2664,47 @@ def test_regression_gh94675(self):
26642664
def test_fail(self):
26652665
self.assertEqual(re.search(r'12(?!)|3', '123')[0], '3')
26662666

2667+
def test_character_set_any(self):
2668+
# The union of complementary character sets matches any character
2669+
# and is equivalent to "(?s:.)".
2670+
s = '1x\n'
2671+
for p in r'[\s\S]', r'[\d\D]', r'[\w\W]', r'[\S\s]', r'\s|\S':
2672+
with self.subTest(pattern=p):
2673+
self.assertEqual(re.findall(p, s), list(s))
2674+
self.assertEqual(re.fullmatch('(?:' + p + ')+', s).group(), s)
2675+
2676+
def test_character_set_none(self):
2677+
# Negation of the union of complementary character sets does not match
2678+
# any character.
2679+
s = '1x\n'
2680+
for p in r'[^\s\S]', r'[^\d\D]', r'[^\w\W]', r'[^\S\s]':
2681+
with self.subTest(pattern=p):
2682+
self.assertIsNone(re.search(p, s))
2683+
self.assertIsNone(re.search('(?s:.)' + p, s))
2684+
2685+
def check_interrupt(self, pattern, string, maxcount):
2686+
class Interrupt(Exception):
2687+
pass
2688+
p = re.compile(pattern)
2689+
for n in range(maxcount):
2690+
try:
2691+
p._fail_after(n, Interrupt)
2692+
p.match(string)
2693+
return n
2694+
except Interrupt:
2695+
pass
2696+
finally:
2697+
p._fail_after(-1, None)
2698+
2699+
@unittest.skipUnless(hasattr(re.Pattern, '_fail_after'), 'requires debug build')
2700+
def test_memory_leaks(self):
2701+
self.check_interrupt(r'(.)*:', 'abc:', 100)
2702+
self.check_interrupt(r'([^:])*?:', 'abc:', 100)
2703+
self.check_interrupt(r'([^:])*+:', 'abc:', 100)
2704+
self.check_interrupt(r'(.){2,4}:', 'abc:', 100)
2705+
self.check_interrupt(r'([^:]){2,4}?:', 'abc:', 100)
2706+
self.check_interrupt(r'([^:]){2,4}+:', 'abc:', 100)
2707+
26672708

26682709
def get_debug_out(pat):
26692710
with captured_stdout() as out:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fix memory leaks when :mod:`regular expression <re>` matching terminates
2+
abruptly, either because of a signal or because memory allocation fails.

Modules/_sre/clinic/sre.c.h

+43-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/_sre/sre.c

+127-5
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,85 @@ data_stack_grow(SRE_STATE* state, Py_ssize_t size)
267267
return 0;
268268
}
269269

270+
/* memory pool functions for SRE_REPEAT, this can avoid memory
271+
leak when SRE(match) function terminates abruptly.
272+
state->repeat_pool_used is a doubly-linked list, so that we
273+
can remove a SRE_REPEAT node from it.
274+
state->repeat_pool_unused is a singly-linked list, we put/get
275+
node at the head. */
276+
static SRE_REPEAT *
277+
repeat_pool_malloc(SRE_STATE *state)
278+
{
279+
SRE_REPEAT *repeat;
280+
281+
if (state->repeat_pool_unused) {
282+
/* remove from unused pool (singly-linked list) */
283+
repeat = state->repeat_pool_unused;
284+
state->repeat_pool_unused = repeat->pool_next;
285+
}
286+
else {
287+
repeat = PyMem_Malloc(sizeof(SRE_REPEAT));
288+
if (!repeat) {
289+
return NULL;
290+
}
291+
}
292+
293+
/* add to used pool (doubly-linked list) */
294+
SRE_REPEAT *temp = state->repeat_pool_used;
295+
if (temp) {
296+
temp->pool_prev = repeat;
297+
}
298+
repeat->pool_prev = NULL;
299+
repeat->pool_next = temp;
300+
state->repeat_pool_used = repeat;
301+
302+
return repeat;
303+
}
304+
305+
static void
306+
repeat_pool_free(SRE_STATE *state, SRE_REPEAT *repeat)
307+
{
308+
SRE_REPEAT *prev = repeat->pool_prev;
309+
SRE_REPEAT *next = repeat->pool_next;
310+
311+
/* remove from used pool (doubly-linked list) */
312+
if (prev) {
313+
prev->pool_next = next;
314+
}
315+
else {
316+
state->repeat_pool_used = next;
317+
}
318+
if (next) {
319+
next->pool_prev = prev;
320+
}
321+
322+
/* add to unused pool (singly-linked list) */
323+
repeat->pool_next = state->repeat_pool_unused;
324+
state->repeat_pool_unused = repeat;
325+
}
326+
327+
static void
328+
repeat_pool_clear(SRE_STATE *state)
329+
{
330+
/* clear used pool */
331+
SRE_REPEAT *next = state->repeat_pool_used;
332+
state->repeat_pool_used = NULL;
333+
while (next) {
334+
SRE_REPEAT *temp = next;
335+
next = temp->pool_next;
336+
PyMem_Free(temp);
337+
}
338+
339+
/* clear unused pool */
340+
next = state->repeat_pool_unused;
341+
state->repeat_pool_unused = NULL;
342+
while (next) {
343+
SRE_REPEAT *temp = next;
344+
next = temp->pool_next;
345+
PyMem_Free(temp);
346+
}
347+
}
348+
270349
/* generate 8-bit version */
271350

272351
#define SRE_CHAR Py_UCS1
@@ -511,6 +590,11 @@ state_init(SRE_STATE* state, PatternObject* pattern, PyObject* string,
511590
state->pos = start;
512591
state->endpos = end;
513592

593+
#ifdef Py_DEBUG
594+
state->fail_after_count = pattern->fail_after_count;
595+
state->fail_after_exc = pattern->fail_after_exc; // borrowed ref
596+
#endif
597+
514598
return string;
515599
err:
516600
/* We add an explicit cast here because MSVC has a bug when
@@ -533,6 +617,8 @@ state_fini(SRE_STATE* state)
533617
/* See above PyMem_Del for why we explicitly cast here. */
534618
PyMem_Free((void*) state->mark);
535619
state->mark = NULL;
620+
/* SRE_REPEAT pool */
621+
repeat_pool_clear(state);
536622
}
537623

538624
/* calculate offset from start of string */
@@ -619,6 +705,9 @@ pattern_traverse(PatternObject *self, visitproc visit, void *arg)
619705
Py_VISIT(self->groupindex);
620706
Py_VISIT(self->indexgroup);
621707
Py_VISIT(self->pattern);
708+
#ifdef Py_DEBUG
709+
Py_VISIT(self->fail_after_exc);
710+
#endif
622711
return 0;
623712
}
624713

@@ -628,6 +717,9 @@ pattern_clear(PatternObject *self)
628717
Py_CLEAR(self->groupindex);
629718
Py_CLEAR(self->indexgroup);
630719
Py_CLEAR(self->pattern);
720+
#ifdef Py_DEBUG
721+
Py_CLEAR(self->fail_after_exc);
722+
#endif
631723
return 0;
632724
}
633725

@@ -690,7 +782,7 @@ _sre_SRE_Pattern_match_impl(PatternObject *self, PyTypeObject *cls,
690782
Py_ssize_t status;
691783
PyObject *match;
692784

693-
if (!state_init(&state, (PatternObject *)self, string, pos, endpos))
785+
if (!state_init(&state, self, string, pos, endpos))
694786
return NULL;
695787

696788
INIT_TRACE(&state);
@@ -1381,6 +1473,29 @@ _sre_SRE_Pattern___deepcopy__(PatternObject *self, PyObject *memo)
13811473
return Py_NewRef(self);
13821474
}
13831475

1476+
#ifdef Py_DEBUG
1477+
/*[clinic input]
1478+
_sre.SRE_Pattern._fail_after
1479+
1480+
count: int
1481+
exception: object
1482+
/
1483+
1484+
For debugging.
1485+
[clinic start generated code]*/
1486+
1487+
static PyObject *
1488+
_sre_SRE_Pattern__fail_after_impl(PatternObject *self, int count,
1489+
PyObject *exception)
1490+
/*[clinic end generated code: output=9a6bf12135ac50c2 input=ef80a45c66c5499d]*/
1491+
{
1492+
self->fail_after_count = count;
1493+
Py_INCREF(exception);
1494+
Py_XSETREF(self->fail_after_exc, exception);
1495+
Py_RETURN_NONE;
1496+
}
1497+
#endif /* Py_DEBUG */
1498+
13841499
static PyObject *
13851500
pattern_repr(PatternObject *obj)
13861501
{
@@ -1506,6 +1621,10 @@ _sre_compile_impl(PyObject *module, PyObject *pattern, int flags,
15061621
self->pattern = NULL;
15071622
self->groupindex = NULL;
15081623
self->indexgroup = NULL;
1624+
#ifdef Py_DEBUG
1625+
self->fail_after_count = -1;
1626+
self->fail_after_exc = NULL;
1627+
#endif
15091628

15101629
self->codesize = n;
15111630

@@ -2604,7 +2723,8 @@ pattern_new_match(_sremodulestate* module_state,
26042723
if (!match)
26052724
return NULL;
26062725

2607-
match->pattern = (PatternObject*)Py_NewRef(pattern);
2726+
Py_INCREF(pattern);
2727+
match->pattern = pattern;
26082728

26092729
match->string = Py_NewRef(state->string);
26102730

@@ -2740,7 +2860,7 @@ _sre_SRE_Scanner_match_impl(ScannerObject *self, PyTypeObject *cls)
27402860
return NULL;
27412861
}
27422862

2743-
match = pattern_new_match(module_state, (PatternObject*) self->pattern,
2863+
match = pattern_new_match(module_state, self->pattern,
27442864
state, status);
27452865

27462866
if (status == 0)
@@ -2790,7 +2910,7 @@ _sre_SRE_Scanner_search_impl(ScannerObject *self, PyTypeObject *cls)
27902910
return NULL;
27912911
}
27922912

2793-
match = pattern_new_match(module_state, (PatternObject*) self->pattern,
2913+
match = pattern_new_match(module_state, self->pattern,
27942914
state, status);
27952915

27962916
if (status == 0)
@@ -2826,7 +2946,8 @@ pattern_scanner(_sremodulestate *module_state,
28262946
return NULL;
28272947
}
28282948

2829-
scanner->pattern = Py_NewRef(self);
2949+
Py_INCREF(self);
2950+
scanner->pattern = self;
28302951

28312952
PyObject_GC_Track(scanner);
28322953
return (PyObject*) scanner;
@@ -3020,6 +3141,7 @@ static PyMethodDef pattern_methods[] = {
30203141
_SRE_SRE_PATTERN_SCANNER_METHODDEF
30213142
_SRE_SRE_PATTERN___COPY___METHODDEF
30223143
_SRE_SRE_PATTERN___DEEPCOPY___METHODDEF
3144+
_SRE_SRE_PATTERN__FAIL_AFTER_METHODDEF
30233145
{"__class_getitem__", Py_GenericAlias, METH_O|METH_CLASS,
30243146
PyDoc_STR("See PEP 585")},
30253147
{NULL, NULL}

Modules/_sre/sre.h

+16-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ typedef struct {
3434
int flags; /* flags used when compiling pattern source */
3535
PyObject *weakreflist; /* List of weak references */
3636
int isbytes; /* pattern type (1 - bytes, 0 - string, -1 - None) */
37+
#ifdef Py_DEBUG
38+
/* for simulation of user interruption */
39+
int fail_after_count;
40+
PyObject *fail_after_exc;
41+
#endif
3742
/* pattern code */
3843
Py_ssize_t codesize;
3944
SRE_CODE code[1];
@@ -68,6 +73,9 @@ typedef struct SRE_REPEAT_T {
6873
const SRE_CODE* pattern; /* points to REPEAT operator arguments */
6974
const void* last_ptr; /* helper to check for infinite loops */
7075
struct SRE_REPEAT_T *prev; /* points to previous repeat context */
76+
/* for SRE_REPEAT pool */
77+
struct SRE_REPEAT_T *pool_prev;
78+
struct SRE_REPEAT_T *pool_next;
7179
} SRE_REPEAT;
7280

7381
typedef struct {
@@ -95,12 +103,19 @@ typedef struct {
95103
size_t data_stack_base;
96104
/* current repeat context */
97105
SRE_REPEAT *repeat;
106+
/* SRE_REPEAT pool */
107+
SRE_REPEAT *repeat_pool_used;
108+
SRE_REPEAT *repeat_pool_unused;
98109
unsigned int sigcount;
110+
#ifdef Py_DEBUG
111+
int fail_after_count;
112+
PyObject *fail_after_exc;
113+
#endif
99114
} SRE_STATE;
100115

101116
typedef struct {
102117
PyObject_HEAD
103-
PyObject* pattern;
118+
PatternObject* pattern;
104119
SRE_STATE state;
105120
int executing;
106121
} ScannerObject;

0 commit comments

Comments
 (0)