Skip to content

Commit c2ab828

Browse files
fanquakeUdjinM6
authored andcommitted
Merge bitcoin#19944: Update secp256k1 subtree (including BIP340 support)
b9c1a76 Squashed 'src/secp256k1/' changes from 2ed54da..8ab24e8 (Pieter Wuille) Pull request description: This updates our src/secp256k1 subtree to the latest libsecp256k1 upstream version. As it adds BIP340 support (see bitcoin-core/secp256k1#558), this is a prerequisite for bitcoin#17977. In particular, it contains: * A few generic library improvements * Support for x-only public keys as used by BIP340. * Support for "key pair" objects, making signing more efficient by using a precomputed public key. * Signing support for BIP340 Schnorr (single-party) signatures. * Verification support for BIP340 Schnorr signatures. * Support for verifying tweaked x-only keys, as used by BIP341's Taproot construction. Things that are not included: * MuSig, nor any kind of multisignatures, threshold signatures, ... on top. * Batch verification. * Support for variable-length messages in BIP340 (which are still being discussed, but won't affect BIP341, or Bitcoin Core). * A few more generic improvements that are still in the pipeline, including faster modular inversions. ACKs for top commit: instagibbs: ACK 894fb33 fanquake: ACK 894fb33. Any Valgrind concerns will be addressed upstream, see discussion in bitcoin-core/secp256k1#813, and if necessary, can be pulled into our tree prior to the 0.21.0 branch off. They are not a blocker for merging this PR in it's current state. benthecarman: ACK `894fb33` Tree-SHA512: 6dc992f4477069b7fbd223316f1be955750923be1479c38adad2312649fdca1f316edb375c42ef9d97cea2407caaef49fb8c93abd6c037fe1a522910cbbc2479
1 parent 9d36ba6 commit c2ab828

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2928
-284
lines changed

src/secp256k1/.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
bench_inv
22
bench_ecdh
33
bench_ecmult
4+
bench_schnorrsig
45
bench_sign
56
bench_verify
6-
bench_schnorr_verify
77
bench_recover
88
bench_internal
99
tests
@@ -31,6 +31,8 @@ libtool
3131
*.lo
3232
*.o
3333
*~
34+
*.log
35+
*.trs
3436
src/libsecp256k1-config.h
3537
src/libsecp256k1-config.h.in
3638
src/ecmult_static_context.h

src/secp256k1/.travis.yml

+15-11
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ compiler:
1717
- gcc
1818
env:
1919
global:
20-
- FIELD=auto BIGNUM=auto SCALAR=auto ENDOMORPHISM=no STATICPRECOMPUTATION=yes ECMULTGENPRECISION=auto ASM=no BUILD=check EXTRAFLAGS= HOST= ECDH=no RECOVERY=no EXPERIMENTAL=no CTIMETEST=yes BENCH=yes ITERS=2
20+
- WIDEMUL=auto BIGNUM=auto ENDOMORPHISM=no STATICPRECOMPUTATION=yes ECMULTGENPRECISION=auto ASM=no BUILD=check EXTRAFLAGS= HOST= ECDH=no RECOVERY=no SCHNORRSIG=no EXPERIMENTAL=no CTIMETEST=yes BENCH=yes ITERS=2
2121
matrix:
22-
- SCALAR=32bit RECOVERY=yes
23-
- SCALAR=32bit FIELD=32bit ECDH=yes EXPERIMENTAL=yes
24-
- SCALAR=64bit
25-
- FIELD=64bit RECOVERY=yes
26-
- FIELD=64bit ENDOMORPHISM=yes
27-
- FIELD=64bit ENDOMORPHISM=yes ECDH=yes EXPERIMENTAL=yes
28-
- FIELD=64bit ASM=x86_64
29-
- FIELD=64bit ENDOMORPHISM=yes ASM=x86_64
30-
- FIELD=32bit ENDOMORPHISM=yes
22+
- WIDEMUL=int64 RECOVERY=yes
23+
- WIDEMUL=int64 ECDH=yes EXPERIMENTAL=yes SCHNORRSIG=yes
24+
- WIDEMUL=int64 ENDOMORPHISM=yes
25+
- WIDEMUL=int128
26+
- WIDEMUL=int128 RECOVERY=yes EXPERIMENTAL=yes SCHNORRSIG=yes
27+
- WIDEMUL=int128 ENDOMORPHISM=yes
28+
- WIDEMUL=int128 ENDOMORPHISM=yes ECDH=yes EXPERIMENTAL=yes SCHNORRSIG=yes
29+
- WIDEMUL=int128 ASM=x86_64
30+
- WIDEMUL=int128 ENDOMORPHISM=yes ASM=x86_64
3131
- BIGNUM=no
32-
- BIGNUM=no ENDOMORPHISM=yes RECOVERY=yes EXPERIMENTAL=yes
32+
- BIGNUM=no ENDOMORPHISM=yes RECOVERY=yes EXPERIMENTAL=yes SCHNORRSIG=yes
3333
- BIGNUM=no STATICPRECOMPUTATION=no
3434
- BUILD=distcheck CTIMETEST= BENCH=
3535
- CPPFLAGS=-DDETERMINISTIC
@@ -83,6 +83,10 @@ matrix:
8383
- valgrind
8484
- libtool-bin
8585
- libc6-dbg:i386
86+
# S390x build (big endian system)
87+
- compiler: gcc
88+
env: HOST=s390x-unknown-linux-gnu ECDH=yes RECOVERY=yes EXPERIMENTAL=yes CTIMETEST=
89+
arch: s390x
8690

8791
# We use this to install macOS dependencies instead of the built in `homebrew` plugin,
8892
# because in xcode earlier than 11 they have a bug requiring updating the system which overall takes ~8 minutes.

src/secp256k1/Makefile.am

+11-1
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ noinst_HEADERS += src/field_5x52.h
3434
noinst_HEADERS += src/field_5x52_impl.h
3535
noinst_HEADERS += src/field_5x52_int128_impl.h
3636
noinst_HEADERS += src/field_5x52_asm_impl.h
37+
noinst_HEADERS += src/assumptions.h
3738
noinst_HEADERS += src/util.h
3839
noinst_HEADERS += src/scratch.h
3940
noinst_HEADERS += src/scratch_impl.h
41+
noinst_HEADERS += src/selftest.h
4042
noinst_HEADERS += src/testrand.h
4143
noinst_HEADERS += src/testrand_impl.h
4244
noinst_HEADERS += src/hash.h
@@ -99,7 +101,7 @@ if VALGRIND_ENABLED
99101
tests_CPPFLAGS += -DVALGRIND
100102
noinst_PROGRAMS += valgrind_ctime_test
101103
valgrind_ctime_test_SOURCES = src/valgrind_ctime_test.c
102-
valgrind_ctime_test_LDADD = libsecp256k1.la $(SECP_LIBS) $(SECP_TEST_LIBS) $(COMMON_LIB)
104+
valgrind_ctime_test_LDADD = libsecp256k1.la $(SECP_LIBS) $(SECP_LIBS) $(COMMON_LIB)
103105
endif
104106
if !ENABLE_COVERAGE
105107
tests_CPPFLAGS += -DVERIFY
@@ -152,3 +154,11 @@ endif
152154
if ENABLE_MODULE_RECOVERY
153155
include src/modules/recovery/Makefile.am.include
154156
endif
157+
158+
if ENABLE_MODULE_EXTRAKEYS
159+
include src/modules/extrakeys/Makefile.am.include
160+
endif
161+
162+
if ENABLE_MODULE_SCHNORRSIG
163+
include src/modules/schnorrsig/Makefile.am.include
164+
endif

src/secp256k1/TODO

-3
This file was deleted.

src/secp256k1/build-aux/m4/bitcoin_secp.m4

-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
dnl libsecp25k1 helper checks
2-
AC_DEFUN([SECP_INT128_CHECK],[
3-
has_int128=$ac_cv_type___int128
4-
])
5-
61
dnl escape "$0x" below using the m4 quadrigaph @S|@, and escape it again with a \ for the shell.
72
AC_DEFUN([SECP_64BIT_ASM_CHECK],[
83
AC_MSG_CHECKING(for x86_64 assembly availability)

src/secp256k1/configure.ac

+48-87
Original file line numberDiff line numberDiff line change
@@ -136,20 +136,28 @@ AC_ARG_ENABLE(module_recovery,
136136
[enable_module_recovery=$enableval],
137137
[enable_module_recovery=no])
138138

139+
AC_ARG_ENABLE(module_extrakeys,
140+
AS_HELP_STRING([--enable-module-extrakeys],[enable extrakeys module (experimental)]),
141+
[enable_module_extrakeys=$enableval],
142+
[enable_module_extrakeys=no])
143+
144+
AC_ARG_ENABLE(module_schnorrsig,
145+
AS_HELP_STRING([--enable-module-schnorrsig],[enable schnorrsig module (experimental)]),
146+
[enable_module_schnorrsig=$enableval],
147+
[enable_module_schnorrsig=no])
148+
139149
AC_ARG_ENABLE(external_default_callbacks,
140150
AS_HELP_STRING([--enable-external-default-callbacks],[enable external default callback functions [default=no]]),
141151
[use_external_default_callbacks=$enableval],
142152
[use_external_default_callbacks=no])
143153

144-
AC_ARG_WITH([field], [AS_HELP_STRING([--with-field=64bit|32bit|auto],
145-
[finite field implementation to use [default=auto]])],[req_field=$withval], [req_field=auto])
154+
dnl Test-only override of the (autodetected by the C code) "widemul" setting.
155+
dnl Legal values are int64 (for [u]int64_t), int128 (for [unsigned] __int128), and auto (the default).
156+
AC_ARG_WITH([test-override-wide-multiply], [] ,[set_widemul=$withval], [set_widemul=auto])
146157

147158
AC_ARG_WITH([bignum], [AS_HELP_STRING([--with-bignum=gmp|no|auto],
148159
[bignum implementation to use [default=auto]])],[req_bignum=$withval], [req_bignum=auto])
149160

150-
AC_ARG_WITH([scalar], [AS_HELP_STRING([--with-scalar=64bit|32bit|auto],
151-
[scalar implementation to use [default=auto]])],[req_scalar=$withval], [req_scalar=auto])
152-
153161
AC_ARG_WITH([asm], [AS_HELP_STRING([--with-asm=x86_64|arm|no|auto],
154162
[assembly optimizations to use (experimental: arm) [default=auto]])],[req_asm=$withval], [req_asm=auto])
155163

@@ -170,8 +178,6 @@ AC_ARG_WITH([ecmult-gen-precision], [AS_HELP_STRING([--with-ecmult-gen-precision
170178
)],
171179
[req_ecmult_gen_precision=$withval], [req_ecmult_gen_precision=auto])
172180

173-
AC_CHECK_TYPES([__int128])
174-
175181
AC_CHECK_HEADER([valgrind/memcheck.h], [enable_valgrind=yes], [enable_valgrind=no], [])
176182
AM_CONDITIONAL([VALGRIND_ENABLED],[test "$enable_valgrind" = "yes"])
177183

@@ -265,63 +271,6 @@ else
265271
esac
266272
fi
267273

268-
if test x"$req_field" = x"auto"; then
269-
if test x"set_asm" = x"x86_64"; then
270-
set_field=64bit
271-
fi
272-
if test x"$set_field" = x; then
273-
SECP_INT128_CHECK
274-
if test x"$has_int128" = x"yes"; then
275-
set_field=64bit
276-
fi
277-
fi
278-
if test x"$set_field" = x; then
279-
set_field=32bit
280-
fi
281-
else
282-
set_field=$req_field
283-
case $set_field in
284-
64bit)
285-
if test x"$set_asm" != x"x86_64"; then
286-
SECP_INT128_CHECK
287-
if test x"$has_int128" != x"yes"; then
288-
AC_MSG_ERROR([64bit field explicitly requested but neither __int128 support or x86_64 assembly available])
289-
fi
290-
fi
291-
;;
292-
32bit)
293-
;;
294-
*)
295-
AC_MSG_ERROR([invalid field implementation selection])
296-
;;
297-
esac
298-
fi
299-
300-
if test x"$req_scalar" = x"auto"; then
301-
SECP_INT128_CHECK
302-
if test x"$has_int128" = x"yes"; then
303-
set_scalar=64bit
304-
fi
305-
if test x"$set_scalar" = x; then
306-
set_scalar=32bit
307-
fi
308-
else
309-
set_scalar=$req_scalar
310-
case $set_scalar in
311-
64bit)
312-
SECP_INT128_CHECK
313-
if test x"$has_int128" != x"yes"; then
314-
AC_MSG_ERROR([64bit scalar explicitly requested but __int128 support not available])
315-
fi
316-
;;
317-
32bit)
318-
;;
319-
*)
320-
AC_MSG_ERROR([invalid scalar implementation selected])
321-
;;
322-
esac
323-
fi
324-
325274
if test x"$req_bignum" = x"auto"; then
326275
SECP_GMP_CHECK
327276
if test x"$has_gmp" = x"yes"; then
@@ -365,16 +314,18 @@ no)
365314
;;
366315
esac
367316

