awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
apple avatar

apple/darwin-xnuArchived

0
View on GitHub↗
11,258 stars·1,682 forks·C·17 viewsopensource.apple.com↗

Darwin Xnu

XNU is a hybrid operating system kernel that combines a microkernel architecture with a monolithic layer for system services. It provides a foundation for operating system development, incorporating standardized system-call interfaces, a modular device driver framework, and mandatory access control security.

The architecture features a Mach-based microkernel and a BSD-based monolithic layer. It utilizes a message-passing inter-process communication bus for secure data exchange between isolated kernel components and user-space processes, alongside an object-oriented driver framework that decouples hardware-specific logic from the core kernel.

The system includes a mandatory access control engine for policy-driven security enforcement and a remote kernel debugger for inspecting live memory and analyzing system panics. Additional capabilities cover multi-processor scheduling, hardware resource coordination, and a build system for generating bootable images across different architectures.

The project provides tooling for kernel build management, debug symbol generation, and a framework for system call verification.

Features

  • Operating System Kernels - Serves as the core low-level system software managing hardware resources, process scheduling, and basic system services.
  • Microkernel Architectures - Implements a hybrid kernel design combining microkernel resource isolation with a monolithic layer for system services.
  • Kernel Resource Coordination - Coordinates low-level hardware interactions, including interrupt handling and atomic operations, across different processor architectures.
  • Message Passing - Facilitates secure data exchange between isolated kernel components and user-space processes via a centralized messaging bus.
  • Hardware Interfacing and Drivers - Implements a specialized programming interface for creating and managing hardware device drivers within the kernel environment.
  • Inter-Process Messaging - Utilizes a centralized messaging bus for secure data exchange between isolated kernel components and user-space processes.
  • Device Drivers - Provides a modular framework for developing and managing kernel-mode hardware device drivers.
  • System Resource Management - Provides a coordination layer that combines microkernel architecture with standard services to ensure stable operating system operations.
  • Kernel Driver Frameworks - Provides a structured, object-oriented framework for managing driver state and hardware events in kernel mode.
  • Kernel-to-User Bridges - Implements mechanisms that route requests from the operating system kernel to user-space processes for system services.
  • Multi-Core Scheduling - Implements a scheduler and execution engine that manages computational tasks across multiple processor cores.
  • Hybrid Kernel Designs - Utilizes a hybrid design featuring a Mach-based microkernel and a BSD-based monolithic layer.
  • System Call Interfaces - Implements the secure boundary and mechanism for user-space programs to request privileged services from the kernel.
  • Security Policy Enforcers - Implements a mandatory access control engine to enforce security policies and restrict unauthorized system operations.
  • Mandatory Access Control - Provides a security framework that routes sensitive system operations through a policy-driven validator to enforce strict access rules.
  • Policy-Based Access Control - Enforces mandatory access rules by routing sensitive system operations through a centralized, policy-driven validator.
  • Kernel Build Systems - Provides build infrastructure specifically for kernel compilation and complex module dependency tracking.
  • Build Feature Selectors - Implements compile-time selection of integration modules and system dependencies based on hardware and feature flags.
  • Conditional Compilation Directives - Uses compile-time directives to include or exclude code blocks based on target platform flags and CPU architecture.
  • Bootable Image Generation - Creates flashable binary images tailored to specific hardware device trees and kernel configurations.
  • Kernel Diagnostics - Executes automated diagnostic routines during kernel initialization to verify the integrity of core system structures.
  • Remote Debugging Protocols - Implements protocols for communicating between a debugger and a remote agent to inspect live memory and analyze panics.
  • Remote Kernel Debugging - Supports inspecting live system memory and analyzing kernel panics using remote debugging protocols.
  • Architecture and ABI Configuration - Provides control over CPU feature flags and architecture-specific ABI settings during the kernel compilation process.
  • Runtime Invariant Verifications - Employs mechanisms that trigger failures when predefined program state invariants are violated during kernel runtime.
  • Compile-Time Feature Flags - Uses mechanisms to enable or disable specific code paths during the build process to customize the final kernel executable.
  • Power-On Self-Tests - Runs internal assertions and power-on self-tests during boot to validate kernel system conditions.
  • Kernel Internals - Official source code for the XNU kernel.

Star history

