summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-24 19:44:54 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-24 19:44:54 -0700
commit1c1685861e0d304f60f0669c6dbd5005349262e4 (patch)
tree191fc885e0b3751447b94e4fca8d8e36485dd839
parentd31b99878a2c7ed0fb52a88cb23cd7716d1ea40a (diff)
downloadtxr-1c1685861e0d304f60f0669c6dbd5005349262e4.tar.gz
txr-1c1685861e0d304f60f0669c6dbd5005349262e4.tar.bz2
txr-1c1685861e0d304f60f0669c6dbd5005349262e4.zip
txr: stack protection in pattern language.
* txr.c (do_match_line, match_files): call gc_stack_check on entry. * tests/012/stack2.txr: New file. * tests/012/stack2.expected: New file.
-rw-r--r--match.c4
-rw-r--r--tests/012/stack2.expected1
-rw-r--r--tests/012/stack2.txr8
3 files changed, 13 insertions, 0 deletions
diff --git a/match.c b/match.c
index 3f47ee05..a7a22f4b 100644
--- a/match.c
+++ b/match.c
@@ -1533,6 +1533,8 @@ static val do_match_line(match_line_ctx *c)
{
val lfe_save = set_last_form_evaled(nil);
+ gc_stack_check();
+
while (c->specline) {
val elem = first(c->specline);
@@ -4616,6 +4618,8 @@ static val match_files(match_files_ctx c)
{
gc_hint(c.data);
+ gc_stack_check();
+
for (; c.spec; c.spec = rest(c.spec),
c.data = rest(c.data),
c.data_lineno = plus(c.data_lineno, one))
diff --git a/tests/012/stack2.expected b/tests/012/stack2.expected
new file mode 100644
index 00000000..cad99e12
--- /dev/null
+++ b/tests/012/stack2.expected
@@ -0,0 +1 @@
+caught
diff --git a/tests/012/stack2.txr b/tests/012/stack2.txr
new file mode 100644
index 00000000..df9e209a
--- /dev/null
+++ b/tests/012/stack2.txr
@@ -0,0 +1,8 @@
+@(define recur ())
+@(recur)
+@(end)
+@(try)
+@(recur)
+@(catch stack-overflow (arg))
+@(do (put-line "caught"))
+@(end)