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

Linux futex (v1 and v2) API fixes, tests and Ziggification #23464

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

Conversation

rootbeer
Copy link
Contributor

@rootbeer rootbeer commented Apr 4, 2025

linux: futex v1 API cleanup

  • Use Ziggish packed struct for flags arguments. Old: linux.FUTEX.WAIT vs new: .{ .cmd = .WAIT, .private = false }.

  • rename futex_wait and futex_wake which didn't actually specify wait/wake, as futex_3arg and futex_4arg (as its the number of parameters that is different, the actual op is the second parameter).

  • provide the full six-arg flavor of the syscall (for some of the advanced ops), and add packed structs for the flag-ish parameters.

  • Use a packed union to support the 4th parameter which is sometimes a timespec pointer, and sometimes a 32-bit value.

  • Add tests that make sure the structure layout is correct and that the basic argument passing is working (no actual futexes are contended).

linux: futex v2 API cleanup

  • futex2_waitv always takes a 64-bit timespec. Perhaps the kernel_timespec should be renamed timespec64 now? Its used in iouring, too.

  • Add Ziggish packed struct encoding for futex v2 flag parameters.

  • Add very basic "tests" for the futex v2 syscalls (these found the 64-bit timespec bug).

  • Update the stale or broken comments. (I could also just delete these they're not really documenting Zig-specific behavior.)

Given that the futex2 APIs are not used by Zig's library (they're a bit too new), and the fact that these are very specialized syscalls, and they currently provide no strong benefits over the existing v1 API, it might be prudent to just delete them entirely. If you're fancy enough to build stuff on the futex API, you're more than capable of writing your own syscall wrappers ...

rootbeer added 2 commits April 4, 2025 14:07
* Use `packed struct` for flags arguments.  So, instead of
  `linux.FUTEX.WAIT` use `.{ .cmd = .WAIT, .private = true }`

* rename `futex_wait` and `futex_wake` which didn't actually specify
  wait/wake, as `futex_3arg` and `futex_4arg` (as its the number
  of parameters that is different, the `op` is whatever is specified.

* expose the full six-arg flavor of the syscall (for some of the advanced
  ops), and add packed structs for their arguments.

* Use a `packed union` to support the 4th parameter which is sometimes a
  `timespec` pointer, and sometimes a `u32`.

* Add tests that make sure the structure layout is correct and that the
  basic argument passing is working (no actual futexes are contended).
* `futex2_waitv` always takes a 64-bit timespec.  Perhaps the
  `kernel_timespec` should be renamed `timespec64`?  Its used in iouring,
  too.

* Add `packed struct` for futex v2 flags and parameters.

* Add very basic "tests" for the futex v2 syscalls (just to ensure the
  code compiles).

* Update the stale or broken comments.  (I could also just delete these
  they're not really documenting Zig-specific behavior.)

Given that the futex2 APIs are not used by Zig's library (they're a bit
too new), and the fact that these are very specialized syscalls, and they
currently provide no benefit over the existing v1 API, I wonder if instead
of fixing these up, we should just replace them with a stub that says 'use
a 3rd party library'.
@alexrp
Copy link
Member

alexrp commented Apr 5, 2025

Hmm, not clear what's going on with aarch64-linux-release here. Maybe OOM killer victim?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants