AOS Lab 11: Virtualization

Preview:

DESCRIPTION

 

Citation preview

Lab 11: VirtualizationAdvanced Operating Systems

Zubair Nabi

zubair.nabi@itu.edu.pk

April 17, 2013

Background

• Years ago, IBM used to sell expensive and bulky mainframes

• They ran into a problem: what if organizations wanted to rundifferent operating systems on the same machine at the sametime?

• For instance, some applications have been developed on one OSand others on different ones

• IBM solved this by adding another level of indirection, called avirtual memory monitor or hypervisor

Background

• Years ago, IBM used to sell expensive and bulky mainframes• They ran into a problem: what if organizations wanted to run

different operating systems on the same machine at the sametime?

• For instance, some applications have been developed on one OSand others on different ones

• IBM solved this by adding another level of indirection, called avirtual memory monitor or hypervisor

Background

• Years ago, IBM used to sell expensive and bulky mainframes• They ran into a problem: what if organizations wanted to run

different operating systems on the same machine at the sametime?

• For instance, some applications have been developed on one OSand others on different ones

• IBM solved this by adding another level of indirection, called avirtual memory monitor or hypervisor

Background

• Years ago, IBM used to sell expensive and bulky mainframes• They ran into a problem: what if organizations wanted to run

different operating systems on the same machine at the sametime?

• For instance, some applications have been developed on one OSand others on different ones

• IBM solved this by adding another level of indirection, called avirtual memory monitor or hypervisor

Virtual Memory Monitor

• Sits between one or more operating systems and the hardware

• Gives the illusion to each running OS that it has full control overthe hardware (A taste of its own medicine?)

• Multiplexes the hardware across OSes

• In essence, a VMM is an OS for OSes

Virtual Memory Monitor

• Sits between one or more operating systems and the hardware

• Gives the illusion to each running OS that it has full control overthe hardware (A taste of its own medicine?)

• Multiplexes the hardware across OSes

• In essence, a VMM is an OS for OSes

Virtual Memory Monitor

• Sits between one or more operating systems and the hardware

• Gives the illusion to each running OS that it has full control overthe hardware (A taste of its own medicine?)

• Multiplexes the hardware across OSes

• In essence, a VMM is an OS for OSes

Virtual Memory Monitor

• Sits between one or more operating systems and the hardware

• Gives the illusion to each running OS that it has full control overthe hardware (A taste of its own medicine?)

• Multiplexes the hardware across OSes

• In essence, a VMM is an OS for OSes

Advantages

• Server Consolidation• In many settings, services are run on different machines

• In some cases, these machines also run different OSes• At the same time, the machines are underutilized• Virtualization leads to consolidation by multiplexing multiple OSes

over fewer physical servers

• Increased Desktop Functionality• Many users wish to run one operating system• But want to have access to native applications on a different OS

platform

Advantages

• Server Consolidation• In many settings, services are run on different machines• In some cases, these machines also run different OSes

• At the same time, the machines are underutilized• Virtualization leads to consolidation by multiplexing multiple OSes

over fewer physical servers

• Increased Desktop Functionality• Many users wish to run one operating system• But want to have access to native applications on a different OS

platform

Advantages

• Server Consolidation• In many settings, services are run on different machines• In some cases, these machines also run different OSes• At the same time, the machines are underutilized

• Virtualization leads to consolidation by multiplexing multiple OSesover fewer physical servers

• Increased Desktop Functionality• Many users wish to run one operating system• But want to have access to native applications on a different OS

platform

Advantages

• Server Consolidation• In many settings, services are run on different machines• In some cases, these machines also run different OSes• At the same time, the machines are underutilized• Virtualization leads to consolidation by multiplexing multiple OSes

over fewer physical servers

• Increased Desktop Functionality• Many users wish to run one operating system• But want to have access to native applications on a different OS

platform

Advantages

• Server Consolidation• In many settings, services are run on different machines• In some cases, these machines also run different OSes• At the same time, the machines are underutilized• Virtualization leads to consolidation by multiplexing multiple OSes

over fewer physical servers

• Increased Desktop Functionality• Many users wish to run one operating system

• But want to have access to native applications on a different OSplatform

Advantages

• Server Consolidation• In many settings, services are run on different machines• In some cases, these machines also run different OSes• At the same time, the machines are underutilized• Virtualization leads to consolidation by multiplexing multiple OSes

over fewer physical servers

• Increased Desktop Functionality• Many users wish to run one operating system• But want to have access to native applications on a different OS

platform

Advantages (2)

• Testing and Debugging• Code is mostly written on one main platform

• But developers want to debug and test it on many diverseplatforms

• Virtualization enables this by running mutiple OSes over a singlemachine

Advantages (2)

• Testing and Debugging• Code is mostly written on one main platform• But developers want to debug and test it on many diverse

platforms

• Virtualization enables this by running mutiple OSes over a singlemachine

Advantages (2)

• Testing and Debugging• Code is mostly written on one main platform• But developers want to debug and test it on many diverse

platforms• Virtualization enables this by running mutiple OSes over a single

machine

Resurgence

• Resurgence took place in the 90s

• Primarily led by Mendel Rosenblum at Stanford

• Engineered Disco, a VMM for the MIPS processor

• Led to VMWare (Total assets of over $8 billion)

Resurgence

• Resurgence took place in the 90s

• Primarily led by Mendel Rosenblum at Stanford

• Engineered Disco, a VMM for the MIPS processor

• Led to VMWare (Total assets of over $8 billion)

Resurgence

• Resurgence took place in the 90s

• Primarily led by Mendel Rosenblum at Stanford

• Engineered Disco, a VMM for the MIPS processor

• Led to VMWare (Total assets of over $8 billion)

Resurgence

• Resurgence took place in the 90s

• Primarily led by Mendel Rosenblum at Stanford

• Engineered Disco, a VMM for the MIPS processor

• Led to VMWare (Total assets of over $8 billion)

Running a VM

• Similar to running an application on top of an OS

• Through limited direct execution

• Each time a new OS boots atop the VMM, jump to the address ofthe first instruction

• The OS starts executing

Running a VM

• Similar to running an application on top of an OS• Through limited direct execution

• Each time a new OS boots atop the VMM, jump to the address ofthe first instruction

• The OS starts executing

Running a VM

• Similar to running an application on top of an OS• Through limited direct execution

• Each time a new OS boots atop the VMM, jump to the address ofthe first instruction

• The OS starts executing

Running a VM

• Similar to running an application on top of an OS• Through limited direct execution

• Each time a new OS boots atop the VMM, jump to the address ofthe first instruction

• The OS starts executing

Multiplexing the CPU

• Similar to a process context switch but now a VMM performs amachine switch between different VMs

1 The VMM must save the entire state of one OS• This state includes registers, PC, and any privileged hardware state

(not applicable to a context switch)

2 Restore the state of the to-be-run VM3 Jump to the PC of the to-be-run VM

• The PC may be within the OS kernel or within a process

Multiplexing the CPU

• Similar to a process context switch but now a VMM performs amachine switch between different VMs

1 The VMM must save the entire state of one OS

• This state includes registers, PC, and any privileged hardware state(not applicable to a context switch)

2 Restore the state of the to-be-run VM3 Jump to the PC of the to-be-run VM

• The PC may be within the OS kernel or within a process

Multiplexing the CPU

• Similar to a process context switch but now a VMM performs amachine switch between different VMs

1 The VMM must save the entire state of one OS• This state includes registers, PC, and any privileged hardware state

(not applicable to a context switch)

2 Restore the state of the to-be-run VM3 Jump to the PC of the to-be-run VM

• The PC may be within the OS kernel or within a process

Multiplexing the CPU

• Similar to a process context switch but now a VMM performs amachine switch between different VMs

