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

Move fd into std::sys #139092

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

thaliaarchi
Copy link
Contributor

@thaliaarchi thaliaarchi commented Mar 29, 2025

Move platform definitions of fd into std::sys, as part of #117276.

Unlike other modules directly under std::sys, this is only available on some platforms and I have not provided a fallback abstraction for unsupported platforms. That is similar to how std::os::fd is gated to only supported platforms.

Also, fix the unsafe_op_in_unsafe_fn lint, which was allowed for the Unix fd impl. Since macro expansions from std::sys::pal::unix::weak trigger this lint, fix it there too.

cc @joboet, @ChrisDenton

@rustbot
Copy link
Collaborator

rustbot commented Mar 29, 2025

r? @Mark-Simulacrum

rustbot has assigned @Mark-Simulacrum.
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 O-hermit Operating System: Hermit O-SGX Target: SGX O-unix Operating system: Unix-like O-wasi Operating system: Wasi, Webassembly System Interface 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 Mar 29, 2025
@joboet
Copy link
Member

joboet commented Mar 29, 2025

It'd be best left to another PR, but I think we could even move the Windows Handle code in this module and rename FileDesc to something like Object.

@joboet
Copy link
Member

joboet commented Mar 29, 2025

Great, thank you!
r=me once #138988 has merged.

@bors delegate+

@bors
Copy link
Collaborator

bors commented Mar 29, 2025

✌️ @thaliaarchi, you can now approve this pull request!

If @joboet told you to "r=me" after making some further change, please make that change, then do @bors r=@joboet

@bors
Copy link
Collaborator

bors commented Mar 29, 2025

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

@thaliaarchi
Copy link
Contributor Author

@bors r=@joboet

@bors
Copy link
Collaborator

bors commented Mar 29, 2025

📌 Commit 41d6fbf has been approved by joboet

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Mar 29, 2025
jhpratt added a commit to jhpratt/rust that referenced this pull request Mar 30, 2025
Move `fd` into `std::sys`

Move platform definitions of `fd` into `std::sys`, as part of rust-lang#117276.

Unlike other modules directly under `std::sys`, this is only available on some platforms and I have not provided a fallback abstraction for unsupported platforms. That is similar to how `std::os::fd` is gated to only supported platforms.

Also, fix the `unsafe_op_in_unsafe_fn` lint, which was allowed for the Unix fd impl. Since macro expansions from `std::sys::pal::unix::weak` trigger this lint, fix it there too.

cc `@joboet,` `@ChrisDenton`
bors added a commit to rust-lang-ci/rust that referenced this pull request Mar 30, 2025
Rollup of 5 pull requests

Successful merges:

 - rust-lang#137836 (Set `target_vendor = "openwrt"` on `mips64-openwrt-linux-musl`)
 - rust-lang#138206 ([AIX] Ignore linting on repr(C) structs with repr(packed) or repr(align(n)))
 - rust-lang#139044 (bootstrap: Avoid cloning `change-id` list)
 - rust-lang#139092 (Move `fd` into `std::sys`)
 - rust-lang#139111 (Properly document FakeReads)

r? `@ghost`
`@rustbot` modify labels: rollup
@bors
Copy link
Collaborator

bors commented Mar 30, 2025

⌛ Testing commit 41d6fbf with merge b15da48...

bors added a commit to rust-lang-ci/rust that referenced this pull request Mar 30, 2025
Move `fd` into `std::sys`

Move platform definitions of `fd` into `std::sys`, as part of rust-lang#117276.

Unlike other modules directly under `std::sys`, this is only available on some platforms and I have not provided a fallback abstraction for unsupported platforms. That is similar to how `std::os::fd` is gated to only supported platforms.

Also, fix the `unsafe_op_in_unsafe_fn` lint, which was allowed for the Unix fd impl. Since macro expansions from `std::sys::pal::unix::weak` trigger this lint, fix it there too.

cc `@joboet,` `@ChrisDenton`
@rust-log-analyzer
Copy link
Collaborator

The job x86_64-gnu-aux failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
test os::raw::tests::same ... ok
test io::tests::test_write_all_vectored ... ok
test os::unix::io::tests::test_raw_fd_layout ... ok
test sync::mpmc::tests::waker_current_thread_id ... ok
error: unsupported operation: can't call foreign function `writev` on OS `linux`
##[error]    --> library/std/src/sys/fd/unix.rs:344:13
     |
