Bug #11142
openCommand line argument parser on windows handles double quotes inconsistently.
Description
I believe the issue is with https://github.com/ruby/ruby/blob/trunk/win32/win32.c#L1671 through 1673.
C:\Users\ksubrama>ruby -e "puts ARGV" "foo""bar"
foo"bar
C:\Users\ksubrama>ruby -e "puts ARGV" "foo"" bar"
foo"
bar
I believe the intent is that if ruby encounters "" inside a " quoted string, then it interprets it as a literal " and doesn't close out the string. If that's the case, then the code should read:
if (quote == L'"' && quote == ptr[1])
ptr++;
else
quote = L'\0';
Otherwise, the string gets closed out anyway and the ptr++ here combined with the ptr++ at the bottom of the switch at line 1685 simply skip over both "" characters while considering the string closed.
As a further test case consider:
C:\Users\ksubrama>ruby -e "puts ARGV" "foo""bar""baz"
foo"barbaz
The parser is now very confused because the first "" closed out the string and the next "" is not interpreted as a literal " but as "open and close and empty string element" and the trailing " just gets dropped.
Updated by pcai (Peter Cai) about 1 year ago
Is there a reason the windows parsing doesn't match the linux behavior?:
vscode ➜ /workspaces/ruby (master) $ ruby -e "puts ARGV" "foo""bar"
foobar
vscode ➜ /workspaces/ruby (master) $ ruby -e "puts ARGV" "foo"" bar"
foo bar
And if so, can someone clarify if "treat two double quotes as a literal double quote" is correct? I think the referenced code block reads as:
case '\"':
if (!quote)
quote = *ptr;
else if (quote == *ptr)
quote = '\0';
ptr++;
break;
Note that quote
is initially '\0' and therefore it seems that upon encountering a second double quote, if (quote == *ptr)
will always be true, so it seems gratuitous?
Updated by hsbt (Hiroshi SHIBATA) 8 months ago
- Status changed from Open to Assigned