1 The VMM must save the entire state of one OS• This state includes registers, PC, and any privileged hardware state

(not applicable to a context switch)

2 Restore the state of the to-be-run VM

3 Jump to the PC of the to-be-run VM• The PC may be within the OS kernel or within a process

Multiplexing the CPU

• Similar to a process context switch but now a VMM performs amachine switch between different VMs

1 The VMM must save the entire state of one OS• This state includes registers, PC, and any privileged hardware state

(not applicable to a context switch)

2 Restore the state of the to-be-run VM3 Jump to the PC of the to-be-run VM

• The PC may be within the OS kernel or within a process

Multiplexing the CPU

• Similar to a process context switch but now a VMM performs amachine switch between different VMs

1 The VMM must save the entire state of one OS• This state includes registers, PC, and any privileged hardware state

(not applicable to a context switch)

2 Restore the state of the to-be-run VM3 Jump to the PC of the to-be-run VM

• The PC may be within the OS kernel or within a process

Privileged Operations

• Things get more interesting when the running OS tries to performsome privileged operation

• For instance, on a system with a software-managed TLB, the OSuses privileged instructions to update the TLB

• In a virtualized environment, the OS cannot be allowed to do this• If it is allowed to do so, the OS will control the underlying machine

rather than the VMM

• The VMM must intercept privileged operations from OSes andretain control of the machine

Privileged Operations

• Things get more interesting when the running OS tries to performsome privileged operation

• For instance, on a system with a software-managed TLB, the OSuses privileged instructions to update the TLB

• In a virtualized environment, the OS cannot be allowed to do this• If it is allowed to do so, the OS will control the underlying machine

rather than the VMM

• The VMM must intercept privileged operations from OSes andretain control of the machine

Privileged Operations

• Things get more interesting when the running OS tries to performsome privileged operation

• For instance, on a system with a software-managed TLB, the OSuses privileged instructions to update the TLB

• In a virtualized environment, the OS cannot be allowed to do this

• If it is allowed to do so, the OS will control the underlying machinerather than the VMM

• The VMM must intercept privileged operations from OSes andretain control of the machine

Privileged Operations

• Things get more interesting when the running OS tries to performsome privileged operation

• For instance, on a system with a software-managed TLB, the OSuses privileged instructions to update the TLB

• In a virtualized environment, the OS cannot be allowed to do this• If it is allowed to do so, the OS will control the underlying machine

rather than the VMM

• The VMM must intercept privileged operations from OSes andretain control of the machine

Privileged Operations

• Things get more interesting when the running OS tries to performsome privileged operation

• For instance, on a system with a software-managed TLB, the OSuses privileged instructions to update the TLB

• In a virtualized environment, the OS cannot be allowed to do this• If it is allowed to do so, the OS will control the underlying machine

rather than the VMM

• The VMM must intercept privileged operations from OSes andretain control of the machine

System Calls

• The VMM needs to intercept all system calls, such as open(),read(), and fork()

• On physical hardware a system call is achieved through a specialinstruction

• trap in case of MIPS and int 0x80 in case of x86

• For instance, the open() system call takes three arguments:int open(char *path, int flags, mode_tmode)

• The system call number for open() is 5

System Calls

• The VMM needs to intercept all system calls, such as open(),read(), and fork()

• On physical hardware a system call is achieved through a specialinstruction

• trap in case of MIPS and int 0x80 in case of x86

• For instance, the open() system call takes three arguments:int open(char *path, int flags, mode_tmode)

• The system call number for open() is 5

System Calls

• The VMM needs to intercept all system calls, such as open(),read(), and fork()

• On physical hardware a system call is achieved through a specialinstruction

• trap in case of MIPS and int 0x80 in case of x86

• For instance, the open() system call takes three arguments:int open(char *path, int flags, mode_tmode)

• The system call number for open() is 5

System Calls

• The VMM needs to intercept all system calls, such as open(),read(), and fork()

