gentest.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2019 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. test/gentest.py: Cryptocoin key/address generation tests for the MMGen suite
  20. """
  21. import sys,os
  22. pn = os.path.dirname(sys.argv[0])
  23. os.chdir(os.path.join(pn,os.pardir))
  24. sys.path.__setitem__(0,os.path.abspath(os.curdir))
  25. os.environ['MMGEN_TEST_SUITE'] = '1'
  26. # Import these _after_ local path's been added to sys.path
  27. from mmgen.common import *
  28. from mmgen.obj import MMGenAddrType
  29. rounds = 100
  30. opts_data = {
  31. 'text': {
  32. 'desc': 'Test address generation in various ways',
  33. 'usage':'[options] [spec] [rounds | dump file]',
  34. 'options': """
  35. -h, --help Print this help message
  36. -a, --all Test all supported coins for external generator 'ext'
  37. -k, --use-internal-keccak-module Force use of the internal keccak module
  38. --, --longhelp Print help message for long options (common options)
  39. -q, --quiet Produce quieter output
  40. -t, --type=t Specify address type (valid options: 'compressed','segwit','zcash_z')
  41. -v, --verbose Produce more verbose output
  42. """,
  43. 'notes': """
  44. Tests:
  45. A/B: {prog} a:b [rounds] (compare output of two key generators)
  46. Speed: {prog} a [rounds] (test speed of one key generator)
  47. Compare: {prog} a <dump file> (compare output of a key generator against wallet dump)
  48. where a and b are one of:
  49. '1' - native Python ecdsa library (very slow)
  50. '2' - bitcoincore.org's secp256k1 library (default from v0.8.6)
  51. EXAMPLES:
  52. {prog} 1:2 100
  53. (compare output of native Python ECDSA with secp256k1 library, 100 rounds)
  54. {prog} 2:ext 100
  55. (compare output of secp256k1 library with external library (see below), 100 rounds)
  56. {prog} 2 1000
  57. (test speed of secp256k1 library address generation, 1000 rounds)
  58. {prog} 2 my.dump
  59. (compare addrs generated with secp256k1 library to {dn} wallet dump)
  60. External libraries required for the 'ext' generator:
  61. + ethkey (for ETH,ETC) https://github.com/paritytech/parity-ethereum
  62. + zcash-mini (for zcash_z addresses) https://github.com/FiloSottile/zcash-mini
  63. + moneropy (for Monero addresses) https://github.com/bigreddmachine/MoneroPy
  64. + pycoin (for supported coins) https://github.com/richardkiss/pycoin
  65. + keyconv (for all other coins) https://github.com/exploitagency/vanitygen-plus
  66. ('keyconv' generates uncompressed addresses only)
  67. """
  68. },
  69. 'code': {
  70. 'notes': lambda s: s.format(
  71. prog='gentest.py',
  72. pnm=g.proj_name,
  73. snum=rounds,
  74. dn=g.proto.daemon_name)
  75. }
  76. }
  77. sys.argv = [sys.argv[0]] + ['--skip-cfg-file'] + sys.argv[1:]
  78. cmd_args = opts.init(opts_data,add_opts=['exact_output','use_old_ed25519'])
  79. if not 1 <= len(cmd_args) <= 2: opts.usage()
  80. addr_type = MMGenAddrType(opt.type or g.proto.dfl_mmtype)
  81. from subprocess import run,PIPE,DEVNULL
  82. def get_cmd_output(cmd,input=None):
  83. return run(cmd,input=input,stdout=PIPE,stderr=DEVNULL).stdout.decode().splitlines()
  84. def ethkey_sec2addr(sec):
  85. o = get_cmd_output(['ethkey','info',sec])
  86. return (sec,o[-1].split()[1])
  87. def keyconv_sec2addr(sec):
  88. o = get_cmd_output(['keyconv','-C',g.coin,sec.wif])
  89. return (o[1].split()[1],o[0].split()[1])
  90. def zcash_mini_sec2addr(sec):
  91. o = get_cmd_output(['zcash-mini','-key','-simple'],input=(sec.wif+'\n').encode())
  92. return (sec.wif,o[0],o[-1])
  93. def pycoin_sec2addr(sec):
  94. coin = ci.external_tests['testnet']['pycoin'][g.coin] if g.testnet else g.coin
  95. network = network_for_netcode(coin)
  96. key = network.keys.private(secret_exponent=int(sec,16),is_compressed=addr_type.name != 'legacy')
  97. if key is None:
  98. die(1,"can't parse {}".format(sec))
  99. if addr_type.name in ('segwit','bech32'):
  100. hash160_c = key.hash160(is_compressed=True)
  101. if addr_type.name == 'segwit':
  102. p2sh_script = network.contract.for_p2pkh_wit(hash160_c)
  103. addr = network.address.for_p2s(p2sh_script)
  104. else:
  105. addr = network.address.for_p2pkh_wit(hash160_c)
  106. else:
  107. addr = key.address()
  108. return (key.wif(),addr)
  109. def moneropy_sec2addr(sec):
  110. sk_t,vk_t,addr_t = mp_acc.account_from_spend_key(sec) # VERY slow!
  111. return (sk_t,addr_t,vk_t)
  112. # pycoin/networks/all.py pycoin/networks/legacy_networks.py
  113. def init_external_prog():
  114. global b,b_desc,ext_prog,ext_sec2addr,eth,addr_type
  115. def test_support(k):
  116. if b == k: return True
  117. if b != 'ext' and b != k: return False
  118. if g.coin in ci.external_tests['mainnet'][k] and not g.testnet: return True
  119. if g.coin in ci.external_tests['testnet'][k]: return True
  120. return False
  121. if b == 'zcash_mini' or addr_type.name == 'zcash_z':
  122. ext_sec2addr = zcash_mini_sec2addr
  123. ext_prog = 'zcash_mini'
  124. init_coin('zec')
  125. addr_type = MMGenAddrType('Z')
  126. elif test_support('ethkey'): # build with 'cargo build -p ethkey-cli --release'
  127. ext_sec2addr = ethkey_sec2addr
  128. ext_prog = 'ethkey'
  129. elif test_support('pycoin'):
  130. global network_for_netcode
  131. try:
  132. from pycoin.networks.registry import network_for_netcode
  133. except:
  134. raise ImportError("Unable to import pycoin.networks.registry Is pycoin installed and up-to-date?")
  135. ext_sec2addr = pycoin_sec2addr
  136. ext_prog = 'pycoin'
  137. elif test_support('moneropy'):
  138. global mp_acc
  139. try:
  140. import moneropy.account as mp_acc
  141. except:
  142. raise ImportError("Unable to import moneropy. Is moneropy installed on your system?")
  143. ext_sec2addr = moneropy_sec2addr
  144. init_coin('xmr')
  145. ext_prog = 'moneropy'
  146. addr_type = MMGenAddrType('M')
  147. elif test_support('keyconv'):
  148. ext_sec2addr = keyconv_sec2addr
  149. ext_prog = 'keyconv'
  150. else:
  151. m = '{}: coin supported by MMGen but unsupported by gentest.py for {}'
  152. raise ValueError(m.format(g.coin,('mainnet','testnet')[g.testnet]))
  153. b_desc = ext_prog
  154. b = 'ext'
  155. def test_equal(a_addr,b_addr,sec,wif,a,b):
  156. if a_addr != b_addr:
  157. qmsg_r(red('\nERROR: Values do not match!'))
  158. die(3,"""
  159. sec key : {}
  160. WIF key : {}
  161. {a:10}: {}
  162. {b:10}: {}
  163. """.format(sec,wif,a_addr,b_addr,pnm=g.proj_name,a=kg_a.desc,b=b_desc).rstrip())
  164. def compare_test():
  165. for k in ('segwit','compressed'):
  166. if b == 'ext' and addr_type.name == k and g.coin not in ci.external_tests_segwit_compressed[k]:
  167. m = 'skipping - external program does not support {} for coin {}'
  168. msg(m.format(addr_type.name.capitalize(),g.coin))
  169. return
  170. if 'ext_prog' in globals():
  171. if g.coin not in ci.external_tests[('mainnet','testnet')[g.testnet]][ext_prog]:
  172. msg("Coin '{}' incompatible with external generator '{}'".format(g.coin,ext_prog))
  173. return
  174. global last_t
  175. last_t = time.time()
  176. A = kg_a.desc
  177. B = ext_prog if b == 'ext' else kg_b.desc
  178. if A == B:
  179. msg('skipping - generation methods A and B are the same ({})'.format(A))
  180. return
  181. m = "Comparing address generators '{}' and '{}' for coin {}, addrtype {!r}"
  182. qmsg(green(m.format(A,B,g.coin,addr_type.name)))
  183. def do_compare_test(n,trounds,in_bytes):
  184. global last_t
  185. if opt.verbose or time.time() - last_t >= 0.1:
  186. qmsg_r('\rRound {}/{} '.format(i+1,trounds))
  187. last_t = time.time()
  188. sec = PrivKey(in_bytes,compressed=addr_type.compressed,pubkey_type=addr_type.pubkey_type)
  189. ph = kg_a.to_pubhex(sec)
  190. a_addr = ag.to_addr(ph)
  191. a_vk = ag.to_viewkey(ph) if 'viewkey' in addr_type.extra_attrs else None
  192. if b == 'ext':
  193. if 'viewkey' in addr_type.extra_attrs:
  194. b_wif,b_addr,b_vk = ext_sec2addr(sec)
  195. test_equal(a_vk,b_vk,sec,sec.wif,a,b)
  196. else:
  197. b_wif,b_addr = ext_sec2addr(sec)
  198. test_equal(sec.wif,b_wif,sec,sec.wif,a,b)
  199. else:
  200. b_addr = ag.to_addr(kg_b.to_pubhex(sec))
  201. vmsg(ct_fs.format(b=in_bytes.hex(),k=sec.wif,v=a_vk,a=a_addr))
  202. test_equal(a_addr,b_addr,sec,sec.wif,a,ext_prog if b == 'ext' else b)
  203. qmsg_r('\rRound {}/{} '.format(n+1,trounds))
  204. ct_fs = ( '\ninput: {b}\n%-9s {k}\naddr: {a}\n',
  205. '\ninput: {b}\n%-9s {k}\nvkey: {v}\naddr: {a}\n')[
  206. 'viewkey' in addr_type.extra_attrs] % (addr_type.wif_label + ':')
  207. # test some important private key edge cases:
  208. edgecase_sks = (
  209. bytes([0x00]*31 + [0x01]), # min
  210. bytes([0xff]*32), # max
  211. bytes([0x0f] + [0xff]*31), # same key as above for zcash-z
  212. bytes([0x00]*31 + [0xff]), # monero will reduce
  213. bytes([0xff]*31 + [0x0f]), # monero will not reduce
  214. )
  215. qmsg(purple('edge cases:'))
  216. for i,in_bytes in enumerate(edgecase_sks):
  217. do_compare_test(i,len(edgecase_sks),in_bytes)
  218. qmsg(green('\rOK ' if opt.verbose else 'OK'))
  219. qmsg(purple('random input:'))
  220. for i in range(rounds):
  221. do_compare_test(i,rounds,os.urandom(32))
  222. qmsg(green('\rOK ' if opt.verbose else 'OK'))
  223. def speed_test():
  224. m = "Testing speed of address generator '{}' for coin {}"
  225. qmsg(green(m.format(kg_a.desc,g.coin)))
  226. from struct import pack,unpack
  227. seed = os.urandom(28)
  228. qmsg('Incrementing key with each round')
  229. qmsg('Starting key: {}'.format((seed + pack('I',0)).hex()))
  230. import time
  231. start = last_t = time.time()
  232. for i in range(rounds):
  233. if time.time() - last_t >= 0.1:
  234. qmsg_r('\rRound {}/{} '.format(i+1,rounds))
  235. last_t = time.time()
  236. sec = PrivKey(seed+pack('I',i),compressed=addr_type.compressed,pubkey_type=addr_type.pubkey_type)
  237. a_addr = ag.to_addr(kg_a.to_pubhex(sec))
  238. vmsg('\nkey: {}\naddr: {}\n'.format(sec.wif,a_addr))
  239. qmsg_r('\rRound {}/{} '.format(i+1,rounds))
  240. qmsg('\n{} addresses generated in {:.2f} seconds'.format(rounds,time.time()-start))
  241. def dump_test():
  242. m = "Comparing output of address generator '{}' against wallet dump '{}'"
  243. qmsg(green(m.format(kg_a.desc,cmd_args[1])))
  244. for n,[wif,a_addr] in enumerate(dump,1):
  245. qmsg_r('\rKey {}/{} '.format(n,len(dump)))
  246. try:
  247. sec = PrivKey(wif=wif)
  248. except:
  249. die(2,'\nInvalid {}net WIF address in dump file: {}'.format(('main','test')[g.testnet],wif))
  250. b_addr = ag.to_addr(kg_a.to_pubhex(sec))
  251. vmsg('\nwif: {}\naddr: {}\n'.format(wif,b_addr))
  252. test_equal(a_addr,b_addr,sec,wif,3,a)
  253. qmsg(green(('\n','')[bool(opt.verbose)] + 'OK'))
  254. # begin execution
  255. from mmgen.protocol import init_coin
  256. from mmgen.altcoin import CoinInfo as ci
  257. urounds,fh = None,None
  258. dump = []
  259. if len(cmd_args) == 2:
  260. try:
  261. urounds = int(cmd_args[1])
  262. assert urounds > 0
  263. except:
  264. try:
  265. fh = open(cmd_args[1])
  266. except:
  267. die(1,'Second argument must be filename or positive integer')
  268. else:
  269. for line in fh.readlines():
  270. if 'addr=' in line:
  271. x,addr = line.split('addr=')
  272. dump.append([x.split()[0],addr.split()[0]])
  273. if urounds: rounds = urounds
  274. a,b = None,None
  275. b_desc = 'unknown'
  276. try:
  277. a,b = cmd_args[0].split(':')
  278. except:
  279. try:
  280. a = cmd_args[0]
  281. a = int(a)
  282. assert 1 <= a <= len(g.key_generators)
  283. except:
  284. die(1,'First argument must be one or two generator IDs, colon separated')
  285. else:
  286. try:
  287. a = int(a)
  288. assert 1 <= a <= len(g.key_generators),'{}: invalid key generator'.format(a)
  289. if b in ('ext','ethkey','pycoin','keyconv','zcash_mini','moneropy'):
  290. init_external_prog()
  291. else:
  292. b = int(b)
  293. assert 1 <= b <= len(g.key_generators),'{}: invalid key generator'.format(b)
  294. assert a != b,'Key generators are the same!'
  295. except Exception as e:
  296. die(1,'{}\n{}: invalid generator argument'.format(e.args[0],cmd_args[0]))
  297. from mmgen.addr import KeyGenerator,AddrGenerator
  298. from mmgen.obj import PrivKey
  299. kg_a = KeyGenerator(addr_type,a)
  300. ag = AddrGenerator(addr_type)
  301. if a and b:
  302. if opt.all:
  303. from mmgen.protocol import init_genonly_altcoins,CoinProtocol
  304. init_genonly_altcoins('btc',trust_level=0)
  305. mmgen_supported = CoinProtocol.get_valid_coins(upcase=True)
  306. for coin in ci.external_tests[('mainnet','testnet')[g.testnet]][ext_prog]:
  307. if coin not in mmgen_supported: continue
  308. init_coin(coin)
  309. if addr_type not in g.proto.mmtypes:
  310. addr_type = MMGenAddrType(g.proto.dfl_mmtype)
  311. kg_a = KeyGenerator(addr_type,a)
  312. ag = AddrGenerator(addr_type)
  313. compare_test()
  314. else:
  315. if b != 'ext':
  316. kg_b = KeyGenerator(addr_type,b)
  317. b_desc = kg_b.desc
  318. compare_test()
  319. elif a and not fh:
  320. speed_test()
  321. elif a and dump:
  322. b_desc = 'dump'
  323. dump_test()
  324. else:
  325. die(2,'Illegal invocation')