Go to file
Adin Scannell 6b558bb433 Drop nodejs test that started spontaneously failing.
It is unclear exactly what happened in the DNS response that has caused
this test to start breaking. However, since this is unrelated to any code
change, this can be attributed to a non-hermetic or broken test case.

See master failure:
https://buildkite.com/gvisor/pipeline/builds/10462#ae46ee7c-855c-4efe-8165-f0c694557cf9

This may be related to https://github.com/nodejs/node/issues/28790, where
older versions of node are not parsing this field correctly? However, we
would like to retain other tests from the same older version of node.

For posterity, the current serial field appears as:

; <<>> DiG 9.17.19-1-Debian <<>> nodejs.org -t SOA +multiline
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 56131
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;nodejs.org.            IN SOA

;; ANSWER SECTION:
nodejs.org.             3402 IN SOA meera.ns.cloudflare.com. dns.cloudflare.com. (
                                2264470260 ; serial
                                10000      ; refresh (2 hours 46 minutes 40 seconds)
                                2400       ; retry (40 minutes)
                                604800     ; expire (1 week)
                                3600       ; minimum (1 hour)
                                )

;; Query time: 59 msec
;; SERVER: 127.0.0.1#53(127.0.0.1) (UDP)
;; WHEN: Thu Dec 09 10:35:57 PST 2021
;; MSG SIZE  rcvd: 102

PiperOrigin-RevId: 415308624
2021-12-09 11:17:16 -08:00
.buildkite buildkite: CgroupDriver has to be cgroupfs 2021-11-26 10:14:09 +00:00
.github use github issue templates 2021-07-14 13:10:55 -07:00
.vscode Add basic VSCode plumbing. 2021-02-01 20:08:00 +00:00
debian Use --output=starlark trick for all build path parsing. 2021-08-23 10:53:38 -07:00
g3doc Update REDME.md 2021-10-31 17:52:02 +05:30
images Don't eat error from epoll_ctl EPOLL_CTL_ADD 2021-12-07 12:36:00 -08:00
pkg Align Context API with kernel internals. 2021-12-08 23:51:37 -08:00
runsc Fix lisafs bug which tramples dentry UID on remote revalidation. 2021-12-06 10:35:24 -08:00
shim Add internal staging tags to //runsc and //shim binaries. 2021-04-07 17:13:11 -07:00
test Drop nodejs test that started spontaneously failing. 2021-12-09 11:17:16 -08:00
tools Allow reading for mixed atomic semantics. 2021-12-06 10:12:13 -08:00
vdso Internal change. 2020-05-04 12:49:29 -07:00
webhook
website Merge pull request #6857 from tanjianfeng:blog-perf 2021-12-02 17:34:01 -08:00
.bazelignore Ignore convenience symlink. 2021-02-01 20:30:16 +00:00
.bazelrc
.devcontainer.json Update .devcontainer.json 2021-02-01 12:16:48 -08:00
.gitignore
AUTHORS
BUILD Export faketime to go branch 2021-03-03 12:37:23 -08:00
CODE_OF_CONDUCT.md Merge pull request #2513 from amscanne:website-integrated 2020-05-12 12:55:23 -07:00
CONTRIBUTING.md Merge pull request #6484 from dqminh:fix-go-mod-instructions 2021-08-20 11:46:55 -07:00
GOVERNANCE.md Merge pull request #2513 from amscanne:website-integrated 2020-05-12 12:55:23 -07:00
LICENSE
Makefile [benchmarks] Don't run vfs1 benchmarks anymore. 2021-12-02 23:58:36 -08:00
README.md Fix "Installing from source" instructions 2021-10-05 17:32:15 -07:00
SECURITY.md Drop unused markdown links. 2020-06-25 09:18:30 -07:00
WORKSPACE Dockerless PacketImpact 2021-11-15 11:44:51 -08:00
go.mod Dockerless PacketImpact 2021-11-15 11:44:51 -08:00
go.sum Dockerless PacketImpact 2021-11-15 11:44:51 -08:00
nogo.yaml Internal change. 2021-11-30 16:05:24 -08:00

README.md

gVisor

Build status Issue reviver 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:

mkdir -p bin
make copy TARGETS=runsc DESTINATION=bin/
sudo cp ./bin/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.