SlideShare a Scribd company logo
F9: A Secure and Efficient
Microkernel Built for Deeply
Embedded Systems
Jim Huang ( 黃敬群 ) <jserv.tw@gmail.com>
Dec 9, 2013 / CCU Taiwan
Aug 28, 2013 / JuluOSDev
Aug 3, 2013 / COSCUP
Rights to copy
Attribution – ShareAlike 3.0
You are free
to copy, distribute, display, and perform the work
to make derivative works
to make commercial use of the work
Under the following conditions
Attribution. You must give the original author credit.
Share Alike. If you alter, transform, or build upon this work, you may distribute the
resulting work only under a license identical to this one.
For any reuse or distribution, you must make clear to others the license terms of this work.
Any of these conditions can be waived if you get permission from the copyright holder.
Your fair use and other rights are in no way affected by the above.
License text: http://creativecommons.org/licenses/by-sa/3.0/legalcode
© Copyright 2013 0xlab
http://0xlab.org/
Corrections, suggestions, contributions and translations
are welcome!
Latest update: Dec 9, 2013
Goals of This Presentation
• Introduce F9 microkernel, new open source
implementation built from scratch, which deploys
modern kernel techniques, derived from L4
microkernel designs, to deeply embedded devices.
https://github.com/f9micro
• Characteristics of F9 microkernel
– Efficiency: performance + power consumption
– Security: memory protection + isolated execution
– Flexible development environment
Agenda
• Target: Deeply embedded devices
• Microkernel overview
• Characteristics of F9 Microkernel
Target: Deeply Embedded Devices
Deeply Embedded Devices
• Power awareness; solid and limited applications
• Multi-tasking or cooperative scheduling is still required
• IoT (Internet of Things) is the specialized derivative
with networking facility
• Communication capability is built-in for some products
• Example: AIRO wristband (health tracker)
http://www.weweartech.com/amazing­new­uses­smart­watches/
HRV Knows You
We built in-house OS for products and releases the
basic part as an open source effort
(invisible) Medical devices make sense in our life.
:: home-care :: advance warning :: security
(invisible) Medical devices make sense in our life.
:: home-care :: advance warning :: security
Microkernel Overview
Microkernel Concepts
• Minimal kernel and hardware enforce separation
• Only kernel runs in CPU privileged mode
• Components are user!level processes
• No restrictions on component software
• Reuse of legacy software
principle of least privilege (POLA)
A capability is a communicable, unforgeable token of authority. It refers
to a value that references an object along with an associated set of access
rights. A user program on a capability-based operating system must use a
capability to access an object.
Case Study: Bugs inside big kernels
• Drivers cause 85% of Windows XP crashes.
– Michael M. Swift, Brian N. Bershad, Henry M. Levy: “Improving the
Reliability of Commodity Operating Systems”, SOSP 2003
• Error rate in Linux drivers is 3x (maximum: 10x)
– Andy Chou, Junfeng Yang, Benjamin Chelf, Seth Hallem, Dawson R.
Engler: “An Empirical Study of Operating System Errors”, SOSP 2001
• Causes for driver bugs
– 23% programming error
– 38% mismatch regarding device specification
– 39% OS-driver-interface misconceptions
– Leonid Ryzhyk, Peter Chubb, Ihor Kuz and Gernot Heiser: “Dingo:
Taming device drivers”, EuroSys 2009
Monolithic Kernel vs. Microkernel
   
Microkernel Philosophy
A concept is tolerated inside the microkernel only if
moving it outside the kernel, i.e., permitting competing
implementations would prevent the implementation of
the systems' required functionality.
– Jochen Liedtke
Microkernel
• Minimalist approach
– IPC, virtual memory, thread scheduling
• Put the rest into user space
– Device drivers, networking, file system, user interface
• Disadvantages
– Lots of system calls and context switches
• Examples: Mach, L4, QNX, MINIX, IBM K42
3 Generations of Microkernel
• Mach (1985-1994)
– replace pipes with IPC (more general) 
– improved stability (vs monolithic kernels)
– poor performance
• L3 & L4 (1990-2001)
– order of magnitude improvement in IPC performance
• written in assembly, sacrificed CPU portability
• only synchronus IPC (build async on top of sync) 
– very small kernel: more functions moved to userspace
• seL4, Fiasco.OC, Coyotos, NOVA (2000-)
– platform independence
– verification, security, multiple CPUs, etc.
Microkernel Paging
• Microkernel forwards page fault to a pager server.
• Kernel or server decides which pages need to be
written to disk in low memory situations.
• Pager server handles writing pages to disk.
Recursive Address Space
• Initial address space controlled by first process.
– Controls all available memory.
– Other address spaces empty at boot.
• Other processes obtain memory pages from first or
from their other processes that got pages from first.
• Why is memory manager flexibility useful?
– Different applications: real-time, multimedia, disk cache.
Grant
Map
Flush
Characteristics of F9 Microkernel
4 Aspects
• BSD Licensing (two-clause), suitable for both research
and commercial usage.
• Efficiency
– performance: fast IPC and well-structured designs
– energy-saving: tickless scheduling, adaptive power
management
• Security
– memory protection: MPU guarded
– Isolated execution: L4 based, capabilities model
• Flexible development
– Kprobes
– profile-directed optimizations
Why are current systems unreliable?
• Systems are huge
– No single person can understand the whole system
> F9 Microkernel has only 2K LoC of portable C
• Bug fixes usually introduce new bugs.
> F9 introduces execution domains and on-the-fly patches
• Poor fault isolation
– No isolation between system components
– OS contains hundreds of procedures linked together as a
single binary program running on the kernel mode.
> F9 is built from scratch and well-engineered for isolation
F9 Microkernel
Parent
Partition
Applications VM Worker
Process
File system
Server
VM Worker
Process
Application
Framework
Memory Manament
server
(Interrupts)
Scheduling
Policy
Unstrused Domain
F9 Microkernel Architecture
Media
Driver
Network
Driver
Network
Stack
Board
specific
Trusted Domain
Task Manament
KProbes
In-kernel
debugger
User
Space
Kernel
Space
Principles
• F9 follows the fundamental principles of L4
microkernels
– implements address spaces, thread management,
and IPC only in the privileged kernel.
• Designed and customized for ARM Cortex-M,
supporting NVIC (Nested Vectored Interrupt
Controller), Bit Banding, MPU (Memory Protection
Unit)
Thread
• Each thread has its own TCB (Thread Control Block)
and addressed by its global id.
• Also dispatcher is responsible for switching contexts.
Threads with the same priority are executed in a
round-robin fashion.
Memory Management
• split into three concepts:
– Memory pool, which represent area of physical address space
with specific attributes.
– Flexible page, which describes an always size aligned region of
an address space. Unlike other L4 implementations, flexible pages
in F9 represent MPU region instead.
– Address space, which is made up of these flexible pages.
• System calls are provided to manage address spaces:
– Grant: memory page is granted to a new user and cannot be used
anymore by its former user.
– Map: This implements shared memory – the memory page is
passed to another task but can be used by both tasks.
– Flush: The memory page that has been mapped to other users
will be flushed out of their address space.
IPC
• The concept of UTCB (user-level thread-control
blocks) is being taken on. A UTCB is a small thread-
specific region in the thread's virtual address space,
which is always mapped. Therefore, the access to the
UTCB can never raise a page fault, which makes it
perfect for the kernel to access system-call arguments,
in particular IPC payload copied from/to user threads.
• Kernel provides synchronous IPC (inter-process
communication), for which short IPC carries payload in
CPU registers only and full IPC copies message
payload via the UTCBs of the communicating parties.
Realtime: overload tolerance
• Hard realtime must be based on worst-case analysis
• overload must be tolerated gracefully and predictable
• Applications can be split into mandatory and optional
parts
3535
Hermann
Härtig
et al.
mult.
TU
Dresden
Operating
Systems
Group
SEVECOM
Budapest
wcet 95%
Energy efficiency: Tickless
• Introduce tickless timer which allow the ARM Cortex-M
to wake up only when needed, either at a scheduled
time or on an interrupt event.
• Therefore, it results in better current consumption than
the common approach using the system timer,
SysTick, which requires a constantly running and high
frequency clock.
Kprobes: dynamic instrumentation
• Inspired by Linux Kernel, allowing developers to gather
additional information about kernel operation without
recompiling or rebooting the kernel.
• It enables locations in the kernel to be instrumented
with code, and the instrumentation code runs when the
ARM core encounters that probe point.
• Once the instrumentation code completes execution,
the kernel continues normal execution.
Debugging and profiling mechanisms
• configurable debug console
• memory dump
• thread profiling
– name, uptime, stack allocated/current/used
• memory profiling
– kernel table, pool free/allocated size, fragmentation
Reference
• From L3 to seL4: What Have We Learnt in 20 Years of
L4 Microkernels? Kevin Elphinstone and Gernot
Heiser, NICTA/UNSW
• Microkernel Construction"
http://os.inf.tu-dresden.de/Studium/MkK/
• Microkernel-based Operating Systems
http://www.inf.tu-dresden.de/index.php?node_id=1314
• The L4 Microkernel, Hermann Härtig, Technische
Universität Dresden
• Microkernels, Arun Krishnamurthy, University of
Central Florida

