2018-01-18 23:25:10 +00:00
|
|
|
'''
|
|
|
|
Onionr - P2P Microblogging Platform & Social network
|
|
|
|
|
|
|
|
Netcontroller library, used to control/work with Tor/I2P and send requests through them
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
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 <https://www.gnu.org/licenses/>.
|
|
|
|
'''
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-27 08:43:36 +00:00
|
|
|
import subprocess, os, random, sys, logger, time, signal
|
2018-05-19 22:11:51 +00:00
|
|
|
from onionrblockapi import Block
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-18 23:25:10 +00:00
|
|
|
class NetController:
|
2018-02-04 03:44:29 +00:00
|
|
|
'''
|
|
|
|
This class handles hidden service setup on Tor and I2P
|
2018-01-18 23:25:10 +00:00
|
|
|
'''
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-19 09:16:38 +00:00
|
|
|
def __init__(self, hsPort):
|
2018-01-18 23:25:10 +00:00
|
|
|
self.torConfigLocation = 'data/torrc'
|
|
|
|
self.readyState = False
|
2018-01-19 21:28:34 +00:00
|
|
|
self.socksPort = random.randint(1024, 65535)
|
2018-01-19 09:16:38 +00:00
|
|
|
self.hsPort = hsPort
|
2018-01-27 08:43:36 +00:00
|
|
|
self._torInstnace = ''
|
2018-01-19 21:28:34 +00:00
|
|
|
self.myID = ''
|
2018-01-27 03:42:20 +00:00
|
|
|
'''
|
2018-02-04 03:44:29 +00:00
|
|
|
if os.path.exists(self.torConfigLocation):
|
|
|
|
torrc = open(self.torConfigLocation, 'r')
|
|
|
|
if not str(self.hsPort) in torrc.read():
|
|
|
|
os.remove(self.torConfigLocation)
|
|
|
|
torrc.close()
|
2018-01-27 03:42:20 +00:00
|
|
|
'''
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-18 23:25:10 +00:00
|
|
|
return
|
2018-02-04 03:44:29 +00:00
|
|
|
|
2018-01-18 23:25:10 +00:00
|
|
|
def generateTorrc(self):
|
2018-02-04 03:44:29 +00:00
|
|
|
'''
|
|
|
|
Generate a torrc file for our tor instance
|
|
|
|
'''
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-19 09:16:38 +00:00
|
|
|
if os.path.exists(self.torConfigLocation):
|
|
|
|
os.remove(self.torConfigLocation)
|
2018-01-20 00:59:05 +00:00
|
|
|
torrcData = '''SocksPort ''' + str(self.socksPort) + '''
|
2018-01-19 21:28:34 +00:00
|
|
|
HiddenServiceDir data/hs/
|
|
|
|
HiddenServicePort 80 127.0.0.1:''' + str(self.hsPort) + '''
|
2018-04-22 01:53:12 +00:00
|
|
|
DataDirectory data/tordata/
|
2018-01-18 23:25:10 +00:00
|
|
|
'''
|
2018-01-19 09:16:38 +00:00
|
|
|
torrc = open(self.torConfigLocation, 'w')
|
|
|
|
torrc.write(torrcData)
|
|
|
|
torrc.close()
|
2018-02-04 03:44:29 +00:00
|
|
|
|
2018-01-18 23:25:10 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
def startTor(self):
|
2018-02-04 03:44:29 +00:00
|
|
|
'''
|
|
|
|
Start Tor with onion service on port 80 & socks proxy on random port
|
2018-01-20 00:59:05 +00:00
|
|
|
'''
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-19 21:28:34 +00:00
|
|
|
self.generateTorrc()
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-28 01:53:24 +00:00
|
|
|
if os.path.exists('./tor'):
|
|
|
|
torBinary = './tor'
|
2018-03-03 07:35:13 +00:00
|
|
|
elif os.path.exists('/usr/bin/tor'):
|
|
|
|
torBinary = '/usr/bin/tor'
|
2018-01-28 01:53:24 +00:00
|
|
|
else:
|
|
|
|
torBinary = 'tor'
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-28 01:53:24 +00:00
|
|
|
try:
|
|
|
|
tor = subprocess.Popen([torBinary, '-f', self.torConfigLocation], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
except FileNotFoundError:
|
2018-01-28 04:43:54 +00:00
|
|
|
logger.fatal("Tor was not found in your path or the Onionr directory. Please install Tor and try again.")
|
2018-01-28 01:53:24 +00:00
|
|
|
sys.exit(1)
|
2018-02-22 09:33:30 +00:00
|
|
|
else:
|
|
|
|
# Test Tor Version
|
|
|
|
torVersion = subprocess.Popen([torBinary, '--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
for line in iter(torVersion.stdout.readline, b''):
|
|
|
|
if 'Tor 0.2.' in line.decode():
|
|
|
|
logger.warn("Running 0.2.x Tor series, no support for v3 onion peers")
|
|
|
|
break
|
|
|
|
torVersion.kill()
|
|
|
|
|
2018-01-20 00:59:05 +00:00
|
|
|
# wait for tor to get to 100% bootstrap
|
2018-05-18 06:22:16 +00:00
|
|
|
try:
|
|
|
|
for line in iter(tor.stdout.readline, b''):
|
|
|
|
if 'Bootstrapped 100%: Done' in line.decode():
|
|
|
|
break
|
|
|
|
elif 'Opening Socks listener' in line.decode():
|
|
|
|
logger.debug(line.decode().replace('\n', ''))
|
|
|
|
else:
|
|
|
|
logger.fatal('Failed to start Tor. Try killing any other Tor processes owned by this user.')
|
|
|
|
return False
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
logger.fatal("Got keyboard interrupt")
|
2018-01-28 01:53:24 +00:00
|
|
|
return False
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-06-01 04:25:28 +00:00
|
|
|
logger.debug('Finished starting Tor.', timestamp=True)
|
2018-01-19 21:28:34 +00:00
|
|
|
self.readyState = True
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-19 21:28:34 +00:00
|
|
|
myID = open('data/hs/hostname', 'r')
|
2018-03-03 07:35:13 +00:00
|
|
|
self.myID = myID.read().replace('\n', '')
|
2018-01-19 21:28:34 +00:00
|
|
|
myID.close()
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-27 08:43:36 +00:00
|
|
|
torPidFile = open('data/torPid.txt', 'w')
|
|
|
|
torPidFile.write(str(tor.pid))
|
|
|
|
torPidFile.close()
|
2018-02-04 03:44:29 +00:00
|
|
|
|
2018-01-28 01:53:24 +00:00
|
|
|
return True
|
2018-02-04 03:44:29 +00:00
|
|
|
|
2018-01-27 08:43:36 +00:00
|
|
|
def killTor(self):
|
2018-02-04 03:44:29 +00:00
|
|
|
'''
|
|
|
|
Properly kill tor based on pid saved to file
|
|
|
|
'''
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-27 08:43:36 +00:00
|
|
|
try:
|
|
|
|
pid = open('data/torPid.txt', 'r')
|
|
|
|
pidN = pid.read()
|
|
|
|
pid.close()
|
|
|
|
except FileNotFoundError:
|
|
|
|
return
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-01-27 08:43:36 +00:00
|
|
|
try:
|
|
|
|
int(pidN)
|
|
|
|
except:
|
|
|
|
return
|
2018-03-03 07:35:13 +00:00
|
|
|
|
2018-02-21 02:44:56 +00:00
|
|
|
try:
|
|
|
|
os.kill(int(pidN), signal.SIGTERM)
|
|
|
|
os.remove('data/torPid.txt')
|
|
|
|
except ProcessLookupError:
|
|
|
|
pass
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
2018-02-04 03:44:29 +00:00
|
|
|
|
|
|
|
return
|