vasilito 620184ab6d relibc: pthread affinity uses [u64; 2] mask matching kernel RawMask
The kernel's proc scheme SchedAffinity handler reads and writes
size_of::<RawMask>() = 16 bytes (LogicalCpuSet = [AtomicUsize; 2]),
but the relibc code was using size_of::<u64>() = 8 bytes. This
caused:
  1. setaffinity: kernel read_exact::<RawMask>() rejected the
     8-byte write (different size) and returned EINVAL
  2. getaffinity: kernel tried to copy 16 bytes into the
     8-byte userspace buffer and returned EINVAL (or truncated
     silently if the buffer was larger)

Replace the u64 affinity buffer with [u64; 2] (128 bits) so:
  - relibc writes 16 bytes matching the kernel's RawMask
  - the upper 64 bits (CPUs 64-127) are now reachable
  - endianness is native on all current Redox targets
    (little-endian x86_64 and aarch64)

The cpuset_to_u64/copy_u64_to_cpuset helpers are replaced
with cpuset_to_rawmask/copy_rawmask_to_cpuset which work on
the [u64; 2] type.

Discovered by Oracle review of Phase 0c patches (Issue 2).
The bug was introduced when the kernel's per-CPU queue refactor
replaced a single global queue with a 2-word logical CPU set
but the relibc affinity code wasn't updated to match.
2026-07-02 10:30:49 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00
2026-06-27 09:19:26 +03:00

Redox C Library (relibc)

relibc is a portable C standard library written in Rust and is under heavy development, this library contain the following items:

  • C, Linux, BSD functions and extensions
  • POSIX compatibility layer
  • Interfaces for system components

The motivation for this project is twofold: Reduce issues that the Redox developers were having with newlib, and create a more stable and safe alternative to C standard libraries written in C. It is mainly designed to be used under Redox, as an alternative to newlib, but it also supports Linux via the sc crate.

Currently Redox and Linux are supported.

redox-rt

redox-rt is a runtime library that provides much of the code that enables POSIX on Redox, like fork, exec, signal handling, etc. Relibc uses it as backend in src/platform/redox, and it's intended to eventually be usable independently, without relibc.

Repository Layout

  • include - Header files (mostly macros and variadic functions cbindgen can't generate)
  • src - Source files
  • src/c - C code
  • src/crt0 - Runtime code
  • src/crti - Runtime code
  • src/crtn - Runtime code
  • src/header - Header files implementation
  • src/header/* - Each folder has a cbindgen.toml file, it generates a C-to-Rust interface and header files
  • src/ld_so - Dynamic loader code
  • src/platform - Platform-specific and common code
  • src/platform/redox - Redox-specific code
  • src/platform/linux - Linux-specific code
  • src/pthread - pthread implementation
  • src/sync - Synchronization primitives
  • tests - C tests (each MR needs to give success in all of them)

Download the sources

To download the relibc sources run the following command:

git clone --recursive https://gitlab.redox-os.org/redox-os/relibc

Build Instructions

To build relibc out of the Redox build system, do the following steps:

Dependencies

  • Install cbindgen
cargo install cbindgen

Install the expect tool

  • Debian, Ubuntu and PopOS:
sudo apt install expect
  • Fedora:
sudo dnf install expect
  • Arch Linux:
sudo pacman -S expect

Build Relibc

To build the relibc library objects, run the following command:

make all
  • Clean old library objects and tests
make clean

Build relibc inside the Redox build system

Inside of your Redox build system, run:

make prefix

If you need to rebuild relibc for testing a Cookbook recipe, run:

touch relibc
make prefix r.recipe-name

Touching (changing the "last modified time" of) the relibc folder is needed to trigger recompilation for make prefix. Replace recipe-name with your desired recipe name.

Note: Do not edit relibc inside prefix folder! Do your work on relibc folder directly inside your Redox build system instead.

Tests

Relibc has a test suite that also runs every time a new commit get pushed. You can see .gitlab-ci.yml to see how it's being executed. That being said, ./check.sh is the recommended way to run tests. Here's few examples:

  • ./check.sh - Run build, without running the test
  • ./check.sh --test - Run all tests in x86_64 Redox using Redoxer
  • ./check.sh --test --host - Run all tests in host (Linux)
  • ./check.sh --test --arch=aarch64 - Run all tests in specified arch
    • Arch can be x86_64, aarch64, i586, or riscv64gc
  • ./check.sh --test=stdio/printf - Run a single test
    • Can be combined with --host or --arch
    • Will run statically linked test in Linux, dynamically linked in Redox

Couple of notes:

  • Relibc and its tests will rebuild if files changed, however switching between arch or host requires you to run make clean
  • Redoxer is needed to run tests for Redox without --host. You can install it using cargo install redoxer
  • Tests can hangs, the test runner can anticipate this, assuming the kernel doesn't hang too.

Issues

I'm building for my own platform which I run, and am getting x86_64-linux-gnu-ar: command not found (or similar)

The Makefile expects GNU compiler tools prefixed with the platform specifier, as would be present when you installed a cross compiler. Since you are building for your own platform, some Linux distributions (like Manjaro) don't install/symlink the prefixed executables.

An easy fix would be to replace the corresponding lines in config.mk, e.g.

ifeq ($(TARGET),x86_64-unknown-linux-gnu)
-	export CC=x86_64-linux-gnu-gcc
-	export LD=x86_64-linux-gnu-ld
-	export AR=x86_64-linux-gnu-ar
-	export NM=x86_64-linux-gnu-nm
+       export CC=gcc
+       export LD=ld
+       export AR=ar
+       export NM=nm
	export OBJCOPY=objcopy
	export CPPFLAGS=
	LD_SO_PATH=lib/ld64.so.1
endif

Contributing

Before starting to contribute, read this document.

Supported OSes

  • Redox OS
  • Linux

Supported architectures

  • i586 (Intel/AMD)
  • x86_64 (Intel/AMD)
  • aarch64 (ARM64)
  • riscv64gc (RISC-V)

Funding - Unix-style Signals and Process Management

This project is funded through NGI Zero Core, a fund established by NLnet with financial support from the European Commission's Next Generation Internet program. Learn more at the NLnet project page.

NLnet foundation logo NGI Zero Logo

S
Description
RedBear Operating System, based on RedoxOS. Licenced under MIT license.
https://redbearos.org
Readme MIT 20 GiB
Languages
C 43.9%
C++ 23.5%
Makefile 7.3%
Python 3.7%
JavaScript 3.4%
Other 17.1%