Go to file
gVisor bot c826bb3502 Merge pull request #2748 from amscanne:go_branch
PiperOrigin-RevId: 313404235
2020-05-27 09:32:50 -07:00
.github Normalize permissions in the go branch. 2020-05-20 22:57:52 -07:00
benchmarks FIFO QDisc implementation 2020-04-30 16:41:00 -07:00
g3doc Fix typo in Wordpress tutorial page 2020-05-25 18:33:49 -03:00
images Fix TestTmpFile 2020-05-21 11:08:10 -07:00
pkg Support dfltuid and dfltgid mount options in the VFS2 gofer client. 2020-05-26 22:44:31 -07:00
runsc Add hugetlb and rdma cgroups to runsc 2020-05-20 14:49:13 -07:00
scripts Allow to run kvm syscall tests on the RBE cluster 2020-04-30 11:33:07 -07:00
test Implement splice(2) and tee(2) for VFS2. 2020-05-26 21:43:26 -07:00
tools Merge pull request #2748 from amscanne:go_branch 2020-05-27 09:32:50 -07:00
vdso Internal change. 2020-05-04 12:49:29 -07:00
website Unbreak permalink. 2020-05-20 11:20:40 -07:00
.bazelrc Use existing bazeldefs with top-level BUILD file. 2020-04-28 14:46:19 -07:00
.gitignore Add .gitignore 2018-05-01 09:37:49 -04:00
.travis.yml Standardize all Docker images. 2020-04-24 14:11:42 -07:00
AUTHORS Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
BUILD Adapt website to use g3doc sources and bazel. 2020-05-06 14:15:18 -07:00
CODE_OF_CONDUCT.md Merge pull request #2513 from amscanne:website-integrated 2020-05-12 12:55:23 -07:00
CONTRIBUTING.md Adapt website to use g3doc sources and bazel. 2020-05-06 14:15:18 -07:00
GOVERNANCE.md Merge pull request #2513 from amscanne:website-integrated 2020-05-12 12:55:23 -07:00
LICENSE Check in gVisor. 2018-04-28 01:44:26 -04:00
Makefile Fix typo in 'make tests' recipe 2020-05-23 11:00:27 +00:00
README.md README: fix link to GOVERNANCE document 2020-05-23 15:33:27 -04:00
SECURITY.md Add governance and security policies. 2020-05-06 14:15:17 -07:00
WORKSPACE Automated rollback of changelist 312522097 2020-05-20 12:17:06 -07:00
go.mod Update golang.org/x/sys 2020-03-02 14:40:45 -08:00
go.sum Update golang.org/x/sys 2020-03-02 14:40:45 -08:00

README.md

gVisor

What is gVisor?

gVisor is an application kernel, written in Go, that implements a substantial portion of the Linux system surface. It includes an Open Container Initiative (OCI) runtime called runsc that provides an isolation boundary between the application and the host kernel. The runsc runtime integrates with Docker and Kubernetes, making it simple to run sandboxed containers.

Why does gVisor exist?

Containers are not a sandbox. While containers have revolutionized how we develop, package, and deploy applications, using them to run untrusted or potentially malicious code without additional isolation is not a good idea. While using a single, shared kernel allows for efficiency and performance gains, it also means that container escape is possible with a single vulnerability.

gVisor is an application kernel for containers. It limits the host kernel surface accessible to the application while still giving the application access to all the features it expects. Unlike most kernels, gVisor does not assume or require a fixed set of physical resources; instead, it leverages existing host kernel functionality and runs as a normal process. In other words, gVisor implements Linux by way of Linux.

gVisor should not be confused with technologies and tools to harden containers against external threats, provide additional integrity checks, or limit the scope of access for a service. One should always be careful about what data is made available to a container.

Documentation

User documentation and technical architecture, including quick start guides, can be found at gvisor.dev.

Installing from source

gVisor builds on x86_64 and ARM64. Other architectures may become available in the future.

For the purposes of these instructions, bazel and other build dependencies are wrapped in a build container. It is possible to use bazel directly, or type make help for standard targets.

Requirements

Make sure the following dependencies are installed:

Building

Build and install the runsc binary:

make runsc
sudo cp ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc /usr/local/bin

Testing

To run standard test suites, you can use:

make unit-tests
make tests

To run specific tests, you can specify the target:

make test TARGETS="//runsc:version_test"

Using go get

This project uses bazel to build and manage dependencies. A synthetic go branch is maintained that is compatible with standard go tooling for convenience.

For example, to build runsc directly from this branch:

echo "module runsc" > go.mod
GO111MODULE=on go get gvisor.dev/gvisor/runsc@go
CGO_ENABLED=0 GO111MODULE=on go install gvisor.dev/gvisor/runsc

Note that this branch is supported in a best effort capacity, and direct development on this branch is not supported. Development should occur on the master branch, which is then reflected into the go branch.

Community & Governance

See GOVERNANCE.md for project governance information.

The gvisor-users mailing list and gvisor-dev mailing list are good starting points for questions and discussion.

Security Policy

See SECURITY.md.

Contributing

See Contributing.md.