More Related Content

PDF
PDF
Linux Porting to a Custom Board
PDF
Linux kernel modules
PDF
Linux Locking Mechanisms
PPT
Pcie drivers basics
PPTX
Linux Kernel Booting Process (1) - For NLKB
PPTX
用Raspberry Pi 學Linux I2C Driver
Linux Porting to a Custom Board
Linux kernel modules
Linux Locking Mechanisms
Pcie drivers basics
Linux Kernel Booting Process (1) - For NLKB
用Raspberry Pi 學Linux I2C Driver

What's hot (20)

PDF
Kernel Module Programming
PDF
Launch the First Process in Linux System
PDF
Embedded Linux Kernel - Build your custom kernel
PDF
Linux-Internals-and-Networking
PDF
XPDDS17: Shared Virtual Memory Virtualization Implementation on Xen - Yi Liu,...
PDF
Architecture Of The Linux Kernel
PDF
Linux Char Device Driver
PDF
Hands-on ethernet driver
ODP
Inter-process communication of Android
PDF
Interrupts
PPTX
Linux Memory Management with CMA (Contiguous Memory Allocator)
PPTX
Linux Network Stack
PDF
VLANs in the Linux Kernel
PDF
Introduction to Linux Drivers
PPT
Linux Kernel Development
PDF
Embedded Android : System Development - Part II (Linux device drivers)
PDF
Project ACRN: SR-IOV implementation
PDF
Embedded Software Design
PDF
Improve Android System Component Performance
Kernel Module Programming
Launch the First Process in Linux System
Embedded Linux Kernel - Build your custom kernel
Linux-Internals-and-Networking
XPDDS17: Shared Virtual Memory Virtualization Implementation on Xen - Yi Liu,...
Architecture Of The Linux Kernel
Linux Char Device Driver
Hands-on ethernet driver
Inter-process communication of Android
Interrupts
Linux Memory Management with CMA (Contiguous Memory Allocator)
Linux Network Stack
VLANs in the Linux Kernel
Introduction to Linux Drivers
Linux Kernel Development
Embedded Android : System Development - Part II (Linux device drivers)
Project ACRN: SR-IOV implementation
Embedded Software Design
Improve Android System Component Performance
Ad

Viewers also liked (20)

PDF
Develop Your Own Operating Systems using Cheap ARM Boards
PDF
Construct an Efficient and Secure Microkernel for IoT
PDF
Xvisor: embedded and lightweight hypervisor
PDF
給自己更好未來的 3 個練習:嵌入式作業系統設計、實做,與移植 (2015 年春季 ) 課程說明
PDF
Virtual Machine Constructions for Dummies
PDF
How A Compiler Works: GNU Toolchain
PDF
從線上售票看作業系統設計議題
PDF
Making Linux do Hard Real-time
PDF
Making Linux do Hard Real-time
PDF
Lecture notice about Embedded Operating System Design and Implementation
PDF
Implement Runtime Environments for HSA using LLVM
PDF
進階嵌入式作業系統設計與實做 (2015 年秋季 ) 課程說明
PDF
Microkernel Evolution
PDF
2016 年春季嵌入式作業系統課程說明
PDF
Interpreter, Compiler, JIT from scratch
PDF
Shorten Device Boot Time for Automotive IVI and Navigation Systems
PDF
中輟生談教育: 完全用開放原始碼軟體進行 嵌入式系統教學
PDF
Hints for L4 Microkernel
PDF
olibc: Another C Library optimized for Embedded Linux
PDF
Embedded Virtualization applied in Mobile Devices
Develop Your Own Operating Systems using Cheap ARM Boards
Construct an Efficient and Secure Microkernel for IoT
Xvisor: embedded and lightweight hypervisor
給自己更好未來的 3 個練習:嵌入式作業系統設計、實做,與移植 (2015 年春季 ) 課程說明
Virtual Machine Constructions for Dummies
How A Compiler Works: GNU Toolchain
從線上售票看作業系統設計議題
Making Linux do Hard Real-time
Making Linux do Hard Real-time
Lecture notice about Embedded Operating System Design and Implementation
Implement Runtime Environments for HSA using LLVM
進階嵌入式作業系統設計與實做 (2015 年秋季 ) 課程說明
Microkernel Evolution
2016 年春季嵌入式作業系統課程說明
Interpreter, Compiler, JIT from scratch
Shorten Device Boot Time for Automotive IVI and Navigation Systems
中輟生談教育: 完全用開放原始碼軟體進行 嵌入式系統教學
Hints for L4 Microkernel
olibc: Another C Library optimized for Embedded Linux
Embedded Virtualization applied in Mobile Devices
Ad

