2 Repos
Persisting kernel objects by associating them with files in a virtual filesystem to survive process termination.
Distinct from Filesystem Cache Persistence: Distinct from general filesystem persistence: specifically refers to pinning kernel-resident objects to a virtual filesystem.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · Kernel Object Pinning. Refine with filters or upvote what's useful.
This project is a Go library and runtime for loading and managing eBPF programs and maps. It provides a bytecode loader and kernel interface to inject instructions into kernel hooks for system-level execution and observability across both Linux and Windows operating systems. The library features a relocation engine and tooling to ensure program compatibility across different kernel versions and distributions. It supports portable deployment by embedding compiled objects for multiple CPU architectures into a single binary and provides the ability to load signed system drivers on Windows. The
Associates kernel objects with files in a virtual filesystem to maintain resources after the controlling process exits.
seL4 is a formally verified microkernel whose C implementation is backed by machine-checked mathematical proofs of correctness, confidentiality, integrity, and availability. It enforces strict isolation between processes through hardware-enforced address space separation and a capability-based access control system, where each process holds explicit rights only to the resources it has been granted. The kernel exposes hardware resources through a minimal API of system calls that manage threads, address spaces, and inter-process communication, with synchronous IPC supporting sender-identifying b
Creates kernel objects from untyped memory as a core kernel resource management mechanism.