electrum-bitcoinprivate/electrum

392 lines
14 KiB
Plaintext
Raw Normal View History

2014-09-19 05:05:00 -07:00
#!/usr/bin/env python2
2015-02-21 03:24:40 -08:00
# -*- mode: python -*-
2011-11-04 10:00:37 -07:00
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2011 thomasv@gitorious
#
# 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/>.
from decimal import Decimal
2013-11-12 19:19:32 -08:00
import json
import os
import re
2013-11-12 19:19:32 -08:00
import sys
import time
import traceback
import threading
import socket
import Queue
from collections import defaultdict
2015-02-24 09:41:29 -08:00
script_dir = os.path.dirname(os.path.realpath(__file__))
2015-01-27 04:50:02 -08:00
is_bundle = getattr(sys, 'frozen', False)
2015-04-29 16:29:15 -07:00
is_local = not is_bundle and os.path.exists(os.path.join(script_dir, "setup-release.py"))
2013-03-12 05:48:16 -07:00
is_android = 'ANDROID_DATA' in os.environ
2015-09-07 07:44:17 -07:00
is_kivy = os.environ.get('PYTHONHOME','').find('kivy') != -1
2013-03-12 05:48:16 -07:00
2015-02-24 09:41:29 -08:00
if is_local or is_android:
sys.path.insert(0, os.path.join(script_dir, 'packages'))
2015-01-27 04:50:02 -08:00
elif is_bundle and sys.platform=='darwin':
sys.path.insert(0, os.getcwd() + "/lib/python2.7/packages")
# pure-python dependencies need to be imported here for pyinstaller
try:
2015-08-18 03:36:12 -07:00
import dns
import aes
import ecdsa
import requests
import six
import qrcode
import pbkdf2
2015-01-27 01:01:40 -08:00
import google.protobuf
except ImportError as e:
sys.exit("Error: %s. Try 'sudo pip install <module-name>'"%e.message)
2015-01-27 01:01:40 -08:00
# the following imports are for pyinstaller
from google.protobuf import descriptor
from google.protobuf import message
from google.protobuf import reflection
from google.protobuf import descriptor_pb2
2015-01-27 01:01:40 -08:00
# check that we have the correct version of ecdsa
try:
from ecdsa.ecdsa import curve_secp256k1, generator_secp256k1
except Exception:
2015-02-03 03:29:04 -08:00
sys.exit("cannot import ecdsa.curve_secp256k1. You probably need to upgrade ecdsa.\nTry: sudo pip install --upgrade ecdsa")
# load local module as electrum
if is_bundle or is_local or is_android:
import imp
2013-03-15 02:49:08 -07:00
imp.load_module('electrum', *imp.find_module('lib'))
imp.load_module('electrum_gui', *imp.find_module('gui'))
2012-02-02 23:02:12 -08:00
2014-06-05 07:29:23 -07:00
from electrum import util
2015-08-30 05:18:10 -07:00
from electrum import SimpleConfig, Network, Wallet, WalletStorage
from electrum.util import print_msg, print_error, print_stderr, json_encode, json_decode, set_verbosity, InvalidPassword
from electrum.plugins import Plugins, run_hook, always_hook
2015-06-07 08:45:13 -07:00
from electrum.commands import get_parser, known_commands, Commands, config_variables
2015-11-30 01:09:54 -08:00
from electrum.daemon import Daemon, get_daemon
# get password routine
def prompt_password(prompt, confirm=True):
import getpass
password = getpass.getpass(prompt, stream=None)
if password and confirm:
password2 = getpass.getpass("Confirm: ")
if password != password2:
sys.exit("Error: Passwords do not match.")
if not password:
password = None
return password
2013-11-12 19:19:32 -08:00
def init_gui(config, network, plugins):
gui_name = config.get('gui', 'qt')
if gui_name in ['lite', 'classic']:
gui_name = 'qt'
gui = __import__('electrum_gui.' + gui_name, fromlist=['electrum_gui'])
gui = gui.ElectrumGui(config, network, plugins)
return gui
2014-01-23 08:06:47 -08:00
2012-02-11 04:14:12 -08:00
def init_cmdline(config):
2013-11-05 09:55:53 -08:00
cmdname = config.get('cmd')
cmd = known_commands[cmdname]
2011-11-04 10:00:37 -07:00
2015-05-31 08:21:02 -07:00
if cmdname == 'signtransaction' and config.get('privkey'):
cmd.requires_wallet = False
cmd.requires_password = False
if cmdname in ['payto', 'paytomany'] and config.get('unsigned'):
2015-05-31 08:38:57 -07:00
cmd.requires_password = False
if cmdname in ['payto', 'paytomany'] and config.get('broadcast'):
cmd.requires_network = True
2015-05-31 08:38:57 -07:00
if cmdname in ['createrawtx'] and config.get('unsigned'):
cmd.requires_password = False
cmd.requires_wallet = False
# instanciate wallet for command-line
storage = WalletStorage(config.get_wallet_path())
2013-10-03 03:39:42 -07:00
if cmd.name in ['create', 'restore']:
if storage.file_exists:
sys.exit("Error: Remove the existing wallet first!")
2015-10-27 06:33:41 -07:00
def password_dialog():
return prompt_password("Password (hit return if you do not wish to encrypt your wallet):")
2013-10-03 03:39:42 -07:00
if cmd.name == 'restore':
text = config.get('text')
2015-10-28 02:36:44 -07:00
password = password_dialog() if Wallet.is_seed(text) or Wallet.is_xprv(text) or Wallet.is_private_key(text) else None
2015-10-27 06:33:41 -07:00
try:
2015-10-28 02:36:44 -07:00
wallet = Wallet.from_text(text, password, storage)
2015-10-27 06:33:41 -07:00
except BaseException as e:
sys.exit(str(e))
if not config.get('offline'):
network = Network(config)
network.start()
wallet.start_threads(network)
print_msg("Recovering wallet...")
wallet.synchronize()
wallet.wait_until_synchronized()
msg = "Recovery successful" if wallet.is_found() else "Found no history for this wallet"
else:
msg = "This wallet was restored offline. It may contain more addresses than displayed."
print_msg(msg)
else:
2015-10-27 06:33:41 -07:00
password = password_dialog()
2014-09-02 07:01:41 -07:00
wallet = Wallet(storage)
seed = wallet.make_seed()
wallet.add_seed(seed, password)
wallet.create_master_keys(password)
wallet.create_main_account(password)
wallet.synchronize()
print_msg("Your wallet generation seed is:\n\"%s\"" % seed)
print_msg("Please keep it in a safe place; if you lose it, you will not be able to restore your wallet.")
2014-04-06 12:38:53 -07:00
wallet.storage.write()
2013-11-12 19:19:32 -08:00
print_msg("Wallet saved in '%s'" % wallet.storage.path)
sys.exit(0)
2013-02-28 08:21:30 -08:00
2015-10-28 03:13:45 -07:00
if cmd.requires_wallet and not storage.file_exists:
print_msg("Error: Wallet file not found.")
print_msg("Type 'electrum create' to create a new wallet, or provide a path to a wallet with the -w option")
sys.exit(0)
# create wallet instance
wallet = Wallet(storage) if cmd.requires_wallet else None
2015-06-10 13:08:19 -07:00
# notify plugins
always_hook('cmdline_load_wallet', wallet)
# important warning
2015-08-16 07:30:55 -07:00
if cmd.name in ['getprivatekeys']:
2014-04-30 06:27:50 -07:00
print_stderr("WARNING: ALL your private keys are secret.")
print_stderr("Exposing a single private key can compromise your entire wallet!")
print_stderr("In particular, DO NOT use 'redeem private key' services proposed by third parties.")
2011-11-14 11:35:54 -08:00
# commands needing password
if cmd.requires_password and wallet.use_encryption:
if config.get('password'):
password = config.get('password')
else:
password = prompt_password('Password:', False)
if not password:
print_msg("Error: Password required")
2013-12-13 08:53:13 -08:00
sys.exit(1)
# check password
try:
seed = wallet.check_password(password)
2014-12-03 13:35:05 -08:00
except InvalidPassword:
print_msg("Error: This password does not decode this wallet.")
2013-12-13 08:53:13 -08:00
sys.exit(1)
else:
password = None
# run the command
2013-10-03 03:39:42 -07:00
if cmd.name == 'deseed':
2012-05-12 16:32:28 -07:00
if not wallet.seed:
2012-11-27 14:32:39 -08:00
print_msg("Error: This wallet has no seed")
2012-05-12 15:43:22 -07:00
else:
2013-11-01 04:40:53 -07:00
ns = wallet.storage.path + '.seedless'
2013-11-12 19:19:32 -08:00
print_msg("Warning: you are going to create a seedless wallet'\nIt will be saved in '%s'" % ns)
if raw_input("Are you sure you want to continue? (y/n) ") in ['y', 'Y', 'yes']:
2013-11-01 04:40:53 -07:00
wallet.storage.path = ns
2012-05-12 16:32:28 -07:00
wallet.seed = ''
wallet.storage.put('seed', '')
2013-02-27 09:01:58 -08:00
wallet.use_encryption = False
wallet.storage.put('use_encryption', wallet.use_encryption)
2013-11-12 19:19:32 -08:00
for k in wallet.imported_keys.keys():
wallet.imported_keys[k] = ''
wallet.storage.put('imported_keys', wallet.imported_keys)
2012-11-23 09:48:56 -08:00
print_msg("Done.")
2012-05-12 16:32:28 -07:00
else:
2012-11-27 14:32:39 -08:00
print_msg("Action canceled.")
wallet.storage.write()
sys.exit(0)
2012-05-12 16:32:28 -07:00
2013-10-03 03:39:42 -07:00
elif cmd.name == 'password':
new_password = prompt_password('New password:')
wallet.update_password(password, new_password)
wallet.storage.write()
sys.exit(0)
2015-12-01 03:00:18 -08:00
return cmd, password, wallet
2015-11-30 01:09:54 -08:00
def run_offline_command(config, cmd, wallet, password):
# arguments passed to function
args = map(lambda x: config.get(x), cmd.params)
# decode json arguments
args = map(json_decode, args)
# options
args += map(lambda x: config.get(x), cmd.options)
2015-11-30 01:09:54 -08:00
cmd_runner = Commands(config, wallet, None)
cmd_runner.password = password
func = getattr(cmd_runner, cmd.name)
result = func(*args)
return result
if __name__ == '__main__':
# make sure that certificates are here
assert os.path.exists(requests.utils.DEFAULT_CA_BUNDLE_PATH)
# on osx, delete Process Serial Number arg generated for apps launched in Finder
sys.argv = filter(lambda x: not x.startswith('-psn'), sys.argv)
# old 'help' syntax
2015-05-30 23:36:12 -07:00
if len(sys.argv)>1 and sys.argv[1] == 'help':
sys.argv.remove('help')
sys.argv.append('-h')
# read arguments from stdin pipe and prompt
for i, arg in enumerate(sys.argv):
if arg == '-':
if not sys.stdin.isatty():
sys.argv[i] = sys.stdin.read()
break
else:
raise BaseException('Cannot get argument from stdin')
elif arg == '?':
sys.argv[i] = raw_input("Enter argument:")
elif arg == ':':
sys.argv[i] = prompt_password('Enter argument (will not echo):', False)
# parse command line
parser = get_parser()
args = parser.parse_args()
# config is an object passed to the various constructors (wallet, interface, gui)
if is_android:
config_options = {
'verbose': True,
2015-09-07 07:44:17 -07:00
'cmd': 'gui',
'gui': 'kivy' if is_kivy else 'android',
2015-10-13 03:12:49 -07:00
#'auto_connect': True,
}
else:
config_options = args.__dict__
for k, v in config_options.items():
2015-06-07 08:45:13 -07:00
if v is None or (k in config_variables.get(args.cmd, {}).keys()):
config_options.pop(k)
if config_options.get('server'):
config_options['auto_connect'] = False
2015-07-06 17:15:22 -07:00
if config_options.get('portable'):
2015-05-29 21:56:45 -07:00
config_options['electrum_path'] = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'electrum_data')
set_verbosity(config_options.get('verbose'))
# check uri
uri = config_options.get('url')
if uri:
if not re.match('^bitcoin:', uri):
print_stderr('unknown command:', uri)
sys.exit(1)
config_options['url'] = uri
config = SimpleConfig(config_options)
cmd_name = config.get('cmd')
# initialize plugins.
2015-10-13 03:12:49 -07:00
gui_name = config.get('gui', 'qt') if cmd_name == 'gui' else 'cmdline'
plugins = Plugins(config, is_bundle or is_local or is_android, gui_name)
2013-02-20 04:10:32 -08:00
# run command offline
if cmd_name not in ['gui', 'daemon']:
2015-12-01 03:00:18 -08:00
cmd, password, wallet = init_cmdline(config)
if not (cmd.requires_network or cmd.requires_wallet) or config.get('offline'):
2015-11-30 01:09:54 -08:00
result = run_offline_command(config, cmd, wallet, password)
print_msg(json_encode(result))
wallet.storage.write()
sys.exit(0)
else:
config_options['password'] = password
2015-11-30 01:09:54 -08:00
server = get_daemon(config)
# daemon is running
if server is not None:
cmdname = config_options.get('cmd')
if cmdname == 'daemon':
result = server.daemon(config_options)
elif cmdname == 'gui':
result = server.gui(config_options)
else:
result = server.run_cmdline(config_options)
if type(result) in [str, unicode]:
print_msg(result)
elif type(result) is dict and result.get('error'):
print_stderr(result.get('error'))
elif result is not None:
print_msg(json_encode(result))
sys.exit(0)
# daemon is not running
if cmd_name == 'gui':
2015-10-16 14:46:53 -07:00
if not config.get('offline'):
2015-12-03 02:18:10 -08:00
network = Network(config)
2015-10-16 14:46:53 -07:00
network.start()
2015-12-03 02:18:10 -08:00
plugins.start()
2015-10-16 14:46:53 -07:00
else:
network = None
gui = init_gui(config, network, plugins)
2015-12-03 02:18:10 -08:00
daemon = Daemon(config, network, gui)
daemon.start()
gui.main()
2015-11-30 01:09:54 -08:00
sys.exit(0)
elif cmd_name == 'daemon':
subcommand = config.get('subcommand')
if subcommand in ['status', 'stop']:
print_msg("Daemon not running")
sys.exit(1)
elif subcommand == 'start':
p = os.fork()
if p == 0:
2015-12-03 02:18:10 -08:00
network = Network(config)
2015-08-30 05:18:10 -07:00
network.start()
2015-12-03 02:18:10 -08:00
plugins.start()
daemon = Daemon(config, network)
if config.get('websocket_server'):
2015-09-30 02:06:27 -07:00
from electrum import websockets
2015-11-25 01:48:34 -08:00
websockets.WebSocketServer(config, network).start()
if config.get('requests_dir'):
2015-09-30 02:06:27 -07:00
util.check_www_dir(config.get('requests_dir'))
2015-12-03 02:18:10 -08:00
daemon.start()
daemon.join()
else:
print_stderr("starting daemon (PID %d)"%p)
sys.exit(0)
else:
print_msg("syntax: electrum daemon <start|status|stop>")
sys.exit(1)
else:
print_msg("Network daemon is not running. Try 'electrum daemon start'\nIf you want to run this command offline, use the -o flag.")
sys.exit(1)