Skip to content

Files

This branch is 630 commits behind seL4/l4v:master.

abstract

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 26, 2023
Mar 28, 2023
Mar 28, 2023
Mar 29, 2023
Mar 28, 2023
Apr 19, 2022
Jul 22, 2021
Jan 24, 2023
Mar 13, 2020
Dec 23, 2021
Jun 5, 2023
Oct 25, 2020
Oct 25, 2020
Oct 27, 2020
Dec 23, 2021
Oct 27, 2020
Mar 13, 2020
Feb 14, 2023
Nov 2, 2020
Nov 2, 2020
Mar 13, 2020
Nov 16, 2020
Jun 2, 2022
Mar 30, 2023
Dec 23, 2021
Nov 2, 2020
Feb 5, 2023
Nov 2, 2020
Mar 13, 2020
Nov 2, 2020
Mar 13, 2020

The Abstract Specification of seL4

l4v/spec/abstract/

This directory contains the main Isabelle sources of the seL4 abstract specification. The specification draws in additional interface files from design and machine.

The specification is written in monadic style. See l4v/lib/Monads/NonDetMonad for the definition of this monad.

Top-Level Theory

The top-level theory file that draws the whole specification together is Syscall_A, the top-level function in that theory is call_kernel.

This top-level function defines in-kernel behaviour. Later in the proof, in particular in invariant-abstract, this function is further wrapped in an automaton that describes system behaviour.

Entry Points

Two useful entry points for browsing the abstract specification are the theories Structures_A and ARM_Structs_A. They define the state space of the kernel model, including what capabilities and kernel objects are.

The theories Invocations_A and ArchInvocation_A define datatypes for the capability invocations/operations the kernel understands.

Most theories are named after the subsystem of the kernel they specify.

Building

The corresponding Isabelle session is ASpec. It is set up to build a human-readable PDF document. Glossary_Doc contains definitions of common seL4 terms.

To build, run in directory l4v/:

L4V_ARCH=ARM ./run_test ASpec

Remarks

  • Note that this specification is actually an extensible family of specifications, with predefined extension points. These points can either be left generic, as for most of the abstract invariant proofs, or they can be instantiated to more precise behaviour, such as in the theory Deterministic_A, which is used for the information flow proofs.

  • The theory Init_A does not define real kernel initialisation. Instead it is a dummy initial state for the kernel to demonstrate non-emptiness of abstract kernel invariants.

  • KernelInit_A is a paused project and not currently included in the rest of the specification.