Go to file
Bhasker Hariharan f15d5a8d0f Revert change to default buffer size.
In
ca6bded95d
we reduced the default buffer size to 32KB. This mostly works fine except at
high throughput where we hit zero window very quickly and the TCP receive
buffer moderation is not able to grow the window. This can be seen in the
benchmarks where with a 32KB buffer and 100 connections downloading a 10MB
file we get about 30 requests/s vs the 1MB buffer gives us about 53 requests/s.

A proper fix requires a few changes to when we send a zero window as well as
when we decide to send a zero window update. Today we consider available space
below 1MSS as zero and send an update when it crosses 1MSS of available space.
This is way too low and results in the window staying very small once we hit
a zero window condition as we keep sending updates with size barely over 1MSS.

Linux and BSD are smarter about this and use different thresholds. We should
separately update our logic to match linux or BSD so that we don't send
window updates that are really tiny or wait until we drop below 1MSS to
advertise a zero window.

PiperOrigin-RevId: 324087019
2020-07-30 14:46:49 -07:00
.github Fix merge flow for Go branch. 2020-07-30 10:05:48 -07:00
benchmarks optimize size and time using "--no-cache-dir" 2020-07-25 13:26:52 +05:30
g3doc Clean up html on the website. 2020-07-17 18:27:41 -07:00
images Add runsc build benchmark. 2020-07-30 13:37:21 -07:00
pkg Revert change to default buffer size. 2020-07-30 14:46:49 -07:00
runsc Implement overlayfs_stale_read for vfs2. 2020-07-30 14:18:11 -07:00
scripts Delete unused script. 2020-07-28 16:23:40 -07:00
shim Merge pull request #2672 from amscanne:shim-integrated 2020-07-13 16:10:58 -07:00
test Implement overlayfs_stale_read for vfs2. 2020-07-30 14:18:11 -07:00
tools Allocate a pseudo-tty for exec. 2020-07-30 14:11:09 -07:00
vdso Internal change. 2020-05-04 12:49:29 -07:00
website Clean up html on the website. 2020-07-17 18:27:41 -07:00
.bazelrc Double the number of jobs used by RBE. 2020-07-30 09:51:07 -07:00
.gitignore Add .gitignore 2018-05-01 09:37:49 -04:00
.travis.yml travis: run only arm64 builds 2020-07-24 17:31:09 -07:00
AUTHORS Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
BUILD Update shim to build using bazel. 2020-07-09 17:39:47 -07:00
CODE_OF_CONDUCT.md Merge pull request #2513 from amscanne:website-integrated 2020-05-12 12:55:23 -07:00
CONTRIBUTING.md Add style guide. 2020-06-26 21:10:37 -07:00
GOVERNANCE.md Merge pull request #2513 from amscanne:website-integrated 2020-05-12 12:55:23 -07:00
LICENSE Add MIT license to top-level LICENSE file. 2020-07-28 16:06:06 -07:00
Makefile Override the test timeout for runtimes. 2020-07-30 10:12:20 -07:00
README.md Drop unused markdown links. 2020-06-25 09:18:30 -07:00
SECURITY.md Drop unused markdown links. 2020-06-25 09:18:30 -07:00
WORKSPACE Implement neighbor unreachability detection for ARP and NDP. 2020-07-30 13:30:16 -07:00
go.mod Implement neighbor unreachability detection for ARP and NDP. 2020-07-30 13:30:16 -07:00
go.sum Implement neighbor unreachability detection for ARP and NDP. 2020-07-30 13:30:16 -07:00

README.md

gVisor

gVisor chat

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.