Files
pallectrum/electrum/gui/qt/__init__.py

553 lines
23 KiB
Python
Raw Normal View History

#!/usr/bin/env python
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2012 thomasv@gitorious
#
2016-02-23 11:36:42 +01:00
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
# (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
2016-02-23 11:36:42 +01:00
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
2016-02-23 11:36:42 +01:00
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import os
2014-08-06 13:15:53 +02:00
import signal
import sys
import threading
from typing import Optional, TYPE_CHECKING, List, Sequence
try:
import PyQt6
import PyQt6.QtGui
except Exception as e:
from electrum import GuiImportError
raise GuiImportError(
"Error: Could not import PyQt6. On Linux systems, "
"you may try 'sudo apt-get install python3-pyqt6'") from e
from PyQt6.QtGui import QGuiApplication
from PyQt6.QtWidgets import QApplication, QSystemTrayIcon, QWidget, QMenu, QMessageBox, QDialog
from PyQt6.QtCore import QObject, pyqtSignal, QTimer, Qt
import PyQt6.QtCore as QtCore
try:
# Preload QtMultimedia at app start, if available.
# We use QtMultimedia on some platforms for camera-handling, and
# lazy-loading it later led to some crashes. Maybe due to bugs in PyQt. (see #7725)
from PyQt6.QtMultimedia import QMediaDevices; del QMediaDevices
except ImportError as e:
pass # failure is ok; it is an optional dependency.
if sys.platform == "linux" and os.environ.get("APPIMAGE"):
# For AppImage, we default to xcb qt backend, for better support of older system.
# qt6 normally defaults to QT_QPA_PLATFORM=wayland instead of QT_QPA_PLATFORM=xcb.
# However, the wayland QPA plugin requires libwayland-client0>=1.19, which is too new
# for debian 11 or ubuntu 20.04. So instead, we default to the X11 integration (and not wayland).
# see https://bugreports.qt.io/browse/QTBUG-114635
os.environ.setdefault("QT_QPA_PLATFORM", "xcb")
from electrum.i18n import _, set_language
from electrum.plugin import run_hook
from electrum.util import (UserCancelled, profiler, send_exception_to_crash_reporter,
2025-01-23 12:58:28 +01:00
WalletFileException, get_new_wallet_name, InvalidPassword)
2019-03-04 02:08:23 +01:00
from electrum.wallet import Wallet, Abstract_Wallet
2025-01-23 12:58:28 +01:00
from electrum.wallet_db import WalletRequiresSplit, WalletRequiresUpgrade, WalletUnfinished
2019-04-26 18:52:26 +02:00
from electrum.logging import Logger
from electrum.gui import BaseElectrumGui
from electrum.simple_config import SimpleConfig
from electrum.wizard import WizardViewState
from electrum.keystore import load_keystore
from electrum.bip32 import is_xprv
2017-01-22 21:25:24 +03:00
from electrum.gui.common_qt.i18n import ElectrumTranslator
2023-08-28 11:50:24 +02:00
from .util import read_QIcon, ColorScheme, custom_message_box, MessageBoxMixin, WWLabel
2017-01-22 21:25:24 +03:00
from .main_window import ElectrumWindow
2017-03-15 12:13:20 +01:00
from .network_dialog import NetworkDialog
from .stylesheet_patcher import patch_qt_stylesheet
2019-05-07 09:10:23 +02:00
from .lightning_dialog import LightningDialog
from .exception_window import Exception_Hook
from .wizard.server_connect import QEServerConnectWizard
from .wizard.wallet import QENewWalletWizard
2019-09-09 22:19:36 +02:00
if TYPE_CHECKING:
from electrum.daemon import Daemon
from electrum.plugin import Plugins
class OpenFileEventFilter(QObject):
def __init__(self, windows: Sequence[ElectrumWindow]):
self.windows = windows
super(OpenFileEventFilter, self).__init__()
def eventFilter(self, obj, event):
if event.type() == QtCore.QEvent.Type.FileOpen:
if len(self.windows) >= 1:
self.windows[0].set_payment_identifier(event.url().toString())
return True
return False
2017-09-23 05:54:38 +02:00
class QElectrumApplication(QApplication):
new_window_signal = pyqtSignal(str, object)
quit_signal = pyqtSignal()
refresh_tabs_signal = pyqtSignal()
refresh_amount_edits_signal = pyqtSignal()
update_status_signal = pyqtSignal()
update_fiat_signal = pyqtSignal()
alias_received_signal = pyqtSignal()
2017-09-23 05:54:38 +02:00
class ElectrumGui(BaseElectrumGui, Logger):
network_dialog: Optional['NetworkDialog']
lightning_dialog: Optional['LightningDialog']
@profiler
def __init__(self, *, config: 'SimpleConfig', daemon: 'Daemon', plugins: 'Plugins'):
BaseElectrumGui.__init__(self, config=config, daemon=daemon, plugins=plugins)
2019-04-26 18:52:26 +02:00
Logger.__init__(self)
2020-05-14 18:49:18 +02:00
self.logger.info(f"Qt GUI starting up... Qt={QtCore.QT_VERSION_STR}, PyQt={QtCore.PYQT_VERSION_STR}")
# Uncomment this call to verify objects are being properly
# GC-ed when windows are closed
#network.add_jobs([DebugMem([Abstract_Wallet, SPV, Synchronizer,
# ElectrumWindow], interval=5)])
if hasattr(QtCore.Qt, "AA_ShareOpenGLContexts"):
QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_ShareOpenGLContexts)
2018-02-08 17:33:57 +01:00
if hasattr(QGuiApplication, 'setDesktopFileName'):
QGuiApplication.setDesktopFileName('electrum.desktop')
QGuiApplication.setApplicationName("Electrum")
self.gui_thread = threading.current_thread()
self.windows = [] # type: List[ElectrumWindow]
self.efilter = OpenFileEventFilter(self.windows)
2017-09-23 05:54:38 +02:00
self.app = QElectrumApplication(sys.argv)
self.app.installEventFilter(self.efilter)
self.app.setWindowIcon(read_QIcon("electrum.png"))
self.translator = ElectrumTranslator()
self.app.installTranslator(self.translator)
self._cleaned_up = False
# timer
self.timer = QTimer(self.app)
self.timer.setSingleShot(False)
self.timer.setInterval(500) # msec
2019-05-07 09:10:23 +02:00
self.network_dialog = None
self.lightning_dialog = None
self._num_wizards_in_progress = 0
self._num_wizards_lock = threading.Lock()
self.dark_icon = self.config.GUI_QT_DARK_TRAY_ICON
self.tray = None # type: Optional[QSystemTrayIcon]
self._init_tray()
self.app.new_window_signal.connect(self.start_new_window)
self.app.quit_signal.connect(self.app.quit, Qt.ConnectionType.QueuedConnection)
# maybe set dark theme
self._default_qtstylesheet = self.app.styleSheet()
self.reload_app_stylesheet()
2023-08-01 18:02:46 +02:00
# always load 2fa
self.plugins.load_internal_plugin('trustedcoin')
2023-08-01 18:02:46 +02:00
run_hook('init_qt', self)
def _init_tray(self):
self.tray = QSystemTrayIcon(self.tray_icon(), None)
self.tray.setToolTip('Electrum')
self.tray.activated.connect(self.tray_activated)
self.build_tray_menu()
self.tray.show()
def reload_app_stylesheet(self):
"""Set the Qt stylesheet and custom colors according to the user-selected
light/dark theme.
TODO this can ~almost be used to change the theme at runtime (without app restart),
except for util.ColorScheme... widgets already created with colors set using
ColorSchemeItem.as_stylesheet() and similar will not get recolored.
See e.g.
- in Coins tab, the color for "frozen" UTXOs, or
- in TxDialog, the receiving/change address colors
"""
use_dark_theme = self.config.GUI_QT_COLOR_THEME == 'dark'
if use_dark_theme:
try:
import qdarkstyle
2024-09-16 16:02:08 +00:00
self.app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt6())
except BaseException as e:
use_dark_theme = False
2019-04-26 18:52:26 +02:00
self.logger.warning(f'Error setting dark theme: {repr(e)}')
else:
self.app.setStyleSheet(self._default_qtstylesheet)
# Apply any necessary stylesheet patches
patch_qt_stylesheet(use_dark_theme=use_dark_theme)
# Even if we ourselves don't set the dark theme,
# the OS/window manager/etc might set *a dark theme*.
# Hence, try to choose colors accordingly:
ColorScheme.update_from_widget(QWidget(), force_dark=use_dark_theme)
def build_tray_menu(self):
if not self.tray:
return
# Avoid immediate GC of old menu when window closed via its action
if self.tray.contextMenu() is None:
m = QMenu()
self.tray.setContextMenu(m)
else:
m = self.tray.contextMenu()
m.clear()
2019-11-23 11:02:31 +01:00
network = self.daemon.network
if network:
m.addAction(_("Network"), self.show_network_dialog)
2020-01-09 18:21:48 +01:00
if network and network.lngossip:
2019-11-23 11:02:31 +01:00
m.addAction(_("Lightning Network"), self.show_lightning_dialog)
for window in self.windows:
2019-01-30 17:24:43 +01:00
name = window.wallet.basename()
submenu = m.addMenu(name)
submenu.addAction(_("Show/Hide"), window.show_or_hide)
submenu.addAction(_("Close"), window.close)
m.addAction(_("Dark/Light"), self.toggle_tray_icon)
m.addSeparator()
m.addAction(_("Exit Electrum"), self.app.quit)
def tray_icon(self):
if self.dark_icon:
return read_QIcon('electrum_dark_icon.png')
else:
return read_QIcon('electrum_light_icon.png')
def toggle_tray_icon(self):
if not self.tray:
return
self.dark_icon = not self.dark_icon
self.config.GUI_QT_DARK_TRAY_ICON = self.dark_icon
self.tray.setIcon(self.tray_icon())
def tray_activated(self, reason):
if reason == QSystemTrayIcon.ActivationReason.DoubleClick:
if all([w.is_hidden() for w in self.windows]):
for w in self.windows:
w.bring_to_top()
else:
for w in self.windows:
w.hide()
def _cleanup_before_exit(self):
if self._cleaned_up:
return
self._cleaned_up = True
self.app.new_window_signal.disconnect()
self.app.removeEventFilter(self.efilter)
self.efilter = None
# If there are still some open windows, try to clean them up.
for window in list(self.windows):
window.close()
window.clean_up()
2019-05-07 09:10:23 +02:00
if self.network_dialog:
self.network_dialog.close()
self.network_dialog.clean_up()
self.network_dialog = None
2019-05-07 09:10:23 +02:00
if self.lightning_dialog:
self.lightning_dialog.close()
self.lightning_dialog = None
# Shut down the timer cleanly
self.timer.stop()
self.timer = None
# clipboard persistence. see http://www.mail-archive.com/pyqt@riverbankcomputing.com/msg17328.html
event = QtCore.QEvent(QtCore.QEvent.Type.Clipboard)
self.app.sendEvent(self.app.clipboard(), event)
if self.tray:
self.tray.hide()
self.tray.deleteLater()
self.tray = None
def _maybe_quit_if_no_windows_open(self) -> None:
"""Check if there are any open windows and decide whether we should quit."""
# keep daemon running after close
if self.config.get('daemon'):
return
# check if a wizard is in progress
with self._num_wizards_lock:
if self._num_wizards_in_progress > 0 or len(self.windows) > 0:
return
self.app.quit()
2015-09-03 11:27:33 +02:00
def new_window(self, path, uri=None):
# Use a signal as can be called from daemon thread
2017-09-23 05:54:38 +02:00
self.app.new_window_signal.emit(path, uri)
2015-09-01 12:16:07 +02:00
2019-05-07 09:10:23 +02:00
def show_lightning_dialog(self):
if not self.daemon.network.has_channel_db():
2020-03-06 11:23:26 +01:00
return
2019-05-07 09:10:23 +02:00
if not self.lightning_dialog:
self.lightning_dialog = LightningDialog(self)
self.lightning_dialog.bring_to_top()
2019-11-23 11:02:31 +01:00
def show_network_dialog(self):
2019-05-07 09:10:23 +02:00
if self.network_dialog:
self.network_dialog.on_event_network_updated()
2019-05-07 09:10:23 +02:00
self.network_dialog.show()
self.network_dialog.raise_()
return
self.network_dialog = NetworkDialog(
network=self.daemon.network,
config=self.config)
2019-05-07 09:10:23 +02:00
self.network_dialog.show()
2019-03-04 02:08:23 +01:00
def _create_window_for_wallet(self, wallet):
w = ElectrumWindow(self, wallet)
self.windows.append(w)
self.build_tray_menu()
w.warn_if_testnet()
w.warn_if_watching_only()
w.require_full_encryption()
return w
def count_wizards_in_progress(func):
def wrapper(self: 'ElectrumGui', *args, **kwargs):
with self._num_wizards_lock:
self._num_wizards_in_progress += 1
try:
return func(self, *args, **kwargs)
finally:
with self._num_wizards_lock:
self._num_wizards_in_progress -= 1
self._maybe_quit_if_no_windows_open()
return wrapper
@count_wizards_in_progress
def start_new_window(
self,
path,
uri: Optional[str],
*,
app_is_starting: bool = False,
force_wizard: bool = False,
) -> Optional[ElectrumWindow]:
qt gui: more resilient startup Example log: app tries to auto-open to wallet "test_segwit_2", which has too new db version, then user manually tries to open wallet "test_segwit_3" instead, which opens okay but - immediately after - the process shuts down (due to line 383 -> line 458). ``` $ ./run_electrum -v --testnet -o 0.59 | I | simple_config.SimpleConfig | electrum directory /home/user/.electrum/testnet 0.59 | I | logging | Electrum version: 4.3.4 - https://electrum.org - https://github.com/spesmilo/electrum 0.59 | I | logging | Python version: 3.10.6 (main, Nov 14 2022, 16:10:14) [GCC 11.3.0]. On platform: Linux-5.15.0-58-generic-x86_64-with-glibc2.35 0.59 | I | logging | Logging to file: /home/user/.electrum/testnet/logs/electrum_log_20230202T151759Z_220451.log 0.59 | I | logging | Log filters: verbosity '*', verbosity_shortcuts '' 0.59 | I | p/plugin.Plugins | registering hardware bitbox02: ('hardware', 'bitbox02', 'BitBox02') 0.59 | I | p/plugin.Plugins | registering hardware coldcard: ('hardware', 'coldcard', 'Coldcard Wallet') 0.59 | I | p/plugin.Plugins | registering hardware digitalbitbox: ('hardware', 'digitalbitbox', 'Digital Bitbox wallet') 0.60 | I | p/plugin.Plugins | registering hardware jade: ('hardware', 'jade', 'Jade wallet') 0.60 | I | p/plugin.Plugins | registering hardware keepkey: ('hardware', 'keepkey', 'KeepKey wallet') 0.60 | I | p/plugin.Plugins | registering hardware ledger: ('hardware', 'ledger', 'Ledger wallet') 1.74 | I | p/plugin.Plugins | loaded payserver 1.74 | I | p/plugin.Plugins | registering hardware safe_t: ('hardware', 'safe_t', 'Safe-T mini wallet') 1.74 | I | p/plugin.Plugins | registering hardware trezor: ('hardware', 'trezor', 'Trezor wallet') 1.74 | I | p/plugin.Plugins | registering wallet type ('2fa', 'trustedcoin') 1.74 | D | util.profiler | Plugins.__init__ 1.1522 sec 1.74 | I | exchange_rate.FxThread | using exchange CoinGecko 1.75 | D | util.profiler | Daemon.__init__ 0.0033 sec 1.75 | I | daemon.Daemon | starting taskgroup. 1.75 | I | daemon.Daemon | launching GUI: qt 1.75 | I | gui.qt.ElectrumGui | Qt GUI starting up... Qt=5.15.3, PyQt=5.15.6 1.75 | I | daemon.CommandsServer | now running and listening. socktype=unix, addr=/home/user/.electrum/testnet/daemon_rpc_socket Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway. 2.04 | D | util.profiler | ElectrumGui.__init__ 0.2865 sec 2.04 | I | storage.WalletStorage | wallet path /home/user/.electrum/testnet/wallets/test_segwit_2 2.13 | I | storage.WalletStorage | wallet path /home/user/.electrum/testnet/wallets/test_segwit_2 5.24 | E | gui.qt.ElectrumGui | Traceback (most recent call last): File "/home/user/wspace/electrum/electrum/gui/qt/__init__.py", line 354, in start_new_window wallet = self._start_wizard_to_select_or_create_wallet(path) File "/home/user/wspace/electrum/electrum/gui/qt/__init__.py", line 401, in _start_wizard_to_select_or_create_wallet db = WalletDB(storage.read(), manual_upgrades=False) File "/home/user/wspace/electrum/electrum/wallet_db.py", line 72, in __init__ self.load_data(raw) File "/home/user/wspace/electrum/electrum/wallet_db.py", line 102, in load_data if not self.requires_upgrade(): File "/home/user/wspace/electrum/electrum/wallet_db.py", line 153, in requires_upgrade return self.get_seed_version() < FINAL_SEED_VERSION File "/home/user/wspace/electrum/electrum/json_db.py", line 44, in wrapper return func(self, *args, **kwargs) File "/home/user/wspace/electrum/electrum/wallet_db.py", line 1035, in get_seed_version raise WalletFileException('This version of Electrum is too old to open this wallet.\n' electrum.util.WalletFileException: This version of Electrum is too old to open this wallet. (highest supported storage version: 50, version of this file: 51) 5.35 | I | storage.WalletStorage | wallet path /home/user/.electrum/testnet/wallets/wallet_20 7.90 | I | storage.WalletStorage | wallet path /home/user/.electrum/testnet/wallets/test_segwit_3 8.48 | D | util.profiler | WalletDB._load_transactions 0.0517 sec 8.48 | D | util.profiler | AddressSynchronizer.load_local_history 0.0005 sec 8.48 | D | util.profiler | AddressSynchronizer.check_history 0.0005 sec 8.70 | D | util.profiler | AddressList.update 0.0000 sec 9.00 | D | util.profiler | Deterministic_Wallet.try_detecting_internal_addresses_corruption 0.0223 sec 9.01 | D | util.profiler | ElectrumWindow.load_wallet 0.0808 sec 9.01 | I | daemon.Daemon | stop() entered. initiating shutdown 9.01 | I | gui.qt.ElectrumGui | closing GUI 9.01 | I | daemon.Daemon | stopping all wallets 9.04 | I | storage.WalletStorage | saved /home/user/.electrum/testnet/wallets/test_segwit_3 9.04 | D | util.profiler | WalletDB._write 0.0265 sec 9.04 | I | daemon.Daemon | stopping network and taskgroup 9.04 | I | daemon.Daemon | taskgroup stopped. 9.04 | I | daemon.Daemon | removing lockfile 9.04 | I | daemon.Daemon | stopped 9.08 | I | p/plugin.Plugins | stopped QThread: Destroyed while thread is still running Aborted (core dumped) ```
2023-02-02 15:25:15 +00:00
"""Raises the window for the wallet if it is open.
Otherwise, opens the wallet and creates a new window for it.
Warning: the returned window might be for a completely different wallet
than the provided path, as we allow user interaction to change the path.
"""
2019-03-04 02:08:23 +01:00
wallet = None
# Try to open with daemon first. If this succeeds, there won't be a wizard at all
# (the wallet main window will appear directly).
if not force_wizard:
try:
wallet = self.daemon.load_wallet(path, None)
2023-10-14 10:13:27 +02:00
except FileNotFoundError:
pass # open with wizard below
except InvalidPassword:
pass # open with wizard below
except WalletRequiresSplit:
pass # open with wizard below
except WalletRequiresUpgrade:
pass # open with wizard below
except WalletUnfinished:
pass # open with wizard below
except Exception as e:
self.logger.exception('')
wallet_db version 52: break non-homogeneous multisig wallets - case 1: in version 4.4.1, 4.4.2, the qml GUI wizard allowed creating multisig wallets with an old_mpk as cosigner. - case 2: in version 4.4.0, 4.4.1, 4.4.2, the qml GUI wizard allowed creating multisig wallets with mixed xpub/Ypub/Zpub. The corresponding missing input validation was a bug in the wizard, it was unintended behaviour. Validation was added in d2cf21fc2bcf79f07b7e41178cd3e4ca9e3d9f68. Note however that there might be users who created such wallet files. Re case 1 wallet files: there is no version of Electrum that allows spending from such a wallet. Coins received at addresses are not burned, however it is technically challenging to spend them. (unless the multisig can spend without needing the old_mpk cosigner in the quorum). Re case 2 wallet files: it is possible to create a corresponding spending wallet for such a multisig, however it is a bit tricky. The script type for the addresses in such a heterogeneous xpub wallet is based on the xpub_type of the first keystore. So e.g. given a wallet file [Yprv1, Zpub2] it will have sh(wsh()) scripts, and the cosigner should create a wallet file [Ypub1, Zprv2] (same order). Technically case 2 wallet files could be "fixed" automatically by converting the xpub types as part of a wallet_db upgrade. However if the wallet files also contain seeds, those cannot be converted ("standard" vs "segwit" electrum seed). Case 1 wallet files are not possible to "fix" automatically as the cosigner using the old_mpk is not bip32 based. It is unclear if there are *any* users out there affected by this. I suspect for case 1 it is very likely there are none (not many people have pre-2.0 electrum seeds which were never supported as part of a multisig who would also now try to create a multisig using them); for case 2 however there might be. This commit breaks both case 1 and case 2 wallets: these wallet files can no longer be opened in new Electrum, an error message is shown and the crash reporter opens. If any potential users opt to send crash reports, at least we will know they exist and can help them recover.
2023-05-11 13:48:54 +00:00
err_text = str(e) if isinstance(e, WalletFileException) else repr(e)
custom_message_box(icon=QMessageBox.Icon.Warning,
parent=None,
title=_('Error'),
wallet_db version 52: break non-homogeneous multisig wallets - case 1: in version 4.4.1, 4.4.2, the qml GUI wizard allowed creating multisig wallets with an old_mpk as cosigner. - case 2: in version 4.4.0, 4.4.1, 4.4.2, the qml GUI wizard allowed creating multisig wallets with mixed xpub/Ypub/Zpub. The corresponding missing input validation was a bug in the wizard, it was unintended behaviour. Validation was added in d2cf21fc2bcf79f07b7e41178cd3e4ca9e3d9f68. Note however that there might be users who created such wallet files. Re case 1 wallet files: there is no version of Electrum that allows spending from such a wallet. Coins received at addresses are not burned, however it is technically challenging to spend them. (unless the multisig can spend without needing the old_mpk cosigner in the quorum). Re case 2 wallet files: it is possible to create a corresponding spending wallet for such a multisig, however it is a bit tricky. The script type for the addresses in such a heterogeneous xpub wallet is based on the xpub_type of the first keystore. So e.g. given a wallet file [Yprv1, Zpub2] it will have sh(wsh()) scripts, and the cosigner should create a wallet file [Ypub1, Zprv2] (same order). Technically case 2 wallet files could be "fixed" automatically by converting the xpub types as part of a wallet_db upgrade. However if the wallet files also contain seeds, those cannot be converted ("standard" vs "segwit" electrum seed). Case 1 wallet files are not possible to "fix" automatically as the cosigner using the old_mpk is not bip32 based. It is unclear if there are *any* users out there affected by this. I suspect for case 1 it is very likely there are none (not many people have pre-2.0 electrum seeds which were never supported as part of a multisig who would also now try to create a multisig using them); for case 2 however there might be. This commit breaks both case 1 and case 2 wallets: these wallet files can no longer be opened in new Electrum, an error message is shown and the crash reporter opens. If any potential users opt to send crash reports, at least we will know they exist and can help them recover.
2023-05-11 13:48:54 +00:00
text=_('Cannot load wallet') + ' (1):\n' + err_text)
if isinstance(e, WalletFileException) and e.should_report_crash:
send_exception_to_crash_reporter(e)
# if app is starting, still let wizard appear
if not app_is_starting:
return
# Open a wizard window. This lets the user e.g. enter a password, or select
# a different wallet.
try:
qt init: make sure wallet file parsing errors are shown in gui Some exceptions were just killing the gui silently and not even logged. E.g.: ``` E | gui.qt.ElectrumGui | error loading wallet (or creating window for it) Traceback (most recent call last): File "/opt/electrum/electrum/gui/qt/__init__.py", line 433, in main if not self.start_new_window(path, self.config.get('url'), app_is_starting=True): File "/opt/electrum/electrum/gui/qt/__init__.py", line 307, in wrapper return func(self, *args, **kwargs) File "/opt/electrum/electrum/gui/qt/__init__.py", line 332, in start_new_window wallet = self._start_wizard_to_select_or_create_wallet(path) File "/opt/electrum/electrum/gui/qt/__init__.py", line 377, in _start_wizard_to_select_or_create_wallet db = WalletDB(storage.read(), manual_upgrades=False) File "/opt/electrum/electrum/wallet_db.py", line 73, in __init__ self.load_data(raw) File "/opt/electrum/electrum/wallet_db.py", line 104, in load_data self._after_upgrade_tasks() File "/opt/electrum/electrum/wallet_db.py", line 202, in _after_upgrade_tasks self._load_transactions() File "/opt/electrum/electrum/util.py", line 439, in <lambda> return lambda *args, **kw_args: do_profile(args, kw_args) File "/opt/electrum/electrum/util.py", line 435, in do_profile o = func(*args, **kw_args) File "/opt/electrum/electrum/wallet_db.py", line 1310, in _load_transactions self.data = StoredDict(self.data, self, []) File "/opt/electrum/electrum/json_db.py", line 79, in __init__ self.__setitem__(k, v) File "/opt/electrum/electrum/json_db.py", line 44, in wrapper return func(self, *args, **kwargs) File "/opt/electrum/electrum/json_db.py", line 97, in __setitem__ v = self.db._convert_dict(self.path, key, v) File "/opt/electrum/electrum/wallet_db.py", line 1361, in _convert_dict v = dict((k, SwapData(**x)) for k, x in v.items()) ```
2022-03-15 14:23:30 +01:00
if not wallet:
wallet = self._start_wizard_to_select_or_create_wallet(path)
if not wallet:
return
# create or raise window
2019-03-04 02:20:34 +01:00
for window in self.windows:
if window.wallet.storage.path == wallet.storage.path:
break
else:
2019-03-04 02:20:34 +01:00
window = self._create_window_for_wallet(wallet)
except UserCancelled:
return
except Exception as e:
2019-04-26 18:52:26 +02:00
self.logger.exception('')
wallet_db version 52: break non-homogeneous multisig wallets - case 1: in version 4.4.1, 4.4.2, the qml GUI wizard allowed creating multisig wallets with an old_mpk as cosigner. - case 2: in version 4.4.0, 4.4.1, 4.4.2, the qml GUI wizard allowed creating multisig wallets with mixed xpub/Ypub/Zpub. The corresponding missing input validation was a bug in the wizard, it was unintended behaviour. Validation was added in d2cf21fc2bcf79f07b7e41178cd3e4ca9e3d9f68. Note however that there might be users who created such wallet files. Re case 1 wallet files: there is no version of Electrum that allows spending from such a wallet. Coins received at addresses are not burned, however it is technically challenging to spend them. (unless the multisig can spend without needing the old_mpk cosigner in the quorum). Re case 2 wallet files: it is possible to create a corresponding spending wallet for such a multisig, however it is a bit tricky. The script type for the addresses in such a heterogeneous xpub wallet is based on the xpub_type of the first keystore. So e.g. given a wallet file [Yprv1, Zpub2] it will have sh(wsh()) scripts, and the cosigner should create a wallet file [Ypub1, Zprv2] (same order). Technically case 2 wallet files could be "fixed" automatically by converting the xpub types as part of a wallet_db upgrade. However if the wallet files also contain seeds, those cannot be converted ("standard" vs "segwit" electrum seed). Case 1 wallet files are not possible to "fix" automatically as the cosigner using the old_mpk is not bip32 based. It is unclear if there are *any* users out there affected by this. I suspect for case 1 it is very likely there are none (not many people have pre-2.0 electrum seeds which were never supported as part of a multisig who would also now try to create a multisig using them); for case 2 however there might be. This commit breaks both case 1 and case 2 wallets: these wallet files can no longer be opened in new Electrum, an error message is shown and the crash reporter opens. If any potential users opt to send crash reports, at least we will know they exist and can help them recover.
2023-05-11 13:48:54 +00:00
err_text = str(e) if isinstance(e, WalletFileException) else repr(e)
custom_message_box(icon=QMessageBox.Icon.Warning,
parent=None,
title=_('Error'),
wallet_db version 52: break non-homogeneous multisig wallets - case 1: in version 4.4.1, 4.4.2, the qml GUI wizard allowed creating multisig wallets with an old_mpk as cosigner. - case 2: in version 4.4.0, 4.4.1, 4.4.2, the qml GUI wizard allowed creating multisig wallets with mixed xpub/Ypub/Zpub. The corresponding missing input validation was a bug in the wizard, it was unintended behaviour. Validation was added in d2cf21fc2bcf79f07b7e41178cd3e4ca9e3d9f68. Note however that there might be users who created such wallet files. Re case 1 wallet files: there is no version of Electrum that allows spending from such a wallet. Coins received at addresses are not burned, however it is technically challenging to spend them. (unless the multisig can spend without needing the old_mpk cosigner in the quorum). Re case 2 wallet files: it is possible to create a corresponding spending wallet for such a multisig, however it is a bit tricky. The script type for the addresses in such a heterogeneous xpub wallet is based on the xpub_type of the first keystore. So e.g. given a wallet file [Yprv1, Zpub2] it will have sh(wsh()) scripts, and the cosigner should create a wallet file [Ypub1, Zprv2] (same order). Technically case 2 wallet files could be "fixed" automatically by converting the xpub types as part of a wallet_db upgrade. However if the wallet files also contain seeds, those cannot be converted ("standard" vs "segwit" electrum seed). Case 1 wallet files are not possible to "fix" automatically as the cosigner using the old_mpk is not bip32 based. It is unclear if there are *any* users out there affected by this. I suspect for case 1 it is very likely there are none (not many people have pre-2.0 electrum seeds which were never supported as part of a multisig who would also now try to create a multisig using them); for case 2 however there might be. This commit breaks both case 1 and case 2 wallets: these wallet files can no longer be opened in new Electrum, an error message is shown and the crash reporter opens. If any potential users opt to send crash reports, at least we will know they exist and can help them recover.
2023-05-11 13:48:54 +00:00
text=_('Cannot load wallet') + '(2) :\n' + err_text)
if isinstance(e, WalletFileException) and e.should_report_crash:
send_exception_to_crash_reporter(e)
if app_is_starting:
# If we raise in this context, there are no more fallbacks, we will shut down.
# Worst case scenario, we might have gotten here without user interaction,
# in which case, if we raise now without user interaction, the same sequence of
# events is likely to repeat when the user restarts the process.
# So we play it safe: clear path, clear uri, force a wizard to appear.
try:
wallet_dir = os.path.dirname(path)
filename = get_new_wallet_name(wallet_dir)
except OSError:
path = self.config.get_fallback_wallet_path()
else:
path = os.path.join(wallet_dir, filename)
qt gui: more resilient startup Example log: app tries to auto-open to wallet "test_segwit_2", which has too new db version, then user manually tries to open wallet "test_segwit_3" instead, which opens okay but - immediately after - the process shuts down (due to line 383 -> line 458). ``` $ ./run_electrum -v --testnet -o 0.59 | I | simple_config.SimpleConfig | electrum directory /home/user/.electrum/testnet 0.59 | I | logging | Electrum version: 4.3.4 - https://electrum.org - https://github.com/spesmilo/electrum 0.59 | I | logging | Python version: 3.10.6 (main, Nov 14 2022, 16:10:14) [GCC 11.3.0]. On platform: Linux-5.15.0-58-generic-x86_64-with-glibc2.35 0.59 | I | logging | Logging to file: /home/user/.electrum/testnet/logs/electrum_log_20230202T151759Z_220451.log 0.59 | I | logging | Log filters: verbosity '*', verbosity_shortcuts '' 0.59 | I | p/plugin.Plugins | registering hardware bitbox02: ('hardware', 'bitbox02', 'BitBox02') 0.59 | I | p/plugin.Plugins | registering hardware coldcard: ('hardware', 'coldcard', 'Coldcard Wallet') 0.59 | I | p/plugin.Plugins | registering hardware digitalbitbox: ('hardware', 'digitalbitbox', 'Digital Bitbox wallet') 0.60 | I | p/plugin.Plugins | registering hardware jade: ('hardware', 'jade', 'Jade wallet') 0.60 | I | p/plugin.Plugins | registering hardware keepkey: ('hardware', 'keepkey', 'KeepKey wallet') 0.60 | I | p/plugin.Plugins | registering hardware ledger: ('hardware', 'ledger', 'Ledger wallet') 1.74 | I | p/plugin.Plugins | loaded payserver 1.74 | I | p/plugin.Plugins | registering hardware safe_t: ('hardware', 'safe_t', 'Safe-T mini wallet') 1.74 | I | p/plugin.Plugins | registering hardware trezor: ('hardware', 'trezor', 'Trezor wallet') 1.74 | I | p/plugin.Plugins | registering wallet type ('2fa', 'trustedcoin') 1.74 | D | util.profiler | Plugins.__init__ 1.1522 sec 1.74 | I | exchange_rate.FxThread | using exchange CoinGecko 1.75 | D | util.profiler | Daemon.__init__ 0.0033 sec 1.75 | I | daemon.Daemon | starting taskgroup. 1.75 | I | daemon.Daemon | launching GUI: qt 1.75 | I | gui.qt.ElectrumGui | Qt GUI starting up... Qt=5.15.3, PyQt=5.15.6 1.75 | I | daemon.CommandsServer | now running and listening. socktype=unix, addr=/home/user/.electrum/testnet/daemon_rpc_socket Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway. 2.04 | D | util.profiler | ElectrumGui.__init__ 0.2865 sec 2.04 | I | storage.WalletStorage | wallet path /home/user/.electrum/testnet/wallets/test_segwit_2 2.13 | I | storage.WalletStorage | wallet path /home/user/.electrum/testnet/wallets/test_segwit_2 5.24 | E | gui.qt.ElectrumGui | Traceback (most recent call last): File "/home/user/wspace/electrum/electrum/gui/qt/__init__.py", line 354, in start_new_window wallet = self._start_wizard_to_select_or_create_wallet(path) File "/home/user/wspace/electrum/electrum/gui/qt/__init__.py", line 401, in _start_wizard_to_select_or_create_wallet db = WalletDB(storage.read(), manual_upgrades=False) File "/home/user/wspace/electrum/electrum/wallet_db.py", line 72, in __init__ self.load_data(raw) File "/home/user/wspace/electrum/electrum/wallet_db.py", line 102, in load_data if not self.requires_upgrade(): File "/home/user/wspace/electrum/electrum/wallet_db.py", line 153, in requires_upgrade return self.get_seed_version() < FINAL_SEED_VERSION File "/home/user/wspace/electrum/electrum/json_db.py", line 44, in wrapper return func(self, *args, **kwargs) File "/home/user/wspace/electrum/electrum/wallet_db.py", line 1035, in get_seed_version raise WalletFileException('This version of Electrum is too old to open this wallet.\n' electrum.util.WalletFileException: This version of Electrum is too old to open this wallet. (highest supported storage version: 50, version of this file: 51) 5.35 | I | storage.WalletStorage | wallet path /home/user/.electrum/testnet/wallets/wallet_20 7.90 | I | storage.WalletStorage | wallet path /home/user/.electrum/testnet/wallets/test_segwit_3 8.48 | D | util.profiler | WalletDB._load_transactions 0.0517 sec 8.48 | D | util.profiler | AddressSynchronizer.load_local_history 0.0005 sec 8.48 | D | util.profiler | AddressSynchronizer.check_history 0.0005 sec 8.70 | D | util.profiler | AddressList.update 0.0000 sec 9.00 | D | util.profiler | Deterministic_Wallet.try_detecting_internal_addresses_corruption 0.0223 sec 9.01 | D | util.profiler | ElectrumWindow.load_wallet 0.0808 sec 9.01 | I | daemon.Daemon | stop() entered. initiating shutdown 9.01 | I | gui.qt.ElectrumGui | closing GUI 9.01 | I | daemon.Daemon | stopping all wallets 9.04 | I | storage.WalletStorage | saved /home/user/.electrum/testnet/wallets/test_segwit_3 9.04 | D | util.profiler | WalletDB._write 0.0265 sec 9.04 | I | daemon.Daemon | stopping network and taskgroup 9.04 | I | daemon.Daemon | taskgroup stopped. 9.04 | I | daemon.Daemon | removing lockfile 9.04 | I | daemon.Daemon | stopped 9.08 | I | p/plugin.Plugins | stopped QThread: Destroyed while thread is still running Aborted (core dumped) ```
2023-02-02 15:25:15 +00:00
return self.start_new_window(path, uri=None, force_wizard=True)
return
2019-03-04 02:20:34 +01:00
window.bring_to_top()
window.setWindowState(window.windowState() & ~Qt.WindowState.WindowMinimized | Qt.WindowState.WindowActive)
2019-03-04 02:20:34 +01:00
window.activateWindow()
if uri:
window.show_send_tab()
window.send_tab.set_payment_identifier(uri)
2019-03-04 02:20:34 +01:00
return window
2019-03-04 02:08:23 +01:00
def _start_wizard_to_select_or_create_wallet(self, path) -> Optional[Abstract_Wallet]:
2023-08-28 11:50:24 +02:00
wizard = QENewWalletWizard(self.config, self.app, self.plugins, self.daemon, path)
result = wizard.exec()
2023-08-16 23:09:29 +02:00
# TODO: use dialog.open() instead to avoid new event loop spawn?
2023-12-01 15:31:50 +00:00
self.logger.info(f'wizard dialog exec result={result}')
if result == QDialog.DialogCode.Rejected:
2023-12-01 15:31:50 +00:00
self.logger.info('wizard dialog cancelled by user')
2023-08-16 23:09:29 +02:00
return
2023-08-28 11:50:24 +02:00
d = wizard.get_wizard_data()
2023-08-16 23:09:29 +02:00
if d['wallet_is_open']:
wallet_path = self.daemon._wallet_key_from_path(d['wallet_name'])
2023-08-16 23:09:29 +02:00
for window in self.windows:
if window.wallet.storage.path == wallet_path:
2023-08-16 23:09:29 +02:00
return window.wallet
raise Exception('found by wizard but not here?!')
if not d['wallet_exists']:
self.logger.info('about to create wallet')
2023-08-28 11:50:24 +02:00
wizard.create_storage()
if d['wallet_type'] == '2fa' and 'x3' not in d:
2023-08-28 16:22:37 +02:00
return
2023-08-28 11:50:24 +02:00
wallet_file = wizard.path
2023-08-16 23:09:29 +02:00
else:
wallet_file = d['wallet_name']
try:
wallet = self.daemon.load_wallet(wallet_file, d['password'], upgrade=True)
return wallet
except WalletRequiresSplit as e:
wizard.run_split(wallet_file, e._split_data)
return
except WalletUnfinished as e:
# wallet creation is not complete, 2fa online phase
db = e._wallet_db
action = db.get_action()
assert action[1] == 'accept_terms_of_use', 'only support for resuming trustedcoin split setup'
k1 = load_keystore(db, 'x1')
2023-08-28 16:22:37 +02:00
if 'password' in d and d['password']:
xprv = k1.get_master_private_key(d['password'])
else:
xprv = db.get('x1')['xprv']
if not is_xprv(xprv):
xprv = k1
_wiz_data_updates = {
'wallet_name': wallet_file,
2023-08-28 16:22:37 +02:00
'xprv1': xprv,
'xpub1': db.get('x1')['xpub'],
'xpub2': db.get('x2')['xpub'],
}
data = {**d, **_wiz_data_updates}
wizard = QENewWalletWizard(self.config, self.app, self.plugins, self.daemon, path,
start_viewstate=WizardViewState('trustedcoin_tos', data, {}))
result = wizard.exec()
if result == QDialog.DialogCode.Rejected:
2023-12-01 15:31:50 +00:00
self.logger.info('wizard dialog cancelled by user')
return
db.put('x3', wizard.get_wizard_data()['x3'])
db.write()
2023-08-16 23:09:29 +02:00
2023-08-24 16:55:32 +02:00
wallet = Wallet(db, config=self.config)
2023-08-16 23:09:29 +02:00
wallet.start_network(self.daemon.network)
self.daemon.add_wallet(wallet)
return wallet
def close_window(self, window: ElectrumWindow):
if window in self.windows:
self.windows.remove(window)
self.build_tray_menu()
# save wallet path of last open window
2016-03-08 11:10:04 +01:00
if not self.windows:
self.config.save_last_wallet(window.wallet)
run_hook('on_close_window', window)
self.daemon.stop_wallet(window.wallet.storage.path)
def init_network(self):
"""Start the network, including showing a first-start network dialog if config does not exist."""
if self.daemon.network:
# first-start network-setup
if not self.config.cv.NETWORK_AUTO_CONNECT.is_set():
2023-08-16 23:09:29 +02:00
dialog = QEServerConnectWizard(self.config, self.app, self.plugins, self.daemon)
result = dialog.exec()
if result == QDialog.DialogCode.Rejected:
self.logger.info('network wizard dialog cancelled by user')
raise UserCancelled()
# start network
self.daemon.start_network()
def main(self):
2021-04-06 18:27:28 +02:00
# setup Ctrl-C handling and tear-down code first, so that user can easily exit whenever
self.app.setQuitOnLastWindowClosed(False) # so _we_ can decide whether to quit
self.app.lastWindowClosed.connect(self._maybe_quit_if_no_windows_open)
self.app.aboutToQuit.connect(self._cleanup_before_exit)
signal.signal(signal.SIGINT, lambda *args: self.app.quit())
# hook for crash reporter
Exception_Hook.maybe_setup(config=self.config)
# start network, and maybe show first-start network-setup
try:
self.init_network()
except UserCancelled:
return
except Exception as e:
2019-04-26 18:52:26 +02:00
self.logger.exception('')
return
2021-04-06 18:27:28 +02:00
# start wizard to select/create wallet
self.timer.start()
path = self.config.get_wallet_path(use_gui_last_wallet=True)
try:
if not self.start_new_window(path, self.config.get('url'), app_is_starting=True):
return
except Exception as e:
self.logger.error("error loading wallet (or creating window for it)")
send_exception_to_crash_reporter(e)
# Let Qt event loop start properly so that crash reporter window can appear.
# We will shutdown when the user closes that window, via lastWindowClosed signal.
# main loop
self.logger.info("starting Qt main loop")
self.app.exec()
# on some platforms the exec_ call may not return, so use _cleanup_before_exit
def stop(self):
2019-04-26 18:52:26 +02:00
self.logger.info('closing GUI')
self.app.quit_signal.emit()
@classmethod
def version_info(cls):
ret = {
"qt.version": QtCore.QT_VERSION_STR,
"pyqt.version": QtCore.PYQT_VERSION_STR,
}
if hasattr(PyQt6, "__path__"):
ret["pyqt.path"] = ", ".join(PyQt6.__path__ or [])
return ret