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

rustc's munging of PATH environment is racy when run in parallel #17360

Closed
brson opened this issue Sep 18, 2014 · 5 comments · Fixed by #34083
Closed

rustc's munging of PATH environment is racy when run in parallel #17360

brson opened this issue Sep 18, 2014 · 5 comments · Fixed by #34083
Labels
A-spurious Area: Spurious failures in builds (spuriously == for no apparent reason) O-windows Operating system: Windows

Comments

@brson
Copy link
Contributor

brson commented Sep 18, 2014

Mentioned in #17327, there are two places where rustc sets and resets PATH. Doing this means that running multiple compilations in parallel will stomp on each others' environment variables. This can happen, e.g. in rustdoc which runs tests by driving rustc directly. The proper way to set the environment for subprocesses is through the process Command type.

cc @vadimcn

@brson brson added I-wrong O-windows Operating system: Windows labels Sep 18, 2014
@vadimcn
Copy link
Contributor

vadimcn commented Sep 18, 2014

Yes, we could do that for subprocesses, but what about syntax extension dylibs? I guess this depends on why we are munging PATH/DYLD_LIBRARY_PATH/LD_LIBRARY_PATH:

  • Is this because we want the OS to find the extension dylib itself? If so, we could just search along the augmented path ourselves, then load by absolute path.
  • Or, is this because we need the OS to be able to find other dylibs that the extension dylib depends on? In this case, I don't see another way but to munge the PATH envvar. I don't know about Linux, but Windows does not seem to have a concept of a per-thread dll search path...

@pnkfelix, looks like you wrote the relevant bit of code in dynamic_lib.rs. Do you remember which of the two it was?

@vadimcn
Copy link
Contributor

vadimcn commented Sep 18, 2014

For the case 2, I suppose we could add DynamicLibrary::open_with_search_path(String, [Path]) with an internal mutex, that would temporarily alter PATH before delegating to open(). Of course, this would still race with direct calls to os::setenv("PATH", ...), but better than nothing.
In fact, because os::setenv essentially allows to mutate global variables, perhaps it should be marked as unsafe?

@pnkfelix
Copy link
Member

I thought it was case 1.

Interesting idea, marking setenv as unsafe... though note that the rules about when code needs to be annotated with unsafe is really meant to ensure data race freedom in safe code, not arbitrary race freedom

@steveklabnik
Copy link
Member

Triage: In #17327, @alexcrichton mentions this block of code:

if cfg!(windows) {
_old_path = env::var_os("PATH").unwrap_or(_old_path);
let mut new_path = sess.host_filesearch(PathKind::All)
.get_dylib_search_paths();
new_path.extend(env::split_paths(&_old_path));
env::set_var("PATH", &env::join_paths(new_path).unwrap());
}

It looks like this code still doesn't prevent adding to the path over and over again.

@alexcrichton alexcrichton added the A-spurious Area: Spurious failures in builds (spuriously == for no apparent reason) label Jun 3, 2016
@alexcrichton
Copy link
Member

I believe we've been seeing this a lot recently as #33844, which is spurious test failures from something being too big, and it's probably environment variables (#17327 coming back to haunt us)

alexcrichton added a commit to alexcrichton/rust that referenced this issue Jun 5, 2016
This commit attempts to bring our prepends to PATH on Windows when loading
plugins because we've been seeing quite a few issues with failing to spawn a
process on Windows, the leading theory of which is that PATH is too large as a
result of this. Currently this is mostly a stab in the dark as it's not
confirmed to actually fix the problem, but it's probably not a bad change to
have anyway!

cc rust-lang#33844
Closes rust-lang#17360
bors added a commit that referenced this issue Jun 8, 2016
rustc: Try to contain prepends to PATH

This commit attempts to bring our prepends to PATH on Windows when loading
plugins because we've been seeing quite a few issues with failing to spawn a
process on Windows, the leading theory of which is that PATH is too large as a
result of this. Currently this is mostly a stab in the dark as it's not
confirmed to actually fix the problem, but it's probably not a bad change to
have anyway!

cc #33844
Closes #17360
lnicola pushed a commit to lnicola/rust that referenced this issue Jun 23, 2024
fix: Fix renaming imports of foreign items touching foreign sources

Fixes rust-lang/rust-analyzer#17318
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-spurious Area: Spurious failures in builds (spuriously == for no apparent reason) O-windows Operating system: Windows
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants