Go to file
Julian Elischer 3731ebb3fe Adjust included data size on icmp errors
The RFC for icmpv6 specifies that an errant packet should be included
in the returned ICMP packet, and that it should include up to the amount
needed to fill the minimum MTU (1280 bytes) if possible. The current code
included the Link header in that calculation but the RFC is referring
to the IP MTU not the link MTU. Some conformance tests check this and
report an error agains the stack for this.

The full header length shoudl however continue to be used when allocating
header space.

Make the same change for IPv4 for consistency.

Add a test for icmp payload sizing.
Test that the included data in an ICMP error packet conforms to the
requirements of RFC 972, RFC 4443 section 2.4 and RFC 1812 Section 4.3.2.3.

Fixes #5311

PiperOrigin-RevId: 353790203
2021-01-25 20:50:02 -08:00
.buildkite Adjust benchtime for failing redis benchmarks. 2021-01-25 12:18:21 -08:00
.github Fix Go branch building. 2021-01-12 20:33:28 -08:00
debian Delete shim v1 2021-01-12 17:54:10 -08:00
g3doc Update containerd minimal version 2021-01-22 16:28:00 -08:00
images Add image presubmit tests and mark fsstress x86_64 only. 2021-01-21 15:53:34 -08:00
pkg Adjust included data size on icmp errors 2021-01-25 20:50:02 -08:00
runsc Add initial mitigate code and cpu parsing. 2021-01-22 10:52:57 -08:00
shim Delete shim v1 2021-01-12 17:54:10 -08:00
test Remove side effect from shm tests 2021-01-25 11:02:28 -08:00
tools [infra] Fix Build Github action failure. 2021-01-22 09:42:15 -08:00
vdso Internal change. 2020-05-04 12:49:29 -07:00
webhook Add the gVisor admission webhook 2020-10-30 12:02:09 -07:00
website Syscall docs update 2021-01-21 20:11:53 -08:00
.bazelrc Add ARM smoke test 2021-01-07 17:41:43 -08:00
.gitignore Refactor the Makefile to avoid recursive Make. 2020-12-09 15:53:23 -08:00
AUTHORS Change copyright notice to "The gVisor Authors" 2019-04-29 14:26:23 -07:00
BUILD Delete shim v1 2021-01-12 17:54:10 -08:00
CODE_OF_CONDUCT.md Merge pull request #2513 from amscanne:website-integrated 2020-05-12 12:55:23 -07:00
CONTRIBUTING.md Remove legacy bazel configurations. 2020-10-19 16:28:40 -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 Add fsstress tests 2021-01-15 14:51:51 -08:00
README.md Delete shim v1 2021-01-12 17:54:10 -08:00
SECURITY.md Drop unused markdown links. 2020-06-25 09:18:30 -07:00
WORKSPACE Fix rules_go checksums. 2021-01-11 10:37:39 -08:00
go.mod Delete shim v1 2021-01-12 17:54:10 -08:00
go.sum Delete shim v1 2021-01-12 17:54:10 -08:00
nogo.yaml Delete shim v1 2021-01-12 17:54:10 -08:00

README.md

gVisor

Build status gVisor chat code search

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 and install runsc directly from this branch:

echo "module runsc" > go.mod
GO111MODULE=on go get gvisor.dev/gvisor/runsc@go
CGO_ENABLED=0 GO111MODULE=on sudo -E go build -o /usr/local/bin/runsc gvisor.dev/gvisor/runsc

Subsequently, you can build and install the shim binary for containerd:

GO111MODULE=on sudo -E go build -o /usr/local/bin/containerd-shim-runsc-v1 gvisor.dev/gvisor/shim

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.