344  | /             libc::writev(
345  | |                 self.as_raw_fd(),
346  | |                 bufs.as_ptr() as *const libc::iovec,
347  | |                 cmp::min(bufs.len(), max_iov()) as libc::c_int,
348  | |             )
     | |_____________^ can't call foreign function `writev` on OS `linux`
     |
     = help: if this is a basic API commonly used on this target, please report an issue with Miri
     = help: however, note that Miri does not aim to support every FFI function out there; for instance, we will not support APIs for things such as GUIs, scripting languages, or databases
     = note: BACKTRACE on thread `sys::fd::unix::`:
     = note: inside `sys::fd::unix::FileDesc::write_vectored` at library/std/src/sys/fd/unix.rs:344:13: 348:14
note: inside `sys::fd::unix::tests::limit_vector_count`
    --> library/std/src/sys/fd/unix/tests.rs:11:13
     |
11   |     assert!(stdout.write_vectored(&bufs).is_ok());
     |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: inside closure
    --> library/std/src/sys/fd/unix/tests.rs:8:24
     |
7    | #[test]
     | ------- in this procedural macro expansion
8    | fn limit_vector_count() {
     |                        ^
     |
    ::: /checkout/library/core/src/macros/mod.rs:1651:5
     |
1651 |     pub macro test($item:item) {
     |     -------------- in this expansion of `#[test]`
note: inside `<{closure@library/std/src/sys/fd/unix/tests.rs:8:1: 12:2} as core::ops::FnOnce<()>>::call_once - shim`
    --> /checkout/library/core/src/ops/function.rs:250:5
     |
250  |     extern "rust-call" fn call_once(self, args: Args) -> Self::Output;
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: inside `<fn() -> core::result::Result<(), realstd::string::String> as core::ops::FnOnce<()>>::call_once - shim(fn() -> core::result::Result<(), realstd::string::String>)`
    --> /checkout/library/core/src/ops/function.rs:250:5
     |
250  |     extern "rust-call" fn call_once(self, args: Args) -> Self::Output;
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace

error: aborting due to 1 previous error

error: test failed, to rerun pass `-p std --lib`

Caused by:
  process didn't exit successfully: `/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/cargo-miri runner /checkout/obj/build/x86_64-unknown-linux-gnu/stage1-std/miri/x86_64-unknown-linux-gnu/debug/deps/std-8311653542201694 --skip 'fs::' --skip 'net::' --skip 'process::' --skip 'sys::pal::' -Z unstable-options --format json` (exit status: 1)
note: test exited abnormally; to see the full output pass --nocapture to the harness.
Build completed unsuccessfully in 0:03:19
make: *** [Makefile:57: check-aux] Error 1
  local time: Sun Mar 30 08:31:27 UTC 2025
  network time: Sun, 30 Mar 2025 08:31:27 GMT
##[error]Process completed with exit code 2.
Post job cleanup.

@bors
Copy link
Collaborator

bors commented Mar 30, 2025

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Mar 30, 2025
@thaliaarchi
Copy link
Contributor Author

The fix for the CI error is not obvious to me. Miri indeed does not implement readv or writev, but I would have expected an error from that to have been noticed much sooner than now. I didn’t modify any miri gates. Perhaps Miri hardcodes some pal paths?

@jieyouxu
Copy link
Member

cc @RalfJung

@RalfJung
Copy link
Member

Yeah, we skip the pal tests here:

$(Q)MIRIFLAGS="-Zmiri-disable-isolation" \
$(BOOTSTRAP) miri --stage 2 library/std \
$(BOOTSTRAP_ARGS) \
--no-doc -- \
--skip fs:: --skip net:: --skip process:: --skip sys::pal::
$(Q)MIRIFLAGS="-Zmiri-disable-isolation" \
$(BOOTSTRAP) miri --stage 2 library/std \
$(BOOTSTRAP_ARGS) \
--doc -- \
--skip fs:: --skip net:: --skip process:: --skip sys::pal::

So we'll need to come up with a new pattern for this. We already list fs::, maybe just add fd::?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
O-hermit Operating System: Hermit O-SGX Target: SGX O-unix Operating system: Unix-like O-wasi Operating system: Wasi, Webassembly System Interface 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.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants