Originally I thought Fuchsia was the first kernel to extensively use capability-based security, but it looks like in seL4 they are also the main security primitive.
What is a conceptual difference between seL4 and Fuchsia's kernel?
1.2k Views Asked by LOST At
1
There are 1 best solutions below
Related Questions in MICROKERNEL
- Mach (MACOSX): task_suspend() does not suspend and task_resume() has unexpected behavior
- Does mach allow to create a new thread that belongs to another task? (MACOSX)
- Difference between static partitioning hypervisors and separation kernel / microkernel?
- Do microkernels also have per process stack like Linux has?
- What are the differences between microkernel and microservices architectures
- Is Zircon still a microkernel?
- Copy file using just Mach and Hurd functions
- Correct procedure and memory addresses to setup a virtio-net ethernet device on a sel4 microkernel
- Why is the Windows NT kernel said to be a hybrid model?
- Difference between system call and kernel call in Minix/Microkernel
- What is a conceptual difference between seL4 and Fuchsia's kernel?
- Customize OpenWhisk Invoker to use microkernel
- how kernel manages virtual memory
- Difference/relationship between Kernel/Microkernel/Hypervisor
- register custom config namespace for Symfony MicroKernel
Related Questions in FUCHSIA
- fx set core-qemu-x64 looking for gcloud account I have no idea of
- Fuchsia: how to use a built-in capability in a component
- Download Fuchsia source --ERROR: Project integration(integration) contains uncommitted changes
- Time out connect to ffx component run "fuchsia-pkg://fuchsiasamples.com/hello_world#meta/hello_world.cm"
- How to add dependencies to fx?
- Fuchsia OS Failed to start the emulator
- Fuchsia won't compile: Image Aseembly Failed
- Is Zircon still a microkernel?
- gnutls_handshake() failed (The TLS connection was non-properly terminated) while getting Fuchsia?
- Understanding the GN build system in Fuchsia OS, what is `build_api_module`?
- Is Zircon Boot Image (ZBI) essential for bootin the Zircon kernel?
- Why does Fuchsia OS uses .elf for kernel image?
- ERROR Could not execute Ninja. I was trying to execute "/opt/fuchsia/prebuilt/third_party/ninja/linux-arm64/ninja"
- Error when I run this command "fx set core.qemu-x64"
- Cannot find Platform source tree in parent of directory
Related Questions in SEL4
- How to verify C functions with array parameters using Isabelle
- sel4 Verify the script-l4v
- sel4 Verify the environment setup
- Building riscv-gnu-toolchain
- Understanding Page Tables in Linux/seL4
- Correct procedure and memory addresses to setup a virtio-net ethernet device on a sel4 microkernel
- What is a conceptual difference between seL4 and Fuchsia's kernel?
- SEL4 User-space drivers Example
- Micro-kernel architecture based operating system for desktop users?
- is there a simple way to port linux drivers to L4?
- Is there any application of L4 (microkernel)?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Fuchsia is a capability-based operating system built on top of Google's Zircon microkernel, which is itself is based on the little kernel.
It makes more sense to compare Zircon to seL4, or an operating system framework like Genode (which runs on seL4) to Fuchsia. I'll briefly compare seL4 to Zircon.
seL4 provides minimal mechanisms and is designed for high-assurance systems. Zircon provides a lot of policy and is not designed for high-assurance, with a focus on utility. I believe both aim at high performance. In short, seL4 is a very minimal microkernel compared to Zircon.
For example while seL4 provides the mechanisms to build a process abstraction, it does not define a process at all. Comparatively Zircon has much policy built into the microkernel itself, including processes. seL4 has proofs of many properties (functional correctness, integrity, isolation) when configured for specific platforms, and Zircon does not.