summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-04Merge #1511bors[bot]
1511: Document more things r=asomers a=asomers Also, test rustdoc in CI, and demote missing_docs from a deny to a warning (but still deny it in CI). Co-authored-by: Alan Somers <asomers@gmail.com>
2021-09-04Fix some broken internal doc links in the socket codeAlan Somers
2021-09-04Enable pwritev and preadv for more operating systems.Alan Somers
2021-09-04Remove SigevNotify on OpenBSD and RedoxAlan Somers
Because nothing uses it on those OSes.
2021-09-04Document more thingsAlan Somers
Also, test rustdoc in CI, and demote missing_docs from a deny to a warning (but still deny it in CI).
2021-08-28Merge #1507 #1508bors[bot]
1507: Forbid dead code again r=asomers a=asomers The old problems with bitflags no longer apply 1508: More rust docs r=asomers a=asomers Switch from allow(missing_docs) to deny(missing_docs), which should gradually help us moving forward. Also, add a few missing docs, such as for sched and aio. Co-authored-by: Alan Somers <asomers@gmail.com>
2021-08-28More rust docsAlan Somers
Switch from allow(missing_docs) to deny(missing_docs), which should gradually help us moving forward. Also, add a few missing docs, such as for sched and aio.
2021-08-28Merge #1506bors[bot]
1506: Test Linux aarch64 on real aarch64 hardware. r=asomers a=asomers Co-authored-by: Alan Somers <asomers@gmail.com>
2021-08-27Ignore vsock tests on Linux aarch64Alan Somers
Apparently AWS Graviton containers don't support it. socket() retunrs EAFNOSUPPORT in that environment. Also, be more selective about skipping tests under QEMU Instead of skipping them on architectures where we happen to use QEMU, only skip them when QEMU is actually being used.
2021-08-27Test Linux aarch64 on real aarch64 hardware.Alan Somers
2021-08-28Merge #1499bors[bot]
1499: Print function name and missing capability when skipping tests r=asomers a=rtzoeller Currently when a test is skipped due to missing capabilities, a nondescript message is logged to stderr. Improve that message to include both the function name and missing capability, making it possible to inspect stderr to see which capabilities are missing, and which tests they impact. Co-authored-by: Ryan Zoeller <rtzoeller@rtzoeller.com>
2021-08-27Merge #1503bors[bot]
1503: Add TcpRepair to sockopt r=asomers a=tazz4843 This PR adds the `TCP_REPAIR` flag to `nix::sys::socket::sockopt` under the name `TcpRepair`. Co-authored-by: 0/0 <zero@imaskeleton.me>
2021-08-27Merge #1501 #1505bors[bot]
1501: Mark x86_64-unknown-illumos as Tier 2 r=asomers a=rtzoeller Illumos support is automatically built, but the README does not reflect this. 1505: Fix build for DragonFlyBSD r=asomers a=rtzoeller The build for DragonFlyBSD is currently failing, due to a missing field when initializing `passwd`. Fix warnings due to types being referenced which are marked as deprecated in libc. These constants are unused by DragonFlyBSD and can be removed: https://github.com/rust-lang/libc/commit/e0d27d01051f80e1a54df2d7e73a3e2b0e1a594d Co-authored-by: Ryan Zoeller <rtzoeller@rtzoeller.com>
2021-08-27Fix compilation warningsRyan Zoeller
2021-08-26Fix borsAlan Somers
bors got broken by a spelling change in .cirrus.yml in d20fe20af79cc6fa4528a8a170ad50a1319a1fbf that wasn't propagated to bors.toml.
2021-08-26add `TcpRepair` to sockopt0/0
2021-08-25Fix build for DragonFlyBSDRyan Zoeller
2021-08-23Mark x86_64-unknown-illumos as Tier 2Ryan Zoeller
2021-08-22Print function name and missing capability when skipping testsRyan Zoeller
2021-08-22Merge pull request #1497 from asomers/cirrus2Alan Somers
Multiple CI improvements
2021-08-22Multiple CI improvements:Alan Somers
* Install cross the easy way, via cargo * Don't test in release mode. Nix contains no release-dependent paths, and release mode testing has to my knowledge never revealed a bug in Nix. * Add Linux powerpc back to CI, fixed by the latest cross. * Check the tests even on platforms that can't run them. * DRY for the Illumos and Redox sections * Cross-check iOS from a Linux VM instead of OSX * Revert the workaround for rust-lang/rustup issue 2774
2021-08-22Fix building the tests for Redox and IllumosAlan Somers
Also, split the overbroad test_mknod_family into two tests
2021-08-22Merge #1447bors[bot]
1447: Expose SockAddr::from_raw_sockaddr r=asomers a=coolreader18 I also noticed the `SockAddr/InetAddr::to_str` functions were entirely redundant - `ToString` exists for that, & has a blanket impl on `T: Display`. Co-authored-by: Noah <33094578+coolreader18@users.noreply.github.com>
2021-08-21Merge #1495bors[bot]
1495: Deprecate SockAddr/InetAddr::to_str r=asomers a=coolreader18 Co-authored-by: Noah <33094578+coolreader18@users.noreply.github.com>
2021-08-21Expose SockAddr::from_raw_sockaddrNoah
2021-08-21Deprecate SockAddr/InetAddr::to_strNoah
2021-08-21Merge #1335bors[bot]
1335: Add `PTRACE_EVENT_STOP` enum variant r=asomers a=GabrielMajeri Adds the `PTRACE_EVENT_STOP` variant to the `ptrace::Event` enum. Smaller part of #1279 Closes #1334 Co-authored-by: Gabriel Majeri <gabriel.majeri6@gmail.com>
2021-08-18Add a changelog entryGabriel Majeri
2021-08-18Add `PTRACE_EVENT_STOP` enum variantGabriel Majeri
2021-08-18Merge #1486 #1490 #1493bors[bot]
1486: Relax assertions in sockaddr_storage_to_addr to match the documentation. r=asomers a=khuey Fixes #1479 1490: add libc::IP6T_SO_ORIGINAL_DST to socket opt r=asomers a=bearice the original PR #1410 was stalled for a while let's make it happen. this should closes #1410 and #938 1493: Fix crates.io badge r=asomers a=atouchet Co-authored-by: Kyle Huey <khuey@kylehuey.com> Co-authored-by: Icemic <bingfeng.web@gmail.com> Co-authored-by: Bearice Ren <bearice@icybear.net> Co-authored-by: Alex Touchet <alextouchet@outlook.com>
2021-08-18Merge #1489bors[bot]
1489: Don't use mem::transmute in SignalFd r=asomers a=asomers There was a better case for using it before mem::uninitialized was available, but not great. Even before then, mem::zeroed could've been used instead. Issue #373 Co-authored-by: Alan Somers <asomers@gmail.com>
2021-08-18[skip ci] Fix bors configurationAlan Somers
* I never removed 32-bit OSX and iOS targets that were removed from Cirrus in PR #1492 . * I never added Fuchsia (PR #1285) . * I never added illumos (PR #1394) . * never added Linux x32 (PR #1366) .
2021-08-17Relax assertions in sockaddr_storage_to_addr to match the documentation.Kyle Huey
Fixes #1479
2021-08-17Don't use mem::transmute in SignalFdAlan Somers
There was a better case for using it before mem::uninitialized was available, but not great. Even before then, mem::zeroed could've been used instead. Issue #373
2021-08-17Simplify definition of SIGNALFD_SIGINFO_SIZEAlan Somers
mem::size_of has been a const fn since Rust 1.24.0. Use it.
2021-08-13Fix crates.io badgeAlex Touchet
2021-08-13Merge pull request #1492 from asomers/bitflags_1.3.1Alan Somers
Fix the build with bitflags-1.3.0 and newer
2021-08-13Remove support for 32-bit Apple targetsAlan Somers
2021-08-13constify more functionsAlan Somers
Constify more functions, since we're raising the MSRV from 1.41.0 to 1.46.0. Fixes #1477
2021-08-13Fix the build with bitflags-1.3.0 and newerAlan Somers
Bitflags raised its MSRV in a minor version, forcing all consumers to follow suit. Fixes #1491
2021-08-13Fix warnings with Rust 1.46.0 - 1.51.0, inclusiveAlan Somers
These ranges of rustc are pickier about where to place an #[allow(unused_doc_comments)] attribute. It caused warnings when building for BSD-based targets.
2021-08-12update CHANGELOGBearice Ren
2021-08-12feat: add libc::IP6T_SO_ORIGINAL_DST supportIcemic
2021-08-10Forbid dead code againAlan Somers
The old problems with bitflags no longer apply
2021-08-11Merge #1482bors[bot]
1482: Add support for LOCAL_PEER_CRED r=asomers a=asomers On FreeBSD and its derivatives, this socket option gets the credentials of the connected peer. Co-authored-by: Alan Somers <asomers@gmail.com>
2021-08-11Merge #1484bors[bot]
1484: Optionally implement TryFrom in libc_enum! r=asomers a=asomers This saves code in several separate places that need to do this separately. At the same time, remove a few uses of mem::transmute that were implementing TryFrom or similar functionality. Issue #373 Co-authored-by: Alan Somers <asomers@gmail.com>
2021-08-10Add support for LOCAL_PEER_CREDAlan Somers
On FreeBSD and its derivatives, this socket option gets the credentials of the connected peer.
2021-08-10Merge #1485bors[bot]
1485: Replace some mem::transmute calls in signal.rs with pointer casts r=asomers a=asomers Issue #373 Co-authored-by: Alan Somers <asomers@gmail.com>
2021-08-09Optionally implement TryFrom in libc_enum!Alan Somers
This saves code in several separate places that need to do this separately. At the same time, remove a few uses of mem::transmute that were implementing TryFrom or similar functionality. Issue #373
2021-08-09Replace some mem::transmute calls in signal.rs with pointer castsAlan Somers
Issue #373