Skip to content

Commit 3a2e8d3

Browse files
committed
chore: download enclave sgxs if not provided
1 parent 60a1e62 commit 3a2e8d3

File tree

5 files changed

+47
-0
lines changed

5 files changed

+47
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ target
1212
**.jpg
1313
**.png
1414
raw_data
15+
services/sgx/enclave.sgxs

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -4840,6 +4840,7 @@ dependencies = [
48404840
"sgxs-loaders",
48414841
"tokio",
48424842
"tracing-subscriber",
4843+
"ureq",
48434844
"url",
48444845
"whoami",
48454846
]

flake.nix

+6
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,12 @@
214214
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS = " -Clink-arg=-fuse-ld=${pkgs.mold-wrapped}/bin/mold";
215215
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER = "${pkgs.clang}/bin/clang";
216216
CARGO_TARGET_AARCH64_APPLE_DARWIN_LINKER = "${pkgs.clang}/bin/clang";
217+
218+
FN_ENCLAVE_SGXS = pkgs.fetchurl {
219+
name = "enclave.sgxs";
220+
url = "https://bafybeid37ogyu3ogfctq4ecqa3t3ozneegbkj3gswg3h6lxwx5gq5f4rdm.ipfs.flk-ipfs.xyz";
221+
hash = "sha256-glOrKYZ4KzIEcr34XjW3jakudmx0DLN5TksRk2kH4S0=";
222+
};
217223
};
218224

219225
# Build *just* the cargo dependencies, so we can reuse all of that

services/sgx/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ sgx-isa = { version = "0.4.1", features = ["serde"]}
3838
whoami = "1.5.1"
3939
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
4040

41+
[build-dependencies]
42+
ureq = "2.10"
43+
4144
[[bin]]
4245
name = "fn-service-3"
4346
path = "src/bin.rs"

services/sgx/build.rs

+36
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,17 @@ const STACK_SIZE: &str = "0x1000000"; // 10 MiB
77
/// Number of threads to support in enclave
88
const THREADS: &str = "16";
99

10+
/// URL of latest enclave
11+
/// TODO: Also download mrsigner signature and get checksum
12+
const ENCLAVE_URL: &str =
13+
"https://bafybeid37ogyu3ogfctq4ecqa3t3ozneegbkj3gswg3h6lxwx5gq5f4rdm.ipfs.flk-ipfs.xyz";
14+
1015
fn main() {
1116
println!("cargo::rerun-if-changed=build.rs");
1217
println!("cargo::rerun-if-env-changed=FN_ENCLAVE_SOURCE");
18+
println!("cargo::rerun-if-env-changed=FN_ENCLAVE_SGXS");
1319

20+
// Build from source
1421
if let Ok(path) = std::env::var("FN_ENCLAVE_SOURCE").map(PathBuf::from) {
1522
if !path.is_dir() {
1623
panic!("enclave source must be a directory")
@@ -56,5 +63,34 @@ fn main() {
5663
// copy new enclave into the project
5764
std::fs::copy(bin.with_extension("sgxs"), "./enclave.sgxs")
5865
.unwrap_or_else(|_| panic!("failed to copy enclave to output directory"));
66+
67+
return;
68+
}
69+
70+
// Use precompiled enclave
71+
if let Ok(path) = std::env::var("FN_ENCLAVE_SGXS").map(PathBuf::from) {
72+
if !path.is_file() {
73+
panic!("enclave must be a file");
74+
}
75+
76+
println!("cargo::rerun-if-changed={}", path.to_string_lossy());
77+
std::fs::copy(path, "./enclave.sgxs").expect("failed to copy provided enclave.sgx");
78+
79+
return;
80+
}
81+
82+
// If enclave is not provided, fetch latest precompile from the specified url
83+
if !PathBuf::from("./enclave.sgxs").is_file() {
84+
let mut buf = Vec::new();
85+
ureq::get(ENCLAVE_URL)
86+
.send_bytes(&[])
87+
.expect("failed to download enclave.sgxs")
88+
.into_reader()
89+
.read_to_end(&mut buf)
90+
.expect("failed to download enclave.sgxs");
91+
92+
// TODO: verify checksum
93+
94+
std::fs::write("./enclave.sgxs", buf).expect("failed to write enclave.sgxs to disk");
5995
}
6096
}

0 commit comments

Comments
 (0)