@@ -7,10 +7,17 @@ const STACK_SIZE: &str = "0x1000000"; // 10 MiB
7
7
/// Number of threads to support in enclave
8
8
const THREADS : & str = "16" ;
9
9
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
+
10
15
fn main ( ) {
11
16
println ! ( "cargo::rerun-if-changed=build.rs" ) ;
12
17
println ! ( "cargo::rerun-if-env-changed=FN_ENCLAVE_SOURCE" ) ;
18
+ println ! ( "cargo::rerun-if-env-changed=FN_ENCLAVE_SGXS" ) ;
13
19
20
+ // Build from source
14
21
if let Ok ( path) = std:: env:: var ( "FN_ENCLAVE_SOURCE" ) . map ( PathBuf :: from) {
15
22
if !path. is_dir ( ) {
16
23
panic ! ( "enclave source must be a directory" )
@@ -56,5 +63,34 @@ fn main() {
56
63
// copy new enclave into the project
57
64
std:: fs:: copy ( bin. with_extension ( "sgxs" ) , "./enclave.sgxs" )
58
65
. 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" ) ;
59
95
}
60
96
}
0 commit comments