Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
ad7020f3
Commit
ad7020f3
authored
May 02, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2168 from carsonmcdonald/stackclearfix
On overflow, clear new stack space before mrb_raise
parents
f38928df
03796274
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
6 deletions
+14
-6
src/vm.c
src/vm.c
+14
-6
No files found.
src/vm.c
View file @
ad7020f3
...
...
@@ -131,10 +131,19 @@ envadjust(mrb_state *mrb, mrb_value *oldbase, mrb_value *newbase)
}
}
static
inline
void
init_new_stack_space
(
mrb_state
*
mrb
,
int
room
,
int
keep
)
{
if
(
room
>
keep
)
{
/* do not leave uninitialized malloc region */
stack_clear
(
&
(
mrb
->
c
->
stack
[
keep
]),
room
-
keep
);
}
}
/** def rec ; $deep =+ 1 ; if $deep > 1000 ; return 0 ; end ; rec ; end */
static
void
stack_extend_alloc
(
mrb_state
*
mrb
,
int
room
)
stack_extend_alloc
(
mrb_state
*
mrb
,
int
room
,
int
keep
)
{
mrb_value
*
oldbase
=
mrb
->
c
->
stbase
;
int
size
=
mrb
->
c
->
stend
-
mrb
->
c
->
stbase
;
...
...
@@ -159,9 +168,11 @@ stack_extend_alloc(mrb_state *mrb, int room)
mrb
->
c
->
stack
=
mrb
->
c
->
stbase
+
off
;
mrb
->
c
->
stend
=
mrb
->
c
->
stbase
+
size
;
envadjust
(
mrb
,
oldbase
,
mrb
->
c
->
stbase
);
/* Raise an exception if the new stack size will be too large,
to prevent infinite recursion. However, do this only after resizing the stack, so mrb_raise has stack space to work with. */
if
(
size
>
MRB_STACK_MAX
)
{
init_new_stack_space
(
mrb
,
room
,
keep
);
mrb_raise
(
mrb
,
E_RUNTIME_ERROR
,
"stack level too deep. (limit="
TO_STR
(
MRB_STACK_MAX
)
")"
);
}
}
...
...
@@ -170,12 +181,9 @@ static inline void
stack_extend
(
mrb_state
*
mrb
,
int
room
,
int
keep
)
{
if
(
mrb
->
c
->
stack
+
room
>=
mrb
->
c
->
stend
)
{
stack_extend_alloc
(
mrb
,
room
);
}
if
(
room
>
keep
)
{
/* do not leave uninitialized malloc region */
stack_clear
(
&
(
mrb
->
c
->
stack
[
keep
]),
room
-
keep
);
stack_extend_alloc
(
mrb
,
room
,
keep
);
}
init_new_stack_space
(
mrb
,
room
,
keep
);
}
static
inline
struct
REnv
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment