rusty-snake
rusty-snake
NNP can not be unset, hence `set_no_new_privs(false)` does semantically makes no sense. Also manpages says: > `int prctl(PR_SET_NO_NEW_PRIVS, 1L, 0L, 0L, 0L);` > … > **EINVAL** The second argument is...
Linux 6.13 added `*at` variants of xattr syscalls: - [ ] `struct xattr_args` - [ ] `setxattrat` - [ ] `getxattrat` - [ ] `listxattrat` - [ ] `removexattrat` ```Rust...
https://github.com/bytecodealliance/rustix/blob/cb01fbe4660844b67fdd4eee2a5f769518f6a655/src/backend/linux_raw/arch/x86_64.rs#L55-L63 https://github.com/bytecodealliance/rustix/blob/cb01fbe4660844b67fdd4eee2a5f769518f6a655/src/backend/linux_raw/runtime/syscalls.rs#L143-L146 ## Every syscall may return ***Every syscall may return** with any value* because of seccomp-bpf. This includes pure syscalls like `getuid` that may return the current uid as...
`statfs` in rustix 0.38 returned the raw linux-raw-sys `statfs64` struct. rustix 1.0 changed this to a rustix `StatFs` struct that uses a `Fsid` struct for the `f_fsid` field. For the...
`StatxFlags`: - [ ] `STATX_MNT_ID_UNIQUE` (Linux 6.8) - [ ] `STATX_SUBVOL` (Linux 6.10) - [ ] `STATX_WRITE_ATOMIC` (Linux 6.11) - [ ] `STATX_DIO_READ_ALIGN` (Linux 6.14) - [x] `STATX_ALL`: "It is...
`seccomp_transaction_start.3` does not get installed with `make install`. Likely because it is missing in https://github.com/seccomp/libseccomp/blob/main/doc/Makefile.am
#### Problem `CompcatString`s can be very useful for intermediate values in iterators. Unfortunately they do not work together with rayon. #### Suggested solution A `rayon` features which, if enabled, adds...
### Before submitting a bug report - [X] I updated to the latest version of Multi-Account Container and tested if I can reproduce the issue - [X] I searched for...