passwdlist.py 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. passwdlist: Password list class for the MMGen suite
  20. """
  21. from collections import namedtuple
  22. from .util import ymsg, is_int, die
  23. from .obj import ImmutableAttr, ListItemAttr, MMGenPWIDString, TwComment
  24. from .key import PrivKey
  25. from .addr import MMGenPasswordType, AddrIdx, AddrListID
  26. from .addrlist import (
  27. AddrListChksum,
  28. AddrListIDStr,
  29. AddrListEntryBase,
  30. AddrList,
  31. )
  32. class PasswordListEntry(AddrListEntryBase):
  33. passwd = ListItemAttr(str, typeconv=False) # TODO: create Password type
  34. idx = ImmutableAttr(AddrIdx)
  35. comment = ListItemAttr(TwComment, reassign_ok=True)
  36. sec = ListItemAttr(PrivKey, include_proto=True)
  37. class PasswordList(AddrList):
  38. entry_type = PasswordListEntry
  39. main_attr = 'passwd'
  40. desc = 'password'
  41. gen_desc = 'password'
  42. gen_desc_pl = 's'
  43. gen_addrs = False
  44. gen_keys = False
  45. gen_passwds = True
  46. pw_len = None
  47. dfl_pw_fmt = 'b58'
  48. pwinfo = namedtuple('passwd_info', ['min_len', 'max_len', 'dfl_len', 'valid_lens', 'desc', 'chk_func'])
  49. pw_info = {
  50. # 32**25 < 2**128 < 32**26
  51. 'b32': pwinfo(10, 42 , 24, None, 'base32 password', 'baseconv.is_b32_str'),
  52. # 58**21 < 2**128 < 58**22
  53. 'b58': pwinfo(8, 36 , 20, None, 'base58 password', 'baseconv.is_b58_str'),
  54. 'bip39': pwinfo(12, 24 , 24, [12, 18, 24], 'BIP39 mnemonic', 'bip39.is_bip39_mnemonic'),
  55. 'xmrseed': pwinfo(25, 25, 25, [25], 'Monero new-style mnemonic', 'xmrseed.is_xmrseed'),
  56. 'hex': pwinfo(32, 64 , 64, [32, 48, 64], 'hexadecimal password', 'util.is_hex_str'),
  57. }
  58. chksum_rec_f = lambda foo, e: (str(e.idx), e.passwd)
  59. feature_warn_fs = 'WARNING: {!r} is a potentially dangerous feature. Use at your own risk!'
  60. hex2bip39 = False
  61. def __init__(
  62. self,
  63. cfg,
  64. proto,
  65. *,
  66. infile = None,
  67. seed = None,
  68. pw_idxs = None,
  69. pw_id_str = None,
  70. pw_len = None,
  71. pw_fmt = None,
  72. chk_params_only = False,
  73. skip_chksum_msg = False):
  74. self.cfg = cfg
  75. self.proto = proto # proto is ignored
  76. if not cfg.debug_addrlist:
  77. self.dmsg_sc = self.noop
  78. if infile:
  79. self.infile = infile
  80. # sets self.pw_id_str, self.pw_fmt, self.pw_len, self.chk_func:
  81. self.data = self.file.parse_file(infile)
  82. else:
  83. if not chk_params_only:
  84. for k in (seed, pw_idxs):
  85. assert k
  86. self.pw_id_str = MMGenPWIDString(pw_id_str)
  87. self.set_pw_fmt(pw_fmt)
  88. self.set_pw_len(pw_len)
  89. if chk_params_only:
  90. return
  91. if self.hex2bip39:
  92. ymsg(self.feature_warn_fs.format(pw_fmt))
  93. self.set_pw_len_vs_seed_len(seed) # sets self.bip39, self.xmrseed, self.xmrproto self.baseconv
  94. self.al_id = AddrListID(sid=seed.sid, mmtype=MMGenPasswordType(self.proto, 'P'))
  95. self.data = self.generate(seed, pw_idxs)
  96. self.num_addrs = len(self.data)
  97. self.fmt_data = ''
  98. self.chksum = AddrListChksum(self)
  99. fs = f'{self.al_id.sid}-{self.pw_id_str}-{self.pw_fmt_disp}-{self.pw_len}[{{}}]'
  100. self.id_str = AddrListIDStr(self, fmt_str=fs)
  101. if not skip_chksum_msg:
  102. self.do_chksum_msg(record=not infile)
  103. def set_pw_fmt(self, pw_fmt):
  104. if pw_fmt == 'hex2bip39':
  105. self.hex2bip39 = True
  106. self.pw_fmt = 'bip39'
  107. self.pw_fmt_disp = 'hex2bip39'
  108. else:
  109. self.pw_fmt = pw_fmt
  110. self.pw_fmt_disp = pw_fmt
  111. if self.pw_fmt not in self.pw_info:
  112. die('InvalidPasswdFormat',
  113. f'{self.pw_fmt!r}: invalid password format. Valid formats: {", ".join(self.pw_info)}')
  114. def chk_pw_len(self):
  115. assert self.pw_len, 'pw_len must be set'
  116. pw_len = self.pw_len
  117. fs = '{l}: invalid user-requested length for {b} ({c}{m})'
  118. d = self.pw_info[self.pw_fmt]
  119. if d.valid_lens:
  120. if pw_len not in d.valid_lens:
  121. die(2, fs.format(l=pw_len, b=d.desc, c='not one of ', m=d.valid_lens))
  122. elif pw_len > d.max_len:
  123. die(2, fs.format(l=pw_len, b=d.desc, c='>', m=d.max_len))
  124. elif pw_len < d.min_len:
  125. die(2, fs.format(l=pw_len, b=d.desc, c='<', m=d.min_len))
  126. def set_pw_len(self, pw_len):
  127. d = self.pw_info[self.pw_fmt]
  128. if pw_len is None:
  129. self.pw_len = d.dfl_len
  130. return
  131. if not is_int(pw_len):
  132. die(2, f'{pw_len!r}: invalid user-requested password length (not an integer)')
  133. self.pw_len = int(pw_len)
  134. self.chk_pw_len()
  135. def set_pw_len_vs_seed_len(self, seed):
  136. pf = self.pw_fmt
  137. if pf == 'hex':
  138. pw_bytes = self.pw_len // 2
  139. good_pw_len = seed.byte_len * 2
  140. elif pf == 'bip39':
  141. from .bip39 import bip39
  142. self.bip39 = bip39()
  143. pw_bytes = bip39.nwords2seedlen(self.pw_len, in_bytes=True)
  144. good_pw_len = bip39.seedlen2nwords(seed.byte_len, in_bytes=True)
  145. elif pf == 'xmrseed':
  146. from .xmrseed import xmrseed
  147. from .protocol import init_proto
  148. self.xmrseed = xmrseed()
  149. self.xmrproto = init_proto(self.cfg, 'xmr')
  150. pw_bytes = xmrseed().seedlen_map_rev[self.pw_len]
  151. try:
  152. good_pw_len = xmrseed().seedlen_map[seed.byte_len]
  153. except:
  154. die(1, f'{seed.byte_len*8}: unsupported seed length for Monero new-style mnemonic')
  155. elif pf in ('b32', 'b58'):
  156. pw_int = (32 if pf == 'b32' else 58) ** self.pw_len
  157. pw_bytes = pw_int.bit_length() // 8
  158. from .baseconv import baseconv
  159. self.baseconv = baseconv(self.pw_fmt)
  160. good_pw_len = len(baseconv(pf).frombytes(b'\xff'*seed.byte_len))
  161. else:
  162. raise NotImplementedError(f'{pf!r}: unknown password format')
  163. if pw_bytes > seed.byte_len:
  164. die(1,
  165. f'Cannot generate passwords with more entropy than underlying seed! ({len(seed.data)*8} bits)\n' +
  166. (f'Re-run the command with --passwd-len={good_pw_len}' if pf in ('bip39', 'hex') else
  167. 'Re-run the command, specifying a password length of {} or less')
  168. )
  169. if pf in ('bip39', 'hex') and pw_bytes < seed.byte_len:
  170. from .ui import keypress_confirm
  171. keypress_confirm(
  172. self.cfg,
  173. f'WARNING: requested {self.pw_info[pf].desc} length has less entropy ' +
  174. 'than underlying seed!\nIs this what you want?',
  175. default_yes = True,
  176. do_exit = True)
  177. def gen_passwd(self, secbytes):
  178. assert self.pw_fmt in self.pw_info
  179. if self.pw_fmt == 'hex':
  180. # take most significant part
  181. return secbytes.hex()[:self.pw_len]
  182. elif self.pw_fmt == 'bip39':
  183. pw_len_bytes = self.bip39.nwords2seedlen(self.pw_len, in_bytes=True)
  184. # take most significant part
  185. return ' '.join(self.bip39.fromhex(secbytes[:pw_len_bytes].hex()))
  186. elif self.pw_fmt == 'xmrseed':
  187. pw_len_bytes = self.xmrseed.seedlen_map_rev[self.pw_len]
  188. bytes_preproc = self.xmrproto.preprocess_key(
  189. secbytes[:pw_len_bytes], # take most significant part
  190. None)
  191. return ' '.join(self.xmrseed.frombytes(bytes_preproc))
  192. else:
  193. # take least significant part
  194. return self.baseconv.frombytes(
  195. secbytes,
  196. pad = self.pw_len,
  197. tostr = True)[-self.pw_len:]
  198. def check_format(self, pw):
  199. if not self.chk_func(pw):
  200. raise ValueError(f'Password is not valid {self.pw_info[self.pw_fmt].desc} data')
  201. pwlen = len(pw.split()) if self.pw_fmt in ('bip39', 'xmrseed') else len(pw)
  202. if pwlen != self.pw_len:
  203. raise ValueError(f'Password has incorrect length ({pwlen} != {self.pw_len})')
  204. return True
  205. def scramble_seed(self, seed):
  206. # Changing either pw_fmt or pw_len will cause a different, unrelated
  207. # set of passwords to be generated: this is what we want.
  208. # NB: In original implementation, pw_id_str was 'baseN', not 'bN'
  209. scramble_key = f'{self.pw_fmt}:{self.pw_len}:{self.pw_id_str}'
  210. if self.hex2bip39:
  211. pwlen = self.bip39.nwords2seedlen(self.pw_len, in_hex=True)
  212. scramble_key = f'hex:{pwlen}:{self.pw_id_str}'
  213. self.dmsg_sc('str', scramble_key)
  214. from .crypto import Crypto
  215. return Crypto(self.cfg).scramble_seed(seed, scramble_key.encode())