#syscalls #linux #clone

clone3

Rust bindings to the clone3 linux system call

5 releases

0.2.3 Dec 7, 2022
0.2.2 Jul 8, 2022
0.2.1 Jul 7, 2022
0.2.0 Jan 12, 2021
0.1.0 Jan 10, 2021

#531 in Unix APIs

Download history 152/week @ 2023-11-20 34/week @ 2023-11-27 26/week @ 2023-12-04 45/week @ 2023-12-11 29/week @ 2023-12-18 10/week @ 2023-12-25 7/week @ 2024-01-01 189/week @ 2024-01-08 158/week @ 2024-01-15 88/week @ 2024-01-22 37/week @ 2024-01-29 45/week @ 2024-02-05 310/week @ 2024-02-12 289/week @ 2024-02-19 251/week @ 2024-02-26 196/week @ 2024-03-04

1,061 downloads per month

MIT license

17KB
348 lines

crates.io, docs.rs

clone3

Rust bindings to the clone3 linux system call.

Development

Currently the bindings we provide are unsafe. We could look into making a safe wrapper on a restricted subset of the api.


lib.rs:

Bindings to the clone3 linux system call.

See the clone3 man page for more information.

This is a complex and generally unsafe operation. Users must understand the documentation to use it safely and correctly.

Examples

use clone3::Clone3;

let mut pidfd = -1;
let mut clone3 = Clone3::default();
clone3.flag_pidfd(&mut pidfd);

match unsafe { clone3.call() }.unwrap() {
    0 => println!("i am the child"),
    child => println!("i am the parent, my child has pid {} and my pidfd is {}", child, pidfd),
}

Features

The clone3 api can change in a backward compatible manner between Linux kernel versions. This crate supports picking the target version through Cargo features like linux_5-5, linux_5-7. The default is the newest kernel version. Specifying no linux feature corresponds to the initial clone3 api.

Dependencies

~4–6MB
~112K SLoC