368-
# select field implementation
369-
case $set_field in
370-
64bit)
371-
AC_DEFINE(USE_FIELD_5X52, 1, [Define this symbol to use the FIELD_5X52 implementation])
317+
# select wide multiplication implementation
318+
case $set_widemul in
319+
int128)
320+
AC_DEFINE(USE_FORCE_WIDEMUL_INT128, 1, [Define this symbol to force the use of the (unsigned) __int128 based wide multiplication implementation])
321+
;;
322+
int64)
323+
AC_DEFINE(USE_FORCE_WIDEMUL_INT64, 1, [Define this symbol to force the use of the (u)int64_t based wide multiplication implementation])
372324
;;
373-
32bit)
374-
AC_DEFINE(USE_FIELD_10X26, 1, [Define this symbol to use the FIELD_10X26 implementation])
325+
auto)
375326
;;
376327
*)
377-
AC_MSG_ERROR([invalid field implementation])
328+
AC_MSG_ERROR([invalid wide multiplication implementation])
378329
;;
379330
esac
380331

@@ -396,19 +347,6 @@ no)
396347
;;
397348
esac
398349

399-
#select scalar implementation
400-
case $set_scalar in
401-
64bit)
402-
AC_DEFINE(USE_SCALAR_4X64, 1, [Define this symbol to use the 4x64 scalar implementation])
403-
;;
404-
32bit)
405-
AC_DEFINE(USE_SCALAR_8X32, 1, [Define this symbol to use the 8x32 scalar implementation])
406-
;;
407-
*)
408-
AC_MSG_ERROR([invalid scalar implementation])
409-
;;
410-
esac
411-
412350
#set ecmult window size
413351
if test x"$req_ecmult_window" = x"auto"; then
414352
set_ecmult_window=15
@@ -493,7 +431,16 @@ if test x"$enable_module_recovery" = x"yes"; then
493431
AC_DEFINE(ENABLE_MODULE_RECOVERY, 1, [Define this symbol to enable the ECDSA pubkey recovery module])
494432
fi
495433

