lh-l4v/proof/infoflow
Gerwin Klein 65275fed6c update links in README files
Some of linked theory files have moved to different directories.

Signed-off-by: Gerwin Klein <gerwin.klein@data61.csiro.au>
2020-10-27 15:52:31 +10:00
..
figs Import release snapshot. 2014-07-14 21:32:44 +02:00
refine infoflow: update InfoFlowC session for Isabelle2020 2020-10-27 15:52:31 +10:00
tools licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
ADT_IF.thy infoflow: Isabelle2020 update 2020-10-27 15:52:31 +10:00
Arch_IF.thy infoflow: Isabelle2020 update 2020-10-27 15:52:31 +10:00
CNode_IF.thy drefine, infoflow: remove interrupt/irq from p_monad 2020-10-25 13:15:00 +11:00
Decode_IF.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
ExampleSystemPolicyFlows.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
Example_Valid_State.thy infoflow: Isabelle2020 update 2020-10-27 15:52:31 +10:00
FinalCaps.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
Finalise_IF.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
IRQMasks_IF.thy infoflow: Isabelle2020 update 2020-10-27 15:52:31 +10:00
InfoFlow.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
InfoFlow_Image_Toplevel.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
Interrupt_IF.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
Ipc_IF.thy infoflow: Isabelle2020 update 2020-10-27 15:52:31 +10:00
Noninterference.thy infoflow: Isabelle2020 update 2020-10-27 15:52:31 +10:00
Noninterference_Base.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
Noninterference_Base_Alternatives.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
Noninterference_Base_Refinement.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
PasUpdates.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
PolicyExample.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
PolicySystemSAC.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
README.md update links in README files 2020-10-27 15:52:31 +10:00
Retype_IF.thy infoflow: Isabelle2020 update 2020-10-27 15:52:31 +10:00
Scheduler_IF.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00
Syscall_IF.thy cleanup: remove stray diagnostic commands and comments 2020-06-08 20:41:10 +08:00
Tcb_IF.thy infoflow: Isabelle2020 update 2020-10-27 15:52:31 +10:00
UserOp_IF.thy licenses: convert license tags to SPDX 2020-03-13 14:38:24 +08:00

README.md

Confidentiality Proof

This proof establishes that seL4 enforces information flow, and so enforces the security property of confidentiality. Information flow security is defined in terms of (intransitive) noninterference, and implies confidentiality: data cannot be inferred without appropriate read authority. This proof is described in a 2013 IEEE Symposium on Security and Privacy paper. This proof firstly establishes noninterference for seL4's abstract specification, building on top of the Access Control Proof, before transferring the noninterference result to the kernel's C implementation via the Design Spec Refinement Proof and the C Refinement Proof.

Building

To build from the l4v/ directory, run:

./isabelle/bin/isabelle build -d . -v -b InfoFlow

Important Theories

The top-level theory where noninterference is proved for the seL4 abstract specification is Noninterference; it is transferred to the C implementation via refinement in the theory Noninterference_Refinement. The base theory where noninterference is (generically) defined is Noninterference_Base. The bottom-level theory where confidentiality is formalised over the seL4 abstract specification is InfoFlow. Confidentiality is a relational property and the theory EquivValid defines these generically for the nondeterministic state monad of the abstract specification.