• On physical hardware a system call is achieved through a specialinstruction

• trap in case of MIPS and int 0x80 in case of x86

• For instance, the open() system call takes three arguments:int open(char *path, int flags, mode_tmode)

• The system call number for open() is 5

System Calls

• The VMM needs to intercept all system calls, such as open(),read(), and fork()

• On physical hardware a system call is achieved through a specialinstruction

• trap in case of MIPS and int 0x80 in case of x86

• For instance, the open() system call takes three arguments:int open(char *path, int flags, mode_tmode)

• The system call number for open() is 5

Code: open

open:push dword modepush dword flagspush dword pathmov eax, 5push eaxint 80h

Normal System Call Flow

Process Operating System1. System call: Trap to OS

2. OS trap handler:Decode trap and execute appro-priate syscall routeWhen done: Return from trap

3. Resume execution(@PC after trap)

System Call Flow with Virtualization

Process Operating System VMM1. System call: Trapto OS

2. Process trapped:Call OS trap han-dler (at reduced priv-ilege)

3. OS trap handler:Decode trap and ex-ecute syscallWhen done: issuereturn-from-trap

System Call Flow with Virtualization (2)

Process Operating System VMM4. OS tried returnfrom trap:Do real return fromtrap

5. Resume execu-tion(@PC after trap)

System Call Implications

• Increase in number of instructions so slower system calls

• Which mode should the OS run in?• Cannot run in a privileged mode any longer, because it would

have unrestricted access to the hardware!

• In case of MIPS, it would run in the supervisor mode• No access to privileged instructions but more memory

• In case of x86, the guest OS runs in ring 1 while the VMM runs inring 0

• What if the hardware has no extra modes?• The OS runs in user mode and the VMM uses memory protection

(page tables and TLBs) to protect OS data structures

System Call Implications

• Increase in number of instructions so slower system calls• Which mode should the OS run in?

• Cannot run in a privileged mode any longer, because it wouldhave unrestricted access to the hardware!

• In case of MIPS, it would run in the supervisor mode• No access to privileged instructions but more memory

• In case of x86, the guest OS runs in ring 1 while the VMM runs inring 0

• What if the hardware has no extra modes?• The OS runs in user mode and the VMM uses memory protection

(page tables and TLBs) to protect OS data structures

System Call Implications

• Increase in number of instructions so slower system calls• Which mode should the OS run in?

• Cannot run in a privileged mode any longer, because it wouldhave unrestricted access to the hardware!

• In case of MIPS, it would run in the supervisor mode• No access to privileged instructions but more memory

• In case of x86, the guest OS runs in ring 1 while the VMM runs inring 0

• What if the hardware has no extra modes?• The OS runs in user mode and the VMM uses memory protection

(page tables and TLBs) to protect OS data structures

System Call Implications

• Increase in number of instructions so slower system calls• Which mode should the OS run in?

• Cannot run in a privileged mode any longer, because it wouldhave unrestricted access to the hardware!

• In case of MIPS, it would run in the supervisor mode

• No access to privileged instructions but more memory

• In case of x86, the guest OS runs in ring 1 while the VMM runs inring 0

• What if the hardware has no extra modes?• The OS runs in user mode and the VMM uses memory protection

(page tables and TLBs) to protect OS data structures

System Call Implications

• Increase in number of instructions so slower system calls• Which mode should the OS run in?

• Cannot run in a privileged mode any longer, because it wouldhave unrestricted access to the hardware!

• In case of MIPS, it would run in the supervisor mode• No access to privileged instructions but more memory

• In case of x86, the guest OS runs in ring 1 while the VMM runs inring 0

• What if the hardware has no extra modes?• The OS runs in user mode and the VMM uses memory protection

(page tables and TLBs) to protect OS data structures

System Call Implications

• Increase in number of instructions so slower system calls• Which mode should the OS run in?

• Cannot run in a privileged mode any longer, because it wouldhave unrestricted access to the hardware!

• In case of MIPS, it would run in the supervisor mode• No access to privileged instructions but more memory

• In case of x86, the guest OS runs in ring 1 while the VMM runs inring 0

• What if the hardware has no extra modes?• The OS runs in user mode and the VMM uses memory protection

(page tables and TLBs) to protect OS data structures

System Call Implications

• Increase in number of instructions so slower system calls• Which mode should the OS run in?

• Cannot run in a privileged mode any longer, because it wouldhave unrestricted access to the hardware!

• In case of MIPS, it would run in the supervisor mode• No access to privileged instructions but more memory

• In case of x86, the guest OS runs in ring 1 while the VMM runs inring 0

• What if the hardware has no extra modes?

• The OS runs in user mode and the VMM uses memory protection(page tables and TLBs) to protect OS data structures

System Call Implications

• Increase in number of instructions so slower system calls• Which mode should the OS run in?

• Cannot run in a privileged mode any longer, because it wouldhave unrestricted access to the hardware!

• In case of MIPS, it would run in the supervisor mode• No access to privileged instructions but more memory

• In case of x86, the guest OS runs in ring 1 while the VMM runs inring 0

• What if the hardware has no extra modes?• The OS runs in user mode and the VMM uses memory protection

(page tables and TLBs) to protect OS data structures

Virtual Memory

• OSes virtualize physical memory to give each process the illusionof a private address space

• In case of virtualization, need to add another layer of virtualmemory

• The three-tier hierarchy: virtual memory, physical memory, andmachine memory

• The OS maps virtual-to-physical addresses via its per-processpage tables

• The VMM maps the resulting physical mappings to underlyingmachine addresses via its per-OS page tables

Virtual Memory

• OSes virtualize physical memory to give each process the illusionof a private address space

• In case of virtualization, need to add another layer of virtualmemory

• The three-tier hierarchy: virtual memory, physical memory, andmachine memory

• The OS maps virtual-to-physical addresses via its per-processpage tables

• The VMM maps the resulting physical mappings to underlyingmachine addresses via its per-OS page tables

Virtual Memory

• OSes virtualize physical memory to give each process the illusionof a private address space

• In case of virtualization, need to add another layer of virtualmemory

• The three-tier hierarchy: virtual memory, physical memory, andmachine memory

• The OS maps virtual-to-physical addresses via its per-processpage tables

• The VMM maps the resulting physical mappings to underlyingmachine addresses via its per-OS page tables

Virtual Memory

• OSes virtualize physical memory to give each process the illusionof a private address space

• In case of virtualization, need to add another layer of virtualmemory

• The three-tier hierarchy: virtual memory, physical memory, andmachine memory

• The OS maps virtual-to-physical addresses via its per-processpage tables

• The VMM maps the resulting physical mappings to underlyingmachine addresses via its per-OS page tables

Virtual Memory

• OSes virtualize physical memory to give each process the illusionof a private address space

• In case of virtualization, need to add another layer of virtualmemory

• The three-tier hierarchy: virtual memory, physical memory, andmachine memory

• The OS maps virtual-to-physical addresses via its per-processpage tables

• The VMM maps the resulting physical mappings to underlyingmachine addresses via its per-OS page tables

VMM Memory Virtualization

Normal TLB Miss Flow

Process Operating System1. Load from memory:TLB miss: Trap

2. OS TLB miss handler:Extract VPN from VA;Do page table lookup;If present and valid:get PFN, update TLB;Return from trap

3. Resume execution(@PC of trapping instruction);Instruction is retried;Results in TLB hit

TLB Miss Flow with Virtualization

Process Operating System VMM1. Load from mem-oryTLB miss: Trap

2. VMM TLB misshandler:Call into OS TLBhandler(reduced privilege)

3. OS TLB miss handler:Extract VPN from VA;Do page table lookup;If present and valid:get PFN, update TLB

TLB Miss Flow with Virtualization (2)

