Skip to content

Commit cdd02e9

Browse files
committed
Auto merge of rust-lang#124452 - matthiaskrgr:rollup-psvo04i, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - rust-lang#123942 (`x vendor`) - rust-lang#124165 (add test for incremental ICE: slice-pattern-const.rs rust-lang#83085) - rust-lang#124210 (Abort a process when FD ownership is violated) - rust-lang#124242 (bootstrap: Describe build_steps modules) - rust-lang#124406 (Remove unused `[patch]` for clippy_lints) - rust-lang#124429 (bootstrap: Document `struct Builder` and its fields) - rust-lang#124447 (Unconditionally call `really_init` on GNU/Linux) r? `@ghost` `@rustbot` modify labels: rollup
2 parents aed2187 + 0b5e173 commit cdd02e9

25 files changed

+489
-32
lines changed

Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,3 @@ strip = true
112112
rustc-std-workspace-core = { path = 'library/rustc-std-workspace-core' }
113113
rustc-std-workspace-alloc = { path = 'library/rustc-std-workspace-alloc' }
114114
rustc-std-workspace-std = { path = 'library/rustc-std-workspace-std' }
115-
116-
[patch."https://github.com/rust-lang/rust-clippy"]
117-
clippy_lints = { path = "src/tools/clippy/clippy_lints" }

