commit | 1ac511edb8a92c617eafe10afa13010811009dd4 | [log] [tgz] |
---|---|---|
author | Camilo Jacomet <cjacomet@google.com> | Fri Mar 12 21:39:44 2021 |
committer | Camilo Jacomet <cjacomet@google.com> | Fri Mar 12 21:39:44 2021 |
tree | afa567582e98b3a670b7399839e263552f1ec5a0 | |
parent | 746f466f291fde6388e02262fd7084e9303765e9 [diff] |
[sanddune]: Statistics packet time elapsed Now gets time elapsed using the dns header id as the key for the map instead of the port. Change-Id: I11cc25f53601d98f9c1a152a19249822b819c2ef Reviewed-on: https://chromium-review.googlesource.com/c/infra/sanddune/+/2754249 Reviewed-by: Jason Clinton <jclinton@chromium.org> Reviewed-by: Yulan Lin <yulanlin@google.com>
Sanddune is an experimental hermetic build sandbox for Chrome builds that builds off of the core hypervisor ideas from gvisor. The goal would be to isolate builds, trap syscalls and network requests to assert the hermeticity of builds.
It was forked from gvisor at commit 3ff7324.
The documentation below is from gvisor and will eventually be deleted or updated as we plan to remove everything that isn't directly related to the goal of hermetic assertions.
User documentation and technical architecture, including quick start guides, can be found at gvisor.dev.
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.
Make sure the following dependencies are installed:
Build and install the runsc
binary:
make runsc sudo cp ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc /usr/local/bin
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"
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 binaries for containerd
:
GO111MODULE=on sudo -E go build -o /usr/local/bin/gvisor-containerd-shim gvisor.dev/gvisor/shim/v1 GO111MODULE=on sudo -E go build -o /usr/local/bin/containerd-shim-runsc-v1 gvisor.dev/gvisor/shim/v2
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.