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

Add a test for windows verbatim cwd #15344

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

Conversation

ehuss
Copy link
Contributor

@ehuss ehuss commented Mar 21, 2025

This adds a test for running cargo with a verbatim path on Windows. In particular, this checks for workspace globbing support.

This was incidentally fixed by #15166 which updated the glob crate. This was observed in oli-obk/cargo_metadata#288.

How should we test and review this PR?

You can downgrade the glob crate, or test against 1.85 to see that the test will fail with something like:

error: failed to load manifest for workspace member `\\?\C:\Proj\cargo\target\tmp\cit\t0\foo\crates\*`
referenced by workspace at `\\?\C:\Proj\cargo\target\tmp\cit\t0\foo\Cargo.toml`

Caused by:
  failed to read `\\?\C:\Proj\cargo\target\tmp\cit\t0\foo\crates\*\Cargo.toml`

Caused by:
  The filename, directory name, or volume label syntax is incorrect. (os error 123)

note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

This adds a test for running cargo with a verbatim path on Windows.
In particular, this checks for workspace globbing support.
@rustbot
Copy link
Collaborator

rustbot commented Mar 21, 2025

r? @epage

rustbot has assigned @epage.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Mar 21, 2025
// working directory. On Windows this had issues with a verbatum path.
//
// Note that verbatim path handling is still unreliable in some
// situations, see https://github.com/rust-lang/cargo/issues/9770.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would just note that an actual current working directory should not be a verbatim path. As the docs for SetCurrentDirectory say:

Each process has a single current directory made up of two parts:

  • A disk designator that is either a drive letter followed by a colon, or a server name and share name (\\servername\sharename)
  • A directory on the disk designator

That is the path must be either in the form of C:\path\to\dir or \\servername\sharename\path\to\dir. A verbatim path (i.e. one that starts with \\?\) can break assumptions made by other OS APIs. It may work for a particular use but it will be fragile.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm, yea... The problem is that people often naively do something like:

Command::new("cargo")
    .current_dir(path.canonicalize()?)
    .status()?;

If this seems too fragile, then I'm fine with just closing this PR.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is something I'm considering fixing in the standard library. At the very least I think std should attempt to simplify the path if less than MAX_PATH. But doing that is semi-blocked on cleaning up our path handling, which already has a number of adhoc fixes for things.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this seems too fragile, then I'm fine with just closing this PR.

@ChrisDenton how should we move forward? For example, some potential directions

  • Try to make these cases work, like this PR
  • leave it undefined
  • Error if CWD is verbatim

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I went ahead with making changes to Command::current_dir so that verbatim paths are usually turned into their non-verbatim equivalent rust-lang/rust#138869. I think that will solve the original issue.

I don't think cargo should error if the current directory is verbatim (though a warning may be appropriate). In pure rust code we should make a best effort to support this across all tools.

Where it gets tricky is with FFI and especially foreign processes. Attempting to make it work, as in this PR, does appeal to me. I'm just uncertain how well that will work out in practice. Even if Cargo makes it all work internally it can't control what other processes do.

Leaving it undefined is the safest option but somewhat unsatisfying. Having more test coverage for verbatim paths is appealing to me.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@epage
Copy link
Contributor

epage commented Mar 24, 2025

For reference, another verbatim path issue we have is #13919.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants