-
Bug
-
Resolution: Duplicate
-
P4
-
6
-
x86
-
windows_vista
FULL PRODUCT VERSION :
A DESCRIPTION OF THE PROBLEM :
the bug in Rhino. it can not pass when the unescaped word in "[]"group.
such as a base64 filter: /[a-zA-Z+/=]/; it is valid in ECMAScript,but faild in jdk6.
sun.org.mozilla.javascript.internal/TokenStream.java
line:854
fix to:
void readRegExp(int startToken)
throws IOException
{
stringBufferTop = 0;
if (startToken == Token.ASSIGN_DIV) {
// Miss-scanned /=
addToString('=');
} else {
if (startToken != Token.DIV) Kit.codeBug();
}
int depth = 0;//ADD BY JINDW
int c;
while ((c = getChar()) != '/' || depth !=0) {
if (c == '\n' || c == EOF_CHAR) {
ungetChar(c);
throw parser.reportError("msg.unterminated.re.lit");
}
/** comment by jindw
if (c == '\\') {
addToString(c);
c = getChar();
}
**/
//ADD BY JINDW BEGIN{
if(c=='['){
depth = 1;
}else if(c==']'){
depth = 0;
}else if (c == '\\') {
addToString(c);
c = getChar();
}
// if (c == '\\') {
// addToString(c);
// c = getChar();
// }
//ADD BY JINDW END}
addToString(c);
}
int reEnd = stringBufferTop;
while (true) {
if (matchChar('g'))
addToString('g');
else if (matchChar('i'))
addToString('i');
else if (matchChar('m'))
addToString('m');
else
break;
}
if (isAlpha(peekChar())) {
throw parser.reportError("msg.invalid.re.flag");
}
this.string = new String(stringBuffer, 0, reEnd);
this.regExpFlags = new String(stringBuffer, reEnd,
stringBufferTop - reEnd);
}
REPRODUCIBILITY :
This bug can be reproduced always.
A DESCRIPTION OF THE PROBLEM :
the bug in Rhino. it can not pass when the unescaped word in "[]"group.
such as a base64 filter: /[a-zA-Z+/=]/; it is valid in ECMAScript,but faild in jdk6.
sun.org.mozilla.javascript.internal/TokenStream.java
line:854
fix to:
void readRegExp(int startToken)
throws IOException
{
stringBufferTop = 0;
if (startToken == Token.ASSIGN_DIV) {
// Miss-scanned /=
addToString('=');
} else {
if (startToken != Token.DIV) Kit.codeBug();
}
int depth = 0;//ADD BY JINDW
int c;
while ((c = getChar()) != '/' || depth !=0) {
if (c == '\n' || c == EOF_CHAR) {
ungetChar(c);
throw parser.reportError("msg.unterminated.re.lit");
}
/** comment by jindw
if (c == '\\') {
addToString(c);
c = getChar();
}
**/
//ADD BY JINDW BEGIN{
if(c=='['){
depth = 1;
}else if(c==']'){
depth = 0;
}else if (c == '\\') {
addToString(c);
c = getChar();
}
// if (c == '\\') {
// addToString(c);
// c = getChar();
// }
//ADD BY JINDW END}
addToString(c);
}
int reEnd = stringBufferTop;
while (true) {
if (matchChar('g'))
addToString('g');
else if (matchChar('i'))
addToString('i');
else if (matchChar('m'))
addToString('m');
else
break;
}
if (isAlpha(peekChar())) {
throw parser.reportError("msg.invalid.re.flag");
}
this.string = new String(stringBuffer, 0, reEnd);
this.regExpFlags = new String(stringBuffer, reEnd,
stringBufferTop - reEnd);
}
REPRODUCIBILITY :
This bug can be reproduced always.
- duplicates
-
JDK-6980447 Rhino JavaScript engine code in jdk-7 has to updated with the latest code from Rhino 1.7R3
-
- Closed
-
- relates to
-
JDK-7012701 Add a test to check that Rhino's RegExp parser accepts unescaped '['
-
- Closed
-