commit | 253ac89d919b6d926c770e90a604ba0439ef646b | [log] [tgz] |
---|---|---|
author | Stephen Barber <smbarber@chromium.org> | Thu Jun 15 23:21:15 2017 -0700 |
committer | chrome-bot <chrome-bot@chromium.org> | Thu Jul 13 22:03:30 2017 -0700 |
tree | ed5e607201cedf7ce2387fa012b9b26c970949b9 | |
parent | 219b1856eb41c8c6a0dfefb4d8d257afe70886f9 [diff] |
net_util: add crate for creating/configuring tap interfaces Signed-off-by: Stephen Barber <smbarber@chromium.org> BUG=chromium:738639 TEST=cargo test Change-Id: Iddf715d40164abeeb6923e8e5a84c02233e0ab64 Reviewed-on: https://chromium-review.googlesource.com/538103 Commit-Ready: Stephen Barber <smbarber@chromium.org> Tested-by: Stephen Barber <smbarber@chromium.org> Reviewed-by: Zach Reizner <zachr@chromium.org>
This component, known as crosvm, runs untrusted operating systems along with virtualized devices. No actual hardware is emulated. This only runs VMs through the Linux's KVM interface. What makes crosvm unique is a focus on safety within the programming language and a sandbox around the virtual devices to protect the kernel from attack in case of an exploit in the devices.
The crosvm source code is organized into crates, each with their own unit tests. These crates are:
kernel_loader
Loads elf64 kernel files to a slice of memory.kvm_sys
low-level (mostly) auto-generated structures and constants for using KVMkvm
unsafe, low-level wrapper code for using kvm_syscrosvm
the top-level binary front-end for using crosvmx86_64
Support code specific to 64 bit intel machines.Currently there is no front-end, so the best you can do is run cargo test
in each crate.