496-
AC_C_BIGENDIAN()
434+
if test x"$enable_module_schnorrsig" = x"yes"; then
435+
AC_DEFINE(ENABLE_MODULE_SCHNORRSIG, 1, [Define this symbol to enable the schnorrsig module])
436+
enable_module_extrakeys=yes
437+
fi
438+
439+
# Test if extrakeys is set after the schnorrsig module to allow the schnorrsig
440+
# module to set enable_module_extrakeys=yes
441+
if test x"$enable_module_extrakeys" = x"yes"; then
442+
AC_DEFINE(ENABLE_MODULE_EXTRAKEYS, 1, [Define this symbol to enable the extrakeys module])
443+
fi
497444

498445
if test x"$use_external_asm" = x"yes"; then
499446
AC_DEFINE(USE_EXTERNAL_ASM, 1, [Define this symbol if an external (non-inline) assembly implementation is used])
@@ -508,11 +455,19 @@ if test x"$enable_experimental" = x"yes"; then
508455
AC_MSG_NOTICE([WARNING: experimental build])
509456
AC_MSG_NOTICE([Experimental features do not have stable APIs or properties, and may not be safe for production use.])
510457
AC_MSG_NOTICE([Building ECDH module: $enable_module_ecdh])
458+
AC_MSG_NOTICE([Building extrakeys module: $enable_module_extrakeys])
459+
AC_MSG_NOTICE([Building schnorrsig module: $enable_module_schnorrsig])
511460
AC_MSG_NOTICE([******])
512461
else
513462
if test x"$enable_module_ecdh" = x"yes"; then
514463
AC_MSG_ERROR([ECDH module is experimental. Use --enable-experimental to allow.])
515464
fi
465+
if test x"$enable_module_extrakeys" = x"yes"; then
466+
AC_MSG_ERROR([extrakeys module is experimental. Use --enable-experimental to allow.])
467+
fi
468+
if test x"$enable_module_schnorrsig" = x"yes"; then
469+
AC_MSG_ERROR([schnorrsig module is experimental. Use --enable-experimental to allow.])
470+
fi
516471
if test x"$set_asm" = x"arm"; then
517472
AC_MSG_ERROR([ARM assembly optimization is experimental. Use --enable-experimental to allow.])
518473
fi
@@ -531,6 +486,8 @@ AM_CONDITIONAL([USE_BENCHMARK], [test x"$use_benchmark" = x"yes"])
531486
AM_CONDITIONAL([USE_ECMULT_STATIC_PRECOMPUTATION], [test x"$set_precomp" = x"yes"])
532487
AM_CONDITIONAL([ENABLE_MODULE_ECDH], [test x"$enable_module_ecdh" = x"yes"])
533488
AM_CONDITIONAL([ENABLE_MODULE_RECOVERY], [test x"$enable_module_recovery" = x"yes"])
489+
AM_CONDITIONAL([ENABLE_MODULE_EXTRAKEYS], [test x"$enable_module_extrakeys" = x"yes"])
490+
AM_CONDITIONAL([ENABLE_MODULE_SCHNORRSIG], [test x"$enable_module_schnorrsig" = x"yes"])
534491
AM_CONDITIONAL([USE_EXTERNAL_ASM], [test x"$use_external_asm" = x"yes"])
535492
AM_CONDITIONAL([USE_ASM_ARM], [test x"$set_asm" = x"arm"])
536493

