39 releases

0.6.18 Mar 16, 2024
0.6.15 Oct 11, 2023
0.6.13 Jun 20, 2023
0.6.9 Mar 23, 2023
0.1.4 Oct 1, 2019

#28 in Unix APIs

Download history 743/week @ 2024-01-05 919/week @ 2024-01-12 1120/week @ 2024-01-19 791/week @ 2024-01-26 521/week @ 2024-02-02 682/week @ 2024-02-09 574/week @ 2024-02-16 663/week @ 2024-02-23 623/week @ 2024-03-01 719/week @ 2024-03-08 1113/week @ 2024-03-15 768/week @ 2024-03-22 1003/week @ 2024-03-29 1256/week @ 2024-04-05 2035/week @ 2024-04-12 1087/week @ 2024-04-19

5,467 downloads per month
Used in 5 crates

BSD-2-Clause

1MB
9K SLoC

syscalls

Crates.io docs.rs License

This is a low-level library for listing and invoking raw Linux system calls.

Features

  • Provides a syscall enum for multiple architectures (see table below).
  • Provides inlinable syscall functions for multiple architectures (see table below).
  • Provides an Errno type for Rustic error handling.
  • Provides O(1) array-backed SysnoSet and SysnoMap types.

Feature Flags

The features that are enabled by default include std and serde.

std

By default, std support is enabled. If you wish to compile in a no_std environment, use:

syscalls = { version = "0.6", default-features = false }

serde

Various types can be serialized with Serde. This can be enabled with:

syscalls = { version = "0.6", features = ["serde"] }

full

Enables all extra features.

all

Enables syscall tables for all architectures. If you don't need all architectures, you can enable them individually with features like arm, x86, powerpc, etc. See the Architecture Support table below for a full list of available architectures.

Architecture Support

The Enum column means that a Sysno enum is implemented for this architecture.

The Invoke column means that syscalls can be invoked for this architecture.

The Stable Rust? column means that syscall invocation only requires stable Rust. Some architectures require nightly Rust because inline assembly is not yet stabilized for all architectures.

Arch Enum Invoke Stable Rust?
arm* Yes ✅
aarch64 Yes ✅
mips No ❌
mips64 No ❌
powerpc No ❌
powerpc64 No ❌
riscv32 ❌† No ❌
riscv64 Yes ✅
s390x No ❌
sparc N/A
sparc64 N/A
x86 Yes ✅
x86_64 Yes ✅

* Includes ARM thumb mode support.

† Rust does not support riscv32 Linux targets, but syscall functions are implemented if you're feeling adventurous.

Updating the syscall list

Updates are pulled from the .tbl files in the Linux source tree.

  1. Change the Linux version in syscalls-gen/src/main.rs to the latest version. Only update to the latest stable version (not release candidates).
  2. Run cd syscalls-gen && cargo run. This will regenerate the syscall tables in src/arch/.

Dependencies

~0.4–1MB
~24K SLoC