123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- #!/usr/bin/env python3
- #
- # MMGen Wallet, a terminal-based cryptocurrency wallet
- # Copyright (C)2013-2024 The MMGen Project <mmgen@tuta.io>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- """
- tx.sign: Sign a transaction generated by 'mmgen-txcreate'
- """
- from ..cfg import gc
- from ..util import msg,suf,fmt,die,remove_dups,get_extension
- from ..obj import MMGenList
- from ..addr import MMGenAddrType
- from ..addrlist import AddrIdxList,KeyAddrList
- from ..wallet import Wallet,get_wallet_extensions,get_wallet_cls
- saved_seeds = {}
- def get_seed_for_seed_id(sid,infiles,saved_seeds):
- if sid in saved_seeds:
- return saved_seeds[sid]
- subseeds_checked = False
- while True:
- if infiles:
- seed = Wallet(cfg, infiles.pop(0), ignore_in_fmt=True, passwd_file=global_passwd_file).seed
- elif subseeds_checked is False:
- seed = saved_seeds[list(saved_seeds)[0]].subseed_by_seed_id(sid,print_msg=True)
- subseeds_checked = True
- if not seed:
- continue
- elif cfg.in_fmt:
- cfg._util.qmsg(f'Need seed data for Seed ID {sid}')
- seed = Wallet(cfg, passwd_file=global_passwd_file).seed
- msg(f'User input produced Seed ID {seed.sid}')
- if not seed.sid == sid: # TODO: add test
- seed = seed.subseed_by_seed_id(sid,print_msg=True)
- if seed:
- saved_seeds[seed.sid] = seed
- if seed.sid == sid:
- return seed
- else:
- die(2,f'ERROR: No seed source found for Seed ID: {sid}')
- def generate_kals_for_mmgen_addrs(need_keys,infiles,saved_seeds,proto):
- mmids = [e.mmid for e in need_keys]
- sids = remove_dups((i.sid for i in mmids),quiet=True)
- cfg._util.vmsg(f"Need seed{suf(sids)}: {' '.join(sids)}")
- def gen_kals():
- for sid in sids:
- # Returns only if seed is found
- seed = get_seed_for_seed_id(sid,infiles,saved_seeds)
- for id_str in MMGenAddrType.mmtypes:
- idx_list = [i.idx for i in mmids if i.sid == sid and i.mmtype == id_str]
- if idx_list:
- yield KeyAddrList(
- cfg = cfg,
- proto = proto,
- seed = seed,
- addr_idxs = AddrIdxList(idx_list=idx_list),
- mmtype = MMGenAddrType(proto,id_str),
- skip_chksum = True )
- return MMGenList(gen_kals())
- def add_keys(tx,src,infiles=None,saved_seeds=None,keyaddr_list=None):
- need_keys = [e for e in getattr(tx,src) if e.mmid and not e.have_wif]
- if not need_keys:
- return []
- desc,src_desc = (
- ('key-address file','From key-address file:') if keyaddr_list else
- ('seed(s)','Generated from seed:') )
- cfg._util.qmsg(f'Checking {gc.proj_name} -> {tx.proto.coin} address mappings for {src} (from {desc})')
- d = (
- MMGenList([keyaddr_list]) if keyaddr_list else
- generate_kals_for_mmgen_addrs(need_keys,infiles,saved_seeds,tx.proto) )
- new_keys = []
- for e in need_keys:
- for kal in d:
- for f in kal.data:
- mmid = f'{kal.al_id}:{f.idx}'
- if mmid == e.mmid:
- if f.addr == e.addr:
- e.have_wif = True
- if src == 'inputs':
- new_keys.append(f)
- else:
- die(3,fmt(f"""
- {gc.proj_name} -> {tx.proto.coin} address mappings differ!
- {src_desc:<23} {mmid} -> {f.addr}
- {'tx file:':<23} {e.mmid} -> {e.addr}
- """).strip())
- if new_keys:
- cfg._util.vmsg(f'Added {len(new_keys)} wif key{suf(new_keys)} from {desc}')
- return new_keys
- def _pop_matching_fns(args,cmplist): # strips found args
- return list(reversed([args.pop(args.index(a)) for a in reversed(args) if get_extension(a) in cmplist]))
- def get_tx_files(cfg, args):
- from .unsigned import Unsigned, AutomountUnsigned
- ret = _pop_matching_fns(args, [(AutomountUnsigned if cfg.autosign else Unsigned).ext])
- if not ret:
- die(1,'You must specify a raw transaction file!')
- return ret
- def get_seed_files(cfg,args):
- # favor unencrypted seed sources first, as they don't require passwords
- ret = _pop_matching_fns( args, get_wallet_extensions('unenc') )
- from ..filename import find_file_in_dir
- wf = find_file_in_dir(get_wallet_cls('mmgen'),cfg.data_dir) # Make this the first encrypted ss in the list
- if wf:
- ret.append(wf)
- ret += _pop_matching_fns( args, get_wallet_extensions('enc') )
- if not (ret or cfg.mmgen_keys_from_file or cfg.keys_from_file): # or cfg.use_wallet_dat
- die(1,'You must specify a seed or key source!')
- return ret
- def get_keyaddrlist(cfg,proto):
- if cfg.mmgen_keys_from_file:
- return KeyAddrList( cfg, proto, cfg.mmgen_keys_from_file )
- return None
- def get_keylist(cfg):
- if cfg.keys_from_file:
- from ..fileutil import get_lines_from_file
- return get_lines_from_file( cfg, cfg.keys_from_file, 'key-address data', trim_comments=True )
- return None
- async def txsign(cfg_parm, tx, seed_files, kl, kal, tx_num_str='', passwd_file=None):
- keys = MMGenList() # list of AddrListEntry objects
- non_mmaddrs = tx.get_non_mmaddrs('inputs')
- global cfg, global_passwd_file
- cfg = cfg_parm
- global_passwd_file = passwd_file
- if non_mmaddrs:
- tx.check_non_mmgen_inputs(caller='txsign',non_mmaddrs=non_mmaddrs)
- tmp = KeyAddrList(
- cfg = cfg,
- proto = tx.proto,
- addrlist = non_mmaddrs,
- skip_chksum = True )
- if kl:
- tmp.add_wifs(kl)
- missing = tmp.list_missing('sec')
- if missing:
- sep = '\n '
- die(2,'ERROR: a key file must be supplied for the following non-{} address{}:{}'.format(
- gc.proj_name,
- suf(missing,'es'),
- sep + sep.join(missing) ))
- keys += tmp.data
- if cfg.mmgen_keys_from_file:
- keys += add_keys(tx,'inputs',keyaddr_list=kal)
- add_keys(tx,'outputs',keyaddr_list=kal)
- keys += add_keys(tx,'inputs',seed_files,saved_seeds)
- add_keys(tx,'outputs',seed_files,saved_seeds)
- # this (boolean) attr isn't needed in transaction file
- tx.delete_attrs('inputs','have_wif')
- tx.delete_attrs('outputs','have_wif')
- extra_sids = remove_dups(
- (s for s in saved_seeds if s not in tx.get_sids('inputs') + tx.get_sids('outputs')),
- quiet = True )
- if extra_sids:
- msg(f"Unused Seed ID{suf(extra_sids)}: {' '.join(extra_sids)}")
- return await tx.sign(tx_num_str,keys) # returns signed TX object or False
|