Page MenuHomePhabricator

[electrum] ecc: use libsecp256k1 for sign/verify/mul/add
ClosedPublic

Authored by PiRK on Wed, Aug 28, 14:24.

Details

Reviewers
Fabien
Group Reviewers
Restricted Project
Commits
rABC813785828d83: [electrum] ecc: use libsecp256k1 for sign/verify/mul/add
Summary

Make libsecp256k1 a mandatory dependency, drop the fallback pure-python code that was only used when running from sources without libsecp256k1 compiled.

Hard fail is there is any import error or unavailable symbol in secp256k1 (lib compiled without a required module, lib from Bitcoin Core...)

This is a partial backport of electrum#5947
https://github.com/spesmilo/electrum/pull/5947/commits/ad408ea832c55458b730945832c826894dfa9386

Depends on D16687

Test Plan

python test_runner.py

Diff Detail

Repository
rABC Bitcoin ABC
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

PiRK requested review of this revision.Wed, Aug 28, 14:24

Tail of the build log:

    from . import ecc, networks
  File "/work/electrum/electrumabc/ecc.py", line 42, in <module>
    from .secp256k1 import SECP256K1_EC_UNCOMPRESSED, secp256k1
  File "/work/electrum/electrumabc/secp256k1.py", line 181, in <module>
    raise ImportError("Failed to load required library libsecp256k1")
ImportError: Failed to load required library libsecp256k1


