Download presentation
Presentation is loading. Please wait.
Published byMyrtle McCoy Modified over 9 years ago
1
Operating System Support for Virtual Machines Sam King George Dunlap Peter Chen CoVirt Project, University of Michigan
2
Virtual Machines Software abstraction of a machine Software backward compatibility Convenient place for new services Strong isolation
3
Virtual Machine Configurations Runs directly on hardware Good performance Uses existing host OS abstractions to implement services Poor performance Type I VMM Hardware Virtual Machine Monitor Guest Operating System Guest Process Type II VMM Virtual Machine Monitor Guest Operating System Host Operating System Hardware Guest Process
4
Can we have Type I performance with Type II elegance? Yes! Only 510 lines of code added to Linux Type II VMM attain performance that approaches type I VMM
5
Presentation Outline Background on UMLinux Discussion of optimizations Conclusions
6
UMLinux Architecture Linux on top of Linux Port of Linux to run in UMLinux ptrace used for virtualization –intercept guest system calls –track guest user / kernel mode transitions Guest OS Linux Operating System PC Hardware Guest Process UMLinux VMM
7
Hardware Equivalents
8
Performance
9
Original UMLinux Guest System Call Host operating system VMM Process Guest application Guest operating system
10
Move VMM to Host Kernel Host operating system VMM Process Guest application Guest operating system VMM Process
11
Performance
12
Switching Guest Modes Significant number of guest kernel / user mode crossings –Kernel compile benchmark: 22 million guest memory exceptions 1.4 million guest system calls Protection provided using mprotect system calls Instead, use x86 segmentation hardware
13
Use Segmentation Bounds for Kernel Protection Guest OS 0x70000000 Guest Apps 0x00000000 guest kernel- mode segment bound Host OS 0xffffffff 0xc0000000 Accessible Memory Guest OS 0x70000000 Guest Apps 0x00000000 guest user- mode segment bound Host OS 0xffffffff 0xc0000000 Accessible Memory
14
Performance
15
Original UMLinux Guest Application Context Switching proc_a mem proc_b mem RAM File process_a running 0x8000 Guest Application Memory proc_a mem proc_b mem 0x8000 RAM File process_b page at 0x8000 mapped in, process_b executes Guest Application Memory
16
Multiple Address Space Definitions Instead, modify hardware page table pointer Page Table Ptr Host operating system Guest OS guest proc a guest proc bswitchguest syscall
17
Final Performance Results
18
Conclusion Existing OS abstractions sufficient, slow Fast interception of signals and exceptions Expose power of underlying hardware Type II VMM CAN be as fast as type I Questions?
19
Related Work User-Mode-Linux SUNY Palladium Mach, Exokernel, L4 Wisconsin Wind Tunnel
20
Further Areas of Improvement Asynchronous I/O Exception Handling
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.