Similar to F9: A Secure and Efficient Microkernel Built for Deeply Embedded Systems (20)

PDF
L4 Microkernel :: Design Overview
PDF
MIcrokernel
PPTX
Operating system 15 micro kernel based os
PPTX
Lect 1_Embedded Linux Embedded RTOS ppt
DOCX
In a monolithic kerne1
DOCX
In a monolithic kerne1
PDF
lecture 1 (Part 2) kernal and its categories
PPTX
ITT Project Information Technology Basic
PPTX
Embedded Operating System-Kernel Features.pptx
PDF
Analysis of Practicality and Performance Evaluation for Monolithic Kernel and...
DOC
Symmetric multiprocessing and Microkernel
PPTX
Microx - A Unix like kernel for Embedded Systems written from scratch.
PPTX
Microkernel
PDF
Os file
PPTX
Kernel (computing)
PPTX
Kernel (computing)
PDF
Walking around linux kernel
PDF
os_1.pdf
PPTX
StructuringMethod study of information and communication technoloy.pptx
L4 Microkernel :: Design Overview
MIcrokernel
Operating system 15 micro kernel based os
Lect 1_Embedded Linux Embedded RTOS ppt
In a monolithic kerne1
In a monolithic kerne1
lecture 1 (Part 2) kernal and its categories
ITT Project Information Technology Basic
Embedded Operating System-Kernel Features.pptx
Analysis of Practicality and Performance Evaluation for Monolithic Kernel and...
Symmetric multiprocessing and Microkernel
Microx - A Unix like kernel for Embedded Systems written from scratch.
Microkernel
Os file
Kernel (computing)
Kernel (computing)
Walking around linux kernel
os_1.pdf
StructuringMethod study of information and communication technoloy.pptx

More from National Cheng Kung University (11)

PDF
PyPy's approach to construct domain-specific language runtime
PDF
The Internals of "Hello World" Program
PDF
進階嵌入式系統開發與實做 (2014 年秋季 ) 課程說明
PDF
Priority Inversion on Mars
PDF
Explore Android Internals
PDF
Open Source from Legend, Business, to Ecosystem
PDF
Summer Project: Microkernel (2013)
PDF
進階嵌入式系統開發與實作 (2013 秋季班 ) 課程說明
PDF
LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例
PDF
Faults inside System Software
PDF
Develop Your Own Operating System
PyPy's approach to construct domain-specific language runtime
The Internals of "Hello World" Program
進階嵌入式系統開發與實做 (2014 年秋季 ) 課程說明
Priority Inversion on Mars
Explore Android Internals
Open Source from Legend, Business, to Ecosystem
Summer Project: Microkernel (2013)
進階嵌入式系統開發與實作 (2013 秋季班 ) 課程說明
LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例
Faults inside System Software
Develop Your Own Operating System

Recently uploaded (20)

PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Encapsulation theory and applications.pdf
PPTX
Big Data Technologies - Introduction.pptx
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Encapsulation_ Review paper, used for researhc scholars
“AI and Expert System Decision Support & Business Intelligence Systems”
Diabetes mellitus diagnosis method based random forest with bat algorithm
Network Security Unit 5.pdf for BCA BBA.
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Spectral efficient network and resource selection model in 5G networks
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Digital-Transformation-Roadmap-for-Companies.pptx
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Building Integrated photovoltaic BIPV_UPV.pdf
Review of recent advances in non-invasive hemoglobin estimation
Encapsulation theory and applications.pdf
Big Data Technologies - Introduction.pptx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf

