main_autosign.py 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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. autosign: Auto-sign MMGen transactions, message files and XMR wallet output files
  20. """
  21. import sys
  22. from .util import msg, die, fmt_list, exit_if_mswin, async_run
  23. exit_if_mswin('autosigning')
  24. opts_data = {
  25. 'sets': [('stealth_led', True, 'led', True)],
  26. 'text': {
  27. 'desc': 'Auto-sign MMGen transactions, message files and XMR wallet output files',
  28. 'usage':'[opts] [operation]',
  29. 'options': """
  30. -h, --help Print this help message
  31. --, --longhelp Print help message for long (global) options
  32. -c, --coins=c Coins to sign for (comma-separated list)
  33. -I, --no-insert-check Don’t check for device insertion
  34. -l, --seed-len=N Specify wallet seed length of ‘N’ bits (for setup only)
  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. -r, --macos-ramdisk-size=S Set the size (in MB) of the ramdisk used to store
  42. the offline signing wallet(s) on macOS machines. By
  43. default, a runtime-calculated value will be used. This
  44. option is of interest only for setups with unusually
  45. large Monero wallets
  46. -s, --stealth-led Stealth LED mode - signal busy and error only, and only
  47. after successful authorization.
  48. -S, --full-summary Print a full summary of each signed transaction after
  49. each autosign run. The default list of non-MMGen outputs
  50. will not be printed.
  51. -q, --quiet Produce quieter output
  52. -v, --verbose Produce more verbose output
  53. -w, --wallet-dir=D Specify an alternate wallet dir
  54. (default: {asi.dfl_wallet_dir!r})
  55. -W, --allow-non-wallet-swap Allow signing of swap transactions that send funds
  56. to non-wallet addresses
  57. -x, --xmrwallets=L Range or list of wallets to be used for XMR autosigning
  58. """,
  59. 'notes': """
  60. OPERATIONS
  61. clean - clean the removable device of unneeded files, removing only non-
  62. essential data
  63. gen_key - generate the wallet encryption key and copy it to the removable
  64. device mounted at mountpoint ‘{asi.mountpoint}’ (as currently
  65. configured)
  66. setup - full setup: run ‘gen_key’ and create temporary signing wallet(s)
  67. for all configured coins
  68. xmr_setup - set up Monero temporary signing wallet(s). Not required during
  69. normal operation: use ‘setup’ with --xmrwallets instead
  70. macos_ramdisk_setup - set up the ramdisk used for storing the temporary signing
  71. wallet(s) (macOS only). Required only when creating the wallet(s)
  72. manually, without ‘setup’
  73. macos_ramdisk_delete - delete the macOS ramdisk
  74. disable_swap - disable disk swap to prevent potentially sensitive data in
  75. volatile memory from being swapped to disk. Applicable only when
  76. creating temporary signing wallet(s) manually, without ‘setup’
  77. enable_swap - reenable disk swap. For testing only, should not be invoked in
  78. a production environment
  79. wait - start in loop mode: wait-mount-sign-unmount-wait
  80. wipe_key - wipe the wallet encryption key on the removable device, making
  81. signing transactions or stealing the user’s seed impossible.
  82. The operation is intended as a ‘kill switch’ and thus performed
  83. without prompting
  84. USAGE NOTES
  85. If no operation is specified, this program mounts a removable device
  86. (typically a USB flash drive) containing unsigned MMGen transactions, message
  87. files, and/or XMR wallet output files, signs them, unmounts the removable
  88. device and exits.
  89. If invoked with ‘wait’, the program waits in a loop, mounting the removable
  90. device, performing signing operations and unmounting the device every time it
  91. is inserted.
  92. On supported platforms (currently Orange Pi, Rock Pi and Raspberry Pi boards),
  93. the status LED indicates whether the program is busy or in standby mode, i.e.
  94. ready for device insertion or removal.
  95. The removable device must have a partition with a filesystem labeled MMGEN_TX
  96. and a user-writable root directory. For interoperability between OS-es, it’s
  97. recommended to use the exFAT file system.
  98. On both the signing and online machines the mountpoint ‘{asi.mountpoint}’
  99. (as currently configured) must exist. Linux (not macOS) machines must have
  100. an ‘/etc/fstab’ with the following entry:
  101. LABEL=MMGEN_TX {asi.mountpoint} auto noauto,user 0 0
  102. Signing is performed with a temporary wallet created in volatile memory in
  103. the directory ‘{asi.wallet_dir}’ (as currently configured). The wallet is
  104. encrypted with a 32-byte password saved in the file ‘autosign.key’ in the
  105. root of the removable device’s filesystem.
  106. The password and temporary wallet may be created in one operation by invoking
  107. ‘mmgen-autosign setup’ with the removable device inserted. In this case, the
  108. temporary wallet is created from the user’s default wallet, if it exists and
  109. the user so desires. If not, the user is prompted to enter a seed phrase.
  110. Alternatively, the password and temporary wallet may be created separately by
  111. first invoking ‘mmgen-autosign gen_key’ and then creating and encrypting the
  112. wallet using the -P (--passwd-file) option:
  113. $ mmgen-walletconv -iwords -d{asi.wallet_dir} -p1 -N -P{asi.mountpoint}/autosign.key -Lfoo
  114. Note that the hash preset must be ‘1’. To use a wallet file as the source
  115. instead of an MMGen seed phrase, omit the ‘-i’ option and add the wallet
  116. file path to the end of the command line. Multiple temporary wallets may
  117. be created in this way and used for signing (note, however, that for XMR
  118. operations only one wallet is supported).
  119. Autosigning is currently supported on Linux and macOS only.
  120. SECURITY NOTE
  121. By placing wallet and password on separate devices, this program creates
  122. a two-factor authentication setup whereby an attacker must gain physical
  123. control of both the removable device and signing machine in order to sign
  124. transactions. It’s therefore recommended to always keep the removable device
  125. secure, separated from the signing machine and hidden (in your pocket, for
  126. example) when not transacting. In addition, since login access on the
  127. signing machine is required to steal the user’s seed, it’s good practice
  128. to lock the signing machine’s screen once the setup process is complete.
  129. As a last resort, cutting power to the signing machine will destroy the
  130. volatile memory where the temporary wallet resides and foil any attack,
  131. even if you’ve lost control of the removable device.
  132. Always remember to power off the signing machine when your signing session
  133. is over.
  134. """
  135. },
  136. 'code': {
  137. 'options': lambda s: s.format(
  138. asi = asi,
  139. mn_fmts = fmt_list(asi.mn_fmts, fmt='no_spc'),
  140. ),
  141. 'notes': lambda s: s.format(asi=asi)
  142. }
  143. }
  144. def main(do_loop):
  145. asi.init_led()
  146. asi.init_exit_handler()
  147. async def do():
  148. await asi.check_daemons_running()
  149. if do_loop:
  150. await asi.main_loop()
  151. else:
  152. ret = await asi.do_sign()
  153. asi.at_exit(not ret)
  154. async_run(do())
  155. from .cfg import Config
  156. from .autosign import Autosign
  157. cfg = Config(
  158. opts_data = opts_data,
  159. init_opts = {
  160. 'out_fmt': 'wallet',
  161. 'usr_randchars': 0,
  162. 'hash_preset': '1',
  163. 'label': 'Autosign Wallet',
  164. },
  165. caller_post_init = True)
  166. cmd = cfg._args[0] if len(cfg._args) == 1 else 'sign' if not cfg._args else cfg._usage()
  167. if cmd not in Autosign.cmds + Autosign.util_cmds:
  168. die(1, f'‘{cmd}’: unrecognized command')
  169. if cmd != 'setup':
  170. for opt in ('seed_len', 'mnemonic_fmt'):
  171. if getattr(cfg, opt):
  172. die(1, f'--{opt.replace("_", "-")} makes sense only for the ‘setup’ operation')
  173. if cmd not in ('sign', 'wait'):
  174. for opt in ('no_summary', 'led', 'stealth_led', 'full_summary'):
  175. if getattr(cfg, opt):
  176. die(1, f'--{opt.replace("_", "-")} makes no sense for the ‘{cmd}’ operation')
  177. asi = Autosign(cfg, cmd=cmd)
  178. cfg._post_init()
  179. if cmd == 'gen_key':
  180. asi.gen_key()
  181. elif cmd == 'setup':
  182. asi.setup()
  183. from .ui import keypress_confirm
  184. if cfg.xmrwallets and keypress_confirm(cfg, '\nContinue with Monero setup?', default_yes=True):
  185. msg('')
  186. asi.xmr_setup()
  187. asi.do_umount()
  188. elif cmd == 'xmr_setup':
  189. if not cfg.xmrwallets:
  190. die(1, 'Please specify a wallet or range of wallets with the --xmrwallets option')
  191. asi.do_mount()
  192. asi.xmr_setup()
  193. asi.do_umount()
  194. elif cmd.startswith('macos_ramdisk'):
  195. if sys.platform != 'darwin':
  196. die(1, f'The ‘{cmd}’ operation is for the macOS platform only')
  197. getattr(asi, cmd)()
  198. elif cmd == 'enable_swap':
  199. asi.swap.enable()
  200. elif cmd == 'disable_swap':
  201. asi.swap.disable()
  202. elif cmd == 'sign':
  203. main(do_loop=False)
  204. elif cmd == 'wait':
  205. main(do_loop=True)
  206. elif cmd == 'clean':
  207. asi.do_mount()
  208. asi.clean_old_files()
  209. asi.do_umount()
  210. elif cmd == 'wipe_key':
  211. asi.do_mount()
  212. asi.wipe_encryption_key()
  213. asi.do_umount()