ZeroNet/src/Tor/TorManager.py

309 lines
12 KiB
Python
Raw Normal View History

import logging
import re
import socket
import binascii
import sys
import os
import time
import random
import subprocess
import atexit
import gevent
from Config import config
from Crypt import CryptRsa
from Site import SiteManager
2019-03-16 00:03:05 +01:00
import socks
2020-02-25 16:45:55 +01:00
from gevent.lock import RLock
from Debug import Debug
2017-02-17 02:17:51 +01:00
from Plugin import PluginManager
2017-02-17 02:17:51 +01:00
@PluginManager.acceptPlugins
class TorManager(object):
def __init__(self, fileserver_ip=None, fileserver_port=None):
self.privatekeys = {} # Onion: Privatekey
self.site_onions = {} # Site address: Onion
self.tor_exe = "tools/tor/tor.exe"
2018-04-28 21:50:01 +02:00
self.has_meek_bridges = os.path.isfile("tools/tor/PluggableTransports/meek-client.exe")
self.tor_process = None
self.log = logging.getLogger("TorManager")
self.start_onions = None
self.conn = None
self.lock = RLock()
self.starting = True
self.connecting = True
self.status = None
self.event_started = gevent.event.AsyncResult()
if config.tor == "disable":
self.enabled = False
self.start_onions = False
self.setStatus("Disabled")
else:
self.enabled = True
self.setStatus("Waiting")
if fileserver_port:
self.fileserver_port = fileserver_port
else:
self.fileserver_port = config.fileserver_port
2019-01-20 16:50:55 +01:00
self.ip, self.port = config.tor_controller.rsplit(":", 1)
self.port = int(self.port)
2019-01-20 16:50:55 +01:00
self.proxy_ip, self.proxy_port = config.tor_proxy.rsplit(":", 1)
self.proxy_port = int(self.proxy_port)
def start(self):
2018-07-10 03:31:39 +02:00
self.log.debug("Starting (Tor: %s)" % config.tor)
self.starting = True
try:
if not self.connect():
raise Exception(self.status)
self.log.debug("Tor proxy port %s check ok" % config.tor_proxy)
2019-03-16 00:04:09 +01:00
except Exception as err:
if sys.platform.startswith("win") and os.path.isfile(self.tor_exe):
self.log.info("Starting self-bundled Tor, due to Tor proxy port %s check error: %s" % (config.tor_proxy, err))
# Change to self-bundled Tor ports
self.port = 49051
self.proxy_port = 49050
if config.tor == "always":
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", self.proxy_port)
self.enabled = True
if not self.connect():
self.startTor()
2019-03-16 00:04:09 +01:00
else:
self.log.info("Disabling Tor, because error while accessing Tor proxy at port %s: %s" % (config.tor_proxy, err))
self.enabled = False
def setStatus(self, status):
self.status = status
if "main" in sys.modules: # import main has side-effects, breaks tests
import main
if "ui_server" in dir(main):
main.ui_server.updateWebsocket()
def startTor(self):
if sys.platform.startswith("win"):
try:
self.log.info("Starting Tor client %s..." % self.tor_exe)
tor_dir = os.path.dirname(self.tor_exe)
2017-01-23 00:31:52 +01:00
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
cmd = r"%s -f torrc --defaults-torrc torrc-defaults --ignore-missing-torrc" % self.tor_exe
if config.tor_use_bridges:
cmd += " --UseBridges 1"
self.tor_process = subprocess.Popen(cmd, cwd=tor_dir, close_fds=True, startupinfo=startupinfo)
2019-03-16 00:04:09 +01:00
for wait in range(1, 3): # Wait for startup
time.sleep(wait * 0.5)
self.enabled = True
if self.connect():
2018-04-29 02:45:56 +02:00
if self.isSubprocessRunning():
self.request("TAKEOWNERSHIP") # Shut down Tor client when controll connection closed
break
# Terminate on exit
atexit.register(self.stopTor)
2019-03-15 21:06:59 +01:00
except Exception as err:
self.log.error("Error starting Tor client: %s" % Debug.formatException(str(err)))
self.enabled = False
self.starting = False
self.event_started.set(False)
return False
2018-04-29 02:45:56 +02:00
def isSubprocessRunning(self):
return self.tor_process and self.tor_process.pid and self.tor_process.poll() is None
def stopTor(self):
self.log.debug("Stopping...")
2016-03-16 00:33:56 +01:00
try:
2018-04-29 02:45:56 +02:00
if self.isSubprocessRunning():
self.request("SIGNAL SHUTDOWN")
2019-03-15 21:06:59 +01:00
except Exception as err:
2016-03-16 00:33:56 +01:00
self.log.error("Error stopping Tor: %s" % err)
def connect(self):
if not self.enabled:
return False
self.site_onions = {}
self.privatekeys = {}
2017-02-17 02:17:51 +01:00
return self.connectController()
def connectController(self):
if "socket_noproxy" in dir(socket): # Socket proxy-patched, use non-proxy one
conn = socket.socket_noproxy(socket.AF_INET, socket.SOCK_STREAM)
else:
conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
2019-05-30 04:28:57 +02:00
self.log.debug("Connecting to Tor Controller %s:%s" % (self.ip, self.port))
self.connecting = True
try:
with self.lock:
conn.connect((self.ip, self.port))
# Auth cookie file
res_protocol = self.send("PROTOCOLINFO", conn)
cookie_match = re.search('COOKIEFILE="(.*?)"', res_protocol)
if config.tor_password:
res_auth = self.send('AUTHENTICATE "%s"' % config.tor_password, conn)
elif cookie_match:
2019-03-16 00:05:23 +01:00
cookie_file = cookie_match.group(1).encode("ascii").decode("unicode_escape")
if not os.path.isfile(cookie_file) and self.tor_process:
# Workaround for tor client cookie auth file utf8 encoding bug (https://github.com/torproject/stem/issues/57)
cookie_file = os.path.dirname(self.tor_exe) + "\\data\\control_auth_cookie"
auth_hex = binascii.b2a_hex(open(cookie_file, "rb").read())
2019-03-16 00:05:23 +01:00
res_auth = self.send("AUTHENTICATE %s" % auth_hex.decode("utf8"), conn)
else:
res_auth = self.send("AUTHENTICATE", conn)
if "250 OK" not in res_auth:
raise Exception("Authenticate error %s" % res_auth)
# Version 0.2.7.5 required because ADD_ONION support
res_version = self.send("GETINFO version", conn)
2019-07-01 16:24:23 +02:00
version = re.search(r'version=([0-9\.]+)', res_version).group(1)
if float(version.replace(".", "0", 2)) < 207.5:
raise Exception("Tor version >=0.2.7.5 required, found: %s" % version)
2019-03-16 00:05:23 +01:00
self.setStatus("Connected (%s)" % res_auth)
self.event_started.set(True)
self.starting = False
self.connecting = False
self.conn = conn
2019-03-16 00:05:23 +01:00
except Exception as err:
self.conn = None
2019-03-16 00:05:23 +01:00
self.setStatus("Error (%s)" % str(err))
2019-05-30 04:28:57 +02:00
self.log.warning("Tor controller connect error: %s" % Debug.formatException(str(err)))
self.enabled = False
return self.conn
def disconnect(self):
if self.conn:
self.conn.close()
self.conn = None
def startOnions(self):
if self.enabled:
self.log.debug("Start onions")
self.start_onions = True
2018-03-14 22:32:49 +01:00
self.getOnion("global")
# Get new exit node ip
def resetCircuits(self):
res = self.request("SIGNAL NEWNYM")
if "250 OK" not in res:
2019-03-15 21:06:59 +01:00
self.setStatus("Reset circuits error (%s)" % res)
self.log.error("Tor reset circuits error: %s" % res)
def addOnion(self):
if len(self.privatekeys) >= config.tor_hs_limit:
2019-03-15 21:06:59 +01:00
return random.choice([key for key in list(self.privatekeys.keys()) if key != self.site_onions.get("global")])
2017-02-17 02:17:51 +01:00
result = self.makeOnionAndKey()
if result:
onion_address, onion_privatekey = result
self.privatekeys[onion_address] = onion_privatekey
2019-03-15 21:06:59 +01:00
self.setStatus("OK (%s onions running)" % len(self.privatekeys))
2017-02-17 02:17:51 +01:00
SiteManager.peer_blacklist.append((onion_address + ".onion", self.fileserver_port))
return onion_address
else:
return False
def makeOnionAndKey(self):
res = self.request("ADD_ONION NEW:RSA1024 port=%s" % self.fileserver_port)
match = re.search("ServiceID=([A-Za-z0-9]+).*PrivateKey=RSA1024:(.*?)[\r\n]", res, re.DOTALL)
if match:
onion_address, onion_privatekey = match.groups()
2017-02-17 02:17:51 +01:00
return (onion_address, onion_privatekey)
else:
2019-03-15 21:06:59 +01:00
self.setStatus("AddOnion error (%s)" % res)
self.log.error("Tor addOnion error: %s" % res)
return False
def delOnion(self, address):
res = self.request("DEL_ONION %s" % address)
if "250 OK" in res:
del self.privatekeys[address]
self.setStatus("OK (%s onion running)" % len(self.privatekeys))
return True
else:
2019-03-15 21:06:59 +01:00
self.setStatus("DelOnion error (%s)" % res)
self.log.error("Tor delOnion error: %s" % res)
self.disconnect()
return False
def request(self, cmd):
with self.lock:
if not self.enabled:
return False
if not self.conn:
if not self.connect():
return ""
return self.send(cmd)
def send(self, cmd, conn=None):
if not conn:
conn = self.conn
self.log.debug("> %s" % cmd)
back = ""
2016-09-04 18:00:08 +02:00
for retry in range(2):
try:
2019-03-15 21:06:59 +01:00
conn.sendall(b"%s\r\n" % cmd.encode("utf8"))
while not back.endswith("250 OK\r\n"):
2019-03-16 00:05:23 +01:00
back += conn.recv(1024 * 64).decode("utf8")
2016-09-04 18:00:08 +02:00
break
2019-03-15 21:06:59 +01:00
except Exception as err:
2016-09-04 18:00:08 +02:00
self.log.error("Tor send error: %s, reconnecting..." % err)
if not self.connecting:
self.disconnect()
time.sleep(1)
self.connect()
2016-09-04 18:00:08 +02:00
back = None
2018-08-26 02:56:41 +02:00
if back:
self.log.debug("< %s" % back.strip())
return back
def getPrivatekey(self, address):
return self.privatekeys[address]
def getPublickey(self, address):
return CryptRsa.privatekeyToPublickey(self.privatekeys[address])
def getOnion(self, site_address):
if not self.enabled:
return None
if config.tor == "always": # Different onion for every site
onion = self.site_onions.get(site_address)
else: # Same onion for every site
onion = self.site_onions.get("global")
site_address = "global"
if not onion:
with self.lock:
self.site_onions[site_address] = self.addOnion()
onion = self.site_onions[site_address]
self.log.debug("Created new hidden service for %s: %s" % (site_address, onion))
return onion
2017-02-24 00:09:47 +01:00
# Creates and returns a
2017-02-24 00:39:45 +01:00
# socket that has connected to the Tor Network
def createSocket(self, onion, port):
if not self.enabled:
return False
2017-02-24 00:09:47 +01:00
self.log.debug("Creating new Tor socket to %s:%s" % (onion, port))
if self.starting:
self.log.debug("Waiting for startup...")
self.event_started.get()
2017-02-24 00:09:47 +01:00
if config.tor == "always": # Every socket is proxied by default, in this mode
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
else:
sock = socks.socksocket()
sock.set_proxy(socks.SOCKS5, self.proxy_ip, self.proxy_port)
return sock