net feature alone fails to compile in 1.1.5: sockopt uses crate::timespec, which net does not gate in
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 2/5
- Tempo stimato
- 1-3 ore
- Idoneità per principianti
- 70/100
- Tipo di issue
- Bug
- Chiarezza
- Specificata chiaramente
- Stato di attività
- Attiva
- Stack tecnologico
- rust
- Ambito
- backend, networking
Direzione di ricerca
Il problema si trova in src/lib.rs dove il modulo timespec è condizionato. Guarda le righe 389-409 per vedere la lista cfg. Aggiungi 'net' a quella lista. Poi verifica la correzione eseguendo cargo check con l'insieme di funzionalità che fallisce: --no-default-features --features std,net. Controlla anche i file sockopt.rs in entrambe le directory backend per confermare che fanno riferimento a crate::timespec.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Enabling only net (with default-features = false) fails to compile. Both backends' sockopt modules reference crate::timespec unconditionally, but mod timespec is gated on a feature list that does not include net.
This affects consumers that opt into a minimal API surface rather than taking default features. In our case a crate depends on rustix purely for socket primitives and sets default-features = false, features = ["std", "net"] deliberately, so that the fs, process, thread and event APIs are not compiled in.
The configuration built cleanly on 1.1.4 and regressed in 1.1.5.
Reproduction
[dependencies]
rustix = { version = "=1.1.5", default-features = false, features = ["std", "net"] }
$ cargo build
error[E0433]: cannot find `timespec` in `crate`
--> rustix-1.1.5/src/backend/linux_raw/net/sockopt.rs:293:39
|
293 | .unwrap_or(crate::timespec::Secs::MAX),
| ^^^^^^^^ could not find `timespec` in the crate root
|
note: found an item that was configured out
--> rustix-1.1.5/src/lib.rs:410:5
|
410 | mod timespec;
| ^^^^^^^^
error: could not compile `rustix` (lib) due to 6 previous errors
Equivalently, from a checkout of v1.1.5:
$ cargo check --no-default-features --features std,net
6 x error[E0433]: cannot find `timespec` in `crate`
$ cargo check --no-default-features --features std,net,use-libc
3 x error[E0433]: cannot find `timespec` in `crate`
The error count differs by backend because backend/linux_raw/net/sockopt.rs has six references to crate::timespec and backend/libc/net/sockopt.rs has three.
Platform / versions
- rustix 1.1.5 (1.1.4 is unaffected)
- rustc 1.98.1, x86_64-unknown-linux-gnu; also reproduced on CI for aarch64-apple-darwin
- Both backends: linux_raw (default) and libc (
use-libc) mainat 287214b889865d8e1406a0ee71cc409b6f6191c8 is the 1.1.5 release commit and carries the same gate, so the issue is present onmainas well
Cause
src/lib.rs:389-409 gates the module:
#[cfg(any(
feature = "fs",
feature = "event",
feature = "process",
feature = "runtime",
feature = "thread",
feature = "time",
...
))]
mod timespec;
net is absent from that list, while SO_RCVTIMEO / SO_SNDTIMEO handling in both backends' sockopt.rs uses crate::timespec::Timespec and crate::timespec::Secs with no corresponding cfg.
Suggested fix
Add net to the gate, since the net API genuinely needs the module:
#[cfg(any(
feature = "fs",
feature = "event",
+ feature = "net",
feature = "process",
feature = "runtime",
feature = "thread",
feature = "time",
src/timespec.rs depends only on core, crate::backend::c and crate::ffi, so this does not pull in any further feature-gated code.
With that one line applied to v1.1.5, the following all pass on rustc 1.98.1:
--no-default-features --features std,net PASS (was 6 errors)
--no-default-features --features std,net,use-libc PASS (was 3 errors)
--no-default-features --features std PASS
--no-default-features --features std,fs PASS
--no-default-features --features all-apis PASS
--no-default-features --features all-apis,use-libc PASS
Gating the sockopt timeout code instead would also compile, but it would silently drop SO_RCVTIMEO / SO_SNDTIMEO support from a net-only build, which seems worse than compiling the module.
I am happy to open a PR with the one-line change if that is the preferred fix.
- Lingua principale
- Rust
- Stelle
- 2.1k
- Fork
- 298
- Merge medio
- 9g 3h
- PR unite (30g)
- 3
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Altre issue di bytecodealliance/rustix
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 84/100
bytecodealliance/rustix#1660 ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 68/100
bytecodealliance/rustix#1635 ·
-
enhancement
Difficoltà 2/5 1-3 ore Idoneità per principianti 62/100
bytecodealliance/rustix#1068 ·
-
Add rlimit support for Redox Aperta
Difficoltà 4/5 3-5 giorni Idoneità per principianti 35/100
bytecodealliance/rustix#1686 ·
-
Docs build with warnings Aperta
Difficoltà 3/5 1-2 giorni Idoneità per principianti 74/100
bytecodealliance/rustix#1685 ·
Tutte le issue di bytecodealliance/rustix
Issue simili
-
bug github_actions
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
registrystack/registry-stack#1393 ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
longbridge/gpui-kit#3223 ·
-
bug engine
Difficoltà 2/5 1-3 ore Idoneità per principianti 65/100
rocky-data/rocky#2181 ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
oasisprotocol/oasis-sdk#2523 ·
-
[indexer] [QA] Add a focused test for the new NonRetryableError / assertSocketAlive() behavior. Apertabot:ai-assisted component:indexer QA-roadmap status:untriaged
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
midnightntwrk/midnight-indexer#1557 ·