@@ -550,13 +507,17 @@ echo " with benchmarks = $use_benchmark"
550507
echo " with coverage = $enable_coverage"
551508
echo " module ecdh = $enable_module_ecdh"
552509
echo " module recovery = $enable_module_recovery"
510+
echo " module extrakeys = $enable_module_extrakeys"
511+
echo " module schnorrsig = $enable_module_schnorrsig"
553512
echo
554513
echo " asm = $set_asm"
555514
echo " bignum = $set_bignum"
556-
echo " field = $set_field"
557-
echo " scalar = $set_scalar"
558515
echo " ecmult window size = $set_ecmult_window"
559516
echo " ecmult gen prec. bits = $set_ecmult_gen_precision"
517+
dnl Hide test-only options unless they're used.
518+
if test x"$set_widemul" != xauto; then
519+
echo " wide multiplication = $set_widemul"
520+
fi
560521
echo
561522
echo " valgrind = $enable_valgrind"
562523
echo " CC = $CC"

src/secp256k1/contrib/lax_der_parsing.c

-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ int ecdsa_signature_parse_der_lax(const secp256k1_context* ctx, secp256k1_ecdsa_
112112
return 0;
113113
}
114114
spos = pos;
115-
pos += slen;
116115

117116
/* Ignore leading zeroes in R */
118117
while (rlen > 0 && input[rpos] == 0) {

src/secp256k1/contrib/travis.sh

+4-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
set -e
44
set -x
55

6-
if [ -n "$HOST" ]
7-
then
8-
export USE_HOST="--host=$HOST"
9-
fi
106
if [ "$HOST" = "i686-linux-gnu" ]
117
then
128
export CC="$CC -m32"
@@ -18,9 +14,11 @@ fi
1814

1915
./configure \
2016
--enable-experimental="$EXPERIMENTAL" --enable-endomorphism="$ENDOMORPHISM" \
21-
--with-field="$FIELD" --with-bignum="$BIGNUM" --with-asm="$ASM" --with-scalar="$SCALAR" \
17+
--with-test-override-wide-multiply="$WIDEMUL" --with-bignum="$BIGNUM" --with-asm="$ASM" \
2218
--enable-ecmult-static-precomputation="$STATICPRECOMPUTATION" --with-ecmult-gen-precision="$ECMULTGENPRECISION" \
23-
--enable-module-ecdh="$ECDH" --enable-module-recovery="$RECOVERY" "$EXTRAFLAGS" "$USE_HOST"
19+
--enable-module-ecdh="$ECDH" --enable-module-recovery="$RECOVERY" \
20+
--enable-module-schnorrsig="$SCHNORRSIG" \
21+
--host="$HOST" $EXTRAFLAGS
2422

2523
if [ -n "$BUILD" ]
2624
then

src/secp256k1/include/secp256k1.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ typedef int (*secp256k1_nonce_function)(
134134
# else
135135
# define SECP256K1_API
136136
# endif
137-
# elif defined(__GNUC__) && defined(SECP256K1_BUILD)
137+
# elif defined(__GNUC__) && (__GNUC__ >= 4) && defined(SECP256K1_BUILD)
138138
# define SECP256K1_API __attribute__ ((visibility ("default")))
139139
# else
140140
# define SECP256K1_API

0 commit comments

Comments
 (0)