123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720 |
- #!/usr/bin/env python3
- #
- # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
- # Copyright (C)2013-2022 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/>.
- """
- util.py: Low-level routines imported by other modules in the MMGen suite
- """
- import sys,os,time,re
- from .color import *
- from .globalvars import g
- from .opts import opt
- import mmgen.color as color_mod
- ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
- hexdigits = '0123456789abcdefABCDEF'
- hexdigits_uc = '0123456789ABCDEF'
- hexdigits_lc = '0123456789abcdef'
- if g.platform == 'win':
- def msg_r(s):
- try:
- g.stderr.write(s)
- g.stderr.flush()
- except:
- os.write(2,s.encode())
- def msg(s):
- msg_r(s + '\n')
- def Msg_r(s):
- try:
- g.stdout.write(s)
- g.stdout.flush()
- except:
- os.write(1,s.encode())
- def Msg(s):
- Msg_r(s + '\n')
- else:
- def msg(s):
- g.stderr.write(s + '\n')
- def msg_r(s):
- g.stderr.write(s)
- g.stderr.flush()
- def Msg(s):
- g.stdout.write(s + '\n')
- def Msg_r(s):
- g.stdout.write(s)
- g.stdout.flush()
- def rmsg(s):
- msg(red(s))
- def ymsg(s):
- msg(yellow(s))
- def gmsg(s):
- msg(green(s))
- def gmsg_r(s):
- msg_r(green(s))
- def bmsg(s):
- msg(blue(s))
- def pumsg(s):
- msg(purple(s))
- def qmsg(s):
- if not opt.quiet:
- msg(s)
- def qmsg_r(s):
- if not opt.quiet:
- msg_r(s)
- def vmsg(s,force=False):
- if opt.verbose or force:
- msg(s)
- def vmsg_r(s,force=False):
- if opt.verbose or force:
- msg_r(s)
- def Vmsg(s,force=False):
- if opt.verbose or force:
- Msg(s)
- def Vmsg_r(s,force=False):
- if opt.verbose or force:
- Msg_r(s)
- def dmsg(s):
- if opt.debug:
- msg(s)
- def mmsg(*args):
- for d in args:
- Msg(repr(d))
- def mdie(*args):
- mmsg(*args)
- sys.exit(0)
- def die(ev,s='',stdout=False):
- if isinstance(ev,int):
- from .exception import MMGenSystemExit,MMGenError
- if ev <= 2:
- raise MMGenSystemExit(ev,s,stdout)
- else:
- raise MMGenError(ev,s,stdout)
- elif isinstance(ev,str):
- import mmgen.exception
- raise getattr(mmgen.exception,ev)(s)
- else:
- raise ValueError(f'{ev}: exit value must be string or int instance')
- def die_wait(delay,ev=0,s=''):
- assert isinstance(delay,int)
- assert isinstance(ev,int)
- if s:
- msg(s)
- time.sleep(delay)
- sys.exit(ev)
- def die_pause(ev=0,s=''):
- assert isinstance(ev,int)
- if s:
- msg(s)
- input('Press ENTER to exit')
- sys.exit(ev)
- def Die(ev=0,s=''):
- die(ev=ev,s=s,stdout=True)
- def pp_fmt(d):
- import pprint
- return pprint.PrettyPrinter(indent=4,compact=False).pformat(d)
- def pp_msg(d):
- msg(pp_fmt(d))
- def fmt(s,indent='',strip_char=None):
- "de-indent multiple lines of text, or indent with specified string"
- return indent + ('\n'+indent).join([l.strip(strip_char) for l in s.strip().splitlines()]) + '\n'
- def fmt_list(iterable,fmt='dfl',indent=''):
- "pretty-format a list"
- sep,lq,rq = {
- 'utf8': ("“, ”", "“", "”"),
- 'dfl': ("', '", "'", "'"),
- 'bare': (' ', '', '' ),
- 'no_quotes': (', ', '', '' ),
- 'no_spc': ("','", "'", "'"),
- 'min': (",", "'", "'"),
- 'col': ('\n'+indent, indent, '' ),
- }[fmt]
- return lq + sep.join(str(i) for i in iterable) + rq
- def list_gen(*data):
- """
- add element to list if condition is true or absent
- """
- assert type(data) in (list,tuple), f'{type(data).__name__} not in (list,tuple)'
- def gen():
- for i in data:
- assert type(i) == list, f'{type(i).__name__} != list'
- assert len(i) in (1,2), f'{len(i)} not in (1,2)'
- if len(i) == 1 or i[1]:
- yield i[0]
- return list(gen())
- def removeprefix(s,pfx): # workaround for pre-Python 3.9
- return s[len(pfx):] if s.startswith(pfx) else s
- def removesuffix(s,sfx): # workaround for pre-Python 3.9
- return s[:len(sfx)] if s.endswith(sfx) else s
- def remove_dups(iterable,edesc='element',desc='list',quiet=False,hide=False):
- """
- Remove duplicate occurrences of iterable elements, preserving first occurrence
- If iterable is a generator, return a list, else type(iterable)
- """
- ret = []
- for e in iterable:
- if e in ret:
- if not quiet:
- ymsg(f'Warning: removing duplicate {edesc} {"(hidden)" if hide else e} in {desc}')
- else:
- ret.append(e)
- return ret if type(iterable).__name__ == 'generator' else type(iterable)(ret)
- def exit_if_mswin(feature):
- if g.platform == 'win':
- die(2, capfirst(feature) + ' not supported on the MSWin / MSYS2 platform' )
- def get_keccak(cached_ret=[]):
- if not cached_ret:
- from .opts import opt
- # called in opts.init() via CoinProtocol, so must use getattr():
- if getattr(opt,'use_internal_keccak_module',False):
- qmsg('Using internal keccak module by user request')
- from .contrib.keccak import keccak_256
- else:
- try:
- from sha3 import keccak_256
- except:
- from .contrib.keccak import keccak_256
- cached_ret.append(keccak_256)
- return cached_ret[0]
- # From 'man dd':
- # c=1, w=2, b=512, kB=1000, K=1024, MB=1000*1000, M=1024*1024,
- # GB=1000*1000*1000, G=1024*1024*1024, and so on for T, P, E, Z, Y.
- bytespec_map = (
- ('c', 1),
- ('w', 2),
- ('b', 512),
- ('kB', 1000),
- ('K', 1024),
- ('MB', 1000000),
- ('M', 1048576),
- ('GB', 1000000000),
- ('G', 1073741824),
- ('TB', 1000000000000),
- ('T', 1099511627776),
- ('PB', 1000000000000000),
- ('P', 1125899906842624),
- ('EB', 1000000000000000000),
- ('E', 1152921504606846976),
- )
- def int2bytespec(n,spec,fmt,print_sym=True):
- def spec2int(spec):
- for k,v in bytespec_map:
- if k == spec:
- return v
- else:
- die('{spec}: unrecognized bytespec')
- return '{:{}f}{}'.format( n / spec2int(spec), fmt, spec if print_sym else '' )
- def parse_bytespec(nbytes):
- m = re.match(r'([0123456789.]+)(.*)',nbytes)
- if m:
- if m.group(2):
- for k,v in bytespec_map:
- if k == m.group(2):
- from decimal import Decimal
- return int(Decimal(m.group(1)) * v)
- else:
- msg("Valid byte specifiers: '{}'".format("' '".join([i[0] for i in bytespec_map])))
- elif '.' in nbytes:
- raise ValueError('fractional bytes not allowed')
- else:
- return int(nbytes)
- die(1,f'{nbytes!r}: invalid byte specifier')
- def suf(arg,suf_type='s',verb='none'):
- suf_types = {
- 'none': {
- 's': ('s', ''),
- 'es': ('es', ''),
- 'ies': ('ies','y'),
- },
- 'is': {
- 's': ('s are', ' is'),
- 'es': ('es are', ' is'),
- 'ies': ('ies are','y is'),
- },
- 'has': {
- 's': ('s have', ' has'),
- 'es': ('es have', ' has'),
- 'ies': ('ies have','y has'),
- },
- }
- if isinstance(arg,int):
- n = arg
- elif isinstance(arg,(list,tuple,set,dict)):
- n = len(arg)
- else:
- die(2,f'{arg}: invalid parameter for suf()')
- return suf_types[verb][suf_type][n == 1]
- def get_extension(fn):
- return os.path.splitext(fn)[1][1:]
- def remove_extension(fn,ext):
- a,b = os.path.splitext(fn)
- return a if b[1:] == ext else fn
- def make_chksum_N(s,nchars,sep=False):
- if isinstance(s,str):
- s = s.encode()
- if nchars%4 or not (4 <= nchars <= 64):
- return False
- from hashlib import sha256
- s = sha256(sha256(s).digest()).hexdigest().upper()
- sep = ('',' ')[bool(sep)]
- return sep.join([s[i*4:i*4+4] for i in range(nchars//4)])
- def make_chksum_8(s,sep=False):
- from .obj import HexStr
- from hashlib import sha256
- s = HexStr(sha256(sha256(s).digest()).hexdigest()[:8].upper(),case='upper')
- return '{} {}'.format(s[:4],s[4:]) if sep else s
- def make_chksum_6(s):
- from .obj import HexStr
- from hashlib import sha256
- if isinstance(s,str):
- s = s.encode()
- return HexStr(sha256(s).hexdigest()[:6])
- def is_chksum_6(s):
- return len(s) == 6 and set(s) <= set(hexdigits_lc)
- def make_iv_chksum(s):
- from hashlib import sha256
- return sha256(s).hexdigest()[:8].upper()
- def split_into_cols(col_wid,s):
- return ' '.join([s[col_wid*i:col_wid*(i+1)] for i in range(len(s)//col_wid+1)]).rstrip()
- def capfirst(s): # different from str.capitalize() - doesn't downcase any uc in string
- return s if len(s) == 0 else s[0].upper() + s[1:]
- def decode_timestamp(s):
- # tz_save = open('/etc/timezone').read().rstrip()
- os.environ['TZ'] = 'UTC'
- # os.environ['TZ'] = tz_save
- return int(time.mktime( time.strptime(s,'%Y%m%d_%H%M%S') ))
- def make_timestamp(secs=None):
- return '{:04d}{:02d}{:02d}_{:02d}{:02d}{:02d}'.format(*time.gmtime(
- int(secs) if secs != None else time.time() )[:6])
- def make_timestr(secs=None):
- return '{}-{:02d}-{:02d} {:02d}:{:02d}:{:02d}'.format(*time.gmtime(
- int(secs) if secs != None else time.time() )[:6])
- def secs_to_dhms(secs):
- hrs = secs // 3600
- return '{}{:02d}:{:02d}:{:02d} h/m/s'.format(
- ('{} day{}, '.format(hrs//24,suf(hrs//24)) if hrs > 24 else ''),
- hrs % 24,
- (secs // 60) % 60,
- secs % 60
- )
- def secs_to_hms(secs):
- return '{:02d}:{:02d}:{:02d}'.format(secs//3600, (secs//60) % 60, secs % 60)
- def secs_to_ms(secs):
- return '{:02d}:{:02d}'.format(secs//60, secs % 60)
- def is_int(s):
- try:
- int(str(s))
- return True
- except:
- return False
- def is_hex_str(s):
- return set(s) <= set(hexdigits)
- def is_hex_str_lc(s):
- return set(s) <= set(hexdigits_lc)
- def is_utf8(s):
- try: s.decode('utf8')
- except: return False
- else: return True
- def remove_whitespace(s,ws='\t\r\n '):
- return s.translate(dict((ord(e),None) for e in ws))
- def pretty_format(s,width=80,pfx=''):
- out = []
- while(s):
- if len(s) <= width:
- out.append(s)
- break
- i = s[:width].rfind(' ')
- out.append(s[:i])
- s = s[i+1:]
- return pfx + ('\n'+pfx).join(out)
- def block_format(data,gw=2,cols=8,line_nums=None,data_is_hex=False):
- assert line_nums in (None,'hex','dec'),"'line_nums' must be one of None, 'hex' or 'dec'"
- ln_fs = '{:06x}: ' if line_nums == 'hex' else '{:06}: '
- bytes_per_chunk = gw
- if data_is_hex:
- gw *= 2
- nchunks = len(data)//gw + bool(len(data)%gw)
- return ''.join(
- ('' if (line_nums == None or i % cols) else ln_fs.format(i*bytes_per_chunk))
- + data[i*gw:i*gw+gw]
- + (' ' if (not cols or (i+1) % cols) else '\n')
- for i in range(nchunks)
- ).rstrip() + '\n'
- def pretty_hexdump(data,gw=2,cols=8,line_nums=None):
- return block_format(data.hex(),gw,cols,line_nums,data_is_hex=True)
- def decode_pretty_hexdump(data):
- pat = re.compile(fr'^[{hexdigits}]+:\s+')
- lines = [pat.sub('',line) for line in data.splitlines()]
- try:
- return bytes.fromhex(''.join((''.join(lines).split())))
- except:
- msg('Data not in hexdump format')
- return False
- def strip_comment(line):
- return re.sub('#.*','',line).rstrip()
- def strip_comments(lines):
- pat = re.compile('#.*')
- return [m for m in [pat.sub('',l).rstrip() for l in lines] if m != '']
- def compare_chksums(chk1,desc1,chk2,desc2,hdr='',die_on_fail=False,verbose=False):
- if not chk1 == chk2:
- fs = "{} ERROR: {} checksum ({}) doesn't match {} checksum ({})"
- m = fs.format((hdr+':\n ' if hdr else 'CHECKSUM'),desc2,chk2,desc1,chk1)
- if die_on_fail:
- die(3,m)
- else:
- vmsg(m,force=verbose)
- return False
- vmsg(f'{capfirst(desc1)} checksum OK ({chk1})')
- return True
- def compare_or_die(val1, desc1, val2, desc2, e='Error'):
- if val1 != val2:
- die(3,f"{e}: {desc2} ({val2}) doesn't match {desc1} ({val1})")
- dmsg(f'{capfirst(desc2)} OK ({val2})')
- return True
- def check_wallet_extension(fn):
- from .wallet import get_wallet_data
- get_wallet_data( ext=get_extension(fn), die_on_fail=True ) # raises exception on failure
- def make_full_path(outdir,outfile):
- return os.path.normpath(os.path.join(outdir, os.path.basename(outfile)))
- def confirm_or_raise(message,action,expect='YES',exit_msg='Exiting at user request'):
- if message:
- msg(message)
- if line_input(
- (f'{action} ' if action[0].isupper() else f'Are you sure you want to {action}?\n') +
- f'Type uppercase {expect!r} to confirm: '
- ).strip() != expect:
- die( 'UserNonConfirmation', exit_msg )
- def get_words_from_user(prompt):
- words = line_input(prompt, echo=opt.echo_passphrase).split()
- dmsg('Sanitized input: [{}]'.format(' '.join(words)))
- return words
- def get_data_from_user(desc='data'): # user input MUST be UTF-8
- data = line_input(f'Enter {desc}: ',echo=opt.echo_passphrase)
- dmsg(f'User input: [{data}]')
- return data
- class oneshot_warning:
- color = 'nocolor'
- def __init__(self,div=None,fmt_args=[],reverse=False):
- self.do(type(self),div,fmt_args,reverse)
- def do(self,wcls,div,fmt_args,reverse):
- def do_warning():
- message = getattr(wcls,'message')
- color = getattr( color_mod, getattr(wcls,'color') )
- msg(color('WARNING: ' + message.format(*fmt_args)))
- if not hasattr(wcls,'data'):
- setattr(wcls,'data',[])
- data = getattr(wcls,'data')
- condition = (div in data) if reverse else (not div in data)
- if not div in data:
- data.append(div)
- if condition:
- do_warning()
- self.warning_shown = True
- else:
- self.warning_shown = False
- class oneshot_warning_group(oneshot_warning):
- def __init__(self,wcls,div=None,fmt_args=[],reverse=False):
- self.do(getattr(self,wcls),div,fmt_args,reverse)
- class pwfile_reuse_warning(oneshot_warning):
- message = 'Reusing passphrase from file {!r} at user request'
- def __init__(self,fn):
- oneshot_warning.__init__(self,div=fn,fmt_args=[fn],reverse=True)
- def line_input(prompt,echo=True,insert_txt=''):
- """
- multi-line prompts OK
- one-line prompts must begin at beginning of line
- empty prompts forbidden due to interactions with readline
- """
- assert prompt,'calling line_input() with an empty prompt forbidden'
- def init_readline():
- try:
- import readline
- except ImportError:
- return False
- else:
- if insert_txt:
- readline.set_startup_hook(lambda: readline.insert_text(insert_txt))
- return True
- else:
- return False
- if not sys.stdout.isatty():
- msg_r(prompt)
- prompt = ''
- from .term import kb_hold_protect
- kb_hold_protect()
- if g.test_suite_popen_spawn:
- msg(prompt)
- sys.stderr.flush()
- reply = os.read(0,4096).decode().rstrip('\n') # strip NL to mimic behavior of input()
- elif echo or not sys.stdin.isatty():
- clear_buffer = init_readline() if sys.stdin.isatty() else False
- reply = input(prompt)
- if clear_buffer:
- import readline
- readline.set_startup_hook(lambda: readline.insert_text(''))
- else:
- from getpass import getpass
- if g.platform == 'win':
- # MSWin hack - getpass('foo') doesn't flush stderr
- msg_r(prompt.strip()) # getpass('') adds a space
- sys.stderr.flush()
- reply = getpass('')
- else:
- reply = getpass(prompt)
- kb_hold_protect()
- return reply.strip()
- def keypress_confirm(prompt,default_yes=False,verbose=False,no_nl=False,complete_prompt=False):
- if not complete_prompt:
- prompt = '{} {}: '.format( prompt, '(Y/n)' if default_yes else '(y/N)' )
- nl = f'\r{" "*len(prompt)}\r' if no_nl else '\n'
- if g.accept_defaults:
- msg(prompt)
- return default_yes
- from .term import get_char
- while True:
- reply = get_char(prompt,immed_chars='yYnN').strip('\n\r')
- if not reply:
- msg_r(nl)
- return True if default_yes else False
- elif reply in 'yYnN':
- msg_r(nl)
- return True if reply in 'yY' else False
- else:
- msg_r('\nInvalid reply\n' if verbose else '\r')
- def do_pager(text):
- pagers = ['less','more']
- end_msg = '\n(end of text)\n\n'
- # --- Non-MSYS Windows code deleted ---
- # raw, chop, horiz scroll 8 chars, disable buggy line chopping in MSYS
- os.environ['LESS'] = (('--shift 8 -RS'),('-cR -#1'))[g.platform=='win']
- if 'PAGER' in os.environ and os.environ['PAGER'] != pagers[0]:
- pagers = [os.environ['PAGER']] + pagers
- from subprocess import run
- from .color import set_vt100
- for pager in pagers:
- try:
- m = text + ('' if pager == 'less' else end_msg)
- p = run([pager],input=m.encode(),check=True)
- msg_r('\r')
- except:
- pass
- else:
- break
- else:
- Msg(text+end_msg)
- set_vt100()
- def do_license_msg(immed=False):
- if opt.quiet or g.no_license or opt.yes or not g.stdin_tty:
- return
- import mmgen.contrib.license as gpl
- msg(gpl.warning)
- from .term import get_char
- prompt = "Press 'w' for conditions and warranty info, or 'c' to continue: "
- while True:
- reply = get_char(prompt, immed_chars=('','wc')[bool(immed)])
- if reply == 'w':
- do_pager(gpl.conditions)
- elif reply == 'c':
- msg('')
- break
- else:
- msg_r('\r')
- msg('')
- def get_subclasses(cls,names=False):
- def gen(cls):
- for i in cls.__subclasses__():
- yield i
- for j in gen(i):
- yield j
- return tuple((c.__name__ for c in gen(cls)) if names else gen(cls))
- def base_proto_subclass(cls,proto,subdir,modname,sub_clsname=None):
- """
- magic module loading and class selection
- """
- modpath = 'mmgen.base_proto.{}.{}{}'.format(
- proto.base_proto.lower(),
- subdir + '.' if subdir else '',
- modname )
- clsname = (
- proto.mod_clsname
- + ('Token' if proto.tokensym else '')
- + cls.__name__ )
- import importlib
- if sub_clsname:
- return getattr(getattr(importlib.import_module(modpath),clsname),sub_clsname)
- else:
- return getattr(importlib.import_module(modpath),clsname)
- # decorator for TrackingWallet
- def write_mode(orig_func):
- def f(self,*args,**kwargs):
- if self.mode != 'w':
- die(1,'{} opened in read-only mode: cannot execute method {}()'.format(
- type(self).__name__,
- locals()['orig_func'].__name__
- ))
- return orig_func(self,*args,**kwargs)
- return f
- def run_session(callback,backend=None):
- async def do():
- if (backend or opt.rpc_backend) == 'aiohttp':
- import aiohttp
- async with aiohttp.ClientSession(
- headers = { 'Content-Type': 'application/json' },
- connector = aiohttp.TCPConnector(limit_per_host=g.aiohttp_rpc_queue_len),
- ) as g.session:
- return await callback
- else:
- return await callback
- import asyncio
- return asyncio.run(do())
- def wrap_ripemd160(called=[]):
- if not called:
- try:
- import hashlib
- hashlib.new('ripemd160')
- except ValueError:
- def hashlib_new_wrapper(name,*args,**kwargs):
- if name == 'ripemd160':
- return ripemd160(*args,**kwargs)
- else:
- return hashlib_new(name,*args,**kwargs)
- from .contrib.ripemd160 import ripemd160
- hashlib_new = hashlib.new
- hashlib.new = hashlib_new_wrapper
- called.append(True)
|