Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

madsmtm
Copy link
Contributor

@madsmtm madsmtm commented Nov 2, 2024

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.

An example of output before could look like this:

PATH="/a:/b" "cc" "foo.o" "-target" "arm64-apple-darwin11.0" "some path with spaces"

Now it looks like this:

PATH=/a:/b cc foo.o -target arm64-apple-darwin11.0 "some path with spaces"

This is naturally a behavioural change, but I believe it's allowed by the docs.

r? libs

@rustbot rustbot added O-unix Operating system: Unix-like S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Nov 2, 2024
@rust-log-analyzer

This comment has been minimized.

@madsmtm madsmtm force-pushed the command-relaxed-escape branch from db8a0e7 to b45def2 Compare November 3, 2024 21:47
@rust-log-analyzer

This comment has been minimized.

@madsmtm madsmtm force-pushed the command-relaxed-escape branch from b45def2 to b0eb25f Compare November 3, 2024 22:01
@rust-log-analyzer

This comment has been minimized.

@madsmtm madsmtm force-pushed the command-relaxed-escape branch from b0eb25f to c28df60 Compare November 3, 2024 22:14
@madsmtm madsmtm requested a review from the8472 November 3, 2024 22:14
@rust-log-analyzer

This comment has been minimized.

@madsmtm madsmtm force-pushed the command-relaxed-escape branch from c28df60 to afb7d5f Compare November 4, 2024 01:09
@rustbot rustbot added the A-run-make Area: port run-make Makefiles to rmake.rs label Nov 4, 2024
@rustbot
Copy link
Collaborator

rustbot commented Nov 4, 2024

This PR modifies tests/run-make/. If this PR is trying to port a Makefile
run-make test to use rmake.rs, please update the
run-make port tracking issue
so we can track our progress. You can either modify the tracking issue
directly, or you can comment on the tracking issue and link this PR.

cc @jieyouxu

@madsmtm madsmtm force-pushed the command-relaxed-escape branch 2 times, most recently from e444b76 to a9c5e19 Compare November 11, 2024 06:22
@rust-log-analyzer

This comment has been minimized.

@madsmtm madsmtm force-pushed the command-relaxed-escape branch 2 times, most recently from b637ed5 to 55d3065 Compare November 11, 2024 06:41
@thomcc
Copy link
Member

thomcc commented Nov 12, 2024

Seems fine but needs approval from libs-api I think (it's not an API change, but it is a behavioral one).

@thomcc thomcc added T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. I-libs-api-nominated Nominated for discussion during a libs-api team meeting. labels Nov 12, 2024
@the8472
Copy link
Member

the8472 commented Nov 12, 2024

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.

@thomcc thomcc removed T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. I-libs-api-nominated Nominated for discussion during a libs-api team meeting. labels Nov 13, 2024
@thomcc
Copy link
Member

thomcc commented Nov 13, 2024

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

@rfcbot
Copy link
Collaborator

rfcbot commented Nov 13, 2024

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.

Sorry, something went wrong.

@rfcbot rfcbot added proposed-final-comment-period Proposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off. disposition-merge This issue / PR is in PFCP or FCP with a disposition to merge it. labels Nov 13, 2024
@cuviper
Copy link
Member

cuviper commented Nov 13, 2024

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 ! (history expansion) isn't in the character list in general, but maybe that's more of a bash-ism.

But escape_ascii won't do the right thing for that either, because a command like echo "!foo" still attempts the expansion. We'd really need to use a proper shell escape routine. So I wonder what expectation we want to set here?

// 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,
Copy link
Member

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.

Copy link
Contributor Author

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?

@joshtriplett
Copy link
Member

@rfcbot reviewed

@rfcbot concern use-single-quotes
@rfcbot concern !

@bors
Copy link
Collaborator

bors commented Nov 24, 2024

☔ The latest upstream changes (presumably #133415) made this pull request unmergeable. Please resolve the merge conflicts.

@madsmtm madsmtm force-pushed the command-relaxed-escape branch from 55d3065 to fd265af Compare November 25, 2024 09:31
@madsmtm
Copy link
Contributor Author

madsmtm commented Nov 25, 2024

So I wonder what expectation we want to set here?

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.

We'd really need to use a proper shell escape routine.

Though I could try to create one, if T-libs want to maintain it? ;)

Otherwise there's always shlex, we could use that too? (cc-rs already depends on it)

@rust-log-analyzer

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
@madsmtm madsmtm force-pushed the command-relaxed-escape branch from fd265af to d83fe8d Compare November 25, 2024 09:59
@bors
Copy link
Collaborator

bors commented Dec 15, 2024

☔ The latest upstream changes (presumably #134332) made this pull request unmergeable. Please resolve the merge conflicts.

@thomcc thomcc added S-waiting-on-fcp Status: PR is in FCP and is awaiting for FCP to complete. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jan 14, 2025
@the8472
Copy link
Member

the8472 commented Feb 12, 2025

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.

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.

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-run-make Area: port run-make Makefiles to rmake.rs disposition-merge This issue / PR is in PFCP or FCP with a disposition to merge it. O-unix Operating system: Unix-like proposed-final-comment-period Proposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off. S-waiting-on-fcp Status: PR is in FCP and is awaiting for FCP to complete. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

10 participants