Star history chart for apple/darwin-xnuStar history chart for apple/darwin-xnu

How this analysis was created: This summary and feature list were written by an AI model that read the project's README and public documentation pages. Each feature links to the documentation it came from; stars, license and language come straight from the GitHub API. The model does not read the source code, and the analysis is refreshed when the project is re-analysed. Learn more on our About page.

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Open-source alternatives to Darwin Xnu

Similar open-source projects, ranked by how many features they share with Darwin Xnu.
  • apple-oss-distributions/xnuapple-oss-distributions avatar

    apple-oss-distributions/xnu

    2,922View on GitHub↗

    XNU is an operating system kernel designed to manage system hardware and process execution across different processor architectures. It utilizes a hybrid microkernel design that combines microkernel message passing with monolithic kernel performance by embedding critical subsystems into a single address space. The project implements a port-based asynchronous messaging system for communication between kernel tasks and userspace processes. It manages hardware interactions through a layered driver architecture and enforces system-wide security policies via a mandatory access control interface.

    C
    View on GitHub↗2,922
  • torvalds/linuxtorvalds avatar

    torvalds/linux

    237,355View on GitHub↗

    The Linux kernel is a monolithic operating system core that manages hardware resources, memory, and process scheduling across diverse computing architectures. It provides a standardized, POSIX-compliant environment for application execution while maintaining a modular driver framework that allows for the dynamic loading and removal of hardware interfaces. The project is distinguished by its high-performance concurrency toolkit, which utilizes lockless synchronization primitives and read-copy-update mechanisms to manage shared data access in multi-core environments. It incorporates a comprehen

    C
    View on GitHub↗237,355
  • mit-pdos/xv6-riscvmit-pdos avatar

    mit-pdos/xv6-riscv

    9,934View on GitHub↗

    xv6-riscv is a simplified Unix-like teaching operating system designed for the study of kernel design and hardware interaction. It provides a low-level RISC-V kernel implementation that serves as a bootable system image for execution and debugging within a virtual machine or emulator. The project focuses on educational instruction regarding the RISC-V architecture. It enables the study of operating system concepts through a minimal kernel that implements process management and memory handling. The system covers core kernel operations including multiprocessor resource management and the imple

    C
    View on GitHub↗9,934
  • mozilla-firefox/firefoxmozilla-firefox avatar

    mozilla-firefox/firefox

    11,305View on GitHub↗

    Firefox is a cross-platform web browser engine designed to render web content, execute JavaScript, and manage secure browsing sessions. It utilizes a multi-process isolation architecture that distributes browser tasks across independent operating system processes to ensure stability and prevent site-specific failures from impacting the entire application. The engine incorporates a sandboxed execution environment to restrict web content and untrusted scripts to isolated memory compartments, enforcing security policies that prevent unauthorized access to system resources. The project distinguis

    JavaScript
    View on GitHub↗11,305
See all 30 alternatives to Darwin Xnu→

Frequently asked questions

What does apple/darwin-xnu do?

XNU is a hybrid operating system kernel that combines a microkernel architecture with a monolithic layer for system services. It provides a foundation for operating system development, incorporating standardized system-call interfaces, a modular device driver framework, and mandatory access control security.

What are the main features of apple/darwin-xnu?

The main features of apple/darwin-xnu are: Operating System Kernels, Microkernel Architectures, Kernel Resource Coordination, Message Passing, Hardware Interfacing and Drivers, Inter-Process Messaging, Device Drivers, System Resource Management.

What are some open-source alternatives to apple/darwin-xnu?

Open-source alternatives to apple/darwin-xnu include: apple-oss-distributions/xnu — XNU is an operating system kernel designed to manage system hardware and process execution across different processor… torvalds/linux — The Linux kernel is a monolithic operating system core that manages hardware resources, memory, and process scheduling… mit-pdos/xv6-riscv — xv6-riscv is a simplified Unix-like teaching operating system designed for the study of kernel design and hardware… mozilla-firefox/firefox — Firefox is a cross-platform web browser engine designed to render web content, execute JavaScript, and manage secure… raspberrypi/linux — This project is a monolithic operating system kernel designed to serve as the foundational software layer for diverse… hackclub/putting-the-you-in-cpu — This project is a collection of technical documentation and guides designed as a computer architecture explainer. It…