library/core/src/intrinsics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2767,7 +2767,7 @@ pub const unsafe fn typed_swap<T>(x: *mut T, y: *mut T) {
27672767
#[unstable(feature = "core_intrinsics", issue = "none")]
27682768
#[inline(always)]
27692769
#[cfg_attr(not(bootstrap), rustc_intrinsic)] // just make it a regular fn in bootstrap
2770-
pub(crate) const fn ub_checks() -> bool {
2770+
pub const fn ub_checks() -> bool {
27712771
cfg!(debug_assertions)
27722772
}
27732773

library/core/src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@
193193
#![feature(str_split_inclusive_remainder)]
194194
#![feature(str_split_remainder)]
195195
#![feature(strict_provenance)]
196+
#![feature(ub_checks)]
196197
#![feature(unchecked_shifts)]
197198
#![feature(utf16_extra)]
198199
#![feature(utf16_extra_const)]
@@ -370,7 +371,8 @@ pub mod hint;
370371
pub mod intrinsics;
371372
pub mod mem;
372373
pub mod ptr;
373-
mod ub_checks;
374+
#[unstable(feature = "ub_checks", issue = "none")]
375+
pub mod ub_checks;
374376

375377
/* Core language traits */
376378

library/core/src/ub_checks.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ use crate::intrinsics::{self, const_eval_select};
4646
/// variables cannot be optimized out in MIR, an innocent-looking `let` can produce enough
4747
/// debuginfo to have a measurable compile-time impact on debug builds.
4848
#[allow_internal_unstable(const_ub_checks)] // permit this to be called in stably-const fn
49+
#[macro_export]
50+
#[unstable(feature = "ub_checks", issue = "none")]
4951
macro_rules! assert_unsafe_precondition {
5052
($kind:ident, $message:expr, ($($name:ident:$ty:ty = $arg:expr),*$(,)?) => $e:expr $(,)?) => {
5153
{
@@ -75,11 +77,13 @@ macro_rules! assert_unsafe_precondition {
7577
}
7678
};
7779
}
78-
pub(crate) use assert_unsafe_precondition;
80+
#[unstable(feature = "ub_checks", issue = "none")]
81+
pub use assert_unsafe_precondition;
7982

8083
/// Checking library UB is always enabled when UB-checking is done
8184
/// (and we use a reexport so that there is no unnecessary wrapper function).
82-
pub(crate) use intrinsics::ub_checks as check_library_ub;
85+
#[unstable(feature = "ub_checks", issue = "none")]
86+
pub use intrinsics::ub_checks as check_library_ub;
8387

8488
/// Determines whether we should check for language UB.
8589
///

library/std/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,7 @@
356356
#![feature(str_internals)]
357357
#![feature(strict_provenance)]
358358
#![feature(strict_provenance_atomic_ptr)]
359+
#![feature(ub_checks)]
359360
// tidy-alphabetical-end
360361
//
361362
// Library features (alloc):

library/std/src/os/fd/owned.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,10 @@ impl Drop for OwnedFd {
176176
// something like EINTR), we might close another valid file descriptor
177177
// opened after we closed ours.
178178
#[cfg(not(target_os = "hermit"))]
179-
let _ = libc::close(self.fd);
179+
{
180+
crate::sys::fs::debug_assert_fd_is_open(self.fd);
181+
let _ = libc::close(self.fd);
182+
}
180183
#[cfg(target_os = "hermit")]
181184
let _ = hermit_abi::close(self.fd);
182185
}

library/std/src/sys/pal/unix/args.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,10 @@ mod imp {
9898
}
9999

100100
#[inline(always)]
101-
pub unsafe fn init(_argc: isize, _argv: *const *const u8) {
102-
// On Linux-GNU, we rely on `ARGV_INIT_ARRAY` below to initialize
103-
// `ARGC` and `ARGV`. But in Miri that does not actually happen so we
104-
// still initialize here.
105-
#[cfg(any(miri, not(all(target_os = "linux", target_env = "gnu"))))]
106-
really_init(_argc, _argv);
101+
pub unsafe fn init(argc: isize, argv: *const *const u8) {
102+
// on GNU/Linux if we are main then we will init argv and argc twice, it "duplicates work"
103+
// BUT edge-cases are real: only using .init_array can break most emulators, dlopen, etc.
104+
really_init(argc, argv);
107105
}
108106

109107
/// glibc passes argc, argv, and envp to functions in .init_array, as a non-standard extension.

library/std/src/sys/pal/unix/fs.rs

+32
Original file line numberDiff line numberDiff line change
@@ -864,8 +864,40 @@ impl Iterator for ReadDir {
864864
}
865865
}
866866

867+
/// Aborts the process if a file desceriptor is not open, if debug asserts are enabled
868+
///
869+
/// Many IO syscalls can't be fully trusted about EBADF error codes because those
870+
/// might get bubbled up from a remote FUSE server rather than the file descriptor
871+
/// in the current process being invalid.
872+
///
873+
/// So we check file flags instead which live on the file descriptor and not the underlying file.
874+
/// The downside is that it costs an extra syscall, so we only do it for debug.
875+
#[inline]
876+
pub(crate) fn debug_assert_fd_is_open(fd: RawFd) {
877+
use crate::sys::os::errno;
878+
879+
// this is similar to assert_unsafe_precondition!() but it doesn't require const
880+
if core::ub_checks::check_library_ub() {
881+
if unsafe { libc::fcntl(fd, libc::F_GETFD) } == -1 && errno() == libc::EBADF {
882+
rtabort!("IO Safety violation: owned file descriptor already closed");
883+
}
884+
}
885+
}
886+
867887
impl Drop for Dir {
868888
fn drop(&mut self) {
889+
// dirfd isn't supported everywhere
890+
#[cfg(not(any(
891+
miri,
892+
target_os = "redox",
893+
target_os = "nto",
894+
target_os = "vita",
895+
target_os = "hurd",
896+
)))]
897+
{
898+
let fd = unsafe { libc::dirfd(self.0) };
899+
debug_assert_fd_is_open(fd);
900+
}
869901
let r = unsafe { libc::closedir(self.0) };
870902
assert!(
871903
r == 0 || crate::io::Error::last_os_error().is_interrupted(),

src/bootstrap/bootstrap.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -1035,14 +1035,8 @@ def check_vendored_status(self):
10351035
if self.use_vendored_sources:
10361036
vendor_dir = os.path.join(self.rust_root, 'vendor')
10371037
if not os.path.exists(vendor_dir):
1038-
sync_dirs = "--sync ./src/tools/cargo/Cargo.toml " \
1039-
"--sync ./src/tools/rust-analyzer/Cargo.toml " \
1040-
"--sync ./compiler/rustc_codegen_cranelift/Cargo.toml " \
1041-
"--sync ./compiler/rustc_codegen_gcc/Cargo.toml " \
1042-
"--sync ./src/bootstrap/Cargo.toml "
10431038
eprint('ERROR: vendoring required, but vendor directory does not exist.')
1044-
eprint(' Run `cargo vendor {}` to initialize the '
1045-
'vendor directory.'.format(sync_dirs))
1039+
eprint(' Run `x.py vendor` to initialize the vendor directory.')
10461040
eprint(' Alternatively, use the pre-vendored `rustc-src` dist component.')
10471041
eprint(' To get a stable/beta/nightly version, download it from: ')
10481042
eprint(' '

src/bootstrap/src/core/build_steps/clean.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Implementation of `make clean` in rustbuild.
1+
//! `./x.py clean`
22
//!
33
//! Responsible for cleaning out a build directory of all old and stale
44
//! artifacts to prepare for a fresh build. Currently doesn't remove the

src/bootstrap/src/core/build_steps/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ pub(crate) mod synthetic_targets;
1414
pub(crate) mod test;
1515
pub(crate) mod tool;
1616
pub(crate) mod toolstate;
17+
pub(crate) mod vendor;

src/bootstrap/src/core/build_steps/run.rs

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
//! Build-and-run steps for in-repo tools
2+
//!
3+
//! A bit of a hodge-podge as e.g. if a tool's a test fixture it should be in `build_steps::test`.
4+
//! If it can be reached from `./x.py run` it can go here.
5+
16
use std::path::PathBuf;
27
use std::process::Command;
38

src/bootstrap/src/core/build_steps/setup.rs

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//! First time setup of a dev environment
2+
//!
3+
//! These are build-and-run steps for `./x.py setup`, which allows quickly setting up the directory
4+
//! for modifying, building, and running the compiler and library. Running arbitrary configuration
5+
//! allows setting up things that cannot be simply captured inside the config.toml, in addition to
6+
//! leading people away from manually editing most of the config.toml values.
7+
18
use crate::core::builder::{Builder, RunConfig, ShouldRun, Step};
29
use crate::t;
310
use crate::utils::change_tracker::CONFIG_CHANGE_HISTORY;
@@ -25,6 +32,8 @@ pub enum Profile {
2532
None,
2633
}
2734

35+
static PROFILE_DIR: &str = "src/bootstrap/defaults";
36+
2837
/// A list of historical hashes of `src/etc/rust_analyzer_settings.json`.
2938
/// New entries should be appended whenever this is updated so we can detect
3039
/// outdated vs. user-modified settings files.
@@ -41,7 +50,7 @@ static RUST_ANALYZER_SETTINGS: &str = include_str!("../../../../etc/rust_analyze
4150

4251
impl Profile {
4352
fn include_path(&self, src_path: &Path) -> PathBuf {
44-
PathBuf::from(format!("{}/src/bootstrap/defaults/config.{}.toml", src_path.display(), self))
53+
PathBuf::from(format!("{}/{PROFILE_DIR}/config.{}.toml", src_path.display(), self))
4554
}
4655

4756
pub fn all() -> impl Iterator<Item = Self> {
@@ -220,7 +229,7 @@ fn setup_config_toml(path: &PathBuf, profile: Profile, config: &Config) {
220229

221230
let latest_change_id = CONFIG_CHANGE_HISTORY.last().unwrap().change_id;
222231
let settings = format!(
223-
"# Includes one of the default files in src/bootstrap/defaults\n\
232+
"# Includes one of the default files in {PROFILE_DIR}\n\
224233
profile = \"{profile}\"\n\
225234
change-id = {latest_change_id}\n"
226235
);

src/bootstrap/src/core/build_steps/suggest.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Attempt to magically identify good tests to run
2+
13
#![cfg_attr(feature = "build-metrics", allow(unused))]
24

35
use clap::Parser;

src/bootstrap/src/core/build_steps/test.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! Implementation of the test-related targets of the build system.
1+
//! Build-and-run steps for `./x.py test` test fixtures
22
//!
3-
//! This file implements the various regression test suites that we execute on
4-
//! our CI.
3+
//! `./x.py test` (aka [`Kind::Test`]) is currently allowed to reach build steps in other modules.
4+
//! However, this contains ~all test parts we expect people to be able to build and run locally.
55
66
use std::env;
77
use std::ffi::OsStr;

src/bootstrap/src/core/build_steps/toolstate.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
//! [Toolstate] checks to keep tools building
2+
//!
3+
//! Reachable via `./x.py test` but mostly relevant for CI, since it isn't run locally by default.
4+
//!
5+
//! [Toolstate]: https://forge.rust-lang.org/infra/toolstate.html
6+
17
use crate::core::builder::{Builder, RunConfig, ShouldRun, Step};
28
use crate::utils::helpers::t;
39
use serde_derive::{Deserialize, Serialize};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
use crate::core::builder::{Builder, RunConfig, ShouldRun, Step};
2+
use std::path::PathBuf;
3+
use std::process::Command;
4+
5+
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
6+
pub(crate) struct Vendor {
7+
sync_args: Vec<PathBuf>,
8+
versioned_dirs: bool,
9+
root_dir: PathBuf,
10+
}
11+
12+
impl Step for Vendor {
13+
type Output = ();
14+
const DEFAULT: bool = true;
15+
const ONLY_HOSTS: bool = true;
16+
17+
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
18+
run.alias("placeholder").default_condition(true)
19+
}
20+
21+
fn make_run(run: RunConfig<'_>) {
22+
run.builder.ensure(Vendor {
23+
sync_args: run.builder.config.cmd.vendor_sync_args(),
24+
versioned_dirs: run.builder.config.cmd.vendor_versioned_dirs(),
25+
root_dir: run.builder.src.clone(),
26+
});
27+
}
28+
29+
fn run(self, builder: &Builder<'_>) -> Self::Output {
30+
let mut cmd = Command::new(&builder.initial_cargo);
31+
cmd.arg("vendor");
32+
33+
if self.versioned_dirs {
34+
cmd.arg("--versioned-dirs");
35+
}
36+
37+
// Sync these paths by default.
38+
for p in [
39+
"src/tools/cargo/Cargo.toml",
40+
"src/tools/rust-analyzer/Cargo.toml",
41+
"compiler/rustc_codegen_cranelift/Cargo.toml",
42+
"compiler/rustc_codegen_gcc/Cargo.toml",
43+
"src/bootstrap/Cargo.toml",
44+
] {
45+
cmd.arg("--sync").arg(builder.src.join(p));
46+
}
47+
48+
// Also sync explicitly requested paths.
49+
for sync_arg in self.sync_args {
50+
cmd.arg("--sync").arg(sync_arg);
51+
}
52+
53+
// Will read the libstd Cargo.toml
54+
// which uses the unstable `public-dependency` feature.
55+
cmd.env("RUSTC_BOOTSTRAP", "1");
56+
57+
cmd.current_dir(self.root_dir);
58+
59+
builder.run(&mut cmd);
60+
}
61+
}

src/bootstrap/src/core/builder.rs

+28-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ use std::sync::OnceLock;
1414
use std::time::{Duration, Instant};
1515

1616
use crate::core::build_steps::tool::{self, SourceType};
17-
use crate::core::build_steps::{check, clean, compile, dist, doc, install, run, setup, test};
18-
use crate::core::build_steps::{clippy, llvm};
17+
use crate::core::build_steps::{
18+
check, clean, clippy, compile, dist, doc, install, llvm, run, setup, test, vendor,
19+
};
1920
use crate::core::config::flags::{Color, Subcommand};
2021
use crate::core::config::{DryRun, SplitDebuginfo, TargetSelection};
2122
use crate::prepare_behaviour_dump_dir;
@@ -34,13 +35,34 @@ use once_cell::sync::Lazy;
3435
#[cfg(test)]
3536
mod tests;
3637

38+
/// Builds and performs different [`Self::kind`]s of stuff and actions, taking
39+
/// into account build configuration from e.g. config.toml.
3740
pub struct Builder<'a> {
41+
/// Build configuration from e.g. config.toml.
3842
pub build: &'a Build,
43+
44+
/// The stage to use. Either implicitly determined based on subcommand, or
45+
/// explicitly specified with `--stage N`. Normally this is the stage we
46+
/// use, but sometimes we want to run steps with a lower stage than this.
3947
pub top_stage: u32,
48+
49+
/// What to build or what action to perform.
4050
pub kind: Kind,
51+
52+
/// A cache of outputs of [`Step`]s so we can avoid running steps we already
53+
/// ran.
4154
cache: Cache,
55+
56+
/// A stack of [`Step`]s to run before we can run this builder. The output
57+
/// of steps is cached in [`Self::cache`].
4258
stack: RefCell<Vec<Box<dyn Any>>>,
59+
60+
/// The total amount of time we spent running [`Step`]s in [`Self::stack`].
4361
time_spent_on_dependencies: Cell<Duration>,
62+
63+
/// The paths passed on the command line. Used by steps to figure out what
64+
/// to do. For example: with `./x check foo bar` we get `paths=["foo",
65+
/// "bar"]`.
4466
pub paths: Vec<PathBuf>,
4567
}
4668

@@ -638,6 +660,7 @@ pub enum Kind {
638660
Run,
639661
Setup,
640662
Suggest,
663+
Vendor,
641664
}
642665

643666
impl Kind {
@@ -658,6 +681,7 @@ impl Kind {
658681
Kind::Run => "run",
659682
Kind::Setup => "setup",
660683
Kind::Suggest => "suggest",
684+
Kind::Vendor => "vendor",
661685
}
662686
}
663687

@@ -921,6 +945,7 @@ impl<'a> Builder<'a> {
921945
),
922946
Kind::Setup => describe!(setup::Profile, setup::Hook, setup::Link, setup::Vscode),
923947
Kind::Clean => describe!(clean::CleanAll, clean::Rustc, clean::Std),
948+
Kind::Vendor => describe!(vendor::Vendor),
924949
// special-cased in Build::build()
925950
Kind::Format | Kind::Suggest => vec![],
926951
}
@@ -993,6 +1018,7 @@ impl<'a> Builder<'a> {
9931018
Kind::Setup,
9941019
path.as_ref().map_or([].as_slice(), |path| std::slice::from_ref(path)),
9951020
),
1021+
Subcommand::Vendor { .. } => (Kind::Vendor, &paths[..]),
9961022
};
9971023

9981024
Self::new_internal(build, kind, paths.to_owned())

0 commit comments

Comments
 (0)