======================================================================
ERROR: electrumabc_plugins.keepkey.tests.test_keepkey (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: electrumabc_plugins.keepkey.tests.test_keepkey
Traceback (most recent call last):
  File "/usr/lib/python3.9/unittest/loader.py", line 436, in _find_test_path
    module = self._get_module_from_name(name)
  File "/usr/lib/python3.9/unittest/loader.py", line 377, in _get_module_from_name
    __import__(name)
  File "/work/electrum/electrumabc_plugins/keepkey/tests/test_keepkey.py", line 5, in <module>
    from electrumabc.plugins import Plugins
  File "/work/electrum/electrumabc/plugins.py", line 56, in <module>
    from .bip32 import xpub_type
  File "/work/electrum/electrumabc/bip32.py", line 32, in <module>
    from . import ecc, networks
  File "/work/electrum/electrumabc/ecc.py", line 42, in <module>
    from .secp256k1 import SECP256K1_EC_UNCOMPRESSED, secp256k1
  File "/work/electrum/electrumabc/secp256k1.py", line 181, in <module>
    raise ImportError("Failed to load required library libsecp256k1")
ImportError: Failed to load required library libsecp256k1


======================================================================
ERROR: electrumabc_plugins.trezor.tests.test_trezor (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: electrumabc_plugins.trezor.tests.test_trezor
Traceback (most recent call last):
  File "/usr/lib/python3.9/unittest/loader.py", line 436, in _find_test_path
    module = self._get_module_from_name(name)
  File "/usr/lib/python3.9/unittest/loader.py", line 377, in _get_module_from_name
    __import__(name)
  File "/work/electrum/electrumabc_plugins/trezor/tests/test_trezor.py", line 5, in <module>
    from electrumabc.plugins import Plugins
  File "/work/electrum/electrumabc/plugins.py", line 56, in <module>
    from .bip32 import xpub_type
  File "/work/electrum/electrumabc/bip32.py", line 32, in <module>
    from . import ecc, networks
  File "/work/electrum/electrumabc/ecc.py", line 42, in <module>
    from .secp256k1 import SECP256K1_EC_UNCOMPRESSED, secp256k1
  File "/work/electrum/electrumabc/secp256k1.py", line 181, in <module>
    raise ImportError("Failed to load required library libsecp256k1")
ImportError: Failed to load required library libsecp256k1


----------------------------------------------------------------------
Ran 102 tests in 0.042s

FAILED (errors=30, skipped=4)
Testing `setup.py --version`: OK

ninja: build stopped: cannot make progress due to previous errors.
Build electrum-tests failed with exit code 1

remove dead/commented code (the todo is done in a couple of commits, and is not critical)

Tail of the build log:

    from . import ecc, networks
  File "/work/electrum/electrumabc/ecc.py", line 42, in <module>
    from .secp256k1 import SECP256K1_EC_UNCOMPRESSED, secp256k1
  File "/work/electrum/electrumabc/secp256k1.py", line 181, in <module>
    raise ImportError("Failed to load required library libsecp256k1")
ImportError: Failed to load required library libsecp256k1


======================================================================
ERROR: electrumabc_plugins.keepkey.tests.test_keepkey (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: electrumabc_plugins.keepkey.tests.test_keepkey
Traceback (most recent call last):
  File "/usr/lib/python3.9/unittest/loader.py", line 436, in _find_test_path
    module = self._get_module_from_name(name)
  File "/usr/lib/python3.9/unittest/loader.py", line 377, in _get_module_from_name
    __import__(name)
  File "/work/electrum/electrumabc_plugins/keepkey/tests/test_keepkey.py", line 5, in <module>
    from electrumabc.plugins import Plugins
  File "/work/electrum/electrumabc/plugins.py", line 56, in <module>
    from .bip32 import xpub_type
  File "/work/electrum/electrumabc/bip32.py", line 32, in <module>
    from . import ecc, networks
  File "/work/electrum/electrumabc/ecc.py", line 42, in <module>
    from .secp256k1 import SECP256K1_EC_UNCOMPRESSED, secp256k1
  File "/work/electrum/electrumabc/secp256k1.py", line 181, in <module>
    raise ImportError("Failed to load required library libsecp256k1")
ImportError: Failed to load required library libsecp256k1


======================================================================
ERROR: electrumabc_plugins.trezor.tests.test_trezor (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: electrumabc_plugins.trezor.tests.test_trezor
Traceback (most recent call last):
  File "/usr/lib/python3.9/unittest/loader.py", line 436, in _find_test_path
    module = self._get_module_from_name(name)
  File "/usr/lib/python3.9/unittest/loader.py", line 377, in _get_module_from_name
    __import__(name)
  File "/work/electrum/electrumabc_plugins/trezor/tests/test_trezor.py", line 5, in <module>
    from electrumabc.plugins import Plugins
  File "/work/electrum/electrumabc/plugins.py", line 56, in <module>
    from .bip32 import xpub_type
  File "/work/electrum/electrumabc/bip32.py", line 32, in <module>
    from . import ecc, networks
  File "/work/electrum/electrumabc/ecc.py", line 42, in <module>
    from .secp256k1 import SECP256K1_EC_UNCOMPRESSED, secp256k1
  File "/work/electrum/electrumabc/secp256k1.py", line 181, in <module>
    raise ImportError("Failed to load required library libsecp256k1")
ImportError: Failed to load required library libsecp256k1


----------------------------------------------------------------------
Ran 102 tests in 0.042s

FAILED (errors=30, skipped=4)
Testing `setup.py --version`: OK

ninja: build stopped: cannot make progress due to previous errors.
Build electrum-tests failed with exit code 1
PiRK planned changes to this revision.Wed, Aug 28, 14:38

I forgot that this needs D16687 to be sorted out first

electrum/contrib/secp_HOWTO.md
79–91 ↗(On Diff #49453)

As there is no longer any python fallback code for schnorr sigs, we can no longer use the BTC variant of libsecp256k1 that is usually installed via the package manager.

Fabien requested changes to this revision.Wed, Sep 4, 08:09
Fabien added a subscriber: Fabien.
Fabien added inline comments.
electrum/electrumabc/schnorr.py
289 ↗(On Diff #49453)

It's a constant, better fix it now and remove the import ecdsa which is confusing

electrum/electrumabc/secp256k1.py
181 ↗(On Diff #49453)

We should improve this a bit and at least point to the README to explain how to install it (and what version is required, otherwise some users might just install the package from their distro and think it's a bug).

electrum/electrumabc/tests/test_schnorr.py
48 ↗(On Diff #49453)

well, there is no test_slow anymore so the name doesn't make sense

electrum/electrumabc/wallet.py
3023 ↗(On Diff #49453)

layout

electrum/electrumabc_plugins/fusion/compatibility.py
35 ↗(On Diff #49453)

I don't understand why this is removed ?

This revision now requires changes to proceed.Wed, Sep 4, 08:09
electrum/electrumabc_plugins/fusion/compatibility.py
35 ↗(On Diff #49453)

it is only used below in the removed line. Both schnorr.has_fast_sign() and schnorr.has_fast_verify() should always be true now.

I guess the whole module is pretty much useless as the other check about the protobuf version is also always true now (enforced in requirements.txt). But that's unrelated to this diff.

PiRK edited the summary of this revision. (Show Details)

move secp256k1_schnorr_* declarations to secp256k1 where it belongs, raise a meaningful error if the lib is missing the schnorr module, remove some extra try: except: wrapping in secp256k1.py so that the inner errors are raised with more precise error messages

electrum/electrumabc/schnorr.py
31–57 ↗(On Diff #49472)

moved to secp256k1.py, as everything in libsecp256k1 is now equally mandatory

Fabien requested changes to this revision.Wed, Sep 4, 12:12
Fabien added inline comments.
electrum/electrumabc/schnorr.py
104 ↗(On Diff #49472)

Or remove the seclib alias if it's unused

electrum/electrumabc/secp256k1.py
75 ↗(On Diff #49472)

Please improve the message here and point the user to the relevant doc

This revision now requires changes to proceed.Wed, Sep 4, 12:12

better error message if the lib is not available at all

electrum/electrumabc/schnorr.py
104 ↗(On Diff #49472)

Usage is inconsistent so I missed that there was an alias: 9 occurences of secp256k1.secp256k1 vs 11 occurences of seclib in this module

improve error message some more

Fabien added inline comments.
electrum/electrumabc/schnorr.py
104 ↗(On Diff #49472)

that will make a nice follow-up

This revision is now accepted and ready to land.Wed, Sep 4, 17:57