Skip to content

Commit ea05e76

Browse files
committed
repl: don't clobber RegExp.$ properties
In REPL, if we evaluate the `RegExp` object's predefined properties, and if they happen to have the same expression, for example, > RegExp.$1 'RegExp.$1' then doing `eval(RegExp.$1)` would evaluate `RegExp.$1` recursively and eventually throw `RangeError: Maximum call stack size exceeded`. This patch stores the old values of `RegExp`'s predefined proprties in an array and restores them just before the current expression entered by user is evaluated. Fixes: #597 PR-URL: #2137 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 64cf711 commit ea05e76

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

lib/repl.js

+16
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,12 @@ function REPLServer(prompt,
115115
// just for backwards compat, see github.com/joyent/node/pull/7127
116116
self.rli = this;
117117

118+
const savedRegExMatches = ['', '', '', '', '', '', '', '', '', ''];
119+
const sep = '\u0000\u0000\u0000';
120+
const regExMatcher = new RegExp(`^${sep}(.*)${sep}(.*)${sep}(.*)${sep}(.*)` +
121+
`${sep}(.*)${sep}(.*)${sep}(.*)${sep}(.*)` +
122+
`${sep}(.*)$`);
123+
118124
eval_ = eval_ || defaultEval;
119125

120126
function defaultEval(code, context, file, cb) {
@@ -148,6 +154,10 @@ function REPLServer(prompt,
148154
break;
149155
}
150156

157+
// This will set the values from `savedRegExMatches` to corresponding
158+
// predefined RegExp properties `RegExp.$1`, `RegExp.$2` ... `RegExp.$9`
159+
regExMatcher.test(savedRegExMatches.join(sep));
160+
151161
if (!err) {
152162
try {
153163
if (self.useGlobal) {
@@ -166,6 +176,12 @@ function REPLServer(prompt,
166176
}
167177
}
168178

179+
// After executing the current expression, store the values of RegExp
180+
// predefined properties back in `savedRegExMatches`
181+
for (let idx = 1; idx < savedRegExMatches.length; idx += 1) {
182+
savedRegExMatches[idx] = RegExp[`$${idx}`];
183+
}
184+
169185
cb(err, result);
170186
}
171187

test/parallel/test-repl.js

+10
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,16 @@ function error_test() {
232232
{ client: client_unix, send: '\'the\\\n\\\nfourtheye\'\n',
233233
expect: prompt_multiline + prompt_multiline +
234234
'\'thefourtheye\'\n' + prompt_unix },
235+
// Regression test for https://github.com/nodejs/io.js/issues/597
236+
{ client: client_unix,
237+
send: '/(.)(.)(.)(.)(.)(.)(.)(.)(.)/.test(\'123456789\')\n',
238+
expect: `true\n${prompt_unix}` },
239+
// the following test's result depends on the RegEx's match from the above
240+
{ client: client_unix,
241+
send: 'RegExp.$1\nRegExp.$2\nRegExp.$3\nRegExp.$4\nRegExp.$5\n' +
242+
'RegExp.$6\nRegExp.$7\nRegExp.$8\nRegExp.$9\n',
243+
expect: ['\'1\'\n', '\'2\'\n', '\'3\'\n', '\'4\'\n', '\'5\'\n', '\'6\'\n',
244+
'\'7\'\n', '\'8\'\n', '\'9\'\n'].join(`${prompt_unix}`) },
235245
]);
236246
}
237247

0 commit comments

Comments
 (0)