Swap default-cpu for sandybridge and use it when compiling libsecp
[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 # On reasonable systems, we can use realpath here, but OSX is a diva with 20-year-old software.
13 ORIG_PWD="$(pwd)"
14 cd "$1"
15 LIGHTNING_PATH="$(pwd)"
16 LIGHTNING_GIT="$(git describe --tag --dirty)"
17 cd "$ORIG_PWD"
18
19 # Generate (and reasonably test) C bindings
20
21 # First build the latest c-bindings-gen binary
22 cd c-bindings-gen && cargo build --release && cd ..
23
24 # Then wipe all the existing C bindings (because we're being run in the right directory)
25 # note that we keep the few manually-generated files first:
26 mv lightning-c-bindings/src/c_types/mod.rs ./
27 mv lightning-c-bindings/src/bitcoin ./
28
29 # Before we try to sed the Cargo.toml, generate version define tags
30 # (ignoring any files that we're about to generate)
31
32 git checkout lightning-c-bindings/src
33 git checkout lightning-c-bindings/include
34 BINDINGS_GIT="$(git describe --tag --dirty)"
35 echo -e "#ifndef _LDK_HEADER_VER" > lightning-c-bindings/include/ldk_ver.h
36 echo -e "static inline int _ldk_strncmp(const char *s1, const char *s2, uint64_t n) {" >> lightning-c-bindings/include/ldk_ver.h
37 echo -e "\tif (n && *s1 != *s2) return 1;" >> lightning-c-bindings/include/ldk_ver.h
38 echo -e "\twhile (n && *s1 != 0 && *s2 != 0) {" >> lightning-c-bindings/include/ldk_ver.h
39 echo -e "\t\ts1++; s2++; n--;" >> lightning-c-bindings/include/ldk_ver.h
40 echo -e "\t\tif (n && *s1 != *s2) return 1;" >> lightning-c-bindings/include/ldk_ver.h
41 echo -e "\t}" >> lightning-c-bindings/include/ldk_ver.h
42 echo -e "\treturn 0;" >> lightning-c-bindings/include/ldk_ver.h
43 echo -e "}" >> lightning-c-bindings/include/ldk_ver.h
44 echo -e "" >> lightning-c-bindings/include/ldk_ver.h
45 echo -e "#define _LDK_HEADER_VER \"$LIGHTNING_GIT\"" >> lightning-c-bindings/include/ldk_ver.h
46 echo -e "#define _LDK_C_BINDINGS_HEADER_VER \"$BINDINGS_GIT\"" >> lightning-c-bindings/include/ldk_ver.h
47 echo -e "static inline const char* check_get_ldk_version() {" >> lightning-c-bindings/include/ldk_ver.h
48 echo -e "\tLDKStr bin_ver = _ldk_get_compiled_version();" >> lightning-c-bindings/include/ldk_ver.h
49 echo -e "\tif (_ldk_strncmp(_LDK_HEADER_VER, (const char*)bin_ver.chars, bin_ver.len) != 0) {" >> lightning-c-bindings/include/ldk_ver.h
50 echo -e "\t// Version mismatch, we don't know what we're running!" >> lightning-c-bindings/include/ldk_ver.h
51 echo -e "\t\treturn 0;" >> lightning-c-bindings/include/ldk_ver.h
52 echo -e "\t}" >> lightning-c-bindings/include/ldk_ver.h
53 echo -e "\treturn _LDK_HEADER_VER;" >> lightning-c-bindings/include/ldk_ver.h
54 echo -e "}" >> lightning-c-bindings/include/ldk_ver.h
55 echo -e "static inline const char* check_get_ldk_bindings_version() {" >> lightning-c-bindings/include/ldk_ver.h
56 echo -e "\tLDKStr bin_ver = _ldk_c_bindings_get_compiled_version();" >> lightning-c-bindings/include/ldk_ver.h
57 echo -e "\tif (_ldk_strncmp(_LDK_C_BINDINGS_HEADER_VER, (const char*)bin_ver.chars, bin_ver.len) != 0) {" >> lightning-c-bindings/include/ldk_ver.h
58 echo -e "\t// Version mismatch, we don't know what we're running!" >> lightning-c-bindings/include/ldk_ver.h
59 echo -e "\t\treturn 0;" >> lightning-c-bindings/include/ldk_ver.h
60 echo -e "\t}" >> lightning-c-bindings/include/ldk_ver.h
61 echo -e "\treturn _LDK_C_BINDINGS_HEADER_VER;" >> lightning-c-bindings/include/ldk_ver.h
62 echo -e "}" >> lightning-c-bindings/include/ldk_ver.h
63 echo -e "#endif /* _LDK_HEADER_VER */" >> lightning-c-bindings/include/ldk_ver.h
64
65 rm -rf lightning-c-bindings/src
66
67 mkdir -p lightning-c-bindings/src/{c_types,lightning}
68 mv ./mod.rs lightning-c-bindings/src/c_types/
69 mv ./bitcoin lightning-c-bindings/src/
70
71 # Finally, run the c-bindings-gen binary, building fresh bindings.
72 OUT="$(pwd)/lightning-c-bindings/src"
73 OUT_TEMPL="$(pwd)/lightning-c-bindings/src/c_types/derived.rs"
74 OUT_F="$(pwd)/lightning-c-bindings/include/ldk_rust_types.h"
75 OUT_CPP="$(pwd)/lightning-c-bindings/include/lightningpp.hpp"
76 BIN="$(pwd)/c-bindings-gen/target/release/c-bindings-gen"
77
78 HOST_PLATFORM="$(rustc --version --verbose | grep "host:")"
79
80 function add_crate() {
81         pushd "$LIGHTNING_PATH/$1"
82         RUSTC_BOOTSTRAP=1 cargo rustc --profile=check $3 -- -Zunstable-options --pretty=expanded > /tmp/$1-crate-source.txt
83         popd
84         if [ "$HOST_PLATFORM" = "host: x86_64-apple-darwin" ]; then
85                 sed -i".original" "1i\\
86 pub mod $2 {
87 " /tmp/$1-crate-source.txt
88         else
89                 sed -i "1ipub mod $2 {\n" /tmp/$1-crate-source.txt
90         fi
91         echo "}" >> /tmp/$1-crate-source.txt
92         cat /tmp/$1-crate-source.txt >> /tmp/crate-source.txt
93         rm /tmp/$1-crate-source.txt
94         if [ "$HOST_PLATFORM" = "host: x86_64-apple-darwin" ]; then
95                 # OSX sed is for some reason not compatible with GNU sed
96                 sed -E -i '' 's|#?'$1' = \{ .*|'$1' = \{ path = "'"$LIGHTNING_PATH"'/'$1'" '"$4"' }|' lightning-c-bindings/Cargo.toml
97         else
98                 sed -E -i 's|#?'$1' = \{ .*|'$1' = \{ path = "'"$LIGHTNING_PATH"'/'$1'" '"$4"' }|' lightning-c-bindings/Cargo.toml
99         fi
100 }
101
102 function drop_crate() {
103         if [ "$HOST_PLATFORM" = "host: x86_64-apple-darwin" ]; then
104                 # OSX sed is for some reason not compatible with GNU sed
105                 sed -E -i '' 's|'$1' = \{ (.*)|#'$1' = \{ \1|' lightning-c-bindings/Cargo.toml
106         else
107                 sed -E -i 's|'$1' = \{ (.*)|#'$1' = \{ \1|' lightning-c-bindings/Cargo.toml
108         fi
109 }
110
111 echo > /tmp/crate-source.txt
112 if [ "$2" = "true" ]; then
113         add_crate lightning lightning --features=allow_wallclock_use ', features = ["allow_wallclock_use"]'
114         add_crate "lightning-persister" "lightning_persister"
115         add_crate "lightning-background-processor" "lightning_background_processor"
116 else
117         add_crate lightning lightning
118         drop_crate "lightning-persister"
119         drop_crate "lightning-background-processor"
120 fi
121 add_crate "lightning-invoice" "lightning_invoice"
122
123 cat /tmp/crate-source.txt | RUST_BACKTRACE=1 "$BIN" "$OUT/" "$OUT_TEMPL" "$OUT_F" "$OUT_CPP"
124
125 echo -e '#[no_mangle]' >> lightning-c-bindings/src/version.rs
126 echo -e 'pub extern "C" fn _ldk_get_compiled_version() -> crate::c_types::Str {' >> lightning-c-bindings/src/version.rs
127 echo -e '\t"'"$LIGHTNING_GIT"'".into()' >> lightning-c-bindings/src/version.rs
128 echo -e '}' >> lightning-c-bindings/src/version.rs
129 echo -e '#[no_mangle]' >> lightning-c-bindings/src/version.rs
130 echo -e 'pub extern "C" fn _ldk_c_bindings_get_compiled_version() -> crate::c_types::Str {' >> lightning-c-bindings/src/version.rs
131 echo -e '\t"'"$BINDINGS_GIT"'".into()' >> lightning-c-bindings/src/version.rs
132 echo -e '}' >> lightning-c-bindings/src/version.rs
133
134 # Set path to include our rustc wrapper as well as cbindgen
135 PATH="$(pwd)/deterministic-build-wrappers:$PATH:~/.cargo/bin"
136 # Now cd to lightning-c-bindings, build the generated bindings, and call cbindgen to build a C header file
137 cd lightning-c-bindings
138
139 # Remap paths so that our builds are deterministic
140 export RUSTFLAGS="--remap-path-prefix $LIGHTNING_PATH=rust-lightning --remap-path-prefix $(pwd)=ldk-c-bindings --remap-path-prefix $HOME/.cargo= -C target-cpu=sandybridge"
141
142 # If the C compiler supports it, also set -ffile-prefix-map
143 echo "int main() {}" > genbindings_path_map_test_file.c
144 clang -o /dev/null -ffile-prefix-map=$HOME/.cargo= genbindings_path_map_test_file.c > /dev/null 2>&1 &&
145 # Now that we've done our last non-LTO build, turn on LTO in CFLAGS as well
146 export BASE_CFLAGS="-ffile-prefix-map=$HOME/.cargo="
147 ENV_TARGET=$(rustc --version --verbose | grep host | awk '{ print $2 }' | sed 's/-/_/g')
148 export CFLAGS_$ENV_TARGET="$BASE_CFLAGS -march=sandybridge -mcpu=sandybridge -mtune=sandybridge"
149 rm genbindings_path_map_test_file.c
150
151 cargo build
152 cbindgen -v --config cbindgen.toml -o include/lightning.h >/dev/null 2>&1
153
154 # cbindgen is relatively braindead when exporting typedefs -
155 # it happily exports all our typedefs for private types, even with the
156 # generics we specified in C mode! So we drop all those types manually here.
157 if [ "$HOST_PLATFORM" = "host: x86_64-apple-darwin" ]; then
158         # OSX sed is for some reason not compatible with GNU sed
159         sed -i '' 's/typedef LDKnative.*Import.*LDKnative.*;//g' include/lightning.h
160
161         # stdlib.h doesn't exist in clang's wasm sysroot, and cbindgen
162         # doesn't actually use it anyway, so drop the import.
163         sed -i '' 's/#include <stdlib.h>/#include <ldk_rust_types.h>/g' include/lightning.h
164 else
165         sed -i 's/typedef LDKnative.*Import.*LDKnative.*;//g' include/lightning.h
166
167         # stdlib.h doesn't exist in clang's wasm sysroot, and cbindgen
168         # doesn't actually use it anyway, so drop the import.
169         sed -i 's/#include <stdlib.h>/#include <ldk_rust_types.h>/g' include/lightning.h
170 fi
171
172 # Finally, sanity-check the generated C and C++ bindings with demo apps:
173
174 LOCAL_CFLAGS="-Wall -Wno-nullability-completeness -pthread -Iinclude/"
175
176 # Naively run the C demo app:
177 gcc $LOCAL_CFLAGS -Wall -g -pthread demo.c target/debug/libldk.a -ldl
178 ./a.out
179
180 # And run the C++ demo app in valgrind to test memory model correctness and lack of leaks.
181 g++ $LOCAL_CFLAGS -std=c++11 -Wall -g -pthread demo.cpp -Ltarget/debug/ -lldk -ldl
182 if [ -x "`which valgrind`" ]; then
183         LD_LIBRARY_PATH=target/debug/ valgrind --error-exitcode=4 --memcheck:leak-check=full --show-leak-kinds=all ./a.out
184         echo
185 else
186         echo "WARNING: Please install valgrind for more testing"
187 fi
188
189 # Test a statically-linked C++ version, tracking the resulting binary size and runtime
190 # across debug, LTO, and cross-language LTO builds (using the same compiler each time).
191 clang++ $LOCAL_CFLAGS -std=c++11 demo.cpp target/debug/libldk.a -ldl
192 strip ./a.out
193 echo " C++ Bin size and runtime w/o optimization:"
194 ls -lha a.out
195 time ./a.out > /dev/null
196
197 # Then, check with memory sanitizer, if we're on Linux and have rustc nightly
198 if [ "$HOST_PLATFORM" = "host: x86_64-unknown-linux-gnu" ]; then
199         if cargo +nightly --version >/dev/null 2>&1; then
200                 LLVM_V=$(rustc +nightly --version --verbose | grep "LLVM version" | awk '{ print substr($3, 0, 2); }')
201                 if [ -x "$(which clang-$LLVM_V)" ]; then
202                         cargo +nightly clean
203                         cargo +nightly rustc -Zbuild-std --target x86_64-unknown-linux-gnu -v -- -Zsanitizer=memory -Zsanitizer-memory-track-origins -Cforce-frame-pointers=yes
204                         mv target/x86_64-unknown-linux-gnu/debug/libldk.* target/debug/
205
206                         # Sadly, std doesn't seem to compile into something that is memsan-safe as of Aug 2020,
207                         # so we'll always fail, not to mention we may be linking against git rustc LLVM which
208                         # may differ from clang-llvm, so just allow everything here to fail.
209                         set +e
210
211                         # First the C demo app...
212                         clang-$LLVM_V $LOCAL_CFLAGS -fsanitize=memory -fsanitize-memory-track-origins -g demo.c target/debug/libldk.a -ldl
213                         ./a.out
214
215                         # ...then the C++ demo app
216                         clang++-$LLVM_V $LOCAL_CFLAGS -std=c++11 -fsanitize=memory -fsanitize-memory-track-origins -g demo.cpp target/debug/libldk.a -ldl
217                         ./a.out >/dev/null
218
219                         # restore exit-on-failure
220                         set -e
221                 else
222                         echo "WARNING: Can't use memory sanitizer without clang-$LLVM_V"
223                 fi
224         else
225                 echo "WARNING: Can't use memory sanitizer without rustc nightly"
226         fi
227 else
228         echo "WARNING: Can't use memory sanitizer on non-Linux, non-x86 platforms"
229 fi
230
231 RUSTC_LLVM_V=$(rustc --version --verbose | grep "LLVM version" | awk '{ print substr($3, 0, 2); }' | tr -d '.')
232
233 if [ "$HOST_PLATFORM" = "host: x86_64-apple-darwin" ]; then
234         # Apple is special, as always, and decided that they must ensure that there is no way to identify
235         # the LLVM version used. Why? Just to make your life hard.
236         # This list is taken from https://en.wikipedia.org/wiki/Xcode
237         APPLE_CLANG_V=$(clang --version | head -n1 | awk '{ print $4 }')
238         if [ "$APPLE_CLANG_V" = "10.0.0" ]; then
239                 CLANG_LLVM_V="6"
240         elif [ "$APPLE_CLANG_V" = "10.0.1" ]; then
241                 CLANG_LLVM_V="7"
242         elif [ "$APPLE_CLANG_V" = "11.0.0" ]; then
243                 CLANG_LLVM_V="8"
244         elif [ "$APPLE_CLANG_V" = "11.0.3" ]; then
245                 CLANG_LLVM_V="9"
246         elif [ "$APPLE_CLANG_V" = "12.0.0" ]; then
247                 CLANG_LLVM_V="10"
248         else
249                 echo "WARNING: Unable to identify Apple clang LLVM version"
250                 CLANG_LLVM_V="0"
251         fi
252 else
253         CLANG_LLVM_V=$(clang --version | head -n1 | awk '{ print substr($4, 0, 2); }' | tr -d '.')
254 fi
255
256 if [ "$CLANG_LLVM_V" = "$RUSTC_LLVM_V" ]; then
257         CLANG=clang
258         CLANGPP=clang++
259 elif [ "$(which clang-$RUSTC_LLVM_V)" != "" ]; then
260         CLANG="$(which clang-$RUSTC_LLVM_V)"
261         CLANGPP="$(which clang++-$RUSTC_LLVM_V)"
262 fi
263
264 if [ "$CLANG" != "" -a "$CLANGPP" = "" ]; then
265         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"
266         echo "You should create a symlink called clang++-$RUSTC_LLVM_V pointing to $CLANG in $(dirname $CLANG)"
267 fi
268
269 # Finally, if we're on OSX or on Linux, build the final debug binary with address sanitizer (and leave it there)
270 if [ "$HOST_PLATFORM" = "host: x86_64-unknown-linux-gnu" -o "$HOST_PLATFORM" = "host: x86_64-apple-darwin" ]; then
271         if [ "$CLANGPP" != "" ]; then
272                 if [ "$HOST_PLATFORM" = "host: x86_64-apple-darwin" ]; then
273                         # OSX sed is for some reason not compatible with GNU sed
274                         sed -i .bk 's/,"cdylib"]/]/g' Cargo.toml
275                 else
276                         sed -i.bk 's/,"cdylib"]/]/g' Cargo.toml
277                 fi
278                 RUSTC_BOOTSTRAP=1 cargo rustc -v -- -Zsanitizer=address -Cforce-frame-pointers=yes || ( mv Cargo.toml.bk Cargo.toml; exit 1)
279                 mv Cargo.toml.bk Cargo.toml
280
281                 # First the C demo app...
282                 $CLANG $LOCAL_CFLAGS -fsanitize=address -g demo.c target/debug/libldk.a -ldl
283                 ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' ./a.out
284
285                 # ...then the C++ demo app
286                 $CLANGPP $LOCAL_CFLAGS -std=c++11 -fsanitize=address -g demo.cpp target/debug/libldk.a -ldl
287                 ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' ./a.out >/dev/null
288         else
289                 echo "WARNING: Please install clang-$RUSTC_LLVM_V and clang++-$RUSTC_LLVM_V to build with address sanitizer"
290         fi
291 else
292         echo "WARNING: Can't use address sanitizer on non-Linux, non-OSX non-x86 platforms"
293 fi
294
295 # Now build with LTO on on both C++ and rust, but without cross-language LTO:
296 # Clear stale release build artifacts from previous runs
297 cargo clean --release
298 CARGO_PROFILE_RELEASE_LTO=true cargo rustc -v --release -- -C lto
299 clang++ $LOCAL_CFLAGS -std=c++11 -flto -O2 demo.cpp target/release/libldk.a -ldl
300
301 strip ./a.out
302 echo "C++ Bin size and runtime with only RL (LTO) optimized:"
303 ls -lha a.out
304 time ./a.out > /dev/null
305
306 if [ "$HOST_PLATFORM" != "host: x86_64-apple-darwin" -a "$CLANGPP" != "" ]; then
307         # If we can use cross-language LTO, use it for building C dependencies (i.e. libsecp256k1) as well
308         export CC="$CLANG"
309         # The cc-rs crate tries to force -fdata-sections and -ffunction-sections on, which
310         # breaks -fembed-bitcode, so we turn off cc-rs' default flags and specify exactly
311         # what we want here.
312         export CFLAGS_$ENV_TARGET="$BASE_CFLAGS -fPIC -fembed-bitcode -march=sandybridge"
313         export CRATE_CC_NO_DEFAULTS=true
314 fi
315
316 if [ "$2" = "false" -a "$(rustc --print target-list | grep wasm32-wasi)" != "" ]; then
317         # Test to see if clang supports wasm32 as a target (which is needed to build rust-secp256k1)
318         echo "int main() {}" > genbindings_wasm_test_file.c
319         if clang -nostdlib -o /dev/null --target=wasm32-wasi -Wl,--no-entry genbindings_wasm_test_file.c > /dev/null 2>&1; then
320                 # And if it does, build a WASM binary without capturing errors
321                 export CFLAGS_wasm32_wasi="$BASE_CFLAGS -target wasm32"
322                 cargo rustc -v --target=wasm32-wasi
323                 export CFLAGS_wasm32_wasi="$BASE_CFLAGS -target wasm32 -Os"
324                 CARGO_PROFILE_RELEASE_LTO=true cargo rustc -v --release --target=wasm32-wasi -- -C embed-bitcode=yes -C opt-level=s -C linker-plugin-lto -C lto
325         else
326                 echo "Cannot build WASM lib as clang does not seem to support the wasm32-wasi target"
327         fi
328         rm genbindings_wasm_test_file.c
329 fi
330
331 if [ "$HOST_PLATFORM" != "host: x86_64-apple-darwin" -a "$CLANGPP" != "" ]; then
332         # Finally, test cross-language LTO. Note that this will fail if rustc and clang++
333         # build against different versions of LLVM (eg when rustc is installed via rustup
334         # or Ubuntu packages). This should work fine on Distros which do more involved
335         # packaging than simply shipping the rustup binaries (eg Debian should Just Work
336         # here).
337         export CFLAGS_$ENV_TARGET="$BASE_CFLAGS -O3 -fPIC -fembed-bitcode -march=sandybridge"
338         # Rust doesn't recognize CFLAGS changes, so we need to clean build artifacts
339         cargo clean --release
340         CARGO_PROFILE_RELEASE_LTO=true cargo rustc -v --release -- -C linker-plugin-lto -C lto -C link-arg=-fuse-ld=lld
341         $CLANGPP $LOCAL_CFLAGS -flto -fuse-ld=lld -O2 demo.cpp target/release/libldk.a -ldl
342         strip ./a.out
343         echo "C++ Bin size and runtime with cross-language LTO:"
344         ls -lha a.out
345         time ./a.out > /dev/null
346 else
347         echo "WARNING: Building with cross-language LTO is not avilable on OSX or without clang-$RUSTC_LLVM_V"
348 fi