main_autosign.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2023 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. autosign: Auto-sign MMGen transactions, message files and XMR wallet output files
  20. """
  21. import sys
  22. from .cfg import Config
  23. from .util import msg,die,fmt_list,exit_if_mswin,async_run
  24. exit_if_mswin('autosigning')
  25. opts_data = {
  26. 'sets': [('stealth_led', True, 'led', True)],
  27. 'text': {
  28. 'desc': 'Auto-sign MMGen transactions, message files and XMR wallet output files',
  29. 'usage':'[opts] [operation]',
  30. 'options': """
  31. -h, --help Print this help message
  32. --, --longhelp Print help message for long options (common options)
  33. -c, --coins=c Coins to sign for (comma-separated list)
  34. -I, --no-insert-check Don’t check for device insertion
  35. -l, --led Use status LED to signal standby, busy and error
  36. -m, --mountpoint=M Specify an alternate mountpoint 'M'
  37. (default: {asi.dfl_mountpoint!r})
  38. -M, --mnemonic-fmt=F During setup, prompt for mnemonic seed phrase of format
  39. 'F' (choices: {mn_fmts}; default: {asi.dfl_mn_fmt!r})
  40. -n, --no-summary Don’t print a transaction summary
  41. -s, --stealth-led Stealth LED mode - signal busy and error only, and only
  42. after successful authorization.
  43. -S, --full-summary Print a full summary of each signed transaction after
  44. each autosign run. The default list of non-MMGen outputs
  45. will not be printed.
  46. -q, --quiet Produce quieter output
  47. -v, --verbose Produce more verbose output
  48. -w, --wallet-dir=D Specify an alternate wallet dir
  49. (default: {asi.dfl_wallet_dir!r})
  50. -x, --xmrwallets=L Range or list of wallets to be used for XMR autosigning
  51. """,
  52. 'notes': """
  53. OPERATIONS
  54. gen_key - generate the wallet encryption key and copy it to the mountpoint
  55. {asi.mountpoint!r} (as currently configured)
  56. setup - generate both wallet encryption key and temporary signing wallet
  57. wait - start in loop mode: wait-mount-sign-unmount-wait
  58. USAGE NOTES
  59. If no operation is specified, this program mounts a removable device
  60. (typically a USB flash drive) containing unsigned MMGen transactions, message
  61. files, and/or XMR wallet output files, signs them, unmounts the removable
  62. device and exits.
  63. If invoked with ‘wait’, the program waits in a loop, mounting the removable
  64. device, performing signing operations and unmounting the device every time it
  65. is inserted.
  66. On supported platforms (currently Orange Pi, Rock Pi and Raspberry Pi boards),
  67. the status LED indicates whether the program is busy or in standby mode, i.e.
  68. ready for device insertion or removal.
  69. The removable device must have a partition labeled MMGEN_TX with a user-
  70. writable root directory and a directory named ‘/tx’, where unsigned MMGen
  71. transactions are placed. Optionally, the directory ‘/msg’ may be created
  72. and unsigned message files produced by ‘mmgen-msg’ placed there.
  73. On both the signing and online machines the mountpoint ‘{asi.mountpoint}’
  74. (as currently configured) must exist and ‘/etc/fstab’ must contain the
  75. following entry:
  76. LABEL=MMGEN_TX {asi.mountpoint} auto noauto,user 0 0
  77. Signing is performed with a temporary wallet created in volatile memory in
  78. the directory ‘{asi.wallet_dir}’ (as currently configured). The wallet is
  79. encrypted with a 32-byte password saved in the file ‘autosign.key’ in the
  80. root of the removable device’s filesystem.
  81. The password and temporary wallet may be created in one operation by invoking
  82. ‘mmgen-autosign setup’ with the removable device inserted. In this case, the
  83. temporary wallet is created from the user’s default wallet, if it exists and
  84. the user so desires. If not, the user is prompted to enter a seed phrase.
  85. Alternatively, the password and temporary wallet may be created separately by
  86. first invoking ‘mmgen-autosign gen_key’ and then creating and encrypting the
  87. wallet using the -P (--passwd-file) option:
  88. $ mmgen-walletconv -iwords -d{asi.wallet_dir} -p1 -N -P{asi.mountpoint}/autosign.key -Lfoo
  89. Note that the hash preset must be ‘1’. To use a wallet file as the source
  90. instead of an MMGen seed phrase, omit the ‘-i’ option and add the wallet
  91. file path to the end of the command line. Multiple temporary wallets may
  92. be created in this way and used for signing (note, however, that for XMR
  93. operations only one wallet is supported).
  94. Autosigning is currently available only on Linux-based platforms.
  95. SECURITY NOTE
  96. By placing wallet and password on separate devices, this program creates
  97. a two-factor authentication setup whereby an attacker must gain physical
  98. control of both the removable device and signing machine in order to sign
  99. transactions. It’s therefore recommended to always keep the removable device
  100. secure, separated from the signing machine and hidden (in your pocket, for
  101. example) when not transacting. In addition, since login access on the
  102. signing machine is required to steal the user’s seed, it’s good practice
  103. to lock the signing machine’s screen once the setup process is complete.
  104. As a last resort, cutting power to the signing machine will destroy the
  105. volatile memory where the temporary wallet resides and foil any attack,
  106. even if you’ve lost control of the removable device.
  107. Always remember to power off the signing machine when your signing session
  108. is over.
  109. """
  110. },
  111. 'code': {
  112. 'options': lambda s: s.format(
  113. asi = asi,
  114. mn_fmts = fmt_list( asi.mn_fmts, fmt='no_spc' ),
  115. ),
  116. 'notes': lambda s: s.format(asi=asi)
  117. }
  118. }
  119. def main(do_loop):
  120. asi.init_led()
  121. asi.init_exit_handler()
  122. async def do():
  123. await asi.check_daemons_running()
  124. if do_loop:
  125. await asi.do_loop()
  126. else:
  127. ret = await asi.do_sign()
  128. asi.at_exit(not ret)
  129. async_run(do())
  130. from .autosign import Autosign,AutosignConfig
  131. cfg = AutosignConfig(
  132. opts_data = opts_data,
  133. init_opts = {
  134. 'quiet': True,
  135. 'out_fmt': 'wallet',
  136. 'usr_randchars': 0,
  137. 'hash_preset': '1',
  138. 'label': 'Autosign Wallet',
  139. },
  140. do_post_init = True )
  141. cmd_args = cfg._args
  142. asi = Autosign(cfg)
  143. cfg._post_init()
  144. if len(cmd_args) not in (0,1):
  145. cfg._opts.usage()
  146. if cmd_args:
  147. cmd = cmd_args[0]
  148. if cmd == 'gen_key':
  149. asi.gen_key()
  150. elif cmd == 'setup':
  151. asi.setup()
  152. from .ui import keypress_confirm
  153. if cfg.xmrwallets and keypress_confirm( cfg, '\nContinue with Monero setup?', default_yes=True ):
  154. msg('')
  155. asi.xmr_setup()
  156. elif cmd == 'wait':
  157. main(do_loop=True)
  158. else:
  159. die(1,f'{cmd!r}: unrecognized command')
  160. else:
  161. main(do_loop=False)