-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
unix: Relax escaping in Debug
impl on Command
#132484
base: master
Are you sure you want to change the base?
Conversation
This comment has been minimized.
This comment has been minimized.
db8a0e7
to
b45def2
Compare
This comment has been minimized.
This comment has been minimized.
b45def2
to
b0eb25f
Compare
This comment has been minimized.
This comment has been minimized.
b0eb25f
to
c28df60
Compare
This comment has been minimized.
This comment has been minimized.
c28df60
to
afb7d5f
Compare
This PR modifies cc @jieyouxu |
e444b76
to
a9c5e19
Compare
This comment has been minimized.
This comment has been minimized.
b637ed5
to
55d3065
Compare
Seems fine but needs approval from libs-api I think (it's not an API change, but it is a behavioral one). |
Debug impl output is explicitly not stable and previous changes (#97176) didn't have libs-API approval either. I think could do without team approval. |
Fair enough! I was on the fence about it. It probably takes a t-libs FCP though. I think we should do it. @rfcbot fcp merge |
Team member @thomcc has proposed to merge this. The next step is review by the rest of the tagged team members: Concerns:
Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
In spirit, I'm fine with the change, however I think the special cases are incomplete. In particular, "2.4 Reserved Words" should be considered in that referenced doc, and I'm also surprised that But |
// As per documentation linked above: | ||
// > The application shall quote the following characters | ||
b'|' | b'&' | b';' | b'<' | b'>' | b'(' | b')' | b'$' | b'`' | b'\\' | ||
| b'"' | b'\'' | b' ' | b'\t' | b'\n' => false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we get a test for the quoting of "
, please?
Also, seconding the premise that we need to quote !
.
Since this is UNIX-specific, I think it'd be reasonable to always use single-quotes for quoting, and just handle '
specially.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we get a test for the quoting of
"
, please?
There is a test for that? In library/std/src/sys/pal/unix/process/process_common/tests.rs:
check("a\"", r#""a\"""#);
Or perhaps I'm misunderstanding?
☔ The latest upstream changes (presumably #133415) made this pull request unmergeable. Please resolve the merge conflicts. |
55d3065
to
fd265af
Compare
I think we should say "best effort only" - we aren't going to support the user passing this to a shell automatically anyhow, so we don't really need to be worried about correctness IMO.
Though I could try to create one, if T-libs want to maintain it? ;) Otherwise there's always |
This comment has been minimized.
This comment has been minimized.
The Debug output of Command is very useful for showing to the user the command that was executed when something went wrong. This is done for example by rustc when invoking an external tool like the linker fails. It is also overly verbose, since everything is quoted, which makes it harder to read. Instead, we now first check if we're reasonably sure that an argument is simple enough that using it in the shell wouldn't need quoting, and then output it without quotes if possible. Before and example output could look like this: PATH="/a:/b" "cc" "foo.o" "-target" "arm64-apple-darwin11.0" Now it looks like this: PATH=/a:/b cc foo.o -target arm64-apple-darwin11.0
fd265af
to
d83fe8d
Compare
☔ The latest upstream changes (presumably #134332) made this pull request unmergeable. Please resolve the merge conflicts. |
We discussed this during today's libs meeting. Since debug output is not stable we're ok with this change but would like to see the concerns addressed before merging it.
The debug output makes an effort to be copy-pasteable since that's useful for manually replaying commands. Although it's not guaranteed behavior we'd like to preserve that property. This change appears to be compatible with that, but if issues get reported later we'd like them to be fixed. If this majorly breaks copy-pastability on common shells then reverting would also be on the table. |
The
Debug
output ofCommand
is very useful for showing to the user the command that was executed when something went wrong. This is done for example byrustc
when invoking an external tool like the linker fails.It is also overly verbose, since everything is quoted, which makes it harder to read. Instead, we now first check if we're reasonably sure that an argument is simple enough that using it in the shell wouldn't need quoting, and then output it without quotes if possible.
An example of output before could look like this:
Now it looks like this:
This is naturally a behavioural change, but I believe it's allowed by the docs.
r? libs