VAMOS: Virtualization Aware Middleware

Total Page:16

File Type:pdf, Size:1020Kb

VAMOS: Virtualization Aware Middleware VAMOS: Virtualization Aware Middleware Abel Gordon? Muli Ben-Yehuday? Dennis Filimonovy Maor Dahany [email protected] [email protected] [email protected] [email protected] ?IBM Research—Haifa yTechnion—Israel Institute of Technology Abstract We argue that changes at the application layer are in- evitable: the shift to machine virtualization everywhere Machine virtualization is undoubtedly useful, but does requires that we adapt our applications to cooperate with not come cheap. The performance cost of virtualiza- the virtualization layer. tion, for I/O intensive workloads in particular, can be Adapting a nearly infinite number of applications is heavy. Common approaches to solving the I/O virtual- not feasible. However, in practice most server applica- ization overhead focus on the I/O stack, thereby missing tions depend on one or more middleware layers, such as optimization opportunities in the overall stack. We pro- a database server, a web server, or an application server. pose VAMOS, a novel software architecture for middle- By adapting the middleware to virtualized platforms, we ware, which runs middleware modules at the hypervisor can indirectly adapt many applications and regain lost level. VAMOS reduces I/O virtualization overhead by performance. We need to re-think the way we build mid- cutting down on the overall number of guest/hypervisor dleware. Most middleware have a modular design that switches for I/O intensive workloads. Middleware code already provides abstraction layers for operating system can be adapted to VAMOS at only a modest cost, by ex- services, such as memory management, disk or network ploiting existing modular design and abstraction layers. I/O, and CPU scheduling. We can exploit this to allow Applying VAMOS to a database workload improved its middleware software modules to cooperate with the hy- performance by up to 32%. pervisor or run at host level, without necessitating a re- write of the entire middleware. 1 Introduction This novel architecture model raises new opportunities for performance optimizations at the middleware layer, Machine virtualization provides many benefits: it en- which do not conflict with today’s optimization at lower ables server consolidation, makes it possible to run layers. For example, the middleware can interact with legacy environments on new platforms, and helps sim- the hypervisor I/O sub-systems using interfaces or pro- plify system management. However, it also degrades the tocols defined at the application level. Instead of using a performance of common workloads, particularly if they para-virtual block [4, 17], network [4, 17], file system [9] are I/O intensive workloads. or socket [19] interfaces, a database server could use a Extensive research has been carried out in order to para-virtual SQL interface while a web server could use reduce the virtualization (including I/O virtualization) a para-virtual HTTP interface. By using high level in- performance penalty, both at the hardware and soft- terfaces we could remove the cycles spent in the hyper- ware layers. However, these works were mainly fo- visor emulating the virtual hardware and we could also cused on improving the interaction between the hard- decrease the number of transitions between the hypervi- ware [12, 15, 22], the hypervisor [4, 16, 17, 18] and the sor and the guest, thus improving both I/O throughput operating system [9, 19, 21], avoiding changes at the ap- and latency [19]. plication layer. Virtual appliances and Platform as a Service (PaaS) While virtualization is quickly becoming ubiquitous, clouds are natural places to apply this new architecture applications remain oblivious to the changes in the un- model, primarily because the middleware layer there is derlying platform. Software architects and designers still under the control of the provider, and the adaptations will use the same principles and models that used to apply to be transparent to the customer’s applications. We can non-virtualized systems for building their applications. extend the model for Infrastructure as a Service (IaaS) 1 clouds, implementing the adaptations at the hypervisor level and exposing them as optional accelerators to the virtual machines. Assuming the customers decide to in- stall required extensions into the virtual machines im- age, as they might install para-virtual drivers such as VMware-tools or virtio drivers [17], they will benefit from the improvements. The main contribution in this work is VAMOS, a novel architecture for middleware running in virtual en- vironments. Using VAMOS middleware cooperates with the hypervisor to improve the overall application perfor- mance. A proof of concept of VAMOS shows up to 32% I/O performance improvements for database workloads when compared with standard approach to I/O virtual- ization. Figure 1: Comparing architecture models 2 VAMOS Architecture cooperate with the hypervisor and obtain direct access In this section we present VAMOS,an architecture model that allows cooperation between the hypervisor and the to the physical resources, bypassing the virtualization layer and mitigating part of the overhead. Figure 1 com- middleware, improving I/O performance. First, we ex- plain the causes for the virtualization overhead and then pares the traditional software architecture model with the VAMOS architecture. However, for VAMOS to be feasi- we describe the VAMOS architecture and its advantages. ble, we need: 2.1 Causes of Virtualization Overhead 1. An isolated runtime environment at the hypervi- sor level which is capable of executing middleware It is well known that virtualization has a significant over- code and providing the necessary services to access head [1, 5]. When we run a workload in a virtual ma- physical resources, such as network devices or disk chine, it does not get exclusive access to all the hard- drives. ware resources, even when we use hardware virtualiza- tion support such as Intel VMX or AMD SVM. Usu- 2. A communication channel between the middleware ally, the VM runs directly on top of the physical CPU, running in the guest, the middleware running in the however, when a sensitive instruction is executed, the host and the hypervisor. CPU transfers the control to the hypervisor for handling. During this handling period, the guest is temporary in- 3. A methodology for adapting existing middleware terrupted and the hypervisor consumes precious cycles code at a reasonable cost. handling the sensitive instruction, which might require emulating virtual hardware. In addition, the transitions Today’s hypervisors, such as KVM or Xen, or hosted have a fixed cost caused by the CPU switching between hypervisors, already provide a fully operational operat- the guest and the hypervisor contexts, and variable cost ing system to manage the physical hardware. We can caused by the hypervisor polluting the guest cache [5, 8]. take advantage of this fact and run middleware modules I/O intensive applications suffer the most [18] because as additional processes or runtime libraries in the host. they cause relatively many guest/host transitions. To get The cooperation between the middleware and hypervisor rid of the virtualization overhead, we need to reduce the can be implemented using regular mechanisms to com- number of transitions and/or reduce the handling cost. municate between user-space processes or kernel mod- ules. In addition, the middleware can access physical 2.2 Proposed Architecture resources via the host OS services, such as file systems, network interfaces, and virtual memory. For the guest The number of abstraction layers required to access the to host communication, we can exploit the channels im- hardware resources and the absence of cooperation be- plemented to run para-virtualized guests [4, 17]. Alter- tween the hypervisor and the application cause many natively, we can use more efficient channels, based on transitions to the hypervisor context. We can solve these polling and side core invocation techniques [2, 8, 11, 13]. problems running part of the middleware in the hyper- Machine virtualization typically requires isolating the visor context. Using this approach, the middleware can physical resources from untrusted virtual machines. If 2 we treat the host side middleware modules as trusted en- tities, we can allow these modules to access physical re- sources. However, such middleware modules might con- tain security vulnerabilities. Thus, to minimize the ef- fects of potential client attacks on the host, the hypervi- sor should restrict the privileges of those modules. This can be achieved using plugin-isolation techniques such as Vx32 [7] or Native Client [23]. While we have the appropriate environment to run part of middleware at the hypervisor level, we still need a methodology to adapt existing code. Modular de- sign [14, 20] and abstraction layers [10] are well known techniques implemented in most if not all middleware products to decouple different components and to ab- stract OS services. For example, as shown in Figure 2, MySQL abstracts and implements the I/O logic into pluggable storage engines. Another example is Apache Figure 2: MySQL Architecture Tomcat, which encapsulates the logic responsible for handling the communication with the clients into inde- where the hypervisor spends prestigious cycles emulat- pendent modules, called connectors. JVMs usually ab- ing the virtual hardware. stract OS services to have a single cross platform core By running the middleware modules responsible for implementation and easy to maintain platform dependent I/O operations at the hypervisor level, we can reduce modules [3]. We can take advantage of the modular de- the number of transitions between the guest and the hy- sign and run part of the middleware at the hypervisor pervisor as well as part of the virtual hardware emu- context. The following criteria characterize the modules lation. Instead of switching on every low-level event which will improve the application performance when such as packet sent or disk block written, we can switch moved to the hypervisor: when higher-level events (e.g., an SQL query) occur.
Recommended publications
  • Improving System Security Through TCB Reduction
    Improving System Security Through TCB Reduction Bernhard Kauer March 31, 2015 Dissertation vorgelegt an der Technischen Universität Dresden Fakultät Informatik zur Erlangung des akademischen Grades Doktoringenieur (Dr.-Ing.) Erstgutachter Prof. Dr. rer. nat. Hermann Härtig Technische Universität Dresden Zweitgutachter Prof. Dr. Paulo Esteves Veríssimo University of Luxembourg Verteidigung 15.12.2014 Abstract The OS (operating system) is the primary target of todays attacks. A single exploitable defect can be sufficient to break the security of the system and give fully control over all the software on the machine. Because current operating systems are too large to be defect free, the best approach to improve the system security is to reduce their code to more manageable levels. This work shows how the security-critical part of theOS, the so called TCB (Trusted Computing Base), can be reduced from millions to less than hundred thousand lines of code to achieve these security goals. Shrinking the software stack by more than an order of magnitude is an open challenge since no single technique can currently achieve this. We therefore followed a holistic approach and improved the design as well as implementation of several system layers starting with a newOS called NOVA. NOVA provides a small TCB for both newly written applications but also for legacy code running inside virtual machines. Virtualization is thereby the key technique to ensure that compatibility requirements will not increase the minimal TCB of our system. The main contribution of this work is to show how the virtual machine monitor for NOVA was implemented with significantly less lines of code without affecting the per- formance of its guest OS.
    [Show full text]
  • Vx32: Lightweight User-Level Sandboxing on the X86
    Vx32: Lightweight User-level Sandboxing on the x86 Bryan Ford and Russ Cox Massachusetts Institute of Technology {baford,rsc}@pdos.csail.mit.edu Abstract 1 Introduction Code sandboxing is useful for many purposes, but most A sandbox is a mechanism by which a host software sandboxing techniques require kernel modifications, do system may execute arbitrary guest code in a confined not completely isolate guest code, or incur substantial environment, so that the guest code cannot compromise performance costs. Vx32 is a multipurpose user-level or affect the host other than according to a well-defined sandbox that enables any application to load and safely policy. Sandboxing is useful for many purposes, such execute one or more guest plug-ins, confining each guest as running untrusted Web applets within a browser [6], to a system call API controlled by the host application safely extending operating system kernels [5, 32], and and to a restricted memory region within the host’s ad- limiting potential damage caused by compromised ap- dress space. Vx32 runs guest code efficiently on several plications [19, 22]. Most sandboxing mechanisms, how- widespread operating systems without kernel extensions ever, either require guest code to be (re-)written in a type- or special privileges; it protects the host program from safe language [5,6], depend on special OS-specific facil- both reads and writes by its guests; and it allows the host ities [8, 15, 18, 19], allow guest code unrestricted read to restrict the instruction set available to guests. The key access to the host’s state [29, 42], or entail a substantial to vx32’s combination of portability, flexibility, and effi- performance cost [33,34,37].
    [Show full text]
  • Advanced Development of Certified OS Kernels Prof
    Advanced Development of Certified OS Kernels Zhong Shao (PI) and Bryan Ford (Co-PI) Department of Computer Science Yale University P.O.Box 208285 New Haven, CT 06520-8285, USA {zhong.shao,bryan.ford}yale.edu July 15, 2010 1 Innovative Claims Operating System (OS) kernels form the bedrock of all system software—they can have the greatest impact on the resilience, extensibility, and security of today’s computing hosts. A single kernel bug can easily wreck the entire system’s integrity and protection. We propose to apply new advances in certified software [86] to the development of a novel OS kernel. Our certified kernel will offer safe and application-specific extensibility [8], provable security properties with information flow control, and accountability and recovery from hardware or application failures. Our certified kernel builds on proof-carrying code concepts [74], where a binary executable includes a rigorous machine-checkable proof that the software is free of bugs with respect to spe- cific requirements. Unlike traditional verification systems, our certified software approach uses an expressive general-purpose meta-logic and machine-checkable proofs to support modular reason- ing about sophisticated invariants. The rich meta-logic enables us to verify all kinds of low-level assembly and C code [10,28,31,44,68,77,98] and to establish dependability claims ranging from simple safety properties to advanced security, correctness, and liveness properties. We advocate a modular certification framework for kernel components, which mirrors and enhances the modularity of the kernel itself. Using this framework, we aim to create not just a “one-off” lump of verified kernel code, but a statically and dynamically extensible kernel that can be incrementally built and extended with individual certified modules, each of which will provably preserve the kernel’s overall safety and security properties.
    [Show full text]
  • Tailored Application-Specific System Call Tables
    Tailored Application-specific System Call Tables Qiang Zeng, Zhi Xin, Dinghao Wu, Peng Liu, and Bing Mao ABSTRACT policies may be relaxed for setuid programs.1 Once a pro- The system call interface defines the services an operating gram is compromised, a uniform set of kernel services are system kernel provides to user space programs. An oper- potentially exposed to attackers as a versatile and handy ating system usually provides a uniform system call inter- toolkit. While a uniform system call interface simplifies op- face to all user programs, while in practice no programs erating system design, it does not meet the principle of least utilize the whole set of the system calls. Existing system privileges in the perspective of security, as the interface is call based sandboxing and intrusion detection systems fo- not tailored to the needs of applications. cus on confining program behavior using sophisticated finite state or pushdown automaton models. However, these au- Existing researches on system call based sandboxing and tomata generally incur high false positives when modeling intrusion detection focus on system call pattern checking program behavior such as signal handling and multithread- [16, 12, 31, 35, 7], arguments validation [35, 23, 25, 4, 3], ing, and the runtime overhead is usually significantly high. and call stack integrity verification [10, 15]. Some establish We propose to use a stateless model, a whitelist of system sophisticated models such as Finite State Automata (FSA) calls needed by the target program. Due to the simplicity [31, 35, 15, 13] and Pushdown Automata (PDA) [35, 14] we are able to construct the model via static analysis on by training [12, 31, 34, 10] or static analysis [35, 14, 15, the program's binary with much higher precision that in- 13], while others rely on manual configuration to specify the curs few false positives.
    [Show full text]
  • The Security Implications of Google Native Client
    Home Careers Contact Blog Product Services Team The Security Implications Of Google Native Client Chris | May 15th, 2009 | Filed Under: New Findings What would it look like if Google tried to unseat Flash and obsolete all desktop applications? It would look a lot like Google Native Client (NaCl): a mechanism to download a game written in C/C++ from Id Software and run it in your browser, without giving Id Software the ability to take control of your computer. Google NaCl is, on its face, a crazy-talk idea. It’s a browser plugin that downloads native x86 code from a website and runs it on your machine. If this sounds familiar, it’s because Microsoft tried it over a decade ago with ActiveX. If you’re skeptical about the idea, it’s because ActiveX was a security calamity; O.K. an ActiveX control, and it owns your machine almost completely. So the primary obstacle between Google and the future of software delivery is security. Google has a lot of interesting ideas about how to overcome that obstacle. But security people unlikely to take Google’s word for it. So Google held a contest: “we’ll publish the source code, you’ll find flaws. The winner gets $0x2000 USD.” We took the bait. And things were looking great for us. Then Skynet noticed Google, decided it was a threat, and sent a Mark Dowd unit back through time to terminate it. The contest winner hasn’t been declared yet, but as we aren’t a murderous robot made out of liquid metal, we’re guessing we didn’t take first place.
    [Show full text]
  • Leveraging Legacy Code to Deploy Desktop Applications on the Web
    Leveraging Legacy Code to Deploy Desktop Applications on the Web John R. Douceur, Jeremy Elson, Jon Howell, and Jacob R. Lorch Microsoft Research Abstract Our vision is to deliver feature-rich, desktop-class ap- Xax is a browser plugin model that enables developers plications on the web. We believe that the fastest and to leverage existing tools, libraries, and entire programs easiest way to create such apps is to leverage the ex- to deliver feature-rich applications on the web. Xax em- isting code bases of desktop applications and libraries, ploys a novel combination of mechanisms that collec- thereby exploiting the years of design, development, and tively provide security, OS-independence, performance, debugging effort that have gone into them. This ex- and support for legacy code. These mechanisms include isting code commonly expects to run in an OS pro- memory-isolated native code execution behind a narrow cess and to access OS services. However, actually run- syscall interface, an abstraction layer that provides a con- ning the code in an OS process would defeat the OS- sistent binary interface across operating systems, sys- independence required by web apps; and it would also tem services via hooks to existing browser mechanisms, impede code security, because large and complex OS and lightweight modifications to existing tool chains and system-call (or syscall) interfaces are difficult to secure code bases. We demonstrate a variety of applications and against privilege-escalation vulnerabilities [15]. libraries from existing code bases, in several languages, There is thus a trade-off between OS-independence, produced with various tool chains, running in multiple security, and legacy support.
    [Show full text]
  • Hacking the Hackers with User-Space Virtualization
    secuBT : Hacking the Hackers with User-Space Virtualization Mathias Payer Department of Computer Science ETH Zurich Abstract Two interesting scenarios are (i) sandboxing of server processes, and (ii) execution of untrusted In the age of coordinated malware distribution and code. Server daemons that offer an interface to zero-day exploits security becomes ever more im- the Internet are under constant attack. If these portant. This paper presents secuBT, a safe ex- daemons are virtualized and restricted to only spe- ecution framework for the execution of untrusted cific system calls and parameters then an exploit binary code based on the fastBT dynamic binary is unable to escalate privileges and execute unin- translator. tended code. The second scenario targets plugins secuBT implements user-space virtualization us- and other downloaded untrusted code that a user ing dynamic binary translation and adds a system would like to run in a special sandbox. Whenever call interposition framework to limit and guard the the program issues a system call, the user can de- interoperability of binary code with the kernel. cide if it is allowed or not. The sandbox limits the Fast binary translation is a key component to possible interactions between the virtualized pro- user-space virtualization. secuBT uses and ex- gram and the operating system. System calls are tends fastBT, a generator for low-overhead, table- checked depending on name, parameters, and call based dynamic (just-in-time) binary translators. location. We discuss the most challenging sources of over- Such a sandbox could be implemented as a ker- head and propose optimizations to further reduce nel module.
    [Show full text]
  • VXA: a Virtual Architecture for Durable Compressed Archives
    VXA: A Virtual Architecture for Durable Compressed Archives Bryan Ford Computer Science and Artificial Intelligence Laboratory Massachusetts Institute of Technology Abstract Data compression algorithms change frequently, and ob- solete decoders do not always run on new hardware and operating systems, threatening the long-term usability of content archived using those algorithms. Re-encoding content into new formats is cumbersome, and highly un- desirable when lossy compression is involved. Proces- sor architectures, in contrast, have remained compara- tively stable over recent decades. VXA, an archival stor- age system designed around this observation, archives executable decoders along with the encoded content it Figure 1: Timeline of Data Compression Formats stores. VXA decoders run in a specialized virtual machine that implements an OS-independent execution environ- ment based on the standard x86 architecture. The VXA virtual machine strictly limits access to host system ser- vices, making decoders safe to run even if an archive con- tains malicious code. VXA’s adoption of a “native” pro- cessor architecture instead of type-safe language technol- ogy allows reuse of existing “hand-optimized” decoders in C and assembly language, and permits decoders ac- cess to performance-enhancing architecture features such Figure 2: Timeline of Processor Architectures as vector processing instructions. The performance cost of VXA’s virtualization is typically less than 15% com- pared with the same decoders running natively. The stor- has further accelerated this evolution. This constant churn age cost of archived decoders, typically 30–130KB each, in popular encoding formats, along with the prevalence of can be amortized across many archived files sharing the other less common, proprietary or specialized schemes, same compression method.
    [Show full text]
  • Secure Compilation for Memory Protection Alexandre Dang
    Secure compilation for memory protection Alexandre Dang To cite this version: Alexandre Dang. Secure compilation for memory protection. Cryptography and Security [cs.CR]. Université Rennes 1, 2019. English. NNT : 2019REN1S111. tel-02972693 HAL Id: tel-02972693 https://tel.archives-ouvertes.fr/tel-02972693 Submitted on 20 Oct 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. THÈSE DE DOCTORAT DE L’UNIVERSITÉ DE RENNES 1 COMUE UNIVERSITÉ BRETAGNE LOIRE ÉCOLE DOCTORALE N° 601 Mathématiques et Sciences et Technologies de l’Information et de la Communication Spécialité : (voir liste des spécialités) Par Alexandre DANG Compilation Sécurisée pour la Protection de la Mémoire Thèse présentée et soutenue à Rennes, le 10 Décembre 2020 Unité de recherche : Celtique Thèse N° : Rapporteurs avant soutenance : Tamara Rezk Inria Sofia Antipolis Alejandro Russo Chalmers University of Technology Composition du Jury : Attention, en cas d’absence d’un des membres du Jury le jour de la soutenance, la composition du Jury ne comprend que les membres présents Président : Prénom Nom Fonction et établissement d’exercice (à préciser après la soutenance) Examinateurs : Frédéric Besson Inria Rennes Tamara Rezk Inria Sofia Antipolis Alejandro Russo Chalmers University of Technology Heydemann Karine Université Pierre et Marie Curie Viet Triem Tong Valérie CentraleSupélec Dir.
    [Show full text]
  • (12) United States Patent (10) Patent No.: US 9,323,921 B2 Hunt Et Al
    USOO9323921B2 (12) United States Patent (10) Patent No.: US 9,323,921 B2 Hunt et al. (45) Date of Patent: Apr. 26, 2016 (54) ULTRA-LOW COST SANDBOXING FOR 38. A 19 3. As et al APPLICATION APPLIANCES 5,926,631- 44 A 7/1999 McGarveyell et al. 6,357,003 B1 3/2002 Zarrin et al. (75) Inventors: Galen C. Hunt, Bellevue, WA (US); 6,546,425 B1 4/2003 A. et al. Donald Porter, Austin, TX (US) (Continued) (73) Assignee: Mister styles Licensing, LLC, FOREIGN PATENT DOCUMENTS edmond, CN 13180610 * 11 2002 (*) Notice: Subject to any disclaimer, the term of this CN 1906.560 * 1 2007 patent is extended or adjusted under 35 (Continued) U.S.C. 154(b) by 410 days. OTHER PUBLICATIONS (21) Appl. No.: 12/834,895 Lorch, Jacob R. and Smith, Alan Jay, “Building VTrace, a Tracer for 1-1. Windows Ntand Windows 2000.” University of califomia, Berkeley, (22) Filed: Jul. 13, 2010 Computer Science Division (EECS), Report No. UCB/CSD-00/ 1093, Feb. 2000, 18 : (65) Prior Publication Data e pages (Continued) US 2012/OO17213 A1 Jan. 19, 2012 Prinary y E.Examiner — Abdullahla Al KaWSa (51) aba, (2006.01) (74) Attorney, Agent, or Firm — Alin Corie: Sandy Swain; G06F 9/44 (2006.01) icky Minhas G06F 7/04 (2006.01) (57) ABSTRACT G06F 15/177 (2006.01) - 0 G06F 2/53 (2013.01) The disclosed architecture facilitates the sandboxing of appli (52) U.S. Cl cations by taking core operating system components that CPC G06F2I/53 (2013.01) normally run in the operating system kernel or otherwise 58) Field of Ci - - - - - ificati- - - - - -s - - - - - - - h outside the application process and on which a sandboxed (58) is." SSCO Sea 718/1 105: 726/12 application depends on to run, and converting these core See a lication file for complete searchhisto s operating components to run within the application process.
    [Show full text]
  • Isolating Commodity Hosted Hypervisors with Hyperlock
    Isolating Commodity Hosted Hypervisors with HyperLock Zhi Wang Chiachih Wu Michael Grace Xuxian Jiang Department of Computer Science North Carolina State University {zhi wang, cwu10, mcgrace}@ncsu.edu [email protected] Abstract 1. Introduction Hosted hypervisors (e.g., KVM) are being widely deployed. Recent years have witnessed the accelerated adoption of One key reason is that they can effectively take advantage of hosted or Type-II hypervisors (e.g., KVM [19]). Compared the mature features and broad user bases of commodity oper- to bare-metal or Type-I hypervisors (e.g., Xen [5]) that run ating systems. However, they are not immune to exploitable directly on the hardware, hosted hypervisors typically run software bugs. Particularly, due to the close integration with within a conventional operating system (OS) and rely on the host and the unique presence underneath guest virtual this “host” OS to manage most system resources. By doing machines, a hosted hypervisor – if compromised – can also so, hosted hypervisors can immediately benefit from various jeopardize the host system and completely take over all key features of the host OS that are mature and stable, guests in the same physical machine. including abundant and timely hardware support, advanced In this paper, we present HyperLock, a systematic ap- memory management, efficient process scheduling, and so proach to strictly isolate privileged, but potentially vul- forth. Moreover, a hosted hypervisor extends the host OS nerable, hosted hypervisors from compromising the host non-intrusively as a loadable kernel module, which is ar- OSs. Specifically, we provide a secure hypervisor isolation guably much easier to install and maintain than a bare-metal runtime with its own separated address space and a restricted hypervisor.
    [Show full text]
  • Flexible Operating System Internals: the Design and Implementation of the Anykernel and Rump Kernels Aalto University
    Department of Computer Science and Engineering Aalto- Antti Kantee DD Flexible Operating System 171 / 2012 2012 Internals: FlexibleSystemOperating Internals: TheDesign andImplementation theofandAnykernelRump Kernels The Design and Implementation of the Anykernel and Rump Kernels Antti Kantee 9HSTFMG*aejbgi+ ISBN 978-952-60-4916-8 BUSINESS + ISBN 978-952-60-4917-5 (pdf) ECONOMY ISSN-L 1799-4934 ISSN 1799-4934 ART + ISSN 1799-4942 (pdf) DESIGN + ARCHITECTURE UniversityAalto Aalto University School of Science SCIENCE + Department of Computer Science and Engineering TECHNOLOGY www.aalto.fi CROSSOVER DOCTORAL DOCTORAL DISSERTATIONS DISSERTATIONS "BMUP6OJWFSTJUZQVCMJDBUJPOTFSJFT %0$503"-%*44&35"5*0/4 &2#&ŗ*,.#(!ŗ3-.'ŗ (.,(&-Ćŗ "ŗ-#!(ŗ(ŗ '*&'(..#)(ŗ) ŗ."ŗ (3%,(&ŗ(ŗ/'*ŗ ,(&-ŗ "OUUJ,BOUFF "EPDUPSBMEJTTFSUBUJPODPNQMFUFEGPSUIFEFHSFFPG%PDUPSPG 4DJFODFJO5FDIOPMPHZUPCFEFGFOEFE XJUIUIFQFSNJTTJPOPGUIF "BMUP6OJWFSTJUZ4DIPPMPG4DJFODF BUBQVCMJDFYBNJOBUJPOIFMEBU UIFMFDUVSFIBMM5PGUIFTDIPPMPO%FDFNCFSBUOPPO "BMUP6OJWFSTJUZ 4DIPPMPG4DJFODF %FQBSUNFOUPG$PNQVUFS4DJFODFBOE&OHJOFFSJOH 4VQFSWJTJOHQSPGFTTPS 1SPGFTTPS)FJLLJ4BJLLPOFO 1SFMJNJOBSZFYBNJOFST %S.BSTIBMM,JSL.D,VTJDL 64" 1SPGFTTPS3FO[P%BWPMJ 6OJWFSTJUZPG#PMPHOB *UBMZ 0QQPOFOU %S1FUFS5SÍHFS )BTTP1MBUUOFS*OTUJUVUF (FSNBOZ "BMUP6OJWFSTJUZQVCMJDBUJPOTFSJFT %0$503"-%*44&35"5*0/4 "OUUJ,BOUFFQPPLB!JLJGJ 1FSNJTTJPOUPVTF DPQZ BOEPSEJTUSJCVUFUIJTEPDVNFOUXJUIPS XJUIPVUGFFJTIFSFCZHSBOUFE QSPWJEFEUIBUUIFBCPWFDPQZSJHIU OPUJDFBOEUIJTQFSNJTTJPOOPUJDFBQQFBSJOBMMDPQJFT%JTUSJCVUJOH NPEJGJFEDPQJFTJTQSPIJCJUFE *4#/ QSJOUFE *4#/
    [Show full text]