ct_autosign.py 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093
  1. #!/usr/bin/env python3
  2. #
  3. # MMGen Wallet, a terminal-based cryptocurrency wallet
  4. # Copyright (C)2013-2025 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.cmdtest_d.ct_autosign: Autosign tests for the cmdtest.py test suite
  20. """
  21. import sys, os, time, shutil, atexit
  22. from subprocess import run, DEVNULL
  23. from pathlib import Path
  24. from mmgen.cfg import Config
  25. from mmgen.color import red, blue, yellow, cyan, orange, purple, gray
  26. from mmgen.util import msg, suf, die, indent, fmt
  27. from mmgen.led import LEDControl
  28. from mmgen.autosign import Autosign, Signable
  29. from ..include.common import (
  30. cfg,
  31. omsg,
  32. omsg_r,
  33. oqmsg,
  34. oqmsg_r,
  35. start_test_daemons,
  36. stop_test_daemons,
  37. joinpath,
  38. imsg,
  39. read_from_file,
  40. silence,
  41. end_silence,
  42. VirtBlockDevice,
  43. )
  44. from .common import ref_dir, dfl_words_file, dfl_bip39_file
  45. from .ct_base import CmdTestBase
  46. from .input import stealth_mnemonic_entry
  47. class CmdTestAutosignBase(CmdTestBase):
  48. networks = ('btc',)
  49. tmpdir_nums = [18]
  50. color = True
  51. platform_skip = ('win32',)
  52. threaded = False
  53. daemon_coins = []
  54. def __init__(self, trunner, cfgs, spawn):
  55. CmdTestBase.__init__(self, trunner, cfgs, spawn)
  56. if trunner is None:
  57. return
  58. self.silent_mount = self.live or not (cfg.exact_output or cfg.verbose)
  59. self.network_ids = [c+'_tn' for c in self.daemon_coins] + self.daemon_coins
  60. self._create_autosign_instances(create_dirs=not cfg.skipping_deps)
  61. self.fs_image_path = Path(self.tmpdir).absolute() / 'removable_device_image'
  62. if sys.platform == 'linux':
  63. self.txdev = VirtBlockDevice(self.fs_image_path, '10M')
  64. if not (cfg.skipping_deps or self.live):
  65. self._create_removable_device()
  66. if sys.platform == 'darwin' and not cfg.no_daemon_stop:
  67. atexit.register(self._macOS_eject_disk, self.asi.dev_label)
  68. self.opts = ['--coins='+','.join(self.coins)]
  69. self.txhex_file = f'{self.tmpdir}/tx_dump.hex'
  70. if not self.live:
  71. self.spawn_env['MMGEN_TEST_SUITE_ROOT_PFX'] = self.tmpdir
  72. if self.threaded:
  73. self.spawn_env['MMGEN_TEST_SUITE_AUTOSIGN_THREADED'] = '1'
  74. def __del__(self):
  75. if hasattr(self, 'have_dummy_control_files'):
  76. db = LEDControl.boards['dummy']
  77. for fn in (db.control, db.trigger):
  78. run(f'sudo rm -f {fn}'.split(), check=True)
  79. if hasattr(self, 'txdev'):
  80. del self.txdev
  81. if not cfg.no_daemon_stop:
  82. if sys.platform == 'darwin':
  83. for label in (self.asi.dev_label, self.asi.ramdisk.label):
  84. self._macOS_eject_disk(label)
  85. def _create_autosign_instances(self, create_dirs):
  86. d = {'offline': {'name':'asi'}}
  87. if self.have_online:
  88. d['online'] = {'name':'asi_online'}
  89. for subdir, data in d.items():
  90. asi = Autosign(
  91. Config({
  92. 'coins': ','.join(self.coins),
  93. 'test_suite': True,
  94. 'test_suite_xmr_autosign': self.name == 'CmdTestXMRAutosign',
  95. 'test_suite_autosign_threaded': self.threaded,
  96. 'test_suite_root_pfx': None if self.live else self.tmpdir,
  97. 'online': subdir == 'online',
  98. }))
  99. if create_dirs and not self.live:
  100. for k in ('mountpoint', 'shm_dir', 'wallet_dir'):
  101. if subdir == 'online' and k in ('shm_dir', 'wallet_dir'):
  102. continue
  103. if sys.platform == 'darwin' and k != 'mountpoint':
  104. continue
  105. getattr(asi, k).mkdir(parents=True, exist_ok=True)
  106. if sys.platform == 'darwin' and k == 'mountpoint':
  107. asi.mountpoint.rmdir()
  108. continue
  109. setattr(self, data['name'], asi)
  110. def _set_e2label(self, label):
  111. imsg(f'Setting label to {label}')
  112. for cmd in ('/sbin/e2label', 'e2label'):
  113. try:
  114. run([cmd, str(self.txdev.img_path), label], check=True)
  115. break
  116. except:
  117. if cmd == 'e2label':
  118. raise
  119. def _create_removable_device(self):
  120. if sys.platform == 'linux':
  121. self.txdev.create()
  122. self.txdev.attach(silent=True)
  123. args = [
  124. '-E', 'root_owner={}:{}'.format(os.getuid(), os.getgid()),
  125. '-L', self.asi.dev_label,
  126. str(self.txdev.img_path)]
  127. redir = DEVNULL
  128. for cmd in ('/sbin/mkfs.ext2', 'mkfs.ext2'):
  129. try:
  130. run([cmd] + args, stdout=redir, stderr=redir, check=True)
  131. break
  132. except:
  133. if cmd == 'mkfs.ext2':
  134. raise
  135. self.txdev.detach(silent=True)
  136. elif sys.platform == 'darwin':
  137. cmd = [
  138. 'hdiutil', 'create', '-size', '10M', '-fs', 'exFAT',
  139. '-volname', self.asi.dev_label,
  140. str(self.fs_image_path)]
  141. redir = None if cfg.exact_output or cfg.verbose else DEVNULL
  142. run(cmd, stdout=redir, check=True)
  143. def _macOS_mount_fs_image(self, loc):
  144. time.sleep(0.2)
  145. run(
  146. ['hdiutil', 'attach', '-mountpoint', str(loc.mountpoint), f'{self.fs_image_path}.dmg'],
  147. stdout=DEVNULL, check=True)
  148. def _macOS_eject_disk(self, label):
  149. try:
  150. run(['diskutil' , 'eject', label], stdout=DEVNULL, stderr=DEVNULL)
  151. except:
  152. pass
  153. def start_daemons(self):
  154. self.spawn(msg_only=True)
  155. start_test_daemons(*self.network_ids)
  156. return 'ok'
  157. def stop_daemons(self):
  158. self.spawn(msg_only=True)
  159. stop_test_daemons(*self.network_ids, remove_datadir=True)
  160. return 'ok'
  161. def run_setup(
  162. self,
  163. mn_type = None,
  164. mn_file = None,
  165. use_dfl_wallet = False,
  166. seed_len = None,
  167. usr_entry_modes = False,
  168. passwd = 'abc',
  169. expect_args = []):
  170. mn_desc = mn_type or 'default'
  171. mn_type = mn_type or 'mmgen'
  172. if sys.platform == 'darwin' and not cfg.no_daemon_stop:
  173. self._macOS_eject_disk(self.asi.ramdisk.label)
  174. self.insert_device()
  175. t = self.spawn(
  176. 'mmgen-autosign',
  177. self.opts
  178. + ([] if mn_desc == 'default' else [f'--mnemonic-fmt={mn_type}'])
  179. + ([f'--seed-len={seed_len}'] if seed_len else [])
  180. + ['setup'],
  181. no_passthru_opts = True)
  182. if use_dfl_wallet:
  183. t.expect('Use default wallet for autosigning? (Y/n): ', 'y')
  184. t.passphrase('MMGen wallet', passwd)
  185. else:
  186. if use_dfl_wallet is not None: # None => no dfl wallet present
  187. t.expect('Use default wallet for autosigning? (Y/n): ', 'n')
  188. mn_file = mn_file or {'mmgen': dfl_words_file, 'bip39': dfl_bip39_file}[mn_type]
  189. mn = read_from_file(mn_file).strip().split()
  190. if not seed_len:
  191. t.expect('words: ', {12:'1', 18:'2', 24:'3'}[len(mn)])
  192. t.expect('OK? (Y/n): ', '\n')
  193. from mmgen.mn_entry import mn_entry
  194. entry_mode = 'full'
  195. mne = mn_entry(cfg, mn_type, entry_mode=entry_mode)
  196. if usr_entry_modes:
  197. t.expect('user-configured')
  198. else:
  199. t.expect(
  200. 'Type a number.*: ',
  201. str(mne.entry_modes.index(entry_mode) + 1),
  202. regex = True)
  203. stealth_mnemonic_entry(t, mne, mn, entry_mode)
  204. t.written_to_file('Autosign wallet')
  205. if expect_args:
  206. t.expect(*expect_args)
  207. t.read()
  208. self.remove_device()
  209. if sys.platform == 'darwin' and not cfg.no_daemon_stop:
  210. atexit.register(self._macOS_eject_disk, self.asi.ramdisk.label)
  211. return t
  212. def insert_device(self, asi='asi'):
  213. if self.live:
  214. return
  215. loc = getattr(self, asi)
  216. if sys.platform == 'linux':
  217. self._set_e2label(loc.dev_label)
  218. self.txdev.attach()
  219. for _ in range(20):
  220. if loc.device_inserted:
  221. break
  222. time.sleep(0.1)
  223. else:
  224. die(2, f'device insert timeout exceeded {loc.dev_label}')
  225. elif sys.platform == 'darwin':
  226. self._macOS_mount_fs_image(loc)
  227. def remove_device(self, asi='asi'):
  228. if self.live:
  229. return
  230. loc = getattr(self, asi)
  231. if sys.platform == 'linux':
  232. self.txdev.detach()
  233. for _ in range(20):
  234. if not loc.device_inserted:
  235. break
  236. time.sleep(0.1)
  237. else:
  238. die(2, f'device remove timeout exceeded {loc.dev_label}')
  239. elif sys.platform == 'darwin':
  240. self._macOS_eject_disk(loc.dev_label)
  241. def _mount_ops(self, loc, cmd, *args, **kwargs):
  242. return getattr(getattr(self, loc), cmd)(*args, silent=self.silent_mount, **kwargs)
  243. def do_mount(self, *args, **kwargs):
  244. return self._mount_ops('asi', 'do_mount', *args, **kwargs)
  245. def do_umount(self, *args, **kwargs):
  246. return self._mount_ops('asi', 'do_umount', *args, **kwargs)
  247. def _gen_listing(self):
  248. for k in self.asi.dirs:
  249. d = getattr(self.asi, k)
  250. if d.is_dir():
  251. yield '{:12} {}'.format(
  252. str(Path(*d.parts[6:])) + ':',
  253. ' '.join(sorted(i.name for i in d.iterdir()))).strip()
  254. class CmdTestAutosignClean(CmdTestAutosignBase):
  255. have_online = False
  256. live = False
  257. simulate_led = True
  258. no_insert_check = False
  259. coins = ['btc']
  260. tmpdir_nums = [38]
  261. cmd_group = (
  262. ('clean_no_xmr', 'cleaning signable file directories (no XMR)'),
  263. ('clean_xmr_only', 'cleaning signable file directories (XMR-only)'),
  264. ('clean_all', 'cleaning signable file directories (with XMR)'),
  265. )
  266. def create_fake_tx_files(self):
  267. imsg('Creating fake transaction files')
  268. if not self.asi.xmr_only:
  269. for fn in (
  270. 'a.rawtx', 'a.sigtx',
  271. 'b.rawtx', 'b.sigtx',
  272. 'c.rawtx',
  273. 'd.sigtx',
  274. ):
  275. (self.asi.tx_dir / fn).touch()
  276. for fn in (
  277. 'a.arawtx', 'a.asigtx', 'a.asubtx',
  278. 'b.arawtx', 'b.asigtx',
  279. 'c.asubtx',
  280. 'd.arawtx', 'd.asubtx',
  281. 'e.arawtx',
  282. 'f.asigtx', 'f.asubtx',
  283. ):
  284. (self.asi.txauto_dir / fn).touch()
  285. for fn in (
  286. 'a.rawmsg.json', 'a.sigmsg.json',
  287. 'b.rawmsg.json',
  288. 'c.sigmsg.json',
  289. 'd.rawmsg.json', 'd.sigmsg.json',
  290. ):
  291. (self.asi.msg_dir / fn).touch()
  292. if self.asi.have_xmr:
  293. for fn in (
  294. 'a.rawtx', 'a.sigtx', 'a.subtx',
  295. 'b.rawtx', 'b.sigtx',
  296. 'c.subtx',
  297. 'd.rawtx', 'd.subtx',
  298. 'e.rawtx',
  299. 'f.sigtx', 'f.subtx',
  300. ):
  301. (self.asi.xmr_tx_dir / fn).touch()
  302. for fn in (
  303. 'a.raw', 'a.sig',
  304. 'b.raw',
  305. 'c.sig',
  306. ):
  307. (self.asi.xmr_outputs_dir / fn).touch()
  308. return 'ok'
  309. def clean_no_xmr(self):
  310. return self._clean('btc,ltc,eth')
  311. def clean_xmr_only(self):
  312. self.asi = Autosign(Config({'_clone': self.asi.cfg, 'coins': 'xmr'}))
  313. return self._clean('xmr')
  314. def clean_all(self):
  315. self.asi = Autosign(Config({'_clone': self.asi.cfg, 'coins': 'xmr,btc,bch,eth'}))
  316. return self._clean('xmr,btc,bch,eth')
  317. def _clean(self, coins):
  318. self.spawn(msg_only=True)
  319. self.insert_device()
  320. silence()
  321. self.do_mount()
  322. end_silence()
  323. self.create_fake_tx_files()
  324. before = '\n'.join(self._gen_listing())
  325. t = self.spawn('mmgen-autosign', [f'--coins={coins}', 'clean'], no_msg=True)
  326. out = t.read()
  327. if sys.platform == 'darwin':
  328. self.insert_device()
  329. silence()
  330. self.do_mount()
  331. end_silence()
  332. after = '\n'.join(self._gen_listing())
  333. chk_non_xmr = """
  334. tx: a.sigtx b.sigtx c.rawtx d.sigtx
  335. txauto: a.asubtx b.asigtx c.asubtx d.asubtx e.arawtx f.asubtx
  336. msg: a.sigmsg.json b.rawmsg.json c.sigmsg.json d.sigmsg.json
  337. """
  338. chk_xmr = """
  339. xmr: outputs tx
  340. xmr/tx: a.subtx b.sigtx c.subtx d.subtx e.rawtx f.subtx
  341. xmr/outputs:
  342. """
  343. chk = ''
  344. shred_count = 0
  345. if not self.asi.xmr_only:
  346. for k in ('tx_dir', 'txauto_dir', 'msg_dir'):
  347. shutil.rmtree(getattr(self.asi, k))
  348. chk += chk_non_xmr.rstrip()
  349. shred_count += 9
  350. if self.asi.have_xmr:
  351. shutil.rmtree(self.asi.xmr_dir)
  352. chk += chk_xmr.rstrip()
  353. shred_count += 9
  354. self.do_umount()
  355. self.remove_device()
  356. imsg(f'\nBefore cleaning:\n{before}')
  357. imsg(f'\nAfter cleaning:\n{after}')
  358. assert f'{shred_count} files shredded' in out
  359. assert after + '\n' == fmt(chk), f'\n{after}\n!=\n{fmt(chk)}'
  360. return t
  361. class CmdTestAutosignThreaded(CmdTestAutosignBase):
  362. have_online = True
  363. live = False
  364. no_insert_check = False
  365. threaded = True
  366. def _user_txcreate(
  367. self,
  368. user,
  369. progname = 'txcreate',
  370. input_handler = None,
  371. chg_addr = None,
  372. opts = [],
  373. output_args = [],
  374. exit_val = 0,
  375. expect_str = None,
  376. data_arg = None,
  377. need_rbf = False):
  378. if output_args:
  379. assert not chg_addr
  380. if chg_addr:
  381. assert not output_args
  382. if need_rbf and not self.proto.cap('rbf'):
  383. return 'skip'
  384. def do_return():
  385. if expect_str:
  386. t.expect(expect_str)
  387. t.read()
  388. self.remove_device_online()
  389. return t
  390. self.insert_device_online()
  391. sid = self._user_sid(user)
  392. t = self.spawn(
  393. f'mmgen-{progname}',
  394. opts
  395. + [f'--{user}', '--autosign']
  396. + ([data_arg] if data_arg else [])
  397. + (output_args or [f'{self.burn_addr},1.23456', f'{sid}:{chg_addr}']),
  398. exit_val = exit_val or None)
  399. if exit_val:
  400. return do_return()
  401. t = (input_handler or self.txcreate_ui_common)(
  402. t,
  403. inputs = '1',
  404. interactive_fee = '32s',
  405. file_desc = 'Unsigned automount transaction')
  406. return do_return()
  407. def _user_txsend(
  408. self,
  409. user,
  410. *,
  411. comment = None,
  412. no_wait = False,
  413. need_rbf = False,
  414. dump_hex = False,
  415. mark_sent = False):
  416. if need_rbf and not self.proto.cap('rbf'):
  417. return 'skip'
  418. if not no_wait:
  419. self._wait_signed('transaction')
  420. extra_opt = (
  421. [f'--dump-hex={self.txhex_file}'] if dump_hex
  422. else ['--mark-sent'] if mark_sent
  423. else [])
  424. self.insert_device_online()
  425. t = self.spawn('mmgen-txsend', [f'--{user}', '--quiet', '--autosign'] + extra_opt)
  426. if mark_sent:
  427. t.written_to_file('Sent automount transaction')
  428. else:
  429. t.view_tx('t')
  430. t.do_comment(comment)
  431. if dump_hex:
  432. t.written_to_file('Serialized transaction hex data')
  433. t.expect('(y/N): ', 'n') # mark as sent?
  434. else:
  435. self._do_confirm_send(t, quiet=True)
  436. t.written_to_file('Sent automount transaction')
  437. t.read()
  438. self.remove_device_online()
  439. return t
  440. def _wait_loop_start(self, add_opts=[]):
  441. t = self.spawn(
  442. 'mmgen-autosign',
  443. self.opts + add_opts + ['--full-summary', 'wait'],
  444. direct_exec = True,
  445. no_passthru_opts = True,
  446. spawn_env_override = self.spawn_env | {'EXEC_WRAPPER_DO_RUNTIME_MSG': ''})
  447. self.write_to_tmpfile('autosign_thread_pid', str(t.ep.pid))
  448. return t
  449. def wait_loop_start(self, add_opts=[]):
  450. import threading
  451. threading.Thread(
  452. target = self._wait_loop_start,
  453. kwargs = {'add_opts': add_opts},
  454. name = 'Autosign wait loop').start()
  455. time.sleep(0.1) # try to ensure test output is displayed before next test starts
  456. return 'silent'
  457. def wait_loop_kill(self):
  458. return self._kill_process_from_pid_file('autosign_thread_pid', 'autosign wait loop')
  459. def _wait_signed(self, desc):
  460. oqmsg_r(gray(f'→ offline wallet{"s" if desc.endswith("s") else ""} waiting for {desc}'))
  461. assert not self.asi.device_inserted, f'‘{self.asi.dev_label}’ is inserted!'
  462. assert not self.asi.mountpoint.is_mount(), f'‘{self.asi.mountpoint}’ is mounted!'
  463. self.insert_device()
  464. while True:
  465. oqmsg_r(gray('.'))
  466. if self.asi.mountpoint.is_mount():
  467. oqmsg_r(gray(' signing '))
  468. break
  469. time.sleep(0.1)
  470. while True:
  471. oqmsg_r(gray('>'))
  472. if not self.asi.mountpoint.is_mount():
  473. oqmsg(gray(' done'))
  474. break
  475. time.sleep(0.1)
  476. imsg('')
  477. self.remove_device()
  478. return 'ok'
  479. def insert_device_online(self):
  480. return self.insert_device(asi='asi_online')
  481. def remove_device_online(self):
  482. return self.remove_device(asi='asi_online')
  483. def do_mount_online(self, *args, **kwargs):
  484. return self._mount_ops('asi_online', 'do_mount', *args, **kwargs)
  485. def do_umount_online(self, *args, **kwargs):
  486. return self._mount_ops('asi_online', 'do_umount', *args, **kwargs)
  487. async def txview(self):
  488. self.spawn(msg_only=True)
  489. self.insert_device()
  490. self.do_mount()
  491. src = Path(self.asi.txauto_dir)
  492. from mmgen.tx import CompletedTX
  493. txs = sorted(
  494. [await CompletedTX(cfg=cfg, filename=path, quiet_open=True) for path in sorted(src.iterdir())],
  495. key = lambda x: x.timestamp)
  496. for tx in txs:
  497. imsg(blue(f'\nViewing ‘{tx.infile.name}’:'))
  498. out = tx.info.format(terse=True)
  499. imsg(indent(out, indent=' '))
  500. self.do_umount()
  501. self.remove_device()
  502. return 'ok'
  503. class CmdTestAutosign(CmdTestAutosignBase):
  504. 'autosigning transactions for all supported coins'
  505. coins = ['btc', 'bch', 'ltc', 'eth']
  506. daemon_coins = ['btc', 'bch', 'ltc']
  507. txfile_coins = ['btc', 'bch', 'ltc', 'eth', 'mm1', 'etc']
  508. have_online = False
  509. live = False
  510. simulate_led = True
  511. no_insert_check = True
  512. filedir_map = (
  513. ('btc', ''),
  514. ('bch', ''),
  515. ('ltc', 'litecoin'),
  516. ('eth', 'ethereum'),
  517. ('mm1', 'ethereum'),
  518. ('etc', 'ethereum_classic'),
  519. )
  520. cmd_group = (
  521. ('start_daemons', 'starting daemons'),
  522. ('copy_tx_files', 'copying transaction files'),
  523. ('gen_key', 'generating key'),
  524. ('create_dfl_wallet', 'creating default MMGen wallet'),
  525. ('bad_opt1', 'running ‘mmgen-autosign’ with --seed-len in invalid context'),
  526. ('bad_opt2', 'running ‘mmgen-autosign’ with --mnemonic-fmt in invalid context'),
  527. ('bad_opt3', 'running ‘mmgen-autosign’ with --led in invalid context'),
  528. ('run_setup_dfl_wallet', 'running ‘autosign setup’ (with default wallet)'),
  529. ('sign_quiet', 'signing transactions (--quiet)'),
  530. ('remove_signed_txfiles', 'removing signed transaction files'),
  531. ('run_setup_bip39', 'running ‘autosign setup’ (BIP39 mnemonic)'),
  532. ('create_bad_txfiles', 'creating bad transaction files'),
  533. ('sign_full_summary', 'signing transactions (--full-summary)'),
  534. ('remove_signed_txfiles_btc', 'removing transaction files (BTC only)'),
  535. ('remove_bad_txfiles', 'removing bad transaction files'),
  536. ('sign_led', 'signing transactions (--led - BTC files only)'),
  537. ('remove_signed_txfiles', 'removing signed transaction files'),
  538. ('sign_stealth_led', 'signing transactions (--stealth-led)'),
  539. ('remove_signed_txfiles', 'removing signed transaction files'),
  540. ('copy_msgfiles', 'copying message files'),
  541. ('sign_quiet_msg', 'signing transactions and messages (--quiet)'),
  542. ('remove_signed_txfiles', 'removing signed transaction files'),
  543. ('create_bad_txfiles2', 'creating bad transaction files'),
  544. ('remove_signed_msgfiles', 'removing signed message files'),
  545. ('create_invalid_msgfile', 'creating invalid message file'),
  546. ('sign_full_summary_msg', 'signing transactions and messages (--full-summary)'),
  547. ('remove_invalid_msgfile', 'removing invalid message file'),
  548. ('remove_bad_txfiles2', 'removing bad transaction files'),
  549. ('sign_no_unsigned', 'signing transactions and messages (nothing to sign)'),
  550. ('sign_no_unsigned_xmr', 'signing transactions and messages (nothing to sign, with XMR)'),
  551. ('sign_no_unsigned_xmronly', 'signing transactions and messages (nothing to sign, XMR-only)'),
  552. ('wipe_key', 'wiping the wallet encryption key'),
  553. ('stop_daemons', 'stopping daemons'),
  554. ('sign_bad_no_daemon', 'signing transactions (error, no daemons running)'),
  555. )
  556. def __init__(self, trunner, cfgs, spawn):
  557. super().__init__(trunner, cfgs, spawn)
  558. if trunner is None:
  559. return
  560. if self.live and not cfg.exact_output:
  561. die(1, red('autosign_live tests must be run with --exact-output enabled!'))
  562. if self.no_insert_check:
  563. self.opts.append('--no-insert-check')
  564. self.tx_file_ops('set_count') # initialize self.tx_count here so we can resume anywhere
  565. self.bad_tx_count = 0
  566. def gen_msg_fns():
  567. fmap = dict(self.filedir_map)
  568. for coin in self.coins:
  569. if coin == 'xmr':
  570. continue
  571. sdir = os.path.join('test', 'ref', fmap[coin])
  572. for fn in os.listdir(sdir):
  573. if fn.endswith(f'[{coin.upper()}].rawmsg.json'):
  574. yield os.path.join(sdir, fn)
  575. self.ref_msgfiles = tuple(gen_msg_fns())
  576. self.good_msg_count = 0
  577. self.bad_msg_count = 0
  578. if self.simulate_led:
  579. LEDControl.create_dummy_control_files()
  580. db = LEDControl.boards['dummy']
  581. usrgrp = {'linux': 'root:root', 'darwin': 'root:wheel'}[sys.platform]
  582. for fn in (db.control, db.trigger): # trigger the auto-chmod feature
  583. run(f'sudo chmod 644 {fn}'.split(), check=True)
  584. run(f'sudo chown {usrgrp} {fn}'.split(), check=True)
  585. self.have_dummy_control_files = True
  586. self.spawn_env['MMGEN_TEST_SUITE_AUTOSIGN_LED_SIMULATE'] = '1'
  587. def gen_key(self):
  588. self.insert_device()
  589. t = self.spawn('mmgen-autosign', self.opts + ['gen_key'])
  590. t.expect_getend('Wrote key file ')
  591. t.read()
  592. self.remove_device()
  593. return t
  594. def create_dfl_wallet(self):
  595. t = self.spawn('mmgen-walletconv', [
  596. f'--outdir={cfg.data_dir}',
  597. '--usr-randchars=0', '--quiet', '--hash-preset=1', '--label=foo',
  598. 'test/ref/98831F3A.hex'
  599. ]
  600. )
  601. t.passphrase_new('new MMGen wallet', 'abc')
  602. t.written_to_file('MMGen wallet')
  603. return t
  604. def _bad_opt(self, cmdline, expect):
  605. t = self.spawn('mmgen-autosign', ['--coins=btc'] + cmdline, exit_val=1)
  606. t.expect(expect)
  607. return t
  608. def bad_opt1(self):
  609. return self._bad_opt(['--seed-len=128'], 'makes sense')
  610. def bad_opt2(self):
  611. return self._bad_opt(['--mnemonic-fmt=bip39', 'wait'], 'makes sense')
  612. def bad_opt3(self):
  613. return self._bad_opt(['--led', 'gen_key'], 'makes no sense')
  614. def run_setup_dfl_wallet(self):
  615. return self.run_setup(mn_type='default', use_dfl_wallet=True)
  616. def run_setup_bip39(self):
  617. from mmgen.cfgfile import mmgen_cfg_file
  618. fn = mmgen_cfg_file(cfg, 'usr').fn
  619. old_data = mmgen_cfg_file(cfg, 'usr').get_data(fn)
  620. new_data = [d.replace('bip39:fixed', 'bip39:full')[2:]
  621. if d.startswith('# mnemonic_entry_modes') else d for d in old_data]
  622. with open(fn, 'w') as fh:
  623. fh.write('\n'.join(new_data) + '\n')
  624. t = self.run_setup(
  625. mn_type = 'bip39',
  626. seed_len = 256,
  627. usr_entry_modes = True)
  628. with open(fn, 'w') as fh:
  629. fh.write('\n'.join(old_data) + '\n')
  630. return t
  631. def copy_tx_files(self):
  632. self.spawn(msg_only=True)
  633. return self.tx_file_ops('copy')
  634. def remove_signed_txfiles(self):
  635. self.tx_file_ops('remove_signed')
  636. return 'skip'
  637. def remove_signed_txfiles_btc(self):
  638. self.tx_file_ops('remove_signed', txfile_coins=['btc'])
  639. return 'skip'
  640. def tx_file_ops(self, op, txfile_coins=[]):
  641. assert op in ('copy', 'set_count', 'remove_signed')
  642. from .ct_ref import CmdTestRef
  643. def gen():
  644. d = CmdTestRef.sources['ref_tx_file']
  645. dirmap = [e for e in self.filedir_map if e[0] in (txfile_coins or self.txfile_coins)]
  646. for coin, coindir in dirmap:
  647. for network in (0, 1):
  648. fn = d[coin][network]
  649. if fn:
  650. yield (coindir, fn)
  651. data = list(gen()) + [('', '25EFA3[2.34].testnet.rawtx')] # TX with 2 non-MMGen outputs
  652. self.tx_count = len(data)
  653. if op == 'set_count':
  654. return
  655. self.insert_device()
  656. silence()
  657. self.do_mount(verbose=cfg.verbose or cfg.exact_output)
  658. end_silence()
  659. for coindir, fn in data:
  660. src = joinpath(ref_dir, coindir, fn)
  661. if cfg.debug_utf8:
  662. ext = '.testnet.rawtx' if fn.endswith('.testnet.rawtx') else '.rawtx'
  663. fn = fn[:-len(ext)] + '-α' + ext
  664. target = joinpath(self.asi.tx_dir, fn)
  665. if not op == 'remove_signed':
  666. shutil.copyfile(src, target)
  667. try:
  668. os.unlink(target.replace('.rawtx', '.sigtx'))
  669. except:
  670. pass
  671. self.do_umount()
  672. self.remove_device()
  673. return 'ok'
  674. def create_bad_txfiles(self):
  675. return self.bad_txfiles('create')
  676. def remove_bad_txfiles(self):
  677. return self.bad_txfiles('remove')
  678. create_bad_txfiles2 = create_bad_txfiles
  679. remove_bad_txfiles2 = remove_bad_txfiles
  680. def bad_txfiles(self, op):
  681. self.insert_device()
  682. self.do_mount()
  683. # create or delete 2 bad tx files
  684. self.spawn(msg_only=True)
  685. fns = [joinpath(self.asi.tx_dir, f'bad{n}.rawtx') for n in (1, 2)]
  686. if op == 'create':
  687. for fn in fns:
  688. with open(fn, 'w') as fp:
  689. fp.write('bad tx data\n')
  690. self.bad_tx_count = 2
  691. elif op == 'remove':
  692. for fn in fns:
  693. try:
  694. os.unlink(fn)
  695. except:
  696. pass
  697. self.bad_tx_count = 0
  698. self.do_umount()
  699. self.remove_device()
  700. return 'ok'
  701. def copy_msgfiles(self):
  702. return self.msgfile_ops('copy')
  703. def remove_signed_msgfiles(self):
  704. return self.msgfile_ops('remove_signed')
  705. def create_invalid_msgfile(self):
  706. return self.msgfile_ops('create_invalid')
  707. def remove_invalid_msgfile(self):
  708. return self.msgfile_ops('remove_invalid')
  709. def msgfile_ops(self, op):
  710. self.spawn(msg_only=True)
  711. destdir = joinpath(self.asi.mountpoint, 'msg')
  712. self.insert_device()
  713. self.do_mount()
  714. os.makedirs(destdir, exist_ok=True)
  715. if op.endswith('_invalid'):
  716. fn = os.path.join(destdir, 'DEADBE[BTC].rawmsg.json')
  717. if op == 'create_invalid':
  718. with open(fn, 'w') as fp:
  719. fp.write('bad data\n')
  720. self.bad_msg_count += 1
  721. elif op == 'remove_invalid':
  722. os.unlink(fn)
  723. self.bad_msg_count -= 1
  724. else:
  725. for fn in self.ref_msgfiles:
  726. if op == 'copy':
  727. if os.path.basename(fn) == 'ED405C[BTC].rawmsg.json': # contains bad Seed ID
  728. self.bad_msg_count += 1
  729. else:
  730. self.good_msg_count += 1
  731. imsg(f'Copying: {fn} -> {destdir}')
  732. shutil.copy2(fn, destdir)
  733. elif op == 'remove_signed':
  734. os.unlink(os.path.join(destdir, os.path.basename(fn).replace('rawmsg', 'sigmsg')))
  735. self.do_umount()
  736. self.remove_device()
  737. return 'ok'
  738. def do_sign(self, args=[], have_msg=False, exc_exit_val=None, expect_str=None):
  739. tx_desc = Signable.transaction.desc
  740. self.insert_device()
  741. def do_return():
  742. if expect_str:
  743. t.expect(expect_str)
  744. t.read()
  745. self.remove_device()
  746. imsg('')
  747. return t
  748. t = self.spawn(
  749. 'mmgen-autosign',
  750. self.opts + args,
  751. exit_val = exc_exit_val or (1 if self.bad_tx_count or (have_msg and self.bad_msg_count) else None))
  752. if exc_exit_val:
  753. return do_return()
  754. t.expect(
  755. f'{self.tx_count} {tx_desc}{suf(self.tx_count)} signed' if self.tx_count else
  756. f'No unsigned {tx_desc}s')
  757. if self.bad_tx_count:
  758. t.expect(f'{self.bad_tx_count} {tx_desc}{suf(self.bad_tx_count)} failed to sign')
  759. if have_msg:
  760. t.expect(
  761. f'{self.good_msg_count} message file{suf(self.good_msg_count)}{{0,1}} signed'
  762. if self.good_msg_count else
  763. 'No unsigned message files', regex=True)
  764. if self.bad_msg_count:
  765. t.expect(
  766. f'{self.bad_msg_count} message file{suf(self.bad_msg_count)}{{0,1}} failed to sign',
  767. regex = True)
  768. return do_return()
  769. def sign_quiet(self):
  770. return self.do_sign(['--quiet'])
  771. def sign_full_summary(self):
  772. return self.do_sign(['--full-summary'])
  773. def sign_led(self):
  774. return self.do_sign(['--quiet', '--led'])
  775. def sign_stealth_led(self):
  776. return self.do_sign(['--quiet', '--stealth-led'])
  777. def sign_quiet_msg(self):
  778. return self.do_sign(['--quiet'], have_msg=True)
  779. def sign_full_summary_msg(self):
  780. return self.do_sign(['--full-summary'], have_msg=True)
  781. def sign_bad_no_daemon(self):
  782. return self.do_sign(exc_exit_val=2, expect_str='listening on the correct port')
  783. def sign_no_unsigned(self):
  784. return self._sign_no_unsigned(
  785. coins = 'BTC',
  786. present = ['non_xmr_signables'],
  787. absent = ['xmr_signables'])
  788. def sign_no_unsigned_xmr(self):
  789. if self.coins == ['btc']:
  790. return 'skip'
  791. return self._sign_no_unsigned(
  792. coins = 'XMR,BTC',
  793. present = ['xmr_signables', 'non_xmr_signables'])
  794. def sign_no_unsigned_xmronly(self):
  795. if self.coins == ['btc']:
  796. return 'skip'
  797. return self._sign_no_unsigned(
  798. coins = 'XMR',
  799. present = ['xmr_signables'],
  800. absent = ['non_xmr_signables'])
  801. def _sign_no_unsigned(self, coins, present=[], absent=[]):
  802. self.insert_device()
  803. t = self.spawn('mmgen-autosign', ['--quiet', '--no-insert-check', f'--coins={coins}'])
  804. res = t.read()
  805. self.remove_device()
  806. for signable_list in present:
  807. for signable_clsname in getattr(Signable, signable_list):
  808. desc = getattr(Signable, signable_clsname).desc
  809. assert f'No unsigned {desc}s' in res, f'‘No unsigned {desc}s’ missing in output'
  810. for signable_list in absent:
  811. for signable_clsname in getattr(Signable, signable_list):
  812. desc = getattr(Signable, signable_clsname).desc
  813. assert not f'No unsigned {desc}s' in res, f'‘No unsigned {desc}s’ should be absent in output'
  814. return t
  815. def wipe_key(self):
  816. self.insert_device()
  817. t = self.spawn('mmgen-autosign', ['--quiet', '--no-insert-check', 'wipe_key'])
  818. t.expect('Shredding')
  819. t.read()
  820. self.remove_device()
  821. return t
  822. class CmdTestAutosignBTC(CmdTestAutosign):
  823. 'autosigning BTC transactions'
  824. coins = ['btc']
  825. daemon_coins = ['btc']
  826. txfile_coins = ['btc']
  827. class CmdTestAutosignLive(CmdTestAutosignBTC):
  828. 'live autosigning BTC transactions'
  829. live = True
  830. simulate_led = False
  831. no_insert_check = False
  832. cmd_group = (
  833. ('start_daemons', 'starting daemons'),
  834. ('copy_tx_files', 'copying transaction files'),
  835. ('gen_key', 'generating key'),
  836. ('run_setup_mmgen', 'running ‘autosign setup’ (MMGen native mnemonic)'),
  837. ('sign_live', 'signing transactions'),
  838. ('create_bad_txfiles', 'creating bad transaction files'),
  839. ('sign_live_led', 'signing transactions (--led)'),
  840. ('remove_bad_txfiles', 'removing bad transaction files'),
  841. ('sign_live_stealth_led', 'signing transactions (--stealth-led)'),
  842. ('stop_daemons', 'stopping daemons'),
  843. )
  844. def __init__(self, trunner, cfgs, spawn):
  845. super().__init__(trunner, cfgs, spawn)
  846. if trunner is None:
  847. return
  848. try:
  849. LEDControl(enabled=True, simulate=self.simulate_led)
  850. except Exception as e:
  851. msg(str(e))
  852. die(2, 'LEDControl initialization failed')
  853. def run_setup_mmgen(self):
  854. return self.run_setup(mn_type='mmgen', use_dfl_wallet=None)
  855. def sign_live(self):
  856. return self.do_sign_live()
  857. def sign_live_led(self):
  858. return self.do_sign_live(['--led'], 'The LED should start blinking slowly now')
  859. def sign_live_stealth_led(self):
  860. return self.do_sign_live(['--stealth-led'], 'You should see no LED activity now')
  861. def do_sign_live(self, led_opts=None, led_msg=None):
  862. def prompt_remove():
  863. omsg_r(orange('\nExtract removable device and then hit ENTER '))
  864. input()
  865. def prompt_insert_sign(t):
  866. omsg(orange(insert_msg))
  867. t.expect(f'{self.tx_count} non-automount transactions signed')
  868. if self.bad_tx_count:
  869. t.expect(f'{self.bad_tx_count} non-automount transactions failed to sign')
  870. t.expect('Waiting')
  871. if led_opts:
  872. opts_msg = '‘' + ' '.join(led_opts) + '’'
  873. info_msg = 'Running ‘mmgen-autosign wait’ with {}. {}'.format(opts_msg, led_msg)
  874. insert_msg = 'Insert removable device and watch for fast LED activity during signing'
  875. else:
  876. opts_msg = 'no LED'
  877. info_msg = 'Running ‘mmgen-autosign wait’'
  878. insert_msg = 'Insert removable device '
  879. self.spawn(msg_only=True)
  880. self.do_umount()
  881. prompt_remove()
  882. omsg('\n' + cyan(indent(info_msg)))
  883. t = self.spawn(
  884. 'mmgen-autosign',
  885. self.opts + (led_opts or []) + ['--quiet', '--no-summary', 'wait'],
  886. no_msg = True,
  887. exit_val = 1)
  888. if not cfg.exact_output:
  889. omsg('')
  890. prompt_insert_sign(t)
  891. self.do_mount() # race condition due to device insertion detection
  892. self.remove_signed_txfiles()
  893. self.do_umount()
  894. imsg(purple('\nKilling wait loop!'))
  895. t.kill(2) # 2 = SIGINT
  896. if self.simulate_led and led_opts:
  897. t.expect('Stopping LED')
  898. return t
  899. class CmdTestAutosignLiveSimulate(CmdTestAutosignLive):
  900. 'live autosigning BTC transactions with simulated LED support'
  901. simulate_led = True