Update CI/Cargo.toml references to 0.0.122
[ldk-c-bindings] / genbindings.sh
1 #!/usr/bin/env bash
2
3 set -e
4 set -x
5
6 if [ ! -d "$1/lightning" -o "$2" != "true" -a "$2" != "false" ]; then
7         echo "USAGE: $0 path-to-rust-lightning allow-std"
8         echo "allow-std must be either 'true' or 'false' to indicate if we should be built relying on time and pthread support"
9         exit 1
10 fi
11
12 SKIP_TESTS_ARGUMENT=$3
13 RUN_CPP_TESTS=true
14
15 if [ ! -z "$SKIP_TESTS_ARGUMENT" ]; then
16   if [ "$SKIP_TESTS_ARGUMENT" != "skip-tests" ]; then
17     echo "To skip tests, usage must be: $0 path-to-rust-lightning allow-std skip-tests"
18     exit 1
19   else
20     RUN_CPP_TESTS=false
21   fi
22 fi
23
24 export LC_ALL=C
25
26 # On reasonable systems, we can use realpath here, but OSX is a diva with 20-year-old software.
27 ORIG_PWD="$(pwd)"
28 cd "$1"
29 LIGHTNING_PATH="$(pwd)"
30 LIGHTNING_GIT="$(git describe --tag --dirty --abbrev=16)"
31 cd "$ORIG_PWD"
32
33 # Generate (and reasonably test) C bindings
34
35 # First we set various compiler flags...
36 HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
37 ENV_TARGET=$(echo $HOST_PLATFORM | sed 's/-/_/g')
38
39 # Set path to include our rustc wrapper as well as cbindgen
40 export LDK_RUSTC_PATH="$(which rustc)"
41 export RUSTC="$(pwd)/deterministic-build-wrappers/rustc"
42 PATH="$PATH:~/.cargo/bin"
43
44 # Set up CFLAGS and RUSTFLAGS vars appropriately for building libsecp256k1 and demo apps...
45 BASE_CFLAGS="" # CFLAGS for libsecp256k1
46 LOCAL_CFLAGS="" # CFLAGS for demo apps
47
48 # Remap paths so that our builds are deterministic
49 BASE_RUSTFLAGS="--cfg=c_bindings --remap-path-prefix $LIGHTNING_PATH=rust-lightning --remap-path-prefix $(pwd)=ldk-c-bindings --remap-path-prefix $HOME/.cargo="
50
51 # If the C compiler supports it, also set -ffile-prefix-map
52 echo "int main() {}" > genbindings_path_map_test_file.c
53 clang -o /dev/null -ffile-prefix-map=$HOME/.cargo= genbindings_path_map_test_file.c > /dev/null 2>&1 &&
54 export BASE_CFLAGS="-ffile-prefix-map=$HOME/.cargo="
55
56 BASE_CFLAGS="$BASE_CFLAGS -frandom-seed=42"
57 LOCAL_CFLAGS="-Wall -Wno-nullability-completeness -pthread -Iinclude/"
58
59 HOST_OSX=false
60 if [ "$HOST_PLATFORM" = "x86_64-apple-darwin" ]; then
61         HOST_OSX=true
62 elif [ "$HOST_PLATFORM" = "aarch64-apple-darwin" ]; then
63         HOST_OSX=true
64 fi
65
66 BASE_HOST_CFLAGS="$BASE_CFLAGS"
67
68 if [ "$MACOS_SDK" = "" -a "$HOST_OSX" = "true" ]; then
69         MACOS_SDK="$(xcrun --show-sdk-path)"
70         [ "$MACOS_SDK" = "" ] && exit 1
71 fi
72
73 if [ "$MACOS_SDK" != "" ]; then
74         export MACOSX_DEPLOYMENT_TARGET=10.9
75         BASE_HOST_OSX_CFLAGS="$BASE_HOST_CFLAGS -isysroot$MACOS_SDK -mmacosx-version-min=10.9"
76         export CFLAGS_aarch64_apple_darwin="$BASE_HOST_OSX_CFLAGS --target=aarch64-apple-darwin -mcpu=apple-a14"
77         export CFLAGS_x86_64_apple_darwin="$BASE_HOST_OSX_CFLAGS --target=x86_64-apple-darwin -march=sandybridge -mtune=sandybridge"
78         if [ "$HOST_OSX" = "true" ]; then
79                 LOCAL_CFLAGS="$LOCAL_CFLAGS --target=$HOST_PLATFORM -isysroot$MACOS_SDK -mmacosx-version-min=10.9"
80                 BASE_HOST_CFLAGS="$BASE_HOST_OSX_CFLAGS --target=$HOST_PLATFORM"
81         fi
82 fi
83
84 rm genbindings_path_map_test_file.c
85
86 case "$ENV_TARGET" in
87         "x86_64"*)
88                 export RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=sandybridge"
89                 export BASE_HOST_CFLAGS="$BASE_HOST_CFLAGS -march=sandybridge -mtune=sandybridge"
90                 export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS"
91                 ;;
92         "aarch64_apple_darwin")
93                 export RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=apple-a14"
94                 export BASE_HOST_CFLAGS="$BASE_HOST_CFLAGS -mcpu=apple-a14"
95                 export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS"
96                 ;;
97         *)
98                 # Assume this isn't targeted at another host and build for the host's CPU.
99                 export RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=native"
100                 export BASE_HOST_CFLAGS="$BASE_HOST_CFLAGS -march=native -mtune=native"
101                 export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS"
102                 ;;
103 esac
104
105 # First build the latest c-bindings-gen binary
106 cd c-bindings-gen && cargo build --release && cd ..
107
108 # Then wipe all the existing C bindings (because we're being run in the right directory)
109 # note that we keep the few manually-generated files first:
110 mv lightning-c-bindings/src/c_types/mod.rs ./
111 mv lightning-c-bindings/src/bitcoin ./
112
113 # Before we try to sed the Cargo.toml, generate version define tags
114 # (ignoring any files that we're about to generate)
115
116 git checkout lightning-c-bindings/src
117 git checkout lightning-c-bindings/include
118 BINDINGS_GIT="$(git describe --tag --dirty --abbrev=16)"
119 echo "$(cat <<EOF
120 #ifndef _LDK_HEADER_VER
121 static inline int _ldk_strncmp(const char *s1, const char *s2, uint64_t n) {
122         if (n && *s1 != *s2) return 1;
123         while (n && *s1 != 0 && *s2 != 0) {
124                 s1++; s2++; n--;
125                 if (n && *s1 != *s2) return 1;
126         }
127         return 0;
128 }
129
130 #define _LDK_HEADER_VER "${LIGHTNING_GIT}"
131 #define _LDK_C_BINDINGS_HEADER_VER "${BINDINGS_GIT}"
132 static inline const char* check_get_ldk_version() {
133         LDKStr bin_ver = _ldk_get_compiled_version();
134         if (_ldk_strncmp(_LDK_HEADER_VER, (const char*)bin_ver.chars, bin_ver.len) != 0) {
135         // Version mismatch, we don't know what we're running!
136                 return 0;
137         }
138         return _LDK_HEADER_VER;
139 }
140 static inline const char* check_get_ldk_bindings_version() {
141         LDKStr bin_ver = _ldk_c_bindings_get_compiled_version();
142         if (_ldk_strncmp(_LDK_C_BINDINGS_HEADER_VER, (const char*)bin_ver.chars, bin_ver.len) != 0) {
143         // Version mismatch, we don't know what we're running!
144                 return 0;
145         }
146         return _LDK_C_BINDINGS_HEADER_VER;
147 }
148 #endif /* _LDK_HEADER_VER */
149 EOF
150 )" > lightning-c-bindings/include/ldk_ver.h
151
152 rm -rf lightning-c-bindings/src
153
154 mkdir -p lightning-c-bindings/src/{c_types,lightning}
155 mv ./mod.rs lightning-c-bindings/src/c_types/
156 mv ./bitcoin lightning-c-bindings/src/
157
158 # Finally, run the c-bindings-gen binary, building fresh bindings.
159 OUT="$(pwd)/lightning-c-bindings/src"
160 OUT_TEMPL="$(pwd)/lightning-c-bindings/src/c_types/derived.rs"
161 OUT_F="$(pwd)/lightning-c-bindings/include/ldk_rust_types.h"
162 OUT_CPP="$(pwd)/lightning-c-bindings/include/lightningpp.hpp"
163 BIN="$(pwd)/c-bindings-gen/target/release/c-bindings-gen"
164
165 function is_gnu_sed(){
166   sed --version >/dev/null 2>&1
167 }
168
169 function add_crate() {
170         pushd "$LIGHTNING_PATH/$1"
171         RUSTC_BOOTSTRAP=1 cargo rustc --profile=check -Z avoid-dev-deps --no-default-features $3 -- --cfg=c_bindings -Zunpretty=expanded > /tmp/$1-crate-source.txt
172         popd
173         if [ "$HOST_OSX" = "true" ]; then
174                 sed -i".original" "1i\\
175 pub mod $2 {
176 " /tmp/$1-crate-source.txt
177         else
178                 sed -i "1ipub mod $2 {\n" /tmp/$1-crate-source.txt
179         fi
180         echo "}" >> /tmp/$1-crate-source.txt
181         cat /tmp/$1-crate-source.txt >> /tmp/crate-source.txt
182         rm /tmp/$1-crate-source.txt
183         if is_gnu_sed; then
184                 sed -E -i 's|#*'$1' = \{ .*|'$1' = \{ path = "'"$LIGHTNING_PATH"'/'$1'", default-features = false }|' lightning-c-bindings/Cargo.toml
185         else
186                 # OSX sed is for some reason not compatible with GNU sed
187                 sed -E -i '' 's|#*'$1' = \{ .*|'$1' = \{ path = "'"$LIGHTNING_PATH"'/'$1'", default-features = false }|' lightning-c-bindings/Cargo.toml
188         fi
189 }
190
191 function drop_crate() {
192         if is_gnu_sed; then
193                 sed -E -i 's|'$1' = \{ (.*)|#'$1' = \{ \1|' lightning-c-bindings/Cargo.toml
194         else
195                 # OSX sed is for some reason not compatible with GNU sed
196                 sed -E -i '' 's|'$1' = \{ (.*)|#'$1' = \{ \1|' lightning-c-bindings/Cargo.toml
197         fi
198 }
199
200 echo > /tmp/crate-source.txt
201 if [ "$2" = "true" ]; then
202         add_crate lightning lightning --features=std
203         add_crate "lightning-persister" "lightning_persister"
204         add_crate "lightning-background-processor" "lightning_background_processor" --features=std
205         add_crate "lightning-invoice" "lightning_invoice" --features=std
206         add_crate "lightning-rapid-gossip-sync" "lightning_rapid_gossip_sync" --features=std
207         CARGO_BUILD_ARGS="--features=std"
208 else
209         add_crate lightning lightning --features=no-std
210         drop_crate "lightning-persister"
211         add_crate "lightning-background-processor" "lightning_background_processor" --features=no-std
212         add_crate "lightning-rapid-gossip-sync" "lightning_rapid_gossip_sync" --features=no-std
213         add_crate "lightning-invoice" "lightning_invoice" --features=no-std
214         CARGO_BUILD_ARGS="--features=no-std"
215 fi
216
217 cat /tmp/crate-source.txt | RUST_BACKTRACE=1 "$BIN" "$OUT/" "$OUT_TEMPL" "$OUT_F" "$OUT_CPP"
218
219 echo "$(cat <<EOF
220 #[no_mangle]
221 pub extern "C" fn _ldk_get_compiled_version() -> crate::c_types::Str {
222         "${LIGHTNING_GIT}".into()
223 }
224 #[no_mangle]
225 pub extern "C" fn _ldk_c_bindings_get_compiled_version() -> crate::c_types::Str {
226         "${BINDINGS_GIT}".into()
227 }
228 EOF
229 )" >> lightning-c-bindings/src/version.rs
230
231 # Now cd to lightning-c-bindings, build the generated bindings, and call cbindgen to build a C header file
232 cd lightning-c-bindings
233
234 RUSTFLAGS="$RUSTFLAGS --cfg=test_mod_pointers" cargo build $CARGO_BUILD_ARGS
235 if [ "$CFLAGS_aarch64_apple_darwin" != "" -a "$HOST_OSX" = "true" ]; then
236         RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=apple-a14" cargo build $CARGO_BUILD_ARGS --target aarch64-apple-darwin
237 fi
238 cbindgen -v --config cbindgen.toml -o include/lightning.h >/dev/null 2>&1
239
240 # cbindgen is relatively braindead when exporting typedefs -
241 # it happily exports all our typedefs for private types, even with the
242 # generics we specified in C mode! So we drop all those types manually here.
243 if is_gnu_sed; then
244         sed -i 's/typedef LDKnative.*Import.*LDKnative.*;//g' include/lightning.h
245
246         # UnsafeCell is `repr(transparent)` so should be ignored here
247         sed -i 's/LDKUnsafeCell<\(.*\)> /struct \1 /g' include/lightning.h
248
249         # stdlib.h doesn't exist in clang's wasm sysroot, and cbindgen
250         # doesn't actually use it anyway, so drop the import.
251         sed -i 's/#include <stdlib.h>/#include "ldk_rust_types.h"/g' include/lightning.h
252 else
253         # OSX sed is for some reason not compatible with GNU sed
254         sed -i '' 's/typedef LDKnative.*Import.*LDKnative.*;//g' include/lightning.h
255
256         # UnsafeCell is `repr(transparent)` so should be ignored by cbindgen
257         sed -i '' 's/LDKUnsafeCell<\(.*\)> /struct \1 /g' include/lightning.h
258
259         # stdlib.h doesn't exist in clang's wasm sysroot, and cbindgen
260         # doesn't actually use it anyway, so drop the import.
261         sed -i '' 's/#include <stdlib.h>/#include "ldk_rust_types.h"/g' include/lightning.h
262 fi
263
264 # Build C++ class methods which call trait methods
265 echo "Updating C++ header, this may take some time, especially on macOS"
266 set +x # Echoing every command is very verbose here
267 OLD_IFS="$IFS"
268 export IFS=''
269 echo '#include <string.h>' > include/lightningpp_new.hpp
270 echo 'namespace LDK {' >> include/lightningpp_new.hpp
271 echo '// Forward declarations' >> include/lightningpp_new.hpp
272 cat include/lightningpp.hpp | sed -n 's/class \(.*\) {/class \1;/p' >> include/lightningpp_new.hpp
273 echo '' >> include/lightningpp_new.hpp
274
275 DECLS=""
276 while read LINE; do
277         case "$LINE" in
278                 "#include <string.h>")
279                         # We already printed this above.
280                         ;;
281                 "namespace LDK {")
282                         # We already printed this above.
283                         ;;
284                 "}")
285                         # We'll print this at the end
286                         ;;
287                 "XXX"*)
288                         NEW_STRUCT_NAME="$(echo "$LINE" | awk '{ print $2 }')"
289                         if [ "$NEW_STRUCT_NAME" != "$STRUCT_NAME" ]; then
290                                 STRUCT_CONTENTS="$(cat include/lightning.h  | sed -n -e "/struct LDK$NEW_STRUCT_NAME/{:s" -e "/\} LDK$NEW_STRUCT_NAME;/!{N" -e "b s" -e "}" -e p -e "}")"
291                         fi
292                         STRUCT_NAME="$NEW_STRUCT_NAME"
293                         METHOD_NAME="$(echo "$LINE" | awk '{ print $3 }')"
294                         METHOD="$(echo "$STRUCT_CONTENTS" | grep "(\*$METHOD_NAME)")"
295                         if [ "$METHOD" = "" ]; then
296                                 echo "Unable to find method declaration for $LINE"
297                                 exit 1
298                         fi
299                         RETVAL="$(echo "$METHOD" | sed 's/[ ]*\([A-Za-z0-9 _]*\)(\*\(.*\)).*/\1/' | sed -E 's/^(struct|enum) LDK/LDK::/g' | tr -d ' ')"
300                         [ "$RETVAL" = "LDK::SecretKey" ] && RETVAL="LDKSecretKey"
301                         [ "$RETVAL" = "LDK::PublicKey" ] && RETVAL="LDKPublicKey"
302                         [ "$RETVAL" = "LDK::ThirtyTwoBytes" ] && RETVAL="LDKThirtyTwoBytes"
303                         PARAMS="$(echo "$METHOD" | sed 's/.*(\*.*)(\(const \)*void \*this_arg\(, \)*\(.*\));/\3/')"
304
305                         echo -e "\tinline $RETVAL $METHOD_NAME($PARAMS);" >> include/lightningpp_new.hpp
306                         DECLS="$DECLS"$'\n'"inline $RETVAL $STRUCT_NAME::$METHOD_NAME($PARAMS) {"
307
308                         DECLS="$DECLS"$'\n'$'\t'
309                         [ "$RETVAL" != "void" ] && DECLS="$DECLS$RETVAL ret = "
310                         DECLS="$DECLS(self.$METHOD_NAME)(self.this_arg"
311
312                         IFS=','; for PARAM in $PARAMS; do
313                                 DECLS="$DECLS, "
314                                 DECLS="$DECLS$(echo $PARAM | sed 's/.* (*\**\([a-zA-Z0-9_]*\)\()[\[0-9\]*]\)*/\1/')"
315                         done
316                         IFS=''
317
318                         DECLS="$DECLS);"
319                         [ "$RETVAL" != "void" ] && DECLS="$DECLS"$'\n'$'\t'"return ret;"
320                         DECLS="$DECLS"$'\n'"}"
321                         ;;
322                 *)
323                         echo "$LINE" >> include/lightningpp_new.hpp
324         esac
325 done < include/lightningpp.hpp
326 echo "$DECLS" >> include/lightningpp_new.hpp
327 echo "}" >> include/lightningpp_new.hpp
328 export IFS="$OLD_IFS"
329 set -x
330 mv include/lightningpp_new.hpp include/lightningpp.hpp
331
332 if $RUN_CPP_TESTS; then
333   # Finally, sanity-check the generated C and C++ bindings with demo apps:
334   # Naively run the C demo app:
335   gcc $LOCAL_CFLAGS -Wall -g -pthread demo.c target/debug/libldk.a -ldl -lm
336   ./a.out
337
338   # And run the C++ demo app
339   if [ "$2" = "true" ]; then
340     g++ $LOCAL_CFLAGS -std=c++11 -Wall -g -pthread demo.cpp -Ltarget/debug/ -lldk -ldl
341     LD_LIBRARY_PATH=target/debug/ ./a.out > /dev/null
342   fi
343
344   # Finally, run the C++ demo app with our native networking library
345   # in valgrind to test memory model correctness and lack of leaks.
346   gcc $LOCAL_CFLAGS -fPIC -std=c99 -Wall -g -pthread -I../ldk-net ../ldk-net/ldk_net.c -c -o ldk_net.o
347   if [ "$2" = "true" ]; then
348     g++ $LOCAL_CFLAGS -std=c++11 -Wall -g -pthread -DREAL_NET -I../ldk-net ldk_net.o demo.cpp target/debug/libldk.a -ldl -lm
349     if [ -x "`which valgrind`" -a "$(uname -m)" != "ppc64le" ]; then
350       valgrind --error-exitcode=4 --memcheck:leak-check=full --show-leak-kinds=all ./a.out
351       echo
352     else
353       echo "WARNING: Please install valgrind for more testing"
354       ./a.out
355     fi
356   fi
357
358
359   # Test a statically-linked C++ version, tracking the resulting binary size and runtime
360   # across debug, LTO, and cross-language LTO builds (using the same compiler each time).
361   if [ "$2" = "true" ]; then
362     clang++ $LOCAL_CFLAGS -std=c++11 demo.cpp target/debug/libldk.a -ldl
363     strip ./a.out
364     time ./a.out
365     echo " C++ Bin size and runtime w/o optimization:"
366     ls -lha a.out
367   fi
368
369 else
370   echo "Skipping tests!"
371 fi
372
373 function REALLY_PIN_CC {
374         # -Zbuild-std fails if we have any dependencies of build-deps, which
375         # cc added in 1.0.80, thus we pin back to 1.0.79 to avoid that.
376         cargo update -p cc --precise "1.0.79" --verbose
377         ( RUSTC_BOOTSTRAP=1 cargo build --features=std -v --release --target x86_64-apple-darwin -Zbuild-std=std,panic_abort > /dev/null 2>&1 ) || echo -n
378         ( RUSTC_BOOTSTRAP=1 cargo build --features=std -v --release --target aarch64-apple-darwin -Zbuild-std=std,panic_abort > /dev/null 2>&1 ) || echo -n
379         # Sadly, std also depends on cc, and we can't pin it in that tree
380         # directly. Instead, we have to delete the file out of the cargo
381         # registry and build --offline to avoid it using the latest version.
382         NEW_CC_DEP="$CARGO_HOME"
383         [ "$NEW_CC_DEP" = "" ] && NEW_CC_DEP="$HOME"
384         [ -d "$NEW_CC_DEP/.cargo/registry/cache/"github.com-* ] && CARGO_REGISTRY_CACHE="$NEW_CC_DEP/.cargo/registry/cache/"github.com-*
385         [ -d "$NEW_CC_DEP/.cargo/registry/cache/"index.crates.io-* ] && CARGO_REGISTRY_CACHE="$NEW_CC_DEP/.cargo/registry/cache/"index.crates.io-*
386         if [ -d "$CARGO_REGISTRY_CACHE" ]; then
387                 if [ -f "$CARGO_REGISTRY_CACHE/cc-1.0.79.crate" ]; then
388                         mv "$CARGO_REGISTRY_CACHE/cc-1.0.79.crate" ./
389                 fi
390                 rm -f "$CARGO_REGISTRY_CACHE/"*/cc-*.crate
391                 [ -f ./cc-1.0.79.crate ] && mv ./cc-1.0.79.crate "$CARGO_REGISTRY_CACHE/"
392         else
393                 echo "Couldn't find cargo cache, build-std builds are likely to fail!"
394         fi
395 }
396
397 # Then, check with memory sanitizer, if we're on Linux and have rustc nightly
398 if [ "$HOST_PLATFORM" = "x86_64-unknown-linux-gnu" ]; then
399         if cargo +nightly --version >/dev/null 2>&1; then
400                 LLVM_V=$(rustc +nightly --version --verbose | grep "LLVM version" | awk '{ print substr($3, 0, 2); }')
401                 if [ -x "$(which clang-$LLVM_V)" ]; then
402                         cargo +nightly clean
403
404                         REALLY_PIN_CC
405                         cargo +nightly rustc --offline $CARGO_BUILD_ARGS -Zbuild-std=std,panic_abort --target x86_64-unknown-linux-gnu -v -- -Zsanitizer=memory -Zsanitizer-memory-track-origins -Cforce-frame-pointers=yes
406                         mv target/x86_64-unknown-linux-gnu/debug/libldk.* target/debug/
407
408                         # Sadly, std doesn't seem to compile into something that is memsan-safe as of Aug 2020,
409                         # so we'll always fail, not to mention we may be linking against git rustc LLVM which
410                         # may differ from clang-llvm, so just allow everything here to fail.
411                         set +e
412
413                         # First the C demo app...
414                         clang-$LLVM_V $LOCAL_CFLAGS -fsanitize=memory -fsanitize-memory-track-origins -g demo.c target/debug/libldk.a -ldl
415                         ./a.out
416
417                         if [ "$2" = "true" ]; then
418                                 # ...then the C++ demo app
419                                 clang++-$LLVM_V $LOCAL_CFLAGS -std=c++11 -fsanitize=memory -fsanitize-memory-track-origins -g demo.cpp target/debug/libldk.a -ldl
420                                 ./a.out >/dev/null
421
422                                 # ...then the C++ demo app with the ldk_net network implementation
423                                 clang-$LLVM_V $LOCAL_CFLAGS -std=c99 -fsanitize=memory -fsanitize-memory-track-origins -g -I../ldk-net ../ldk-net/ldk_net.c -c -o ldk_net.o
424                                 clang++-$LLVM_V $LOCAL_CFLAGS -std=c++11 -fsanitize=memory -fsanitize-memory-track-origins -g -DREAL_NET -I../ldk-net ldk_net.o demo.cpp target/debug/libldk.a -ldl
425                                 ./a.out >/dev/null
426                         fi
427
428                         # restore exit-on-failure
429                         set -e
430                 else
431                         echo "WARNING: Can't use memory sanitizer without clang-$LLVM_V"
432                 fi
433         else
434                 echo "WARNING: Can't use memory sanitizer without rustc nightly"
435         fi
436 else
437         echo "WARNING: Can't use memory sanitizer on non-Linux, non-x86 platforms"
438 fi
439
440 RUSTC_LLVM_V=$(rustc --version --verbose | grep "LLVM version" | awk '{ print substr($3, 0, 2); }')
441
442 if [ "$HOST_OSX" = "true" ]; then
443         # Apple is special, as always, and their versions of clang aren't
444         # compatible with upstream LLVM.
445         if [ "$(clang --version | grep 'Apple clang')" != "" ]; then
446                 echo "Apple clang isn't compatible with upstream clang, install upstream clang"
447                 CLANG_LLVM_V="0"
448         else
449                 CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($3, 0, 2); }')
450                 if [ -x "$(which ld64.lld)" ]; then
451                         LLD_LLVM_V="$(ld64.lld --version | awk '{ print substr($2, 0, 2); }')"
452                 fi
453         fi
454 else
455         # Output is something like clang version 17.0.3 (Fedora 17.0.3-1.fc39) or Debian clang version 14.0.6
456         CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($3, 0, 2); }')
457         [ "$CLANG_LLVM_V" = "ve" ] && CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($4, 0, 2); }')
458         if [ -x "$(which ld.lld)" ]; then
459                 LLD_LLVM_V="$(ld.lld --version | awk '{ print $2; }')"
460                 if [ "$LLD_LLVM_V" = "LLD" ]; then # eg if the output is "Debian LLD ..."
461                         LLD_LLVM_V="$(ld.lld --version | awk '{ print substr($3, 0, 2); }')"
462                 else
463                         LLD_LLVM_V="$(ld.lld --version | awk '{ print substr($2, 0, 2); }')"
464                 fi
465         fi
466 fi
467
468
469 if [ "$CLANG_LLVM_V" = "$RUSTC_LLVM_V" ]; then
470         CLANG=clang
471         CLANGPP=clang++
472         if [ "$LLD_LLVM_V" = "$CLANG_LLVM_V" ]; then
473                 LLD=lld
474         fi
475 elif [ -x "$(which clang-$RUSTC_LLVM_V)" ]; then
476         CLANG="$(which clang-$RUSTC_LLVM_V)"
477         CLANGPP="$(which clang++-$RUSTC_LLVM_V || echo clang++)"
478         if [ "$($CLANG --version)" != "$($CLANGPP --version)" ]; then
479                 echo "$CLANG and $CLANGPP are not the same version of clang!"
480                 unset CLANG
481                 unset CLANGPP
482         fi
483         if [ "$LLD_LLVM_V" != "$RUSTC_LLVM_V" ]; then
484                 LLD="lld"
485                 [ -x "$(which lld-$RUSTC_LLVM_V)" ] && LLD="lld-$RUSTC_LLVM_V"
486                 LLD_LLVM_V="$(ld.lld-$RUSTC_LLVM_V --version | awk '{ print $2; }')"
487                 if [ "$LLD_LLVM_V" = "LLD" ]; then # eg if the output is "Debian LLD ..."
488                         LLD_LLVM_V="$(ld.lld-$RUSTC_LLVM_V --version | awk '{ print substr($3, 0, 2); }')"
489                 else
490                         LLD_LLVM_V="$(ld.lld-$RUSTC_LLVM_V --version | awk '{ print substr($2, 0, 2); }')"
491                 fi
492                 if [ "$LLD_LLVM_V" != "$RUSTC_LLVM_V" ]; then
493                         echo "Could not find a workable version of lld, not using cross-language LTO"
494                         unset LLD
495                 fi
496         fi
497 fi
498
499 if [ "$CLANG" != "" -a "$CLANGPP" = "" ]; then
500         echo "WARNING: It appears you have a clang-$RUSTC_LLVM_V but not clang++-$RUSTC_LLVM_V. This is common, but leaves us unable to compile C++ with LLVM $RUSTC_LLVM_V"
501         echo "You should create a symlink called clang++-$RUSTC_LLVM_V pointing to $CLANG in $(dirname $CLANG)"
502 fi
503
504 # Finally, if we're on Linux, build the final debug binary with address sanitizer (and leave it there)
505 if [ "$HOST_PLATFORM" = "x86_64-unknown-linux-gnu" ]; then
506         if [ "$CLANGPP" != "" ]; then
507                 if is_gnu_sed; then
508                         sed -i.bk 's/,"cdylib"]/]/g' Cargo.toml
509                 else
510                         # OSX sed is for some reason not compatible with GNU sed
511                         sed -i .bk 's/,"cdylib"]/]/g' Cargo.toml
512                 fi
513
514                 RUSTFLAGS="$RUSTFLAGS --cfg=test_mod_pointers" RUSTC_BOOTSTRAP=1 cargo rustc $CARGO_BUILD_ARGS -v -- -Zsanitizer=address -Cforce-frame-pointers=yes || ( mv Cargo.toml.bk Cargo.toml; exit 1)
515                 mv Cargo.toml.bk Cargo.toml
516
517                 # Sadly, address sanitizer appears to have had some regression on Debian and now fails to
518                 # get past its init stage, so we disable it for now.
519
520                 # First the C demo app...
521                 #$CLANG $LOCAL_CFLAGS -fsanitize=address -g demo.c target/debug/libldk.a -ldl
522                 #ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' ./a.out
523
524                 #if [ "$2" = "true" ]; then
525                 #       # ...then the C++ demo app
526                 #       $CLANGPP $LOCAL_CFLAGS -std=c++11 -fsanitize=address -g demo.cpp target/debug/libldk.a -ldl
527                 #       ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' ./a.out >/dev/null
528
529                 #       # ...then the C++ demo app with the ldk_net network implementation
530                 #       $CLANG $LOCAL_CFLAGS -fPIC -fsanitize=address -g -I../ldk-net ../ldk-net/ldk_net.c -c -o ldk_net.o
531                 #       $CLANGPP $LOCAL_CFLAGS -std=c++11 -fsanitize=address -g -DREAL_NET -I../ldk-net ldk_net.o demo.cpp target/debug/libldk.a -ldl
532                 #       ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' ./a.out >/dev/null
533                 #fi
534         else
535                 echo "WARNING: Please install clang-$RUSTC_LLVM_V and clang++-$RUSTC_LLVM_V to build with address sanitizer"
536         fi
537 else
538         echo "WARNING: Can't use address sanitizer on non-Linux, non-x86 platforms"
539 fi
540
541 # Now build with LTO on on both C++ and rust, but without cross-language LTO:
542 # Clear stale release build artifacts from previous runs
543 cargo clean --release
544 CARGO_PROFILE_RELEASE_LTO=true RUSTFLAGS="$RUSTFLAGS -C embed-bitcode=yes -C lto" cargo build $CARGO_BUILD_ARGS -v --release
545 if [ "$2" = "true" ]; then
546         clang++ $LOCAL_CFLAGS -std=c++11 -O2 demo.cpp target/release/libldk.a -ldl
547 fi
548
549 strip ./a.out
550 time ./a.out
551 echo "C++ Bin size and runtime with only RL (LTO) optimized:"
552 ls -lha a.out
553
554 if [ "$CLANGPP" != "" ]; then
555         # If we can use cross-language LTO, use it for building C dependencies (i.e. libsecp256k1) as well
556         export CC="$CLANG"
557         # The cc-rs crate tries to force -fdata-sections and -ffunction-sections on, which
558         # breaks -fembed-bitcode, so we turn off cc-rs' default flags and specify exactly
559         # what we want here.
560         export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS -fPIC -fembed-bitcode"
561         export CRATE_CC_NO_DEFAULTS=true
562 fi
563
564 if [ "$2" = "false" -a "$(rustc --print target-list | grep wasm32-wasi)" != "" ]; then
565         # Test to see if clang supports wasm32 as a target (which is needed to build rust-secp256k1)
566         echo "int main() {}" > genbindings_wasm_test_file.c
567         if clang -nostdlib -o /dev/null --target=wasm32-wasi -Wl,--no-entry genbindings_wasm_test_file.c > /dev/null 2>&1; then
568                 # And if it does, build a WASM binary without capturing errors
569                 export CFLAGS_wasm32_wasi="$BASE_CFLAGS -target wasm32-wasi -O1"
570                 RUSTFLAGS="$BASE_RUSTFLAGS -C opt-level=1 --cfg=test_mod_pointers" cargo build $CARGO_BUILD_ARGS -v --target=wasm32-wasi
571                 export CFLAGS_wasm32_wasi="$BASE_CFLAGS -fembed-bitcode -target wasm32-wasi -Oz"
572                 RUSTFLAGS="$BASE_RUSTFLAGS -C embed-bitcode=yes -C opt-level=z -C linker-plugin-lto -C lto" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS -v --release --target=wasm32-wasi
573         else
574                 echo "Cannot build WASM lib as clang does not seem to support the wasm32-wasi target"
575         fi
576         rm genbindings_wasm_test_file.c
577 fi
578
579 EXTRA_TARGETS=( $LDK_C_BINDINGS_EXTRA_TARGETS )
580 EXTRA_CCS=( $LDK_C_BINDINGS_EXTRA_TARGET_CCS )
581 EXTRA_LINK_LTO=( $LDK_C_BINDINGS_EXTRA_TARGET_LINK_LTO )
582
583 if [ ${#EXTRA_TARGETS[@]} != ${#EXTRA_CCS[@]} ]; then
584         echo "LDK_C_BINDINGS_EXTRA_TARGETS and LDK_C_BINDINGS_EXTRA_TARGET_CCS didn't have the same number of elements!"
585         exit 1
586 fi
587
588 for IDX in ${!EXTRA_TARGETS[@]}; do
589         EXTRA_ENV_TARGET=$(echo "${EXTRA_TARGETS[$IDX]}" | sed 's/-/_/g')
590         export CFLAGS_$EXTRA_ENV_TARGET="$BASE_CFLAGS"
591         export CC_$EXTRA_ENV_TARGET=${EXTRA_CCS[$IDX]}
592         EXTRA_RUSTFLAGS=""
593         case "$EXTRA_ENV_TARGET" in
594                 "x86_64"*)
595                         export CFLAGS_$EXTRA_ENV_TARGET="$BASE_CFLAGS -march=sandybridge -mtune=sandybridge"
596                         EXTRA_RUSTFLAGS="-C target-cpu=sandybridge"
597                         ;;
598         esac
599         [ "${EXTRA_LINK_LTO[$IDX]}" != "" ] && EXTRA_RUSTFLAGS="-C linker-plugin-lto"
600         RUSTFLAGS="$BASE_RUSTFLAGS -C embed-bitcode=yes -C lto -C linker=${EXTRA_CCS[$IDX]} $EXTRA_RUSTFLAGS" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS -v --release --target "${EXTRA_TARGETS[$IDX]}"
601 done
602
603 if [ "$CLANGPP" != "" -a "$LLD" != "" ]; then
604         # Finally, test cross-language LTO. Note that this will fail if rustc and clang++
605         # build against different versions of LLVM (eg when rustc is installed via rustup
606         # or Ubuntu packages). This should work fine on Distros which do more involved
607         # packaging than simply shipping the rustup binaries (eg Debian should Just Work
608         # here).
609         LINK_ARG_FLAGS="-C link-arg=-fuse-ld=$LLD"
610         export LDK_CLANG_PATH=$(which $CLANG)
611         if [ "$MACOS_SDK" != "" ]; then
612                 REALLY_PIN_CC
613                 export CLANG="$(pwd)/../deterministic-build-wrappers/clang-lto-link-osx"
614                 for ARG in $CFLAGS_aarch64_apple_darwin; do
615                         MANUAL_LINK_CFLAGS="$MANUAL_LINK_CFLAGS -C link-arg=$ARG"
616                 done
617                 export CFLAGS_aarch64_apple_darwin="$CFLAGS_aarch64_apple_darwin -O3 -fPIC -fembed-bitcode"
618                 RUSTC_BOOTSTRAP=1 RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=apple-a14 -C embed-bitcode=yes -C linker-plugin-lto -C lto -C linker=$CLANG $MANUAL_LINK_CFLAGS $LINK_ARG_FLAGS -C link-arg=-mcpu=apple-a14" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS --offline -v --release --target aarch64-apple-darwin -Zbuild-std=std,panic_abort
619                 if [ "$HOST_OSX" != "true" ]; then
620                         # If we're not on OSX but can build OSX binaries, build the x86_64 OSX release now
621                         MANUAL_LINK_CFLAGS=""
622                         for ARG in $CFLAGS_x86_64_apple_darwin; do
623                                 MANUAL_LINK_CFLAGS="$MANUAL_LINK_CFLAGS -C link-arg=$ARG"
624                         done
625                         export CFLAGS_x86_64_apple_darwin="$CFLAGS_x86_64_apple_darwin -O3 -fPIC -fembed-bitcode"
626                         RUSTC_BOOTSTRAP=1 RUSTFLAGS="$BASE_RUSTFLAGS -C target-cpu=sandybridge -C embed-bitcode=yes -C linker-plugin-lto -C lto -C linker=$CLANG $MANUAL_LINK_CFLAGS $LINK_ARG_FLAGS -C link-arg=-march=sandybridge -C link-arg=-mtune=sandybridge" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS --offline -v --release --target x86_64-apple-darwin -Zbuild-std=std,panic_abort
627                 fi
628         fi
629         # If we're on an M1 don't bother building X86 binaries
630         if [ "$HOST_PLATFORM" != "aarch64-apple-darwin" ]; then
631                 [ "$HOST_OSX" != "true" ] && export CLANG="$LDK_CLANG_PATH"
632                 export CFLAGS_$ENV_TARGET="$BASE_HOST_CFLAGS -O3 -fPIC -fembed-bitcode"
633                 # Rust doesn't recognize CFLAGS changes, so we need to clean build artifacts
634                 cargo clean --release
635                 CARGO_PROFILE_RELEASE_LTO=true RUSTFLAGS="$RUSTFLAGS -C embed-bitcode=yes -C linker-plugin-lto -C lto -C linker=$CLANG $LINK_ARG_FLAGS -C link-arg=-march=sandybridge -C link-arg=-mtune=sandybridge" cargo build $CARGO_BUILD_ARGS -v --release
636
637                 if [ "$2" = "true" ]; then
638                         $CLANGPP $LOCAL_CFLAGS -flto -fuse-ld=$LLD -O2 -c demo.cpp -o demo.o
639                         $CLANGPP $LOCAL_CFLAGS -flto -fuse-ld=$LLD -Wl,--lto-O2 -Wl,-O2 -O2 demo.o target/release/libldk.a -ldl
640                         strip ./a.out
641                         time ./a.out
642                         echo "C++ Bin size and runtime with cross-language LTO:"
643                         ls -lha a.out
644                 fi
645         fi
646 else
647         if [ "$CFLAGS_aarch64_apple_darwin" != "" ]; then
648                 RUSTFLAGS="$BASE_RUSTFLAGS -C embed-bitcode=yes -C lto -C target-cpu=apple-a14" CARGO_PROFILE_RELEASE_LTO=true cargo build $CARGO_BUILD_ARGS -v --release --target aarch64-apple-darwin
649         fi
650         echo "WARNING: Building with cross-language LTO is not avilable without clang-$RUSTC_LLVM_V and lld-$RUSTC_LLVM_V"
651 fi