main_wallet.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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. main_wallet: Entry point for MMGen wallet-related scripts
  20. """
  21. import sys, os
  22. from .cfg import gc, Config
  23. from .color import green, yellow
  24. from .util import msg, gmsg_r, ymsg, bmsg, die, capfirst
  25. from .wallet import Wallet, get_wallet_cls
  26. usage = '[opts] [infile]'
  27. nargs = 1
  28. iaction = 'convert'
  29. oaction = 'convert'
  30. do_bw_note = True
  31. do_sw_note = False
  32. do_ss_note = False
  33. invoked_as = {
  34. 'mmgen-walletgen': 'gen',
  35. 'mmgen-walletconv': 'conv',
  36. 'mmgen-walletchk': 'chk',
  37. 'mmgen-passchg': 'passchg',
  38. 'mmgen-subwalletgen': 'subgen',
  39. 'mmgen-seedsplit': 'seedsplit',
  40. }[gc.prog_name]
  41. dsw = f'the default or specified {gc.proj_name} wallet'
  42. if invoked_as == 'gen':
  43. desc = f'Generate an {gc.proj_name} wallet from a random seed'
  44. usage = '[opts]'
  45. oaction = 'output'
  46. nargs = 0
  47. elif invoked_as == 'conv':
  48. desc = 'Convert ' + dsw + ' from one format to another'
  49. elif invoked_as == 'chk':
  50. desc = 'Check validity of ' + dsw
  51. iaction = 'input'
  52. elif invoked_as == 'passchg':
  53. desc = 'Change the passphrase, hash preset or label of ' + dsw
  54. iaction = 'input'
  55. do_bw_note = False
  56. elif invoked_as == 'subgen':
  57. desc = 'Generate a subwallet from ' + dsw
  58. usage = '[opts] [infile] <Subseed Index>'
  59. iaction = 'input'
  60. oaction = 'output'
  61. do_sw_note = True
  62. elif invoked_as == 'seedsplit':
  63. desc = 'Generate a seed share from ' + dsw
  64. usage = '[opts] [infile] [<Split ID String>:]<index>:<share count>'
  65. iaction = 'input'
  66. oaction = 'output'
  67. do_ss_note = True
  68. opts_data = {
  69. 'filter_codes': {
  70. # Write In-fmt Out-fmt Keep-pass Force-update Master-share passwd-file-New-only
  71. 'chk': ['-', 'i'],
  72. 'conv': ['-', 'w', 'i', 'o', 'k', 'n'],
  73. 'gen': ['-', 'w', 'o'],
  74. 'passchg': ['-', 'w', 'i', 'k', 'f', 'n'],
  75. 'seedsplit': ['-', 'w', 'i', 'o', 'm', 'n'],
  76. 'subgen': ['-', 'w', 'i', 'o', 'k', 'n'],
  77. }[invoked_as],
  78. 'text': {
  79. 'desc': desc,
  80. 'usage': usage,
  81. 'options': """
  82. -- -h, --help Print this help message
  83. -- --, --longhelp Print help message for long (global) options
  84. -w -d, --outdir= d Output files to directory 'd' instead of working dir
  85. -- -e, --echo-passphrase Echo passphrases and other user input to screen
  86. -f -f, --force-update Force update of wallet even if nothing has changed
  87. -i -i, --in-fmt= f {iaction} from wallet format 'f' (see FMT CODES below)
  88. -o -o, --out-fmt= f {oaction} to wallet format 'f' (see FMT CODES below)
  89. -i -H, --hidden-incog-input-params=f,o Read hidden incognito data from file
  90. + 'f' at offset 'o' (comma-separated)
  91. -o -J, --hidden-incog-output-params=f,o Write hidden incognito data to file
  92. + 'f' at offset 'o' (comma-separated). File 'f' will be
  93. + created if necessary and filled with random data.
  94. -i -O, --old-incog-fmt Specify old-format incognito input
  95. -k -k, --keep-passphrase Reuse passphrase of input wallet for output wallet
  96. -k -K, --keep-hash-preset Reuse hash preset of input wallet for output wallet
  97. -- -l, --seed-len= l Specify wallet seed length of 'l' bits. This option
  98. + is required only for brainwallet and incognito inputs
  99. + with non-standard (< {dsl}-bit) seed lengths.
  100. -w -L, --label= l Specify a label 'l' for output wallet
  101. -k -m, --keep-label Reuse label of input wallet for output wallet
  102. -m -M, --master-share=i Use a master share with index 'i' (min:{ms_min}, max:{ms_max})
  103. -- -p, --hash-preset= p Use the scrypt hash parameters defined by preset 'p'
  104. + for password hashing (default: '{gc.dfl_hash_preset}')
  105. -- -z, --show-hash-presets Show information on available hash presets
  106. -- -P, --passwd-file= f Get wallet passphrase from file 'f'
  107. -n -N, --passwd-file-new-only Use passwd file only for new, not existing, wallet
  108. -- -q, --quiet Produce quieter output; suppress some warnings
  109. -- -r, --usr-randchars=n Get 'n' characters of additional randomness from user
  110. + (min={cfg.min_urandchars}, max={cfg.max_urandchars}, default={cfg.usr_randchars})
  111. -w -S, --stdout Write wallet data to stdout instead of file
  112. -- -v, --verbose Produce more verbose output
  113. """,
  114. 'notes': """
  115. {n_ss}{n_sw}{n_pw}{n_bw}
  116. {f}
  117. """
  118. },
  119. 'code': {
  120. 'options': lambda cfg, help_notes, s: s.format(
  121. iaction = capfirst(iaction),
  122. oaction = capfirst(oaction),
  123. ms_min = help_notes('MasterShareIdx').min_val,
  124. ms_max = help_notes('MasterShareIdx').max_val,
  125. dsl = help_notes('dfl_seed_len'),
  126. cfg = cfg,
  127. gc = gc,
  128. ),
  129. 'notes': lambda cfg, help_mod, help_notes, s: s.format(
  130. f = help_notes('fmt_codes'),
  131. n_ss = ('', help_mod('seedsplit')+'\n\n')[do_ss_note],
  132. n_sw = ('', help_mod('subwallet')+'\n\n')[do_sw_note],
  133. n_pw = help_notes('passwd'),
  134. n_bw = ('', '\n\n'+help_notes('brainwallet'))[do_bw_note]
  135. )
  136. }
  137. }
  138. cfg = Config(opts_data=opts_data, need_proto=False)
  139. cmd_args = cfg._args
  140. if invoked_as == 'subgen':
  141. from .subseed import SubSeedIdx
  142. ss_idx = SubSeedIdx(cmd_args.pop())
  143. elif invoked_as == 'seedsplit':
  144. from .obj import get_obj
  145. from .seedsplit import SeedSplitSpecifier, MasterShareIdx
  146. master_share = MasterShareIdx(cfg.master_share) if cfg.master_share else None
  147. if cmd_args:
  148. sss = get_obj(SeedSplitSpecifier, s=cmd_args.pop(), silent=True)
  149. if master_share:
  150. if not sss:
  151. sss = SeedSplitSpecifier('1:2')
  152. elif sss.idx == 1:
  153. m1 = 'Share index of 1 meaningless in master share context.'
  154. m2 = 'To generate a master share, omit the seed split specifier.'
  155. die(1, m1+' '+m2)
  156. elif not sss:
  157. cfg._usage()
  158. elif master_share:
  159. sss = SeedSplitSpecifier('1:2')
  160. else:
  161. cfg._usage()
  162. from .fileutil import check_infile, get_seed_file
  163. if cmd_args:
  164. if invoked_as == 'gen' or len(cmd_args) > 1:
  165. cfg._usage()
  166. check_infile(cmd_args[0])
  167. sf = get_seed_file(cfg, nargs=nargs, invoked_as=invoked_as)
  168. if invoked_as != 'chk':
  169. from .ui import do_license_msg
  170. do_license_msg(cfg)
  171. if invoked_as == 'gen':
  172. ss_in = None
  173. else:
  174. ss_in = Wallet(
  175. cfg = cfg,
  176. fn = sf,
  177. passchg = invoked_as == 'passchg',
  178. passwd_file = False if cfg.passwd_file_new_only else None)
  179. m1 = green('Processing input wallet ')
  180. m2 = ss_in.seed.sid.hl()
  181. m3 = yellow(' (default wallet)') if sf and os.path.dirname(sf) == cfg.data_dir else ''
  182. msg(m1+m2+m3)
  183. if invoked_as == 'chk':
  184. lbl = ss_in.ssdata.label.hl() if hasattr(ss_in.ssdata, 'label') else 'NONE'
  185. cfg._util.vmsg(f'Wallet label: {lbl}')
  186. # TODO: display creation date
  187. sys.exit(0)
  188. if invoked_as != 'gen':
  189. gmsg_r('Processing output wallet' + ('\n', ' ')[invoked_as == 'seedsplit'])
  190. if invoked_as == 'subgen':
  191. ss_out = Wallet(
  192. cfg = cfg,
  193. seed_bin = ss_in.seed.subseed(ss_idx, print_msg=True).data)
  194. elif invoked_as == 'seedsplit':
  195. shares = ss_in.seed.split(sss.count, id_str=sss.id, master_idx=master_share)
  196. seed_out = shares.get_share_by_idx(sss.idx, base_seed=True)
  197. msg(seed_out.get_desc(ui=True))
  198. ss_out = Wallet(
  199. cfg = cfg,
  200. seed = seed_out)
  201. else:
  202. ss_out = Wallet(
  203. cfg = cfg,
  204. ss = ss_in,
  205. passchg = invoked_as == 'passchg')
  206. if invoked_as == 'gen':
  207. cfg._util.qmsg(f"This wallet's Seed ID: {ss_out.seed.sid.hl()}")
  208. if invoked_as == 'passchg':
  209. def data_changed(attrs):
  210. for attr in attrs:
  211. if getattr(ss_out.ssdata, attr) != getattr(ss_in.ssdata, attr):
  212. return True
  213. return False
  214. if not (cfg.force_update or data_changed(('passwd', 'hash_preset', 'label'))):
  215. die(1, 'Password, hash preset and label are unchanged. Taking no action')
  216. if invoked_as == 'passchg':
  217. def secure_delete(fn):
  218. bmsg('Securely deleting old wallet')
  219. from .fileutil import shred_file
  220. shred_file(fn, verbose = cfg.verbose)
  221. def rename_old_wallet_maybe(silent):
  222. # though very unlikely, old and new wallets could have same Key ID and thus same filename.
  223. # If so, rename old wallet file before deleting.
  224. old_fn = ss_in.infile.name
  225. if os.path.basename(old_fn) == ss_out._filename():
  226. if not silent:
  227. ymsg(
  228. 'Warning: diverting old wallet {old_fn!r} due to Key ID collision. ' +
  229. 'Please securely delete or move the diverted file!')
  230. os.rename(old_fn, old_fn+'.divert')
  231. return old_fn+'.divert'
  232. else:
  233. return old_fn
  234. if ss_in.infile.dirname == cfg.data_dir:
  235. from .ui import confirm_or_raise
  236. confirm_or_raise(
  237. cfg = cfg,
  238. message = yellow('Confirmation of default wallet update'),
  239. action = 'update the default wallet',
  240. exit_msg = 'Password not changed')
  241. old_wallet = rename_old_wallet_maybe(silent=True)
  242. ss_out.write_to_file(desc='New wallet', outdir=cfg.data_dir)
  243. secure_delete(old_wallet)
  244. else:
  245. old_wallet = rename_old_wallet_maybe(silent=False)
  246. ss_out.write_to_file()
  247. from .ui import keypress_confirm
  248. if keypress_confirm(cfg, f'Securely delete old wallet {old_wallet!r}?'):
  249. secure_delete(old_wallet)
  250. elif invoked_as == 'gen' and not cfg.outdir and not cfg.stdout:
  251. from .filename import find_file_in_dir
  252. if find_file_in_dir(get_wallet_cls('mmgen'), cfg.data_dir):
  253. ss_out.write_to_file()
  254. else:
  255. from .ui import keypress_confirm
  256. if keypress_confirm(
  257. cfg,
  258. 'Make this wallet your default and move it to the data directory?',
  259. default_yes = True):
  260. ss_out.write_to_file(outdir=cfg.data_dir)
  261. else:
  262. ss_out.write_to_file()
  263. else:
  264. ss_out.write_to_file()
  265. if invoked_as == 'passchg':
  266. if ss_out.ssdata.passwd == ss_in.ssdata.passwd:
  267. msg('New and old passphrases are the same')
  268. else:
  269. msg('Wallet passphrase has changed')
  270. if ss_out.ssdata.hash_preset != ss_in.ssdata.hash_preset:
  271. msg(f'Hash preset has been changed to {ss_out.ssdata.hash_preset!r}')