awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
apple avatar

apple/darwin-xnuArchived

0
View on GitHub↗
11,258 stele·1,682 fork-uri·C·2 vizualizăriopensource.apple.com↗

Darwin Xnu

XNU este un kernel de sistem de operare hibrid care combină o arhitectură de microkernel cu un strat monolitic pentru serviciile de sistem. Oferă o fundație pentru dezvoltarea sistemelor de operare, încorporând interfețe standardizate de apeluri de sistem, un framework modular de drivere de dispozitiv și securitate bazată pe controlul accesului obligatoriu.

Arhitectura dispune de un microkernel bazat pe Mach și un strat monolitic bazat pe BSD. Utilizează un bus de comunicare inter-proces bazat pe transmiterea de mesaje pentru schimbul securizat de date între componentele izolate ale kernel-ului și procesele din user-space, alături de un framework de drivere orientat pe obiecte care decuplează logica specifică hardware-ului de kernel-ul de bază.

Sistemul include un motor de control al accesului obligatoriu pentru aplicarea securității bazate pe politici și un debugger de kernel la distanță pentru inspectarea memoriei live și analizarea panicii sistemului. Capabilitățile suplimentare acoperă programarea multi-procesor, coordonarea resurselor hardware și un sistem de build pentru generarea de imagini bootabile pe diferite arhitecturi.

Proiectul oferă instrumente pentru gestionarea build-ului kernel-ului, generarea simbolurilor de depanare și un framework pentru verificarea apelurilor de sistem.

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.

Istoric stele

Graficul istoricului de stele pentru apple/darwin-xnuGraficul istoricului de stele pentru apple/darwin-xnu

Căutare AI

Explorează mai multe repository-uri excelente

Descrie ce ai nevoie în limbaj simplu — AI-ul sortează mii de proiecte open source selectate în funcție de relevanță.

Start searching with AI

Întrebări frecvente

Ce face apple/darwin-xnu?

XNU este un kernel de sistem de operare hibrid care combină o arhitectură de microkernel cu un strat monolitic pentru serviciile de sistem. Oferă o fundație pentru dezvoltarea sistemelor de operare, încorporând interfețe standardizate de apeluri de sistem, un framework modular de drivere de dispozitiv și securitate bazată pe controlul accesului obligatoriu.

Care sunt principalele funcționalități ale apple/darwin-xnu?

Principalele funcționalități ale apple/darwin-xnu sunt: Operating System Kernels, Microkernel Architectures, Kernel Resource Coordination, Message Passing, Hardware Interfacing and Drivers, Inter-Process Messaging, Device Drivers, System Resource Management.

Care sunt câteva alternative open-source pentru apple/darwin-xnu?

Alternativele open-source pentru apple/darwin-xnu includ: 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…

Alternative open-source pentru Darwin Xnu

Proiecte open-source similare, clasificate după numărul de funcționalități comune cu Darwin Xnu.
  • apple-oss-distributions/xnuAvatar apple-oss-distributions

    apple-oss-distributions/xnu

    2,922Vezi pe 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
    Vezi pe GitHub↗2,922
  • torvalds/linuxAvatar torvalds

    torvalds/linux

    237,355Vezi pe 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
    Vezi pe GitHub↗237,355
  • mit-pdos/xv6-riscvAvatar mit-pdos

    mit-pdos/xv6-riscv

    9,934Vezi pe 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
    Vezi pe GitHub↗9,934
  • mozilla-firefox/firefoxAvatar mozilla-firefox

    mozilla-firefox/firefox

    11,305Vezi pe 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
    Vezi pe GitHub↗11,305
  • Vezi toate cele 30 alternative pentru Darwin Xnu→