-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathflake.nix
295 lines (295 loc) · 10.7 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
{
description = "oak";
inputs = {
systems.url = "github:nix-systems/x86_64-linux";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-utils.inputs.systems.follows = "systems";
rust-overlay.url = "github:oxalica/rust-overlay";
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
crane.url = "github:ipetkov/crane";
crane.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, systems, nixpkgs, flake-utils, rust-overlay, crane }:
(flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
rust-overlay.overlays.default
];
config = {
android_sdk.accept_license = true; # accept all of the sdk licenses
allowUnfree = true; # needed to get android stuff to compile
};
};
linux_kernel_version = "6.9.1";
linux_kernel_src = builtins.fetchurl {
url = "https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-${linux_kernel_version}.tar.xz";
sha256 = "01b414ba98fd189ecd544435caf3860ae2a790e3ec48f5aa70fdf42dc4c5c04a";
};
linux_kernel_config = ./oak_containers/kernel/configs/${linux_kernel_version}/minimal.config;
# Build the linux kernel for Oak Containers as a nix package, which simplifies
# reproducibility.
# Note that building a package via nix is not by itself a guarantee of
# reproducibility; see https://reproducible.nixos.org.
# Common kernel configuration
commonLinuxKernelConfig = {
# To allow reproducibility, the following options need to be configured:
# - CONFIG_MODULE_SIG is not set
# - CONFIG_MODULE_SIG_ALL is not set
# - CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT is not set
configfile = linux_kernel_config;
# And also the following build variables.
# See https://docs.kernel.org/kbuild/reproducible-builds.html.
extraMakeFlags = [
"KBUILD_BUILD_USER=user"
"KBUILD_BUILD_HOST=host"
];
version = linux_kernel_version;
src = linux_kernel_src;
allowImportFromDerivation = true;
};
# Patched kernel
linux_kernel = pkgs.linuxManualConfig (commonLinuxKernelConfig // {
kernelPatches = [{
name = "virtio-dma";
patch = ./oak_containers/kernel/patches/virtio-dma.patch;
}
{
name = "tdx-skip-probe-roms";
patch = ./oak_containers/kernel/patches/tdx-probe-roms.patch;
}
{
name = "rtmr-enabling";
patch = ./oak_containers/kernel/patches/rtmr-enable.patch;
}];
});
# Vanilla kernel
vanilla_linux_kernel = pkgs.linuxManualConfig commonLinuxKernelConfig;
androidSdk =
(pkgs.androidenv.composeAndroidPackages {
platformVersions = [ "30" ];
buildToolsVersions = [ "30.0.0" ];
includeEmulator = false;
includeNDK = false;
includeSources = false;
includeSystemImages = false;
}).androidsdk;
rustToolchain =
# This should be kept in sync with the value in bazel/rust/defs.bzl
pkgs.rust-bin.nightly."2024-09-05".default.override {
extensions = [
"clippy"
"llvm-tools-preview"
"rust-analyzer"
"rust-src"
"rustfmt"
];
targets = [
"wasm32-unknown-unknown"
"x86_64-unknown-linux-musl"
"x86_64-unknown-none"
];
};
craneLib = (crane.mkLib pkgs).overrideToolchain rustToolchain;
src = ./.;
in
{
packages = { inherit linux_kernel; inherit vanilla_linux_kernel; };
formatter = pkgs.nixpkgs-fmt;
# We define a recursive set of shells, so that we can easily create a shell with a subset
# of the dependencies for specific CI steps, without having to pull everything all the time.
#
# To add a new dependency, you can search it on https://search.nixos.org/packages and add its
# name to one of the shells defined below.
devShells = rec {
# Base shell with shared dependencies.
base = with pkgs; mkShell {
packages = [
cachix
just
ps
which
];
};
# Minimal shell with only the dependencies needed to run the Rust tests.
rust = with pkgs; mkShell {
inputsFrom = [
base
];
packages = [
(rust-bin.selectLatestNightlyWith (toolchain: rustToolchain))
cargo-audit
cargo-deadlinks
cargo-binutils
cargo-deny
cargo-nextest
cargo-udeps
cargo-vet
protobuf
buf # utility to convert binary protobuf to json; for breaking change detection.
systemd
qemu_kvm
python312
wasm-pack
];
};
# For some reason node does not know how to find the prettier plugin, so we need to
# manually specify its fully qualified path.
prettier = with pkgs; writeShellScriptBin "prettier" ''
${nodePackages.prettier}/bin/prettier \
--plugin "${nodePackages.prettier-plugin-toml}/lib/node_modules/prettier-plugin-toml/lib/index.js" \
"$@"
'';
# Minimal shell with only the dependencies needed to run the format and check-format
# steps.
lint = with pkgs; mkShell {
packages = [
bazel-buildtools
cargo-deadlinks
clang-tools
hadolint
ktfmt
ktlint
nixpkgs-fmt
nodePackages.markdownlint-cli
shellcheck
];
buildInputs = [
prettier
];
};
# Minimal shell with only the dependencies needed to run the bazel steps.
bazelShell = with pkgs; mkShell {
shellHook = ''
export ANDROID_HOME="${androidSdk}/libexec/android-sdk"
export GRADLE_OPTS="-Dorg.gradle.project.android.aapt2FromMavenOverride=${androidSdk}/libexec/android-sdk/build-tools/28.0.3/aapt2";
'';
packages = [
autoconf
autogen
automake
jdk11_headless
bazel
androidSdk
bazel-buildtools
];
};
# Generic shell to build Rust binaries with bazel.
bazelRustShell = with pkgs; mkShell {
inputsFrom = [
rust
bazelShell
];
};
# Shell for building Oak Containers kernel and system image. This is not included in the
# default shell because it is not needed as part of the CI.
containers = with pkgs; mkShell {
# We need access to the kernel source and configuration, not just the binaries, to
# build the system image with nvidia drivers in it.
# See oak_containers/system_image/build-base.sh (and nvidia_base_image.Dockerfile) for
# more details.
shellHook = ''
export LINUX_KERNEL="${linux_kernel}"
export VANILLA_LINUX_KERNEL="${vanilla_linux_kernel}"
export LINUX_KERNEL_VERSION="${linux_kernel_version}"
export LINUX_KERNEL_SOURCE="${linux_kernel_src}"
export LINUX_KERNEL_CONFIG="${linux_kernel_config}"
'';
inputsFrom = [
base
bazelShell
rust
];
packages = [
bc
bison
cpio
curl
docker
elfutils
fakeroot
flex
jq
libelf
perl
strip-nondeterminism
glibc
glibc.static
ncurses
netcat
umoci
];
};
# Shell for oak_containers_kernel.
linuxKernelShell = with pkgs; mkShell {
shellHook = ''
export LINUX_KERNEL="${linux_kernel}"
export VANILLA_LINUX_KERNEL="${vanilla_linux_kernel}"
'';
inputsFrom = [
rust
bazelShell
];
packages = [
bc
bison
curl
elfutils
flex
libelf
];
};
# Shell for oak_containers_stage1.
stage1Shell = with pkgs; mkShell {
inputsFrom = [
rust
bazelShell
];
packages = [
cpio
glibc
glibc.static
strip-nondeterminism
];
};
# Shell for Oak Containers system images.
systemImageShell = with pkgs; mkShell {
inputsFrom = [
rust
bazelShell
];
packages = [
elfutils
];
};
# Shell for most CI steps (i.e. without containers support).
ci = pkgs.mkShell {
shellHook = ''
export LINUX_KERNEL="${linux_kernel}"
export VANILLA_LINUX_KERNEL="${vanilla_linux_kernel}"
export LINUX_KERNEL_VERSION="${linux_kernel_version}"
export LINUX_KERNEL_SOURCE="${linux_kernel_src}"
export LINUX_KERNEL_CONFIG="${linux_kernel_config}"
'';
inputsFrom = [
rust
bazelShell
lint
];
};
# By default create a shell with all the inputs.
default = pkgs.mkShell {
packages = [ ];
inputsFrom = [
containers
rust
bazelShell
lint
];
};
};
}));
}