-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prevent corruption of disassembler listing command for paths w/ spaces #159
Conversation
MegaCoreX uses a build hook to save a disassembler listing to the build folder when compiling sketches. Due to the use of a redirection operator in the command, it was necessary to execute it via the Windows command interpreter by passing it as an argument to `cmd /c`. Although paths with spaces can be used without difficulty in pattern generated commands executed directly by the Arduino framework, things are more complicated when it comes to executing commands indirectly via `cmd /c`. The `cmd /c` command has an odd handling of quotes: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/cmd#remarks Under certain conditions, the first and last quotation mark of the command passed via the argument to `/c` are stripped. These conditions occur for the command generated via the platform's `recipe.hooks.objcopy.postobjcopy.1.pattern.windows` property when the both the path to `avr-objdump` and the temporary build path contain a space. The removal of the essential quotes from the start and end of the command executed by `cmd /c` causes an error. for example, if the `avr-objdump` path was: ``` C:\Users\username with spaces\AppData\Local\\Arduino15\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino7\bin\avr-objdump ``` The command will fail with the error: 'C:\Users\username' is not recognized as an internal or external command, operable program or batch file. One of the required conditions for the unwanted quote stripping is that the first character of the argument to `cmd /c` is a double quote. So this unwanted behavior can be avoided by ensuring the first character is not a double quote. That is accomplished here by adding a dummy command that does not require quoting at the start of the argument. It might seem that a less hacky approach would be to simply wrap the entire argument to `cmd /c` in an extra layer of sacrificial quotes, leaving the essential quotes intact in the command that is finally executed. While that does indeed work when running the command directly from the command line, it does not work when used in a pattern in the Arduino platform configuration framework. The problem is that the string generated from the platform pattern can not be executed as is. It must be split into arguments. The list of arguments space separated, with quoting where an argument contains a space. These arguments may contain quote characters, which must be escaped. This escaping is where the simple approach of extra quotes becomes unusable. The `os/exec` Go package used to handle the escaping does that in a way that is compatible with directly executing a command, but is not compatible with the legacy escaping system used by cmd. It seems this problem of the command having paths with spaces did not occur in Arduino IDE 1.x due to it using a Windows "8.3" format instead. Arduino CLI (and thus Arduino IDE 2.x) use the full path format instead. `recipe.hooks.savehex.presavehex.2.pattern.windows` also uses `cmd /C`. However, this command is not subject to the quote stripping because it does not ever have a double quote as the first character of the argument.
Thanks for the PR and detailed explanation! |
No. Here are some successful compilations for a board of the patched version of MegaCoreX with Arduino IDE 1.8.19: No spaces in paths:
Space in
Spaces in
As I mentioned in the PR description, the bug did not occur when using Arduino IDE 1.x because it seems it uses the 8.3 format for the path of the system temporary folder in the default
However, you can see that it is even possible to have spaces in
So even though it is more likely to occur with Arduino CLI or Arduino IDE 2.x, it is not specific to those tools. They are both using the same Windows command interpreter that is the origin of the problem, and even the inapplicability of the potential alternative solution I mentioned remains the same because the quoting is handled by the same Go package even in Arduino IDE 1.x (via arduino-builder). I chose Arduino CLI for the demo only because it makes it very simple to produce a command that contains spaces in the paths even for those of use who aren't so brave as to use spaces in our Windows user names. |
Thanks for your detailed description and contribution! I'll assume this affects my other cores as well? |
You are welcome.
That is correct. It also affects the @SpenceKonde cores. Would you like me to submit the same fix for the others? I figured it was best to start with a single PR so any discussion and review could be focused in one place, and picked this one since it was the origin of the report. |
If you have time, that would be great! I'm a bit busy at the moment, so PRs for the other cores are more than welcome! |
So what do I need to do to fix this? It sounds like the fix is that everywhere I do |
That is correct. Even though the mechanism behind the bug is fairly complex (at least to me) and obscure, fortunately the fix/workaround is quite simple and innocuous. Since the reason for the |
MegaCoreX uses a build hook to save a disassembler listing to the build folder when compiling sketches.
Due to the use of a redirection operator in the command, it was necessary to execute it via the Windows command interpreter by passing it as an argument to
cmd /c
.Although paths with spaces can be used without difficulty in pattern generated commands executed directly by the Arduino framework, things are more complicated when it comes to executing commands indirectly via
cmd /c
.The
cmd /c
command has an odd handling of quotes:https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/cmd#remarks
Under certain conditions, the first and last quotation mark of the command passed via the argument to
/c
are stripped.These conditions occur for the command generated via the platform's
recipe.hooks.objcopy.postobjcopy.1.pattern.windows
property when the both the path toavr-objdump
and the temporary build path contain a space.The removal of the essential quotes from the start and end of the command executed by
cmd /c
causes an error. for example, if theavr-objdump
path was:The command will fail with the error:
One of the required conditions for the unwanted quote stripping is that the first character of the argument to
cmd /c
is a double quote. So this unwanted behavior can be avoided by ensuring the first character is not a double quote. That is accomplished here by adding a dummy command (adds a blank line to the output, but the most suitable "no operation" candidate I found) that does not require quoting at the start of the argument.Demo of bug
Additional information
Alternatives considered
It might seem that a less hacky approach would be to simply wrap the entire argument to
cmd /c
in an extra layer of sacrificial quotes, leaving the essential quotes intact in the command that is finally executed. While that does indeed work when running the command directly from the command line, it does not work when used in a pattern in the Arduino platform configuration framework. The problem is that the string generated from the platform pattern can not be executed as is. It must be split into arguments. The list of arguments space separated, with quoting where an argument contains a space.These arguments may contain quote characters, which must be escaped. This escaping is where the simple approach of extra quotes becomes unusable. The
os/exec
Go package used to handle the escaping does that in a way that is compatible with directly executing a command, but is not compatible with the legacy escaping system used by cmd:https://pkg.go.dev/os/exec#Command
Scope of bug
It seems this problem of the command having paths with spaces did not occur in Arduino IDE 1.x due to it using a Windows "8.3" format for the default build path, which does not contain spaces. Arduino CLI (and thus Arduino IDE 2.x) uses the full path format instead. However, the bug could also occur in Arduino IDE 1.x if the user sets a custom
build.path
with spaces.recipe.hooks.savehex.presavehex.2.pattern.windows
also usescmd /C
. However, this command is not subject to the quote stripping because it does not ever have a double quote as the first character of the argument.Related
Originally reported at https://forum.arduino.cc/t/failure-with-ide-2-0-and-megacorex/1032918