Virtualization. Mike Kasick Glenn Willen Mike Cui. April 16, : Operating System Design & Implementation
|
|
|
- Egbert Booker
- 10 years ago
- Views:
Transcription
1 Virtualization Mike Kasick Glenn Willen Mike Cui : Operating System Design & Implementation April 16, 2007
2 Outline 1 Introduction 2 Virtualization 3 x86 Virtualization 4 Alternatives for Isolation 5 Alternatives for running two OSes on same machine 6 Summary
3 Outline 1 Introduction 2 Virtualization 3 x86 Virtualization 4 Alternatives for Isolation 5 Alternatives for running two OSes on same machine 6 Summary
4 What is Virtualization? Virtualization: Process of presenting and partitioning computing resources in a logical way rather than what is dictated by their physical reality Virtual Machine: An execution environment identical to a physical machine, with the ability to execute a full operating system
5 Advantages of the Process Abstraction Each process is a pseudo-machine Processes have their own registers, address space, file descriptors (sometimes) Protection from other processes
6 Disadvantages of the Process Abstraction Processes share the filesystem Difficult to simultaneously use different versions of: Programs, libraries, configurations Single machine owner: root is the superuser Which domain does a machine belong to?
7 Disadvantages of the Process Abstraction Processes share the same kernel Kernel/OS specific software Kernels are huge, lots of possibly unstable code AFS client fallover? Processes have limited degree of protection, even from each other OOM killer?
8 Why Use Virtualization? Process abstraction at the kernel layer Separate filesystem Different machine owners Offers much better protection (in theory) Secure hypervisor, fair scheduler Interdomain DoS? Thrashing?
9 Why Use Virtualization? Run two operating systems on the same machine! Huge impact on enterprise hosting No longer have to sell whole machines Sell machine slices Can put competitors on the same physical hardware
10 Why Use Virtualization? With NAS, can separate instance of VM from instance of hardware Live migration of VM from machine to machine No more maintenance downtime VM replication to provide fault-tolerance Why bother doing it at the application level?
11 Disadvantages of Virtual Machines Attempt to solve what really is an abstraction issue somewhere else Monolithic kernels Not enough partitioning of global identifiers pids, uids, etc Draws a box around the problem : Still hard to solve the problem Relatively easy to manipulate the box (the VM)
12 Disadvantages of Virtual Machines Feasibility issues Hardware support? OS support? Admin support? VMware ESX seems to be doing the job well Performance issues Is a 10-20% performance hit tolerable? Can your NIC or disk keep up with the load?
13 Outline 1 Introduction 2 Virtualization 3 x86 Virtualization 4 Alternatives for Isolation 5 Alternatives for running two OSes on same machine 6 Summary
14 Full Virtualization IBM CP-40 (later CP/CMS & VM/CMS) (1967) Supported 14 simultaneous S/360 virtual machines. Popek & Goldberg: Formal Requirements for Virtualizable Third Generation Architectures (1974) Defines characteristics of a Virtual Machine Monitor Describes a set of architecture features sufficient to support virtualization
15 Virtual Machine Monitor 1 Equivalence: Provides an environment essentially identical with the original machine 2 Efficiency: Programs running under a VMM should exhibit only minor decreases in speed 3 Resource Control: VMM is in complete control of system resources
16 Popek & Goldberg Instruction Classification 1 Privileged instructions: Trap if the processor is in user mode Do not trap if in supervisor mode 2 Sensitive instructions: Attempt to change configuration of system resources Illustrate different behaviors depending on system configuration
17 Popek & Goldberg Theorem... a virtual machine monitor may be constructed if the set of sensitive instructions for that computer is a subset of the set of privileged instructions. All instructions must either: Exhibit the same result in user and supervisor modes Or, they must trap if executed in user mode Architectures that meet this requirement: IBM S/370, Motorola , PowerPC, others.
18 Outline 1 Introduction 2 Virtualization 3 x86 Virtualization 4 Alternatives for Isolation 5 Alternatives for running two OSes on same machine 6 Summary
19 x86 Virtualization x86 ISA does not meet the Popek & Goldberg requirements for virtualization ISA contains 17+ sensitive, unprivileged instructions: SGDT, SIDT, SLDT, SMSW, PUSHF, POPF, LAR, LSL, VERR, VERW, POP, PUSH, CALL, JMP, INT, RET, STR, MOV Most simply reveal the processor s CPL Virtualization is still possible, requires a workaround
20 VMware (1998) Runs guest operating system in ring 3 Maintains the illusion of running the guest in ring 0 Insensitive instructions execute as is: addl %ecx, %eax Privileged instructions trap to the VMM: cli Performs binary translation on guest code to work around sensitive, unprivileged instructions: popf int $99
21 VMware (1998) Privileged instructions trap to the VMM: cli actually results in: int $13 (General Protection Fault) which gets handled: void gpf_exception(int vm_num, regs_t *regs) { switch (vmm_get_faulting_opcode(regs->eip)) {... case CLI_OP: vmm_defer_interrupts(vm_num); break;... } }
22 VMware (1998) A sensitive, unprivileged instruction: popf (restore %EFLAGS from the stack) we would like to result in: int $13 (General Protection Fault) but actually results in: %EFLAGS all bits from stack except IOPL
23 VMware (1998) So, VMware performs binary translation on guest code: popf VMware translates to: int $99 (popf handler) which gets handled: void popf_handler(int vm_num, regs_t *regs) { regs->eflags = regs->esp; regs->esp++; }
24 Hardware Assisted Virtualization Recent variants of the x86 ISA that meet Popek & Goldberg requirements Intel VT-x (2005), AMD-V (2006) VT-x introduces two new operating modes: VMX root operation & VMX non-root operation VMM runs in VMX root, guest OS runs in non-root Both modes support all privilege rings Guest OS runs in (non-root) ring 0, no illusions necessary
25 Hardware Assisted Virtualization VT-x defines two new processor transitions: VM entry: root non-root VM exit: non-root root Guest instructions & interrupts that result in a VM exit are specified by the virtual-machine control structure (VMCS) movl %eax, %cr0 VM exit VMM sets %CR0 VM entry
26 VT-x in the Real World Supports virtualization of all of x86 protected mode All rings, descriptor tables, page tables, etc Requires paging Real mode & protected mode without paging is unsupported and must be emulated by the VMM Most OSes only use a subset of x86 features Two rings, a few segments, etc Binary translation necessary to support x86 feature subset actually used by OSes is faster than the full-blown hardware solution
27 Paravirtualization (Denali 2002, Xen 2003) First observation: Most commodity OSes are open source 1 OSes can be modified at the source level to supported limited virtualization Paravirtualizing VMMs (hypervisors) virtualize only a subset of the x86 execution environment Run guest OS in rings 1 3 No illusion about running in a virtual environment Guests may not use sensitive, unprivileged instructions and expect a privileged result Requires source modification only to guest kernels No modifications to user level code and applications 1 One notable exception
28 Paravirtualization (Denali 2002, Xen 2003) Second observation: Regular VMMs must emulate hardware for devices Disk, ethernet, etc Performance is poor due to constrained device API Emulated hardware, x86 ISA, inb/outb, PICs Already modifying guest kernel, why not provide virtual device drivers? Faster API? Hypercall interface: syscall:kernel :: hypercall:hypervisor
29 VMware vs. Paravirtualization Kernel s device communication with VMware (emulated): void nic_write_buffer(char *buf, int size) { for (; size > 0; size--) { nic_poll_ready(); outb(nic_tx_buf, *buf++); } } Kernel s device communication with hypervisor (hypercall): void nic_write_buffer(char *buf, int size) { vmm_write(nic_tx_buf, buf, size); }
30 Xen (2003) Popular hypervisor supporting paravirtualization Hypervisor runs on hardware Runs two kinds of kernels Host kernel runs in domain 0 (dom0) Required by Xen to boot Hypervisor contains no peripheral device drivers dom0 needed to communicate with devices Supports all peripherals that Linux or NetBSD do! Guest kernels run in unprivileged domains (domus)
31 Xen (2003) Provides virtual devices to guest kernels Virtual block device, virtual ethernet device Devices communicate with hypercalls & ring buffers Can also assign PCI devices to specific domus Video card Also supports hardware assisted virtualization (HVM) Allows Xen to run unmodified domus Useful for bootstrapping Also used for the OS that can t be source modified Supports Linux & NetBSD as dom0 kernels Linux, FreeBSD, NetBSD, and Solaris as domus
32 Outline 1 Introduction 2 Virtualization 3 x86 Virtualization 4 Alternatives for Isolation 5 Alternatives for running two OSes on same machine 6 Summary
33 chroot Runs a Unix process with a different root directory Almost like having a separate filesystem Share the same kernel & non-filesystem things Networking, process control Only a minimal sandbox Can be escaped! (chroot+fchdir)
34 User-mode Linux Runs a guest Linux kernel as a user space process under a regular Linux kernel Requires highly modified Linux kernel No modification to application code Used to be popular among hosting providers More mature than Xen, but much slower
35 Container-based OS Virtualization Allows multiple instances of an OS to run in isolated containers under the same kernel VServer, FBSD Jails, OpenVZ, Solaris Containers Aims for VM-like isolation with higher efficiency Hypervisor isolates at the physical resource level Container isolates at the logical resource level Global ids live in separate namespaces for each VM pids, uids, etc Total isolation between container userlands Kernel resources are well partitioned Makes kernel version migration feasible (VServer)
36 Outline 1 Introduction 2 Virtualization 3 x86 Virtualization 4 Alternatives for Isolation 5 Alternatives for running two OSes on same machine 6 Summary
37 Full System Simulation (Simics 1998) Software simulates hardware components that make up a target machine Interpreter executes each instruction & updates the software representation of the hardware state Approach is very accurate but very slow Great for OS development & debugging Break on triple fault is better than a reset
38 System Emulation (Bochs, DOSBox, QEMU) Seeks to emulate just enough of system hardware components to create an accurate user experience Typically CPU & memory subsystems are emulated Buses are not Devices communicate with CPU & memory directly Many shortcuts taken to achieve better performance Reduces overall system accuracy Code designed to run correctly on real hardware executes pretty well Code not designed to run correctly on real hardware exhibits wildly divergent behavior
39 System Emulation Techniques Pure interpretation: Interpret each guest instruction as they execute Perform a semantically equivalent operation on host Static translation: Translate each guest instruction to host once Happens at startup Limited applicability, no self-modifying code
40 System Emulation Techniques Dynamic translation: Translate a block of guest instructions to host instructions just prior to execution of that block Cache translated blocks for better performance Dynamic recompilation & adaptive optimization: Discover what algorithm the guest code implements Substitute with an optimized version on the host Hard
41 QEMU (2005) Open source fast processor/machine emulator Run an i386, amd64, arm, sparc, powerpc, or mips OS on your i386, amd64, powerpc, alpha, sparc, arm, or s390 computer Can run any i386 (or other) OS as a user application Complete with graphics, sound, and network support Don t even need to be root! Tolerable performance for real world OSes Orders of magnitude faster than Simics
42 QEMU s Portable Dynamic Translator Cute hack: uses GCC to pregenerate translated code Code executing on host is generated by GCC Not hand written Makes QEMU easily portable to architectures that GCC supports The overall porting complexity of QEMU is estimated to be the same as the one of a dynamic linker.
43 QEMU s Portable Dynamic Translator Instructions for a given architecture are divided into micro-operations. For example: divides into: addl $42, %eax # eax += 42 movl_t0_eax # T0 = eax addl_t0_im # T0 += 42 movl_eax_t0 # eax = T0
44 QEMU s Portable Dynamic Translator At (QEMU) compile time, each micro-op is compiled from C into an object file for the host architecture dyngen copies the machine code from object files Object code used as input data for code generator At runtime, code generator reads a stream of micro-ops and emits a stream of machine code By convention, code executes properly as emitted
45 QEMU s Portable Dynamic Translator Micro-operations are coded as individual C functions: void OPPROTO op_movl_t0_eax(void) { T0 = EAX } void OPPROTO op_addl_t0_im(void) { T0 += PARAM1 } void OPPROTO op_movl_eax_t0(void) { EAX = T0 } which are compiled by GCC to machine code: op_movl_t0_eax: movl 0(%ebp), %ebx ret op_addl_t0_im: addl $42, %ebx ret op_movl_eax_t0: movl %ebx, 0(%ebp) ret
46 QEMU s Portable Dynamic Translator dyngen strips away function prologue and epilogue: op_movl_t0_eax: movl 0(%ebp), %ebx op_addl_t0_im: addl $42, %ebx op_movl_eax_t0: movl %ebx, 0(%ebp)
47 QEMU s Portable Dynamic Translator At runtime, QEMU translate the instruction: addl $42, %eax into the micro-op sequence: op_movl_t0_eax op_addl_t0_im op_movl_eax_t0 and then into machine code: movl addl movl 0(%ebp), %ebx $42, %ebx %ebx, 0(%ebp)
48 QEMU s Portable Dynamic Translator When QEMU encounters untranslated code, it translates each instruction until the next branch Forms a single translation block After each code block is executed, the next block is located in the block hash table Indexed by CPU state Or, block is translated if not found Write protects guest code pages after translation Write attempt indicates self modifying code Translations are invalidated on write attempt
49 Outline 1 Introduction 2 Virtualization 3 x86 Virtualization 4 Alternatives for Isolation 5 Alternatives for running two OSes on same machine 6 Summary
50 Summary Virtualization is big in enterprise hosting {Full, hardware assisted, para-}virtualization Containers: VM-like abstraction with high efficiency Emulation is a slower alternative, more flexibility
51 Further Reading Gerald J. Popek and Robert P. Goldberg. Formal requirements for virtualizable third generation architectures. Communications of the ACM, 17(7): , July John Scott Robin and Cynthia E. Irvine. Analysis of the intel pentium s ability to support a secure virtual machine monitor. In Proceedings of the 9th USENIX Security Symposium, Denver, CO, August Gil Neiger, Amy Santoni, Felix Leung, Dion Rodgers, and Rich Uhlig. Intel Virtualization Technology: Hardware support for efficient processor virtualization. Intel Technology Journal, 10(3): , August Paul Barham, Boris Dragovic, Keir Fraser, Steven Hand, Tim Harris, Alex Ho, Rolf Neugebauer, Ian Pratt, and Andrew Warfield. Xen and the art of virtualization. In Proceedings of the 19th ACM Symposium on Operating Systems Principles, pages , Bolton Landing, NY, October Yaozu Dong, Shaofan Li, Asit Mallick, Jun Nakajima, Kun Tian, Xuefei Xu, Fred Yang, and Wilfred Yu. Extending Xen with Intel Virtualization Technology. Intel Technology Journal, 10(3): , August Stephen Soltesz, Herbert Pötzl, Marc E. Fiuczynski, Andy Bavier, and Larry Peterson. Container-based operating system virtualization: A scalable, high-performance alternative to hypervisors. In Proceedings of the 2007 EuroSys conference, Lisbon, Portugal, March Fabrice Bellard. QEMU, a fast and portable dynamic translator. In Proceedings of the 2005 USENIX Annual Technical Conference, Anaheim, CA, April 2005.
Virtualization. Jia Rao Assistant Professor in CS http://cs.uccs.edu/~jrao/
Virtualization Jia Rao Assistant Professor in CS http://cs.uccs.edu/~jrao/ What is Virtualization? Virtualization is the simulation of the software and/ or hardware upon which other software runs. This
Virtual Machine Monitors. Dr. Marc E. Fiuczynski Research Scholar Princeton University
Virtual Machine Monitors Dr. Marc E. Fiuczynski Research Scholar Princeton University Introduction Have been around since 1960 s on mainframes used for multitasking Good example VM/370 Have resurfaced
COS 318: Operating Systems. Virtual Machine Monitors
COS 318: Operating Systems Virtual Machine Monitors Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall10/cos318/ Introduction Have been around
COS 318: Operating Systems. Virtual Machine Monitors
COS 318: Operating Systems Virtual Machine Monitors Kai Li and Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall13/cos318/ Introduction u Have
Virtualization. Jukka K. Nurminen 23.9.2015
Virtualization Jukka K. Nurminen 23.9.2015 Virtualization Virtualization refers to the act of creating a virtual (rather than actual) version of something, including virtual computer hardware platforms,
Platform Virtualization: Model, Challenges and Approaches
Platform Virtualization: Model, Challenges and Approaches Fangzhou Jiao, Yuan Luo School of Informatics and Computing Indiana University {fjiao, yuanluo}@indiana.edu Outlines Virtualization Overview Virtualization
Virtualization. Clothing the Wolf in Wool. Wednesday, April 17, 13
Virtualization Clothing the Wolf in Wool Virtual Machines Began in 1960s with IBM and MIT Project MAC Also called open shop operating systems Present user with the view of a bare machine Execute most instructions
Hypervisors. Introduction. Introduction. Introduction. Introduction. Introduction. Credits:
Hypervisors Credits: P. Chaganti Xen Virtualization A practical handbook D. Chisnall The definitive guide to Xen Hypervisor G. Kesden Lect. 25 CS 15-440 G. Heiser UNSW/NICTA/OKL Virtualization is a technique
CS 695 Topics in Virtualization and Cloud Computing. More Introduction + Processor Virtualization
CS 695 Topics in Virtualization and Cloud Computing More Introduction + Processor Virtualization (source for all images: Virtual Machines: Versatile Platforms for Systems and Processes Morgan Kaufmann;
Virtualization. ! Physical Hardware. ! Software. ! Isolation. ! Software Abstraction. ! Encapsulation. ! Virtualization Layer. !
Starting Point: A Physical Machine Virtualization Based on materials from: Introduction to Virtual Machines by Carl Waldspurger Understanding Intel Virtualization Technology (VT) by N. B. Sahgal and D.
Virtualization. Explain how today s virtualization movement is actually a reinvention
Virtualization Learning Objectives Explain how today s virtualization movement is actually a reinvention of the past. Explain how virtualization works. Discuss the technical challenges to virtualization.
Uses for Virtual Machines. Virtual Machines. There are several uses for virtual machines:
Virtual Machines Uses for Virtual Machines Virtual machine technology, often just called virtualization, makes one computer behave as several computers by sharing the resources of a single computer between
Full and Para Virtualization
Full and Para Virtualization Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF x86 Hardware Virtualization The x86 architecture offers four levels
Models For Modeling and Measuring the Performance of a Xen Virtual Server
Measuring and Modeling the Performance of the Xen VMM Jie Lu, Lev Makhlis, Jianjiun Chen BMC Software Inc. Waltham, MA 2451 Server virtualization technology provides an alternative for server consolidation
Virtualization Technologies
12 January 2010 Virtualization Technologies Alex Landau ([email protected]) IBM Haifa Research Lab What is virtualization? Virtualization is way to run multiple operating systems and user applications on
Chapter 5 Cloud Resource Virtualization
Chapter 5 Cloud Resource Virtualization Contents Virtualization. Layering and virtualization. Virtual machine monitor. Virtual machine. Performance and security isolation. Architectural support for virtualization.
Virtual Machines. COMP 3361: Operating Systems I Winter 2015 http://www.cs.du.edu/3361
s COMP 3361: Operating Systems I Winter 2015 http://www.cs.du.edu/3361 1 Virtualization! Create illusion of multiple machines on the same physical hardware! Single computer hosts multiple virtual machines
Hypervisors and Virtual Machines
Hypervisors and Virtual Machines Implementation Insights on the x86 Architecture DON REVELLE Don is a performance engineer and Linux systems/kernel programmer, specializing in high-volume UNIX, Web, virtualization,
Virtualization. Pradipta De [email protected]
Virtualization Pradipta De [email protected] Today s Topic Virtualization Basics System Virtualization Techniques CSE506: Ext Filesystem 2 Virtualization? A virtual machine (VM) is an emulation
ARM Virtualization: CPU & MMU Issues
ARM Virtualization: CPU & MMU Issues Prashanth Bungale, Sr. Member of Technical Staff 2010 VMware Inc. All rights reserved Overview Virtualizability and Sensitive Instructions ARM CPU State Sensitive Instructions
Virtual machines and operating systems
V i r t u a l m a c h i n e s a n d o p e r a t i n g s y s t e m s Virtual machines and operating systems Krzysztof Lichota [email protected] A g e n d a Virtual machines and operating systems interactions
Virtual Machines. www.viplavkambli.com
1 Virtual Machines A virtual machine (VM) is a "completely isolated guest operating system installation within a normal host operating system". Modern virtual machines are implemented with either software
Outline. Outline. Why virtualization? Why not virtualize? Today s data center. Cloud computing. Virtual resource pool
Outline CS 6V81-05: System Security and Malicious Code Analysis Overview of System ization: The most powerful platform for program analysis and system security Zhiqiang Lin Department of Computer Science
Virtualization. Types of Interfaces
Virtualization Virtualization: extend or replace an existing interface to mimic the behavior of another system. Introduced in 1970s: run legacy software on newer mainframe hardware Handle platform diversity
Virtualization. 2010 VMware Inc. All rights reserved
Virtualization Based on materials from: Introduction to Virtual Machines by Carl Waldspurger Understanding Intel Virtualization Technology (VT) by N. B. Sahgal and D. Rodgers Intel Virtualization Technology
OS Virtualization. CSC 456 Final Presentation Brandon D. Shroyer
OS Virtualization CSC 456 Final Presentation Brandon D. Shroyer Introduction Virtualization: Providing an interface to software that maps to some underlying system. A one-to-one mapping between a guest
Virtualization Concepts And Applications. Yash Jain DA-IICT (DCOM Research Group)
Virtualization Concepts And Applications Yash Jain DA-IICT (DCOM Research Group) Virtualization Virtualization is a framework or methodology of dividing the resources of a computer into multiple execution
Virtualization. Dr. Yingwu Zhu
Virtualization Dr. Yingwu Zhu What is virtualization? Virtualization allows one computer to do the job of multiple computers. Virtual environments let one computer host multiple operating systems at the
Virtualization Technology. Zhiming Shen
Virtualization Technology Zhiming Shen Virtualization: rejuvenation 1960 s: first track of virtualization Time and resource sharing on expensive mainframes IBM VM/370 Late 1970 s and early 1980 s: became
Brian Walters. 1999. VMware Virtual Platform. Linux J. 1999, 63es, Article 6 (July 1999).
Implements BIOS emulation support for BHyVe: A BSD Hypervisor Abstract Current BHyVe only supports FreeBSD/amd6 as a GuestOS. One of the reason why BHyVe cannot support other OSes is lack of BIOS support.
Cloud Computing #6 - Virtualization
Cloud Computing #6 - Virtualization Main source: Smith & Nair, Virtual Machines, Morgan Kaufmann, 2005 Today What do we mean by virtualization? Why is it important to cloud? What is the penalty? Current
VMware Server 2.0 Essentials. Virtualization Deployment and Management
VMware Server 2.0 Essentials Virtualization Deployment and Management . This PDF is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.
The Art of Virtualization with Free Software
Master on Free Software 2009/2010 {mvidal,jfcastro}@libresoft.es GSyC/Libresoft URJC April 24th, 2010 (cc) 2010. Some rights reserved. This work is licensed under a Creative Commons Attribution-Share Alike
How To Virtualize A Computer System
CHAPTER Virtual Machines and Virtualization of Clusters and Data Centers 3 CHAPTER OUTLINE Summary...130 3.1 Implementation Levels of Virtualization...130 3.1.1 Levels of Virtualization Implementation..............................................
Intel Virtualization Technology Overview Yu Ke
Intel Virtualization Technology Overview Yu Ke SSG System Software Division Agenda Virtualization Overview Intel Virtualization Technology 2 What is Virtualization VM 0 VM 1 VM n Virtual Machines (VMs)
Microkernels, virtualization, exokernels. Tutorial 1 CSC469
Microkernels, virtualization, exokernels Tutorial 1 CSC469 Monolithic kernel vs Microkernel Monolithic OS kernel Application VFS System call User mode What was the main idea? What were the problems? IPC,
Introduction to Virtual Machines
Introduction to Virtual Machines Carl Waldspurger (SB SM 89, PhD 95), VMware R&D 2010 VMware Inc. All rights reserved Overview Virtualization and VMs Processor Virtualization Memory Virtualization I/O
Xen and the Art of Virtualization
Xen and the Art of Virtualization Paul Barham, Boris Dragovic, Keir Fraser, Steven Hand, Tim Harris, Alex Ho, Rolf Neugebauery, Ian Pratt, Andrew Warfield University of Cambridge Computer Laboratory, SOSP
Jukka Ylitalo Tik-79.5401 TKK, April 24, 2006
Rich Uhlig, et.al, Intel Virtualization Technology, Computer, published by the IEEE Computer Society, Volume 38, Issue 5, May 2005. Pages 48 56. Jukka Ylitalo Tik-79.5401 TKK, April 24, 2006 Outline of
Clouds, Virtualization and Security or Look Out Below
Clouds, Virtualization and Security or Look Out Below Lee Badger Hardware Virtualization (Box View) 1 2 dom0 HW type 1 Para-virtualization I/O Host HW type 2 dom0 HW type 1 Full virtualization I/O Host
CPET 581 Cloud Computing: Technologies and Enterprise IT Strategies. Virtualization of Clusters and Data Centers
CPET 581 Cloud Computing: Technologies and Enterprise IT Strategies Lecture 4 Virtualization of Clusters and Data Centers Text Book: Distributed and Cloud Computing, by K. Hwang, G C. Fox, and J.J. Dongarra,
x86 ISA Modifications to support Virtual Machines
x86 ISA Modifications to support Virtual Machines Douglas Beal Ashish Kumar Gupta CSE 548 Project Outline of the talk Review of Virtual Machines What complicates Virtualization Technique for Virtualization
x86 Virtualization Hardware Support Pla$orm Virtualiza.on
x86 Virtualization Hardware Support Pla$orm Virtualiza.on Hide the physical characteris.cs of computer resources from the applica.ons Not a new idea: IBM s CP- 40 1967, CP/CMS, VM Full Virtualiza.on Simulate
Cloud Architecture and Virtualisation. Lecture 4 Virtualisation
Cloud Architecture and Virtualisation Lecture 4 Virtualisation TOC Introduction to virtualisation Layers and interfaces Virtual machines and virtual machine managers Hardware support Security 2 Virtualisation
Knut Omang Ifi/Oracle 19 Oct, 2015
Software and hardware support for Network Virtualization Knut Omang Ifi/Oracle 19 Oct, 2015 Motivation Goal: Introduction to challenges in providing fast networking to virtual machines Prerequisites: What
Is Virtualization Killing SSI Research?
Is Virtualization Killing SSI Research? Jérôme Gallard Paris Project-Team Dinard November 2007 Supervisor : Christine Morin Co-supervisor: Adrien Lèbre My subject! ;) Reliability and performance of execution
Introduction to Virtualization
Introduction to Virtualization Dr. Qingni Shen Peking University Intel UPO Supported Main Points Status and trends in data center Definition of virtualization Common types of virtualization Key technologies
Basics of Virtualisation
Basics of Virtualisation Volker Büge Institut für Experimentelle Kernphysik Universität Karlsruhe Die Kooperation von The x86 Architecture Why do we need virtualisation? x86 based operating systems are
Virtualization. Introduction to Virtualization Virtual Appliances Benefits to Virtualization Example Virtualization Products
Virtualization Originally prepared by Greg Bosch; last modified April 2012 by B. Davison I. Introduction to Virtualization II. Virtual Appliances III. Benefits to Virtualization IV. Example Virtualization
Cloud Computing CS 15-319
Cloud Computing CS 15-319 Virtualization Case Studies : Xen and VMware Lecture 20 Majd F. Sakr, Mohammad Hammoud and Suhail Rehman 1 Today Last session Resource Virtualization Today s session Virtualization
FRONT FLYLEAF PAGE. This page has been intentionally left blank
FRONT FLYLEAF PAGE This page has been intentionally left blank Abstract The research performed under this publication will combine virtualization technology with current kernel debugging techniques to
Chapter 14 Virtual Machines
Operating Systems: Internals and Design Principles Chapter 14 Virtual Machines Eighth Edition By William Stallings Virtual Machines (VM) Virtualization technology enables a single PC or server to simultaneously
4-2 A Load Balancing System for Mitigating DDoS Attacks Using Live Migration of Virtual Machines
4-2 A Load Balancing System for Mitigating DDoS Attacks Using Live Migration of Virtual Machines ANDO Ruo, MIWA Shinsuke, KADOBAYASHI Youki, and SHINODA Yoichi Recently, rapid advances of CPU processor
Enterprise-Class Virtualization with Open Source Technologies
Enterprise-Class Virtualization with Open Source Technologies Alex Vasilevsky CTO & Founder Virtual Iron Software June 14, 2006 Virtualization Overview Traditional x86 Architecture Each server runs single
Intel s Virtualization Extensions (VT-x) So you want to build a hypervisor?
Intel s Virtualization Extensions (VT-x) So you want to build a hypervisor? Mr. Jacob Torrey February 26, 2014 Dartmouth College 153 Brooks Road, Rome, NY 315.336.3306 http://ainfosec.com @JacobTorrey
A Unified View of Virtual Machines
A Unified View of Virtual Machines First ACM/USENIX Conference on Virtual Execution Environments J. E. Smith June 2005 Introduction Why are virtual machines interesting? They allow transcending of interfaces
CS5460: Operating Systems. Lecture: Virtualization 2. Anton Burtsev March, 2013
CS5460: Operating Systems Lecture: Virtualization 2 Anton Burtsev March, 2013 Paravirtualization: Xen Full virtualization Complete illusion of physical hardware Trap _all_ sensitive instructions Virtualized
VMware and CPU Virtualization Technology. Jack Lo Sr. Director, R&D
ware and CPU Virtualization Technology Jack Lo Sr. Director, R&D This presentation may contain ware confidential information. Copyright 2005 ware, Inc. All rights reserved. All other marks and names mentioned
Xen and the Art of. Virtualization. Ian Pratt
Xen and the Art of Virtualization Ian Pratt Keir Fraser, Steve Hand, Christian Limpach, Dan Magenheimer (HP), Mike Wray (HP), R Neugebauer (Intel), M Williamson (Intel) Computer Laboratory Outline Virtualization
Distributed Systems. Virtualization. Paul Krzyzanowski [email protected]
Distributed Systems Virtualization Paul Krzyzanowski [email protected] Except as otherwise noted, the content of this presentation is licensed under the Creative Commons Attribution 2.5 License. Virtualization
Practical Applications of Virtualization. Mike Phillips <[email protected]> IAP 2008 SIPB IAP Series http://stuff.mit.edu/iap/ http://stuff.mit.
Practical Applications of Virtualization Mike Phillips IAP 2008 SIPB IAP Series http://stuff.mit.edu/iap/ http://stuff.mit.edu/sipb/ Some Guy Rambling About Virtualization Stuff He's Read
A Choices Hypervisor on the ARM architecture
A Choices Hypervisor on the ARM architecture Rishi Bhardwaj, Phillip Reames, Russell Greenspan Vijay Srinivas Nori, Ercan Ucan ABSTRACT Choices is an object oriented operating system that runs on the x86
Virtual Machines. Virtual Machine (VM) Examples of Virtual Systems. Types of Virtual Machine
1 Virtual Machines Virtual Machine (VM) Layered model of computation Software and hardware divided into logical layers Layer n Receives services from server layer n 1 Provides services to client layer
Virtualization Technology. Zhonghong Ou Data Communications Software Lab, Aalto University
Virtualization Technology Zhonghong Ou Data Communications Software Lab, Aalto University 1 Definition Virtualization refers to a concept in which access to a single underlying piece of hardware, like
COM 444 Cloud Computing
COM 444 Cloud Computing Lec 3: Virtual Machines and Virtualization of Clusters and Datacenters Prof. Dr. Halûk Gümüşkaya [email protected] [email protected] http://www.gumuskaya.com Virtual
Introduction to Virtual Machines
Introduction to Virtual Machines Introduction Abstraction and interfaces Virtualization Computer system architecture Process virtual machines System virtual machines 1 Abstraction Mechanism to manage complexity
Virtual Hosting & Virtual Machines
& Virtual Machines Coleman Kane [email protected] September 2, 2014 Cyber Defense Overview / Machines 1 / 17 Similar to the network partitioning schemes described previously, there exist a menu of options
SR-IOV Networking in Xen: Architecture, Design and Implementation Yaozu Dong, Zhao Yu and Greg Rose
SR-IOV Networking in Xen: Architecture, Design and Implementation Yaozu Dong, Zhao Yu and Greg Rose Abstract. SR-IOV capable network devices offer the benefits of direct I/O throughput and reduced CPU
Chapter 16: Virtual Machines. Operating System Concepts 9 th Edition
Chapter 16: Virtual Machines Silberschatz, Galvin and Gagne 2013 Chapter 16: Virtual Machines Overview History Benefits and Features Building Blocks Types of Virtual Machines and Their Implementations
VMkit A lightweight hypervisor library for Barrelfish
Masters Thesis VMkit A lightweight hypervisor library for Barrelfish by Raffaele Sandrini Due date 2 September 2009 Advisors: Simon Peter, Andrew Baumann, and Timothy Roscoe ETH Zurich, Systems Group Department
Virtualization for Cloud Computing
Virtualization for Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF CLOUD COMPUTING On demand provision of computational resources
QEMU, a Fast and Portable Dynamic Translator
QEMU, a Fast and Portable Dynamic Translator Fabrice Bellard Abstract We present the internals of QEMU, a fast machine emulator using an original portable dynamic translator. It emulates several CPUs (x86,
INFO5010 Advanced Topics in IT: Cloud Computing
INFO5010 Advanced Topics in IT: Cloud Computing Week 2: Data Center and Virtualization Technology Dr. Uwe Röhm School of Information Technologies This Week s Agenda! Data Centers: Infrastructure of Scale!
Analysis of the Intel Pentium s Ability to Support a Secure Virtual Machine Monitor
Analysis of the Intel Pentium s Ability to Support a Secure Virtual Machine Monitor John Scott Robin U.S. Air Force scott robin @hotmail.com Cynthia E. Irvine Naval Postgraduate School [email protected]
Xen Live Migration. Networks and Distributed Systems Seminar, 24 April 2006. Matúš Harvan Xen Live Migration 1
Xen Live Migration Matúš Harvan Networks and Distributed Systems Seminar, 24 April 2006 Matúš Harvan Xen Live Migration 1 Outline 1 Xen Overview 2 Live migration General Memory, Network, Storage Migration
Intel Virtualization Technology and Extensions
Intel Virtualization Technology and Extensions Rochester Institute of Technology Prepared and Presented by: Swapnil S. Jadhav (Computer Engineering) Chaitanya Gadiyam (Computer Engineering) 1 Agenda Virtualization
COS 318: Operating Systems
COS 318: Operating Systems OS Structures and System Calls Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall10/cos318/ Outline Protection mechanisms
Virtual Servers. Virtual machines. Virtualization. Design of IBM s VM. Virtual machine systems can give everyone the OS (and hardware) that they want.
Virtual machines Virtual machine systems can give everyone the OS (and hardware) that they want. IBM s VM provided an exact copy of the hardware to the user. Virtual Servers Virtual machines are very widespread.
KVM: A Hypervisor for All Seasons. Avi Kivity [email protected]
KVM: A Hypervisor for All Seasons Avi Kivity [email protected] November 2007 Virtualization Simulation of computer system in software Components Processor: register state, instructions, exceptions Memory
OPEN SOURCE VIRTUALIZATION TRENDS. SYAMSUL ANUAR ABD NASIR Warix Technologies / Fedora Community Malaysia
OPEN SOURCE VIRTUALIZATION TRENDS SYAMSUL ANUAR ABD NASIR Warix Technologies / Fedora Community Malaysia WHAT I WILL BE TALKING ON? Introduction to Virtualization Full Virtualization, Para Virtualization
Nested Virtualization
Nested Virtualization Dongxiao Xu, Xiantao Zhang, Yang Zhang May 9, 2013 Agenda Nested Virtualization Overview Dive into Nested Virtualization Details Nested CPU Virtualization Nested MMU Virtualization
RPM Brotherhood: KVM VIRTUALIZATION TECHNOLOGY
RPM Brotherhood: KVM VIRTUALIZATION TECHNOLOGY Syamsul Anuar Abd Nasir Fedora Ambassador Malaysia 1 ABOUT ME Technical Consultant for Warix Technologies - www.warix.my Warix is a Red Hat partner Offers
Virtualization Technologies (ENCS 691K Chapter 3)
Virtualization Technologies (ENCS 691K Chapter 3) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ The Key Technologies on Which Cloud Computing
matasano Hardware Virtualization Rootkits Dino A. Dai Zovi
Hardware Virtualization Rootkits Dino A. Dai Zovi Agenda Introductions Virtualization (Software and Hardware) Intel VT-x (aka Vanderpool ) VM Rootkits Implementing a VT-x based Rootkit Detecting Hardware-VM
kvm: Kernel-based Virtual Machine for Linux
kvm: Kernel-based Virtual Machine for Linux 1 Company Overview Founded 2005 A Delaware corporation Locations US Office Santa Clara, CA R&D - Netanya/Poleg Funding Expertise in enterprise infrastructure
12. Introduction to Virtual Machines
12. Introduction to Virtual Machines 12. Introduction to Virtual Machines Modern Applications Challenges of Virtual Machine Monitors Historical Perspective Classification 332 / 352 12. Introduction to
Virtualization and Other Tricks.
Virtualization and Other Tricks. Pavel Parízek, Tomáš Kalibera, Peter Libič DEPARTMENT OF DISTRIBUTED AND DEPENDABLE SYSTEMS http://d3s.mff.cuni.cz CHARLES UNIVERSITY PRAGUE Faculty of Mathematics and
Virtualization of Linux based computers: the Linux-VServer project
Virtualization of Linux based computers: the Linux-VServer project Benoît t des Ligneris, Ph. D. [email protected] Objectives: Objectives: 1) Present the available programs that can
Comparing Virtualization Technologies
CHAPTER 2 Comparing Virtualization Technologies With this chapter, we begin our exploration of several popular virtualization strategies and explain how each works. The aim is to bring you the operational
How To Understand The Power Of A Virtual Machine Monitor (Vm) In A Linux Computer System (Or A Virtualized Computer)
KVM - The kernel-based virtual machine Timo Hirt [email protected] 13. Februar 2010 Abstract Virtualization has been introduced in the 1960s, when computing systems were large and expensive to operate. It
UEFI Hypervisors Winning the Race to Bare Metal
UEFI Hypervisors Winning the Race to Bare Metal Don Bailey Hypervista Technologies Herndon, VA 20170 USA +001 703 582 1277 [email protected] Black Hat Conference Proceedings 2008 Abstract. Improvements
Distributed and Cloud Computing
Distributed and Cloud Computing K. Hwang, G. Fox and J. Dongarra Chapter 3: Virtual Machines and Virtualization of Clusters and datacenters Adapted from Kai Hwang University of Southern California March
Virtualization in Linux KVM + QEMU
CS695 Topics in Virtualization and Cloud Computing KVM + QEMU Senthil, Puru, Prateek and Shashank 1 Topics covered KVM and QEMU Architecture VTx support CPU virtualization in KMV Memory virtualization
How do Users and Processes interact with the Operating System? Services for Processes. OS Structure with Services. Services for the OS Itself
How do Users and Processes interact with the Operating System? Users interact indirectly through a collection of system programs that make up the operating system interface. The interface could be: A GUI,
Understanding Full Virtualization, Paravirtualization, and Hardware Assist. Introduction...1 Overview of x86 Virtualization...2 CPU Virtualization...
Contents Introduction...1 Overview of x86 Virtualization...2 CPU Virtualization...3 The Challenges of x86 Hardware Virtualization...3 Technique 1 - Full Virtualization using Binary Translation...4 Technique
