2016-07-16 17:42:19 +02:00
|
|
|
#!/usr/bin/python2.7
|
2019-11-04 15:44:45 +01:00
|
|
|
"""
|
|
|
|
The PyBitmessage startup script
|
|
|
|
"""
|
2016-05-01 08:34:04 +02:00
|
|
|
# Copyright (c) 2012-2016 Jonathan Warren
|
2019-12-27 18:23:02 +01:00
|
|
|
# Copyright (c) 2012-2020 The Bitmessage developers
|
2012-11-19 20:45:05 +01:00
|
|
|
# Distributed under the MIT/X11 software license. See the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2013-06-13 20:00:56 +02:00
|
|
|
# Right now, PyBitmessage only support connecting to stream 1. It doesn't
|
|
|
|
# yet contain logic to expand into further streams.
|
2012-11-19 20:45:05 +01:00
|
|
|
|
2017-02-28 14:51:49 +01:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
app_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
os.chdir(app_dir)
|
|
|
|
sys.path.insert(0, app_dir)
|
|
|
|
|
2017-09-27 17:25:14 +02:00
|
|
|
|
2014-08-06 08:40:41 +02:00
|
|
|
import depends
|
|
|
|
depends.check_dependencies()
|
2014-07-29 08:51:59 +02:00
|
|
|
|
2018-06-28 15:09:23 +02:00
|
|
|
import ctypes
|
|
|
|
import getopt
|
2019-03-06 17:51:23 +01:00
|
|
|
import multiprocessing
|
2017-09-27 17:25:14 +02:00
|
|
|
# Used to capture a Ctrl-C keypress so that Bitmessage can shutdown gracefully.
|
|
|
|
import signal
|
2014-02-16 17:21:20 +01:00
|
|
|
import socket
|
2019-03-06 17:51:23 +01:00
|
|
|
import threading
|
2018-04-10 17:29:39 +02:00
|
|
|
import time
|
2019-03-06 17:51:23 +01:00
|
|
|
import traceback
|
2014-02-16 17:21:20 +01:00
|
|
|
from struct import pack
|
2013-05-01 22:06:55 +02:00
|
|
|
|
2017-02-08 20:37:42 +01:00
|
|
|
import defaults
|
2013-12-30 01:53:44 +01:00
|
|
|
import shared
|
2017-01-11 17:00:00 +01:00
|
|
|
import state
|
2017-02-08 13:41:56 +01:00
|
|
|
import shutdown
|
2017-02-22 09:34:54 +01:00
|
|
|
from bmconfigparser import BMConfigParser
|
2019-10-27 14:15:45 +01:00
|
|
|
from debug import logger # this should go before any threads
|
2019-11-03 13:13:18 +01:00
|
|
|
from helper_startup import (
|
2019-10-18 16:52:44 +02:00
|
|
|
isOurOperatingSystemLimitedToHavingVeryFewHalfOpenConnections,
|
|
|
|
start_proxyconfig
|
2019-11-03 13:13:18 +01:00
|
|
|
)
|
2017-05-27 19:09:21 +02:00
|
|
|
from inventory import Inventory
|
2019-11-03 13:13:18 +01:00
|
|
|
from knownnodes import readKnownNodes
|
2019-10-27 14:15:45 +01:00
|
|
|
# Network objects and threads
|
|
|
|
from network import (
|
|
|
|
BMConnectionPool, Dandelion,
|
|
|
|
AddrThread, AnnounceThread, BMNetworkThread, InvThread, ReceiveQueueThread,
|
|
|
|
DownloadThread, UploadThread)
|
2019-11-03 13:13:18 +01:00
|
|
|
from singleinstance import singleinstance
|
2019-10-27 14:15:45 +01:00
|
|
|
# Synchronous threads
|
|
|
|
from threads import (
|
|
|
|
set_thread_name,
|
|
|
|
addressGenerator, objectProcessor, singleCleaner, singleWorker, sqlThread)
|
2015-11-15 15:08:48 +01:00
|
|
|
|
2019-03-06 17:51:23 +01:00
|
|
|
|
2013-05-01 22:06:55 +02:00
|
|
|
def connectToStream(streamNumber):
|
2019-11-04 15:44:45 +01:00
|
|
|
"""Connect to a stream"""
|
2017-02-06 17:47:05 +01:00
|
|
|
state.streamsInWhichIAmParticipating.append(streamNumber)
|
2013-09-07 00:55:12 +02:00
|
|
|
|
2014-01-20 21:25:02 +01:00
|
|
|
if isOurOperatingSystemLimitedToHavingVeryFewHalfOpenConnections():
|
2017-09-27 17:25:14 +02:00
|
|
|
# Some XP and Vista systems can only have 10 outgoing connections
|
|
|
|
# at a time.
|
2017-05-25 23:04:33 +02:00
|
|
|
state.maximumNumberOfHalfOpenConnections = 9
|
2013-05-08 23:11:16 +02:00
|
|
|
else:
|
2017-05-25 23:04:33 +02:00
|
|
|
state.maximumNumberOfHalfOpenConnections = 64
|
2016-03-22 14:47:18 +01:00
|
|
|
try:
|
|
|
|
# don't overload Tor
|
2017-09-27 17:25:14 +02:00
|
|
|
if BMConfigParser().get(
|
|
|
|
'bitmessagesettings', 'socksproxytype') != 'none':
|
2017-05-25 23:04:33 +02:00
|
|
|
state.maximumNumberOfHalfOpenConnections = 4
|
2016-03-22 14:47:18 +01:00
|
|
|
except:
|
|
|
|
pass
|
2017-09-27 17:25:14 +02:00
|
|
|
|
2017-08-09 17:36:52 +02:00
|
|
|
BMConnectionPool().connectToStream(streamNumber)
|
2013-05-01 22:06:55 +02:00
|
|
|
|
2017-09-27 17:25:14 +02:00
|
|
|
|
2017-05-27 19:00:19 +02:00
|
|
|
def _fixSocket():
|
|
|
|
if sys.platform.startswith('linux'):
|
|
|
|
socket.SO_BINDTODEVICE = 25
|
|
|
|
|
|
|
|
if not sys.platform.startswith('win'):
|
2014-02-16 17:21:20 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
# Python 2 on Windows doesn't define a wrapper for
|
|
|
|
# socket.inet_ntop but we can make one ourselves using ctypes
|
|
|
|
if not hasattr(socket, 'inet_ntop'):
|
|
|
|
addressToString = ctypes.windll.ws2_32.WSAAddressToStringA
|
2017-09-27 17:25:14 +02:00
|
|
|
|
2014-02-16 17:21:20 +01:00
|
|
|
def inet_ntop(family, host):
|
2019-11-04 15:44:45 +01:00
|
|
|
"""Converting an IP address in packed binary format to string format"""
|
2014-02-16 17:21:20 +01:00
|
|
|
if family == socket.AF_INET:
|
|
|
|
if len(host) != 4:
|
|
|
|
raise ValueError("invalid IPv4 host")
|
|
|
|
host = pack("hH4s8s", socket.AF_INET, 0, host, "\0" * 8)
|
|
|
|
elif family == socket.AF_INET6:
|
|
|
|
if len(host) != 16:
|
|
|
|
raise ValueError("invalid IPv6 host")
|
|
|
|
host = pack("hHL16sL", socket.AF_INET6, 0, 0, host, 0)
|
|
|
|
else:
|
|
|
|
raise ValueError("invalid address family")
|
|
|
|
buf = "\0" * 64
|
|
|
|
lengthBuf = pack("I", len(buf))
|
|
|
|
addressToString(host, len(host), None, buf, lengthBuf)
|
|
|
|
return buf[0:buf.index("\0")]
|
|
|
|
socket.inet_ntop = inet_ntop
|
|
|
|
|
|
|
|
# Same for inet_pton
|
|
|
|
if not hasattr(socket, 'inet_pton'):
|
|
|
|
stringToAddress = ctypes.windll.ws2_32.WSAStringToAddressA
|
2017-09-27 17:25:14 +02:00
|
|
|
|
2014-02-16 17:21:20 +01:00
|
|
|
def inet_pton(family, host):
|
2019-11-04 15:44:45 +01:00
|
|
|
"""Converting an IP address in string format to a packed binary format"""
|
2014-02-16 17:21:20 +01:00
|
|
|
buf = "\0" * 28
|
|
|
|
lengthBuf = pack("I", len(buf))
|
|
|
|
if stringToAddress(str(host),
|
|
|
|
int(family),
|
|
|
|
None,
|
|
|
|
buf,
|
|
|
|
lengthBuf) != 0:
|
|
|
|
raise socket.error("illegal IP address passed to inet_pton")
|
|
|
|
if family == socket.AF_INET:
|
|
|
|
return buf[4:8]
|
|
|
|
elif family == socket.AF_INET6:
|
|
|
|
return buf[8:24]
|
|
|
|
else:
|
|
|
|
raise ValueError("invalid address family")
|
|
|
|
socket.inet_pton = inet_pton
|
|
|
|
|
|
|
|
# These sockopts are needed on for IPv6 support
|
|
|
|
if not hasattr(socket, 'IPPROTO_IPV6'):
|
|
|
|
socket.IPPROTO_IPV6 = 41
|
|
|
|
if not hasattr(socket, 'IPV6_V6ONLY'):
|
|
|
|
socket.IPV6_V6ONLY = 27
|
2013-04-26 19:20:30 +02:00
|
|
|
|
2017-09-27 17:25:14 +02:00
|
|
|
|
2019-03-06 21:36:34 +01:00
|
|
|
def signal_handler(signum, frame):
|
|
|
|
"""Single handler for any signal sent to pybitmessage"""
|
2019-03-06 17:51:23 +01:00
|
|
|
process = multiprocessing.current_process()
|
2019-03-06 21:36:34 +01:00
|
|
|
thread = threading.current_thread()
|
2019-03-06 17:51:23 +01:00
|
|
|
logger.error(
|
|
|
|
'Got signal %i in %s/%s',
|
2019-03-06 21:36:34 +01:00
|
|
|
signum, process.name, thread.name
|
2019-03-06 17:51:23 +01:00
|
|
|
)
|
|
|
|
if process.name == "RegExParser":
|
|
|
|
# on Windows this isn't triggered, but it's fine,
|
|
|
|
# it has its own process termination thing
|
|
|
|
raise SystemExit
|
|
|
|
if "PoolWorker" in process.name:
|
|
|
|
raise SystemExit
|
2019-03-06 21:36:34 +01:00
|
|
|
if thread.name not in ("PyBitmessage", "MainThread"):
|
2019-03-06 17:51:23 +01:00
|
|
|
return
|
2019-03-06 21:36:34 +01:00
|
|
|
logger.error("Got signal %i", signum)
|
|
|
|
# there are possible non-UI variants to run bitmessage which should shutdown
|
|
|
|
# especially test-mode
|
|
|
|
if shared.thisapp.daemon or not state.enableGUI:
|
2019-03-06 17:51:23 +01:00
|
|
|
shutdown.doCleanShutdown()
|
|
|
|
else:
|
2019-03-06 21:36:34 +01:00
|
|
|
print('# Thread: %s(%d)' % (thread.name, thread.ident))
|
|
|
|
for filename, lineno, name, line in traceback.extract_stack(frame):
|
|
|
|
print('File: "%s", line %d, in %s' % (filename, lineno, name))
|
|
|
|
if line:
|
|
|
|
print(' %s' % line.strip())
|
2019-03-06 17:51:23 +01:00
|
|
|
print('Unfortunately you cannot use Ctrl+C when running the UI'
|
|
|
|
' because the UI captures the signal.')
|
|
|
|
|
|
|
|
|
2019-11-04 15:44:45 +01:00
|
|
|
class Main(object):
|
|
|
|
"""Main PyBitmessage class"""
|
2019-10-18 16:52:44 +02:00
|
|
|
def start(self):
|
2019-11-04 15:44:45 +01:00
|
|
|
"""Start main application"""
|
2019-10-18 16:52:44 +02:00
|
|
|
# pylint: disable=too-many-statements,too-many-branches,too-many-locals
|
2017-05-27 19:00:19 +02:00
|
|
|
_fixSocket()
|
2014-02-16 17:21:20 +01:00
|
|
|
|
2019-07-23 17:55:14 +02:00
|
|
|
config = BMConfigParser()
|
|
|
|
daemon = config.safeGetBoolean('bitmessagesettings', 'daemon')
|
2017-09-26 16:36:02 +02:00
|
|
|
|
2017-09-23 23:42:15 +02:00
|
|
|
try:
|
2019-11-04 15:44:45 +01:00
|
|
|
opts, _ = getopt.getopt(
|
2018-03-23 15:56:01 +01:00
|
|
|
sys.argv[1:], "hcdt",
|
|
|
|
["help", "curses", "daemon", "test"])
|
2017-09-23 23:42:15 +02:00
|
|
|
|
|
|
|
except getopt.GetoptError:
|
|
|
|
self.usage()
|
|
|
|
sys.exit(2)
|
|
|
|
|
2019-11-04 15:44:45 +01:00
|
|
|
for opt, _ in opts:
|
2017-09-23 23:42:15 +02:00
|
|
|
if opt in ("-h", "--help"):
|
|
|
|
self.usage()
|
|
|
|
sys.exit()
|
|
|
|
elif opt in ("-d", "--daemon"):
|
|
|
|
daemon = True
|
|
|
|
elif opt in ("-c", "--curses"):
|
|
|
|
state.curses = True
|
2018-04-05 11:50:34 +02:00
|
|
|
elif opt in ("-t", "--test"):
|
2018-04-16 09:00:23 +02:00
|
|
|
state.testmode = True
|
|
|
|
if os.path.isfile(os.path.join(
|
|
|
|
state.appdata, 'unittest.lock')):
|
|
|
|
daemon = True
|
2017-09-27 17:25:14 +02:00
|
|
|
state.enableGUI = False # run without a UI
|
2018-04-10 17:29:39 +02:00
|
|
|
# Fallback: in case when no api command was issued
|
|
|
|
state.last_api_response = time.time()
|
|
|
|
# Apply special settings
|
|
|
|
config.set(
|
|
|
|
'bitmessagesettings', 'apienabled', 'true')
|
|
|
|
config.set(
|
|
|
|
'bitmessagesettings', 'apiusername', 'username')
|
|
|
|
config.set(
|
|
|
|
'bitmessagesettings', 'apipassword', 'password')
|
|
|
|
config.set(
|
|
|
|
'bitmessagesettings', 'apinotifypath',
|
|
|
|
os.path.join(app_dir, 'tests', 'apinotify_handler.py')
|
|
|
|
)
|
2013-08-06 13:23:56 +02:00
|
|
|
|
2018-11-04 14:00:27 +01:00
|
|
|
if daemon:
|
|
|
|
state.enableGUI = False # run without a UI
|
|
|
|
|
2018-05-22 13:17:47 +02:00
|
|
|
if state.enableGUI and not state.curses and not depends.check_pyqt():
|
|
|
|
sys.exit(
|
|
|
|
'PyBitmessage requires PyQt unless you want'
|
|
|
|
' to run it as a daemon and interact with it'
|
|
|
|
' using the API. You can download PyQt from '
|
|
|
|
'http://www.riverbankcomputing.com/software/pyqt/download'
|
|
|
|
' or by searching Google for \'PyQt Download\'.'
|
|
|
|
' If you want to run in daemon mode, see '
|
|
|
|
'https://bitmessage.org/wiki/Daemon\n'
|
|
|
|
'You can also run PyBitmessage with'
|
|
|
|
' the new curses interface by providing'
|
|
|
|
' \'-c\' as a commandline argument.'
|
|
|
|
)
|
2018-11-04 14:00:27 +01:00
|
|
|
# is the application already running? If yes then exit.
|
2017-01-10 21:15:35 +01:00
|
|
|
shared.thisapp = singleinstance("", daemon)
|
2016-06-30 12:30:05 +02:00
|
|
|
|
2018-04-10 17:29:39 +02:00
|
|
|
if daemon:
|
2016-06-30 12:30:05 +02:00
|
|
|
with shared.printLock:
|
|
|
|
print('Running as a daemon. Send TERM signal to end.')
|
|
|
|
self.daemonize()
|
|
|
|
|
|
|
|
self.setSignalHandler()
|
2013-08-06 13:23:56 +02:00
|
|
|
|
2019-10-27 14:15:45 +01:00
|
|
|
set_thread_name("PyBitmessage")
|
2017-07-06 19:35:40 +02:00
|
|
|
|
2019-07-23 17:55:14 +02:00
|
|
|
state.dandelion = config.safeGetInt('network', 'dandelion')
|
2017-09-27 17:25:14 +02:00
|
|
|
# dandelion requires outbound connections, without them,
|
|
|
|
# stem objects will get stuck forever
|
2019-07-23 17:55:14 +02:00
|
|
|
if state.dandelion and not config.safeGetBoolean(
|
2017-09-27 17:25:14 +02:00
|
|
|
'bitmessagesettings', 'sendoutgoingconnections'):
|
2018-02-03 11:46:39 +01:00
|
|
|
state.dandelion = 0
|
|
|
|
|
2019-07-23 17:55:14 +02:00
|
|
|
if state.testmode or config.safeGetBoolean(
|
2019-03-07 13:21:07 +01:00
|
|
|
'bitmessagesettings', 'extralowdifficulty'):
|
|
|
|
defaults.networkDefaultProofOfWorkNonceTrialsPerByte = int(
|
|
|
|
defaults.networkDefaultProofOfWorkNonceTrialsPerByte / 100)
|
|
|
|
defaults.networkDefaultPayloadLengthExtraBytes = int(
|
|
|
|
defaults.networkDefaultPayloadLengthExtraBytes / 100)
|
|
|
|
|
2019-11-03 13:13:18 +01:00
|
|
|
readKnownNodes()
|
2013-08-06 13:23:56 +02:00
|
|
|
|
2018-04-09 06:38:48 +02:00
|
|
|
# Not needed if objproc is disabled
|
|
|
|
if state.enableObjProc:
|
|
|
|
|
|
|
|
# Start the address generation thread
|
|
|
|
addressGeneratorThread = addressGenerator()
|
2017-09-27 17:25:14 +02:00
|
|
|
# close the main program even if there are threads left
|
|
|
|
addressGeneratorThread.daemon = True
|
2018-04-09 06:38:48 +02:00
|
|
|
addressGeneratorThread.start()
|
|
|
|
|
|
|
|
# Start the thread that calculates POWs
|
|
|
|
singleWorkerThread = singleWorker()
|
2017-09-27 17:25:14 +02:00
|
|
|
# close the main program even if there are threads left
|
|
|
|
singleWorkerThread.daemon = True
|
2018-04-09 06:38:48 +02:00
|
|
|
singleWorkerThread.start()
|
2013-08-06 13:23:56 +02:00
|
|
|
|
|
|
|
# Start the SQL thread
|
|
|
|
sqlLookup = sqlThread()
|
2017-09-27 17:25:14 +02:00
|
|
|
# DON'T close the main program even if there are threads left.
|
|
|
|
# The closeEvent should command this thread to exit gracefully.
|
|
|
|
sqlLookup.daemon = False
|
2013-08-06 13:23:56 +02:00
|
|
|
sqlLookup.start()
|
|
|
|
|
2017-09-27 17:25:14 +02:00
|
|
|
Inventory() # init
|
|
|
|
# init, needs to be early because other thread may access it early
|
|
|
|
Dandelion()
|
2017-05-27 19:09:21 +02:00
|
|
|
|
2018-04-09 06:38:48 +02:00
|
|
|
# Enable object processor and SMTP only if objproc enabled
|
|
|
|
if state.enableObjProc:
|
|
|
|
|
|
|
|
# SMTP delivery thread
|
2019-07-23 17:55:14 +02:00
|
|
|
if daemon and config.safeGet(
|
|
|
|
'bitmessagesettings', 'smtpdeliver', '') != '':
|
2018-06-21 12:03:50 +02:00
|
|
|
from class_smtpDeliver import smtpDeliver
|
2018-04-09 06:38:48 +02:00
|
|
|
smtpDeliveryThread = smtpDeliver()
|
|
|
|
smtpDeliveryThread.start()
|
2016-06-30 12:30:05 +02:00
|
|
|
|
2018-04-09 06:38:48 +02:00
|
|
|
# SMTP daemon thread
|
2019-07-23 17:55:14 +02:00
|
|
|
if daemon and config.safeGetBoolean(
|
|
|
|
'bitmessagesettings', 'smtpd'):
|
2018-06-21 12:03:50 +02:00
|
|
|
from class_smtpServer import smtpServer
|
2018-04-09 06:38:48 +02:00
|
|
|
smtpServerThread = smtpServer()
|
|
|
|
smtpServerThread.start()
|
2016-07-19 13:57:54 +02:00
|
|
|
|
2018-04-09 06:38:48 +02:00
|
|
|
# Start the thread that calculates POWs
|
|
|
|
objectProcessorThread = objectProcessor()
|
2017-09-27 17:25:14 +02:00
|
|
|
# DON'T close the main program even the thread remains.
|
|
|
|
# This thread checks the shutdown variable after processing
|
|
|
|
# each object.
|
|
|
|
objectProcessorThread.daemon = False
|
2018-04-09 06:38:48 +02:00
|
|
|
objectProcessorThread.start()
|
2013-12-02 07:35:34 +01:00
|
|
|
|
2013-08-06 13:23:56 +02:00
|
|
|
# Start the cleanerThread
|
|
|
|
singleCleanerThread = singleCleaner()
|
2017-09-27 17:25:14 +02:00
|
|
|
# close the main program even if there are threads left
|
|
|
|
singleCleanerThread.daemon = True
|
2013-08-06 13:23:56 +02:00
|
|
|
singleCleanerThread.start()
|
|
|
|
|
2018-04-09 06:38:48 +02:00
|
|
|
# Not needed if objproc disabled
|
|
|
|
if state.enableObjProc:
|
|
|
|
shared.reloadMyAddressHashes()
|
|
|
|
shared.reloadBroadcastSendersForWhichImWatching()
|
|
|
|
|
|
|
|
# API is also objproc dependent
|
2019-07-23 17:55:14 +02:00
|
|
|
if config.safeGetBoolean('bitmessagesettings', 'apienabled'):
|
2018-09-05 12:56:06 +02:00
|
|
|
import api # pylint: disable=relative-import
|
2018-06-28 15:09:23 +02:00
|
|
|
singleAPIThread = api.singleAPI()
|
2017-09-27 17:25:14 +02:00
|
|
|
# close the main program even if there are threads left
|
|
|
|
singleAPIThread.daemon = True
|
2018-04-09 06:38:48 +02:00
|
|
|
singleAPIThread.start()
|
|
|
|
|
|
|
|
# start network components if networking is enabled
|
|
|
|
if state.enableNetwork:
|
2019-10-18 16:52:44 +02:00
|
|
|
start_proxyconfig()
|
2018-04-09 06:38:48 +02:00
|
|
|
BMConnectionPool()
|
|
|
|
asyncoreThread = BMNetworkThread()
|
|
|
|
asyncoreThread.daemon = True
|
|
|
|
asyncoreThread.start()
|
2019-07-23 17:55:14 +02:00
|
|
|
for i in range(config.getint('threads', 'receive')):
|
2018-04-09 06:38:48 +02:00
|
|
|
receiveQueueThread = ReceiveQueueThread(i)
|
|
|
|
receiveQueueThread.daemon = True
|
|
|
|
receiveQueueThread.start()
|
|
|
|
announceThread = AnnounceThread()
|
|
|
|
announceThread.daemon = True
|
|
|
|
announceThread.start()
|
|
|
|
state.invThread = InvThread()
|
|
|
|
state.invThread.daemon = True
|
|
|
|
state.invThread.start()
|
|
|
|
state.addrThread = AddrThread()
|
|
|
|
state.addrThread.daemon = True
|
|
|
|
state.addrThread.start()
|
|
|
|
state.downloadThread = DownloadThread()
|
|
|
|
state.downloadThread.daemon = True
|
|
|
|
state.downloadThread.start()
|
2018-12-18 22:47:34 +01:00
|
|
|
state.uploadThread = UploadThread()
|
|
|
|
state.uploadThread.daemon = True
|
|
|
|
state.uploadThread.start()
|
2018-04-09 06:38:48 +02:00
|
|
|
|
|
|
|
connectToStream(1)
|
|
|
|
|
2019-07-23 17:55:14 +02:00
|
|
|
if config.safeGetBoolean('bitmessagesettings', 'upnp'):
|
2018-04-09 06:38:48 +02:00
|
|
|
import upnp
|
|
|
|
upnpThread = upnp.uPnPThread()
|
|
|
|
upnpThread.start()
|
|
|
|
else:
|
|
|
|
# Populate with hardcoded value (same as connectToStream above)
|
|
|
|
state.streamsInWhichIAmParticipating.append(1)
|
|
|
|
|
2018-07-09 14:06:28 +02:00
|
|
|
if not daemon and state.enableGUI:
|
2017-09-27 17:25:14 +02:00
|
|
|
if state.curses:
|
2018-05-22 13:17:47 +02:00
|
|
|
if not depends.check_curses():
|
|
|
|
sys.exit()
|
2017-09-27 17:25:14 +02:00
|
|
|
print('Running with curses')
|
|
|
|
import bitmessagecurses
|
|
|
|
bitmessagecurses.runwrapper()
|
2018-07-05 15:37:16 +02:00
|
|
|
elif state.kivy:
|
2019-07-23 17:55:14 +02:00
|
|
|
config.remove_option('bitmessagesettings', 'dontconnect')
|
2018-07-18 14:49:39 +02:00
|
|
|
from bitmessagekivy.mpybit import NavigateApp
|
|
|
|
NavigateApp().run()
|
2018-05-22 13:17:47 +02:00
|
|
|
else:
|
2014-04-19 20:45:37 +02:00
|
|
|
import bitmessageqt
|
|
|
|
bitmessageqt.run()
|
2018-07-05 15:37:16 +02:00
|
|
|
else:
|
2019-07-23 17:55:14 +02:00
|
|
|
config.remove_option('bitmessagesettings', 'dontconnect')
|
2013-05-02 22:55:13 +02:00
|
|
|
|
2017-07-30 09:36:20 +02:00
|
|
|
if daemon:
|
|
|
|
while state.shutdown == 0:
|
2018-04-10 17:29:39 +02:00
|
|
|
time.sleep(1)
|
2019-08-29 12:03:14 +02:00
|
|
|
if (
|
|
|
|
state.testmode and time.time() - state.last_api_response >= 30):
|
2018-04-10 17:29:39 +02:00
|
|
|
self.stop()
|
2018-04-16 09:00:23 +02:00
|
|
|
elif not state.enableGUI:
|
2018-10-08 11:38:41 +02:00
|
|
|
from tests import core as test_core # pylint: disable=relative-import
|
2019-10-18 16:52:44 +02:00
|
|
|
test_core_result = test_core.run()
|
2018-04-16 10:26:52 +02:00
|
|
|
state.enableGUI = True
|
2018-04-16 09:00:23 +02:00
|
|
|
self.stop()
|
2018-10-03 17:42:12 +02:00
|
|
|
test_core.cleanup()
|
2018-04-16 10:26:52 +02:00
|
|
|
sys.exit(
|
|
|
|
'Core tests failed!'
|
|
|
|
if test_core_result.errors or test_core_result.failures
|
|
|
|
else 0
|
|
|
|
)
|
2017-07-30 09:36:20 +02:00
|
|
|
|
2019-11-04 15:44:45 +01:00
|
|
|
@staticmethod
|
|
|
|
def daemonize():
|
|
|
|
"""Running as a daemon. Send signal in end."""
|
2018-01-01 13:08:12 +01:00
|
|
|
grandfatherPid = os.getpid()
|
|
|
|
parentPid = None
|
2017-07-28 08:54:34 +02:00
|
|
|
try:
|
|
|
|
if os.fork():
|
2018-01-01 13:08:12 +01:00
|
|
|
# unlock
|
|
|
|
shared.thisapp.cleanup()
|
|
|
|
# wait until grandchild ready
|
|
|
|
while True:
|
2018-04-10 17:29:39 +02:00
|
|
|
time.sleep(1)
|
2019-11-04 15:44:45 +01:00
|
|
|
os._exit(0) # pylint: disable=protected-access
|
2017-07-28 08:54:34 +02:00
|
|
|
except AttributeError:
|
|
|
|
# fork not implemented
|
|
|
|
pass
|
|
|
|
else:
|
2018-01-01 13:08:12 +01:00
|
|
|
parentPid = os.getpid()
|
2017-09-27 17:25:14 +02:00
|
|
|
shared.thisapp.lock() # relock
|
|
|
|
|
2016-06-30 12:30:05 +02:00
|
|
|
os.umask(0)
|
2017-07-28 09:19:53 +02:00
|
|
|
try:
|
|
|
|
os.setsid()
|
|
|
|
except AttributeError:
|
|
|
|
# setsid not implemented
|
|
|
|
pass
|
2017-07-28 08:54:34 +02:00
|
|
|
try:
|
|
|
|
if os.fork():
|
2018-01-01 13:08:12 +01:00
|
|
|
# unlock
|
|
|
|
shared.thisapp.cleanup()
|
|
|
|
# wait until child ready
|
|
|
|
while True:
|
2018-04-10 17:29:39 +02:00
|
|
|
time.sleep(1)
|
2019-11-04 15:44:45 +01:00
|
|
|
os._exit(0) # pylint: disable=protected-access
|
2017-07-28 08:54:34 +02:00
|
|
|
except AttributeError:
|
|
|
|
# fork not implemented
|
|
|
|
pass
|
|
|
|
else:
|
2017-09-27 17:25:14 +02:00
|
|
|
shared.thisapp.lock() # relock
|
|
|
|
shared.thisapp.lockPid = None # indicate we're the final child
|
2016-06-30 12:30:05 +02:00
|
|
|
sys.stdout.flush()
|
|
|
|
sys.stderr.flush()
|
2017-09-23 18:25:41 +02:00
|
|
|
if not sys.platform.startswith('win'):
|
|
|
|
si = file(os.devnull, 'r')
|
|
|
|
so = file(os.devnull, 'a+')
|
|
|
|
se = file(os.devnull, 'a+', 0)
|
|
|
|
os.dup2(si.fileno(), sys.stdin.fileno())
|
|
|
|
os.dup2(so.fileno(), sys.stdout.fileno())
|
|
|
|
os.dup2(se.fileno(), sys.stderr.fileno())
|
2018-01-01 13:08:12 +01:00
|
|
|
if parentPid:
|
|
|
|
# signal ready
|
|
|
|
os.kill(parentPid, signal.SIGTERM)
|
|
|
|
os.kill(grandfatherPid, signal.SIGTERM)
|
2016-06-30 12:30:05 +02:00
|
|
|
|
2019-11-04 15:44:45 +01:00
|
|
|
@staticmethod
|
|
|
|
def setSignalHandler():
|
|
|
|
"""Setting the Signal Handler"""
|
2019-03-06 17:51:23 +01:00
|
|
|
signal.signal(signal.SIGINT, signal_handler)
|
|
|
|
signal.signal(signal.SIGTERM, signal_handler)
|
2016-06-30 12:30:05 +02:00
|
|
|
# signal.signal(signal.SIGINT, signal.SIG_DFL)
|
2013-09-28 14:09:15 +02:00
|
|
|
|
2019-11-04 15:44:45 +01:00
|
|
|
@staticmethod
|
|
|
|
def usage():
|
|
|
|
"""Displaying the usages"""
|
|
|
|
print('Usage: ' + sys.argv[0] + ' [OPTIONS]')
|
|
|
|
print('''
|
2017-09-23 23:42:15 +02:00
|
|
|
Options:
|
|
|
|
-h, --help show this help message and exit
|
|
|
|
-c, --curses use curses (text mode) interface
|
|
|
|
-d, --daemon run in daemon (background) mode
|
2018-03-23 15:56:01 +01:00
|
|
|
-t, --test dryrun, make testing
|
2017-09-23 23:42:15 +02:00
|
|
|
|
|
|
|
All parameters are optional.
|
2019-11-04 15:44:45 +01:00
|
|
|
''')
|
2017-09-23 23:42:15 +02:00
|
|
|
|
2019-11-04 15:44:45 +01:00
|
|
|
@staticmethod
|
|
|
|
def stop():
|
|
|
|
"""Stop main application"""
|
2013-06-29 19:29:35 +02:00
|
|
|
with shared.printLock:
|
2014-07-29 08:51:59 +02:00
|
|
|
print('Stopping Bitmessage Deamon.')
|
2017-02-08 13:41:56 +01:00
|
|
|
shutdown.doCleanShutdown()
|
2013-09-28 14:09:15 +02:00
|
|
|
|
2019-11-04 15:44:45 +01:00
|
|
|
# .. todo:: nice function but no one is using this
|
|
|
|
@staticmethod
|
|
|
|
def getApiAddress():
|
|
|
|
"""This function returns API address and port"""
|
2017-09-27 17:25:14 +02:00
|
|
|
if not BMConfigParser().safeGetBoolean(
|
|
|
|
'bitmessagesettings', 'apienabled'):
|
2013-08-06 13:23:56 +02:00
|
|
|
return None
|
2017-01-11 14:27:19 +01:00
|
|
|
address = BMConfigParser().get('bitmessagesettings', 'apiinterface')
|
|
|
|
port = BMConfigParser().getint('bitmessagesettings', 'apiport')
|
2017-09-27 17:25:14 +02:00
|
|
|
return {'address': address, 'port': port}
|
2013-09-28 14:09:15 +02:00
|
|
|
|
2017-02-28 14:51:49 +01:00
|
|
|
|
|
|
|
def main():
|
2019-11-04 15:44:45 +01:00
|
|
|
"""Triggers main module"""
|
2013-08-06 13:23:56 +02:00
|
|
|
mainprogram = Main()
|
2017-09-26 16:36:02 +02:00
|
|
|
mainprogram.start()
|
2017-02-28 14:51:49 +01:00
|
|
|
|
2017-09-27 17:25:14 +02:00
|
|
|
|
2017-02-28 14:51:49 +01:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|
2013-02-18 21:22:48 +01:00
|
|
|
|
2013-09-28 14:09:15 +02:00
|
|
|
|
2013-06-17 22:42:30 +02:00
|
|
|
# So far, the creation of and management of the Bitmessage protocol and this
|
|
|
|
# client is a one-man operation. Bitcoin tips are quite appreciated.
|
2012-11-29 11:39:39 +01:00
|
|
|
# 1H5XaDA6fYENLbknwZyjiYXYPQaFjjLX2u
|