1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-20 14:59:06 +00:00
trezor-firmware/crypto/Makefile

188 lines
6.2 KiB
Makefile
Raw Normal View History

# CLANG_VERSION is empty if the compiler is not clang-based
CLANG_VERSION = $(shell $(CC) --version | sed -nr 's/^.*clang version ([0-9.]+).*$$/\1/p')
CLANG_VERSION_MAJOR = $(shell echo $(CLANG_VERSION) | cut -f1 -d.)
# determine specific version ranges
ifneq ($(CLANG_VERSION),)
$(if $(shell [ $(CLANG_VERSION_MAJOR) -ge 13 ] && echo "OK"), \
$(eval CLANG_AT_LEAST_13 := true), \
$(eval CLANG_AT_LEAST_13 := false))
endif
ifeq ($(FUZZER),1)
CC ?= clang
LD ?= $(CC)
SANFLAGS += -fsanitize=fuzzer
# only clang versions >= 13 support this feature
ifeq ($(CLANG_AT_LEAST_13),true)
$(info "info: using -fsanitize-ignorelist")
SANFLAGS += -fsanitize-ignorelist=fuzzer/sanitizer_ignorelist.txt
else
$(info "info: not using -fsanitize-ignorelist")
endif
# TODO is there a better solution, for example by disabling a specific optimization technique?
# there is a clang optimization issue in relation with the blake2 code at -fsanitize=undefined
$(warning "warning: disabling optimization on blake2 code as workaround")
blake2b.o: OPTFLAGS += -O0
blake2s.o: OPTFLAGS += -O0
else ifeq ($(ADDRESS_SANITIZER),1)
SANFLAGS += -fsanitize=address,undefined
endif
CC ?= cc
2014-07-07 19:34:54 +00:00
2017-04-01 23:07:00 +00:00
OPTFLAGS ?= -O3 -g
2014-07-07 19:34:54 +00:00
CFLAGS += $(OPTFLAGS) \
$(SANFLAGS) \
2016-05-12 14:16:01 +00:00
-std=gnu99 \
2014-07-07 19:34:54 +00:00
-W \
-Wall \
-Wextra \
-Wimplicit-function-declaration \
-Wredundant-decls \
-Wstrict-prototypes \
-Wundef \
2018-04-04 20:13:16 +00:00
-Wshadow \
2014-07-07 19:34:54 +00:00
-Wpointer-arith \
-Wformat \
-Wreturn-type \
-Wsign-compare \
-Wmultichar \
-Wformat-nonliteral \
-Winit-self \
-Wuninitialized \
-Wformat-security \
-Wno-missing-braces \
2018-04-04 20:13:16 +00:00
-Werror
2014-07-07 19:34:54 +00:00
ZKP_CFLAGS = \
-DECMULT_GEN_PREC_BITS=4 \
-DECMULT_WINDOW_SIZE=8 \
-DENABLE_MODULE_GENERATOR \
-DENABLE_MODULE_RECOVERY \
-DENABLE_MODULE_SCHNORRSIG \
-DENABLE_MODULE_EXTRAKEYS
ZKP_PATH = ../vendor/secp256k1-zkp
# this is specific for 64-bit builds
CFLAGS += -DSECP256K1_CONTEXT_SIZE=208
2018-07-11 19:26:07 +00:00
VALGRIND ?= 1
ifeq ($(VALGRIND),1)
CFLAGS += -DVALGRIND
endif
2018-07-11 19:26:07 +00:00
2017-05-11 11:27:34 +00:00
CFLAGS += -I.
CFLAGS += -I..
CFLAGS += -DUSE_ETHEREUM=1
2018-07-31 12:20:18 +00:00
CFLAGS += -DUSE_KECCAK=1
CFLAGS += -DUSE_MONERO=1
2018-07-31 12:20:18 +00:00
CFLAGS += -DUSE_NEM=1
2018-06-19 09:50:59 +00:00
CFLAGS += -DUSE_CARDANO=1
2018-04-03 15:58:19 +00:00
CFLAGS += $(shell pkg-config --cflags openssl)
2014-07-07 19:34:54 +00:00
# disable certain optimizations and features when small footprint is required
2014-07-03 14:59:41 +00:00
ifdef SMALL
CFLAGS += -DUSE_PRECOMPUTED_CP=0
2014-07-03 14:59:41 +00:00
endif
2014-07-07 19:34:54 +00:00
SRCS = bignum.c ecdsa.c curves.c secp256k1.c nist256p1.c rand.c hmac.c bip32.c bip39.c bip39_english.c pbkdf2.c base58.c base32.c
2016-10-10 09:22:03 +00:00
SRCS += address.c
2016-05-16 12:43:09 +00:00
SRCS += script.c
SRCS += ripemd160.c
SRCS += sha2.c
2016-04-26 09:09:29 +00:00
SRCS += sha3.c
2017-12-09 17:59:20 +00:00
SRCS += hasher.c
2017-05-08 14:46:53 +00:00
SRCS += aes/aescrypt.c aes/aeskey.c aes/aestab.c aes/aes_modes.c
SRCS += ed25519-donna/curve25519-donna-32bit.c ed25519-donna/curve25519-donna-helpers.c ed25519-donna/modm-donna-32bit.c
SRCS += ed25519-donna/ed25519-donna-basepoint-table.c ed25519-donna/ed25519-donna-32bit-tables.c ed25519-donna/ed25519-donna-impl-base.c
SRCS += ed25519-donna/ed25519.c ed25519-donna/curve25519-donna-scalarmult-base.c ed25519-donna/ed25519-sha3.c ed25519-donna/ed25519-keccak.c
2018-07-05 00:10:34 +00:00
SRCS += monero/base58.c
SRCS += monero/serialize.c
SRCS += monero/xmr.c
2017-12-09 22:51:16 +00:00
SRCS += blake256.c
2017-02-28 17:14:54 +00:00
SRCS += blake2b.c blake2s.c
2020-02-29 17:08:19 +00:00
SRCS += chacha_drbg.c
2018-03-11 04:35:45 +00:00
SRCS += groestl.c
2017-05-11 11:27:34 +00:00
SRCS += chacha20poly1305/chacha20poly1305.c chacha20poly1305/chacha_merged.c chacha20poly1305/poly1305-donna.c chacha20poly1305/rfc7539.c
2017-08-12 11:43:49 +00:00
SRCS += rc4.c
2017-05-19 17:17:24 +00:00
SRCS += nem.c
SRCS += segwit_addr.c cash_addr.c
SRCS += memzero.c
SRCS += shamir.c
SRCS += hmac_drbg.c
SRCS += rfc6979.c
2019-06-23 10:18:24 +00:00
SRCS += slip39.c
SRCS += zkp_context.c
SRCS += zkp_ecdsa.c
SRCS += zkp_bip340.c
SRCS += cardano.c
OBJS = $(SRCS:.c=.o)
OBJS += secp256k1-zkp.o
OBJS += precomputed_ecmult.o
OBJS += precomputed_ecmult_gen.o
2013-08-18 15:30:23 +00:00
TESTLIBS = $(shell pkg-config --libs check) -lpthread -lm
2018-04-03 15:58:19 +00:00
TESTSSLLIBS = $(shell pkg-config --libs openssl)
2018-04-05 11:26:59 +00:00
all: tools tests
2013-08-17 12:20:15 +00:00
%.o: %.c %.h options.h
2013-08-17 12:20:15 +00:00
$(CC) $(CFLAGS) -o $@ -c $<
2018-04-05 11:26:59 +00:00
tests: tests/test_check tests/test_openssl tests/test_speed tests/libtrezor-crypto.so tests/aestst
2018-04-05 11:26:59 +00:00
tests/aestst: aes/aestst.o aes/aescrypt.o aes/aeskey.o aes/aestab.o
$(CC) $(CFLAGS) $^ -o $@
2017-08-14 12:25:35 +00:00
2018-07-05 00:10:34 +00:00
tests/test_check.o: tests/test_check_cardano.h tests/test_check_monero.h tests/test_check_cashaddr.h tests/test_check_segwit.h
2013-09-11 17:02:22 +00:00
2018-04-05 11:26:59 +00:00
tests/test_check: tests/test_check.o $(OBJS)
$(CC) $(CFLAGS) tests/test_check.o $(OBJS) $(TESTLIBS) -o tests/test_check
2018-04-05 11:26:59 +00:00
tests/test_speed: tests/test_speed.o $(OBJS)
$(CC) $(CFLAGS) tests/test_speed.o $(OBJS) -o tests/test_speed
2013-08-17 12:20:15 +00:00
2018-04-05 11:26:59 +00:00
tests/test_openssl: tests/test_openssl.o $(OBJS)
$(CC) $(CFLAGS) tests/test_openssl.o $(OBJS) $(TESTSSLLIBS) -o tests/test_openssl
2018-04-05 11:26:59 +00:00
tests/libtrezor-crypto.so: $(SRCS) secp256k1-zkp.o precomputed_ecmult.o precomputed_ecmult_gen.o
$(CC) $(CFLAGS) -DAES_128 -DAES_192 -fPIC -shared $(SRCS) secp256k1-zkp.o precomputed_ecmult.o precomputed_ecmult_gen.o -o tests/libtrezor-crypto.so
2016-04-28 12:34:36 +00:00
tools: tools/xpubaddrgen tools/mktable tools/bip39bruteforce
tools/xpubaddrgen: tools/xpubaddrgen.o $(OBJS)
$(CC) $(CFLAGS) tools/xpubaddrgen.o $(OBJS) -o tools/xpubaddrgen
2016-04-28 12:34:36 +00:00
tools/mktable: tools/mktable.o $(OBJS)
$(CC) $(CFLAGS) tools/mktable.o $(OBJS) -o tools/mktable
2016-04-28 12:34:36 +00:00
tools/bip39bruteforce: tools/bip39bruteforce.o $(OBJS)
$(CC) $(CFLAGS) tools/bip39bruteforce.o $(OBJS) -o tools/bip39bruteforce
2016-04-28 12:34:36 +00:00
fuzzer: fuzzer/fuzzer.o $(OBJS)
$(CC) $(CFLAGS) fuzzer/fuzzer.o $(OBJS) -o fuzzer/fuzzer
precomputed_ecmult.o:
$(CC) $(CFLAGS) -Wno-unused-function $(ZKP_CFLAGS) -fPIC -c $(ZKP_PATH)/src/precomputed_ecmult.c -o precomputed_ecmult.o
precomputed_ecmult_gen.o:
$(CC) $(CFLAGS) -Wno-unused-function $(ZKP_CFLAGS) -fPIC -c $(ZKP_PATH)/src/precomputed_ecmult_gen.c -o precomputed_ecmult_gen.o
secp256k1-zkp.o:
$(CC) $(CFLAGS) -Wno-unused-function $(ZKP_CFLAGS) -fPIC -I$(ZKP_PATH) -I$(ZKP_PATH)/src -c $(ZKP_PATH)/src/secp256k1.c -o secp256k1-zkp.o
2013-08-17 12:20:15 +00:00
clean:
2020-12-16 23:07:41 +00:00
rm -f *.o aes/*.o chacha20poly1305/*.o ed25519-donna/*.o monero/*.o
rm -f tests/*.o tests/test_check tests/test_speed tests/test_openssl tests/libtrezor-crypto.so tests/aestst
2016-04-28 12:34:36 +00:00
rm -f tools/*.o tools/xpubaddrgen tools/mktable tools/bip39bruteforce
rm -f fuzzer/*.o fuzzer/fuzzer
rm -f secp256k1-zkp.o precomputed_ecmult.o precomputed_ecmult_gen.o
clean-fuzzer: clean
rm -f crash-* fuzz-*.log slow-unit-* timeout-*