Process Operating System VMM4. Trap handler:Unprivileged code tryingto update the TLB;OS is trying to installVPN-to-PFN mapping;Update TLB instead withVPN-to-MFN (privileged);Jump back to OS(reducing privilege)

5. Return from trap

TLB Miss Flow with Virtualization (3)

Process Operating System VMM6. Trap handler:Unprivileged code try-ingto return from a trap;Return from trap

7. Resume execution(@PC of instruction);Instruction is retried;Results in TLB hit

Virtual Memory Implications

• Similar to system calls, virtualized virtual memory consists ofmore instructions and is hence slower

• To deal with this overhead, VMMs implement “software TLB”

• Every virtual-to-physical mapping is recorded by the VMM withinthis data structure

• In case of a TLB miss, the VMM first consults this software TLB

• If the translation is found, the VMM simply installs thevirtual-to-machine mapping directly into the hardware TLB

Virtual Memory Implications

• Similar to system calls, virtualized virtual memory consists ofmore instructions and is hence slower

• To deal with this overhead, VMMs implement “software TLB”

• Every virtual-to-physical mapping is recorded by the VMM withinthis data structure

• In case of a TLB miss, the VMM first consults this software TLB

• If the translation is found, the VMM simply installs thevirtual-to-machine mapping directly into the hardware TLB

Virtual Memory Implications

• Similar to system calls, virtualized virtual memory consists ofmore instructions and is hence slower

• To deal with this overhead, VMMs implement “software TLB”

• Every virtual-to-physical mapping is recorded by the VMM withinthis data structure

• In case of a TLB miss, the VMM first consults this software TLB

• If the translation is found, the VMM simply installs thevirtual-to-machine mapping directly into the hardware TLB

Virtual Memory Implications

• Similar to system calls, virtualized virtual memory consists ofmore instructions and is hence slower

• To deal with this overhead, VMMs implement “software TLB”

• Every virtual-to-physical mapping is recorded by the VMM withinthis data structure

• In case of a TLB miss, the VMM first consults this software TLB

• If the translation is found, the VMM simply installs thevirtual-to-machine mapping directly into the hardware TLB

Virtual Memory Implications

• Similar to system calls, virtualized virtual memory consists ofmore instructions and is hence slower

• To deal with this overhead, VMMs implement “software TLB”

• Every virtual-to-physical mapping is recorded by the VMM withinthis data structure

• In case of a TLB miss, the VMM first consults this software TLB

• If the translation is found, the VMM simply installs thevirtual-to-machine mapping directly into the hardware TLB

Information Gap

• The OS does not know too much about what the applicationprograms really want

• Must make general “one-size-fits-all” policies

• Similarly, the VMM does not know too much about what the OS isdoing or wanting

• This lack of knowledge, is dubbed as the information gapbetween the VMM and the OS

Information Gap

• The OS does not know too much about what the applicationprograms really want

• Must make general “one-size-fits-all” policies

• Similarly, the VMM does not know too much about what the OS isdoing or wanting

• This lack of knowledge, is dubbed as the information gapbetween the VMM and the OS

Information Gap

• The OS does not know too much about what the applicationprograms really want

• Must make general “one-size-fits-all” policies

• Similarly, the VMM does not know too much about what the OS isdoing or wanting

• This lack of knowledge, is dubbed as the information gapbetween the VMM and the OS

Information Gap

• The OS does not know too much about what the applicationprograms really want

• Must make general “one-size-fits-all” policies

• Similarly, the VMM does not know too much about what the OS isdoing or wanting

• This lack of knowledge, is dubbed as the information gapbetween the VMM and the OS

Information Gap (2)

• What if the OS is in a busy loop?

• In case of virtualization, if there is another OS which is doingsomething useful then the VMM should give it more resources asopposed to the one which is in a busy loop

• Similarly, pages need to be zeroed before being mapped into aprocess’s address space

• In case of virtualization, this would be redundantly done twice:Once by the VMM and then again by the OS

• Two solutions exist to this problem:1 Implicit information: The OS can implicitly try to figure out the

behaviour of each OS2 Paravirtualization: The guest OSes need to be modified to be

made aware of virtualization

Information Gap (2)

• What if the OS is in a busy loop?

• In case of virtualization, if there is another OS which is doingsomething useful then the VMM should give it more resources asopposed to the one which is in a busy loop

• Similarly, pages need to be zeroed before being mapped into aprocess’s address space

• In case of virtualization, this would be redundantly done twice:Once by the VMM and then again by the OS

• Two solutions exist to this problem:1 Implicit information: The OS can implicitly try to figure out the

behaviour of each OS2 Paravirtualization: The guest OSes need to be modified to be

made aware of virtualization

Information Gap (2)

• What if the OS is in a busy loop?

• In case of virtualization, if there is another OS which is doingsomething useful then the VMM should give it more resources asopposed to the one which is in a busy loop

• Similarly, pages need to be zeroed before being mapped into aprocess’s address space

• In case of virtualization, this would be redundantly done twice:Once by the VMM and then again by the OS

• Two solutions exist to this problem:1 Implicit information: The OS can implicitly try to figure out the

behaviour of each OS2 Paravirtualization: The guest OSes need to be modified to be

made aware of virtualization

Information Gap (2)

• What if the OS is in a busy loop?

• In case of virtualization, if there is another OS which is doingsomething useful then the VMM should give it more resources asopposed to the one which is in a busy loop

• Similarly, pages need to be zeroed before being mapped into aprocess’s address space

• In case of virtualization, this would be redundantly done twice:Once by the VMM and then again by the OS

• Two solutions exist to this problem:1 Implicit information: The OS can implicitly try to figure out the

behaviour of each OS2 Paravirtualization: The guest OSes need to be modified to be

made aware of virtualization

Information Gap (2)

• What if the OS is in a busy loop?

• In case of virtualization, if there is another OS which is doingsomething useful then the VMM should give it more resources asopposed to the one which is in a busy loop

• Similarly, pages need to be zeroed before being mapped into aprocess’s address space

• In case of virtualization, this would be redundantly done twice:Once by the VMM and then again by the OS

• Two solutions exist to this problem:

1 Implicit information: The OS can implicitly try to figure out thebehaviour of each OS

2 Paravirtualization: The guest OSes need to be modified to bemade aware of virtualization

Information Gap (2)

• What if the OS is in a busy loop?

• In case of virtualization, if there is another OS which is doingsomething useful then the VMM should give it more resources asopposed to the one which is in a busy loop

• Similarly, pages need to be zeroed before being mapped into aprocess’s address space

• In case of virtualization, this would be redundantly done twice:Once by the VMM and then again by the OS

• Two solutions exist to this problem:1 Implicit information: The OS can implicitly try to figure out the

behaviour of each OS

2 Paravirtualization: The guest OSes need to be modified to bemade aware of virtualization

Information Gap (2)

• What if the OS is in a busy loop?

• In case of virtualization, if there is another OS which is doingsomething useful then the VMM should give it more resources asopposed to the one which is in a busy loop

• Similarly, pages need to be zeroed before being mapped into aprocess’s address space

• In case of virtualization, this would be redundantly done twice:Once by the VMM and then again by the OS

• Two solutions exist to this problem:1 Implicit information: The OS can implicitly try to figure out the

behaviour of each OS2 Paravirtualization: The guest OSes need to be modified to be

made aware of virtualization

Today’s task

• Design paravirtualization hooks for xv6

Reading(s)

• Section “Virtual Machine Monitors” from “Operating Systems:Three Easy Pieces” by Remzi H. Arpaci-Dusseau and Andrea C.Arpaci-Dusseau. Online: http://pages.cs.wisc.edu/~remzi/OSTEP/vmm-intro.pdf

Recommended