-
Notifications
You must be signed in to change notification settings - Fork 893
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 RUSTUP_TOOLCHAIN_DIR #3207
Add RUSTUP_TOOLCHAIN_DIR #3207
Conversation
This looks appealing to me. Thank you. So to be sure I understand:
I think cargo will need to know to reset that variable : consider this stack cargo(proxy) (sets var) I think we need to keep this var hermetic: vars are great for tunnelling but know no boundaries :/. What do you think? |
Can you say more about what this step looks like? If it is something like executing |
Lets say someone has a custom toolchain they aren't managing with rustup. They do |
I'm still not clear exactly what would happen differently in that circumstance. Before: New: In both cases, the A build script or extension could intentionally modify |
Ah, I'd forgotten we set that too; ok so thats clear.
yep. What if someone sets RUSTUP_TOOLCHAIN in there somewhere?
I have largely given up assuming good intentions from users :). I don't mean that in a negative way, but rather lets be conservative rather than surprised. |
I have a proposal for a variation on this. Two in fact.
JSON is an arbitrary choice; we could use protobuf or whatever you like. |
Yea, I think in that case it would also be different. I'd be concerned about changing the format of Another option I was reluctant to suggest is that Cargo could unset |
So given these three options:
What do you prefer and why? |
Of the latter two, I don't have a strong preference. Using an encoded form is more flexible, but a little more complicated. I'm happy to do either, do you have a preference? |
I am terrible at predicting the future ;). If we're going to want to pass more info to cargo over time, having an extensible format is nice, because we can treat this as a bit of an API. If we really just need this one thing to fix things, then _DIR + resetting it is clearly less work. My hunch is that we'll find other things in future, but the question is whether they will be coupled like this is, or distinct and thus safer to simply add a new variable for |
And I found a problem with the idea of Cargo programmatically converting RUSTUP_TOOLCHAIN -> the dir. We now support toolchains in arbitrary locations on disk in rustup-toolchain.toml. Whether that was a mistake or not (I think it is) its out there now, and we'd have to be graceful in pulling it back. OTOH an arbitrary absolute file path is now a valid toolchain name in RUSTUP_TOOLCHAIN. So cargo could look for that - but that will run into some trouble with respect to trusted_dirs. You should trust any arbitrary file path IFF rustup trusts it, but we have no method to signal that today, since most any process can invoke cargo with an env variable set :/. |
Thanks for the heads up. I think if someone does that, then the optimization just won't work, which I'm fine with for now. |
Optimize usage under rustup. Closes #10986 This optimizes cargo when running under rustup to circumvent the rustup proxies. The rustup proxies introduce overhead that can make a noticeable difference. The solution here is to identify if cargo would normally run `rustc` from PATH, and the current `rustc` in PATH points to something that looks like a rustup proxy (by comparing it to the `rustup` binary which is a hard-link to the proxy). If it detects this situation, then it looks for a binary in `$RUSTUP_HOME/toolchains/$TOOLCHAIN/bin/$TOOL`. If it finds the direct toolchain executable, then it uses that instead. ## Considerations There have been some past attempts in the past to address this, but it has been a tricky problem to solve. This change has some risk because cargo is attempting to guess what the user and rustup wants, and it may guess wrong. Here are some considerations and risks for this: * Setting `RUSTC` (as in rust-lang/rustup#2958) isn't an option. This makes the `RUSTC` setting "sticky" through invocations of different toolchains, such as a cargo subcommand or build script which does something like `cargo +nightly build`. * Changing `PATH` isn't an option, due to issues like rust-lang/rustup#3036 where cargo subcommands would be unable to execute proxies (so things like `+toolchain` shorthands don't work). * Setting other environment variables in rustup (as in rust-lang/rustup#3207 which adds `RUSTUP_TOOLCHAIN_DIR` the path to the toolchain dir) comes with various complications, as there is risk that the environment variables could get out of sync with one another (like with `RUSTUP_TOOLCHAIN`), causing tools to break or become confused. There was some consideration in that PR for adding protections by using an encoded environment variable that could be cross-checked, but I have concerns about the complexity of the solution. We may want to go with this solution in the long run, but I would like to try a short term solution in this PR first to see how it turns out. * This won't work for a `rustup-toolchain.toml` override with a [`path`](https://rust-lang.github.io/rustup/overrides.html#path) setting. Cargo will use the slow path in that case. In theory it could try to detect this situation, which may be an exercise for the future. * Some build-scripts, proc-macros, or custom cargo subcommands may be doing unusual things that interfere with the assumptions made in this PR. For example, a custom subcommand could call a `cargo` executable that is not managed by rustup. Proc-macros may be executing cargo or rustc, assuming it will reach some particular toolchain. It can be difficult to predict what unusual ways cargo and rustc are being used. This PR (and its tests) tries to make extra sure that it is resilient even in unusual circumstances. * The "dev" fallback in rustup can introduce some complications for some solutions to this problem. If a rustup toolchain does not have cargo, such as with a developer "toolchain link", then rustup will automatically call either the nightly, beta, or stable cargo if they are available. This PR should work correctly, since rustup sets the correct `RUSTUP_TOOLCHAIN` environment variable for the *actual* toolchain, not the one where cargo was executed from. * Special care should be considered for dynamic linking. `LD_LIBRARY_PATH` (linux), `DYLD_LIBRARY_PATH` (macos), and `PATH` (windows) need to be carefully set so that `rustc` can find its shared libraries. Directly executing `rustc` has some risk that it will load the wrong shared libraries. There are some mitigations for this. macOS and Linux use rpath, and Windows looks in the same directory as `rustc.exe`. Also, rustup configures the dyld environment variables from the outer cargo. Finally, cargo also configures these (particularly for the deprecated compiler plugins). * This shouldn't impact installations that don't use rustup. * I've done a variety of testing on the big three platforms, but certainly nowhere exhaustive. * One of many examples is making sure Clippy's development environment works correctly, which has special requirements for dynamic linking. * There is risk about future rustup versions changing some assumptions made here. Some assumptions: * It assumes that if `RUSTUP_TOOLCHAIN` is set, then the proxy *always* runs exactly that toolchain and no other. If this changes, cargo could execute the wrong version. Currently `RUSTUP_TOOLCHAIN` is the highest priority [toolchain override](https://rust-lang.github.io/rustup/overrides.html) and is fundamental to how toolchain selection becomes "sticky", so I think it is unlikely to change. * It assumes rustup sets `RUSTUP_TOOLCHAIN` to a value that is exactly equal to the name of the toolchain in the `toolchains` directory. This works for user shorthands like `RUSTUP_TOOLCHAIN=nightly`, which gets converted to the full toolchain name. However, it does not work for `path` overrides (see above). * It assumes the `toolchains` directory layout is always `$RUSTUP_HOME/toolchains/$TOOLCHAIN`. If this changes, then I think the only consequence is that cargo will go back to the slow path. * It assumes downloading toolchains is not needed (since cargo running from the toolchain means it should already be downloaded). * It assumes there is no other environment setup needed (such as the dyld paths mentioned above). My hope is that if assumptions are no longer valid that the worst case is that cargo falls back to the slow path of running the proxy from PATH. ## Performance This change won't affect the performance on Windows because rustup currently alters PATH to point to the toolchain directory. However, rust-lang/rustup#3178 is attempting to remove that, so this PR will be required to avoid a performance penalty on Windows. That change is currently opt-in, and will likely take a long while to roll out since it won't be released until after the next release, and may be difficult to get sufficient testing. I have done some rough performance testing on macOS, Windows, and Linux on a variety of different kinds of projects with different commands. The following attempts to summarize what I saw. The timings are going to be heavily dependent on the system and the project. These are the values I get on my systems, but will likely be very different for everyone else. The Windows tests were performed with a custom build of rustup with rust-lang/rustup#3178 applied and enabled (stock rustup shows no change in performance as explained above). The data is summarized in this spreadsheet: https://docs.google.com/spreadsheets/d/1zSvU1fQ0uSELxv3VqWmegGBhbLR-8_KUkyIzCIk21X0/edit?usp=sharing `hello-world` has a particularly large impact of about 1.68 to 2.7x faster. However, a large portion of this overhead is related to running `rustc` at the start to discover its version and querying it for information. This is cached after the first run, so except for first-time builds, the effect isn't as noticeable. The "check with info" row is an benchmark that removes `target/debug/deps` but keeps the `.rustc_info.json` file. Incremental builds are a bit more difficult to construct since it requires customizing the commands for each project. I only did an incremental test for cargo itself, running `touch src/cargo/lib.rs` and then `cargo check --lib`. These measurements excluded the initial overhead of launching the rustup proxy to launch the initial cargo process. This was done just for simplicity, but it makes the test a little less characteristic of a typical usage, which will have some constant overhead for running the proxy. These tests were done using [`hyperfine`](https://crates.io/crates/hyperfine) version 1.16.1. The macOS system was an M2 Max (12-thread). The Windows and Linux experiments were run on a AMD Ryzen Threadripper 2950X (32-thread). Rust 1.68.2 was used for testing. I can share the commands if people want to see them.
I think we can probably close this at this point? |
Yea, it's fine to close. We can revisit if needed in the future. Thanks for the review and discussion! |
This adds an environment variable
RUSTUP_TOOLCHAIN_DIR
that is set when running a toolchain command. This is intended to be used by Cargo to execute rustc and rustdoc directly without going through the rustup wrappers. This should help improve performance on non-Windows platforms, and to avoid the performance loss on Windows in #3178.Modifying PATH isn't an option because it prevents recursive commands from being able to run via the proxies (#812).
Setting RUSTC isn't an option because it breaks recursive invocations (#3029 and #3031).
This option should be safe, since cargo will only invoke the toolchain binary if no other setting is specified. Recursive invocations should continue to be able to run the rustup wrappers.
ehuss/cargo@f6d949b is a prototype of what the cargo side looks like.
I have done performance testing on a variety of machines running macOS and Linux across 10 different projects. Typical improvement for a clean cargo check is about 1.07 to 1.16 times faster (with a peak of 1.25).
Closes #3035