F9: A Secure and Efficient Microkernel Built for Deeply Embedded Systems

  • 1. F9: A Secure and Efficient Microkernel Built for Deeply Embedded Systems Jim Huang ( 黃敬群 ) <jserv.tw@gmail.com> Dec 9, 2013 / CCU Taiwan Aug 28, 2013 / JuluOSDev Aug 3, 2013 / COSCUP
  • 2. Rights to copy Attribution – ShareAlike 3.0 You are free to copy, distribute, display, and perform the work to make derivative works to make commercial use of the work Under the following conditions Attribution. You must give the original author credit. Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one. For any reuse or distribution, you must make clear to others the license terms of this work. Any of these conditions can be waived if you get permission from the copyright holder. Your fair use and other rights are in no way affected by the above. License text: http://creativecommons.org/licenses/by-sa/3.0/legalcode © Copyright 2013 0xlab http://0xlab.org/ Corrections, suggestions, contributions and translations are welcome! Latest update: Dec 9, 2013
  • 3. Goals of This Presentation • Introduce F9 microkernel, new open source implementation built from scratch, which deploys modern kernel techniques, derived from L4 microkernel designs, to deeply embedded devices. https://github.com/f9micro • Characteristics of F9 microkernel – Efficiency: performance + power consumption – Security: memory protection + isolated execution – Flexible development environment
  • 4. Agenda • Target: Deeply embedded devices • Microkernel overview • Characteristics of F9 Microkernel
  • 6. Deeply Embedded Devices • Power awareness; solid and limited applications • Multi-tasking or cooperative scheduling is still required • IoT (Internet of Things) is the specialized derivative with networking facility • Communication capability is built-in for some products • Example: AIRO wristband (health tracker) http://www.weweartech.com/amazing­new­uses­smart­watches/
  • 8. We built in-house OS for products and releases the basic part as an open source effort (invisible) Medical devices make sense in our life. :: home-care :: advance warning :: security (invisible) Medical devices make sense in our life. :: home-care :: advance warning :: security
  • 10. Microkernel Concepts • Minimal kernel and hardware enforce separation • Only kernel runs in CPU privileged mode • Components are user!level processes • No restrictions on component software • Reuse of legacy software
  • 11. principle of least privilege (POLA) A capability is a communicable, unforgeable token of authority. It refers to a value that references an object along with an associated set of access rights. A user program on a capability-based operating system must use a capability to access an object.
  • 12. Case Study: Bugs inside big kernels • Drivers cause 85% of Windows XP crashes. – Michael M. Swift, Brian N. Bershad, Henry M. Levy: “Improving the Reliability of Commodity Operating Systems”, SOSP 2003 • Error rate in Linux drivers is 3x (maximum: 10x) – Andy Chou, Junfeng Yang, Benjamin Chelf, Seth Hallem, Dawson R. Engler: “An Empirical Study of Operating System Errors”, SOSP 2001 • Causes for driver bugs – 23% programming error – 38% mismatch regarding device specification – 39% OS-driver-interface misconceptions – Leonid Ryzhyk, Peter Chubb, Ihor Kuz and Gernot Heiser: “Dingo: Taming device drivers”, EuroSys 2009
  • 13. Monolithic Kernel vs. Microkernel    
  • 14. Microkernel Philosophy A concept is tolerated inside the microkernel only if moving it outside the kernel, i.e., permitting competing implementations would prevent the implementation of the systems' required functionality. – Jochen Liedtke
  • 15. Microkernel • Minimalist approach – IPC, virtual memory, thread scheduling • Put the rest into user space – Device drivers, networking, file system, user interface • Disadvantages – Lots of system calls and context switches • Examples: Mach, L4, QNX, MINIX, IBM K42
  • 16. 3 Generations of Microkernel • Mach (1985-1994) – replace pipes with IPC (more general)  – improved stability (vs monolithic kernels) – poor performance • L3 & L4 (1990-2001) – order of magnitude improvement in IPC performance • written in assembly, sacrificed CPU portability • only synchronus IPC (build async on top of sync)  – very small kernel: more functions moved to userspace • seL4, Fiasco.OC, Coyotos, NOVA (2000-) – platform independence – verification, security, multiple CPUs, etc.
  • 17. Microkernel Paging • Microkernel forwards page fault to a pager server. • Kernel or server decides which pages need to be written to disk in low memory situations. • Pager server handles writing pages to disk.
  • 18. Recursive Address Space • Initial address space controlled by first process. – Controls all available memory. – Other address spaces empty at boot. • Other processes obtain memory pages from first or from their other processes that got pages from first. • Why is memory manager flexibility useful? – Different applications: real-time, multimedia, disk cache. Grant Map Flush
  • 19. Characteristics of F9 Microkernel
  • 20. 4 Aspects • BSD Licensing (two-clause), suitable for both research and commercial usage. • Efficiency – performance: fast IPC and well-structured designs – energy-saving: tickless scheduling, adaptive power management • Security – memory protection: MPU guarded – Isolated execution: L4 based, capabilities model • Flexible development – Kprobes – profile-directed optimizations
  • 21. Why are current systems unreliable? • Systems are huge – No single person can understand the whole system > F9 Microkernel has only 2K LoC of portable C • Bug fixes usually introduce new bugs. > F9 introduces execution domains and on-the-fly patches • Poor fault isolation – No isolation between system components – OS contains hundreds of procedures linked together as a single binary program running on the kernel mode. > F9 is built from scratch and well-engineered for isolation
  • 22. F9 Microkernel Parent Partition Applications VM Worker Process File system Server VM Worker Process Application Framework Memory Manament server (Interrupts) Scheduling Policy Unstrused Domain F9 Microkernel Architecture Media Driver Network Driver Network Stack Board specific Trusted Domain Task Manament KProbes In-kernel debugger User Space Kernel Space
  • 23. Principles • F9 follows the fundamental principles of L4 microkernels – implements address spaces, thread management, and IPC only in the privileged kernel. • Designed and customized for ARM Cortex-M, supporting NVIC (Nested Vectored Interrupt Controller), Bit Banding, MPU (Memory Protection Unit)
  • 24. Thread • Each thread has its own TCB (Thread Control Block) and addressed by its global id. • Also dispatcher is responsible for switching contexts. Threads with the same priority are executed in a round-robin fashion.
  • 25. Memory Management • split into three concepts: – Memory pool, which represent area of physical address space with specific attributes. – Flexible page, which describes an always size aligned region of an address space. Unlike other L4 implementations, flexible pages in F9 represent MPU region instead. – Address space, which is made up of these flexible pages. • System calls are provided to manage address spaces: – Grant: memory page is granted to a new user and cannot be used anymore by its former user. – Map: This implements shared memory – the memory page is passed to another task but can be used by both tasks. – Flush: The memory page that has been mapped to other users will be flushed out of their address space.
  • 26. IPC • The concept of UTCB (user-level thread-control blocks) is being taken on. A UTCB is a small thread- specific region in the thread's virtual address space, which is always mapped. Therefore, the access to the UTCB can never raise a page fault, which makes it perfect for the kernel to access system-call arguments, in particular IPC payload copied from/to user threads. • Kernel provides synchronous IPC (inter-process communication), for which short IPC carries payload in CPU registers only and full IPC copies message payload via the UTCBs of the communicating parties.
  • 27. Realtime: overload tolerance • Hard realtime must be based on worst-case analysis • overload must be tolerated gracefully and predictable • Applications can be split into mandatory and optional parts 3535 Hermann Härtig et al. mult. TU Dresden Operating Systems Group SEVECOM Budapest wcet 95%
  • 28. Energy efficiency: Tickless • Introduce tickless timer which allow the ARM Cortex-M to wake up only when needed, either at a scheduled time or on an interrupt event. • Therefore, it results in better current consumption than the common approach using the system timer, SysTick, which requires a constantly running and high frequency clock.
  • 29. Kprobes: dynamic instrumentation • Inspired by Linux Kernel, allowing developers to gather additional information about kernel operation without recompiling or rebooting the kernel. • It enables locations in the kernel to be instrumented with code, and the instrumentation code runs when the ARM core encounters that probe point. • Once the instrumentation code completes execution, the kernel continues normal execution.
  • 30. Debugging and profiling mechanisms • configurable debug console • memory dump • thread profiling – name, uptime, stack allocated/current/used • memory profiling – kernel table, pool free/allocated size, fragmentation
  • 31. Reference • From L3 to seL4: What Have We Learnt in 20 Years of L4 Microkernels? Kevin Elphinstone and Gernot Heiser, NICTA/UNSW • Microkernel Construction" http://os.inf.tu-dresden.de/Studium/MkK/ • Microkernel-based Operating Systems http://www.inf.tu-dresden.de/index.php?node_id=1314 • The L4 Microkernel, Hermann Härtig, Technische Universität Dresden • Microkernels, Arun Krishnamurthy, University of Central Florida